summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2011-11-05 11:35:32 +0100
committerAndreas Baumann <abaumann@yahoo.com>2011-11-05 11:35:32 +0100
commite9ff920e10a7f529625a7ba2471b61cc07d21229 (patch)
tree13a669eb5b286e220114fbf55db9a21a078fcb38
parent2e5f2a0fb1d0bdb78d43a86d2f51904a23a6670c (diff)
downloadwolfbones-e9ff920e10a7f529625a7ba2471b61cc07d21229.tar.gz
wolfbones-e9ff920e10a7f529625a7ba2471b61cc07d21229.tar.bz2
more doc cleanup
-rw-r--r--TODOS39
-rw-r--r--docs/daemon/TODOS9
-rw-r--r--docs/debugging/README (renamed from docs/debugging/LINKS)0
-rw-r--r--docs/log/LINKS4
-rw-r--r--docs/log/README5
-rw-r--r--docs/log/TODOS25
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.html778
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.txt234
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource.js17
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource_002.js55
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/WebResource.js536
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/download.gifbin784 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/folder.gifbin351 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ga.js41
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/home-page.css575
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/info_16.gifbin1033 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/js.js25
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/koders.css209
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/logo_med_tag_bd.gifbin2512 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/rss_sm.gifbin243 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/styles.css1063
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-eclipse_icon.gifbin957 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-visual_icon.gifbin908 -> 0 bytes
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar.js11
-rw-r--r--docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toptoolbar.css139
25 files changed, 276 insertions, 3489 deletions
diff --git a/TODOS b/TODOS
index 1b3fdad..964925a 100644
--- a/TODOS
+++ b/TODOS
@@ -26,5 +26,40 @@
- popt is localized
- argtable is not, but is very simple
- also gengetopt has a stub getopt/getopt_long which can be i18n-ized
-- merging of mc files (we want to export only the MC file so it can
- be merged)
+ - merging of mc files (we want to export only the MC file so it can
+ be merged)
+- daemon
+ - check against things done in other libraries
+ - POCO ServiceApplication
+ - libdaemon
+ - do a security survey
+ - block signals around atomar pipe reads and writes
+ - have a good look at the openradius server, there
+ seem to be important points there to handle in a
+ daemon
+ - OpenBSD 4.2 croaks about C++ style gengetopt prototypes
+- logger
+ - rewrite and clean up, make logging channels, make logging re-entrant
+ (error in one channel should be logged on all other available channels)
+ - local localized error handling (GetLastError and strerror_r strings)
+ - Windows console logger:
+ - why is it always English? what settings influence the language choosen?
+ - Windows event logger
+ - audit event log types, especially the effects on syslog and the upper
+ abstraction layer
+ - replace the create_wolfmsg.pl with something more robust and not Perl
+ - make it possible to merge mc files (for appliation development)
+ - parameter list dilemma of typed one (classic C) %s, %d versus
+ positional one in Windows %1 %2 (this is a stub implementation for now)
+ => requires a special snprintf which doesn't build one result string,
+ but results the mapped sub-strings, so we can pass them to
+ ReportEvent
+ - there is an Windows Event Log book around which is quite big, find
+ out if it's still available
+ - the Windows messages files are avaiable (where?), should the standard
+ messages be used? And for what?
+ - should we split the category and the message DLL? There also GUID
+ DLLs for resourcen, what can they be used for?
+ - Seen links with the actual event number in the event logger with the
+ possibility to send it directly to a bug system (HTML form). This
+ would be great to have!
diff --git a/docs/daemon/TODOS b/docs/daemon/TODOS
deleted file mode 100644
index 42d2dff..0000000
--- a/docs/daemon/TODOS
+++ /dev/null
@@ -1,9 +0,0 @@
-- check against things done in other libraries
- - POCO ServiceApplication
- - libdaemon
-- do a security survey
-- block signals around atomar pipe reads and writes
-- have a good look at the openradius server, there
- seem to be important points there to handle in a
- daemon
-- OpenBSD 4.2 croaks about C++ style gengetopt prototypes
diff --git a/docs/debugging/LINKS b/docs/debugging/README
index 60d854e..60d854e 100644
--- a/docs/debugging/LINKS
+++ b/docs/debugging/README
diff --git a/docs/log/LINKS b/docs/log/LINKS
deleted file mode 100644
index eb97fd8..0000000
--- a/docs/log/LINKS
+++ /dev/null
@@ -1,4 +0,0 @@
-http://www.codeproject.com/KB/debug/STLDebugLogger.aspx?display=Print
-http://www.codeproject.com/KB/IP/syslog_client.aspx
-http://www.softpanorama.org/Logs/Syslog/syslog_for_windows.shtml
-cqid
diff --git a/docs/log/README b/docs/log/README
index d4196f2..fe75088 100644
--- a/docs/log/README
+++ b/docs/log/README
@@ -52,3 +52,8 @@ Good articles:
C/C++ grammars:
- http://www.sigala.it/sandro/download.php
+
+other links:
+- http://www.codeproject.com/KB/debug/STLDebugLogger.aspx?display=Print
+- http://www.codeproject.com/KB/IP/syslog_client.aspx
+- http://www.softpanorama.org/Logs/Syslog/syslog_for_windows.shtml
diff --git a/docs/log/TODOS b/docs/log/TODOS
deleted file mode 100644
index f7050f8..0000000
--- a/docs/log/TODOS
+++ /dev/null
@@ -1,25 +0,0 @@
-- rewrite and clean up, make logging channels, make logging re-entrant
- (error in one channel should be logged on all other available channels)
-- local localized error handling (GetLastError and strerror_r strings)
-- Windows console logger:
- - why is it always English? what settings influence the language choosen?
-- Windows event logger
- - audit event log types, especially the effects on syslog and the upper
- abstraction layer
- - replace the create_wolfmsg.pl with something more robust and not Perl
- - make it possible to merge mc files (for appliation development)
- - parameter list dilemma of typed one (classic C) %s, %d versus
- positional one in Windows %1 %2 (this is a stub implementation for now)
- => requires a special snprintf which doesn't build one result string,
- but results the mapped sub-strings, so we can pass them to
- ReportEvent
- - there is an Windows Event Log book around which is quite big, find
- out if it's still available
- - the Windows messages files are avaiable (where?), should the standard
- messages be used? And for what?
- - should we split the category and the message DLL? There also GUID
- DLLs for resourcen, what can they be used for?
- - Seen links with the actual event number in the event logger with the
- possibility to send it directly to a bug system (HTML form). This
- would be great to have!
-
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.html b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.html
deleted file mode 100644
index cc6b53e..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.html
+++ /dev/null
@@ -1,778 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html xmlns="http://www.w3.org/1999/xhtml"><head id="pageHead">
-<meta http-equiv="content-type" content="text/html; charset=UTF-8">
-
-
-
-<title>
- Koders Code Search: SampleMsg1.mc
-</title><meta name="robots" content="noarchive,index,follow"><meta name="GOOGLEBOT" content="noarchive,index,follow"><link href="http://www.koders.com/search/KodersDescriptionOS1_1.xml" title="Koders search" rel="search" type="application/opensearchdescription+xml"><link href="http://www.koders.com/search/KodersDescriptionOS1_1Proj.xml" title="Koders Projects search" rel="search" type="application/opensearchdescription+xml"><link href="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/styles.css" type="text/css" rel="stylesheet"><!--[if IE]><link href="/skins/koders/iestyles.css" type="text/css" rel="stylesheet" /><![endif]-->
-<link href="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/koders.css" type="text/css" rel="stylesheet"> <meta name="ROBOTS" content="NOARCHIVE">
-
- <link href="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/home-page.css" type="text/css" rel="stylesheet">
-
-<script type="text/javascript" language="javascript">
-//Copyright (c) 2005-2007 Koders.com,
-//All Rights Reserved.
-var anchors;
-var symbolSegment = 0;
-var max = 0;
-
-function assignInitial() {
- var codeDiv = document.getElementById("CodeDiv");
- if(codeDiv != null) {
- anchors = codeDiv.getElementsByTagName("a");
- assignR(300);
- }
-}
-
-function assignR(max) {
- if(symbolSegment + max >= anchors.length) {
- max = anchors.length - symbolSegment;
- }
- for(var i = 0; i < max; i++) {
- var temp = "";
- var index = symbolSegment + i;
- var anchor = anchors[index];
-
- for(var k = 0; k < anchor.childNodes.length; k++) {
- if(anchor.childNodes[k].data == undefined) {
- temp = temp + anchor.childNodes[k].childNodes[0].data;
- }
- else {
- temp = temp + anchor.childNodes[k].data;
- }
- }
-
- anchors[index].setAttribute("href", "javascript:searchRef('" + temp + "')");
- anchors[index].setAttribute("title", "Search for references of '" + temp + "'");
- }
-
- if(symbolSegment + max < anchors.length) {
- symbolSegment += max;
- this.setTimeout("assignR(50)", 200);
- }
-
-}
-
-function searchRef(symbol) {
- location = homeUrl + "?s=" + symbol + "&scope=" + projectID + "&la=" + sourceLanguage;
-}
-
-function Hide(element) {
- if(element) {
- element.style.visibility = "hidden";
- element.style.display = "none";
- }
-}
-
-function HideBanner() {
- var eleArray = document.getElementsByTagName('div');
- for(var i = 0; i < eleArray.length; i++) {
- if(!eleArray[i] || !eleArray[i].id) {
- continue;
- }
-
- var id = eleArray[i].id;
- if(id && id.indexOf("RightBanner") != -1){
- Hide(eleArray[i]);
-
- // hide all the iframes nested in the Banner
- var arrIframe = eleArray[i].getElementsByTagName('iframe');
- if(!arrIframe)
- return;
-
- for(var j = 0; j < arrIframe.length; j++) {
- Hide(arrIframe[j]);
- }
- }
- }
-}
-
-var dojo;
-if(dojo) dojo.addOnLoad(assignInitial);
-else window.onload = assignInitial;
-</script>
-</head><body>
-
-
-
- <form name="FRM" method="post" action="kv.aspx?fid=355D8E1583AB011A40E6DD0B35D84F827A3BBEB9" id="FRM">
-<div>
-<input name="__EVENTTARGET" id="__EVENTTARGET" value="" type="hidden">
-<input name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" type="hidden">
-<input name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMTYzMDIzMzAwD2QWBgIBD2QWAgIGDw8WBB4GRmlsZUlEAoyU+AceCVByb2plY3RJRAKTkQJkZAIFD2QWBAIDD2QWAmYPZBYIAgEPDxYCHgtOYXZpZ2F0ZVVybAUBL2QWAmYPDxYCHghJbWFnZVVybAVBaHR0cDovL21lZGlhLmJsYWNrZHVja3NvZnR3YXJlLmNvbS9rb2RlcnMvYmRzL2xvZ29fbWVkX3RhZ19iZC5naWZkZAIHDxAPFgIeC18hRGF0YUJvdW5kZ2QQFSINQWxsIExhbmd1YWdlcwxBY3Rpb25TY3JpcHQDQWRhA0FTUAdBU1AuTkVUCUFzc2VtYmxlcgFDAkMjA0MrKwVDb2JvbApDb2xkRnVzaW9uBkRlbHBoaQZFaWZmZWwGRXJsYW5nB0ZvcnRyYW4ESmF2YQpKYXZhU2NyaXB0A0pTUARMaXNwA0x1YQtNYXRoZW1hdGljYQZNYXRsYWIKT2JqZWN0aXZlQwRQZXJsA1BIUAZQcm9sb2cGUHl0aG9uBFJ1YnkGU2NoZW1lCVNtYWxsdGFsawNTUUwDVGNsAlZCBlZCLk5FVBUiASoMQWN0aW9uU2NyaXB0A0FkYQNBU1AHQVNQLk5FVAlBc3NlbWJsZXIBQwJDIwNDcHAFQ29ib2wKQ29sZEZ1c2lvbgZEZWxwaGkGRWlmZmVsBkVybGFuZwdGb3J0cmFuBEphdmEKSmF2YVNjcmlwdANKU1AETGlzcANMdWELTWF0aGVtYXRpY2EGTWF0bGFiCk9iamVjdGl2ZUMEUGVybANQSFAGUHJvbG9nBlB5dGhvbgRSdWJ5BlNjaGVtZQlTbWFsbHRhbGsDU1FMA1RjbAJWQgZWQi5ORVQUKwMiZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2RkAgkPEA8WAh8EZ2QQFR4MQWxsIExpY2Vuc2VzA0FGTARBTDIwA0FTTARBUFNMA0JTRANDUEwFRVBMMTAER1RQTANHUEwETEdQTAVJQk1QTARJT1NMBE1TQ0wETVNQTARNU1JMB01TVlNTREsETUlURAVNUEwxMAVNUEwxMQVOUEwxMAVOUEwxMQNPU0wEUEhQTARQU0ZMAlNMA1NQTANXM0MDWkxMA1pQTBUeASoDQUZMBEFMMjADQVNMBEFQU0wDQlNEA0NQTAVFUEwxMARHVFBMA0dQTARMR1BMBUlCTVBMBElPU0wETVNDTARNU1BMBE1TUkwHTVNWU1NESwRNSVREBU1QTDEwBU1QTDExBU5QTDEwBU5QTDExA09TTARQSFBMBFBTRkwCU0wDU1BMA1czQwNaTEwDWlBMFCsDHmdnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2RkAgsPDxYCHwIFMGh0dHA6Ly93d3cua29kZXJzLmNvbS9jb3JwL3N1cHBvcnQvbGljZW5zZS1pbmZvL2QWAmYPFgIeA3NyYwUTL2ltYWdlcy9pbmZvXzE2LmdpZmQCCQ8PFgIeB1Zpc2libGVnZBYKZg8PFgQfAwUUL2ltYWdlcy9kb3dubG9hZC5naWYeB1Rvb2xUaXAFFkRvd25sb2FkIFNhbXBsZU1zZzEubWNkZAICDxYCHgtfIUl0ZW1Db3VudAIBFgJmD2QWAmYPFQUNU2FtcGxlTXNnMS5tYwdOb25Db2RlAAAGTE9DOiAwZAIDDxYCHwgCARYCZg9kFgZmDxUCnwFUaGUgeUxpYiBTZXJ2aWNlIEZyYW1ld29yayBpcyBhIHNldCBvZiBjbGFzcyBsaWJyYXJpZXMgYW5kIGFwcGxpY2F0aW9ucyBpbnRlbmRlZCBmb3IgcHJvZmVzc2lvbmFsIHNlcnZlciBhcHBsaWNhdGlvbiBkZXZlbG9wbWVudCB1bmRlciBXaW5kb3dzIE5UL1dpbmRvd3MgMjAwMC43L2luZm8uYXNweD9jPVByb2plY3RJbmZvJnBpZD1QNlpCWUM0MjlDWE02SE1aTEFWVDM0UVc5Q2QCAQ9kFgJmDxUBH3lMaWIgU2VydmljZSBGcmFtZXdvcmsoeWVhc29mdClkAgIPFQILU291cmNlRm9yZ2UDY3ZzZAIFD2QWAmYPZBYGAgEPDxYCHwIFNy9pbmZvLmFzcHg/Yz1Qcm9qZWN0SW5mbyZwaWQ9UDZaQllDNDI5Q1hNNkhNWkxBVlQzNFFXOUNkFgJmDw8WBB8DBRIvaW1hZ2VzL2ZvbGRlci5naWYfBwUzU291cmNlRm9yZ2VceVx5ZWFzb2Z0XHllYXNvZnRceUxpYlxzYW1wbGVzXFNhbXBsZTFcZGQCAw8PFgQeBFRleHQFHi4uLmFzb2Z0XHlMaWJcc2FtcGxlc1xTYW1wbGUxXB8HBTNTb3VyY2VGb3JnZVx5XHllYXNvZnRceWVhc29mdFx5TGliXHNhbXBsZXNcU2FtcGxlMVxkZAIFDxYCHwgCDGQCBw8WAh8GaGQCBw8WAh8JBaMDPHNjcmlwdCB0eXBlPSJ0ZXh0L2phdmFzY3JpcHQiPg0KdmFyIGdhSnNIb3N0ID0gKCgiaHR0cHM6IiA9PSBkb2N1bWVudC5sb2NhdGlvbi5wcm90b2NvbCkgPyAiaHR0cHM6Ly9zc2wuIiA6ICJodHRwOi8vd3d3LiIpOw0KZG9jdW1lbnQud3JpdGUodW5lc2NhcGUoIiUzQ3NjcmlwdCBzcmM9JyIgKyBnYUpzSG9zdCArICJnb29nbGUtYW5hbHl0aWNzLmNvbS9nYS5qcycgdHlwZT0ndGV4dC9qYXZhc2NyaXB0JyUzRSUzQy9zY3JpcHQlM0UiKSk7DQo8L3NjcmlwdD4NCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij4NCnZhciBwYWdlVHJhY2tlciA9IF9nYXQuX2dldFRyYWNrZXIoIlVBLTE0NTA0ODAtMyIpOw0KcGFnZVRyYWNrZXIuX2luaXREYXRhKCk7DQpwYWdlVHJhY2tlci5fdHJhY2tQYWdldmlldygpOw0KPC9zY3JpcHQ+DQpkGAEFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYBBRpLb2Rldmlld2VyMSREb3dubG9hZEJ1dHRvbg==" type="hidden">
-</div>
-
-<script type="text/javascript">
-//<![CDATA[
-var theForm = document.forms['FRM'];
-if (!theForm) {
- theForm = document.FRM;
-}
-function __doPostBack(eventTarget, eventArgument) {
- if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
- theForm.__EVENTTARGET.value = eventTarget;
- theForm.__EVENTARGUMENT.value = eventArgument;
- theForm.submit();
- }
-}
-//]]>
-</script>
-
-
-<script src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/WebResource.js" type="text/javascript"></script>
-
-
-<script src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource_002.js" type="text/javascript"></script>
-<script src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource.js" type="text/javascript"></script>
-<script src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/js.js" type="text/javascript"></script>
- <script type="text/javascript">
-//<![CDATA[
-Sys.WebForms.PageRequestManager._initialize('ctl05$scriptManager', document.getElementById('FRM'));
-Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
-//]]>
-</script>
-
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tbody><tr>
- <td style="padding: 8px 10px 2px; width: 425px;" align="left">
-
-<table id="t1" border="0" cellpadding="0" cellspacing="0">
- <tbody><tr>
- <td style="white-space: nowrap;" nowrap="nowrap">
- <a id="ctl03_Home" href="http://www.koders.com/"><img id="ctl03_imgLogo" src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/logo_med_tag_bd.gif" style="border-color: rgb(0, 0, 0); border-width: 0px; height: 32px; width: 141px;" vspace="6" hspace="0"></a>
- </td>
- <td style="white-space: nowrap;" nowrap="nowrap">
- <input name="ctl03$ctl00$s" value="SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS Informational=0x1:STATUS_SEVERITY_INFORMATIONAL Warning=0x2:STATUS_SEVERITY_WARNING Error=0x3:STATUS_SEVERITY_ERROR FacilityNames=(System=0x0:FACILITY_SYSTEM Runtime=0x2:FACILITY_RUNTIME Stubs=0x3:FACILITY_STUBS Io=0x4:FACILITY_IO_ERROR_CODE ;/* ------------------------------------------------------------------ MESSAGE DEFINITION SECTION ;*/ MessageIdTypedef=WORD MessageId=0x1 SymbolicName=CAT_1 Language=English Category" maxlength="128" id="ctl03_ctl00_s" class="tbSearchSmall" style="width: 200px;" type="text">
-
- <input name="ctl03$btnSearch" value="Search" id="ctl03_btnSearch" class="btnSearch" type="submit"><input style="display: none;" type="text"><br>
- Filter:
- <select name="ctl03$Languages" id="ctl03_Languages">
- <option selected="selected" value="*">All Languages</option>
- <option value="ActionScript">ActionScript</option>
- <option value="Ada">Ada</option>
- <option value="ASP">ASP</option>
- <option value="ASP.NET">ASP.NET</option>
- <option value="Assembler">Assembler</option>
- <option value="C">C</option>
- <option value="C#">C#</option>
- <option value="Cpp">C++</option>
- <option value="Cobol">Cobol</option>
- <option value="ColdFusion">ColdFusion</option>
- <option value="Delphi">Delphi</option>
- <option value="Eiffel">Eiffel</option>
- <option value="Erlang">Erlang</option>
- <option value="Fortran">Fortran</option>
- <option value="Java">Java</option>
- <option value="JavaScript">JavaScript</option>
- <option value="JSP">JSP</option>
- <option value="Lisp">Lisp</option>
- <option value="Lua">Lua</option>
- <option value="Mathematica">Mathematica</option>
- <option value="Matlab">Matlab</option>
- <option value="ObjectiveC">ObjectiveC</option>
- <option value="Perl">Perl</option>
- <option value="PHP">PHP</option>
- <option value="Prolog">Prolog</option>
- <option value="Python">Python</option>
- <option value="Ruby">Ruby</option>
- <option value="Scheme">Scheme</option>
- <option value="Smalltalk">Smalltalk</option>
- <option value="SQL">SQL</option>
- <option value="Tcl">Tcl</option>
- <option value="VB">VB</option>
- <option value="VB.NET">VB.NET</option>
-
-</select>&nbsp;<select name="ctl03$Licenses" id="ctl03_Licenses">
- <option selected="selected" value="*">All Licenses</option>
- <option value="AFL">AFL</option>
- <option value="AL20">AL20</option>
- <option value="ASL">ASL</option>
- <option value="APSL">APSL</option>
- <option value="BSD">BSD</option>
- <option value="CPL">CPL</option>
- <option value="EPL10">EPL10</option>
- <option value="GTPL">GTPL</option>
- <option value="GPL">GPL</option>
- <option value="LGPL">LGPL</option>
- <option value="IBMPL">IBMPL</option>
- <option value="IOSL">IOSL</option>
- <option value="MSCL">MSCL</option>
- <option value="MSPL">MSPL</option>
- <option value="MSRL">MSRL</option>
- <option value="MSVSSDK">MSVSSDK</option>
- <option value="MITD">MITD</option>
- <option value="MPL10">MPL10</option>
- <option value="MPL11">MPL11</option>
- <option value="NPL10">NPL10</option>
- <option value="NPL11">NPL11</option>
- <option value="OSL">OSL</option>
- <option value="PHPL">PHPL</option>
- <option value="PSFL">PSFL</option>
- <option value="SL">SL</option>
- <option value="SPL">SPL</option>
- <option value="W3C">W3C</option>
- <option value="ZLL">ZLL</option>
- <option value="ZPL">ZPL</option>
-
-</select>&nbsp;<a id="ctl03_LicenseInfoLink" href="http://www.koders.com/corp/support/license-info/"><img src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/info_16.gif" id="ctl03_InfoImg" alt="InfoImg" width="16" border="0" height="16"></a>
- </td>
- <td valign="middle" width="0" align="center">
-
- </td>
- </tr>
-</tbody></table>
-
- </td>
- <td align="right">
- <div class="kvHeaderLimiter">
-
-
-<script type="text/javascript" src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar.js"></script>
-<link href="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toptoolbar.css" type="text/css" rel="stylesheet">
-<!-- {Begin Toolbar} -->
-<div id="topToolbars">
-<div class="topToolbar ttb_wider" style="width: 463px; top: 0px; right: 0px;" onmouseover="Toolbar._onmouseover(event); " onmouseout="Toolbar._onmouseout(event); ">
- <div class="topToolbarCorner"></div>
- <div class="topToolbarInner">
- <div class="topToolbarButton" style="width: 84px; cursor: pointer;" onclick="window.location='http://www.koders.com/corp/about/'">Company <span class="topToolbarDownArrow">▼</span>
- <div class="topToolbarPopup" style="width: 110px;">
- <a href="http://corp.koders.com/corp/about/">About Koders</a>
- <a href="http://corp.koders.com/corp/about#Contact">Contact Us</a>
- </div>
- </div>
- <div class="topToolbarButton" style="width: 72px; cursor: pointer;" onclick="window.location='http://www.koders.com/info.aspx?c=tools'">Plugins <span class="topToolbarDownArrow">▼</span>
- <div class="topToolbarPopup" style="width: 110px;">
- <a href="http://www.koders.com/info.aspx?c=tools#IDEs">
- <img src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-eclipse_icon.gif" alt="e"> Eclipse</a>
- <a href="http://www.koders.com/info.aspx?c=tools#IDEs">
- <img src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-visual_icon.gif" alt="v"> Visual Studio</a>
- <a href="http://www.koders.com/info.aspx?c=tools#Firefox">Browser</a>
- <a href="http://www.koders.com/info.aspx?c=tools#AddSearch">Widget APIs</a>
- <!--<a href="http://www.koders.com/blog/?p=36">Koders APIs</a>-->
- </div>
- </div>
- <div class="topToolbarButton" style="width: 76px; cursor: pointer;" onclick="window.location='http://corp.koders.com/corp/support'">Support <span class="topToolbarDownArrow">▼</span>
- <div class="topToolbarPopup" style="width: 160px;">
- <a href="http://corp.koders.com/corp/support/">Support Overview</a>
- <a href="http://corp.koders.com/corp/support/code-search/getting-started/">Getting Started Guide</a>
- <a href="http://www.koders.com/info.aspx?c=feedback&amp;product=kdc&amp;type=bug">Feedback</a>
- <a href="http://corp.koders.com/corp/support/license-info/">License Info</a>
- </div>
- </div>
- <div class="topToolbarButton" style="width: 98px; cursor: pointer;" onclick="window.location='http://corp.koders.com/corp/community/'">Community <span class="topToolbarDownArrow">▼</span>
- <div class="topToolbarPopup" style="width: 150px;">
- <a href="http://corp.koders.com/corp/community/">Community Overview</a>
- <a href="http://www.koders.com/info.aspx?c=forms/SubmitProject">Add Projects</a>
- <!--<a href="http://www.koders.com/blog/">Blog</a>-->
- <a href="http://forums.koders.com/">Forums</a>
- <a href="http://corp.koders.com/zeitgeist/">Top Searches</a>
- </div>
- </div>
- <div class="topToolbarButton" style="width: 102px; cursor: pointer;" onclick="window.location='http://www.koders.com/info.aspx?page=MyAccount'">My Account <span class="topToolbarDownArrow">▼</span>
- <div class="topToolbarPopup" style="width: 98px;">
- <a id="Sitetoolbar1_ctl00_toggleAccount" href="http://www.koders.com/info.aspx?page=MyAccount">Join Now!</a>
- <a id="Sitetoolbar1_ctl00_toggleLogin" href="http://www.koders.com/info.aspx?page=MyAccount&amp;action=Login">Login</a>
- </div>
- </div>
- </div>
-</div>
-<br class="clear">
-</div>
-<!-- {End Toolbar} -->
-&nbsp;
- </div>
- </td>
- </tr>
- </tbody></table>
-
- <div id="leaderboard" style="">
- <center>
-
-<!-- Media Server Begin: 728x90 -->
-
-<!-- Media Server End: 728x90 -->
-
- </center>
- </div>
-
- <div class="kodeViewerContDiv">
-
-<!-- <div class="SidePadding" align="left"> -->
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tbody><tr>
- <td>
- <table id="Table2" width="100%" border="0" cellspacing="5">
- <tbody><tr>
- <td class="info_panel" valign="top">
- <table id="Table3" border="0">
- <tbody><tr>
- <td valign="middle" width="60" align="center">
- <input name="Kodeviewer1$DownloadButton" id="Kodeviewer1_DownloadButton" title="Download SampleMsg1.mc" src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/download.gif" style="border-width: 0px;" type="image">
- <a id="Kodeviewer1_LinkButton1" href="javascript:__doPostBack('Kodeviewer1$LinkButton1','')">download</a>
- </td>
- <td>
- <b>
- SampleMsg1.mc
- </b>
- <br>
- Language: <b>
- NonCode
- </b>
- <br>
-
-
- LOC: 0
- <br>
- </td>
- </tr>
- </tbody></table>
- </td>
- <td class="kodeviewer_info_panel" valign="top" width="200">
- <b>Project Info</b><br>
- <a title="The yLib Service Framework is a set of class libraries and applications intended for professional server application development under Windows NT/Windows 2000." href="http://www.koders.com/info.aspx?c=ProjectInfo&amp;pid=P6ZBYC429CXM6HMZLAVT34QW9C">
- <b>
- <span id="Kodeviewer1_ProjectView_ctl00_Label2">yLib Service Framework(yeasoft)</span></b></a>
- <br>
- Server:
- SourceForge
- <br>
- Type:
- cvs
-
-
-
- </td>
- </tr>
- </tbody></table>
- </td>
- </tr>
-</tbody></table>
-
-<style type="text/css">
-.RightBanner { Z-INDEX: 2; RIGHT: 25px; FLOAT: right; WIDTH: 160px; POSITION: absolute; HEIGHT: 600px }
-</style>
-
- <div id="Kodeviewer1_RightBanner" class="RightBanner">
-<div style="margin-bottom: 2px;" align="center">[<a style="font-size: smaller;" href="javascript:HideBanner();">Show Code</a>] </div>
-<div>
-
-<!-- Media Server Begin: 160x600 -->
-
-<!-- Media Server End: 160x600 -->
-<br><br><br>
-<!-- Media Server Begin: 160x602 -->
-
-<!-- Media Server End: 160x602 -->
-<br><br><br>
-<!-- Media Server Begin: 160x603 -->
-
-<!-- Media Server End: 160x603 -->
-</div>
-<div style="margin-top: 2px;" align="center">[<a style="font-size: smaller;" href="javascript:HideBanner();">Show Code</a>] </div></div>
-
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tbody><tr>
- <td height="100%">
- <table id="Table9" style="height: 100%;" border="0" cellpadding="0" cellspacing="8">
- <tbody><tr>
- <td valign="top">
-
-
-<table id="Table1" style="border: 1px solid gray; border-collapse: collapse;" width="100%" border="0" cellpadding="3" cellspacing="0">
- <tbody>
- <tr>
- <th class="exp_header" align="left">
- <a id="Kodeviewer1_ctl00_hyFicon" href="http://www.koders.com/info.aspx?c=ProjectInfo&amp;pid=P6ZBYC429CXM6HMZLAVT34QW9C"><img id="Kodeviewer1_ctl00_ficon" title="SourceForge\y\yeasoft\yeasoft\yLib\samples\Sample1\" src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/folder.gif" style="border-width: 0px;" align="left"></a>
- <b>
- <span id="Kodeviewer1_ctl00_Label1" title="SourceForge\y\yeasoft\yeasoft\yLib\samples\Sample1\">...asoft\yLib\samples\Sample1\</span>
- </b>
- <br>
- </th>
- </tr>
- <tr>
- <td class="exp_items">
-
- &nbsp;&nbsp;
- <a title="EventLog.cpp" href="http://www.koders.com/cpp/fidAD6A9582E3A79F2AB409ADC1275E1579C6E918A4.aspx">EventLog.cpp<br></a>
- &nbsp;&nbsp;
- <a title="MailSlots.cpp" href="http://www.koders.com/cpp/fidE56F90B0B60F26CD191D391F5058F8E901F2DCE8.aspx">MailSlots.cpp<br></a>
- &nbsp;&nbsp;
- <a title="NamedPipes.cpp" href="http://www.koders.com/cpp/fidEB90F1B41836D41312057850C7EFC3334BB8D206.aspx">NamedPipes.cpp<br></a>
- &nbsp;&nbsp;
- <a title="Registry.cpp" href="http://www.koders.com/cpp/fid24E7DF0A5B2FE9A9781F8BEBF5124B372E1B9CC0.aspx">Registry.cpp<br></a>
- &nbsp;&nbsp;
- <a title="Sample1.cpp" href="http://www.koders.com/cpp/fidAB19923E91A22FE892AF386EC8B44DFBCB8F0A40.aspx">Sample1.cpp<br></a>
- &nbsp;&nbsp;
- <a title="Sample1.dsp" href="http://www.koders.com/noncode/fid9A3BCE577F79CE5631A8C1477A17EC66884BE2B5.aspx">Sample1.dsp<br></a>
- &nbsp;&nbsp;
- <a title="Sample1.h" href="http://www.koders.com/cpp/fidBAE00979B2BD3236CD1AE08C376E568F74AC9B71.aspx">Sample1.h<br></a>
- &nbsp;&nbsp;
- <a title="Sample1.rc" href="http://www.koders.com/noncode/fidE4C63C5E0A0E727044B2114ECCB17616F040C89A.aspx">Sample1.rc<br></a>
- &nbsp;&nbsp;
- <a title="SampleMsg1.mc" href="http://www.koders.com/noncode/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx">SampleMsg1.mc<br></a>
- &nbsp;&nbsp;
- <a title="SampleRes1.h" href="http://www.koders.com/c/fidAB9541A7076426F486D29A2F9A2FED7605F5F347.aspx">SampleRes1.h<br></a>
- &nbsp;&nbsp;
- <a title="StdAfc.h" href="http://www.koders.com/c/fid02CCA77134C97B56B6289958D7242ECF2327CFB6.aspx">StdAfc.h<br></a>
- &nbsp;&nbsp;
- <a title="Threads.cpp" href="http://www.koders.com/cpp/fidA9B6284DA12F81BE0E599CB0AF469CBD06577687.aspx">Threads.cpp<br></a>
- </td>
- </tr>
- </tbody>
-</table>
-<br>
-
-
-
- </td>
- <td valign="top">
- <div>
- <pre id="kodeViewerLineNumbers"><a href="#L1" name="L1">1</a><br><a href="#L2" name="L2">2</a><br><a href="#L3" name="L3">3</a><br><a href="#L4" name="L4">4</a><br><a href="#L5" name="L5">5</a><br><a href="#L6" name="L6">6</a><br><a href="#L7" name="L7">7</a><br><a href="#L8" name="L8">8</a><br><a href="#L9" name="L9">9</a><br><a href="#L10" name="L10">10</a><br><a href="#L11" name="L11">11</a><br><a href="#L12" name="L12">12</a><br><a href="#L13" name="L13">13</a><br><a href="#L14" name="L14">14</a><br><a href="#L15" name="L15">15</a><br><a href="#L16" name="L16">16</a><br><a href="#L17" name="L17">17</a><br><a href="#L18" name="L18">18</a><br><a href="#L19" name="L19">19</a><br><a href="#L20" name="L20">20</a><br><a href="#L21" name="L21">21</a><br><a href="#L22" name="L22">22</a><br><a href="#L23" name="L23">23</a><br><a href="#L24" name="L24">24</a><br><a href="#L25" name="L25">25</a><br><a href="#L26" name="L26">26</a><br><a href="#L27" name="L27">27</a><br><a href="#L28" name="L28">28</a><br><a href="#L29" name="L29">29</a><br><a href="#L30" name="L30">30</a><br><a href="#L31" name="L31">31</a><br><a href="#L32" name="L32">32</a><br><a href="#L33" name="L33">33</a><br><a href="#L34" name="L34">34</a><br><a href="#L35" name="L35">35</a><br><a href="#L36" name="L36">36</a><br><a href="#L37" name="L37">37</a><br><a href="#L38" name="L38">38</a><br><a href="#L39" name="L39">39</a><br><a href="#L40" name="L40">40</a><br><a href="#L41" name="L41">41</a><br><a href="#L42" name="L42">42</a><br><a href="#L43" name="L43">43</a><br><a href="#L44" name="L44">44</a><br><a href="#L45" name="L45">45</a><br><a href="#L46" name="L46">46</a><br><a href="#L47" name="L47">47</a><br><a href="#L48" name="L48">48</a><br><a href="#L49" name="L49">49</a><br><a href="#L50" name="L50">50</a><br><a href="#L51" name="L51">51</a><br><a href="#L52" name="L52">52</a><br><a href="#L53" name="L53">53</a><br><a href="#L54" name="L54">54</a><br><a href="#L55" name="L55">55</a><br><a href="#L56" name="L56">56</a><br><a href="#L57" name="L57">57</a><br><a href="#L58" name="L58">58</a><br><a href="#L59" name="L59">59</a><br><a href="#L60" name="L60">60</a><br><a href="#L61" name="L61">61</a><br><a href="#L62" name="L62">62</a><br><a href="#L63" name="L63">63</a><br><a href="#L64" name="L64">64</a><br><a href="#L65" name="L65">65</a><br><a href="#L66" name="L66">66</a><br><a href="#L67" name="L67">67</a><br><a href="#L68" name="L68">68</a><br><a href="#L69" name="L69">69</a><br><a href="#L70" name="L70">70</a><br><a href="#L71" name="L71">71</a><br><a href="#L72" name="L72">72</a><br><a href="#L73" name="L73">73</a><br><a href="#L74" name="L74">74</a><br><a href="#L75" name="L75">75</a><br><a href="#L76" name="L76">76</a><br><a href="#L77" name="L77">77</a><br><a href="#L78" name="L78">78</a><br><a href="#L79" name="L79">79</a><br><a href="#L80" name="L80">80</a><br><a href="#L81" name="L81">81</a><br><a href="#L82" name="L82">82</a><br><a href="#L83" name="L83">83</a><br><a href="#L84" name="L84">84</a><br><a href="#L85" name="L85">85</a><br><a href="#L86" name="L86">86</a><br><a href="#L87" name="L87">87</a><br><a href="#L88" name="L88">88</a><br><a href="#L89" name="L89">89</a><br><a href="#L90" name="L90">90</a><br><a href="#L91" name="L91">91</a><br><a href="#L92" name="L92">92</a><br><a href="#L93" name="L93">93</a><br><a href="#L94" name="L94">94</a><br><a href="#L95" name="L95">95</a><br><a href="#L96" name="L96">96</a><br><a href="#L97" name="L97">97</a><br><a href="#L98" name="L98">98</a><br><a href="#L99" name="L99">99</a><br><a href="#L100" name="L100">100</a><br><a href="#L101" name="L101">101</a><br><a href="#L102" name="L102">102</a><br><a href="#L103" name="L103">103</a><br><a href="#L104" name="L104">104</a><br><a href="#L105" name="L105">105</a><br><a href="#L106" name="L106">106</a><br><a href="#L107" name="L107">107</a><br><a href="#L108" name="L108">108</a><br><a href="#L109" name="L109">109</a><br><a href="#L110" name="L110">110</a><br><a href="#L111" name="L111">111</a><br><a href="#L112" name="L112">112</a><br><a href="#L113" name="L113">113</a><br><a href="#L114" name="L114">114</a><br><a href="#L115" name="L115">115</a><br><a href="#L116" name="L116">116</a><br><a href="#L117" name="L117">117</a><br><a href="#L118" name="L118">118</a><br><a href="#L119" name="L119">119</a><br><a href="#L120" name="L120">120</a><br><a href="#L121" name="L121">121</a><br><a href="#L122" name="L122">122</a><br><a href="#L123" name="L123">123</a><br><a href="#L124" name="L124">124</a><br><a href="#L125" name="L125">125</a><br><a href="#L126" name="L126">126</a><br><a href="#L127" name="L127">127</a><br><a href="#L128" name="L128">128</a><br><a href="#L129" name="L129">129</a><br><a href="#L130" name="L130">130</a><br><a href="#L131" name="L131">131</a><br><a href="#L132" name="L132">132</a><br><a href="#L133" name="L133">133</a><br><a href="#L134" name="L134">134</a><br><a href="#L135" name="L135">135</a><br><a href="#L136" name="L136">136</a><br><a href="#L137" name="L137">137</a><br><a href="#L138" name="L138">138</a><br><a href="#L139" name="L139">139</a><br><a href="#L140" name="L140">140</a><br><a href="#L141" name="L141">141</a><br><a href="#L142" name="L142">142</a><br><a href="#L143" name="L143">143</a><br><a href="#L144" name="L144">144</a><br><a href="#L145" name="L145">145</a><br><a href="#L146" name="L146">146</a><br><a href="#L147" name="L147">147</a><br><a href="#L148" name="L148">148</a><br><a href="#L149" name="L149">149</a><br><a href="#L150" name="L150">150</a><br><a href="#L151" name="L151">151</a><br><a href="#L152" name="L152">152</a><br><a href="#L153" name="L153">153</a><br><a href="#L154" name="L154">154</a><br><a href="#L155" name="L155">155</a><br><a href="#L156" name="L156">156</a><br><a href="#L157" name="L157">157</a><br><a href="#L158" name="L158">158</a><br><a href="#L159" name="L159">159</a><br><a href="#L160" name="L160">160</a><br><a href="#L161" name="L161">161</a><br><a href="#L162" name="L162">162</a><br><a href="#L163" name="L163">163</a><br><a href="#L164" name="L164">164</a><br><a href="#L165" name="L165">165</a><br><a href="#L166" name="L166">166</a><br><a href="#L167" name="L167">167</a><br><a href="#L168" name="L168">168</a><br><a href="#L169" name="L169">169</a><br><a href="#L170" name="L170">170</a><br><a href="#L171" name="L171">171</a><br><a href="#L172" name="L172">172</a><br><a href="#L173" name="L173">173</a><br><a href="#L174" name="L174">174</a><br><a href="#L175" name="L175">175</a><br><a href="#L176" name="L176">176</a><br><a href="#L177" name="L177">177</a><br><a href="#L178" name="L178">178</a><br><a href="#L179" name="L179">179</a><br><a href="#L180" name="L180">180</a><br><a href="#L181" name="L181">181</a><br><a href="#L182" name="L182">182</a><br><a href="#L183" name="L183">183</a><br><a href="#L184" name="L184">184</a><br><a href="#L185" name="L185">185</a><br><a href="#L186" name="L186">186</a><br><a href="#L187" name="L187">187</a><br><a href="#L188" name="L188">188</a><br><a href="#L189" name="L189">189</a><br><a href="#L190" name="L190">190</a><br><a href="#L191" name="L191">191</a><br><a href="#L192" name="L192">192</a><br><a href="#L193" name="L193">193</a><br><a href="#L194" name="L194">194</a><br><a href="#L195" name="L195">195</a><br><a href="#L196" name="L196">196</a><br><a href="#L197" name="L197">197</a><br><a href="#L198" name="L198">198</a><br><a href="#L199" name="L199">199</a><br><a href="#L200" name="L200">200</a><br><a href="#L201" name="L201">201</a><br><a href="#L202" name="L202">202</a><br><a href="#L203" name="L203">203</a><br><a href="#L204" name="L204">204</a><br><a href="#L205" name="L205">205</a><br><a href="#L206" name="L206">206</a><br><a href="#L207" name="L207">207</a><br><a href="#L208" name="L208">208</a><br><a href="#L209" name="L209">209</a><br><a href="#L210" name="L210">210</a><br><a href="#L211" name="L211">211</a><br><a href="#L212" name="L212">212</a><br><a href="#L213" name="L213">213</a><br><a href="#L214" name="L214">214</a><br><a href="#L215" name="L215">215</a><br><a href="#L216" name="L216">216</a><br><a href="#L217" name="L217">217</a><br><a href="#L218" name="L218">218</a><br><a href="#L219" name="L219">219</a><br><a href="#L220" name="L220">220</a><br><a href="#L221" name="L221">221</a><br><a href="#L222" name="L222">222</a><br><a href="#L223" name="L223">223</a><br><a href="#L224" name="L224">224</a><br><a href="#L225" name="L225">225</a><br><a href="#L226" name="L226">226</a><br><a href="#L227" name="L227">227</a><br><a href="#L228" name="L228">228</a><br><a href="#L229" name="L229">229</a><br><a href="#L230" name="L230">230</a><br><a href="#L231" name="L231">231</a><br><a href="#L232" name="L232">232</a><br><a href="#L233" name="L233">233</a><br><a href="#L234" name="L234">234</a><br></pre>
- </div>
- </td>
- <td onmouseup="javascript:LogReuse();" valign="top">
- <div id="CodeDiv">
- <pre>;/*=============================================================================
-; * <a title="Search for references of 'This'" href="javascript:searchRef('This')" class="r">This</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'part'" href="javascript:searchRef('part')" class="r">part</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'yLib'" href="javascript:searchRef('yLib')" class="r">yLib</a> <a title="Search for references of 'Software'" href="javascript:searchRef('Software')" class="r">Software</a> <a title="Search for references of 'Development'" href="javascript:searchRef('Development')" class="r">Development</a> <a title="Search for references of 'Kit'" href="javascript:searchRef('Kit')" class="r">Kit</a>.
-; * <a title="Search for references of 'Copyright'" href="javascript:searchRef('Copyright')" class="r">Copyright</a> (<a title="Search for references of 'C'" href="javascript:searchRef('C')" class="r">C</a>) 1998-2000 <a title="Search for references of 'YEAsoft'" href="javascript:searchRef('YEAsoft')" class="r">YEAsoft</a> <a title="Search for references of 'Inc'" href="javascript:searchRef('Inc')" class="r">Inc</a>.
-; * <a title="Search for references of 'All'" href="javascript:searchRef('All')" class="r">All</a> <a title="Search for references of 'rights'" href="javascript:searchRef('rights')" class="r">rights</a> <a title="Search for references of 'reserved'" href="javascript:searchRef('reserved')" class="r">reserved</a>.
-; *=============================================================================
-; * <a title="Search for references of 'This'" href="javascript:searchRef('This')" class="r">This</a> <a title="Search for references of 'program'" href="javascript:searchRef('program')" class="r">program</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'free'" href="javascript:searchRef('free')" class="r">free</a> <a title="Search for references of 'software'" href="javascript:searchRef('software')" class="r">software</a>; <a title="Search for references of 'you'" href="javascript:searchRef('you')" class="r">you</a> <a title="Search for references of 'can'" href="javascript:searchRef('can')" class="r">can</a> <a title="Search for references of 'redistribute'" href="javascript:searchRef('redistribute')" class="r">redistribute</a> <a title="Search for references of 'it'" href="javascript:searchRef('it')" class="r">it</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a>/<a title="Search for references of 'or'" href="javascript:searchRef('or')" class="r">or</a> <a title="Search for references of 'modify'" href="javascript:searchRef('modify')" class="r">modify</a>
-; * <a title="Search for references of 'it'" href="javascript:searchRef('it')" class="r">it</a> <a title="Search for references of 'under'" href="javascript:searchRef('under')" class="r">under</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'terms'" href="javascript:searchRef('terms')" class="r">terms</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'GNU'" href="javascript:searchRef('GNU')" class="r">GNU</a> <a title="Search for references of 'General'" href="javascript:searchRef('General')" class="r">General</a> <a title="Search for references of 'Public'" href="javascript:searchRef('Public')" class="r">Public</a> <a title="Search for references of 'License'" href="javascript:searchRef('License')" class="r">License</a> <a title="Search for references of 'as'" href="javascript:searchRef('as')" class="r">as</a> <a title="Search for references of 'published'" href="javascript:searchRef('published')" class="r">published</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a>
-; * <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Free'" href="javascript:searchRef('Free')" class="r">Free</a> <a title="Search for references of 'Software'" href="javascript:searchRef('Software')" class="r">Software</a> <a title="Search for references of 'Foundation'" href="javascript:searchRef('Foundation')" class="r">Foundation</a>. <a title="Search for references of 'In'" href="javascript:searchRef('In')" class="r">In</a> <a title="Search for references of 'addition'" href="javascript:searchRef('addition')" class="r">addition</a>, <a title="Search for references of 'you'" href="javascript:searchRef('you')" class="r">you</a> <a title="Search for references of 'may'" href="javascript:searchRef('may')" class="r">may</a> <a title="Search for references of 'also'" href="javascript:searchRef('also')" class="r">also</a> <a title="Search for references of 'charge'" href="javascript:searchRef('charge')" class="r">charge</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'any'" href="javascript:searchRef('any')" class="r">any</a>
-; * <a title="Search for references of 'application'" href="javascript:searchRef('application')" class="r">application</a> <a title="Search for references of 'using'" href="javascript:searchRef('using')" class="r">using</a> <a title="Search for references of 'yLib'" href="javascript:searchRef('yLib')" class="r">yLib</a>, <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'under'" href="javascript:searchRef('under')" class="r">under</a> <a title="Search for references of 'no'" href="javascript:searchRef('no')" class="r">no</a> <a title="Search for references of 'obligation'" href="javascript:searchRef('obligation')" class="r">obligation</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'supply'" href="javascript:searchRef('supply')" class="r">supply</a> <a title="Search for references of 'source'" href="javascript:searchRef('source')" class="r">source</a>
-; * <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>. <a title="Search for references of 'You'" href="javascript:searchRef('You')" class="r">You</a> <a title="Search for references of 'must'" href="javascript:searchRef('must')" class="r">must</a> <a title="Search for references of 'accredit'" href="javascript:searchRef('accredit')" class="r">accredit</a> <a title="Search for references of 'YEAsoft'" href="javascript:searchRef('YEAsoft')" class="r">YEAsoft</a> <a title="Search for references of 'Inc'" href="javascript:searchRef('Inc')" class="r">Inc</a>. <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <span class="str">"About Box"</span>, <a title="Search for references of 'or'" href="javascript:searchRef('or')" class="r">or</a> <a title="Search for references of 'banner'" href="javascript:searchRef('banner')" class="r">banner</a>
-; * <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'your'" href="javascript:searchRef('your')" class="r">your</a> <a title="Search for references of 'application'" href="javascript:searchRef('application')" class="r">application</a>.
-; *
-; * <a title="Search for references of 'This'" href="javascript:searchRef('This')" class="r">This</a> <a title="Search for references of 'program'" href="javascript:searchRef('program')" class="r">program</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'distributed'" href="javascript:searchRef('distributed')" class="r">distributed</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'hope'" href="javascript:searchRef('hope')" class="r">hope</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'it'" href="javascript:searchRef('it')" class="r">it</a> <a title="Search for references of 'will'" href="javascript:searchRef('will')" class="r">will</a> <a title="Search for references of 'be'" href="javascript:searchRef('be')" class="r">be</a> <a title="Search for references of 'useful'" href="javascript:searchRef('useful')" class="r">useful</a>,
-; * <a title="Search for references of 'but'" href="javascript:searchRef('but')" class="r">but</a> <a title="Search for references of 'WITHOUT'" href="javascript:searchRef('WITHOUT')" class="r">WITHOUT</a> <a title="Search for references of 'ANY'" href="javascript:searchRef('ANY')" class="r">ANY</a> <a title="Search for references of 'WARRANTY'" href="javascript:searchRef('WARRANTY')" class="r">WARRANTY</a>; <a title="Search for references of 'without'" href="javascript:searchRef('without')" class="r">without</a> <a title="Search for references of 'even'" href="javascript:searchRef('even')" class="r">even</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'implied'" href="javascript:searchRef('implied')" class="r">implied</a> <a title="Search for references of 'warranty'" href="javascript:searchRef('warranty')" class="r">warranty</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a>
-; * <a title="Search for references of 'MERCHANTABILITY'" href="javascript:searchRef('MERCHANTABILITY')" class="r">MERCHANTABILITY</a> <a title="Search for references of 'or'" href="javascript:searchRef('or')" class="r">or</a> <a title="Search for references of 'FITNESS'" href="javascript:searchRef('FITNESS')" class="r">FITNESS</a> <a title="Search for references of 'FOR'" href="javascript:searchRef('FOR')" class="r">FOR</a> <a title="Search for references of 'A'" href="javascript:searchRef('A')" class="r">A</a> <a title="Search for references of 'PARTICULAR'" href="javascript:searchRef('PARTICULAR')" class="r">PARTICULAR</a> <a title="Search for references of 'PURPOSE'" href="javascript:searchRef('PURPOSE')" class="r">PURPOSE</a>. <a title="Search for references of 'See'" href="javascript:searchRef('See')" class="r">See</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a>
-; * <a title="Search for references of 'GNU'" href="javascript:searchRef('GNU')" class="r">GNU</a> <a title="Search for references of 'General'" href="javascript:searchRef('General')" class="r">General</a> <a title="Search for references of 'Public'" href="javascript:searchRef('Public')" class="r">Public</a> <a title="Search for references of 'License'" href="javascript:searchRef('License')" class="r">License</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'more'" href="javascript:searchRef('more')" class="r">more</a> <a title="Search for references of 'details'" href="javascript:searchRef('details')" class="r">details</a>.
-; *
-; * <a title="Search for references of 'You'" href="javascript:searchRef('You')" class="r">You</a> <a title="Search for references of 'should'" href="javascript:searchRef('should')" class="r">should</a> <a title="Search for references of 'also'" href="javascript:searchRef('also')" class="r">also</a> <a title="Search for references of 'have'" href="javascript:searchRef('have')" class="r">have</a> <a title="Search for references of 'received'" href="javascript:searchRef('received')" class="r">received</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'copy'" href="javascript:searchRef('copy')" class="r">copy</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'GNU'" href="javascript:searchRef('GNU')" class="r">GNU</a> <a title="Search for references of 'General'" href="javascript:searchRef('General')" class="r">General</a> <a title="Search for references of 'Public'" href="javascript:searchRef('Public')" class="r">Public</a> <a title="Search for references of 'License'" href="javascript:searchRef('License')" class="r">License</a>
-; * <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'this'" href="javascript:searchRef('this')" class="r">this</a> <a title="Search for references of 'software'" href="javascript:searchRef('software')" class="r">software</a>, <a title="Search for references of 'also'" href="javascript:searchRef('also')" class="r">also</a> <a title="Search for references of 'indicating'" href="javascript:searchRef('indicating')" class="r">indicating</a> <a title="Search for references of 'additional'" href="javascript:searchRef('additional')" class="r">additional</a> <a title="Search for references of 'rights'" href="javascript:searchRef('rights')" class="r">rights</a> <a title="Search for references of 'you'" href="javascript:searchRef('you')" class="r">you</a> <a title="Search for references of 'have'" href="javascript:searchRef('have')" class="r">have</a> <a title="Search for references of 'when'" href="javascript:searchRef('when')" class="r">when</a> <a title="Search for references of 'using'" href="javascript:searchRef('using')" class="r">using</a>
-; * <a title="Search for references of 'yLib'" href="javascript:searchRef('yLib')" class="r">yLib</a>.
-; *=============================================================================
-; * <a title="Search for references of 'FILENAME'" href="javascript:searchRef('FILENAME')" class="r">FILENAME</a> : <a title="Search for references of 'Sample1'" href="javascript:searchRef('Sample1')" class="r">Sample1</a>.<a title="Search for references of 'mc'" href="javascript:searchRef('mc')" class="r">mc</a>
-; * <a title="Search for references of 'PURPOSE'" href="javascript:searchRef('PURPOSE')" class="r">PURPOSE</a> : <a title="Search for references of 'yLib'" href="javascript:searchRef('yLib')" class="r">yLib</a> <a title="Search for references of 'application'" href="javascript:searchRef('application')" class="r">application</a> <a title="Search for references of 'sample'" href="javascript:searchRef('sample')" class="r">sample</a>
-; * <a title="Search for references of 'SCOPE'" href="javascript:searchRef('SCOPE')" class="r">SCOPE</a> : <a title="Search for references of 'yLib'" href="javascript:searchRef('yLib')" class="r">yLib</a> <a title="Search for references of 'SDK'" href="javascript:searchRef('SDK')" class="r">SDK</a>
-; * <a title="Search for references of 'HISTORY'" href="javascript:searchRef('HISTORY')" class="r">HISTORY</a> : =============================================================
-; *
-; * $<a title="Search for references of 'Log'" href="javascript:searchRef('Log')" class="r">Log</a>: <a title="Search for references of 'SampleMsg1'" href="javascript:searchRef('SampleMsg1')" class="r">SampleMsg1</a>.<a title="Search for references of 'mc'" href="javascript:searchRef('mc')" class="r">mc</a>,<a title="Search for references of 'v'" href="javascript:searchRef('v')" class="r">v</a> $
-; * <a title="Search for references of 'Revision'" href="javascript:searchRef('Revision')" class="r">Revision</a> 1.1 2000/05/26 14:07:30 <a title="Search for references of 'leo'" href="javascript:searchRef('leo')" class="r">leo</a>
-; * <a title="Search for references of 'Initial'" href="javascript:searchRef('Initial')" class="r">Initial</a> <a title="Search for references of 'revision'" href="javascript:searchRef('revision')" class="r">revision</a>
-; *
-; *============================================================================*/
-
-;/*
-;-------------------------------------------------------------------------
-; <a title="Search for references of 'HEADER'" href="javascript:searchRef('HEADER')" class="r">HEADER</a> <a title="Search for references of 'SECTION'" href="javascript:searchRef('SECTION')" class="r">SECTION</a>
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'header'" href="javascript:searchRef('header')" class="r">header</a> <a title="Search for references of 'section'" href="javascript:searchRef('section')" class="r">section</a> <a title="Search for references of 'defines'" href="javascript:searchRef('defines')" class="r">defines</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'language'" href="javascript:searchRef('language')" class="r">language</a> <a title="Search for references of 'identifiers'" href="javascript:searchRef('identifiers')" class="r">identifiers</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'use'" href="javascript:searchRef('use')" class="r">use</a>
-; <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definitions'" href="javascript:searchRef('definitions')" class="r">definitions</a> <a title="Search for references of 'later'" href="javascript:searchRef('later')" class="r">later</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'this'" href="javascript:searchRef('this')" class="r">this</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'MessageIdTypedef'" href="javascript:searchRef('MessageIdTypedef')" class="r">MessageIdTypedef</a>,
-; <a title="Search for references of 'SeverityNames'" href="javascript:searchRef('SeverityNames')" class="r">SeverityNames</a>, <a title="Search for references of 'FacilityNames'" href="javascript:searchRef('FacilityNames')" class="r">FacilityNames</a>, <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'LanguageNames'" href="javascript:searchRef('LanguageNames')" class="r">LanguageNames</a> <a title="Search for references of 'keywords'" href="javascript:searchRef('keywords')" class="r">keywords</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a>
-; <a title="Search for references of 'optional'" href="javascript:searchRef('optional')" class="r">optional</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'not'" href="javascript:searchRef('not')" class="r">not</a> <a title="Search for references of 'required'" href="javascript:searchRef('required')" class="r">required</a>.
-;
-;
-<a title="Search for references of 'MessageIdTypedef'" href="javascript:searchRef('MessageIdTypedef')" class="r">MessageIdTypedef</a>=<a title="Search for references of 'DWORD'" href="javascript:searchRef('DWORD')" class="r">DWORD</a>
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'MessageIdTypedef'" href="javascript:searchRef('MessageIdTypedef')" class="r">MessageIdTypedef</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'gives'" href="javascript:searchRef('gives')" class="r">gives</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'typedef'" href="javascript:searchRef('typedef')" class="r">typedef</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a>
-; <a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a> <a title="Search for references of 'cast'" href="javascript:searchRef('cast')" class="r">cast</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'generated'" href="javascript:searchRef('generated')" class="r">generated</a> <a title="Search for references of 'include'" href="javascript:searchRef('include')" class="r">include</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a>. <a title="Search for references of 'Each'" href="javascript:searchRef('Each')" class="r">Each</a>
-; <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a> <a title="Search for references of 'appears'" href="javascript:searchRef('appears')" class="r">appears</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'include'" href="javascript:searchRef('include')" class="r">include</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'format'" href="javascript:searchRef('format')" class="r">format</a>: #<a title="Search for references of 'define'" href="javascript:searchRef('define')" class="r">define</a>
-; <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> ((<a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a>) 0xnnnnnnnn) <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'default'" href="javascript:searchRef('default')" class="r">default</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'empty'" href="javascript:searchRef('empty')" class="r">empty</a>, <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'no'" href="javascript:searchRef('no')" class="r">no</a>
-; <a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a> <a title="Search for references of 'cast'" href="javascript:searchRef('cast')" class="r">cast</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'generated'" href="javascript:searchRef('generated')" class="r">generated</a>. <a title="Search for references of 'It'" href="javascript:searchRef('It')" class="r">It</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'programmer'" href="javascript:searchRef('programmer')" class="r">programmer</a>'<a title="Search for references of 's'" href="javascript:searchRef('s')" class="r">s</a> <a title="Search for references of 'responsibility'" href="javascript:searchRef('responsibility')" class="r">responsibility</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a>
-; <a title="Search for references of 'specify'" href="javascript:searchRef('specify')" class="r">specify</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'typedef'" href="javascript:searchRef('typedef')" class="r">typedef</a> <a title="Search for references of 'statement'" href="javascript:searchRef('statement')" class="r">statement</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'application'" href="javascript:searchRef('application')" class="r">application</a> <a title="Search for references of 'source'" href="javascript:searchRef('source')" class="r">source</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'define'" href="javascript:searchRef('define')" class="r">define</a>
-; <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'type'" href="javascript:searchRef('type')" class="r">type</a> <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'typedef'" href="javascript:searchRef('typedef')" class="r">typedef</a> <a title="Search for references of 'must'" href="javascript:searchRef('must')" class="r">must</a> <a title="Search for references of 'be'" href="javascript:searchRef('be')" class="r">be</a> <a title="Search for references of 'large'" href="javascript:searchRef('large')" class="r">large</a> <a title="Search for references of 'enough'" href="javascript:searchRef('enough')" class="r">enough</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a>
-; <a title="Search for references of 'accomodate'" href="javascript:searchRef('accomodate')" class="r">accomodate</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'entire'" href="javascript:searchRef('entire')" class="r">entire</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>.
-;
-;
-<a title="Search for references of 'SeverityNames'" href="javascript:searchRef('SeverityNames')" class="r">SeverityNames</a>=(<a title="Search for references of 'Success'" href="javascript:searchRef('Success')" class="r">Success</a>=0x0:<a title="Search for references of 'STATUS_SEVERITY_SUCCESS'" href="javascript:searchRef('STATUS_SEVERITY_SUCCESS')" class="r">STATUS_SEVERITY_SUCCESS</a>
- <a title="Search for references of 'Informational'" href="javascript:searchRef('Informational')" class="r">Informational</a>=0x1:<a title="Search for references of 'STATUS_SEVERITY_INFORMATIONAL'" href="javascript:searchRef('STATUS_SEVERITY_INFORMATIONAL')" class="r">STATUS_SEVERITY_INFORMATIONAL</a>
- <a title="Search for references of 'Warning'" href="javascript:searchRef('Warning')" class="r">Warning</a>=0x2:<a title="Search for references of 'STATUS_SEVERITY_WARNING'" href="javascript:searchRef('STATUS_SEVERITY_WARNING')" class="r">STATUS_SEVERITY_WARNING</a>
- <a title="Search for references of 'Error'" href="javascript:searchRef('Error')" class="r">Error</a>=0x3:<a title="Search for references of 'STATUS_SEVERITY_ERROR'" href="javascript:searchRef('STATUS_SEVERITY_ERROR')" class="r">STATUS_SEVERITY_ERROR</a>
- )
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'SeverityNames'" href="javascript:searchRef('SeverityNames')" class="r">SeverityNames</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'defines'" href="javascript:searchRef('defines')" class="r">defines</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'allowed'" href="javascript:searchRef('allowed')" class="r">allowed</a>
-; <a title="Search for references of 'as'" href="javascript:searchRef('as')" class="r">as</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a>
-; <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'delimited'" href="javascript:searchRef('delimited')" class="r">delimited</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'left'" href="javascript:searchRef('left')" class="r">left</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'right'" href="javascript:searchRef('right')" class="r">right</a> <a title="Search for references of 'parentheses'" href="javascript:searchRef('parentheses')" class="r">parentheses</a>. <a title="Search for references of 'Associated'" href="javascript:searchRef('Associated')" class="r">Associated</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a>
-; <a title="Search for references of 'severity'" href="javascript:searchRef('severity')" class="r">severity</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a>, <a title="Search for references of 'when'" href="javascript:searchRef('when')" class="r">when</a> <a title="Search for references of 'shifted'" href="javascript:searchRef('shifted')" class="r">shifted</a> <a title="Search for references of 'left'" href="javascript:searchRef('left')" class="r">left</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> 30, <a title="Search for references of 'gives'" href="javascript:searchRef('gives')" class="r">gives</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a>
-; <a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'pattern'" href="javascript:searchRef('pattern')" class="r">pattern</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'logical'" href="javascript:searchRef('logical')" class="r">logical</a>-<a title="Search for references of 'OR'" href="javascript:searchRef('OR')" class="r">OR</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>
-; <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'form'" href="javascript:searchRef('form')" class="r">form</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'full'" href="javascript:searchRef('full')" class="r">full</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'default'" href="javascript:searchRef('default')" class="r">default</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a>
-; <a title="Search for references of 'this'" href="javascript:searchRef('this')" class="r">this</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a>:
-;
-; <a title="Search for references of 'SeverityNames'" href="javascript:searchRef('SeverityNames')" class="r">SeverityNames</a>=(
-; <a title="Search for references of 'Success'" href="javascript:searchRef('Success')" class="r">Success</a>=0x0
-; <a title="Search for references of 'Informational'" href="javascript:searchRef('Informational')" class="r">Informational</a>=0x1
-; <a title="Search for references of 'Warning'" href="javascript:searchRef('Warning')" class="r">Warning</a>=0x2
-; <a title="Search for references of 'Error'" href="javascript:searchRef('Error')" class="r">Error</a>=0x3
-; )
-;
-; <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> <a title="Search for references of 'values'" href="javascript:searchRef('values')" class="r">values</a> <a title="Search for references of 'occupy'" href="javascript:searchRef('occupy')" class="r">occupy</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'high'" href="javascript:searchRef('high')" class="r">high</a> <a title="Search for references of 'two'" href="javascript:searchRef('two')" class="r">two</a> <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>.
-; <a title="Search for references of 'Any'" href="javascript:searchRef('Any')" class="r">Any</a> <a title="Search for references of 'severity'" href="javascript:searchRef('severity')" class="r">severity</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'does'" href="javascript:searchRef('does')" class="r">does</a> <a title="Search for references of 'not'" href="javascript:searchRef('not')" class="r">not</a> <a title="Search for references of 'fit'" href="javascript:searchRef('fit')" class="r">fit</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'two'" href="javascript:searchRef('two')" class="r">two</a> <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'an'" href="javascript:searchRef('an')" class="r">an</a> <a title="Search for references of 'error'" href="javascript:searchRef('error')" class="r">error</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a>
-; <a title="Search for references of 'severity'" href="javascript:searchRef('severity')" class="r">severity</a> <a title="Search for references of 'codes'" href="javascript:searchRef('codes')" class="r">codes</a> <a title="Search for references of 'can'" href="javascript:searchRef('can')" class="r">can</a> <a title="Search for references of 'be'" href="javascript:searchRef('be')" class="r">be</a> <a title="Search for references of 'given'" href="javascript:searchRef('given')" class="r">given</a> <a title="Search for references of 'symbolic'" href="javascript:searchRef('symbolic')" class="r">symbolic</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'following'" href="javascript:searchRef('following')" class="r">following</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> :<a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a>
-;
-;
-<a title="Search for references of 'FacilityNames'" href="javascript:searchRef('FacilityNames')" class="r">FacilityNames</a>=(<a title="Search for references of 'System'" href="javascript:searchRef('System')" class="r">System</a>=0x0:<a title="Search for references of 'FACILITY_SYSTEM'" href="javascript:searchRef('FACILITY_SYSTEM')" class="r">FACILITY_SYSTEM</a>
- <a title="Search for references of 'Runtime'" href="javascript:searchRef('Runtime')" class="r">Runtime</a>=0x2:<a title="Search for references of 'FACILITY_RUNTIME'" href="javascript:searchRef('FACILITY_RUNTIME')" class="r">FACILITY_RUNTIME</a>
- <a title="Search for references of 'Stubs'" href="javascript:searchRef('Stubs')" class="r">Stubs</a>=0x3:<a title="Search for references of 'FACILITY_STUBS'" href="javascript:searchRef('FACILITY_STUBS')" class="r">FACILITY_STUBS</a>
- <a title="Search for references of 'Io'" href="javascript:searchRef('Io')" class="r">Io</a>=0x4:<a title="Search for references of 'FACILITY_IO_ERROR_CODE'" href="javascript:searchRef('FACILITY_IO_ERROR_CODE')" class="r">FACILITY_IO_ERROR_CODE</a>
- )
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'FacilityNames'" href="javascript:searchRef('FacilityNames')" class="r">FacilityNames</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'defines'" href="javascript:searchRef('defines')" class="r">defines</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'allowed'" href="javascript:searchRef('allowed')" class="r">allowed</a>
-; <a title="Search for references of 'as'" href="javascript:searchRef('as')" class="r">as</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a>
-; <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'delimited'" href="javascript:searchRef('delimited')" class="r">delimited</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'left'" href="javascript:searchRef('left')" class="r">left</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'right'" href="javascript:searchRef('right')" class="r">right</a> <a title="Search for references of 'parentheses'" href="javascript:searchRef('parentheses')" class="r">parentheses</a>. <a title="Search for references of 'Associated'" href="javascript:searchRef('Associated')" class="r">Associated</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a>
-; <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a>, <a title="Search for references of 'when'" href="javascript:searchRef('when')" class="r">when</a> <a title="Search for references of 'shift'" href="javascript:searchRef('shift')" class="r">shift</a> <a title="Search for references of 'it'" href="javascript:searchRef('it')" class="r">it</a> <a title="Search for references of 'left'" href="javascript:searchRef('left')" class="r">left</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> 16 <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a>, <a title="Search for references of 'gives'" href="javascript:searchRef('gives')" class="r">gives</a>
-; <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'pattern'" href="javascript:searchRef('pattern')" class="r">pattern</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'logical'" href="javascript:searchRef('logical')" class="r">logical</a>-<a title="Search for references of 'OR'" href="javascript:searchRef('OR')" class="r">OR</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>
-; <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'form'" href="javascript:searchRef('form')" class="r">form</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'full'" href="javascript:searchRef('full')" class="r">full</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'default'" href="javascript:searchRef('default')" class="r">default</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a>
-; <a title="Search for references of 'this'" href="javascript:searchRef('this')" class="r">this</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a>:
-;
-; <a title="Search for references of 'FacilityNames'" href="javascript:searchRef('FacilityNames')" class="r">FacilityNames</a>=(
-; <a title="Search for references of 'System'" href="javascript:searchRef('System')" class="r">System</a>=0x0FF
-; <a title="Search for references of 'Application'" href="javascript:searchRef('Application')" class="r">Application</a>=0xFFF
-; )
-;
-; <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> <a title="Search for references of 'codes'" href="javascript:searchRef('codes')" class="r">codes</a> <a title="Search for references of 'occupy'" href="javascript:searchRef('occupy')" class="r">occupy</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'low'" href="javascript:searchRef('low')" class="r">low</a> <a title="Search for references of 'order'" href="javascript:searchRef('order')" class="r">order</a> 12 <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'high'" href="javascript:searchRef('high')" class="r">high</a> <a title="Search for references of 'order'" href="javascript:searchRef('order')" class="r">order</a>
-; 16-<a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>. <a title="Search for references of 'Any'" href="javascript:searchRef('Any')" class="r">Any</a> <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'does'" href="javascript:searchRef('does')" class="r">does</a> <a title="Search for references of 'not'" href="javascript:searchRef('not')" class="r">not</a>
-; <a title="Search for references of 'fit'" href="javascript:searchRef('fit')" class="r">fit</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> 12 <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'an'" href="javascript:searchRef('an')" class="r">an</a> <a title="Search for references of 'error'" href="javascript:searchRef('error')" class="r">error</a>. <a title="Search for references of 'This'" href="javascript:searchRef('This')" class="r">This</a> <a title="Search for references of 'allows'" href="javascript:searchRef('allows')" class="r">allows</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> 4,096 <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a> <a title="Search for references of 'codes'" href="javascript:searchRef('codes')" class="r">codes</a>.
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'first'" href="javascript:searchRef('first')" class="r">first</a> 256 <a title="Search for references of 'codes'" href="javascript:searchRef('codes')" class="r">codes</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'reserved'" href="javascript:searchRef('reserved')" class="r">reserved</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'use'" href="javascript:searchRef('use')" class="r">use</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'system'" href="javascript:searchRef('system')" class="r">system</a> <a title="Search for references of 'software'" href="javascript:searchRef('software')" class="r">software</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a>
-; <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a> <a title="Search for references of 'codes'" href="javascript:searchRef('codes')" class="r">codes</a> <a title="Search for references of 'can'" href="javascript:searchRef('can')" class="r">can</a> <a title="Search for references of 'be'" href="javascript:searchRef('be')" class="r">be</a> <a title="Search for references of 'given'" href="javascript:searchRef('given')" class="r">given</a> <a title="Search for references of 'symbolic'" href="javascript:searchRef('symbolic')" class="r">symbolic</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'following'" href="javascript:searchRef('following')" class="r">following</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> :<a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a>
-;
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'LanguageNames'" href="javascript:searchRef('LanguageNames')" class="r">LanguageNames</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'defines'" href="javascript:searchRef('defines')" class="r">defines</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'allowed'" href="javascript:searchRef('allowed')" class="r">allowed</a>
-; <a title="Search for references of 'as'" href="javascript:searchRef('as')" class="r">as</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a> <a title="Search for references of 'keyword'" href="javascript:searchRef('keyword')" class="r">keyword</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a>
-; <a title="Search for references of 'set'" href="javascript:searchRef('set')" class="r">set</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'delimited'" href="javascript:searchRef('delimited')" class="r">delimited</a> <a title="Search for references of 'by'" href="javascript:searchRef('by')" class="r">by</a> <a title="Search for references of 'left'" href="javascript:searchRef('left')" class="r">left</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'right'" href="javascript:searchRef('right')" class="r">right</a> <a title="Search for references of 'parentheses'" href="javascript:searchRef('parentheses')" class="r">parentheses</a>. <a title="Search for references of 'Associated'" href="javascript:searchRef('Associated')" class="r">Associated</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a>
-; <a title="Search for references of 'language'" href="javascript:searchRef('language')" class="r">language</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a>
-; <a title="Search for references of 'generated'" href="javascript:searchRef('generated')" class="r">generated</a> <a title="Search for references of 'resource'" href="javascript:searchRef('resource')" class="r">resource</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'contains'" href="javascript:searchRef('contains')" class="r">contains</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'messages'" href="javascript:searchRef('messages')" class="r">messages</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a>
-; <a title="Search for references of 'language'" href="javascript:searchRef('language')" class="r">language</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'corresponds'" href="javascript:searchRef('corresponds')" class="r">corresponds</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'language'" href="javascript:searchRef('language')" class="r">language</a> <a title="Search for references of 'identifier'" href="javascript:searchRef('identifier')" class="r">identifier</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'use'" href="javascript:searchRef('use')" class="r">use</a>
-; <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'resource'" href="javascript:searchRef('resource')" class="r">resource</a> <a title="Search for references of 'table'" href="javascript:searchRef('table')" class="r">table</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'separated'" href="javascript:searchRef('separated')" class="r">separated</a> <a title="Search for references of 'from'" href="javascript:searchRef('from')" class="r">from</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a> <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a>
-; <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'colon'" href="javascript:searchRef('colon')" class="r">colon</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'initial'" href="javascript:searchRef('initial')" class="r">initial</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'LanguageNames'" href="javascript:searchRef('LanguageNames')" class="r">LanguageNames</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a>:
-;
-; <a title="Search for references of 'LanguageNames'" href="javascript:searchRef('LanguageNames')" class="r">LanguageNames</a>=(<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>=1:<a title="Search for references of 'MSG00001'" href="javascript:searchRef('MSG00001')" class="r">MSG00001</a>)
-<a title="Search for references of 'LanguageNames'" href="javascript:searchRef('LanguageNames')" class="r">LanguageNames</a>=(
- <a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>=7:<a title="Search for references of 'MSG00007'" href="javascript:searchRef('MSG00007')" class="r">MSG00007</a>
- <a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>=16:<a title="Search for references of 'MSG00010'" href="javascript:searchRef('MSG00010')" class="r">MSG00010</a>
- )
-;
-; <a title="Search for references of 'Any'" href="javascript:searchRef('Any')" class="r">Any</a> <a title="Search for references of 'new'" href="javascript:searchRef('new')" class="r">new</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'source'" href="javascript:searchRef('source')" class="r">source</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a> <a title="Search for references of 'which'" href="javascript:searchRef('which')" class="r">which</a> <a title="Search for references of 'don'" href="javascript:searchRef('don')" class="r">don</a>'<a title="Search for references of 't'" href="javascript:searchRef('t')" class="r">t</a> <a title="Search for references of 'override'" href="javascript:searchRef('override')" class="r">override</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'built'" href="javascript:searchRef('built')" class="r">built</a>-<a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a>
-; <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'added'" href="javascript:searchRef('added')" class="r">added</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'list'" href="javascript:searchRef('list')" class="r">list</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'valid'" href="javascript:searchRef('valid')" class="r">valid</a> <a title="Search for references of 'languages'" href="javascript:searchRef('languages')" class="r">languages</a>. <a title="Search for references of 'This'" href="javascript:searchRef('This')" class="r">This</a> <a title="Search for references of 'allows'" href="javascript:searchRef('allows')" class="r">allows</a> <a title="Search for references of 'an'" href="javascript:searchRef('an')" class="r">an</a>
-; <a title="Search for references of 'application'" href="javascript:searchRef('application')" class="r">application</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'support'" href="javascript:searchRef('support')" class="r">support</a> <a title="Search for references of 'private'" href="javascript:searchRef('private')" class="r">private</a> <a title="Search for references of 'languages'" href="javascript:searchRef('languages')" class="r">languages</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'descriptive'" href="javascript:searchRef('descriptive')" class="r">descriptive</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a>.
-;
-;
-;-------------------------------------------------------------------------
-; <a title="Search for references of 'MESSAGE'" href="javascript:searchRef('MESSAGE')" class="r">MESSAGE</a> <a title="Search for references of 'DEFINITION'" href="javascript:searchRef('DEFINITION')" class="r">DEFINITION</a> <a title="Search for references of 'SECTION'" href="javascript:searchRef('SECTION')" class="r">SECTION</a>
-;
-; <a title="Search for references of 'Following'" href="javascript:searchRef('Following')" class="r">Following</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'header'" href="javascript:searchRef('header')" class="r">header</a> <a title="Search for references of 'section'" href="javascript:searchRef('section')" class="r">section</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'body'" href="javascript:searchRef('body')" class="r">body</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'Message'" href="javascript:searchRef('Message')" class="r">Message</a> <a title="Search for references of 'Compiler'" href="javascript:searchRef('Compiler')" class="r">Compiler</a>
-; <a title="Search for references of 'source'" href="javascript:searchRef('source')" class="r">source</a> <a title="Search for references of 'file'" href="javascript:searchRef('file')" class="r">file</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'body'" href="javascript:searchRef('body')" class="r">body</a> <a title="Search for references of 'consists'" href="javascript:searchRef('consists')" class="r">consists</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'zero'" href="javascript:searchRef('zero')" class="r">zero</a> <a title="Search for references of 'or'" href="javascript:searchRef('or')" class="r">or</a> <a title="Search for references of 'more'" href="javascript:searchRef('more')" class="r">more</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definitions'" href="javascript:searchRef('definitions')" class="r">definitions</a>.
-; <a title="Search for references of 'Each'" href="javascript:searchRef('Each')" class="r">Each</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a> <a title="Search for references of 'begins'" href="javascript:searchRef('begins')" class="r">begins</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'one'" href="javascript:searchRef('one')" class="r">one</a> <a title="Search for references of 'or'" href="javascript:searchRef('or')" class="r">or</a> <a title="Search for references of 'more'" href="javascript:searchRef('more')" class="r">more</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'following'" href="javascript:searchRef('following')" class="r">following</a>
-; <a title="Search for references of 'statements'" href="javascript:searchRef('statements')" class="r">statements</a>:
-;
-; <a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a> = [<a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a>|+<a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a>]
-; <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> = <a title="Search for references of 'severity_name'" href="javascript:searchRef('severity_name')" class="r">severity_name</a>
-; <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> = <a title="Search for references of 'facility_name'" href="javascript:searchRef('facility_name')" class="r">facility_name</a>
-; <a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a> = <a title="Search for references of 'name'" href="javascript:searchRef('name')" class="r">name</a>
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a> <a title="Search for references of 'statement'" href="javascript:searchRef('statement')" class="r">statement</a> <a title="Search for references of 'marks'" href="javascript:searchRef('marks')" class="r">marks</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'beginning'" href="javascript:searchRef('beginning')" class="r">beginning</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a>
-; <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a>. <a title="Search for references of 'A'" href="javascript:searchRef('A')" class="r">A</a> <a title="Search for references of 'MessageID'" href="javascript:searchRef('MessageID')" class="r">MessageID</a> <a title="Search for references of 'statement'" href="javascript:searchRef('statement')" class="r">statement</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'required'" href="javascript:searchRef('required')" class="r">required</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'each'" href="javascript:searchRef('each')" class="r">each</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a>,
-; <a title="Search for references of 'although'" href="javascript:searchRef('although')" class="r">although</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'optional'" href="javascript:searchRef('optional')" class="r">optional</a>. <a title="Search for references of 'If'" href="javascript:searchRef('If')" class="r">If</a> <a title="Search for references of 'no'" href="javascript:searchRef('no')" class="r">no</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'specified'" href="javascript:searchRef('specified')" class="r">specified</a>, <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'previous'" href="javascript:searchRef('previous')" class="r">previous</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a> <a title="Search for references of 'plus'" href="javascript:searchRef('plus')" class="r">plus</a> <a title="Search for references of 'one'" href="javascript:searchRef('one')" class="r">one</a>. <a title="Search for references of 'If'" href="javascript:searchRef('If')" class="r">If</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'specified'" href="javascript:searchRef('specified')" class="r">specified</a> <a title="Search for references of 'as'" href="javascript:searchRef('as')" class="r">as</a> +<a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'then'" href="javascript:searchRef('then')" class="r">then</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'previous'" href="javascript:searchRef('previous')" class="r">previous</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'facility'" href="javascript:searchRef('facility')" class="r">facility</a>, <a title="Search for references of 'plus'" href="javascript:searchRef('plus')" class="r">plus</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'number'" href="javascript:searchRef('number')" class="r">number</a> <a title="Search for references of 'after'" href="javascript:searchRef('after')" class="r">after</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'plus'" href="javascript:searchRef('plus')" class="r">plus</a> <a title="Search for references of 'sign'" href="javascript:searchRef('sign')" class="r">sign</a>. <a title="Search for references of 'Otherwise'" href="javascript:searchRef('Otherwise')" class="r">Otherwise</a>, <a title="Search for references of 'if'" href="javascript:searchRef('if')" class="r">if</a>
-; <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'numeric'" href="javascript:searchRef('numeric')" class="r">numeric</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'given'" href="javascript:searchRef('given')" class="r">given</a>, <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'used'" href="javascript:searchRef('used')" class="r">used</a>. <a title="Search for references of 'Any'" href="javascript:searchRef('Any')" class="r">Any</a> <a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a>
-; <a title="Search for references of 'that'" href="javascript:searchRef('that')" class="r">that</a> <a title="Search for references of 'does'" href="javascript:searchRef('does')" class="r">does</a> <a title="Search for references of 'not'" href="javascript:searchRef('not')" class="r">not</a> <a title="Search for references of 'fit'" href="javascript:searchRef('fit')" class="r">fit</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> 16 <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'is'" href="javascript:searchRef('is')" class="r">is</a> <a title="Search for references of 'an'" href="javascript:searchRef('an')" class="r">an</a> <a title="Search for references of 'error'" href="javascript:searchRef('error')" class="r">error</a>.
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> <a title="Search for references of 'statements'" href="javascript:searchRef('statements')" class="r">statements</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a> <a title="Search for references of 'optional'" href="javascript:searchRef('optional')" class="r">optional</a>. <a title="Search for references of 'These'" href="javascript:searchRef('These')" class="r">These</a> <a title="Search for references of 'statements'" href="javascript:searchRef('statements')" class="r">statements</a>
-; <a title="Search for references of 'specify'" href="javascript:searchRef('specify')" class="r">specify</a> <a title="Search for references of 'additional'" href="javascript:searchRef('additional')" class="r">additional</a> <a title="Search for references of 'bits'" href="javascript:searchRef('bits')" class="r">bits</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'OR'" href="javascript:searchRef('OR')" class="r">OR</a> <a title="Search for references of 'into'" href="javascript:searchRef('into')" class="r">into</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'final'" href="javascript:searchRef('final')" class="r">final</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>. <a title="Search for references of 'If'" href="javascript:searchRef('If')" class="r">If</a>
-; <a title="Search for references of 'not'" href="javascript:searchRef('not')" class="r">not</a> <a title="Search for references of 'specified'" href="javascript:searchRef('specified')" class="r">specified</a> <a title="Search for references of 'they'" href="javascript:searchRef('they')" class="r">they</a> <a title="Search for references of 'default'" href="javascript:searchRef('default')" class="r">default</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'last'" href="javascript:searchRef('last')" class="r">last</a> <a title="Search for references of 'specified'" href="javascript:searchRef('specified')" class="r">specified</a> <a title="Search for references of 'for'" href="javascript:searchRef('for')" class="r">for</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a>
-; <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'initial'" href="javascript:searchRef('initial')" class="r">initial</a> <a title="Search for references of 'values'" href="javascript:searchRef('values')" class="r">values</a> <a title="Search for references of 'prior'" href="javascript:searchRef('prior')" class="r">prior</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a> <a title="Search for references of 'processing'" href="javascript:searchRef('processing')" class="r">processing</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'first'" href="javascript:searchRef('first')" class="r">first</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a>
-; <a title="Search for references of 'definition'" href="javascript:searchRef('definition')" class="r">definition</a> <a title="Search for references of 'are'" href="javascript:searchRef('are')" class="r">are</a>:
-;
-; <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a>=<a title="Search for references of 'Success'" href="javascript:searchRef('Success')" class="r">Success</a>
-; <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a>=<a title="Search for references of 'Application'" href="javascript:searchRef('Application')" class="r">Application</a>
-;
-; <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'value'" href="javascript:searchRef('value')" class="r">value</a> <a title="Search for references of 'associated'" href="javascript:searchRef('associated')" class="r">associated</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a> <a title="Search for references of 'must'" href="javascript:searchRef('must')" class="r">must</a> <a title="Search for references of 'match'" href="javascript:searchRef('match')" class="r">match</a> <a title="Search for references of 'one'" href="javascript:searchRef('one')" class="r">one</a> <a title="Search for references of 'of'" href="javascript:searchRef('of')" class="r">of</a>
-; <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'names'" href="javascript:searchRef('names')" class="r">names</a> <a title="Search for references of 'given'" href="javascript:searchRef('given')" class="r">given</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'FacilityNames'" href="javascript:searchRef('FacilityNames')" class="r">FacilityNames</a> <a title="Search for references of 'and'" href="javascript:searchRef('and')" class="r">and</a> <a title="Search for references of 'SeverityNames'" href="javascript:searchRef('SeverityNames')" class="r">SeverityNames</a> <a title="Search for references of 'statements'" href="javascript:searchRef('statements')" class="r">statements</a> <a title="Search for references of 'in'" href="javascript:searchRef('in')" class="r">in</a>
-; <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'header'" href="javascript:searchRef('header')" class="r">header</a> <a title="Search for references of 'section'" href="javascript:searchRef('section')" class="r">section</a>. <a title="Search for references of 'The'" href="javascript:searchRef('The')" class="r">The</a> <a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a> <a title="Search for references of 'statement'" href="javascript:searchRef('statement')" class="r">statement</a> <a title="Search for references of 'allows'" href="javascript:searchRef('allows')" class="r">allows</a> <a title="Search for references of 'you'" href="javascript:searchRef('you')" class="r">you</a> <a title="Search for references of 'to'" href="javascript:searchRef('to')" class="r">to</a>
-; <a title="Search for references of 'associate'" href="javascript:searchRef('associate')" class="r">associate</a> <a title="Search for references of 'a'" href="javascript:searchRef('a')" class="r">a</a> <a title="Search for references of 'C'" href="javascript:searchRef('C')" class="r">C</a>/<a title="Search for references of 'C'" href="javascript:searchRef('C')" class="r">C</a>++ <a title="Search for references of 'symbolic'" href="javascript:searchRef('symbolic')" class="r">symbolic</a> <a title="Search for references of 'constant'" href="javascript:searchRef('constant')" class="r">constant</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'the'" href="javascript:searchRef('the')" class="r">the</a> <a title="Search for references of 'final'" href="javascript:searchRef('final')" class="r">final</a> 32-<a title="Search for references of 'bit'" href="javascript:searchRef('bit')" class="r">bit</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a>
-; <a title="Search for references of 'code'" href="javascript:searchRef('code')" class="r">code</a>.
-; */
-
-
-<a title="Search for references of 'MessageIdTypedef'" href="javascript:searchRef('MessageIdTypedef')" class="r">MessageIdTypedef</a>=<a title="Search for references of 'WORD'" href="javascript:searchRef('WORD')" class="r">WORD</a>
-
-<a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>=0x1
-<a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a>=<a title="Search for references of 'CAT_NO_PARAMS'" href="javascript:searchRef('CAT_NO_PARAMS')" class="r">CAT_NO_PARAMS</a>
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>
-<a title="Search for references of 'Without'" href="javascript:searchRef('Without')" class="r">Without</a> <a title="Search for references of 'Parameters'" href="javascript:searchRef('Parameters')" class="r">Parameters</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>
-<a title="Search for references of 'Ohne'" href="javascript:searchRef('Ohne')" class="r">Ohne</a> <a title="Search for references of 'Parameter'" href="javascript:searchRef('Parameter')" class="r">Parameter</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>
-<a title="Search for references of 'Senza'" href="javascript:searchRef('Senza')" class="r">Senza</a> <a title="Search for references of 'Parametri'" href="javascript:searchRef('Parametri')" class="r">Parametri</a>
-.
-
-<a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>=
-<a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a>=<a title="Search for references of 'CAT_PARAMS'" href="javascript:searchRef('CAT_PARAMS')" class="r">CAT_PARAMS</a>
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>
-<a title="Search for references of 'With'" href="javascript:searchRef('With')" class="r">With</a> <a title="Search for references of 'Parameters'" href="javascript:searchRef('Parameters')" class="r">Parameters</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>
-<a title="Search for references of 'Mit'" href="javascript:searchRef('Mit')" class="r">Mit</a> <a title="Search for references of 'Parameter'" href="javascript:searchRef('Parameter')" class="r">Parameter</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>
-<a title="Search for references of 'Con'" href="javascript:searchRef('Con')" class="r">Con</a> <a title="Search for references of 'Parametri'" href="javascript:searchRef('Parametri')" class="r">Parametri</a>
-.
-
-<a title="Search for references of 'MessageIdTypedef'" href="javascript:searchRef('MessageIdTypedef')" class="r">MessageIdTypedef</a>=<a title="Search for references of 'DWORD'" href="javascript:searchRef('DWORD')" class="r">DWORD</a>
-
-<a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>=0x100
-<a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a>=<a title="Search for references of 'Error'" href="javascript:searchRef('Error')" class="r">Error</a>
-<a title="Search for references of 'Facility'" href="javascript:searchRef('Facility')" class="r">Facility</a>=<a title="Search for references of 'Runtime'" href="javascript:searchRef('Runtime')" class="r">Runtime</a>
-<a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a>=<a title="Search for references of 'MSG_TEST1'" href="javascript:searchRef('MSG_TEST1')" class="r">MSG_TEST1</a>
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'no'" href="javascript:searchRef('no')" class="r">no</a> <a title="Search for references of 'parameters'" href="javascript:searchRef('parameters')" class="r">parameters</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'Nachricht'" href="javascript:searchRef('Nachricht')" class="r">Nachricht</a> <a title="Search for references of 'ohne'" href="javascript:searchRef('ohne')" class="r">ohne</a> <a title="Search for references of 'Parameter'" href="javascript:searchRef('Parameter')" class="r">Parameter</a>
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>
-<a title="Search for references of 'Messaggio'" href="javascript:searchRef('Messaggio')" class="r">Messaggio</a> <a title="Search for references of 'di'" href="javascript:searchRef('di')" class="r">di</a> <a title="Search for references of 'test'" href="javascript:searchRef('test')" class="r">test</a> <a title="Search for references of 'senza'" href="javascript:searchRef('senza')" class="r">senza</a> <a title="Search for references of 'parametri'" href="javascript:searchRef('parametri')" class="r">parametri</a>
-.
-
-<a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>=
-<a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a>=<a title="Search for references of 'Error'" href="javascript:searchRef('Error')" class="r">Error</a>
-<a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a>=<a title="Search for references of 'MSG_TEST2'" href="javascript:searchRef('MSG_TEST2')" class="r">MSG_TEST2</a>
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'one'" href="javascript:searchRef('one')" class="r">one</a> <a title="Search for references of 'parameter'" href="javascript:searchRef('parameter')" class="r">parameter</a>: (%1)
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'Nachricht'" href="javascript:searchRef('Nachricht')" class="r">Nachricht</a> <a title="Search for references of 'mit'" href="javascript:searchRef('mit')" class="r">mit</a> <a title="Search for references of 'einen'" href="javascript:searchRef('einen')" class="r">einen</a> <a title="Search for references of 'Parameter'" href="javascript:searchRef('Parameter')" class="r">Parameter</a>: (%1)
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>
-<a title="Search for references of 'Messaggio'" href="javascript:searchRef('Messaggio')" class="r">Messaggio</a> <a title="Search for references of 'di'" href="javascript:searchRef('di')" class="r">di</a> <a title="Search for references of 'test'" href="javascript:searchRef('test')" class="r">test</a> <a title="Search for references of 'con'" href="javascript:searchRef('con')" class="r">con</a> <a title="Search for references of 'un'" href="javascript:searchRef('un')" class="r">un</a> <a title="Search for references of 'parametro'" href="javascript:searchRef('parametro')" class="r">parametro</a>: (%1)
-.
-
-<a title="Search for references of 'MessageId'" href="javascript:searchRef('MessageId')" class="r">MessageId</a>=
-<a title="Search for references of 'Severity'" href="javascript:searchRef('Severity')" class="r">Severity</a>=<a title="Search for references of 'Error'" href="javascript:searchRef('Error')" class="r">Error</a>
-<a title="Search for references of 'SymbolicName'" href="javascript:searchRef('SymbolicName')" class="r">SymbolicName</a>=<a title="Search for references of 'MSG_TEST3'" href="javascript:searchRef('MSG_TEST3')" class="r">MSG_TEST3</a>
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'English'" href="javascript:searchRef('English')" class="r">English</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'message'" href="javascript:searchRef('message')" class="r">message</a> <a title="Search for references of 'with'" href="javascript:searchRef('with')" class="r">with</a> <a title="Search for references of 'three'" href="javascript:searchRef('three')" class="r">three</a> <a title="Search for references of 'parameters'" href="javascript:searchRef('parameters')" class="r">parameters</a>: (1:'%1' 2:'%2' 3:'%3')
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'German'" href="javascript:searchRef('German')" class="r">German</a>
-<a title="Search for references of 'Test'" href="javascript:searchRef('Test')" class="r">Test</a> <a title="Search for references of 'Nachricht'" href="javascript:searchRef('Nachricht')" class="r">Nachricht</a> <a title="Search for references of 'mit'" href="javascript:searchRef('mit')" class="r">mit</a> <a title="Search for references of 'drei'" href="javascript:searchRef('drei')" class="r">drei</a> <a title="Search for references of 'Parameter'" href="javascript:searchRef('Parameter')" class="r">Parameter</a>: (1:'%1' 2:'%2' 3:'%3')
-.
-<a title="Search for references of 'Language'" href="javascript:searchRef('Language')" class="r">Language</a>=<a title="Search for references of 'Italian'" href="javascript:searchRef('Italian')" class="r">Italian</a>
-<a title="Search for references of 'Messaggio'" href="javascript:searchRef('Messaggio')" class="r">Messaggio</a> <a title="Search for references of 'di'" href="javascript:searchRef('di')" class="r">di</a> <a title="Search for references of 'test'" href="javascript:searchRef('test')" class="r">test</a> <a title="Search for references of 'con'" href="javascript:searchRef('con')" class="r">con</a> <a title="Search for references of 'tre'" href="javascript:searchRef('tre')" class="r">tre</a> <a title="Search for references of 'parametri'" href="javascript:searchRef('parametri')" class="r">parametri</a>: (1:'%1' 2:'%2' 3:'%3')
-.
-</pre>
- </div>
- </td>
- </tr>
- </tbody></table>
- </td>
- </tr>
-</tbody></table>
-
-
-<script type="text/javascript">
-var jumpLine = "-1";
-if(jumpLine && jumpLine != "-1" && !document.location.hash){
- if(document.attachEvent){
- document.attachEvent("onreadystatechange", function(){
- if(document.readyState != "complete") return;
- var numbers = document.all["kodeViewerLineNumbers"];
- var targetA = numbers.children.tags("a")[jumpLine - 1];
- targetA.scrollIntoView();
- document.body.scrollLeft = 0;
- });
- } else if(window.addEventListener){
- window.addEventListener("load", function(){
- document.location.replace(document.location + "#L" + jumpLine);
- }, false);
- }
-}
-
-var homeUrl = "/";
-var projectID = "P6ZBYC429CXM6HMZLAVT34QW9C";
-var sourceLanguage = "NonCode";
-var IsLogged = false;
-
-// only logs once
-function LogReuse() {
- // dynamic image loading
- if(!IsLogged) {
- //alert("logging");
- var fileImg = new Image();
- var fileImgSrc = "/kv.aspx?fid=355D8E1583AB011A40E6DD0B35D84F827A3BBEB9&mode=cp";
- //alert("fileImgSrc = " + fileImgSrc);
- fileImg.src = fileImgSrc;
- IsLogged = true;
- } else {
- //alert("already logged!");
- }
- return true;
-}
-</script>
-
-
-
- </div>
-
-
-<!-- Footer -->
-
-<div style="clear: both;" id="FooterDiv" align="center">
-
- <div id="footer" align="center">
- <div class="row_1">
- <a href="http://www.koders.com/" title="Home">Home</a> |
- <a href="http://corp.koders.com/corp/about/" title="About Koders">Company</a> |
- <a href="http://www.koders.com/info.aspx?c=tools" title="Download Plugins">Downloads</a> |
- <a href="http://corp.koders.com/corp/support/" title="Support resources">Support</a> |
- <a href="http://corp.koders.com/corp/community/" title="Community">Community</a> |
- <a href="http://www.koders.com/corp/about/#Legal" title="Legal">Legal</a> |
- <a href="http://corp.koders.com/corp/about#Contact" title="Contact us">Contact Us</a> |
- <a href="http://www.koders.com/corp/sitemap/" title="Koders Site Map">Site Map</a>
- </div>
- <div class="row_2">
- <span class="copy">
- Copyright © 2008 <a href="http://www.blackducksoftware.com/" target="_blank" title="Black Duck Software, Inc.">Black Duck Software</a>.
- All rights reserved.
- </span>
- <span class="feed">
- <a href="http://www.koders.com/blog/?feed=rss2" title="Subscribe!">RSS Feed</a>
-
- <img src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/rss_sm.gif" alt="Koders Rss Feeds" vspace="0" width="12" height="12" hspace="0">
- </span>
- </div>
- <br>
- <br>
- <a id="KodersFooter_ctl00_hplWorkingTime" title="0.00\0.08\0.00\0.00\0.02\0.05\0.25\0.00\0.00\0.00s" style="color: graytext;">processed in: 0.39s</a>
- </div>
-
-</div>
-
-
-
-<script type="text/javascript">
-//<![CDATA[
-Sys.Application.initialize();
-//]]>
-</script>
-</form>
-
- <script type="text/javascript">
-var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
-document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
-</script><script src="fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ga.js" type="text/javascript"></script>
-<script type="text/javascript">
-var pageTracker = _gat._getTracker("UA-1450480-3");
-pageTracker._initData();
-pageTracker._trackPageview();
-</script>
-
-</body></html> \ No newline at end of file
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.txt b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.txt
new file mode 100644
index 0000000..5d5b6da
--- /dev/null
+++ b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx.txt
@@ -0,0 +1,234 @@
+;/*=============================================================================
+; * This is a part of the yLib Software Development Kit.
+; * Copyright (C) 1998-2000 YEAsoft Inc.
+; * All rights reserved.
+; *=============================================================================
+; * 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. In addition, you may also charge for any
+; * application using yLib, and are under no obligation to supply source
+; * code. You must accredit YEAsoft Inc. in the "About Box", or banner
+; * of your application.
+; *
+; * 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 also have received a copy of the GNU General Public License
+; * with this software, also indicating additional rights you have when using
+; * yLib.
+; *=============================================================================
+; * FILENAME : Sample1.mc
+; * PURPOSE : yLib application sample
+; * SCOPE : yLib SDK
+; * HISTORY : =============================================================
+; *
+; * $Log: SampleMsg1.mc,v $
+; * Revision 1.1 2000/05/26 14:07:30 leo
+; * Initial revision
+; *
+; *============================================================================*/
+
+;/*
+;-------------------------------------------------------------------------
+; HEADER SECTION
+;
+; The header section defines names and language identifiers for use
+; by the message definitions later in this file. The MessageIdTypedef,
+; SeverityNames, FacilityNames, and LanguageNames keywords are
+; optional and not required.
+;
+;
+MessageIdTypedef=DWORD
+;
+; The MessageIdTypedef keyword gives a typedef name that is used in a
+; type cast for each message code in the generated include file. Each
+; message code appears in the include file with the format: #define
+; name ((type) 0xnnnnnnnn) The default value for type is empty, and no
+; type cast is generated. It is the programmer's responsibility to
+; specify a typedef statement in the application source code to define
+; the type. The type used in the typedef must be large enough to
+; accomodate the entire 32-bit message code.
+;
+;
+SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
+ Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
+ Warning=0x2:STATUS_SEVERITY_WARNING
+ Error=0x3:STATUS_SEVERITY_ERROR
+ )
+;
+; The SeverityNames keyword defines the set of names that are allowed
+; as the value of the Severity keyword in the message definition. The
+; set is delimited by left and right parentheses. Associated with each
+; severity name is a number that, when shifted left by 30, gives the
+; bit pattern to logical-OR with the Facility value and MessageId
+; value to form the full 32-bit message code. The default value of
+; this keyword is:
+;
+; SeverityNames=(
+; Success=0x0
+; Informational=0x1
+; Warning=0x2
+; Error=0x3
+; )
+;
+; Severity values occupy the high two bits of a 32-bit message code.
+; Any severity value that does not fit in two bits is an error. The
+; severity codes can be given symbolic names by following each value
+; with :name
+;
+;
+FacilityNames=(System=0x0:FACILITY_SYSTEM
+ Runtime=0x2:FACILITY_RUNTIME
+ Stubs=0x3:FACILITY_STUBS
+ Io=0x4:FACILITY_IO_ERROR_CODE
+ )
+;
+; The FacilityNames keyword defines the set of names that are allowed
+; as the value of the Facility keyword in the message definition. The
+; set is delimited by left and right parentheses. Associated with each
+; facility name is a number that, when shift it left by 16 bits, gives
+; the bit pattern to logical-OR with the Severity value and MessageId
+; value to form the full 32-bit message code. The default value of
+; this keyword is:
+;
+; FacilityNames=(
+; System=0x0FF
+; Application=0xFFF
+; )
+;
+; Facility codes occupy the low order 12 bits of the high order
+; 16-bits of a 32-bit message code. Any facility code that does not
+; fit in 12 bits is an error. This allows for 4,096 facility codes.
+; The first 256 codes are reserved for use by the system software. The
+; facility codes can be given symbolic names by following each value
+; with :name
+;
+;
+; The LanguageNames keyword defines the set of names that are allowed
+; as the value of the Language keyword in the message definition. The
+; set is delimited by left and right parentheses. Associated with each
+; language name is a number and a file name that are used to name the
+; generated resource file that contains the messages for that
+; language. The number corresponds to the language identifier to use
+; in the resource table. The number is separated from the file name
+; with a colon. The initial value of LanguageNames is:
+;
+; LanguageNames=(English=1:MSG00001)
+LanguageNames=(
+ German=7:MSG00007
+ Italian=16:MSG00010
+ )
+;
+; Any new names in the source file which don't override the built-in
+; names are added to the list of valid languages. This allows an
+; application to support private languages with descriptive names.
+;
+;
+;-------------------------------------------------------------------------
+; MESSAGE DEFINITION SECTION
+;
+; Following the header section is the body of the Message Compiler
+; source file. The body consists of zero or more message definitions.
+; Each message definition begins with one or more of the following
+; statements:
+;
+; MessageId = [number|+number]
+; Severity = severity_name
+; Facility = facility_name
+; SymbolicName = name
+;
+; The MessageId statement marks the beginning of the message
+; definition. A MessageID statement is required for each message,
+; although the value is optional. If no value is specified, the value
+; used is the previous value for the facility plus one. If the value
+; is specified as +number then the value used is the previous value
+; for the facility, plus the number after the plus sign. Otherwise, if
+; a numeric value is given, that value is used. Any MessageId value
+; that does not fit in 16 bits is an error.
+;
+; The Severity and Facility statements are optional. These statements
+; specify additional bits to OR into the final 32-bit message code. If
+; not specified they default to the value last specified for a message
+; definition. The initial values prior to processing the first message
+; definition are:
+;
+; Severity=Success
+; Facility=Application
+;
+; The value associated with Severity and Facility must match one of
+; the names given in the FacilityNames and SeverityNames statements in
+; the header section. The SymbolicName statement allows you to
+; associate a C/C++ symbolic constant with the final 32-bit message
+; code.
+; */
+
+
+MessageIdTypedef=WORD
+
+MessageId=0x1
+SymbolicName=CAT_NO_PARAMS
+Language=English
+Without Parameters
+.
+Language=German
+Ohne Parameter
+.
+Language=Italian
+Senza Parametri
+.
+
+MessageId=
+SymbolicName=CAT_PARAMS
+Language=English
+With Parameters
+.
+Language=German
+Mit Parameter
+.
+Language=Italian
+Con Parametri
+.
+
+MessageIdTypedef=DWORD
+
+MessageId=0x100
+Severity=Error
+Facility=Runtime
+SymbolicName=MSG_TEST1
+Language=English
+Test message with no parameters
+.
+Language=German
+Test Nachricht ohne Parameter
+.
+Language=Italian
+Messaggio di test senza parametri
+.
+
+MessageId=
+Severity=Error
+SymbolicName=MSG_TEST2
+Language=English
+Test message with one parameter: (%1)
+.
+Language=German
+Test Nachricht mit einen Parameter: (%1)
+.
+Language=Italian
+Messaggio di test con un parametro: (%1)
+.
+
+MessageId=
+Severity=Error
+SymbolicName=MSG_TEST3
+Language=English
+Test message with three parameters: (1:'%1' 2:'%2' 3:'%3')
+.
+Language=German
+Test Nachricht mit drei Parameter: (1:'%1' 2:'%2' 3:'%3')
+.
+Language=Italian
+Messaggio di test con tre parametri: (1:'%1' 2:'%2' 3:'%3')
+.
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource.js
deleted file mode 100644
index f32e835..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource.js
+++ /dev/null
@@ -1,17 +0,0 @@
-//----------------------------------------------------------
-// Copyright (C) Microsoft Corporation. All rights reserved.
-//----------------------------------------------------------
-// MicrosoftAjaxWebForms.js
-Type.registerNamespace("Sys.WebForms");Sys.WebForms.BeginRequestEventArgs=function(b,a){Sys.WebForms.BeginRequestEventArgs.initializeBase(this);this._request=b;this._postBackElement=a};Sys.WebForms.BeginRequestEventArgs.prototype={get_postBackElement:function(){return this._postBackElement},get_request:function(){return this._request}};Sys.WebForms.BeginRequestEventArgs.registerClass("Sys.WebForms.BeginRequestEventArgs",Sys.EventArgs);Sys.WebForms.EndRequestEventArgs=function(c,a,b){Sys.WebForms.EndRequestEventArgs.initializeBase(this);this._errorHandled=false;this._error=c;this._dataItems=a||new Object;this._response=b};Sys.WebForms.EndRequestEventArgs.prototype={get_dataItems:function(){return this._dataItems},get_error:function(){return this._error},get_errorHandled:function(){return this._errorHandled},set_errorHandled:function(a){this._errorHandled=a},get_response:function(){return this._response}};Sys.WebForms.EndRequestEventArgs.registerClass("Sys.WebForms.EndRequestEventArgs",Sys.EventArgs);Sys.WebForms.InitializeRequestEventArgs=function(b,a){Sys.WebForms.InitializeRequestEventArgs.initializeBase(this);this._request=b;this._postBackElement=a};Sys.WebForms.InitializeRequestEventArgs.prototype={get_postBackElement:function(){return this._postBackElement},get_request:function(){return this._request}};Sys.WebForms.InitializeRequestEventArgs.registerClass("Sys.WebForms.InitializeRequestEventArgs",Sys.CancelEventArgs);Sys.WebForms.PageLoadedEventArgs=function(b,a,c){Sys.WebForms.PageLoadedEventArgs.initializeBase(this);this._panelsUpdated=b;this._panelsCreated=a;this._dataItems=c||new Object};Sys.WebForms.PageLoadedEventArgs.prototype={get_dataItems:function(){return this._dataItems},get_panelsCreated:function(){return this._panelsCreated},get_panelsUpdated:function(){return this._panelsUpdated}};Sys.WebForms.PageLoadedEventArgs.registerClass("Sys.WebForms.PageLoadedEventArgs",Sys.EventArgs);Sys.WebForms.PageLoadingEventArgs=function(b,a,c){Sys.WebForms.PageLoadingEventArgs.initializeBase(this);this._panelsUpdating=b;this._panelsDeleting=a;this._dataItems=c||new Object};Sys.WebForms.PageLoadingEventArgs.prototype={get_dataItems:function(){return this._dataItems},get_panelsDeleting:function(){return this._panelsDeleting},get_panelsUpdating:function(){return this._panelsUpdating}};Sys.WebForms.PageLoadingEventArgs.registerClass("Sys.WebForms.PageLoadingEventArgs",Sys.EventArgs);Sys.WebForms.PageRequestManager=function(){this._form=null;this._updatePanelIDs=null;this._updatePanelClientIDs=null;this._oldUpdatePanelIDs=null;this._childUpdatePanelIDs=null;this._panelsToRefreshIDs=null;this._updatePanelHasChildrenAsTriggers=null;this._asyncPostBackControlIDs=null;this._asyncPostBackControlClientIDs=null;this._postBackControlIDs=null;this._postBackControlClientIDs=null;this._scriptManagerID=null;this._pageLoadedHandler=null;this._additionalInput=null;this._onsubmit=null;this._onSubmitStatements=[];this._originalDoPostBack=null;this._postBackSettings=null;this._request=null;this._onFormSubmitHandler=null;this._onFormElementClickHandler=null;this._onWindowUnloadHandler=null;this._asyncPostBackTimeout=null;this._controlIDToFocus=null;this._scrollPosition=null;this._dataItems=null;this._response=null;this._processingRequest=false;this._scriptDisposes={}};Sys.WebForms.PageRequestManager.prototype={_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_isInAsyncPostBack:function(){return this._request!==null},add_beginRequest:function(a){this._get_eventHandlerList().addHandler("beginRequest",a)},remove_beginRequest:function(a){this._get_eventHandlerList().removeHandler("beginRequest",a)},add_endRequest:function(a){this._get_eventHandlerList().addHandler("endRequest",a)},remove_endRequest:function(a){this._get_eventHandlerList().removeHandler("endRequest",a)},add_initializeRequest:function(a){this._get_eventHandlerList().addHandler("initializeRequest",a)},remove_initializeRequest:function(a){this._get_eventHandlerList().removeHandler("initializeRequest",a)},add_pageLoaded:function(a){this._get_eventHandlerList().addHandler("pageLoaded",a)},remove_pageLoaded:function(a){this._get_eventHandlerList().removeHandler("pageLoaded",a)},add_pageLoading:function(a){this._get_eventHandlerList().addHandler("pageLoading",a)},remove_pageLoading:function(a){this._get_eventHandlerList().removeHandler("pageLoading",a)},abortPostBack:function(){if(!this._processingRequest&&this._request){this._request.get_executor().abort();this._request=null}},_createPageRequestManagerTimeoutError:function(){var b="Sys.WebForms.PageRequestManagerTimeoutException: "+Sys.WebForms.Res.PRM_TimeoutError,a=Error.create(b,{name:"Sys.WebForms.PageRequestManagerTimeoutException"});a.popStackFrame();return a},_createPageRequestManagerServerError:function(a,d){var c=d||"Sys.WebForms.PageRequestManagerServerErrorException: "+String.format(Sys.WebForms.Res.PRM_ServerError,a),b=Error.create(c,{name:"Sys.WebForms.PageRequestManagerServerErrorException",httpStatusCode:a});b.popStackFrame();return b},_createPageRequestManagerParserError:function(b){var c="Sys.WebForms.PageRequestManagerParserErrorException: "+String.format(Sys.WebForms.Res.PRM_ParserError,b),a=Error.create(c,{name:"Sys.WebForms.PageRequestManagerParserErrorException"});a.popStackFrame();return a},_createPostBackSettings:function(c,b,a){return {async:c,panelID:b,sourceElement:a}},_convertToClientIDs:function(a,d,c){if(a)for(var b=0;b<a.length;b++){Array.add(d,a[b]);Array.add(c,this._uniqueIDToClientID(a[b]))}},_decodeString:function(a){return a.replace(/\\\u00FF\\/g,"\x00").replace(/\u00FF\u00FF/g,"\u00FF")},_destroyTree:function(f){if(f.nodeType===1){var d=f.childNodes;for(var b=d.length-1;b>=0;b--){var a=d[b];if(a.nodeType===1){if(a.dispose&&typeof a.dispose==="function")a.dispose();else if(a.control&&typeof a.control.dispose==="function")a.control.dispose();var e=Sys.UI.Behavior.getBehaviors(a);for(var c=e.length-1;c>=0;c--)e[c].dispose();this._destroyTree(a)}}}},dispose:function(){if(this._form){Sys.UI.DomEvent.removeHandler(this._form,"submit",this._onFormSubmitHandler);Sys.UI.DomEvent.removeHandler(this._form,"click",this._onFormElementClickHandler);Sys.UI.DomEvent.removeHandler(window,"unload",this._onWindowUnloadHandler);Sys.UI.DomEvent.removeHandler(window,"load",this._pageLoadedHandler)}if(this._originalDoPostBack){window.__doPostBack=this._originalDoPostBack;this._originalDoPostBack=null}this._form=null;this._updatePanelIDs=null;this._oldUpdatePanelIDs=null;this._childUpdatePanelIDs=null;this._updatePanelClientIDs=null;this._asyncPostBackControlIDs=null;this._asyncPostBackControlClientIDs=null;this._postBackControlIDs=null;this._postBackControlClientIDs=null;this._asyncPostBackTimeout=null;this._scrollPosition=null;this._dataItems=null},_doPostBack:function(a,e){this._additionalInput=null;var b=this._form;if(b.action!==b._initialAction)this._postBackSettings=this._createPostBackSettings(false,null,null);else{var f=this._uniqueIDToClientID(a),d=document.getElementById(f);if(!d)if(Array.contains(this._asyncPostBackControlIDs,a))this._postBackSettings=this._createPostBackSettings(true,this._scriptManagerID+"|"+a,null);else if(Array.contains(this._postBackControlIDs,a))this._postBackSettings=this._createPostBackSettings(false,null,null);else{var c=this._findNearestElement(a);if(c)this._postBackSettings=this._getPostBackSettings(c,a);else this._postBackSettings=this._createPostBackSettings(false,null,null)}else this._postBackSettings=this._getPostBackSettings(d,a)}if(!this._postBackSettings.async){b.onsubmit=this._onsubmit;this._originalDoPostBack(a,e);b.onsubmit=null;return}b.__EVENTTARGET.value=a;b.__EVENTARGUMENT.value=e;this._onFormSubmit()},_elementContains:function(b,a){while(a){if(a===b)return true;a=a.parentNode}return false},_endPostBack:function(a,e){this._processingRequest=false;this._request=null;this._additionalInput=null;var d=this._get_eventHandlerList().getHandler("endRequest"),b=false;if(d){var c=new Sys.WebForms.EndRequestEventArgs(a,this._dataItems,e);d(this,c);b=c.get_errorHandled()}this._dataItems=null;if(a&&!b)alert(a.message)},_findNearestElement:function(a){while(a.length>0){var d=this._uniqueIDToClientID(a),c=document.getElementById(d);if(c)return c;var b=a.lastIndexOf("$");if(b===-1)return null;a=a.substring(0,b)}return null},_findText:function(b,a){var c=Math.max(0,a-20),d=Math.min(b.length,a+20);return b.substring(c,d)},_getPageLoadedEventArgs:function(f){var e=[],d=[],h=this._oldUpdatePanelIDs||[],b=this._updatePanelIDs,g=this._childUpdatePanelIDs||[],c=this._panelsToRefreshIDs||[];for(var a=0;a<c.length;a++)Array.add(e,document.getElementById(this._uniqueIDToClientID(c[a])));for(var a=0;a<b.length;a++)if(f||Array.indexOf(g,b[a])!==-1)Array.add(d,document.getElementById(this._uniqueIDToClientID(b[a])));return new Sys.WebForms.PageLoadedEventArgs(e,d,this._dataItems)},_getPageLoadingEventArgs:function(){var e=[],d=[],b=this._oldUpdatePanelIDs,g=this._updatePanelIDs,f=this._childUpdatePanelIDs,c=this._panelsToRefreshIDs;for(var a=0;a<c.length;a++)Array.add(e,document.getElementById(this._uniqueIDToClientID(c[a])));for(var a=0;a<b.length;a++)if(Array.indexOf(c,b[a])===-1&&(Array.indexOf(g,b[a])===-1||Array.indexOf(f,b[a])>-1))Array.add(d,document.getElementById(this._uniqueIDToClientID(b[a])));return new Sys.WebForms.PageLoadingEventArgs(e,d,this._dataItems)},_getPostBackSettings:function(a,c){var d=a,b=null;while(a){if(a.id){if(!b&&Array.contains(this._asyncPostBackControlClientIDs,a.id))b=this._createPostBackSettings(true,this._scriptManagerID+"|"+c,d);else if(!b&&Array.contains(this._postBackControlClientIDs,a.id))return this._createPostBackSettings(false,null,null);else{var e=Array.indexOf(this._updatePanelClientIDs,a.id);if(e!==-1)if(this._updatePanelHasChildrenAsTriggers[e])return this._createPostBackSettings(true,this._updatePanelIDs[e]+"|"+c,d);else return this._createPostBackSettings(true,this._scriptManagerID+"|"+c,d)}if(!b&&this._matchesParentIDInList(a.id,this._asyncPostBackControlClientIDs))b=this._createPostBackSettings(true,this._scriptManagerID+"|"+c,d);else if(!b&&this._matchesParentIDInList(a.id,this._postBackControlClientIDs))return this._createPostBackSettings(false,null,null)}a=a.parentNode}if(!b)return this._createPostBackSettings(false,null,null);else return b},_getScrollPosition:function(){var a=document.documentElement;if(a&&(this._validPosition(a.scrollLeft)||this._validPosition(a.scrollTop)))return {x:a.scrollLeft,y:a.scrollTop};else{a=document.body;if(a&&(this._validPosition(a.scrollLeft)||this._validPosition(a.scrollTop)))return {x:a.scrollLeft,y:a.scrollTop};else if(this._validPosition(window.pageXOffset)||this._validPosition(window.pageYOffset))return {x:window.pageXOffset,y:window.pageYOffset};else return {x:0,y:0}}},_initializeInternal:function(a,b){this._scriptManagerID=a;this._form=b;this._form._initialAction=this._form.action;this._onsubmit=this._form.onsubmit;this._form.onsubmit=null;this._onFormSubmitHandler=Function.createDelegate(this,this._onFormSubmit);this._onFormElementClickHandler=Function.createDelegate(this,this._onFormElementClick);this._onWindowUnloadHandler=Function.createDelegate(this,this._onWindowUnload);Sys.UI.DomEvent.addHandler(this._form,"submit",this._onFormSubmitHandler);Sys.UI.DomEvent.addHandler(this._form,"click",this._onFormElementClickHandler);Sys.UI.DomEvent.addHandler(window,"unload",this._onWindowUnloadHandler);this._originalDoPostBack=window.__doPostBack;if(this._originalDoPostBack)window.__doPostBack=Function.createDelegate(this,this._doPostBack);this._pageLoadedHandler=Function.createDelegate(this,this._pageLoadedInitialLoad);Sys.UI.DomEvent.addHandler(window,"load",this._pageLoadedHandler)},_matchesParentIDInList:function(c,b){for(var a=0;a<b.length;a++)if(c.startsWith(b[a]+"_"))return true;return false},_onFormElementClick:function(b){var a=b.target;if(a.disabled)return;this._postBackSettings=this._getPostBackSettings(a,a.name);if(a.name)if(a.tagName==="INPUT"){var c=a.type;if(c==="submit")this._additionalInput=a.name+"="+encodeURIComponent(a.value);else if(c==="image"){var d=b.offsetX,e=b.offsetY;this._additionalInput=a.name+".x="+d+"&"+a.name+".y="+e}}else if(a.tagName==="BUTTON"&&a.name.length!==0&&a.type==="submit")this._additionalInput=a.name+"="+encodeURIComponent(a.value)},_onFormSubmit:function(f){var d=true;if(this._onsubmit)d=this._onsubmit();if(d)for(var g=0;g<this._onSubmitStatements.length;g++)if(!this._onSubmitStatements[g]()){d=false;break}if(!d){if(f)f.preventDefault();return}var i=this._form;if(i.action!==i._initialAction)return;if(!this._postBackSettings.async)return;var a=new Sys.StringBuilder;a.append(this._scriptManagerID+"="+this._postBackSettings.panelID+"&");var p=i.elements.length;for(var g=0;g<p;g++){var c=i.elements[g],e=c.name;if(typeof e==="undefined"||e===null||e.length===0)continue;var l=c.tagName;if(l==="INPUT"){var j=c.type;if(j==="text"||j==="password"||j==="hidden"||(j==="checkbox"||j==="radio")&&c.checked){a.append(e);a.append("=");a.append(encodeURIComponent(c.value));a.append("&")}}else if(l==="SELECT"){var o=c.options.length;for(var m=0;m<o;m++){var n=c.options[m];if(n.selected){a.append(e);a.append("=");a.append(encodeURIComponent(n.value));a.append("&")}}}else if(l==="TEXTAREA"){a.append(e);a.append("=");a.append(encodeURIComponent(c.value));a.append("&")}}if(this._additionalInput){a.append(this._additionalInput);this._additionalInput=null}var b=new Sys.Net.WebRequest;b.set_url(i.action);b.get_headers()["X-MicrosoftAjax"]="Delta=true";b.get_headers()["Cache-Control"]="no-cache";b.set_timeout(this._asyncPostBackTimeout);b.add_completed(Function.createDelegate(this,this._onFormSubmitCompleted));b.set_body(a.toString());var h=this._get_eventHandlerList().getHandler("initializeRequest");if(h){var k=new Sys.WebForms.InitializeRequestEventArgs(b,this._postBackSettings.sourceElement);h(this,k);d=!k.get_cancel()}if(!d){if(f)f.preventDefault();return}this._scrollPosition=this._getScrollPosition();this.abortPostBack();h=this._get_eventHandlerList().getHandler("beginRequest");if(h){var k=new Sys.WebForms.BeginRequestEventArgs(b,this._postBackSettings.sourceElement);h(this,k)}this._request=b;b.invoke();if(f)f.preventDefault()},_onFormSubmitCompleted:function(sender,eventArgs){this._processingRequest=true;var delimitByLengthDelimiter="|";if(sender.get_timedOut()){this._endPostBack(this._createPageRequestManagerTimeoutError(),sender);return}if(sender.get_aborted()){this._endPostBack(null,sender);return}if(!this._request||sender.get_webRequest()!==this._request)return;var errorMessage,delta=[];if(sender.get_statusCode()!==200){this._endPostBack(this._createPageRequestManagerServerError(sender.get_statusCode()),sender);return}var reply=sender.get_responseData(),delimiterIndex,len,type,id,content,replyIndex=0,parserErrorDetails=null;while(replyIndex<reply.length){delimiterIndex=reply.indexOf(delimitByLengthDelimiter,replyIndex);if(delimiterIndex===-1){parserErrorDetails=this._findText(reply,replyIndex);break}len=parseInt(reply.substring(replyIndex,delimiterIndex),10);if(len%1!==0){parserErrorDetails=this._findText(reply,replyIndex);break}replyIndex=delimiterIndex+1;delimiterIndex=reply.indexOf(delimitByLengthDelimiter,replyIndex);if(delimiterIndex===-1){parserErrorDetails=this._findText(reply,replyIndex);break}type=reply.substring(replyIndex,delimiterIndex);replyIndex=delimiterIndex+1;delimiterIndex=reply.indexOf(delimitByLengthDelimiter,replyIndex);if(delimiterIndex===-1){parserErrorDetails=this._findText(reply,replyIndex);break}id=reply.substring(replyIndex,delimiterIndex);replyIndex=delimiterIndex+1;if(replyIndex+len>=reply.length){parserErrorDetails=this._findText(reply,reply.length);break}content=this._decodeString(reply.substr(replyIndex,len));replyIndex+=len;if(reply.charAt(replyIndex)!==delimitByLengthDelimiter){parserErrorDetails=this._findText(reply,replyIndex);break}replyIndex++;Array.add(delta,{type:type,id:id,content:content})}if(parserErrorDetails){this._endPostBack(this._createPageRequestManagerParserError(String.format(Sys.WebForms.Res.PRM_ParserErrorDetails,parserErrorDetails)),sender);return}var updatePanelNodes=[],hiddenFieldNodes=[],arrayDeclarationNodes=[],scriptBlockNodes=[],expandoNodes=[],onSubmitNodes=[],dataItemNodes=[],dataItemJsonNodes=[],scriptDisposeNodes=[],asyncPostBackControlIDsNode,postBackControlIDsNode,updatePanelIDsNode,asyncPostBackTimeoutNode,childUpdatePanelIDsNode,panelsToRefreshNode,formActionNode;for(var i=0;i<delta.length;i++){var deltaNode=delta[i];switch(deltaNode.type){case "updatePanel":Array.add(updatePanelNodes,deltaNode);break;case "hiddenField":Array.add(hiddenFieldNodes,deltaNode);break;case "arrayDeclaration":Array.add(arrayDeclarationNodes,deltaNode);break;case "scriptBlock":Array.add(scriptBlockNodes,deltaNode);break;case "expando":Array.add(expandoNodes,deltaNode);break;case "onSubmit":Array.add(onSubmitNodes,deltaNode);break;case "asyncPostBackControlIDs":asyncPostBackControlIDsNode=deltaNode;break;case "postBackControlIDs":postBackControlIDsNode=deltaNode;break;case "updatePanelIDs":updatePanelIDsNode=deltaNode;break;case "asyncPostBackTimeout":asyncPostBackTimeoutNode=deltaNode;break;case "childUpdatePanelIDs":childUpdatePanelIDsNode=deltaNode;break;case "panelsToRefreshIDs":panelsToRefreshNode=deltaNode;break;case "formAction":formActionNode=deltaNode;break;case "dataItem":Array.add(dataItemNodes,deltaNode);break;case "dataItemJson":Array.add(dataItemJsonNodes,deltaNode);break;case "scriptDispose":Array.add(scriptDisposeNodes,deltaNode);break;case "pageRedirect":window.location.href=deltaNode.content;return;case "error":this._endPostBack(this._createPageRequestManagerServerError(Number.parseInvariant(deltaNode.id),deltaNode.content),sender);return;case "pageTitle":document.title=deltaNode.content;break;case "focus":this._controlIDToFocus=deltaNode.content;break;default:this._endPostBack(this._createPageRequestManagerParserError(String.format(Sys.WebForms.Res.PRM_UnknownToken,deltaNode.type)),sender);return}}var i;if(asyncPostBackControlIDsNode&&postBackControlIDsNode&&updatePanelIDsNode&&panelsToRefreshNode&&asyncPostBackTimeoutNode&&childUpdatePanelIDsNode){this._oldUpdatePanelIDs=this._updatePanelIDs;var childUpdatePanelIDsString=childUpdatePanelIDsNode.content;this._childUpdatePanelIDs=childUpdatePanelIDsString.length?childUpdatePanelIDsString.split(","):[];var asyncPostBackControlIDsArray=this._splitNodeIntoArray(asyncPostBackControlIDsNode),postBackControlIDsArray=this._splitNodeIntoArray(postBackControlIDsNode),updatePanelIDsArray=this._splitNodeIntoArray(updatePanelIDsNode);this._panelsToRefreshIDs=this._splitNodeIntoArray(panelsToRefreshNode);for(i=0;i<this._panelsToRefreshIDs.length;i++){var panelClientID=this._uniqueIDToClientID(this._panelsToRefreshIDs[i]);if(!document.getElementById(panelClientID)){this._endPostBack(Error.invalidOperation(String.format(Sys.WebForms.Res.PRM_MissingPanel,panelClientID)),sender);return}}var asyncPostBackTimeout=asyncPostBackTimeoutNode.content;this._updateControls(updatePanelIDsArray,asyncPostBackControlIDsArray,postBackControlIDsArray,asyncPostBackTimeout)}this._dataItems={};for(i=0;i<dataItemNodes.length;i++){var dataItemNode=dataItemNodes[i];this._dataItems[dataItemNode.id]=dataItemNode.content}for(i=0;i<dataItemJsonNodes.length;i++){var dataItemJsonNode=dataItemJsonNodes[i];this._dataItems[dataItemJsonNode.id]=eval(dataItemJsonNode.content)}var handler=this._get_eventHandlerList().getHandler("pageLoading");if(handler)handler(this,this._getPageLoadingEventArgs());if(formActionNode){this._form.action=formActionNode.content;this._form._initialAction=this._form.action}for(i=0;i<updatePanelNodes.length;i++){var deltaUpdatePanel=updatePanelNodes[i],deltaPanelID=deltaUpdatePanel.id,deltaPanelRendering=deltaUpdatePanel.content,updatePanelElement=document.getElementById(deltaPanelID);if(!updatePanelElement){this._endPostBack(Error.invalidOperation(String.format(Sys.WebForms.Res.PRM_MissingPanel,deltaPanelID)),sender);return}this._updatePanel(updatePanelElement,deltaPanelRendering)}for(i=0;i<scriptDisposeNodes.length;i++){var disposePanelId=scriptDisposeNodes[i].id,disposeScript=scriptDisposeNodes[i].content;this._registerDisposeScript(disposePanelId,disposeScript)}for(i=0;i<hiddenFieldNodes.length;i++){var id=hiddenFieldNodes[i].id,value=hiddenFieldNodes[i].content,hiddenFieldElement=document.getElementById(id);if(!hiddenFieldElement){hiddenFieldElement=document.createElement("input");hiddenFieldElement.id=id;hiddenFieldElement.name=id;hiddenFieldElement.type="hidden";this._form.appendChild(hiddenFieldElement)}hiddenFieldElement.value=value}var arrayScript="";for(i=0;i<arrayDeclarationNodes.length;i++)arrayScript+="Sys.WebForms.PageRequestManager._addArrayElement('"+arrayDeclarationNodes[i].id+"', "+arrayDeclarationNodes[i].content+");\r\n";var expandoScript="";for(i=0;i<expandoNodes.length;i++){var propertyReference=expandoNodes[i].id,propertyValue=expandoNodes[i].content;expandoScript+=propertyReference+" = "+propertyValue+"\r\n"}Sys._ScriptLoader.readLoadedScripts();Sys.Application.beginCreateComponents();var scriptLoader=Sys._ScriptLoader.getInstance();if(arrayScript.length)scriptLoader.queueScriptBlock(arrayScript);if(expandoScript.length)scriptLoader.queueScriptBlock(expandoScript);for(i=0;i<scriptBlockNodes.length;i++){var scriptBlockType=scriptBlockNodes[i].id;switch(scriptBlockType){case "ScriptContentNoTags":scriptLoader.queueScriptBlock(scriptBlockNodes[i].content);break;case "ScriptContentWithTags":var scriptTagAttributes;eval("scriptTagAttributes = "+scriptBlockNodes[i].content);if(scriptTagAttributes.src&&Sys._ScriptLoader.isScriptLoaded(scriptTagAttributes.src))continue;scriptLoader.queueCustomScriptTag(scriptTagAttributes);break;case "ScriptPath":if(Sys._ScriptLoader.isScriptLoaded(scriptBlockNodes[i].content))continue;scriptLoader.queueScriptReference(scriptBlockNodes[i].content);break}}var onSubmitStatementScript="";for(var i=0;i<onSubmitNodes.length;i++){if(i===0)onSubmitStatementScript="Array.add(Sys.WebForms.PageRequestManager.getInstance()._onSubmitStatements, function() {\r\n";onSubmitStatementScript+=onSubmitNodes[i].content+"\r\n"}if(onSubmitStatementScript.length){onSubmitStatementScript+="\r\nreturn true;\r\n});\r\n";scriptLoader.queueScriptBlock(onSubmitStatementScript)}this._response=sender;scriptLoader.loadScripts(0,Function.createDelegate(this,this._scriptsLoadComplete),null,null)},_onWindowUnload:function(){this.dispose()},_pageLoaded:function(a){var b=this._get_eventHandlerList().getHandler("pageLoaded");if(b)b(this,this._getPageLoadedEventArgs(a));if(!a)Sys.Application.raiseLoad()},_pageLoadedInitialLoad:function(){this._pageLoaded(true)},_registerDisposeScript:function(a,b){if(!this._scriptDisposes[a])this._scriptDisposes[a]=[b];else Array.add(this._scriptDisposes[a],b)},_scriptsLoadComplete:function(){if(window.__theFormPostData)window.__theFormPostData="";if(window.__theFormPostCollection)window.__theFormPostCollection=[];if(window.WebForm_InitCallback)window.WebForm_InitCallback();if(this._scrollPosition){if(window.scrollTo)window.scrollTo(this._scrollPosition.x,this._scrollPosition.y);this._scrollPosition=null}Sys.Application.endCreateComponents();this._pageLoaded(false);this._endPostBack(null,this._response);this._response=null;if(this._controlIDToFocus){var a,c;if(Sys.Browser.agent===Sys.Browser.InternetExplorer){var b=$get(this._controlIDToFocus),a=b;if(b&&!WebForm_CanFocus(b))a=WebForm_FindFirstFocusableChild(b);if(a&&typeof a.contentEditable!=="undefined"){c=a.contentEditable;a.contentEditable=false}else a=null}WebForm_AutoFocus(this._controlIDToFocus);if(a)a.contentEditable=c;this._controlIDToFocus=null}},_splitNodeIntoArray:function(b){var a=b.content,c=a.length?a.split(","):[];return c},_uniqueIDToClientID:function(a){return a.replace(/\$/g,"_")},_updateControls:function(a,d,g,e){if(a){this._updatePanelIDs=new Array(a.length);this._updatePanelClientIDs=new Array(a.length);this._updatePanelHasChildrenAsTriggers=new Array(a.length);for(var b=0;b<a.length;b++){var c=a[b].substr(1),f=a[b].charAt(0)==="t";this._updatePanelHasChildrenAsTriggers[b]=f;this._updatePanelIDs[b]=c;this._updatePanelClientIDs[b]=this._uniqueIDToClientID(c)}this._asyncPostBackTimeout=e*1000}else{this._updatePanelIDs=[];this._updatePanelClientIDs=[];this._updatePanelHasChildrenAsTriggers=[];this._asyncPostBackTimeout=0}this._asyncPostBackControlIDs=[];this._asyncPostBackControlClientIDs=[];this._convertToClientIDs(d,this._asyncPostBackControlIDs,this._asyncPostBackControlClientIDs);this._postBackControlIDs=[];this._postBackControlClientIDs=[];this._convertToClientIDs(g,this._postBackControlIDs,this._postBackControlClientIDs)},_updatePanel:function(updatePanelElement,rendering){for(var updatePanelID in this._scriptDisposes)if(this._elementContains(updatePanelElement,document.getElementById(updatePanelID))){var disposeScripts=this._scriptDisposes[updatePanelID];for(var i=0;i<disposeScripts.length;i++)eval(disposeScripts[i]);delete this._scriptDisposes[updatePanelID]}this._destroyTree(updatePanelElement);updatePanelElement.innerHTML=rendering},_validPosition:function(a){return typeof a!=="undefined"&&a!==null&&a!==0}};Sys.WebForms.PageRequestManager.getInstance=function(){return Sys.WebForms.PageRequestManager._instance||null};Sys.WebForms.PageRequestManager._addArrayElement=function(a,b){if(typeof window[a]==="undefined")window[a]=[b];else Array.add(window[a],b)};Sys.WebForms.PageRequestManager._initialize=function(a,b){if(Sys.WebForms.PageRequestManager.getInstance())throw Error.invalidOperation(Sys.WebForms.Res.PRM_CannotRegisterTwice);Sys.WebForms.PageRequestManager._instance=new Sys.WebForms.PageRequestManager;Sys.WebForms.PageRequestManager.getInstance()._initializeInternal(a,b)};Sys.WebForms.PageRequestManager.registerClass("Sys.WebForms.PageRequestManager");Sys.UI._UpdateProgress=function(a){Sys.UI._UpdateProgress.initializeBase(this,[a]);this._displayAfter=500;this._dynamicLayout=true;this._associatedUpdatePanelId=null;this._beginRequestHandlerDelegate=null;this._startDelegate=null;this._endRequestHandlerDelegate=null;this._pageRequestManager=null;this._timerCookie=null};Sys.UI._UpdateProgress.prototype={get_displayAfter:function(){return this._displayAfter},set_displayAfter:function(a){this._displayAfter=a},get_dynamicLayout:function(){return this._dynamicLayout},set_dynamicLayout:function(a){this._dynamicLayout=a},get_associatedUpdatePanelId:function(){return this._associatedUpdatePanelId},set_associatedUpdatePanelId:function(a){this._associatedUpdatePanelId=a},_handleBeginRequest:function(d,c){var a=c.get_postBackElement(),b=!this._associatedUpdatePanelId;while(!b&&a){if(a.id&&this._associatedUpdatePanelId===a.id)b=true;a=a.parentNode}if(b)this._timerCookie=window.setTimeout(this._startDelegate,this._displayAfter)},_startRequest:function(){if(this._pageRequestManager.get_isInAsyncPostBack())if(this._dynamicLayout)this.get_element().style.display="block";else this.get_element().style.visibility="visible";this._timerCookie=null},_handleEndRequest:function(){if(this._dynamicLayout)this.get_element().style.display="none";else this.get_element().style.visibility="hidden";if(this._timerCookie){window.clearTimeout(this._timerCookie);this._timerCookie=null}},dispose:function(){if(this._pageRequestManager!==null){this._pageRequestManager.remove_beginRequest(this._beginRequestHandlerDelegate);this._pageRequestManager.remove_endRequest(this._endRequestHandlerDelegate)}Sys.UI._UpdateProgress.callBaseMethod(this,"dispose")},initialize:function(){Sys.UI._UpdateProgress.callBaseMethod(this,"initialize");this._beginRequestHandlerDelegate=Function.createDelegate(this,this._handleBeginRequest);this._endRequestHandlerDelegate=Function.createDelegate(this,this._handleEndRequest);this._startDelegate=Function.createDelegate(this,this._startRequest);if(Sys.WebForms&&Sys.WebForms.PageRequestManager)this._pageRequestManager=Sys.WebForms.PageRequestManager.getInstance();if(this._pageRequestManager!==null){this._pageRequestManager.add_beginRequest(this._beginRequestHandlerDelegate);this._pageRequestManager.add_endRequest(this._endRequestHandlerDelegate)}}};Sys.UI._UpdateProgress.registerClass("Sys.UI._UpdateProgress",Sys.UI.Control)
-Type.registerNamespace('Sys.WebForms');
-Sys.WebForms.Res={
-"PRM_UnknownToken":"Unknown token: \u0027{0}\u0027.",
-"PRM_MissingPanel":"Could not find UpdatePanel with ID \u0027{0}\u0027. If it is being updated dynamically then it must be inside another UpdatePanel.",
-"PRM_ServerError":"An unknown error occurred while processing the request on the server. The status code returned from the server was: {0}",
-"PRM_ParserError":"The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.\r\nDetails: {0}",
-"PRM_TimeoutError":"The server request timed out.",
-"PRM_ParserErrorDetails":"Error parsing near \u0027{0}\u0027.",
-"PRM_CannotRegisterTwice":"The PageRequestManager cannot be initialized more than once."
-};
-
-if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded(); \ No newline at end of file
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource_002.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource_002.js
deleted file mode 100644
index 11e4033..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ScriptResource_002.js
+++ /dev/null
@@ -1,55 +0,0 @@
-//----------------------------------------------------------
-// Copyright (C) Microsoft Corporation. All rights reserved.
-//----------------------------------------------------------
-// MicrosoftAjax.js
-Function.__typeName="Function";Function.__class=true;Function.createCallback=function(b,a){return function(){var e=arguments.length;if(e>0){var d=[];for(var c=0;c<e;c++)d[c]=arguments[c];d[e]=a;return b.apply(this,d)}return b.call(this,a)}};Function.createDelegate=function(a,b){return function(){return b.apply(a,arguments)}};Function.emptyFunction=Function.emptyMethod=function(){};Function._validateParams=function(e,c){var a;a=Function._validateParameterCount(e,c);if(a){a.popStackFrame();return a}for(var b=0;b<e.length;b++){var d=c[Math.min(b,c.length-1)],f=d.name;if(d.parameterArray)f+="["+(b-c.length+1)+"]";a=Function._validateParameter(e[b],d,f);if(a){a.popStackFrame();return a}}return null};Function._validateParameterCount=function(e,a){var c=a.length,d=0;for(var b=0;b<a.length;b++)if(a[b].parameterArray)c=Number.MAX_VALUE;else if(!a[b].optional)d++;if(e.length<d||e.length>c){var f=Error.parameterCount();f.popStackFrame();return f}return null};Function._validateParameter=function(c,a,h){var b,g=a.type,l=!!a.integer,k=!!a.domElement,m=!!a.mayBeNull;b=Function._validateParameterType(c,g,l,k,m,h);if(b){b.popStackFrame();return b}var e=a.elementType,f=!!a.elementMayBeNull;if(g===Array&&typeof c!=="undefined"&&c!==null&&(e||!f)){var j=!!a.elementInteger,i=!!a.elementDomElement;for(var d=0;d<c.length;d++){var n=c[d];b=Function._validateParameterType(n,e,j,i,f,h+"["+d+"]");if(b){b.popStackFrame();return b}}}return null};Function._validateParameterType=function(b,c,k,j,h,d){var a;if(typeof b==="undefined")if(h)return null;else{a=Error.argumentUndefined(d);a.popStackFrame();return a}if(b===null)if(h)return null;else{a=Error.argumentNull(d);a.popStackFrame();return a}if(c&&c.__enum){if(typeof b!=="number"){a=Error.argumentType(d,Object.getType(b),c);a.popStackFrame();return a}if(b%1===0){var e=c.prototype;if(!c.__flags||b===0){for(var g in e)if(e[g]===b)return null}else{var i=b;for(var g in e){var f=e[g];if(f===0)continue;if((f&b)===f)i-=f;if(i===0)return null}}}a=Error.argumentOutOfRange(d,b,String.format(Sys.Res.enumInvalidValue,b,c.getName()));a.popStackFrame();return a}if(j&&b!==window&&b!==document&&!(window.HTMLElement&&b instanceof HTMLElement)&&typeof b.nodeName!=="string"){a=Error.argument(d,Sys.Res.argumentDomElement);a.popStackFrame();return a}if(c&&!c.isInstanceOfType(b)){a=Error.argumentType(d,Object.getType(b),c);a.popStackFrame();return a}if(c===Number&&k)if(b%1!==0){a=Error.argumentOutOfRange(d,b,Sys.Res.argumentInteger);a.popStackFrame();return a}return null};Error.__typeName="Error";Error.__class=true;Error.create=function(d,b){var a=new Error(d);a.message=d;if(b)for(var c in b)a[c]=b[c];a.popStackFrame();return a};Error.argument=function(a,c){var b="Sys.ArgumentException: "+(c?c:Sys.Res.argument);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentException",paramName:a});d.popStackFrame();return d};Error.argumentNull=function(a,c){var b="Sys.ArgumentNullException: "+(c?c:Sys.Res.argumentNull);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentNullException",paramName:a});d.popStackFrame();return d};Error.argumentOutOfRange=function(c,a,d){var b="Sys.ArgumentOutOfRangeException: "+(d?d:Sys.Res.argumentOutOfRange);if(c)b+="\n"+String.format(Sys.Res.paramName,c);if(typeof a!=="undefined"&&a!==null)b+="\n"+String.format(Sys.Res.actualValue,a);var e=Error.create(b,{name:"Sys.ArgumentOutOfRangeException",paramName:c,actualValue:a});e.popStackFrame();return e};Error.argumentType=function(d,c,b,e){var a="Sys.ArgumentTypeException: ";if(e)a+=e;else if(c&&b)a+=String.format(Sys.Res.argumentTypeWithTypes,c.getName(),b.getName());else a+=Sys.Res.argumentType;if(d)a+="\n"+String.format(Sys.Res.paramName,d);var f=Error.create(a,{name:"Sys.ArgumentTypeException",paramName:d,actualType:c,expectedType:b});f.popStackFrame();return f};Error.argumentUndefined=function(a,c){var b="Sys.ArgumentUndefinedException: "+(c?c:Sys.Res.argumentUndefined);if(a)b+="\n"+String.format(Sys.Res.paramName,a);var d=Error.create(b,{name:"Sys.ArgumentUndefinedException",paramName:a});d.popStackFrame();return d};Error.format=function(a){var c="Sys.FormatException: "+(a?a:Sys.Res.format),b=Error.create(c,{name:"Sys.FormatException"});b.popStackFrame();return b};Error.invalidOperation=function(a){var c="Sys.InvalidOperationException: "+(a?a:Sys.Res.invalidOperation),b=Error.create(c,{name:"Sys.InvalidOperationException"});b.popStackFrame();return b};Error.notImplemented=function(a){var c="Sys.NotImplementedException: "+(a?a:Sys.Res.notImplemented),b=Error.create(c,{name:"Sys.NotImplementedException"});b.popStackFrame();return b};Error.parameterCount=function(a){var c="Sys.ParameterCountException: "+(a?a:Sys.Res.parameterCount),b=Error.create(c,{name:"Sys.ParameterCountException"});b.popStackFrame();return b};Error.prototype.popStackFrame=function(){if(typeof this.stack==="undefined"||this.stack===null||typeof this.fileName==="undefined"||this.fileName===null||typeof this.lineNumber==="undefined"||this.lineNumber===null)return;var a=this.stack.split("\n"),c=a[0],e=this.fileName+":"+this.lineNumber;while(typeof c!=="undefined"&&c!==null&&c.indexOf(e)===-1){a.shift();c=a[0]}var d=a[1];if(typeof d==="undefined"||d===null)return;var b=d.match(/@(.*):(\d+)$/);if(typeof b==="undefined"||b===null)return;this.fileName=b[1];this.lineNumber=parseInt(b[2]);a.shift();this.stack=a.join("\n")};if(!window)this.window=this;window.Type=Function;window.__rootNamespaces=[];window.__registeredTypes={};Type.prototype.callBaseMethod=function(a,d,b){var c=this.getBaseMethod(a,d);if(!b)return c.apply(a);else return c.apply(a,b)};Type.prototype.getBaseMethod=function(d,c){var b=this.getBaseType();if(b){var a=b.prototype[c];return a instanceof Function?a:null}return null};Type.prototype.getBaseType=function(){return typeof this.__baseType==="undefined"?null:this.__baseType};Type.prototype.getInterfaces=function(){var a=[],b=this;while(b){var c=b.__interfaces;if(c)for(var d=0,f=c.length;d<f;d++){var e=c[d];if(!Array.contains(a,e))a[a.length]=e}b=b.__baseType}return a};Type.prototype.getName=function(){return typeof this.__typeName==="undefined"?"":this.__typeName};Type.prototype.implementsInterface=function(d){this.resolveInheritance();var c=d.getName(),a=this.__interfaceCache;if(a){var e=a[c];if(typeof e!=="undefined")return e}else a=this.__interfaceCache={};var b=this;while(b){var f=b.__interfaces;if(f)if(Array.indexOf(f,d)!==-1)return a[c]=true;b=b.__baseType}return a[c]=false};Type.prototype.inheritsFrom=function(b){this.resolveInheritance();var a=this.__baseType;while(a){if(a===b)return true;a=a.__baseType}return false};Type.prototype.initializeBase=function(a,b){this.resolveInheritance();if(this.__baseType)if(!b)this.__baseType.apply(a);else this.__baseType.apply(a,b);return a};Type.prototype.isImplementedBy=function(a){if(typeof a==="undefined"||a===null)return false;var b=Object.getType(a);return !!(b.implementsInterface&&b.implementsInterface(this))};Type.prototype.isInstanceOfType=function(b){if(typeof b==="undefined"||b===null)return false;if(b instanceof this)return true;var a=Object.getType(b);return !!(a===this)||a.inheritsFrom&&a.inheritsFrom(this)||a.implementsInterface&&a.implementsInterface(this)};Type.prototype.registerClass=function(c,b,d){this.prototype.constructor=this;this.__typeName=c;this.__class=true;if(b){this.__baseType=b;this.__basePrototypePending=true}if(!window.__classes)window.__classes={};window.__classes[c.toUpperCase()]=this;if(d){this.__interfaces=[];for(var a=2;a<arguments.length;a++){var e=arguments[a];this.__interfaces.push(e)}}return this};Type.prototype.registerInterface=function(a){this.prototype.constructor=this;this.__typeName=a;this.__interface=true;return this};Type.prototype.resolveInheritance=function(){if(this.__basePrototypePending){var b=this.__baseType;b.resolveInheritance();for(var a in b.prototype){var c=b.prototype[a];if(!this.prototype[a])this.prototype[a]=c}delete this.__basePrototypePending}};Type.getRootNamespaces=function(){return Array.clone(window.__rootNamespaces)};Type.isClass=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__class};Type.isInterface=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__interface};Type.isNamespace=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__namespace};Type.parse=function(typeName,ns){var fn;if(ns){if(!window.__classes)return null;fn=window.__classes[ns.getName().toUpperCase()+"."+typeName.toUpperCase()];return fn||null}if(!typeName)return null;if(!Type.__htClasses)Type.__htClasses={};fn=Type.__htClasses[typeName];if(!fn){fn=eval(typeName);Type.__htClasses[typeName]=fn}return fn};Type.registerNamespace=function(f){var d=window,c=f.split(".");for(var b=0;b<c.length;b++){var e=c[b],a=d[e];if(!a){a=d[e]={};if(b===0)window.__rootNamespaces[window.__rootNamespaces.length]=a;a.__namespace=true;a.__typeName=c.slice(0,b+1).join(".");a.getName=function(){return this.__typeName}}d=a}};Object.__typeName="Object";Object.__class=true;Object.getType=function(b){var a=b.constructor;if(!a||typeof a!=="function"||!a.__typeName||a.__typeName==="Object")return Object;return a};Object.getTypeName=function(a){return Object.getType(a).getName()};Boolean.__typeName="Boolean";Boolean.__class=true;Boolean.parse=function(b){var a=b.trim().toLowerCase();if(a==="false")return false;if(a==="true")return true};Date.__typeName="Date";Date.__class=true;Date._appendPreOrPostMatch=function(e,b){var d=0,a=false;for(var c=0,g=e.length;c<g;c++){var f=e.charAt(c);switch(f){case "'":if(a)b.append("'");else d++;a=false;break;case "\\":if(a)b.append("\\");a=!a;break;default:b.append(f);a=false;break}}return d};Date._expandFormat=function(a,b){if(!b)b="F";if(b.length===1)switch(b){case "d":return a.ShortDatePattern;case "D":return a.LongDatePattern;case "t":return a.ShortTimePattern;case "T":return a.LongTimePattern;case "F":return a.FullDateTimePattern;case "M":case "m":return a.MonthDayPattern;case "s":return a.SortableDateTimePattern;case "Y":case "y":return a.YearMonthPattern;default:throw Error.format(Sys.Res.formatInvalidString)}return b};Date._expandYear=function(c,a){if(a<100){var b=(new Date).getFullYear();a+=b-b%100;if(a>c.Calendar.TwoDigitYearMax)return a-100}return a};Date._getParseRegExp=function(b,e){if(!b._parseRegExp)b._parseRegExp={};else if(b._parseRegExp[e])return b._parseRegExp[e];var c=Date._expandFormat(b,e);c=c.replace(/([\^\$\.\*\+\?\|\[\]\(\)\{\}])/g,"\\\\$1");var a=new Sys.StringBuilder("^"),j=[],f=0,i=0,h=Date._getTokenRegExp(),d;while((d=h.exec(c))!==null){var l=c.slice(f,d.index);f=h.lastIndex;i+=Date._appendPreOrPostMatch(l,a);if(i%2===1){a.append(d[0]);continue}switch(d[0]){case "dddd":case "ddd":case "MMMM":case "MMM":a.append("(\\D+)");break;case "tt":case "t":a.append("(\\D*)");break;case "yyyy":a.append("(\\d{4})");break;case "fff":a.append("(\\d{3})");break;case "ff":a.append("(\\d{2})");break;case "f":a.append("(\\d)");break;case "dd":case "d":case "MM":case "M":case "yy":case "y":case "HH":case "H":case "hh":case "h":case "mm":case "m":case "ss":case "s":a.append("(\\d\\d?)");break;case "zzz":a.append("([+-]?\\d\\d?:\\d{2})");break;case "zz":case "z":a.append("([+-]?\\d\\d?)");break}Array.add(j,d[0])}Date._appendPreOrPostMatch(c.slice(f),a);a.append("$");var k=a.toString().replace(/\s+/g,"\\s+"),g={"regExp":k,"groups":j};b._parseRegExp[e]=g;return g};Date._getTokenRegExp=function(){return /dddd|ddd|dd|d|MMMM|MMM|MM|M|yyyy|yy|y|hh|h|HH|H|mm|m|ss|s|tt|t|fff|ff|f|zzz|zz|z/g};Date.parseLocale=function(a){return Date._parse(a,Sys.CultureInfo.CurrentCulture,arguments)};Date.parseInvariant=function(a){return Date._parse(a,Sys.CultureInfo.InvariantCulture,arguments)};Date._parse=function(g,c,h){var e=false;for(var a=1,i=h.length;a<i;a++){var f=h[a];if(f){e=true;var b=Date._parseExact(g,f,c);if(b)return b}}if(!e){var d=c._getDateTimeFormats();for(var a=0,i=d.length;a<i;a++){var b=Date._parseExact(g,d[a],c);if(b)return b}}return null};Date._parseExact=function(s,y,j){s=s.trim();var m=j.dateTimeFormat,v=Date._getParseRegExp(m,y),x=(new RegExp(v.regExp)).exec(s);if(x!==null){var w=v.groups,f=null,c=null,h=null,g=null,d=0,n=0,o=0,e=0,k=null,r=false;for(var p=0,z=w.length;p<z;p++){var a=x[p+1];if(a)switch(w[p]){case "dd":case "d":h=Date._parseInt(a);if(h<1||h>31)return null;break;case "MMMM":c=j._getMonthIndex(a);if(c<0||c>11)return null;break;case "MMM":c=j._getAbbrMonthIndex(a);if(c<0||c>11)return null;break;case "M":case "MM":var c=Date._parseInt(a)-1;if(c<0||c>11)return null;break;case "y":case "yy":f=Date._expandYear(m,Date._parseInt(a));if(f<0||f>9999)return null;break;case "yyyy":f=Date._parseInt(a);if(f<0||f>9999)return null;break;case "h":case "hh":d=Date._parseInt(a);if(d===12)d=0;if(d<0||d>11)return null;break;case "H":case "HH":d=Date._parseInt(a);if(d<0||d>23)return null;break;case "m":case "mm":n=Date._parseInt(a);if(n<0||n>59)return null;break;case "s":case "ss":o=Date._parseInt(a);if(o<0||o>59)return null;break;case "tt":case "t":var u=a.toUpperCase();r=u===m.PMDesignator.toUpperCase();if(!r&&u!==m.AMDesignator.toUpperCase())return null;break;case "f":e=Date._parseInt(a)*100;if(e<0||e>999)return null;break;case "ff":e=Date._parseInt(a)*10;if(e<0||e>999)return null;break;case "fff":e=Date._parseInt(a);if(e<0||e>999)return null;break;case "dddd":g=j._getDayIndex(a);if(g<0||g>6)return null;break;case "ddd":g=j._getAbbrDayIndex(a);if(g<0||g>6)return null;break;case "zzz":var q=a.split(/:/);if(q.length!==2)return null;var i=Date._parseInt(q[0]);if(i<-12||i>13)return null;var l=Date._parseInt(q[1]);if(l<0||l>59)return null;k=i*60+(a.startsWith("-")?-l:l);break;case "z":case "zz":var i=Date._parseInt(a);if(i<-12||i>13)return null;k=i*60;break}}var b=new Date;if(f===null)f=b.getFullYear();if(c===null)c=b.getMonth();if(h===null)h=b.getDate();b.setFullYear(f,c,h);if(b.getDate()!==h)return null;if(g!==null&&b.getDay()!==g)return null;if(r&&d<12)d+=12;b.setHours(d,n,o,e);if(k!==null){var t=b.getMinutes()-(k+b.getTimezoneOffset());b.setHours(b.getHours()+parseInt(t/60),t%60)}return b}};Date._parseInt=function(a){return parseInt(a.replace(/^[\s0]+(\d+)$/,"$1"))};Date.prototype.format=function(a){return this._toFormattedString(a,Sys.CultureInfo.InvariantCulture)};Date.prototype.localeFormat=function(a){return this._toFormattedString(a,Sys.CultureInfo.CurrentCulture)};Date.prototype._toFormattedString=function(e,h){if(!e||e.length===0||e==="i")if(h&&h.name.length>0)return this.toLocaleString();else return this.toString();var d=h.dateTimeFormat;e=Date._expandFormat(d,e);var a=new Sys.StringBuilder,b;function c(a){if(a<10)return "0"+a;return a.toString()}function g(a){if(a<10)return "00"+a;if(a<100)return "0"+a;return a.toString()}var j=0,i=Date._getTokenRegExp();for(;true;){var l=i.lastIndex,f=i.exec(e),k=e.slice(l,f?f.index:e.length);j+=Date._appendPreOrPostMatch(k,a);if(!f)break;if(j%2===1){a.append(f[0]);continue}switch(f[0]){case "dddd":a.append(d.DayNames[this.getDay()]);break;case "ddd":a.append(d.AbbreviatedDayNames[this.getDay()]);break;case "dd":a.append(c(this.getDate()));break;case "d":a.append(this.getDate());break;case "MMMM":a.append(d.MonthNames[this.getMonth()]);break;case "MMM":a.append(d.AbbreviatedMonthNames[this.getMonth()]);break;case "MM":a.append(c(this.getMonth()+1));break;case "M":a.append(this.getMonth()+1);break;case "yyyy":a.append(this.getFullYear());break;case "yy":a.append(c(this.getFullYear()%100));break;case "y":a.append(this.getFullYear()%100);break;case "hh":b=this.getHours()%12;if(b===0)b=12;a.append(c(b));break;case "h":b=this.getHours()%12;if(b===0)b=12;a.append(b);break;case "HH":a.append(c(this.getHours()));break;case "H":a.append(this.getHours());break;case "mm":a.append(c(this.getMinutes()));break;case "m":a.append(this.getMinutes());break;case "ss":a.append(c(this.getSeconds()));break;case "s":a.append(this.getSeconds());break;case "tt":a.append(this.getHours()<12?d.AMDesignator:d.PMDesignator);break;case "t":a.append((this.getHours()<12?d.AMDesignator:d.PMDesignator).charAt(0));break;case "f":a.append(g(this.getMilliseconds()).charAt(0));break;case "ff":a.append(g(this.getMilliseconds()).substr(0,2));break;case "fff":a.append(g(this.getMilliseconds()));break;case "z":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+Math.floor(Math.abs(b)));break;case "zz":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+c(Math.floor(Math.abs(b))));break;case "zzz":b=this.getTimezoneOffset()/60;a.append((b>=0?"+":"-")+c(Math.floor(Math.abs(b)))+d.TimeSeparator+c(Math.abs(this.getTimezoneOffset()%60)));break}}return a.toString()};Number.__typeName="Number";Number.__class=true;Number.parseLocale=function(a){return Number._parse(a,Sys.CultureInfo.CurrentCulture)};Number.parseInvariant=function(a){return Number._parse(a,Sys.CultureInfo.InvariantCulture)};Number._parse=function(g,f){var a=g.trim();if(a.match(/infinity/i)!==null)return parseFloat(a);if(a.match(/^0x[a-f0-9]+$/i)!==null)return parseInt(a);var d=f.numberFormat,b=d.NumberDecimalSeparator,c=d.NumberGroupSeparator,e=new RegExp("^[+-]?[\\d\\"+c+"]*\\"+b+"?\\d*([eE][+-]?\\d+)?$");if(!a.match(e))return Number.NaN;a=a.split(c).join("");a=a.replace(b,".");return parseFloat(a)};Number.prototype.format=function(a){return this._toFormattedString(a,Sys.CultureInfo.InvariantCulture)};Number.prototype.localeFormat=function(a){return this._toFormattedString(a,Sys.CultureInfo.CurrentCulture)};Number.prototype._toFormattedString=function(d,j){if(!d||d.length===0||d==="i")if(j&&j.name.length>0)return this.toLocaleString();else return this.toString();var q=["n %","n%","%n"],p=["-n %","-n%","-%n"],r=["(n)","-n","- n","n-","n -"],o=["$n","n$","$ n","n $"],n=["($n)","-$n","$-n","$n-","(n$)","-n$","n-$","n$-","-n $","-$ n","n $-","$ n-","$ -n","n- $","($ n)","(n $)"];function i(p,k,j,l,o){var e=j[0],g=1,c=p.toString(),a="",m="",i=c.split(".");if(i.length>1){c=i[0];a=i[1];var h=a.split(/e/i);if(h.length>1){a=h[0];m="e"+h[1]}}if(k>0){var f=a.length-k;if(f>0)a=a.slice(0,k);else if(f<0)for(var n=0;n<Math.abs(f);n++)a+="0";a=o+a}else a="";a+=m;var b=c.length-1,d="";while(b>=0){if(e===0||e>b)if(d.length>0)return c.slice(0,b+1)+l+d+a;else return c.slice(0,b+1)+a;if(d.length>0)d=c.slice(b-e+1,b+1)+l+d;else d=c.slice(b-e+1,b+1);b-=e;if(g<j.length){e=j[g];g++}}return c.slice(0,b+1)+l+d+a}var a=j.numberFormat,e=Math.abs(this);if(!d)d="D";var b=-1;if(d.length>1)b=parseInt(d.slice(1));var c;switch(d.charAt(0)){case "d":case "D":c="n";if(b!==-1){var g=""+e,k=b-g.length;if(k>0)for(var m=0;m<k;m++)g="0"+g;e=g}if(this<0)e=-e;break;case "c":case "C":if(this<0)c=n[a.CurrencyNegativePattern];else c=o[a.CurrencyPositivePattern];if(b===-1)b=a.CurrencyDecimalDigits;e=i(Math.abs(this),b,a.CurrencyGroupSizes,a.CurrencyGroupSeparator,a.CurrencyDecimalSeparator);break;case "n":case "N":if(this<0)c=r[a.NumberNegativePattern];else c="n";if(b===-1)b=a.NumberDecimalDigits;e=i(Math.abs(this),b,a.NumberGroupSizes,a.NumberGroupSeparator,a.NumberDecimalSeparator);break;case "p":case "P":if(this<0)c=p[a.PercentNegativePattern];else c=q[a.PercentPositivePattern];if(b===-1)b=a.PercentDecimalDigits;e=i(Math.abs(this),b,a.PercentGroupSizes,a.PercentGroupSeparator,a.PercentDecimalSeparator);break;default:throw Error.format(Sys.Res.formatBadFormatSpecifier)}var l=/n|\$|-|%/g,f="";for(;true;){var s=l.lastIndex,h=l.exec(c);f+=c.slice(s,h?h.index:c.length);if(!h)break;switch(h[0]){case "n":f+=e;break;case "$":f+=a.CurrencySymbol;break;case "-":f+=a.NegativeSign;break;case "%":f+=a.PercentSymbol;break}}return f};RegExp.__typeName="RegExp";RegExp.__class=true;Array.__typeName="Array";Array.__class=true;Array.add=Array.enqueue=function(a,b){a[a.length]=b};Array.addRange=function(a,b){a.push.apply(a,b)};Array.clear=function(a){a.length=0};Array.clone=function(a){if(a.length===1)return [a[0]];else return Array.apply(null,a)};Array.contains=function(a,b){return Array.indexOf(a,b)>=0};Array.dequeue=function(a){return a.shift()};Array.forEach=function(b,e,d){for(var a=0,f=b.length;a<f;a++){var c=b[a];if(typeof c!=="undefined")e.call(d,c,a,b)}};Array.indexOf=function(d,e,a){if(typeof e==="undefined")return -1;var c=d.length;if(c!==0){a=a-0;if(isNaN(a))a=0;else{if(isFinite(a))a=a-a%1;if(a<0)a=Math.max(0,c+a)}for(var b=a;b<c;b++)if(typeof d[b]!=="undefined"&&d[b]===e)return b}return -1};Array.insert=function(a,b,c){a.splice(b,0,c)};Array.parse=function(value){if(!value)return [];return eval(value)};Array.remove=function(b,c){var a=Array.indexOf(b,c);if(a>=0)b.splice(a,1);return a>=0};Array.removeAt=function(a,b){a.splice(b,1)};String.__typeName="String";String.__class=true;String.prototype.endsWith=function(a){return this.substr(this.length-a.length)===a};String.prototype.startsWith=function(a){return this.substr(0,a.length)===a};String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")};String.prototype.trimEnd=function(){return this.replace(/\s+$/,"")};String.prototype.trimStart=function(){return this.replace(/^\s+/,"")};String.format=function(){return String._toFormattedString(false,arguments)};String.localeFormat=function(){return String._toFormattedString(true,arguments)};String._toFormattedString=function(l,j){var c="",e=j[0];for(var a=0;true;){var f=e.indexOf("{",a),d=e.indexOf("}",a);if(f<0&&d<0){c+=e.slice(a);break}if(d>0&&(d<f||f<0)){c+=e.slice(a,d+1);a=d+2;continue}c+=e.slice(a,f);a=f+1;if(e.charAt(a)==="{"){c+="{";a++;continue}if(d<0)break;var h=e.substring(a,d),g=h.indexOf(":"),k=parseInt(g<0?h:h.substring(0,g))+1,i=g<0?"":h.substring(g+1),b=j[k];if(typeof b==="undefined"||b===null)b="";if(b.toFormattedString)c+=b.toFormattedString(i);else if(l&&b.localeFormat)c+=b.localeFormat(i);else if(b.format)c+=b.format(i);else c+=b.toString();a=d+1}return c};Type.registerNamespace("Sys");Sys.IDisposable=function(){};Sys.IDisposable.prototype={};Sys.IDisposable.registerInterface("Sys.IDisposable");Sys.StringBuilder=function(a){this._parts=typeof a!=="undefined"&&a!==null&&a!==""?[a.toString()]:[];this._value={};this._len=0};Sys.StringBuilder.prototype={append:function(a){this._parts[this._parts.length]=a},appendLine:function(a){this._parts[this._parts.length]=typeof a==="undefined"||a===null||a===""?"\r\n":a+"\r\n"},clear:function(){this._parts=[];this._value={};this._len=0},isEmpty:function(){if(this._parts.length===0)return true;return this.toString()===""},toString:function(a){a=a||"";var b=this._parts;if(this._len!==b.length){this._value={};this._len=b.length}var d=this._value;if(typeof d[a]==="undefined"){if(a!=="")for(var c=0;c<b.length;)if(typeof b[c]==="undefined"||b[c]===""||b[c]===null)b.splice(c,1);else c++;d[a]=this._parts.join(a)}return d[a]}};Sys.StringBuilder.registerClass("Sys.StringBuilder");if(!window.XMLHttpRequest)window.XMLHttpRequest=function(){var b=["Msxml2.XMLHTTP","Microsoft.XMLHTTP"];for(var a=0;a<b.length;a++)try{var c=new ActiveXObject(b[a]);return c}catch(d){}return null};Sys.Browser={};Sys.Browser.InternetExplorer={};Sys.Browser.Firefox={};Sys.Browser.Safari={};Sys.Browser.Opera={};Sys.Browser.agent=null;Sys.Browser.hasDebuggerStatement=false;Sys.Browser.name=navigator.appName;Sys.Browser.version=parseFloat(navigator.appVersion);if(navigator.userAgent.indexOf(" MSIE ")>-1){Sys.Browser.agent=Sys.Browser.InternetExplorer;Sys.Browser.version=parseFloat(navigator.userAgent.match(/MSIE (\d+\.\d+)/)[1]);Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" Firefox/")>-1){Sys.Browser.agent=Sys.Browser.Firefox;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Firefox\/(\d+\.\d+)/)[1]);Sys.Browser.name="Firefox";Sys.Browser.hasDebuggerStatement=true}else if(navigator.userAgent.indexOf(" Safari/")>-1){Sys.Browser.agent=Sys.Browser.Safari;Sys.Browser.version=parseFloat(navigator.userAgent.match(/Safari\/(\d+\.\d+)/)[1]);Sys.Browser.name="Safari"}else if(navigator.userAgent.indexOf("Opera/")>-1)Sys.Browser.agent=Sys.Browser.Opera;Type.registerNamespace("Sys.UI");Sys._Debug=function(){};Sys._Debug.prototype={_appendConsole:function(a){if(typeof Debug!=="undefined"&&Debug.writeln)Debug.writeln(a);if(window.console&&window.console.log)window.console.log(a);if(window.opera)window.opera.postError(a);if(window.debugService)window.debugService.trace(a)},_appendTrace:function(b){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value+=b+"\n"},assert:function(c,a,b){if(!c){a=b&&this.assert.caller?String.format(Sys.Res.assertFailedCaller,a,this.assert.caller):String.format(Sys.Res.assertFailed,a);if(confirm(String.format(Sys.Res.breakIntoDebugger,a)))this.fail(a)}},clearTrace:function(){var a=document.getElementById("TraceConsole");if(a&&a.tagName.toUpperCase()==="TEXTAREA")a.value=""},fail:function(message){this._appendConsole(message);if(Sys.Browser.hasDebuggerStatement)eval("debugger")},trace:function(a){this._appendConsole(a);this._appendTrace(a)},traceDump:function(a,b){var c=this._traceDump(a,b,true)},_traceDump:function(a,c,f,b,d){c=c?c:"traceDump";b=b?b:"";if(a===null){this.trace(b+c+": null");return}switch(typeof a){case "undefined":this.trace(b+c+": Undefined");break;case "number":case "string":case "boolean":this.trace(b+c+": "+a);break;default:if(Date.isInstanceOfType(a)||RegExp.isInstanceOfType(a)){this.trace(b+c+": "+a.toString());break}if(!d)d=[];else if(Array.contains(d,a)){this.trace(b+c+": ...");return}Array.add(d,a);if(a==window||a===document||window.HTMLElement&&a instanceof HTMLElement||typeof a.nodeName==="string"){var k=a.tagName?a.tagName:"DomElement";if(a.id)k+=" - "+a.id;this.trace(b+c+" {"+k+"}")}else{var i=Object.getTypeName(a);this.trace(b+c+(typeof i==="string"?" {"+i+"}":""));if(b===""||f){b+=" ";var e,j,l,g,h;if(Array.isInstanceOfType(a)){j=a.length;for(e=0;e<j;e++)this._traceDump(a[e],"["+e+"]",f,b,d)}else for(g in a){h=a[g];if(!Function.isInstanceOfType(h))this._traceDump(h,g,f,b,d)}}}Array.remove(d,a)}}};Sys._Debug.registerClass("Sys._Debug");Sys.Debug=new Sys._Debug;Sys.Debug.isDebug=false;function Sys$Enum$parse(c,e){var a,b,i;if(e){a=this.__lowerCaseValues;if(!a){this.__lowerCaseValues=a={};var g=this.prototype;for(var f in g)a[f.toLowerCase()]=g[f]}}else a=this.prototype;if(!this.__flags){i=e?c.toLowerCase():c;b=a[i.trim()];if(typeof b!=="number")throw Error.argument("value",String.format(Sys.Res.enumInvalidValue,c,this.__typeName));return b}else{var h=(e?c.toLowerCase():c).split(","),j=0;for(var d=h.length-1;d>=0;d--){var k=h[d].trim();b=a[k];if(typeof b!=="number")throw Error.argument("value",String.format(Sys.Res.enumInvalidValue,c.split(",")[d].trim(),this.__typeName));j|=b}return j}}function Sys$Enum$toString(c){if(typeof c==="undefined"||c===null)return this.__string;var d=this.prototype,a;if(!this.__flags||c===0){for(a in d)if(d[a]===c)return a}else{var b=this.__sortedValues;if(!b){b=[];for(a in d)b[b.length]={key:a,value:d[a]};b.sort(function(a,b){return a.value-b.value});this.__sortedValues=b}var e=[],g=c;for(a=b.length-1;a>=0;a--){var h=b[a],f=h.value;if(f===0)continue;if((f&c)===f){e[e.length]=h.key;g-=f;if(g===0)break}}if(e.length&&g===0)return e.reverse().join(", ")}return ""}Type.prototype.registerEnum=function(c,b){for(var a in this.prototype)this[a]=this.prototype[a];this.__typeName=c;this.parse=Sys$Enum$parse;this.__string=this.toString();this.toString=Sys$Enum$toString;this.__flags=b;this.__enum=true};Type.isEnum=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__enum};Type.isFlags=function(a){if(typeof a==="undefined"||a===null)return false;return !!a.__flags};Sys.EventHandlerList=function(){this._list={}};Sys.EventHandlerList.prototype={addHandler:function(b,a){Array.add(this._getEvent(b,true),a)},removeHandler:function(c,b){var a=this._getEvent(c);if(!a)return;Array.remove(a,b)},getHandler:function(b){var a=this._getEvent(b);if(!a||a.length===0)return null;a=Array.clone(a);if(!a._handler)a._handler=function(c,d){for(var b=0,e=a.length;b<e;b++)a[b](c,d)};return a._handler},_getEvent:function(a,b){if(!this._list[a]){if(!b)return null;this._list[a]=[]}return this._list[a]}};Sys.EventHandlerList.registerClass("Sys.EventHandlerList");Sys.EventArgs=function(){};Sys.EventArgs.registerClass("Sys.EventArgs");Sys.EventArgs.Empty=new Sys.EventArgs;Sys.CancelEventArgs=function(){Sys.CancelEventArgs.initializeBase(this);this._cancel=false};Sys.CancelEventArgs.prototype={get_cancel:function(){return this._cancel},set_cancel:function(a){this._cancel=a}};Sys.CancelEventArgs.registerClass("Sys.CancelEventArgs",Sys.EventArgs);Sys.INotifyPropertyChange=function(){};Sys.INotifyPropertyChange.prototype={};Sys.INotifyPropertyChange.registerInterface("Sys.INotifyPropertyChange");Sys.PropertyChangedEventArgs=function(a){Sys.PropertyChangedEventArgs.initializeBase(this);this._propertyName=a};Sys.PropertyChangedEventArgs.prototype={get_propertyName:function(){return this._propertyName}};Sys.PropertyChangedEventArgs.registerClass("Sys.PropertyChangedEventArgs",Sys.EventArgs);Sys.INotifyDisposing=function(){};Sys.INotifyDisposing.prototype={};Sys.INotifyDisposing.registerInterface("Sys.INotifyDisposing");Sys.Component=function(){if(Sys.Application)Sys.Application.registerDisposableObject(this)};Sys.Component.prototype={_id:null,_initialized:false,_updating:false,get_events:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_id:function(){return this._id},set_id:function(a){this._id=a},get_isInitialized:function(){return this._initialized},get_isUpdating:function(){return this._updating},add_disposing:function(a){this.get_events().addHandler("disposing",a)},remove_disposing:function(a){this.get_events().removeHandler("disposing",a)},add_propertyChanged:function(a){this.get_events().addHandler("propertyChanged",a)},remove_propertyChanged:function(a){this.get_events().removeHandler("propertyChanged",a)},beginUpdate:function(){this._updating=true},dispose:function(){if(this._events){var a=this._events.getHandler("disposing");if(a)a(this,Sys.EventArgs.Empty)}delete this._events;Sys.Application.unregisterDisposableObject(this);Sys.Application.removeComponent(this)},endUpdate:function(){this._updating=false;if(!this._initialized)this.initialize();this.updated()},initialize:function(){this._initialized=true},raisePropertyChanged:function(b){if(!this._events)return;var a=this._events.getHandler("propertyChanged");if(a)a(this,new Sys.PropertyChangedEventArgs(b))},updated:function(){}};Sys.Component.registerClass("Sys.Component",null,Sys.IDisposable,Sys.INotifyPropertyChange,Sys.INotifyDisposing);function Sys$Component$_setProperties(a,i){var d,j=Object.getType(a),e=j===Object||j===Sys.UI.DomElement,h=Sys.Component.isInstanceOfType(a)&&!a.get_isUpdating();if(h)a.beginUpdate();for(var c in i){var b=i[c],f=e?null:a["get_"+c];if(e||typeof f!=="function"){var k=a[c];if(!b||typeof b!=="object"||e&&!k)a[c]=b;else Sys$Component$_setProperties(k,b)}else{var l=a["set_"+c];if(typeof l==="function")l.apply(a,[b]);else if(b instanceof Array){d=f.apply(a);for(var g=0,m=d.length,n=b.length;g<n;g++,m++)d[m]=b[g]}else if(typeof b==="object"&&Object.getType(b)===Object){d=f.apply(a);Sys$Component$_setProperties(d,b)}}}if(h)a.endUpdate()}function Sys$Component$_setReferences(c,b){for(var a in b){var e=c["set_"+a],d=$find(b[a]);e.apply(c,[d])}}var $create=Sys.Component.create=function(h,f,d,c,g){var a=g?new h(g):new h,b=Sys.Application,i=b.get_isCreatingComponents();a.beginUpdate();if(f)Sys$Component$_setProperties(a,f);if(d)for(var e in d)a["add_"+e](d[e]);b._createdComponents[b._createdComponents.length]=a;if(a.get_id())b.addComponent(a);if(i)if(c)b._addComponentToSecondPass(a,c);else a.endUpdate();else{if(c)Sys$Component$_setReferences(a,c);a.endUpdate()}return a};Sys.UI.MouseButton=function(){throw Error.notImplemented()};Sys.UI.MouseButton.prototype={leftButton:0,middleButton:1,rightButton:2};Sys.UI.MouseButton.registerEnum("Sys.UI.MouseButton");Sys.UI.Key=function(){throw Error.notImplemented()};Sys.UI.Key.prototype={backspace:8,tab:9,enter:13,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,del:127};Sys.UI.Key.registerEnum("Sys.UI.Key");Sys.UI.DomEvent=function(c){var a=c;this.rawEvent=a;this.altKey=a.altKey;if(typeof a.button!=="undefined")this.button=typeof a.which!=="undefined"?a.button:a.button===4?Sys.UI.MouseButton.middleButton:a.button===2?Sys.UI.MouseButton.rightButton:Sys.UI.MouseButton.leftButton;if(a.type==="keypress")this.charCode=a.charCode||a.keyCode;else if(a.keyCode&&a.keyCode===46)this.keyCode=127;else this.keyCode=a.keyCode;this.clientX=a.clientX;this.clientY=a.clientY;this.ctrlKey=a.ctrlKey;this.target=a.target?a.target:a.srcElement;if(this.target){var b=Sys.UI.DomElement.getLocation(this.target);this.offsetX=typeof a.offsetX!=="undefined"?a.offsetX:window.pageXOffset+(a.clientX||0)-b.x;this.offsetY=typeof a.offsetY!=="undefined"?a.offsetY:window.pageYOffset+(a.clientY||0)-b.y}this.screenX=a.screenX;this.screenY=a.screenY;this.shiftKey=a.shiftKey;this.type=a.type};Sys.UI.DomEvent.prototype={preventDefault:function(){if(this.rawEvent.preventDefault)this.rawEvent.preventDefault();else if(window.event)window.event.returnValue=false},stopPropagation:function(){if(this.rawEvent.stopPropagation)this.rawEvent.stopPropagation();else if(window.event)window.event.cancelBubble=true}};Sys.UI.DomEvent.registerClass("Sys.UI.DomEvent");var $addHandler=Sys.UI.DomEvent.addHandler=function(a,d,e){if(!a._events)a._events={};var c=a._events[d];if(!c)a._events[d]=c=[];var b;if(a.addEventListener){b=function(b){return e.call(a,new Sys.UI.DomEvent(b))};a.addEventListener(d,b,false)}else if(a.attachEvent){b=function(){return e.call(a,new Sys.UI.DomEvent(window.event))};a.attachEvent("on"+d,b)}c[c.length]={handler:e,browserHandler:b}},$addHandlers=Sys.UI.DomEvent.addHandlers=function(e,d,c){for(var b in d){var a=d[b];if(c)a=Function.createDelegate(c,a);$addHandler(e,b,a)}},$clearHandlers=Sys.UI.DomEvent.clearHandlers=function(a){if(a._events){var e=a._events;for(var b in e){var d=e[b];for(var c=d.length-1;c>=0;c--)$removeHandler(a,b,d[c].handler)}a._events=null}},$removeHandler=Sys.UI.DomEvent.removeHandler=function(a,e,f){var d=null,c=a._events[e],d=null;for(var b=0,g=c.length;b<g;b++)if(c[b].handler===f){d=c[b].browserHandler;break}if(a.removeEventListener)a.removeEventListener(e,d,false);else if(a.detachEvent)a.detachEvent("on"+e,d);c.splice(b,1)};Sys.IContainer=function(){};Sys.IContainer.prototype={};Sys.IContainer.registerInterface("Sys.IContainer");Sys._ScriptLoader=function(){this._scriptsToLoad=null;this._scriptLoadedDelegate=Function.createDelegate(this,this._scriptLoadedHandler)};Sys._ScriptLoader.prototype={dispose:function(){this._stopLoading();if(this._events)delete this._events;this._scriptLoadedDelegate=null},loadScripts:function(a,c,d,b){this._loading=true;this._allScriptsLoadedCallback=c;this._scriptLoadFailedCallback=d;this._scriptLoadTimeoutCallback=b;if(a>0)this._timeoutCookie=window.setTimeout(Function.createDelegate(this,this._scriptLoadTimeoutHandler),a*1000);this._loadScriptsInternal()},notifyScriptLoaded:function(){if(!this._loading)return;this._currentTask._notified++;if(Sys.Browser.agent===Sys.Browser.Safari)if(this._currentTask._notified===1)window.setTimeout(Function.createDelegate(this,function(){this._scriptLoadedHandler(this._currentTask.get_scriptElement(),true)}),0)},queueCustomScriptTag:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,a)},queueScriptBlock:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,{text:a})},queueScriptReference:function(a){if(!this._scriptsToLoad)this._scriptsToLoad=[];Array.add(this._scriptsToLoad,{src:a})},_createScriptElement:function(c){var a=document.createElement("SCRIPT");a.type="text/javascript";for(var b in c)a[b]=c[b];return a},_loadScriptsInternal:function(){if(this._scriptsToLoad&&this._scriptsToLoad.length>0){var b=Array.dequeue(this._scriptsToLoad),a=this._createScriptElement(b);if(a.text&&Sys.Browser.agent===Sys.Browser.Safari){a.innerHTML=a.text;delete a.text}if(typeof b.src==="string"){this._currentTask=new Sys._ScriptLoaderTask(a,this._scriptLoadedDelegate);this._currentTask.execute()}else{document.getElementsByTagName("HEAD")[0].appendChild(a);Sys._ScriptLoader._clearScript(a);this._loadScriptsInternal()}}else{var c=this._allScriptsLoadedCallback;this._stopLoading();if(c)c(this)}},_raiseError:function(a){var c=this._scriptLoadFailedCallback,b=this._currentTask.get_scriptElement();this._stopLoading();if(c)c(this,b,a);else throw Sys._ScriptLoader._errorScriptLoadFailed(b.src,a)},_scriptLoadedHandler:function(a,b){if(b&&this._currentTask._notified)if(this._currentTask._notified>1)this._raiseError(true);else{Array.add(Sys._ScriptLoader._getLoadedScripts(),a.src);this._currentTask.dispose();this._currentTask=null;this._loadScriptsInternal()}else this._raiseError(false)},_scriptLoadTimeoutHandler:function(){var a=this._scriptLoadTimeoutCallback;this._stopLoading();if(a)a(this)},_stopLoading:function(){if(this._timeoutCookie){window.clearTimeout(this._timeoutCookie);this._timeoutCookie=null}if(this._currentTask){this._currentTask.dispose();this._currentTask=null}this._scriptsToLoad=null;this._loading=null;this._allScriptsLoadedCallback=null;this._scriptLoadFailedCallback=null;this._scriptLoadTimeoutCallback=null}};Sys._ScriptLoader.registerClass("Sys._ScriptLoader",null,Sys.IDisposable);Sys._ScriptLoader.getInstance=function(){var a=Sys._ScriptLoader._activeInstance;if(!a)a=Sys._ScriptLoader._activeInstance=new Sys._ScriptLoader;return a};Sys._ScriptLoader.isScriptLoaded=function(b){var a=document.createElement("script");a.src=b;return Array.contains(Sys._ScriptLoader._getLoadedScripts(),a.src)};Sys._ScriptLoader.readLoadedScripts=function(){if(!Sys._ScriptLoader._referencedScripts){var b=Sys._ScriptLoader._referencedScripts=[],c=document.getElementsByTagName("SCRIPT");for(i=c.length-1;i>=0;i--){var d=c[i],a=d.src;if(a.length)if(!Array.contains(b,a))Array.add(b,a)}}};Sys._ScriptLoader._clearScript=function(a){if(!Sys.Debug.isDebug)a.parentNode.removeChild(a)};Sys._ScriptLoader._errorScriptLoadFailed=function(b,d){var a;if(d)a=Sys.Res.scriptLoadMultipleCallbacks;else a=Sys.Res.scriptLoadFailed;var e="Sys.ScriptLoadFailedException: "+String.format(a,b),c=Error.create(e,{name:"Sys.ScriptLoadFailedException","scriptUrl":b});c.popStackFrame();return c};Sys._ScriptLoader._getLoadedScripts=function(){if(!Sys._ScriptLoader._referencedScripts){Sys._ScriptLoader._referencedScripts=[];Sys._ScriptLoader.readLoadedScripts()}return Sys._ScriptLoader._referencedScripts};Sys._ScriptLoaderTask=function(b,a){this._scriptElement=b;this._completedCallback=a;this._notified=0};Sys._ScriptLoaderTask.prototype={get_scriptElement:function(){return this._scriptElement},dispose:function(){if(this._disposed)return;this._disposed=true;this._removeScriptElementHandlers();Sys._ScriptLoader._clearScript(this._scriptElement);this._scriptElement=null},execute:function(){this._addScriptElementHandlers();document.getElementsByTagName("HEAD")[0].appendChild(this._scriptElement)},_addScriptElementHandlers:function(){this._scriptLoadDelegate=Function.createDelegate(this,this._scriptLoadHandler);if(Sys.Browser.agent!==Sys.Browser.InternetExplorer){this._scriptElement.readyState="loaded";$addHandler(this._scriptElement,"load",this._scriptLoadDelegate)}else $addHandler(this._scriptElement,"readystatechange",this._scriptLoadDelegate);this._scriptErrorDelegate=Function.createDelegate(this,this._scriptErrorHandler);$addHandler(this._scriptElement,"error",this._scriptErrorDelegate)},_removeScriptElementHandlers:function(){if(this._scriptLoadDelegate){var a=this.get_scriptElement();if(Sys.Browser.agent!==Sys.Browser.InternetExplorer)$removeHandler(a,"load",this._scriptLoadDelegate);else $removeHandler(a,"readystatechange",this._scriptLoadDelegate);$removeHandler(a,"error",this._scriptErrorDelegate);this._scriptErrorDelegate=null;this._scriptLoadDelegate=null}},_scriptErrorHandler:function(){if(this._disposed)return;this._completedCallback(this.get_scriptElement(),false)},_scriptLoadHandler:function(){if(this._disposed)return;var a=this.get_scriptElement();if(a.readyState!=="loaded"&&a.readyState!=="complete")return;var b=this;window.setTimeout(function(){b._completedCallback(a,true)},0)}};Sys._ScriptLoaderTask.registerClass("Sys._ScriptLoaderTask",null,Sys.IDisposable);Sys.ApplicationLoadEventArgs=function(b,a){Sys.ApplicationLoadEventArgs.initializeBase(this);this._components=b;this._isPartialLoad=a};Sys.ApplicationLoadEventArgs.prototype={get_components:function(){return this._components},get_isPartialLoad:function(){return this._isPartialLoad}};Sys.ApplicationLoadEventArgs.registerClass("Sys.ApplicationLoadEventArgs",Sys.EventArgs);Sys._Application=function(){Sys._Application.initializeBase(this);this._disposableObjects=[];this._components={};this._createdComponents=[];this._secondPassComponents=[];this._unloadHandlerDelegate=Function.createDelegate(this,this._unloadHandler);this._loadHandlerDelegate=Function.createDelegate(this,this._loadHandler);Sys.UI.DomEvent.addHandler(window,"unload",this._unloadHandlerDelegate);Sys.UI.DomEvent.addHandler(window,"load",this._loadHandlerDelegate)};Sys._Application.prototype={_creatingComponents:false,_disposing:false,get_isCreatingComponents:function(){return this._creatingComponents},add_load:function(a){this.get_events().addHandler("load",a)},remove_load:function(a){this.get_events().removeHandler("load",a)},add_init:function(a){if(this._initialized)a(this,Sys.EventArgs.Empty);else this.get_events().addHandler("init",a)},remove_init:function(a){this.get_events().removeHandler("init",a)},add_unload:function(a){this.get_events().addHandler("unload",a)},remove_unload:function(a){this.get_events().removeHandler("unload",a)},addComponent:function(a){this._components[a.get_id()]=a},beginCreateComponents:function(){this._creatingComponents=true},dispose:function(){if(!this._disposing){this._disposing=true;if(window.pageUnload)window.pageUnload(this,Sys.EventArgs.Empty);var c=this.get_events().getHandler("unload");if(c)c(this,Sys.EventArgs.Empty);var b=Array.clone(this._disposableObjects);for(var a=0,e=b.length;a<e;a++)b[a].dispose();Array.clear(this._disposableObjects);Sys.UI.DomEvent.removeHandler(window,"unload",this._unloadHandlerDelegate);if(this._loadHandlerDelegate){Sys.UI.DomEvent.removeHandler(window,"load",this._loadHandlerDelegate);this._loadHandlerDelegate=null}var d=Sys._ScriptLoader.getInstance();if(d)d.dispose();Sys._Application.callBaseMethod(this,"dispose")}},endCreateComponents:function(){var b=this._secondPassComponents;for(var a=0,d=b.length;a<d;a++){var c=b[a].component;Sys$Component$_setReferences(c,b[a].references);c.endUpdate()}this._secondPassComponents=[];this._creatingComponents=false},findComponent:function(b,a){return a?Sys.IContainer.isInstanceOfType(a)?a.findComponent(b):a[b]||null:Sys.Application._components[b]||null},getComponents:function(){var a=[],b=this._components;for(var c in b)a[a.length]=b[c];return a},initialize:function(){if(!this._initialized&&!this._initializing){this._initializing=true;window.setTimeout(Function.createDelegate(this,this._doInitialize),0)}},notifyScriptLoaded:function(){var a=Sys._ScriptLoader.getInstance();if(a)a.notifyScriptLoaded()},registerDisposableObject:function(a){if(!this._disposing)this._disposableObjects[this._disposableObjects.length]=a},raiseLoad:function(){var b=this.get_events().getHandler("load"),a=new Sys.ApplicationLoadEventArgs(Array.clone(this._createdComponents),!this._initializing);if(b)b(this,a);if(window.pageLoad)window.pageLoad(this,a);this._createdComponents=[]},removeComponent:function(b){var a=b.get_id();if(a)delete this._components[a]},unregisterDisposableObject:function(a){if(!this._disposing)Array.remove(this._disposableObjects,a)},_addComponentToSecondPass:function(b,a){this._secondPassComponents[this._secondPassComponents.length]={component:b,references:a}},_doInitialize:function(){Sys._Application.callBaseMethod(this,"initialize");var a=this.get_events().getHandler("init");if(a){this.beginCreateComponents();a(this,Sys.EventArgs.Empty);this.endCreateComponents()}this.raiseLoad();this._initializing=false},_loadHandler:function(){if(this._loadHandlerDelegate){Sys.UI.DomEvent.removeHandler(window,"load",this._loadHandlerDelegate);this._loadHandlerDelegate=null}this.initialize()},_unloadHandler:function(){this.dispose()}};Sys._Application.registerClass("Sys._Application",Sys.Component,Sys.IContainer);Sys.Application=new Sys._Application;var $find=Sys.Application.findComponent;Type.registerNamespace("Sys.Net");Sys.Net.WebRequestExecutor=function(){this._webRequest=null;this._resultObject=null};Sys.Net.WebRequestExecutor.prototype={get_webRequest:function(){return this._webRequest},_set_webRequest:function(a){this._webRequest=a},get_started:function(){throw Error.notImplemented()},get_responseAvailable:function(){throw Error.notImplemented()},get_timedOut:function(){throw Error.notImplemented()},get_aborted:function(){throw Error.notImplemented()},get_responseData:function(){throw Error.notImplemented()},get_statusCode:function(){throw Error.notImplemented()},get_statusText:function(){throw Error.notImplemented()},get_xml:function(){throw Error.notImplemented()},get_object:function(){if(!this._resultObject)this._resultObject=Sys.Serialization.JavaScriptSerializer.deserialize(this.get_responseData());return this._resultObject},executeRequest:function(){throw Error.notImplemented()},abort:function(){throw Error.notImplemented()},getResponseHeader:function(){throw Error.notImplemented()},getAllResponseHeaders:function(){throw Error.notImplemented()}};Sys.Net.WebRequestExecutor.registerClass("Sys.Net.WebRequestExecutor");window.XMLDOM=function(d){if(!window.DOMParser){var c=["Msxml2.DOMDocument.3.0","Msxml2.DOMDocument"];for(var b=0;b<c.length;b++)try{var a=new ActiveXObject(c[b]);a.async=false;a.loadXML(d);a.setProperty("SelectionLanguage","XPath");return a}catch(f){}return null}else try{var e=new window.DOMParser;return e.parseFromString(d,"text/xml")}catch(f){return null}return null};Sys.Net.XMLHttpExecutor=function(){Sys.Net.XMLHttpExecutor.initializeBase(this);var a=this;this._xmlHttpRequest=null;this._webRequest=null;this._responseAvailable=false;this._timedOut=false;this._timer=null;this._aborted=false;this._started=false;this._onReadyStateChange=function(){if(a._xmlHttpRequest.readyState===4){a._clearTimer();a._responseAvailable=true;a._webRequest.completed(Sys.EventArgs.Empty);if(a._xmlHttpRequest!=null){a._xmlHttpRequest.onreadystatechange=Function.emptyMethod;a._xmlHttpRequest=null}}};this._clearTimer=function(){if(a._timer!=null){window.clearTimeout(a._timer);a._timer=null}};this._onTimeout=function(){if(!a._responseAvailable){a._clearTimer();a._timedOut=true;a._xmlHttpRequest.onreadystatechange=Function.emptyMethod;a._xmlHttpRequest.abort();a._webRequest.completed(Sys.EventArgs.Empty);a._xmlHttpRequest=null}}};Sys.Net.XMLHttpExecutor.prototype={get_timedOut:function(){return this._timedOut},get_started:function(){return this._started},get_responseAvailable:function(){return this._responseAvailable},get_aborted:function(){return this._aborted},executeRequest:function(){this._webRequest=this.get_webRequest();var c=this._webRequest.get_body(),a=this._webRequest.get_headers();this._xmlHttpRequest=new XMLHttpRequest;this._xmlHttpRequest.onreadystatechange=this._onReadyStateChange;var e=this._webRequest.get_httpVerb();this._xmlHttpRequest.open(e,this._webRequest.getResolvedUrl(),true);if(a)for(var b in a){var f=a[b];if(typeof f!=="function")this._xmlHttpRequest.setRequestHeader(b,f)}if(e.toLowerCase()==="post"){if(a===null||!a["Content-Type"])this._xmlHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");if(!c)c=""}var d=this._webRequest.get_timeout();if(d>0)this._timer=window.setTimeout(Function.createDelegate(this,this._onTimeout),d);this._xmlHttpRequest.send(c);this._started=true},getResponseHeader:function(b){var a;try{a=this._xmlHttpRequest.getResponseHeader(b)}catch(c){}if(!a)a="";return a},getAllResponseHeaders:function(){return this._xmlHttpRequest.getAllResponseHeaders()},get_responseData:function(){return this._xmlHttpRequest.responseText},get_statusCode:function(){return this._xmlHttpRequest.status},get_statusText:function(){return this._xmlHttpRequest.statusText},get_xml:function(){var a=this._xmlHttpRequest.responseXML;if(!a||!a.documentElement){a=new XMLDOM(this._xmlHttpRequest.responseText);if(!a||!a.documentElement)return null}else if(navigator.userAgent.indexOf("MSIE")!==-1)a.setProperty("SelectionLanguage","XPath");if(a.documentElement.namespaceURI==="http://www.mozilla.org/newlayout/xml/parsererror.xml"&&a.documentElement.tagName==="parsererror")return null;if(a.documentElement.firstChild&&a.documentElement.firstChild.tagName==="parsererror")return null;return a},abort:function(){if(this._aborted||this._responseAvailable||this._timedOut)return;this._aborted=true;this._clearTimer();if(this._xmlHttpRequest&&!this._responseAvailable){this._xmlHttpRequest.onreadystatechange=Function.emptyMethod;this._xmlHttpRequest.abort();this._xmlHttpRequest=null;var a=this._webRequest._get_eventHandlerList().getHandler("completed");if(a)a(this,Sys.EventArgs.Empty)}}};Sys.Net.XMLHttpExecutor.registerClass("Sys.Net.XMLHttpExecutor",Sys.Net.WebRequestExecutor);Sys.Net._WebRequestManager=function(){this._this=this;this._defaultTimeout=0;this._defaultExecutorType="Sys.Net.XMLHttpExecutor"};Sys.Net._WebRequestManager.prototype={add_invokingRequest:function(a){this._get_eventHandlerList().addHandler("invokingRequest",a)},remove_invokingRequest:function(a){this._get_eventHandlerList().removeHandler("invokingRequest",a)},add_completedRequest:function(a){this._get_eventHandlerList().addHandler("completedRequest",a)},remove_completedRequest:function(a){this._get_eventHandlerList().removeHandler("completedRequest",a)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_defaultTimeout:function(){return this._defaultTimeout},set_defaultTimeout:function(a){this._defaultTimeout=a},get_defaultExecutorType:function(){return this._defaultExecutorType},set_defaultExecutorType:function(a){this._defaultExecutorType=a},executeRequest:function(webRequest){var executor=webRequest.get_executor();if(!executor){var failed=false;try{var executorType=eval(this._defaultExecutorType);executor=new executorType}catch(a){failed=true}webRequest.set_executor(executor)}if(executor.get_aborted())return;var evArgs=new Sys.Net.NetworkRequestEventArgs(webRequest),handler=this._get_eventHandlerList().getHandler("invokingRequest");if(handler)handler(this,evArgs);if(!evArgs.get_cancel())executor.executeRequest()}};Sys.Net._WebRequestManager.registerClass("Sys.Net._WebRequestManager");Sys.Net.WebRequestManager=new Sys.Net._WebRequestManager;Sys.Net.NetworkRequestEventArgs=function(a){Sys.Net.NetworkRequestEventArgs.initializeBase(this);this._webRequest=a};Sys.Net.NetworkRequestEventArgs.prototype={get_webRequest:function(){return this._webRequest}};Sys.Net.NetworkRequestEventArgs.registerClass("Sys.Net.NetworkRequestEventArgs",Sys.CancelEventArgs);Sys.Net.WebRequest=function(){this._url="";this._headers={};this._body=null;this._userContext=null;this._httpVerb=null;this._executor=null;this._invokeCalled=false;this._timeout=0};Sys.Net.WebRequest.prototype={add_completed:function(a){this._get_eventHandlerList().addHandler("completed",a)},remove_completed:function(a){this._get_eventHandlerList().removeHandler("completed",a)},completed:function(b){var a=Sys.Net.WebRequestManager._get_eventHandlerList().getHandler("completedRequest");if(a)a(this._executor,b);a=this._get_eventHandlerList().getHandler("completed");if(a)a(this._executor,b)},_get_eventHandlerList:function(){if(!this._events)this._events=new Sys.EventHandlerList;return this._events},get_url:function(){return this._url},set_url:function(a){this._url=a},get_headers:function(){return this._headers},get_httpVerb:function(){if(this._httpVerb===null){if(this._body===null)return "GET";return "POST"}return this._httpVerb},set_httpVerb:function(a){this._httpVerb=a},get_body:function(){return this._body},set_body:function(a){this._body=a},get_userContext:function(){return this._userContext},set_userContext:function(a){this._userContext=a},get_executor:function(){return this._executor},set_executor:function(a){this._executor=a;this._executor._set_webRequest(this)},get_timeout:function(){if(this._timeout===0)return Sys.Net.WebRequestManager.get_defaultTimeout();return this._timeout},set_timeout:function(a){this._timeout=a},getResolvedUrl:function(){return Sys.Net.WebRequest._resolveUrl(this._url)},invoke:function(){Sys.Net.WebRequestManager.executeRequest(this);this._invokeCalled=true}};Sys.Net.WebRequest._resolveUrl=function(b,a){if(b&&b.indexOf("://")!==-1)return b;if(!a||a.length===0){var c=document.getElementsByTagName("base")[0];if(c&&c.href&&c.href.length>0)a=c.href;else a=document.URL}var d=a.indexOf("?");if(d!==-1)a=a.substr(0,d);a=a.substr(0,a.lastIndexOf("/")+1);if(!b||b.length===0)return a;if(b.charAt(0)==="/"){var e=a.indexOf("://"),g=a.indexOf("/",e+3);return a.substr(0,g)+b}else{var f=a.lastIndexOf("/");return a.substr(0,f+1)+b}};Sys.Net.WebRequest._createQueryString=function(d,b){if(!b)b=encodeURIComponent;var a=new Sys.StringBuilder,f=0;for(var c in d){var e=d[c];if(typeof e==="function")continue;var g=Sys.Serialization.JavaScriptSerializer.serialize(e);if(f!==0)a.append("&");a.append(c);a.append("=");a.append(b(g));f++}return a.toString()};Sys.Net.WebRequest._createUrl=function(a,b){if(!b)return a;var d=Sys.Net.WebRequest._createQueryString(b);if(d.length>0){var c="?";if(a&&a.indexOf("?")!==-1)c="&";return a+c+d}else return a};Sys.Net.WebRequest.registerClass("Sys.Net.WebRequest");Sys.Net.WebServiceProxy=function(){};Sys.Net.WebServiceProxy.prototype={set_timeout:function(a){this._timeout=a},get_timeout:function(){return this._timeout},set_defaultUserContext:function(a){this._userContext=a},get_defaultUserContext:function(){return this._userContext},set_defaultSucceededCallback:function(a){this._succeeded=a},get_defaultSucceededCallback:function(){return this._succeeded},set_defaultFailedCallback:function(a){this._failed=a},get_defaultFailedCallback:function(){return this._failed},set_path:function(a){this._path=a},get_path:function(){return this._path},_invoke:function(d,e,g,f,c,b,a){if(c===null||typeof c==="undefined")c=this.get_defaultSucceededCallback();if(b===null||typeof b==="undefined")b=this.get_defaultFailedCallback();if(a===null||typeof a==="undefined")a=this.get_defaultUserContext();return Sys.Net.WebServiceProxy.invoke(d,e,g,f,c,b,a,this.get_timeout())}};Sys.Net.WebServiceProxy.registerClass("Sys.Net.WebServiceProxy");Sys.Net.WebServiceProxy.invoke=function(k,a,j,d,i,c,f,h){var b=new Sys.Net.WebRequest;b.get_headers()["Content-Type"]="application/json; charset=utf-8";if(!d)d={};var g=d;if(!j||!g)g={};b.set_url(Sys.Net.WebRequest._createUrl(k+"/"+a,g));var e=null;if(!j){e=Sys.Serialization.JavaScriptSerializer.serialize(d);if(e==="{}")e=""}b.set_body(e);b.add_completed(l);if(h&&h>0)b.set_timeout(h);b.invoke();function l(d){if(d.get_responseAvailable()){var e=d.get_statusCode(),b=null;try{var j=d.getResponseHeader("Content-Type");if(j.startsWith("application/json"))b=d.get_object();else if(j.startsWith("text/xml"))b=d.get_xml();else b=d.get_responseData()}catch(m){}var k=d.getResponseHeader("jsonerror"),g=k==="true";if(g)b=new Sys.Net.WebServiceError(false,b.Message,b.StackTrace,b.ExceptionType);if(e<200||e>=300||g){if(c){if(!b||!g)b=new Sys.Net.WebServiceError(false,String.format(Sys.Res.webServiceFailedNoMsg,a),"","");b._statusCode=e;c(b,f,a)}}else if(i)i(b,f,a)}else{var h;if(d.get_timedOut())h=String.format(Sys.Res.webServiceTimedOut,a);else h=String.format(Sys.Res.webServiceFailedNoMsg,a);if(c)c(new Sys.Net.WebServiceError(d.get_timedOut(),h,"",""),f,a)}}return b};Sys.Net.WebServiceProxy._generateTypedConstructor=function(a){return function(b){if(b)for(var c in b)this[c]=b[c];this.__type=a}};Sys.Net.WebServiceError=function(c,d,b,a){this._timedOut=c;this._message=d;this._stackTrace=b;this._exceptionType=a;this._statusCode=-1};Sys.Net.WebServiceError.prototype={get_timedOut:function(){return this._timedOut},get_statusCode:function(){return this._statusCode},get_message:function(){return this._message},get_stackTrace:function(){return this._stackTrace},get_exceptionType:function(){return this._exceptionType}};Sys.Net.WebServiceError.registerClass("Sys.Net.WebServiceError");Type.registerNamespace("Sys.Services");Sys.Services._ProfileService=function(){Sys.Services._ProfileService.initializeBase(this);this.properties={}};Sys.Services._ProfileService.DefaultWebServicePath="";Sys.Services._ProfileService.prototype={_defaultFailedCallback:null,_defaultLoadCompletedCallback:null,_defaultSaveCompletedCallback:null,_path:"",_timeout:0,get_defaultFailedCallback:function(){return this._defaultFailedCallback},set_defaultFailedCallback:function(a){this._defaultFailedCallback=a},get_defaultLoadCompletedCallback:function(){return this._defaultLoadCompletedCallback},set_defaultLoadCompletedCallback:function(a){this._defaultLoadCompletedCallback=a},get_defaultSaveCompletedCallback:function(){return this._defaultSaveCompletedCallback},set_defaultSaveCompletedCallback:function(a){this._defaultSaveCompletedCallback=a},get_path:function(){return this._path},set_path:function(a){if(!a||!a.length)a="";this._path=a},get_timeout:function(){return this._timeout},set_timeout:function(a){this._timeout=a},load:function(b,d,e,f){var c={},a;if(!b)a="GetAllPropertiesForCurrentUser";else{a="GetPropertiesForCurrentUser";c={properties:this._clonePropertyNames(b)}}this._invoke(this._get_path(),a,false,c,Function.createDelegate(this,this._onLoadComplete),Function.createDelegate(this,this._onLoadFailed),[d,e,f])},save:function(d,a,c,e){var b=this._flattenProperties(d,this.properties);this._invoke(this._get_path(),"SetPropertiesForCurrentUser",false,{values:b},Function.createDelegate(this,this._onSaveComplete),Function.createDelegate(this,this._onSaveFailed),[a,c,e])},_clonePropertyNames:function(e){var c=[],d={};for(var b=0;b<e.length;b++){var a=e[b];if(!d[a]){Array.add(c,a);d[a]=true}}return c},_flattenProperties:function(a,h,i){var b={},e,d;if(a&&a.length===0)return b;for(var c in h){e=h[c];d=i?i+"."+c:c;if(Sys.Services.ProfileGroup.isInstanceOfType(e)){var g=this._flattenProperties(a,e,d);for(var f in g){var j=g[f];b[f]=j}}else if(!a||Array.indexOf(a,d)!==-1)b[d]=e}return b},_get_path:function(){var a=this.get_path();if(!a.length)a=Sys.Services._ProfileService.DefaultWebServicePath;if(!a||!a.length)throw Error.invalidOperation(Sys.Res.servicePathNotSet);return a},_onLoadComplete:function(a,f,g){if(typeof a!=="object")throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,g,"Object"));var d=this._unflattenProperties(a);for(var b in d)this.properties[b]=d[b];var c=f[0],e=c?c:this._defaultLoadCompletedCallback;if(e)e(a.length,f[2],"Sys.Services.ProfileService.load")},_onLoadFailed:function(d,c){var a=c[1],b=a?a:this._defaultFailedCallback;if(b)b(d,c[2],"Sys.Services.ProfileService.load")},_onSaveComplete:function(d,c,f){if(typeof d!=="number")throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,f,"Number"));var a=c[0],e=c[2],b=a?a:this._defaultSaveCompletedCallback;if(b)b(d,e,"Sys.Services.ProfileService.save")},_onSaveFailed:function(e,c){var a=c[1],d=c[2],b=a?a:this._defaultFailedCallback;if(b)b(e,d,"Sys.Services.ProfileService.save")},_unflattenProperties:function(e){var c={},d,f,h=0;for(var a in e){h++;f=e[a];d=a.indexOf(".");if(d!==-1){var g=a.substr(0,d);a=a.substr(d+1);var b=c[g];if(!b||!Sys.Services.ProfileGroup.isInstanceOfType(b)){b=new Sys.Services.ProfileGroup;c[g]=b}b[a]=f}else c[a]=f}e.length=h;return c}};Sys.Services._ProfileService.registerClass("Sys.Services._ProfileService",Sys.Net.WebServiceProxy);Sys.Services.ProfileService=new Sys.Services._ProfileService;Sys.Services.ProfileGroup=function(a){if(a)for(var b in a)this[b]=a[b]};Sys.Services.ProfileGroup.registerClass("Sys.Services.ProfileGroup");Sys.Services._AuthenticationService=function(){Sys.Services._AuthenticationService.initializeBase(this)};Sys.Services._AuthenticationService.DefaultWebServicePath="";Sys.Services._AuthenticationService.prototype={_defaultFailedCallback:null,_defaultLoginCompletedCallback:null,_defaultLogoutCompletedCallback:null,_path:"",_timeout:0,_authenticated:false,get_defaultFailedCallback:function(){return this._defaultFailedCallback},set_defaultFailedCallback:function(a){this._defaultFailedCallback=a},get_defaultLoginCompletedCallback:function(){return this._defaultLoginCompletedCallback},set_defaultLoginCompletedCallback:function(a){this._defaultLoginCompletedCallback=a},get_defaultLogoutCompletedCallback:function(){return this._defaultLogoutCompletedCallback},set_defaultLogoutCompletedCallback:function(a){this._defaultLogoutCompletedCallback=a},get_isLoggedIn:function(){return this._authenticated},get_path:function(){return this._path},set_path:function(a){if(!a||!a.length)a="";this._path=a},get_timeout:function(){return this._timeout},set_timeout:function(a){this._timeout=a},login:function(c,b,a,h,f,d,e,g){this._invoke(this._get_path(),"Login",false,{userName:c,password:b,createPersistentCookie:a},Function.createDelegate(this,this._onLoginComplete),Function.createDelegate(this,this._onLoginFailed),[c,b,a,f,d,e,g])},logout:function(c,a,b,d){this._invoke(this._get_path(),"Logout",false,{},Function.createDelegate(this,this._onLogoutComplete),Function.createDelegate(this,this._onLogoutFailed),[c,a,b,d])},_get_path:function(){var a=this.get_path();if(!a.length)a=Sys.Services._AuthenticationService.DefaultWebServicePath;if(!a||!a.length)throw Error.invalidOperation(Sys.Res.servicePathNotSet);return a},_onLoginComplete:function(f,c,g){if(typeof f!=="boolean")throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,g,"Boolean"));var b=c[3],d=c[4],e=c[6],a=d?d:this._defaultLoginCompletedCallback;if(f){this._authenticated=true;if(a)a(true,e,"Sys.Services.AuthenticationService.login");if(typeof b!=="undefined"&&b!==null)window.location.href=b}else if(a)a(false,e,"Sys.Services.AuthenticationService.login")},_onLoginFailed:function(d,c){var a=c[5],b=a?a:this._defaultFailedCallback;if(b)b(d,c[6],"Sys.Services.AuthenticationService.login")},_onLogoutComplete:function(g,a,f){if(g!==null)throw Error.invalidOperation(String.format(Sys.Res.webServiceInvalidReturnType,f,"null"));var c=a[0],b=a[1],e=a[3],d=b?b:this._defaultLogoutCompletedCallback;this._authenticated=false;if(d)d(null,e,"Sys.Services.AuthenticationService.logout");if(!c)window.location.reload();else window.location.href=c},_onLogoutFailed:function(d,c){var a=c[2],b=a?a:this._defaultFailedCallback;if(b)b(d,c[3],"Sys.Services.AuthenticationService.logout")},_setAuthenticated:function(a){this._authenticated=a}};Sys.Services._AuthenticationService.registerClass("Sys.Services._AuthenticationService",Sys.Net.WebServiceProxy);Sys.Services.AuthenticationService=new Sys.Services._AuthenticationService;Type.registerNamespace("Sys.Serialization");Sys.Serialization.JavaScriptSerializer=function(){};Sys.Serialization.JavaScriptSerializer.registerClass("Sys.Serialization.JavaScriptSerializer");Sys.Serialization.JavaScriptSerializer._stringRegEx=new RegExp('["\b\f\n\r\t\\\\\x00-\x1F]',"i");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder=function(b,a,h){var c;switch(typeof b){case "object":if(b)if(Array.isInstanceOfType(b)){a.append("[");for(c=0;c<b.length;++c){if(c>0)a.append(",");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b[c],a)}a.append("]")}else{if(Date.isInstanceOfType(b)){a.append('"\\/Date(');a.append(b.getTime());a.append(')\\/"');break}var e=[],i=0;for(var g in b){if(g.startsWith("$"))continue;e[i++]=g}if(h)e.sort();a.append("{");var j=false;for(c=0;c<i;c++){var f=b[e[c]];if(typeof f!=="undefined"&&typeof f!=="function"){if(j)a.append(",");else j=true;Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(e[c],a,h);a.append(":");Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(f,a,h)}}a.append("}")}else a.append("null");break;case "number":if(isFinite(b))a.append(String(b));else throw Error.invalidOperation(Sys.Res.cannotSerializeNonFiniteNumbers);break;case "string":a.append('"');if(Sys.Browser.agent===Sys.Browser.Safari||Sys.Serialization.JavaScriptSerializer._stringRegEx.test(b)){var k=b.length;for(c=0;c<k;++c){var d=b.charAt(c);if(d>=" "){if(d==="\\"||d==='"')a.append("\\");a.append(d)}else switch(d){case "\b":a.append("\\b");break;case "\f":a.append("\\f");break;case "\n":a.append("\\n");break;case "\r":a.append("\\r");break;case "\t":a.append("\\t");break;default:a.append("\\u00");if(d.charCodeAt()<16)a.append("0");a.append(d.charCodeAt().toString(16))}}}else a.append(b);a.append('"');break;case "boolean":a.append(b.toString());break;default:a.append("null");break}};Sys.Serialization.JavaScriptSerializer.serialize=function(b){var a=new Sys.StringBuilder;Sys.Serialization.JavaScriptSerializer._serializeWithBuilder(b,a,false);return a.toString()};Sys.Serialization.JavaScriptSerializer.deserialize=function(data){if(data.length===0)throw Error.argument("data",Sys.Res.cannotDeserializeEmptyString);try{var exp=data.replace(new RegExp('(^|[^\\\\])\\"\\\\/Date\\((-?[0-9]+)\\)\\\\/\\"',"g"),"$1new Date($2)");return eval("("+exp+")")}catch(a){throw Error.argument("data",Sys.Res.cannotDeserializeInvalidJson)}};Sys.CultureInfo=function(c,b,a){this.name=c;this.numberFormat=b;this.dateTimeFormat=a};Sys.CultureInfo.prototype={_getDateTimeFormats:function(){if(!this._dateTimeFormats){var a=this.dateTimeFormat;this._dateTimeFormats=[a.MonthDayPattern,a.YearMonthPattern,a.ShortDatePattern,a.ShortTimePattern,a.LongDatePattern,a.LongTimePattern,a.FullDateTimePattern,a.RFC1123Pattern,a.SortableDateTimePattern,a.UniversalSortableDateTimePattern]}return this._dateTimeFormats},_getMonthIndex:function(a){if(!this._upperMonths)this._upperMonths=this._toUpperArray(this.dateTimeFormat.MonthNames);return Array.indexOf(this._upperMonths,this._toUpper(a))},_getAbbrMonthIndex:function(a){if(!this._upperAbbrMonths)this._upperAbbrMonths=this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);return Array.indexOf(this._upperMonths,this._toUpper(a))},_getDayIndex:function(a){if(!this._upperDays)this._upperDays=this._toUpperArray(this.dateTimeFormat.DayNames);return Array.indexOf(this._upperDays,this._toUpper(a))},_getAbbrDayIndex:function(a){if(!this._upperAbbrDays)this._upperAbbrDays=this._toUpperArray(this.dateTimeFormat.AbbreviatedDayNames);return Array.indexOf(this._upperAbbrDays,this._toUpper(a))},_toUpperArray:function(c){var b=[];for(var a=0,d=c.length;a<d;a++)b[a]=this._toUpper(c[a]);return b},_toUpper:function(a){return a.split("\u00A0").join(" ").toUpperCase()}};Sys.CultureInfo._parse=function(b){var a=Sys.Serialization.JavaScriptSerializer.deserialize(b);return new Sys.CultureInfo(a.name,a.numberFormat,a.dateTimeFormat)};Sys.CultureInfo.registerClass("Sys.CultureInfo");Sys.CultureInfo.InvariantCulture=Sys.CultureInfo._parse('{"name":"","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":true,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"\u00A4","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":true},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, dd MMMM yyyy HH:mm:ss","LongDatePattern":"dddd, dd MMMM yyyy","LongTimePattern":"HH:mm:ss","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"MM/dd/yyyy","ShortTimePattern":"HH:mm","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"yyyy MMMM","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":true,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}');if(typeof __cultureInfo==="undefined")var __cultureInfo='{"name":"en-US","numberFormat":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":".","IsReadOnly":false,"CurrencyGroupSizes":[3],"NumberGroupSizes":[3],"PercentGroupSizes":[3],"CurrencyGroupSeparator":",","CurrencySymbol":"$","NaNSymbol":"NaN","CurrencyNegativePattern":0,"NumberNegativePattern":1,"PercentPositivePattern":0,"PercentNegativePattern":0,"NegativeInfinitySymbol":"-Infinity","NegativeSign":"-","NumberDecimalDigits":2,"NumberDecimalSeparator":".","NumberGroupSeparator":",","CurrencyPositivePattern":0,"PositiveInfinitySymbol":"Infinity","PositiveSign":"+","PercentDecimalDigits":2,"PercentDecimalSeparator":".","PercentGroupSeparator":",","PercentSymbol":"%","PerMilleSymbol":"\u2030","NativeDigits":["0","1","2","3","4","5","6","7","8","9"],"DigitSubstitution":1},"dateTimeFormat":{"AMDesignator":"AM","Calendar":{"MinSupportedDateTime":"@-62135568000000@","MaxSupportedDateTime":"@253402300799999@","AlgorithmType":1,"CalendarType":1,"Eras":[1],"TwoDigitYearMax":2029,"IsReadOnly":false},"DateSeparator":"/","FirstDayOfWeek":0,"CalendarWeekRule":0,"FullDateTimePattern":"dddd, MMMM dd, yyyy h:mm:ss tt","LongDatePattern":"dddd, MMMM dd, yyyy","LongTimePattern":"h:mm:ss tt","MonthDayPattern":"MMMM dd","PMDesignator":"PM","RFC1123Pattern":"ddd, dd MMM yyyy HH\':\'mm\':\'ss \'GMT\'","ShortDatePattern":"M/d/yyyy","ShortTimePattern":"h:mm tt","SortableDateTimePattern":"yyyy\'-\'MM\'-\'dd\'T\'HH\':\'mm\':\'ss","TimeSeparator":":","UniversalSortableDateTimePattern":"yyyy\'-\'MM\'-\'dd HH\':\'mm\':\'ss\'Z\'","YearMonthPattern":"MMMM, yyyy","AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"ShortestDayNames":["Su","Mo","Tu","We","Th","Fr","Sa"],"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"IsReadOnly":false,"NativeCalendarName":"Gregorian Calendar","AbbreviatedMonthGenitiveNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"MonthGenitiveNames":["January","February","March","April","May","June","July","August","September","October","November","December",""]}}';Sys.CultureInfo.CurrentCulture=Sys.CultureInfo._parse(__cultureInfo);delete __cultureInfo;Sys.UI.Point=function(a,b){this.x=a;this.y=b};Sys.UI.Point.registerClass("Sys.UI.Point");Sys.UI.Bounds=function(c,d,b,a){this.x=c;this.y=d;this.height=a;this.width=b};Sys.UI.Bounds.registerClass("Sys.UI.Bounds");Sys.UI.DomElement=function(){};Sys.UI.DomElement.registerClass("Sys.UI.DomElement");Sys.UI.DomElement.addCssClass=function(a,b){if(!Sys.UI.DomElement.containsCssClass(a,b))if(a.className==="")a.className=b;else a.className+=" "+b};Sys.UI.DomElement.containsCssClass=function(b,a){return Array.contains(b.className.split(" "),a)};Sys.UI.DomElement.getBounds=function(a){var b=Sys.UI.DomElement.getLocation(a);return new Sys.UI.Bounds(b.x,b.y,a.offsetWidth||0,a.offsetHeight||0)};var $get=Sys.UI.DomElement.getElementById=function(f,e){if(!e)return document.getElementById(f);if(e.getElementById)return e.getElementById(f);var c=[],d=e.childNodes;for(var b=0;b<d.length;b++){var a=d[b];if(a.nodeType==1)c[c.length]=a}while(c.length){a=c.shift();if(a.id==f)return a;d=a.childNodes;for(b=0;b<d.length;b++){a=d[b];if(a.nodeType==1)c[c.length]=a}}return null};switch(Sys.Browser.agent){case Sys.Browser.InternetExplorer:Sys.UI.DomElement.getLocation=function Sys$UI$DomElement$getLocation(a){if(a.self||a.nodeType===9)return new Sys.UI.Point(0,0);var d=a.getClientRects();if(!d||!d.length)return new Sys.UI.Point(0,0);var e=a.ownerDocument.parentWindow,g=e.screenLeft-top.screenLeft-top.document.documentElement.scrollLeft+2,h=e.screenTop-top.screenTop-top.document.documentElement.scrollTop+2,c=e.frameElement||null;if(c){var b=c.currentStyle;g+=(c.frameBorder||1)*2+(parseInt(b.paddingLeft)||0)+(parseInt(b.borderLeftWidth)||0)-a.ownerDocument.documentElement.scrollLeft;h+=(c.frameBorder||1)*2+(parseInt(b.paddingTop)||0)+(parseInt(b.borderTopWidth)||0)-a.ownerDocument.documentElement.scrollTop}var f=d[0];return new Sys.UI.Point(f.left-g,f.top-h)};break;case Sys.Browser.Safari:Sys.UI.DomElement.getLocation=function(c){if(c.window&&c.window===c||c.nodeType===9)return new Sys.UI.Point(0,0);var g=0,h=0,j=null,f=null,b;for(var a=c;a;j=a,(f=b,a=a.offsetParent)){b=Sys.UI.DomElement._getCurrentStyle(a);var e=a.tagName;if((a.offsetLeft||a.offsetTop)&&(e!=="BODY"||(!f||f.position!=="absolute"))){g+=a.offsetLeft;h+=a.offsetTop}}b=Sys.UI.DomElement._getCurrentStyle(c);var d=b?b.position:null,k=d&&d!=="static";if(!d||d!=="absolute")for(var a=c.parentNode;a;a=a.parentNode){e=a.tagName;if(e!=="BODY"&&e!=="HTML"&&(a.scrollLeft||a.scrollTop)){g-=a.scrollLeft||0;h-=a.scrollTop||0}b=Sys.UI.DomElement._getCurrentStyle(a);var i=b?b.position:null;if(i&&i==="absolute")break}return new Sys.UI.Point(g,h)};break;case Sys.Browser.Opera:Sys.UI.DomElement.getLocation=function(b){if(b.window&&b.window===b||b.nodeType===9)return new Sys.UI.Point(0,0);var d=0,e=0,i=null;for(var a=b;a;i=a,a=a.offsetParent){var f=a.tagName;d+=a.offsetLeft||0;e+=a.offsetTop||0}var g=b.style.position,c=g&&g!=="static";for(var a=b.parentNode;a;a=a.parentNode){f=a.tagName;if(f!=="BODY"&&f!=="HTML"&&(a.scrollLeft||a.scrollTop)&&(c&&(a.style.overflow==="scroll"||a.style.overflow==="auto"))){d-=a.scrollLeft||0;e-=a.scrollTop||0}var h=a&&a.style?a.style.position:null;c=c||h&&h!=="static"}return new Sys.UI.Point(d,e)};break;default:Sys.UI.DomElement.getLocation=function(d){if(d.window&&d.window===d||d.nodeType===9)return new Sys.UI.Point(0,0);var e=0,f=0,i=null,h=null,b=null;for(var a=d;a;i=a,(h=b,a=a.offsetParent)){var c=a.tagName;b=Sys.UI.DomElement._getCurrentStyle(a);if((a.offsetLeft||a.offsetTop)&&!(c==="BODY"&&(!h||h.position!=="absolute"))){e+=a.offsetLeft;f+=a.offsetTop}if(i!==null&&b){if(c!=="TABLE"&&c!=="TD"&&c!=="HTML"){e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}if(c==="TABLE"&&(b.position==="relative"||b.position==="absolute")){e+=parseInt(b.marginLeft)||0;f+=parseInt(b.marginTop)||0}}}b=Sys.UI.DomElement._getCurrentStyle(d);var g=b?b.position:null,j=g&&g!=="static";if(!g||g!=="absolute")for(var a=d.parentNode;a;a=a.parentNode){c=a.tagName;if(c!=="BODY"&&c!=="HTML"&&(a.scrollLeft||a.scrollTop)){e-=a.scrollLeft||0;f-=a.scrollTop||0;b=Sys.UI.DomElement._getCurrentStyle(a);e+=parseInt(b.borderLeftWidth)||0;f+=parseInt(b.borderTopWidth)||0}}return new Sys.UI.Point(e,f)};break}Sys.UI.DomElement.removeCssClass=function(d,c){var a=" "+d.className+" ",b=a.indexOf(" "+c+" ");if(b>=0)d.className=(a.substr(0,b)+" "+a.substring(b+c.length+1,a.length)).trim()};Sys.UI.DomElement.setLocation=function(b,c,d){var a=b.style;a.position="absolute";a.left=c+"px";a.top=d+"px"};Sys.UI.DomElement.toggleCssClass=function(b,a){if(Sys.UI.DomElement.containsCssClass(b,a))Sys.UI.DomElement.removeCssClass(b,a);else Sys.UI.DomElement.addCssClass(b,a)};Sys.UI.DomElement._getCurrentStyle=function(a){var b=(a.ownerDocument?a.ownerDocument:a.documentElement).defaultView;return b&&a!==b&&b.getComputedStyle?b.getComputedStyle(a,null):a.style};Sys.UI.Behavior=function(b){Sys.UI.Behavior.initializeBase(this);this._element=b;var a=b._behaviors;if(!a)b._behaviors=[this];else a[a.length]=this};Sys.UI.Behavior.prototype={_name:null,get_element:function(){return this._element},get_id:function(){var a=Sys.UI.Behavior.callBaseMethod(this,"get_id");if(a)return a;if(!this._element||!this._element.id)return "";return this._element.id+"$"+this.get_name()},get_name:function(){if(this._name)return this._name;var a=Object.getTypeName(this),b=a.lastIndexOf(".");if(b!=-1)a=a.substr(b+1);if(!this.get_isInitialized())this._name=a;return a},set_name:function(a){this._name=a},initialize:function(){Sys.UI.Behavior.callBaseMethod(this,"initialize");var a=this.get_name();if(a)this._element[a]=this},dispose:function(){Sys.UI.Behavior.callBaseMethod(this,"dispose");if(this._element){var a=this.get_name();if(a)this._element[a]=null;Array.remove(this._element._behaviors,this);delete this._element}}};Sys.UI.Behavior.registerClass("Sys.UI.Behavior",Sys.Component);Sys.UI.Behavior.getBehaviorByName=function(b,c){var a=b[c];return a&&Sys.UI.Behavior.isInstanceOfType(a)?a:null};Sys.UI.Behavior.getBehaviors=function(a){if(!a._behaviors)return [];return Array.clone(a._behaviors)};Sys.UI.Behavior.getBehaviorsByType=function(d,e){var a=d._behaviors,c=[];if(a)for(var b=0,f=a.length;b<f;b++)if(e.isInstanceOfType(a[b]))c[c.length]=a[b];return c};Sys.UI.VisibilityMode=function(){throw Error.notImplemented()};Sys.UI.VisibilityMode.prototype={hide:0,collapse:1};Sys.UI.VisibilityMode.registerEnum("Sys.UI.VisibilityMode");Sys.UI.Control=function(a){Sys.UI.Control.initializeBase(this);this._element=a;a.control=this;this._oldDisplayMode=this._element.style.display;if(!this._oldDisplayMode||this._oldDisplayMode=="none")this._oldDisplayMode=""};Sys.UI.Control.prototype={_parent:null,_visibilityMode:Sys.UI.VisibilityMode.hide,get_element:function(){return this._element},get_id:function(){if(!this._element)return "";return this._element.id},set_id:function(){throw Error.invalidOperation(Sys.Res.cantSetId)},get_parent:function(){if(this._parent)return this._parent;else{var a=this._element.parentNode;while(a){if(a.control)return a.control;a=a.parentNode}return null}},set_parent:function(a){this._parent=a},get_visibilityMode:function(){return this._visibilityMode},set_visibilityMode:function(a){if(this._visibilityMode!==a){this._visibilityMode=a;if(this.get_visible()===false)if(this._visibilityMode===Sys.UI.VisibilityMode.hide)this._element.style.display=this._oldDisplayMode;else this._element.style.display="none"}this._visibilityMode=a},get_visible:function(){return this._element.style.visibility!="hidden"},set_visible:function(a){if(a!=this.get_visible()){this._element.style.visibility=a?"visible":"hidden";if(a||this._visibilityMode===Sys.UI.VisibilityMode.hide)this._element.style.display=this._oldDisplayMode;else this._element.style.display="none"}},addCssClass:function(a){Sys.UI.DomElement.addCssClass(this._element,a)},dispose:function(){Sys.UI.Control.callBaseMethod(this,"dispose");if(this._element){this._element.control=undefined;delete this._element}},initialize:function(){Sys.UI.Control.callBaseMethod(this,"initialize");var a=this._element},onBubbleEvent:function(){return false},raiseBubbleEvent:function(b,c){var a=this.get_parent();while(a){if(a.onBubbleEvent(b,c))return;a=a.get_parent()}},removeCssClass:function(a){Sys.UI.DomElement.removeCssClass(this._element,a)},toggleCssClass:function(a){Sys.UI.DomElement.toggleCssClass(this._element,a)}};Sys.UI.Control.registerClass("Sys.UI.Control",Sys.Component)
-Type.registerNamespace('Sys');
-Sys.Res={
-"argumentInteger":"Value must be an integer.",
-"scriptLoadMultipleCallbacks":"The script \u0027{0}\u0027 contains multiple calls to Sys.Application.notifyScriptLoaded(). Only one is allowed.",
-"invokeCalledTwice":"Cannot call invoke more than once.",
-"webServiceFailed":"The server method \u0027{0}\u0027 failed with the following error: {1}",
-"argumentType":"Object cannot be converted to the required type.",
-"argumentNull":"Value cannot be null.",
-"controlCantSetId":"The id property can\u0027t be set on a control.",
-"formatBadFormatSpecifier":"Format specifier was invalid.",
-"webServiceFailedNoMsg":"The server method \u0027{0}\u0027 failed.",
-"argumentDomElement":"Value must be a DOM element.",
-"invalidExecutorType":"Could not create a valid Sys.Net.WebRequestExecutor from: {0}.",
-"cannotCallBeforeResponse":"Cannot call {0} when responseAvailable is false.",
-"actualValue":"Actual value was {0}.",
-"enumInvalidValue":"\u0027{0}\u0027 is not a valid value for enum {1}.",
-"scriptLoadFailed":"The script \u0027{0}\u0027 could not be loaded.",
-"parameterCount":"Parameter count mismatch.",
-"cannotDeserializeEmptyString":"Cannot deserialize empty string.",
-"formatInvalidString":"Input string was not in a correct format.",
-"invalidTimeout":"Value must be greater than or equal to zero.",
-"cannotAbortBeforeStart":"Cannot abort when executor has not started.",
-"argument":"Value does not fall within the expected range.",
-"cannotDeserializeInvalidJson":"Cannot deserialize. The data does not correspond to valid JSON.",
-"invalidHttpVerb":"httpVerb cannot be set to an empty or null string.",
-"nullWebRequest":"Cannot call executeRequest with a null webRequest.",
-"eventHandlerInvalid":"Handler was not added through the Sys.UI.DomEvent.addHandler method.",
-"cannotSerializeNonFiniteNumbers":"Cannot serialize non finite numbers.",
-"argumentUndefined":"Value cannot be undefined.",
-"webServiceInvalidReturnType":"The server method \u0027{0}\u0027 returned an invalid type. Expected type: {1}",
-"servicePathNotSet":"The path to the web service has not been set.",
-"argumentTypeWithTypes":"Object of type \u0027{0}\u0027 cannot be converted to type \u0027{1}\u0027.",
-"cannotCallOnceStarted":"Cannot call {0} once started.",
-"badBaseUrl1":"Base URL does not contain ://.",
-"badBaseUrl2":"Base URL does not contain another /.",
-"badBaseUrl3":"Cannot find last / in base URL.",
-"setExecutorAfterActive":"Cannot set executor after it has become active.",
-"paramName":"Parameter name: {0}",
-"cannotCallOutsideHandler":"Cannot call {0} outside of a completed event handler.",
-"format":"One of the identified items was in an invalid format.",
-"assertFailedCaller":"Assertion Failed: {0}\r\nat {1}",
-"argumentOutOfRange":"Specified argument was out of the range of valid values.",
-"webServiceTimedOut":"The server method \u0027{0}\u0027 timed out.",
-"notImplemented":"The method or operation is not implemented.",
-"assertFailed":"Assertion Failed: {0}",
-"invalidOperation":"Operation is not valid due to the current state of the object.",
-"breakIntoDebugger":"{0}\r\n\r\nBreak into debugger?"
-};
-
-if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded(); \ No newline at end of file
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/WebResource.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/WebResource.js
deleted file mode 100644
index 9aff6c3..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/WebResource.js
+++ /dev/null
@@ -1,536 +0,0 @@
-function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) {
- this.eventTarget = eventTarget;
- this.eventArgument = eventArgument;
- this.validation = validation;
- this.validationGroup = validationGroup;
- this.actionUrl = actionUrl;
- this.trackFocus = trackFocus;
- this.clientSubmit = clientSubmit;
-}
-function WebForm_DoPostBackWithOptions(options) {
- var validationResult = true;
- if (options.validation) {
- if (typeof(Page_ClientValidate) == 'function') {
- validationResult = Page_ClientValidate(options.validationGroup);
- }
- }
- if (validationResult) {
- if ((typeof(options.actionUrl) != "undefined") && (options.actionUrl != null) && (options.actionUrl.length > 0)) {
- theForm.action = options.actionUrl;
- }
- if (options.trackFocus) {
- var lastFocus = theForm.elements["__LASTFOCUS"];
- if ((typeof(lastFocus) != "undefined") && (lastFocus != null)) {
- if (typeof(document.activeElement) == "undefined") {
- lastFocus.value = options.eventTarget;
- }
- else {
- var active = document.activeElement;
- if ((typeof(active) != "undefined") && (active != null)) {
- if ((typeof(active.id) != "undefined") && (active.id != null) && (active.id.length > 0)) {
- lastFocus.value = active.id;
- }
- else if (typeof(active.name) != "undefined") {
- lastFocus.value = active.name;
- }
- }
- }
- }
- }
- }
- if (options.clientSubmit) {
- __doPostBack(options.eventTarget, options.eventArgument);
- }
-}
-var __pendingCallbacks = new Array();
-var __synchronousCallBackIndex = -1;
-function WebForm_DoCallback(eventTarget, eventArgument, eventCallback, context, errorCallback, useAsync) {
- var postData = __theFormPostData +
- "__CALLBACKID=" + WebForm_EncodeCallback(eventTarget) +
- "&__CALLBACKPARAM=" + WebForm_EncodeCallback(eventArgument);
- if (theForm["__EVENTVALIDATION"]) {
- postData += "&__EVENTVALIDATION=" + WebForm_EncodeCallback(theForm["__EVENTVALIDATION"].value);
- }
- var xmlRequest,e;
- try {
- xmlRequest = new XMLHttpRequest();
- }
- catch(e) {
- try {
- xmlRequest = new ActiveXObject("Microsoft.XMLHTTP");
- }
- catch(e) {
- }
- }
- var setRequestHeaderMethodExists = true;
- try {
- setRequestHeaderMethodExists = (xmlRequest && xmlRequest.setRequestHeader);
- }
- catch(e) {}
- var callback = new Object();
- callback.eventCallback = eventCallback;
- callback.context = context;
- callback.errorCallback = errorCallback;
- callback.async = useAsync;
- var callbackIndex = WebForm_FillFirstAvailableSlot(__pendingCallbacks, callback);
- if (!useAsync) {
- if (__synchronousCallBackIndex != -1) {
- __pendingCallbacks[__synchronousCallBackIndex] = null;
- }
- __synchronousCallBackIndex = callbackIndex;
- }
- if (setRequestHeaderMethodExists) {
- xmlRequest.onreadystatechange = WebForm_CallbackComplete;
- callback.xmlRequest = xmlRequest;
- xmlRequest.open("POST", theForm.action, true);
- xmlRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
- xmlRequest.send(postData);
- return;
- }
- callback.xmlRequest = new Object();
- var callbackFrameID = "__CALLBACKFRAME" + callbackIndex;
- var xmlRequestFrame = document.frames[callbackFrameID];
- if (!xmlRequestFrame) {
- xmlRequestFrame = document.createElement("IFRAME");
- xmlRequestFrame.width = "1";
- xmlRequestFrame.height = "1";
- xmlRequestFrame.frameBorder = "0";
- xmlRequestFrame.id = callbackFrameID;
- xmlRequestFrame.name = callbackFrameID;
- xmlRequestFrame.style.position = "absolute";
- xmlRequestFrame.style.top = "-100px"
- xmlRequestFrame.style.left = "-100px";
- try {
- if (callBackFrameUrl) {
- xmlRequestFrame.src = callBackFrameUrl;
- }
- }
- catch(e) {}
- document.body.appendChild(xmlRequestFrame);
- }
- var interval = window.setInterval(function() {
- xmlRequestFrame = document.frames[callbackFrameID];
- if (xmlRequestFrame && xmlRequestFrame.document) {
- window.clearInterval(interval);
- xmlRequestFrame.document.write("");
- xmlRequestFrame.document.close();
- xmlRequestFrame.document.write('<html><body><form method="post"><input type="hidden" name="__CALLBACKLOADSCRIPT" value="t"></form></body></html>');
- xmlRequestFrame.document.close();
- xmlRequestFrame.document.forms[0].action = theForm.action;
- var count = __theFormPostCollection.length;
- var element;
- for (var i = 0; i < count; i++) {
- element = __theFormPostCollection[i];
- if (element) {
- var fieldElement = xmlRequestFrame.document.createElement("INPUT");
- fieldElement.type = "hidden";
- fieldElement.name = element.name;
- fieldElement.value = element.value;
- xmlRequestFrame.document.forms[0].appendChild(fieldElement);
- }
- }
- var callbackIdFieldElement = xmlRequestFrame.document.createElement("INPUT");
- callbackIdFieldElement.type = "hidden";
- callbackIdFieldElement.name = "__CALLBACKID";
- callbackIdFieldElement.value = eventTarget;
- xmlRequestFrame.document.forms[0].appendChild(callbackIdFieldElement);
- var callbackParamFieldElement = xmlRequestFrame.document.createElement("INPUT");
- callbackParamFieldElement.type = "hidden";
- callbackParamFieldElement.name = "__CALLBACKPARAM";
- callbackParamFieldElement.value = eventArgument;
- xmlRequestFrame.document.forms[0].appendChild(callbackParamFieldElement);
- if (theForm["__EVENTVALIDATION"]) {
- var callbackValidationFieldElement = xmlRequestFrame.document.createElement("INPUT");
- callbackValidationFieldElement.type = "hidden";
- callbackValidationFieldElement.name = "__EVENTVALIDATION";
- callbackValidationFieldElement.value = theForm["__EVENTVALIDATION"].value;
- xmlRequestFrame.document.forms[0].appendChild(callbackValidationFieldElement);
- }
- var callbackIndexFieldElement = xmlRequestFrame.document.createElement("INPUT");
- callbackIndexFieldElement.type = "hidden";
- callbackIndexFieldElement.name = "__CALLBACKINDEX";
- callbackIndexFieldElement.value = callbackIndex;
- xmlRequestFrame.document.forms[0].appendChild(callbackIndexFieldElement);
- xmlRequestFrame.document.forms[0].submit();
- }
- }, 10);
-}
-function WebForm_CallbackComplete() {
- for (i = 0; i < __pendingCallbacks.length; i++) {
- callbackObject = __pendingCallbacks[i];
- if (callbackObject && callbackObject.xmlRequest && (callbackObject.xmlRequest.readyState == 4)) {
- WebForm_ExecuteCallback(callbackObject);
- if (!__pendingCallbacks[i].async) {
- __synchronousCallBackIndex = -1;
- }
- __pendingCallbacks[i] = null;
- var callbackFrameID = "__CALLBACKFRAME" + i;
- var xmlRequestFrame = document.getElementById(callbackFrameID);
- if (xmlRequestFrame) {
- xmlRequestFrame.parentNode.removeChild(xmlRequestFrame);
- }
- }
- }
-}
-function WebForm_ExecuteCallback(callbackObject) {
- var response = callbackObject.xmlRequest.responseText;
- if (response.charAt(0) == "s") {
- if ((typeof(callbackObject.eventCallback) != "undefined") && (callbackObject.eventCallback != null)) {
- callbackObject.eventCallback(response.substring(1), callbackObject.context);
- }
- }
- else if (response.charAt(0) == "e") {
- if ((typeof(callbackObject.errorCallback) != "undefined") && (callbackObject.errorCallback != null)) {
- callbackObject.errorCallback(response.substring(1), callbackObject.context);
- }
- }
- else {
- var separatorIndex = response.indexOf("|");
- if (separatorIndex != -1) {
- var validationFieldLength = parseInt(response.substring(0, separatorIndex));
- if (!isNaN(validationFieldLength)) {
- var validationField = response.substring(separatorIndex + 1, separatorIndex + validationFieldLength + 1);
- if (validationField != "") {
- var validationFieldElement = theForm["__EVENTVALIDATION"];
- if (!validationFieldElement) {
- validationFieldElement = document.createElement("INPUT");
- validationFieldElement.type = "hidden";
- validationFieldElement.name = "__EVENTVALIDATION";
- theForm.appendChild(validationFieldElement);
- }
- validationFieldElement.value = validationField;
- }
- if ((typeof(callbackObject.eventCallback) != "undefined") && (callbackObject.eventCallback != null)) {
- callbackObject.eventCallback(response.substring(separatorIndex + validationFieldLength + 1), callbackObject.context);
- }
- }
- }
- }
-}
-function WebForm_FillFirstAvailableSlot(array, element) {
- var i;
- for (i = 0; i < array.length; i++) {
- if (!array[i]) break;
- }
- array[i] = element;
- return i;
-}
-var __nonMSDOMBrowser = (window.navigator.appName.toLowerCase().indexOf('explorer') == -1);
-var __theFormPostData = "";
-var __theFormPostCollection = new Array();
-function WebForm_InitCallback() {
- var count = theForm.elements.length;
- var element;
- for (var i = 0; i < count; i++) {
- element = theForm.elements[i];
- var tagName = element.tagName.toLowerCase();
- if (tagName == "input") {
- var type = element.type;
- if ((type == "text" || type == "hidden" || type == "password" ||
- ((type == "checkbox" || type == "radio") && element.checked)) &&
- (element.id != "__EVENTVALIDATION")) {
- WebForm_InitCallbackAddField(element.name, element.value);
- }
- }
- else if (tagName == "select") {
- var selectCount = element.options.length;
- for (var j = 0; j < selectCount; j++) {
- var selectChild = element.options[j];
- if (selectChild.selected == true) {
- WebForm_InitCallbackAddField(element.name, element.value);
- }
- }
- }
- else if (tagName == "textarea") {
- WebForm_InitCallbackAddField(element.name, element.value);
- }
- }
-}
-function WebForm_InitCallbackAddField(name, value) {
- var nameValue = new Object();
- nameValue.name = name;
- nameValue.value = value;
- __theFormPostCollection[__theFormPostCollection.length] = nameValue;
- __theFormPostData += name + "=" + WebForm_EncodeCallback(value) + "&";
-}
-function WebForm_EncodeCallback(parameter) {
- if (encodeURIComponent) {
- return encodeURIComponent(parameter);
- }
- else {
- return escape(parameter);
- }
-}
-var __disabledControlArray = new Array();
-function WebForm_ReEnableControls() {
- if (typeof(__enabledControlArray) == 'undefined') {
- return false;
- }
- var disabledIndex = 0;
- for (var i = 0; i < __enabledControlArray.length; i++) {
- var c;
- if (__nonMSDOMBrowser) {
- c = document.getElementById(__enabledControlArray[i]);
- }
- else {
- c = document.all[__enabledControlArray[i]];
- }
- if ((typeof(c) != "undefined") && (c != null) && (c.disabled == true)) {
- c.disabled = false;
- __disabledControlArray[disabledIndex++] = c;
- }
- }
- setTimeout("WebForm_ReDisableControls()", 0);
- return true;
-}
-function WebForm_ReDisableControls() {
- for (var i = 0; i < __disabledControlArray.length; i++) {
- __disabledControlArray[i].disabled = true;
- }
-}
-function WebForm_FireDefaultButton(event, target) {
- if (event.keyCode == 13 && !(event.srcElement && (event.srcElement.tagName.toLowerCase() == "textarea"))) {
- var defaultButton;
- if (__nonMSDOMBrowser) {
- defaultButton = document.getElementById(target);
- }
- else {
- defaultButton = document.all[target];
- }
- if (defaultButton && typeof(defaultButton.click) != "undefined") {
- defaultButton.click();
- event.cancelBubble = true;
- if (event.stopPropagation) event.stopPropagation();
- return false;
- }
- }
- return true;
-}
-function WebForm_GetScrollX() {
- if (__nonMSDOMBrowser) {
- return window.pageXOffset;
- }
- else {
- if (document.documentElement && document.documentElement.scrollLeft) {
- return document.documentElement.scrollLeft;
- }
- else if (document.body) {
- return document.body.scrollLeft;
- }
- }
- return 0;
-}
-function WebForm_GetScrollY() {
- if (__nonMSDOMBrowser) {
- return window.pageYOffset;
- }
- else {
- if (document.documentElement && document.documentElement.scrollTop) {
- return document.documentElement.scrollTop;
- }
- else if (document.body) {
- return document.body.scrollTop;
- }
- }
- return 0;
-}
-function WebForm_SaveScrollPositionSubmit() {
- if (__nonMSDOMBrowser) {
- theForm.elements['__SCROLLPOSITIONY'].value = window.pageYOffset;
- theForm.elements['__SCROLLPOSITIONX'].value = window.pageXOffset;
- }
- else {
- theForm.__SCROLLPOSITIONX.value = WebForm_GetScrollX();
- theForm.__SCROLLPOSITIONY.value = WebForm_GetScrollY();
- }
- if ((typeof(this.oldSubmit) != "undefined") && (this.oldSubmit != null)) {
- return this.oldSubmit();
- }
- return true;
-}
-function WebForm_SaveScrollPositionOnSubmit() {
- theForm.__SCROLLPOSITIONX.value = WebForm_GetScrollX();
- theForm.__SCROLLPOSITIONY.value = WebForm_GetScrollY();
- if ((typeof(this.oldOnSubmit) != "undefined") && (this.oldOnSubmit != null)) {
- return this.oldOnSubmit();
- }
- return true;
-}
-function WebForm_RestoreScrollPosition() {
- if (__nonMSDOMBrowser) {
- window.scrollTo(theForm.elements['__SCROLLPOSITIONX'].value, theForm.elements['__SCROLLPOSITIONY'].value);
- }
- else {
- window.scrollTo(theForm.__SCROLLPOSITIONX.value, theForm.__SCROLLPOSITIONY.value);
- }
- if ((typeof(theForm.oldOnLoad) != "undefined") && (theForm.oldOnLoad != null)) {
- return theForm.oldOnLoad();
- }
- return true;
-}
-function WebForm_TextBoxKeyHandler(event) {
- if (event.keyCode == 13) {
- var target;
- if (__nonMSDOMBrowser) {
- target = event.target;
- }
- else {
- target = event.srcElement;
- }
- if ((typeof(target) != "undefined") && (target != null)) {
- if (typeof(target.onchange) != "undefined") {
- target.onchange();
- event.cancelBubble = true;
- if (event.stopPropagation) event.stopPropagation();
- return false;
- }
- }
- }
- return true;
-}
-function WebForm_AppendToClassName(element, className) {
- var current = element.className;
- if (current) {
- if (current.charAt(current.length - 1) != ' ') {
- current += ' ';
- }
- current += className;
- }
- else {
- current = className;
- }
- element.className = current;
-}
-function WebForm_RemoveClassName(element, className) {
- var current = element.className;
- if (current) {
- if (current.substring(current.length - className.length - 1, current.length) == ' ' + className) {
- element.className = current.substring(0, current.length - className.length - 1);
- return;
- }
- if (current == className) {
- element.className = "";
- return;
- }
- var index = current.indexOf(' ' + className + ' ');
- if (index != -1) {
- element.className = current.substring(0, index) + current.substring(index + className.length + 2, current.length);
- return;
- }
- if (current.substring(0, className.length) == className + ' ') {
- element.className = current.substring(className.length + 1, current.length);
- }
- }
-}
-function WebForm_GetElementById(elementId) {
- if (document.getElementById) {
- return document.getElementById(elementId);
- }
- else if (document.all) {
- return document.all[elementId];
- }
- else return null;
-}
-function WebForm_GetElementByTagName(element, tagName) {
- var elements = WebForm_GetElementsByTagName(element, tagName);
- if (elements && elements.length > 0) {
- return elements[0];
- }
- else return null;
-}
-function WebForm_GetElementsByTagName(element, tagName) {
- if (element && tagName) {
- if (element.getElementsByTagName) {
- return element.getElementsByTagName(tagName);
- }
- if (element.all && element.all.tags) {
- return element.all.tags(tagName);
- }
- }
- return null;
-}
-function WebForm_GetElementDir(element) {
- if (element) {
- if (element.dir) {
- return element.dir;
- }
- return WebForm_GetElementDir(element.parentNode);
- }
- return "ltr";
-}
-function WebForm_GetElementPosition(element) {
- var result = new Object();
- result.x = 0;
- result.y = 0;
- result.width = 0;
- result.height = 0;
- if (element.offsetParent) {
- result.x = element.offsetLeft;
- result.y = element.offsetTop;
- var parent = element.offsetParent;
- while (parent) {
- result.x += parent.offsetLeft;
- result.y += parent.offsetTop;
- var parentTagName = parent.tagName.toLowerCase();
- if (parentTagName != "table" &&
- parentTagName != "body" &&
- parentTagName != "html" &&
- parentTagName != "div" &&
- parent.clientTop &&
- parent.clientLeft) {
- result.x += parent.clientLeft;
- result.y += parent.clientTop;
- }
- parent = parent.offsetParent;
- }
- }
- else if (element.left && element.top) {
- result.x = element.left;
- result.y = element.top;
- }
- else {
- if (element.x) {
- result.x = element.x;
- }
- if (element.y) {
- result.y = element.y;
- }
- }
- if (element.offsetWidth && element.offsetHeight) {
- result.width = element.offsetWidth;
- result.height = element.offsetHeight;
- }
- else if (element.style && element.style.pixelWidth && element.style.pixelHeight) {
- result.width = element.style.pixelWidth;
- result.height = element.style.pixelHeight;
- }
- return result;
-}
-function WebForm_GetParentByTagName(element, tagName) {
- var parent = element.parentNode;
- var upperTagName = tagName.toUpperCase();
- while (parent && (parent.tagName.toUpperCase() != upperTagName)) {
- parent = parent.parentNode ? parent.parentNode : parent.parentElement;
- }
- return parent;
-}
-function WebForm_SetElementHeight(element, height) {
- if (element && element.style) {
- element.style.height = height + "px";
- }
-}
-function WebForm_SetElementWidth(element, width) {
- if (element && element.style) {
- element.style.width = width + "px";
- }
-}
-function WebForm_SetElementX(element, x) {
- if (element && element.style) {
- element.style.left = x + "px";
- }
-}
-function WebForm_SetElementY(element, y) {
- if (element && element.style) {
- element.style.top = y + "px";
- }
-}
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/download.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/download.gif
deleted file mode 100644
index 9685721..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/download.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/folder.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/folder.gif
deleted file mode 100644
index 518b477..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/folder.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ga.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ga.js
deleted file mode 100644
index caaf7e8..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/ga.js
+++ /dev/null
@@ -1,41 +0,0 @@
-var _gat=new Object({c:"length",lb:"4.3",m:"cookie",b:undefined,cb:function(d,a){this.zb=d;this.Nb=a},r:"__utma=",W:"__utmb=",ma:"__utmc=",Ta:"__utmk=",na:"__utmv=",oa:"__utmx=",Sa:"GASO=",X:"__utmz=",lc:"http://www.google-analytics.com/__utm.gif",mc:"https://ssl.google-analytics.com/__utm.gif",Wa:"utmcid=",Ya:"utmcsr=",$a:"utmgclid=",Ua:"utmccn=",Xa:"utmcmd=",Za:"utmctr=",Va:"utmcct=",Hb:false,_gasoDomain:undefined,_gasoCPath:undefined,e:window,a:document,k:navigator,t:function(d){var a=1,c=0,h,
-o;if(!_gat.q(d)){a=0;for(h=d[_gat.c]-1;h>=0;h--){o=d.charCodeAt(h);a=(a<<6&268435455)+o+(o<<14);c=a&266338304;a=c!=0?a^c>>21:a}}return a},C:function(d,a,c){var h=_gat,o="-",k,l,s=h.q;if(!s(d)&&!s(a)&&!s(c)){k=h.w(d,a);if(k>-1){l=d.indexOf(c,k);if(l<0)l=d[h.c];o=h.F(d,k+h.w(a,"=")+1,l)}}return o},Ea:function(d){var a=false,c=0,h,o;if(!_gat.q(d)){a=true;for(h=0;h<d[_gat.c];h++){o=d.charAt(h);c+="."==o?1:0;a=a&&c<=1&&(0==h&&"-"==o||_gat.P(".0123456789",o))}}return a},d:function(d,a){var c=encodeURIComponent;
-return c instanceof Function?(a?encodeURI(d):c(d)):escape(d)},J:function(d,a){var c=decodeURIComponent,h;d=d.split("+").join(" ");if(c instanceof Function)try{h=a?decodeURI(d):c(d)}catch(o){h=unescape(d)}else h=unescape(d);return h},Db:function(d){return d&&d.hash?_gat.F(d.href,_gat.w(d.href,"#")):""},q:function(d){return _gat.b==d||"-"==d||""==d},Lb:function(d){return d[_gat.c]>0&&_gat.P(" \n\r\t",d)},P:function(d,a){return _gat.w(d,a)>-1},h:function(d,a){d[d[_gat.c]]=a},T:function(d){return d.toLowerCase()},
-z:function(d,a){return d.split(a)},w:function(d,a){return d.indexOf(a)},F:function(d,a,c){c=_gat.b==c?d[_gat.c]:c;return d.substring(a,c)},uc:function(){var d=_gat.b,a=window;if(a&&a.gaGlobal&&a.gaGlobal.hid)d=a.gaGlobal.hid;else{d=Math.round(Math.random()*2147483647);a.gaGlobal=a.gaGlobal?a.gaGlobal:{};a.gaGlobal.hid=d}return d},wa:function(){return Math.round(Math.random()*2147483647)},Gc:function(){return(_gat.wa()^_gat.vc())*2147483647},vc:function(){var d=_gat.k,a=_gat.a,c=_gat.e,h=a[_gat.m]?
-a[_gat.m]:"",o=c.history[_gat.c],k,l,s=[d.appName,d.version,d.language?d.language:d.browserLanguage,d.platform,d.userAgent,d.javaEnabled()?1:0].join("");if(c.screen)s+=c.screen.width+"x"+c.screen.height+c.screen.colorDepth;else if(c.java){l=java.awt.Toolkit.getDefaultToolkit().getScreenSize();s+=l.screen.width+"x"+l.screen.height}s+=h;s+=a.referrer?a.referrer:"";k=s[_gat.c];while(o>0)s+=o--^k++;return _gat.t(s)}});_gat.hc=function(){var d=this,a=_gat.cb;function c(h,o){return new a(h,o)}d.db="utm_campaign";d.eb="utm_content";d.fb="utm_id";d.gb="utm_medium";d.hb="utm_nooverride";d.ib="utm_source";d.jb="utm_term";d.kb="gclid";d.pa=0;d.I=0;d.wb="15768000";d.Tb="1800";d.ea=[];d.ga=[];d.Ic="cse";d.Gb="q";d.ab="google";d.fa=[c(d.ab,d.Gb),c("yahoo","p"),c("msn","q"),c("aol","query"),c("aol","encquery"),c("lycos","query"),c("ask","q"),c("altavista","q"),c("netscape","query"),c("cnn","query"),c("looksmart","qt"),c("about",
-"terms"),c("mamma","query"),c("alltheweb","q"),c("gigablast","q"),c("voila","rdata"),c("virgilio","qs"),c("live","q"),c("baidu","wd"),c("alice","qs"),c("yandex","text"),c("najdi","q"),c("aol","q"),c("club-internet","query"),c("mama","query"),c("seznam","q"),c("search","q"),c("wp","szukaj"),c("onet","qt"),c("netsprint","q"),c("google.interia","q"),c("szukacz","q"),c("yam","k"),c("pchome","q"),c("kvasir","searchExpr"),c("sesam","q"),c("ozu","q"),c("terra","query"),c("nostrum","query"),c("mynet","q"),
-c("ekolay","q"),c("search.ilse","search_for")];d.B=undefined;d.Kb=false;d.p="/";d.ha=100;d.Da="/__utm.gif";d.ta=1;d.ua=1;d.G="|";d.sa=1;d.qa=1;d.pb=1;d.g="auto";d.D=1;d.Ga=1000;d.Yc=10;d.nc=10;d.Zc=0.2};_gat.Y=function(d,a){var c,h,o,k,l,s,q,f=this,n=_gat,w=n.q,x=n.c,g,z=a;f.a=d;function B(i){var b=i instanceof Array?i.join("."):"";return w(b)?"-":b}function A(i,b){var e=[],j;if(!w(i)){e=n.z(i,".");if(b)for(j=0;j<e[x];j++)if(!n.Ea(e[j]))e[j]="-"}return e}function p(){return u(63072000000)}function u(i){var b=new Date,e=new Date(b.getTime()+i);return"expires="+e.toGMTString()+"; "}function m(i,b){f.a[n.m]=i+"; path="+z.p+"; "+b+f.Cc()}function r(i,b,e){var j=f.V,t,v;for(t=0;t<j[x];t++){v=j[t][0];
-v+=w(b)?b:b+j[t][4];j[t][2](n.C(i,v,e))}}f.Jb=function(){return n.b==g||g==f.t()};f.Ba=function(){return l?l:"-"};f.Wb=function(i){l=i};f.Ma=function(i){g=n.Ea(i)?i*1:"-"};f.Aa=function(){return B(s)};f.Na=function(i){s=A(i)};f.Hc=function(){return g?g:"-"};f.Cc=function(){return w(z.g)?"":"domain="+z.g+";"};f.ya=function(){return B(c)};f.Ub=function(i){c=A(i,1)};f.K=function(){return B(h)};f.La=function(i){h=A(i,1)};f.za=function(){return B(o)};f.Vb=function(i){o=A(i,1)};f.Ca=function(){return B(k)};
-f.Xb=function(i){k=A(i);for(var b=0;b<k[x];b++)if(b<4&&!n.Ea(k[b]))k[b]="-"};f.Dc=function(){return q};f.Uc=function(i){q=i};f.pc=function(){c=[];h=[];o=[];k=[];l=n.b;s=[];g=n.b};f.t=function(){var i="",b;for(b=0;b<f.V[x];b++)i+=f.V[b][1]();return n.t(i)};f.Ha=function(i){var b=f.a[n.m],e=false;if(b){r(b,i,";");f.Ma(f.t());e=true}return e};f.Rc=function(i){r(i,"","&");f.Ma(n.C(i,n.Ta,"&"))};f.Wc=function(){var i=f.V,b=[],e;for(e=0;e<i[x];e++)n.h(b,i[e][0]+i[e][1]());n.h(b,n.Ta+f.t());return b.join("&")};
-f.bd=function(i,b){var e=f.V,j=z.p,t;f.Ha(i);z.p=b;for(t=0;t<e[x];t++)if(!w(e[t][1]()))e[t][3]();z.p=j};f.dc=function(){m(n.r+f.ya(),p())};f.Pa=function(){m(n.W+f.K(),u(z.Tb*1000))};f.ec=function(){m(n.ma+f.za(),"")};f.Ra=function(){m(n.X+f.Ca(),u(z.wb*1000))};f.fc=function(){m(n.oa+f.Ba(),p())};f.Qa=function(){m(n.na+f.Aa(),p())};f.cd=function(){m(n.Sa+f.Dc(),"")};f.V=[[n.r,f.ya,f.Ub,f.dc,"."],[n.W,f.K,f.La,f.Pa,""],[n.ma,f.za,f.Vb,f.ec,""],[n.oa,f.Ba,f.Wb,f.fc,""],[n.X,f.Ca,f.Xb,f.Ra,"."],[n.na,
-f.Aa,f.Na,f.Qa,"."]]};_gat.jc=function(d){var a=this,c=_gat,h=d,o,k=function(l){var s=(new Date).getTime(),q;q=(s-l[3])*(h.Zc/1000);if(q>=1){l[2]=Math.min(Math.floor(l[2]*1+q),h.nc);l[3]=s}return l};a.O=function(l,s,q,f,n,w,x){var g,z=h.D,B=q.location;if(!o)o=new c.Y(q,h);o.Ha(f);g=c.z(o.K(),".");if(g[1]<500||n){if(w)g=k(g);if(n||!w||g[2]>=1){if(!n&&w)g[2]=g[2]*1-1;g[1]=g[1]*1+1;l="?utmwv="+_gat.lb+"&utmn="+c.wa()+(c.q(B.hostname)?"":"&utmhn="+c.d(B.hostname))+(h.ha==100?"":"&utmsp="+c.d(h.ha))+l;if(0==z||2==z){var A=
-new Image(1,1);A.src=h.Da+l;var p=2==z?function(){}:x||function(){};A.onload=p}if(1==z||2==z){var u=new Image(1,1);u.src=("https:"==B.protocol?c.mc:c.lc)+l+"&utmac="+s+"&utmcc="+a.wc(q,f);u.onload=x||function(){}}}}o.La(g.join("."));o.Pa()};a.wc=function(l,s){var q=[],f=[c.r,c.X,c.na,c.oa],n,w=l[c.m],x;for(n=0;n<f[c.c];n++){x=c.C(w,f[n]+s,";");if(!c.q(x))c.h(q,f[n]+x+";")}return c.d(q.join("+"))}};_gat.i=function(){this.la=[]};_gat.i.bb=function(d,a,c,h,o,k){var l=this;l.cc=d;l.Oa=a;l.L=c;l.sb=h;l.Pb=o;l.Qb=k};_gat.i.bb.prototype.S=function(){var d=this,a=_gat.d;return"&"+["utmt=item","utmtid="+a(d.cc),"utmipc="+a(d.Oa),"utmipn="+a(d.L),"utmiva="+a(d.sb),"utmipr="+a(d.Pb),"utmiqt="+a(d.Qb)].join("&")};_gat.i.$=function(d,a,c,h,o,k,l,s){var q=this;q.v=d;q.ob=a;q.bc=c;q.ac=h;q.Yb=o;q.ub=k;q.$b=l;q.xb=s;q.ca=[]};_gat.i.$.prototype.mb=function(d,a,c,h,o){var k=this,l=k.Eb(d),s=k.v,q=_gat;if(q.b==
-l)q.h(k.ca,new q.i.bb(s,d,a,c,h,o));else{l.cc=s;l.Oa=d;l.L=a;l.sb=c;l.Pb=h;l.Qb=o}};_gat.i.$.prototype.Eb=function(d){var a,c=this.ca,h;for(h=0;h<c[_gat.c];h++)a=d==c[h].Oa?c[h]:a;return a};_gat.i.$.prototype.S=function(){var d=this,a=_gat.d;return"&"+["utmt=tran","utmtid="+a(d.v),"utmtst="+a(d.ob),"utmtto="+a(d.bc),"utmttx="+a(d.ac),"utmtsp="+a(d.Yb),"utmtci="+a(d.ub),"utmtrg="+a(d.$b),"utmtco="+a(d.xb)].join("&")};_gat.i.prototype.nb=function(d,a,c,h,o,k,l,s){var q=this,f=_gat,n=q.xa(d);if(f.b==
-n){n=new f.i.$(d,a,c,h,o,k,l,s);f.h(q.la,n)}else{n.ob=a;n.bc=c;n.ac=h;n.Yb=o;n.ub=k;n.$b=l;n.xb=s}return n};_gat.i.prototype.xa=function(d){var a,c=this.la,h;for(h=0;h<c[_gat.c];h++)a=d==c[h].v?c[h]:a;return a};_gat.gc=function(d){var a=this,c="-",h=_gat,o=d;a.Ja=screen;a.qb=!self.screen&&self.java?java.awt.Toolkit.getDefaultToolkit():h.b;a.a=document;a.e=window;a.k=navigator;a.Ka=c;a.Sb=c;a.tb=c;a.Ob=c;a.Mb=1;a.Bb=c;function k(){var l,s,q,f,n="ShockwaveFlash",w="$version",x=a.k?a.k.plugins:h.b;if(x&&x[h.c]>0)for(l=0;l<x[h.c]&&!q;l++){s=x[l];if(h.P(s.name,"Shockwave Flash"))q=h.z(s.description,"Shockwave Flash ")[1]}else{n=n+"."+n;try{f=new ActiveXObject(n+".7");q=f.GetVariable(w)}catch(g){}if(!q)try{f=
-new ActiveXObject(n+".6");q="WIN 6,0,21,0";f.AllowScriptAccess="always";q=f.GetVariable(w)}catch(z){}if(!q)try{f=new ActiveXObject(n);q=f.GetVariable(w)}catch(z){}if(q){q=h.z(h.z(q," ")[1],",");q=q[0]+"."+q[1]+" r"+q[2]}}return q?q:c}a.xc=function(){var l;if(self.screen){a.Ka=a.Ja.width+"x"+a.Ja.height;a.Sb=a.Ja.colorDepth+"-bit"}else if(a.qb)try{l=a.qb.getScreenSize();a.Ka=l.width+"x"+l.height}catch(s){}a.Ob=h.T(a.k&&a.k.language?a.k.language:(a.k&&a.k.browserLanguage?a.k.browserLanguage:c));a.Mb=
-a.k&&a.k.javaEnabled()?1:0;a.Bb=o?k():c;a.tb=h.d(a.a.characterSet?a.a.characterSet:(a.a.charset?a.a.charset:c))};a.Xc=function(){return"&"+["utmcs="+h.d(a.tb),"utmsr="+a.Ka,"utmsc="+a.Sb,"utmul="+a.Ob,"utmje="+a.Mb,"utmfl="+h.d(a.Bb)].join("&")}};_gat.n=function(d,a,c,h,o){var k=this,l=_gat,s=l.q,q=l.b,f=l.P,n=l.C,w=l.T,x=l.z,g=l.c;k.a=a;k.f=d;k.Rb=c;k.ja=h;k.o=o;function z(p){return s(p)||"0"==p||!f(p,"://")}function B(p){var u="";p=w(x(p,"://")[1]);if(f(p,"/")){p=x(p,"/")[1];if(f(p,"?"))u=x(p,"?")[0]}return u}function A(p){var u="";u=w(x(p,"://")[1]);if(f(u,"/"))u=x(u,"/")[0];return u}k.Fc=function(p){var u=k.Fb(),m=k.o;return new l.n.s(n(p,m.fb+"=","&"),n(p,m.ib+"=","&"),n(p,m.kb+"=","&"),k.ba(p,m.db,"(not set)"),k.ba(p,m.gb,"(not set)"),
-k.ba(p,m.jb,u&&!s(u.R)?l.J(u.R):q),k.ba(p,m.eb,q))};k.Ib=function(p){var u=A(p),m=B(p);if(f(u,k.o.ab)){p=x(p,"?").join("&");if(f(p,"&"+k.o.Gb+"="))if(m==k.o.Ic)return true}return false};k.Fb=function(){var p,u,m=k.Rb,r,i,b=k.o.fa;if(z(m)||k.Ib(m))return;p=A(m);for(r=0;r<b[g];r++){i=b[r];if(f(p,w(i.zb))){m=x(m,"?").join("&");if(f(m,"&"+i.Nb+"=")){u=x(m,"&"+i.Nb+"=")[1];if(f(u,"&"))u=x(u,"&")[0];return new l.n.s(q,i.zb,q,"(organic)","organic",u,q)}}}};k.ba=function(p,u,m){var r=n(p,u+"=","&"),i=!s(r)?
-l.J(r):(!s(m)?m:"-");return i};k.Nc=function(p){var u=k.o.ea,m=false,r,i;if(p&&"organic"==p.da){r=w(l.J(p.R));for(i=0;i<u[g];i++)m=m||w(u[i])==r}return m};k.Ec=function(){var p="",u="",m=k.Rb;if(z(m)||k.Ib(m))return;p=w(x(m,"://")[1]);if(f(p,"/")){u=l.F(p,l.w(p,"/"));if(f(u,"?"))u=x(u,"?")[0];p=x(p,"/")[0]}if(0==l.w(p,"www."))p=l.F(p,4);return new l.n.s(q,p,q,"(referral)","referral",q,u)};k.sc=function(p){var u="";if(k.o.pa){u=l.Db(p);u=""!=u?u+"&":u}u+=p.search;return u};k.zc=function(){return new l.n.s(q,
-"(direct)",q,"(direct)","(none)",q,q)};k.Oc=function(p){var u=false,m,r,i=k.o.ga;if(p&&"referral"==p.da){m=w(l.d(p.ia));for(r=0;r<i[g];r++)u=u||f(m,w(i[r]))}return u};k.U=function(p){return q!=p&&p.Fa()};k.yc=function(p,u){var m="",r="-",i,b,e=0,j,t,v=k.f;if(!p)return"";t=k.a[l.m]?k.a[l.m]:"";m=k.sc(k.a.location);if(k.o.I&&p.Jb()){r=p.Ca();if(!s(r)&&!f(r,";")){p.Ra();return""}}r=n(t,l.X+v+".",";");i=k.Fc(m);if(k.U(i)){b=n(m,k.o.hb+"=","&");if("1"==b&&!s(r))return""}if(!k.U(i)){i=k.Fb();if(!s(r)&&
-k.Nc(i))return""}if(!k.U(i)&&u){i=k.Ec();if(!s(r)&&k.Oc(i))return""}if(!k.U(i))if(s(r)&&u)i=k.zc();if(!k.U(i))return"";if(!s(r)){var y=x(r,"."),E=new l.n.s;E.Cb(y.slice(4).join("."));j=w(E.ka())==w(i.ka());e=y[3]*1}if(!j||u){var F=n(t,l.r+v+".",";"),I=F.lastIndexOf("."),G=I>9?l.F(F,I+1)*1:0;e++;G=0==G?1:G;p.Xb([v,k.ja,G,e,i.ka()].join("."));p.Ra();return"&utmcn=1"}else return"&utmcr=1"}};_gat.n.s=function(d,a,c,h,o,k,l){var s=this;s.v=d;s.ia=a;s.ra=c;s.L=h;s.da=o;s.R=k;s.vb=l};_gat.n.s.prototype.ka=
-function(){var d=this,a=_gat,c=[],h=[[a.Wa,d.v],[a.Ya,d.ia],[a.$a,d.ra],[a.Ua,d.L],[a.Xa,d.da],[a.Za,d.R],[a.Va,d.vb]],o,k;if(d.Fa())for(o=0;o<h[a.c];o++)if(!a.q(h[o][1])){k=h[o][1].split("+").join("%20");k=k.split(" ").join("%20");a.h(c,h[o][0]+k)}return c.join("|")};_gat.n.s.prototype.Fa=function(){var d=this,a=_gat.q;return!(a(d.v)&&a(d.ia)&&a(d.ra))};_gat.n.s.prototype.Cb=function(d){var a=this,c=_gat,h=function(o){return c.J(c.C(d,o,"|"))};a.v=h(c.Wa);a.ia=h(c.Ya);a.ra=h(c.$a);a.L=h(c.Ua);a.da=
-h(c.Xa);a.R=h(c.Za);a.vb=h(c.Va)};_gat.Z=function(){var d=this,a=_gat,c={},h="k",o="v",k=[h,o],l="(",s=")",q="*",f="!",n="'",w={};w[n]="'0";w[s]="'1";w[q]="'2";w[f]="'3";var x=1;function g(m,r,i,b){if(a.b==c[m])c[m]={};if(a.b==c[m][r])c[m][r]=[];c[m][r][i]=b}function z(m,r,i){return a.b!=c[m]&&a.b!=c[m][r]?c[m][r][i]:a.b}function B(m,r){if(a.b!=c[m]&&a.b!=c[m][r]){c[m][r]=a.b;var i=true,b;for(b=0;b<k[a.c];b++)if(a.b!=c[m][k[b]]){i=false;break}if(i)c[m]=a.b}}function A(m){var r="",i=false,b,e;for(b=0;b<k[a.c];b++){e=m[k[b]];if(a.b!=
-e){if(i)r+=k[b];r+=p(e);i=false}else i=true}return r}function p(m){var r=[],i,b;for(b=0;b<m[a.c];b++)if(a.b!=m[b]){i="";if(b!=x&&a.b==m[b-1]){i+=b.toString();i+=f}i+=u(m[b]);a.h(r,i)}return l+r.join(q)+s}function u(m){var r="",i,b,e;for(i=0;i<m[a.c];i++){b=m.charAt(i);e=w[b];r+=a.b!=e?e:b}return r}d.Kc=function(m){return a.b!=c[m]};d.N=function(){var m=[],r;for(r in c)if(a.b!=c[r])a.h(m,r.toString()+A(c[r]));return m.join("")};d.Sc=function(m){if(m==a.b)return d.N();var r=[m.N()],i;for(i in c)if(a.b!=
-c[i]&&!m.Kc(i))a.h(r,i.toString()+A(c[i]));return r.join("")};d._setKey=function(m,r,i){if(typeof i!="string")return false;g(m,h,r,i);return true};d._setValue=function(m,r,i){if(typeof i!="number"&&(a.b==Number||!(i instanceof Number)))return false;if(Math.round(i)!=i||i==NaN||i==Infinity)return false;g(m,o,r,i.toString());return true};d._getKey=function(m,r){return z(m,h,r)};d._getValue=function(m,r){return z(m,o,r)};d._clearKey=function(m){B(m,h)};d._clearValue=function(m){B(m,o)}};_gat.ic=function(d,a){var c=this;c.jd=a;c.Pc=d;c._trackEvent=function(h,o,k){return a._trackEvent(c.Pc,h,o,k)}};_gat.kc=function(d){var a=this,c=_gat,h=c.b,o=c.q,k=c.w,l=c.F,s=c.C,q=c.P,f=c.z,n="location",w=c.c,x=h,g=new c.hc,z=false;a.a=document;a.e=window;a.ja=Math.round((new Date).getTime()/1000);a.H=d;a.yb=a.a.referrer;a.va=h;a.j=h;a.A=h;a.M=false;a.aa=h;a.rb="";a.l=h;a.Ab=h;a.f=h;a.u=h;function B(){if("auto"==g.g){var b=a.a.domain;if("www."==l(b,0,4))b=l(b,4);g.g=b}g.g=c.T(g.g)}function A(){var b=g.g,e=k(b,"www.google.")*k(b,".google.")*k(b,"google.");return e||"/"!=g.p||k(b,"google.org")>-1}function p(b,
-e,j){if(o(b)||o(e)||o(j))return"-";var t=s(b,c.r+a.f+".",e),v;if(!o(t)){v=f(t,".");v[5]=v[5]?v[5]*1+1:1;v[3]=v[4];v[4]=j;t=v.join(".")}return t}function u(){return"file:"!=a.a[n].protocol&&A()}function m(b){if(!b||""==b)return"";while(c.Lb(b.charAt(0)))b=l(b,1);while(c.Lb(b.charAt(b[w]-1)))b=l(b,0,b[w]-1);return b}function r(b,e,j){if(!o(b())){e(c.J(b()));if(!q(b(),";"))j()}}function i(b){var e,j=""!=b&&a.a[n].host!=b;if(j)for(e=0;e<g.B[w];e++)j=j&&k(c.T(b),c.T(g.B[e]))==-1;return j}a.Bc=function(){if(!g.g||
-""==g.g||"none"==g.g){g.g="";return 1}B();return g.pb?c.t(g.g):1};a.tc=function(b,e){if(o(b))b="-";else{e+=g.p&&"/"!=g.p?g.p:"";var j=k(b,e);b=j>=0&&j<=8?"0":("["==b.charAt(0)&&"]"==b.charAt(b[w]-1)?"-":b)}return b};a.Ia=function(b){var e="",j=a.a;e+=a.aa?a.aa.Xc():"";e+=g.qa?a.rb:"";e+=g.ta&&!o(j.title)?"&utmdt="+c.d(j.title):"";e+="&utmhid="+c.uc()+"&utmr="+a.va+"&utmp="+a.Tc(b);return e};a.Tc=function(b){var e=a.a[n];b=h!=b&&""!=b?c.d(b,true):c.d(e.pathname+unescape(e.search),true);return b};a.$c=
-function(b){if(a.Q()){var e="";if(a.l!=h&&a.l.N().length>0)e+="&utme="+c.d(a.l.N());e+=a.Ia(b);x.O(e,a.H,a.a,a.f)}};a.qc=function(){var b=new c.Y(a.a,g);return b.Ha(a.f)?b.Wc():h};a._getLinkerUrl=function(b,e){var j=f(b,"#"),t=b,v=a.qc();if(v)if(e&&1>=j[w])t+="#"+v;else if(!e||1>=j[w])if(1>=j[w])t+=(q(b,"?")?"&":"?")+v;else t=j[0]+(q(b,"?")?"&":"?")+v+"#"+j[1];return t};a.Zb=function(){var b;if(a.A&&a.A[w]>=10&&!q(a.A,"=")){a.u.Uc(a.A);a.u.cd();c._gasoDomain=g.g;c._gasoCPath=g.p;b=a.a.createElement("script");
-b.type="text/javascript";b.id="_gasojs";b.src="https://www.google.com/analytics/reporting/overlay_js?gaso="+a.A+"&"+c.wa();a.a.getElementsByTagName("head")[0].appendChild(b)}};a.Jc=function(){var b=a.a[c.m],e=a.ja,j=a.u,t=a.f+"",v=a.e,y=v?v.gaGlobal:h,E,F=q(b,c.r+t+"."),I=q(b,c.W+t),G=q(b,c.ma+t),C,D=[],H="",K=false,J;b=o(b)?"":b;if(g.I){E=c.Db(a.a[n]);if(g.pa&&!o(E))H=E+"&";H+=a.a[n].search;if(!o(H)&&q(H,c.r)){j.Rc(H);if(!j.Jb())j.pc();C=j.ya()}r(j.Ba,j.Wb,j.fc);r(j.Aa,j.Na,j.Qa)}if(!o(C))if(o(j.K())||
-o(j.za())){C=p(H,"&",e);a.M=true}else{D=f(j.K(),".");t=D[0]}else if(F)if(!I||!G){C=p(b,";",e);a.M=true}else{C=s(b,c.r+t+".",";");D=f(s(b,c.W+t,";"),".")}else{C=[t,c.Gc(),e,e,e,1].join(".");a.M=true;K=true}C=f(C,".");if(v&&y&&y.dh==t){C[4]=y.sid?y.sid:C[4];if(K){C[3]=y.sid?y.sid:C[4];if(y.vid){J=f(y.vid,".");C[1]=J[0];C[2]=J[1]}}}j.Ub(C.join("."));D[0]=t;D[1]=D[1]?D[1]:0;D[2]=undefined!=D[2]?D[2]:g.Yc;D[3]=D[3]?D[3]:C[4];j.La(D.join("."));j.Vb(t);if(!o(j.Hc()))j.Ma(j.t());j.dc();j.Pa();j.ec()};a.Lc=
-function(){x=new c.jc(g)};a._initData=function(){var b;if(!z){a.Lc();a.f=a.Bc();a.u=new c.Y(a.a,g)}if(u())a.Jc();if(!z){if(u()){a.va=a.tc(a.Ac(),a.a.domain);if(g.sa){a.aa=new c.gc(g.ua);a.aa.xc()}if(g.qa){b=new c.n(a.f,a.a,a.va,a.ja,g);a.rb=b.yc(a.u,a.M)}}a.l=new c.Z;a.Ab=new c.Z;z=true}if(!c.Hb)a.Mc()};a._visitCode=function(){a._initData();var b=s(a.a[c.m],c.r+a.f+".",";"),e=f(b,".");return e[w]<4?"":e[1]};a._cookiePathCopy=function(b){a._initData();if(a.u)a.u.bd(a.f,b)};a.Mc=function(){var b=a.a[n].hash,
-e;e=b&&""!=b&&0==k(b,"#gaso=")?s(b,"gaso=","&"):s(a.a[c.m],c.Sa,";");if(e[w]>=10){a.A=e;if(a.e.addEventListener)a.e.addEventListener("load",a.Zb,false);else a.e.attachEvent("onload",a.Zb)}c.Hb=true};a.Q=function(){return a._visitCode()%10000<g.ha*100};a.Vc=function(){var b,e,j=a.a.links;if(!g.Kb){var t=a.a.domain;if("www."==l(t,0,4))t=l(t,4);g.B.push("."+t)}for(b=0;b<j[w]&&(g.Ga==-1||b<g.Ga);b++){e=j[b];if(i(e.host))if(!e.gatcOnclick){e.gatcOnclick=e.onclick?e.onclick:a.Qc;e.onclick=function(v){var y=
-!this.target||this.target=="_self"||this.target=="_top"||this.target=="_parent";y=y&&!a.oc(v);a.ad(v,this,y);return y?false:(this.gatcOnclick?this.gatcOnclick(v):true)}}}};a.Qc=function(){};a._trackPageview=function(b){if(u()){a._initData();if(g.B)a.Vc();a.$c(b);a.M=false}};a._trackTrans=function(){var b=a.f,e=[],j,t,v,y;a._initData();if(a.j&&a.Q()){for(j=0;j<a.j.la[w];j++){t=a.j.la[j];c.h(e,t.S());for(v=0;v<t.ca[w];v++)c.h(e,t.ca[v].S())}for(y=0;y<e[w];y++)x.O(e[y],a.H,a.a,b,true)}};a._setTrans=
-function(){var b=a.a,e,j,t,v,y=b.getElementById?b.getElementById("utmtrans"):(b.utmform&&b.utmform.utmtrans?b.utmform.utmtrans:h);a._initData();if(y&&y.value){a.j=new c.i;v=f(y.value,"UTM:");g.G=!g.G||""==g.G?"|":g.G;for(e=0;e<v[w];e++){v[e]=m(v[e]);j=f(v[e],g.G);for(t=0;t<j[w];t++)j[t]=m(j[t]);if("T"==j[0])a._addTrans(j[1],j[2],j[3],j[4],j[5],j[6],j[7],j[8]);else if("I"==j[0])a._addItem(j[1],j[2],j[3],j[4],j[5],j[6])}}};a._addTrans=function(b,e,j,t,v,y,E,F){a.j=a.j?a.j:new c.i;return a.j.nb(b,e,
-j,t,v,y,E,F)};a._addItem=function(b,e,j,t,v,y){var E;a.j=a.j?a.j:new c.i;E=a.j.xa(b);if(!E)E=a._addTrans(b,"","","","","","","");E.mb(e,j,t,v,y)};a._setVar=function(b){if(b&&""!=b&&A()){a._initData();var e=new c.Y(a.a,g),j=a.f;e.Na(j+"."+c.d(b));e.Qa();if(a.Q())x.O("&utmt=var",a.H,a.a,a.f)}};a._link=function(b,e){if(g.I&&b){a._initData();a.a[n].href=a._getLinkerUrl(b,e)}};a._linkByPost=function(b,e){if(g.I&&b&&b.action){a._initData();b.action=a._getLinkerUrl(b.action,e)}};a._setXKey=function(b,e,
-j){a.l._setKey(b,e,j)};a._setXValue=function(b,e,j){a.l._setValue(b,e,j)};a._getXKey=function(b,e){return a.l._getKey(b,e)};a._getXValue=function(b,e){return a.l.getValue(b,e)};a._clearXKey=function(b){a.l._clearKey(b)};a._clearXValue=function(b){a.l._clearValue(b)};a._createXObj=function(){a._initData();return new c.Z};a._sendXEvent=function(b){var e="";a._initData();if(a.Q()){e+="&utmt=event&utme="+c.d(a.l.Sc(b))+a.Ia();x.O(e,a.H,a.a,a.f,false,true)}};a._createEventTracker=function(b){a._initData();
-return new c.ic(b,a)};a._trackEvent=function(b,e,j,t){var v=true,y=a.Ab;if(h!=b&&h!=e&&""!=b&&""!=e){y._clearKey(5);y._clearValue(5);v=y._setKey(5,1,b)?v:false;v=y._setKey(5,2,e)?v:false;v=h==j||y._setKey(5,3,j)?v:false;v=h==t||y._setValue(5,1,t)?v:false;if(v)a._sendXEvent(y)}else v=false;return v};a.ad=function(b,e,j){a._initData();if(a.Q()){var t=new c.Z;t._setKey(6,1,e.href);var v=j?function(){a.rc(b,e)}:undefined;x.O("&utmt=event&utme="+c.d(t.N())+a.Ia(),a.H,a.a,a.f,false,true,v)}};a.rc=function(b,
-e){if(!b)b=a.e.event;var j=true;if(e.gatcOnclick)j=e.gatcOnclick(b);if(j||typeof j=="undefined")if(!e.target||e.target=="_self")a.e.location=e.href;else if(e.target=="_top")a.e.top.document.location=e.href;else if(e.target=="_parent")a.e.parent.document.location=e.href};a.oc=function(b){if(!b)b=a.e.event;var e=b.shiftKey||b.ctrlKey||b.altKey;if(!e)if(b.modifiers&&a.e.Event)e=b.modifiers&a.e.Event.CONTROL_MASK||b.modifiers&a.e.Event.SHIFT_MASK||b.modifiers&a.e.Event.ALT_MASK;return e};a._setDomainName=
-function(b){g.g=b};a.dd=function(){return g.g};a._addOrganic=function(b,e){c.h(g.fa,new c.cb(b,e))};a._clearOrganic=function(){g.fa=[]};a.hd=function(){return g.fa};a._addIgnoredOrganic=function(b){c.h(g.ea,b)};a._clearIgnoredOrganic=function(){g.ea=[]};a.ed=function(){return g.ea};a._addIgnoredRef=function(b){c.h(g.ga,b)};a._clearIgnoredRef=function(){g.ga=[]};a.fd=function(){return g.ga};a._setAllowHash=function(b){g.pb=b?1:0};a._setCampaignTrack=function(b){g.qa=b?1:0};a._setClientInfo=function(b){g.sa=
-b?1:0};a._getClientInfo=function(){return g.sa};a._setCookiePath=function(b){g.p=b};a._setTransactionDelim=function(b){g.G=b};a._setCookieTimeout=function(b){g.wb=b};a._setDetectFlash=function(b){g.ua=b?1:0};a._getDetectFlash=function(){return g.ua};a._setDetectTitle=function(b){g.ta=b?1:0};a._getDetectTitle=function(){return g.ta};a._setLocalGifPath=function(b){g.Da=b};a._getLocalGifPath=function(){return g.Da};a._setLocalServerMode=function(){g.D=0};a._setRemoteServerMode=function(){g.D=1};a._setLocalRemoteServerMode=
-function(){g.D=2};a.gd=function(){return g.D};a._getServiceMode=function(){return g.D};a._setSampleRate=function(b){g.ha=b};a._setSessionTimeout=function(b){g.Tb=b};a._setAllowLinker=function(b){g.I=b?1:0};a._setAllowAnchor=function(b){g.pa=b?1:0};a._setCampNameKey=function(b){g.db=b};a._setCampContentKey=function(b){g.eb=b};a._setCampIdKey=function(b){g.fb=b};a._setCampMediumKey=function(b){g.gb=b};a._setCampNOKey=function(b){g.hb=b};a._setCampSourceKey=function(b){g.ib=b};a._setCampTermKey=function(b){g.jb=
-b};a._setCampCIdKey=function(b){g.kb=b};a._getAccount=function(){return a.H};a._getVersion=function(){return _gat.lb};a.kd=function(b){g.B=[];if(b)g.B=b};a.md=function(b){g.Kb=b};a.ld=function(b){g.Ga=b};a._setReferrerOverride=function(b){a.yb=b};a.Ac=function(){return a.yb}};_gat._getTracker=function(d){var a=new _gat.kc(d);return a};
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/home-page.css b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/home-page.css
deleted file mode 100644
index 7f0160c..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/home-page.css
+++ /dev/null
@@ -1,575 +0,0 @@
-body, html {
- font-family: Verdana, Kalimati;
- font-size: 12px;
- margin: 0px;
- height: 100%;
-}
-
-a {
- color: #336699;
-}
-
-.content_wrapper {
- min-height: 80%;
- text-align: center;
-}
-
-.koders_logo {
- margin-top: 1%;
-}
-
-body.results .koders_logo {
- margin-top: 30px;
-}
-
-.searching_loc {
- font-size: 11px;
- font-family: arial;
- font-weight: normal;
- display: block;
- margin-top: 5px;
- margin-bottom: 20px;
- color: #333;
-}
-
-.search_bar {
- height: 90px;
- width: 584px;
- text-align: left;
- background-repeat: no-repeat;
- background-image: url(http://www.koders.com/media/images/homepage/search_panel_background.gif);
- margin: 0 auto 0 auto;
- position: relative;
-}
-
-.search_bar .search_box, .search_bar .searchBG {
- font-family: Verdana, Kalimati;
- font-size: 14px;
- height: 28px;
- width: 452px;
- padding: 4px 0 0 4px;
- position: absolute;
- left: 18px;
- top: 16px;
-}
-
-.search_bar .searchBG {
- font-size: 12px;
- text-align: center;
- background: white url(http://www.koders.com/media/images/homepage/search_input_bg.gif) repeat-x scroll 0 0 ;
- overflow: hidden;
- color: #aaa;
- padding-top: 6px;
-}
-
-div > .searchBG {
- height: 22px !important;
- width: 475px !important;
-}
-
-.search_bar .search_box {
- border: solid 1px #274E74;
- background: transparent;
-}
-
-.search_bar .options {
- position: absolute;
- width: 260px;
- left: 18px;
- top: 56px;
-}
-
-.lanaguage_select_box {
- margin-right: 10px;
-}
-
-.options select {
- vertical-align: top;
- width: 112px;
- font-size: 11px;
-}
-
-.options .info_bubble {
- position: relative;
- top: 1px;
- padding: 0;
- left: 3px;
-}
-
-.options .info_bubble img {
- border: 0px;
-}
-
-.search_button_container {
- position: absolute;
- left: 470px;
- top: 16px;
-}
-
-.search_button {
- cursor: pointer;
- width: 85px;
- height: 29px;
- background-image: url(http://www.koders.com/media/images/homepage/search_button.gif);
- background-position:-10px top;
- display: block;
- border: none;
- float: left;
- margin-top: 0px;
-}
-
-.search_button_hover {
- cursor: pointer;
- border: none;
- width: 85px;
- height: 29px;
- background-image: url(http://www.koders.com/media/images/homepage/search_button.gif);
- background-position:-10px -29px;
- display: block;
- float: left;
- margin-top: 0px;
-}
-
-.search_button_downarrow {
- width:23px;
- height:29px;
- background-image: url(http://www.koders.com/media/images/homepage/search_button_extender.gif);
- display:block;
- float:left;
- margin-left:-12px;
-}
-
-.search_button_downarrow:hover {
- background-position:0 -29px;
-}
-
-.search_button:hover {
- background-position:0 -29px;
-}
-
-.search_button_extender {
- width: 23px;
- height: 29px;
- background-image: url(http://www.koders.com/media/images/homepage/search_button_extender.gif);
- display: block;
- cursor: pointer;
- margin-top: 0px;
- float: left;
-}
-
-.search_button_extender span {
- display: none;
-}
-
-.search_button_extender:hover {
- background-image: url(http://www.koders.com/media/images/homepage/search_button_extender_oo.gif);
-}
-
-.search_bar .search_button:hover {
- background-image: url(http://www.koders.com/media/images/homepage/search_button_oo.gif);
-}
-
-
-.search_examples table td {
- padding: 8px;
-}
-
-.clear {
- overflow: hidden;
- width: 100%;
-}
-
-.helper_text {
- color: #585858;
- font-family: Arial, Garuda, Freesans;
- font-size: 12px;
- text-align: center;
- padding-left: 3px;
- padding-right: 3px;
- margin-top: 10px;
- position: relative;
- height: 50px;
- display: block;
-}
-
-.helper_text strong {
- color: #366BA0;
-}
-
-
-#footer_wrapper {
- text-align: center;
- width: 100%;
- height: 80px;
- margin: -80px auto 0;
- /*top: -80px;*/
- position: relative;
-}
-
-body.results .content_wrapper
-{
- height: auto;
-}
-
-body.results #footer_wrapper
-{
- margin-top: 0px;
-}
-
-#ft {
- height:80px;
- font-size:12px;
- font-family: Verdana, Kalimati;
- position:relative;
-}
-
-#footer {
- border-top: solid 1px #DBDBDB;
- width: 615px;
- text-align:center;
- color: #acacac;
- padding-top: 17px;
- margin: 0 auto 0 auto;
- clear:both;
-}
-
-#footer .row_2 {
- font-family: Arial, Garuda, Freesans;
- width: 605px;
- margin: 15px auto 0 auto;
-
-}
-
-
-#footer .copy {
- float: left;
- clear: left;
- display: block;
-}
-
-#footer .feed {
- float: right;
- clear: right;
- display: block;
- vertical-align: middle;
- line-height: 16px;
- margin-top: -1px;
-}
-
-#footer .feed a, #footer .feed a:hover {
- color: #CE4900;
- height: 16px;
- line-height: 16px;
-}
-
-#footer .feed img {
- margin: 0px;
- padding: 0px;
- margin-top: -3px;
- vertical-align: middle;
-}
-
-#footer a {
- color: #4c4c4c;
- text-decoration: none;
-}
-
-#footer a:hover {
- color: #336699;
- text-decoration: underline
-}
-
-
-.more_wrapper {
- text-align: center;
-}
-
-.more {
- margin-left: auto;
- margin-right: auto;
- width: 590px;
- clear: both;
- overflow: hidden;
- text-align: left;
- position:relative;
- margin-top: -10px;
- color: #585858;
-}
-
-.more .top {
- height: 32px;
- background-image: url(http://www.koders.com/media/images/homepage/more_top.gif);
- background-repeat: no-repeat;
- background-position: 0px 24px;
- position: relative;
- overflow: hidden;
- z-index: 7000;
-}
-
-.more .tab_strip {
- position: absolute;
- width:289px;
- right: 9px;
- overflow: hidden;
-}
-
-.more .content {
- width: 100%;
- min-height:270px;
- height: auto;
- background-image: url(http://www.koders.com/media/images/homepage/more_bottom.gif);
- background-position: left bottom;
- overflow: hidden;
-}
-
-
-* html .more .content {
- height:270px;
-}
-
-
-body.no-results .more .content {
- min-height:0px;
-}
-
-* html body.no-results .more .content {
- height:auto;
-}
-
-.welcome_content {
- height:auto;
-}
-
-.welcome_content iframe {
- width:97%;
- border:0;
- height:250px;
- margin-bottom:10px;
- margin-left:10px;
- overflow:hidden;
-}
-
-.search_examples_content {
- display:none;
-}
-
-.search_examples_content table td {
- font-size:11px;
- padding:8px;
-}
-
-.search_examples_content table {
- margin:8px;
- width:100%;
-}
-
-.search_examples_content p {
- margin:0px;
-}
-
-.featured_content {
- height:auto;
-}
-
-.featured_content iframe {
- width:97%;
- border:0;
- height:250px;
- margin-bottom:10px;
- margin-left:10px;
- overflow:hidden;
-}
-
-
-.tab_strip span {
- display: none;
-}
-
-.welcome_tab_off {
- background-image: url(http://www.koders.com/media/images/homepage/welcome_tab_off.gif);
- height: 27px;
- width: 87px;
- display: block;
- float: right;
- cursor: pointer;
-}
-
-.welcome_tab_off_alt {
- background-image: url(http://www.koders.com/media/images/homepage/welcome_tab_off_2.gif);
- height: 27px;
- width: 87px;
- display: block;
- float: right;
- cursor: pointer;
-}
-
-.welcome_tab_on {
- background-image: url(http://www.koders.com/media/images/homepage/welcome_tab.gif);
- height: 27px;
- width: 87px;
- display: block;
- float: right;
- cursor: pointer;
-}
-
-.welcome_tab_on span, .welcome_tab_off span {
- display: none;
-}
-
-.search_examples_tab_on {
- background-image: url(http://www.koders.com/media/images/homepage/search_examples_tab_on.gif);
- height: 27px;
- width: 122px;
- display: block;
- float: right;
- cursor:pointer;
-}
-
-.search_examples_tab_off {
- background-image: url(http://www.koders.com/media/images/homepage/search_examples_tab_off_1.gif);
- height: 27px;
- width: 122px;
- display: block;
- float: right;
- cursor:pointer;
-}
-
-.search_examples_tab_off_alt {
- background-image: url(http://www.koders.com/media/images/homepage/search_examples_tab_off_2.gif);
- height: 27px;
- width: 122px;
- display: block;
- float: right;
- cursor:pointer;
-}
-
-.search_examples_tab_on span, .search_examples_tab_off span {
- display: none;
-}
-
-.featured_tab_on {
- background-image: url(http://media.blackducksoftware.com/koders/bds/featured_tab_on.gif);
- height: 27px;
- width: 80px;
- display: block;
- float: right;
- cursor:pointer;
-}
-
-.featured_tab_off {
- background-image: url(http://media.blackducksoftware.com/koders/bds/featured_tab_off.gif);
- height: 27px;
- width: 80px;
- display: block;
- float: right;
- cursor:pointer;
-}
-
-.featured_tab_on span, .featured_tab_off span {
- display: none;
-}
-
-.results .bottom_spacer{
- display: none;
-}
-
-.bottom_spacer {
- height:100px;
-}
-
-.topToolbarInner a {
- text-decoration:none !important;
-}
-
-
-#search-examples td
-{
- vertical-align:top;
-}
-
-#search-examples label
-{
- font-weight: bold;
- white-space: nowrap;
-}
-
-#teamstatus_wrapper *
-{
- padding:5px;
- padding-left:0px;
-}
-
-
-#search-examples-old td
-{
- padding:5px;
-}
-
-#search-table-old td
-{
- padding:2px;
-}
-
-body.home div.error-pane
-{
- margin: auto;
- width: 390px;
-}
-
-.no-results
-{
- padding-top: 10px;
- text-align: center;
-}
-
-body.no-results {
- padding-top:0;
-}
-
-.no-results span.error_message
-{
- display: block;
- margin-bottom: 15px;
-}
-
-.no-results label
-{
- font-size: .9em;
-}
-
-.no-results ul
-{
- list-style-type: disc;
- padding-left: 20px;
- margin-top: 10px;
-}
-
-.no-results ul li
-{
-}
-
-.no-results .error-pane {
- margin:0;
- padding:0;
- width:auto !important;
-}
-
-.no-results .error-pane .more .content {
- padding:10px;
- padding-left:20px;
-}
-
-.no-results .error-pane label {
- font-size:12px;
- font-weight:bold;
-}
-
-.no-results .error_message {
- margin-bottom:10px;
-}
-
-#search-scope
-{
- margin: 10px auto 0 auto;
- min-height: 50px;
-}
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/info_16.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/info_16.gif
deleted file mode 100644
index 456139e..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/info_16.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/js.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/js.js
deleted file mode 100644
index 4b9a95e..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/js.js
+++ /dev/null
@@ -1,25 +0,0 @@
-Type.registerNamespace('Koders.WebServices');
-Koders.WebServices.MailingListService=function() {
-Koders.WebServices.MailingListService.initializeBase(this);
-this._timeout = 0;
-this._userContext = null;
-this._succeeded = null;
-this._failed = null;
-}
-Koders.WebServices.MailingListService.prototype={
-AddToMailingList:function(email,name,source,succeededCallback, failedCallback, userContext) {
-return this._invoke(Koders.WebServices.MailingListService.get_path(), 'AddToMailingList',false,{email:email,name:name,source:source},succeededCallback,failedCallback,userContext); }}
-Koders.WebServices.MailingListService.registerClass('Koders.WebServices.MailingListService',Sys.Net.WebServiceProxy);
-Koders.WebServices.MailingListService._staticInstance = new Koders.WebServices.MailingListService();
-Koders.WebServices.MailingListService.set_path = function(value) { Koders.WebServices.MailingListService._staticInstance._path = value; }
-Koders.WebServices.MailingListService.get_path = function() { return Koders.WebServices.MailingListService._staticInstance._path; }
-Koders.WebServices.MailingListService.set_timeout = function(value) { Koders.WebServices.MailingListService._staticInstance._timeout = value; }
-Koders.WebServices.MailingListService.get_timeout = function() { return Koders.WebServices.MailingListService._staticInstance._timeout; }
-Koders.WebServices.MailingListService.set_defaultUserContext = function(value) { Koders.WebServices.MailingListService._staticInstance._userContext = value; }
-Koders.WebServices.MailingListService.get_defaultUserContext = function() { return Koders.WebServices.MailingListService._staticInstance._userContext; }
-Koders.WebServices.MailingListService.set_defaultSucceededCallback = function(value) { Koders.WebServices.MailingListService._staticInstance._succeeded = value; }
-Koders.WebServices.MailingListService.get_defaultSucceededCallback = function() { return Koders.WebServices.MailingListService._staticInstance._succeeded; }
-Koders.WebServices.MailingListService.set_defaultFailedCallback = function(value) { Koders.WebServices.MailingListService._staticInstance._failed = value; }
-Koders.WebServices.MailingListService.get_defaultFailedCallback = function() { return Koders.WebServices.MailingListService._staticInstance._failed; }
-Koders.WebServices.MailingListService.set_path("/ws/1.0/account/mailinglist/default.asmx");
-Koders.WebServices.MailingListService.AddToMailingList= function(email,name,source,onSuccess,onFailed,userContext) {Koders.WebServices.MailingListService._staticInstance.AddToMailingList(email,name,source,onSuccess,onFailed,userContext); }
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/koders.css b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/koders.css
deleted file mode 100644
index 8807171..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/koders.css
+++ /dev/null
@@ -1,209 +0,0 @@
-/* plugins page: info.aspx?c=tools */
-#plugin_downloads
-{
- margin-top: 10px;
- width: 400px;
- /*margin-left: 100px;*/
-}
-
-
-#plugin_downloads .header
-{
- background-color: lightsteelblue;
- color: White;
- font-weight: bold;
- /*font-size: 10pt;*/
- border-bottom: 2px solid white;
- border-right: 2px solid white;
-}
-
-
-#plugin_downloads .p_name
-{
- /*color: darkblue;*/
- font-weight: bold;
-}
-
-.languages
-{
- font-size: smaller;
- color: Gray;
-}
-
-#tblDownloads
-{
-
- border: 1px solid steelblue;
- background-color: whitesmoke;
- /*margin-left: 140px;*/
- margin-top: 10px;
- padding: 10px;
- width: 300px;
- margin-left: 20px;
- /*margin-right: 20px;*/
-}
-
-#tblDownloads th
-{
- border-bottom: 1px solid lightsteelblue;
-}
-
-#plugin_downloads td
-{
- vertical-align: top;
- padding: 5px;
-}
-
-
-/* MyAccount::DashBoard */
-#DashBoard
-{
-}
-
-#DashBoard .dbRight
-{
-}
-
-#DashBoard .dbRight P
-{
- /* TODO: needed? */
- MARGIN: 10px;
-}
-
-#DashBoard .dbRight OL
-{
-}
-
-#DashBoard .dbRight div
-{
-
-}
-
-#widgetColumn
-{
- MARGIN-TOP: 10px;
- FLOAT: right;
- /*border: 1px solid black;*/
- width: 400px;
-}
-
-
-/* MyAccount::DashBoard::Widgets */
-.DashboardWidgetContent
-{
- margin-left: 25px;
-}
-
-.widget_spacing
-{
- margin-top: 0px;
- padding: 0px;
-}
-
-/* MyAccount.DashBoard.Widgets.Downloads */
-
-#widget_Downloads
-{
- margin-left: 20px;
-}
-
-#widget_Downloads tr td
-{
- vertical-align: middle;
-}
-
-
-
-
-UL.toolsMenu
-{
- WIDTH: 180px
-}
-
-.toolsSection
-{
- MARGIN-BOTTOM: 30px
-}
-
-.toolsSection DIV
-{
- WIDTH: 600px
-}
-
-.toolsSubSection P A
-{
- MARGIN-LEFT: 15px
-}
-
-.toolsSubSection P IMG
-{
- MARGIN-TOP: 10px;
- MARGIN-LEFT: 15px
-}
-
-#tools_ascx_content fieldset
-{
- margin-bottom: 20px;
- padding: 10px;
- border: 1px solid darkblue;
-}
-
-#tools_ascx_content fieldset legend
-{
- border: #336699 solid 4px;
- padding-left: 8px;
- padding-right: 16px;
- background-color: #336699;
- color: #ffffff;
- text-align: center;
-/* font-weight: bold; */
- font-size: 12px;
- display: inline;
-
- margin-bottom: 10px;
-}
-
-
-ul.tools
-{
- list-style-type: disc;
- margin-left: 50px;
-}
-
-li.tool_li
-{
- font-weight: bold;
-
-}
-
-#plugin_screenshots
-{
- text-align: center;
- margin-left: 50px;
-}
-
-#plugin_screenshots .caption
-{
- color: #777777;
- font-size: 10px;
-}
-
-#plugin_demo_section
-{
- margin-top: 10px;
- margin-bottom: 10px;
-}
-
-#plugin_demo
-{
- float: right;
- margin-right: 50px;
- vertical-align: top;
-}
-
-.section_heading
-{
- font-weight: bold;
- margin-bottom: 10px;
- display: block;
-}
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/logo_med_tag_bd.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/logo_med_tag_bd.gif
deleted file mode 100644
index ec4b3cb..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/logo_med_tag_bd.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/rss_sm.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/rss_sm.gif
deleted file mode 100644
index c6f9b7b..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/rss_sm.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/styles.css b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/styles.css
deleted file mode 100644
index 030bf3f..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/styles.css
+++ /dev/null
@@ -1,1063 +0,0 @@
-body {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- padding: 0px;
- margin: 0px;
- background-color: White;
-}
-
-.license_detail_table {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
-}
-
-.grayborder {
- border: 1px solid gainsboro;
-}
-.blackborder {
- border: 1px solid black;
-}
-.redborder {
- border: 1px solid red;
-}
-
-.licenseWarningMessage {
-}
-
-.licenseErrorMessage {
- color: Red;
-}
-
-.licstyle2 {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bold;
-}
-
-.licstyle3 {
- font-family: Verdana, Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bold;
- color: #FFFFFF;
-}
-
-.licstyle5 {
- font-size: 12px;
- color: #000000;
- font-family: Verdana, Arial, Helvetica, sans-serif;
-}
-
-.licstyle7 {
- color: #FFFFFF;
- font-weight: bold;
-}
-
-.licstyle9 {
- font-size: 14px;
-}
-
-.style7 {
- color: #2966CC;
- font-size: 14px;
- text-align: left;
-}
-
-.examplesBox {
- background-color: #F5F7FA;
- padding-left: 10px;
- padding-top: 10px;
- padding-bottom: 10px;
- line-height: 18px;
-}
-
-img {
- border: 0;
-}
-
-/* This is a workaround for the Mozilla rendering bug. Case #43*/
-table {
- border-color: White;
-}
-
-p, td, textbox, select, input, li {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
-}
-
-td {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- vertical-align: top;
-}
-
-th {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- line-height: 12px;
-}
-
-acronym {
- cursor: help;
- border-bottom: 1px dotted #000;
-}
-
-.textblock {
- width: 500px;
-}
-
-.tbSearch {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- width: 300px;
- vertical-align: middle;
-}
-
-.kvSearchBox{
- width: 176px;
- position: relative;
- top: -1px;
-}
-
-.tbSearchSmall {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- width: 200px;
-}
-
-.normal {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- line-height: 16px;
-}
-
-.heading2 {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 20px;
- font-weight: bold;
- line-height: 30px;
- clear: left;
-}
-
-.heading3 {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 14px;
- font-weight: bold;
- line-height: 22px;
- clear: left;
-}
-
-h3 {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 14px;
- font-weight: bold;
- line-height: 22px;
- clear: left;
-}
-
-legend {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: bold;
- color: #4a6184;
-}
-
-#Homepage_Promo {
- font-size: larger;
- font-weight: bolder;
-}
-
-#Homepage_Promo a {
- color: #333399;
-}
-
-.block_header {
- border-top: solid 2px lightsteelblue;
- padding: 0px 0px 2px 0px;
- background-color: #F5F5F5;
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: normal;
-}
-
-.results_summary {
- text-align: right;
- border-top: solid 2px lightsteelblue;
- padding: 0px 0px 2px 8px;
- background-color: #F5F5F5;
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: normal;
-}
-
-.snippet {
- font-size: 9pt;
- line-height: 10.5pt;
- height: 60pt;
- padding: 2px;
- margin-top: 2px;
- margin-bottom: 2px;
- border: 2px solid lightsteelblue;
- background-color: #eeeeee;
- overflow: auto;
-}
-
-.snippet pre {
- float: left;
- margin: 0;
-}
-
-.error_message {
- color: Red; /*font-weight: bold;*/
-}
-
-.error {
- color: Red;
-}
-
-A.results_header:link, A.results_header:active, A.results_header:hover {
- font-size: 18px;
- font-family: Lucida Sans, Tahoma, Arial, Sans-Serif;
- font-weight: bold;
- line-height: 24px;
- text-decoration: none;
- color: Navy;
-}
-
-A.results_header:visited {
- font-size: 18px;
- font-family: Lucida Sans, Tahoma, Arial, Sans-Serif;
- text-decoration: none;
- font-weight: bold;
- color: Purple;
- line-height: 24px;
-}
-
-.footer {
- font-size: 10px;
- font-family: Tahoma, Arial, Sans-Serif;
- color: #333333;
-}
-
-.code {
- font-family: Courier;
- font-size: 11px;
- font-weight: normal;
- line-height: 12px;
-}
-
-A:link {
- text-decoration: none;
-}
-
-A:visited {
- text-decoration: none;
-}
-
-A:active {
- text-decoration: none;
-}
-
-A:hover {
- text-decoration: underline;
-}
-
-/* these styles are for KodeShare */
-.c {
- color: Green;
-}
-
-.str {
- color: Red;
-}
-
-.k {
- color: Blue;
-}
-
-.r {
- color: Black;
-}
-
-.s0 {
- color: black;
- background-color: yellow;
-}
-
-.s1 {
- color: black;
- background-color: #00FFFF;
-}
-
-.s2 {
- color: black;
- background-color: Lime;
-}
-
-.s3 {
- color: black;
- background-color: purple;
-}
-
-.s4 {
- color: black;
- background-color: teal;
-}
-
-.s5 {
- color: black;
- background-color: yellow;
-}
-
-.s6 {
- color: black;
- background-color: yellow;
-}
-
-.s7 {
- color: black;
- background-color: yellow;
-}
-
-.s8 {
- color: black;
- background-color: yellow;
-}
-
-.s9 {
- color: black;
- background-color: yellow;
-}
-
-.info_panel {
- border-top: solid 4px #336699;
- border-bottom: solid 1px #cccccc;
- background-color: #F5F5F5;
- padding: 0px;
-}
-
-.kodeviewer_info_panel {
- border-top: solid 4px #336699;
- border-bottom: solid 1px #cccccc;
- background-color: #F5F5F5;
- padding: 0px;
- padding-left: 8px;
-}
-
-.PureLanguage {
- font-weight: bold;
- text-align: center;
- margin-bottom: 10px;
-}
-
-#SiteToolbar a {
- color: #333399;
-}
-
-.toolbar_tip {
- position:absolute;
- right:366px;
- font-size:11px;
- height:17px;
- line-height:17px;
- margin-top:1px;
-}
-
-.toolbar_tip img {
- float:left;
- margin-top:1px;
- margin-right:1px;
-}
-
-.toolbar_button {
- border-right: gray thin ridge;
- padding-right: 10px;
- border-top: gray thin ridge;
- padding-left: 10pt;
- padding-bottom: 5px;
- border-left: gray thin ridge;
- width: 48px;
- padding-top: 5px;
- border-bottom: gray thin ridge;
- height: 48px;
- text-align: center;
-}
-
-.toolbar_corner {
- background-position: left bottom;
- background-image: 'url( "../../images/gray-white-vgrad.png" )'; /*url(<asp:Literal id="lHome1" runat="server" />images/gray-white-vgrad.png); */
- background-repeat: repeat-x;
-}
-
-.toolbar2 {
- /*PADDING-RIGHT: 16px; */
- background-position: left bottom; /*PADDING-LEFT: 16px; */
- background-image: 'url( "../../images/gray-white-vgrad.png" )';
- border-bottom: #cccccc 1px solid;
- background-repeat: repeat-x;
-}
-
-.score_panel {
- border-right: gray thin outset;
- padding-right: 10px;
- border-top: gray thin outset;
- padding-left: 10pt;
- padding-bottom: 5px;
- border-left: gray thin outset;
- padding-top: 5px;
- border-bottom: gray thin outset;
- background-color: Yellow;
-}
-
-.quote {
- font-family: Georgia, "Times New Roman" , Times, serif;
- font-style: italic;
- font-weight: normal;
-}
-
-.quote_signature {
- font-family: Georgia, "Times New Roman" , Times, serif;
- font-weight: bold;
- text-align: right;
-}
-
-
-/* Used by the Project Viewer*/
-.pexp_table {
- border-right: gray 1px solid;
- border-top: gray 1px solid;
- border-left: gray 1px solid;
- border-bottom: gray 1px solid;
- font-family: Tahoma, Arial;
- border-collapse: collapse;
-}
-.pexp_header {
- border-right: gray 1px solid;
- border-top: gray 0px solid;
- padding-right: 3px;
- padding-left: 3px;
- font-weight: bold;
- padding-bottom: 1px;
- border-left: gray 0px solid;
- padding-top: 1px;
- border-bottom: gray 1px solid;
- font-family: Tahoma, Arial;
- text-align: center;
- background-color: #F5F5F5;
-}
-
-.pexp_folders {
- border-right: #000000 1px solid;
- padding-top: 4px;
- padding-left: 4px;
- padding-right: 0px;
- padding-bottom: 0px;
- vertical-align: top;
- line-height: 120%;
- background-color: #F5F5F5;
-}
-
-.pexp_files {
- padding-right: 2px;
- padding-left: 2px;
- padding-bottom: 1px;
- padding-top: 1px;
- vertical-align: top;
- line-height: 120%;
- background-color: white;
-}
-
-.paginator {
- padding: 2px 6px;
- font: 11px Arial, Helvetica, sans-serif;
-}
-
-.paginator a, .pageList .this-page {
- padding: 2px 6px;
- border-left: solid 1px #ddd;
- border-right: solid 1px #ddd;
- text-decoration: none;
-}
-
-.paginator span {
- padding: 2px 6px;
-}
-
-.paginator .break {
- padding: 2px 6px;
- border: none;
- text-decoration: none;
-}
-
-.paginator .end {
- padding: 2px 6px;
- border: solid 2px #ddd;
-}
-
-.paginator .this-page {
- padding: 2px 6px;
- border-color: #999;
- font-weight: bold;
-}
-
-.paginator a:hover {
- color: #fff;
- background: #0063DC;
- border-color: #036;
- text-decoration: none;
-}
-
-/* FormField Default Styles */
-.ffLabel {
- width: 100px;
- margin-left: 4px; /*position: static;*/ /*margin-bottom: 4px;*/
- float: left;
- display: block;
-}
-
-.ffLabelLong {
- width: 150px;
- margin-left: 4px; /*position: static;*/ /*margin-bottom: 4px;*/
- float: left;
- display: block;
-}
-
-.ffInput {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- margin-bottom: 2px;
-}
-
-.ffInputShort {
- font-family: Verdana, Helvetica, sans-serif;
- font-size: 11px;
- font-weight: normal;
- width: 48px;
-}
-
-.ffError {
- font-size: 10px;
- color: Red;
-}
-
-.floatLeft {
- position: absolute;
- direction: rtl;
- right: 20px;
-}
-
-/* stuff for the obout tree view */
-.pointerhand {
- cursor: pointer;
-}
-
-.chart_title {
- border: #336699 solid 4px;
- padding-left: 8px;
- padding-right: 16px;
- background-color: #336699;
- color: #ffffff;
- text-align: center;
- font-weight: bold;
- font-size: 13px;
- display: inline;
-}
-
-.results_title {
- padding-bottom: 2px;
- padding-left: 8px;
- padding-right: 12px;
- background-color: #B0C4DE;
- color: #000000;
- text-align: center;
- font-weight: bold;
-}
-
-#ProjectDirectory {
- margin-left: 50px;
-}
-
-#ProjectDirectory h1 {
- margin-bottom: 0px;
- font-size: 14px;
- font-weight: bold;
- margin-top: 20px;
-}
-
-#ProjectDirectory span {
- margin-left: 20px;
-}
-
-.SidePadding {
- padding-left: 20px;
- padding-right: 20px;
-}
-
-.SideMargins {
- margin-left: 20px;
- margin-right: 20px;
-}
-
-.LOCHomePageTag {
- margin-top: 10px;
- font-size: 13px;
- font-weight: bold;
-}
-
-.InfoPage {
- margin-left: 50px;
-}
-
-sup {
- color: red;
-}
-
-
-ul {
- list-style-type: none;
- list-style: none;
- margin: 0;
- padding: 0;
-}
-
-ul.ulist1 {
- list-style-type: disc;
- margin-left: 20px;
-}
-
-ul.NavUL {
- margin-left: 15px;
- width: 175px;
-}
-
-/* second level ul2 */
-ul.ul2 {
- margin-left: 20px;
- margin-top: 5px;
-}
-
-ul.SubscriptionFeatures {
- margin-top: 10px;
- margin-left: 36px;
- list-style-type: disc;
-}
-
-LI {
- padding-bottom: 7px;
-}
-
-.LeftNavBorder {
- border-right: #dddddd 1px solid;
- text-align: left;
- vertical-align: top;
-}
-
-.LabsControl {
- padding-left: 40px;
-}
-
-.MyAccountControl {
- margin-left: 40px;
-}
-
-.MyAccountControl div {
- /* background-color: ; */
-}
-
-.MyAccountControl div div {
- margin-left: 20px; /* background-color: Yellow; */
-}
-
-fieldset {
- margin-bottom: 10px;
-}
-
-.MACInner {
- margin-left: 20px;
-}
-
-#MyAccountLayout {
- /*border: 1px solid black;*/
- width: 100%;
-}
-
-#MyAccountMenuCSS {
- border-right: #dddddd 1px solid;
- text-align: left;
- vertical-align: top;
- width: 150px;
-}
-
-#MADashboard {
- /*border: 1px solid black;*/
-}
-
-#InfoPageContent div div {
- margin-left: 20px;
- width: 500px;
-}
-
-div.notice {
- border: 2px solid lightsteelblue;
- background-color: #F5F5F5;
- padding: 5px;
- width: 500px;
- text-align: left;
-}
-
-#SubscriptionForm, #SubscriptionFeatures {
- width: 500px; /* border: 1px solid black; */
-}
-
-#SubscriptionForm fieldset {
- padding:10px;
-}
-
-.SubscriptionFormButton {
- float: right;
-}
-
-#PaymentReceipt {
- /*MARGIN-LEFT: 50px */
- margin-top: 50px;
- margin-bottom: 50px;
-}
-
-/* order form */
-#OFContent {
- margin-bottom: 100px;
-}
-
-.FilterLevel1 {
- margin-top: 5px;
- background-color: #F5F5F5;
- border: 1px solid #B0C4DE;
- width: 500px;
- padding: 10px;
-}
-
-/* Reports */
-.ReportTable {
- color: #333;
- background-color: white;
- border: solid 1px #ccc;
- border-bottom: solid 1px #bbb;
- border-collapse: collapse;
- margin-top: 5px;
- margin-bottom: 5px;
- width: 98%;
- margin: 5px;
-}
-
-.ReportTable tr td {
- padding: 4px;
- border: solid 1px #ccc;
-}
-
-.ReportContents {
- position: relative;
- padding: 5px !important;
- border: 0px !important;
- clear: both;
- overflow: hidden;
-}
-
-#IEroot .ReportContents {
- margin: 4px !important;
- margin-bottom: 6px;
- width: 100%;
- border: 0px !important;
- padding: 5px;
-}
-
-.DataGridHeader {
-}
-
-.DataGridHeader td {
- background-color: #e6e6e6;
- color: #222;
- font-weight: bold !important;
-}
-
-.DataGridHeader {
- color: #333;
- background-color: white;
- border: solid 1px #ccc;
- border-bottom: solid 1px #bbb;
- border-collapse: collapse;
- margin: 5px;
-}
-
-.DataGridItem td {
- padding: 5px;
- border-top: solid 1px #ccc;
- color: #333;
- background-color: #fdfdfd;
-}
-
-.DataGridAlternateItem td {
- padding: 5px;
- border-top: solid 1px #ccc;
- background-color: #fafafa;
- color: #333;
-}
-
-.DataGridHighlight td {
- background-color: #DEEFFF;
- color: #336699;
- background-position: 0px -20px;
- background-repeat: repeat-x;
- color: black;
-}
-
-.report_nav {
- border-top: solid 4px #336699;
- border-bottom: solid 1px #cccccc;
- background-color: #F5F5F5;
- padding: 0px;
- position: relative;
-}
-
-.report_nav a {
- color: #222;
- padding-top: 5px;
- padding-bottom: 5px;
- display: block;
- border-bottom: solid 1px #eee;
-}
-
-.report_nav br {
- height: 1px;
- overflow: hidden;
- display: none;
-}
-
-a.toolbarLink, .toolbar2 a {
- text-decoration: none;
- color: black;
- font-weight: bold;
- padding: 0 2px 0 2px;
-}
-
-a.toolbarLink:hover, .toolbar2 a:hover {
- text-decoration: none;
- background: #ddd;
- color: #114477;
-}
-
-.loggedEmailDiv {
- position: absolute;
- right: 2px;
- width: 300px;
- text-align: right;
- top: 38px;
- font-size: 10px;
- background: white;
-}
-
-.trialUpgradeA {
- color: Red;
- font-weight: bold;
-}
-
-img.dojoComboBox {
- display: none !important;
-}
-
-input.dojoComboBox {
- border: 1px inset #afafaf !important;
-}
-
-.warningDiv {
- background-color: #FFFFCC;
- border: 1px dotted #CCCCCC;
- padding: 9px;
-}
-
-/* Promo */
-#promoStatus {
- display:block;
- height:20px;
- margin-top:5px;
-}
-
-.upgrade-promotion .success {
- color: #060;
-}
-
-.promoLabelSpan {
- float:left;
- height:40px;
- display:block;
- padding-right:5px;
-}
-
-.promoCodeTextBox {
- border:solid 1px #336699;
- padding:1px;
-}
-
-/* Feedback Page */
-blockquote#feedback {
- width:871px;
-}
-
-#feedback #feeds_pane {
- width:400px;
- padding-left:20px;
- border-left:solid 1px #ccc;
- float:left;
-}
-
-#feedback #feedback_pane {
- width:430px;
- padding-right:20px;
- float:left;
-}
-
-#feedback .recent_posts {
- color:#000;
- font-size:12px;
- font-family:arial;
- margin-bottom:40px;
-}
-
-#feedback .recent_posts a {
- color: #225588;
- text-decoration:none;
-}
-
-#feedback .recent_posts div {
- margin-bottom:3px;
-}
-
-#feedback .recent_posts a:hover {
- color: #4477aa;
- text-decoration:underline;
-}
-
-#feedback .recent_posts h3 {
- font-size:15px;
- font-weight:bold;
- padding:10px 0 0 0;
- margin:0 0 0 0;
-}
-
-.nm_type {
- font-size: 10pt;
- font-family: Tahoma, Arial;
-}
-
-.namesp {
- font-weight: bold;
- font-size: 12pt;
- font-family: Tahoma, Arial;
-}
-
-.uml_type {
- font-size: 8pt;
- font-family: Tahoma, Arial;
- padding: 3px;
-}
-
-.uml_section {
- border-top: gray 1px solid;
- font-size: 8pt;
- font-family: Tahoma, Arial;
- background-color: #6495ED;
- padding: 3px;
-}
-
-.uml_item {
- font-size: 8pt;
- font-family: Tahoma, Arial;
- padding: 3px;
-}
-
-.entity {
- font-weight: bold;
- font-size: 10pt;
- line-height: 12pt;
- font-family: Tahoma, Arial;
-}
-
-TH.entity {
- font-weight: normal;
- background-image: 'url( "../../images/blue-white-grad.PNG" )'; /*url(<asp:Literal id="lHome1" runat="server" />images/blue-white-grad.PNG); */
- background-repeat: repeat-y;
-}
-
-.exp_header {
- border-right: gray 1px solid;
- border-top: gray 1px solid;
- border-left: gray 1px solid;
- border-bottom: gray 1px solid;
- font-family: Tahoma, Arial;
- background-color: #F5F5F5;
- padding: 3px;
-}
-
-.exp_items {
- line-height: 110%;
- padding: 3px;
-}
-
-.kvHeaderLimiter{
- position: relative; width: 510px;
-}
-
-.detailsTable td{
- padding: 5px;
- padding-left: 10px;
-}
-
-/* Tools/Plugins */
-#plugin_screenshots {
- margin-left:0;
- padding-left:0;
- margin-top:15px;
- margin-bottom:50px;
- margin-left:30px !important;
-}
-
-#plugin_screenshots td {
- text-align:center;
- vertical-align:middle;
- margin-left:0;
-}
-
-#plugin_screenshots td.c2 {
- padding-left:30px;
-}
-
-#plugin_demo {
- background-image: url(http://koders.com/media/images/koders/smartsearch_bg.gif);
- background-repeat: no-repeat;
- padding:5px 6px 6px 6px;
- width:320px;
- float:none;
-}
-
-#smartsearch_info {
- margin-left:30px;
-}
-
-#smartsearch_info td {
- vertical-align:middle;
-}
-
-#smartsearch_info td.c1 {
- padding-right:20px;
- text-align:center;
-}
-
-.kodeViewerContDiv{
- padding: 0px 10px 0px 10px;
-}
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-eclipse_icon.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-eclipse_icon.gif
deleted file mode 100644
index 238ca2e..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-eclipse_icon.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-visual_icon.gif b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-visual_icon.gif
deleted file mode 100644
index 4803629..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar-visual_icon.gif
+++ /dev/null
Binary files differ
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar.js b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar.js
deleted file mode 100644
index b3fc224..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toolbar.js
+++ /dev/null
@@ -1,11 +0,0 @@
-var Toolbar = {}
-Toolbar._onmouseover = function(ev){
- var l = ev.target || ev.srcElement;
- if(l.className == "topToolbarButton") l.className = "topToolbarButtonHover";
-}
-Toolbar._onmouseout = function(ev){
- var l = ev.target || ev.srcElement, to = ev.relatedTarget || ev.toElement;
- while(l && l.className != "topToolbarButtonHover") l = l.parentNode;
- while(to && to != l) to = to.parentNode;
- if(l && l != to) l.className = "topToolbarButton";
-} \ No newline at end of file
diff --git a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toptoolbar.css b/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toptoolbar.css
deleted file mode 100644
index b6838c3..0000000
--- a/docs/log/fid355D8E1583AB011A40E6DD0B35D84F827A3BBEB9.aspx_files/toptoolbar.css
+++ /dev/null
@@ -1,139 +0,0 @@
-#topToolbars {
- height: 34px;
-}
-
-.topToolbar{
- float: right;
- clear: both;
- position: absolute;
- background: url(http://media.blackducksoftware.com/koders/bds/blue_nav_bkgnd_bd.gif) left bottom repeat-x;
- height: 17px;
- font-size: 11px;
- line-height: 17px;
- font-family: verdana, tahoma, helvecia, arial;
- vertical-align:middle;
- font-weight: bold;
- z-index:9999;
-}
-
-.topToolbar font {
- display:inline-block;
- _cursor:hand;
-}
-
-.topToolbarInner{
- height: 17px;
- border-bottom: 1px solid #ccc;
- float: left;
-}
-
-div > .topToolbarInner{
- height: 17px;
-}
-
-.topToolbarCorner{
- float: left;
- width: 31px;
- height: 17px;
- background: url(http://media.blackducksoftware.com/koders/bds/blue-hex.gif);
-}
-
-.topToolbar img, .topToolbar span{
- vertical-align: bottom;
- border: 0;
-}
-
-.topToolbar .topToolbarDownArrow {
- font-size: 9px;
- font-family: arial, helvecia, tahoma, verdana
-}
-
-.topToolbarButtonHover, .topToolbarButton{
- display: block;
- float: left;
- color: White;
- vertical-align: bottom;
- padding: 2px 0px 2px 0px;
- outline: none;
- position: relative;
- z-index: 1000;
- line-height: 13px;
- text-align: center;
- cursor: pointer;
-}
-
-.topToolbarButtonHover{
- text-decoration: none;
- color: #114477;
- background: #ddd;
- cursor: default;
-}
-
-.topToolbarPopup{
- position: absolute;
- width:auto;
- top: 17px;
- left: 0px;
- background: #FCFCFC;
- border: 1px solid #ccc;
- visibility: hidden;
- display: none;
- text-align:left;
- z-index:9999;
-
-}
-
-.topToolbarButtonHover .topToolbarPopup{
- visibility: inherit;
- display: block;
-}
-
-.topToolbarPopup a {
- color: black;
- width:100%;
- display: block;
- height: 22px;
- line-height: 22px;
- font-weight: normal;
- color: black;
- padding-left: 20px;
- padding-right:10px;
- background: none;
- cursor: pointer;
- vertical-align:middle;
- white-space:nowrap;
-}
-.topToolbarPopup a{
- width: auto;
-}
-
-.topToolbarPopup a:hover{ background: #eee; }
-
-.topToolbarPopup a img{
- margin-left: 3px 0 0 -18px;
- vertical-align: middle;
- float:left;
-}
-
-.topToolbar #proDownloadsPopup{
- width: 200px; left: -35px;
-}
-div > #proDownloadsPopup{
- left: -37px !important;
-}
-
-.topToolbar #proHelpPopup{
- width: 170px; left: -105px;
-}
-div > #proHelpPopup{
- left: -107px !important;
-}
-
-.topToolbar #proFeedbackPopup{
- width: 140px;
-}
-
-.topToolbar a:hover {
- text-decoration: none;
- cursor: pointer;
-}