webdav.client 5.21.5856 → 5.21.5862
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Help/ClassReference/ITHit.WebDAV.Client.DocManager.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.File.html +80 -80
- package/Help/ClassReference/ITHit.WebDAV.Client.Folder.html +100 -100
- package/Help/ClassReference/ITHit.WebDAV.Client.HierarchyItem.html +60 -60
- package/Help/ClassReference/ITHit.WebDAV.Client.MsOfficeEditExtensions.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Request.html +4 -4
- package/Help/ClassReference/ITHit.WebDAV.Client.Upload.UploaderSession.html +12 -12
- package/Help/ClassReference/ITHit.WebDAV.Client.Version.html +8 -8
- package/Help/ClassReference/ITHit.WebDAV.Client.WebDavSession.html +12 -12
- package/ITHitWebDAVClient.js +2 -2
- package/Plugins/ITHitEditDocumentOpener.deb +0 -0
- package/Plugins/ITHitEditDocumentOpener.msi +0 -0
- package/Plugins/ITHitEditDocumentOpener.pkg +0 -0
- package/Plugins/ITHitEditDocumentOpener.rpm +0 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/ITHitWebDAVClient.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// -----------------------------------------------------------------------
|
|
2
|
-
// IT Hit WebDAV Ajax Library v5.21.
|
|
2
|
+
// IT Hit WebDAV Ajax Library v5.21.5862.0
|
|
3
3
|
// Copyright © 2020 IT Hit LTD. All rights reserved.
|
|
4
4
|
// License: https://www.webdavsystem.com/ajax/
|
|
5
5
|
// -----------------------------------------------------------------------
|
|
@@ -84,4 +84,4 @@ ITHit.Temp.WebDAV_Phrases={
|
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
86
|
|
|
87
|
-
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_100,_101){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_100,_101);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _102={};var _103={};var _104={};for(var _105 in ITHit.LogLevel){_102[ITHit.LogLevel[_105]]=[];_104[ITHit.LogLevel[_105]]=[];}var _106=function(_107,_108,iTo,_10a){for(var _10b in ITHit.LogLevel){if(ITHit.LogLevel[_10b]>iTo){continue;}if(!ITHit.LogLevel[_10b]||(_108>=ITHit.LogLevel[_10b])){continue;}if(_107){_104[ITHit.LogLevel[_10b]].push(_10a);}else{for(var i=0;i<_104[ITHit.LogLevel[_10b]].length;i++){if(_104[ITHit.LogLevel[_10b]][i]==_10a){_104[ITHit.LogLevel[_10b]].splice(i,1);}}}}};_106.add=function(iTo,_10e){_106.increase(ITHit.LogLevel.Off,iTo,_10e);};_106.del=function(iTo,_110){_106.decrease(ITHit.LogLevel.Off,iTo,_110);};_106.increase=function(_111,iTo,_113){_106(true,_111,iTo,_113);};_106.decrease=function(_114,iTo,_116){_106(false,_114,iTo,_116);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_117,_118){if(_118==ITHit.LogLevel.Off){this.RemoveListener();}var _119=0;var _11a=0;outer:for(var _11b in _102){for(var i=0;i<_102[_11b].length;i++){if(_102[_11b][i]==_117){_119=_11b;_11a=i;break outer;}}}if(!_119){_102[_118].push(_117);_106.add(_118,_117);}else{if(_118!=_119){_102[_119].splice(_11a,1);_102[_118].push(_117);if(_118>_119){_106.increase(_119,_118,_117);}else{_106.decrease(_118,_119,_117);}}}},RemoveListener:function(_11d){outer:for(var _11e in _102){for(var i=0;i<_102[_11e].length;i++){if(_102[_11e][i]==_11d){_102[_11e].splice(i,1);_106.del(_11e,_11d);break outer;}}}return true;},SetLogLevel:function(_120,_121){return this.AddListener(_120,_121,true);},GetLogLevel:function(_122){for(var _123 in _102){for(var i=0;i<_102[_123].length;i++){if(_102[_123][i]==_122){return _123;}}}return false;},GetListenersForLogLevel:function(_125){return _104[_125];},GetCount:function(_126){return _104[_126].length;},WriteResponse:function(_127){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_127 instanceof HttpWebResponse){sStr+="\n"+_127.StatusCode+" "+_127.StatusDescription+"\n";}sStr+=_127.ResponseUri+"\n";for(var _129 in _127.Headers){sStr+=_129+": "+_127.Headers[_129]+"\n";}sStr+=_127.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12a,_12b){_12b=("undefined"==typeof _12b)?ITHit.LogLevel.Info:parseInt(_12b);if(ITHit.Logger.GetCount(_12b)){var _12c=this.GetListenersForLogLevel(_12b);var _12a=String(_12a).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12c.length;i++){try{_12c[i](_12a,ITHit.LogLevel.Info);}catch(e){if(!_12c[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12c[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12e,_12f){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12e,_12f);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _130={};var _131=function(_132){this._arguments=_132;};_131.prototype.Replace=function(_133){var _134=_133.substr(1,_133.length-2);return ("undefined"!=typeof this._arguments[_134])?this._arguments[_134]:_133;};var _135=function(_136){this._phrase=_136;};_135.prototype.toString=function(){return this._phrase;};_135.prototype.Paste=function(){var _137=this._phrase;if(/\{\d+?\}/.test(_137)){var _138=new _131(arguments);_137=_137.replace(/\{(\d+?)\}/g,function(args){return _138.Replace(args);});}return _137;};var _13a=function(){};_13a.prototype.LoadJSON=function(_13b,_13c){var _13d=ITHit.Utils;if(_13c&&!_13d.IsString(_13c)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13e=this;if(_13c){_13e=ITHit.Declare(_13c);}try{var _13f=_13b;if(_13d.IsString(_13f)){_13f=eval("("+_13b+")");}this._AddPhrases(_13f,_13e);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13a.prototype.LoadLocalizedJSON=function(_140,_141,_142){var _143=ITHit.Utils,_144=_143.IsUndefined,_145=_143.IsObject;if(!_140||!_143.IsObjectStrict(_140)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_141&&!_143.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _146;if(_141){_146={};this._MergePhrases(_146,_141);this._MergePhrases(_146,_140);}else{_146=_140;}this.LoadJSON(_146,_142);};_13a.prototype._MergePhrases=function(dest,_148){var _149=ITHit.Utils,_14a=_149.IsUndefined,_14b=_149.IsObject;for(var prop in _148){if(!_148.hasOwnProperty(prop)){continue;}if(_14a(dest[prop])){dest[prop]=_148[prop];}else{if(_14b(dest[prop])){this._MergePhrases(dest[prop],_148[prop]);}}}};_13a.prototype._AddPhrases=function(_14d,_14e){_14e=_14e||this;for(var _14f in _14d){if(("object"!=typeof _14d[_14f])||!(_14d[_14f] instanceof Object)){switch(_14f){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_14f+"\" is reserved word.");break;}_14e[_14f]=new _135(_14d[_14f]);}else{this._AddPhrases(_14d[_14f],_14e[_14f]?_14e[_14f]:(_14e[_14f]={}));}}};return new _13a();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_150,_151){ITHit.Exceptions.XPathException.baseConstructor.call(this,_150,_151);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_152,_153,_154,_155,_156){if(("string"!=typeof _152)&&!(_152 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_153 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_154&&!(_154 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_154=_154||null;_155=_155||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _157=_153._get();var _158=_157.ownerDocument||_157;if(_155){_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_155._res);return;}var oRes=new ITHit.XPath.result(_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_156){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _157=_153._get();var _15a=false;try{_157.getProperty("SelectionNamespaces");_15a=true;}catch(e){}var _15b=false;if(3==ITHit.XMLDoc._version){var sXml=_157.xml.replace(/^\s+|\s+$/g,"");var _15d="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15e="cutted";if(-1!=sXml.indexOf(_15d)||true){var _15f=sXml.replace(_15d,_15e);var _160=new ITHit.XMLDoc();_160.load(_15f);if(_154){var oNs=_154.getAll();for(var _162 in oNs){if(_15d==oNs[_162]){oNs.add(_162,_15e);break;}}}_157=_160._get();_15a=true;_15b=true;}}if(_15a&&_154&&_154.length()){var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15b){_157=_157.documentElement;}try{if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15a&&(-2147467259==e.number)&&_154&&_154.length()){var sEl=new ITHit.XMLDoc(_157).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_157=oEl._get();var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));_157=_157.documentElement;if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_152+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_168,_169,_16a){return ITHit.XPath.evaluate(_168,_169,_16a,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16b,sNs){this._ns[_16b]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16d){delete this._ns[_16d];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16e){return this._ns[_16e]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _170 in this._ns){oOut[_170]=this._ns[_170];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_171){this._res=_171;this._i=0;this.length=_171.length?_171.length:_171.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_172){var mOut;if(!_172){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_172];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_174,_175){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_174,_175);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _176;var _177=1;var _178=2;var _179=3;var _17a=4;var _17b=5;var _17c=6;var _17d=7;var _17e=8;var _17f=9;var _180=10;var _181=11;var _182=12;var _183=function(_184){this._xml=null;this._encoding=null;if(null!==_184){if(!_184||("object"!=typeof _184)){if(undefined!==window.ActiveXObject){if(_176){this._xml=new window.ActiveXObject(_176);}else{var _185=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _186=[6,4,3];for(var i=0;i<_185.length;i++){try{this._xml=new window.ActiveXObject(_185[i]);_183._version=_186[i];_176=_185[i];break;}catch(e){if(3==_186[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_184;}}else{this._xml=null;return null;}};_183._version=0;_183.prototype.contentEncoding=function(_188){if(undefined!==_188){this._encoding=_188;}return this._encoding;};_183.prototype.load=function(_189){if(!ITHit.Utils.IsString(_189)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_189){return new _183();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_183._version){_189=_189.replace(/<\?.*\?>/,"");this._xml.loadXML(_189);}else{var _18b=new _183();if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18b.load(_189);this._xml=_18b._get();}}catch(e){var _18c=e;}}else{if(document.implementation.createDocument){try{var _18d=new DOMParser();oDoc=_18d.parseFromString(_189,"text/xml");this._xml=oDoc;}catch(e){var _18c=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18c){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18c);}};_183.prototype.appendChild=function(_18e){if(!_18e instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18e._get());};_183.prototype.createElement=function(_18f){return new _183(this._xml.createElement(_18f));};_183.prototype.createElementNS=function(sNS,_191){if(this._xml.createElementNS){var _192=this._xml.createElementNS(sNS,_191);return new ITHit.XMLDoc(_192);}else{try{return new _183(this._xml.createNode(_177,_191,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_183.prototype.createTextNode=function(_193){return new _183(this._xml.createTextNode(_193));};_183.prototype.getElementById=function(sId){return new _183(this._xml.getElementById(sId));};_183.prototype.getElementsByTagName=function(_195){return new _183(this._xml.getElementsByTagName(_195));};_183.prototype.childNodes=function(){var _196=this._xml.childNodes;var _197=[];for(var i=0;i<_196.length;i++){_197.push(new ITHit.XMLDoc(_196[i]));}return _197;};_183.prototype.getElementsByTagNameNS=function(_199,_19a){if(this._xml.getElementsByTagNameNS){var _19b=this._xml.getElementsByTagNameNS(_199,_19a);}else{var _19c=this.toString();var _19d=new ITHit.XMLDoc();_19d.load(_19c);var _19e=new ITHit.XPath.resolver();_19e.add("a",_199);var oRes=ITHit.XPath.evaluate(("//a:"+_19a),_19d,_19e);var _19b=oRes._get();}var aRet=[];for(var i=0;i<_19b.length;i++){var _1a2=new ITHit.XMLDoc(_19b[i]);aRet.push(_1a2);}return aRet;};_183.prototype.setAttribute=function(_1a3,_1a4){this._xml.setAttribute(_1a3,_1a4);};_183.prototype.hasAttribute=function(_1a5){return this._xml.hasAttribute(_1a5);};_183.prototype.getAttribute=function(_1a6){return this._xml.getAttribute(_1a6);};_183.prototype.removeAttribute=function(_1a7){this._xml.removeAttribute(_1a7);};_183.prototype.hasAttributeNS=function(_1a8){return this._xml.hasAttribute(_1a8);};_183.prototype.getAttributeNS=function(_1a9){return this._xml.getAttribute(_1a9);};_183.prototype.removeAttributeNS=function(_1aa){this._xml.removeAttribute(_1aa);};_183.prototype.removeChild=function(_1ab){if(!_1ab instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ab);return new ITHit.XMLDoc(_1ab);};_183.prototype.removeNode=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ac=_1ac._get();if(_1ac.removeNode){return new _183(_1ac.removeNode(true));}else{return new _183(_1ac.parentNode.removeChild(_1ac));}};_183.prototype.cloneNode=function(_1ad){if(undefined===_1ad){_1ad=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ad));};_183.prototype.getProperty=function(_1ae){return this._xml[_1ae];};_183.prototype.setProperty=function(_1af,_1b0){this._xml[_1af]=_1b0;};_183.prototype.nodeName=function(){return this._xml.nodeName;};_183.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_183.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_183.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_183.prototype.firstChild=function(){return new _183(this._xml.firstChild);};_183.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_183.prototype.nodeValue=function(){var _1b1="";if(this._xml){_1b1=this._xml.nodeValue;}if("object"!=typeof _1b1){return _1b1;}else{return new ITHit.XMLDoc(_1b1);}};_183.prototype.nodeType=function(){return this._xml.nodeType;};_183.prototype._get=function(){return this._xml;};_183.prototype.toString=function(_1b2){return _183.toString(this._xml,this._encoding,_1b2);};_183.toString=function(_1b3,_1b4,_1b5){if(!_1b3){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b6="";var _1b7=true;if(undefined!==_1b3.xml){_1b6=_1b3.xml.replace(/^\s+|\s+$/g,"");_1b7=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b6=new XMLSerializer().serializeToString(_1b3);_1b7=false;}}if(_1b6){if(_1b4){_1b4=" encoding=\""+this._encoding+"\"";}else{_1b4="";}var sOut=((!_1b5)?"<?xml version=\"1.0\""+_1b4+"?>":"")+_1b6.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b7){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b6;};return _183;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1b9){var _1ba="Variable \""+_1b9+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1ba);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bb,_1bc){if(_1bb===null){throw new ITHit.Exceptions.ArgumentNullException(_1bc);}},VerifyArgumentNotNullOrEmpty:function(_1bd,_1be){if(_1bd===null||_1bd===""){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},NormalizeEmptyToNull:function(_1bf){if(_1bf===null||_1bf===""){return null;}return _1bf;},NormalizeEmptyOrNoneToNull:function(_1c0){if(_1c0===null||_1c0===""||_1c0=="None"){return null;}return _1c0;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c4=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c4;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c5,_1c6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c5,"sName");this.Name=_1c5;this.NamespaceUri=_1c6;},Equals:function(oObj,_1c8){_1c8=_1c8||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c8?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1ca="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1ca,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1ca),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1ca),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1ca),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1ca),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1ca),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1ca),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1ca),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1ca),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1ca),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1ca),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1ca),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1ca),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1ca),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1ca),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1ca),Source:new ITHit.WebDAV.Client.PropertyName("source",_1ca),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1ca),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1ca),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1ca),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1ca),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1ca),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1ca),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1ca),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1ca),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cb,_1cc){_1cb+=" Variable name: \""+_1cc+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cb);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1ce){switch(_1ce.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1cf){this.Value=_1cf;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d0,_1d1,_1d2){var _1d3=this._CreateRequest.apply(this,arguments);var _1d4=_1d3.GetResponse();return this._ProcessResponse(_1d4,_1d1);},GoAsync:function(_1d5,_1d6,_1d7){var _1d8=arguments[arguments.length-1];var _1d9=this._CreateRequest.apply(this,arguments);var that=this;_1d9.GetResponse(function(_1db){if(_1db.IsSuccess){_1db.Result=that._ProcessResponse(_1db.Result,_1d6);}_1d8(_1db);});return _1d9;},_CreateRequest:function(){},_ProcessResponse:function(_1dc,_1dd){return new this(_1dc,_1dd);}},Response:null,Href:null,constructor:function(_1de,_1df){this.Response=_1de;this.Href=_1df;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e0){var _1e1=_1e0.split(" ");var _1e2=parseInt(_1e1[1]);_1e1.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e2,_1e1.join(" "));}},Code:null,Description:null,constructor:function(_1e3,_1e4){this.Code=_1e3;this.Description=_1e4;},Equals:function(_1e5){if(!_1e5||!(_1e5 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e5.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e6,_1e7,_1e8){switch(arguments.length){case 1:var _1e9=_1e6;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e9.localName(),_1e9.namespaceURI());this.Value=_1e9;break;case 2:var _1ea=_1e6,_1eb=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"sStringValue");this.Name=_1ea;var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ea.NamespaceUri,_1ea.Name);_1ed.appendChild(_1ec.createTextNode(_1eb));this.Value=_1ed;break;case 3:var _1e6=_1e6,_1e7=_1e7,_1ee=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e6,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e7,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ee,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e6,_1ee);var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ee,_1e6);_1ed.appendChild(_1ec.createTextNode(_1e7));this.Value=_1ed;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1ef){this.PropertiesByNames={};this.Properties=[];var _1f0;var _1f1=new ITHit.XPath.resolver();_1f1.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f0=ITHit.XPath.selectSingleNode("d:responsedescription",_1ef,_1f1)){this.ResponseDescription=_1f0.firstChild().nodeValue();}_1f0=ITHit.XPath.selectSingleNode("d:status",_1ef,_1f1);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f0.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1ef,_1f1);while(_1f0=oRes.iterateNext()){var _1f3=new ITHit.WebDAV.Client.Property(_1f0.cloneNode());var _1f4=_1f3.Name;if("undefined"==typeof this.PropertiesByNames[_1f4]){this.PropertiesByNames[_1f4]=_1f3;}else{var _1f5=_1f0.childNodes();for(var i=0;i<_1f5.length;i++){this.PropertiesByNames[_1f4].Value.appendChild(_1f5[i]);}}this.Properties.push(_1f3);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f7,_1f8){this.Propstats=[];var _1f9;var _1fa=new ITHit.XPath.resolver();_1fa.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f7,_1fa).firstChild().nodeValue();if(_1f9=ITHit.XPath.selectSingleNode("d:responsedescription",_1f7,_1fa)){this.ResponseDescription=_1f9.firstChild().nodeValue();}if(_1f9=ITHit.XPath.selectSingleNode("d:status",_1f7,_1fa)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f9.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f7,_1fa);while(_1f9=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1f9.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fc,_1fd){this.ResponseDescription="";this.Responses=[];var _1fe=new ITHit.XPath.resolver();_1fe.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1fe.add("ithitp","https://www.ithit.com/pagingschema/");var _1ff;var _200=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fc,_1fe);if((_1ff=_200.iterateNext())){this.TotalItems=parseInt(_1ff.firstChild().nodeValue());}eval(String.fromCharCode.call(this,116+2,27+70,2+112,32,111,82,101,115,61,44+29,28+56,72,105,116,46,88,14+66,97,70+46,104,46,1+100,118,91+6,108,57+60,97,116,81+20,40,3+31,47,100,5+53,32+77,59+58,58+50,116,33+72,115,19+97,75+22,116,21+96,114+1,47,66+34,12+46,114,7+94,115,11+101,111,10+100,115,27+74,21+13,44,23+72,16+33,42+60,99,25+19,95,49,42+60,101,41,24+35));while((_1ff=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_1ff.cloneNode(),_1fd));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fc,_1fe,oRes);if((_1ff=oRes.iterateNext())){this.ResponseDescription=_1ff.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_202){return new ITHit.WebDAV.Client.AsyncResult(_202,true,null);},CreateFailedResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(null,false,_203);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_204,_205,_206){this.Result=_204;this.IsSuccess=_205;this.Error=_206;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_207,_208){this.Property=_207;this.Ascending=_208;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_209,sUri,_20b,_20c,_20d,_20e){return this.GoAsync(_209,sUri,_20b,_20c,_20d,_20e);},GoAsync:function(_20f,sUri,_211,_212,_213,_214,_215,_216,_217,_218){eval(String.fromCharCode.call(this,118,18+79,77+37,32,79+16,17+33,45+4,57,61,73,3+81,38+34,105,116,12+34,71+16,101,96+2,36+32,46+19,86,46,67,88+20,105,13+88,110,2+114,8+38,77,101,116,47+57,16+95,29+71,89+26,46+0,80,36+78,111,112,102,105,110,52+48,46,99,114,71+30,97,116,101,30+52,101,113,117,96+5,77+38,116,20+20,95,50,48,32+70,43+1,57+58,85,10+104,105,38+6,95,50+0,48+1,47+2,44,17+78,33+17,49,48+2,43+1,79+16,50,24+25,51,6+38,95,50,6+43,52,44,95,9+41,49,24+30,37+7,95,50,49,55,35+9,95,47+3,49,55+1,21+20,9+50));var self=this;var _21b=typeof _215==="function"?function(_21c){self._GoCallback(_20f,sUri,_21c,_215);}:null;var _21d=_219.GetResponse(_21b);if(typeof _215!=="function"){var _21e=new ITHit.WebDAV.Client.AsyncResult(_21d,_21d!=null,null);return this._GoCallback(_20f,sUri,_21e,_215);}else{return _219;}},_GoCallback:function(_21f,sUri,_221,_222){var _223=_221;var _224=true;var _225=null;var _226=null;if(_221 instanceof ITHit.WebDAV.Client.AsyncResult){_223=_221.Result;_224=_221.IsSuccess;_225=_221.Error;}if(_223!==null){_226=_223.Status;}var _227=null;if(_224){var _228=_223.GetResponseStream();var _229=new ITHit.WebDAV.Client.Methods.MultiResponse(_228,sUri);_227=new ITHit.WebDAV.Client.Methods.Propfind(_229);}if(typeof _222==="function"){if(_226!==null){_227.Status=_226;}var _22a=new ITHit.WebDAV.Client.AsyncResult(_227,_224,_225);_222.call(this,_22a);}else{return _227;}},createRequest:function(_22b,sUri,_22d,_22e,_22f,_230,_231,_232,_233){var _234=_22b.CreateWebDavRequest(_230,sUri);_234.Method("PROPFIND");_234.Headers.Add("Depth",_22f.Value);_234.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _235=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,118,28+69,114,32,95,11+39,38+13,54,61,95,50,51,53,5+41,99,114,101,97,116,101,62+7,108,16+85,86+23,101,110,116,54+24,59+24,40,63+10,84,72,105,116,1+45,87,58+43,98,33+35,65,86,1+45,15+52,108,16+89,101,110,6+110,46,68,97,118,67,111,49+61,62+53,84+32,97,110,112+4,115,46,56+22,6+91,47+62,43+58,80+35,112,29+68,51+48,101,24+61,114,105,3+41,9+25,112,94+20,111,112,102,105,105+5,100,16+18,41,59));switch(_22d){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22e||!_22e.length){var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22e.length;i++){var prop=_235.createElementNS(_22e[i].NamespaceUri,_22e[i].Name);_237.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_236.appendChild(_237);if(_231!==undefined&&_231!=null&&_232!==undefined&&_232!=null){var _23a=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23b=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23c=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23b.appendChild(_235.createTextNode(_231));_23c.appendChild(_235.createTextNode(_232));_23a.appendChild(_23c);_23a.appendChild(_23b);_236.appendChild(_23a);}if(_233&&_233.length){var _23d=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_233.length;i++){var _23e=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _23f=_235.createElementNS(_233[i].Property.NamespaceUri,_233[i].Property.Name);var _240=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_233[i].Ascending?"ascending":"descending");_237.appendChild(_23f);_23e.appendChild(_237);_23e.appendChild(_240);_23d.appendChild(_23e);}_236.appendChild(_23d);}_235.appendChild(_236);_234.Body(_235);return _234;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_241){this.Status=_241.Status;this.ResponseDescription=_241.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_242,_243){eval(String.fromCharCode.call(this,118,97,39+75,32,14+81,50,25+27,52,25+36,95,50,52,50,46,71,55+46,116,27+55,101,59+56,64+48,111,10+100,115,64+37,40+43,116,114,25+76,97,39+70,12+28,49+46,50,16+36,50,19+22,59));if(!_244||!_242.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_242);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_244,_243);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_245,_246,_247,_248){return this._super.apply(this,arguments);},GoAsync:function(_249,_24a,_24b,_24c,_24d){return this._super.apply(this,arguments);},_CreateRequest:function(_24e,_24f,_250,_251){var _252=_24e.CreateWebDavRequest(_251,_24f,_250);_252.Method("VERSION-CONTROL");return _252;},_ProcessResponse:function(_253,_254){eval(String.fromCharCode.call(this,67+51,97,10+104,32,95,17+33,5+48,53,61,60+13,77+7,68+4,11+94,116,46,21+66,97+4,98,26+42,65,13+73,29+17,45+22,9+99,11+94,66+35,80+30,116,13+33,77,101,116,104,67+44,81+19,115,7+39,82,101,60+55,112,111,110,25+90,101,50+20,50+47,99,116,111,114,121,19+27,58+13,55+46,113+3,82,101,115,112,104+7,91+19,82+33,83+18,0+40,95,50,53,28+23,1+43,37+58,3+47,38+15,52,5+36,59));return this._super(_255);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_256,_257){for(var i=0,l=this.length;i<l;i++){if(_256.Equals(this[i].Name,_257)){return true;}}return false;},Find:function(_25a,_25b){for(var i=0,l=this.length;i<l;i++){if(_25a.Equals(this[i].Name,_25b)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25e,_25f){this._super(_25e,_25f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_260){this.Href=_260.Href;this.Description=_260.ResponseDescription;this.Status=_260.Status;for(var i=0;i<_260.Propstats.length;i++){if(_260.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_260.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_262){this.Responses=[];if(_262){this.Description=_262.ResponseDescription;for(var i=0;i<_262.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_262.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_264,_265,_266,_267,_268,_269){this._super(_264,_268);this.Multistatus=_266||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_267;this.Uri=_265;this.Error=_269;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26a,_26b,_26c,_26d,_26e,_26f){this.PropertyName=_26c;this._super(_26a,_26b,_26d,_26e,_26f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_270,_271,_272,_273,_274){this._super(_270,_271,_272,_273,ITHit.WebDAV.Client.HttpStatus.NotFound,_274);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_275,_276,_277,_278,_279){this._super(_275,_276,_277,_278,ITHit.WebDAV.Client.HttpStatus.Forbidden,_279);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27a,_27b,_27c,_27d){this._super();this.Href=_27a;this.Description=_27b;this.Status=_27c;this.PropertyName=_27d;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27e){this.Responses=[];if(_27e){this.Description=_27e.ResponseDescription;for(var i=0;i<_27e.Responses.length;i++){var _280=_27e.Responses[i];for(var j=0;j<_280.Propstats.length;j++){var _282=_280.Propstats[j];for(var k=0;k<_282.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_280.Href,_282.ResponseDescription,_282.Status,_282.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c){var _28d=this.createRequest(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c);var _28e=_28d.GetResponse();return this._ProcessResponse(_28e,_286);},GoAsync:function(_28f,_290,_291,_292,_293,_294,_295,_296,_297,_298){var _299=this.createRequest(_28f,_290,_291,_292,_293,_294,_295,_296,_297);var that=this;_299.GetResponse(function(_29b){if(!_29b.IsSuccess){_298(new ITHit.WebDAV.Client.AsyncResult(null,false,_29b.Error));return;}var _29c=that._ProcessResponse(_29b.Result,_291);_298(new ITHit.WebDAV.Client.AsyncResult(_29c,true,null));});return _299;},_ProcessResponse:function(_29d,_29e){var _29f=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29d,_29e);return new ITHit.WebDAV.Client.Methods.CopyMove(_29f);},createRequest:function(_2a0,_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8){var _2a9=_2a0.CreateWebDavRequest(_2a8,_2a2,_2a7);_2a3=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a3).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a3)){_2a3=_2a8+_2a3.substr(1);}_2a9.Method((_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2a9.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,95,50,79+18,57,46,10+62,91+10,97,98+2,4+97,72+42,110+5,22+24,56+9,100,100,40,6+28,49+19,18+83,60+55,116,105,62+48,69+28,116,56+49,87+24,110,34,35+9,73,33+51,72,50+55,61+55,28+18,68,91+10,99,13+98,46+54,101,57+15,111,66+49,116,19+21,95,22+28,40+57,27+24,25+16,41,16+43,95,50,97,16+41,46,50+22,101,56+41,96+4,101,44+70,16+99,32+14,65,100,100+0,23+17,7+27,79,118,101,114,99+20,40+74,105,116,101,34,27+17,95,50,97,50+4,42+21,34,84,1+33,56+2,34,70,34,41,59));if(_2a4&&(_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a5){_2a9.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2aa=new ITHit.XMLDoc();var _2ab=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ac=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ac.appendChild(_2aa.createTextNode("*"));_2ab.appendChild(_2ac);_2aa.appendChild(_2ab);_2a9.Body(_2aa);return _2a9;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ad,_2ae,_2af,_2b0){return this._super.apply(this,arguments);},GoAsync:function(_2b1,_2b2,_2b3,_2b4,_2b5){return this._super.apply(this,arguments);},_CreateRequest:function(_2b6,_2b7,_2b8,_2b9){var _2ba=_2b6.CreateWebDavRequest(_2b9,_2b7,_2b8);_2ba.Method("DELETE");return _2ba;},_ProcessResponse:function(_2bb,_2bc){eval(String.fromCharCode.call(this,118,97,46+68,32,48+47,6+44,98,100,61,53+20,84,17+55,105,116,46,87,22+79,60+38,68,65,86,46,67,93+15,105,10+91,86+24,69+47,16+30,77,101,116,29+75,106+5,100,7+108,11+35,82,96+5,115,39+73,50+61,82+28,115,28+73,64+6,97,31+68,96+20,111,114,121,39+7,47+24,101,116,82,101,115,112,111,110,115,101,40,63+32,50,98,98,44,66+29,50,98,99,41,58+1));return this._super(_2bd);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2be,_2bf,_2c0,_2c1,_2c2,_2c3){var _2c4=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2be,_2bf,_2c0,_2c1,_2c2,_2c3);var _2c5=_2c4.GetResponse();return this._ProcessResponse(_2c5);},GoAsync:function(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb,_2cc){var _2cd=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb);var that=this;_2cd.GetResponse(function(_2cf){if(!_2cf.IsSuccess){_2cc(new ITHit.WebDAV.Client.AsyncResult(null,false,_2cf.Error));return;}var _2d0=that._ProcessResponse(_2cf.Result,_2c7);_2cc(new ITHit.WebDAV.Client.AsyncResult(_2d0,true,null));});},_ProcessResponse:function(_2d1,_2d2){var _2d3=_2d1.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d3,_2d2));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d6,_2d7,_2d8,_2d9,_2da,_2db){_2da=_2da||null;var _2dc=_2d6.CreateWebDavRequest(_2db,_2d7,_2da);_2dc.Method("PROPPATCH");_2dc.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2dd=new ITHit.XMLDoc();var _2de=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d8)){eval(String.fromCharCode.call(this,118,97,114,32,81+34,101,116,61,70+25,47+3,100,100,46,99,74+40,82+19,97,79+37,101,69,108,51+50,49+60,101,110,53+63,78,83,40,73,3+81,72,105,116,3+43,57+30,33+68,3+95,68,21+44,25+61,40+6,67,108,105,80+21,110,51+65,46,2+66,44+53,108+10,67,111,110,115,116,71+26,52+58,47+69,103+12,15+31,78,97,109,83+18,34+81,112,43+54,99,101,7+78,15+99,105,23+21,6+28,115,101,99+17,34,41,59));for(var i=0;i<_2d8.length;i++){if(_2d8[i]){var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d8[i].Value);set.appendChild(prop);}}_2de.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){var _2e2=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var elem=_2dd.createElementNS(_2d9[i].NamespaceUri,_2d9[i].Name);prop.appendChild(elem);}}_2e2.appendChild(prop);_2de.appendChild(_2e2);}_2dd.appendChild(_2de);_2dc.Body(_2dd);return _2dc;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e4,_2e5){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e4,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e5,"lockToken");this.Href=_2e4;this.LockToken=_2e5;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e6,_2e7){eval(String.fromCharCode.call(this,68+50,97,104+10,27+5,95,36+14,101,56,60+1,110,101,119,20+12,32+41,1+83,72,74+31,63+53,33+13,21+67,80,97,116,104,46,38+76,77+24,28+87,111,41+67,118,95+6,30+84,40,37+4,45+14,68+27,50,40+61,14+42,46,97,100,38+62,40,34,60+40,19+15,33+11,29+44,30+54,72,105,116,46,87,33+68,98,40+28,65,86,21+25,59+8,96+12,105,101,78+32,41+75,46,67+1,34+63,44+74,10+57,111,5+105,96+19,111+5,65+32,54+56,8+108,99+16,45+1,4+74,35+62,109,101,115,112,97,99,101,83+2,114,105,40+1,32+27));var _2e9;if(!(_2e9=ITHit.XPath.selectSingleNode("d:lockscope",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ea=null;var _2eb=_2e9.childNodes();for(var i=0,l=_2eb.length;i<l;i++){if(_2eb[i].nodeType()===1){_2ea=_2eb[i].localName();break;}}switch(_2ea){case "shared":_2ea=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ea=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2e9=ITHit.XPath.selectSingleNode("d:depth",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ee=ITHit.WebDAV.Client.Depth.Parse(_2e9.firstChild().nodeValue());var _2ef=(_2ee==ITHit.WebDAV.Client.Depth.Infinity);var _2f0=null;if(_2e9=ITHit.XPath.selectSingleNode("d:owner",_2e6,_2e8)){_2f0=_2e9.firstChild().nodeValue();}var _2f1=-1;if(_2e9=ITHit.XPath.selectSingleNode("d:timeout",_2e6,_2e8)){var _2f2=_2e9.firstChild().nodeValue();if("infinite"!=_2f2.toLowerCase()){if(-1!=_2f2.toLowerCase().indexOf("second-")){_2f2=_2f2.substr(7);}var _2f1=parseInt(_2f2);}}var _2f3=null;eval(String.fromCharCode.call(this,105,89+13,40,95,10+40,7+94,57,61,73,37+47,72,40+65,103+13,5+41,82+6,21+59,15+82,116,104,8+38,70+45,48+53,108,101,99,81+35,83,105+0,110,23+80,108,101,78,111,100,101,40,18+16,95+5,58,48+60,99+12,8+91,78+29,116,111,76+31,67+34,110,7+27,44,95,50,101,54,44,95,50,101,35+21,41,2+39,123+0,118,15+82,101+13,32,95,50,96+6,7+45,12+49,73,84,72,52+53,10+106,46,88,80,97,116,104,16+30,115,101,67+41,61+40,99,12+104,55+28,105,110,103,108,101,24+54,111,100,51+50,40,10+24,100,58,104,26+88,3+98,102,34,44,6+89,50,101,53+4,44,74+21,6+44,101,42+14,41,46,7+95,105,114,115,116,67,93+11,105,106+2,100,40,41,14+32,110,111,100,101,86,43+54,108,6+111,101,34+6,41,9+50,95,1+49,102,52,61,71+24,50,99+3,40+12,33+13,114,98+3,112,61+47,12+85,99,101,31+9,73,63+21,25+47,86+19,93+23,6+40,87,101,62+36,48+20,65,86,15+31,22+45,99+9,76+29,89+12,110,80+36,0+46,44+24,89+8,90+28,67,63+48,40+70,63+52,29+87,97,110,116,115,46,74+5,112,86+11,17+96,117,25+76,76,28+83,45+54,107,84,48+63,61+46,28+73,39+71,44,20+14,22+12,41,59,95,46+4,43+59,8+43,61,110,74+27,119,30+2,38+35,84,16+56,105,116,46,81+6,33+68,98,68,65,86,4+42,67,79+29,105,101,110,116,46,13+63,51+60,98+1,107,85,114,105,46+38,59+52,8+99,9+92,110,15+65,8+89,74+31,114,40,34+61,17+33,26+75,55,19+25,28+67,6+44,102,52,27+14,59,125));return new ITHit.WebDAV.Client.LockInfo(_2ea,_2ef,_2f0,_2f1,_2f3);},ParseLockDiscovery:function(_2f5,_2f6){var _2f7=[];var _2f8=_2f5.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f8.length;i++){_2f7.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f8[i],_2f6));}return _2f7;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fa,_2fb,_2fc,_2fd,_2fe){this.LockScope=_2fa;this.Deep=_2fb;this.TimeOut=_2fd;this.Owner=_2fc;this.LockToken=_2fe;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ff,_300,_301,_302,_303,_304,_305){return this._super.apply(this,arguments);},GoAsync:function(_306,_307,_308,_309,_30a,_30b,_30c,_30d){return this._super.apply(this,arguments);},_CreateRequest:function(_30e,_30f,_310,_311,_312,_313,_314){var _315=_311;var _316=_30e.CreateWebDavRequest(_312,_30f);_316.Method("LOCK");_316.Headers.Add("Timeout",(-1===_310)?"Infinite":"Second-"+parseInt(_310));_316.Headers.Add("Depth",_313?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_316.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _317=new ITHit.XMLDoc();var _318=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _319=_317.createElementNS(_318,"lockinfo");var _31a=_317.createElementNS(_318,"lockscope");var _31b=_317.createElementNS(_318,_315.toLowerCase());_31a.appendChild(_31b);eval(String.fromCharCode.call(this,118,97,114,32,95,51,49,99,20+41,95,6+45,49+0,55,3+43,99,114,85+16,97,116,101,69,59+49,101,109,56+45,81+29,116,18+60,83,7+33,95,33+18,35+14,56,44,34,68+40,104+7,57+42,107,116,11+110,112,101,34,41,59,118,97,105+9,3+29,59+36,51,35+14,69+31,61,95,35+16,1+48,55,45+1,11+88,114,101,97,116,101,31+38,108,101,41+68,101,73+37,116,78,83,40,40+55,3+48,11+38,37+19,0+44,34,19+100,102+12,26+79,71+45,43+58,21+13,41,59,52+43,50+1,49,43+56,15+31,4+93,91+21,112,89+12,110,11+89,67,104,105,108,65+35,3+37,95,51,31+18,34+66,3+38,59));var _31e=_317.createElementNS(_318,"owner");_31e.appendChild(_317.createTextNode(_314));_319.appendChild(_31a);_319.appendChild(_31c);_319.appendChild(_31e);_317.appendChild(_319);_316.Body(_317);return _316;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,75+43,97,105+9,32,23+72,51,49,102,61,116,33+71,104+1,115,41+5,55+27,101,115,112,111,110,63+52,101,46,71,71+30,84+32,13+69,53+48,115,66+46,111,110,98+17,101,83,76+40,82+32,101,65+32,104+5,40,41,59,86+32,97,81+33,32,95,51,50,5+43,2+59,107+3,86+15,119,16+16,73,84,21+51,105,71+45,46,88,20+60,90+7,116,47+57,46,43+71,101,115,70+41,108,118,78+23,54+60,40,6+35,59));_320.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _321=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_31f,_320));try{var _322=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_321.Value,this.Href);if(_322.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,116,71+33,105,38+77,46,76,111,39+60,21+86,36+37,49+61,102,111,32+29,95,22+29,50,33+17,48+43,48,36+57,31+28));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_321.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_323,_324,_325,_326,_327,_328,_329){return this._super.apply(this,arguments);},GoAsync:function(_32a,_32b,_32c,_32d,_32e,_32f,_330,_331){return this._super.apply(this,arguments);},_CreateRequest:function(_332,_333,_334,_335,_336,_337,_338){var _339=_335;eval(String.fromCharCode.call(this,118,83+14,114,32,95,51,21+30,97,24+37,95,51,51,50,46,67,11+103,101,97,116,101,21+66,58+43,98,68,97,118,82,20+81,85+28,117,101,60+55,19+97,40,95,51,27+24,8+46,15+29,49+46,51,2+49,28+23,44,67+28,20+31,51,26+31,13+28,59,95,51,0+51,60+37,46,2+75,101,116,7+97,71+40,65+35,26+14,34,76,2+77,38+29,75,20+14,33+8,43+16));_33a.Headers.Add("Timeout",(-1==_334)?"Infinite":"Second-"+parseInt(_334));_33a.Body("");return _33a;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33b,_33c,_33d,_33e){return this._super.apply(this,arguments);},GoAsync:function(_33f,_340,_341,_342,_343){return this._super.apply(this,arguments);},_ProcessResponse:function(_344,_345){eval(String.fromCharCode.call(this,37+81,85+12,114,26+6,95,17+34,52,54,13+48,110,21+80,58+61,4+28,2+71,84,48+24,105,116,46,87,101,98,68,65,49+37,39+7,20+47,108+0,105,101,66+44,65+51,7+39,77,101,100+16,25+79,87+24,1+99,24+91,1+45,45+38,105,110,103,108,101,82,101,115,112,40+71,110,115,101,23+17,36+59,51,52,52,5+36,59));return this._super(_346);},_CreateRequest:function(_347,_348,_349,_34a){var _34b=_347.CreateWebDavRequest(_34a,_348);_34b.Method("UNLOCK");_34b.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_349+">");return _34b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34c,_34d,_34e,_34f,_350){this.Features=_34c;this.MsAuthorViaDav=_34d;this.VersionControl=_34e;this.Search=_34f;this.ServerVersion=_350;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_351,_352,_353){return this.GoAsync(_351,_352,_353);},GoAsync:function(_354,_355,_356,_357){var _358=ITHit.WebDAV.Client.Methods.Options.createRequest(_354,_355,_356);var self=this;var _35a=typeof _357==="function"?function(_35b){self._GoCallback(_354,_355,_35b,_357);}:null;var _35c=_358.GetResponse(_35a);if(typeof _357!=="function"){var _35d=new ITHit.WebDAV.Client.AsyncResult(_35c,_35c!=null,null);return this._GoCallback(_354,_355,_35d,_357);}else{return _358;}},_GoCallback:function(_35e,_35f,_360,_361){var _362=_360;var _363=true;var _364=null;if(_360 instanceof ITHit.WebDAV.Client.AsyncResult){_362=_360.Result;_363=_360.IsSuccess;_364=_360.Error;}var _365=null;if(_363){eval(String.fromCharCode.call(this,8+110,97,114,32,31+64,51,54,53,61,30+80,101,119,32,24+49,84,51+21,4+101,116,46,87,101,79+19,41+27,21+44,24+62,31+15,4+63,2+106,105,101,31+79,66+50,46,77,100+1,35+81,104,111,27+73,29+86,46,49+30,112,102+14,105,49+62,9+101,115,40,95,15+36,54,50,34+7,59));}if(typeof _361==="function"){var _366=new ITHit.WebDAV.Client.AsyncResult(_365,_363,_364);_361.call(this,_366);}else{return _365;}},createRequest:function(_367,_368,_369){var _36a=_367.CreateWebDavRequest(_369,_368);_36a.Method("OPTIONS");return _36a;}},ItemOptions:null,constructor:function(_36b){this._super(_36b);var sDav=_36b._Response.GetResponseHeader("dav",true);var _36d=0;var _36e=0;if(sDav){if(-1!=sDav.indexOf("2")){_36d=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36d=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36e=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36d+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36d+=ITHit.WebDAV.Client.Features.Paging;}}var _36f=_36b._Response.GetResponseHeader("gsuite",true);if(_36f&&-1!=_36f.toLowerCase().indexOf("gedit")){_36d+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,110,61,8+31,3+37,19+22,32,123,92,13+97,32,32,32,32,91,37+73,97,116,105,24+94,101,32,15+84,111,100,30+71,93,73+19,110,125,39,59,83+36,100,61,68,97,116,46+55,37+22,76+43,98,61,40,43+2,49,32,24+9,61,32,110,57+40,15+103,85+20,103,97,60+56,111,114,46,117,115,79+22,114,54+11,103,93+8,89+21,116,39+7,116,48+63,40+36,111,119,101,100+14,67,97,115,101,4+36,41,46,53+52,60+50,34+66,101,120,79,102,22+18,2+37,99,104,92+22,111,109,101,39,21+20,31+10,39+20,59,100,31+30,39,68,97,113+3,84+17,39+0,49+10,49+59,19+42,37+2,92,77+33,39,59,78+23,51+10,39,101,74+44,97,108,39,23+36,110,11+38,11+50,26+13,1+39,40+1,2+30,123,32,91,82+28,97,20+96,15+90,76+42,98+3,32,77+22,61+50,100,101,30+63,32,125,23+16,59,56+63,15+86,58+3,101,118,97,108,11+48,102,61,39,102,3+114,100+10,99,116,105,49+62,110,32,39,9+50,99,61,40,45,49,27+5,61,61,1+31,55+28,116,114,38+67,110,36+67,40,101,118,25+72,108,4+37,46,105,71+39,17+83,101,115+5,79,102,11+29,39,36+31,111,109,71+41,74+31,97+11,101,71+12,61+55,114,105,110,103,39,41,34+7,59,42+59,18+33,61,108,43,102,42+1,101,29+14,32+78,49,22+37,6+94,49,61,108,22+21,26+76,2+41,100,43,17+93,27+16,108,59,24+76,35+16,29+32,81+27,37+6,51+51,43,100,43,18+92,9+40,59,67+34,43+10,61,82+20,3+40,101,25+18,110,15+34,54+5,100,35+15,61,102,30+13,21+79,38+5,53+57,55+4,101,50,55+6,90+12,43,101,10+33,106+4,59,80+20,52,1+60,39,91,55+47,76+41,29+81,99,116,99+6,111,82+28,93,39,1+58,29+72,33+16,61,108,43,102,43,101,43,56+54,22+21,27+81,29+30,100,53,37+24,102,43,100,43,110,49,59,101,52,61,97+2,57+2,105,25+77,26+6,40,40,2+38,86+15,49,3+30,16+45,119,101,41,34+4,38,8+32,98+3,50,1+32,32+29,119,71+30,5+36,38,20+18,25+15,101,49+2,33,41+20,119,86+15,5+36,38,8+30,40,48+71,98,38,15+23,22+79,3+49,13+25,6+32,40,101,29+24,33,61,119,91+10,41,35+6,23+18,124,124,39+1,40,32+68,39+10,21+12,61,29+90,100,16+25,21+17,7+31,36+4,94+6,50,33,30+31,119,92+8,41,38,22+16,40,67+33,51,33,47+14,119,100,10+31,36+2,38,40,100,50+2,15+18,61,72+47,100,41,38,24+14,31+9,100,53,33,60+1,50+69,67+33,41,1+40,41,32,123,8+108,43+61,114,111,119,1+31,16+23,101,118,71+26,101+7,5+27,30+67,110,44+56,11+21,68,97,39+77,4+97,3+29,51+58,101,116,104,111,100,74+41,2+30,45+64,69+48,88+27,45+71,7+25,110,90+21,16+100,32,98,101,8+24,114,82+19,26+74,101,102,41+64,5+105,4+97,71+29,7+39,30+9,6+53,125,118,19+78,49+65,32,95,40+11,11+44,26+22,61,9+93,67+30,108,101+14,101,59,70+48,97,59+55,32,95,23+28,11+44,18+31,61,95,51,54+0,98,27+19,95,82,101,115,68+44,111,108+2,115,101,46,71,5+96,116,57+25,47+54,34+81,81+31,111,110,115,92+9,71+1,101,47+50,100,101,114,14+26,18+16,109,115,13+32,97,102+15,116,104,105+6,23+91,45,118,9+96,6+91,34,44,116,30+84,88+29,101,41,6+53));if(_371&&(-1!=_371.toLowerCase().indexOf("dav"))){_370=true;}var _372=false;var _373=_36b._Response.GetResponseHeader("allow",true)||"";var _374=_373.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_374.length;i<l;i++){if(_374[i]==="search"){_372=true;_36d+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _377=_36b._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36d,_370,_36e,_372,_377);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_378){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_378);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_379){var _37a=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37c;_37c=_379.Responses[i];i++){for(var j=0,_37e;_37e=_37c.Propstats[j];j++){var _37f=[];for(var k=0,_381;_381=_37e.Properties[k];k++){if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_37f[0]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_37f[1]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_37f[2]=_381.Value;}}}}if(!_37f[0]||!_37f[1]||!_37f[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37c.Href));}_37a.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37c.Href,parseInt(_37f[0].firstChild().nodeValue()),parseInt(_37f[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_37f[1].firstChild().nodeValue())));}}return _37a;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_382,_383,_384,_385){if(!ITHit.Utils.IsString(_382)||!_382){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_382);}if(!ITHit.Utils.IsInteger(_383)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_384);}if(_383>_384){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_382;this.BytesUploaded=_383;this.TotalContentLength=_384;this.LastChunkSaved=_385;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_386,_387,_388,_389,_38a){return this.GoAsync(_386,_387,_388,_389,_38a);},GoAsync:function(_38b,_38c,_38d,_38e,_38f,_390){if(!_38e){_38e=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,112+6,97,114,32,75+20,51,57,49,61,73,46+38,72,105,116,18+28,56+31,9+92,98,52+16,0+65,86,46,67,42+66,47+58,101,66+44,74+42,1+45,3+74,101,116,104,106+5,100,115,46,82,83+18,112,107+4,114,4+112,1+45,99,30+84,101,89+8,116,101,82,95+6,7+106,24+93,101,115,72+44,1+39,95,21+30,56,98,44,27+68,50+1,29+27,99,44,95,51,2+54,87+13,43+1,95,29+22,56,27+74,3+41,86+9,30+21,29+27,78+24,1+40,59));var self=this;var _393=typeof _390==="function"?function(_394){self._GoCallback(_38c,_394,_38e,_390);}:null;var _395=_391.GetResponse(_393);if(typeof _390!=="function"){var _396=new ITHit.WebDAV.Client.AsyncResult(_395,_395!=null,null);return this._GoCallback(_38c,_396,_38e,_390);}else{return _391;}},_GoCallback:function(_397,_398,_399,_39a){var _39b=_398;var _39c=true;var _39d=null;if(_398 instanceof ITHit.WebDAV.Client.AsyncResult){_39b=_398.Result;_39c=_398.IsSuccess;_39d=_398.Error;}var _39e=null;if(_39c){var _39f=_39b.GetResponseStream();_39e=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_39f,_397),_399);}if(typeof _39a==="function"){var _3a0=new ITHit.WebDAV.Client.AsyncResult(_39e,_39c,_39d);_39a.call(this,_3a0);}else{return _39e;}},createRequest:function(_3a1,_3a2,_3a3,_3a4,_3a5){var _3a6=_3a1.CreateWebDavRequest(_3a3,_3a2);_3a6.Method("REPORT");_3a6.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a7=new ITHit.XMLDoc();switch(_3a4){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a8=_3a7.createElementNS("ithit","upload-progress");_3a7.appendChild(_3a8);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3a9=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a5||!_3a5.length){var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a5.length;i++){var prop=_3a7.createElementNS(_3a5[i].NamespaceUri,_3a5[i].Name);_3aa.appendChild(prop);}}_3a9.appendChild(_3aa);_3a7.appendChild(_3a9);break;}_3a6.Body(_3a7);return _3a6;}},constructor:function(_3ad,_3ae){this._super(_3ad);switch(_3ae){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ad);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b0){var _3b1=this.GetRequestProperties();var _3b2=[];for(var i=0,l=_3b0.length;i<l;i++){var _3b5=_3b0[i];var _3b6=false;for(var i2=0,l2=_3b1.length;i2<l2;i2++){if(_3b5.Equals(_3b1[i2])){_3b6=true;break;}}if(!_3b6){_3b2.push(_3b5);}}return _3b2;},ParseHref:function(_3b9){return {Href:_3b9,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3b9)};},OpenItem:function(_3ba,_3bb,_3bc){_3bc=_3bc||[];_3bc=this.GetCustomRequestProperties(_3bc);var _3bd=this.ParseHref(_3bb);var _3be=ITHit.WebDAV.Client.Methods.Propfind.Go(_3ba,_3bd.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bc),ITHit.WebDAV.Client.Depth.Zero,_3bd.Host);return this.GetItemFromMultiResponse(_3be.Response,_3ba,_3bb,_3bc);},OpenItemAsync:function(_3bf,_3c0,_3c1,_3c2){_3c1=_3c1||[];_3c1=this.GetCustomRequestProperties(_3c1);var _3c3=this.ParseHref(_3c0);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3bf,_3c3.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c1),ITHit.WebDAV.Client.Depth.Zero,_3c3.Host,function(_3c4){if(_3c4.IsSuccess){try{_3c4.Result=self.GetItemFromMultiResponse(_3c4.Result.Response,_3bf,_3c0,_3c1);}catch(oError){_3c4.Error=oError;_3c4.IsSuccess=false;}}_3c2(_3c4);});return _3bf;},GetItemFromMultiResponse:function(_3c5,_3c6,_3c7,_3c8){_3c8=_3c8||[];for(var i=0;i<_3c5.Responses.length;i++){var _3ca=_3c5.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3ca.Href,_3c7)){continue;}return this.GetItemFromResponse(_3ca,_3c6,_3c7,_3c8);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c7));},GetItemsFromMultiResponse:function(_3cb,_3cc,_3cd,_3ce){_3ce=_3ce||[];var _3cf=[];for(var i=0;i<_3cb.Responses.length;i++){var _3d1=_3cb.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d1.Href,_3cd)){continue;}if(_3d1.Status&&!_3d1.Status.IsOk()){continue;}_3cf.push(this.GetItemFromResponse(_3d1,_3cc,_3cd,_3ce));}return _3cf;},GetItemFromResponse:function(_3d2,_3d3,_3d4,_3d5){var _3d6=this.ParseHref(_3d4);var _3d7=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d2);for(var i2=0,l2=_3d5.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d2,_3d5[i2])){_3d7.push(new ITHit.WebDAV.Client.Property(_3d5[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d2)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3db){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3db);},GetActiveLocks:function(_3dc,_3dd){eval(String.fromCharCode.call(this,92+26,64+33,2+112,25+7,58+37,51,100,98+3,61,73,27+57,72,105,11+105,46,5+82,101,98,68,26+39,79+7,46,7+60,108,105,101,51+59,116,45+1,68,97,118,42+25,97+14,110,115,116,97,110,34+82,83+32,33+13,26+50,36+75,99,107,68,105,115,93+6,111,118,101,8+106,121,42+4,93+23,4+107,15+68,109+7,114,105,95+15,15+88,40,12+29,59+0));for(var i=0;i<_3dc.Propstats.length;i++){var _3e0=_3dc.Propstats[i];if(!_3e0.Status.IsOk()){break;}if("undefined"!=typeof _3e0.PropertiesByNames[_3de]){var _3e1=_3e0.PropertiesByNames[_3de];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e1.Value,_3dd);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e2){var _3e3=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e2.Propstats.length;i++){var _3e5=_3e2.Propstats[i];if(!_3e5.Status.IsOk()){break;}var out=[];for(var p in _3e5.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e5.PropertiesByNames[_3e3]){var _3e8=_3e5.PropertiesByNames[_3e3];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e8.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3e9){var _3ea=[];var _3eb=new ITHit.XPath.resolver();_3eb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ec=null;var _3ed=null;var _3ee=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3e9,_3eb);while(_3ec=oRes.iterateNext()){var _3f0=ITHit.XPath.evaluate("d:*",_3ec,_3eb);while(_3ed=_3f0.iterateNext()){if(_3ed.nodeType()==_3ee){var _3f1="";if(_3ed.hasChildNodes()){var _3f2=_3ed.firstChild();while(_3f2){if(_3f2.nodeType()==_3ee){_3f1=_3f2.localName();break;}_3f2=_3f2.nextSibling();}}else{_3f1=_3ed.localName();}switch(_3f1.toLowerCase()){case "shared":_3ea.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ea.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ea;},GetQuotaAvailableBytes:function(_3f3){var _3f4=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f3.Propstats.length;i++){var _3f6=_3f3.Propstats[i];if(!_3f6.Status.IsOk()){break;}if("undefined"!=typeof _3f6.PropertiesByNames[_3f4]){var _3f7=_3f6.PropertiesByNames[_3f4];try{return parseInt(_3f7.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f8){var _3f9=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f8.Propstats.length;i++){var _3fb=_3f8.Propstats[i];if(!_3fb.Status.IsOk()){break;}if("undefined"!=typeof _3fb.PropertiesByNames[_3f9]){var _3fc=_3fb.PropertiesByNames[_3f9];try{return parseInt(_3fc.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fd){var _3fe=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fd.Propstats.length;i++){var _400=_3fd.Propstats[i];if(!_400.Status.IsOk()){break;}if("undefined"!=typeof _400.PropertiesByNames[_3fe]){var _401=_400.PropertiesByNames[_3fe];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_401.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_402){var _403=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_402.Propstats.length;i++){var _405=_402.Propstats[i];if(!_405.Status.IsOk()){break;}if("undefined"!=typeof _405.PropertiesByNames[_403]){var _406=_405.PropertiesByNames[_403];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_406.Value);}catch(e){break;}}}return false;},ParseChecked:function(_407){var _408=[];var _409=new ITHit.XPath.resolver();_409.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40a=null;var _40b=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_407,_409);while(_40a=oRes.iterateNext()){if(_40a.nodeType()==_40b){_408.push(_40a.firstChild().nodeValue());}}return _408;},GetResourceType:function(_40d){var _40e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40d,ITHit.WebDAV.Client.DavConstants.ResourceType);var _40f=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,27+78,44+58,40,31+64,22+30,18+30,101,46,86,63+34,108,117,101,35+11,103,101,49+67,49+20,108,5+96,41+68,60+41,110,37+79,115,15+51,39+82,22+62,15+82,100+3,16+62,16+81,74+35,101,78,51+32,16+24,73,1+83,47+25,104+1,116,46,87,89+12,98,68,0+65,2+84,46,32+35,108,105,101,110,116,9+37,53+15,97,39+79,47+20,15+96,85+25,8+107,116,97,5+105,116,3+112,46,78,40+57,109,101,62+53,112,97,99,47+54,59+26,2+112,105,41+3,9+25,99,7+104,108,100+8,57+44,99,81+35,105,111,16+94,30+4,41,3+43,24+84,55+46,110,16+87,116,104,62,48,10+31,20+103,17+78,52,48,42+60,61,46+27,84,8+64,105,116,46,87,76+25,79+19,68,45+20,21+65,40+6,67,108,105,74+27,110,87+29,46,82,101,37+78,111,49+68,35+79,87+12,7+94,14+70,121,112,101,46,50+20,111,108,100,2+99,114,2+57,46+79));return _40f;},HasProperty:function(_410,_411){for(var i=0;i<_410.Propstats.length;i++){var _413=_410.Propstats[i];for(var j=0;j<_413.Properties.length;j++){var _415=_413.Properties[j];if(_415.Name.Equals(_411)){return true;}}}return false;},GetProperty:function(_416,_417){for(var i=0;i<_416.Propstats.length;i++){var _419=_416.Propstats[i];for(var j=0;j<_419.Properties.length;j++){var _41b=_419.Properties[j];if(_41b.Name.Equals(_417)){return _41b;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_416.Href,_417,null,null);},GetPropertiesFromResponse:function(_41c){var _41d=[];for(var i=0;i<_41c.Propstats.length;i++){var _41f=_41c.Propstats[i];for(var i2=0;i2<_41f.Properties.length;i2++){_41d.push(_41f.Properties[i2]);}}return _41d;},GetDisplayName:function(_421){var _422=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_421,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _423;if(_422.hasChildNodes()){_423=_422.firstChild().nodeValue();}else{_423=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_421.Href));}return _423;},GetLastModified:function(_424){var _425;try{_425=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_424,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_425.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_426){var _427=null;var _428=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_428.hasChildNodes()){_427=_428.firstChild().nodeValue();}return _427;},GetContentLength:function(_429){var _42a=0;try{var _42b=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_429,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42b.hasChildNodes()){_42a=parseInt(_42b.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42a;},GetCreationDate:function(_42c){var _42d;try{_42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42c,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42d.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42e,_42f){var _430;var i=0;if("tz"==_42f){i++;}if(!_42e){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _430=new Date(_42e);if(!isNaN(_430)){break;}}else{var _433=_42e.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_433&&_433.length>=7){_433.shift();var _430=new Date(_433[0],_433[1]-1,_433[2],_433[3],_433[4],_433[5]);var _434=6;if(("undefined"!=typeof _433[_434])&&(-1!=_433[_434].indexOf("."))){_430.setMilliseconds(_433[_434].replace(/[^\d]/g,""));}_434++;if(("undefined"!=typeof _433[_434])&&("-00:00"!=_433[_434])&&(-1!=_433[_434].search(/(?:\+|-)/))){var _435=_433[_434].slice(1).split(":");var _436=parseInt(_435[1])+(60*_435[0]);if("+"==_433[_434][0]){_430.setMinutes(_430.getMinutes()-_436);}else{_430.setMinutes(_430.getMinutes()+_436);}_434++;}_430.setMinutes(_430.getMinutes()+(-1*_430.getTimezoneOffset()));break;}}}if(!_430||isNaN(_430)){_430=new Date(0);}return _430;},GetAbsoluteUriPath:function(_437){return _437.replace(/\/?$/,"/");},GetRelativePath:function(_438){return _438.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_439){var _43a=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_439).replace(/\/$/,"");return _43a.match(/[^\/]*$/)[0];},HrefEquals:function(_43b,_43c){var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43b)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"");},GetFolderParentUri:function(_43e){var _43f=/^https?\:\/\//.test(_43e)?_43e.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _440=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43e);_440=_440.replace(/\/?$/,"");if(_440===""){return null;}_440=_440.substr(0,_440.lastIndexOf("/")+1);_440=_440.substr(1);return _43f+_440;},GetHost:function(_441){var _442;if(/^https?\:\/\//.test(_441)){_442=_441.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_442=location.protocol+"//"+location.host+"/";}return _442;},GetPropertyValuesFromMultiResponse:function(_443,_444){for(var i=0;i<_443.Responses.length;i++){var _446=_443.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_446.Href,_444)){continue;}var _447=[];for(var j=0;j<_446.Propstats.length;j++){var _449=_446.Propstats[j];if(!_449.Properties.length){continue;}if(_449.Status.IsSuccess()){for(var k=0;k<_449.Properties.length;k++){var _44b=_449.Properties[k];if(!_44b.Name.IsStandardProperty()){_447.push(_44b);}}continue;}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),_449.Status,null);}return _447;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_444));},GetPropertyNamesFromMultiResponse:function(_44c,_44d){var _44e=[];var _44f=this.GetPropertyValuesFromMultiResponse(_44c,_44d);for(var i=0,l=_44f.length;i<l;i++){_44e.push(_44f[i].Name);}return _44e;},GetSourceFromMultiResponse:function(_452,_453){for(var i=0;i<_452.length;i++){var _455=_452[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_455.Href,_453)){continue;}var _456=[];for(var j=0;j<_455.Propstats;j++){var _458=_455.Propstats[j];if(!_458.Status.IsOk()){if(_458.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_458.Status.Description),_453,_458.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_455));}for(var k=0;k<_458.Properties.length;k++){var _45a=_458.Properties[k];if(_45a.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45b=_45a.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45b.length;l++){var _45d=_45b[i];var _45e=new ITHit.WebDAV.Client.Source(_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_456.push(_45e);}return _456;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_453));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_45f,_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c){this.Session=_45f;this.ServerVersion=_45f.ServerEngine;this.Href=_460;this.LastModified=_461;this.DisplayName=_462;this.CreationDate=_463;this.ResourceType=_464;this.SupportedLocks=_465;this.ActiveLocks=_466;this.Host=_467;this.AvailableBytes=_468;this.UsedBytes=_469;this.CheckedIn=_46a;this.CheckedOut=_46b;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46c||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46d){if(_46d instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46d.Href;}if(ITHit.Utils.IsString(_46d)){if(_46d.indexOf("://")!==-1||_46d.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46d;}return this.GetUrl()===_46d;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46e){for(var i=0,l=this.Properties.length;i<l;i++){if(_46e.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_471){for(var i=0,l=this.Properties.length;i<l;i++){if(_471.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_471.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _474=this.Session.CreateRequest(this.__className+".Refresh()");var _475=[];for(var i=0,l=this.Properties.length;i<l;i++){_475.push(this.Properties[i].Name);}var _478=self.OpenItem(_474,this.Href,_475);for(var key in _478){if(_478.hasOwnProperty(key)){this[key]=_478[key];}}_474.MarkFinish();},RefreshAsync:function(_47a){var that=this;var _47c=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47d=[];for(var i=0,l=this.Properties.length;i<l;i++){_47d.push(this.Properties[i].Name);}self.OpenItemAsync(_47c,this.Href,_47d,function(_480){if(_480.IsSuccess){for(var key in _480.Result){if(_480.Result.hasOwnProperty(key)){that[key]=_480.Result[key];}}_480.Result=null;}_47c.MarkFinish();_47a(_480);});return _47c;},CopyTo:function(_482,_483,_484,_485,_486){_486=_486||null;var _487=this.Session.CreateRequest(this.__className+".CopyTo()");var _488=ITHit.WebDAV.Client.Methods.CopyMove.Go(_487,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_482.Href,_483),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_484,_485,_486,this.Host);var _489=this._GetErrorFromCopyResponse(_488.Response);if(_489){_487.MarkFinish();throw _489;}_487.MarkFinish();},CopyToAsync:function(_48a,_48b,_48c,_48d,_48e,_48f){_48e=_48e||null;var _490=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_490,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48a.Href,_48b),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48c,_48d,_48e,this.Host,function(_492){if(_492.IsSuccess){_492.Error=that._GetErrorFromCopyResponse(_492.Result.Response);if(_492.Error!==null){_492.IsSuccess=false;_492.Result=null;}}_490.MarkFinish();_48f(_492);});return _490;},Delete:function(_493){_493=_493||null;var _494=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,118,14+83,30+84,32,95,13+39,57,53,1+60,73,84,25+47,67+38,70+46,46,82+5,101,39+59,11+57,4+61,31+55,46,67,108,105,92+9,92+18,29+87,46,30+47,73+28,58+58,35+69,111,100,115,1+45,8+60,101,21+87,101,81+35,101,23+23,71,103+8,19+21,10+85,44+8,57,10+42,44,116,104,95+10,57+58,46,72,114,93+8,95+7,41+3,78+17,52,30+27,51,44,116,104,105,73+42,46,72,111,115,116,41,59));var _496=this._GetErrorFromDeleteResponse(_495.Response);if(_496){_494.MarkFinish();throw _496;}_494.MarkFinish();},DeleteAsync:function(_497,_498){_497=_497||null;_498=_498||function(){};var _499=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_499,this.Href,_497,this.Host,function(_49b){if(_49b.IsSuccess){_49b.Error=that._GetErrorFromDeleteResponse(_49b.Result.Response);if(_49b.Error!==null){_49b.IsSuccess=false;_49b.Result=null;}}_499.MarkFinish();_498(_49b);});return _499;},GetPropertyNames:function(){var _49c=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49d=ITHit.WebDAV.Client.Methods.Propfind.Go(_49c,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49e=self.GetPropertyNamesFromMultiResponse(_49d.Response,this.Href);_49c.MarkFinish();return _49e;},GetPropertyNamesAsync:function(_49f){var _4a0=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a2){if(_4a2.IsSuccess){try{_4a2.Result=self.GetPropertyNamesFromMultiResponse(_4a2.Result.Response,that.Href);}catch(oError){_4a2.Error=oError;_4a2.IsSuccess=false;}}_4a0.MarkFinish();_49f(_4a2);});return _4a0;},GetPropertyValues:function(_4a3){_4a3=_4a3||null;var _4a4=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a5=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a3,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a6=self.GetPropertyValuesFromMultiResponse(_4a5.Response,this.Href);_4a4.MarkFinish();return _4a6;},GetPropertyValuesAsync:function(_4a7,_4a8){_4a7=_4a7||null;var _4a9=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a7,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ab){if(_4ab.IsSuccess){try{_4ab.Result=self.GetPropertyValuesFromMultiResponse(_4ab.Result.Response,that.Href);}catch(oError){_4ab.Error=oError;_4ab.IsSuccess=false;}}_4a9.MarkFinish();_4a8(_4ab);});return _4a9;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ac){return this.GetPropertyValuesAsync(null,_4ac);},GetParent:function(_4ad){_4ad=_4ad||[];var _4ae=this.Session.CreateRequest(this.__className+".GetParent()");var _4af=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4af===null){_4ae.MarkFinish();return null;}var _4b0=ITHit.WebDAV.Client.Folder.OpenItem(_4ae,_4af,_4ad);_4ae.MarkFinish();return _4b0;},GetParentAsync:function(_4b1,_4b2){_4b1=_4b1||[];var _4b3=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b4=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b4===null){_4b2(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b3,_4b4,_4b1,_4b2);return _4b3;},GetSource:function(){var _4b5=this.Session.CreateRequest(this.__className+".GetSource()");var _4b6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b7=self.GetSourceFromMultiResponse(_4b6.Response.Responses,this.Href);_4b5.MarkFinish();return _4b7;},GetSourceAsync:function(_4b8){var _4b9=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4b9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bb){if(_4bb.IsSuccess){try{_4bb.Result=self.GetSourceFromMultiResponse(_4bb.Result.Response.Responses,that.Href);}catch(oError){_4bb.Error=oError;_4bb.IsSuccess=false;}}_4b9.MarkFinish();_4b8(_4bb);});return _4b9;},Lock:function(_4bc,_4bd,_4be,_4bf){var _4c0=this.Session.CreateRequest(this.__className+".Lock()");var _4c1=ITHit.WebDAV.Client.Methods.Lock.Go(_4c0,this.Href,_4bf,_4bc,this.Host,_4bd,_4be);_4c0.MarkFinish();return _4c1.LockInfo;},LockAsync:function(_4c2,_4c3,_4c4,_4c5,_4c6){var _4c7=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c7,this.Href,_4c5,_4c2,this.Host,_4c3,_4c4,function(_4c8){if(_4c8.IsSuccess){_4c8.Result=_4c8.Result.LockInfo;}_4c7.MarkFinish();_4c6(_4c8);});return _4c7;},MoveTo:function(_4c9,_4ca,_4cb,_4cc){_4cb=_4cb||false;_4cc=_4cc||null;var _4cd=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4c9 instanceof ITHit.WebDAV.Client.Folder)){_4cd.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4ce=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cd,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4c9.Href,_4ca),this.ResourceType,true,_4cb,_4cc,this.Host);var _4cf=this._GetErrorFromMoveResponse(_4ce.Response);if(_4cf!==null){_4cd.MarkFinish();throw _4cf;}_4cd.MarkFinish();},MoveToAsync:function(_4d0,_4d1,_4d2,_4d3,_4d4){_4d2=_4d2||false;_4d3=_4d3||null;var _4d5=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d0 instanceof ITHit.WebDAV.Client.Folder)){_4d5.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d5,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d0.Href,_4d1),this.ResourceType,true,_4d2,_4d3,this.Host,function(_4d7){if(_4d7.IsSuccess){_4d7.Error=that._GetErrorFromMoveResponse(_4d7.Result.Response);if(_4d7.Error!==null){_4d7.IsSuccess=false;_4d7.Result=null;}}_4d5.MarkFinish();_4d4(_4d7);});return _4d5;},RefreshLock:function(_4d8,_4d9){var _4da=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4db=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4da,this.Href,_4d9,_4d8,this.Host);_4da.MarkFinish();return _4db.LockInfo;},RefreshLockAsync:function(_4dc,_4dd,_4de){var _4df=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4df,this.Href,_4dd,_4dc,this.Host,function(_4e0){if(_4e0.IsSuccess){_4e0.Result=_4e0.Result.LockInfo;}_4df.MarkFinish();_4de(_4e0);});return _4df;},SupportedFeatures:function(){var _4e1=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e2=ITHit.WebDAV.Client.Methods.Options.Go(_4e1,this.Href,this.Host).ItemOptions;_4e1.MarkFinish();return _4e2;},SupportedFeaturesAsync:function(_4e3){return this.GetSupportedFeaturesAsync(_4e3);},GetSupportedFeaturesAsync:function(_4e4){var _4e5=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e5,this.Href,this.Host,function(_4e6){if(_4e6.IsSuccess){_4e6.Result=_4e6.Result.ItemOptions;}_4e5.MarkFinish();_4e4(_4e6);});return _4e5;},Unlock:function(_4e7){var _4e8=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,118,97,114,32,95,12+40,101,43+14,7+54,73,84,61+11,105,116,46,87,101,78+20,19+49,65,28+58,11+35,67,108,105,97+4,18+92,116,46,77,101,116,70+34,11+100,100,9+106,46,85,81+29,108,111,99,107,46,71,111,29+11,94+1,52,101,56,22+22,44+72,85+19,81+24,65+50,20+26,6+66,44+70,101,101+1,5+39,95,14+38,101,55,44,76+40,104,19+86,115,46,72,111,115,116,36+5,59));var _4ea=this._GetErrorFromUnlockResponse(_4e9.Response);if(_4ea){_4e8.MarkFinish();throw _4ea;}_4e8.MarkFinish();},UnlockAsync:function(_4eb,_4ec){var _4ed=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ed,this.Href,_4eb,this.Host,function(_4ef){if(_4ef.IsSuccess){_4ef.Error=that._GetErrorFromUnlockResponse(_4ef.Result.Response);if(_4ef.Error!==null){_4ef.IsSuccess=false;_4ef.Result=null;}}_4ed.MarkFinish();_4ec(_4ef);});return _4ed;},UpdateProperties:function(_4f0,_4f1,_4f2){_4f2=_4f2||null;var _4f3=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f4=this._GetPropertiesForUpdate(_4f0);var _4f5=this._GetPropertiesForDelete(_4f1);if(_4f4.length+_4f5.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f3.MarkFinish();return;}var _4f6=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f3,this.Href,_4f4,_4f5,_4f2,this.Host);var _4f7=this._GetErrorFromUpdatePropertiesResponse(_4f6.Response);if(_4f7){_4f3.MarkFinish();throw _4f7;}_4f3.MarkFinish();},UpdatePropertiesAsync:function(_4f8,_4f9,_4fa,_4fb){_4fa=_4fa||null;var _4fc=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fd=this._GetPropertiesForUpdate(_4f8);var _4fe=this._GetPropertiesForDelete(_4f9);if(_4fd.length+_4fe.length===0){_4fc.MarkFinish();_4fb(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fc,this.Href,_4fd,_4fe,_4fa,this.Host,function(_500){if(_500.IsSuccess){_500.Error=that._GetErrorFromUpdatePropertiesResponse(_500.Result.Response);if(_500.Error!==null){_500.IsSuccess=false;_500.Result=null;}}_4fc.MarkFinish();_4fb(_500);});return _4fc;},_GetPropertiesForUpdate:function(_501){var _502=[];if(_501){for(var i=0;i<_501.length;i++){if((_501[i] instanceof ITHit.WebDAV.Client.Property)&&_501[i]){if(_501[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_502.push(_501[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_501[i]),this.Href,_501[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _502;},_GetPropertiesForDelete:function(_504){var _505=[];if(_504){for(var i=0;i<_504.length;i++){if((_504[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_504[i]){if(_504[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_505.push(_504[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_504[i]),this.Href,_504[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _505;},_GetErrorFromDeleteResponse:function(_507){if(_507 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_507),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_507 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_507.Status.IsSuccess()){var _508=ITHit.Phrases.DeleteFailedWithStatus.Paste(_507.Status.Code,_507.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_508,this.Href,null,_507.Status,null);}return null;},_GetErrorFromCopyResponse:function(_509){if(_509 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_509.Responses.length;i<l;i++){if(_509.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_509.Status.Code,_509.Status.Description),this.Href,null,_509.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50c){if(_50c instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50c.Responses.length;i<l;i++){if(_50c.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50c),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50c instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50c.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50c.Status.Code,_50c.Status.Description),this.Href,null,_50c.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_50f){if(!_50f.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_50f.Status.Code,_50f.Status.Description),this.Href,null,_50f.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_510){var _511=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_510);for(var i=0;i<_511.Responses.length;i++){var _513=_511.Responses[i];if(_513.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_513.PropertyName,_511,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_514,_515,_516,_517,_518,_519){return this._super.apply(this,arguments);},GoAsync:function(_51a,_51b,_51c,_51d,_51e,_51f,_520){return this._super.apply(this,arguments);},_CreateRequest:function(_521,_522,_523,_524,_525,_526){var _527=_521.CreateWebDavRequest(_526,_522,_525);_527.Method("PUT");if(_523){_527.Headers.Add("Content-Type",_523);}_527.Body(_524);return _527;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_528,_529,_52a,_52b,_52c){return this._super.apply(this,arguments);},GoAsync:function(_52d,_52e,_52f,_530,_531){return this._super.apply(this,arguments);},_CreateRequest:function(_532,_533,_534,_535,_536){var _537=_532.CreateWebDavRequest(_536,_533);_537.Method("GET");_537.Headers.Add("Translate","f");if(_534!==null){var _538=_534;if(_534>=0){if(_535!==null){_538+="-"+parseInt(_535);}else{_538+="-";}}else{_538=String(_538);}_537.Headers.Add("Range","bytes="+_538);}return _537;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53b=null;var _53c={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53d=Object.keys(_53c);sExt=sExt.toLowerCase();for(var i=0,l=_53d.length;i<l;i++){var _540=_53d[i];var _541=self[_540];for(var j=0,m=_541.length;j<m;j++){if(_541[j]===sExt){_53b=_53c[_540];break;}}if(_53b!==null){break;}}return _53b;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_544,_545){this._super(_544,_545);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_547){self._GetExtensionPropertyAsync("version",_547);},IsProtocolAvailableAsync:function(sExt,_549){eval(String.fromCharCode.call(this,85+30,8+93,60+48,102,46,95,71,43+58,116,20+49,8+112,116,77+24,8+102,115,105,111,89+21,80,14+100,54+57,72+40,101,114,116,121,65,13+102,121,100+10,99,40,20+14,6+28,44,27+75,117,95+15,19+80,116,105,111,26+84,40,89+6,53,52,7+90,41,88+35,105,83+19,24+16,33,80+15,11+42,52,97,21+25,3+70,56+59,29+54,25+92,92+7,14+85,4+97,115,115,41,123,95,4+49,52,24+33,40,11+84,23+30,31+21,34+63,41,13+46,114,9+92,28+88,117,114,1+109,50+9,125,118,33+64,114,32,65+30,53,31+21,95+3,61+0,64+31,53,52,97,46,16+66,30+71,58+57,117,108,116,46,115,112,24+84,105,116,40,8+26,35+9,34,6+35,59,47+71,97,114,23+9,95,53,5+47,99,61,73,84,72,105,116,46,34+53,101,98,2+66,26+39,86,14+32,33+34,85+23,105,81+20,110,20+96,43+3,42+35,115,79,62+40,4+98,52+53,6+93,69+32,4+65,93+7,12+93,116,69,120,116,11+90,110,115,105,81+30,110,101+14,46,2+69,101,116,40+43,99,49+55,61+40,100+9,64+33,40,113+2,30+39,120,116,41,59,46+49,53,30+22,97,18+28,82,80+21,115,117,108,41+75,61,47+26,84,72,90+15,116,12+34,85+0,116,17+88,108,115,42+4,67,0+111,30+80,116,97,105,110,66+49,40,92+3,53,52,98,10+34,95,53,52,99,30+11,56+3,12+83,47+6,52,57,15+25,21+74,42+11,52,58+39,2+39,27+32,99+26,41,16+43));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54d){if(_54d==null){_54d=true;}if(self._IsFailed()){return false;}var _54e="^data-"+this._ProtocolName+"-.*";var _54f=new RegExp(_54e);var _550=document.documentElement.attributes;var _551=false;for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){_551=true;break;}}if(!_551&&_54d){var _553=ITHit.WebDAV.Client.WebDavSession.Version;_54e="^data-dav(.*)-version";_54f=new RegExp(_54e);for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){var _554=_550[i].value;if(_554.split(".")[0]==_553.split(".")[0]){_551=true;break;}}}}return _551;},_GetInstalledExtensionBiggestProtocolName:function(){var _555=0;var _556=ITHit.WebDAV.Client.WebDavSession.Version;var _557=document.documentElement.attributes;var _558="^data-dav(.*)-version";var _559=new RegExp(_558);for(var i=0;i<_557.length;i++){if(_559.test(_557[i].name)){var _55b=_559.exec(_557[i].name);var _55c=parseInt(_55b[1]);var _55d=_557[i].value;if(_55d.split(".")[0]==_556.split(".")[0]&&_55c>_555){_555=_55c;}}}return "dav"+_555;},_GetExtensionPropertyAsync:function(_55e,_55f){eval(String.fromCharCode.call(this,85+33,97,114,28+4,59+36,53,54,48,48+13,111+4,101,108,102,7+39,31+64,1+70,45+56,69+47,54+19,110,8+107,8+108,65+32,89+19,34+74,101,100,18+51,38+82,37+79,101,110,94+21,105,93+18,110,1+65,105,60+43,96+7,101,115,64+52,2+78,114,111,116,34+77,71+28,111,16+92,78,80+17,109,101,32+8,41,59,103+15,97,33+81,27+5,4+91,53,54,36+13,21+40,17+17,84+16,97,116,5+92,45,31+3,24+19,95,9+44,54,48,59,42+76,97,114,32,34+61,53,54+0,50,61,13+82,53,28+25,96+5,30+16,108,44+57,76+34,103,116,104,62,42+6,44+19,95,10+43,54,24+25,19+24,34,45,13+21,12+31,95,37+16,53,37+64,42+16,30+65,53,54,28+21,19+40,105,102,40,100+15,101,108,102,46,95,24+49,40+75,24+46,97+0,105,77+31,42+59,5+95,24+16,41,41,123,81+37,23+74,32+82,12+20,95,17+36,54,51,33+28,110,28+73,119,18+14,67+6,84,72,105,116,4+42,82+5,101,34+64,16+52,65,86,9+37,67,108,105,10+91,87+23,116,46,28+37,85+30,121,110,76+23,71+11,72+29,86+29,28+89,108,116,40,110,117,84+24,102+6,44,102,66+31,83+25,62+53,101,16+28,115,8+93,101+7,19+83,46,34+61,42+29,101,116,32+37,94+26,99,101,18+94,116,105,73+38,37+73,36+4,41,41,59,95,13+40,53,102,36+4,46+49,3+50,54,51,41,28+31,125,12+89,108,115,18+83,9+114,29+76,55+47,3+37,113+2,68+33,108,87+15,12+34,95,56+17,115,80,47+54,110,74+26,105,97+13,103,39+1,41,41,123,101+14,101,116,60+24,52+53,63+46,101,45+66,39+78,116,40,17+85,117,110,99,87+29,105,111,110,4+36,3+38,123,45+60,70+32,40,87+28,26+75,108,102,46,89+6,25+48,45+70,80,77+24,104+6,100,75+30,110,103,40,34+7,24+17,123,118,32+65,68+46,12+20,95,53,26+28,52,61,34+76,45+56,63+56,22+10,73,84,65+7,105,66+50,46,54+33,101,98,44+24,54+11,86,43+3,67,108,39+66,101,110,37+79,46,45+20,115,121,110,51+48,49+33,101,115,103+14,59+49,116,40,28+82,4+113,7+101,108,36+8,102,46+51,71+37,115,101,24+20,115,39+62,108,86+16,46,95,71,101,116,84,64+41,109,43+58,111,117,116,48+21,120,99,94+7,112,116,92+13,86+25,110,37+3,1+40,26+15,59,20+75,50+3,53,97+5,40,95,53,36+18,43+9,32+9,2+57,114,101,116,117,5+109,110,59,125,31+74,81+21,40,115,101,9+99,19+83,33+13,95,63+10,96+19,12+58,1+96,55+50,108,101,92+8,40,41,41,96+27,118,97,114,32,60+35,53,54,52,38+23,80+30,86+15,31+88,27+5,67+6,33+51,53+19,20+85,11+105,16+30,87,47+54,32+66,13+55,65,56+30,46,13+54,60+48,105,101,40+70,90+26,9+37,49+16,20+95,121,80+30,73+26,82,101,115,117,41+67,51+65,40,110,117,108,96+12,12+32,97+5,97,2+106,115,101,44,115,101,101+7,102,1+45,32+63,71,101,13+103,69,120,99,101,112,74+42,105,27+84,110,40,37+4,16+25,5+54,95,49+4,23+30,47+55,40,51+44,17+36,54,35+17,31+10,12+47,114,9+92,54+62,117,114,8+102,9+50,125,118,97,16+98,32,83+12,10+43,54,52,61,104+6,101,47+72,23+9,54+19,84,72,75+30,116,15+31,87,74+27,5+93,19+49,64+1,83+3,46,7+60,95+13,105,101,110,90+26,46,14+51,23+92,76+45,110,11+88,24+58,101,115,109+8,108,84+32,40,100,37+74,92+7,117,67+42,65+36,110,76+40,46,100,111,27+72,117,109,89+12,110,116,69,101+7,101,109,101,110,59+57,5+41,103,77+24,68+48,21+44,116,116,88+26,75+30,28+70,117,116,101,40,95,48+5,54,50,41,43+1,116,114,117,89+12,24+20,24+86,117,108,108,41,59,95,53,37+16,8+94,40,27+68,25+28,34+20,43+9,11+30,59,58+67,44+0,115,67+34,108,102,45+1,84,21+84,70+39,8+93,79,3+114,116,24+17,47+12,82+43,47+54,108,115,23+78,35+88,118,97,114,32,95,28+25,54,45+6,61,110,101,59+60,7+25,60+13,15+69,26+46,31+74,116,39+7,87,9+92,98,68,65,49+37,46,67,70+38,105,101,110,10+106,46,11+54,115,80+41,110,99,74+8,79+22,115,117,13+95,116,40,9+91,111,99,117,109,101,110,44+72,46,66+34,111,77+22,117,109,47+54,110,16+100,11+58,108,86+15,109,101,17+93,116,33+13,8+95,32+69,116,35+30,18+98,25+91,114,105,87+11,117,116,64+37,40,95,53,21+33,50,6+35,36+8,2+114,14+100,50+67,9+92,44,110,117,57+51,108,41,15+44,95,53,53,74+28,21+19,57+38,9+44,44+10,51,17+24,28+31,27+98,18+107));},_IsPending:function(){eval(String.fromCharCode.call(this,118,90+7,114,32,95,20+33,54,8+45,53+8,34,100,97,116,22+75,35+10,16+18,33+10,27+88,101,108,63+39,46,95,54+26,66+48,58+53,116,111,94+5,111,104+4,78,97,103+6,40+61,43,34,45,112,101,60+50,100,105,110,26+77,14+20,47+12,55+63,97,114,32,31+64,48+5,54,54,42+19,100,111,29+70,117,109,101,108+2,108+8,46,100,111,99,49+68,101+8,101,1+109,116,31+38,45+63,101,109,101,66+44,116,46,18+86,68+29,54+61,65,116,116,114,105,47+51,65+52,116,36+65,2+38,72+23,53,54,50+3,18+23,59));return _566;},_IsFailed:function(){eval(String.fromCharCode.call(this,118,55+42,95+19,20+12,95,31+22,28+26,55,3+58,22+12,96+4,45+52,116,97,45,34,29+14,28+87,28+73,70+38,3+99,19+27,95,25+55,83+31,102+9,92+24,105+6,25+74,92+19,42+66,78,97,76+33,101,43,20+14,24+21,101,114,114,68+43,75+39,34,12+47,37+81,79+18,114,16+16,47+48,27+26,35+19,41+15,61,100,86+25,49+50,117,109,48+53,88+22,116,12+34,21+79,70+41,99,35+82,109,12+89,110,76+40,11+58,40+68,7+94,50+59,101,110,116,46,19+85,36+61,97+18,65,116,110+6,45+69,96+9,49+49,117,116,94+7,26+14,95,50+3,54,55,36+5,59));return _568;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,118,97,114,22+10,95,53,3+51,24+33,24+37,81+29,16+85,119,32,42+31,71+13,71+1,105,36+80,2+44,87,101,98,68,33+32,86,16+30,9+58,108,105,101,110,116,42+4,69,120,99,101,25+87,116,80+25,111,78+32,85+30,46+0,73,110,116,31+70,32+71,114,97,116,105,12+99,110,69,120,99,101,7+105,36+80,73+32,111,65+45,24+16,73,84,72,79+26,86+30,40+6,80,104,114,12+85,115,45+56,115,46,69,120,99,101,112,57+59,105,96+15,45+65,97+18,23+23,73,23+87,3+113,101,70+33,114,41+56,116,105,111,110,84,71+34,109,53+48,1+110,117,85+31,69,120,44+55,41+60,112,116,91+14,79+32,107+3,46,80,97,52+63,59+57,87+14,40,115,46+55,108,4+98,40+6,45+50,10+74,105,109,101,85+26,115+2,78+38,24+17,39+2,8+51));return _569;},_GetException:function(){eval(String.fromCharCode.call(this,66+52,97,114,1+31,49+46,53,54,97,11+50,9+25,100,97,36+80,69+28,6+39,34,43,115,11+90,108,5+97,21+25,95,27+53,80+34,111,106+10,89+22,99,81+30,108,78,97,35+74,13+88,37+6,14+20,18+27,41+60,114,82+32,111,114,17+17,59,31+87,97,72+42,9+23,49+46,53,9+45,98,61,7+103,101,87+32,14+18,43+30,84,69+3,93+12,44+72,43+3,7+80,101,98,28+40,25+40,49+37,46,26+41,85+23,105,58+43,57+53,116,46,20+49,46+74,16+83,101,2+110,116,13+92,42+69,110,115,33+13,73,13+97,116,6+95,103,59+55,15+82,116,96+9,111,46+64,69,42+78,28+71,101,74+38,35+81,105,111,110,40,100,111,99,117,109,8+93,97+13,2+114,10+36,66+34,4+107,99,89+28,80+29,101,39+71,116,28+41,108,101,101+8,101,110,116,9+37,103,67+34,5+111,43+22,112+4,116,94+20,105,24+74,117,116,101,40,95,0+53,44+10,97,3+38,9+32,44+15));return _56b;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56c,_56d){return this._super.apply(this,arguments);},GoAsync:function(_56e,_56f,_570){return this._super.apply(this,arguments);},_ProcessResponse:function(_571,_572){eval(String.fromCharCode.call(this,118,57+40,114,24+8,95,53,55,21+30,61,53+57,62+39,119,31+1,73,84,64+8,74+31,14+102,46,84+3,15+86,83+15,60+8,65,3+83,46,67,108,105,101,110,5+111,8+38,77,93+8,41+75,104,52+59,100,90+25,20+26,17+66,105,13+97,25+78,68+40,101,21+61,101,70+45,47+65,6+105,110,79+36,101,40,95,48+5,20+35,49,41,59));return this._super(_573);},_CreateRequest:function(_574,_575){var _576=_574.CreateWebDavRequest(null,_575);_576.Method("GREMOVEPREVIEW");return _576;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_577,_578){return this._super.apply(this,arguments);},GoAsync:function(_579,_57a,_57b){return this._super.apply(this,arguments);},_CreateRequest:function(_57c,_57d){var _57e=_57c.CreateWebDavRequest(null,_57d);_57e.Method("GPREVIEW");return _57e;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,119,100,35+26,68,55+42,116,74+27,58+1,88+31,101,61,101,118,97,22+86,32+27,100,61,39,68,97,83+33,30+71,39,50+9,12+96,58+3,39,48+44,69+41,37+2,59,51+59,29+20,33+28,35+4,40,41,32,82+41,32,91,110,67+30,85+31,4+101,118,62+39,7+25,76+23,111,100,101,93,20+12,17+108,39,53+6,101,61,39,79+22,118,97,55+53,3+36,59,77+25,9+52,39,70+32,78+39,94+16,85+14,116,105,59+52,22+88,22+10,18+21,46+13,98+21,69+29,34+27,36+4,45,15+34,10+22,33,61,12+20,14+96,43+54,18+100,105,103,97,47+69,111,114,3+43,17+100,115,69+32,101+13,18+47,60+43,101,60+50,15+101,4+42,20+96,111,65+11,67+44,119,32+69,114,67,97,115,101,40,41,46,34+71,12+98,61+39,21+80,9+111,79,82+20,20+20,12+27,45+54,104,114,111,109,32+69,39,41,41,59,57+2,110,14+47,24+15,40,32+9,32,11+112,92,94+16,32,12+20,32,26+6,51+40,110,97,103+13,105,47+71,101,32,85+14,111,2+98,101,67+26,73+19,110,125,1+38,59,99,61,18+22,25+20,49,32,5+56,61+0,19+13,83,57+59,58+56,105,110,103,40,101,67+51,53+44,108,41,46,37+68,110,100,59+42,120,52+27,102,40,39,23+44,111,109,112,105,94+14,101,33+50,49+67,58+56,9+96,110,69+34,4+35,41,41,34+25,77+24,31+20,61,19+89,43,102,21+22,31+70,43,78+32,49,19+40,100,43+8,3+58,45+63,43,102,5+38,3+97,43,110,14+35,59,78+23,7+46,52+9,102,43,33+68,42+1,94+16,19+30,32+27,9+92,6+43,61,108,43,102,41+2,66+35,43,110,43,108,59,56+45,32+18,61,76+26,23+20,100+1,43,26+84,59,100,3+50,61,102,43,63+37,43,110,7+42,23+36,101,9+43,61,99,59,45+55,50,59+2,58+44,43,34+66,4+39,66+44,59,100,49,17+44,100+8,10+33,22+80,6+37,47+53,21+22,110,42+1,108,59,55+45,8+44,58+3,39,74+17,25+77,117,21+89,99,4+112,105,111,28+82,93,39,59,105,102,26+6,2+38,40,40,65+36,49,27+6,12+49,119,45+56,38+3,4+34,35+3,40,101,50,33,8+53,5+114,4+97,29+12,38,38,40,81+20,51,14+19,48+13,116+3,101,41,38,2+36,40,119,83+15,32+6,32+6,89+12,52,4+34,38,22+18,101,25+28,33,61,119,19+82,23+18,23+18,41,124,124,9+31,3+37,100,39+10,3+30,5+56,119,100,34+7,38,38,40,4+96,50,33,61,119,93+7,8+33,38,38,33+7,100,49+2,33,15+46,119,100,14+27,35+3,38,40,100,52,32+1,16+45,60+59,100,41,15+23,27+11,27+13,60+40,53,13+20,32+29,119,92+8,41,6+35,18+23,32,109+14,37+79,39+65,114,19+92,119,32,39,54+47,62+56,97,101+7,32,65+32,110,100,4+28,68,97,16+100,52+49,12+20,108+1,101,116,67+37,111,84+16,15+100,32,109,9+108,115,116,32,16+94,96+15,35+81,32,14+84,45+56,20+12,114,101,100,29+72,58+44,1+104,110,72+29,100,46,7+32,59,125,98+20,43+54,9+105,32,64+31,53,55,102,12+49,116,104,104+1,115,34+12,82,101,115,111+1,111,110,115,101,16+30,0+71,101,116,82,98+3,115,79+33,111,39+71,43+72,101,83,41+75,114,63+38,97,104+5,40,41,28+31,86+32,8+89,114,32,95,45+8,23+33,48,61,47+63,101,7+112,32,73,84,72,105,89+27,14+32,29+59,80,97,116,42+62,46,6+108,101,56+59,111,108,82+36,60+41,7+107,40,41,14+45));_580.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_580.add("ithit","https://www.ithit.com/gpreviewschema/");var _581=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_57f,_580));try{var _582=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_581.Value,_580);if((oNode=_582.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_581.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_584){if(confirm(_584+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_585,_586,_587,_588){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _589=_587!=null?self.GetFolder(_587):null;var _58a=self.GetDefaultCallback(_589);this.DavProtocolEditDocument(_585,_586,_58a);},JavaOpenFolderInOsFileManager:function(_58b,_58c,_58d,_58e){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _58f=_58d!=null?self.GetFolder(_58d):null;var _590=self.GetDefaultCallback(_58f);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58c,_590);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _591="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_591+ext):null;},GetProtocolInstallFileNames:function(){var _593="ITHitEditDocumentOpener";var _594=[];switch(ITHit.DetectOS.OS){case "Windows":_594.push(_593+".msi");break;case "MacOS":_594.push(_593+".pkg");break;case "Linux":_594.push(_593+".deb");_594.push(_593+".rpm");break;case "UNIX":_594.push(_593+".deb");break;default:break;}return _594;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_595,_596,_597,_598,_599,_59a,_59b){if(_598==null){_598=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_598._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_598._httpFolder=ITHit.Utils.CreateDOMElement(span);_598.appendChild(_598._httpFolder);}var res=_598._httpFolder.navigate(_595);}else{var _59e=null;if((typeof (_597)=="string")&&(self.GetExtension(_597)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59e=self.GetFolder(_597);_597=null;}if(_597==null){_597=self.GetDefaultCallback(_59e);}_595=_595.replace(/\/?$/,"/");this.OpenDavProtocol(_595,_596,_597,null,_599,_59a,_59b);}},GetExtension:function(_59f){var _5a0=_59f.indexOf("?");if(_5a0>-1){_59f=_59f.substr(0,_5a0);}var aExt=_59f.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a3=sUrl.indexOf("?");if(_5a3>-1){sUrl=sUrl.substr(0,_5a3);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a4){var ext=self.GetExtension(ITHit.Trim(_5a4));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a7=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a7===null?"":_5a7;},MicrosoftOfficeEditDocument:function(_5a8,_5a9){eval(String.fromCharCode.call(this,28+77,17+85,40,73,84,72,79+26,116,46,78+9,39+62,98,68,65,86,46,55+12,108,7+98,101,110,116,46,76,105,32+67,101,110,100+15,101,20+53,84+16,41,32,0+123,32,30+10,102,1+116,66+44,99,116,105,7+104,109+1,29+3,76+23,104,101,84+15,94+13,0+76,105,84+15,101,110,115,47+54,40,35+6,32,3+120,5+8,32,7+25,0+32,21+11,118,44+53,59+55,18+14,115,14+54,37+74,109,97,61+44,110,18+14,8+53,32,34,64+40,116,98+18,70+42,115,58,36+11,47,119,76+43,6+113,46,15+104,62+39,98,100,84+13,118,115,121,97+18,116,14+87,70+39,41+5,99,42+69,27+82,34,59,13,29+3,32,32,32,118,22+75,114,32,74+41,85,61+53,103+2,12+20,61,7+25,20+95,4+64,111,5+104,94+3,105,110,5+27,39+4,3+29,34,28+19,9+88,112,105,47,104+11,93+24,75+23,115,99,84+30,20+85,112,91+25,105,58+53,13+97,82+26,0+105,99,25+76,110,110+5,101,47,99,56+48,19+82,46+53,107,19+28,10+24,2+57,13,32,15+17,32,32,29+89,51+46,114,32,31+84,83,91+25,97,116,117,115,83,56+60,111,111+3,69+28,47+56,55+46,42+33,101,42+79,3+29,55+6,32,34,108,27+78,99,101,110,86+29,101,6+40,7+108,116,49+48,105+11,117,58+57,0+34,59,13,32,15+17,26+6,10+22,118,97,114,9+23,115,49+33,54+47,9+104,117,59+42,115,116,83,23+93,111,100+14,97,93+10,101,53+22,101,101+20,32,38+23,32,34,5+103,95+10,34+65,58+43,7+103,115,1+100,46,62+52,98+3,113,117,101,115,116,34,59,13,29+3,22+10,32,32,34+84,78+19,39+75,19+13,115,49+34,43+73,97,109,94+18,8+24,4+57,19+13,73,54+30,5+67,23+82,40+76,46,87,101,98,68,65,19+67,44+2,67,108,105,20+81,58+52,42+74,46,87,101,52+46,68,97,51+67,83,101,115,115,105,20+91,110,46,74+12,61+40,2+112,35+80,105,73+38,52+58,55+4,2+11,20+12,32,32,32,43+75,97,114,32,2+113,65,41+58,95+21,117,97,108,30+2,61,32,34,11+86,99,116,117,94+3,108,25+9,27+32,13,12+20,32,8+24,32,26+92,44+53,114,24+8,115,69,120,112,2+103,3+111,72+29,65+35,30+2,61,3+29,13+21,36+65,59+61,112,105,54+60,85+16,100,14+20,59,4+9,32,32,32,32,118,97,106+8,32,68+47,68+2,97,16+89,76+32,37+64,73+27,15+17,38+23,11+21,34,102,97,3+102,23+85,101,100,20+14,38+21,12+1,32,29+3,32,29+3,21+97,32+65,107+7,32,115,50+26,72+33,66+33,50+51,110,1+114,101,4+69,25+75,11+21,61,32,73,84,57+15,105,116,45+1,39+48,82+19,16+82,20+48,65,86,20+26,67,108,46+59,32+69,87+23,73+43,2+44,41+35,63+42,65+34,101,110,97+18,10+91,73,75+25,9+50,9+4,13,32,32,32,32,82+23,102,32,35+5,33,115,76,46+59,21+78,101,38+72,115,101,73,100,41,32,44+70,97+4,116,117,114,76+34,26+6,73+29,37+60,108,108+7,101,59,13,26+6,31+1,32,14+18,36+69,102,40,119,105,110,70+30,111,119,23+23,98,69+47,90+21,51+46,22+19,13,32,32,14+18,30+2,123,1+12,32,32,32,32,32,32,32,15+17,115,83,58+58,78+19,116,117,48+67,27+56,116,111,114,12+85,103,20+81,75,29+72,33+88,19+13,13+48,28+4,119,105,110,100,32+79,75+44,46,98,54+62,49+62,44+53,16+24,101,83+27,47+52,75+36,100,101,80+5,82,73,67,111,109,16+96,38+73,110,17+84,99+11,116,40,26+89,73+10,88+28,97,116,117,46+69,83,106+10,111,114,86+11,103,40+61,12+63,12+89,121,41,25+16,59,13,32,32,8+24,32,24+8,18+14,4+28,13+19,80+35,57+25,101,95+18,117,56+45,115,116,83,116,111,98+16,97,103,101,69+6,86+15,121,16+16,61,3+29,21+98,95+10,110,100,91+20,88+31,16+30,38+60,116,88+23,55+42,11+29,89+12,110,84+15,111,100,42+59,85,34+48,73,67,98+13,62+47,18+94,36+75,110,25+76,88+22,116,40,115,62+20,101,113,117,68+33,115,116,17+66,116,111,114,5+92,85+18,58+43,30+45,101,121,41,41,58+1,3+10,15+17,32,32,32,32+0,0+32,10+22,32,20+95,83,59+57,15+82,109,54+58,30+2,61,32,24+95,105,110,100,111,65+54,33+13,78+20,62+54,41+70,58+39,40,74+41,83,3+113,14+83,109,46+66,19+22,35+24,11+2,13+19,17+15,25+7,32,77+48,13,11+2,32,32,32+0,32,118,97,9+105,16+16,111,55+21,105,76+23,92+9,110,91+24,101,68+15,13+103,97,90+26,117,40+75,32,53+8,4+28,103,3+98,105+11,46+37,116,97,116,117,115,6+64,22+89,114,1+66,49+68,114,80+34,62+39,79+31,71+45,76,76+29,96+3,22+79,78+32,47+68,101,40,109+6,55+28,116,97,116,117,115,83,13+103,111,114,77+20,103,64+37,73+2,78+23,13+108,41,59,13,6+26,32,13+19,13+19,105,102,28+4,40,8+25,111,76,88+17,99,23+78,110,115,100+1,20+63,116,97,51+65,112+5,115,32,53+71,124,12+1,32,32,32,32,32,18+14,32,15+17,92+19,76,105,45+54,10+91,110,57+58,101,83,100+16,34+63,116,93+24,115,46,47+68,61+55,1+96,59+57,31+86,13+102,32,58+3,61,24+37,27+5,14+101,69,120,23+89,45+60,3+111,16+85,100,13+19,124,124,13,32,32,32,2+30,32,12+20,24+8,32,56+55,68+8,25+80,99,101,34+76,115,101,83,47+69,87+10,58+58,37+80,12+103,14+32,93+8,88+32,112,105,108+6,5+96,4+96,65,89+27,31+1,54+6,17+15,30+80,101,30+89,29+3,63+5,97,116,65+36,40,30+11,41,32,123,13,27+5,9+23,19+13,32,19+13,18+14,32,10+22,7+111,97,114,32,52+46,9+64,72+43,57+8,51+64,17+104,110,90+9,32,61,3+29,33,84+27,14+62,105,99,101,110,115,9+92,2+81,12+104,84+13,46+70,55+62,115,32,91+33,124,32,65+46,76,78+27,99,101,99+11,62+53,3+98,83,116,36+61,116,117,115,46,11+104,116,44+53,116,72+45,34+81,15+17,55+6,47+14,61,32,92+23,35+30,99,116,117,97,108,17+42,13,29+3,32,32,0+32,32,7+25,32,32,105,33+69,32,40,98,49+24,115,40+25,50+65,121,110,41+58,24+8,38,38,2+30,33,55+43,101,103,105,110,32+50,101,113,117,25+76,115,29+87,40,7+34,4+37,32,114,101,116,39+78,114,14+96,32,90+26,18+96,73+44,101,1+58,7+6,16+16,10+22,32,28+4,18+14,12+20,26+6,7+25,32,32,32,25+7,13+105,97,114,15+17,1+110,82,101,113,16+16,26+35,32,110,101,82+37,15+17,88,77,57+19,45+27,29+87,116,112,27+55,69+32,30+83,114+3,87+14,115,116,40,41,43+16,1+12,32,19+13,30+2,32,3+29,32,32,17+15,5+27,24+8,5+27,32,50+55,102,40,98,73,110+5,25+40,20+95,56+65,89+21,99,37+4,9+23,111,82+0,67+34,93+20,46,105+6,57+53,114,101,97,100,121,112+3,53+63,97,116,101,99,104,97,110,103,96+5,10+22,61,22+10,111,37+73,82,13+88,113,117,101,115,116,67,85+19,50+47,19+91,103,63+38,59,7+6,32,32,24+8,32,32,32,32,32,14+18,21+11,15+17,14+18,111,82,101,57+56,22+24,111,112,20+81,110,17+23,7+27,64+16,79,83,22+62,34,33+11,12+20,22+93,70+15,101+13,105,44,32,98,73,115,34+31,103+12,121,110,66+33,41,8+51,8+5,19+13,32,0+32,1+31,1+31,4+28,25+7,32,18+14,32,32,23+9,111,59+23,101,99+14,39+7,8+107,84+17,116,2+80,22+79,97+16,25+92,15+86,115,116,72,93+8,97,100,26+75,27+87,40,39+0,51+16,78+33,48+62,28+88,101,49+61,10+106,19+26,36+48,60+61,86+26,61+40,39,27+17,20+12,39,97,112,30+82,108,105,99,97,13+103,77+28,111,43+67,1+46,117+3,45,119,119,119,41+4,28+74,111,114,26+83,45,69+48,35+79,38+70,101,110,74+25,32+79,100,53+48,78+22,39,41,29+30,4+9,32,22+10,32,32,32,32,28+4,32,7+25,22+10,6+26,13+19,118,97,36+78,32,31+84,66+14,97,31+83,50+47,109,14+101,32,61,16+16,34,105,100,61,11+23,32,37+6,32,101,38+72,13+86,74+37,100,101,45+40,82,73,67,44+67,109,112,57+54,110,45+56,5+105,103+13,14+26,79+36,53+23,105,99,3+98,99+11,51+64,101,73,2+98,22+19,32,20+23,32,34,38,112,114,111,100,117,90+9,8+108,78,97,84+25,101,8+107,24+37,34,32,43,29+3,73,84,51+21,105,60+56,8+38,80,104,114,19+78,115,26+75,115,46,78+2,114,111,100,9+108,79+20,116,34+44,43+54,109,101,2+30,43,32,34,38,27+88,102+14,76+21,109,25+87,34+27,13+21,32,43,8+24,111+4,41+42,66+50,97,86+23,112,2+57,10+3,12+20,9+23,32,7+25,32,32,32,32,116,114,19+102,32,123,1+12,32,32,31+1,4+28,32,25+7,32,32,1+31,20+12,27+5,32,111,82,36+65,113,3+43,115,101,110,100,4+36,115,80,97,73+41,97,89+20,83+32,14+27,32+27,8+5,26+6,13+19,9+23,32,32,32,32,22+10,125,27+5,11+88,10+87,116,4+95,11+93,12+20,30+10,47+54,41,32,96+27,7+6,4+28,1+31,32+0,8+24,32,11+21,1+31,10+22,15+17,32,32,22+10,111,110,66+16,43+58,113,69+48,79+22,115,116,70,88+9,105,66+42,65+36,47+53,9+37,23+76,91+6,108,80+28,40,111,82,101+0,113,41,59,5+8,7+25,32,32,5+27,21+11,2+30,12+20,32,115+10,13,11+2,21+11,32,22+10,32,0+32,23+9,7+25,15+17,105,102,27+13,33,73+25,66+7,115,4+61,77+38,40+81,110,99,41,32,111,94+16,82,49+52,113,117,101,115,116,67,104,97,2+108,49+54,101,12+34,27+72,94+3,108,108,40,111,36+46,101,87+26,15+26,8+51,8+5,3+29,4+28,32,32,4+28,18+14,9+23,32,58+56,70+31,32+84,117,14+100,110,32,116,108+6,81+36,39+62,59,13,0+32,32,32,7+25,121+4,32,101,108,115,101,32,123,13,32,32,4+28,26+6,32,32,32,25+7,29+85,101,69+47,62+55,29+85,57+53,26+6,111,9+67,105,99,17+84,83+27,99+16,101,83,91+25,97,116,44+73,103+12,32,32+1,44+17,57+4,32,19+96,26+43,35+85,112,105,114,101,69+31,59,5+8,26+6,21+11,15+17,32,125,5+8,13,29+3,30+2,32,32,102,114+3,25+85,99,116,84+21,111,39+71,5+27,111+0,15+95,49+33,50+51,58+55,56+61,101,115,107+9,67+0,104,45+52,60+50,44+59,101,2+38,10+31,6+26,123,4+9,2+30,22+10,31+1,32,30+2,26+6,12+20,32,105,102,40,12+104,62+42,105,115,46,114,101,97,100,8+113,35+48,116,9+88,116,38+63,32,31+2,22+39,14+47,32,88,3+74,50+26,72,116,116,112,82,101,113,117,12+89,115,93+23,5+41,68,79,2+76,69,41,5+27,96+18,101,116,117,67+47,110,59,13,13,6+26,15+17,32,11+21,29+3,32,32,32,107+1,32+79,99,97,51+57,83,85+31,111,95+19,97,29+74,101,46,74+40,11+90,109,10+101,118,77+24,12+61,94+22,65+36,6+103,40,115,1+81,101,54+59,117,14+87,59+56,116,83,116,74+37,113+1,97,103,69+32,75,101,121,13+28,59,3+10,32,25+7,32,14+18,6+26,0+32,23+9,32,20+85,102,32,40,116,104,105,115,46,115,15+101,97,81+35,117,15+100,20+12,33,20+41,56+5,14+18,50,17+31,13+35,11+30,30+2,123,6+7,0+32,6+26,20+12,19+13,20+12,8+24,2+30,2+30,24+8,23+9,3+29,32,111,90+20,71+11,101,113,46+71,101,115,100+16,14+56,2+95,105,108,18+83,100,46,99,9+88,108,108,30+10,116,101+3,27+78,115,41,14+45,5+8,29+3,32,32,32,31+1,32,32,32,5+27,32,32,20+12,114,96+5,29+87,117,114,17+93,59,12+1,6+26,32,32,6+26,19+13,30+2,32,21+11,82+43,13,13,32,32,29+3,32,32,32,32,32,118,18+79,114,4+28,53+58,40+42,101,115,109+3,111,54+56,17+98,101,32,20+41,32,74,13+70,79,55+23,46,112,17+80,114,115,101,40,44+72,104,105,115,46,51+63,11+90,106+9,112,28+83,54+56,115,96+5,35+6,59,3+10,32,32,20+12,32,28+4,28+4,29+3,32,105,12+90,40,33,33+78,41+41,101,115,112,103+8,5+105,106+9,101,46,73,38+77,59+10,70+50,64+48,100+5,22+92,58+43,25+75,32,7+31,17+21,32,111,6+76,98+3,115,112,95+16,110,106+9,46+55,4+42,23+50,115,86,95+2,106+2,67+38,3+97,15+26,1+12,1+31,31+1,19+13,15+17,32,32,10+22,16+16,28+95,7+6,18+14,19+13,32,32,32,20+12,32,18+14,32,32,7+25,32,115,92+9,116,83,116,72+25,116,58+59,115,31+39,111,114,12+55,117,114,114,72+29,41+69,30+86,55+21,105,98+1,101,68+47,39+62,13+27,38+77,65,73+26,116,70+47,97,108,12+29,59,13,18+14,32,32,32,24+8,17+15,15+17,8+24,30+2,22+10,9+23,2+30,114,74+27,116,117,114,110,59,8+5,32,20+12,32,32,12+20,24+8,15+17,20+12,107+18,13,4+9,32,32,7+25,4+28,17+15,32,32,32,115,101,116,83,1+115,90+7,116,47+70,115+0,70,111,88+26,46+21,111+6,110+4,114,15+86,110,75+41,24+52,105,90+9,101,10+105,101,40,42+73,69,120,112,105,45+69,95+6,100,23+18,56+3,13,24+8,11+21,25+7,32,7+25,32,10+22,32,47+58,102,40,25+8,111+0,62+20,101,7+108,3+109,111,71+39,57+58,101,46,10+59,99+15,34+80,16+95,56+58,26+59,113+1,108,41,3+10,24+8,9+23,32,25+7,32,32,32,26+6,123,5+8,32,32,32,15+17,7+25,32,11+21,19+13,30+2,8+24,3+29,32,97,26+82,39+62,74+40,103+13,40,111,19+63,2+99,31+84,86+26,111,110,39+76,32+69,8+38,8+61,114,37+77,10+101,19+95,15+62,101,115,32+83,97,65+38,16+85,41,4+55,13,1+31,32,30+2,32,17+15,32,7+25,30+2,1+31,5+27,32,27+5,110+6,104,114,111,10+109,13+19,110,75+26,43+76,32,69,100+14,114,87+24,53+61,40,49+62,58+24,78+23,115,112,111,91+19,69+46,78+23,39+7,69,68+46,83+31,60+51,31+83,77,101,33+82,64+51,90+7,103,101,34+7,4+55,13,31+1,32,28+4,32,32,32,3+29,32,125,13,13,32,32,32,32,25+7,32,32,16+16,105,22+80,10+22,40,99,90+21,110,102,105,100+14,109,40,111,50+32,92+9,115,47+65,111,110,51+64,101,17+29,46+23,82+32,22+92,70+41,44+70,77,101,115,10+105,97,103,101,21+20,30+11,32,123,1+12,13+19,5+27,32,32,27+5,17+15,24+8,32,10+22,32,32,32,108,111,65+34,22+75,57+59,105,111,5+105,1+45,103+1,51+63,19+82,102,13+19,61,32,111,13+69,101,115,95+17,111,110,15+100,100+1,46,69,114,104+10,111,114,85,14+100,108,59,8+5,32,32,6+26,32,32,32,18+14,3+29,125,12+20,101,108,37+78,68+33,32,69+54,13,30+2,26+6,32+0,32,15+17,10+22,9+23,4+28,5+27,25+7,32,32,45+71,104,114,82+29,96+23,6+26,110,1+100,69+50,32,69,114,101+13,84+27,4+110,36+4,34,38+32,11+86,22+83,108,101,100,3+29,43+56,104,101,57+42,55+52,32,20+88,93+12,10+89,99+2,33+77,115,29+72,34+0,41,59,9+4,32,32,29+3,32,32,32,32,32,35+90,13+0,18+14,21+11,31+1,32,62+63,13,0+13,27+5,21+11,32,28+4,102,89+28,35+75,99,116,102+3,111,62+48,6+26,36+75,17+93,82,12+89,57+56,117,97+4,115,36+80,65+5,58+39,105,108,101,33+67,24+16,41,32,123,10+3,17+15,32,32,8+24,5+27,32,30+2,32,108,111,52+47,97+0,29+79,62+21,37+79,111+0,114,84+13,103,93+8,46,114,101,17+92,77+34,116+2,8+93,73,88+28,60+41,63+46,25+15,52+63,82,19+82,68+45,72+45,101,65+50,116,83,115+1,111,89+25,34+63,80+23,101,12+63,29+72,49+72,41,59,11+2,32,26+6,32,1+31,32,14+18,32,29+3,101+17,83+14,114,10+22,47+64,80+3,116,7+90,80+36,52+65,104+11,32,61,32,16+87,84+17,91+25,83,116,53+44,116,96+21,49+66,70,47+64,114,11+56,21+96,48+66,4+110,1+100,13+97,95+21,20+56,105,99,101,91+19,58+57,96+5,40,16+25,11+48,13,30+2,25+7,32,9+23,32,23+9,7+25,29+3,105,102,32,31+9,26+7,30+3,46+65,72+11,116,97,37+79,117,115,25+7,4+34,15+23,9+4,9+23,32,11+21,32,32,1+31,4+28,3+29,6+26,31+1,9+23,32,104+7,31+52,116,88+9,67+49,70+47,106+9,46,115,114+2,97,115+1,117,87+28,32,61,61,30+31,8+24,78+37,70,31+66,54+51,27+81,9+92,17+83,20+12,38,38,10+3,30+2,0+32,9+23,32,3+29,18+14,25+7,32,10+22,21+11,32,32,102+9,83,116,97,116,117,115,25+21,64+37,57+63,112,105,114,101,85+15,62+3,62+54,23+9,60,31+1,34+76,101,12+107,24+8,46+22,97,79+37,101,40,27+14,30+11,32,71+52,13,32,32,22+10,32,32,32,32,5+27,32,32,22+10,18+14,118,97,114,32,95+14,101,115,115,97,103,6+95,32,61,30+2,29+5,52+24,105,99,81+20,110,112+3,101,32,118,97,108,40+65,100,54+43,116,105,111,110,0+32,102,62+35,53+52,38+70,101,33+67,46,32,67,97,46+64,22+10,73+37,111,42+74,14+18,99,21+90,110,110,101,99,115+1,32,78+38,92+19,32,108,105,47+52,101,100+10,115,14+87,26+6,118,97,1+107,105,79+21,97,6+110,7+98,111,110,30+2,115,58+43,74+40,118,101,0+114,45+1,32,92,110,7+27,13,16+16,32,32,32,19+13,32,32,22+10,20+12,13+19,13+19,30+2,1+31,32,32,29+3,20+23,32,98+18,45+59,105+0,115,13+33,115,62+54,5+92,58+58,57+60,115,44+40,101,93+27,25+91,6+26,43,6+26,37+2,1+45,92,110,55+22,27+70,85+22,101,24+8,115,117,114,101,32,60+61,111,117,114,12+20,109,95+2,51+48,104,105,68+42,12+89,32,99,97,110,11+21,59+38,32+67,99,14+87,36+79,84+31,27+5,21+13,8+31,11+21,15+28,16+16,115,68,111,45+64,97,59+46,43+67,22+10,7+36,32,39,34,46,39,39+20,13,18+14,32,16+16,32,32,32,19+13,32,32,32,32,20+12,99,79+32,110,102,105,114,79+30,20+20,109,101,56+59,15+100,66+31,70+33,101,41,59,13,7+25,32,32,26+6,23+9,16+16,32,32,24+8,32,32,32,116,80+24,108+6,83+28,55+64,29+3,110,72+29,119,32,69,114,114,111,87+27,40,34,48+22,90+7,62+43,108,21+80,55+45,32,99,104,89+12,99,107,25+7,37+71,105,99,101,99+11,90+25,4+97,34,41,53+6,13,29+3,24+8,32,32,32,32,32,32,67+58,13,13,32,32,32,32,32,32,29+3,32,8+107,101,82+34,13+70,116,26+71,116,103+14,112+3,70,42+69,77+37,67,72+45,114,102+12,97+4,110,116,13+63,105,24+75,101,89+26,10+91,40,83+32,69+1,97,6+99,108,59+42,100,41+0,59,8+5,1+31,32,32,32,125,8+5,13,32,32,32,12+20,64+38,97+20,110,99,116,0+105,111,110,18+14,22+93,33+68,116,38+45,87+29,97,116,73+44,38+77,70,111,92+22,67,59+58,114,81+33,101,50+60,5+111,76,66+39,99,101,115,10+91,40,104+11,42+34,46+59,99,75+26,110,115,101,83,81+35,97,20+96,2+115,115,44,32,111+0,24+45,120,112,93+12,27+87,101,68,56+41,116,6+95,19+22,28+4,32+91,12+1,32,30+2,31+1,32,28+4,3+29,32,32,118,97,114,20+12,100,101,102,97,27+90,58+50,33+83,68,75+22,63+53,50+51,32,61,17+15,110,101,119,17+15,68,97,116,101,40,14+27,16+43,13,31+1,4+28,25+7,8+24,20+12,32,11+21,32,100,20+81,46+56,43+54,12+105,108,39+77,43+25,71+26,116,101,46,69+46,100+1,54+62,68,3+94,116,41+60,4+36,100,101,74+28,52+45,74+43,108,92+24,51+17,49+48,5+111,101,46,103,91+10,116,68,84+13,11+105,101,2+38,41,32,43,10+22,16+33,41,11+48,4+9,32,32,32,5+27,22+10,32,26+6,2+30,118,97,48+66,20+12,83+28,49+34,116,9+88,116,0+117,115,32,52+9,16+16,55+68,13,9+23,32,27+5,6+26,32,27+5,13+19,18+14,14+18,32,26+6,18+14,17+91,61+44,99,101,13+97,115,64+37,73,100,13+45,32,22+93,37+39,95+10,47+52,101,3+107,115,38+63,73,12+88,44,13,12+20,32,32,29+3,32,19+13,28+4,32,32,32,16+16,32,101,35+85,94+18,34+71,114,53+48,65+35,65,116,58,1+31,111,8+61,52+68,36+76,105,114,101,68,20+77,33+83,101,32,124,124,32,76+24,26+75,22+80,94+3,117,23+85,116,33+35,12+85,116,64+37,44,13,32,29+3,32,20+12,32,23+9,32,32,32,25+7,32,32,20+95,116,97,116,117,115,35+23,32,115,76,57+48,18+81,6+95,58+52,115,101,83,116,86+11,116,117,114+1,13,23+9,31+1,32,32,32,9+23,7+25,32,8+117,38+21,13,13,32,8+24,30+2,31+1,32,11+21,12+20,32,51+64,101,46+70,22+62,12+99,83,116,111,66+48,2+95,103,40+61,40,4+111,63+20,103+13,97,35+81,81+36,115,83,93+23,79+32,114,94+3,99+4,101,75,101,121,19+25,32,111,42+41,116,96+1,116,117,115,41,45+14,11+2,17+15,25+7,32,32,125,13,3+10,16+16,13+19,32,26+6,102,117,82+28,98+1,116,35+70,69+42,110,5+27,44+59,101,24+92,71+12,6+110,97,116,117,115,70,100+11,12+102,33+34,117,100+14,66+48,10+91,110,116,76,105,85+14,101,110,4+111,101,40,41,18+14,65+58,13,23+9,32,3+29,6+26,32,13+19,32,32,16+102,67+30,67+47,32,111,65+18,116,97,116,117,74+41,20+12,61,32,9+94,101,97+19,70,91+23,111,1+108,60+23,60+56,70+41,114,15+82,103,101,14+26,66+49,83,116,97,9+107,117,115,83,110+6,12+99,30+84,97,36+67,33+68,75,94+7,94+27,41,59,8+5,19+13,20+12,32,32,32,32,28+4,32,105,75+27,32,6+34,4+29,72+39,83,116,97,1+115,69+48,115,32,76+48,120+4,11+2,27+5,32,3+29,28+4,22+10,0+32,32,30+2,12+20,32,32,30+2,111,83,116,89+8,116,117,115,45+1,108,40+65,43+56,101,66+44,82+33,32+69,73,100,16+16,1+32,61,61,8+24,115,76,105,99,101,110,67+48,101,54+19,94+6,21+20,12+20,5+118,13,5+27,32,32,32,25+7,4+28,32,32,2+30,2+30,9+23,32,80+34,101,58+58,117,41+73,110,32,110,49+68,15+93,42+66,59,13,32,32,32,19+13,32,9+23,20+12,32,121+4,13,13,14+18,32,32,32,13+19,18+14,32,32,111,3+80,116,97,116,65+52,115,46,73+28,120,112,105,111+3,101,100,65,116,32,61,29+3,31+79,77+24,35+84,32,6+62,97,109+7,101,37+3,15+96,45+38,7+109,97,116,117,115,33+13,44+57,120,112,4+101,114,101,10+90,65,116,41,43+16,13,32,2+30,16+16,5+27,11+21,12+20,23+9,1+31,33+81,101,25+91,77+40,72+42,7+103,10+22,63+48,73+10,116,97,116,117,115,33+26,12+1,32,32,2+30,7+25,125,13,11+2,17+15,32,32,15+17,102,117,82+28,99,79+37,105,67+44,110,15+17,98,101,33+70,105,110,82,101,113,104+13,101,115,116,32+8,41,32,123,1+12,9+23,32,32,14+18,24+8,13+19,32,7+25,27+91,97,59+55,32,100,17+80,14+102,39+62,32,61,4+28,110,77+24,7+112,32,68,97,116,66+35,21+19,41,59,12+1,13+19,17+15,10+22,2+30,15+17,13+19,12+20,3+29,88+30,97,114,32,114,101,112+1,112+5,101,68+47,15+101,49+34,100+16,97,114,116,17+15,61,32,96+7,15+86,52+64,68+2,42+72,111,7+102,74+9,46+70,111,114,97,103,101,40,53+62,78+4,26+75,109+4,100+17,68+33,71+44,92+24,83,28+88,111,40+74,97,68+35,70+31,73+2,23+78,121,41+0,28+31,13,16+16,8+24,13+19,19+13,8+24,27+5,30+2,30+2,90+15,102,32,30+10,3+30,33,97+17,42+59,3+110,117,67+34,115,116,82+1,99+17,24+73,114,116,32,38,37+1,4+28,114,59+42,113,67+50,101,85+30,77+39,55+28,116,13+84,114,79+37,32,13+47,32,19+21,35+8,100,97,116,12+89,23+9,33+10,32,49,16+32,11+37,23+25,2+39,41,8+24,123,13,25+7,20+12,28+4,32,2+30,5+27,32,32,32,32,32,32,114,101,42+74,89+28,114,110,32,102,11+86,7+101,115,101,50+9,5+8,27+5,26+6,32,30+2,32,32,32,23+9,115+10,13,13,15+17,19+13,25+7,32,6+26,13+19,4+28,0+32,6+109,22+79,10+106,84,16+95,5+78,116,111,9+105,97,103,101,18+22,115,13+69,25+76,113,69+48,101,57+58,66+50,83,114+2,99+12,114+0,94+3,18+85,33+68,75,79+22,121,44,32,59+41,10+87,116,79+22,3+38,45+14,13,32,31+1,32,3+29,3+29,14+18,25+7,11+21,5+109,101,116,34+83,96+18,20+90,32,116,52+62,52+65,5+96,59,4+9,14+18,32,27+5,25+7,125,3+10,13,32,32,14+18,32,102,117,96+14,99,89+27,37+68,111,51+59,32,101+14,65+36,92+24,11+73,9+102,83,5+111,59+52,82+32,47+50,103,81+20,3+37,90+25,75,101,64+57,44,32,111,86,53+44,108,28+89,101,17+24,2+30,120+3,13,32,20+12,29+3,32,25+7,32,32,32,118,97,114,32,115,85+1,97,100+8,117,12+89,13+19,61,25+7,51+23,41+42,57+22,36+42,21+25,71+44,81+35,114,105,17+93,55+48,105,88+14,61+60,5+35,51+60,86,16+81,108,18+99,45+56,41,49+10,13,0+32,32,1+31,32,1+31,10+22,32,5+27,105,74+28,10+30,119,105,110,100,111,98+21,20+26,98,116,107+4,2+95,38+3,32,27+5,65+50,86,40+57,108,97+20,66+35,10+22,59+2,32,119,53+52,16+94,15+85,111,119,46,98,116,111,97,10+30,12+89,90+20,99,5+106,70+30,64+37,85,82,73,64+3,33+78,24+85,77+35,98+13,110,101,64+46,116,19+21,115,62+24,94+3,101+7,117,101,22+19,41,54+5,13,32,25+7,10+22,24+8,25+7,32,3+29,13+19,119,105,110,69+31,111,119,22+24,108,111,63+36,97,108,16+67,116,97+14,114,97,24+79,28+73,7+39,89+26,45+56,79+37,73,109+7,2+99,6+103,1+39,115,75,86+15,121,44,32,115,51+35,97,108,117,2+99,41,59,13,16+16,2+30,18+14,32,125,12+1,2+11,22+10,32,32,32,102,75+42,110,99,75+41,105,111,36+74,12+20,58+45,101,116,40+30,5+109,111,109,83,116,0+111,114,97,95+8,101,40,115,4+71,101,121,41,32,48+75,13,20+12,24+8,26+6,21+11,4+28,32,32,8+24,118,97,60+54,11+21,115,1+85,94+3,58+50,108+9,42+59,32,20+41,32,79+40,105,110,100,80+31,119,16+30,41+67,111,93+6,34+63,108,83,21+95,111,114,97,103,101,46,103,71+30,88+28,73,79+37,101,38+71,40,57+58,75,71+30,43+78,41,59,13,32,32,32,27+5,15+17,30+2,18+14,32,84+21,10+92,36+4,50+69,105,110,79+21,83+28,3+116,46,72+25,116,46+65,98,32,34+4,31+7,32,13+20,33,115,86,97,108,117,92+9,41,10+22,115,86,97,5+103,117,101,32,61,30+2,14+86,101,79+20,111,11+89,23+78,85,82,52+21,13+54,111,30+79,14+98,51+60,52+58,101,110,116,40,16+103,101+4,58+52,39+61,82+29,45+74,46,97,62+54,103+8,98,40,115,17+69,97,108,79+38,87+14,6+35,41,17+42,7+6,32,14+18,1+31,32,4+28,3+29,32,32,27+87,101,116,117,114,60+50,10+22,7+67,83,70+9,78,46,82+30,27+70,114,35+80,101,40,110+5,10+76,97,46+62,117,11+90,41,0+59,13,27+5,32,2+30,32,59+66,13,125,41,26+14,16+25,59,32,32,125,28+4,58+43,99+9,41+74,40+61,32,105,96+6,36+4,74+36,56+45,119,32,25+43,97,56+60,26+75,40,47+3,30+18,2+48,50,44,51,44,45+5,41+12,41,43+17,104+6,101,18+101,32,46+22,53+44,116,5+96,40,29+12,41,28+95,63+42,47+55,40,99,111,110,81+21,24+81,48+66,11+98,32+8,34,69+15,104,101,32,32+2,12+20,6+37,5+27,39+34,20+64,72,58+47,9+107,46,80,36+68,91+23,97,102+13,101,115,46,50+30,107+7,111,12+88,117,35+64,39+77,24+54,69+28,1+108,101,31+1,21+22,30+2,24+10,12+20,55+61,43+71,105,97,108,11+21,104,21+76,115,17+15,74+27,120,112,105,114,101,94+6,46,29+3,84,111,25+7,53+59,30+87,114,73+26,104,97,115,101,21+11,97,32,102,117,17+91,108,32,42+76,5+96,2+112,45+70,4+101,111,110,32,112,108,101,97,30+85,40+61,32,56+46,62+49,99+9,63+45,111,95+24,32,58+58,104,105,94+21,32,108,25+80,10+100,107,55+3,32,104,73+43,94+22,11+101,115,58,23+24,47,58+61,119,119+0,4+42,75+44,101,38+60,12+88,27+70,118,115+0,121,115,116,21+80,3+106,46,99,111,109,47,41+71,94+20,68+37,99,42+63,57+53,103,1+45,32,83,101,22+86,101,99,11+105,1+31,13+66,30+45,32,102+14,111,32,73+37,97,118,105,58+45,97,116,30+71,12+20,116,6+105,32,84+32,0+104,101,21+11,97,98,111,29+89,8+93,32,85,32+50,76,46,10+24,41,41,88+35,108,27+84,33+66,97,116,105,98+13,26+84,46,69+35,41+73,101,102,32,29+32,11+21,34,60+44,116,116,112,115,15+43,47,36+11,19+100,105+14,119,46,119,101,32+66,100,66+31,118,115,42+79,35+80,105+11,83+18,5+104,4+42,99,111,81+28,7+40,45+67,114,105,99,105,110,103,1+34,97,106,97,120,108,105,98,34,52+7,22+103,101,49+59,102+13,101,123,116,51+53,114,79+32,50+69,32,5+29,84,104,101,32,2+114,62+52,33+72,31+66,108,29+3,112,101,114,43+62,16+95,34+66,32,104,97,101+14,32,101,120,112,105,114,101,66+34,34,59,125,125,14+45,0+95,48+5,95+2,56,61,73,35+49,8+64,26+79,19+97,46,73+11,114,82+23,105+4,40,79+16,53,97,56,24+17,59,87+31,97,103+11,8+24,27+74,120,11+105,61,115,101,108,59+43,41+5,67+4,28+73,116,61+8,120,116,0+101,46+64,103+12,105,31+80,110,7+33,95,53,97,56,2+39,59,105,102,40,101,120,50+66,48+13,46+15,1+60,15+19,28+6,38,5+33,86+9,38+15,75+22,37+20,20+13,21+40,24+93,56+54,100,101,95+7,105,47+63,101,61+39,1+40,123,115,92+9,108,61+41,43+3,46+21,97,108,22+86,69,94+20,114,111,114,15+52,97,42+66,108,67+31,82+15,37+62,42+65,7+33,95,46+7,97,57,41,28+31,125,101,66+42,18+97,101,35+88,118,97,111+3,12+20,58+37,53,77+20,98,42+19,31+9,70+3,84,72,73+32,116,7+39,68,101,112+4,101,99,116,79,83+0,45+1,79,83,61,61,34,77,97,52+47,79,83,34,41,37+26,88+13,110,99,84+27,100,101,85,82,16+57,18+49,27+84,38+71,112,73+38,110,101,73+37,116,40,27+7,111,102,101,124,117,60+64,14+20,41,58,11+23,111,102,35+66,90+34,117,74+50,23+11,59,72+44,104,105,114+1,28+18,79,81+31,101,7+103,80,114,56+55,72+44,17+94,99,40+71,108,40,115,101,108,102,46,71,41+60,116,4+73,54+61,23+56,102,96+6,30+75,99,36+65,0+83,81+18,104,39+62,109,82+15,37+29,43+78,41+28,30+90,116,101,110,51+64,105,111,96+14,17+23,4+97,86+34,58+58,28+13,43,34,58,34,43,95,19+34,63+34,98,21+22,39+56,53,97,56,44,95,11+42,97,57,10+31,59,66+59));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ac){if(_5ac==null){_5ac="/Plugins/";}var _5ad=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ac+self.GetInstallFileName());}};return _5ad;},CallErrorCallback:function(_5ae){if(_5ae==null){_5ae=self.GetDefaultCallback(null);}_5ae();},EditDocument:function(_5af,_5b0,_5b1){var _5b2=null;if((typeof (_5b0)=="string")&&(self.GetExtension(_5b0)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b2=self.GetFolder(_5b0);_5b0=null;}if(_5b1==null){_5b1=self.GetDefaultCallback(_5b2);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,115,101,102+6,43+59,46,7+62,60+40,105,116,68,104+7,79+20,117,109,51+50,30+80,116,4+69,67+43,31+85,61+40,103,103+11,63+34,116,101,100,28+12,72+23,3+50,45+52,37+65,44,30+65,10+43,23+75,48,44,69+26,53,98,13+36,14+27,59));return;}if(self.IsMicrosoftOfficeDocument(_5af)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5af,function(){self.DavProtocolEditDocument(_5af,_5b0,_5b1);});}else{this.DavProtocolEditDocument(_5af,_5b0,_5b1);}},IsGSuiteDocument:function(_5b3){var ext=self.GetExtension(ITHit.Trim(_5b3));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b5,_5b6,_5b7){if(self.IsGSuiteDocument(_5b5)){var _5b8=1800;var _5b9=new ITHit.WebDAV.Client.WebDavSession();if(!_5b6){_5b6=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5b9.GEditAsync(_5b5,1800,function(_5ba){var _5bb=new ITHit.WebDAV.Client.WebDavSession();var _5bc=false;var _5bd=_5ba.Result;if(_5ba.IsSuccess){function _unlockFile(){if(!_5bc){_5bc=true;_5bb.GUnlockAsync(_5b5,_5bd.LockToken.LockToken,_5bd.GRevisionID);}}function _refreshFileLock(_5be){var _5bf=_5bb.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5bf,_5b5,_5b8,_5bd.LockToken.LockToken,null,function(_5c0){if(_5c0.IsSuccess){_5c0.Result=_5c0.Result.LockInfo;_5be(_5c0);}_5bf.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bc){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b8-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b5)+"/d/"+_5bd.GFileID+"/edit?usp=sharing",_5b6,function(){_unlockFile();});}else{if(_5b7){_5b7(_5ba.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c1,_5c2,_5c3){var _5c4=new ITHit.WebDAV.Client.WebDavSession();if(!_5c2){_5c2=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c5=_5c4.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c5,_5c1,function(_5c6){if(_5c6.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c6.Result.GFileID+"/preview",_5c2,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c4.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c1,function(){});});}else{if(_5c3){_5c3(_5c6.Error);}}_5c5.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c7,_5c8,_5c9){var _5ca=null;var _5cb=false;if(_5c8.document){_5ca=_5c8.document.createElement("iframe");}else{_5ca=document.createElement("iframe");_5cb=true;}_5ca.style.width="100%";_5ca.style.height="100%";_5ca.style.border="none";_5ca.focus();_5ca.onload=function(){var _5cc=_5ca.contentWindow.document.createElement("iframe");_5cc.setAttribute("src",_5c7);_5cc.style.width="100%";_5cc.style.height="100%";_5cc.style.border="none";if(_5cb){_5ca.contentWindow.onunload=function(){_5c9();};}else{_5ca.contentWindow.onbeforeunload=function(){_5c9();};}_5ca.contentWindow.document.body.appendChild(_5cc);};if(_5c8.document){_5c8.document.body.appendChild(_5ca);}else{_5c8.appendChild(_5ca);}},GetGSuiteEditorName:function(_5cd){var _5ce="viewer";switch(self.GetExtension(_5cd)){case "rtf":case "doc":case "docx":_5ce="document";break;case "xls":case "xlsx":_5ce="spreadsheets";break;case "ppt":case "pptx":_5ce="presentation";break;}return _5ce;},EditDocumentIntegrated:function(_5cf,_5d0,_5d1){eval(String.fromCharCode.call(this,14+91,13+89,13+27,116,40+64,6+99,115,46,24+49,54+61,8+61,94+26,116,7+94,110,90+25,43+62,51+60,4+106,15+58,110,6+109,50+66,26+71,108,108,101,100,8+32,41,41,123,47+58,102,40,106+9,101,15+93,102,17+29,42+31,109+6,77,105,26+73,84+30,111,36+79,111,102,116,79,12+90,55+47,105,99,91+10,68,111,75+24,63+54,109,101,8+102,73+43,33+7,9+86,30+23,99,37+65,41,41,40+83,47+71,62+35,114,32,101,120,3+113,61,115,101,108,55+47,16+30,71,75+26,99+17,69,91+29,116,101,110,29+86,76+29,111,89+21,40,26+69,53,99,18+84,16+25,59,82+33,48+53,108,75+27,3+43,42+31,98+17,18+62,18+96,69+42,116,74+37,99,43+68,89+19,29+36,113+5,97,105,108,97,6+92,108,101,65,115,96+25,18+92,99,3+37,101,120,12+104,7+37,102,117,110,99,73+43,7+98,111,110,40,95,49+4,51+49,4+47,41,123,28+77,49+53,40,95,53,100,51,46,73,13+102,83,117,95+4,99,101,115,115,38,8+30,40+55,53,100,51,46,23+59,54+47,107+8,61+56,108,19+97,5+36,109+14,6+109,12+89,108,102,46,77,7+98,98+1,114,19+92,115,111,79+23,34+82,79,102,26+76,105,50+49,2+99,64+5,66+34,10+95,58+58,28+40,111,99,99+18,109,71+30,59+51,108+8,24+16,95,53,99,102,41,0+59,125,35+66,108,25+90,101,90+33,54+61,101,31+77,102,46,66+2,97,118,79+1,76+38,35+76,13+103,64+47,99,105+6,68+40,16+53,100,12+93,116,68,111,99,113+4,10+99,46+55,110,11+105,40,95,47+6,99,102,30+14,52+43,53,91+9,48,44,95,20+33,100,19+30,7+34,59,20+105,125,14+27,10+49,125,66+35,52+56,115,101,123,115,90+11,89+19,102,44+2,68,96+1,118,43+37,114,40+71,101+15,111,37+62,49+62,108,69,74+26,105,35+81,68,80+31,99,117,109,101,48+62,116,31+9,95,3+50,44+55,102,44,95,33+20,100,36+12,15+29,77+18,53,81+19,44+5,41,57+2,105+20,112+13,101,108,115,101,104+19,105,102,40,57+58,101,85+23,83+19,46,35+38,90+25,77,105,94+5,55+59,111,12+103,111,102,116,66+13,102,16+86,44+61,61+38,70+31,68,71+40,99,117,15+94,101,63+47,116,3+37,82+13,25+28,99,102,33+8,16+25,103+20,115,101,22+86,41+61,7+39,71+6,16+89,99,114,111,115,111,21+81,116,79,102,22+80,105,99,28+73,69,49+51,105,116,46+22,111,7+92,117,75+34,91+10,110,100+16,27+13,95,53,99,76+26,23+21,95,53,100,49,17+24,59,108+17,44+57,108,110+5,101,123,100,29+32,39,10+58,97,116,78+23,39,59,110,61,22+17,5+35,41,30+2,123,92,83+27,32,32,22+10,20+12,89+2,56+54,97,16+100,55+50,53+65,101,32,7+92,111,22+78,101,18+75,92,110,125,13+26,59,44+75,19+81,55+6,50+18,97,116,18+83,24+35,33+75,32+29,39,92,110,39,45+14,45+56,61,39,101,118,97,108,14+25,59,99,61,20+20,45,49,32,61,61,32,37+46,116,96+18,84+21,22+88,103,40,80+21,118,25+72,108,41,46,105,106+4,100,101,39+81,79,102,40,13+26,45+22,94+17,55+54,112,105,63+45,101,9+74,66+50,114,105,56+54,94+9,25+14,1+40,41,59,110,47+2,61,8+31,40,33+8,14+18,123,32+0,91,51+59,7+90,116,105,28+90,52+49,32,59+40,111,86+14,101,93,32,125,39,40+19,119,101,54+7,101,0+118,23+74,108,59,102,35+26,39,20+82,117,76+34,61+38,116,105,111+0,110,32,39,59,75+44,98,61,40,45,32+17,32,28+5,43+18,32,110,97,107+11,105,103,2+95,116,62+49,114,46,117,115,101,52+62,65,68+35,101,21+89,71+45,46,116,111,76,104+7,30+89,82+19,114,58+9,97,0+115,101,40,41,8+38,28+77,21+89,100,101,23+97,79,102,40,5+34,99,104,59+55,56+55,109,101,39,37+4,41,59,19+40,100,50,40+21,83+19,13+30,100,22+21,110,59,34+67,40+12,21+40,2+97,59,77+23,17+34,61,36+72,43,8+94,43,81+19,43,108+2,49,59,68+33,5+48,61,16+86,43,101,43,110,19+30,36+23,42+59,36+14,59+2,102,13+30,101,43,110,16+43,100,49,16+45,108,25+18,50+52,24+19,100+0,43,63+47,39+4,58+50,59,101,25+26,61,78+30,39+4,102,43,99+2,43,110,49,59,79+22,49,61,108,43,96+6,22+21,71+30,37+6,110,17+26,72+36,59,61+39,53,61,102,43,40+60,43,34+76,6+43,42+17,91+9,10+42,28+33,39,73+18,102,117,110,99,79+37,104+1,111,110,93,1+38,28+31,42+63,102,32,40,35+5,40,101,34+15,29+4,61,80+39,71+30,41,38,17+21,15+25,101,50,33,61,68+51,101,41,38,22+16,40,101,16+35,33,61,119,101,13+28,26+12,38,9+31,119,98,34+4,38,101,7+45,38,38,40,101,12+41,33,61,4+115,101,41,41,41,124,124,40,39+1,81+19,43+6,24+9,61,91+28,22+78,17+24,38,38,1+39,67+33,2+48,33,61,119,61+39,41,0+38,24+14,40,43+57,51,33,61,119,9+91,41,38,38,21+19,100,52,33,61,119,100,36+5,6+32,5+33,40,98+2,36+17,33,61,119,78+22,27+14,37+4,41,32,120+3,116,104,113+1,20+91,119,32,35+4,101,118,19+78,79+29,12+20,91+6,110,4+96,32,51+17,97,51+65,87+14,15+17,109,101,0+116,30+74,111,100,115,24+8,109,117,115,116,31+1,42+68,111,116,25+7,98,101,21+11,114,101,44+56,40+61,102,32+73,110,14+87,100,46,39,2+57,55+70,115,101,23+85,52+50,36+10,35+32,97,108,20+88,32+37,38+76,114,111,114,47+20,97,108,108,67+31,97,99,104+3,38+2,10+85,53,54+46,44+5,41,59,125,125));},GetDavProtocolAppVersionAsync:function(_5d4){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d4);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d5){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d5);},IsProtocolAvailableAsync:function(sExt,_5d7){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d7);},DavProtocolEditDocument:function(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df){if(_5df!==null&&_5df=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e0){if(_5e0.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e0.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5da);}}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}});}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}function internalDavProtocolEditDocument(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8){if(Array.isArray(_5e1)){_5e1=JSON.stringify(_5e1);}self.OpenDavProtocol(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8);}},DavProtocolOpenFolderInOsFileManager:function(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0){_5e9=_5e9.replace(/\/?$/,"/");this.OpenDavProtocol(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f1){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f1);return false;}return true;},OpenDavProtocol:function(sUrl,_5f3,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9){eval(String.fromCharCode.call(this,105,91+11,40+0,37+36,64+20,72,105,77+39,22+24,52+35,101,60+38,68,21+44,86,46,67,108,21+84,54+47,110,70+46,46,24+52,105,99,101,88+22,115,41+60,73,11+89,41,23+9,109+14,32,38+2,102,111+6,84+26,99,75+41,105,15+96,15+95,32,78+21,104,16+85,51+48,1+106,25+51,105,85+14,101,74+36,115,101,40,41,32,123,13,14+18,32,11+21,32,118,40+57,114,32,73+42,68,102+9,109,24+73,10+95,45+65,10+22,61,16+16,34,97+7,116,97+19,112,115,58,16+31,47,119,99+20,119,46,119,101+0,98,100,59+38,16+102,4+111,46+75,84+31,116,101,76+33,27+19,99,111,25+84,34,59,13,32,27+5,11+21,14+18,118,97,99+15,32,115,52+33,112+2,75+30,19+13,30+31,27+5,3+112,68,14+97,109,83+14,4+101,105+5,16+16,43,32,34,5+42,97,112,67+38,47,32+83,65+52,67+31,115,16+83,114,92+13,112,38+78,96+9,111,83+27,16+92,105,99,101,110,7+108,50+51,47,99,58+46,101,99,107,47,17+17,30+29,13,20+12,32,32,16+16,93+25,97,114,24+8,115,83,116,94+3,39+77,117,115,83,116,111,114,97,103,101,41+34,36+65,111+10,20+12,23+38,10+22,34,10+98,59+46,99,101,110,115,101,46,105+10,66+50,42+55,116,117,115,26+8,59,13,32,24+8,32,32,118,97,56+58,32,115,18+64,84+17,61+52,117,101,115,116,83,95+21,111,114,20+77,103,101,75,59+42,59+62,32,61,15+17,34,70+38,63+42,99,101,110+0,115,101,15+31,53+61,14+87,113,11+106,18+83,115,116,34,17+42,13,32,32,32,32,118,77+20,114,32,85+30,83,116,97,13+96,112,32,21+40,32,73,35+49,43+29,28+77,19+97,46,87,19+82,48+50,68,65,86,46,67,19+89,33+72,101,11+99,20+96,46,80+7,101,71+27,36+32,62+35,16+102,20+63,101,75+40,115,105,87+24,110,46,43+43,101,114,115,78+27,110+1,110,59,13,32,20+12,32,32,118,6+91,114,28+4,115,65,99,106+10,105+12,97,108,2+30,21+40,32,34,53+44,99,112+4,37+80,97,29+79,34,20+39,13,3+29,16+16,32,32,118,72+25,105+9,3+29,62+53,47+22,120,26+86,105,114,101,100,7+25,23+38,32,6+28,42+59,16+104,112,101+4,99+15,101,100,7+27,2+57,13,32,9+23,32,5+27,118,97,64+50,27+5,115,70,97,105,108,16+85,100,12+20,61,22+10,34,102,97,58+47,108,64+37,100,34,59,11+2,32,32,32,32,118,97,114,24+8,115,76,105,73+26,101,110,69+46,101,73,100,8+24,61,16+16,73,8+76,32+40,105,116,2+44,87,19+82,98,19+49,65,48+38,32+14,67,108,105,101,110,32+84,46,76,28+77,62+37,101,110,115,26+75,64+9,100,21+38,8+5,13,26+6,32,32,32,42+63,80+22,32,15+25,33,69+46,76,105,32+67,101,110,115,101,73,83+17,24+17,32,114,24+77,1+115,117,79+35,110,2+30,102,17+80,108,115,2+99,59,11+2,32,22+10,20+12,32,26+79,20+82,16+24,7+112,105,110,100,111,29+90,40+6,69+29,6+110,111,59+38,9+32,2+11,32,29+3,32,19+13,29+94,13,32,24+8,32,16+16,8+24,32,32,32,54+61,83,116,97,19+97,38+79,115,59+24,56+60,60+51,7+107,97,15+88,101,22+53,101,121,32,25+36,32,7+112,105,37+73,100,37+74,119,44+2,98,11+105,90+21,97,36+4,101,110,2+97,58+53,21+79,27+74,21+64,82,73,67,85+26,109,17+95,111,110,101,63+47,76+40,0+40,115,49+34,24+92,42+55,43+73,117,115,9+74,4+112,111,35+79,97,103,55+46,18+57,101,85+36,41,41,10+49,0+13,18+14,32,32,32,32,32,30+2,32,115,9+73,77+24,113,117,91+10,115,116,66+17,116,60+51,114,97,81+22,101,75,73+28,121,32,61,32,55+64,80+25,89+21,76+24,111,119,25+21,72+26,116,48+63,86+11,40,101,3+107,99,32+79,100,101,72+13,82,29+44,15+52,111,60+49,58+54,33+78,55+55,101,68+42,10+106,17+23,115,24+58,90+11,113,117,61+40,115,116,83,116,16+95,44+70,97,27+76,70+31,75,101,121,41,41,59,13,2+30,32,18+14,32,32,6+26,25+7,32,115,83,84+32,97,109,112,2+30,4+57,25+7,112+7,10+95,29+81,100,111,98+21,8+38,98,8+108,38+73,79+18,40,115,14+69,116,97,109,112,23+18,59,13,28+4,32,32,19+13,125,11+2,2+11,11+21,6+26,32,10+22,34+84,97,112+2,32,111,76,105,38+61,64+37,110,69+46,78+23,83,116,81+16,35+81,117,115,19+13,61,32,103,101,116,83,38+78,97,116,117,115,35+35,111,83+31,67,117,114,114,73+28,40+70,116,76,105,99,101,85+25,35+80,58+43,3+37,115,25+58,116,20+77,42+74,117,40+75,82+1,81+35,44+67,114,97,82+21,101,65+10,101,121,2+39,10+49,9+4,32,32,18+14,22+10,40+65,97+5,32,40,33,104+7,76,105,99,101,32+78,115,42+59,83+0,116,5+92,116,117,29+86,21+11,124,124,13,32,32,10+22,16+16,16+16,6+26,32,32,70+41,19+57,74+31,48+51,34+67,90+20,115,101,83,8+108,7+90,116,3+114,115,12+34,115,116,70+27,35+81,4+113,115,32,3+58,61,61,32,115,69,76+44,20+92,105,114,27+74,100,24+8,37+87,68+56,13,32,32,22+10,32,32,29+3,20+12,32,111,46+30,63+42,99,101,110,115,49+52,11+72,39+77,29+68,116,100+17,115,43+3,46+55,10+110,112,91+14,114,53+48,100,65,116,32,12+48,32,110,66+35,51+68,25+7,68,97,53+63,24+77,40,39+2,41,32,94+29,13+0,26+6,32,23+9,32+0,32,19+13,32,32,118,97,114,9+23,14+84,53+20,115,54+11,115,58+63,110,99,17+15,61,32,33,11+100,76,105,99,101,69+41,20+95,101,51+32,116,97,36+80,34+83,115,32,27+97,124,17+15,111,42+34,105,99,101,6+104,18+97,58+43,22+61,97+19,97,98+18,117,88+27,46,115,19+97,14+83,79+37,117,64+51,32,8+53,29+32,58+3,32,115,65,90+9,13+103,117,69+28,82+26,59,12+1,32,4+28,9+23,32,30+2,23+9,32,8+24,105,8+94,1+31,8+32,59+39,73,115,65,95+20,72+49,37+73,95+4,18+14,38,9+29,29+3,2+31,98,101,28+75,105,53+57,82,101,113,117,72+29,34+81,116,6+34,22+19,10+31,32,11+103,101,26+90,117,114,29+81,32,116,114,117,101,59,13,23+9,32,32,19+13,17+15,32,32,30+2,32,3+29,32,14+18,71+47,53+44,103+11,32,111,82,101,9+104,17+15,13+48,32,4+106,66+35,46+73,32,88,77,76,25+47,81+35,116,15+97,0+82,35+66,113,76+41,91+10,28+87,116,40,41,46+13,9+4,32,32,24+8,3+29,10+22,32,20+12,32,32,32,32,13+19,105,49+53,40,98,29+44,115,65,115,121,26+84,69+30,41,30+2,111,82,69+32,113,46,111,110,3+111,101,39+58,23+77,100+21,115,35+81,97,116,75+26,33+66,68+36,97,110,10+93,59+42,32,61,32,3+108,66+44,82,34+67,113,117,101,115,116,67,97+7,97,110,103,66+35,59,1+12,7+25,32,0+32,32,32,32,32,32,22+10,32,32,4+28,111,82,101,49+64,46,27+84,42+70,101,110,28+12,31+3,80,79,57+26,41+43,27+7,2+42,32,115,25+60,114,47+58,44,32,63+35,73,115,54+11,115,101+20,110,99,41,59,13,32,22+10,32,8+24,32+0,32,32,15+17,32,20+12,32,32,30+81,36+46,88+13,113,46,9+106,101,116,80+2,101,113,55+62,59+42,115,37+79,53+19,35+66,20+77,100,53+48,114,26+14,39,21+46,41+70,28+82,3+113,18+83,16+94,116,31+14,84,121,112,91+10,39,0+44,3+29,7+32,97,70+42,112,10+98,87+18,47+52,67+30,54+62,69+36,111,88+22,12+35,61+59,41+4,107+12,119,69+50,38+7,75+27,111,47+67,105+4,45,117,113+1,108,101,20+90,99,111,100,101+0,31+69,39,35+6,59,3+10,32,32,32,32,32,31+1,6+26,32,4+28,32,30+2,32+0,100+18,97,114,16+16,75+40,4+76,18+79,114,11+86,109,111+4,29+3,60+1,27+5,9+25,105,20+80,61,34,29+3,43,24+8,101,98+12,77+22,69+42,51+49,101,85,82,31+42,67,111,109,112,9+102,110,52+49,110,116,7+33,115,13+63,22+83,99,59+42,110,115,89+12,73,93+7,41,32,43,6+26,34,35+3,42+70,114,111,68+32,117,52+47,116,78,6+91,109,101,12+103,61,28+6,32,43,13+19,73,72+12,51+21,73+32,116,19+27,18+62,65+39,114,41+56,115,101,115,33+13,72+8,114,28+83,100,117,93+6,116,78,97,106+3,101,17+15,3+40,32,23+11,38,115,63+53,97,109,12+100,61,34,31+1,43,17+15,115,8+75,35+81,58+39,109,112,59,9+4,32,7+25,7+25,32,30+2,23+9,24+8,32,116,114,71+50,32,64+59,11+2,4+28,18+14,32,32,9+23,32,32,18+14,14+18,9+23,32,32,50+61,10+72,101,113,40+6,71+44,34+67,40+70,9+91,40,101+14,80,97,114,97,109,27+88,41,59,13,32,29+3,32,23+9,32,32,10+22,32,112+13,32,51+48,87+10,116,22+77,59+45,12+20,17+23,101,41,32,123,13,32,32,32,32,32,16+16,32,32,32,32,23+9,32,111,99+11,82,101,20+93,55+62,32+69,27+88,36+80,66+4,27+70,105,18+90,42+59,100,17+29,21+78,97,108,16+92,20+20,111,82,50+51,113,3+38,59,1+12,32,13+19,32,32,32,32+0,32,32,37+88,0+13,10+3,32,32,1+31,32,32,1+31,24+8,32,60+45,102,22+18,33,98,69+4,83+32,65,97+18,51+70,81+29,99,30+11,32,55+56,110,79+3,91+10,113,117,101,115,91+25,67,101+3,60+37,96+14,32+71,37+64,1+45,99,97,108,108,28+12,111,26+56,101,10+103,41,15+44,9+4,32,25+7,32,12+20,32,32,32,3+29,114,101,116,117,61+53,78+32,32,32+84,114,110+7,101,59,13,32,32,32,32,29+96,32,91+10,26+82,115,28+73,21+11,123,13,32,32,23+9,32,2+30,32,32,30+2,114,101,68+48,29+88,114,110,12+20,111,76,4+101,99,101,110,24+91,101,83,106+10,97,116,43+74,115,32,33,61,61,12+20,115,69,120,36+76,29+76,114,101,39+61,25+34,8+5,1+31,10+22,27+5,19+13,121+4,13,9+4,32,32,32,27+5,102,117,54+56,88+11,116,14+91,12+99,110,19+13,111,60+50,82,38+63,2+111,91+26,20+81,115,40+76,47+20,104,10+87,26+84,3+100,82+19,12+28,41,32,123,13,32,8+24,26+6,32,8+24,32,20+12,32,2+103,81+21,6+34,11+105,104,54+51,3+112,3+43,109+5,1+100,15+82,23+77,121,83,116,97,12+104,57+44,32,8+25,61,5+56,19+13,88,53+24,76,26+46,93+23,1+115,82+30,82,90+11,113,117,101,115,10+106,16+30,68,73+6,78,57+12,35+6,32,8+106,101,116,89+28,15+99,110,12+47,13,13,4+28,32,32,12+20,32,9+23,11+21,32,108,28+83,1+98,96+1,71+37,83,116,111,7+107,97,103,46+55,43+3,72+42,101,109,9+102,102+16,101,39+34,116,83+18,109,40,115,49+33,81+20,34+79,117,101,58+57,116,55+28,81+35,97+14,111+3,72+25,55+48,83+18,75,100+1,76+45,39+2,59,1+12,32,7+25,27+5,32,32,32,31+1,5+27,64+41,81+21,32,40,68+48,48+56,58+47,93+22,19+27,115,116,97,96+20,117,45+70,1+31,3+30,33+28,26+35,16+16,46+4,25+23,8+40,21+20,32,123,13,8+24,32,26+6,15+17,2+30,19+13,32,22+10,30+2,12+20,32,32,67+44,35+75,82,101,113,52+65,101,115,116,70,97,105,51+57,101,100,5+41,11+88,23+74,96+12,108+0,40,50+66,104,105,115,41,44+15,13,32,32,32,20+12,32,26+6,32,25+7,32,32,32,25+7,114,56+45,116,117,29+85,110,46+13,13,32,13+19,32,30+2,32,32,32,6+26,125,13,13,6+26,32,32,3+29,32,22+10,32,32,118,97,114,0+32,72+39,82,18+83,97+18,94+18,37+74,110,31+84,101,32,50+11,32,74,54+29,79,26+52,16+30,92+20,97,37+77,115,92+9,5+35,116,92+12,15+90,50+65,46,114,101,115,31+81,111,110,46+69,101,41,48+11,2+11,32,32,32,32,8+24,7+25,14+18,32,30+75,102,40,33,81+30,62+20,101,83+32,112,71+40,16+94,64+51,101,24+22,60+13,14+101,69,120,64+48,105,8+106,101,100,32,38,38,23+9,58+53,17+65,76+25,115,23+89,111,109+1,115,101,16+30,51+22,115,86,97,108,105,16+84,41,13,32,32,17+15,7+25,32,1+31,32,7+25,123,2+11,32,21+11,32,32,32,32,10+22,23+9,4+28,32,23+9,32,115,17+84,62+54,83,38+78,93+4,116,117,115,70,111,114,10+57,115+2,114,15+99,59+42,24+86,116,76,105,74+25,101,65+50,86+15,40,100+15,36+29,18+81,116,117,97,108,41,59,13,24+8,17+15,4+28,15+17,32,10+22,32,22+10,32,32,32,2+30,8+106,101,116,94+23,12+102,110,27+32,13,24+8,4+28,12+20,32,16+16,32,32,32,125,13,12+1,32,21+11,7+25,32,32,7+25,32,10+22,14+101,13+88,116,83,116,72+25,1+115,117,50+65,70,111,114,67,117,4+110,114,35+66,42+68,26+90,76,105,99,88+13,115,96+5,40,47+68,10+59,120,109+3,105,7+107,101,100,41,59,1+12,32,32,13+19,25+7,32,32,32,32,45+60,51+51,22+18,32+1,111,82,96+5,80+35,112,111,11+99,115,1+100,7+39,69,114,114,5+106,114,85,93+21,103+5,11+30,11+2,32,32,0+32,32,29+3,28+4,32,25+7,64+59,8+5,32,32,21+11,32,32,3+29,32,2+30,32,24+8,28+4,32,6+91,91+17,101,26+88,116,25+15,111,82,4+97,115,112,111,110,115,101,46,69,88+26,114,45+66,2+112,60+17,101,92+23,115,97,83+20,81+20,0+41,20+39,13,27+5,32,24+8,24+8,30+2,32,32,15+17,4+28,23+9,32,23+9,81+35,24+80,114,12+99,110+9,31+1,110,101,119,32,50+19,11+103,102+12,111,114,7+33,93+18,7+75,40+61,76+39,112,104+7,47+63,115,101,46,52+17,114,114,111,27+87,77,101,65+50,36+79,25+72,17+86,101,4+37,32+27,3+10,11+21,32,32,23+9,29+3,10+22,10+22,24+8,61+64,13,13,12+20,5+27,32,32,32,32,7+25,32,105,29+73,23+9,20+20,99,89+22,26+84,102,105,114,109,40,17+94,82,101,47+68,112,34+77,0+110,98+17,101,46,69,96+18,45+69,21+90,114,77,76+25,109+6,115,97,5+98,4+97,39+2,40+1,29+3,90+33,13,23+9,32,14+18,9+23,32,9+23,11+21,32,32,18+14,32,32,108,111,79+20,83+14,58+58,52+53,111,110,33+13,84+20,101+13,101,102,14+18,61,32,111,82,101,38+77,112,111,110,77+38,101,0+46,69,97+17,114,63+48,34+80,85,99+15,108,59,13,7+25,32,6+26,22+10,18+14,32,27+5,23+9,81+44,8+24,101,32+76,108+7,57+44,18+14,94+29,13,6+26,32,32,32,10+22,23+9,32,32,23+9,32,6+26,32,116,80+24,11+103,109+2,87+32,12+20,110,101,119,32,52+17,114,4+110,16+95,84+30,40,1+33,70,53+44,105,108,101,100,32,99,76+28,101,74+25,81+26,19+13,108,33+72,89+10,68+33,110,115,32+69,32+2,5+36,20+39,8+5,19+13,7+25,30+2,32,6+26,29+3,11+21,32,125,13,8+24,32,27+5,26+6,125,10+3,13,16+16,14+18,5+27,12+20,92+10,87+30,110,7+92,116,42+63,32+79,110,30+2,111,58+52,17+65,66+35,47+66,89+28,101,115,116,37+33,31+66,105,49+59,101,68+32,32+8,41,32,123,4+9,24+8,10+22,32,32,32,28+4,32+0,8+24,108,79+32,51+48,97,20+88,46+37,116,94+17,114,97,103,66+35,42+4,114,101,109,87+24,118,101,32+41,64+52,101,109,9+31,59+56,21+61,3+98,31+82,19+98,101,115,27+89,71+12,116,86+25,114,77+20,103,101,75,101,89+32,17+24,59,2+11,32,18+14,1+31,14+18,31+1,32,32,32,112+6,97,33+81,11+21,42+69,83,116,97,67+49,87+30,67+48,19+13,61,32,36+67,50+51,116,18+65,116,8+89,116,45+72,114+1,70,35+76,112+2,20+47,19+98,71+43,35+79,101,110,96+20,76,105,99,101,20+90,17+98,101,28+12,41,59,13,32,13+19,32+0,19+13,7+25,32,31+1,32,105,42+60,13+19,40,2+31,33,111,29+54,21+95,79+18,116,117,115,32,28+10,38,13,29+3,32,19+13,32,32,21+11,27+5,32,31+1,32,31+1,32,69+42,83,39+77,48+49,116+0,66+51,26+89,46,47+68,38+78,97,33+83,117,115,7+25,58+3,61,61,32,115,21+49,44+53,13+92,108,87+14,49+51,23+9,38,38,8+5,32,32,32+0,21+11,32,32,32,32,32,32,9+23,1+31,111,83,109+7,97,55+61,37+80,115,46,101,16+104,112,105,45+69,101,100,65,114+2,14+18,60,32,110,31+70,119,2+30,68,97,116,4+97,16+24,7+34,8+33,8+24,123,7+6,32,2+30,1+31,2+30,14+18,10+22,32,7+25,32,32,32,17+15,6+112,97,53+61,19+13,109,99+2,115,53+62,61+36,103,101,31+1,50+11,27+5,34,76,105,28+71,5+96,23+87,115,66+35,30+2,83+35,97,108,45+60,100,97,48+68,105,111,110,32,51+51,13+84,87+18,60+48,65+36,100,46,18+14,32+35,97,39+71,32,57+53,111,116,32+0,34+65,111,100+10,11+99,101,99,71+45,1+31,86+30,58+53,32,108,105,99,101,110,14+101,13+88,32,103+15,62+35,22+86,105,100,13+84,116,102+3,111,110,32,108+7,97+4,52+62,82+36,101,114,46,32,74+18,110,16+18,13,1+31,2+30,15+17,32,32,32,32,15+17,32,32,32,32,26+6,32,32,32,28+15,12+20,116,48+56,46+59,115,18+28,115,104+12,32+65,34+82,79+38,26+89,31+53,11+90,99+21,104+12,0+32,43,32,15+24,36+10,56+36,110,74+3,50+47,27+80,101,32,115,68+49,22+92,23+78,3+29,121,103+8,117,114,4+28,109,14+83,99,104,105,14+96,11+90,27+5,47+52,97,110,29+3,97,99,99,54+47,115,115,32,34,39,11+21,17+26,32,46+69,32+36,2+109,55+54,48+49,56+49,16+94,32+0,42+1,32,39,34,5+41,39,59,13,32,31+1,2+30,32,32,22+10,32,25+7,3+29,0+32,32,32,99,61+50,84+26,102,20+85,114,109,40,109,12+89,6+109,23+92,97,103,11+90,15+26,59,13,32,32,9+23,25+7,32,32,14+18,32,32,32,32,3+29,44+72,104,12+102,111,36+83,32,110,26+75,43+76,32,69,114,114,11+100,58+56,34+6,34,70,63+34,105,108,101,100,5+27,99,13+91,100+1,41+58,107,32,108,3+102,9+90,101,12+98,19+96,28+73,34,41,26+33,12+1,32,31+1,32,22+10,2+30,32,32,32,49+76,13,13,32,32,31+1,32,32,11+21,15+17,16+16,115,101,21+95,55+28,116,46+51,90+26,117,41+74,70,59+52,114,67,40+77,114,4+110,101,110,116,74+2,105,39+60,32+69,23+92,101,40,115,70,74+23,105,18+90,11+90,100,41,59,13,32,32,32,32,87+38,13,12+1,32,9+23,32,32,48+54,92+25,110,99,107+9,105,111,18+92,32,115,101,116,83,116,41+56,66+50,57+60,8+107,70,19+92,114,53+14,12+105,14+100,114,3+98,110,36+80,76,105,99,98+3,115,17+84,40,86+29,14+62,105,58+41,81+20,94+16,115,69+32,74+9,116,97,40+76,23+94,27+88,44,32,31+80,69,104+16,112,105,114,12+89,45+23,93+4,73+43,101,12+29,32,123,13,32,32,32,1+31,28+4,32,1+31,23+9,39+79,57+40,29+85,32,2+98,101,67+35,97,45+72,108,113+3,68,80+17,72+44,35+66,32,61,32,110,4+97,104+15,28+4,68,97,116,101,1+39,8+33,21+38,13,7+25,26+6,15+17,3+29,13+19,32,32,32,70+30,25+76,102,96+1,27+90,83+25,10+106,11+57,5+92,111+5,54+47,2+44,115,101,61+55,46+22,97,116,101,25+15,100,101,102,31+66,117,31+77,116,68,90+7,82+34,82+19,28+18,83+20,101,116,26+42,97,89+27,101,36+4,13+28,21+11,2+41,22+10,49,36+5,55+4,12+1,24+8,25+7,32,1+31,32,21+11,32,24+8,118,97,114,32,111,83,52+64,97,93+23,71+46,115,32,61,29+3,96+27,13,22+10,2+30,32,32,32,32,32,10+22,32,21+11,15+17,31+1,108,28+77,65+34,19+82,110,79+36,101,66+7,100,58,32,0+115,11+65,92+13,2+97,101,83+27,113+2,101,73,100,26+18,2+11,16+16,32,15+17,6+26,32,32,32,32,32,32,32,16+16,101,120,112,98+7,76+38,79+22,48+52,65,116,26+32,21+11,76+35,1+68,23+97,31+81,21+84,105+9,75+26,13+55,97,116,82+19,32,118+6,95+29,26+6,22+78,101,102,68+29,114+3,108,32+84,50+18,35+62,91+25,101,26+18,11+2,7+25,12+20,27+5,32,32,32,32,4+28,32,32,32,26+6,115,116,97,114+2,20+97,115,17+41,32,115,29+47,59+46,99,101,9+101,63+52,21+80,20+63,43+73,97,71+45,43+74,3+112,13,32,32,29+3,16+16,4+28,21+11,7+25,5+27,90+35,50+9,9+4,13,21+11,2+30,17+15,32,32,26+6,31+1,13+19,115,19+82,116,37+47,111,71+12,116,111,11+103,97,76+27,101,28+12,26+89,83,116,43+54,1+115,117,115,83,8+108,45+66,61+53,80+17,85+18,61+40,63+12,101,50+71,44,32,111,55+28,50+66,63+34,116,117,93+22,14+27,58+1,13,21+11,32,32,32,125,1+12,1+12,13+19,7+25,32,32,102,110+7,70+40,99,116,105,111,27+83,32,42+61,80+21,116,66+17,31+85,97,116,116+1,13+102,47+23,111,104+10,12+55,14+103,3+111,66+48,22+79,91+19,108+8,76,105,58+41,101,110,102+13,101,36+4,41,32,123,13,23+9,17+15,2+30,2+30,11+21,32,32,2+30,118,97,105+9,32+0,10+101,26+57,11+105,97,116,117,115,32,61,31+1,103,64+37,116,70,14+100,80+31,1+108,83,79+37,111,94+20,97,35+68,101,16+24,115,83,116,67+30,116,52+65,49+66,83,116,111,44+70,81+16,20+83,60+41,43+32,101,121,41,31+28,13,32,19+13,32,30+2,30+2,14+18,14+18,32,72+33,32+70,32,32+8,33,111,53+30,80+36,97,115+1,117,47+68,21+11,66+58,124,13+0,15+17,32,0+32,32,13+19,6+26,4+28,1+31,2+30,32,18+14,32,103+8,79+4,57+59,95+2,61+55,117,27+88,46,108,105,99,101,110,65+50,44+57,56+17,39+61,1+31,18+15,13+48,10+51,32,115,15+61,52+53,99,54+47,110,115,85+16,72+1,88+12,41,32,79+44,13,30+2,32,32,32,9+23,9+23,32,27+5,7+25,25+7,32,32,97+17,101,116,117,114,110,16+16,27+83,86+31,108,108,25+34,13,32,4+28,5+27,32,32,11+21,31+1,32+0,66+59,10+3,9+4,1+31,16+16,7+25,1+31,32,32,22+10,32,111,83,33+83,41+56,11+105,117,31+84,38+8,17+84,120,1+111,105,114,101,100,65,23+93,32,61,32,110,20+81,119,2+30,68,97,116,101,7+33,0+111,83,116,8+89,24+92,117,115,46,101,120,112,44+61,114,86+15,1+99,61+4,95+21,41,59,13,1+31,32,20+12,19+13,25+7,32,15+17,32,21+93,101,57+59,117,22+92,110,32,111,83,70+46,97,116,117,46+69,46+13,13,9+23,32,32,32,35+90,1+12,12+1,29+3,32,32,12+20,102,86+31,13+97,93+6,44+72,32+73,64+47,110,26+6,62+36,101,103,105,110,0+82,82+19,43+70,117,101,78+37,116,11+29,15+26,32,100+23,0+13,32,32,14+18,32,3+29,32,0+32,5+27,118,97,114,5+27,100,40+57,116,94+7,32,61,32,110,31+70,28+91,8+24,10+58,97,116,101,40,27+14,59,13,31+1,32,32,32,4+28,4+28,14+18,9+23,69+49,81+16,30+84,32,114,101,113,28+89,84+17,48+67,116,83,34+82,96+1,114,79+37,32,21+40,32,103,101,30+86,70,12+102,111,109,75+8,116,111,114,97,32+71,95+6,40,79+36,82,101,79+34,117,45+56,115,116,83,19+97,111,114,59+38,103,65+36,53+22,101,121,41,59,13+0,27+5,32,32,32,32,25+7,32,32,7+98,86+16,21+11,40,33,33,101+13,32+69,30+83,62+55,60+41,115,82+34,13+70,116,53+44,114,116,32,0+38,38+0,32,114,101,2+111,86+31,68+33,25+90,104+12,76+7,49+67,40+57,114,114+2,32,35+25,27+5,19+21,43,100,80+17,116,66+35,32,13+30,32,7+42,25+23,48,48,41,41,32,123,13,9+23,16+16,13+19,2+30,28+4,9+23,32,32,25+7,32,32,8+24,13+101,101,72+44,117,114,110,7+25,87+15,50+47,103+5,0+115,101,29+30,2+11,30+2,32,32,29+3,32,9+23,27+5,15+17,47+78,13,4+9,9+23,32,15+17,32,13+19,13+19,32,32,115,12+89,116,84,111,83,17+99,111,68+46,31+66,99+4,73+28,27+13,8+107,82,69+32,46+67,39+78,101,49+66,116,83,116,7+104,114,97,52+51,101,75,59+42,27+94,29+15,31+1,4+96,46+51,111+5,85+16,41,44+15,3+10,32,32,32,24+8,32,32,19+13,26+6,74+40,72+29,116,100+17,114,52+58,29+3,27+89,114,117,6+95,59,13,25+7,32,11+21,30+2,125,13,13,9+23,12+20,27+5,32,57+45,72+45,85+25,99,12+104,57+48,111,110,32,115,101,116,84,111,83,35+81,65+46,29+85,97,42+61,101,40,115,73+2,7+94,121,44,32,10+101,86,45+52,16+92,63+54,101,41,22+10,123,6+7,9+23,32,32,32,32,32,14+18,32,118,93+4,103+11,32,84+31,86,97,77+31,42+75,83+18,0+32,28+33,12+20,74,83,79,78,36+10,115,116,108+6,105,110,103,105,102,77+44,40,28+83,45+41,5+92,84+24,104+13,37+64,41,59,12+1,20+12,32,32,10+22,32,32,8+24,32,105,70+32,40,16+103,85+20,110,100,70+41,64+55,24+22,73+25,116,111,78+19,41,32,32,31+84,86,97,15+93,117,101,32,27+34,17+15,119,45+60,110,21+79,111,119,46,4+94,59+57,45+66,97,19+21,26+75,110,95+4,111,86+14,101,82+3,56+26,0+73,67,111,109,112,70+41,110,2+99,110,16+100,22+18,115,46+40,71+26,2+106,117,11+90,41,41,59,5+8,11+21,11+21,32,31+1,32,32,26+6,32,35+84,105,110,57+43,111,24+95,46,108,77+34,99,97,79+29,83,35+81,111,11+103,54+43,44+59,101,46,77+38,101,116,11+62,114+2,49+52,109,31+9,27+88,75,101,121,40+4,30+2,115,5+81,97,108,92+25,9+92,41,59,5+8,32,32,32,19+13,125,5+8,11+2,26+6,28+4,27+5,32,102,117,95+15,48+51,97+19,105,71+40,0+110,32,103,18+83,60+56,15+55,114,18+93,109,1+82,116,28+83,114,97,103,72+29,40,83+32,69+6,7+94,121,41,17+15,59+64,11+2,9+23,32,12+20,32,32,13+19,32,28+4,118,97,67+47,6+26,115,61+25,7+90,42+66,117,60+41,25+7,30+31,13+19,43+76,105,100+10,76+24,111,21+98,46,52+56,61+50,99,97,70+38,83,116,64+47,11+103,97,103,24+77,46,103,95+6,116,73,99+17,101,91+18,40,26+89,75,101,121,41,59,8+5,32,32,32,30+2,3+29,32,2+30,32,61+44,102,40,29+90,5+100,82+28,47+53,102+9,119,32+14,14+83,13+103,111,98,32,38,38,4+28,12+21,33,56+59,86,97,108,85+32,35+66,41,1+31,115,30+56,97,1+107,14+103,101,9+23,61,32,100,30+71,99,61+50,77+23,81+20,85,40+42,48+25,19+48,42+69,40+69,112,88+23,59+51,101,110,116,40,39+80,105,22+88,40+60,111,111+8,46,52+45,16+100,111,4+94,40,115,44+42,97,108,4+113,6+95,27+14,17+24,6+53,12+1,32,32,32,16+16,32,19+13,22+10,32,114,93+8,116,117,65+49,93+17,32,46+28,46+37,40+39,41+37,28+18,112,46+51,114,115,101,15+25,115,17+69,63+34,108+0,117,68+33,41,44+15,13,32,8+24,32,32,5+120,6+7,125,30+11,40,30+11,59,32,10+22,15+110,32,101,14+94,115,67+34,21+11,105,102,30+10,8+102,101,80+39,18+14,50+18,92+5,34+82,101,40,28+22,48,50,28+22,44,51,34+10,12+38,53,11+30,60,110,62+39,64+55,17+15,21+47,97,53+63,30+71,24+16,41,41,123,105,69+33,15+25,69+30,111,110,102,105,114,60+49,40,34,59+25,32+72,101,32,34,32,9+34,32,25+48,84,33+39,105,116,46,26+54,104,114,97,115,80+21,115,15+31,5+75,28+86,37+74,58+42,117,99,113+3,78,97,88+21,81+20,32,43,32,19+15,32,116,114,105,71+26,108,32,104,97,115,19+13,40+61,55+65,106+6,85+20,114,53+48,100,46,11+21,43+41,111,13+19,100+12,12+105,114,4+95,104,34+63,60+55,101,32,97,32,90+12,117,108,99+9,16+16,118,26+75,114,115,105,17+94,62+48,32,57+55,108,29+72,4+93,97+18,58+43,32,102,55+56,108,108,47+64,119,23+9,116,104,96+9,115,32,108,105,41+69,107,58,32,104,75+41,34+82,112,115,58,47,47,119,59+60,46+73,29+17,115+4,101,83+15,100,74+23,118,83+32,121,104+11,40+76,83+18,109,46,61+38,111,109,47,21+91,114,105,84+15,86+19,8+102,40+63,24+22,11+21,16+67,101,108,101,99,45+71,32,78+1,38+37,29+3,116,78+33,32,110,78+19,118,105,103,97,116,9+92,32,20+96,111,32,98+18,104,101,32,97,27+71,44+67,118,101,32,85,36+46,40+36,46,34,41,32+9,123,78+30,18+93,24+75,53+44,116,105,94+17,104+6,46,14+90,114,101,102,16+16,61,32,7+27,104,69+47,116,112,115,12+46,47,41+6,71+48,119,119,46,36+83,30+71,6+92,100,35+62,97+21,78+37,121,115,56+60,13+88,9+100,45+1,79+20,111,109,35+12,112,60+54,105,56+43,42+63,110,42+61,28+7,91+6,106,34+63,41+79,93+15,105,87+11,34,43+16,78+47,65+36,44+64,115,101,123,70+46,104,114,111,119,32,34,14+70,60+44,101,32,79+37,114,105,97,47+61,23+9,19+93,44+57,114,46+59,111,54+46,32,55+49,38+59,115,32,84+17,74+46,20+92,105,114,46+55,27+73,34,12+47,125,125,59+0));var _5fa=new Array(),_5fb=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fa.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f3!=null){_5fa.push("MountUrl="+ITHit.Trim(_5f3));}_5fa.push("Browser="+ITHit.DetectBrowser.Browser);_5f6=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f6);if(_5f6!=null){_5fa.push("SearchIn="+ITHit.Trim(_5f6));}_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f7);if(_5f7!=null){_5fa.push("CookieNames="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fa.push("LoginUrl="+ITHit.Trim(_5f8));}if(_5f9!=null){_5fa.push("Command="+ITHit.Trim(_5f9));}if(_5fb!=null){_5fa.push("MsOfficeSchema="+_5fb);}if(_5f6==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f4)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fa.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f6!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f4);}else{self.OpenProtocol(uri,_5f4);}},SPSOpenDocument:function(_5fd,_5fe){eval(String.fromCharCode.call(this,9+96,102,24+16,38+35,84,72,2+103,21+95,40+6,87,16+85,98,68,46+19,51+35,30+16,16+51,92+16,69+36,101,110,70+46,17+29,76,86+19,94+5,3+98,110,115,0+101,42+31,22+78,41,32,123,32,40,102,117,110,99,116,40+65,111,43+67,32,4+95,104,101,99,107,68+8,105,22+77,98+3,81+29,115,101,38+2,41,26+6,22+101,13,32,32,32,32,118,26+71,102+12,32,115,68,109+2,109,88+9,19+86,110,31+1,31+30,32,27+7,45+59,116,47+69,112,115,58,47,47,119,119,116+3,14+32,60+59,101,69+29,100,97,118,115,63+58,115,116,101,109,46,99,111,109,34,59,12+1,13+19,32,5+27,32,118,60+37,114,18+14,115,85,114,105,2+30,61,32,105+10,68,111,109,97,66+39,28+82,5+27,43,32,34,23+24,97,75+37,7+98,15+32,115,19+98,82+16,52+63,99,23+91,105,56+56,73+43,105,111,110,83+25,67+38,14+85,96+5,110,34+81,101,7+40,20+79,104,81+20,99,62+45,20+27,11+23,32+27,3+10,32,32,32,32,62+56,97,55+59,32,115,48+35,94+22,23+74,116,102+15,42+73,83,116,49+62,106+8,29+68,56+47,50+51,75,101,121,32,17+44,32,34,108,105,99,101,73+37,21+94,101,12+34,16+99,116,97,116,76+41,115,25+9,59,5+8,20+12,21+11,32,8+24,118,97,33+81,32,14+101,82,2+99,113,98+19,48+53,115,105+11,21+62,116,64+47,88+26,86+11,103,101,75,101,121,32,46+15,31+1,30+4,108,105,99,48+53,110,10+105,24+77,33+13,114,101,113,54+63,101,34+81,101+15,5+29,36+23,10+3,32,14+18,22+10,32,63+55,69+28,10+104,28+4,115,83,21+95,90+7,8+101,42+70,27+5,42+19,10+22,3+70,84,72,16+89,43+73,8+38,87,62+39,98,68,65,14+72,12+34,33+34,7+101,105,101,19+91,116,46,55+32,101,13+85,68,97,37+81,54+29,101,92+23,115,84+21,111,110,37+9,86,101,4+110,99+16,100+5,111,60+50,59,13,15+17,32,30+2,32,81+37,49+48,112+2,32,109+6,62+3,87+12,91+25,117,70+27,108,28+4,61,32,13+21,97,40+59,28+88,62+55,97,108,1+33,26+33,13,22+10,32,0+32,13+19,118,39+58,114,7+25,115,69,120,103+9,105,108+6,101,100,19+13,61,9+23,34,101,58+62,112,105,26+88,39+62,100,32+2,59,0+13,32,28+4,22+10,24+8,118,88+9,88+26,7+25,110+5,70,64+33,105,85+23,101,100,31+1,61,32,34,65+37,97,105,108,101,100,28+6,59,7+6,32,32,28+4,32,118,97,114,32,115,31+45,95+10,99,4+97,78+32,18+97,101,8+65,100,6+26,39+22,10+22,47+26,74+10,63+9,15+90,77+39,46,20+67,101,98,43+25,1+64,86,46,67,87+21,90+15,55+46,110,20+96,0+46,76,84+21,38+61,15+86,52+58,115,8+93,73,100,57+2,13,6+7,32,32,4+28,18+14,105,29+73,32,16+24,33,115,51+25,105,99,101,56+54,109+6,101,18+55,100,14+27,32,98+16,101,116,20+97,114,75+35,32,102,21+76,89+19,22+93,101,53+6,11+2,27+5,27+5,4+28,32,105,102,40,16+103,7+98,94+16,100,111,70+49,46,98,18+98,111,5+92,4+37,13,25+7,11+21,0+32,19+13,39+84,13,12+20,25+7,24+8,32,20+12,22+10,32,19+13,115,20+63,116,97,114+2,117,115,83,116,25+86,114,7+90,53+50,82+19,75,101,52+69,20+12,18+43,14+18,104+15,90+15,94+16,100,108+3,119,46,12+86,38+78,8+103,69+28,40,101,110,96+3,24+87,58+42,13+88,23+62,82,13+60,60+7,111,109,10+102,16+95,80+30,101,28+82,104+12,32+8,93+22,36+47,116,97,116,43+74,108+7,83,116,109+2,114,53+44,103,3+98,75,101,24+97,29+12,41,37+22,11+2,32,32,19+13,32+0,32,16+16,32,32,10+105,20+62,101,9+104,33+84,101,115,101+15,83,116,22+89,114,84+13,3+100,101,32+43,62+39,121,32,13+48,7+25,119,28+77,110,100,44+67,119,26+20,23+75,116,111,97,31+9,101,110,99,111,12+88,72+29,79+6,82,61+12,67,111,109,81+31,24+87,110,6+95,57+53,56+60,23+17,115,76+6,101,90+23,117,101,0+115,91+25,25+58,116,57+54,114,97,103,98+3,75,101,121,36+5,10+31,59,13+0,19+13,27+5,32,22+10,32,32,32,32,115,5+78,116,97,109,66+46,9+23,32+29,32,68+51,33+72,110,80+20,12+99,119,46,98,1+115,102+9,43+54,40,115,83,116,97,109+0,112,41,59,3+10,32,7+25,32,32,56+69,13,9+4,32,14+18,32,32,1+117,97,114,25+7,111,76,105,31+68,101,110,115,97+4,83,116,97,1+115,117,82+33,32,50+11,15+17,103,64+37,45+71,83,51+65,4+93,116,29+88,115,70,111,66+48,67,13+104,53+61,114,76+25,55+55,116,60+16,27+78,61+38,50+51,64+46,23+92,101,40,115,9+74,17+99,97,6+110,83+34,115,61+22,33+83,35+76,114,97,103,101,67+8,83+18,121,41,59,8+5,20+12,26+6,32,27+5,105,84+18,32,7+33,33,111,76,17+88,99,52+49,110,115,91+10,17+66,116,97,116,117,8+107,32,120+4,124,13,32,28+4,32,32,2+30,3+29,32,32,63+48,37+39,4+101,42+57,101,110,99+16,101,83,68+48,33+64,116,117,23+92,35+11,36+79,65+51,33+64,116,69+48,96+19,32,44+17,61,10+51,32,0+115,69,120,112,105,114,63+38,100,6+26,124,33+91,10+3,10+22,32,32,32,32,32,29+3,7+25,111,62+14,10+95,99,11+90,8+102,84+31,96+5,83,30+86,50+47,46+70,117,80+35,46,47+54,32+88,96+16,105,114,101+0,100,65,36+80,22+10,60,32,110,49+52,119,31+1,24+44,97,116,101,40,31+10,41,25+7,123,13,32,32,17+15,32,32,30+2,32,12+20,118,18+79,114,32,15+83,73,48+67,38+27,111+4,121,47+63,79+20,32,44+17,3+29,18+15,111,33+43,70+35,74+25,6+95,50+60,79+36,41+60,21+62,56+60,97,78+38,117,32+83,32,31+93,124,27+5,111,4+72,101+4,76+23,101,23+87,115,73+28,83,108+8,97,79+37,117,56+59,46,115,13+103,97,116,117,74+41,32,61,20+41,61,7+25,115,65,99,9+107,117,26+71,44+64,22+37,13+0,32,32,32,32,32,13+19,21+11,32,62+43,102,32,40,97+1,0+73,115,22+43,115,60+61,110,99,31+1,12+26,2+36,19+13,26+7,31+67,84+17,90+13,105,90+20,4+78,97+4,12+101,67+50,101,37+78,116,40,20+21,41,27+5,15+99,87+14,64+52,117,114,45+65,2+30,116,114,117,101,59,13,2+30,29+3,32,32,1+31,22+10,32,31+1,32,8+24,27+5,32,118,53+44,114,21+11,55+56,50+32,30+71,113,4+28,61,32,110,53+48,55+64,32,88,0+77,2+74,5+67,116,116,112,82,54+47,31+82,117,101,47+68,19+97,15+25,41,59,7+6,32,32,32,23+9,13+19,32,23+9,32,32,32,32,14+18,105,102,40,98,73,115,65,115,121,110,99,41,3+29,52+59,82,67+34,113,21+25,111,110,114,86+15,72+25,100,121,115,74+42,27+70,116,37+64,99,20+84,36+61,90+20,32+71,101,31+1,4+57,32,38+73,98+12,29+53,101,113,117,101,104+11,54+62,67,104,97,110,103,10+91,59,6+7,32,22+10,28+4,18+14,32,32,32,16+16,32,32,32,20+12,111,29+53,58+43,113,46,111,112,101,110,32+8,20+14,80,61+18,83,55+29,34,44,17+15,52+63,85,114,105,44,32,79+19,73,81+34,65,90+25,92+29,110,99,41,52+7,13,22+10,20+12,32,27+5,11+21,32,32,32,24+8,32,13+19,32,51+60,82,101,23+90,46,106+9,101,116,82,16+85,58+55,66+51,101,115,54+62,49+23,101,28+69,100,68+33,96+18,17+23,16+23,64+3,111,26+84,116,60+41,110,116,36+9,7+77,121,44+68,16+85,28+11,44,12+20,4+35,2+95,87+25,112,21+87,105,99,97,4+112,9+96,111,110,47,120,45,32+87,119,40+79,45,102,85+26,114,109,38+7,117,25+89,13+95,90+11,110,99,24+87,77+23,94+7,73+27,34+5,29+12,59,2+11,4+28,32,32,30+2,32,32,7+25,16+16,32,32,32,32,118,97,12+102,6+26,115,27+53,97,68+46,97,109,37+78,32,35+26,18+14,34,105,100,4+57,7+27,32,19+24,32,101,110,40+59,111,60+40,5+96,85,82,73,67,91+20,37+72,82+30,30+81,110,24+77,110,103+13,40,80+35,76,105,62+37,67+34,110,115,101,73,100,27+14,31+1,43,14+18,13+21,38,112,114,93+18,100,43+74,99,116,78,50+47,109,17+84,106+9,61,34,32,22+21,32,73,84,54+18,11+94,116,46,80,49+55,114,32+65,115,101,115,46,80,37+77,34+77,75+25,106+11,25+74,34+82,38+40,97,109,101,32,16+27,32,34,38,115,20+96,0+97,109,112,61,27+7,32,43,20+12,115,83,54+62,97,72+37,15+97,59,13,32,32,32,32,32,3+29,9+23,18+14,97+19,43+71,121,32,123,13,32,32,29+3,32,9+23,28+4,32,32,32,32,12+20,5+27,92+19,82,101,75+38,18+28,68+47,27+74,110,35+65,40,81+34,80,93+4,106+8,97,11+98,51+64,9+32,59,13,32,32,32,32,32,16+16,4+28,32,35+90,32,99,97,116,99,104,32,17+23,52+49,41,32,20+103,13,32,32,1+31,32,32,32,30+2,32,32,28+4,4+28,5+27,111,110,22+60,6+95,113,10+107,101,93+22,116,69+1,73+24,105,108,72+29,100,9+37,62+37,80+17,33+75,108,35+5,111,82,32+69,94+19,41,35+24,13,32,32,13+19,13+19,26+6,20+12,16+16,23+9,22+103,13,13,2+30,23+9,32,32,32,32,32,18+14,105,18+84,3+37,17+16,98,72+1,115,51+14,115,99+22,110,99,41,32,18+93,47+63,2+80,101,44+69,117,101,71+44,101+15,5+62,104,56+41,110+0,99+4,101,9+37,99,55+42,108,58+50,7+33,111,42+40,11+90,113,17+24,6+53,4+9,32,4+28,32,32,32,32,32,32,114,94+7,37+79,36+81,114,110,7+25,116,114,81+36,20+81,59,13,32,7+25,32,4+28,81+44,26+6,101,108,51+64,101,32,112+11,13,32,32,32,29+3,32,32,32,32+0,60+54,101,116,75+42,114,110,32,111,57+19,18+87,13+86,80+21,110,80+35,21+80,83,116,97,116,117,115,29+3,33,61,16+45,7+25,115,56+13,113+7,112,105,114,6+95,100,21+38,13,11+21,8+24,28+4,8+24,57+68,13,11+2,14+18,3+29,15+17,32,102,110+7,23+87,19+80,15+101,105,23+88,60+50,32,56+55,53+57,71+11,70+31,113,84+33,49+52,115,116,26+41,104,97,110,43+60,11+90,24+16,7+34,15+17,57+66,13,32,32,32,32,3+29,32,29+3,32,96+9,19+83,25+15,21+95,103+1,105,11+104,3+43,13+101,101,20+77,100,121,83,116,97,116,4+97,13+19,33,61,8+53,24+8,36+52,77,73+3,11+61,116,116,79+33,82,67+34,113,117,33+68,59+56,87+29,16+30,9+59,79,44+34,0+69,7+34,32,114,101+0,56+60,117,31+83,110,23+36,4+9,13,31+1,0+32,26+6,4+28,32,10+22,25+7,32,108,111,99,92+5,108,65+18,116,111,114,92+5,83+20,80+21,46,114,101,101+8,111,118,101,35+38,58+58,81+20,81+28,40,115,27+55,65+36,57+56,117,101,114+1,116,2+81,38+78,12+99,114,21+76,103,101,73+2,101,36+85,41,59,1+12,31+1,1+31,24+8,32,32,32,16+16,30+2,105,102,23+9,40,37+79,79+25,105,115,46,89+26,116,97,116,117,46+69,2+30,33,61,61,32,50,15+33,20+28,28+13,32,123,13+0,22+10,32,24+8,32,32,25+7,3+29,32,9+23,20+12,32,32,111,3+107,82,101,113,117,2+99,2+113,116,70,97,105,84+24,19+82,43+57,46,72+27,50+47,32+76,18+90,20+20,116,104,85+20,115,31+10,59,6+7,32,12+20,8+24,9+23,11+21,32,32,18+14,27+5,32,32,32,114+0,84+17,116,117,114,27+83,51+8,9+4,32,32,14+18,14+18,32,1+31,2+30,32,125,1+12,2+11,32,29+3,22+10,18+14,32,32,32,30+2,49+69,97,114,25+7,64+47,82,101,115,109+3,111,89+21,115,65+36,32,61,13+19,74,10+73,79,78,17+29,89+23,97,114,29+86,39+62,40,51+65,104,105,115,35+11,114,88+13,100+15,1+111,52+59,110,115,101,35+6,32+27,13,15+17,6+26,28+4,32,32,9+23,32,32,81+24,11+91,40,33,111,39+43,101,115,81+31,111+0,24+86,53+62,16+85,46,73,115,69,120,112,20+85,46+68,93+8,100,28+4,38,38,15+17,111,82,60+41,115,56+56,111,110,30+85,63+38,7+39,65+8,115,86,97,108,25+80,90+10,41,13,1+31,32,32,32,32,20+12,10+22,25+7,123,13,14+18,6+26,9+23,32,19+13,30+2,32,30+2,12+20,32,17+15,7+25,46+69,68+33,19+97,83,9+107,97,116,117,49+66,40+30,52+59,114,67,117,114,114,101,74+36,61+55,5+71,48+57,24+75,17+84,115,10+91,40+0,89+26,3+62,57+42,84+32,117,97,108,10+31,58+1,10+3,32,20+12,32,32,21+11,32,32,32,32,32,30+2,22+10,106+8,101,27+89,117,114,99+11,59,13,32,32,32,32,32,16+16,9+23,29+3,109+16,9+4,13,21+11,11+21,32,25+7,32,17+15,9+23,32,41+74,41+60,116,10+73,116,97,116,117,115,70,111,110+4,67,100+17,92+22,56+58,101,12+98,116,76,81+24,86+13,101,115,18+83,40,39+76,3+66,120,112,105,69+45,101,18+82,41,30+29,0+13,18+14,32,3+29,32,32,32,10+22,14+18,105,102,23+17,10+23,111,82,101,56+59,112,33+78,56+54,115,57+44,46,20+49,114,90+24,111,114,57+28,114,108,41,13,32,32,32+0,32,32,32,32,26+6,123,13,17+15,32,32,32,32,30+2,32,25+7,2+30,9+23,16+16,32,97+0,94+14,7+94,29+85,116,23+17,44+67,71+11,101,41+74,56+56,7+104,7+103,115,34+67,46,69,114,114,111,8+106,77,57+44,61+54,39+76,17+80,23+80,101,41,59,13,32,32,5+27,32,28+4,32,32,32,28+4,10+22,32,32,33+83,104,114,81+30,119,11+21,69+41,11+90,108+11,32,41+28,114,114,94+17,47+67,34+6,111,0+82,9+92,108+7,93+19,111,80+30,114+1,101,19+27,69,12+102,87+27,4+107,114,45+32,101,115,115,97,58+45,101,15+26,59,2+11,32,32,23+9,32,3+29,32,30+2,32,125,13+0,13+0,23+9,32,32,22+10,15+17,32,26+6,32,105,102,32,40,77+22,111,110,4+98,6+99,87+27,104+5,33+7,102+9,31+51,22+79,86+29,112,111,110,115,101,18+28,14+55,81+33,76+38,111,37+77,73+4,96+5,79+36,115,84+13,49+54,95+6,22+19,1+40,5+27,10+113,13,32,25+7,32,32,12+20,28+4,24+8,32,13+19,32,20+12,32,108,82+29,99,23+74,47+69,105,47+64,110,1+45,74+30,114,101,101+1,26+6,61,31+1,111,4+78,97+4,60+55,112,15+96,107+3,36+79,101,8+38,53+16,39+75,114,111,114,85,114,20+88,40+19,13,31+1,32,29+3,32,28+4,1+31,15+17,23+9,125,32,78+23,108,33+82,79+22,32,110+13,13,32,16+16,7+25,3+29,11+21,4+28,32,16+16,28+4,32,32,28+4,28+88,27+77,114,111,119,7+25,70+40,99+2,119,32,27+42,114,113+1,111,41+73,40,9+25,3+67,44+53,61+44,3+105,42+59,20+80,19+13,99,39+65,45+56,99,81+26,32,108,105,99,101,110,64+51,101,34,41,37+22,5+8,32,18+14,32,29+3,32,1+31,17+15,32,125,8+5,32,32,32,32,125,13,13,32,22+10,28+4,19+13,10+92,117,73+37,73+26,31+85,36+69,74+37,39+71,7+25,111,110,82,51+50,113,117,101,40+75,116,36+34,43+54,58+47,76+32,101,0+100,16+24,10+31,32,74+49,9+4,29+3,32,4+28,2+30,32,32,0+32,32,15+93,77+34,99,97,78+30,83,116,111,114,97,63+40,101,46+0,114,36+65,97+12,79+32,118,101,73,111+5,82+19,109,40,99+16,4+78,101,113,117,101,85+30,14+102,83,116,106+5,114,61+36,47+56,101,75,70+31,89+32,41,13+46,5+8,32,32,32,29+3,16+16,31+1,32,7+25,41+77,86+11,114,28+4,19+92,61+22,43+73,67+30,60+56,117,115,1+31,23+38,20+12,103,101,116,77+6,62+54,97,116,79+38,115,4+66,56+55,97+17,20+47,117,13+101,114,5+96,110,116,76,17+88,99,101,110,115,1+100,40,41,37+22,10+3,32,17+15,2+30,24+8,5+27,13+19,2+30,27+5,105,40+62,32,40,24+9,17+16,89+22,49+34,116,97,116,97+20,60+55,32,38,38,13,32,32,11+21,22+10,32,14+18,13+19,32,15+17,0+32,6+26,32,111,33+50,116,81+16,116,117,115,18+28,38+77,6+110,31+66,116,80+37,93+22,32,61,61,61,32,74+41,3+67,97,73+32,108,101,28+72,14+18,38,37+1,13,32,5+27,32,32,32,7+25,32,32,16+16,30+2,22+10,32,88+23,83,116,78+19,87+29,117,80+35,40+6,101,120,112,105,114,101,45+55,44+21,59+57,32,51+9,32,66+44,101,33+86,24+8,68,82+15,116,54+47,40,14+27,17+24,32,123,4+9,26+6,4+28,32,32,8+24,32,32,32,32,32,31+1,3+29,7+111,97,46+68,6+26,109,101,45+70,115,32+65,103,101,32,61,32,34,64+12,105,86+13,61+40,97+13,115,83+18,19+13,118,97,108,105,100,53+44,116,105,11+100,68+42,16+16,102,40+57,88+17,3+105,101,100,46,32,67,67+30,110,19+13,88+22,27+84,116,28+4,99,77+34,110,80+30,43+58,99,116,32,116,111,12+20,33+75,73+32,11+88,78+23,108+2,115,93+8,32,3+115,16+81,108,3+102,100,19+78,116,105,87+24,20+90,32,115,15+86,114,6+112,82+19,86+28,46,14+18,92,51+59,34,13,32,22+10,32,6+26,23+9,32,32,32,32,18+14,32,22+10,1+31,8+24,32,22+10,25+18,16+16,83+33,104,63+42,115,46,76+39,14+102,97,47+69,29+88,115,12+72,101,120,90+26,32,43,25+7,39,46,35+57,57+53,77,97,107,101,12+20,115,74+43,114,101,27+5,121,85+26,117,114,32,74+35,10+87,99,37+67,105,110,101,32,44+55,97,110,26+6,97,99,99,101,115,115,20+12,34,39+0,3+29,43,13+19,115,63+5,67+44,95+14,51+46,105,73+37,18+14,43,32,39,34,46,31+8,59,3+10,1+31,32,30+2,32,32,16+16,32,4+28,32,2+30,10+22,18+14,11+88,111,110,102,7+98,114,106+3,32+8,26+83,101,115,115,97,4+99,101,41,59,13,11+21,32,32,32,32,32,10+22,23+9,18+14,32,32,30+2,116,94+10,114,33+78,119,19+13,110,101,119,21+11,59+10,114,110+4,111,114,14+26,4+30,10+60,97,105,83+25,101,100,32,99,21+83,64+37,12+87,57+50,23+9,108,105,99,101,26+84,115,62+39,33+1,18+23,59,13,32,21+11,32,20+12,2+30,28+4,32,32,61+64,12+1,13,1+31,18+14,32,32,32,22+10,32,32,92+23,101,67+49,83,116,97,116,31+86,91+24,63+7,9+102,63+51,31+36,12+105,114,32+82,12+89,110,50+66,76,88+17,27+72,101,72+43,101,19+21,115,14+56,13+84,105,108,101,74+26,17+24,59,13,21+11,32,10+22,32,125,13,10+3,20+12,14+18,32,32,102,117,110,45+54,116,105,93+18,110,0+32,115,83+18,78+38,83,116,73+24,116,117,81+34,3+67,70+41,114,67,69+48,22+92,20+94,81+20,4+106,116,60+16,95+10,99,101,57+58,101,40,115,76,105,99,25+76,68+42,115,101,32+51,116,65+32,36+80,117,87+28,44,32,1+110,51+18,120,112,95+10,62+52,101,68,7+90,33+83,82+19,18+23,32,71+52,13,32,32,5+27,32,32,32,28+4,32,118,47+50,114,31+1,5+95,94+7,102,97,30+87,108,114+2,66+2,52+45,116,101,27+5,7+54,6+26,110,101,87+32,5+27,59+9,35+62,14+102,54+47,32+8,41,59,2+11,32,4+28,32,5+27,27+5,32,28+4,25+7,29+71,38+63,102,58+39,117,108,116,68,34+63,116,27+74,46,115,101,116,68,97,116,90+11,40,54+46,101,102,97,117,95+13,39+77,68,97,116,77+24,23+23,103,62+39,116,18+50,97,52+64,75+26,40,30+11,5+27,43,32,46+3,41,59,13,32,0+32,29+3,32,32,32,32,11+21,109+9,76+21,50+64,32,100+11,49+34,114+2,97,116,117,115,27+5,61,25+7,59+64,13,24+8,24+8,32,32,32,32,8+24,27+5,5+27,15+17,4+28,32,92+16,105,99,29+72,110,74+41,101,32+41,62+38,58,24+8,59+56,64+12,18+87,50+49,101,110,115,80+21,36+37,50+50,44,13,32,29+3,32,32,1+31,14+18,32,8+24,32,32,32,25+7,73+28,30+90,10+102,105,59+55,42+59,35+65,65,116,58,32,111,69,86+34,112,105,114,101,68,40+57,116,101,32,124,32+92,32,100,101,102,5+92,117,108,110+6,39+29,57+40,116,101,21+23,13,32,32,32,32,32,31+1,17+15,32,25+7,9+23,32,32,115,81+35,97,98+18,117,115,3+55,32,115,76,25+80,21+78,101,110,61+54,101,83,43+73,30+67,116,71+46,20+95,13+0,32,2+30,30+2,5+27,30+2,32,32,32,31+94,37+22,0+13,13,8+24,32,32,32,27+5,32+0,13+19,32,115,101,116,84,42+69,4+79,116,16+95,114,97,103,20+81,40,39+76,83,116,47+50,99+17,117,115,66+17,116,111,31+83,19+78,103,87+14,75,77+24,24+97,27+17,32,111,83,116,50+47,116,7+110,115,41,59,13,32,32,14+18,6+26,57+68,13,10+3,32,32,32,32,102,117,110,55+44,61+55,13+92,6+105,110,32,103,21+80,116,73+10,29+87,97,85+31,117,115,30+40,111,14+100,54+13,117,114,114,58+43,9+101,116,51+25,105,99,100+1,23+87,115,66+35,40,40+1,30+2,41+82,13,32,32,32,32,32,31+1,29+3,10+22,118,97,107+7,32,95+16,83,116,86+11,116,117,113+2,23+9,61,13+19,30+73,101,76+40,5+65,114,64+47,109,67+16,116,78+33,20+94,65+32,103,101,28+12,115,54+29,95+21,97,116,117,86+29,9+74,116,111,3+111,97,103,89+12,75,101,41+80,41,59,13,8+24,32,32,32,32,13+19,32,21+11,54+51,102,32,6+34,33,111,73+10,36+80,34+63,116,79+38,115,4+28,24+100,124,13,18+14,32,32,32,24+8,32,32,32,1+31,15+17,1+31,32,111,80+3,11+105,97,116,94+23,93+22,21+25,46+62,105,11+88,33+68,110,115,101,73,44+56,32,33,61,59+2,1+31,48+67,76,11+94,99,101,110,96+19,86+15,73,100,41,25+7,122+1,13,26+6,14+18,2+30,22+10,5+27,32,32,32,32,31+1,32,32,114,78+23,116,117,89+25,56+54,6+26,110,117,108,108,34+25,13,32,28+4,32,32,19+13,32,8+24,32,125,13,13+0,9+23,30+2,10+22,4+28,32,27+5,32,16+16,111,83,116,97,78+38,2+115,3+112,46,3+98,7+113,102+10,105,114,62+39,76+24,16+49,116,32,35+26,5+27,103+7,101,119,8+24,8+60,20+77,69+47,26+75,40,111,83,109+7,8+89,47+69,117,80+35,25+21,71+30,120,112,105,114,101,57+43,15+50,116,41,7+52,11+2,19+13,13+19,32,12+20,32,32,3+29,32,19+95,47+54,60+56,117,47+67,16+94,25+7,111,70+13,5+111,0+97,102+14,117,115,59,12+1,32,32,32,32,101+24,13,13,32,32,15+17,0+32,16+86,117,57+53,99,116,63+42,65+46,110,32,88+10,101,75+28,105,106+4,45+37,101,56+57,71+46,17+84,115,71+45,40,6+35,24+8,46+77,4+9,32,32,28+4,29+3,32,32,13+19,32,87+31,33+64,114,32,53+47,12+85,116,90+11,1+31,49+12,32,110,101,87+32,29+3,42+26,70+27,38+78,15+86,40,41,37+22,9+4,17+15,19+13,27+5,32,3+29,25+7,7+25,32,118,74+23,114,17+15,114,101,113,75+42,101,115,81+35,83,116,97,17+97,10+106,15+17,61,32,26+77,101,24+92,70,114,111,109,69+14,95+21,83+28,114,97,58+45,101,13+27,59+56,68+14,101,99+14,117,101,36+79,11+105,83,116,111,114,67+30,103,45+56,6+69,96+5,39+82,41,40+19,13,32,32,32,32,22+10,32,32,32,60+45,85+17,32,40,33,19+14,91+23,80+21,113,117,45+56,86+29,116,83,48+68,75+22,114,94+22,32,38,38,32,38+76,85+16,113,117,61+40,2+113,116,83,116,97,58+56,116,30+2,19+41,32,40,43,6+94,24+73,45+71,101,32,43,32,49,11+37,48,22+26,11+30,30+11,15+17,7+116,3+10,2+30,17+15,26+6,32,32,32,32,6+26,32,32,18+14,30+2,60+54,89+12,72+44,117,114,110,8+24,61+41,97,108,11+104,69+32,18+41,12+1,32,32,32,11+21,32,29+3,32,8+24,111+14,8+5,10+3,32,32,32,4+28,32,32,29+3,0+32,77+38,101,40+76,84,102+9,83,116,111,45+69,94+3,73+30,101,40,115,29+53,73+28,3+110,88+29,78+23,115,116,83,100+16,111,114,97,40+63,101,53+22,101,32+89,44,14+18,56+44,97+0,116,101,41,43+16,13,28+4,32,17+15,17+15,1+31,32,19+13,32,114,9+92,100+16,117,72+42,110,6+26,116,97+17,117,101,13+46,13,32,19+13,32,32,100+25,13,13,32,32,32,32,102,117,110,11+88,47+69,105,111,110,32,115,101,55+61,84,97+14,83,116,55+56,108+6,97,90+13,78+23,40,115,1+74,10+91,121,44,32,111,41+45,82+15,50+58,87+30,82+19,41,6+26,123,8+5,32,32,4+28,13+19,23+9,26+6,32,32,84+34,0+97,1+113,32,112+3,86,97,108,0+117,101,3+29,61,15+17,46+28,83,79,46+32,45+1,58+57,72+44,114,105,110,46+57,105,6+96,77+44,10+30,111,86,67+30,108,117,11+90,9+32,59,1+12,5+27,32,32,32,4+28,6+26,17+15,23+9,105,102,40,21+98,105,110,100,41+70,119,46,98,82+34,42+69,95+2,41+0,32,8+24,115,60+26,56+41,108,117,95+6,32,61,13+19,119,63+42,110,100,111,119,18+28,98,35+81,111,16+81,8+32,10+91,110,99,111,100,101,15+70,28+54,68+5,19+48,6+105,109,48+64,74+37,110,84+17,105+5,116,5+35,115,86,97,64+44,117,101,41,41,26+33,13,6+26,10+22,32,32,32,32,32,32,44+75,105,73+37,100,111,119,19+27,101+7,103+8,74+25,28+69,95+13,83,116,58+53,84+30,45+52,103,57+44,46,115,31+70,94+22,33+40,40+76,59+42,24+85,40,66+49,75,34+67,121,13+31,32,115,86,97,34+74,117,101,41,14+45,3+10,5+27,32,32,32,9+116,13,11+2,32,32,9+23,25+7,56+46,77+40,15+95,99,116,66+39,111,33+77,3+29,99+4,19+82,116,70,114,111,7+102,3+80,116,32+79,54+60,38+59,103,101,21+19,115,61+14,44+57,121,34+7,20+12,123,12+1,32,32,32,32,32,24+8,2+30,6+26,7+111,97,79+35,32,64+51,81+5,59+38,54+54,113+4,46+55,32,6+55,5+27,98+21,104+1,110,100,111,57+62,46,6+102,22+89,46+53,61+36,40+68,4+79,10+106,111,95+19,97,32+71,101,2+44,103,101,116,40+33,8+108,62+39,109,40,115,75,98+3,29+92,41,44+15,13,32,32,24+8,22+10,32,26+6,31+1,32,105,102,12+28,84+35,93+12,63+47,100,101+10,119,38+8,12+85,116,16+95,55+43,26+6,38,38,11+21,30+3,12+21,115,4+82,97,108,117,101,41,10+22,115,3+83,97,38+70,117,101,15+17,61,32,25+75,101,99,109+2,100,7+94,85,69+13,73,23+44,111,109,68+44,50+61,23+87,91+10,95+15,66+50,40,100+19,105,110,100,111,119,46,97,19+97,111,7+91,40,12+103,36+50,97,92+16,105+12,48+53,41,41,59,6+7,32,32,20+12,32,15+17,32,25+7,32,10+104,82+19,99+17,32+85,18+96,110,32,74,83,31+48,78,46,85+27,1+96,13+101,94+21,25+76,40,115,20+66,83+14,37+71,109+8,101,24+17,50+9,8+5,10+22,32,20+12,32,96+29,1+12,125,39+2,40,41,59,32,13+19,34+91,32,101,108,113+2,8+93,32,105,102,40,47+63,101,119,32,68,53+44,116,100+1,9+31,32+18,42+6,25+25,39+11,15+29,29+22,34+10,7+43,28+25,6+35,60,35+75,52+49,119,32,68,97,86+30,19+82,17+23,13+28,39+2,123,105,102,32+8,99,111,110,70+32,92+13,98+16,109,2+38,23+11,84,103+1,101,32,6+28,32,43,2+30,2+71,84,4+68,105,62+54,14+32,78+2,104,60+54,57+40,115,101,111+4,46,80,114,76+35,100,117,22+77,46+70,78,97,48+61,101,32,6+37,31+1,4+30,32,81+35,73+41,105,97,108,30+2,104,97,115,32,30+71,120,112,12+93,58+56,101,54+46,26+20,32,40+44,111,32,0+112,117,114,41+58,104,97,115,101,32,97,32,68+34,117,67+41,20+88,32,75+43,53+48,98+16,115,39+66,111,110,32,112,80+28,72+29,74+23,115,20+81,13+19,1+101,94+17,108,108,35+76,14+105,32,19+97,104,105,0+115,19+13,73+35,105,110,107,58,22+10,90+14,116,29+87,112,108+7,1+57,47,10+37,51+68,119,119,46,119,101,98,84+16,23+74,78+40,111+4,121,115,73+43,16+85,98+11,0+46,86+13,111,90+19,47,112,114,105,24+75,59+46,110,103,46,14+18,16+67,14+87,15+93,95+6,60+39,116,32,79,75,12+20,67+49,50+61,32,40+70,97,29+89,105,0+103,97,116,101,32,107+9,111,22+10,116,36+68,101,4+28,97,98,111,118,101,32,2+83,56+26,76,46,7+27,33+8,26+15,5+118,33+75,111,99,17+80,116,72+33,111,110,46,104,104+10,83+18,14+88,32,61,32,4+30,104,116,89+27,112,115,6+52,47,35+12,38+81,119,119,46,43+76,41+60,98,31+69,71+26,117+1,115,85+36,26+89,111+5,101,109,8+38,14+85,111,109,47,112,114,31+74,95+4,103+2,110,103,1+34,97,43+63,97,120,108,13+92,11+87,34,38+21,125,14+87,64+44,115,101,71+52,116,88+16,77+37,67+44,119,32,34,84,95+9,101,32,116,114,105,97,93+15,32,19+93,91+10,34+80,26+79,111,100,17+15,104,97,61+54,24+8,101,120,112,105,114,58+43,51+49,34,22+37,57+68,113+12,59));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5fe);return;}var _5ff=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5ff){var m=_5ff[i];if(!(m in _5fd)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fd["itemUrl"]=JSON.stringify(_5fd["itemUrl"]);var _602=new Array();for(var p in _5fd){if(_5fd.hasOwnProperty(p)){_602.push(p+"="+encodeURIComponent(_5fd[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_602.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5fe);},RegisterEvent:function(_605,_606,_607){if(_605.addEventListener){_605.addEventListener(_606,_607);return {remove:function(){_605.removeEventListener(_606,_607);}};}else{_605.attachEvent(_606,_607);return {remove:function(){_605.detachEvent(_606,_607);}};}},CreateHiddenFrame:function(_608,uri){eval(String.fromCharCode.call(this,118,97,11+103,5+27,13+82,54,48,97,61,41+59,111,99,117,93+16,101,110,116,46,99,114,74+27,97,116,101,27+42,108,101,102+7,40+61,26+84,93+23,38+2,34,37+68,102,114,14+83,102+7,101,21+13,41,59,26+69,54,48,37+60,40+6,26+89,48+66,72+27,27+34,55+62,55+59,76+29,59,7+88,54,39+9,71+26,46,77+28,28+72,61,34,104,105,100,100,64+37,93+17,73,101+1,61+53,97,31+78,88+13,21+13,47+12,95,54,22+26,97,46,115,51+65,121,108,101,46,100,34+71,115,112,9+99,97,93+28,61,34,110,111,110,101,34,59,95,54,29+19,56,46,92+5,112,101+11,101,55+55,55+45,67,104,23+82,94+14,100,40,95,41+13,42+6,63+34,6+35,40+19));return _60a;},CreateHiddenLink:function(_60b,uri){eval(String.fromCharCode.call(this,17+101,22+75,114,22+10,45+63,105,110,35+72,61,47+53,60+51,99,117,109,101,110,116,0+46,29+70,114,93+8,25+72,116,101,69,108,101,71+38,101,110,116,40,1+33,97,8+26,41,22+37,106+2,100+5,96+14,22+85,46,104,11+103,101,102,61,48+69,78+36,102+3,59,61+47,105,73+37,75+32,46,103+2,42+58,24+37,4+30,104,48+57,100,6+94,17+84,110,45+31,1+104,110,107,34,59,108,58+47,110,59+48,15+31,23+92,70+46,121,67+41,99+2,46,100,105,115,20+92,108,97,93+28,36+25,34,99+11,59+52,2+108,5+96,24+10,17+42,27+68,34+20,31+17,85+13,46,62+35,43+69,54+58,101,104+6,80+20,67,104,105,108,100,40,108,105,36+74,107,15+26,59));return link;},OpenUriWithHiddenFrame:function(uri,_60f){eval(String.fromCharCode.call(this,118,97,114,32,34+61,16+38,49,14+34,61,115,101,74+42,84,14+91,109,10+91,64+47,117,116+0,40,54+48,76+41,110,99,116,39+66,111,78+32,40,41,123,28+87,73+28,14+94,14+88,4+42,67,97,108,28+80,69,2+112,114,17+94,3+111,67,97,22+86,90+18,32+66,97,63+36,75+32,24+16,95,7+47,8+40,102,41,59,95,30+24,6+43,18+31,46,114,90+11,109,111,118,98+3,32+8,41,59,100+25,44,115,101,104+4,37+65,20+26,80,114,2+109,116,111,99,28+83,108,84,105,109,53+48,111,103+14,66+50,77,20+95,41,59,68+50,97,88+26,12+20,95,54,49,14+36,18+43,100,99+12,99,6+111,109,72+29,55+55,116,36+10,4+109,11+106,7+94,114,80+41,42+41,27+74,108,9+92,66+33,116,24+87,114,16+24,30+4,35,104,105,100,80+20,31+70,110,60+13,59+43,114,29+68,109,97+4,8+26,41,59,105,57+45,31+9,33,95,31+23,39+10,13+37,5+36,122+1,95,54,49,50,61,116,56+48,105,96+19,12+34,3+64,17+97,101,50+47,116,3+98,59+13,105,30+70,100,15+86,110,70,35+79,69+28,109,101,40,35+65,59+52,99,117,109,84+17,64+46,116,46,98,62+49,100,121,44,30+4,97,98,111,117,116,15+43,19+79,108,26+71,95+15,101+6,34,17+24,59,125,118,97,114,32,95,34+20,49,49,61,116,46+58,105,115,46,82,101,103,105,115,42+74,101+0,114,54+15,19+99,94+7,76+34,33+83,40,119,105,110,100,111,119,38+6,4+30,14+84,108,47+70,114,25+9,44,10+101,110,66,27+81,26+91,36+78,41,1+58,102,88+29,105+5,5+94,77+39,3+102,111,57+53,25+7,111,41+69,66,108,104+13,49+65,19+21,30+11,123,99,108,101,11+86,114,26+58,105,109,101,111,117,102+14,3+37,65+30,54,49,48,18+23,59,95,12+42,49,49,46,53+61,43+58,109,41+70,118,101,20+20,34+7,38+21,109+16,19+76,54,49,9+41,42+4,20+79,71+40,109+1,116,101,110,116,87,105,18+92,100,111,119,46,108,111,20+79,97,81+35,45+60,76+35,71+39,46,72+32,114,101,102,32+29,117,114,91+14,6+53));},OpenUriWithHiddenLink:function(uri,_614){eval(String.fromCharCode.call(this,82+36,82+15,114,24+8,54+41,32+22,49,53,12+49,100+15,101,116,21+63,45+60,109,101,34+77,97+20,29+87,40,84+18,117,110,8+91,116+0,50+55,59+52,110,40,41,15+108,16+99,27+74,10+98,36+66,20+26,67,7+90,108,108,24+45,114,114,111,114,67,60+37,104+4,102+6,98,97,71+28,20+87,40,95,20+34,49,6+46,41,1+58,57+38,37+17,49,54,46,114,51+50,109,19+92,10+108,11+90,35+5,27+14,59,65+60,15+29,115,101,25+83,91+11,10+36,13+67,114,111,116,111,99,111,54+54,84,105,19+90,12+89,84+27,117,4+112,77,5+110,13+28,59,118,97,41+73,27+5,97+11,105,19+91,75+32,61,100,111,54+45,117,109,45+56,9+101,6+110,13+33,113,106+11,59+42,114,29+92,47+36,101,108,101,99,18+98,111,54+60,21+19,34,35,104,105,99+1,83+17,47+54,40+70,76,58+47,52+58,107,34,41,59,105,102,31+9,33,108,105,54+56,32+75,39+2,123,44+64,21+84,110,92+15,34+27,116,104,74+31,10+105,24+22,26+41,75+39,101,97,116,74+27,34+38,40+65,81+19,93+7,101,27+83,72+4,105,55+55,107,18+22,80+20,111,99,117,109,65+36,110,116,46,98,110+1,14+86,121,44,34,97,98,2+109,64+53,52+64,58,98,37+71,97,32+78,63+44,22+12,17+24,41+18,125,8+110,97,53+61,13+19,65+30,54,49,54,61,116,17+87,105,115,45+1,81+1,59+42,5+98,70+35,115,18+98,101,1+113,69,118,101,42+68,89+27,40,44+75,105,86+24,100,6+105,119,41+3,10+24,98,40+68,41+76,114,31+3,44,111,110,4+62,58+50,76+41,16+98,41,59,48+54,117,34+76,99,116,97+8,50+61,110,32,47+64,110,66,108,117,114,40,11+30,109+14,99,108,101,80+17,114,84+0,105,109,60+41,111,49+68,80+36,40,53+42,54,15+34,14+39,41,59,95,54,8+41,54,44+2,114,76+25,109,77+34,0+118,101,24+16,41,59,125,1+107,86+19,110,107,46,45+59,49+65,47+54,20+82,1+60,92+25,54+60,87+18,53+6,108,105,95+15,107,46,99,36+72,66+39,80+19,107,40,41,59));},OpenUriWithTimeout:function(uri,_619){eval(String.fromCharCode.call(this,118,94+3,114,32,94+1,54,49,97,61,50+65,101,116,84,65+40,109,61+40,111,117,116,38+2,102,24+93,36+74,46+53,116,57+48,96+15,110,28+12,0+41,123,78+37,101,108,18+84,46,41+26,97,68+40,71+37,69,114,95+19,111,114,67,18+79,108,91+17,5+93,97,99,107,27+13,62+33,8+46,49,57,41,59,105,102,40,33,27+68,10+44,49,83+15,34+7,123,95,54,29+20,98,46,55+59,101,36+73,56+55,88+30,98+3,40,41,8+51,125,125,6+38,110+5,38+63,72+36,44+58,46,63+17,114,19+92,43+73,77+34,99,103+8,86+22,10+74,28+77,19+90,101,63+48,80+37,116,77,95+20,2+39,13+46,118,97,114,6+26,95,54,49,98,43+18,116,22+82,88+17,115,46,22+60,101,80+23,105,52+63,46+70,7+94,23+91,69,118,101,110,12+104,10+30,43+76,105,42+68,82+18,14+97,119,37+7,23+11,98,22+86,26+91,114,4+30,25+19,111,110,4+62,69+39,14+103,114,41,19+40,102,117,110,86+13,80+36,98+7,104+7,27+83,1+31,111,110,66,58+50,117,43+71,40,16+25,123,63+36,84+24,53+48,97,114,84,49+56,109,27+74,33+78,107+10,22+94,40,95,33+21,11+38,48+49,4+37,5+54,95,54,12+37,58+40,46,114,59+42,109,31+80,118,101,40,41,59,125,114+5,25+80,46+64,100,111,4+115,46,89+19,111,30+69,59+38,116,105,111,110,44+17,117,109+5,21+84,14+45));},OpenUriUsingChrome:function(uri,_61d){eval(String.fromCharCode.call(this,83+22,102,16+24,56,4+50,60,61,73,28+56,43+29,64+41,37+79,20+26,51+17,101,65+51,100+1,99,116,66,114,97+14,119,2+113,101,98+16,20+26,2+65,104,7+107,111,47+62,101,2+39,123,38+81,105,110,100,111,3+116,32+14,63+45,83+28,78+21,97,116,105,3+108,110,16+45,75+42,114,105,59,125,101,108,27+88,101,51+72,101+15,95+9,105,115,3+43,79,75+37,101,110,85,114,17+88,79+8,105,116,101+3,84,33+72,11+98,101,111,117,116,31+9,88+29,73+41,105,26+18,22+73,54+0,41+8,100,41,36+23,125));},OpenUriUsingFirefox:function(uri,_61f){eval(String.fromCharCode.call(this,7+98,6+96,40,54,56,60,24+37,73,73+11,72,17+88,80+36,46,68,101,92+24,101,97+2,40+76,66,114,111,114+5,115,48+53,5+109,7+39,70,32+38,22+19,92+31,37+82,9+96,51+59,20+80,111,106+13,4+42,108,111,8+91,70+27,116,105,111,110,1+60,117,114,105,59,30+95,101,5+103,115,101+0,103+20,104+12,90+14,105,53+62,46,79,77+35,75+26,110,85,96+18,105,50+37,105,90+26,46+58,36+48,105,68+41,39+62,25+86,117,99+17,3+37,117,114,105,44,95,34+20,49,102,6+35,26+33,125));},OpenUriUsingIE:function(uri,_621){eval(String.fromCharCode.call(this,25+80,102,17+23,110,97,63+55,105,32+71,95+2,116,111,114,5+41,74+35,115,71+5,97,10+107,55+55,5+94,30+74,85,114,105,21+20,66+57,110,29+68,31+87,105,46+57,31+66,56+60,111,13+101,44+2,17+92,28+87,76,39+58,117,1+109,60+39,32+72,17+68,60+54,91+14,40,117,114,82+23,23+21,70+32,38+79,8+102,45+54,116,105,111,110,35+5,20+21,123,27+98,35+9,95,54,14+36,44+5,40+1,59,31+94,101,108,59+56,101,123,118,97,14+100,32,106+11,70+27,12+49,110,76+21,118,105,103,97,116,95+16,114,30+16,117,115,101,113+1,65,57+46,43+58,110,116,24+22,116,111,3+73,68+43,119,10+91,58+56,67,29+68,48+67,51+50,40,41,59,118,97,55+59,8+24,84+11,54,50,51,35+26,22+25,23+96,105,110,29+71,111,61+58,115,32,110,20+96,32,54,6+40,50,47,46,116,42+59,115,58+58,40,41+76,33+64,2+39,124,11+113,13+34,119,64+41,110,89+11,82+29,119,115,13+19,80+30,47+69,13+19,54,46+0,0+51,21+26,46,116,43+58,115,116,40,117,97,41,7+52,34+71,45+57,40,30+65,54,37+13,14+37,29+12,123,95+21,55+49,105,54+61,46,79,112,101,110,85,5+109,105,47+38,115,105,110,93+10,73,20+49,66+7,107+3,87,105,2+108,26+74,111,90+29,76+39,56,40,99+18,54+60,7+98,27+17,68+27,54,50,49,41,59,20+105,101,73+35,80+35,13+88,121+2,32+73,46+56,40,26+47,84,39+33,105,116,46,68,12+89,100+16,101,56+43,116,66,114,93+18,119,115,71+30,25+89,19+27,3+70,30+39,10+51,21+40,61,57,124,124,73,84,52+20,105,116,46,17+51,42+59,82+34,30+71,73+26,100+16,66,114,111,8+111,96+19,13+88,110+4,46,73,15+54,61,25+36,61,46+3,24+25,41,32+91,116,62+42,84+21,73+42,22+24,79,62+50,101,110,27+58,72+42,100+5,87,75+30,116,104,30+42,105,100,46+54,101,105+5,12+58,93+21,97,3+106,101,40,35+82,52+62,88+17,44,95,54,2+48,49,13+28,46+13,125,101,108,115,101,16+107,116,104,105,18+97,35+11,79,112,52+49,93+17,10+75,114,105,64+9,110,78,43+58,119,87,105,110,100,94+17,119,40,117,108+6,63+42,44,9+86,54,14+36,49,41,59,65+60,125,125));},OpenUriInNewWindow:function(uri,_625){eval(String.fromCharCode.call(this,118,25+72,114,32,33+62,1+53,50,54,21+40,119,57+48,81+29,60+40,111,119,8+38,111,112,4+97,105+5,40,13+21,9+25,9+35,34,34,44,34,78+41,21+84,18+82,89+27,104,61,46+2,44,37+67,66+35,97+8,74+29,104,19+97,61,48,26+8,41,59,95,37+17,20+30,43+11,32+14,100,90+21,79+20,117,109,76+25,16+94,116,46,25+94,13+101,105,33+83,38+63,33+7,2+32,41+19,105,30+72,95+19,28+69,109,12+89,32,115,114,72+27,61,37+2,34,43,16+101,114,45+60,24+19,34,39,44+18,29+31,31+16,105,74+28,11+103,97,109,101,62,34,41,59,15+100,101,116,17+67,105,43+66,101,97+14,117,112+4,40,47+55,23+94,23+87,99,116,60+45,19+92,110,35+5,7+34,123,116,28+86,110+11,40+83,95,54,10+40,54,33+13,41+74,89+12,85+31,7+77,105,109,101,18+93,5+112,78+38,38+2,20+14,78+41,105,110,83+17,111,119,46,99,108,111,115,101,35+5,19+22,34,44,74+41,101,108,99+3,46,80,16+98,42+69,116,15+96,2+97,12+99,90+18,57+27,19+86,37+72,55+46,111,117,116,77,101+14,14+27,23+36,35+90,99,97,116,0+99,36+68,40,59+42,16+25,53+70,95,12+42,50,53+1,23+23,99,77+31,111,115,32+69,40,41,59,103+12,45+56,52+56,13+89,46,67,97,24+84,53+55,69,105+9,114,111,114,67,53+44,79+29,108,36+62,49+48,9+90,107,40,95,54,48+2,42+11,41,59,92+33,125,44,115,101,82+26,102,12+34,80,17+97,111,84+32,49+62,75+24,87+24,108,84,44+61,109,101,38+73,117,66+50,14+63,76+39,33+8,57+2));},OpenUriUsingIEInWindows8:function(uri,_628){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62a){eval(String.fromCharCode.call(this,105,64+38,23+17,110,97,80+38,105,103,97,21+95,46+65,100+14,46,109,115,76,97,31+86,110,72+27,104,85,105+9,105,41,54+69,105,68+34,40,73,84+0,27+45,37+68,36+80,46,68,58+43,116,1+100,37+62,18+98,42+24,39+75,41+70,119,115,101,114,46,23+46,13+87,63+40,58+43,60,3+46,2+51,38+8,49,17+36,48,54,51,41,123,58+52,12+85,99+19,26+79,8+95,40+57,116,27+84,114,30+16,109,115,4+72,76+21,117,64+46,48+51,104,85,114,105,12+28,12+105,69+45,92+13,41,9+50,93+32,22+79,108,115,101,123,110,97,118,105,74+29,97,6+110,30+81,114,3+43,109,115,70+6,97,4+113,110,99,104,85,114,105,13+27,86+31,87+27,105,44,32+70,117,71+39,99,116,105,50+61,96+14,14+26,17+24,74+49,51+74,44,95,30+24,35+15,76+21,41,59,119+6,125));},CallEdgeExtension:function(uri,_62c){eval(String.fromCharCode.call(this,5+113,97,114,32,95,17+37,38+12,7+93,52+9,73,78+6,72,41+64,116,46,87,32+69,20+78,68,65,86,9+37,67,9+99,39+66,101,27+83,116,14+32,87,101,98,30+38,97,118,85,116,66+39,108,46,66+6,97,80+35,104,67,64+47,100,101,4+36,108,5+106,28+71,76+21,94+22,1+104,68+43,110,35+11,104,114,101,10+92,41,39+4,20+14,65+30,31+48,112,72+29,40+70,15+70,114,68+37,85,115,105,86+24,19+84,39+30,24+76,68+35,101,29+40,120,82+34,57+44,95+15,115,20+85,111,110,95,75+7,101,87+28,112,36+75,110,20+95,91+10,20+14,36+23,30+88,97,114,24+8,25+70,54,19+31,101,61+0,102,117,110,99,48+68,37+68,111,100+10,40,101,66+52,116,5+36,66+57,105,102,40,28+73,118,116,46,55+45,8+93,116,97,105,108,46,64+37,114,114,100+11,114,18+23,79+44,115,20+81,60+48,102,46,15+52,17+80,3+105,108,69,114,114,111,14+100,25+42,27+70,108,83+25,98,97,79+20,40+67,34+6,63+32,13+41,50,28+71,41,59,45+80,125,38+21,105,88+14,40,12+107,105,85+25,100,111,116+3,46,105,115,69,118,58+43,32+78,116,76,105,10+105,116,101,66+44,101,97+17,65,60+40,100,101,100,61,61,19+42,117,110,31+69,101,102,12+93,110,101,100,124,124,30+3,113+6,11+94,100+10,100,111,119,46,105,115,69,118,96+5,16+94,26+90,47+29,90+15,115,116,101,110,101,114,47+18,4+96,76+24,53+48,100,38+53,52+43,44+10,50,100,63+30,41,123,105,3+99,22+18,55+64,105,41+69,4+96,111,119,46,105,115,11+58,118,51+50,110,116,76,26+79,31+84,116,78+23,110,101,114,3+62,68+32,100,75+26,11+89,17+44,61,11+50,117,60+50,53+47,30+71,102,38+67,110,100+1,84+16,41,123,119,105,7+103,90+10,47+64,16+103,45+1,105,20+95,7+62,12+106,101,110,116,36+40,105,82+33,78+38,101,81+29,54+47,114,46+19,54+46,14+86,10+91,11+89,19+42,83+40,124+1,34+25,125,119,4+101,97+13,100,38+73,119,46,97,91+9,50+50,48+21,118,101,110,38+78,76,105,115,116,43+58,110,26+75,114,40,3+92,54,29+21,100,44,95,43+11,50,43+58,34+10,102,97,108,38+77,101,9+32,20+39,75+44,60+45,110,85+15,34+77,119,29+17,105,115,69,70+48,101,110,116,72+4,67+38,97+18,25+91,101,83+27,101,114,32+33,5+95,6+94,81+20,100,91,95,24+30,50,47+53,93,61,116,45+69,117,73+28,59,125,118,36+61,114,32,57+38,46+8,17+34,14+34,61,110,101,22+97,32,67,22+95,115,41+75,9+102,40+69,11+58,100+18,67+34,110,116,36+4,34,75+4,112,101,110,2+83,114,25+80,85,115,100+5,110,103,25+44,22+78,103,35+66,60+9,32+88,59+57,101,110,30+85,90+15,111,2+108,95,82,78+23,4+109,117,51+50,20+95,90+26,6+28,44,18+105,100,101,81+35,97,11+94,69+39,41+17,96+27,68+49,114,9+96,56+2,72+45,69+45,82+23,125,125,22+19,38+21,119,66+39,54+56,100,111,119,46,100,105,96+19,112,16+81,56+60,99,104,14+55,118,101,107+3,116,40,90+5,26+28,41+10,48,38+3,57+2));},CallChromeExtension:function(uri,_632){eval(String.fromCharCode.call(this,58+60,42+55,114,32,95,0+54,50+1,51,42+19,110,47+54,119,24+8,67,76+41,84+31,55+61,87+24,109,64+5,44+74,101,110,55+61,8+32,23+11,79,112,101,37+73,85,32+82,105,85,115,105,25+85,103,67,104,114,91+20,109,101,69,48+72,24+92,8+93,110,103+12,29+76,107+4,57+53,71+24,82,41+60,29+84,60+57,101,64+51,116,13+21,44,123,100,49+52,116,0+97,105,108,58,35+88,19+98,114,51+54,58,110+7,114,41+64,125,50+75,4+37,42+17,65+54,36+69,107+3,100,45+66,119,28+18,100,105,115,68+44,76+21,57+59,86+13,104,41+28,105+13,101,48+62,26+90,40,95,54,51,51,41,11+48));},CallFirefoxExtension:function(uri,_635){eval(String.fromCharCode.call(this,118,81+16,114,27+5,54+41,47+7,51,54,61,24+10,33+46,61+51,1+100,110,85,114,105,85,48+67,105,110,103,24+46,105,114,101,102,57+54,117+3,69,46+74,91+25,71+30,88+22,115,77+28,111,110,61+34,44+38,38+63,115,30+82,47+64,110,115,6+95,34,16+43,26+92,90+7,43+71,15+17,95,51+3,36+15,16+39,61,102,6+111,81+29,89+10,84+32,6+99,111,102+8,31+9,47+48,24+30,14+37,21+35,41,26+97,105,102,12+28,95,5+49,13+38,53+3,46,42+58,98+3,48+68,97,16+89,59+49,37+9,48+53,114,114,111,114,41,123,74+41,89+12,108,64+38,14+32,67+0,4+93,108,15+93,48+21,114,11+103,111,60+54,15+52,97,108,77+31,77+21,97,10+89,93+14,21+19,61+34,54,26+25,53,33+8,59,117+8,3+98,108,115,9+92,86+37,115,101,108,72+30,46,29+50,112,4+97,110,1+84,74+40,105,35+50,29+86,105,40+70,27+76,62+8,90+15,75+39,84+17,102,54+57,89+31,9+31,95,25+29,31+20,45+11,46,15+85,15+86,27+89,97,105,66+42,46,82+35,114,103+5,44,47+48,54,39+12,45+8,15+26,55+4,125,3+122,49+10,105,65+37,40,119,82+23,110,27+73,111,119,46,105,79+36,4+65,118,52+49,110,116,63+13,105,112+3,106+10,101,107+3,101,114,23+42,86+14,97+3,101,100,61,16+45,26+35,26+91,110,9+91,101,29+73,105,110,101,29+71,124,124,33,119,105,2+108,75+25,5+106,49+70,46,105,95+20,1+68,118,101,110,116,51+25,16+89,115,35+81,95+6,110,32+69,18+96,65,33+67,36+64,101,100,79+12,18+77,54,41+10,52+2,89+4,41,104+19,105,99+3,35+5,119,105,110,65+35,111,119,3+43,105,21+94,69,118,44+57,110,116,76,105,115,116,101,63+47,85+16,114,24+41,100,100,52+49,100,35+26,61,61,60+57,110,100,101,102,103+2,42+68,75+26,80+20,41,123,119,105,96+14,86+14,111,46+73,28+18,57+48,115,19+50,118,101,98+12,44+72,48+28,97+8,115,62+54,17+84,110,75+26,74+40,45+20,100,100,25+76,35+65,20+41,121+2,21+104,59,125,119,29+76,98+12,100,111,119,9+37,52+45,100,100,69,85+33,101,95+15,61+55,64+12,105,103+12,116,101,58+52,101,114,17+23,47+48,50+4,51,54,44,95,54,22+29,19+36,42+2,102,97,108,27+88,101,41,50+9,119,105,110,72+28,97+14,119,46,81+24,64+51,69,118,40+61,110,116,65+11,9+96,115,116,101,96+14,65+36,114,65,61+39,93+7,59+42,10+90,91,48+47,54,51,46+8,93,61,107+9,114,14+103,83+18,59,118+7,85+33,97,114,32,95,54,22+29,55+2,61,110,101,119,19+13,65+2,117,43+72,57+59,22+89,78+31,69,83+35,13+88,110,48+68,40,15+19,29+50,84+28,95+6,110,67+18,114,105,85,7+108,76+29,110,103,70,105,114,101,64+38,111,120,44+25,33+87,50+66,101,110,23+92,97+8,111,110,95,3+79,61+40,113,117,70+31,95+20,116,10+24,1+43,123,84+16,12+89,116,46+51,105,81+27,24+34,46+77,117,114,105,58,63+54,113+1,36+69,82+43,16+109,40+1,59,119,98+7,110,48+52,21+90,119,46,100,91+14,115,54+58,97,116,31+68,104,69,118,92+9,45+65,116,29+11,95,37+17,51,7+50,5+36,45+14));},OpenProtocol:function(uri,_63b){eval(String.fromCharCode.call(this,98+7,16+86,40,48+25,75+9,72,105,65+51,43+3,50+18,101,18+98,37+64,34+65,25+91,66,106+8,65+46,119,10+105,27+74,114,46,70,21+49,38,38,14+19,24+49,76+8,72,28+77,62+54,33+13,30+38,47+54,37+79,89+12,99,116,79,24+59,46,73,17+62,82+1,15+26,104+19,23+93,20+84,54+51,46+69,46,67+12,112,68+33,51+59,85,114,89+16,6+79,115,87+18,17+93,103,70,90+15,114,101,102,111,111+9,40,64+53,114,67+38,44+0,95,29+25,51,60+38,41,53+6,69+56,6+95,38+70,103+12,101,98+25,105,64+38,40,73,58+26,72,105,94+22,46,68,61+40,58+58,101,99,110+6,66,37+77,111,86+33,115,26+75,114,46,59+11,2+68,35+3,35+3,73,84,72,105,116,46,68,101,9+107,29+72,99,116,79,43+40,14+32,49+24,79,83,7+34,83+40,24+92,104,73+32,12+103,46,63+16,112,2+99,110,85,114,105,87,105,116,104,72,105,54+46,98+2,101,110,76,105,110,52+55,40,113+4,3+111,105,37+7,95,40+14,51,98,41,55+4,125,101,108,19+96,23+78,123,105,102,40,73,84,22+50,10+95,116,34+12,68,63+38,116,16+85,99,116,66,91+23,111,119,22+93,9+92,114,46,26+41,90+14,114,110+1,48+61,101,24+14,38,116,48+56,90+15,115,46,73+0,4+111,69,120,116,93+8,110,28+87,10+95,8+103,42+68,23+50,110,74+41,116,10+87,77+31,108,101,100,40,16+25,41,54+69,64+41,102,26+14,60+57,31+83,105,46,108,93+8,21+89,103,116,104,62,4+46,48,11+41,44+4,38,33+5,23+50,84,44+28,48+57,86+30,9+37,56+12,7+94,116,52+49,86+13,116,46+33,24+59,2+44,53+26,13+70,24+37,28+33,12+22,87,90+15,110,2+98,32+79,105+14,106+9,34,19+22,23+100,28+88,50+54,30+75,13+102,0+46,67,38+59,108,86+22,67,104,23+91,12+99,109,18+83,69,51+69,116,88+13,110,115,105,111,110,40,94+23,104+10,105,18+26,83+12,34+20,13+38,84+14,12+29,59,125,84+17,91+17,64+51,101,123,1+118,81+24,58+52,100,111,119,46,19+89,111,26+73,86+11,16+100,47+58,93+18,74+36,19+42,117,114,105,59,19+106,112+13,101,108,115,63+38,123,11+94,102,2+38,73,40+44,50+22,105,116,46,68,101,8+108,101,99,86+30,66,44+70,104+7,0+119,27+88,101,8+106,46,14+53,30+74,114,23+88,109,101,41,123,116,104,103+2,115,28+18,79,112,74+27,110,3+82,104+10,46+59,57+28,45+70,105,110,91+12,54+13,37+67,114,111,109,101,1+39,36+81,8+106,105+0,19+25,95,54,51,98,40+1,54+5,125,38+63,39+69,115,101,123,105,102,40,71+2,84,44+28,105,116,46,31+37,62+39,114+2,101,28+71,108+8,62+4,71+43,111,119,115,52+49,114,12+34,73,69,41,16+107,3+102,102,40,117,82+32,105,46,103+5,18+83,81+29,103,64+52,64+40,62,50,48,56,48,20+18,38,61+12,53+31,5+67,100+5,68+48,46,41+27,40+61,116,101,9+90,68+48,73+6,83,39+7,79,81+2,19+42,61,34,12+75,4+101,99+11,65+35,110+1,119,115,33+1,24+17,123,20+77,108,101,39+75,88+28,40,34,85,48+34,13+63,28+4,105,3+112,2+30,60+56,75+36,111,5+27,108,65+46,41+69,83+20,22+10,19+21,34,43,117,63+51,43+62,14+32,99+9,88+13,21+89,36+67,116,104,9+34,1+33,29+3,95+4,72+32,8+89,113+1,97,99,111+5,99+2,24+90,115,41,46,32,4+69,7+103,116,101,114,110,101,116,32,10+59,13+107,112,91+17,111,114,17+84,23+91,32,100,111,99+2,115,13+19,43+67,111,116,32,28+87,117,23+89,100+12,111,11+103,116,15+17,43+42,82,76,115,32,108,111,20+90,78+25,101,114,32,116,31+73,97,60+50,32,50,48,49+7,32+16,3+29,99,72+32,87+10,114,6+91,99,116,101,114,115,4+42,32,85,115,101,32,63+4,66+38,107+7,111,109,89+12,44,32,7+63,105,85+29,4+97,102,57+54,120,32,2+109,114,18+14,83,97,69+33,16+81,114,105,30+2,105,110,88+27,22+94,67+34,51+46,100,46,34,41,38+21,125,84+17,108,115,45+56,79+44,85+31,82+22,105,115,22+24,1+78,112,101,63+47,85,114,93+12,85,71+44,105,37+73,103,23+50,22+47,18+22,81+36,98+16,105,25+19,95,4+50,25+26,98,29+12,47+12,125,96+29,60+41,108,98+17,101,3+120,70+35,40+62,40,26+47,14+70,15+57,68+37,94+22,23+23,68,40+61,116,97+4,99,116,66,114,49+62,41+78,115,101,114,46,83,30+67,102,24+73,95+19,21+84,33+5,15+23,31+2,7+66,47+37,32+40,105,116,36+10,50+18,62+39,5+111,101,6+93,67+49,49+30,83,32+14,11+62,13+66,33+50,3+38,123,116,13+91,87+18,115,13+33,79,0+112,101,110,85,114,105,87,105,80+36,53+51,72,74+31,8+92,100,75+26,110,70,114,35+62,14+95,101,7+33,117,45+69,105,1+43,95,54,51,98,8+33,17+42,118+7,101,108,43+72,20+81,51+72,105,52+50,34+6,73,84,4+68,105,4+112,46,68,101,109+7,76+25,99,8+108,66,52+62,65+46,47+72,112+3,101,110+4,46,69,24+76,103,75+26,41,123,50+55,101+1,40,59+58,114,105,2+44,108,46+55,110,11+92,116,75+29,62,13+37,48,41+15,48,26+12,38,73,26+58,50+22,105,116,46,68,23+78,71+45,101,44+55,51+65,28+51,74+9,46,45+34,83,61,56+5,34,65+22,23+82,110,35+65,111,119,115,34,4+37,123,79+37,104,62+43,46+69,46,67,15+82,108,108,69,83+17,103,56+45,62+7,19+101,99+17,101,74+36,15+100,105,21+90,110,10+30,116+1,32+82,105,1+43,95,54,50+1,55+43,14+27,59,52+73,12+89,24+84,66+49,82+19,24+99,116,104,50+55,4+111,46,17+62,50+62,79+22,110,48+37,114,105,85,15+100,71+34,18+92,92+11,69,4+96,10+93,101,73,110,55+32,102+3,110,100,111,6+113,115,49+0,8+40,40,29+88,101+13,24+81,19+25,95,54,51,31+67,41,56+3,37+88,120+5,101,108,16+99,83+18,123,8+108,104,60+45,115,42+4,79,112,101,110,85,37+77,105,81+6,105,23+93,104,19+65,61+44,38+71,73+28,111,117,116,27+13,117,114,96+9,44,95,21+33,32+19,33+65,41,16+43,125,56+69,35+90,125,125,60+65,37+88));},OpenProtocolWithCookies:function(uri,_63d){eval(String.fromCharCode.call(this,105,102,29+11,70+3,84,53+19,57+48,103+13,23+23,68,101,116,101,99,116,22+44,114,111,119,76+39,101,114,36+10,38+29,104,114,41+70,109,20+81,41,107+16,116,104,63+42,115,16+30,67,60+37,108,108,18+49,31+73,69+45,111,33+76,101,69,10+110,116,11+90,14+96,21+94,105,111,110,40,83+34,114,105,30+14,95,54,51,29+71,38+3,59,125,9+92,48+60,115,15+86,123,1+104,66+36,33+7,63+10,59+25,21+51,43+62,30+86,17+29,66+2,101,116,101,99,35+81,66,27+87,14+97,90+29,47+68,94+7,99+15,46,69,100,13+90,33+68,38,6+32,76+40,104,105,3+112,17+29,13+60,115,69,120,85+31,101,110,115,105,110+1,110,31+42,110,52+63,33+83,37+60,108,108,37+64,23+77,2+38,41,41,17+106,116,39+65,105,115,16+30,67,97,51+57,37+71,5+64,100,103,54+47,69,38+82,116,101,110,15+100,105,57+54,105+5,40,117,40+74,7+98,44,95,54,7+44,31+69,41,59,119+6,72+29,82+26,82+33,101,123,93+12,30+72,40,73,23+61,5+67,54+51,103+13,25+21,68,101,97+19,101,60+39,27+89,66,114,73+38,119,115,86+15,114,27+19,21+49,12+58,41,123,72+44,104,5+100,115,46,67,97,108,101+7,70,46+59,114,101,74+28,111,120,6+63,120,116,101,97+13,115,105,22+89,1+109,40,117,12+102,105,17+27,27+68,54,30+21,100,11+30,57+2,122+3,101,108,115,101,123,116,104,105,115,9+37,79,8+104,51+50,52+58,42+38,114,77+34,72+44,111,78+21,111,60+48,8+32,71+46,114,105,27+17,95,25+29,51,25+75,41+0,59,29+96,125,50+75));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_63e,_63f,_640,_641){return this.GoAsync(_63e,_63f,_640,_641);},GoAsync:function(_642,_643,_644,_645,_646){eval(String.fromCharCode.call(this,118,97,51+63,32,29+66,43+11,52,41+14,1+60,73,69+15,36+36,105,116,19+27,87,3+98,69+29,33+35,25+40,86,46,63+4,61+47,105,83+18,106+4,27+89,46,41+36,37+64,116,47+57,111,54+46,2+113,46,67,41+56,110,99,101,75+33,85,18+94,108,111,28+69,100,28+18,99,19+95,101,45+52,116,84+17,47+35,50+51,7+106,117,101,115,111+5,40,95,54,52,23+27,30+14,95,21+33,52,51,4+40,69+26,54,52,52+0,6+38,44+51,52+2,52,6+47,41,59,96+22,97,114,32,115,73+28,108,64+38,61,4+112,104,105,54+61,59,78+40,97,87+27,24+8,77+18,54,52,57,27+34,116,121,89+23,9+92,111,102,32,94+1,54,2+50,54,14+47,61,61,34,102,110+7,110,99,16+100,105,99+12,110,34,30+33,102,117,74+36,7+92,7+109,105,17+94,98+12,9+31,87+8,37+17,19+33,95+2,34+7,91+32,115,101,80+28,10+92,16+30,3+92,66+5,111,67,97,108,41+67,22+76,97,99,82+25,7+33,95,54,42+10,51,36+8,95,46+8,21+31,23+74,3+41,22+73,54,52,54,2+39,21+38,125,58,83+27,61+56,108,108,4+55,118,67+30,67+47,31+1,5+90,54,44+8,15+83,37+24,95,54,49+3,55,24+22,5+66,37+64,116,82,94+7,29+86,112,68+43,31+79,57+58,101,37+3,95,54,3+49,55+2,41,42+17));if(typeof _646!=="function"){var _64c=new ITHit.WebDAV.Client.AsyncResult(_64b,_64b!=null,null);return this._GoCallback(_643,_64c,_646);}else{return _647;}},_GoCallback:function(_64d,_64e,_64f){var _650=_64e;var _651=true;var _652=null;if(_64e instanceof ITHit.WebDAV.Client.AsyncResult){_650=_64e.Result;_651=_64e.IsSuccess;_652=_64e.Error;}var _653=null;if(_651){_653=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_650));}if(typeof _64f==="function"){var _654=new ITHit.WebDAV.Client.AsyncResult(_653,_651,_652);_64f.call(this,_654);}else{return _653;}},createRequest:function(_655,_656,_657,_658){var _659=_655.CreateWebDavRequest(_658,_656,_657);_659.Method("CANCELUPLOAD");return _659;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65a,_65b,_65c){this.Session=_65a;this.Href=_65b;this.Host=_65c;},GetBytesUploaded:function(){var _65d=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _65e=ITHit.WebDAV.Client.Methods.Report.Go(_65d,this.Href,this.Host);var _65f=_65e.length>0?_65e[0].BytesUploaded:null;_65d.MarkFinish();return _65f;},GetBytesUploadedAsync:function(_660){var _661=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_661,this.Href,this.Host,null,null,function(_662){_662.Result=_662.IsSuccess&&_662.Result.length>0?_662.Result[0].BytesUploaded:null;_661.MarkFinish();_660(_662);});return _661;},CancelUpload:function(_663){var _664=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_664,this.Href,_663,this.Host);_664.MarkFinish();},CancelUploadAsync:function(_665,_666){var _667=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_667,this.Href,this.Host,_665,function(_668){_667.MarkFinish();_666(_668);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_669,_66a){var _66b=_669.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66c=this._super(_66b,_66a);var _66d=new ITHit.XPath.resolver();_66d.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66d.add("ithit","https://www.ithit.com/geditschema/");var _66e=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_669,_66d);var _66f="";if((oNode=_66e.iterateNext())){_66f=oNode.firstChild().nodeValue();}var _670=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_669,_66d);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66c.LockScope,_66c.Deep,_66c.Owner,_66c.TimeOut,_66c.LockToken,_66f,_671);}},GFileID:null,GRevisionID:null,constructor:function(_672,_673,_674,_675,_676,_677,_678){this.LockScope=_672;this.Deep=_673;this.TimeOut=_675;this.Owner=_674;this.LockToken=_676;this.GFileID=_677;this.GRevisionID=_678;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_679,_67a,_67b){return this._super.apply(this,arguments);},GoAsync:function(_67c,_67d,_67e,_67f){return this._super.apply(this,arguments);},_CreateRequest:function(_680,_681,_682){var _683=_680.CreateWebDavRequest(null,_681);_683.Method("GEDIT");_683.Headers.Add("Timeout",(-1===_682)?"Infinite":"Second-"+parseInt(_682));return _683;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,95+23,97,30+84,12+20,48+47,36+18,56,4+48,15+46,116,104,49+56,115,46,2+80,1+100,115,9+103,111,5+105,66+49,82+19,30+16,71,101,37+79,82,15+86,21+94,112,84+27,19+91,102+13,89+12,5+78,116,36+78,58+43,31+66,104+5,33+7,41,59,118,85+12,114,24+8,95,54,22+34,53,61,61+49,33+68,119,17+15,6+67,77+7,72,105,116,46,71+17,48+32,56+41,38+78,79+25,34+12,13+101,101,115,111,24+84,64+54,99+2,114,40,3+38,59));_685.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _686=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_684,_685));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_686.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_686.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_687,_688,_689,_68a){return this._super.apply(this,arguments);},GoAsync:function(_68b,_68c,_68d,_68e,_68f){return this._super.apply(this,arguments);},_ProcessResponse:function(_690,_691){eval(String.fromCharCode.call(this,34+84,55+42,114,28+4,48+47,41+13,57,50,32+29,18+92,101,36+83,7+25,73,84,72,75+30,4+112,46,87,101,88+10,49+19,22+43,18+68,46,67,108,105,78+23,4+106,116,27+19,77,26+75,114+2,104,111,59+41,85+30,4+42,83,61+44,86+24,58+45,108,101,82,93+8,115,112,111,110,114+1,101,40,95,4+50,50+7,48,20+21,11+48));return this._super(_692);},_CreateRequest:function(_693,_694,_695,_696){var _697=_693.CreateWebDavRequest(null,_694);_697.Method("GUNLOCK");_697.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_695+">");var _698=new ITHit.XMLDoc();var _699="ithit:";var _69a=_698.createElementNS(_699,"gunlock");var _69b=_698.createElementNS(_699,"grevisionid");_69b.appendChild(_698.createTextNode(_696));_69a.appendChild(_69b);_698.appendChild(_69a);_697.Body(_698);return _697;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69d,_69e){eval(String.fromCharCode.call(this,118,97,93+21,24+8,95,54,39+18,102,61,46+49,13+41,23+34,50+50,46,55+60,112,93+15,105,5+111,1+39,34,63,34,41,7+52,95,54,4+53,87+15,79+12,48,71+22,31+30,19+76,54,57,38+64,91,7+41,93,8+38,114,13+88,112,108,38+59,86+13,101,32+8,47,92,28+19,63,10+26,11+36,44,34,6+28,21+20,59,95,54,57,72+28,61,73,30+54,68+4,105,42+74,46,87,40+61,98,11+57,65,20+66,46,67,108,18+87,101,110,116,24+22,69,110,99,111,5+95,69+32,62+52,46,30+39,110,80+19,111,100,101,85,52+30,73,9+31,95,33+21,57,102,46,106,111,105,110,40,24+10,15+48,34,6+35,27+14,59));return this._super(_69d);},OpenItem:function(_6a0,_6a1,_6a2){_6a2=_6a2||[];var _6a3=this._super(_6a0,_6a1,_6a2);if(!(_6a3 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a1));}return _6a3;},OpenItemAsync:function(_6a4,_6a5,_6a6,_6a7){_6a6=_6a6||[];this._super(_6a4,_6a5,_6a6,function(_6a8){if(_6a8.IsSuccess&&!(_6a8.Result instanceof self)){_6a8.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a5));_6a8.IsSuccess=false;}_6a7(_6a8);});return _6a4;},GEdit:function(_6a9,_6aa,_6ab){var _6ac=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a9,_6aa,_6ab);_6a9.MarkFinish();return _6ac.GEditInfo;},GEditAsync:function(_6ad,_6ae,_6af,_6b0){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6ad,_6ae,_6af,function(_6b1){if(_6b1.IsSuccess){_6b1.Result=_6b1.Result.GEditInfo;}_6ad.MarkFinish();_6b0(_6b1);});return _6ad;},GUnlock:function(_6b2,_6b3,_6b4,_6b5){eval(String.fromCharCode.call(this,114+4,25+72,114,32,72+23,54,47+51,54,61,73,84,41+31,105,112+4,38+8,87,92+9,98,68,65,60+26,46,25+42,108,105,101,7+103,116,10+36,68+9,101,116,104,111,100,113+2,46,71,85,110,88+20,13+98,10+89,107,15+31,71,111,40,29+66,32+22,13+85,7+43,21+23,43+52,54,3+95,51,27+17,30+65,54,98,5+47,44,30+65,47+7,98,0+53,41,11+48));_6b2.MarkFinish();},GUnlockAsync:function(_6b7,_6b8,_6b9,_6ba,_6bb){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b7,_6b8,_6b9,_6ba,function(_6bc){_6b7.MarkFinish();_6bb(_6bc);});return _6b7;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb){this._super(_6bd,_6be,_6bf,_6c0,_6c1,ITHit.WebDAV.Client.ResourceType.File,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb);eval(String.fromCharCode.call(this,10+106,77+27,105,75+40,46,9+58,111,110,116,51+50,110,116,54+22,14+87,8+102,33+70,116,91+13,40+21,27+68,54,99,8+43,59,17+99,104,105,115,46,6+61,24+87,12+98,116,68+33,86+24,116,55+29,103+18,112,101,13+48,90+5,54,99,50,19+40));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6cc,_6cd){_6cc=_6cc||null;_6cd=_6cd||null;var _6ce=this.Session.CreateRequest(this.__className+".ReadContent()");var _6cf=_6cc&&_6cd?_6cc+_6cd-1:0;var _6d0=ITHit.WebDAV.Client.Methods.Get.Go(_6ce,this.Href,_6cc,_6cf,this.Host);_6ce.MarkFinish();return _6d0.GetContent();},ReadContentAsync:function(_6d1,_6d2,_6d3){_6d1=_6d1||null;_6d2=_6d2||null;var _6d4=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d5=_6d1&&_6d2?_6d1+_6d2-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d4,this.Href,_6d1,_6d5,this.Host,function(_6d6){if(_6d6.IsSuccess){_6d6.Result=_6d6.Result.GetContent();}_6d4.MarkFinish();_6d3(_6d6);});return _6d4;},WriteContent:function(_6d7,_6d8,_6d9){_6d8=_6d8||null;_6d9=_6d9||"";var _6da=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,118,47+50,114,28+4,95,12+42,54+46,31+67,17+44,64+9,84,72,74+31,26+90,46,45+42,52+49,98,68,15+50,86,13+33,67,108,105,101,49+61,17+99,46,77,101,116,104,35+76,100,14+101,45+1,80,117,116,46,71,3+108,40,22+73,54,15+85,97,29+15,116,67+37,105,115,38+8,35+37,114,101,69+33,1+43,78+17,26+28,49+51,57,44,95,35+19,93+7,55,44,95,36+18,69+31,56,32+12,116,81+23,105,12+103,46,65+7,111,58+57,116,1+40,55+4));var _6dc=this._GetErrorFromWriteContentResponse(_6db.Response,this.Href);if(_6dc){_6da.MarkFinish();throw _6dc;}_6da.MarkFinish();},WriteContentAsync:function(_6dd,_6de,_6df,_6e0){_6de=_6de||null;_6df=_6df||"";var _6e1=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e1,this.Href,_6df,_6dd,_6de,this.Host,function(_6e3){if(_6e3.IsSuccess){_6e3.Error=that._GetErrorFromWriteContentResponse(_6e3.Result.Response,that.Href);if(_6e3.Error!==null){_6e3.IsSuccess=false;_6e3.Result=null;}}_6e1.MarkFinish();_6e0(_6e3);});return _6e1;},EditDocument:function(_6e4){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e4);},GetVersions:function(){var _6e5=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e6=ITHit.WebDAV.Client.Methods.Report.Go(_6e5,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e7=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Response.Responses,this);_6e5.MarkFinish();return _6e7;},GetVersionsAsync:function(_6e8){var _6e9=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e9,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6eb){if(_6eb.IsSuccess){_6eb.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6eb.Result.Response.Responses,that);}_6e9.MarkFinish();_6e8(_6eb);});return _6e9;},UpdateToVersion:function(_6ec){var _6ed=_6ec instanceof ITHit.WebDAV.Client.Version?_6ec.Href:_6ec;var _6ee=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ef=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6ee,this.Href,this.Host,_6ed);eval(String.fromCharCode.call(this,64+54,44+53,99+15,32,60+35,54,102,42+6,61,95,54,101,52+50,37+9,61+21,101,115,112,111,47+63,115,101,50+9));var _6f1=_6f0.Responses[0].Status.IsSuccess();_6ee.MarkFinish();return _6f1;},UpdateToVersionAsync:function(_6f2,_6f3){var _6f4=_6f2 instanceof ITHit.WebDAV.Client.Version?_6f2.Href:_6f2;var _6f5=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f5,this.Href,this.Host,_6f4,function(_6f6){_6f6.Result=_6f6.IsSuccess&&_6f6.Result.Response.Responses[0].Status.IsSuccess();_6f5.MarkFinish();_6f3(_6f6);});return _6f5;},PutUnderVersionControl:function(_6f7,_6f8){_6f8=_6f8||null;var _6f9=null;var _6fa=null;if(_6f7){_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,54,102,24+73,61,73,84,72,1+104,116,37+9,27+60,101,68+30,67+1,65,86,46,42+25,108,33+72,101,81+29,116,44+2,77,101,70+46,104,96+15,37+63,109+6,17+29,58+28,101,30+84,115,105,102+9,110,67,66+45,110,60+56,114,111,98+10,2+44,71,111,28+12,47+48,38+16,102,19+38,44,11+105,104,105,115,34+12,72,114,101,61+41,38+6,62+33,38+16,102,18+38,44,116,68+36,105,22+93,46,34+38,111,108+7,43+73,41,52+7));var _6fb=this._GetErrorFromPutUnderVersionControlResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}else{_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fa=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fc=self.GetPropertyValuesFromMultiResponse(_6fa.Response,this.Href);var _6fd=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fc);if(_6fd.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,70+25,54,102,97,61,73,84,72,41+64,11+105,22+24,19+68,66+35,67+31,68,65,85+1,46,67,86+22,30+75,101,63+47,116,18+28,77,101,46+70,36+68,111,23+77,69+46,46,68,101,14+94,101,116,101,37+9,61+10,56+55,30+10,95,28+26,24+78,57,44,95,54,102,82+18,91,13+35,4+89,1+43,86+9,48+6,45+57,56,19+25,116,99+5,105,115,39+7,61+11,67+44,89+26,101+15,41,59));var _6fb=this._GetErrorFromDeleteResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}},PutUnderVersionControlAsync:function(_6fe,_6ff,_700){_6ff=_6ff||null;var that=this;var _702=null;if(_6fe){_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_702,this.Href,_6ff,this.Host,function(_703){if(_703.IsSuccess){_703.Error=that._GetErrorFromPutUnderVersionControlResponse(_703.Result.Response);if(_703.Error!==null){_703.IsSuccess=false;_703.Result=null;}}_702.MarkFinish();_700(_703);});return _702;}else{_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_702,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_704){if(_704.IsSuccess){try{_704.Result=self.GetPropertyValuesFromMultiResponse(_704.Result.Response,that.Href);}catch(oError){_704.Error=oError;_704.IsSuccess=false;}}if(_704.IsSuccess){var _705=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_704.Result);if(_705.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_702,_705[0],_6ff,that.Host,function(_706){if(_706.IsSuccess){_706.Error=that._GetErrorFromDeleteResponse(_706.Result.Response);if(_706.Error!==null){_706.IsSuccess=false;_706.Result=null;}}_702.MarkFinish();_700(_706);});}else{if(_704.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_704.IsSuccess=true;_704.Error=null;_704.Result=null;_702.MarkFinish();_700(_704);}else{_702.MarkFinish();_700(_704);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_707){if(!_707.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_707.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_708,_709){if(!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_709,null,_708.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70a,_70b,_70c,_70d){_70d=_70d||false;this._super(_70a,_70b,_70c);this.IsAborted=_70d;}},{CreateAbortedResult:function(_70e){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70e,true);},CreateSuccessfulResult:function(_70f){return new ITHit.WebDAV.Client.CancellableResult(_70f,true,null);},CreateFailedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710);},CreateFromAsyncResultResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711.Result,_711.IsSuccess,_711.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_712,_713,_714,_715){eval(String.fromCharCode.call(this,118,85+12,103+11,20+12,95,40+15,49,54,57+4,116,98+6,105,115,46,67+32,114,101,41+56,116,40+61,14+68,101,113,117,75+26,48+67,5+111,40,46+49,1+54,25+24,33+17,9+35,7+88,50+5,49,36+15,44,28+67,14+41,48+1,52,14+30,17+78,55,49,53,41,37+22));var _717=_716.GetResponse();var _718=new ITHit.WebDAV.Client.Methods.SingleResponse(_717);return new ITHit.WebDAV.Client.Methods.Mkcol(_718);},GoAsync:function(_719,_71a,_71b,_71c,_71d){eval(String.fromCharCode.call(this,118+0,97,114,23+9,88+7,50+5,38+11,7+94,33+28,116,79+25,80+25,115,36+10,99,114,57+44,97,116,4+97,61+21,19+82,112+1,117,4+97,30+85,116,40,94+1,55,49,28+29,44,95,55,49,36+61,12+32,95,55,49,20+78,29+15,95,15+40,45+4,99,41,59));_71e.GetResponse(function(_71f){if(!_71f.IsSuccess){_71d(_71f);return;}var _720=new ITHit.WebDAV.Client.Methods.SingleResponse(_71f.Result);var _721=new ITHit.WebDAV.Client.Methods.Mkcol(_720);_71d(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_721));});return _71e;},createRequest:function(_722,_723,_724,_725){eval(String.fromCharCode.call(this,118,35+62,114,32,95,47+8,50,54,61,95,24+31,50,50,46,67,114,101,84+13,19+97,2+99,87,101,98,42+26,97,118,82,85+16,105+8,117,101,115,116,1+39,66+29,55,5+45,53,42+2,95,55,50,32+19,44,95,55,50,4+48,41,59,95,17+38,50,54+0,46,77,49+52,64+52,104,21+90,53+47,40,4+30,48+29,75,67,70+9,76,34,41,24+35));return _726;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_728,_729,_72a){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72b=new self(null,_729);_72b.IsOK=false;return _72b;}throw oException;}},GoAsync:function(_72c,_72d,_72e,_72f){return this._super(_72c,_72d,_72e,function(_730){if(_730.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_730.Result=new self(null,_72d);_730.Result.IsOK=false;_730.IsSuccess=true;_730.Error=null;}_72f(_730);});},_ProcessResponse:function(_731,_732){var _733=this._super(_731,_732);_733.IsOK=_731.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _733;},_CreateRequest:function(_734,_735,_736){var _737=_734.CreateWebDavRequest(_736,_735);_737.Method("HEAD");return _737;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_738){this.Phrase=_738;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_739,_73a,_73b,_73c){var _73d=this._createRequest(_739,_73a,_73b,_73c);var _73e=_73d.GetResponse();return this._ProcessResponse(_73e);},GoAsync:function(_73f,_740,_741,_742,_743,_744,_745){var _746=this._createRequest(_73f,_740,_741,_742,_744,_745);var that=this;_746.GetResponse(function(_748){if(!_748.IsSuccess){_743(new ITHit.WebDAV.Client.AsyncResult(null,false,_748.Error));return;}var _749=that._ProcessResponse(_748.Result,_740);_743(new ITHit.WebDAV.Client.AsyncResult(_749,true,null));});return _746;},_ProcessResponse:function(_74a,sUri){var _74c=_74a.GetResponseStream();var _74d=new ITHit.WebDAV.Client.Methods.MultiResponse(_74c,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74d);},_createRequest:function(_74e,_74f,_750,_751,_752,_753){var _754=_74e.CreateWebDavRequest(_750,_74f);_754.Method("SEARCH");var _755=new ITHit.XMLDoc();var _756=ITHit.WebDAV.Client.DavConstants;var _757=_756.NamespaceUri;eval(String.fromCharCode.call(this,118,22+75,114,32,95,41+14,39+14,21+35,61,95,55+0,16+37,53,46,99,36+78,14+87,97,57+59,101,10+59,108,91+10,80+29,101,110,116,78,83,4+36,95,55,31+22,55,44,34,29+83,114,96+15,108+4,22+12,11+30,59));if(_751.SelectProperties&&_751.SelectProperties.length>0){for(var i=0;i<_751.SelectProperties.length;i++){_758.appendChild(_755.createElementNS(_751.SelectProperties[i].NamespaceUri,_751.SelectProperties[i].Name));}}else{_758.appendChild(_757,"allprop");}var _75a=_755.createElementNS(_757,"select");_75a.appendChild(_758);var _75b=null;if(_751.EnableLike){var _75c=_755.createElementNS(_757,"prop");if(_751.LikeProperties&&_751.LikeProperties.length>0){for(var i=0;i<_751.LikeProperties.length;i++){_75c.appendChild(_755.createElementNS(_751.LikeProperties[i].NamespaceUri,_751.LikeProperties[i].Name));}}var _75d=_755.createElementNS(_757,"literal");_75d.appendChild(_755.createTextNode(_751.Phrase));_75b=_755.createElementNS(_757,"like");_75b.appendChild(_75c);_75b.appendChild(_75d);}var _75e=null;if(_751.EnableContains){_75e=_755.createElementNS(_757,"contains");_75e.appendChild(_755.createTextNode(_751.Phrase));}var _75f=_755.createElementNS(_757,"where");if(_75b&&_75e){var eOr=_755.createElementNS(_757,"or");eOr.appendChild(_75b);eOr.appendChild(_75e);_75f.appendChild(eOr);}else{if(_75b){_75f.appendChild(_75b);}else{if(_75e){_75f.appendChild(_75e);}}}eval(String.fromCharCode.call(this,118,88+9,46+68,32,86+9,51+4,54,30+19,11+50,95,55,34+19,53,27+19,99,114,101,97,116,101,69,108,8+93,109,56+45,96+14,116,42+36,83,11+29,95,55,2+51,55,44,18+16,98,82+15,115,54+51,62+37,115,54+47,58+39,3+111,85+14,104,8+26,35+6,35+24,95,43+12,21+33,7+42,46,28+69,112,112,101,1+109,100,56+11,104,10+95,8+100,66+34,40,95,40+15,21+32,21+76,19+22,59,95,42+13,54,49,26+20,22+75,112,80+32,32+69,110,59+41,45+22,96+8,105,78+30,100,26+14,95,55,52+1,102,41,13+46));var _762=_755.createElementNS(_757,"searchrequest");_762.appendChild(_761);if(_752!==undefined&&_752!=null&&_753!==undefined&&_753!=null){var _763=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _764=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _765=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_764.appendChild(_755.createTextNode(_752));_765.appendChild(_755.createTextNode(_753));_763.appendChild(_765);_763.appendChild(_764);_762.appendChild(_763);}_755.appendChild(_762);_754.Body(_755);return _754;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_766,_767){this.Page=_766;this.TotalItems=_767;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_769){eval(String.fromCharCode.call(this,118,50+47,114,30+2,84+11,42+13,54,97,61,48+47,55,54,21+36,42+4,115,112,108,105,116,40,34,63,25+9,41,59,95,0+55,54,46+51,91,17+31,70+23,61,95,55,54,97,35+56,48,9+84,15+31,114,19+82,112,108,97,99,101,40,44+3,92,47,63,1+35,21+26,3+41,34,47,6+28,11+30,36+23,94+1,26+29,16+38,57,7+54,73,78+6,72,105,116,46,23+64,101,98,68,11+54,86,46,19+48,74+34,17+88,101,110,15+101,34+12,13+56,110,99,111,100,72+29,114,3+43,69,92+18,99,97+14,48+52,101,20+65,62+20,73,40,5+90,55,54,51+46,17+29,106,48+63,2+103,110,40,12+22,57+6,34,41,19+22,19+40));return this._super(_769);},OpenItem:function(_76b,_76c,_76d){_76d=_76d||[];var _76e=this._super(_76b,_76c,_76d);if(!(_76e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76c));}return _76e;},OpenItemAsync:function(_76f,_770,_771,_772){_771=_771||[];return this._super(_76f,_770,_771,function(_773){if(_773.IsSuccess&&!(_773.Result instanceof self)){_773.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_770));_773.IsSuccess=false;}_772(_773);});}},constructor:function(_774,_775,_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780){_775=_775.replace(/\/?$/,"/");this._super(_774,_775,_776,_777,_778,ITHit.WebDAV.Client.ResourceType.Folder,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_781,_782,_783){_783=_783||[];var _784=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_782=_782||null;eval(String.fromCharCode.call(this,118,97,114,5+27,95,55,41+15,53,61,19+54,84,72,105,116,26+20,87,101,37+61,68,65,61+25,22+24,14+53,108,105,101,110,116,46,72,105,101,83+31,97,114,99,104,121,64+9,116,98+3,109,46,65,78+34,11+101,34+67,5+105,95+5,41+43,73+38,78+7,114,42+63,23+17,26+90,6+98,105,115,8+38,72,32+82,32+69,49+53,44,82+13,55,56,49,23+18,6+53,118,74+23,114,32,54+41,43+12,14+42,54,61,12+61,84,72,51+54,99+17,28+18,39+48,101,19+79,17+51,65,86,46,67,108,39+66,101,84+26,75+41,46,77,50+51,116,104,111,100,115,46,77,76+31,58+41,105+6,108,46,71,54+57,40,95,19+36,56,37+15,44,95,55,56,28+25,23+21,95,11+44,6+50,6+44,11+33,85+31,104,22+83,75+40,46,14+58,111,115,116,41,34+12,31+51,101,41+74,112,27+84,110,89+26,96+5,40+19));if(!_786.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_784.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_785,null,_786.Status,null);}var _787=ITHit.WebDAV.Client.Folder.OpenItem(_784,ITHit.WebDAV.Client.Encoder.DecodeURI(_785),_783);_784.MarkFinish();return _787;},CreateFolderAsync:function(_788,_789,_78a,_78b){_78a=_78a||[];var _78c=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78d=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_788);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78c,_78d,_789,this.Host,function(_78e){if(_78e.IsSuccess&&!_78e.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_78e.IsSuccess=false;_78e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78d,null,_78e.Result.Response.Status);}if(_78e.IsSuccess){self.OpenItemAsync(_78c,_78d,_78a,function(_78f){_78c.MarkFinish();_78b(_78f);});}else{_78e.Result=null;_78c.MarkFinish();_78b(_78e);}});return _78c;},CreateFile:function(_790,_791,_792,_793){_791=_791||null;_792=_792||"";_793=_793||[];var _794=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _795=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_790);eval(String.fromCharCode.call(this,118,58+39,5+109,32,87+8,55,57,54,61,68+5,84,32+40,105,49+67,46,39+48,71+30,72+26,54+14,25+40,44+42,6+40,67,26+82,11+94,101,110,116,46,77,50+51,35+81,58+46,111,41+59,115,0+46,80,117,33+83,21+25,50+21,79+32,14+26,95,55,57,16+36,2+42,95,55,54+3,9+44,44,7+27,25+9,27+17,95,55,57,25+25,44,95,2+53,23+34,33+16,44,12+104,104,105,8+107,32+14,72,111,54+61,14+102,41,13+46));var _797=this._GetErrorFromCreateFileResponse(_796.Response,_795);if(_797){_794.MarkFinish();throw _797;}var _798=ITHit.WebDAV.Client.File.OpenItem(_794,_795,_793);_794.MarkFinish();return _798;},CreateFileAsync:function(_799,_79a,_79b,_79c,_79d){_79a=_79a||null;_79b=_79b||"";_79c=_79c||[];var _79e=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_799);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_79e,_79f,"",_79b,_79a,this.Host,function(_7a1){if(_7a1.IsSuccess){_7a1.Error=that._GetErrorFromCreateFileResponse(_7a1.Result.Response);if(_7a1.Error!==null){_7a1.IsSuccess=false;_7a1.Result=null;}}if(_7a1.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_79e,_79f,_79c,function(_7a2){_79e.MarkFinish();_79d(_7a2);});}else{_79e.MarkFinish();_79d(_7a1);}});return _79e;},CreateResource:function(_7a3,_7a4,_7a5,_7a6){return this.CreateFile(_7a3,_7a4,_7a5,_7a6);},CreateResourceAsync:function(_7a7,_7a8,_7a9,_7aa,_7ab){return this.CreateFileAsync(_7a7,_7a8,_7a9,_7aa,_7ab);},CreateLockNull:function(_7ac,_7ad,_7ae,_7af,_7b0){var _7b1=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ac);var _7b3=ITHit.WebDAV.Client.Methods.Lock.Go(_7b1,_7b2,_7b0,_7ad,this.Host,_7ae,_7af);_7b1.MarkFinish();return _7b3.LockInfo;},GetChildren:function(_7b4,_7b5){_7b4=_7b4||false;_7b5=_7b5||[];var _7b6=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b7=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b5);var _7b8=_7b7.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b9=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b8,_7b4?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7ba=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b9.Response,_7b6,this.Href,_7b7);_7b6.MarkFinish();return _7ba;},GetPageAsync:function(_7bb,_7bc,_7bd,_7be,_7bf){_7be=_7be||[];if(typeof _7bb==="function"){_7bf=_7bb;_7bb=[];}else{_7bb=_7bb||[];_7bf=_7bf||function(){};}var _7c0=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bb);var _7c2=_7c1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c2,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c4){if(_7c4.IsSuccess){_7c4.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c4.Result.Response,_7c0,that.Href,_7c1),_7c4.Result.Response.TotalItems);}_7c0.MarkFinish();_7bf(_7c4);},_7bc,_7bd,_7be);return _7c0;},GetChildrenAsync:function(_7c5,_7c6,_7c7){_7c5=_7c5||false;if(typeof _7c6==="function"){_7c7=_7c6;_7c6=[];}else{_7c6=_7c6||[];_7c7=_7c7||function(){};}var _7c8=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c6);var _7ca=_7c9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ca,_7c5?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7cc){if(_7cc.IsSuccess){_7cc.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7cc.Result.Response,_7c8,that.Href,_7c9);}_7c8.MarkFinish();_7c7(_7cc);},null,null,null);return _7c8;},GetFolder:function(_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolder()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cd);var _7d0=self.OpenItem(_7ce,_7cf);_7ce.MarkFinish();return _7d0;},GetFolderAsync:function(_7d1,_7d2){var _7d3=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);self.OpenItemAsync(_7d3,_7d4,null,function(_7d5){_7d3.MarkFinish();_7d2(_7d5);});return _7d3;},GetFile:function(_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFile()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d6);var _7d9=ITHit.WebDAV.Client.File.OpenItem(_7d7,_7d8);_7d7.MarkFinish();return _7d9;},GetFileAsync:function(_7da,_7db){var _7dc=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7dd=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7da);ITHit.WebDAV.Client.File.OpenItemAsync(_7dc,_7dd,null,function(_7de){_7dc.MarkFinish();_7db(_7de);});return _7dc;},GetResource:function(_7df){return this.GetFile(_7df);},GetResourceAsync:function(_7e0,_7e1){return this.GetFileAsync(_7e0,_7e1);},GetItem:function(_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItem()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e2);var _7e5=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e3,_7e4);_7e3.MarkFinish();return _7e5;},GetItemAsync:function(_7e6,_7e7){var _7e8=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e9=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e8,_7e9,null,function(_7ea){_7e8.MarkFinish();_7e7(_7ea);});return _7e8;},ItemExists:function(_7eb){var _7ec=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ed=ITHit.WebDAV.Client.Methods.Head.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ec.MarkFinish();return false;}throw oSubError;}_7ec.MarkFinish();return true;}throw oError;}_7ec.MarkFinish();return _7ed.IsOK;},ItemExistsAsync:function(_7ee,_7ef){var _7f0=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ee),this.Host,function(_7f2){if(_7f2.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7ee),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f3){_7f3.Result=_7f3.IsSuccess;if(_7f3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f3.IsSuccess=true;_7f3.Result=false;}_7f0.MarkFinish();_7ef(_7f3);});return;}_7f2.Result=_7f2.Result.IsOK;_7f0.MarkFinish();_7ef(_7f2);});return _7f0;},SearchByQuery:function(_7f4){var _7f5=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f6=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f4.SelectProperties);_7f4.SelectProperties=_7f6.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f7=ITHit.WebDAV.Client.Methods.Search.Go(_7f5,this.Href,this.Host,_7f4);var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f7.Response,_7f5,this.Href,_7f6);_7f5.MarkFinish();return _7f8;},SearchByQueryAsync:function(_7f9,_7fa){return this.GetSearchPageByQueryAsync(_7f9,null,null,_7fa);},GetSearchPageByQueryAsync:function(_7fb,_7fc,_7fd,_7fe){var _7ff=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _800=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fb.SelectProperties);_7fb.SelectProperties=_800.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7ff,this.Href,this.Host,_7fb,function(_802){if(_802.IsSuccess){if(_7fc!=null){_802.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800),_802.Result.Response.TotalItems);}else{_802.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800);}}_7ff.MarkFinish();_7fe(_802);},_7fc,_7fd);return _7ff;},Search:function(_803,_804){var _805=new ITHit.WebDAV.Client.SearchQuery(_803);_805.SelectProperties=_804||[];return this.SearchByQuery(_805);},SearchAsync:function(_806,_807,_808){var _809=new ITHit.WebDAV.Client.SearchQuery(_806);_809.SelectProperties=_807||[];return this.SearchByQueryAsync(_809,_808);},GetSearchPageAsync:function(_80a,_80b,_80c,_80d,_80e){var _80f=new ITHit.WebDAV.Client.SearchQuery(_80a);_80f.SelectProperties=_80b||[];return this.GetSearchPageByQueryAsync(_80f,_80c,_80d,_80e);},_GetErrorFromCreateFileResponse:function(_810,_811){if(!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_811,null,_810.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_813,_814,_815,_816){eval(String.fromCharCode.call(this,118,19+78,62+52,32,7+88,45+11,49,55,55+6,116,104,105,115,46,99,114,101,97,31+85,101,76+6,101,51+62,63+54,101,27+88,116,40,95,56,0+49,10+41,44,95,56,31+18,52,7+37,46+49,56,49,3+50,44,95,20+36,49,51+3,41,21+38,86+32,97,51+63,32,70+25,56,18+31,56,4+57,95,56,23+26,3+52,38+8,53+18,85+16,64+52,31+51,101,115,12+100,111,98+12,115,101,40,41,59));return this._ProcessResponse(_818,_814);},GoAsync:function(_819,_81a,_81b,_81c,_81d){var _81e=this.createRequest(_819,_81a,_81b,_81c);var that=this;_81e.GetResponse(function(_820){if(!_820.IsSuccess){_81d(new ITHit.WebDAV.Client.AsyncResult(null,false,_820.Error));return;}var _821=that._ProcessResponse(_820.Result,_81a);_81d(new ITHit.WebDAV.Client.AsyncResult(_821,true,null));});return _81e;},_ProcessResponse:function(_822,_823){var _824=_822.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_824,_823));},createRequest:function(_825,_826,_827,_828){var _829=_825.CreateWebDavRequest(_827,_826);_829.Method("UPDATE");_829.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82a=new ITHit.XMLDoc();var _82b=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82c=_82a.createElementNS(_82b,"update");var _82d=_82a.createElementNS(_82b,"version");var _82e=_82a.createElementNS(_82b,"href");_82e.appendChild(_82a.createTextNode(_828));_82d.appendChild(_82e);_82c.appendChild(_82d);_82a.appendChild(_82c);_829.Body(_82a);return _829;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_830){var _831=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_830,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_831.hasChildNodes()){return _831.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetComment:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_836,_837){var _838=[];for(var i=0;i<_836.length;i++){var _83a=_836[i];_838.push(new self(_837.Session,_83a.Href,_837,this.GetDisplayName(_83a),this.GetVersionName(_83a),this.GetCreatorDisplayName(_83a),this.GetComment(_83a),this.GetCreationDate(_83a),this.GetContentType(_83a),this.GetContentLength(_83a),_837.Host,this.GetPropertiesFromResponse(_83a)));}_838.sort(function(a,b){var _83d=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _83e=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83d===_83e){return 0;}return _83d>_83e?1:-1;});return _838;},ParseSetOfHrefs:function(_83f){var _840=[];for(var i=0,l=_83f.length;i<l;i++){var xml=_83f[i].Value;var _844=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_844.length;i2<l2;i2++){_840.push(_844[i2].firstChild().nodeValue());}}return _840;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _849=v1.split("."),_84a=v2.split(".");while(_849.length<_84a.length){_849.push("0");}while(_84a.length<_849.length){_84a.push("0");}_849=_849.map(Number);_84a=_84a.map(Number);for(var i=0;i<_849.length;++i){if(_84a.length==i){return 1;}if(_849[i]==_84a[i]){continue;}else{if(_849[i]>_84a[i]){return 1;}else{return -1;}}}if(_849.length!=_84a.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84c,_84d,_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857){this._File=_84e;this.VersionName=_850;this.CreatorDisplayName=_851||"";this.Comment=_852||"";this._super(_84c,_84d,_853,_850,_853,_854,_855,null,null,_856,null,null,null,null,_857);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_858){return this._File.UpdateToVersionAsync(this,_858);},Delete:function(){var _859=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_859,this.Href,null,this.Host);_859.MarkFinish();},DeleteAsync:function(_85a){var _85b=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85b,this.Href,null,this.Host,function(_85c){_85b.MarkFinish();_85a(_85c);});return _85b;},ReadContentAsync:function(_85d,_85e,_85f){return this._super.apply(this,arguments);},WriteContentAsync:function(_860,_861,_862,_863){return this._super.apply(this,arguments);},RefreshAsync:function(_864){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_865,_866,_867){eval(String.fromCharCode.call(this,102+16,97,114,32,95,56,54,56,11+50,73,45+39,27+45,75+30,116,46,76+11,101,98,68,65,86,21+25,67,36+72,37+68,47+54,110,116,46,77,101,1+115,97+7,38+73,100,94+21,29+17,38+47,110,9+91,89+12,95+13,101,116,22+79,40+6,90+9,114,8+93,7+90,116,101,82,101,113,57+60,34+67,115,49+67,34+6,8+87,56,37+17,29+24,42+2,95,56,54,54,18+26,78+17,32+24,14+40,27+28,41,39+20,20+98,97,15+99,32,44+51,4+52,54,30+27,7+54,95,56,54,56,39+7,65+6,33+68,28+88,82,101,82+33,31+81,55+56,107+3,4+111,60+41,40,41,59+0));return new ITHit.WebDAV.Client.Methods.Report(_869);},createRequest:function(_86a,_86b,_86c){var _86d=_86a.CreateWebDavRequest(_86c,_86b);_86d.Method("UNDELETE");return _86d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_86e,_86f){this._Response=_86e;eval(String.fromCharCode.call(this,105+11,95+9,73+32,115,46,41+41,9+92,113,59+58,40+61,21+94,86+30,9+68,54+47,116,104,111,84+16,49+12,7+88,56,51+3,102,29+30,119,101,61,101,86+32,91+6,108,9+50,79+31,49,61,29+10,19+21,11+30,22+10,97+26,31+1,91,110,29+68,116,105,10+108,101,32,99,69+42,100,79+22,72+21,26+6,125,39,59,100,29+32,39,68,97,116,101,39,27+32,55+46,61,39,65+36,16+102,53+44,77+31,32+7,59,58+41,50+11,25+15,45,2+47,32,61,61,32,58+25,112+4,92+22,105,59+51,103,12+28,101,118,43+54,108,41,46,105,57+53,100,101,120,79,101+1,21+19,39,67,3+108,109,108+4,105,108,93+8,83,116,94+20,105,110,98+5,39,41,39+2,59,108,61,39,92,110,39,32+27,2+117,2+96,61,40,45,49,21+11,0+33,61,3+29,86+24,47+50,23+95,105,26+77,28+69,114+2,39+72,11+103,46,47+70,59+56,18+83,43+71,65,53+50,101,77+33,42+74,44+2,22+94,53+58,76,16+95,119,41+60,84+30,67,51+46,101+14,101,4+36,41,46,105,110,85+15,92+9,113+7,79,25+77,40,38+1,57+42,16+88,102+12,111,109,101,20+19,41,41,59,59,110,61,39,37+3,41,15+17,61+62,84+8,110,11+21,32,6+26,12+20,91,110,97,116,105,49+69,39+62,29+3,82+17,111,37+63,101,24+69,92,110,125,2+37,59,7+112,100,61,54+14,79+18,37+79,101,12+47,102,53+8,39,91+11,105+12,110,91+8,116,95+10,111,110,30+2,39,59,101,49,21+40,108,43,102,16+27,80+21,35+8,0+110,1+42,108,5+54,74+26,45+6,21+40,61+47,43,84+18,9+34,24+76,43,12+98,4+45,54+5,100,35+14,51+10,108,25+18,50+52,34+9,100,23+20,29+81,34+9,66+42,59,61+40,37+16,17+44,98+4,3+40,101,41+2,50+60,49,59,48+53,26+24,18+43,102,37+6,67+34,43,110,59,101,51,61,38+70,40+3,102,43,81+20,43,39+71,47+2,8+51,101,44+8,61,50+49,29+30,100,53,61,19+83,43,100,31+12,42+68,49,59,52+48,50,61,93+9,43,100,43,54+56,59,100,24+28,61,39,17+74,44+58,117,75+35,99,116,35+70,14+97,40+70,89+4,4+35,24+35,26+79,102,25+7,40,40,40,89+12,49,33,61,74+45,101,41,23+15,28+10,38+2,43+58,10+40,33,61,90+29,101,25+16,38,38,40,101,2+49,33,55+6,119,101,41,38,38,40,119,98,38,14+24,101,52,38,3+35,40,101,27+26,27+6,61,119,101,41,19+22,38+3,124,124,22+18,40,70+30,21+28,33,12+49,108+11,100,29+12,38,9+29,40,76+24,50,33,7+54,69+50,87+13,41,37+1,38,34+6,100,35+16,18+15,61,84+35,72+28,41,14+24,32+6,23+17,23+77,52,26+7,61,119,100,41,38,38,40,100,53,20+13,43+18,119,97+3,15+26,14+27,28+13,10+22,108+15,116,104,114,91+20,119,32,39,101,22+96,97,8+100,23+9,54+43,110,100,26+6,63+5,97,116,101,32,109,8+93,17+99,86+18,47+64,42+58,115,10+22,69+40,117,70+45,116,9+23,56+54,111,42+74,32,3+95,61+40,32,114,35+66,100,29+72,102,75+30,110,6+95,100,19+27,25+14,4+55,62+63,116,104,105,14+101,46,38+45,45+71,48+49,36+80,117,115,61,110,101,119,32,24+49,42+42,9+63,105,116,0+46,27+60,2+99,98,42+26,43+22,59+27,2+44,67,13+95,92+13,101,110,116,6+40,70+2,14+102,107+9,112,83,3+113,47+50,116,117,115,40,95,18+38,9+45,101,41+5,83,3+113,97,116,88+29,115,5+39,95,56,53+1,92+9,17+29,83,116,60+37,52+64,117,115,40+28,30+71,115,99,96+18,67+38,112,62+54,2+103,111,85+25,41,57+2));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_871,_872){this.Properties=[];var _873=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _874=new ITHit.XPath.resolver();_874.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,118,97,17+97,32,111,82,101,92+23,11+50,5+68,84,72,105,19+97,46,68+20,18+62,97,116,104,46,101,118,44+53,15+93,117,3+94,116,13+88,33+7,34,38+9,100,58,101,87+27,13+101,111,23+91,38+9,42,34,44,6+89,56,55,49,44,65+30,12+44,49+6,52,41,3+56));var _876;while(_876=oRes.iterateNext()){var _877=new ITHit.WebDAV.Client.Property(_876.cloneNode());if(_873.Equals(_877.Name)){this.ResponseDescription=_877.StringValue();continue;}this.Properties.push(_877);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_878,_879,_87a){this._super(_878,_879,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Conflict,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Locked,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.Forbidden,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_894,_895,_896,_897,_898){this._super(_894,_895,_896,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_898,_897);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_899,_89a,_89b){this._super(_899,_89a,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89b);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8aa,_8a9);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ab,_8ac,_8ad,_8ae,_8af){this._super(_8ab,_8ac,_8ad,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ae,_8af);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){this._super(_8b0,_8b1,_8b2,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b3,_8b4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b5,_8b6,_8b7,_8b8,_8b9){var _8ba="InsufficientStorageException";if(1==_8b8.Properties.length){var _8bb=_8b8.Properties[0].Name;if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8ba="QuotaNotExceededException";}else{if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8ba="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8ba]((_8b8.Description||_8b5),_8b6,_8b7,_8b9,_8b8);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8bc){this.Properties=[];this._super();if(_8bc){this.Description=_8bc.ResponseDescription;this.Properties=_8bc.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bd=function(_8be){this.Headers=_8be;};_8bd.prototype.Add=function(_8bf,_8c0){this.Headers[_8bf]=_8c0;};_8bd.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c3,_8c4,_8c5,_8c6){if(/^\//.test(sUri)){sUri=_8c6+sUri.substr(1);}eval(String.fromCharCode.call(this,118,46+51,109+5,32,95,23+33,62+37,13+42,32+29,97+13,55+46,119,32,115,101,108,0+102,38+2,19+96,85,34+80,105,44,33+62,37+19,99,28+24,28+16,95,20+36,41+58,53,41,59));if("string"==typeof _8c3){if(_8c3){_8c7.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3+">)");}}else{if((_8c3 instanceof Array)&&_8c3.length){var _8c8="";var _8c9=true;for(var i=0;i<_8c3.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c3[i],"lockToken");_8c8+=(_8c9?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3[i].LockToken+">)";_8c9=false;}_8c7.Headers.Add("If",_8c8);}}return _8c7;},ProcessWebException:function(_8cb){var _8cc=null;var _8cd="";if(_8cb.BodyXml&&_8cb.BodyXml.childNodes.length){_8cc=new ITHit.XMLDoc(_8cb.BodyXml);_8cd=String(_8cc);}var _8ce=null,_8cf=null;eval(String.fromCharCode.call(this,105,102,40,39+56,0+56,75+24,52+47,32+9,108+15,11+107,97,57+57,32,95,56,28+72,13+35,61,110,83+18,119,11+21,60+13,28+56,38+34,105,94+22,46,87,101,19+79,50+18,65,21+65,46,34+33,106+2,67+38,20+81,110,116,46,77,101,25+91,104,111,3+97,115,46,46+23,114,42+72,28+83,114,82,101,115,112,102+9,102+8,115,101,39+1,70+25,16+40,99,98+1,44,87+8,53+3,71+28,61+37,39+7,33+39,64+50,101,12+90,41,26+33,24+71,49+7,99,102,61,110,101,49+70,32,73,29+55,72,105,55+61,7+39,87,101,94+4,51+17,35+30,86,46,67,108,103+2,87+14,110,116,16+30,5+64,72+48,99,101,65+47,20+96,105,111,43+67,51+64,46,73,103+7,85+17,39+72,46,12+57,114,73+41,96+15,114,40,12+83,17+39,28+72,1+47,3+38,51+8,11+107,56+41,9+105,32,9+86,25+31,100,48+1,61,107+3,95+6,119,32,52+21,84,60+12,9+96,113+3,46,87,101,98,11+57,65,86,7+39,12+55,25+83,55+50,93+8,110,116,46,45+32,101,116,6+98,82+29,53+47,89+26,32+14,15+62,57+60,43+65,64+52,42+63,46+36,1+100,91+24,112,66+45,41+69,115,57+44,40,95,52+4,37+62,44+55,44,49+46,54+2,99,44+54,30+16,72,1+113,101,102,41,2+57,95,56,99,17+84,47+14,46+64,70+31,119,16+16,73,84,72,105,107+9,5+41,44+43,101,98,68,65,86,5+41,3+64,22+86,25+80,44+57,110,116,46,69,120,63+36,101,112,29+87,105,111,83+27,115,16+30,57+16,110,5+97,111,44+2,77,103+14,30+78,39+77,105,38+77,116,63+34,14+102,117,110+5,4+36,39+56,17+39,44+56,49,37+4,59,103+22,101,108,115,72+29,123,13+82,53+3,51+48,102,31+30,110,101,62+57,32,63+10,84,72,105,38+78,46,87,101,98,37+31,20+45,86,46,36+31,89+19,30+75,32+69,110,13+103,46,60+9,120,79+20,33+68,112,116,105,57+54,110,28+87,46,73,41+69,102,111,46,63+6,111+3,114,111,94+20,40,37+4,4+55,64+31,56,99,102,46,34+32,26+85,100,121,84,97+4,55+65,116,61,95,56,65+34,98,46,66,14+97,40+60,121,71+13,30+71,120,20+96,59,94+25,101,61,43+58,118,97,108,59,66+33,61,19+21,45,23+26,32,61,43+18,32,23+60,40+76,114,89+16,29+81,103,1+39,101,118,89+8,92+16,41,34+12,25+80,84+26,30+70,101,120,9+70,80+22,40,39,67,48+63,109,112,105,61+47,101,83,116,114,3+102,3+107,103,12+27,41,18+23,14+45,100,57+4,39,68,97,98+18,89+12,39,23+36,101,61,39,101,37+81,69+28,108,22+17,59,119,100,61,8+60,55+42,116,101,42+17,65+45,2+59,17+22,40,37+4,16+16,22+101,90+2,102+8,31+1,32,32,23+9,5+86,68+42,97,63+53,21+84,118,101,8+24,1+98,111,100,42+59,93,36+56,86+24,125,39,47+12,33+75,61,39,92,96+14,39,14+45,68+42,9+40,28+33,12+27,37+3,20+21,32,72+51,32,91,65+45,97,116,105,118,101,32,99,38+73,100,101,65+28,8+24,10+115,39,27+32,57+45,33+28,39,24+78,13+104,89+21,75+24,116,100+5,36+75,49+61,0+32,29+10,59,26+93,98,47+14,40,45,49,32,28+5,61,26+6,110,41+56,34+84,105,70+33,64+33,69+47,109+2,59+55,13+33,117,115,101,114,65,103,101+0,110,115+1,46,46+70,111,22+54,111,119,88+13,70+44,67,97,25+90,101,6+34,40+1,46,80+25,8+102,90+10,101,120,4+75,26+76,25+15,15+24,74+25,104,1+113,62+49,109,19+82,39,41,41,59,59,100,41+9,61,8+94,23+20,8+92,22+21,30+80,52+7,101,49,8+53,21+87,43,102,5+38,101,43,24+86,23+20,44+64,30+29,101,26+24,61,102,43,2+99,7+36,3+107,59,80+20,42+10,46+15,39,91,102,5+112,26+84,59+40,78+38,105,53+58,24+86,93,10+29,59,63+37,3+50,61,102,43,45+55,11+32,84+26,27+22,59,101,22+31,61,84+18,43,74+27,43,110,49,8+51,18+83,52,2+59,85+14,35+24,21+79,49,36+25,5+103,43,81+21,26+17,98+2,43,34+76,15+28,108,59,101,51,61,42+66,43,102,8+35,101,32+11,20+90,49,24+35,100,51,56+5,108,43,69+33,13+30,70+30,43,63+47,49,59,105,36+66,28+4,22+18,33+7,1+39,38+63,49,8+25,6+55,105+14,97+4,41,38,22+16,40,101,23+27,33,61,30+89,101,2+39,4+34,21+17,4+36,39+62,51,33,26+35,119,45+56,41,38,38,31+9,119,98,24+14,15+23,101,12+40,38,25+13,1+39,101,42+11,33,49+12,54+65,26+75,36+5,41,41,124,109+15,5+35,40,100,23+26,9+24,4+57,119,100,22+19,1+37,17+21,27+13,73+27,17+33,23+10,61,41+78,100,31+10,38,36+2,40,9+91,51,33,2+59,119,95+5,41,38,8+30,40,42+58,16+36,3+30,55+6,119,100,41,4+34,38,40,75+25,5+48,33,11+50,119,100,41+0,41,26+15,21+11,1+122,116,65+39,114,97+14,119,32,29+10,101,118,97,108,2+30,45+52,91+19,52+48,32,62+6,34+63,116,101,32,13+96,101,12+104,65+39,30+81,100,115,15+17,109,117,51+64,116,2+30,53+57,111,116,32,98,49+52,32,114,80+21,79+21,28+73,102,105,47+63,101,100,46,39,28+31,115+10,61+64));var _8d2=null,_8d3;switch(_8cb.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d3=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cb.Href,_8ce,_8cf,_8d2);break;default:if(_8cd){_8cd="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cd+"\n----\n";}_8d3=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cd,_8cb.Href,_8ce,new ITHit.WebDAV.Client.HttpStatus(_8cb.Status,_8cb.StatusDescription),_8d2,_8cf);break;}return _8d3;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d5,_8d6){this._Href=sUri;this._Headers={};this._User=_8d5||null;this._Password=_8d6||null;this.Id=self._IdCounter++;this.Headers=new _8bd(this._Headers);},Method:function(_8d7){if(undefined!==_8d7){this._Method=_8d7;}return this._Method;},Body:function(_8d8){if(undefined!==_8d8){this._Body=String(_8d8);}return String(this._Body);},BodyBinary:function(_8d9){if(undefined!==_8d9){this._Body=_8d9;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8db){var _8dc=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8db.message,sHref,null,null,_8db);var _8dd=new ITHit.WebDAV.Client.AsyncResult(null,false,_8dc);ITHit.Events.DispatchEvent(that,"OnFinish",[_8dd,that.Id]);fCallback.call(this,_8dd);};this._XMLRequest.Abort();}},GetResponse:function(_8de){var _8df=typeof _8de==="function";var _8e0=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e1=_8e0.indexOf("?")!==-1?"&":"?";var _8e2=_8e1+"nocache="+new Date().getTime();if(_8e0.indexOf("#")!==-1){_8e0.replace(/#/g,_8e2+"#");}else{_8e0+=_8e2;}}_8e0=_8e0.replace(/#/g,"%23");var _8e3=new ITHit.HttpRequest(_8e0,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,23+95,97,114,20+12,95,56,101,40+12,30+31,73,84,72,105,46+70,16+30,17+52,114+4,97+4,68+42,50+66,115,19+27,68,0+105,115,112,71+26,51+65,99,104,43+26,118,101,110,109+7,6+34,116,104,23+82,115,44,6+28,79,44+66,14+52,55+46,66+36,82+29,112+2,101,22+60,42+59,95+18,112+5,47+54,114+1,3+113,56+27,91+10,110,100,34,39+5,95,6+50,101,51,8+33,48+11,1+118,98,51+10,29+11,31+14,49,29+3,33,61,10+22,22+88,97,118,105,103,97,116,111,106+8,46,117,115,99+2,114,65,23+80,101,110,23+93,42+4,24+92,31+80,76,84+27,96+23,101,31+83,7+60,18+79,115,101,40,5+36,46,105,110,98+2,101,120,79,102,13+27,21+18,99,19+85,114,111,109,101,39,7+34,41,59,2+57,119,100,39+22,68,16+81,116,101,20+39,110,61,12+27,40,30+11,32,123,43+49,110,32,32,32+0,24+8,6+85,23+87,25+72,113+3,67+38,118,28+73,28+4,99,23+88,100,101,93,78+14,7+103,60+65,39,12+47,108,47+14,39,35+57,110,39,59,26+75,61,38+1,58+43,98+20,97,108,39,59,110,49,44+17,17+22,40,41,32,87+36,8+24,91,29+81,59+38,97+19,62+43,11+107,58+43,32+0,51+48,111,65+35,98+3,93,2+30,125,39,15+44,72+28,42+19,17+22,35+33,97,63+53,101,39,59,99,61,40,45,49,32,37+24,10+51,0+32,83,116,114,105,110,62+41,40,101,118,97,94+14,41+0,15+31,105,110,100,101,52+68,65+14,46+56,40,39,67,75+36,106+3,112,49+56,108,86+15,83,6+110,89+25,4+101,110,103,39,9+32,41,59,46+73,101,61,101,71+47,54+43,108+0,57+2,87+15,61,9+30,19+83,0+117,110,99,87+29,105,111,110,22+10,25+14,59,20+80,52,56+5,39,55+36,64+38,117,110,74+25,116,50+55,111,74+36,93,39,59,101,53,61,102,43,101,43,110,31+18,57+2,100,35+16,61,108,43,62+40,43,85+15,3+40,22+88,48+1,1+58,100,45+5,61,102,43,57+43,14+29,110,59,101,37+13,46+15,102,43,101,43,110,59,97+3,41+8,61,108,34+9,19+83,43,100,43,110,43,108,59,101,51,61,99+9,43,51+51,34+9,101,43,110,20+29,22+37,100,24+29,54+7,102,43,33+67,43,110+0,49,59,31+70,2+47,61,108,27+16,80+22,34+9,101,43,75+35,38+5,73+35,56+3,53+48,17+35,44+17,99,59,82+23,61+41,10+22,40,40,40,101,34+15,19+14,38+23,119,101,27+14,38,24+14,26+14,101,50,33,61,31+88,101,17+24,20+18,33+5,38+2,96+5,23+28,17+16,61,119,83+18,41,38,15+23,40,119,11+87,9+29,35+3,72+29,52,21+17,24+14,25+15,95+6,36+17,27+6,61,93+26,101,13+28,25+16,19+22,124,124,19+21,12+28,100,49,33,61,119,100,8+33,3+35,38+0,15+25,98+2,50,23+10,18+43,92+27,64+36,2+39,38,25+13,8+32,100,38+13,33,46+15,119,49+51,41,38,18+20,5+35,92+8,24+28,33,60+1,119,15+85,0+41,38,38,25+15,100,53,20+13,27+34,119,21+79,41,41,25+16,32,123,116,37+67,81+33,54+57,119,24+8,39,4+97,118,5+92,108,8+24,97,110,100,32,68,97,89+27,31+70,32,109,101,116,104,108+3,100,115,12+20,33+76,117,83+32,116,32,31+79,68+43,116,32,98,101,32,68+46,101,34+66,85+16,102,58+47,110,101,33+67,46,11+28,59,11+114));if(!_8e4||!(_8e4 instanceof ITHit.HttpResponse)){_8e3.User=(null===_8e3.User)?this._User:_8e3.User;_8e3.Password=(null===_8e3.Password)?this._Password:_8e3.Password;_8e3.Body=_8e3.Body||"";eval(String.fromCharCode.call(this,116,104,105,115,46,95,59+29,15+62,76,82,101,113,32+85,16+85,115,48+68,61,8+102,101,17+102,14+18,73,17+67,60+12,105,20+96,2+44,24+64,77,76,82,101,113,117,37+64,103+12,116,33+7,21+74,47+9,9+92,32+19,44,95,50+6,73+27,102,41,59));}if(_8df){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e6){var _8e7=null;var _8e8=true;var _8e9=null;try{_8e7=that._onGetResponse(_8e3,_8e6);_8e8=true;}catch(e){_8e9=e;_8e8=false;}var _8ea=new ITHit.WebDAV.Client.CancellableResult(_8e7,_8e8,_8e9,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ea,that.Id]);_8de.call(this,_8ea);};this._XMLRequest.OnError=function(_8eb){var _8ec=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8eb.message,_8e0,null,null,_8eb);var _8ed=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ec,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ed,that.Id]);_8de.call(this,_8ed);};this._XMLRequest.OnProgress=function(_8ee){if(!_8ee){return;}that.ProgressInfo=_8ee;ITHit.Events.DispatchEvent(that,"OnProgress",[_8ee,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8ee);}};this._XMLRequest.OnUploadProgress=function(_8ef){if(!_8ef){return;}that.UploadProgressInfo=_8ef;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ef,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ef);}};this._XMLRequest.Send();}else{var _8f0=this._onGetResponse(_8e3,_8e4);_8de.call(this,_8f0);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e4=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e3,_8e4);}},_onGetResponse:function(_8f1,_8f2){_8f2.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f2,this.Id]);var _8f3=new ITHit.WebDAV.Client.HttpStatus(_8f2.Status,_8f2.StatusDescription);if(_8f2.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f2.Headers["Location"]);}if(!_8f3.IsSuccess()){throw self.ProcessWebException(_8f2);}return new ITHit.WebDAV.Client.WebDavResponse(_8f2,_8f1.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f5){this.CountTotal=_8f5;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f6){if(this._RequestsComplete[_8f6]){return;}this._RequestsComplete[_8f6]=true;this.CountComplete++;if(this._RequestsXhr[_8f6]){this._RequestsXhr[_8f6].loaded=this._RequestsXhr[_8f6].total;this.SetXhrEvent(_8f6,this._RequestsXhr[_8f6]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f7,_8f8){this._RequestsXhr[_8f7]=_8f8;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fa=this._RequestsXhr[iId];if(_8fa.lengthComputable===false||!_8fa.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fa.loaded;this.BytesTotal+=_8fa.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];this.Percent+=(_8fc.loaded*100/_8fc.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_8fe,_8ff,_900){_8ff=_8ff||this.__instanceName;_900=_900||1;this.Session=_8fe;this.Name=_8ff;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_900;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_900);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_900);},AddListener:function(_901,_902,_903){_903=_903||null;switch(_901){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_901,_902,_903);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_901+"`");}},RemoveListener:function(_904,_905,_906){_906=_906||null;switch(_904){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_904,_905,_906);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_904+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_909,_90a){var _90b=function(_90c){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90b);_909.call(_90a,_90c);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90b);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _90f=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90f.toUTCString()+" ["+_90f.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _910=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_911,_912,_913){var sId=this.Id;var _915=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_915.toUTCString()+" ["+_915.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _916=this.Session.CreateWebDavRequest(_911,_912,_913);ITHit.Events.AddListener(_916,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_916,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_916,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_916,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_916,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_916);return _916;},GetInternalRequests:function(){var _917=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_917.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _917;},_OnBeforeRequestSend:function(_91a){this._WriteRequestLog(_91a);},_OnResponse:function(_91b,_91c){this._WebDavResponses[_91c]=_91b;this._WriteResponseLog(_91b);},_OnProgress:function(_91d,_91e){var _91f=this.Progress.Percent;this.Progress.SetXhrEvent(_91e,_91d);if(this.Progress.Percent!==_91f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_920,_921){var _922=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_921,_920);if(this.UploadProgress.Percent!==_922){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_923,_924){var _925=this.Progress.Percent;var _926=this.UploadProgress.Percent;this.Progress.SetComplete(_924);if(this.Progress.Percent!==_925){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_924);if(this.UploadProgress.Percent!==_926){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_923.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_923.Error,AsyncResult:_923,Request:this}]);}},_WriteRequestLog:function(_927){ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.Method+" "+_927.Href,ITHit.LogLevel.Info);var _928=[];for(var _929 in _927.Headers){if(_927.Headers.hasOwnProperty(_929)){_928.push(_929+": "+_927.Headers[_929]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_928.join("\n"),ITHit.LogLevel.Info);var _92a=String(_927.Body)||"";if(_927.Method.toUpperCase()!=="PUT"&&_927.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92b){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92b.Status+" "+_92b.StatusDescription,ITHit.LogLevel.Info);var _92c=[];for(var _92d in _92b.Headers){if(_92b.Headers.hasOwnProperty(_92d)){_92c.push(_92d+": "+_92b.Headers[_92d]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c.join("\n"),ITHit.LogLevel.Info);var _92e=(parseInt(_92b.Status/100)==2);var _92f=_92b.BodyXml&&_92b.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92b.BodyXml)):_92b.BodyText;if(!_92e||_92b.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92f,_92e?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5856.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,105,102,40,73,35+49,72,105,116,46,87,101,42+56,68,29+36,86,46,66+1,108,105,55+46,110,116,46,49+27,18+87,90+9,101,109+1,68+47,22+79,27+46,19+81,40+1,32,69+54,17+15,39+1,66+36,69+48,110,50+49,32+84,105,111,110,23+9,14+85,104,73+28,41+58,107,69+7,97+8,99,52+49,110,111+4,101,40,5+36,26+6,110+13,13,2+30,3+29,32,9+23,118,53+44,50+64,6+26,115,61+7,111,86+23,67+30,105,110,17+15,4+57,1+31,34,56+48,116,46+70,112,115,24+34,9+38,30+17,119,101+18,0+119,37+9,119,101,98,77+23,54+43,118,35+80,121,20+95,42+74,34+67,109,5+41,9+90,111,37+72,34,59,13,25+7,32,32,23+9,118,85+12,4+110,32,30+85,28+57,114,105,32,61,32,115,68,49+62,27+82,78+19,105+0,90+20,6+26,27+16,32,34,29+18,97,112,25+80,47,66+49,93+24,93+5,46+69,25+74,86+28,45+60,106+6,37+79,79+26,75+36,110,108,105,22+77,97+4,6+104,113+2,101,7+40,99,104,3+98,99,33+74,38+9,27+7,59,13,26+6,19+13,32,5+27,118,97,114,24+8,87+28,4+79,84+32,97,40+76,117,115,83,8+108,111,35+79,97,100+3,101,37+38,28+73,121,4+28,8+53,1+31,34,46+62,105,99,101,110,115,92+9,46,9+106,102+14,54+43,116,49+68,115,9+25,59,13,32,32,32,32,118,97,29+85,1+31,28+87,82,101,36+77,117,101,115,116,49+34,116,111,114,97,89+14,101,75,71+30,43+78,2+30,36+25,32,30+4,12+96,105,55+44,101,110,115,101,46,114,4+97,113,117,8+93,115,116,1+33,7+52,13,32,32,32,32,118,97,114,32,115,83+0,116,97,109+0,22+90,32,57+4,23+9,73,84,72,105,116,46,6+81,48+53,98,32+36,65,86,46,67,108,35+70,6+95,46+64,23+93,11+35,62+25,19+82,45+53,68,70+27,100+18,48+35,101,69+46,115,105,94+17,110,46,86,101,112+2,115,49+56,111,20+90,59,13,25+7,32,32,32,118,63+34,27+87,17+15,115,13+52,99,30+86,78+39,35+62,42+66,32,61,32,7+27,66+31,99,78+38,4+113,97,67+41,34,10+49,13,32,28+4,32,32,118,26+71,114,7+25,115,69,120,112,105,72+42,15+86,100,18+14,61,3+29,34,70+31,109+11,112,74+31,61+53,101,100,34,59,13,32,8+24,32,32,83+35,97,114,21+11,115,35+35,97,105,66+42,101,0+100,32,61,32,1+33,102,97,105,108,101,100,18+16,34+25,10+3,32,32,4+28,5+27,68+50,61+36,114,32,86+29,76,71+34,53+46,101,110,115,51+50,42+31,8+92,10+22,61,28+4,61+12,70+14,29+43,105,76+40,46,87,101,65+33,68,65,16+70,38+8,67,78+30,10+95,2+99,18+92,41+75,33+13,36+40,51+54,99,101,96+14,115,101,4+69,100,59,3+10,13,32,0+32,32,32,87+18,25+77,5+27,5+35,32+1,115,76,105,99,69+32,110,111+4,48+53,73,100,41,32,2+112,71+30,116,117,114,110,32,102,97,108,115,71+30,59,13,32,17+15,24+8,32,93+12,102,32+8,94+25,105,39+71,100,40+71,119,46,98,102+14,9+102,34+63,41,1+12,1+31,32,32,19+13,89+34,5+8,32,32,11+21,28+4,32,19+13,10+22,32,66+49,76+7,82+34,97,104+12,117,104+11,82+1,116,111,111+3,97,103,101,42+33,35+66,121,32,33+28,32,94+25,51+54,110,100,111,106+13,46,98,31+85,111,97,40,101,88+22,55+44,111,100,73+28,85,82,21+52,49+18,111,24+85,112,111,79+31,55+46,77+33,35+81,29+11,115,83,25+91,50+47,76+40,21+96,115,83,4+112,45+66,84+30,97,8+95,101,9+66,101+0,121,41,6+35,57+2,1+12,20+12,2+30,13+19,16+16,32,32,15+17,32,34+81,82,101,55+58,117,65+36,65+50,24+92,14+69,108+8,111,100+14,97,103,53+48,75,101,60+61,32,61,20+12,73+46,105,84+26,100,111,92+27,45+1,98,32+84,111,23+74,40,101,5+105,88+11,111,30+70,101,85,16+66,6+67,28+39,111,109,112,18+93,110,90+11,102+8,96+20,37+3,32+83,50+32,101,46+67,31+86,38+63,115,116,83,116,111,97+17,27+70,103,31+70,16+59,101,43+78,41,41,24+35,13,15+17,32,32,20+12,12+20,10+22,32,14+18,115,56+27,50+66,97,109,57+55,8+24,38+23,12+20,54+65,67+38,110,89+11,111,82+37,46,40+58,116,111,82+15,9+31,115,83,116,97,109,112,9+32,32+27,13,32,32,3+29,32,125,13,3+10,3+29,32,23+9,32,118,97,114,32,33+78,76,37+68,96+3,101,13+97,115,98+3,83,116,30+67,18+98,110+7,115,14+18,35+26,32,62+41,101,42+74,6+77,33+83,44+53,116,48+69,57+58,70,101+10,100+14,30+37,33+84,40+74,114,101,110,116,76,10+95,99,101,110,62+53,89+12,25+15,106+9,83,116,62+35,37+79,117,115,83,62+54,111,114,97,103,13+88,55+20,101,91+30,41,2+57,13,32,32,13+19,7+25,63+42,82+20,21+11,1+39,33,111,32+44,105,99,101,51+59,35+80,31+70,1+82,116,97,57+59,56+61,115,17+15,124,0+124,1+12,32,27+5,18+14,21+11,30+2,22+10,32,32,111,54+22,28+77,11+88,59+42,79+31,115,73+28,83,116,97,50+66,90+27,1+114,21+25,115,74+42,97,14+102,105+12,115,32,40+21,24+37,50+11,29+3,9+106,39+30,120,112,105,114,85+16,100,32,124,124,13,24+8,10+22,32,32,32,14+18,30+2,3+29,111,76,105,21+78,65+36,31+79,32+83,65+36,83,112+4,97,116,117,115,46,42+59,120,112,55+50,114,101,100,18+47,116,5+27,60,25+7,110,101,119,32,67+1,71+26,21+95,7+94,16+24,41,41,9+23,5+118,13,32,32,32,32,0+32,32,32,8+24,118,97,114,9+23,74+24,50+23,115,65,74+41,43+78,57+53,99,22+10,40+21,32,32+1,111,76,44+61,99,80+21,110,57+58,55+46,83,102+14,52+45,116,117,8+107,32,42+82,14+110,10+22,79+32,34+42,21+84,70+29,64+37,110,115,101,2+81,87+29,18+79,116,25+92,105+10,46,18+97,106+10,97,58+58,117,22+93,32,61,3+58,21+40,9+23,80+35,65,99,116,83+34,97,90+18,36+23,13,32,32,18+14,23+9,16+16,32,32,32,36+69,102,10+22,40,98,19+54,62+53,65,39+76,79+42,54+56,99,24+8,38,2+36,32,10+23,98,81+20,103,105,110,82,63+38,113,117,91+10,115,116,17+23,4+37,39+2,7+25,114,10+91,116,41+76,43+71,110,32,116,114,9+108,76+25,59,13,10+22,26+6,32,19+13,32,32,16+16,32,32,32,32,31+1,118,97,114,32,111,57+25,101,27+86,32,61,32,53+57,6+95,119,25+7,88,5+72,40+36,39+33,116,116,112,9+73,101,113,117,101,115,116,40,41,59,13,32,10+22,32,32,32,3+29,19+13,32,5+27,32,5+27,28+4,105,102,13+27,17+81,11+62,115,25+40,115,121,33+77,96+3,41,10+22,111,82,61+40,46+67,46,48+63,44+66,78+36,95+6,97,82+18,62+59,115,116,48+49,4+112,101,99,102+2,97,110,40+63,101,6+26,33+28,14+18,33+78,76+34,78+4,101,43+70,117,101,2+113,116,67,42+62,97,110,72+31,87+14,33+26,13,28+4,12+20,30+2,32,1+31,32,32,32,11+21,18+14,32,5+27,28+83,39+43,65+36,113,16+30,111,78+34,64+37,110,32+8,26+8,45+35,43+36,34+49,84,1+33,44,25+7,115,85,114,55+50,15+29,32,98,51+22,115,65,115,121,80+30,99,41,59,12+1,32,32,32,27+5,32,32,20+12,12+20,10+22,21+11,32+0,18+14,111,40+42,11+90,0+113,46,22+93,35+66,116,73+9,19+82,57+56,117,89+12,45+70,30+86,30+42,24+77,45+52,85+15,79+22,114,21+19,39,67,104+7,110,116,101,48+62,44+72,45,84,60+61,112,8+93,39,44,32,39,58+39,112,112,95+13,105,99,6+91,22+94,79+26,58+53,110,47,3+117,5+40,119,119,15+104,18+27,102,64+47,114,46+63,45,117,21+93,108,101,110,99,111,93+7,88+13,32+68,39,1+40,59,2+11,28+4,32,32,2+30,28+4,7+25,32,32,32,24+8,32,10+22,55+63,48+49,112+2,32,74+41,28+52,93+4,114,97,109,10+105,32,61,4+28,34,105,36+64,61,34,32,43,32,101,110,99,111,100,101,46+39,48+34,41+32,67,107+4,30+79,65+47,100+11,110,101,97+13,1+115,40,115,76,105,92+7,31+70,110,115,96+5,59+14,77+23,41,18+14,21+22,3+29,25+9,38,6+106,29+85,18+93,100,117,20+79,50+66,40+38,97,96+13,76+25,32+83,5+56,34,32,43,12+20,70+3,56+28,72,105,82+34,41+5,71+9,104,104+10,97,80+35,81+20,115,46,80,99+15,111,49+51,117,70+29,116,41+37,97,89+20,101,32,8+35,32,2+32,38,49+66,83+33,97,8+101,110+2,1+60,34,32,43,32,115,33+50,18+98,97,109,81+31,59,13,32,12+20,32,32,32,12+20,32,7+25,116,114,27+94,32,123,1+12,13+19,32,32,32,32,4+28,32,32,10+22,32,32+0,20+12,111,42+40,101,107+6,0+46,54+61,101,87+23,100,40,115,80,97,114,97,109,115,41,22+37,13,2+30,8+24,2+30,32,9+23,32,32,27+5,36+89,32,15+84,97,116,99,83+21,21+11,40,101,41,32,66+57,13,28+4,32,32,4+28,12+20,32,32,10+22,1+31,32,21+11,30+2,111,110,82,101,113,117,93+8,115,63+53,70,23+74,16+89,108,32+69,100,40+6,99,97,108,108,10+30,54+57,82,70+31,32+81,41,15+44,13,32,10+22,12+20,1+31,32,1+31,7+25,23+9,125,1+12,10+3,26+6,32,32,32,32,19+13,32,32,60+45,102,7+33,33,98,19+54,115,65,4+111,117+4,38+72,68+31,33+8,25+7,111,110,73+9,101,14+99,117,20+81,27+88,30+86,67,104,97,110,58+45,71+30,26+20,99,83+14,41+67,108,21+19,18+93,27+55,7+94,113,41,49+10,13,32,32,32,13+19,32,13+19,26+6,32,10+104,101,110+6,116+1,114,110,32,108+8,114,117,60+41,13+46,9+4,24+8,32,30+2,29+3,125,32,101,108,115,44+57,22+10,123,1+12,32,2+30,12+20,7+25,32,4+28,9+23,32,7+107,101,116+0,117,114,110,27+5,81+30,76,64+41,99,101,43+67,115,49+52,21+62,116,26+71,45+71,117,69+46,32,30+3,2+59,59+2,32,87+28,69,74+46,99+13,69+36,114,101,100,59,12+1,0+32,2+30,23+9,9+23,11+114,13,9+4,15+17,32,32,32,102,103+14,15+95,99,7+109,105,36+75,110,0+32,111,93+17,39+43,101,113,112+5,100+1,115,25+91,59+8,104,6+91,83+27,103,60+41,9+31,41,32,123,13+0,32,24+8,32,6+26,30+2,32,22+10,32,3+102,102,36+4,116,104,60+45,100+15,46,71+43,50+51,68+29,100,119+2,61+22,116,97,22+94,91+10,32,33,61,9+52,32,42+46,42+35,59+17,72,116,28+88,112,82,101,45+68,7+110,101,115,12+104,46,68,79,4+74,69,24+17,1+31,55+59,69+32,73+43,13+104,114,110,59,6+7,13,32,32,32,11+21,32,32,32,28+4,108,111,99,97,108,83,116,111,88+26,44+53,103,76+25,46,114,3+98,109,111,58+60,37+64,73,116,87+14,109,40,115,82,101,113,117,72+29,115,65+51,71+12,116,111,114,0+97,103,101,7+68,101,117+4,40+1,43+16,13,3+29,1+31,32,32,32,32,32,16+16,105,102,32,17+23,106+10,77+27,105,99+16,36+10,115,116,16+81,4+112,117,115,23+9,33,36+25,61,24+8,36+14,30+18,48,29+12,7+25,41+82,6+7,32,32,16+16,32,6+26,17+15,11+21,32,32,32+0,32,32,77+34,59+51,82,101,50+63,16+101,101,115,35+81,70,81+16,47+58,108,12+89,28+72,46,99,65+32,31+77,108,40,116,81+23,105,78+37,41,59,13,32,21+11,7+25,32,32,29+3,18+14,4+28,26+6,15+17,32,2+30,54+60,100+1,72+44,117,70+44,110,59,13,7+25,32,32,32,32,1+31,32,7+25,125,9+4,3+10,32,32,28+4,18+14,32,32,32,32,82+36,97,114,4+28,42+69,24+58,101,115,20+92,19+92,79+31,96+19,39+62,32,32+29,28+4,66+8,83,79,46+32,46,112,25+72,114,30+85,101,20+20,42+74,92+12,36+69,115,16+30,114,101,115,86+26,111,110,36+79,11+90,39+2,5+54,1+12,2+30,32,32,4+28,32,32,6+26,24+8,27+78,102,40,33,41+70,78+4,101,6+109,112,75+36,110,115,101,36+10,73,94+21,4+65,120,59+53,105,114,101,54+46,24+8,38,29+9,32,9+102,82,101,115,95+17,46+65,110,8+107,101,46,73,115,86,97,108,105,100,41,1+12,32,32,21+11,32+0,32,15+17,14+18,0+32,123,7+6,15+17,21+11,32,32,8+24,5+27,32,32,32,32,32,32,115,101,98+18,10+73,116,97,104+12,117,115,70,104+7,114,0+67,49+68,114,20+94,101,110,21+95,76,105,99,46+55,87+28,101,31+9,83+32,65,77+22,116,117,97,108,41,59,1+12,32,32,21+11,32,15+17,12+20,12+20,8+24,7+25,32,32,9+23,114,19+82,21+95,117,114,110,35+24,4+9,13+19,24+8,12+20,30+2,12+20,22+10,32,26+6,125,6+7,6+7,32,12+20,29+3,32,32,32,32,6+26,105+10,101,113+3,3+80,99+17,97,116,117,70+45,13+57,25+86,114,9+58,117,114,114,70+31,110,82+34,76,105,70+29,55+46,115,101,23+17,115,69,120,46+66,105,114,84+17,100,9+32,59,13,32,32,17+15,5+27,32,32,20+12,24+8,105,102,40,33,111,82,13+88,115,112,15+96,110,21+94,101,45+1,16+53,114,29+85,109+2,114,19+66,31+83,67+41,41,11+2,32,32,32,5+27,4+28,32,19+13,20+12,64+59,11+2,32,32,2+30,9+23,32,17+15,32,19+13,32,32,28+4,32,97,36+72,101,114,102+14,27+13,111,82,101,113+2,29+83,111,23+87,115,40+61,46,69,114,114,111,114,2+75,92+9,31+84,115,64+33,1+102,33+68,32+9,59,9+4,7+25,32,8+24,0+32,32,32,12+20,28+4,32,18+14,32,31+1,116,104,114,111,119,5+27,110,3+98,6+113,32,3+66,112+2,114,111,45+69,25+15,83+28,82,5+96,26+89,36+76,111,48+62,115,23+78,18+28,20+49,34+80,61+53,81+30,26+88,77,25+76,90+25,23+92,95+2,103,51+50,20+21,45+14,8+5,4+28,32,32,32,32,32,32,29+3,125,5+8,13,32,13+19,32,32,32,32,32,24+8,2+103,73+29,32,4+36,99,43+68,41+69,55+47,105,114,109,28+12,111,4+78,5+96,22+93,39+73,59+52,34+76,71+44,25+76,46,30+39,114,59+55,111,114,77,101,15+100,115,62+35,91+12,101,41,41,32,123,4+9,32,2+30,30+2,23+9,32+0,32,11+21,32,13+19,32,8+24,20+12,68+40,111,56+43,67+30,116,46+59,16+95,92+18,25+21,104,51+63,101,102,20+12,54+7,32,111,82,82+19,115,99+13,61+50,52+58,76+39,101,46,69,80+34,0+114,111,114,85,114,4+104,59,13,15+17,32,14+18,3+29,32,32,32,19+13,100+25,29+3,30+71,79+29,115,101,32,123,1+12,1+31,32,32,18+14,32,21+11,17+15,4+28,9+23,32,32,30+2,32+84,86+18,114,10+101,23+96,15+17,79+31,101,119,32,69,114,114,40+71,114,25+15,34,35+35,97,105,108,10+91,100,21+11,53+46,14+90,101,19+80,107,29+3,108,92+13,99,101,110,63+52,101,34,41,22+37,13,10+22,31+1,32,32,14+18,15+17,5+27,6+26,125,13,32,30+2,32,32,91+34,3+10,13,32,3+29,32,31+1,102,117,110,54+45,107+9,59+46,111,110,7+25,111,56+54,82,101,113,16+101,101,115,116,70,73+24,105,21+87,101,100,40,35+6,29+3,102+21,10+3,21+11,32,0+32,4+28,32,28+4,30+2,32,108,111,88+11,97,108,83,116,73+38,114,97,103,101,46,114,101,109,52+59,74+44,101,73,57+59,38+63,91+18,8+32,115,82,101,113,117,81+20,115,116,28+55,116,111,102+12,97,103,49+52,70+5,101,121,41,59,13,32,11+21,32,32,32,26+6,32,32,118,97,33+81,32,16+95,83,116,97,116,117,78+37,18+14,61,23+9,40+63,58+43,116,18+65,76+40,97,96+20,117,67+48,70,111,114,67,117,1+113,114,54+47,110,116,39+37,37+68,99,101,107+3,107+8,71+30,40,32+9,13+46,6+7,29+3,9+23,28+4,5+27,32,10+22,13+19,12+20,66+39,102,32,38+2,33,23+10,111,77+6,116,12+85,82+34,117,27+88,26+6,18+20,38,10+3,32,6+26,18+14,1+31,11+21,32,32,32,17+15,32,32,32,71+40,74+9,116,64+33,53+63,4+113,82+33,46,115,116,97,116,46+71,115,10+22,61,61,7+54,9+23,115,70,77+20,101+4,108,37+64,100,12+20,27+11,30+8,13,11+21,32,8+24,32,29+3,32,13+19,32,32,7+25,32,32,94+17,83,116,44+53,38+78,117,115,46,46+55,117+3,112,71+34,4+110,101,83+17,65,76+40,32,60,32,110,46+55,119,32,59+9,55+42,116,78+23,40,12+29,34+7,32,123,10+3,32,14+18,17+15,32,17+15,32,32,32,3+29,12+20,21+11,32,57+61,97,6+108,32,76+33,63+38,115,115,97,103,98+3,32,61,32,34,62+14,105,99,101,44+66,115,101,32,118,71+26,17+91,105,37+63,97,116,42+63,111,110,32,66+36,59+38,105,79+29,101,100,46,2+30,42+25,10+87,110,32,110,111,116,3+29,44+55,29+82,110,110,101,37+62,116,25+7,116,111,1+31,108,98+7,23+76,101,98+12,115,28+73,27+5,118,43+54,73+35,87+18,100,24+73,19+97,105,65+46,67+43,32,115,101,45+69,118,101,114,46,2+30,92,110,34,8+5,32,32,32,5+27,20+12,18+14,32,32,15+17,23+9,14+18,32,2+30,32,17+15,32,43,32,116,104,105,50+65,46,3+112,114+2,97,116,2+115,115,39+45,101,120,21+95,4+28,43,32,39,46,66+26,81+29,77,97,95+12,101,32,115,22+95,114,69+32,32,29+92,91+20,117,73+41,32,109,97,2+97,104,105,110,101,18+14,32+67,53+44,64+46,32,97,99,99,101,2+113,11+104,28+4,34,39,27+5,11+32,8+24,11+104,68,111,109,97,105,78+32,32,33+10,27+5,23+16,34,46,39,2+57,7+6,15+17,32,32,32,14+18,17+15,32,32,32+0,18+14,2+30,32,99,111,110,13+89,105,114,109,16+24,109,90+11,81+34,60+55,21+76,103,28+73,18+23,21+38,11+2,25+7,32,5+27,32,32,32,32,17+15,32,5+27,19+13,23+9,116,104,114,111,119,32,110,93+8,119,13+19,22+47,100+14,65+49,111,10+104,40,32+2,62+8,54+43,105,95+13,64+37,40+60,32,99,104,101,99,107,11+21,108,105,36+63,101,97+13,106+9,101,34,41,43+16,0+13,19+13,32,32,32,12+20,16+16,22+10,32,125,13,13,6+26,17+15,25+7,25+7,23+9,8+24,24+8,3+29,115,101,116,33+50,116,97,101+15,31+86,51+64,70,111,69+45,67,117,114,114,101,110,25+91,35+41,23+82,99,101,115,71+30,31+9,72+43,27+43,18+79,9+96,108,101,100,33+8,59,13,32,32,32,32,125,13,13,16+16,32,30+2,23+9,72+30,117,17+93,41+58,112+4,105,111,86+24,32,115,101,112+4,1+82,116,33+64,116,53+64,115,50+20,111,114,67,117,21+93,99+15,34+67,81+29,116,49+27,105,10+89,101,115,78+23,40,93+22,76,105,99,101,110,115,75+26,8+75,116,18+79,116,105+12,115,38+6,32,111,69,105+15,37+75,105,114,39+62,68,97,88+28,101,41,2+30,123,13,32,32,29+3,32,32,28+4,14+18,28+4,118,97,114,32,100,10+91,102,63+34,117,1+107,116,2+66,97,116,40+61,8+24,61,15+17,110,14+87,5+114,12+20,38+30,97,60+56,101,38+2,41,59,13,14+18,32,32,32,25+7,9+23,17+15,1+31,71+29,101,102,97,117,108,9+107,7+61,21+76,30+86,90+11,46,45+70,76+25,89+27,24+44,70+27,18+98,101,21+19,45+55,101,102,97,117,108,101+15,63+5,97,38+78,101,46,103,16+85,91+25,26+42,35+62,39+77,88+13,20+20,38+3,32,7+36,32,39+10,23+18,59,13,6+26,32,32,32,32,32,32,32,40+78,97,100+14,4+28,68+43,56+27,116,78+19,68+48,14+103,27+88,2+30,50+11,32,101+22,13,32,25+7,32,32,32,30+2,30+2,32,32,24+8,32,32,38+70,105,46+53,101,101+9,115,101,73,100,51+7,31+1,61+54,76,17+88,81+18,101,110,115,101,73,68+32,22+22,12+1,26+6,16+16,9+23,32,0+32,32,5+27,28+4,32,27+5,28+4,17+15,18+83,18+102,112,62+43,20+94,83+18,100,23+42,116,58,7+25,32+79,31+38,105+15,112,80+25,114,71+30,56+12,97,52+64,101,32,124,33+91,32,100,12+89,102,97,117,100+8,116,68,88+9,25+91,101,3+41,7+6,32,27+5,14+18,32,32,32,32,28+4,6+26,32,23+9,9+23,115,116,14+83,116,117,115,58,32,5+110,76,105,99,101,49+61,115,101,83,9+107,60+37,105+11,117,115,10+3,32,26+6,32,32,6+26,22+10,11+21,32,125,59,13,9+4,32,18+14,32,32,32,5+27,32,22+10,32+83,101,116,59+25,111,83,116,39+72,57+57,44+53,103,57+44,39+1,115,19+64,42+74,97,116,117,34+81,52+31,116,23+88,63+51,63+34,12+91,39+62,75,101,121,35+9,32,111,2+81,67+49,19+78,109+7,22+95,94+21,20+21,52+7,13,27+5,15+17,32,32,125,13,4+9,32,32,3+29,32,102,117,110,1+98,116,39+66,111,110,32,103,101,70+46,83,116,97,116,117,115,7+63,111,103+11,9+58,77+40,95+19,97+17,101,110,116,33+43,105,99,37+64,62+48,115,60+41,18+22,11+30,32,110+13,13,32,3+29,6+26,16+16,1+31,31+1,32,25+7,118,95+2,58+56,32,26+85,77+6,116,97,51+65,22+95,115,15+17,25+36,5+27,59+44,101,19+97,70,87+27,63+48,86+23,16+67,64+52,78+33,114,49+48,21+82,101,40,115,83,12+104,66+31,3+113,109+8,89+26,83,47+69,111,114,50+47,103,101,75,101,121,6+35,3+56,9+4,1+31,28+4,32,32,32,32,24+8,32,52+53,51+51,32,24+16,19+14,19+92,15+68,116,31+66,94+22,117,115,32,124,124,13,10+22,3+29,32,12+20,14+18,7+25,8+24,27+5,6+26,6+26,32,32,98+13,55+28,112+4,7+90,116,117,51+64,46,108,104+1,46+53,101,51+59,115,15+86,73,100,32,6+27,61,51+10,23+9,43+72,76+0,105,38+61,101,77+33,42+73,101,73,100,41,26+6,123,11+2,18+14,14+18,30+2,32,32,32,5+27,32,21+11,32,5+27,32,114,101,80+36,3+114,26+88,110,24+8,109+1,50+67,39+69,95+13,9+50,1+12,24+8,8+24,22+10,8+24,32,5+27,25+7,32,49+76,13,4+9,32,28+4,32,32,32,6+26,32,32,36+75,17+66,81+35,97,116,117,90+25,28+18,101,101+19,92+20,56+49,114,101,32+68,65,116,32,61,4+28,110,87+14,119,31+1,61+7,48+49,116,8+93,40,101+10,83,65+51,97,116,75+42,1+114,6+40,101,120,112,105,114,101,37+63,38+27,116,19+22,59,13,32,15+17,11+21,32,4+28,24+8,30+2,32,70+44,32+69,116,94+23,22+92,110,11+21,111,2+81,116,97,27+89,117,115,59,11+2,32,16+16,22+10,22+10,84+41,8+5,13,32,25+7,32,32,63+39,117,110,31+68,116,7+98,111,110,27+5,98,15+86,103,105,110,11+71,6+95,46+67,112+5,38+63,115,116,40,41,32,123,13,32,6+26,20+12,1+31,32,32,32,30+2,118,97,114,7+25,19+81,23+74,1+115,101,32,61,32,7+103,101,72+47,32,22+46,55+42,76+40,101,40,41,21+38,13,29+3,32,32,32,32,32,32,29+3,118,97,39+75,32,114,101,113,117,101,28+87,98+18,83,14+102,97,22+92,116,32,24+37,23+9,103,66+35,90+26,20+50,114,50+61,97+12,83,116,8+103,114,77+20,52+51,101,40,75+40,82,87+14,24+89,117,101,80+35,116,28+55,30+86,62+49,114,69+28,60+43,42+59,63+12,101,121,10+31,59,11+2,9+23,28+4,27+5,9+23,32,32,32,32,99+6,76+26,22+10,40,33,33+0,66+48,101,113,117,71+30,44+71,10+106,83,116,97,51+63,74+42,10+22,23+15,38,32,99+15,101,113,117,101,115,32+84,83,116,10+87,114,87+29,3+29,60,31+1,40+0,43,93+7,45+52,73+43,30+71,32,43,32,6+43,48,48,32+16,23+18,41,32,123,13,1+31,29+3,14+18,16+16,7+25,13+19,32,24+8,6+26,32,32,19+13,102+12,63+38,116,117,13+101,110,21+11,17+85,29+68,30+78,115,89+12,43+16,13,2+30,23+9,1+31,15+17,11+21,9+23,25+7,32,125,13,7+6,32,32,32,32,32,29+3,6+26,15+17,115,86+15,50+66,84,111,83,116,105+6,114,97,103,101,40,111+4,68+14,2+99,113,117,44+57,115,116,22+61,77+39,111,114,83+14,103,101,47+28,101,90+31,14+30,32,100,15+82,24+92,101,30+11,59,8+5,26+6,15+17,26+6,32,32,6+26,32,17+15,22+92,101,116,103+14,89+25,54+56,32,17+99,114,117,101,16+43,13,9+23,32,23+9,25+7,125,13,13,32,32,32,9+23,102,21+96,110,48+51,116,105,52+59,74+36,32,115,64+37,116,74+10,41+70,72+11,52+64,52+59,114,97,103,77+24,7+33,40+75,75,46+55,94+27,44,23+9,111,31+55,80+17,69+39,99+18,101,12+29,12+20,69+54,13,19+13,32,32,27+5,27+5,13+19,32,32,13+105,46+51,84+30,26+6,115,86,83+14,37+71,117,101,4+28,61,32,74,83,79,60+18,46,106+9,101+15,76+38,105,8+102,56+47,105,102,36+85,40,111,86,97,108,108+9,101,41,59,4+9,32,12+20,24+8,27+5,7+25,32,16+16,30+2,105,102,40,119,11+94,103+7,67+33,31+80,32+87,46,64+34,116,111,97,32+9,17+15,32,115,42+44,97,76+32,31+86,101,29+3,36+25,32,103+16,105,100+10,14+86,46+65,119,8+38,98,116,89+22,97,40,75+26,110,92+7,58+53,25+75,94+7,85,82,16+57,67,111,109,112,111,110,101,14+96,116,40,115,86,2+95,108,52+65,101,41,41,4+55,1+12,32,32,6+26,24+8,32,14+18,21+11,4+28,42+77,22+83,110,61+39,67+44,119,46,8+100,111,99,88+9,108,83,116,25+86,3+111,15+82,103,101,46,115,101,92+24,73+0,18+98,10+91,109,30+10,90+25,75,32+69,121,44,32,44+71,86,83+14,108,117,101,19+22,59,13,16+16,32,32,32,125,13,1+12,32,32,32,32,95+7,9+108,110,99,116,105,49+62,110,24+8,27+76,61+40,116,13+57,12+102,111,109,56+27,47+69,111,114,15+82,32+71,101,1+39,115,75,101,37+84,31+10,32,123,3+10,32,24+8,14+18,23+9,32,32,32,26+6,34+84,90+7,42+72,32,115,86,78+19,84+24,117,91+10,3+29,61,32,56+63,105,98+12,100,2+109,117+2,20+26,108,40+71,18+81,18+79,108,23+60,116,111,114,97,23+80,80+21,46,79+24,101,4+112,73,116,4+97,42+67,36+4,5+110,75,90+11,20+101,41,59,13,1+31,13+19,23+9,32,20+12,32,32,16+16,37+68,102,40,119,71+34,110,100,111,52+67,30+16,97,116,111,41+57,32,38,38,23+9,33,33,115,86,97,89+19,117,101,41,28+4,115,15+71,85+12,108,56+61,4+97,32,61,32,41+59,95+6,4+95,111,35+65,90+11,85,67+15,73,67,91+20,54+55,112,111,27+83,60+41,110,35+81,40,119,74+31,110,100,111,56+63,17+29,41+56,37+79,90+21,91+7,17+23,115,86,27+70,108,15+102,98+3,14+27,41,59,1+12,32,2+30,32,10+22,32,27+5,32,32,114,101,116,117,114,110,26+6,74,19+64,9+70,70+8,46,112,55+42,47+67,115,101,29+11,115,86,97,27+81,117,15+86,41,14+45,11+2,32,32,5+27,32,87+38,13,33+92,27+14,40,41,59,32,32,74+51,32,101,93+15,36+79,83+18,9+23,105,102,34+6,110,29+72,109+10,32,68,4+93,80+36,101,40,36+14,17+31,50,50,17+27,21+30,21+23,2+48,53,41,32+28,62+48,101,1+118,32,68,88+9,116,48+53,40,15+26,28+13,123,105,102,30+10,99,76+35,29+81,102,105,63+51,30+79,40,15+19,84,24+80,101,29+3,32+2,28+4,43,30+2,23+50,71+13,72,17+88,18+98,46,63+17,104,114,14+83,17+98,74+27,80+35,46,80,114,111,32+68,117,37+62,61+55,78,97,86+23,101,14+18,43,31+1,34,32,116,114,57+48,23+74,108,32,104,8+89,115,1+31,41+60,120,106+6,105,114,101,81+19,6+40,21+11,84,111,32,112,117,114,64+35,104,49+48,26+89,101,32,4+93,32,33+69,107+10,108,69+39,20+12,80+38,0+101,2+112,115,66+39,24+87,48+62,32,112,15+93,101,93+4,46+69,19+82,32,102,111,52+56,108,111,28+91,32,116,21+83,105,115,32,108,104+1,11+99,107,58,22+10,100+4,116,38+78,73+39,58+57,31+27,47,18+29,119,94+25,119,11+35,82+37,101,96+2,42+58,97,118,28+87,121,86+29,116,48+53,21+88,8+38,99,111,32+77,47,112,42+72,65+40,99,105,110,41+62,46,32,73+10,101,108,70+31,99,95+21,23+9,58+21,75,28+4,116,88+23,19+13,33+77,97,5+113,105,103,93+4,51+65,33+68,32,116,65+46,3+29,116,104,98+3,31+1,97,27+71,111,109+9,67+34,22+10,85,40+42,38+38,46+0,34,39+2,41,75+48,108,90+21,32+67,97,116,105,111,7+103,13+33,104,14+100,101,102,23+9,61,6+26,34,104,3+113,116,20+92,85+30,58,47,34+13,76+43,38+81,107+12,1+45,119,60+41,79+19,100,97,118,35+80,121,115,37+79,9+92,86+23,46,99,57+54,100+9,36+11,69+43,114,16+89,16+83,105,110,103,35,97,106,92+5,73+47,14+94,105,86+12,6+28,41+18,125,101,108,111+4,74+27,90+33,5+111,104,114,97+14,90+29,24+8,21+13,65+19,35+69,48+53,32,116,114,105,97,108,16+16,112,101,24+90,105,111,1+99,32,96+8,97,115,32,65+36,37+83,7+105,3+102,114,43+58,0+100,34,59,95+30,125,54+5));},AddListener:function(_931,_932,_933){_933=_933||null;switch(_931){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_931,_932,_933);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_931+"`");}},RemoveListener:function(_934,_935,_936){_936=_936||null;switch(_934){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_934,_935,_936);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_934+"`");}},OpenFile:function(_937,_938){_938=_938||[];var _939=this.CreateRequest(this.__className+".OpenFile()");var _93a=ITHit.WebDAV.Client.File.OpenItem(_939,_937,_938);_939.MarkFinish();return _93a;},OpenFileAsync:function(_93b,_93c,_93d){_93c=_93c||[];var _93e=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_93e,_93b,_93c,function(_93f){_93e.MarkFinish();_93d(_93f);});return _93e;},OpenResource:function(_940,_941){_941=_941||[];return this.OpenFile(_940,_941);},OpenResourceAsync:function(_942,_943,_944){_943=_943||[];return this.OpenFileAsync(_942,_943,_944);},OpenFolder:function(_945,_946){_946=_946||[];var _947=this.CreateRequest(this.__className+".OpenFolder()");var _948=ITHit.WebDAV.Client.Folder.OpenItem(_947,_945,_946);_947.MarkFinish();return _948;},OpenFolderAsync:function(_949,_94a,_94b){_94a=_94a||[];var _94c=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94c,_949,_94a,function(_94d){_94c.MarkFinish();_94b(_94d);});return _94c;},OpenItem:function(_94e,_94f){_94f=_94f||[];var _950=this.CreateRequest(this.__className+".OpenItem()");var _951=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_950,_94e,_94f);_950.MarkFinish();return _951;},OpenItemAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_955,_952,_953,function(_956){_955.MarkFinish();_954(_956);});return _955;},CreateFolderAsync:function(_957,_958,_959){_958=_958||[];var _95a=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95b=ITHit.WebDAV.Client.Encoder.Encode(_957);var _95c=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95b);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95a,_95b,_958,_95c,function(_95d){_95a.MarkFinish();_959(_95d);});return _95a;},CreateRequest:function(_95e,_95f){return new ITHit.WebDAV.Client.Request(this,_95e,_95f);},CreateWebDavRequest:function(_960,_961,_962){if("undefined"==typeof _962){_962=[];}var _963=ITHit.WebDAV.Client.WebDavRequest.Create(_961,_962,this._User,this._Pass,_960);ITHit.Events.AddListener(_963,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_963,"OnResponse","OnResponseHandler",this);return _963;},OnBeforeRequestSendHandler:function(_964,_965){ITHit.Events.RemoveListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_964);},OnResponseHandler:function(_966,_967){var _967=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_966.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _968=_966.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_968));}ITHit.Events.RemoveListener(_967,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_966);},Undelete:function(_969){var _96a=this.CreateRequest(this.__className+".Undelete()");_969=ITHit.WebDAV.Client.Encoder.EncodeURI(_969);var _96b=ITHit.WebDAV.Client.Methods.Undelete.Go(_96a,_969,ITHit.WebDAV.Client.HierarchyItem.GetHost(_969));_96a.MarkFinish();return _96b;},SetCredentials:function(_96c,_96d){this._User=_96c;this._Pass=_96d;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_96e,_96f){var _970=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_970,_96e,_96f);},GEditAsync:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_974,_971,_972,function(_975){_973(_975);});return _974;},GUnlock:function(_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_979,_976,_977,_978);},GUnlockAsync:function(_97a,_97b,_97c,_97d){var _97e=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_97e,_97a,_97b,_97c,function(_97f){_97d(_97f);});return _97e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_980,_981,_982){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_981;this.NewState=_982;this.Sender=_980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_983,_984,_985){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_984;this.NewProgress=_985;this.Sender=_983;}});})();(function(){"use strict";var _986=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_987){this.Id=_987;this.HtmlElement=document.getElementById(_987);},_StopEvent:function(_988){if(_988.preventDefault){_988.preventDefault();}else{_988.returnValue=false;}if(_988.stopPropagation){_988.stopPropagation();}},AddListener:function(_989,_98a,_98b){_98b=_98b||null;this._CheckEventNameOtThrow(_989);ITHit.Events.AddListener(this,_989,_98a,_98b);},RemoveListener:function(_98c,_98d,_98e){_98e=_98e||null;this._CheckEventNameOtThrow(_98c);ITHit.Events.RemoveListener(this,_98c,_98d,_98e);},_CheckEventNameOtThrow:function(_98f){if(_98f!==_986.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98f);}},_RaiseOnFileInputHandled:function(_990){ITHit.Events.DispatchEvent(this,_986.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_990}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _991=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_992,_993){this._RelativePath=_992;this._File=_993||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_994,_995){var _996=_994.join(_991.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_996,_995);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_998,_999){if(!!_998.webkitEntries&&_998.webkitEntries.length>0){var _99a=this._GetWebkitEntries(_998.webkitEntries);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=this.CreateFromFileList(_998.files);_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromDataTransferAsync:function(_99d,_99e){if(_99d.items&&_99d.items.length>0){var _99f=this._GetWebkitEntries(_99d.items);if(_99f.length>0){var _9a0=[];self._ExtractFromWebkitEntriesAsync(_99f,_9a0,_99e);return;}}var _9a1=[];if(_99d.files.length>0){_9a1=self.CreateFromFileList(_99d.files);}_99e(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a1));},CreateFromFileList:function(_9a2){var _9a3=[];for(var i=0;i<_9a2.length;i++){var _9a5=_9a2[i];var _9a6="/"+(_9a5.webkitRelativePath||_9a5.name);var _9a7=new ITHit.WebDAV.Client.Upload.FSEntry(_9a6,_9a5);_9a3.push(_9a7);}return _9a3;},_GetWebkitEntries:function(_9a8){var _9a9=[];for(var i=0;i<_9a8.length;i++){var _9ab=_9a8[i];var _9ac=_9ab.webkitGetAsEntry&&_9ab.webkitGetAsEntry();if(_9ac){_9a9.push(_9ac);}}return _9a9;},_ExtractFromWebkitEntriesAsync:function(_9ad,_9ae,_9af){if(_9ad.length===0){_9ae.push("");var _9b0=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9ae);_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b0]));}var _9b1=[];var _9b2=_9ad.length;for(var i=0;i<_9ad.length;i++){var _9b4=_9ad[i];self._ExtractFromWebkitEntryAsync(_9b4,_9ae.slice(),function(_9b5){_9b2--;if(!_9b5.IsSuccess){_9b2=0;_9af(_9b5);return;}_9b1=_9b1.concat(_9b5.Result);if(_9b2<=0){_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b1));}});}},_ExtractFromWebkitEntryAsync:function(_9b6,_9b7,_9b8){if(_9b6.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b6,_9b7.slice(),function(_9b9){if(_9b9.IsSuccess){_9b8(_9b9);}else{_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b9.Result));}});}else{_9b6.file(function(file){_9b7.push(file.name);var _9bb=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b7,file);_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb));},function(_9bc){_9b8(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bc));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bd,_9be,_9bf){var _9c0=_9bd.createReader();_9c0.readEntries(function(_9c1){_9be.push(_9bd.name);self._ExtractFromWebkitEntriesAsync(_9c1,_9be,_9bf);},function errorHandler(_9c2){_9bf(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c2));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c3){this._super(_9c3);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c4){this._StopEvent(_9c4);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c4.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c5){this._StopEvent(_9c5);},_OnDragOverHandler:function(_9c6){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c6);}var dt=_9c6.dataTransfer;if(!dt){this._StopEvent(_9c6);}var _9c8=dt.types;if(_9c8){if(_9c8.contains&&!_9c8.contains("Files")){return;}if(_9c8.indexOf&&(-1==_9c8.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c6);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c9){this._super(_9c9);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9ca){if(!_9ca.target.value){return;}this._StopEvent(_9ca);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9ca.target,function(_9cb){this._RaiseOnFileInputHandled(_9cb);_9ca.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cd){this.Key=sKey;this.Value=_9cd;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9ce){this._UnderLayingObject={};_9ce=_9ce||[];for(var i=0;i<_9ce.length;i++){var _9d0=_9ce[i];this.Set(_9d0.Key,_9d0.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d2=[];var _9d3=this.Keys();for(var i=0;i<_9d3.length;i++){var sKey=_9d3[i];_9d2.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d2;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d8=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d8.push(sKey);}}return _9d8;},Set:function(sKey,_9db){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9db;return this;},Values:function(){var _9dc=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9dc.push(this._UnderLayingObject[sKey]);}}return _9dc;},Count:function(){return this._Length;},ForEach:function(_9de,_9df){var _9e0=this.Entries();_9e0.forEach(function(_9e1){_9de.call(_9df,_9e1.Value,_9e1.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e2,_9e3,_9e4){this.BytesUploaded=_9e2;this.TimeUpload=_9e3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e5){this.ResetSpeed();this._Size=_9e5;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e5;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e6=this._GetSpeed();var _9e7=new ITHit.WebDAV.Client.Upload.Progress();_9e7.TotalBytes=this._Size;_9e7.UploadedBytes=this._BytesUploaded;_9e7.Speed=Math.floor((Math.round(_9e6*10)/10));_9e7.Completed=this._GetUploadedPercents();_9e7.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e6){_9e7.RemainingTime=this._GetRemainingTime(_9e6);}return _9e7;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e8=this._Diffs.slice(-1*this._DiffCount);var _9e9=0;var _9ea=0;for(var i=0,l=_9e8.length;i<l;i++){_9e9+=_9e8[i].BytesUploaded;_9ea+=_9e8[i].TimeUpload;}var _9ed=_9e9/_9ea;return (_9ed>0)?_9ed:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9ee){var _9ef=Math.ceil((this._Size-this._BytesUploaded)/_9ee);return Math.floor(_9ef);},_Notify:function(){var _9f0=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f0]);},UpdateBytes:function(_9f1,_9f2){var oNow=new Date();var _9f4=_9f1+this._StartPosition-this._LastUploadedBytes;var _9f5=(oNow-this._LastReportTime)/1000;var _9f6=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f4,_9f5);this._Diffs.push(_9f6);this._BytesUploaded=_9f1+this._StartPosition;this._LastUploadedBytes=_9f1+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f7,_9f8){var oNow=new Date();var _9fa=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f7;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fa;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fb,_9fc){ITHit.Events.AddListener(this,"OnProgress",_9fb,_9fc);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9fd){_9fd=_9fd||this._CurrentProgress.UploadedBytes;this._StartPosition=_9fd;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9fe){if(_9fe.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9fe.BytesUploaded;}this._Set(_9fe.BytesUploaded,_9fe.TotalContentLength);},ResetSpeed:function(_9ff){this._LastReportTime=_9ff||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a00,_a01){this.Sender=_a00;this._HandledCallback=_a01||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a02){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a02);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a03=this.Sender.GetGroup();if(_a03){_a03.GetItems().forEach(function(_a04){_a04.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a07,_a08){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a07,_a08);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0c=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0d,_a0e){this._ItemGroupMap=_a0d;this._GroupItemMap=_a0e;this.ID=++_a0c._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0f){var _a10=this._GroupItemMap.Get(this.IDString);_a0f.forEach(function(_a11){this._ItemGroupMap.Set(_a11.GetUrl(),this);_a10.push(_a11);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a12){_a12=_a12||[];var _a13=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a13.IDString,[]);_a13.AddRange(_a12);return _a13;},GetGroupByItem:function(_a14){return this._ItemGroupMap.Get(_a14.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a15){var _a16=_a15.split(":");if(_a16.length===3){this._Scheme=_a16[0]+":";this._UserName=_a16[1];this._Password=_a16[2];}else{if(_a16.length===2){this._Scheme=_a16[0];this._UserName=_a16[1];}else{this._UserName=_a16[0];}}},_ParseAuthPartsDetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===2){this._UserName=_a18[0];this._Password=_a18[1];}else{this._UserName=_a18[0];}},ParseAuthorityWithScheme:function(_a19,_a1a){var _a1b=_a19.match(this._PortRexEx);if(_a1b){this._Port=_a1b[0].slice(1);_a19=_a19.slice(0,-_a1b[0].length);}var _a1c=_a19.split("@");if(_a1c.length>1){this._HostName=_a1c[1];if(!_a1a){this._ParseAuthPartsUndetectedScheme(_a1c[0]);}else{this._ParseAuthPartsDetectedScheme(_a1c[0]);}return;}var _a1d=_a1c[0].split(":");if(_a1d.length>1){this._Scheme=_a1d[0]+":";this._HostName=_a1d[1];return;}this._HostName=_a19;},_ParseTrailingPathPart:function(_a1e){var _a1f=_a1e.split(this._FragmentSeparator);if(_a1f.length>1){this._Fragment=this._FragmentSeparator+_a1f[1];}var _a20=_a1f[0].split("?");if(_a20.length>1){this._Query=_a20[1];return _a20[0];}return _a20[0];},_ParseUrl:function(sUrl){var _a22=sUrl.split(this._DashedSchemeSeparator);if(_a22.length>1){this._Scheme=_a22[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a22.splice(0,1);}var _a23=_a22[0].split(this._PathSeparator);_a23=ITHit.Utils.FilterBy(_a23,function(_a24){return _a24!=="";});this.ParseAuthorityWithScheme(_a23[0],this._IsDashedScheme);_a23.splice(0,1);if(_a23.length===0){return;}var _a25=[];for(var i=0;i<_a22.length-1;i++){_a25.push(_a23[i]);}var _a27=this._ParseTrailingPathPart(_a23[_a23.length-1]);_a25.push(_a27);this._Name=_a27;this._Path=this._PathSeparator+_a25.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a29){this._BaseUrl=_a29||"";this._OriginalUrl=sUrl;if(!!_a29){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a29)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2a){var _a2b=_a2a.slice(-1);if(_a2b===this._PathSeparator){return _a2a.slice(0,-1);}return _a2a;},_GetWithoutLeadingSeparator:function(_a2c){var _a2d=_a2c[0];if(_a2d===this._PathSeparator){return _a2c.substring(1);}return _a2c;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a2e){this._UploadProvider.Settings.ForceRewrite=_a2e;},AddHeader:function(_a2f,_a30){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a31=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a32){return _a32.name===_a2f;});if(_a31){_a31.value=_a30;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2f,value:_a30});}},SetRewrite:function(_a33){this.SetOverwrite(_a33);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a34){if(this.IsFolder()&&_a34===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a34;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a35){if(!(_a35 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a36=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a36,"oError");}this._UploadProvider.SetFailed(_a35);},_SetProgress:function(_a37){var _a38=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a37.OldProgress,_a37.NewProgress);ITHit.Events.DispatchEvent(this,_a38.Name,_a38);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3a,_a3b,_a3c,_a3d,_a3e){this._Source=_a3b||null;this._GroupManager=_a3d;var _a3f=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3a.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3c,this,_a3a,_a3f,_a3e);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a40){_a40=_a40||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a40();}else{that._UploadProvider.StartUploadAsync(_a40);}});}else{this._UploadProvider.StartUploadAsync(_a40);}},PauseAsync:function(_a42){_a42=_a42||function(){};this._UploadProvider.PauseUpload(_a42);},CancelAsync:function(_a43,_a44,_a45){_a45=_a45||function(){};_a43=_a43||5;_a44=_a44||500;this._UploadProvider.AbortUpload(_a43,_a44,_a45);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a46){var _a47=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a46);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a47);}else{if(ITHit.Events.ListenersLength(this,_a47.Name)!==0){ITHit.Events.DispatchEvent(this,_a47.Name,_a47);}else{_a46();}}},AddListener:function(_a48,_a49,_a4a){this._ValidateEventName(_a48);_a4a=_a4a||null;ITHit.Events.AddListener(this,_a48,_a49,_a4a);},RemoveListener:function(_a4b,_a4c,_a4d){this._ValidateEventName(_a4b);_a4d=_a4d||null;ITHit.Events.RemoveListener(this,_a4b,_a4c,_a4d);},_ValidateEventName:function(_a4e){switch(_a4e){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a4e+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4f){var _a50=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4f.OldState,_a4f.NewState);ITHit.Events.DispatchEvent(this,_a50.Name,_a50);},_OnErrorEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a51.Error);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a53,_a54,_a55){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a54||[];this.RemovedItems=_a55||[];this.Sender=_a53;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a56){if(this._End&&_a56>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a56;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a58,_a59,iEnd){this._SetBlob(_a58);this.SetStart(_a59);this.SetEnd(iEnd||_a58.size);},_SetBlob:function(_a5b){this._Blob=_a5b;this._Start=0;this._End=_a5b.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5c,oUrl){this._FolderGenerator=_a5c;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a5e,_a5f){var _a60=function(_a61){delete this._CancellationCallback;_a5e.call(_a5f,_a61);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a60,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a62=this._GetAncestorsPaths(this._Url);_a62.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a64,_a65){if(!this._CancellationCallback){_a64.call(_a65);return;}this._CancellationCallback(function(){_a64.call(_a65);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a66){this._PathMap=_a66;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a68=oUrl.GetRelativePath().split("/");if(_a68.length===0){return [];}if(_a68[_a68.length-1]===""){_a68=_a68.slice(0,-1);}var _a69=[];var path="";for(var i=0;i<_a68.length-1;i++){if(path!==""){path+="/";}path+=_a68[i];_a69.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a69;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6d,oUrl){this._Session=_a6d;this.Url=oUrl;},SetProgressDebounce:function(_a6f){this._ReportPeriod=_a6f;},BeginWrite:function(_a70){this._InitializeRequestContext();var _a71=null;if(_a70.IsFolder()){_a71=this._CreateMKCOLRequest();this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a71=this._CreatePutRequest(_a70);_a71.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a73.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a74){this._InitializeRequestContext();var _a75=this._CreatePutAppendRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a76,_a77){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a76,_a77);}},AddListener:function(_a78,_a79,_a7a){_a7a=_a7a||null;this._ValidateEventName(_a78);ITHit.Events.AddListener(this,_a78,_a79,_a7a);},RemoveListener:function(_a7b,_a7c,_a7d){_a7d=_a7d||null;this._ValidateEventName(_a7b);ITHit.Events.RemoveListener(this,_a7b,_a7c,_a7d);},_AddCustomHeaders:function(_a7e){if(!this.CustomHeaders){return;}var _a7f=[];var _a80=_a7e.Headers.GetAll();this.CustomHeaders.forEach(function(_a81){if(_a7f.indexOf(_a81.name)<0&&!_a80.hasOwnProperty(_a81.name)){_a7e.Headers.Add(_a81.name,_a81.value);_a7f.push(_a81.name);}});},_ValidateEventName:function(_a82){switch(_a82){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a82+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("MKCOL");this._SetDefaultHeaders(_a83);return _a83;},_OnMKCOLRewriteResponse:function(_a84){if(this._IsConflictResult(_a84)){_a84=this._TransformToSuccess(_a84);}this._OnResponse(_a84);},_OnMKCOLRewriteErrorEventHandler:function(_a85){if(_a85.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a86){if(_a86.IsAborted){_a86=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a86.Error);this._RequestContext.MarkAbort();}else{_a86=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a86);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a86);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a87){var _a88=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a88.Method("PUT");if(_a87.GetFile().type){_a88.Headers.Add("Content-Type",_a87.GetFile().type);}_a88.BodyBinary(_a87.GetFile());this._SetDefaultHeaders(_a88);return _a88;},_CreatePutAppendRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}if(_a89.IsPartFile()){_a8a.Headers.Add("Content-Range",this._GetRangeHeader(_a89));_a8a.BodyBinary(_a89.GetSlice());}else{_a8a.BodyBinary(_a89.GetFile());}this._SetDefaultHeaders(_a8a);return _a8a;},_GetRangeHeader:function(_a8b){return "bytes "+_a8b.GetStart()+"-"+(_a8b.GetEnd()-1)+"/"+_a8b.GetFullSize();},_TransformToSuccess:function(_a8c){return new ITHit.WebDAV.Client.AsyncResult(_a8c.Error,true,null);},_IsConflictResult:function(_a8d){return _a8d.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a8e){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a8e,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8f,Uploader:this}]);},_RaiseOnFinishEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a90}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a91){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a91.Progress.BytesTotal===_a91.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a91.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a93){this._RaiseOnErrorEvent(_a93.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a94){_a94.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a94.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a95){this._Session=_a95;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a97=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a97,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a98){if(_a98.IsAborted){_a97.MarkAbort();}else{_a97.MarkFinish();}this._CallAwaiters(oUrl,_a98);}.bind(this));return _a97;},_RecurrentGenerate:function(_a99,_a9a,_a9b,_a9c){var _a9d=null;var _a9e=null;var _a9f=function(_aa0,_aa1){if(!!_a9d){_a9d.AbortAsync(_aa0,_aa1);return;}if(!!_a9e){_a9e(_aa0,_aa1);}_aa0.call(_a9c);};var _aa2=_a9a.slice();var _aa3=[];while(_aa2.length>0){var oUrl=_aa2[0];if(!_a99.Has(oUrl)){break;}_aa3.push(oUrl);_aa2.splice(0,1);}if(_aa2.length===0){_a9b.call(_a9c,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3));return _a9f;}var _aa5=_aa2.shift();if(!this._IsInWork(_aa5)){_a9d=this._SendRequest(_aa5);}this._AddAwaiter(_aa5,function(_aa6){if(!_aa6.IsSuccess&&!this._IsConflictResult(_aa6)){_a9b.call(_a9c,_aa6);return;}_a99.Add(_aa5);_aa3.push(oUrl);_a9d=null;_a9e=this._RecurrentGenerate(_a99,_aa2,function(_aa7){if(_aa7.IsSuccess||this._IsConflictResult(_aa6)){_aa7.Result.concat(_aa3);_aa7=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3);}_a9e=null;_a9b.call(_a9c,_aa7);return;},this);}.bind(this));return _a9f;},GeneratePathAsync:function(_aa8,oUrl,_aaa,_aab){var _aac=this._GetAncestorsPaths(oUrl);if(_aac.length===0){return _aaa.call(_aab,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa8,_aac,_aaa,_aab);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aae=oUrl.GetRelativePath().split("/");if(_aae.length===0){return [];}if(_aae[_aae.length-1]===""){_aae=_aae.slice(0,-1);}var _aaf=[];var path="";for(var i=0;i<_aae.length-1;i++){if(path!==""){path+="/";}path+=_aae[i];_aaf.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaf;},_IsInWork:function(oUrl){var _ab3=this._WorkList.Get(oUrl.toString());return _ab3&&(_ab3.length>0);},_AddAwaiter:function(oUrl,_ab5){var _ab6=this._WorkList.Get(oUrl.toString());var _ab7=[];if(_ab6){_ab7=_ab7.concat(_ab6);}_ab7.push(_ab5);this._WorkList.Set(oUrl.toString(),_ab7);},_CallAwaiters:function(oUrl,_ab9){var _aba=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_aba.forEach(function(_abb){_abb(_ab9);});},_IsConflictResult:function(_abc){if(_abc.IsSuccess){return false;}if(_abc.Error&&_abc.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_abe,_abf){var _ac0=this.CreateRequest(this.__className+".ReportAsync()");var _ac1=ITHit.WebDAV.Client.Encoder.Encode(sUrl);var _ac2=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ac1);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac0,_ac1,_ac2,null,null,function(_ac3){_ac0.MarkFinish();_abe.call(_abf,_ac3);});return _ac0;},CancelUploadAsync:function(sUrl,_ac5){var _ac6=this.CreateRequest(this.__className+".CancelUpload()");var _ac7=ITHit.WebDAV.Client.Encoder.Encode(sUrl);var _ac8=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ac7);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac6,_ac7,[],_ac8,function(_ac9){_ac6.MarkFinish();var _aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac9.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_aca=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac9.IsSuccess){_aca=new ITHit.WebDAV.Client.AsyncResult(_ac9.IsSuccess,_ac9.IsSuccess,_ac9.Error);}}_ac5(_aca);});return _ac6;},CheckExistsAsync:function(sUrl,_acc,_acd){_acc=_acc||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_ace){var _acf=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ace.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acf=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_ace.IsSuccess){_acf=new ITHit.WebDAV.Client.AsyncResult(_ace.IsSuccess,_ace.IsSuccess,_ace.Error);}}_acc.call(_acd,_acf);});},DeleteAsync:function(_ad0,_ad1,_ad2){_ad1=_ad1||null;var _ad3=ITHit.WebDAV.Client.Encoder.Encode(_ad0);var _ad4=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ad3);var _ad5=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad5,_ad3,_ad1,_ad4,function(_ad6){if(!_ad6.IsSuccess&&_ad6.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad6=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad5.MarkFinish();_ad2(_ad6);});return _ad5;},CreateFolderRangeAsync:function(_ad7,_ad8,_ad9,_ada){_ad8=_ad8||null;_ad9=_ad9||ITHit.Utils.NoOp;var _adb=_ad7.length;var _adc=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_adb);this._PerformCreateFolderRangeMethodAsync(_adc,_ad7,_ad8,function(_add){_adc.MarkFinish();_ad9.call(_ada,_add);});return _adc;},_PerformCreateFolderRangeMethodAsync:function(_ade,_adf,_ae0,_ae1,_ae2){_ae1=_ae1||ITHit.Utils.NoOp;_adf=_adf.slice();var _ae3=_adf.unshift();var _ae4=ITHit.WebDAV.Client.Encoder.Encode(_ae3.GetHref());var _ae5=ITHit.WebDAV.Client.Encoder.Encode(_ae3.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_ade,_ae4,_ae0,_ae5,function(_ae6){if(_ae6.IsSuccess||_ae6.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae6=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae3]);}if(_adf.length>0&&_ae6.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_ade,_adf,_ae0,function(_ae7){if(_ae7.IsSuccess){_ae7.Result.push(_ae3);}_ae1.call(_ae2,_ae7);return;},this);}else{_ae1.call(_ae2,_ae6);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_aea,_aeb,_aec,_aed){this._RoundsCount=_aea;this._Handler=_aec;this._EndHandler=_aed;this._IsActive=!!_aea;this._RepeatTime=_aeb;},Stop:function(_aee){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aee);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aef){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aef);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_af0){this._Action=_af0;},RunAsync:function(_af1,_af2,_af3){var _af4=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_af1,_af2,this._Action,_af3);_af4._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af6,_af7,_af8){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af7;this._super(_af6,_af8);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af9){return {Action:"skip",Error:_af9};},GetRetryResult:function(_afa){return {Action:"retry",Error:_afa};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_afb,_afc){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_afc;this.Sender=_afb;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afd){},OnLeave:function(_afe){},StartUploadAsync:function(_aff,_b00){_b00();},PauseUpload:function(_b01,_b02){_b02();},AbortUpload:function(_b03,_b04,_b05,_b06){_b06();},Skip:function(_b07){},OnUploadLocationPrepared:function(_b08,_b09){},OnUploadProgressPrepared:function(_b0a,_b0b){},OnContentCompleted:function(_b0c,_b0d){},OnRetryResult:function(_b0e,_b0f){},_CompletePauseAsync:function(_b10,_b11,_b12){if(_b10.IsRetrySchedule){_b10.IsRetrySchedule=false;}_b10.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b11.call(_b12);},_StartPauseAsync:function(_b13,_b14){_b13._ProgressTracker.StopTracking();_b13.CancelAllRequests(function(){if(_b13.IsContentSend){_b13.SyncProgressWithServerAsync(function(_b15){this._CompletePauseAsync(_b13,_b14);},this);return;}this._CompletePauseAsync(_b13,_b14);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b16){_b16.GetProgressTracker().StopTracking();_b16.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b17,_b18){_b17.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b17,_b18);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b19,_b1a){_b19.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b19,_b1a);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b1b,_b1c){_b1b.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b1b,_b1c);},Skip:function(_b1d){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1e,_b1f){this._StartPauseAsync(_b1e,_b1f);},AbortUpload:function(_b20,_b21,_b22,_b23){_b20.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b20,_b21,_b22,_b23);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b24){_b24.GetProgressTracker().StopTracking();_b24.GetProgressTracker().Reset();},StartUploadAsync:function(_b25,_b26){_b25.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b25,_b26);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b27){_b27.PrepareUploadLocation();},PauseUpload:function(_b28,_b29){this._StartPauseAsync(_b28,_b29);},AbortUpload:function(_b2a,_b2b,_b2c,_b2d){_b2a.CancelAllRequests(function(){_b2a.GetProgressTracker().StopTracking();_b2a.CancelAndDeleteAsync(_b2b,_b2c,function(_b2e){if(_b2e.IsSuccess){_b2a.GetProgressTracker().Reset();_b2a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b2a.AddError(_b2e.Error);_b2a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2d();},this);},this);},OnContentCompleted:function(_b2f,_b30){var _b31=_b30.Result;if(_b31.IsAborted){return;}if(_b31.IsSuccess){_b2f.GetProgressTracker().SetCompleted();_b2f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2f,_b31);},_HandleError:function(_b32,_b33){_b32.AddError(_b33.Error);_b32.BeginRetry(_b33.Error);},OnRetryResult:function(_b34,_b35){if(_b35.Action==="skip"){_b34.AddError(_b35.Error);_b34.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b34.IsContentSend){_b34.SyncProgressWithServerAsync(function(_b36){if(_b36.Error){this._HandleError(_b35.Error);}else{this.OnEnter(_b34);}},this);return;}this.OnEnter(_b34);},OnUploadLocationPrepared:function(_b37,_b38){if(_b38.IsAborted){return;}if(!_b38.IsSuccess){this._HandleError(_b37,_b38);return;}_b37._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b39){if(_b39.IsContentSend){_b39.PrepareProgress();return;}this._super(_b39);},OnUploadProgressPrepared:function(_b3a,_b3b){if(_b3b.IsAborted){return;}if(!_b3b.IsSuccess){this._HandleError(_b3a,_b3b);return;}if(_b3a.GetProgressTracker().IsCompleted()){_b3a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b3a._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b3c){_b3c.GetProgressTracker().StopTracking();_b3c.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3d,_b3e){_b3d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3d,_b3e);},AbortUpload:function(_b3f,_b40,_b41,_b42){if(_b3f.IsContentSend){_b3f.CancelAndDeleteAsync(_b40,_b41,function(_b43){if(_b43.IsSuccess){_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3f.AddError(_b43.Error);_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b42();},this);}else{_b3f.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b42();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b44){_b44.GetProgressTracker().StopTracking();_b44.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b45,_b46){_b45.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b45,_b46);},AbortUpload:function(_b47,_b48,_b49,_b4a){if(_b47.IsContentSend){_b47.CancelAndDeleteAsync(_b48,_b49,function(_b4b){if(_b4b.IsSuccess){_b47.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b47.AddError(_b4b.Error);_b47.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b4a();},this);}else{_b47.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b4a();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4d){switch(_b4d){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4e,oUrl){this._Session=_b4e;this._Url=oUrl;},GetProgressAsync:function(_b50,_b51){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b52){if(_b52.IsSuccess&&_b52.Result[0]){var _b53=_b52.Result[0];_b50.call(_b51,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b53));return;}_b50.call(_b51,_b52);},this);},CancelUploadAsync:function(_b54,_b55){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b56){_b54.call(_b55,_b56);});},DeleteAsync:function(_b57,_b58,_b59,_b5a){var that=this;var _b5c=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5d){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5e){if(_b5e.IsSuccess){_b5d.Stop(_b5e);}else{_b5d.EndRound(_b5e);}});});_b5c.RunAsync(_b57,_b58,function(_b5f){_b59.call(_b5a,_b5f);});},CancelAndDeleteAsync:function(_b60,_b61,_b62,_b63){this.CancelUploadAsync(function(_b64){if(!_b64.IsSuccess){return _b62.call(_b63,_b64);}this.DeleteAsync(_b60,_b61,_b62,_b63);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b65,_b66,_b67,oUrl,_b69){this.FSEntry=_b67;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b69.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b65;this._UploadItem=_b66;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b69.State);this.Errors=[];this.UploadLocation=_b65.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b65,this.Url);this.ContentWriter=_b65.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b6a){this._BeginStateChange();this._State.StartUploadAsync(this,_b6a);},PauseUpload:function(_b6b){this._BeginStateChange();this._State.PauseUpload(this,_b6b);},AbortUpload:function(_b6c,_b6d,_b6e){this._BeginStateChange();_b6e=_b6e||function(){};this._State.AbortUpload(this,_b6c,_b6d,_b6e);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6f,_b70,_b71){this._ValidateEventName(_b6f);_b71=_b71||null;ITHit.Events.AddListener(this,_b6f,_b70,_b71);},RemoveListener:function(_b72,_b73,_b74){this._ValidateEventName(_b72);_b74=_b74||null;ITHit.Events.RemoveListener(this,_b72,_b73,_b74);},_ValidateEventName:function(_b75){switch(_b75){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b75+"`");}},CheckRetryAsync:function(_b76,_b77,_b78){var _b79=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b76,function(_b7a){if(!this.IsRetrySchedule){return;}_b77.call(_b78,_b7a);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b79.Name)===0)){_b77.call(_b78,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b76));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b79);}ITHit.Events.DispatchEvent(this._UploadItem,_b79.Name,_b79);},Errors:null,LastError:null,AddError:function(_b7b){this.AddErrorSilent(_b7b);this._RiseOnErrorEvent(_b7b);},AddErrorSilent:function(_b7c){this.LastError=_b7c;this.Errors.push(_b7c);},SetFailed:function(_b7d){var _b7e=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7d);this.SetState(_b7e);},_RiseOnErrorEvent:function(_b7f){var _b80=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7f);ITHit.Events.DispatchEvent(this,_b80.Name,_b80);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b81){if(_b81.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b81);},_StartLoadHandler:function(_b82){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b83){this.GetProgressTracker().UpdateBytes(_b83.Progress.BytesLoaded,_b83.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b84=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b84.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b84.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b84);}},SyncProgressWithServerAsync:function(_b85,_b86){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b87){if(!_b87.IsSuccess){_b85.call(_b86,_b87);return;}if(_b87.Result===true){this._ProgressTracker.SetCompleted();_b85.call(_b86,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b85.call(_b86,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b88){if(_b88.IsSuccess){this._ProgressTracker.SyncProgress(_b88.Result);_b85.call(_b86,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b88.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b85.call(_b86,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b85.call(_b86,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b88.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b89){if(_b89.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b89);},CancelAllRequests:function(_b8a,_b8b){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b8a,_b8b);},this);},this);},_CancelLocationCreateAsync:function(_b8c,_b8d){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b8c.call(_b8d);},this);}else{_b8c.call(_b8d);}},_CancelContentSendingAsync:function(_b8e,_b8f){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8e.call(_b8f);},this);}else{_b8e.call(_b8f);}},_CancelProgressAsync:function(_b90,_b91){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b90.call(_b91);},this);}else{_b90.call(_b91);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b92){this.IsProgressSyncInProgress=false;if(_b92.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b92);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b93){var _b94=this._State;this._State.OnLeave(this);this._State=_b93;this._State.OnEnter(this);var _b95=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b94.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b95.Name,_b95);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b96){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b96,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b97){this._State.OnRetryResult(this,_b97);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b98,_b99,_b9a,_b9b){this.ServerItem.CancelUploadAsync(function(_b9c){if(!this.Settings.DeleteOnCancel){_b9a.call(_b9b,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b98,_b99,function(_b9d){if(!_b9d.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b9a.call(_b9b,_b9c);}this.IsContentSend=false;_b9a.call(_b9b,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9e){var _b9f=this._Progress;this._Progress=_b9e;var _ba0=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9f,_b9e);ITHit.Events.DispatchEvent(this,_ba0.Name,_ba0);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_ba1){if(this._IsHandled){return;}this._Skip(_ba1);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_ba2){if(this._IsHandled){return;}this._Overwrite(_ba2);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba3){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba3});},constructor:function(_ba4,_ba5,_ba6){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba5||[];this._super(_ba4,_ba6);},_Overwrite:function(_ba7){var _ba8=this._CreateResult([],_ba7);this._Handle(_ba8);},_Skip:function(_ba9){var _baa=this._CreateResult(_ba9,[]);this._Handle(_baa);},_CreateResult:function(_bab,_bac){return {Skip:_bab||[],Overwrite:_bac||[],Original:this.Items};},_Handle:function(_bad){_bad=_bad||this._CreateResult();this._super(_bad);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bae,_baf,_bb0,_bb1){var _bb2=[];var _bb3=0;if(_bae.length===0){setTimeout(_bb0.apply(_bb1,_bae));}for(var i=0;i<_bae.length;i++){_baf.apply(_bb1,[_bae[i],i,_bae,ITHit.Utils.MakeScopeClosure(this,function(i,_bb6){_bb2[i]=_bb6;_bb3++;if(_bb3===_bae.length){setTimeout(_bb0.call(_bb1,_bb2));}},i)]);}},DistinctBy:function(_bb7,_bb8,_bb9){var map=Object.create(null);_bb8=_bb8||Object.prototype.toString;for(var i=0;i<_bb7.length;i++){var _bbc=_bb8.call(_bb9,_bb7[i]).toString();if(!map[_bbc]){map[_bbc]=_bb7[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbe,_bbf){if(!_bbf){return [_bbe.shift()];}var _bc0=(_bbe.length>_bbf)?_bbf:_bbe.length;var _bc1=[];for(var i=0;i<_bc0;i++){_bc1.push(_bbe.shift());}return _bc1;},Remove:function(_bc3,_bc4){var _bc5=_bc3.indexOf(_bc4);if(_bc5>-1){_bc3.splice(_bc5,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc6){this._ParallelUploads=_bc6||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc7){_bc7.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc8){this._AddToQueue(_bc8);this._StartUploads();},Remove:function(_bc9){_bc9.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc9);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc9);this._StartUploads();},Reserve:function(_bca){_bca=_bca||1;this._Reserve+=_bca;},Release:function(_bcb){_bcb=_bcb||1;this._Reserve-=_bcb;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bcc=this.GetBusy();if(_bcc>=this._ParallelUploads){return 0;}else{if(_bcc===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bcc)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bcd){if(_bcd.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bcd.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bce=this.GetFree();if(_bce<=0){return;}var _bcf=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bce);if(_bcf.length<1){return;}this.Reserve(_bcf.length);_bcf.forEach(this._StartSingle,this);},_StartSingle:function(_bd0){this._Active.push(_bd0);_bd0.StartAsync();this.Release();},_AddToQueue:function(_bd1){this._QueueArray.push(_bd1);_bd1.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bd2){this.Uploader=_bd2;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd3){var _bd4=this.GetByUrl(_bd3.GetUrl());var _bd5=_bd4.GetState();return !(_bd5===ITHit.WebDAV.Client.Upload.State.Uploading||_bd5===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd7,_bd8){var _bd9=[];for(var i=0;i<_bd7.length;i++){var _bdb=_bd7[i];var _bdc=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bdb,_bd8,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bdc.GetUrl())){if(this.ShouldReplaceDuplicate(_bdc)){this.RemoveByUrl(_bdc.GetUrl());}else{continue;}}_bd9.push(_bdc);}this._DispatchOnUploadItemsCreatedAsync(_bd9,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bdd){var sUrl=_bdd.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bdd);var _bdf=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bdd]);ITHit.Events.DispatchEvent(this,_bdf.Name,[_bdf]);this._AutoUploader.Add(_bdd);},AddRange:function(_be0){for(var i=0;i<_be0.length;i++){var _be2=_be0[i];var sUrl=_be2.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_be2);}this._GroupManager.CreateGroup(_be0);this._OnQueueChanged(_be0,null);var _be4=_be0.filter(function(_be5){return _be5.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be4);},Restart:function(_be6){for(var i=0;i<_be6.length;i++){if(!this.HasUrl(_be6[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be6);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be9){return _be9.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _bec=this.GetByUrl(sUrl);if(!_bec){return;}var _bed=_bec.GetState();if(_bed===ITHit.WebDAV.Client.Upload.State.Uploading||_bed===ITHit.WebDAV.Client.Upload.State.Paused){_bec.Abort();}var _bee=ITHit.Utils.IndexOf(this._UnderlyingArray,_bec);this._UnderlyingArray.splice(_bee,1);this._OnQueueChanged(null,[_bec]);this._AutoUploader.Remove(_bec);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bef,_bf0){var _bf1=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bef,_bf0);ITHit.Events.DispatchEvent(this,_bf1.Name,[_bf1]);},_DispatchOnUploadItemsCreatedAsync:function(_bf2,_bf3){var _bf4=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bf2.slice(),_bf3);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf4.Name)===0)){_bf4.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf4);}ITHit.Events.DispatchEvent(this,_bf4.Name,_bf4);},AddListener:function(_bf5,_bf6,_bf7){_bf7=_bf7||null;switch(_bf5){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf5,_bf6,_bf7);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf5+"`");}},RemoveListener:function(_bf8,_bf9,_bfa){ITHit.Events.RemoveListener(this,_bf8,_bf9,_bfa);},_OnUploadItemsCreatedAsyncDispatched:function(_bfb){if(_bfb.Upload){this.AddRange(_bfb.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bfb);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bfc){var _bfd=this._FilterSkippedItems(_bfc);var _bfe=this._CreateUrlUploadItemMap(_bfc.Overwrite);_bfd.forEach(function(_bff){if(_bfe.Has(_bff.GetUrl())){_bff.SetOverwrite(true);}});this.AddRange(_bfd);},_FilterSkippedItems:function(_c00){var _c01=this._CreateUrlUploadItemMap(_c00.Skip);return _c00.Original.filter(function(_c02){return !_c01.Has(_c02.GetUrl());});},_CreateUrlUploadItemMap:function(_c03){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c03.forEach(function(_c05){oMap.Set(_c05.GetUrl(),_c05);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c06=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c07){this._Uploader=_c07;this._UnderlyingSet={};},AddById:function(_c08){var _c09=this.GetById(_c08);if(_c09){return _c09;}var _c0a=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c08);this._UnderlyingSet[_c08]=_c0a;this._RaiseOnCollectionChanged([_c0a],[]);return _c0a;},GetById:function(_c0b){return this._UnderlyingSet[_c0b];},RemoveById:function(_c0c){var _c0d=this.GetById(_c0c);if(_c0d){delete this._UnderlyingSet[_c0c];this._RaiseOnCollectionChanged([],[_c0d]);}},AddListener:function(_c0e,_c0f,_c10){_c10=_c10||null;this._CheckEventNameOtThrow(_c0e);ITHit.Events.AddListener(this,_c0e,_c0f,_c10);},RemoveListener:function(_c11,_c12,_c13){_c13=_c13||null;this._CheckEventNameOtThrow(_c11);ITHit.Events.RemoveListener(this,_c11,_c12,_c13);},_CheckEventNameOtThrow:function(_c14){if(_c14!==_c06.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c14);}},_RaiseOnCollectionChanged:function(_c15,_c16){ITHit.Events.DispatchEvent(this,_c06.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c15||[],RemovedItems:_c16||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c17=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c18){this._UnderlyingArray=[];this._Uploader=_c18;},AddById:function(_c19){var _c1a=new ITHit.WebDAV.Client.Upload.Controls.Input(_c19);this._UnderlyingArray[_c19]=_c1a;this._RaiseOnCollectionChanged([_c1a],[]);return _c1a;},GetById:function(_c1b){return this._UnderlyingArray[_c1b];},RemoveById:function(_c1c){var _c1d=this.GetById(_c1c);if(_c1d){delete this._UnderlyingSet[_c1c];this._RaiseOnCollectionChanged([],[_c1d]);}},AddListener:function(_c1e,_c1f,_c20){_c20=_c20||null;this._CheckEventNameOtThrow(_c1e);ITHit.Events.AddListener(this,_c1e,_c1f,_c20);},RemoveListener:function(_c21,_c22,_c23){_c23=_c23||null;this._CheckEventNameOtThrow(_c21);ITHit.Events.RemoveListener(this,_c21,_c22,_c23);},_CheckEventNameOtThrow:function(_c24){if(_c24!==_c17.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c24);}},_RaiseOnCollectionChanged:function(_c25,_c26){ITHit.Events.DispatchEvent(this,_c17.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c25||[],RemovedItems:_c26||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c28){_c28.AddedItems.forEach(function(_c29){_c29.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c28.RemovedItems.forEach(function(_c2a){_c2a.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c2b){this.Queue.AddGroup(this._UploadUrl,_c2b.AsyncResult.Result,_c2b.Source);}});})();ITHit.Temp={};
|
|
87
|
+
(function(){ITHit.DefineClass("ITHit.Environment",null,{__static:{OS:ITHit.DetectOS.OS}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.LoggerException=function(_100,_101){ITHit.Exceptions.LoggerException.baseConstructor.call(this,_100,_101);};ITHit.Extend(ITHit.oNS.LoggerException,ITHit.Exception);ITHit.oNS.LoggerException.prototype.Name="LoggerException";ITHit.DefineClass("ITHit.LogLevel",null,{},{All:32,Debug:16,Info:8,Warn:4,Error:2,Fatal:1,Off:0});(function(){var _102={};var _103={};var _104={};for(var _105 in ITHit.LogLevel){_102[ITHit.LogLevel[_105]]=[];_104[ITHit.LogLevel[_105]]=[];}var _106=function(_107,_108,iTo,_10a){for(var _10b in ITHit.LogLevel){if(ITHit.LogLevel[_10b]>iTo){continue;}if(!ITHit.LogLevel[_10b]||(_108>=ITHit.LogLevel[_10b])){continue;}if(_107){_104[ITHit.LogLevel[_10b]].push(_10a);}else{for(var i=0;i<_104[ITHit.LogLevel[_10b]].length;i++){if(_104[ITHit.LogLevel[_10b]][i]==_10a){_104[ITHit.LogLevel[_10b]].splice(i,1);}}}}};_106.add=function(iTo,_10e){_106.increase(ITHit.LogLevel.Off,iTo,_10e);};_106.del=function(iTo,_110){_106.decrease(ITHit.LogLevel.Off,iTo,_110);};_106.increase=function(_111,iTo,_113){_106(true,_111,iTo,_113);};_106.decrease=function(_114,iTo,_116){_106(false,_114,iTo,_116);};ITHit.DefineClass("ITHit.Logger",null,{},{Level:ITHit.Config.LogLevel||ITHit.LogLevel.Debug,AddListener:function(_117,_118){if(_118==ITHit.LogLevel.Off){this.RemoveListener();}var _119=0;var _11a=0;outer:for(var _11b in _102){for(var i=0;i<_102[_11b].length;i++){if(_102[_11b][i]==_117){_119=_11b;_11a=i;break outer;}}}if(!_119){_102[_118].push(_117);_106.add(_118,_117);}else{if(_118!=_119){_102[_119].splice(_11a,1);_102[_118].push(_117);if(_118>_119){_106.increase(_119,_118,_117);}else{_106.decrease(_118,_119,_117);}}}},RemoveListener:function(_11d){outer:for(var _11e in _102){for(var i=0;i<_102[_11e].length;i++){if(_102[_11e][i]==_11d){_102[_11e].splice(i,1);_106.del(_11e,_11d);break outer;}}}return true;},SetLogLevel:function(_120,_121){return this.AddListener(_120,_121,true);},GetLogLevel:function(_122){for(var _123 in _102){for(var i=0;i<_102[_123].length;i++){if(_102[_123][i]==_122){return _123;}}}return false;},GetListenersForLogLevel:function(_125){return _104[_125];},GetCount:function(_126){return _104[_126].length;},WriteResponse:function(_127){if(Logger.GetCount(ITHit.LogLevel.Info)){var sStr="";if(_127 instanceof HttpWebResponse){sStr+="\n"+_127.StatusCode+" "+_127.StatusDescription+"\n";}sStr+=_127.ResponseUri+"\n";for(var _129 in _127.Headers){sStr+=_129+": "+_127.Headers[_129]+"\n";}sStr+=_127.GetResponse();this.WriteMessage(sStr);}},WriteMessage:function(_12a,_12b){_12b=("undefined"==typeof _12b)?ITHit.LogLevel.Info:parseInt(_12b);if(ITHit.Logger.GetCount(_12b)){var _12c=this.GetListenersForLogLevel(_12b);var _12a=String(_12a).replace(/([^\n])$/,"$1\n");for(var i=0;i<_12c.length;i++){try{_12c[i](_12a,ITHit.LogLevel.Info);}catch(e){if(!_12c[i] instanceof Function){throw new ITHit.Exceptions.LoggerException("Log listener expected function, passed: \""+_12c[i]+"\"",e);}else{throw new ITHit.Exceptions.LoggerException("Message could'not be logged.",e);}}}}},StartLogging:function(){},FinishLogging:function(){},StartRequest:function(){},FinishRequest:function(){}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.PhraseException=function(_12e,_12f){ITHit.Exceptions.PhraseException.baseConstructor.call(this,_12e,_12f);};ITHit.Extend(ITHit.oNS.PhraseException,ITHit.Exception);ITHit.oNS.PhraseException.prototype.Name="PhraseException";ITHit.Phrases=(function(){var _130={};var _131=function(_132){this._arguments=_132;};_131.prototype.Replace=function(_133){var _134=_133.substr(1,_133.length-2);return ("undefined"!=typeof this._arguments[_134])?this._arguments[_134]:_133;};var _135=function(_136){this._phrase=_136;};_135.prototype.toString=function(){return this._phrase;};_135.prototype.Paste=function(){var _137=this._phrase;if(/\{\d+?\}/.test(_137)){var _138=new _131(arguments);_137=_137.replace(/\{(\d+?)\}/g,function(args){return _138.Replace(args);});}return _137;};var _13a=function(){};_13a.prototype.LoadJSON=function(_13b,_13c){var _13d=ITHit.Utils;if(_13c&&!_13d.IsString(_13c)){throw new ITHit.Exceptions.PhraseException("Namespace expected to be a string.");}var _13e=this;if(_13c){_13e=ITHit.Declare(_13c);}try{var _13f=_13b;if(_13d.IsString(_13f)){_13f=eval("("+_13b+")");}this._AddPhrases(_13f,_13e);}catch(e){console.dir(e);throw new ITHit.Exceptions.PhraseException("Wrong text structure.",e);}};_13a.prototype.LoadLocalizedJSON=function(_140,_141,_142){var _143=ITHit.Utils,_144=_143.IsUndefined,_145=_143.IsObject;if(!_140||!_143.IsObjectStrict(_140)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object.");}if(_141&&!_143.IsObjectStrict(_141)){throw new ITHit.Exceptions.PhraseException("Default phrases expected to be an JSON object");}var _146;if(_141){_146={};this._MergePhrases(_146,_141);this._MergePhrases(_146,_140);}else{_146=_140;}this.LoadJSON(_146,_142);};_13a.prototype._MergePhrases=function(dest,_148){var _149=ITHit.Utils,_14a=_149.IsUndefined,_14b=_149.IsObject;for(var prop in _148){if(!_148.hasOwnProperty(prop)){continue;}if(_14a(dest[prop])){dest[prop]=_148[prop];}else{if(_14b(dest[prop])){this._MergePhrases(dest[prop],_148[prop]);}}}};_13a.prototype._AddPhrases=function(_14d,_14e){_14e=_14e||this;for(var _14f in _14d){if(("object"!=typeof _14d[_14f])||!(_14d[_14f] instanceof Object)){switch(_14f){case "_AddPhrases":case "LoadJSON":case "LoadLocalizedJSON":case "_Merge":case "prototype":case "toString":throw new ITHit.Exceptions.PhraseException("\""+_14f+"\" is reserved word.");break;}_14e[_14f]=new _135(_14d[_14f]);}else{this._AddPhrases(_14d[_14f],_14e[_14f]?_14e[_14f]:(_14e[_14f]={}));}}};return new _13a();})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XPathException=function(_150,_151){ITHit.Exceptions.XPathException.baseConstructor.call(this,_150,_151);};ITHit.Extend(ITHit.oNS.XPathException,ITHit.Exception);ITHit.oNS.XPathException.prototype.Name="XPathException";ITHit.XPath={_component:null,_version:null};ITHit.XPath.evaluate=function(_152,_153,_154,_155,_156){if(("string"!=typeof _152)&&!(_152 instanceof String)){throw new ITHit.Exceptions.XPathException("Expression was expected to be a string in ITHit.XPath.eveluate.");}if(!(_153 instanceof ITHit.XMLDoc)){throw new ITHit.Exceptions.XPathException("Element was expected to be an ITHit.XMLDoc object in ITHit.XPath.evaluate.");}if(_154&&!(_154 instanceof ITHit.XPath.resolver)){throw new ITHit.Exceptions.XPathException("Namespace resolver was expected to be an ITHit.XPath.resolver object in ITHit.XPath.evaluate.");}if(_155&&!(_155 instanceof ITHit.XPath.result)){throw new ITHit.Exceptions.XPathException("Result expected to be an ITHit.XPath.result object in ITHit.XPath.evaluate.");}_154=_154||null;_155=_155||null;if(document.implementation.hasFeature("XPath","3.0")&&document.evaluate){var _157=_153._get();var _158=_157.ownerDocument||_157;if(_155){_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,_155._res);return;}var oRes=new ITHit.XPath.result(_158.evaluate(_152,_157,_154,ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE,null));if(!_156){return oRes;}else{return oRes.iterateNext();}}else{if(undefined!==window.ActiveXObject){var _157=_153._get();var _15a=false;try{_157.getProperty("SelectionNamespaces");_15a=true;}catch(e){}var _15b=false;if(3==ITHit.XMLDoc._version){var sXml=_157.xml.replace(/^\s+|\s+$/g,"");var _15d="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/";var _15e="cutted";if(-1!=sXml.indexOf(_15d)||true){var _15f=sXml.replace(_15d,_15e);var _160=new ITHit.XMLDoc();_160.load(_15f);if(_154){var oNs=_154.getAll();for(var _162 in oNs){if(_15d==oNs[_162]){oNs.add(_162,_15e);break;}}}_157=_160._get();_15a=true;_15b=true;}}if(_15a&&_154&&_154.length()){var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));}if(_15b){_157=_157.documentElement;}try{if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}catch(e){if(!_15a&&(-2147467259==e.number)&&_154&&_154.length()){var sEl=new ITHit.XMLDoc(_157).toString();var oEl=new ITHit.XMLDoc();oEl.load(sEl);_157=oEl._get();var _163=_154.getAll();var aNs=[];for(var _162 in _163){aNs.push("xmlns:"+_162+"='"+_163[_162]+"'");}_157.setProperty("SelectionNamespaces",aNs.join(" "));_157=_157.documentElement;if(!_156){if(!_155){return new ITHit.XPath.result(_157.selectNodes(_152));}else{_155._res=_157.selectNodes(_152);return;}}else{var mOut=_157.selectSingleNode(_152);if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}}}else{throw new ITHit.Exceptions.XPathException("Evaluation failed for searching \""+_152+"\".",e);}}}}throw new ITHit.Exceptions.XPathException("XPath support is not implemented for your browser.");};ITHit.XPath.selectSingleNode=function(_168,_169,_16a){return ITHit.XPath.evaluate(_168,_169,_16a,false,true);};ITHit.XPath.resolver=function(){this._ns={};this._length=0;};ITHit.XPath.resolver.prototype.add=function(_16b,sNs){this._ns[_16b]=sNs;this._length++;};ITHit.XPath.resolver.prototype.remove=function(_16d){delete this._ns[_16d];this._length--;};ITHit.XPath.resolver.prototype.get=function(_16e){return this._ns[_16e]||null;};ITHit.XPath.resolver.prototype.lookupNamespaceURI=ITHit.XPath.resolver.prototype.get;ITHit.XPath.resolver.prototype.getAll=function(){var oOut={};for(var _170 in this._ns){oOut[_170]=this._ns[_170];}return oOut;};ITHit.XPath.resolver.prototype.length=function(){return this._length;};ITHit.XPath.result=function(_171){this._res=_171;this._i=0;this.length=_171.length?_171.length:_171.snapshotLength;};ITHit.XPath.result.ANY_TYPE=0;ITHit.XPath.result.NUMBER_TYPE=1;ITHit.XPath.result.STRING_TYPE=2;ITHit.XPath.result.BOOLEAN_TYPE=3;ITHit.XPath.result.UNORDERED_NODE_ITERATOR_TYPE=4;ITHit.XPath.result.ORDERED_NODE_ITERATOR_TYPE=5;ITHit.XPath.result.UNORDERED_NODE_SNAPSHOT_TYPE=6;ITHit.XPath.result.ORDERED_NODE_SNAPSHOT_TYPE=7;ITHit.XPath.result.ANY_UNORDERED_NODE_TYPE=8;ITHit.XPath.result.FIRST_ORDERED_NODE_TYPE=9;ITHit.XPath.result.prototype.iterateNext=function(_172){var mOut;if(!_172){if(!this._res.snapshotItem){try{mOut=this._res[this._i++];}catch(e){return null;}}else{mOut=this._res.snapshotItem(this._i++);}}else{mOut=this._res[_172];}if(mOut){return new ITHit.XMLDoc(mOut);}else{return mOut;}};ITHit.XPath.result.prototype.snapshotItem=ITHit.XPath.result.prototype.iterateNext;ITHit.XPath.result.prototype.type=function(){return this._res.resultType;};ITHit.XPath.result.prototype._get=function(){return this._res;};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.XMLDocException=function(_174,_175){ITHit.Exceptions.XMLDocException.baseConstructor.call(this,_174,_175);};ITHit.Extend(ITHit.oNS.XMLDocException,ITHit.Exception);ITHit.oNS.XMLDocException.prototype.Name="XMLDocException";ITHit.XMLDoc=(function(){var _176;var _177=1;var _178=2;var _179=3;var _17a=4;var _17b=5;var _17c=6;var _17d=7;var _17e=8;var _17f=9;var _180=10;var _181=11;var _182=12;var _183=function(_184){this._xml=null;this._encoding=null;if(null!==_184){if(!_184||("object"!=typeof _184)){if(undefined!==window.ActiveXObject){if(_176){this._xml=new window.ActiveXObject(_176);}else{var _185=["Msxml2.DOMDocument.6.0","Msxml2.DOMDocument.4.0","Msxml2.DOMDocument.3.0"];var _186=[6,4,3];for(var i=0;i<_185.length;i++){try{this._xml=new window.ActiveXObject(_185[i]);_183._version=_186[i];_176=_185[i];break;}catch(e){if(3==_186[i]){throw new ITHit.Exception("XML component is not supported.");}}}}}else{if(document.implementation&&document.implementation.createDocument){this._xml=document.implementation.createDocument("","",null);}}if(undefined===this._xml){throw new ITHit.Exceptions.XMLDocException("XML support for current browser is not implemented.");}this._xml.async=false;}else{this._xml=_184;}}else{this._xml=null;return null;}};_183._version=0;_183.prototype.contentEncoding=function(_188){if(undefined!==_188){this._encoding=_188;}return this._encoding;};_183.prototype.load=function(_189){if(!ITHit.Utils.IsString(_189)){throw new ITHit.Exceptions.XMLDocException("String was expected for xml parsing.");}if(!_189){return new _183();}var oDoc;if(undefined!==window.ActiveXObject){try{if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}if(_183._version){_189=_189.replace(/<\?.*\?>/,"");this._xml.loadXML(_189);}else{var _18b=new _183();if(3==_183._version){_189=_189.replace(/(?:urn\:uuid\:c2f41010\-65b3\-11d1\-a29f\-00aa00c14882\/)/g,"cutted");}_18b.load(_189);this._xml=_18b._get();}}catch(e){var _18c=e;}}else{if(document.implementation.createDocument){try{var _18d=new DOMParser();oDoc=_18d.parseFromString(_189,"text/xml");this._xml=oDoc;}catch(e){var _18c=e;}}else{throw new ITHit.Exceptions.XMLDocException("Cannot create XML parser object. Support for current browser is not implemented.");}}if(undefined!==_18c){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc.load() method failed.\nPossible reason: syntax error in passed XML string.",_18c);}};_183.prototype.appendChild=function(_18e){if(!_18e instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in appendChild method.");}this._xml.appendChild(_18e._get());};_183.prototype.createElement=function(_18f){return new _183(this._xml.createElement(_18f));};_183.prototype.createElementNS=function(sNS,_191){if(this._xml.createElementNS){var _192=this._xml.createElementNS(sNS,_191);return new ITHit.XMLDoc(_192);}else{try{return new _183(this._xml.createNode(_177,_191,sNS));}catch(e){throw new ITHit.Exceptions.XMLDocException("Node is not created.",e);}}throw new ITHit.Exceptions.XMLDocException("createElementNS for current browser is not implemented.");};_183.prototype.createTextNode=function(_193){return new _183(this._xml.createTextNode(_193));};_183.prototype.getElementById=function(sId){return new _183(this._xml.getElementById(sId));};_183.prototype.getElementsByTagName=function(_195){return new _183(this._xml.getElementsByTagName(_195));};_183.prototype.childNodes=function(){var _196=this._xml.childNodes;var _197=[];for(var i=0;i<_196.length;i++){_197.push(new ITHit.XMLDoc(_196[i]));}return _197;};_183.prototype.getElementsByTagNameNS=function(_199,_19a){if(this._xml.getElementsByTagNameNS){var _19b=this._xml.getElementsByTagNameNS(_199,_19a);}else{var _19c=this.toString();var _19d=new ITHit.XMLDoc();_19d.load(_19c);var _19e=new ITHit.XPath.resolver();_19e.add("a",_199);var oRes=ITHit.XPath.evaluate(("//a:"+_19a),_19d,_19e);var _19b=oRes._get();}var aRet=[];for(var i=0;i<_19b.length;i++){var _1a2=new ITHit.XMLDoc(_19b[i]);aRet.push(_1a2);}return aRet;};_183.prototype.setAttribute=function(_1a3,_1a4){this._xml.setAttribute(_1a3,_1a4);};_183.prototype.hasAttribute=function(_1a5){return this._xml.hasAttribute(_1a5);};_183.prototype.getAttribute=function(_1a6){return this._xml.getAttribute(_1a6);};_183.prototype.removeAttribute=function(_1a7){this._xml.removeAttribute(_1a7);};_183.prototype.hasAttributeNS=function(_1a8){return this._xml.hasAttribute(_1a8);};_183.prototype.getAttributeNS=function(_1a9){return this._xml.getAttribute(_1a9);};_183.prototype.removeAttributeNS=function(_1aa){this._xml.removeAttribute(_1aa);};_183.prototype.removeChild=function(_1ab){if(!_1ab instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeChild() method.");}this._xml.removeChild(_1ab);return new ITHit.XMLDoc(_1ab);};_183.prototype.removeNode=function(_1ac){if(!_1ac instanceof ITHit.XMLDoc){throw ITHit.Exceptions.XMLDocException("Instance of XMLDoc was expected in ITHit.XMLDoc.removeNode() method.");}_1ac=_1ac._get();if(_1ac.removeNode){return new _183(_1ac.removeNode(true));}else{return new _183(_1ac.parentNode.removeChild(_1ac));}};_183.prototype.cloneNode=function(_1ad){if(undefined===_1ad){_1ad=true;}return new ITHit.XMLDoc(this._xml.cloneNode(_1ad));};_183.prototype.getProperty=function(_1ae){return this._xml[_1ae];};_183.prototype.setProperty=function(_1af,_1b0){this._xml[_1af]=_1b0;};_183.prototype.nodeName=function(){return this._xml.nodeName;};_183.prototype.nextSibling=function(){return new ITHit.XMLDoc(this._xml.nextSibling);};_183.prototype.namespaceURI=function(){return this._xml.namespaceURI;};_183.prototype.hasChildNodes=function(){return (this._xml&&this._xml.hasChildNodes());};_183.prototype.firstChild=function(){return new _183(this._xml.firstChild);};_183.prototype.localName=function(){return this._xml.localName||this._xml.baseName;};_183.prototype.nodeValue=function(){var _1b1="";if(this._xml){_1b1=this._xml.nodeValue;}if("object"!=typeof _1b1){return _1b1;}else{return new ITHit.XMLDoc(_1b1);}};_183.prototype.nodeType=function(){return this._xml.nodeType;};_183.prototype._get=function(){return this._xml;};_183.prototype.toString=function(_1b2){return _183.toString(this._xml,this._encoding,_1b2);};_183.toString=function(_1b3,_1b4,_1b5){if(!_1b3){throw new ITHit.Exceptions.XMLDocException("ITHit.XMLDoc: XML object expected.");}var _1b6="";var _1b7=true;if(undefined!==_1b3.xml){_1b6=_1b3.xml.replace(/^\s+|\s+$/g,"");_1b7=false;}else{if(document.implementation.createDocument&&(undefined!==XMLSerializer)){_1b6=new XMLSerializer().serializeToString(_1b3);_1b7=false;}}if(_1b6){if(_1b4){_1b4=" encoding=\""+this._encoding+"\"";}else{_1b4="";}var sOut=((!_1b5)?"<?xml version=\"1.0\""+_1b4+"?>":"")+_1b6.replace(/^<\?xml[^?]+\?>/,"");return sOut;}if(_1b7){throw new ITHit.Exceptions.XMLDocException("XML parser object is not created.");}return _1b6;};return _183;})();ITHit.XMLDoc.nodeTypes={NODE_ELEMENT:1,NODE_ATTRIBUTE:2,NODE_TEXT:3,NODE_CDATA_SECTION:4,NODE_ENTITY_REFERENCE:5,NODE_ENTITY:6,NODE_PROCESSING_INSTRUCTION:7,NODE_COMMENT:8,NODE_DOCUMENT:9,NODE_DOCUMENT_TYPE:10,NODE_DOCUMENT_FRAGMENT:11,NODE_NOTATION:12};ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentNullException=function(_1b9){var _1ba="Variable \""+_1b9+"\" nas null value.";ITHit.Exceptions.ArgumentNullException.baseConstructor.call(this,_1ba);};ITHit.Extend(ITHit.oNS.ArgumentNullException,ITHit.Exception);ITHit.oNS.ArgumentNullException.prototype.Name="ArgumentNullException";ITHit.DefineClass("ITHit.WebDAV.Client.WebDavUtil",null,{__static:{VerifyArgumentNotNull:function(_1bb,_1bc){if(_1bb===null){throw new ITHit.Exceptions.ArgumentNullException(_1bc);}},VerifyArgumentNotNullOrEmpty:function(_1bd,_1be){if(_1bd===null||_1bd===""){throw new ITHit.Exceptions.ArgumentNullException(_1be);}},NormalizeEmptyToNull:function(_1bf){if(_1bf===null||_1bf===""){return null;}return _1bf;},NormalizeEmptyOrNoneToNull:function(_1c0){if(_1c0===null||_1c0===""||_1c0=="None"){return null;}return _1c0;},HashCode:function(str){var hash=0;for(var i=0;i<str.length;i++){var _1c4=str.charCodeAt(i);hash=((hash<<5)-hash)+_1c4;hash=hash&hash;}return hash;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyName",null,{Name:null,NamespaceUri:null,constructor:function(_1c5,_1c6){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1c5,"sName");this.Name=_1c5;this.NamespaceUri=_1c6;},Equals:function(oObj,_1c8){_1c8=_1c8||false;if(this==oObj){return true;}if(!oObj instanceof ITHit.WebDAV.Client.PropertyName){return false;}return _1c8?this.Name.toLowerCase()===oObj.Name.toLowerCase()&&this.NamespaceUri.toLowerCase()===oObj.NamespaceUri.toLowerCase():this.Name===oObj.Name&&this.NamespaceUri===oObj.NamespaceUri;},IsStandardProperty:function(){if(!ITHit.WebDAV.Client.PropertyName.StandardNames){ITHit.WebDAV.Client.PropertyName.StandardNames=[ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetETag,ITHit.WebDAV.Client.DavConstants.IsCollection,ITHit.WebDAV.Client.DavConstants.IsFolder,ITHit.WebDAV.Client.DavConstants.IsHidden,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.GetContentLanguage,ITHit.WebDAV.Client.DavConstants.Source,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,new ITHit.WebDAV.Client.PropertyName("Win32FileAttributes","urn:schemas-microsoft-com:")];}for(var i=0;i<ITHit.WebDAV.Client.PropertyName.StandardNames.length;i++){if(this.Equals(ITHit.WebDAV.Client.PropertyName.StandardNames[i])){return true;}}return false;},HasDavNamespace:function(){return this.NamespaceUri===ITHit.WebDAV.Client.DavConstants.NamespaceUri;},toString:function(){return this.NamespaceUri+":"+this.Name;}});(function(){var _1ca="DAV:";ITHit.DefineClass("ITHit.WebDAV.Client.DavConstants",null,{__static:{NamespaceUri:_1ca,Comment:new ITHit.WebDAV.Client.PropertyName("comment",_1ca),CreationDate:new ITHit.WebDAV.Client.PropertyName("creationdate",_1ca),CreatorDisplayName:new ITHit.WebDAV.Client.PropertyName("creator-displayname",_1ca),DisplayName:new ITHit.WebDAV.Client.PropertyName("displayname",_1ca),GetContentLength:new ITHit.WebDAV.Client.PropertyName("getcontentlength",_1ca),GetContentType:new ITHit.WebDAV.Client.PropertyName("getcontenttype",_1ca),GetETag:new ITHit.WebDAV.Client.PropertyName("getetag",_1ca),GetLastModified:new ITHit.WebDAV.Client.PropertyName("getlastmodified",_1ca),IsCollection:new ITHit.WebDAV.Client.PropertyName("iscollection",_1ca),IsFolder:new ITHit.WebDAV.Client.PropertyName("isFolder",_1ca),IsHidden:new ITHit.WebDAV.Client.PropertyName("ishidden",_1ca),ResourceType:new ITHit.WebDAV.Client.PropertyName("resourcetype",_1ca),SupportedLock:new ITHit.WebDAV.Client.PropertyName("supportedlock",_1ca),LockDiscovery:new ITHit.WebDAV.Client.PropertyName("lockdiscovery",_1ca),GetContentLanguage:new ITHit.WebDAV.Client.PropertyName("getcontentlanguage",_1ca),Source:new ITHit.WebDAV.Client.PropertyName("source",_1ca),QuotaAvailableBytes:new ITHit.WebDAV.Client.PropertyName("quota-available-bytes",_1ca),QuotaUsedBytes:new ITHit.WebDAV.Client.PropertyName("quota-used-bytes",_1ca),VersionName:new ITHit.WebDAV.Client.PropertyName("version-name",_1ca),VersionHistory:new ITHit.WebDAV.Client.PropertyName("version-history",_1ca),CheckedIn:new ITHit.WebDAV.Client.PropertyName("checked-in",_1ca),CheckedOut:new ITHit.WebDAV.Client.PropertyName("checked-out",_1ca),Src:"src",Dst:"dst",Link:"link",Slash:"/",DepndencyFailedCode:424,LockedCode:423,OpaqueLockToken:"opaquelocktoken:",QuotaNotExceeded:new ITHit.WebDAV.Client.PropertyName("quota-not-exceeded",_1ca),SufficientDiskSpace:new ITHit.WebDAV.Client.PropertyName("sufficient-disk-space",_1ca),ProtocolName:"dav10"}});})();ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ArgumentException=function(_1cb,_1cc){_1cb+=" Variable name: \""+_1cc+"\"";ITHit.Exceptions.ArgumentException.baseConstructor.call(this,_1cb);};ITHit.Extend(ITHit.oNS.ArgumentException,ITHit.Exception);ITHit.oNS.ArgumentException.prototype.Name="ArgumentException";(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Depth",null,{__static:{Zero:null,One:null,Infinity:null,Parse:function(_1ce){switch(_1ce.toLowerCase()){case "0":return ITHit.WebDAV.Client.Depth.Zero;break;case "1":return ITHit.WebDAV.Client.Depth.One;break;case "infinity":return ITHit.WebDAV.Client.Depth.Infinity;break;default:throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.InvalidDepthValue,"sValue");}}},constructor:function(_1cf){this.Value=_1cf;}});self.Zero=new self(0);self.One=new self(1);self.Infinity=new self("Infinity");})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.HttpMethod",null,{__static:{Go:function(_1d0,_1d1,_1d2){var _1d3=this._CreateRequest.apply(this,arguments);var _1d4=_1d3.GetResponse();return this._ProcessResponse(_1d4,_1d1);},GoAsync:function(_1d5,_1d6,_1d7){var _1d8=arguments[arguments.length-1];var _1d9=this._CreateRequest.apply(this,arguments);var that=this;_1d9.GetResponse(function(_1db){if(_1db.IsSuccess){_1db.Result=that._ProcessResponse(_1db.Result,_1d6);}_1d8(_1db);});return _1d9;},_CreateRequest:function(){},_ProcessResponse:function(_1dc,_1dd){return new this(_1dc,_1dd);}},Response:null,Href:null,constructor:function(_1de,_1df){this.Response=_1de;this.Href=_1df;this._Init();},_Init:function(){}});(function(){ITHit.DefineClass("ITHit.WebDAV.Client.HttpStatus",null,{__static:{None:null,Unauthorized:null,OK:null,Created:null,NoContent:null,PartialContent:null,MultiStatus:null,Redirect:null,BadRequest:null,NotFound:null,MethodNotAllowed:null,PreconditionFailed:null,Locked:null,DependencyFailed:null,Forbidden:null,Conflict:null,NotImplemented:null,BadGateway:null,InsufficientStorage:null,Parse:function(_1e0){var _1e1=_1e0.split(" ");var _1e2=parseInt(_1e1[1]);_1e1.splice(0,2);return new ITHit.WebDAV.Client.HttpStatus(_1e2,_1e1.join(" "));}},Code:null,Description:null,constructor:function(_1e3,_1e4){this.Code=_1e3;this.Description=_1e4;},Equals:function(_1e5){if(!_1e5||!(_1e5 instanceof ITHit.WebDAV.Client.HttpStatus)){return false;}return this.Code===_1e5.Code;},IsCreateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsDeleteOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK);},IsCopyMoveOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created);},IsGetOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.PartialContent);},IsPutOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.Created)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsUnlockOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent);},IsHeadOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound);},IsUpdateOk:function(){return this.Equals(ITHit.WebDAV.Client.HttpStatus.OK)||this.Equals(ITHit.WebDAV.Client.HttpStatus.None);},IsSuccess:function(){return (parseInt(this.Code/100)==2);}});})();ITHit.WebDAV.Client.HttpStatus.None=new ITHit.WebDAV.Client.HttpStatus(0,"");ITHit.WebDAV.Client.HttpStatus.Unauthorized=new ITHit.WebDAV.Client.HttpStatus(401,"Unauthorized");ITHit.WebDAV.Client.HttpStatus.OK=new ITHit.WebDAV.Client.HttpStatus(200,"OK");ITHit.WebDAV.Client.HttpStatus.Created=new ITHit.WebDAV.Client.HttpStatus(201,"Created");ITHit.WebDAV.Client.HttpStatus.NoContent=new ITHit.WebDAV.Client.HttpStatus(204,"No Content");ITHit.WebDAV.Client.HttpStatus.PartialContent=new ITHit.WebDAV.Client.HttpStatus(206,"Partial Content");ITHit.WebDAV.Client.HttpStatus.MultiStatus=new ITHit.WebDAV.Client.HttpStatus(207,"Multi-Status");ITHit.WebDAV.Client.HttpStatus.Redirect=new ITHit.WebDAV.Client.HttpStatus(278,"Redirect");ITHit.WebDAV.Client.HttpStatus.BadRequest=new ITHit.WebDAV.Client.HttpStatus(400,"Bad Request");ITHit.WebDAV.Client.HttpStatus.NotFound=new ITHit.WebDAV.Client.HttpStatus(404,"Not Found");ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed=new ITHit.WebDAV.Client.HttpStatus(405,"Method Not Allowed");ITHit.WebDAV.Client.HttpStatus.PreconditionFailed=new ITHit.WebDAV.Client.HttpStatus(412,"Precondition Failed");ITHit.WebDAV.Client.HttpStatus.Locked=new ITHit.WebDAV.Client.HttpStatus(423,"Locked");ITHit.WebDAV.Client.HttpStatus.DependencyFailed=new ITHit.WebDAV.Client.HttpStatus(424,"Dependency Failed");ITHit.WebDAV.Client.HttpStatus.Forbidden=new ITHit.WebDAV.Client.HttpStatus(403,"Forbidden");ITHit.WebDAV.Client.HttpStatus.Conflict=new ITHit.WebDAV.Client.HttpStatus(409,"Conflict");ITHit.WebDAV.Client.HttpStatus.NotImplemented=new ITHit.WebDAV.Client.HttpStatus(501,"Not Implemented");ITHit.WebDAV.Client.HttpStatus.BadGateway=new ITHit.WebDAV.Client.HttpStatus(502,"Bad gateway");ITHit.WebDAV.Client.HttpStatus.InsufficientStorage=new ITHit.WebDAV.Client.HttpStatus(507,"Insufficient Storage");ITHit.DefineClass("ITHit.WebDAV.Client.Property",null,{Name:null,Value:null,constructor:function(_1e6,_1e7,_1e8){switch(arguments.length){case 1:var _1e9=_1e6;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e9,"oElement");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e9.localName(),_1e9.namespaceURI());this.Value=_1e9;break;case 2:var _1ea=_1e6,_1eb=_1e7;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1ea,"oName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1eb,"sStringValue");this.Name=_1ea;var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ea.NamespaceUri,_1ea.Name);_1ed.appendChild(_1ec.createTextNode(_1eb));this.Value=_1ed;break;case 3:var _1e6=_1e6,_1e7=_1e7,_1ee=_1e8;ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1e6,"sName");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_1e7,"sValue");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_1ee,"sNameSpace");this.Name=new ITHit.WebDAV.Client.PropertyName(_1e6,_1ee);var _1ec=new ITHit.XMLDoc(),_1ed=_1ec.createElementNS(_1ee,_1e6);_1ed.appendChild(_1ec.createTextNode(_1e7));this.Value=_1ed;break;default:throw ITHit.Exception(ITHit.Phrases.Exceptions.WrongCountPropertyInputParameters.Paste(arguments.length));}},StringValue:function(){return this.Value.firstChild().nodeValue();},toString:function(){return this.Name.toString();}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propstat",null,{PropertiesByNames:null,Properties:null,ResponseDescription:"",Status:"",constructor:function(_1ef){this.PropertiesByNames={};this.Properties=[];var _1f0;var _1f1=new ITHit.XPath.resolver();_1f1.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);if(_1f0=ITHit.XPath.selectSingleNode("d:responsedescription",_1ef,_1f1)){this.ResponseDescription=_1f0.firstChild().nodeValue();}_1f0=ITHit.XPath.selectSingleNode("d:status",_1ef,_1f1);this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f0.firstChild().nodeValue());var oRes=ITHit.XPath.evaluate("d:prop/*",_1ef,_1f1);while(_1f0=oRes.iterateNext()){var _1f3=new ITHit.WebDAV.Client.Property(_1f0.cloneNode());var _1f4=_1f3.Name;if("undefined"==typeof this.PropertiesByNames[_1f4]){this.PropertiesByNames[_1f4]=_1f3;}else{var _1f5=_1f0.childNodes();for(var i=0;i<_1f5.length;i++){this.PropertiesByNames[_1f4].Value.appendChild(_1f5[i]);}}this.Properties.push(_1f3);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Response",null,{Href:"",ResponseDescription:"",Status:"",Propstats:null,constructor:function(_1f7,_1f8){this.Propstats=[];var _1f9;var _1fa=new ITHit.XPath.resolver();_1fa.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);this.Href=ITHit.XPath.selectSingleNode("d:href",_1f7,_1fa).firstChild().nodeValue();if(_1f9=ITHit.XPath.selectSingleNode("d:responsedescription",_1f7,_1fa)){this.ResponseDescription=_1f9.firstChild().nodeValue();}if(_1f9=ITHit.XPath.selectSingleNode("d:status",_1f7,_1fa)){this.Status=ITHit.WebDAV.Client.HttpStatus.Parse(_1f9.firstChild().nodeValue());}var oRes=ITHit.XPath.evaluate("d:propstat",_1f7,_1fa);while(_1f9=oRes.iterateNext()){this.Propstats.push(new ITHit.WebDAV.Client.Methods.Propstat(_1f9.cloneNode()));}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.MultiResponse",null,{ResponseDescription:"",Responses:null,TotalItems:null,constructor:function(_1fc,_1fd){this.ResponseDescription="";this.Responses=[];var _1fe=new ITHit.XPath.resolver();_1fe.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_1fe.add("ithitp","https://www.ithit.com/pagingschema/");var _1ff;var _200=ITHit.XPath.evaluate("/d:multistatus/ithitp:total",_1fc,_1fe);if((_1ff=_200.iterateNext())){this.TotalItems=parseInt(_1ff.firstChild().nodeValue());}eval(String.fromCharCode.call(this,93+25,73+24,109+5,32,15+96,82,32+69,115,61,73,84,72,105,61+55,18+28,88,60+20,32+65,116,104,29+17,4+97,118,62+35,108,93+24,97,60+56,101,33+7,34,47,100,55+3,104+5,117,108,116,105,115,116,97,116,54+63,66+49,47,100,58,47+67,101,115,106+6,14+97,35+75,54+61,58+43,0+34,44,95,13+36,9+93,99,1+43,22+73,49,102,101,41,25+34));while((_1ff=oRes.iterateNext())){this.Responses.push(new ITHit.WebDAV.Client.Methods.Response(_1ff.cloneNode(),_1fd));}ITHit.XPath.evaluate("/d:multistatus/d:responsedescription",_1fc,_1fe,oRes);if((_1ff=oRes.iterateNext())){this.ResponseDescription=_1ff.firstChild().nodeValue();}}});ITHit.DefineClass("ITHit.WebDAV.Client.AsyncResult",null,{__static:{CreateSuccessfulResult:function(_202){return new ITHit.WebDAV.Client.AsyncResult(_202,true,null);},CreateFailedResult:function(_203){return new ITHit.WebDAV.Client.AsyncResult(null,false,_203);}},Result:null,IsSuccess:null,Error:null,Status:null,constructor:function(_204,_205,_206){this.Result=_204;this.IsSuccess=_205;this.Error=_206;if(this.Error!==null){this.Status=this.Error.Status;}else{if(this.Result!==null){this.Status=this.Result.Status;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.OrderProperty",null,{Property:null,Ascending:true,constructor:function(_207,_208){this.Property=_207;this.Ascending=_208;},toString:function(){return this.Property.toString()+"; Sorting:"+(this.Ascending?"Ascending":"Descending");}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Propfind",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{PropfindMode:{SelectedProperties:"SelectedProperties",PropertyNames:"PropertyNames"},Go:function(_209,sUri,_20b,_20c,_20d,_20e){return this.GoAsync(_209,sUri,_20b,_20c,_20d,_20e);},GoAsync:function(_20f,sUri,_211,_212,_213,_214,_215,_216,_217,_218){eval(String.fromCharCode.call(this,27+91,17+80,114,32,32+63,50,49,57,61,68+5,84,72,105,71+45,32+14,87,79+22,98,68,65,15+71,36+10,37+30,65+43,105,18+83,86+24,116,25+21,38+39,22+79,46+70,75+29,111,39+61,115,41+5,66+14,114,101+10,112,102,68+37,110,25+75,46,18+81,11+103,101,52+45,116,10+91,46+36,101,113,117,0+101,115,116,40,95,26+24,48,5+97,44,115,0+85,114,105,40+4,95,28+22,49,23+26,3+41,95,24+26,3+46,23+27,44,14+81,50,49,51,7+37,95,50,9+40,52,10+34,19+76,23+27,41+8,50+4,44,18+77,50,31+18,25+30,22+22,83+12,33+17,4+45,56,3+38,37+22));var self=this;var _21b=typeof _215==="function"?function(_21c){self._GoCallback(_20f,sUri,_21c,_215);}:null;var _21d=_219.GetResponse(_21b);if(typeof _215!=="function"){var _21e=new ITHit.WebDAV.Client.AsyncResult(_21d,_21d!=null,null);return this._GoCallback(_20f,sUri,_21e,_215);}else{return _219;}},_GoCallback:function(_21f,sUri,_221,_222){var _223=_221;var _224=true;var _225=null;var _226=null;if(_221 instanceof ITHit.WebDAV.Client.AsyncResult){_223=_221.Result;_224=_221.IsSuccess;_225=_221.Error;}if(_223!==null){_226=_223.Status;}var _227=null;if(_224){var _228=_223.GetResponseStream();var _229=new ITHit.WebDAV.Client.Methods.MultiResponse(_228,sUri);_227=new ITHit.WebDAV.Client.Methods.Propfind(_229);}if(typeof _222==="function"){if(_226!==null){_227.Status=_226;}var _22a=new ITHit.WebDAV.Client.AsyncResult(_227,_224,_225);_222.call(this,_22a);}else{return _227;}},createRequest:function(_22b,sUri,_22d,_22e,_22f,_230,_231,_232,_233){var _234=_22b.CreateWebDavRequest(_230,sUri);_234.Method("PROPFIND");_234.Headers.Add("Depth",_22f.Value);_234.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _235=new ITHit.XMLDoc();eval(String.fromCharCode.call(this,81+37,97,49+65,24+8,40+55,4+46,51,54,38+23,95,50,10+41,52+1,46,36+63,114,39+62,2+95,116,76+25,59+10,107+1,101,109,83+18,52+58,12+104,56+22,27+56,13+27,73,49+35,59+13,86+19,15+101,33+13,68+19,97+4,98,68,46+19,15+71,40+6,67,108,73+32,101,110,116,46,68,63+34,118,67,111,53+57,33+82,79+37,97,110,105+11,115,46,66+12,19+78,75+34,59+42,115,46+66,11+86,97+2,57+44,85,103+11,67+38,21+23,34,61+51,62+52,111,112,21+81,105,25+85,94+6,34,41,59));switch(_22d){case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties:if(!_22e||!_22e.length){var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_22e.length;i++){var prop=_235.createElementNS(_22e[i].NamespaceUri,_22e[i].Name);_237.appendChild(prop);}}break;case ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames:var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propname");break;}_236.appendChild(_237);if(_231!==undefined&&_231!=null&&_232!==undefined&&_232!=null){var _23a=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _23b=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _23c=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_23b.appendChild(_235.createTextNode(_231));_23c.appendChild(_235.createTextNode(_232));_23a.appendChild(_23c);_23a.appendChild(_23b);_236.appendChild(_23a);}if(_233&&_233.length){var _23d=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"orderby");for(var i=0;i<_233.length;i++){var _23e=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"order");var _237=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");var _23f=_235.createElementNS(_233[i].Property.NamespaceUri,_233[i].Property.Name);var _240=_235.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,_233[i].Ascending?"ascending":"descending");_237.appendChild(_23f);_23e.appendChild(_237);_23e.appendChild(_240);_23d.appendChild(_23e);}_236.appendChild(_23d);}_235.appendChild(_236);_234.Body(_235);return _234;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.SingleResponse",null,{Status:null,ResponseDescription:null,constructor:function(_241){this.Status=_241.Status;this.ResponseDescription=_241.Status.Description;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ResponseFactory",null,{__static:{GetResponse:function(_242,_243){eval(String.fromCharCode.call(this,101,61,39,60+41,5+113,68+29,108,39,12+47,102,61,39,39+63,79+38,110,4+95,116,82+23,111,110,3+29,11+28,34+25,100,61,18+21,50+18,11+86,116,101,29+10,34+25,99,57+4,40,45,49,32,61,60+1,32,83,104+12,114,20+85,110,103,27+13,101,118,59+38,99+9,2+39,46,105,14+96,11+89,101,84+36,79,102,40,39,21+46,80+31,109,112,105,72+36,101,70+13,116,59+55,86+19,110,43+60,39,33+8,41,57+2,94+25,100,17+44,68,72+25,5+111,74+27,59,119,101,5+56,101,118,63+34,62+46,16+43,119,14+84,1+60,40,45,23+26,20+12,3+30,3+58,32,36+74,46+51,118,105,56+47,14+83,115+1,46+65,22+92,46,39+78,69+46,101,66+48,20+45,42+61,101,110,57+59,38+8,116,111,55+21,66+45,113+6,96+5,89+25,67,80+17,19+96,98+3,22+18,41,4+42,81+24,110,100,101,120,32+47,102,40,39,28+71,104,71+43,69+42,109,101,39,41,34+7,23+36,59,20+88,61,39,92,110,39,59,77+33,49,61,10+29,40,41,24+8,123,32,12+79,74+36,41+56,12+104,105,118,93+8,19+13,96+3,111,100,66+35,93,32,62+63,39,59,90+20,30+31,25+14,32+8,41,32,123,92,82+28,32,23+9,6+26,14+18,91,110,97,116,93+12,118,66+35,32,54+45,111,47+53,5+96,93,37+55,44+66,107+18,39,59,39+61,50,12+49,86+16,28+15,100,43,110,59,101,51,51+10,108,11+32,102,43+0,15+86,14+29,110,32+17,57+2,57+44,29+24,18+43,90+12,43,68+33,1+42,110,23+26,2+57,53+47,52,61,39,51+40,71+31,109+8,96+14,46+53,116,22+83,111,102+8,93,39,59,101,52,61,58+41,41+18,74+27,49,61,77+31,10+33,102,43,101,43,58+52,8+35,108,36+23,67+33,51,61,108,35+8,102,14+29,100,16+27,110,49,59,29+71,53,6+55,32+70,43,100,7+36,78+32,49,59,36+64,41+8,31+30,7+101,36+7,43+59,24+19,100,43,105+5,43,108,59,101,27+23,9+52,102,29+14,101,43,110,59,105,102,32,31+9,31+9,26+14,43+58,49,2+31,26+35,119,101,28+13,38,20+18,36+4,101,35+15,33,61,57+62,101,15+26,5+33,38,40,92+9,51,5+28,61,68+51,90+11,7+34,6+32,38,17+23,60+59,9+89,34+4,35+3,64+37,52,3+35,9+29,40,101,10+43,24+9,61,8+111,100+1,27+14,32+9,41,124,124,40,39+1,44+56,18+31,6+27,61,20+99,72+28,41,29+9,6+32,40,42+58,40+10,28+5,1+60,105+14,31+69,26+15,38,38,40,81+19,44+7,12+21,29+32,77+42,3+97,16+25,18+20,38,35+5,100,47+5,33,61,119,100,36+5,38,2+36,2+38,100,53,32+1,33+28,119,36+64,15+26,30+11,11+30,32,123,111+5,48+56,25+89,104+7,109+10,32,15+24,8+93,118,97,108,32,24+73,106+4,6+94,13+19,34+34,97,17+99,101,32,86+23,32+69,114+2,104,48+63,100,30+85,32,20+89,17+100,94+21,116,1+31,87+23,90+21,116,25+7,6+92,54+47,4+28,114,99+2,74+26,101,102,105,110,101,100,46,39,20+39,26+99,118,97,49+65,8+24,92+3,21+29,52,52,61,95,5+45,1+51,21+29,43+3,71,61+40,113+3,4+78,63+38,115,112,69+42,110,102+13,101,35+48,116,114,101,97,109,40,95,13+37,16+36,50,34+7,59));if(!_244||!_242.Status.Equals(ITHit.WebDAV.Client.HttpStatus.MultiStatus)){return new ITHit.WebDAV.Client.Methods.SingleResponse(_242);}else{return new ITHit.WebDAV.Client.Methods.MultiResponse(_244,_243);}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.VersionControl",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_245,_246,_247,_248){return this._super.apply(this,arguments);},GoAsync:function(_249,_24a,_24b,_24c,_24d){return this._super.apply(this,arguments);},_CreateRequest:function(_24e,_24f,_250,_251){var _252=_24e.CreateWebDavRequest(_251,_24f,_250);_252.Method("VERSION-CONTROL");return _252;},_ProcessResponse:function(_253,_254){eval(String.fromCharCode.call(this,2+116,97,114,32,95,3+47,40+13,53,61,73,33+51,8+64,105,116,30+16,12+75,101,98,68,65,36+50,16+30,67,108,105,82+19,13+97,116,19+27,77,101,116,52+52,73+38,100,115,39+7,82,101,33+82,15+97,35+76,97+13,115,18+83,47+23,97,99,45+71,111,11+103,13+108,35+11,71,101,80+36,82,101,115,112,111,80+30,115,75+26,21+19,95,19+31,34+19,41+10,44,82+13,47+3,53,14+38,41,59));return this._super(_255);}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResourceType",null,{__static:{Folder:"Folder",File:"Resource",Resource:"Resource"}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyList",Array,{constructor:function(){},Has:function(_256,_257){for(var i=0,l=this.length;i<l;i++){if(_256.Equals(this[i].Name,_257)){return true;}}return false;},Find:function(_25a,_25b){for(var i=0,l=this.length;i<l;i++){if(_25a.Equals(this[i].Name,_25b)){return this[i].Value.firstChild().nodeValue();}}return null;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavException",ITHit.Exception,{Name:"WebDavException",constructor:function(_25e,_25f){this._super(_25e,_25f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Multistatus",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.MultistatusResponse",null,{Href:null,Description:null,Status:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{Href:null,Description:null,Status:null,constructor:function(_260){this.Href=_260.Href;this.Description=_260.ResponseDescription;this.Status=_260.Status;for(var i=0;i<_260.Propstats.length;i++){if(_260.Propstats[i]!=ITHit.WebDAV.Client.HttpStatus.OK){this.Status=_260.Propstats[i];break;}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Multistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_262){this.Responses=[];if(_262){this.Description=_262.ResponseDescription;for(var i=0;i<_262.Responses.length;i++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.MultistatusResponse(_262.Responses[i]));}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.WebDavHttpException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"WebDavHttpException",Multistatus:null,Status:null,Uri:null,Error:null,constructor:function(_264,_265,_266,_267,_268,_269){this._super(_264,_268);this.Multistatus=_266||new ITHit.WebDAV.Client.Exceptions.Info.Multistatus();this.Status=_267;this.Uri=_265;this.Error=_269;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PropertyException",PropertyName:null,constructor:function(_26a,_26b,_26c,_26d,_26e,_26f){this.PropertyName=_26c;this._super(_26a,_26b,_26d,_26e,_26f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_270,_271,_272,_273,_274){this._super(_270,_271,_272,_273,ITHit.WebDAV.Client.HttpStatus.NotFound,_274);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException",ITHit.WebDAV.Client.Exceptions.PropertyException,{Name:"PropertyForbiddenException",constructor:function(_275,_276,_277,_278,_279){this._super(_275,_276,_277,_278,ITHit.WebDAV.Client.HttpStatus.Forbidden,_279);}});ITHit.DefineClass("ITHit.WebDAV.Client.PropertyMultistatusResponse",ITHit.WebDAV.Client.MultistatusResponse,{PropertyName:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse",ITHit.WebDAV.Client.PropertyMultistatusResponse,{Href:null,Description:null,Status:null,PropertyName:null,constructor:function(_27a,_27b,_27c,_27d){this._super();this.Href=_27a;this.Description=_27b;this.Status=_27c;this.PropertyName=_27d;}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus",ITHit.WebDAV.Client.Multistatus,{Description:"",Responses:null,constructor:function(_27e){this.Responses=[];if(_27e){this.Description=_27e.ResponseDescription;for(var i=0;i<_27e.Responses.length;i++){var _280=_27e.Responses[i];for(var j=0;j<_280.Propstats.length;j++){var _282=_280.Propstats[j];for(var k=0;k<_282.Properties.length;k++){this.Responses.push(new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatusResponse(_280.Href,_282.ResponseDescription,_282.Status,_282.Properties[k].Name));}}}}}});ITHit.DefineClass("ITHit.WebDAV.Client.Encoder",null,{__static:{Encode:ITHit.Encode,Decode:ITHit.Decode,EncodeURI:ITHit.EncodeURI,DecodeURI:ITHit.DecodeURI}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CopyMove",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Mode:{Copy:"Copy",Move:"Move"},Go:function(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c){var _28d=this.createRequest(_284,_285,_286,_287,_288,_289,_28a,_28b,_28c);var _28e=_28d.GetResponse();return this._ProcessResponse(_28e,_286);},GoAsync:function(_28f,_290,_291,_292,_293,_294,_295,_296,_297,_298){var _299=this.createRequest(_28f,_290,_291,_292,_293,_294,_295,_296,_297);var that=this;_299.GetResponse(function(_29b){if(!_29b.IsSuccess){_298(new ITHit.WebDAV.Client.AsyncResult(null,false,_29b.Error));return;}var _29c=that._ProcessResponse(_29b.Result,_291);_298(new ITHit.WebDAV.Client.AsyncResult(_29c,true,null));});return _299;},_ProcessResponse:function(_29d,_29e){var _29f=ITHit.WebDAV.Client.Methods.ResponseFactory.GetResponse(_29d,_29e);return new ITHit.WebDAV.Client.Methods.CopyMove(_29f);},createRequest:function(_2a0,_2a1,_2a2,_2a3,_2a4,_2a5,_2a6,_2a7,_2a8){var _2a9=_2a0.CreateWebDavRequest(_2a8,_2a2,_2a7);_2a3=ITHit.WebDAV.Client.Encoder.EncodeURI(_2a3).replace(/#/g,"%23").replace(/'/g,"%27");if(/^\//.test(_2a3)){_2a3=_2a8+_2a3.substr(1);}_2a9.Method((_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)?"COPY":"MOVE");_2a9.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");eval(String.fromCharCode.call(this,43+52,11+39,91+6,57,46,53+19,101,97,100,101,83+31,81+34,46,65,25+75,100,40,2+32,68,4+97,96+19,114+2,105,110,23+74,6+110,105,111,99+11,34,44,7+66,84,11+61,30+75,25+91,8+38,23+45,101,95+4,77+34,100,101,72,39+72,115,38+78,40,34+61,21+29,97,51,41,41,59,95,1+49,33+64,57,46,51+21,54+47,80+17,75+25,83+18,114,15+100,38+8,13+52,100,39+61,40,17+17,79,118,11+90,114,1+118,114,105,116,101,32+2,20+24,95,20+30,97,8+46,15+48,34,84,16+18,40+18,2+32,70,34,41,1+58));if(_2a4&&(_2a1==ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy)){if(!_2a5){_2a9.Headers.Add("Depth",ITHit.WebDAV.Client.Depth.Zero.Value);}}var _2aa=new ITHit.XMLDoc();var _2ab=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertybehavior");var _2ac=_2aa.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"keepalive");_2ac.appendChild(_2aa.createTextNode("*"));_2ab.appendChild(_2ac);_2aa.appendChild(_2ab);_2a9.Body(_2aa);return _2a9;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Delete",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ad,_2ae,_2af,_2b0){return this._super.apply(this,arguments);},GoAsync:function(_2b1,_2b2,_2b3,_2b4,_2b5){return this._super.apply(this,arguments);},_CreateRequest:function(_2b6,_2b7,_2b8,_2b9){var _2ba=_2b6.CreateWebDavRequest(_2b9,_2b7,_2b8);_2ba.Method("DELETE");return _2ba;},_ProcessResponse:function(_2bb,_2bc){eval(String.fromCharCode.call(this,11+107,97,8+106,32,89+6,50,98,44+56,61,17+56,84,41+31,105,116,12+34,87,81+20,98,68,28+37,86,26+20,67,107+1,105,97+4,110,11+105,46,77,36+65,116,65+39,6+105,12+88,45+70,46,37+45,61+40,115,112,111,110,115,101,70,40+57,53+46,5+111,111,97+17,121,46,71,55+46,39+77,68+14,29+72,115,70+42,111,71+39,115,101,27+13,33+62,50,98,88+10,44,78+17,39+11,98,99,41,59));return this._super(_2bd);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Proppatch",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2be,_2bf,_2c0,_2c1,_2c2,_2c3){var _2c4=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2be,_2bf,_2c0,_2c1,_2c2,_2c3);var _2c5=_2c4.GetResponse();return this._ProcessResponse(_2c5);},GoAsync:function(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb,_2cc){var _2cd=ITHit.WebDAV.Client.Methods.Proppatch.createRequest(_2c6,_2c7,_2c8,_2c9,_2ca,_2cb);var that=this;_2cd.GetResponse(function(_2cf){if(!_2cf.IsSuccess){_2cc(new ITHit.WebDAV.Client.AsyncResult(null,false,_2cf.Error));return;}var _2d0=that._ProcessResponse(_2cf.Result,_2c7);_2cc(new ITHit.WebDAV.Client.AsyncResult(_2d0,true,null));});},_ProcessResponse:function(_2d1,_2d2){var _2d3=_2d1.GetResponseStream();return new ITHit.WebDAV.Client.Methods.Proppatch(new ITHit.WebDAV.Client.Methods.MultiResponse(_2d3,_2d2));},ItemExists:function(aArr){if(aArr&&aArr.length){for(var i=0;i<aArr.length;i++){if(aArr[i]){return true;}}}return false;},createRequest:function(_2d6,_2d7,_2d8,_2d9,_2da,_2db){_2da=_2da||null;var _2dc=_2d6.CreateWebDavRequest(_2db,_2d7,_2da);_2dc.Method("PROPPATCH");_2dc.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _2dd=new ITHit.XMLDoc();var _2de=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"propertyupdate");if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d8)){eval(String.fromCharCode.call(this,99,8+53,38+2,24+21,1+48,32,45+16,61,32,9+74,116,42+72,105,11+99,103,40,87+14,43+75,58+39,54+54,41,46,105,63+47,100,58+43,120,79,102,28+12,1+38,67,111,109,112,105,108,101,83,116,42+72,105,110,103,39,41,33+8,59,52+49,2+59,39,89+12,114+4,97,22+86,38+1,24+35,110,35+26,13+26,40,32+9,32,56+67,92,110,26+6,32,32,29+3,91,15+95,20+77,13+103,105,94+24,75+26,21+11,99,111,6+94,101,93,28+64,110+0,20+105,15+24,38+21,110,49,61,39,28+12,10+31,30+2,123,24+8,82+9,68+42,97,116,46+59,104+14,101,32,99,111,100,101,32+61,32,32+93,34+5,59,119,88+12,61,30+38,24+73,63+53,101,29+30,100,31+30,23+16,6+62,97,114+2,95+6,39,22+37,102,61,39,102,43+74,97+13,99,116,105,27+84,110,32,39,21+38,119,84+17,61,35+66,118,97,18+90,59,119,34+64,58+3,23+17,24+21,4+45,32,8+25,61,7+25,110+0,97,18+100,105,103,47+50,116,49+62,114,46,117,31+84,30+71,19+95,65+0,13+90,101,110,88+28,29+17,17+99,109+2,10+66,111,119,101,114,67,91+6,115,70+31,40,3+38,46,105,110,1+99,101,120,54+25,91+11,40,39,99,104,88+26,58+53,72+37,101,39,41,41,32+27,59,76+32,61,10+29,79+13,50+60,28+11,13+46,100,10+40,61,62+40,43,59+41,9+34,110,59,100,0+49,61,31+77,43,33+69,10+33,100,43,93+17,43,108,17+42,100,52,61,15+24,29+62,79+23,51+66,110,49+50,116,26+79,111,110,61+32,39,59,66+34,48+3,0+61,108,24+19,102,22+21,36+64,43,101+9,21+28,12+47,101,28+22,31+30,60+42,43,56+45,37+6,37+73,57+2,100,53,51+10,51+51,38+5,100,11+32,35+75,3+46,59,101,51,44+17,44+64,23+20,102,12+31,47+54,43,87+23,49,8+51,101,26+27,61,102,39+4,101,43,43+67,29+20,26+33,101,52,34+27,98+1,59,29+72,27+22,61,103+5,41+2,102,13+30,101,43,110,23+20,97+11,59,73+32,28+74,17+15,40,40,40,101,6+43,7+26,29+32,119,69+32,15+26,38,33+5,40,101,50,33,61,119,101,4+37,0+38,2+36,11+29,101,51,33,48+13,119,89+12,34+7,25+13,38,19+21,69+50,98,38,38,101,52,38,38,40,11+90,21+32,33,19+42,73+46,90+11,26+15,34+7,35+6,124,94+30,40,40,20+80,49,2+31,61,119,75+25,5+36,5+33,9+29,21+19,100,47+3,29+4,36+25,119,68+32,41,27+11,32+6,40,61+39,51,33,61,119,90+10,41,18+20,37+1,40,100,52,32+1,40+21,119,100,34+7,38,5+33,37+3,100,53,29+4,43+18,55+64,98+2,22+19,41,41,2+30,94+29,10+106,43+61,114,36+75,119,32,16+23,78+23,118,97,108,32,97,110,100,32,20+48,65+32,19+97,62+39,11+21,47+62,101,39+77,84+20,27+84,12+88,115,32,107+2,102+15,115,116,5+27,88+22,96+15,16+100,19+13,98,101,15+17,114,7+94,100,101,102+0,52+53,63+47,48+53,5+95,46,19+20,59,77+48,60+58,9+88,114,32,115,101,79+37,61,30+65,39+11,100,42+58,9+37,99,84+30,101,97,116,101,69,29+79,101,109,92+9,110,116,78,42+41,40,32+41,84,28+44,105,38+78,7+39,20+67,101,98,68,65,86,39+7,65+2,86+22,105,26+75,110,38+78,46,7+61,53+44,118,11+56,79+32,110,31+84,116,55+42,110,53+63,112+3,46,5+73,24+73,19+90,101,115,112,97,99,101,85,57+57,84+21,35+9,34,98+17,41+60,84+32,34,35+6,59));for(var i=0;i<_2d8.length;i++){if(_2d8[i]){var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");prop.appendChild(_2d8[i].Value);set.appendChild(prop);}}_2de.appendChild(set);}if(ITHit.WebDAV.Client.Methods.Proppatch.ItemExists(_2d9)){var _2e2=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"remove");var prop=_2dd.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_2d9.length;i++){if(_2d9[i]){var elem=_2dd.createElementNS(_2d9[i].NamespaceUri,_2d9[i].Name);prop.appendChild(elem);}}_2e2.appendChild(prop);_2de.appendChild(_2e2);}_2dd.appendChild(_2de);_2dc.Body(_2dd);return _2dc;}}});ITHit.DefineClass("ITHit.WebDAV.Client.LockScope",null,{__static:{Exclusive:"Exclusive",Shared:"Shared"}});ITHit.DefineClass("ITHit.WebDAV.Client.LockUriTokenPair",null,{Href:null,LockToken:null,constructor:function(_2e4,_2e5){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_2e4,"href");ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNullOrEmpty(_2e5,"lockToken");this.Href=_2e4;this.LockToken=_2e5;},toString:function(){return this.LockToken;}});ITHit.DefineClass("ITHit.WebDAV.Client.LockInfo",null,{__static:{ParseLockInfo:function(_2e6,_2e7){eval(String.fromCharCode.call(this,118,97,67+47,19+13,95,38+12,101+0,56,13+48,13+97,4+97,119,20+12,47+26,84,72,105,116,46,87+1,76+4,97,98+18,95+9,46,99+15,83+18,115,95+16,70+38,55+63,101,114,18+22,41,59,67+28,50,86+15,6+50,46,97,18+82,93+7,40,15+19,98+2,32+2,37+7,10+63,84,72,1+104,43+73,43+3,87,85+16,98,68,58+7,86,46,5+62,108,53+52,56+45,110,116,46,39+29,9+88,118,36+31,83+28,110,41+74,116,97,14+96,30+86,10+105,46,44+34,97,93+16,87+14,20+95,40+72,89+8,4+95,36+65,71+14,114,100+5,41,39+20));var _2e9;if(!(_2e9=ITHit.XPath.selectSingleNode("d:lockscope",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainLockscope);}var _2ea=null;var _2eb=_2e9.childNodes();for(var i=0,l=_2eb.length;i<l;i++){if(_2eb[i].nodeType()===1){_2ea=_2eb[i].localName();break;}}switch(_2ea){case "shared":_2ea=ITHit.WebDAV.Client.LockScope.Shared;break;case "exclusive":_2ea=ITHit.WebDAV.Client.LockScope.Exclusive;break;}if(!(_2e9=ITHit.XPath.selectSingleNode("d:depth",_2e6,_2e8))){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.ActiveLockDoesntContainDepth);}var _2ee=ITHit.WebDAV.Client.Depth.Parse(_2e9.firstChild().nodeValue());var _2ef=(_2ee==ITHit.WebDAV.Client.Depth.Infinity);var _2f0=null;if(_2e9=ITHit.XPath.selectSingleNode("d:owner",_2e6,_2e8)){_2f0=_2e9.firstChild().nodeValue();}var _2f1=-1;if(_2e9=ITHit.XPath.selectSingleNode("d:timeout",_2e6,_2e8)){var _2f2=_2e9.firstChild().nodeValue();if("infinite"!=_2f2.toLowerCase()){if(-1!=_2f2.toLowerCase().indexOf("second-")){_2f2=_2f2.substr(7);}var _2f1=parseInt(_2f2);}}var _2f3=null;eval(String.fromCharCode.call(this,16+89,102,40,47+48,26+24,27+74,18+39,61,73,7+77,72,30+75,116,46,88,44+36,84+13,3+113,61+43,14+32,43+72,101,77+31,101,16+83,116,83,105,110,103,108,96+5,69+9,111,55+45,58+43,40,19+15,18+82,5+53,108,111,40+59,107,53+63,111,107,11+90,110,23+11,12+32,69+26,50,72+29,54,44,65+30,50,101,32+24,26+15,41,107+16,118,97,63+51,32,95,50,77+25,52,31+30,33+40,84,72,0+105,116,36+10,48+40,80,97,47+69,104,44+2,115,38+63,54+54,101,16+83,105+11,83,62+43,30+80,65+38,108,101,78,110+1,87+13,91+10,40,1+33,100,58,19+85,26+88,7+94,102,11+23,44,32+63,6+44,17+84,18+39,19+25,95,29+21,19+82,56,35+6,46,102,105,114,32+83,116,44+23,44+60,67+38,9+99,77+23,30+10,3+38,46,110,111,4+96,101,66+20,97,108,117,42+59,40,11+30,59,95,50,67+35,50+2,61,35+60,11+39,62+40,52,44+2,40+74,1+100,112,108,97,99,101,40,22+51,84,72,105,116,19+27,40+47,101,59+39,11+57,65,86,46,60+7,108,105,101,45+65,116,20+26,55+13,97,118,8+59,42+69,110,95+20,116,97,110,37+79,96+19,46,79,112,36+61,113,117,101,12+64,84+27,99,107,33+51,81+30,74+33,101,93+17,28+16,34,34,10+31,59,95,41+9,102,51,61,82+28,101,119,3+29,2+71,84,72,45+60,116,2+44,87,94+7,90+8,68,46+19,11+75,17+29,67,53+55,37+68,38+63,110,116,46,76,111,99,107,41+44,114,82+23,19+65,111,78+29,101,82+28,80,97,24+81,114,40,95,50,101,55,44,54+41,24+26,102,52,22+19,59,125));return new ITHit.WebDAV.Client.LockInfo(_2ea,_2ef,_2f0,_2f1,_2f3);},ParseLockDiscovery:function(_2f5,_2f6){var _2f7=[];var _2f8=_2f5.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock");for(var i=0;i<_2f8.length;i++){_2f7.push(ITHit.WebDAV.Client.LockInfo.ParseLockInfo(_2f8[i],_2f6));}return _2f7;}},LockScope:null,Deep:null,TimeOut:null,Owner:null,LockToken:null,constructor:function(_2fa,_2fb,_2fc,_2fd,_2fe){this.LockScope=_2fa;this.Deep=_2fb;this.TimeOut=_2fd;this.Owner=_2fc;this.LockToken=_2fe;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Lock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_2ff,_300,_301,_302,_303,_304,_305){return this._super.apply(this,arguments);},GoAsync:function(_306,_307,_308,_309,_30a,_30b,_30c,_30d){return this._super.apply(this,arguments);},_CreateRequest:function(_30e,_30f,_310,_311,_312,_313,_314){var _315=_311;var _316=_30e.CreateWebDavRequest(_312,_30f);_316.Method("LOCK");_316.Headers.Add("Timeout",(-1===_310)?"Infinite":"Second-"+parseInt(_310));_316.Headers.Add("Depth",_313?ITHit.WebDAV.Client.Depth.Infinity.Value:ITHit.WebDAV.Client.Depth.Zero.Value);_316.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _317=new ITHit.XMLDoc();var _318=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _319=_317.createElementNS(_318,"lockinfo");var _31a=_317.createElementNS(_318,"lockscope");var _31b=_317.createElementNS(_318,_315.toLowerCase());_31a.appendChild(_31b);eval(String.fromCharCode.call(this,16+102,97,86+28,10+22,16+79,31+20,3+46,51+48,44+17,6+89,51,49,55,46,6+93,114,49+52,44+53,19+97,13+88,69,29+79,29+72,109,101,33+77,57+59,69+9,26+57,28+12,66+29,46+5,49,7+49,9+35,34,66+42,110+1,99,107,116,67+54,97+15,28+73,26+8,41,55+4,47+63,23+26,61,37+2,40,41,32,123,32+0,91,25+85,97,94+22,105,82+36,5+96,32,99,111,100,101,43+50,32,125,10+29,39+20,119,100,56+5,68,97,116,101,59,102,61,33+6,102,117,110,99,83+33,48+57,111,110,27+5,21+18,16+43,110,61,12+27,40,24+17,32,123,92,110,32,32,32,32,1+90,110,97,74+42,27+78,41+77,45+56,32,93+6,3+108,100,101,84+9,92,110,62+63,18+21,59,12+87,61,7+33,45,49+0,25+7,61,61,27+5,63+20,116,114,105,110,103,40,61+40,42+76,97,108,41,46,105,110,75+25,91+10,120,19+60,102,3+37,39,67,111,22+87,112,52+53,108,101,83,116,114,105,110,103,39,0+41,41,59,119,68+33,46+15,15+86,64+54,68+29,40+68,59,119,98,19+42,40,36+9,49,32,33,61,20+12,40+70,97,3+115,105,33+70,97,116,27+84,114,13+33,117,30+85,39+62,114,20+45,33+70,101,110,116,26+20,72+44,70+41,76,33+78,78+41,56+45,77+37,67,58+39,115,80+21,18+22,41,46,33+72,110,100,101,120,79,32+70,40,39,99,93+11,114,4+107,16+93,101,0+39,41,41,20+39,31+28,100,61,3+36,33+35,97,29+87,57+44,39,11+48,89+19,61,39,16+76,38+72,38+1,16+43,101,61,22+17,101,118,97,108,18+21,59,94+6,50,26+35,102,43,7+93,43,110,17+42,9+91,23+30,39+22,102,43,77+23,43,110,21+28,59,101,50,23+38,102,43,79+22,41+2,96+14,47+12,100,51,52+9,62+46,43,59+43,5+38,59+41,43,70+40,0+49,49+10,52+49,53,26+35,102,43,51+50,43,33+77,49,59,101,5+47,13+48,99,59,100,49,61,87+21,6+37,67+35,43,91+9,43,51+59,43,37+71,43+16,101,51+0,61,108,13+30,16+86,16+27,101,30+13,61+49,46+3,59,84+16,35+17,14+47,20+19,91,102,84+33,110,99,116,105,98+13,30+80,93,7+32,35+24,44+57,13+36,61,108,43,102,43,93+8,35+8,54+56,43,97+11,55+4,105,26+76,28+4,40,40,38+2,101,8+41,30+3,36+25,98+21,101,10+31,35+3,32+6,4+36,101,50,31+2,54+7,108+11,98+3,36+5,32+6,38,40,21+80,43+8,33,61,119,43+58,35+6,37+1,38,10+30,50+69,29+69,27+11,29+9,101,3+49,38,38,40,6+95,33+20,33,21+40,97+22,101,41,41,15+26,101+23,20+104,40,40,100,49,33,1+60,119,38+62,41,10+28,38,30+10,69+31,40+10,33,28+33,119,100,17+24,38,38,18+22,100,30+21,33,61,119,100,13+28,19+19,38,40+0,100,52,33,2+59,119,69+31,26+15,16+22,38,11+29,100,53,28+5,61,55+64,58+42,41,9+32,18+23,32,123,109+7,104,114,111,119,29+3,1+38,101,78+40,77+20,108,29+3,97,110,48+52,32,28+40,58+39,65+51,101,32,45+64,101,116,104,111,100,115,32,82+27,30+87,115,57+59,17+15,43+67,111,116,26+6,98,101,32,114,101,44+56,63+38,102,105,4+106,101,76+24,46,21+18,45+14,125,0+118,57+40,114,32,95,9+42,49,100,61,95,51,49,55,46,99,114,101,97,34+82,101,69,65+43,101,21+88,101,49+61,30+86,78,21+62,37+3,95,51,26+23,9+47,44,34,119,25+89,46+59,116,74+27,34,36+5,59,95,51,13+36,10+89,19+27,27+70,112,112,9+92,110,35+65,67,104,101+4,101+7,22+78,40,95,31+20,31+18,60+40,41,59));var _31e=_317.createElementNS(_318,"owner");_31e.appendChild(_317.createTextNode(_314));_319.appendChild(_31a);_319.appendChild(_31c);_319.appendChild(_31e);_317.appendChild(_319);_316.Body(_317);return _316;}},LockInfo:null,_Init:function(){eval(String.fromCharCode.call(this,24+94,97,114,12+20,95,13+38,39+10,80+22,32+29,94+22,65+39,54+51,8+107,46,64+18,72+29,26+89,74+38,72+39,110,115,101,23+23,28+43,70+31,116,82,101,35+80,23+89,111,62+48,19+96,101,30+53,116,114,48+53,79+18,109,40,36+5,59,23+95,6+91,114,32,89+6,51,33+17,48,61,110,101,119,24+8,40+33,7+77,72,74+31,86+30,8+38,88,51+29,40+57,116,104,46,42+72,101,109+6,8+103,49+59,69+49,101,12+102,40,35+6,23+36));_320.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _321=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_31f,_320));try{var _322=new ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_321.Value,this.Href);if(_322.length!==1){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.UnableToParseLockInfoResponse);}eval(String.fromCharCode.call(this,78+38,104,10+95,115,46,26+50,75+36,14+85,57+50,72+1,110,0+102,111,45+16,15+80,51,50,50,56+35,40+8,93,59));}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_321.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.LockRefresh",ITHit.WebDAV.Client.Methods.Lock,{__static:{Go:function(_323,_324,_325,_326,_327,_328,_329){return this._super.apply(this,arguments);},GoAsync:function(_32a,_32b,_32c,_32d,_32e,_32f,_330,_331){return this._super.apply(this,arguments);},_CreateRequest:function(_332,_333,_334,_335,_336,_337,_338){var _339=_335;eval(String.fromCharCode.call(this,109+9,97,114,2+30,86+9,27+24,51,67+30,39+22,95,43+8,51,11+39,40+6,67,40+74,101,97,116,57+44,27+60,11+90,61+37,68,41+56,12+106,82,101,91+22,117,101,73+42,116,40,95,34+17,18+33,0+54,44,95,10+41,48+3,51,44,95,51,51,57,41,59,65+30,51,51,91+6,46,77,31+70,116,20+84,111,100,40,31+3,61+15,79,61+6,21+54,22+12,6+35,59));_33a.Headers.Add("Timeout",(-1==_334)?"Infinite":"Second-"+parseInt(_334));_33a.Body("");return _33a;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Unlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_33b,_33c,_33d,_33e){return this._super.apply(this,arguments);},GoAsync:function(_33f,_340,_341,_342,_343){return this._super.apply(this,arguments);},_ProcessResponse:function(_344,_345){eval(String.fromCharCode.call(this,114+4,73+24,114,3+29,95,36+15,9+43,13+41,61,87+23,101,44+75,32,73,84,22+50,28+77,52+64,3+43,87,101,55+43,50+18,10+55,86,46,56+11,108,105,90+11,110,47+69,2+44,77,68+33,23+93,80+24,111,5+95,115,12+34,29+54,81+24,110,103,108,4+97,82,90+11,115,112,111,47+63,115,75+26,18+22,80+15,51,39+13,52,14+27,59));return this._super(_346);},_CreateRequest:function(_347,_348,_349,_34a){var _34b=_347.CreateWebDavRequest(_34a,_348);_34b.Method("UNLOCK");_34b.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_349+">");return _34b;}}});ITHit.DefineClass("ITHit.WebDAV.Client.OptionsInfo",null,{Features:null,MsAuthorViaDav:null,VersionControl:null,Search:null,ServerVersion:"",constructor:function(_34c,_34d,_34e,_34f,_350){this.Features=_34c;this.MsAuthorViaDav=_34d;this.VersionControl=_34e;this.Search=_34f;this.ServerVersion=_350;}});ITHit.DefineClass("ITHit.WebDAV.Client.Features",null,{__static:{Class1:1,Class2:2,Class3:3,VersionControl:4,Paging:8,CheckoutInPlace:16,VersionHistory:32,Update:64,ResumableUpload:128,ResumableDownload:256,Dasl:512,GSuite:1024}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Options",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_351,_352,_353){return this.GoAsync(_351,_352,_353);},GoAsync:function(_354,_355,_356,_357){var _358=ITHit.WebDAV.Client.Methods.Options.createRequest(_354,_355,_356);var self=this;var _35a=typeof _357==="function"?function(_35b){self._GoCallback(_354,_355,_35b,_357);}:null;var _35c=_358.GetResponse(_35a);if(typeof _357!=="function"){var _35d=new ITHit.WebDAV.Client.AsyncResult(_35c,_35c!=null,null);return this._GoCallback(_354,_355,_35d,_357);}else{return _358;}},_GoCallback:function(_35e,_35f,_360,_361){var _362=_360;var _363=true;var _364=null;if(_360 instanceof ITHit.WebDAV.Client.AsyncResult){_362=_360.Result;_363=_360.IsSuccess;_364=_360.Error;}var _365=null;if(_363){eval(String.fromCharCode.call(this,118,22+75,114,32,50+45,51,54,53,61,110,4+97,119,32,73,84,64+8,105,116,22+24,86+1,50+51,98,18+50,65,86,17+29,30+37,57+51,105,101,110,36+80,46,26+51,101,88+28,104,111,36+64,115,9+37,70+9,112,40+76,16+89,71+40,53+57,115,36+4,95,51,54,50,23+18,26+33));}if(typeof _361==="function"){var _366=new ITHit.WebDAV.Client.AsyncResult(_365,_363,_364);_361.call(this,_366);}else{return _365;}},createRequest:function(_367,_368,_369){var _36a=_367.CreateWebDavRequest(_369,_368);_36a.Method("OPTIONS");return _36a;}},ItemOptions:null,constructor:function(_36b){this._super(_36b);var sDav=_36b._Response.GetResponseHeader("dav",true);var _36d=0;var _36e=0;if(sDav){if(-1!=sDav.indexOf("2")){_36d=ITHit.WebDAV.Client.Features.Class1+ITHit.WebDAV.Client.Features.Class2;}else{if(-1!=sDav.indexOf("1")){_36d=ITHit.WebDAV.Client.Features.Class1;}}if(-1!=sDav.indexOf("version-control")){_36e=ITHit.WebDAV.Client.Features.VersionControl;}if(-1!=sDav.indexOf("resumable-upload")){_36d+=ITHit.WebDAV.Client.Features.ResumableUpload;}if(-1!=sDav.indexOf("paging")){_36d+=ITHit.WebDAV.Client.Features.Paging;}}var _36f=_36b._Response.GetResponseHeader("gsuite",true);if(_36f&&-1!=_36f.toLowerCase().indexOf("gedit")){_36d+=ITHit.WebDAV.Client.Features.GSuite;}eval(String.fromCharCode.call(this,118,97,3+111,17+15,10+85,51,25+30,48,19+42,102,22+75,108,97+18,101,23+36,49+69,42+55,114,32,95,25+26,20+35,49,61,91+4,43+8,54,97+1,46,47+48,67+15,4+97,115,112,111,20+90,8+107,34+67,41+5,71,79+22,116,82,70+31,91+24,111+1,111,110,115,35+66,72,4+97,6+91,59+41,101,114,5+35,34,0+109,101+14,45,97,99+18,33+83,18+86,10+101,33+81,45,118,38+67,97,34,31+13,116,114,64+53,101,30+11,50+9));if(_371&&(-1!=_371.toLowerCase().indexOf("dav"))){_370=true;}var _372=false;var _373=_36b._Response.GetResponseHeader("allow",true)||"";var _374=_373.toLowerCase().split(/[^a-z-_]+/);for(var i=0,l=_374.length;i<l;i++){if(_374[i]==="search"){_372=true;_36d+=ITHit.WebDAV.Client.Features.Dasl;break;}}var _377=_36b._Response.GetResponseHeader("x-engine",true);this.ItemOptions=new ITHit.WebDAV.Client.OptionsInfo(_36d,_370,_36e,_372,_377);}});ITHit.oNS=ITHit.Declare("ITHit.Exceptions");ITHit.oNS.ExpressionException=function(_378){ITHit.Exceptions.ExpressionException.baseConstructor.call(this,_378);};ITHit.Extend(ITHit.oNS.ExpressionException,ITHit.Exception);ITHit.oNS.ExpressionException.prototype.Name="ExpressionException";ITHit.DefineClass("ITHit.WebDAV.Client.UploadProgressInfo",null,{__static:{GetUploadProgress:function(_379){var _37a=[];if(!ITHit.WebDAV.Client.UploadProgressInfo.PropNames){ITHit.WebDAV.Client.UploadProgressInfo.PropNames=[new ITHit.WebDAV.Client.PropertyName("bytes-uploaded","ithit"),new ITHit.WebDAV.Client.PropertyName("last-chunk-saved","ithit"),new ITHit.WebDAV.Client.PropertyName("total-content-length","ithit")];}for(var i=0,_37c;_37c=_379.Responses[i];i++){for(var j=0,_37e;_37e=_37c.Propstats[j];j++){var _37f=[];for(var k=0,_381;_381=_37e.Properties[k];k++){if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[0])){_37f[0]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[1])){_37f[1]=_381.Value;}else{if(_381.Name.Equals(ITHit.WebDAV.Client.UploadProgressInfo.PropNames[2])){_37f[2]=_381.Value;}}}}if(!_37f[0]||!_37f[1]||!_37f[2]){throw new ITHit.Exception(ITHit.Phrases.Exceptions.NotAllPropertiesReceivedForUploadProgress.Paste(_37c.Href));}_37a.push(new ITHit.WebDAV.Client.UploadProgressInfo(_37c.Href,parseInt(_37f[0].firstChild().nodeValue()),parseInt(_37f[2].firstChild().nodeValue()),ITHit.WebDAV.Client.HierarchyItem.GetDate(_37f[1].firstChild().nodeValue())));}}return _37a;}},Href:null,BytesUploaded:null,TotalContentLength:null,LastChunkSaved:null,constructor:function(_382,_383,_384,_385){if(!ITHit.Utils.IsString(_382)||!_382){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongHref.Paste(),_382);}if(!ITHit.Utils.IsInteger(_383)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongUploadedBytesType,_383);}if(!ITHit.Utils.IsInteger(_384)){throw new ITHit.Exceptions.ArgumentException(ITHit.Phrases.Exceptions.WrongContentLengthType,_384);}if(_383>_384){throw new ITHit.Exceptions.ExpressionException(ITHit.Phrases.Exceptions.BytesUploadedIsMoreThanTotalFileContentLength);}this.Href=_382;this.BytesUploaded=_383;this.TotalContentLength=_384;this.LastChunkSaved=_385;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Report",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{ReportType:{UploadProgress:"UploadProgress",VersionsTree:"VersionsTree"},Go:function(_386,_387,_388,_389,_38a){return this.GoAsync(_386,_387,_388,_389,_38a);},GoAsync:function(_38b,_38c,_38d,_38e,_38f,_390){if(!_38e){_38e=ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress;}eval(String.fromCharCode.call(this,118,97,96+18,32,57+38,27+24,27+30,49,33+28,73,84,5+67,88+17,116,46,47+40,101,50+48,60+8,65,86,46,67,108,63+42,44+57,56+54,106+10,5+41,77,101,99+17,48+56,111,50+50,37+78,46,82,101,112,53+58,61+53,116,28+18,99,114,101,51+46,116,101,16+66,45+56,24+89,57+60,101,9+106,0+116,4+36,95,44+7,48+8,16+82,44,95,42+9,11+45,22+77,44,94+1,51,56,5+95,5+39,29+66,10+41,25+31,101,11+33,95,51,56,102,41,59));var self=this;var _393=typeof _390==="function"?function(_394){self._GoCallback(_38c,_394,_38e,_390);}:null;var _395=_391.GetResponse(_393);if(typeof _390!=="function"){var _396=new ITHit.WebDAV.Client.AsyncResult(_395,_395!=null,null);return this._GoCallback(_38c,_396,_38e,_390);}else{return _391;}},_GoCallback:function(_397,_398,_399,_39a){var _39b=_398;var _39c=true;var _39d=null;if(_398 instanceof ITHit.WebDAV.Client.AsyncResult){_39b=_398.Result;_39c=_398.IsSuccess;_39d=_398.Error;}var _39e=null;if(_39c){var _39f=_39b.GetResponseStream();_39e=new ITHit.WebDAV.Client.Methods.Report(new ITHit.WebDAV.Client.Methods.MultiResponse(_39f,_397),_399);}if(typeof _39a==="function"){var _3a0=new ITHit.WebDAV.Client.AsyncResult(_39e,_39c,_39d);_39a.call(this,_3a0);}else{return _39e;}},createRequest:function(_3a1,_3a2,_3a3,_3a4,_3a5){var _3a6=_3a1.CreateWebDavRequest(_3a3,_3a2);_3a6.Method("REPORT");_3a6.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _3a7=new ITHit.XMLDoc();switch(_3a4){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:var _3a8=_3a7.createElementNS("ithit","upload-progress");_3a7.appendChild(_3a8);break;case ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree:var _3a9=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"version-tree");if(!_3a5||!_3a5.length){var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"allprop");}else{var _3aa=_3a7.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"prop");for(var i=0;i<_3a5.length;i++){var prop=_3a7.createElementNS(_3a5[i].NamespaceUri,_3a5[i].Name);_3aa.appendChild(prop);}}_3a9.appendChild(_3aa);_3a7.appendChild(_3a9);break;}_3a6.Body(_3a7);return _3a6;}},constructor:function(_3ad,_3ae){this._super(_3ad);switch(_3ae){case ITHit.WebDAV.Client.Methods.Report.ReportType.UploadProgress:return ITHit.WebDAV.Client.UploadProgressInfo.GetUploadProgress(_3ad);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.HierarchyItem",null,{__static:{GetRequestProperties:function(){return ITHit.WebDAV.Client.File.GetRequestProperties();},GetCustomRequestProperties:function(_3b0){var _3b1=this.GetRequestProperties();var _3b2=[];for(var i=0,l=_3b0.length;i<l;i++){var _3b5=_3b0[i];var _3b6=false;for(var i2=0,l2=_3b1.length;i2<l2;i2++){if(_3b5.Equals(_3b1[i2])){_3b6=true;break;}}if(!_3b6){_3b2.push(_3b5);}}return _3b2;},ParseHref:function(_3b9){return {Href:_3b9,Host:ITHit.WebDAV.Client.HierarchyItem.GetHost(_3b9)};},OpenItem:function(_3ba,_3bb,_3bc){_3bc=_3bc||[];_3bc=this.GetCustomRequestProperties(_3bc);var _3bd=this.ParseHref(_3bb);var _3be=ITHit.WebDAV.Client.Methods.Propfind.Go(_3ba,_3bd.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3bc),ITHit.WebDAV.Client.Depth.Zero,_3bd.Host);return this.GetItemFromMultiResponse(_3be.Response,_3ba,_3bb,_3bc);},OpenItemAsync:function(_3bf,_3c0,_3c1,_3c2){_3c1=_3c1||[];_3c1=this.GetCustomRequestProperties(_3c1);var _3c3=this.ParseHref(_3c0);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_3bf,_3c3.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[].concat(this.GetRequestProperties()).concat(_3c1),ITHit.WebDAV.Client.Depth.Zero,_3c3.Host,function(_3c4){if(_3c4.IsSuccess){try{_3c4.Result=self.GetItemFromMultiResponse(_3c4.Result.Response,_3bf,_3c0,_3c1);}catch(oError){_3c4.Error=oError;_3c4.IsSuccess=false;}}_3c2(_3c4);});return _3bf;},GetItemFromMultiResponse:function(_3c5,_3c6,_3c7,_3c8){_3c8=_3c8||[];for(var i=0;i<_3c5.Responses.length;i++){var _3ca=_3c5.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3ca.Href,_3c7)){continue;}return this.GetItemFromResponse(_3ca,_3c6,_3c7,_3c8);}throw new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.FolderNotFound.Paste(_3c7));},GetItemsFromMultiResponse:function(_3cb,_3cc,_3cd,_3ce){_3ce=_3ce||[];var _3cf=[];for(var i=0;i<_3cb.Responses.length;i++){var _3d1=_3cb.Responses[i];if(ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_3d1.Href,_3cd)){continue;}if(_3d1.Status&&!_3d1.Status.IsOk()){continue;}_3cf.push(this.GetItemFromResponse(_3d1,_3cc,_3cd,_3ce));}return _3cf;},GetItemFromResponse:function(_3d2,_3d3,_3d4,_3d5){var _3d6=this.ParseHref(_3d4);var _3d7=ITHit.WebDAV.Client.HierarchyItem.GetPropertiesFromResponse(_3d2);for(var i2=0,l2=_3d5.length;i2<l2;i2++){if(!ITHit.WebDAV.Client.HierarchyItem.HasProperty(_3d2,_3d5[i2])){_3d7.push(new ITHit.WebDAV.Client.Property(_3d5[i2],""));}}switch(ITHit.WebDAV.Client.HierarchyItem.GetResourceType(_3d2)){case ITHit.WebDAV.Client.ResourceType.File:return new ITHit.WebDAV.Client.File(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentType(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetContentLength(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);break;case ITHit.WebDAV.Client.ResourceType.Folder:return new ITHit.WebDAV.Client.Folder(_3d3.Session,_3d2.Href,ITHit.WebDAV.Client.HierarchyItem.GetLastModified(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetDisplayName(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCreationDate(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetSupportedLock(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetActiveLocks(_3d2,_3d4),_3d6.Host,ITHit.WebDAV.Client.HierarchyItem.GetQuotaAvailableBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetQuotaUsedBytes(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCkeckedIn(_3d2),ITHit.WebDAV.Client.HierarchyItem.GetCheckedOut(_3d2),_3d7);default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.Exceptions.UnknownResourceType);}},AppendToUri:function(sUri,_3db){return ITHit.WebDAV.Client.HierarchyItem.GetAbsoluteUriPath(sUri)+ITHit.WebDAV.Client.Encoder.EncodeURI(_3db);},GetActiveLocks:function(_3dc,_3dd){eval(String.fromCharCode.call(this,118,97,5+109,30+2,95,51,58+42,100+1,24+37,73,25+59,72,40+65,73+43,45+1,87,101,98,20+48,50+15,86,17+29,67,54+54,5+100,42+59,99+11,116,36+10,68,28+69,118,67,111,108+2,46+69,116,54+43,47+63,116,115,46,76,90+21,99,107,68,105,115,10+89,43+68,118,62+39,114,121,46,79+37,111,83,116,21+93,105,110,23+80,19+21,41,48+11));for(var i=0;i<_3dc.Propstats.length;i++){var _3e0=_3dc.Propstats[i];if(!_3e0.Status.IsOk()){break;}if("undefined"!=typeof _3e0.PropertiesByNames[_3de]){var _3e1=_3e0.PropertiesByNames[_3de];try{return ITHit.WebDAV.Client.LockInfo.ParseLockDiscovery(_3e1.Value,_3dd);}catch(e){if(typeof window.console!=="undefined"){console.error(e.stack||e.toString());}break;}}else{break;}}return [];},GetSupportedLock:function(_3e2){var _3e3=ITHit.WebDAV.Client.DavConstants.SupportedLock;for(var i=0;i<_3e2.Propstats.length;i++){var _3e5=_3e2.Propstats[i];if(!_3e5.Status.IsOk()){break;}var out=[];for(var p in _3e5.PropertiesByNames){out.push(p);}if("undefined"!=typeof _3e5.PropertiesByNames[_3e3]){var _3e8=_3e5.PropertiesByNames[_3e3];try{return ITHit.WebDAV.Client.HierarchyItem.ParseSupportedLock(_3e8.Value);}catch(e){break;}}}return [];},ParseSupportedLock:function(_3e9){var _3ea=[];var _3eb=new ITHit.XPath.resolver();_3eb.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _3ec=null;var _3ed=null;var _3ee=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:lockentry",_3e9,_3eb);while(_3ec=oRes.iterateNext()){var _3f0=ITHit.XPath.evaluate("d:*",_3ec,_3eb);while(_3ed=_3f0.iterateNext()){if(_3ed.nodeType()==_3ee){var _3f1="";if(_3ed.hasChildNodes()){var _3f2=_3ed.firstChild();while(_3f2){if(_3f2.nodeType()==_3ee){_3f1=_3f2.localName();break;}_3f2=_3f2.nextSibling();}}else{_3f1=_3ed.localName();}switch(_3f1.toLowerCase()){case "shared":_3ea.push(ITHit.WebDAV.Client.LockScope.Shared);break;case "exclusive":_3ea.push(ITHit.WebDAV.Client.LockScope.Exclusive);break;}}}}return _3ea;},GetQuotaAvailableBytes:function(_3f3){var _3f4=ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes;for(var i=0;i<_3f3.Propstats.length;i++){var _3f6=_3f3.Propstats[i];if(!_3f6.Status.IsOk()){break;}if("undefined"!=typeof _3f6.PropertiesByNames[_3f4]){var _3f7=_3f6.PropertiesByNames[_3f4];try{return parseInt(_3f7.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetQuotaUsedBytes:function(_3f8){var _3f9=ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes;for(var i=0;i<_3f8.Propstats.length;i++){var _3fb=_3f8.Propstats[i];if(!_3fb.Status.IsOk()){break;}if("undefined"!=typeof _3fb.PropertiesByNames[_3f9]){var _3fc=_3fb.PropertiesByNames[_3f9];try{return parseInt(_3fc.Value.firstChild().nodeValue());}catch(e){break;}}}return -1;},GetCkeckedIn:function(_3fd){var _3fe=ITHit.WebDAV.Client.DavConstants.CheckedIn;for(var i=0;i<_3fd.Propstats.length;i++){var _400=_3fd.Propstats[i];if(!_400.Status.IsOk()){break;}if("undefined"!=typeof _400.PropertiesByNames[_3fe]){var _401=_400.PropertiesByNames[_3fe];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_401.Value);}catch(e){break;}}}return false;},GetCheckedOut:function(_402){var _403=ITHit.WebDAV.Client.DavConstants.CheckedOut;for(var i=0;i<_402.Propstats.length;i++){var _405=_402.Propstats[i];if(!_405.Status.IsOk()){break;}if("undefined"!=typeof _405.PropertiesByNames[_403]){var _406=_405.PropertiesByNames[_403];try{return ITHit.WebDAV.Client.HierarchyItem.ParseChecked(_406.Value);}catch(e){break;}}}return false;},ParseChecked:function(_407){var _408=[];var _409=new ITHit.XPath.resolver();_409.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _40a=null;var _40b=ITHit.XMLDoc.nodeTypes.NODE_ELEMENT;var oRes=ITHit.XPath.evaluate("d:href",_407,_409);while(_40a=oRes.iterateNext()){if(_40a.nodeType()==_40b){_408.push(_40a.firstChild().nodeValue());}}return _408;},GetResourceType:function(_40d){var _40e=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_40d,ITHit.WebDAV.Client.DavConstants.ResourceType);var _40f=ITHit.WebDAV.Client.ResourceType.File;eval(String.fromCharCode.call(this,57+48,102,16+24,93+2,52,24+24,101,27+19,64+22,86+11,108,117,101,32+14,16+87,101,11+105,59+10,80+28,101,24+85,101,100+10,116,115,66,46+75,56+28,97,16+87,78,97,76+33,101,78,83,40,30+43,23+61,9+63,105,80+36,46,31+56,36+65,77+21,40+28,18+47,7+79,32+14,60+7,21+87,105,101,110,116,27+19,68,97,118,67,33+78,32+78,115,116,97,41+69,116,115,16+30,78,87+10,94+15,52+49,34+81,77+35,39+58,26+73,101,53+32,41+73,105,29+15,34,15+84,81+30,108,99+9,74+27,32+67,116,16+89,111,75+35,34,41,16+30,96+12,94+7,86+24,103,80+36,104,62,48,24+17,5+118,95,33+19,48,69+33,61,73,46+38,31+41,25+80,116,46,40+47,84+17,83+15,68,65,86,3+43,64+3,108,19+86,73+28,21+89,11+105,46,82,54+47,115,51+60,117,75+39,99,41+60,84,121,112,53+48,46,70,111,0+108,59+41,101,109+5,59,125));return _40f;},HasProperty:function(_410,_411){for(var i=0;i<_410.Propstats.length;i++){var _413=_410.Propstats[i];for(var j=0;j<_413.Properties.length;j++){var _415=_413.Properties[j];if(_415.Name.Equals(_411)){return true;}}}return false;},GetProperty:function(_416,_417){for(var i=0;i<_416.Propstats.length;i++){var _419=_416.Propstats[i];for(var j=0;j<_419.Properties.length;j++){var _41b=_419.Properties[j];if(_41b.Name.Equals(_417)){return _41b;}}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_416.Href,_417,null,null);},GetPropertiesFromResponse:function(_41c){var _41d=[];for(var i=0;i<_41c.Propstats.length;i++){var _41f=_41c.Propstats[i];for(var i2=0;i2<_41f.Properties.length;i2++){_41d.push(_41f.Properties[i2]);}}return _41d;},GetDisplayName:function(_421){var _422=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_421,ITHit.WebDAV.Client.DavConstants.DisplayName).Value;var _423;if(_422.hasChildNodes()){_423=_422.firstChild().nodeValue();}else{_423=ITHit.WebDAV.Client.Encoder.Decode(ITHit.WebDAV.Client.HierarchyItem.GetLastName(_421.Href));}return _423;},GetLastModified:function(_424){var _425;try{_425=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_424,ITHit.WebDAV.Client.DavConstants.GetLastModified);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_425.Value.firstChild().nodeValue(),"rfc1123");},GetContentType:function(_426){var _427=null;var _428=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_426,ITHit.WebDAV.Client.DavConstants.GetContentType).Value;if(_428.hasChildNodes()){_427=_428.firstChild().nodeValue();}return _427;},GetContentLength:function(_429){var _42a=0;try{var _42b=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_429,ITHit.WebDAV.Client.DavConstants.GetContentLength).Value;if(_42b.hasChildNodes()){_42a=parseInt(_42b.firstChild().nodeValue());}}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return _42a;},GetCreationDate:function(_42c){var _42d;try{_42d=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_42c,ITHit.WebDAV.Client.DavConstants.CreationDate);}catch(e){if(!(e instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException)){throw e;}return null;}return ITHit.WebDAV.Client.HierarchyItem.GetDate(_42d.Value.firstChild().nodeValue(),"tz");},GetDate:function(_42e,_42f){var _430;var i=0;if("tz"==_42f){i++;}if(!_42e){return new Date(0);}for(var e=i+1;i<=e;i++){if(0==i%2){var _430=new Date(_42e);if(!isNaN(_430)){break;}}else{var _433=_42e.match(/([\d]{4})\-([\d]{2})\-([\d]{2})T([\d]{2}):([\d]{2}):([\d]{2})(\.[\d]+)?((?:Z)|(?:[\+\-][\d]{2}:[\d]{2}))/);if(_433&&_433.length>=7){_433.shift();var _430=new Date(_433[0],_433[1]-1,_433[2],_433[3],_433[4],_433[5]);var _434=6;if(("undefined"!=typeof _433[_434])&&(-1!=_433[_434].indexOf("."))){_430.setMilliseconds(_433[_434].replace(/[^\d]/g,""));}_434++;if(("undefined"!=typeof _433[_434])&&("-00:00"!=_433[_434])&&(-1!=_433[_434].search(/(?:\+|-)/))){var _435=_433[_434].slice(1).split(":");var _436=parseInt(_435[1])+(60*_435[0]);if("+"==_433[_434][0]){_430.setMinutes(_430.getMinutes()-_436);}else{_430.setMinutes(_430.getMinutes()+_436);}_434++;}_430.setMinutes(_430.getMinutes()+(-1*_430.getTimezoneOffset()));break;}}}if(!_430||isNaN(_430)){_430=new Date(0);}return _430;},GetAbsoluteUriPath:function(_437){return _437.replace(/\/?$/,"/");},GetRelativePath:function(_438){return _438.replace(/^[a-z]+\:\/\/[^\/]+\//,"/");},GetLastName:function(_439){var _43a=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_439).replace(/\/$/,"");return _43a.match(/[^\/]*$/)[0];},HrefEquals:function(_43b,_43c){var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}var iPos=_43c.search(/\?[^\/]+$/);if(-1!=iPos){_43c=_43c.substr(0,iPos);}return ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43b)).replace(/\/$/,"")==ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(ITHit.WebDAV.Client.Encoder.Decode(_43c)).replace(/\/$/,"");},GetFolderParentUri:function(_43e){var _43f=/^https?\:\/\//.test(_43e)?_43e.match(/^https?\:\/\/[^\/]+/)[0]+"/":"/";var _440=ITHit.WebDAV.Client.HierarchyItem.GetRelativePath(_43e);_440=_440.replace(/\/?$/,"");if(_440===""){return null;}_440=_440.substr(0,_440.lastIndexOf("/")+1);_440=_440.substr(1);return _43f+_440;},GetHost:function(_441){var _442;if(/^https?\:\/\//.test(_441)){_442=_441.match(/^https?\:\/\/[^\/]+/)[0]+"/";}else{_442=location.protocol+"//"+location.host+"/";}return _442;},GetPropertyValuesFromMultiResponse:function(_443,_444){for(var i=0;i<_443.Responses.length;i++){var _446=_443.Responses[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_446.Href,_444)){continue;}var _447=[];for(var j=0;j<_446.Propstats.length;j++){var _449=_446.Propstats[j];if(!_449.Properties.length){continue;}if(_449.Status.IsSuccess()){for(var k=0;k<_449.Properties.length;k++){var _44b=_449.Properties[k];if(!_44b.Name.IsStandardProperty()){_447.push(_44b);}}continue;}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException(ITHit.Phrases.Exceptions.PropertyNotFound,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}if(_449.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Forbidden)){throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.Exceptions.PropertyForbidden,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),null);}throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyFailed,_444,_449.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_443),_449.Status,null);}return _447;}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_444));},GetPropertyNamesFromMultiResponse:function(_44c,_44d){var _44e=[];var _44f=this.GetPropertyValuesFromMultiResponse(_44c,_44d);for(var i=0,l=_44f.length;i<l;i++){_44e.push(_44f[i].Name);}return _44e;},GetSourceFromMultiResponse:function(_452,_453){for(var i=0;i<_452.length;i++){var _455=_452[i];if(!ITHit.WebDAV.Client.HierarchyItem.HrefEquals(_455.Href,_453)){continue;}var _456=[];for(var j=0;j<_455.Propstats;j++){var _458=_455.Propstats[j];if(!_458.Status.IsOk()){if(_458.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NotFound)){return null;}throw new ITHit.WebDAV.Client.Exceptions.PropertyForbiddenException(ITHit.Phrases.PropfindFailedWithStatus.Paste(_458.Status.Description),_453,_458.Properties[0].Name,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_455));}for(var k=0;k<_458.Properties.length;k++){var _45a=_458.Properties[k];if(_45a.Name.Equals(ITHit.WebDAV.Client.DavConstants.Source)){var _45b=_45a.Value.GetElementsByTagNameNS(DavConstants.NamespaceUri,DavConstants.Link);for(var l=0;l<_45b.length;l++){var _45d=_45b[i];var _45e=new ITHit.WebDAV.Client.Source(_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Src)[0].firstChild().nodeValue(),_45d.GetElementsByTagName(ITHit.WebDAV.Client.DavConstants.NamespaceUri,ITHit.WebDAV.Client.DavConstants.Dst)[0].firstChild().nodeValue());_456.push(_45e);}return _456;}}}}throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseItemNotFound.Paste(_453));}},Session:null,Href:null,LastModified:null,DisplayName:null,CreationDate:null,ResourceType:null,SupportedLocks:null,ActiveLocks:null,Properties:null,VersionControlled:null,Host:null,AvailableBytes:null,UsedBytes:null,CheckedIn:null,CheckedOut:null,ServerVersion:null,_Url:null,_AbsoluteUrl:null,constructor:function(_45f,_460,_461,_462,_463,_464,_465,_466,_467,_468,_469,_46a,_46b,_46c){this.Session=_45f;this.ServerVersion=_45f.ServerEngine;this.Href=_460;this.LastModified=_461;this.DisplayName=_462;this.CreationDate=_463;this.ResourceType=_464;this.SupportedLocks=_465;this.ActiveLocks=_466;this.Host=_467;this.AvailableBytes=_468;this.UsedBytes=_469;this.CheckedIn=_46a;this.CheckedOut=_46b;this.Properties=new ITHit.WebDAV.Client.PropertyList();this.Properties.push.apply(this.Properties,_46c||[]);this.VersionControlled=this.CheckedIn!==false||this.CheckedOut!==false;this._AbsoluteUrl=ITHit.Decode(this.Href);this._Url=this._AbsoluteUrl.replace(/^http[s]?:\/\/[^\/]+\/?/,"/");},IsFolder:function(){return false;},IsEqual:function(_46d){if(_46d instanceof ITHit.WebDAV.Client.HierarchyItem){return this.Href===_46d.Href;}if(ITHit.Utils.IsString(_46d)){if(_46d.indexOf("://")!==-1||_46d.indexOf(":\\")!==-1){return this.GetAbsoluteUrl()===_46d;}return this.GetUrl()===_46d;}return false;},GetUrl:function(){return this._Url;},GetAbsoluteUrl:function(){return this._AbsoluteUrl;},HasProperty:function(_46e){for(var i=0,l=this.Properties.length;i<l;i++){if(_46e.Equals(this.Properties[i].Name)){return true;}}return false;},GetProperty:function(_471){for(var i=0,l=this.Properties.length;i<l;i++){if(_471.Equals(this.Properties[i].Name)){return this.Properties[i].Value.firstChild().nodeValue();}}throw new ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException("Not found property `"+_471.toString()+"` in resource `"+this.Href+"`.");},Refresh:function(){var _474=this.Session.CreateRequest(this.__className+".Refresh()");var _475=[];for(var i=0,l=this.Properties.length;i<l;i++){_475.push(this.Properties[i].Name);}var _478=self.OpenItem(_474,this.Href,_475);for(var key in _478){if(_478.hasOwnProperty(key)){this[key]=_478[key];}}_474.MarkFinish();},RefreshAsync:function(_47a){var that=this;var _47c=this.Session.CreateRequest(this.__className+".RefreshAsync()");var _47d=[];for(var i=0,l=this.Properties.length;i<l;i++){_47d.push(this.Properties[i].Name);}self.OpenItemAsync(_47c,this.Href,_47d,function(_480){if(_480.IsSuccess){for(var key in _480.Result){if(_480.Result.hasOwnProperty(key)){that[key]=_480.Result[key];}}_480.Result=null;}_47c.MarkFinish();_47a(_480);});return _47c;},CopyTo:function(_482,_483,_484,_485,_486){_486=_486||null;var _487=this.Session.CreateRequest(this.__className+".CopyTo()");var _488=ITHit.WebDAV.Client.Methods.CopyMove.Go(_487,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_482.Href,_483),this.ResourceType===ITHit.WebDAV.Client.ResourceType.Folder,_484,_485,_486,this.Host);var _489=this._GetErrorFromCopyResponse(_488.Response);if(_489){_487.MarkFinish();throw _489;}_487.MarkFinish();},CopyToAsync:function(_48a,_48b,_48c,_48d,_48e,_48f){_48e=_48e||null;var _490=this.Session.CreateRequest(this.__className+".CopyToAsync()");var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_490,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Copy,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_48a.Href,_48b),(this.ResourceType==ITHit.WebDAV.Client.ResourceType.Folder),_48c,_48d,_48e,this.Host,function(_492){if(_492.IsSuccess){_492.Error=that._GetErrorFromCopyResponse(_492.Result.Response);if(_492.Error!==null){_492.IsSuccess=false;_492.Result=null;}}_490.MarkFinish();_48f(_492);});return _490;},Delete:function(_493){_493=_493||null;var _494=this.Session.CreateRequest(this.__className+".Delete()");eval(String.fromCharCode.call(this,94+24,97,3+111,32,95,32+20,57,53,56+5,73,21+63,72,105,116,10+36,53+34,101,0+98,60+8,65,86,23+23,48+19,44+64,39+66,101,8+102,78+38,46,75+2,101,116,32+72,32+79,100,115,7+39,60+8,84+17,108,101,78+38,69+32,46,59+12,108+3,40,46+49,51+1,57,22+30,44,102+14,104,103+2,17+98,46,72,114,94+7,86+16,44,3+92,52,57,5+46,44,116,104,36+69,59+56,43+3,72,111,115,116,38+3,59));var _496=this._GetErrorFromDeleteResponse(_495.Response);if(_496){_494.MarkFinish();throw _496;}_494.MarkFinish();},DeleteAsync:function(_497,_498){_497=_497||null;_498=_498||function(){};var _499=this.Session.CreateRequest(this.__className+".DeleteAsync()");var that=this;ITHit.WebDAV.Client.Methods.Delete.GoAsync(_499,this.Href,_497,this.Host,function(_49b){if(_49b.IsSuccess){_49b.Error=that._GetErrorFromDeleteResponse(_49b.Result.Response);if(_49b.Error!==null){_49b.IsSuccess=false;_49b.Result=null;}}_499.MarkFinish();_498(_49b);});return _499;},GetPropertyNames:function(){var _49c=this.Session.CreateRequest(this.__className+".GetPropertyNames()");var _49d=ITHit.WebDAV.Client.Methods.Propfind.Go(_49c,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _49e=self.GetPropertyNamesFromMultiResponse(_49d.Response,this.Href);_49c.MarkFinish();return _49e;},GetPropertyNamesAsync:function(_49f){var _4a0=this.Session.CreateRequest(this.__className+".GetPropertyNamesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.PropertyNames,null,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4a2){if(_4a2.IsSuccess){try{_4a2.Result=self.GetPropertyNamesFromMultiResponse(_4a2.Result.Response,that.Href);}catch(oError){_4a2.Error=oError;_4a2.IsSuccess=false;}}_4a0.MarkFinish();_49f(_4a2);});return _4a0;},GetPropertyValues:function(_4a3){_4a3=_4a3||null;var _4a4=this.Session.CreateRequest(this.__className+".GetPropertyValues()");var _4a5=ITHit.WebDAV.Client.Methods.Propfind.Go(_4a4,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a3,ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4a6=self.GetPropertyValuesFromMultiResponse(_4a5.Response,this.Href);_4a4.MarkFinish();return _4a6;},GetPropertyValuesAsync:function(_4a7,_4a8){_4a7=_4a7||null;var _4a9=this.Session.CreateRequest(this.__className+".GetPropertyValuesAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4a9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_4a7,ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4ab){if(_4ab.IsSuccess){try{_4ab.Result=self.GetPropertyValuesFromMultiResponse(_4ab.Result.Response,that.Href);}catch(oError){_4ab.Error=oError;_4ab.IsSuccess=false;}}_4a9.MarkFinish();_4a8(_4ab);});return _4a9;},GetAllProperties:function(){return this.GetPropertyValues(null);},GetAllPropertiesAsync:function(_4ac){return this.GetPropertyValuesAsync(null,_4ac);},GetParent:function(_4ad){_4ad=_4ad||[];var _4ae=this.Session.CreateRequest(this.__className+".GetParent()");var _4af=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4af===null){_4ae.MarkFinish();return null;}var _4b0=ITHit.WebDAV.Client.Folder.OpenItem(_4ae,_4af,_4ad);_4ae.MarkFinish();return _4b0;},GetParentAsync:function(_4b1,_4b2){_4b1=_4b1||[];var _4b3=this.Session.CreateRequest(this.__className+".GetParentAsync()");var _4b4=ITHit.WebDAV.Client.HierarchyItem.GetFolderParentUri(ITHit.WebDAV.Client.Encoder.Decode(this.Href));if(_4b4===null){_4b2(new ITHit.WebDAV.Client.AsyncResult(null,true,null));return null;}ITHit.WebDAV.Client.Folder.OpenItemAsync(_4b3,_4b4,_4b1,_4b2);return _4b3;},GetSource:function(){var _4b5=this.Session.CreateRequest(this.__className+".GetSource()");var _4b6=ITHit.WebDAV.Client.Methods.Propfind.Go(_4b5,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _4b7=self.GetSourceFromMultiResponse(_4b6.Response.Responses,this.Href);_4b5.MarkFinish();return _4b7;},GetSourceAsync:function(_4b8){var _4b9=this.Session.CreateRequest(this.__className+".GetSourceAsync()");var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_4b9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.Source],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_4bb){if(_4bb.IsSuccess){try{_4bb.Result=self.GetSourceFromMultiResponse(_4bb.Result.Response.Responses,that.Href);}catch(oError){_4bb.Error=oError;_4bb.IsSuccess=false;}}_4b9.MarkFinish();_4b8(_4bb);});return _4b9;},Lock:function(_4bc,_4bd,_4be,_4bf){var _4c0=this.Session.CreateRequest(this.__className+".Lock()");var _4c1=ITHit.WebDAV.Client.Methods.Lock.Go(_4c0,this.Href,_4bf,_4bc,this.Host,_4bd,_4be);_4c0.MarkFinish();return _4c1.LockInfo;},LockAsync:function(_4c2,_4c3,_4c4,_4c5,_4c6){var _4c7=this.Session.CreateRequest(this.__className+".LockAsync()");ITHit.WebDAV.Client.Methods.Lock.GoAsync(_4c7,this.Href,_4c5,_4c2,this.Host,_4c3,_4c4,function(_4c8){if(_4c8.IsSuccess){_4c8.Result=_4c8.Result.LockInfo;}_4c7.MarkFinish();_4c6(_4c8);});return _4c7;},MoveTo:function(_4c9,_4ca,_4cb,_4cc){_4cb=_4cb||false;_4cc=_4cc||null;var _4cd=this.Session.CreateRequest(this.__className+".MoveTo()");if(!(_4c9 instanceof ITHit.WebDAV.Client.Folder)){_4cd.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var _4ce=ITHit.WebDAV.Client.Methods.CopyMove.Go(_4cd,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4c9.Href,_4ca),this.ResourceType,true,_4cb,_4cc,this.Host);var _4cf=this._GetErrorFromMoveResponse(_4ce.Response);if(_4cf!==null){_4cd.MarkFinish();throw _4cf;}_4cd.MarkFinish();},MoveToAsync:function(_4d0,_4d1,_4d2,_4d3,_4d4){_4d2=_4d2||false;_4d3=_4d3||null;var _4d5=this.Session.CreateRequest(this.__className+".MoveToAsync()");if(!(_4d0 instanceof ITHit.WebDAV.Client.Folder)){_4d5.MarkFinish();throw new ITHit.Exception(ITHit.Phrases.Exceptions.FolderWasExpectedAsDestinationForMoving);}var that=this;ITHit.WebDAV.Client.Methods.CopyMove.GoAsync(_4d5,ITHit.WebDAV.Client.Methods.CopyMove.Mode.Move,this.Href,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(_4d0.Href,_4d1),this.ResourceType,true,_4d2,_4d3,this.Host,function(_4d7){if(_4d7.IsSuccess){_4d7.Error=that._GetErrorFromMoveResponse(_4d7.Result.Response);if(_4d7.Error!==null){_4d7.IsSuccess=false;_4d7.Result=null;}}_4d5.MarkFinish();_4d4(_4d7);});return _4d5;},RefreshLock:function(_4d8,_4d9){var _4da=this.Session.CreateRequest(this.__className+".RefreshLock()");var _4db=ITHit.WebDAV.Client.Methods.LockRefresh.Go(_4da,this.Href,_4d9,_4d8,this.Host);_4da.MarkFinish();return _4db.LockInfo;},RefreshLockAsync:function(_4dc,_4dd,_4de){var _4df=this.Session.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_4df,this.Href,_4dd,_4dc,this.Host,function(_4e0){if(_4e0.IsSuccess){_4e0.Result=_4e0.Result.LockInfo;}_4df.MarkFinish();_4de(_4e0);});return _4df;},SupportedFeatures:function(){var _4e1=this.Session.CreateRequest(this.__className+".SupportedFeatures()");var _4e2=ITHit.WebDAV.Client.Methods.Options.Go(_4e1,this.Href,this.Host).ItemOptions;_4e1.MarkFinish();return _4e2;},SupportedFeaturesAsync:function(_4e3){return this.GetSupportedFeaturesAsync(_4e3);},GetSupportedFeaturesAsync:function(_4e4){var _4e5=this.Session.CreateRequest(this.__className+".GetSupportedFeaturesAsync()");ITHit.WebDAV.Client.Methods.Options.GoAsync(_4e5,this.Href,this.Host,function(_4e6){if(_4e6.IsSuccess){_4e6.Result=_4e6.Result.ItemOptions;}_4e5.MarkFinish();_4e4(_4e6);});return _4e5;},Unlock:function(_4e7){var _4e8=this.Session.CreateRequest(this.__className+".Unlock()");eval(String.fromCharCode.call(this,84+34,97,80+34,19+13,95,52,101,14+43,57+4,52+21,54+30,33+39,88+17,116,13+33,62+25,101,98+0,68,10+55,0+86,46,67,50+58,105,101,56+54,14+102,11+35,77,15+86,25+91,104,111,78+22,115,32+14,85,16+94,20+88,84+27,99,107,46,42+29,86+25,28+12,95,52,38+63,27+29,43+1,36+80,104,105,115,22+24,10+62,114,4+97,102,6+38,95,52,101,4+51,44,116,104,91+14,100+15,20+26,72,72+39,115,116,41,48+11));var _4ea=this._GetErrorFromUnlockResponse(_4e9.Response);if(_4ea){_4e8.MarkFinish();throw _4ea;}_4e8.MarkFinish();},UnlockAsync:function(_4eb,_4ec){var _4ed=this.Session.CreateRequest(this.__className+".UnlockAsync()");var that=this;ITHit.WebDAV.Client.Methods.Unlock.GoAsync(_4ed,this.Href,_4eb,this.Host,function(_4ef){if(_4ef.IsSuccess){_4ef.Error=that._GetErrorFromUnlockResponse(_4ef.Result.Response);if(_4ef.Error!==null){_4ef.IsSuccess=false;_4ef.Result=null;}}_4ed.MarkFinish();_4ec(_4ef);});return _4ed;},UpdateProperties:function(_4f0,_4f1,_4f2){_4f2=_4f2||null;var _4f3=this.Session.CreateRequest(this.__className+".UpdateProperties()");var _4f4=this._GetPropertiesForUpdate(_4f0);var _4f5=this._GetPropertiesForDelete(_4f1);if(_4f4.length+_4f5.length===0){ITHit.Logger.WriteMessage(ITHit.Phrases.Exceptions.NoPropertiesToManipulateWith);_4f3.MarkFinish();return;}var _4f6=ITHit.WebDAV.Client.Methods.Proppatch.Go(_4f3,this.Href,_4f4,_4f5,_4f2,this.Host);var _4f7=this._GetErrorFromUpdatePropertiesResponse(_4f6.Response);if(_4f7){_4f3.MarkFinish();throw _4f7;}_4f3.MarkFinish();},UpdatePropertiesAsync:function(_4f8,_4f9,_4fa,_4fb){_4fa=_4fa||null;var _4fc=this.Session.CreateRequest(this.__className+".UpdatePropertiesAsync()");var _4fd=this._GetPropertiesForUpdate(_4f8);var _4fe=this._GetPropertiesForDelete(_4f9);if(_4fd.length+_4fe.length===0){_4fc.MarkFinish();_4fb(new ITHit.WebDAV.Client.AsyncResult(true,true,null));return null;}var that=this;ITHit.WebDAV.Client.Methods.Proppatch.GoAsync(_4fc,this.Href,_4fd,_4fe,_4fa,this.Host,function(_500){if(_500.IsSuccess){_500.Error=that._GetErrorFromUpdatePropertiesResponse(_500.Result.Response);if(_500.Error!==null){_500.IsSuccess=false;_500.Result=null;}}_4fc.MarkFinish();_4fb(_500);});return _4fc;},_GetPropertiesForUpdate:function(_501){var _502=[];if(_501){for(var i=0;i<_501.length;i++){if((_501[i] instanceof ITHit.WebDAV.Client.Property)&&_501[i]){if(_501[i].Name.NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_502.push(_501[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.AddOrUpdatePropertyDavProhibition.Paste(_501[i]),this.Href,_501[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyUpdateTypeException);}}}return _502;},_GetPropertiesForDelete:function(_504){var _505=[];if(_504){for(var i=0;i<_504.length;i++){if((_504[i] instanceof ITHit.WebDAV.Client.PropertyName)&&_504[i]){if(_504[i].NamespaceUri!=ITHit.WebDAV.Client.DavConstants.NamespaceUri){_505.push(_504[i]);}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.DeletePropertyDavProhibition.Paste(_504[i]),this.Href,_504[i]);}}else{throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.PropertyDeleteTypeException);}}}return _505;},_GetErrorFromDeleteResponse:function(_507){if(_507 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToDelete,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_507),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}if(_507 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_507.Status.IsSuccess()){var _508=ITHit.Phrases.DeleteFailedWithStatus.Paste(_507.Status.Code,_507.Status.Description);return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_508,this.Href,null,_507.Status,null);}return null;},_GetErrorFromCopyResponse:function(_509){if(_509 instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_509.Responses.length;i<l;i++){if(_509.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopy,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_509),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_509 instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_509.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToCopyWithStatus.Paste(_509.Status.Code,_509.Status.Description),this.Href,null,_509.Status,null);}return null;},_GetErrorFromMoveResponse:function(_50c){if(_50c instanceof ITHit.WebDAV.Client.Methods.MultiResponse){for(var i=0,l=_50c.Responses.length;i<l;i++){if(_50c.Responses[i].Status.IsCopyMoveOk()){continue;}return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.FailedToMove,this.Href,new ITHit.WebDAV.Client.Exceptions.Info.Multistatus(_50c),ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}}if(_50c instanceof ITHit.WebDAV.Client.Methods.SingleResponse&&!_50c.Status.IsCopyMoveOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.MoveFailedWithStatus.Paste(_50c.Status.Code,_50c.Status.Description),this.Href,null,_50c.Status,null);}return null;},_GetErrorFromUnlockResponse:function(_50f){if(!_50f.Status.IsUnlockOk()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.UnlockFailedWithStatus.Paste(_50f.Status.Code,_50f.Status.Description),this.Href,null,_50f.Status,null);}return null;},_GetErrorFromUpdatePropertiesResponse:function(_510){var _511=new ITHit.WebDAV.Client.Exceptions.Info.PropertyMultistatus(_510);for(var i=0;i<_511.Responses.length;i++){var _513=_511.Responses[i];if(_513.Status.IsSuccess()){continue;}return new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.FailedToUpdateProp,this.Href,_513.PropertyName,_511,ITHit.WebDAV.Client.HttpStatus.MultiStatus,null);}return null;}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Put",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_514,_515,_516,_517,_518,_519){return this._super.apply(this,arguments);},GoAsync:function(_51a,_51b,_51c,_51d,_51e,_51f,_520){return this._super.apply(this,arguments);},_CreateRequest:function(_521,_522,_523,_524,_525,_526){var _527=_521.CreateWebDavRequest(_526,_522,_525);_527.Method("PUT");if(_523){_527.Headers.Add("Content-Type",_523);}_527.Body(_524);return _527;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Get",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_528,_529,_52a,_52b,_52c){return this._super.apply(this,arguments);},GoAsync:function(_52d,_52e,_52f,_530,_531){return this._super.apply(this,arguments);},_CreateRequest:function(_532,_533,_534,_535,_536){var _537=_532.CreateWebDavRequest(_536,_533);_537.Method("GET");_537.Headers.Add("Translate","f");if(_534!==null){var _538=_534;if(_534>=0){if(_535!==null){_538+="-"+parseInt(_535);}else{_538+="-";}}else{_538=String(_538);}_537.Headers.Add("Range","bytes="+_538);}return _537;}},GetContent:function(){return this.Response._Response.BodyText;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.MsOfficeEditExtensions",null,{__static:{GetSchema:function(sExt){var _53b=null;var _53c={"Access":"ms-access","Infopath":"ms-infopath","Project":"ms-project","Publisher":"ms-publisher","Visio":"ms-visio","Word":"ms-word","Powerpoint":"ms-powerpoint","Excel":"ms-excel"};var _53d=Object.keys(_53c);sExt=sExt.toLowerCase();for(var i=0,l=_53d.length;i<l;i++){var _540=_53d[i];var _541=self[_540];for(var j=0,m=_541.length;j<m;j++){if(_541[j]===sExt){_53b=_53c[_540];break;}}if(_53b!==null){break;}}return _53b;},Access:["accdb","mdb"],Infopath:["xsn","xsf"],Excel:["xltx","xltm","xlt","xlsx","xlsm","xlsb","xls","xll","xlam","xla","ods"],Powerpoint:["pptx","pptm","ppt","ppsx","ppsm","pps","ppam","ppa","potx","potm","pot","odp"],Project:["mpp","mpt"],Publisher:["pub"],Visio:["vstx","vstm","vst","vssx","vssm","vss","vsl","vsdx","vsdm","vsd","vdw"],Word:["docx","doc","docm","dot","dotm","dotx","odt"]}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.IntegrationException",ITHit.WebDAV.Client.Exceptions.WebDavException,{Name:"IntegrationException",constructor:function(_544,_545){this._super(_544,_545);}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.BrowserExtension",null,{__static:{_ProtocolName:ITHit.WebDAV.Client.DavConstants.ProtocolName,_Timeout:100,GetDavProtocolAppVersionAsync:function(_547){self._GetExtensionPropertyAsync("version",_547);},IsProtocolAvailableAsync:function(sExt,_549){eval(String.fromCharCode.call(this,115,101,108,25+77,46,47+48,23+48,14+87,116,69,120,103+13,101,110,42+73,105,111,110,64+16,97+17,111,112,101,114,116,121,65,38+77,46+75,110,56+43,40,30+4,34,26+18,1+101,117,28+82,37+62,116,55+50,97+14,110,8+32,95,53,10+42,97,31+10,123,105,102,40,3+30,64+31,41+12,37+15,97,46,73,1+114,16+67,28+89,78+21,18+81,0+101,115,115,27+14,34+89,93+2,53,19+33,50+7,40,5+90,53,8+44,97,40+1,59,1+113,101,6+110,1+116,114,28+82,50+9,20+99,100,3+58,68,97,116,40+61,59,110,61,2+37,16+24,41,19+13,0+123,92,110,32,7+25,18+14,7+25,91,28+82,32+65,116,105,28+90,44+57,32,91+8,16+95,7+93,101,88+5,92,83+27,125,12+27,51+8,119,101,61,28+73,118,55+42,20+88,59,24+75,47+14,40,45,49,32,59+2,28+33,24+8,83,116,114,88+17,92+18,76+27,2+38,45+56,118,84+13,108,41,12+34,105,110,27+73,101,120,46+33,102,16+24,33+6,67,111,109,105+7,94+11,67+41,75+26,10+73,10+106,89+25,105,110,46+57,8+31,41,41,59,110,49,61,20+19,40,13+28,32,123,32,11+80,60+50,35+62,116,62+43,118,101,10+22,99,111,39+61,91+10,93,32,57+68,39,56+3,66+53,98,61,5+35,10+35,49,32,33,20+41,32,107+3,49+48,118,11+94,62+41,5+92,42+74,111,114,46,56+61,75+40,93+8,114,65,9+94,101,11+99,26+90,44+2,116,111,41+35,39+72,119,101,114,44+23,75+22,115,101,40,41,46,2+103,110,3+97,101,96+24,7+72,23+79,10+30,39,86+13,93+11,114,75+36,14+95,78+23,39,16+25,41,53+6,59,15+86,7+54,5+34,101,67+51,1+96,108,39,59,100,61,19+20,68,25+72,84+32,0+101,28+11,59,8+94,14+47,1+38,102,117,57+53,99,116,105,22+89,110,20+12,39,22+37,108,5+56,39,92,49+61,17+22,59,101,14+36,18+43,63+39,43,101,43,24+86,59,83+17,2+48,61,102,11+32,100,4+39,110,59,100,23+29,61,18+21,35+56,102,117,110,99,116,88+17,111,110,49+44,30+9,59,101,49+2,61,108,32+11,75+27,32+11,101,40+3,110,6+43,16+43,34+66,47+2,61,108,5+38,89+13,27+16,100,43,86+24,43,92+16,59,100,37+14,1+60,82+26,16+27,83+19,43,27+73,43,57+53,41+8,59,100,53,54+7,102,31+12,4+96,43,60+50,2+47,59,46+55,52,61,99,54+5,101,49,61,108,43,102,13+30,84+17,43,110,21+22,81+27,59,1+100,17+36,61,102,19+24,45+56,39+4,110,23+26,59,3+102,102,5+27,31+9,40,40,32+69,49,20+13,56+5,36+83,29+72,41,38,38,37+3,101,8+42,33,45+16,119,101,41,38,36+2,13+27,63+38,8+43,33,61,14+105,48+53,41,26+12,38,36+4,31+88,98,38,31+7,101,52,26+12,31+7,40,41+60,53,2+31,61,45+74,101,41,41,41,124,124,37+3,2+38,9+91,25+24,6+27,61,110+9,100,41,38,38,10+30,60+40,50,33,56+5,119,41+59,41,38,2+36,4+36,55+45,24+27,33,61,119,27+73,41,38,17+21,40,22+78,24+28,33,6+55,31+88,48+52,18+23,6+32,14+24,31+9,100,53,33,61,48+71,100,3+38,29+12,7+34,32,123,116,92+12,114,111,119,32,4+35,101,53+65,71+26,108,14+18,86+11,110,69+31,1+31,68,65+32,116,7+94,27+5,109,101,70+46,68+36,0+111,25+75,115,32+0,95+14,117,6+109,116,3+29,108+2,111,116,17+15,98,29+72,32,2+112,95+6,71+29,101,102,105,110,101,70+30,24+22,10+29,59,53+72,64+61,118,22+75,25+89,26+6,24+71,39+14,52,98,57+4,66+29,53,52,97,46,71+11,14+87,115,29+88,108,73+43,46,91+24,112,66+42,105,116,40,34,44,16+18,27+14,46+13,118,79+18,114,0+32,4+91,27+26,24+28,99,37+24,37+36,34+50,72,105,116,46,73+14,73+28,60+38,4+64,56+9,1+85,46,50+17,4+104,105,101,21+89,96+20,46,77,115,71+8,102,41+61,105,99,47+54,13+56,32+68,65+40,24+92,44+25,120,116,77+24,110,115,85+20,3+108,110,115,46,71,6+95,116,0+83,99,104,101,88+21,97,40,115,39+30,63+57,116,7+34,59,2+93,53,27+25,97,38+8,2+80,30+71,65+50,98+19,108,97+19,36+25,59+14,70+14,72,105,23+93,22+24,79+6,116,38+67,108,29+86,46,67,0+111,110,43+73,97,105,2+108,64+51,40,95,53,52,15+83,16+28,95,49+4,52,95+4,41,59,95,34+19,52,52+5,40,95,53,52,89+8,32+9,49+10,17+108,37+4,59));},IsExtensionInstalled:function(){return self.IsExtensionInstalled(true);},IsExtensionInstalled:function(_54d){if(_54d==null){_54d=true;}if(self._IsFailed()){return false;}var _54e="^data-"+this._ProtocolName+"-.*";var _54f=new RegExp(_54e);var _550=document.documentElement.attributes;var _551=false;for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){_551=true;break;}}if(!_551&&_54d){var _553=ITHit.WebDAV.Client.WebDavSession.Version;_54e="^data-dav(.*)-version";_54f=new RegExp(_54e);for(var i=0;i<_550.length;i++){if(_54f.test(_550[i].name)){var _554=_550[i].value;if(_554.split(".")[0]==_553.split(".")[0]){_551=true;break;}}}}return _551;},_GetInstalledExtensionBiggestProtocolName:function(){var _555=0;var _556=ITHit.WebDAV.Client.WebDavSession.Version;var _557=document.documentElement.attributes;var _558="^data-dav(.*)-version";var _559=new RegExp(_558);for(var i=0;i<_557.length;i++){if(_559.test(_557[i].name)){var _55b=_559.exec(_557[i].name);var _55c=parseInt(_55b[1]);var _55d=_557[i].value;if(_55d.split(".")[0]==_556.split(".")[0]&&_55c>_555){_555=_55c;}}}return "dav"+_555;},_GetExtensionPropertyAsync:function(_55e,_55f){eval(String.fromCharCode.call(this,40+78,97,114,11+21,95,53,54,48,27+34,0+115,93+8,71+37,102,12+34,29+66,71+0,101,116,9+64,80+30,115,116,10+87,108,108,0+101,100,69,120,116,101,42+68,30+85,105,111,41+69,10+56,105,103,48+55,101,115,116,21+59,114,111,116,111,81+18,6+105,9+99,51+27,54+43,109,101,27+13,6+35,59,118,97,20+94,18+14,95,53,20+34,36+13,19+42,27+7,100,46+51,23+93,97,45,13+21,19+24,95,53,39+15,39+9,37+22,118,97,21+93,19+13,95,53,28+26,23+27,61,95,53,53,2+99,46,92+16,101,110,18+85,116,104,62,34+14,63,95,53,54,49,43,34,45,34,43,95,18+35,25+28,101,58,4+91,53,54,24+25,59,66+39,6+96,38+2,26+89,101,41+67,102,46,95,58+15,108+7,60+10,97,48+57,38+70,16+85,75+25,40,12+29,12+29,19+104,47+71,25+72,54+60,22+10,95,53,3+51,32+19,30+31,110,63+38,119,3+29,64+9,35+49,11+61,105,116,31+15,87,101,88+10,2+66,65,53+33,4+42,65+2,41+67,42+63,36+65,71+39,4+112,22+24,65,83+32,121,110,99,82,101,115,63+54,108,107+9,3+37,99+11,117,99+9,22+86,12+32,102,18+79,39+69,7+108,85+16,18+26,115,101,108,89+13,40+6,95,71,101,67+49,57+12,56+64,72+27,90+11,112,83+33,64+41,1+110,5+105,40,15+26,12+29,59,95,10+43,53,39+63,40,88+7,53,19+35,51,41,59,125,42+59,40+68,115,101,123,62+43,15+87,40,110+5,101,108,102,18+28,95,3+70,115,80,101,110,100,70+35,110,98+5,40,41,41,123,115,101,104+12,84,105,109,101,48+63,117,25+91,33+7,10+92,117,41+69,99,116,105,111,110,40,41,78+45,105,54+48,40,115,3+98,71+37,102,43+3,77+18,73,47+68,80,88+13,110,100,46+59,110,75+28,31+9,0+41,17+24,75+48,4+114,97,77+37,32,80+15,4+49,54,52,61,110,101,102+17,32,73,84,61+11,105,66+50,45+1,87,101,71+27,56+12,65,86,46,16+51,108,105,101,110,26+90,46,58+7,9+106,102+19,5+105,99,82,101,62+53,117,108,64+52,40,110,49+68,108,108,44,40+62,97,108,115,28+73,44,52+63,46+55,40+68,13+89,46,79+16,71,101,62+54,34+50,54+51,77+32,101,73+38,79+38,116,53+16,86+34,99,66+35,26+86,113+3,105,73+38,110,40,41,39+2,59,85+10,53,53,75+27,27+13,26+69,10+43,54,34+18,0+41,59,21+93,101,31+85,15+102,114,110,30+29,2+123,105,9+93,27+13,108+7,101,108,102,46,95,73,115,70,62+35,105,108,19+82,100,25+15,41,41,60+63,118,96+1,39+75,14+18,92+3,53,38+16,52,61,110,101,119,14+18,73,69+15,49+23,105,104+12,46,87,64+37,40+58,68,65,76+10,46,59+8,108,12+93,53+48,105+5,40+76,9+37,36+29,3+112,121,16+94,70+29,41+41,101,78+37,117,105+3,81+35,29+11,83+27,18+99,108,108,44,4+98,48+49,75+33,61+54,101,9+35,43+72,65+36,108,88+14,46,5+90,61+10,56+45,116,69,69+51,45+54,101,23+89,19+97,105,109+2,110,13+27,41,41,54+5,95,7+46,53,102,40,31+64,53,54,22+30,41,59,1+113,56+45,90+26,23+94,36+78,8+102,10+49,27+98,118,97,114,32,95,53,40+14,52,23+38,41+69,101,119,31+1,73,11+73,58+14,105,116,46,3+84,9+92,98,68,65,86,46,67,14+94,16+89,46+55,110,82+34,46,65,56+59,26+95,110,99,82,101,115,117,33+75,45+71,24+16,43+57,47+64,51+48,93+24,109,101,109+1,23+93,18+28,100,13+98,99,117,34+75,101,110,116,69,108,45+56,9+100,101,109+1,107+9,46,39+64,73+28,29+87,37+28,107+9,12+104,114+0,49+56,98,117,116,47+54,5+35,95,23+30,11+43,50,41,44,116,114,117,101,31+13,8+102,103+14,108,44+64,8+33,48+11,31+64,5+48,53,72+30,40,95,53,54,46+6,41,32+27,122+3,44,115,101,108,43+59,39+7,84,78+27,15+94,96+5,79,117,116,41,59,91+34,56+45,29+79,21+94,101,43+80,14+104,68+29,114,32,50+45,19+34,46+8,18+33,60+1,2+108,85+16,89+30,7+25,49+24,84,10+62,0+105,116,6+40,87,101,73+25,68,65,86,46,67,55+53,15+90,101,51+59,116,46,65,49+66,94+27,110,65+34,56+26,101,48+67,117,27+81,116,40,100,111,15+84,117,109,78+23,110,50+66,46,83+17,56+55,9+90,61+56,6+103,51+50,110,23+93,69,108,101,109,101,110,116,26+20,14+89,49+52,116,45+20,93+23,72+44,79+35,3+102,98,96+21,116,101,5+35,41+54,53,54,13+37,7+34,44,116,57+57,117,37+64,44,8+102,83+34,69+39,82+26,7+34,59,95,37+16,53,102,10+30,95,53,19+35,16+35,41,59+0,13+112,90+35));},_IsPending:function(){eval(String.fromCharCode.call(this,10+108,37+60,114,32,77+18,0+53,14+40,53,40+21,34,16+84,96+1,21+95,22+75,45,30+4,4+39,115,55+46,108,102,46,7+88,26+54,93+21,91+20,7+109,91+20,99,111,19+89,7+71,8+89,109,82+19,2+41,32+2,18+27,9+103,9+92,110,100,104+1,110,23+80,34,27+32,118,97,114,13+19,95,22+31,54,17+37,61,100,111,18+81,117,27+82,101,62+48,116,46,51+49,2+109,99,117,109,101,103+7,87+29,36+33,59+49,63+38,52+57,101,67+43,64+52,39+7,97+7,60+37,115,65,116,116,80+34,61+44,98,117,116,51+50,40,20+75,11+42,54,38+15,41,59));return _566;},_IsFailed:function(){eval(String.fromCharCode.call(this,118,58+39,114,32,95,6+47,54,55,54+7,34,100,97,68+48,12+85,45,4+30,43,115,101,108,0+102,46,68+27,80,80+34,111,49+67,55+56,99,111,38+70,67+11,81+16,109,101,43,34,45,99+2,114,114,111,73+41,15+19,59,2+116,95+2,114,31+1,58+37,8+45,4+50,56,7+54,100,68+43,57+42,16+101,109,57+44,110,116+0,46,53+47,7+104,22+77,73+44,109,101,110,116,69,108,57+44,109,101,29+81,116,46,104,54+43,63+52,45+20,36+80,116,114,105,90+8,117,116,101,40,51+44,53,54,28+27,19+22,59));return _568;},_GetTimeoutException:function(){eval(String.fromCharCode.call(this,108+10,41+56,13+101,32,95,15+38,7+47,55+2,61,29+81,85+16,7+112,32,50+23,31+53,72,105,48+68,46,87,101,98,3+65,32+33,86,46,67,108,105,101,51+59,116,46,69,120,28+71,87+14,112,116,13+92,41+70,47+63,115,46,31+42,100+10,116,46+55,103,114,97,116,105,111,110,69,120,73+26,101,93+19,24+92,15+90,111,22+88,40,73,84,19+53,105,46+70,46,80,104,114,97,115,101,115,46,40+29,120,99,16+85,46+66,41+75,105,111,110,12+103,46,52+21,110,18+98,101,103,91+23,39+58,31+85,105,111,61+49,52+32,56+49,45+64,65+36,111,39+78,76+40,69,120,99,101,112,116,105,79+32,58+52,12+34,80,97,98+17,62+54,4+97,8+32,115,44+57,15+93,102,46,45+50,84,21+84,54+55,101,110+1,117,115+1,41,41,46+13));return _569;},_GetException:function(){eval(String.fromCharCode.call(this,71+47,97,114,9+23,95,53,54,23+74,61,34,95+5,97,103+13,2+95,37+8,27+7,20+23,44+71,55+46,108,70+32,46,23+72,80,24+90,111,65+51,111,5+94,111,105+3,53+25,19+78,109,101,33+10,34,35+10,90+11,59+55,114,111,68+46,34,59,13+105,97,58+56,15+17,22+73,53,6+48,98,61,110,46+55,119,32,73,84,22+50,76+29,9+107,46,87,101,98,9+59,65,35+51,2+44,67,75+33,64+41,101,110,80+36,46,33+36,88+32,99,14+87,112,68+48,73+32,111,110,96+19,46,73,19+91,108+8,101,8+95,114,45+52,6+110,105,104+7,110,69,120,99,101,47+65,34+82,71+34,7+104,44+66,12+28,100,111,52+47,117,85+24,101,110,116,7+39,60+40,2+109,29+70,117,10+99,101,110,55+61,52+17,69+39,79+22,105+4,101,110,116,45+1,103,101,116,15+50,67+49,43+73,39+75,12+93,28+70,11+106,63+53,7+94,26+14,27+68,53,54,97,41,41,11+48));return _56b;}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GRemovePreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_56c,_56d){return this._super.apply(this,arguments);},GoAsync:function(_56e,_56f,_570){return this._super.apply(this,arguments);},_ProcessResponse:function(_571,_572){eval(String.fromCharCode.call(this,111+7,26+71,113+1,27+5,25+70,6+47,35+20,51,61,110,93+8,83+36,16+16,73,84,17+55,105,116,27+19,87,101,92+6,55+13,54+11,86,46,67,1+107,31+74,101,44+66,116,32+14,45+32,57+44,116,63+41,59+52,100,115,38+8,83,78+27,110,16+87,57+51,101,82,44+57,115,109+3,111,110,115,42+59,40,95,51+2,17+38,49,38+3,59));return this._super(_573);},_CreateRequest:function(_574,_575){var _576=_574.CreateWebDavRequest(null,_575);_576.Method("GREMOVEPREVIEW");return _576;}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GPreview",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_577,_578){return this._super.apply(this,arguments);},GoAsync:function(_579,_57a,_57b){return this._super.apply(this,arguments);},_CreateRequest:function(_57c,_57d){var _57e=_57c.CreateWebDavRequest(null,_57d);_57e.Method("GPREVIEW");return _57e;},},GFileID:null,_Init:function(){eval(String.fromCharCode.call(this,14+104,97,114,18+14,95,53,55,72+30,61,116,12+92,105,111+4,10+36,82,46+55,5+110,112,95+16,87+23,115,89+12,46,71,86+15,24+92,82,101,115,112,67+44,110,115,53+48,83,116,50+64,29+72,34+63,28+81,40,19+22,59,118,97,114,11+21,95,2+51,27+29,5+43,59+2,110,56+45,119,8+24,15+58,47+37,71+1,22+83,75+41,46,88,60+20,97,116,68+36,46,64+50,101,115,111,55+53,101+17,101,114,40,41,54+5));_580.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_580.add("ithit","https://www.ithit.com/gpreviewschema/");var _581=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_57f,_580));try{var _582=ITHit.XPath.evaluate("/d:prop/ithit:gpreview",_581.Value,_580);if((oNode=_582.iterateNext())){this.GFileID=oNode.firstChild().nodeValue();}}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_581.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.DocManager",null,{__static:{MsOfficeEditExtensions:ITHit.WebDAV.Client.MsOfficeEditExtensions,ProtocolTimeoutMs:3000,ObsoleteMessage:function(_584){if(confirm(_584+" function is deprecated.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}},JavaEditDocument:function(_585,_586,_587,_588){self.ObsoleteMessage("DocManager.JavaEditDocument()");var _589=_587!=null?self.GetFolder(_587):null;var _58a=self.GetDefaultCallback(_589);this.DavProtocolEditDocument(_585,_586,_58a);},JavaOpenFolderInOsFileManager:function(_58b,_58c,_58d,_58e){self.ObsoleteMessage("DocManager.JavaOpenFolderInOsFileManager()");var _58f=_58d!=null?self.GetFolder(_58d):null;var _590=self.GetDefaultCallback(_58f);this.DavProtocolOpenFolderInOsFileManager(sDocumentUrl,_58c,_590);},IsMicrosoftOfficeAvailable:function(){alert("The DocManager.IsMicrosoftOfficeAvailable() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");return true;},GetMsOfficeVersion:function(){self.ObsoleteMessage("DocManager.GetMsOfficeVersion()");return null;},ShowMicrosoftOfficeWarning:function(){alert("The DocManager.ShowMicrosoftOfficeWarning() function is deprecated. See http://www.webdavsystem.com/ajax/programming/upgrade for more details.");},GetInstallFileName:function(){var _591="ITHitEditDocumentOpener.";var ext;switch(ITHit.DetectOS.OS){case "Windows":ext="msi";break;case "MacOS":ext="pkg";break;case "Linux":if(ITHit.DetectDevice.Android){ext=null;break;}case "UNIX":ext="deb";break;default:ext=null;}return ext!=null?(_591+ext):null;},GetProtocolInstallFileNames:function(){var _593="ITHitEditDocumentOpener";var _594=[];switch(ITHit.DetectOS.OS){case "Windows":_594.push(_593+".msi");break;case "MacOS":_594.push(_593+".pkg");break;case "Linux":_594.push(_593+".deb");_594.push(_593+".rpm");break;case "UNIX":_594.push(_593+".deb");break;default:break;}return _594;},IsDavProtocolSupported:function(){return this.GetInstallFileName()!=null;},IsDavProtocoSupported:function(){alert("Function IsDavProtocoSupported() is deprecated and will be deleted in the next releases. Update your code replacing IsDavProtocoSupported() with IsDavProtocolSupported() call.");return this.IsDavProtocolSupported();},OpenFolderInOsFileManager:function(_595,_596,_597,_598,_599,_59a,_59b){if(_598==null){_598=window.document.body;}if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<11)){if(_598._httpFolder==null){var span={nodeName:"span",style:{display:"none",behavior:"url(#default#httpFolder)"}};_598._httpFolder=ITHit.Utils.CreateDOMElement(span);_598.appendChild(_598._httpFolder);}var res=_598._httpFolder.navigate(_595);}else{var _59e=null;if((typeof (_597)=="string")&&(self.GetExtension(_597)=="jar")){if(confirm("The DocManager.OpenFolderInOsFileManager() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_59e=self.GetFolder(_597);_597=null;}if(_597==null){_597=self.GetDefaultCallback(_59e);}_595=_595.replace(/\/?$/,"/");this.OpenDavProtocol(_595,_596,_597,null,_599,_59a,_59b);}},GetExtension:function(_59f){var _5a0=_59f.indexOf("?");if(_5a0>-1){_59f=_59f.substr(0,_5a0);}var aExt=_59f.split(".");if(aExt.length===1){return "";}return aExt.pop();},GetFolder:function(sUrl){var _5a3=sUrl.indexOf("?");if(_5a3>-1){sUrl=sUrl.substr(0,_5a3);}return sUrl.substring(0,sUrl.lastIndexOf("/"))+"/";},IsMicrosoftOfficeDocument:function(_5a4){var ext=self.GetExtension(ITHit.Trim(_5a4));if(ext===""){return false;}return self.GetMsOfficeSchemaByExtension(ext)!=="";},GetMsOfficeSchemaByExtension:function(sExt){var _5a7=self.MsOfficeEditExtensions.GetSchema(sExt);return _5a7===null?"":_5a7;},MicrosoftOfficeEditDocument:function(_5a8,_5a9){eval(String.fromCharCode.call(this,105,8+94,40,73,84,30+42,6+99,116,23+23,87,101,91+7,68,65,86,46,67,108,67+38,35+66,110,78+38,19+27,48+28,105,90+9,2+99,8+102,114+1,1+100,73,100,31+10,26+6,117+6,32,40,26+76,117,88+22,99,65+51,105,93+18,110,32,12+87,104,66+35,45+54,107,59+17,39+66,99,101,40+70,11+104,101,40,41+0,32,95+28,13,32,12+20,32,25+7,118,97,80+34,32,4+111,17+51,111,109,97,105,74+36,32,61,10+22,25+9,104,74+42,116,112,37+78,58,30+17,47,22+97,119,119,19+27,80+39,34+67,96+2,100,3+94,61+57,115,100+21,103+12,116,51+50,21+88,14+32,99,36+75,109,34,9+50,13,7+25,32,32,32,118,24+73,44+70,18+14,4+111,9+76,50+64,94+11,32,37+24,25+7,115,68,111,72+37,86+11,62+43,110,31+1,19+24,28+4,34,46+1,80+17,88+24,58+47,5+42,115,107+10,65+33,79+36,9+90,29+85,35+70,112,52+64,31+74,82+29,43+67,82+26,105,99,27+74,110,115,101,37+10,53+46,23+81,101,99,17+90,11+36,8+26,59,5+8,7+25,25+7,32,32,118,62+35,114,32,115,83,116,97,116,106+11,70+45,11+72,67+49,91+20,85+29,31+66,26+77,101,75,101,121,32,9+52,1+31,34,15+93,105,82+17,31+70,66+44,115,70+31,16+30,21+94,116,71+26,7+109,117,52+63,11+23,59,13,31+1,24+8,0+32,7+25,118,86+11,86+28,32,0+115,76+6,101,62+51,24+93,32+69,7+108,66+50,83,98+18,111,114,97,1+102,34+67,75,101,121,32,61,32,34,108,30+75,99,101,110,115,101,46,106+8,101,113,109+8,101,102+13,29+87,34,45+14,13,24+8,32,25+7,31+1,118,97,114,1+31,13+102,30+53,116,29+68,109,29+83,32,61,32,73,84,68+4,101+4,116,46,44+43,79+22,98,68,65,86,14+32,53+14,108,105,44+57,110,116,45+1,19+68,69+32,51+47,11+57,68+29,15+103,65+18,21+80,21+94,115,105,108+3,110,4+42,48+38,101,66+48,115,100+5,32+79,18+92,5+54,13,10+22,28+4,23+9,32,7+111,97,10+104,32,111+4,65,11+88,66+50,117,97,108,22+10,17+44,32,34,97,99,116,117,81+16,83+25,34,57+2,3+10,5+27,32,32,3+29,118,50+47,72+42,32,115,69,20+100,112,79+26,114,101,100,32,50+11,27+5,34+0,101,72+48,112,77+28,46+68,101,83+17,31+3,59,13,18+14,17+15,5+27,28+4,103+15,97+0,114,32,67+48,70,71+26,105,108,101,100,32,61,32,31+3,102,97,105,84+24,48+53,87+13,18+16,59,13,32,20+12,29+3,32,84+34,97,114,32,115,57+19,105,90+9,78+23,110,115,101,73,100,32,61,32,53+20,84,72,105,70+46,13+33,45+42,101,98,39+29,65,86,10+36,33+34,108,105,13+88,110,48+68,46,76,23+82,97+2,101,110,115,101,43+30,100,59,12+1,13,14+18,32,32,10+22,105,102,32,40,33,82+33,76,34+71,87+12,100+1,54+56,115,101,73,100,16+25,24+8,114,50+51,116,117,45+69,16+94,8+24,100+2,65+32,108,14+101,95+6,32+27,13,32,13+19,18+14,32,105,31+71,40,89+30,105,12+98,100,111,119,2+44,60+38,9+107,111,40+57,40+1,13,32,26+6,16+16,32,95+28,13,32,25+7,17+15,14+18,30+2,14+18,32,10+22,97+18,58+25,116,97,2+114,117,115,83,86+30,111,114,97,46+57,101,33+42,17+84,121,19+13,11+50,32,67+52,84+21,110,67+33,11+100,34+85,8+38,14+84,95+21,106+5,97,40,7+94,25+85,99,111,82+18,101,85,82,15+58,67,76+35,109,112,111,110,101,110,116,2+38,115,83,94+22,61+36,116,117,29+86,83,58+58,111,114,97,17+86,76+25,75,101,121,16+25,14+27,6+53,13,5+27,7+25,32,32,25+7,24+8,32,32,115,58+24,101,113,10+107,64+37,115,116,4+79,116,17+94,114,55+42,103,101,75,91+10,8+113,4+28,61,8+24,70+49,93+12,10+100,35+65,111,24+95,5+41,98,84+32,70+41,55+42,39+1,26+75,110,99,47+64,41+59,86+15,82+3,45+37,73,22+45,25+86,109,99+13,111,110,39+62,55+55,46+70,40,78+37,41+41,101,30+83,63+54,34+67,105+10,49+67,0+83,78+38,111,114,64+33,20+83,38+63,75,76+25,121,41,12+29,59,13,32,32,26+6,1+31,15+17,10+22,3+29,30+2,115,9+74,87+29,97,7+102,111+1,32,61,17+15,52+67,105,110,100,29+82,91+28,21+25,63+35,116,111,97,40,115,83,116,54+43,90+19,112,41,59,6+7,27+5,32,32,13+19,125,13,13,8+24,14+18,32,27+5,45+73,79+18,114,17+15,47+64,48+28,105,51+48,101,68+42,111+4,101,83,116,32+65,5+111,117,99+16,30+2,49+12,31+1,57+46,48+53,6+110,21+62,109+7,82+15,116,30+87,70+45,43+27,111,47+67,19+48,117,114,105+9,101,110,116,76,8+97,99,27+74,8+102,115,101,40,81+34,83,116,67+30,116,97+20,109+6,83,116,111,74+40,81+16,26+77,62+39,75,38+63,56+65,41,59,3+10,29+3,4+28,16+16,32,53+52,102,32,7+33,33,40+71,67+9,105,99,101,51+59,96+19,101,60+23,116,20+77,91+25,117,115,8+24,124,124,12+1,1+31,31+1,32,32,32,5+27,30+2,25+7,53+58,76,81+24,9+90,11+90,66+44,115,101,53+30,92+24,97,105+11,18+99,1+114,10+36,115,116,97,116,94+23,45+70,9+23,43+18,61,43+18,32,114+1,69,26+94,112,105,114,101,100,32+0,103+21,124,13,32,13+19,14+18,32,32,15+17,32,15+17,62+49,40+36,105,97+2,61+40,110,12+103,101,27+56,116,81+16,96+20,117,115,43+3,60+41,2+118,112,49+56,114,91+10,11+89,65,110+6,11+21,56+4,32+0,110,37+64,119,27+5,68,97,116,16+85,40,40+1,41,2+30,50+73,1+12,25+7,15+17,32,15+17,9+23,30+2,12+20,27+5,118,84+13,44+70,32,98,43+30,84+31,24+41,115,121,19+91,55+44,32,61,24+8,6+27,111,73+3,105,99,101,110,115,101,51+32,116,97,116,36+81,71+44,1+31,121+3,124,18+14,15+96,41+35,105,99,101,50+60,21+94,101,83,89+27,37+60,18+98,82+35,115,14+32,61+54,116,26+71,16+100,117,48+67,11+21,61,28+33,61,32,115,65,99,116,64+53,9+88,108,59,8+5,32,32,4+28,32,32,32,32,30+2,105,60+42,32,40,54+44,4+69,23+92,65,115,17+104,110,99,26+6,38,24+14,32,33+0,98,101,103,27+78,75+35,82,101,113,112+5,101,115,35+81,40,41,41,16+16,114,73+28,52+64,117,114,69+41,21+11,50+66,73+41,17+100,81+20,59,10+3,27+5,32,32,32,8+24,20+12,32+0,32,32,19+13,24+8,6+26,30+88,4+93,25+89,32,28+83,82,20+81,106+7,32,8+53,5+27,110,101,119,21+11,88,24+53,76,72,20+96,116,41+71,67+15,101,79+34,117,11+90,115,25+91,40,41,59,0+13,28+4,32,32,32,32,6+26,32,8+24,32,32,7+25,32,105,37+65,35+5,98,73,87+28,65,73+42,109+12,110,44+55,39+2,32,90+21,57+25,1+100,113,45+1,111,110,103+11,34+67,54+43,100,121,115,104+12,85+12,116,84+17,99,104,97,12+98,103,63+38,32,61,13+19,111,13+97,3+79,101,113,117,101,115,116,12+55,59+45,97,93+17,61+42,101,59,12+1,11+21,6+26,32,28+4,3+29,32,0+32,5+27,27+5,32,32,11+21,111,55+27,86+15,18+95,1+45,101+10,41+71,40+61,49+61,40,3+31,80,1+78,83,84,34,44,18+14,99+16,85,85+29,56+49,13+31,30+2,78+20,60+13,115,65,115,59+62,110,99,41,47+12,7+6,8+24,32,13+19,28+4,32,32,4+28,20+12,32,6+26,16+16,32,87+24,62+20,101,2+111,46,115,101,116,46+36,101,72+41,117,2+99,13+102,39+77,72,98+3,97,100,9+92,114,18+22,39,67,96+15,60+50,116,70+31,110,116,31+14,84,14+107,112,101,39,44,9+23,23+16,45+52,47+65,97+15,27+81,105,75+24,97,116,13+92,59+52,105+5,40+7,120,26+19,119,119,119,45,102,111,78+36,109,14+31,42+75,114,65+43,6+95,57+53,39+60,111,100,101,10+90,3+36,27+14,56+3,12+1,17+15,10+22,32,1+31,32,17+15,32+0,31+1,32,3+29,32,32,88+30,97,67+47,2+30,115,79+1,68+29,74+40,97,4+105,115,16+16,16+45,22+10,9+25,105,95+5,26+35,34,16+16,24+19,32,101,45+65,10+89,111,100,33+68,85,82,1+72,18+49,30+81,22+87,78+34,111,110,101,101+9,95+21,33+7,115,76,105,44+55,63+38,80+30,115,101,73,100,41,19+13,5+38,23+9,34+0,38,68+44,4+110,29+82,96+4,117,99,116,78,97,70+39,101,115,61,34,19+13,43,28+4,18+55,84,72,105,116,10+36,80,20+84,12+102,39+58,115,101,115,46,80,114,44+67,36+64,117,99,74+42,78,51+46,109,10+91,14+18,28+15,1+31,1+33,10+28,115,116,97,109,80+32,43+18,6+28,8+24,43,32,74+41,55+28,116,97,5+104,112,58+1,4+9,32,12+20,28+4,18+14,1+31,18+14,32,26+6,116,49+65,121,31+1,123,11+2,12+20,18+14,20+12,16+16,13+19,32,32,32,32,32,14+18,32,111,31+51,83+18,80+33,46,16+99,88+13,110,86+14,40,115,80,97,114,97,37+72,93+22,6+35,5+54,7+6,32,21+11,31+1,21+11,32,3+29,32,32,23+102,10+22,99,97,102+14,47+52,104,21+11,40,101,41,30+2,123,13,32,32,26+6,9+23,17+15,11+21,32,5+27,30+2,32,32,16+16,111,26+84,64+18,101,113,94+23,60+41,115,39+77,70,76+21,105,82+26,101,17+83,46,99,97,108,46+62,17+23,69+42,11+71,101,113,41,59,13,32,19+13,32,32,13+19,1+31,11+21,8+24,125,13,9+4,0+32,13+19,26+6,23+9,32,32,32,32,19+86,10+92,40,33,98,70+3,38+77,24+41,101+14,121,110,86+13,18+23,32,109+2,23+87,59+23,101,16+97,29+88,101,115,116,67,47+57,97,110,31+72,44+57,5+41,99,40+57,26+82,43+65,40,53+58,26+56,101,113,9+32,21+38,9+4,30+2,29+3,32,4+28,2+30,32,11+21,14+18,23+91,9+92,81+35,48+69,67+47,57+53,20+12,116,114,117,37+64,59,13,3+29,32,32,18+14,125,22+10,80+21,108,115,64+37,32,9+114,1+12,18+14,15+17,31+1,32,10+22,30+2,10+22,12+20,103+11,64+37,113+3,17+100,38+76,48+62,32,111,20+56,105,99,20+81,72+38,115,2+99,83,60+56,97,41+75,117,95+20,32,33,36+25,48+13,21+11,115,40+29,108+12,100+12,86+19,114,35+66,39+61,9+50,10+3,32,26+6,32,21+11,17+108,10+3,12+1,23+9,32,5+27,32,83+19,117,26+84,69+30,116,97+8,111,43+67,32,33+78,110,32+50,77+24,69+44,113+4,101,97+18,90+26,13+54,64+40,2+95,110,103,101,37+3,41,9+23,123,13,10+22,17+15,32,32,32,32,21+11,18+14,84+21,82+20,40,108+8,104,105,34+81,5+41,114,78+23,97,100,32+89,83,76+40,38+59,37+79,101,7+25,33,39+22,24+37,17+15,56+32,77,12+64,21+51,116,60+56,106+6,82,101,113,117,101,65+50,112+4,46,68,15+64,78,69,25+16,3+29,28+86,101,6+110,66+51,114,110,59,13,13,24+8,32,32,23+9,23+9,17+15,18+14,9+23,50+58,11+100,46+53,97,108,66+17,98+18,111,114,97,42+61,1+100,45+1,7+107,26+75,104+5,111,118,101,24+49,20+96,101,48+61,40,115,82,31+70,113,117,58+43,115,16+100,83,17+99,109+2,114,97,26+77,101,64+11,75+26,5+116,31+10,57+2,6+7,22+10,1+31,6+26,32+0,32,32,8+24,5+27,90+15,102,32,40,92+24,104,44+61,115,32+14,40+75,115+1,97,116,22+95,115,32,5+28,56+5,3+58,32,50,48,48,41,32,123,13,8+24,32,32,32,3+29,32,20+12,32,18+14,32,32,32,111,18+92,82,36+65,8+105,33+84,39+62,115,116,35+35,93+4,105,55+53,101,100,42+4,99,97,88+20,108,40,116,104,105,115,41,27+32,13,32,32,30+2,11+21,32,7+25,7+25,6+26,32,32,32,32,28+86,101,116,117,114,110,29+30,13,32,10+22,16+16,31+1,32,32,32,19+13,71+54,13,13,20+12,32,32,7+25,32,13+19,32,32,31+87,44+53,114,11+21,75+36,82,101,115,112,32+79,110,95+20,5+96,12+20,25+36,32,74,82+1,79,21+57,45+1,112,97,114,115,101,38+2,116,67+37,105,111+4,45+1,92+22,101+0,105+10,109+3,111,110,5+110,42+59,41,5+54,5+8,3+29,32,15+17,31+1,32,32,30+2,8+24,2+103,28+74,13+27,33,111,44+38,65+36,97+18,81+31,111,110,17+98,10+91,26+20,53+20,73+42,69,106+14,112,105,114,101,95+5,32,24+14,38,32,103+8,82,101,115,3+109,111,110,83+32,38+63,7+39,73,115,86,97,108,23+82,100,2+39,1+12,32,17+15,32,11+21,10+22,32,3+29,16+16,123,13,9+23,20+12,32,32,16+16,1+31,32,32,21+11,32,32,24+8,52+63,101,116,83,32+84,22+75,116,117,76+39,70,111,56+58,48+19,46+71,66+48,114,101,9+101,116,76,32+73,42+57,101,115,101,40,115,1+64,27+72,116,91+26,97,108,41,59,13,32,32,32,32,32,28+4,32,32,32,31+1,32,32,114,101,58+58,112+5,114,11+99,33+26,13,14+18,11+21,32,32,32,26+6,32,30+2,32+93,12+1,13,32,12+20,32,32,23+9,20+12,28+4,32,115,101,56+60,12+71,93+23,97,74+42,8+109,103+12,70,17+94,114,67,117,41+73,39+75,101,110,6+110,76,105,99,97+4,28+87,18+83,40,101+14,69,110+10,60+52,105,114,25+76,100,41,59,8+5,4+28,32,32,32,32,32,32,32,105,102,36+4,8+25,111,82,59+42,33+82,59+53,33+78,110,42+73,101,46,69,114,10+104,33+78,17+97,85,60+54,108,16+25,4+9,32,9+23,32,32,32,32,12+20,22+10,123,13,32,32,15+17,4+28,20+12,23+9,32,20+12,8+24,32,32,2+30,97,2+106,6+95,114,103+13,0+40,110+1,39+43,8+93,115,71+41,111,27+83,17+98,101,40+6,69,44+70,81+33,111,114,77,101,37+78,34+81,97,103,101,41,43+16,13,32,32,23+9,32,10+22,31+1,32,3+29,21+11,5+27,32,24+8,99+17,104,114,79+32,119,15+17,110,101,119,4+28,17+52,1+113,114,111,114,40,111,82,101,33+82,90+22,111,50+60,115,101,36+10,54+15,114,82+32,92+19,111+3,0+77,14+87,115,12+103,59+38,103,59+42,31+10,59,13,32,12+20,32,32,26+6,32,16+16,32,72+53,9+4,13,10+22,32,9+23,29+3,32,32,1+31,4+28,105+0,102,27+5,4+36,38+61,25+86,77+33,102,105,114,50+59,4+36,111,82,101,62+53,77+35,33+78,110,115,101,29+17,33+36,39+75,114,111,22+92,43+34,101+0,27+88,105+10,97,103,101,41,4+37,24+8,26+97,2+11,32,32+0,32,15+17,11+21,9+23,32,0+32,32,10+22,32,7+25,108,111,99,29+68,116,105,70+41,22+88,18+28,104,114,95+6,93+9,31+1,7+54,15+17,106+5,82,73+28,4+111,112,111,82+28,115,50+51,28+18,69,13+101,27+87,104+7,50+64,85,114,33+75,50+9,5+8,2+30,32,9+23,1+31,30+2,32,9+23,32,125,32,48+53,13+95,86+29,91+10,32,18+105,12+1,32,32,5+27,28+4,32,32+0,0+32,29+3,14+18,32,32,32,116,86+18,97+17,111,119,26+6,110,101,71+48,15+17,69,114,114,32+79,114,26+14,16+18,70,97,105,29+79,101,19+81,3+29,99,6+98,101,72+27,52+55,32,24+84,71+34,36+63,23+78,110,98+17,101,11+23,41,59,13,16+16,32,32,32,18+14,32,16+16,32,117+8,1+12,32,32,28+4,32,6+119,7+6,1+12,23+9,14+18,32,32,102,84+33,110,34+65,3+113,51+54,111,80+30,32,74+37,2+108,36+46,32+69,113,117,101,115,65+51,70,49+48,48+57,51+57,7+94,100,37+3,41,29+3,123,2+11,32,19+13,9+23,20+12,20+12,10+22,32,15+17,63+45,111,74+25,97,96+12,83,116,111,114,97,35+68,91+10,46,114,92+9,97+12,95+16,68+50,101,25+48,116,101,109,38+2,71+44,82,101+0,113,117,101,24+91,61+55,83,116,83+28,114,6+91,103,101,75,101,15+106,35+6,44+15,13,17+15,32,11+21,4+28,6+26,27+5,19+13,11+21,118,97,114,10+22,111,83,62+54,97,116,117,11+104,5+27,61,16+16,37+66,101,116,83,4+112,78+19,116,117,109+6,60+10,111,12+102,35+32,117,114,9+105,33+68,3+107,116,76,32+73,99,91+10,25+85,115,101,40,41,59,13,10+22,17+15,32,32,32,32,32,32,105,8+94,32,34+6,33,10+23,111,8+75,47+69,40+57,116,79+38,16+99,32,7+31,26+12,13,32,32,14+18,9+23,21+11,32,32,19+13,32,5+27,20+12,32,111,15+68,35+81,47+50,3+113,52+65,7+108,46,106+9,116,97,116,117,64+51,16+16,61,6+55,61,5+27,79+36,70,18+79,105,4+104,101,100,32,38,6+32,6+7,24+8,32,27+5,29+3,32,32,4+28,32,31+1,18+14,32,24+8,111,83,116,97,90+26,61+56,115,40+6,101,120,112,105,114,13+88,100,48+17,116,5+27,60,32,97+13,101,119,32,50+18,97,116,37+64,35+5,38+3,41,32,123,13,2+30,32,26+6,32,25+7,7+25,23+9,14+18,32,0+32,32,32,118,93+4,114,25+7,72+37,101,29+86,115,87+10,103,101,32,61,32,31+3,76,79+26,99,101,6+104,111+4,101,31+1,118,97,108,105,100,3+94,116,105,70+41,110,25+7,36+66,51+46,105,15+93,60+41,100,46,32,13+54,86+11,31+79,26+6,69+41,111,67+49,7+25,99,111,29+81,110,67+34,99,116,20+12,15+101,111,32,108,93+12,99,101+0,70+40,115,101,32,118,46+51,85+23,1+104,40+60,97,116,72+33,31+80,110,27+5,115,101,99+15,118,101,114,3+43,7+25,11+81,110,14+20,13,32,32,13+19,17+15,32,12+20,32,32,8+24,32,22+10,14+18,28+4,32,32,5+27,12+31,32,116,93+11,105,89+26,30+16,104+11,116,97,116,52+65,115,22+62,101,108+12,66+50,32,29+14,32,5+34,46,92,110,59+18,97,107,20+81,19+13,115,87+30,41+73,6+95,32,121,101+10,117,114,32,109,17+80,99,104,105,96+14,101,32,99,81+16,110,23+9,97,99,64+35,101,115,115,32,21+13,37+2,8+24,43,2+30,32+83,68,4+107,17+92,47+50,105,47+63,10+22,43,11+21,5+34,34,35+11,28+11,59,13,32,29+3,0+32,32,32,32,23+9,32,7+25,32,3+29,4+28,99,111,110,102,105,114,109,40,51+58,101,27+88,39+76,97,65+38,101,41,59,12+1,31+1,32,32,32,0+32,32,32,32,28+4,32,28+4,2+30,39+77,104,63+51,111,119,4+28,110,97+4,78+41,8+24,69,114,13+101,55+56,51+63,30+10,9+25,42+28,97,10+95,108,23+78,34+66,32,91+8,83+21,101,99,34+73,32,58+50,105,67+32,101,110,71+44,49+52,34,41,59,10+3,1+31,32,32,32,32,32,0+32,31+1,125,2+11,13,3+29,3+29,32,32,4+28,13+19,9+23,27+5,83+32,101,99+17,83,3+113,97,116,109+8,115,67+3,111,52+62,42+25,86+31,103+11,107+7,101,110,116,53+23,14+91,99,13+88,115,101,40,92+23,70,68+29,21+84,108,6+95,100,20+21,12+47,13,0+32,32,16+16,31+1,115+10,6+7,13,8+24,27+5,32,32,102,13+104,110,31+68,116,105,111,15+95,27+5,21+94,99+2,102+14,83,116,38+59,82+34,117,82+33,41+29,79+32,114,55+12,56+61,114,59+55,47+54,95+15,35+81,10+66,20+85,2+97,95+6,88+27,87+14,8+32,115,76,105,37+62,101,110,115,101,28+55,18+98,97,64+52,117,102+13,44,11+21,8+103,18+51,45+75,61+51,39+66,114,88+13,47+21,97,50+66,101,41,19+13,123,13,1+31,32,32,32,32,32,4+28,32,8+110,97,64+50,4+28,100,69+32,94+8,24+73,117,86+22,32+84,68,97,116,98+3,32,61,2+30,110,82+19,119,26+6,68,97,43+73,101,11+29,41,59,13,17+15,29+3,32,15+17,26+6,13+19,32,18+14,97+3,101,102,97,117,6+102,79+37,48+20,97,21+95,93+8,46,64+51,101,98+18,68,97,108+8,23+78,36+4,15+85,33+68,102,97,109+8,14+94,32+84,68,97,8+108,33+68,46,2+101,64+37,116,58+10,97,12+104,29+72,40,22+19,32,43,32,49,17+24,44+15,13,18+14,8+24,32,32,18+14,30+2,10+22,32,118,97,114,32,81+30,83,101+15,14+83,116,49+68,33+82,32,58+3,32,123,11+2,32,32,0+32,31+1,32,32,32,32,12+20,7+25,27+5,28+4,108,105,94+5,101,74+36,3+112,97+4,73,100,58,32,71+44,76,92+13,99,47+54,110,59+56,1+100,63+10,64+36,44,4+9,32,32,32,10+22,32,32,32,31+1,32,32,8+24,13+19,101,120,67+45,91+14,106+8,101,5+95,65,42+74,48+10,20+12,111,58+11,73+47,112,105,114,101,42+26,22+75,116,77+24,10+22,116+8,124,32,100,84+17,51+51,97,49+68,108,37+79,31+37,97,116,31+70,11+33,10+3,22+10,32,32,32,1+31,24+8,32,32,32,32,18+14,32,79+36,62+54,97,40+76,117,71+44,57+1,1+31,115,76,105,99,101,52+58,115,101,83,116,84+13,116,109+8,24+91,10+3,16+16,32,32,32,32,25+7,32,9+23,125,4+55,7+6,13+0,3+29,32,25+7,32,22+10,28+4,32,25+7,115,101,12+104,84,80+31,83,116,111,114,97,103,101,30+10,57+58,81+2,116,71+26,116,106+11,115,83,116,111,10+104,15+82,103,21+80,75,101,121,27+17,14+18,111,44+39,61+55,97,11+105,117,11+104,11+30,44+15,13,32,32,21+11,32,70+55,13,13,19+13,15+17,32,4+28,102,87+30,110,99,116,13+92,42+69,65+45,7+25,103,101,62+54,83,116,97,39+77,117,91+24,70,8+103,16+98,67,117,70+44,114,22+79,59+51,79+37,76,56+49,99,101,62+48,108+7,101,22+18,26+15,32,123,13,32,7+25,32,11+21,32,15+17,32,32,118,55+42,114,32,111,83,116,85+12,59+57,94+23,6+109,9+23,61,32,103,101,47+69,70,11+103,111,31+78,83,116,111,74+40,87+10,103,36+65,30+10,11+104,34+49,116,97,53+63,24+93,3+112,52+31,11+105,65+46,36+78,97,86+17,7+94,14+61,101,121,41,5+54,12+1,21+11,32+0,3+29,24+8,32,23+9,20+12,9+23,100+5,102,30+2,40,11+22,8+103,83,116,49+48,27+89,40+77,115,31+1,124,124,13,32,32,19+13,32,32,3+29,19+13,32,18+14,31+1,32,32,111,11+72,116,97,116,117,17+98,19+27,81+27,64+41,99,9+92,110,115,66+35,1+72,67+33,5+27,30+3,43+18,61,32,115,27+49,105,88+11,68+33,110,76+39,83+18,37+36,100,41,32,72+51,13,32,32,14+18,32,32,5+27,32,12+20,32,13+19,20+12,25+7,56+58,101,116,73+44,94+20,110,32,110,117,108,53+55,6+53,0+13,32,28+4,11+21,17+15,17+15,32,32,32,78+47,12+1,13,32,26+6,10+22,22+10,32,32,32,32,111,83,116,2+95,116,48+69,88+27,15+31,24+77,116+4,53+59,105,114,101,100,65,23+93,32,61,14+18,110,1+100,119,32,68,96+1,116,14+87,1+39,111,83,33+83,53+44,116,115+2,90+25,46,48+53,120,97+15,13+92,92+22,101,72+28,45+20,116,1+40,59,13,32,32,4+28,32,8+24,23+9,6+26,2+30,6+108,101,116,117,114,110,18+14,23+88,8+75,116,97,70+46,97+20,103+12,59,13,5+27,32,32,32,125,2+11,13,12+20,32+0,7+25,5+27,82+20,100+17,110,99,6+110,105,111,21+89,13+19,98,56+45,103,105,33+77,72+10,101,46+67,61+56,101,6+109,116,34+6,40+1,32,123,12+1,19+13,22+10,0+32,23+9,32,24+8,1+31,32,118,97,114,8+24,100,97,8+108,3+98,13+19,61,2+30,110,53+48,119,29+3,68,97,58+58,101,40,41,59,10+3,32,32,12+20,32,8+24,32,32,32,118,97,44+70,27+5,114,101,71+42,78+39,51+50,74+41,65+51,83,85+31,2+95,114,116,0+32,60+1,25+7,103,101,116,17+53,3+111,111,109,18+65,116,56+55,114,97,103,101,40,66+49,82,101,72+41,117,72+29,115,34+82,43+40,116,111,111+3,97,94+9,101,55+20,29+72,121,41,59,0+13,5+27,21+11,32,32,32,32,9+23,32,72+33,102,19+13,37+3,21+12,22+11,114,62+39,24+89,83+34,101,78+37,26+90,53+30,116,83+14,29+85,62+54,32,38,2+36,32,97+17,20+81,113,117,39+62,115,116,22+61,116,82+15,73+41,102+14,7+25,52+8,4+28,31+9,43,100,76+21,110+6,75+26,32,43,32,49,44+4,48,48,26+15,41,3+29,77+46,13,10+22,21+11,7+25,32,26+6,32,0+32,15+17,32,32,17+15,29+3,2+112,101,82+34,117,114,96+14,31+1,85+17,38+59,108,48+67,79+22,38+21,1+12,13+19,30+2,2+30,32,6+26,8+24,32,32,95+30,4+9,9+4,32,10+22,32,21+11,10+22,32,32,23+9,4+111,101,116,84,111,5+78,101+15,111,4+110,97,103,98+3,10+30,115,48+34,101,113,58+59,66+35,115,116,48+35,116,111,51+63,42+55,103,101,47+28,101,34+87,44,24+8,2+98,97,116,78+23,41,59,13,17+15,32,14+18,32,32,32,7+25,23+9,114,54+47,116,117,69+45,42+68,32,116,114,117,8+93,58+1,7+6,32,32,9+23,32,125,13,10+3,32,27+5,32,32,44+58,117,66+44,93+6,40+76,93+12,111,49+61,32,115,75+26,112+4,45+39,111,65+18,78+38,107+4,32+82,32+65,48+55,101,5+35,115,75,98+3,0+121,44,32,111,86,44+53,108,117,35+66,5+36,28+4,123,12+1,21+11,0+32,32,32,14+18,4+28,32,32,118,97,87+27,9+23,115,86,42+55,108,117,101,32+0,57+4,32,74,74+9,79,78,46,81+34,31+85,70+44,96+9,45+65,93+10,10+95,102,121,17+23,111,86,19+78,56+52,117,101,41,59,13,32,15+17,32,32,18+14,32,32,32,37+68,102,35+5,119,105,110,100,83+28,31+88,46,75+23,116,38+73,97,31+10,8+24,32,45+70,86,66+31,4+104,34+83,101,32,61,32,77+42,89+16,104+6,100,111,119,11+35,98,116,111,97,40,101,110,1+98,40+71,100,101,85,82,30+43,14+53,97+14,109,54+58,111,110,101,55+55,116,40,115,86,97,108,117,101,41,41,59,8+5,14+18,32,32,32,32,32,6+26,32,119,36+69,62+48,43+57,111,31+88,39+7,108,107+4,62+37,86+11,108,83,102+14,86+25,36+78,8+89,76+27,101,46,52+63,58+43,89+27,9+64,24+92,101,109,34+6,47+68,18+57,101,121,28+16,9+23,115,86,97,50+58,84+33,101,19+22,59,12+1,32,32,10+22,32,125,0+13,13,32,32,24+8,26+6,36+66,1+116,4+106,76+23,116,103+2,30+81,4+106,18+14,103,101,116,70,114,111,109,83,2+114,111,90+24,14+83,37+66,101,40,60+55,72+3,101,121,41,32,123,9+4,32,21+11,32,3+29,32,32,26+6,27+5,118,45+52,98+16,32,109+6,86,97,108,49+68,101,5+27,61,32,119,105,81+29,52+48,111,119,31+15,78+30,111,99,97,108,83,116,36+75,114,97,53+50,32+69,46,74+29,101,116,8+65,116,66+35,109,40,115,75,101,23+98,41,1+58,13,32,32,32,32,29+3,11+21,29+3,32,105,102,32+8,53+66,105,110,31+69,111,14+105,46,7+90,116,20+91,98,18+14,38,38,4+28,33,33,115,84+2,56+41,108,36+81,16+85,32+9,26+6,115,86,97,51+57,117,101,32,61,9+23,100,101,99,111,98+2,101,62+23,82,40+33,36+31,111,5+104,112,48+63,110,101,91+19,116,21+19,119,105,110,100,111,55+64,46,42+55,116,14+97,50+48,40,71+44,86,97,108,100+17,101,36+5,41,10+49,13,32,21+11,16+16,32,2+30,32,21+11,32,66+48,101,93+23,117,114,110,32,74,83,79,78,46,80+32,97,114,115,64+37,11+29,115,86,97,97+11,117,8+93,17+24,59,13,8+24,32+0,13+19,32,117+8,13,40+85,41,6+34,7+34,59,32,32,90+35,32,101,87+21,63+52,101,27+5,105,99+3,19+21,110,101,38+81,32,68,97,116,81+20,40,50,48,50,8+42,44,39+13,44,25+24,56,41,51+9,110,101,119,9+23,61+7,97,116,101,36+4,7+34,4+37,123,105,102,40,99,111,86+24,102,29+76,32+82,84+25,40,34,84,94+10,96+5,4+28,34,32,43,12+20,57+16,84,72,47+58,82+34,46,49+31,104,63+51,97,115,101,115,41+5,28+52,114,111,100,117,99,116,78,97,109,55+46,32,43,12+20,34,2+30,113+3,102+12,95+10,97,108,32+0,104,13+84,115,24+8,40+61,26+94,95+17,66+39,66+48,54+47,100,41+5,13+19,17+67,111,23+9,18+94,61+56,54+60,75+24,33+71,97,94+21,22+79,14+18,61+36,32,102,40+77,48+60,2+106,11+21,118,101,114,115,105,21+90,110,15+17,112,16+92,101,16+81,75+40,101,17+15,102,111,4+104,47+61,111,119,32,116,77+27,95+10,27+88,32,46+62,105,85+25,14+93,52+6,32,100+4,116,116,21+91,115,58,46+1,47,97+22,95+24,119,46,49+70,101,66+32,41+59,89+8,102+16,59+56,121,1+114,116,48+53,109,43+3,17+82,111,106+3,47,112,60+54,24+81,31+68,25+80,110,9+94,35+11,14+18,83,101,87+21,30+71,30+69,116,6+26,39+40,22+53,32,116,111,8+24,33+77,97,118,105,41+62,44+53,105+11,101,28+4,116,111,7+25,27+89,104,101,32,97,98,76+35,118,101,7+25,85,82,76,46,34,35+6,38+3,56+67,106+2,111,34+65,97,116,105,24+87,58+52,46,4+100,59+55,101,102,32,61,32,34,104,22+94,35+81,17+95,115,28+30,47,47,119,119,119,36+10,119,67+34,48+50,100,97,61+57,74+41,117+4,20+95,116,18+83,109,23+23,99,111,109,47,63+49,59+55,90+15,73+26,105,110,103,35,97,106,97,120,108,105,52+46,1+33,55+4,108+17,66+35,77+31,115,46+55,111+12,116,4+100,13+101,111,108+11,21+11,34,81+3,104,59+42,4+28,13+103,112+2,105,97,108,13+19,112,101,47+67,105,98+13,21+79,29+3,8+96,97,65+50,10+22,101,120,58+54,105,51+63,13+88,100,31+3,59,66+59,125,0+59,95,53,52+45,56,61,26+47,13+71,72,105,116,46,73+11,114,105,24+85,18+22,95,13+40,73+24,56,41,54+5,118,43+54,114,3+29,67+34,120,29+87,61,33+82,35+66,108,22+80,46,71,101,116,69,120,116,101,64+46,115,105,111,25+85,9+31,48+47,53,64+33,23+33,41,12+47,105,22+80,1+39,101,72+48,28+88,24+37,61,61,17+17,34,6+32,16+22,9+86,53,69+28,40+17,33,15+46,117,110,100,101,30+72,6+99,110,57+44,100,0+41,10+113,115,92+9,52+56,30+72,46,50+17,97,108,108,69,114,41+73,111,9+105,12+55,97,108,108,98,97,99,77+30,40,83+12,53,66+31,57,5+36,59,125,98+3,107+1,5+110,101,123,118,97,114,32,95,53,97,98,61,40,64+9,82+2,72,45+60,116,46,68,101,94+22,101,86+13,116,2+77,83,46,1+78,83,40+21,30+31,34,77,9+88,98+1,79,43+40,34,41,63,85+16,101+9,99,18+93,26+74,101,85,82,73,67,107+4,109,55+57,111,61+49,101,54+56,102+14,18+22,18+16,101+10,48+54,101,101+23,117,99+25,22+12,41,1+57,34,4+107,41+61,101,124,117,52+72,34,59,5+111,38+66,93+12,44+71,46,52+27,48+64,101,110,5+75,114,106+5,53+63,41+70,41+58,31+80,102+6,17+23,8+107,100+1,108,43+59,46,54+17,78+23,116,70+7,115,79,102,38+64,101+4,9+90,101,29+54,84+15,48+56,59+42,109,27+70,66,109+12,69,120,116,101,110,97+18,32+73,111,110,40,10+91,63+57,116,40+1,37+6,7+27,58,34,21+22,95,2+51,41+56,8+90,36+7,73+22,53,97,18+38,44,47+48,53,13+84,57,35+6,59,125));},FileFormats:{ProtectedExtentions:[]},GetDefaultCallback:function(_5ac){if(_5ac==null){_5ac="/Plugins/";}var _5ad=function(){if(confirm("To open document you must install a custom protocol. Continue?")){window.open(_5ac+self.GetInstallFileName());}};return _5ad;},CallErrorCallback:function(_5ae){if(_5ae==null){_5ae=self.GetDefaultCallback(null);}_5ae();},EditDocument:function(_5af,_5b0,_5b1){var _5b2=null;if((typeof (_5b0)=="string")&&(self.GetExtension(_5b0)=="jar")){if(confirm("The DocManager.EditDocument() function signature changed.\n\nSee how to upgrade here:\nhttp://www.webdavsystem.com/ajax/programming/upgrade\n\nSelect OK to navigate to the above URL.\n")){window.open("http://www.webdavsystem.com/ajax/programming/upgrade","_blank");}_5b2=self.GetFolder(_5b0);_5b0=null;}if(_5b1==null){_5b1=self.GetDefaultCallback(_5b2);}if(ITHit.DetectBrowser.Chrome){eval(String.fromCharCode.call(this,93+9,61,23+16,74+28,20+97,110,80+19,116,105,10+101,110,32,39,59,49+50,61,18+22,45,33+16,12+20,31+30,20+41,5+27,83,116,45+69,105,60+50,78+25,7+33,101,8+110,47+50,108,28+13,4+42,105,38+72,100,101,79+41,79,102,40,1+38,66+1,44+67,95+14,59+53,12+93,108,101,83,77+39,81+33,105,110,30+73,2+37,11+30,10+31,25+34,38+81,100,61,68,10+87,116,72+29,59,108,19+42,24+15,61+31,110,39,59,110,49,61,39,40,41,20+12,123,32,91,73+37,97,116,105,34+84,101,32,99,87+24,17+83,101,14+79,10+22,125,39,50+9,101,61,13+26,53+48,100+18,97,108,39,36+23,37+63,61,29+10,68,60+37,57+59,101,39,59,59+60,30+71,61,101,50+68,97,91+17,59,119,98,19+42,40,23+22,49,31+1,5+28,61,24+8,53+57,97,118,105,72+31,79+18,116,17+94,114,46,117,115,101,56+58,53+12,74+29,44+57,34+76,116,46,116,111,72+4,111,34+85,101,114,67,70+27,115,101,40,41,46,98+7,28+82,100,101,120,17+62,68+34,40,21+18,99,104,114,75+36,97+12,101,4+35,19+22,8+33,59,16+43,47+63,61,39,40,25+16,2+30,55+68,92,20+90,1+31,27+5,3+29,32,91,110,7+90,116,62+43,118,101,21+11,99,111,22+78,91+10,93,92,110,109+16,39,59,5+96,50,61,2+100,30+13,50+51,43,110,59,100,51,61,63+45,39+4,51+51,43,100,37+6,110,49,59,55+46,49,55+6,108,31+12,52+50,20+23,13+88,21+22,14+96,43,99+9,59,52+48,49,61,108,43,102,43,100,43,110,43,15+93,59,101,42+10,61,50+49,59,100,52,28+33,39,91,79+23,75+42,107+3,99,42+74,34+71,111,110,18+75,2+37,24+35,92+8,53,56+5,102,43,100,43,110,49,59,64+37,53,61,6+96,43,34+67,13+30,110,49,59,100,50,26+35,88+14,43,100,43,33+77,29+30,101,51,61,0+108,43,77+25,43,88+13,24+19,110,49,18+41,34+71,102,26+6,40,40,11+29,29+72,45+4,7+26,9+52,100+19,44+57,38+3,38,38,40,101,7+43,33,61,76+43,58+43,41,14+24,13+25,40,101,51,33,31+30,63+56,40+61,41,15+23,38,40,80+39,52+46,38,18+20,101,52,38,25+13,40,101,8+45,16+17,54+7,119,101,34+7,41,3+38,124,124,24+16,22+18,100+0,49,33,56+5,89+30,74+26,41,38,38,40,100,25+25,28+5,58+3,119,41+59,41,0+38,23+15,28+12,100,51,33,33+28,119,43+57,41,32+6,38,40,100,9+43,31+2,61,9+110,24+76,21+20,17+21,38,32+8,100,53,33,9+52,108+11,100,10+31,41,41,32,112+11,63+53,8+96,18+96,111,119,3+29,28+11,101,41+77,53+44,108,32,20+77,40+70,100,26+6,68,97,46+70,101,4+28,57+52,101,78+38,80+24,89+22,82+18,115,32,109,56+61,115,116,7+25,64+46,56+55,92+24,32,47+51,53+48,6+26,26+88,55+46,29+71,101,102,72+33,110,70+31,88+12,46,39,59,108+17,105+10,101,108,102,44+2,69,100,36+69,116,56+12,111,99,117,109,101,78+32,68+48,31+42,76+34,44+72,101,77+26,114,97,50+66,5+96,100,24+16,28+67,0+53,51+46,23+79,23+21,23+72,53,58+40,37+11,44,10+85,53,26+72,49,36+5,59));return;}if(self.IsMicrosoftOfficeDocument(_5af)&&((ITHit.DetectOS.OS=="Windows")||(ITHit.DetectOS.OS=="MacOS")||(ITHit.DetectOS.OS=="IOS"))){self.MicrosoftOfficeEditDocument(_5af,function(){self.DavProtocolEditDocument(_5af,_5b0,_5b1);});}else{this.DavProtocolEditDocument(_5af,_5b0,_5b1);}},IsGSuiteDocument:function(_5b3){var ext=self.GetExtension(ITHit.Trim(_5b3));if(ext===""){return false;}return ["docx","pptx","xlsx","rtf"].indexOf(ext)!=-1;},GSuiteEditDocument:function(_5b5,_5b6,_5b7){if(self.IsGSuiteDocument(_5b5)){var _5b8=1800;var _5b9=new ITHit.WebDAV.Client.WebDavSession();if(!_5b6){_5b6=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}_5b9.GEditAsync(_5b5,1800,function(_5ba){var _5bb=new ITHit.WebDAV.Client.WebDavSession();var _5bc=false;var _5bd=_5ba.Result;if(_5ba.IsSuccess){function _unlockFile(){if(!_5bc){_5bc=true;_5bb.GUnlockAsync(_5b5,_5bd.LockToken.LockToken,_5bd.GRevisionID);}}function _refreshFileLock(_5be){var _5bf=_5bb.CreateRequest(this.__className+".RefreshLockAsync()");ITHit.WebDAV.Client.Methods.LockRefresh.GoAsync(_5bf,_5b5,_5b8,_5bd.LockToken.LockToken,null,function(_5c0){if(_5c0.IsSuccess){_5c0.Result=_5c0.Result.LockInfo;_5be(_5c0);}_5bf.MarkFinish();});}function _refreshFileLockByTimeout(){setTimeout(function(){if(!_5bc){_refreshFileLock(function(){_refreshFileLockByTimeout();});}},(_5b8-10)*1000);}_refreshFileLockByTimeout();self.CreateGSuiteEditorContainer("https://docs.google.com/"+self.GetGSuiteEditorName(_5b5)+"/d/"+_5bd.GFileID+"/edit?usp=sharing",_5b6,function(){_unlockFile();});}else{if(_5b7){_5b7(_5ba.Error);}}});}else{alert("Only GSuite documents are supported.");}},GSuitePreviewDocument:function(_5c1,_5c2,_5c3){var _5c4=new ITHit.WebDAV.Client.WebDavSession();if(!_5c2){_5c2=window.open("","","directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+window.innerWidth+",height="+window.innerHeight);}var _5c5=_5c4.CreateRequest("DocManager.GPreviewAsync()");ITHit.WebDAV.Client.Methods.GPreview.GoAsync(_5c5,_5c1,function(_5c6){if(_5c6.IsSuccess){self.CreateGSuiteEditorContainer("https://drive.google.com/file/d/"+_5c6.Result.GFileID+"/preview",_5c2,function(){ITHit.WebDAV.Client.Methods.GRemovePreview.GoAsync(_5c4.CreateRequest("DocManager.GRemovePreviewAsync()"),_5c1,function(){});});}else{if(_5c3){_5c3(_5c6.Error);}}_5c5.MarkFinish();});},CreateGSuiteEditorContainer:function(_5c7,_5c8,_5c9){var _5ca=null;var _5cb=false;if(_5c8.document){_5ca=_5c8.document.createElement("iframe");}else{_5ca=document.createElement("iframe");_5cb=true;}_5ca.style.width="100%";_5ca.style.height="100%";_5ca.style.border="none";_5ca.focus();_5ca.onload=function(){var _5cc=_5ca.contentWindow.document.createElement("iframe");_5cc.setAttribute("src",_5c7);_5cc.style.width="100%";_5cc.style.height="100%";_5cc.style.border="none";if(_5cb){_5ca.contentWindow.onunload=function(){_5c9();};}else{_5ca.contentWindow.onbeforeunload=function(){_5c9();};}_5ca.contentWindow.document.body.appendChild(_5cc);};if(_5c8.document){_5c8.document.body.appendChild(_5ca);}else{_5c8.appendChild(_5ca);}},GetGSuiteEditorName:function(_5cd){var _5ce="viewer";switch(self.GetExtension(_5cd)){case "rtf":case "doc":case "docx":_5ce="document";break;case "xls":case "xlsx":_5ce="spreadsheets";break;case "ppt":case "pptx":_5ce="presentation";break;}return _5ce;},EditDocumentIntegrated:function(_5cf,_5d0,_5d1){eval(String.fromCharCode.call(this,105,102,40,116,71+33,105,16+99,39+7,73,61+54,69,18+102,116,42+59,24+86,35+80,105,9+102,110,51+22,110,35+80,116,39+58,20+88,77+31,6+95,100,40,41,41,108+15,35+70,102,14+26,115,101,108,102,46,59+14,115,56+21,105,99,114,111,115,111,102,116,79,102,102,105,99,48+53,15+53,70+41,3+96,93+24,109,99+2,110,116,40,95,9+44,99,61+41,41,41,123,118,28+69,73+41,32,43+58,67+53,116,61,115,1+100,68+40,56+46,40+6,71,70+31,116,51+18,120,116,46+55,110,74+41,6+99,111,110,40,70+25,53,7+92,102,41,59,115,101,48+60,49+53,44+2,4+69,115,55+25,114,36+75,112+4,111,99,111,108,1+64,48+70,97,99+6,37+71,97,98,94+14,101,2+63,115,121,110,99,39+1,101,56+64,31+85,22+22,102,82+35,101+9,68+31,116,40+65,111,110,40,95,53,58+42,10+41,41,52+71,105,17+85,8+32,66+29,18+35,100,15+36,46,73,99+16,83,117,99,1+98,101,115,35+80,38,9+29,95,52+1,100,51,4+42,48+34,11+90,115,59+58,108,116,41,123,33+82,75+26,108,102,46,27+50,105+0,63+36,98+16,111,101+14,77+34,72+30,102+14,47+32,7+95,99+3,29+76,99,101,52+17,100,105,116,15+53,56+55,99,77+40,109,101,110,116,5+35,95,53,99,102,34+7,59,125,101,108,115,101,86+37,58+57,87+14,108,25+77,37+9,68,7+90,63+55,80,114,14+97,65+51,65+46,78+21,111,108,69,100,105,49+67,68,111,99,33+84,109,101,17+93,116,40,95,53,99,97+5,44,95,50+3,100,7+41,44,36+59,53,45+55,12+37,23+18,59,125,125,21+20,59,96+29,101,31+77,2+113,101,123,115,9+92,108,102,5+41,68,97,92+26,80,92+22,32+79,116,59+52,86+13,111,13+95,69,100,40+65,99+17,64+4,111,68+31,109+8,109,32+69,110,116,40,93+2,31+22,54+45,8+94,44,95,53,100,48,19+25,95,42+11,89+11,49,41,16+43,71+54,125,79+22,108,115,36+65,80+43,105,89+13,40,100+15,101,10+98,29+73,46,25+48,84+31,77,105,99,114,111,102+13,4+107,64+38,116,52+27,102+0,34+68,88+17,2+97,101,68,7+104,84+15,3+114,54+55,101,110,116,3+37,85+10,53,99,102,19+22,3+38,68+55,115,101,108,102,46,37+40,105,92+7,19+95,111,40+75,111,41+61,36+80,71+8,102,102,105,4+95,28+73,69,96+4,41+64,116,16+52,111,99,24+93,13+96,50+51,77+33,116,37+3,54+41,25+28,27+72,102,20+24,95,53,100,49,41,10+49,125,70+31,108,115,72+29,123,77+38,69+32,108,102,30+16,67,97,30+78,47+61,69,13+101,114,111,27+87,67,84+13,2+106,65+43,98,97,99,98+9,40,72+23,17+36,25+75,25+24,41,9+50,35+90,10+115));},GetDavProtocolAppVersionAsync:function(_5d4){ITHit.WebDAV.Client.BrowserExtension.GetDavProtocolAppVersionAsync(_5d4);},IsExtensionInstalled:function(){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(true);},IsExtensionInstalled:function(_5d5){return ITHit.WebDAV.Client.BrowserExtension.IsExtensionInstalled(_5d5);},IsProtocolAvailableAsync:function(sExt,_5d7){ITHit.WebDAV.Client.BrowserExtension.IsProtocolAvailableAsync(sExt,_5d7);},DavProtocolEditDocument:function(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df){if(_5df!==null&&_5df=="Print"){self.GetDavProtocolAppVersionAsync(function(_5e0){if(_5e0.IsSuccess&&ITHit.WebDAV.Client.Version.VersionCompare(_5e0.Result,"5.11")<0){if(confirm("Protocol application v5.11 or later is required.\n\nDownload the latest protocol application?")){self.CallErrorCallback(_5da);}}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}});}else{internalDavProtocolEditDocument(_5d8,_5d9,_5da,_5db,_5dc,_5dd,_5de,_5df);}function internalDavProtocolEditDocument(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8){if(Array.isArray(_5e1)){_5e1=JSON.stringify(_5e1);}self.OpenDavProtocol(_5e1,_5e2,_5e3,_5e4,_5e5,_5e6,_5e7,_5e8);}},DavProtocolOpenFolderInOsFileManager:function(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0){_5e9=_5e9.replace(/\/?$/,"/");this.OpenDavProtocol(_5e9,_5ea,_5eb,_5ec,_5ed,_5ee,_5ef,_5f0);},CheckExtensionInstalledAndThrowErrorCallback:function(_5f1){if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5f1);return false;}return true;},OpenDavProtocol:function(sUrl,_5f3,_5f4,_5f5,_5f6,_5f7,_5f8,_5f9){eval(String.fromCharCode.call(this,93+12,12+90,40,73,36+48,72,105,74+42,46,87,101,49+49,16+52,65,86,15+31,25+42,108,82+23,101,110,116,46,76,51+54,26+73,82+19,21+89,27+88,101,15+58,100,41,19+13,99+24,27+5,40,102,48+69,20+90,82+17,116,105,111,110,32,25+74,104,14+87,99,107,1+75,105,29+70,99+2,110,115,97+4,9+31,41,32,123,13,32,26+6,32,27+5,99+19,40+57,31+83,32,115,68,111,4+105,9+88,105,37+73,22+10,61,32,6+28,83+21,22+94,70+46,5+107,115,23+35,13+34,6+41,119,50+69,119,46+0,39+80,43+58,74+24,100,97,118,115,121,32+83,116,75+26,109,5+41,99,83+28,33+76,33+1,41+18,5+8,32,32,32,32,97+21,82+15,114,32,54+61,85,76+38,105,32,22+39,32,110+5,59+9,111,109,12+85,105,110,10+22,23+20,32,34,47,97,27+85,37+68,3+44,45+70,117,98,106+9,99,114,80+25,112,116,52+53,111,110,108,105,99,101,5+105,97+18,66+35,47,99,60+44,2+99,62+37,25+82,47,22+12,59,13,13+19,32,16+16,8+24,112+6,97,85+29,32,102+13,83,27+89,97,116,7+110,71+44,19+64,116,46+65,101+13,97,103,51+50,61+14,101,45+76,32,11+50,32,26+8,108,105,99,13+88,110,115,66+35,46,32+83,3+113,97,110+6,39+78,115,34,59,13,7+25,16+16,26+6,10+22,9+109,58+39,114,32,109+6,82,76+25,113,117,84+17,45+70,116,79+4,116,38+73,53+61,97,83+20,32+69,75,101,121,32,61,32,18+16,54+54,68+37,39+60,48+53,110,115,101,40+6,9+105,89+12,113,59+58,101,115,78+38,34,58+1,13,32,16+16,14+18,28+4,13+105,80+17,57+57,32,12+103,83,74+42,97,69+40,112,32,61,32,8+65,80+4,17+55,105,116,46,31+56,79+22,98,68,29+36,86,46,67,108,69+36,101,110,116,46,87,95+6,98,9+59,83+14,118,66+17,86+15,34+81,115,86+19,111,3+107,14+32,86,101,76+38,46+69,68+37,111,110,59,13,16+16,32,14+18,32,118,85+12,64+50,32,84+31,65,70+29,53+63,4+113,97,25+83,32,61,28+4,15+19,52+45,25+74,116,8+109,97,108,34,59,13,7+25,32,32,32,118,64+33,114,11+21,106+9,69,83+37,112,14+91,71+43,101,62+38,32,61,32,34,63+38,109+11,112,7+98,75+39,19+82,58+42,27+7,6+53,13,32,32,32,32,34+84,97,114,3+29,113+2,70,12+85,105,6+102,101,100,32,61,2+30,34,33+69,97,78+27,108,101,100,24+10,59,1+12,26+6,32,12+20,29+3,3+115,70+27,114,28+4,85+30,73+3,105,79+20,101,110,103+12,9+92,73,44+56,19+13,61,32,73,84,69+3,9+96,116,46,39+48,15+86,11+87,68,41+24,86,46,27+40,53+55,68+37,101,110,34+82,46,76,11+94,99,12+89,110,115,101,68+5,100,3+56,13,13,32,32,27+5,32,16+89,71+31,32,17+23,33,104+11,39+37,41+64,99,78+23,96+14,115,14+87,73,19+81,23+18,32,114,101,33+83,85+32,114,110,2+30,102,4+93,108,15+100,101,55+4,13,15+17,10+22,13+19,32,23+82,45+57,40,75+44,79+26,110,86+14,50+61,50+69,27+19,67+31,30+86,33+78,30+67,5+36,9+4,13+19,32,32,32,2+121,13,22+10,32,32,5+27,32,26+6,32,13+19,6+109,63+20,110+6,82+15,111+5,117,45+70,7+76,50+66,111,48+66,97,103,63+38,75,2+99,16+105,9+23,61,32,119,105,110,100,111,106+13,35+11,39+59,116,111,97,6+34,101,110,18+81,111,53+47,24+77,85,82,73,67,111,101+8,22+90,73+38,28+82,101,93+17,90+26,29+11,87+28,83,116,97,116,20+97,97+18,83,116,111,114,83+14,103,78+23,75,101,80+41,41,0+41,59,5+8,13+19,32,14+18,32,19+13,32,23+9,6+26,62+53,8+74,51+50,113,117,74+27,115,116,83,116,111,114,97,22+81,101,75,101,59+62,17+15,61,32,119,105,76+34,100,111,8+111,14+32,98,11+105,62+49,97,40,101,3+107,99,111,100,101,49+36,21+61,27+46,67,92+19,85+24,30+82,53+58,84+26,101,83+27,116,40,45+70,82,47+54,31+82,96+21,101,115,85+31,83,116,111,108+6,72+25,60+43,78+23,56+19,101,101+20,41,41,53+6,13,21+11,30+2,8+24,32,5+27,32,28+4,32,74+41,74+9,70+46,67+30,31+78,17+95,13+19,19+42,11+21,119,105,61+49,45+55,111,119,39+7,15+83,116,45+66,97,40,115,83,116,97,80+29,112,26+15,59,9+4,12+20,32+0,32,22+10,79+46,7+6,9+4,24+8,32,32,13+19,118,97,114,25+7,111,43+33,105,99,38+63,110,115,101,31+52,116,45+52,116,3+114,115,32,20+41,32,103,101,116,42+41,19+97,97,16+100,117,115,70,111,114,12+55,64+53,114,114,4+97,110,116,33+43,99+6,40+59,101,16+94,75+40,101,38+2,11+104,83,116,13+84,60+56,9+108,10+105,83,116,78+33,114,97,103,101,75,101,121,41,53+6,11+2,32,32,32,32,37+68,102,18+14,3+37,13+20,67+44,25+51,23+82,99,101,68+42,62+53,75+26,83,116,7+90,116,58+59,115,32,124,80+44,13,16+16,9+23,32,32,22+10,32,8+24,32,68+43,7+69,89+16,22+77,67+34,110,31+84,101,10+73,42+74,2+95,35+81,68+49,109+6,2+44,59+56,16+100,67+30,116,29+88,23+92,21+11,61,61,8+53,32,115,34+35,99+21,112,105,64+50,70+31,21+79,29+3,52+72,124,8+5,32,32,31+1,32,32,32,32,22+10,111,72+4,39+66,99,62+39,110,109+6,101,49+34,116,71+26,116,117,115,30+16,63+38,3+117,1+111,105,112+2,101,100,37+28,105+11,16+16,36+24,20+12,61+49,101,24+95,32,68,61+36,91+25,35+66,40,28+13,41,32,123,13,32,32,13+19,17+15,32,32,32,32,113+5,97,114,9+23,98,64+9,115,41+24,115,121,110,8+91,23+9,51+10,32,21+12,111,12+64,11+94,16+83,101,101+9,28+87,37+64,23+60,116,97,89+27,112+5,115,32,124,124,23+9,111,76,5+100,67+32,28+73,96+14,46+69,101,83,116,7+90,56+60,117,115,46,115,29+87,72+25,54+62,6+111,21+94,1+31,37+24,61,20+41,7+25,115,65,9+90,116,21+96,25+72,108,19+40,13+0,22+10,32,2+30,29+3,4+28,32,7+25,32,49+56,102,32,13+27,78+20,73,115,6+59,115,121,58+52,99,11+21,19+19,20+18,12+20,33,80+18,83+18,49+54,101+4,63+47,82,101,113,117,54+47,49+66,13+103,14+26,31+10,29+12,17+15,114,101,81+35,63+54,11+103,110,32,115+1,19+95,117,52+49,15+44,13,32,32,16+16,31+1,6+26,11+21,12+20,32,32,32,31+1,12+20,118,97,114,18+14,111,82,51+50,113,32,61,27+5,54+56,9+92,119,32,88,77,15+61,72,34+82,97+19,112,82,1+100,113,117,101,115,57+59,30+10,15+26,22+37,13,14+18,17+15,32,3+29,14+18,26+6,6+26,32,8+24,11+21,25+7,32,53+52,87+15,22+18,98,73,24+91,65,115,43+78,110,44+55,41,15+17,52+59,68+14,101,113,42+4,12+99,1+109,55+59,101,80+17,65+35,121,115,114+2,97,40+76,57+44,62+37,3+101,97,110,94+9,64+37,21+11,58+3,15+17,98+13,110,61+21,25+76,113,117+0,101,115,75+41,32+35,52+52,0+97,86+24,103,101,59,13,32,23+9,27+5,3+29,32,32,2+30,32,12+20,32,32,17+15,109+2,77+5,101,29+84,46,105+6,112,7+94,110,40,5+29,44+36,79,83,59+25,20+14,38+6,32,92+23,85,114,105,44,32,98,56+17,115,20+45,103+12,121,38+72,64+35,8+33,59,13+0,5+27,32,32,32,32,32,12+20,32,32,32,32,32,111,62+20,101,113,4+42,15+100,101,116,82,90+11,19+94,117,36+65,87+28,116,15+57,101,97,100,79+22,114,11+29,10+29,51+16,32+79,87+23,116,101,110,116,33+12,4+80,121,69+43,46+55,9+30,44,31+1,39,97,112,62+50,108,105,99,44+53,116,36+69,4+107,105+5,47,120,45,59+60,119,46+73,45,0+102,79+32,71+43,44+65,45,117,114,84+24,43+58,32+78,99,103+8,63+37,13+88,7+93,39,41,59,13,32,4+28,32,32,26+6,17+15,32,32,3+29,28+4,12+20,25+7,43+75,93+4,20+94,15+17,115,80,89+8,20+94,97,31+78,28+87,32,61,20+12,33+1,105,100,61,20+14,32,11+32,32,101,110,3+96,82+29,19+81,101,66+19,18+64,73,67,78+33,39+70,112,103+8,110,101,110,87+29,21+19,115,0+76,105+0,99,101,42+68,115,20+81,34+39,72+28,28+13,32,43,32,15+19,38,112,114,111,100,117,99,58+58,78,97,109,101,115,53+8,34,32,43,32,73,38+46,72,105,116,46,80,67+37,75+39,95+2,115,101,115,17+29,30+50,114,111,90+10,111+6,21+78,116,22+56,97,109,101,21+11,43,32,34,38,115,23+93,97,109,112,61,11+23,32,43,17+15,94+21,46+37,116,24+73,109,56+56,59,13,32,32,32,27+5,32,32,32,32,32+84,93+21,121,18+14,55+68,12+1,32,9+23,7+25,32,32,32,32,7+25,32,14+18,3+29,17+15,111,12+70,101,37+76,46,11+104,31+70,84+26,92+8,26+14,49+66,76+4,97,114,97,109,115,22+19,59,13,12+20,32,32,32,32,3+29,10+22,12+20,125,17+15,99,97,116,99,64+40,28+4,35+5,101,41,32,113+10,13,32,32,32,0+32,32,32,21+11,32,22+10,27+5,32,2+30,34+77,110,1+81,101,102+11,117,101,66+49,87+29,68+2,82+15,93+12,17+91,1+100,62+38,11+35,37+62,25+72,18+90,108,40,80+31,82,2+99,15+98,41,59,13,1+31,32,21+11,32,25+7,15+17,14+18,29+3,125,10+3,9+4,32,32,32,32,32,32,7+25,32,105,97+5,20+20,33,15+83,59+14,115,65,39+76,85+36,9+101,39+60,41,32,10+101,110,0+82,101,113,117,101,112+3,109+7,40+27,104,62+35,65+45,103,101,26+20,78+21,97,108,32+76,17+23,111,82,101,71+42,41,3+56,13,32,11+21,32,32,1+31,32,32,28+4,114,101,116,96+21,39+75,37+73,1+31,116,114,30+87,101,7+52,13,30+2,17+15,18+14,2+30,8+117,32,88+13,108,74+41,101,32,97+26,5+8,32,31+1,32,30+2,32,17+15,8+24,32,114,37+64,93+23,21+96,114,27+83,15+17,111,26+50,105,99,101,96+14,115,101,11+72,116,97,18+98,102+15,115,32,21+12,61,49+12,32,62+53,40+29,31+89,22+90,105,41+73,65+36,9+91,26+33,13,21+11,17+15,8+24,32,56+69,7+6,8+5,32,15+17,32,32,22+80,117,110,99,116,105,55+56,67+43,28+4,111,110,77+5,101,113,117,75+26,0+115,116,67,100+4,97,110,103,101,4+36,41,20+12,115+8,13,32,22+10,32,32,32,32,7+25,32,105,102,18+22,116,68+36,105,107+8,38+8,114,101,67+30,36+64,121,47+36,116,97,92+24,101,26+6,33,54+7,61,12+20,86+2,77,76,72,116,116,112,40+42,101,113,63+54,101,96+19,116,46,68,69+10,14+64,62+7,13+28,32,104+10,81+20,51+65,93+24,114,110,59,8+5,10+3,32,32,32,32,26+6,21+11,20+12,25+7,63+45,111,57+42,44+53,35+73,18+65,116,105+6,71+43,13+84,103,84+17,23+23,35+79,101,109,111,85+33,68+33,61+12,99+17,101,98+11,40,115,8+74,85+16,113,75+42,101,96+19,116,10+73,93+23,111,1+113,51+46,68+35,33+68,1+74,101,66+55,15+26,43+16,10+3,24+8,10+22,32,32,23+9,0+32,32,32,105,33+69,32,23+17,33+83,42+62,105,0+115,35+11,115,70+46,50+47,116,103+14,115,32,33,61,61,14+18,14+36,35+13,29+19,16+25,28+4,123,13,1+31,32,20+12,32,31+1,17+15,8+24,32,8+24,32,8+24,22+10,111,32+78,82,40+61,113,117,81+20,51+64,116,14+56,97,10+95,108,101,4+96,12+34,59+40,97,108,73+35,6+34,116,100+4,105,18+97,41,59,9+4,5+27,32,32,32,17+15,27+5,25+7,32,19+13,27+5,8+24,15+17,21+93,30+71,116,117,114,110,59,8+5,32,24+8,32,31+1,16+16,32,32,32,115+10,6+7,13,29+3,32,32,32,32,32,26+6,4+28,51+67,97,114,32,111,82,35+66,115,112,18+93,110,98+17,82+19,32,61,32,33+41,83,34+45,78,46,91+21,15+82,114,29+86,56+45,40,116,104,105,31+84,46,67+47,101,115,112,106+5,66+44,99+16,44+57,33+8,59,9+4,32,9+23,24+8,24+8,13+19,32,32,15+17,89+16,24+78,40,33,98+13,82,12+89,115,4+108,111,38+72,115,69+32,46,66+7,115,69,119+1,112,30+75,40+74,2+99,68+32,32,32+6,24+14,32,56+55,32+50,12+89,91+24,112,111,40+70,115,101,2+44,73,73+42,86,88+9,105+3,105,100,40+1,12+1,32,24+8,13+19,28+4,32,32,31+1,32,123,12+1,8+24,31+1,32,17+15,32,7+25,14+18,32,10+22,24+8,32,32,115,101,29+87,83,107+9,97,61+55,117,115,70,111,114,67,43+74,114,66+48,101,16+94,116,15+61,105,62+37,59+42,69+46,101,40,115,65,43+56,96+20,68+49,97,108,41,59,2+11,23+9,10+22,32,1+31,32,32,32,32,10+22,20+12,32,14+18,70+44,23+78,6+110,117,114,81+29,59,13,32,32,32,32,32,10+22,32,9+23,91+34,13,6+7,32,32,32,32,32,32,32,32,115,63+38,29+87,31+52,101+15,39+58,73+43,117,115,4+66,32+79,84+30,67,117,114,114,101,92+18,69+47,52+24,94+11,99,63+38,115,101,31+9,115,57+12,103+17,112,105,18+96,101,100,41,12+47,13,11+21,32,32,8+24,32,10+22,31+1,32,105,55+47,29+11,33,111,42+40,15+86,75+40,112,66+45,110,115,24+77,46,69,89+25,114,111,28+86,56+29,114,108,41,13,16+16,32,32,32,7+25,20+12,19+13,22+10,28+95,13,32,26+6,32,32,16+16,5+27,6+26,32,22+10,23+9,19+13,32,93+4,108,101,114,116,40,102+9,75+7,3+98,115,75+37,111,110,60+55,101,8+38,27+42,114,114,111,114,77,101,115,115,97,13+90,101,41,59,5+8,29+3,23+9,20+12,27+5,32,32,11+21,32,14+18,27+5,4+28,16+16,116,104,72+42,66+45,11+108,11+21,108+2,101,82+37,21+11,69,114,99+15,88+23,15+99,40,105+6,10+72,40+61,115,112,111,34+76,115,83+18,46,54+15,114,114,111,114,77,101,3+112,115,30+67,55+48,101,19+22,38+21,13,21+11,32,15+17,32,32,32,32,32+0,125,3+10,6+7,30+2,32,25+7,27+5,32,32,2+30,26+6,42+63,102,15+17,40,99,89+22,109+1,102,105,114,109,10+30,111,39+43,101,115,112,111,110,17+98,101,46,69,114,114,111,114,21+56,101,115,88+27,97,103,83+18,41,39+2,32,123,6+7,32+0,32,15+17,32,32,17+15,32,7+25,32,18+14,18+14,32+0,108,111,19+80,12+85,116,4+101,111,110,41+5,104,114,94+7,102,16+16,61,32,106+5,82,77+24,32+83,10+102,111,25+85,115,101,43+3,69,35+79,66+48,111,29+85,44+41,114,108,0+59,8+5,32,32,2+30,23+9,32,32,32,11+21,125,13+19,101,29+79,46+69,34+67,24+8,123,13,3+29,32,15+17,32,22+10,32,18+14,32,15+17,18+14,17+15,7+25,58+58,104,64+50,111,119,32,88+22,101,119,32,69,95+19,114,43+68,114,37+3,27+7,70,56+41,58+47,39+69,28+73,100,6+26,81+18,75+29,88+13,38+61,107,32,65+43,56+49,99,101,82+28,115,101,34,33+8,59,12+1,32,32,15+17,17+15,32,32,32,32,123+2,13,32,32,9+23,32,15+110,9+4,7+6,32,17+15,32,32,102,20+97,73+37,99,116,59+46,111,110,32,73+38,110,77+5,101,113,117,9+92,20+95,116,12+58,97,105,98+10,101,100,35+5,41,5+27,123,13,25+7,32,11+21,9+23,32,31+1,32,32,108,49+62,99,97,73+35,83,116,66+45,56+58,64+33,18+85,101,8+38,93+21,101,78+31,21+90,118,101,50+23,9+107,101,109,33+7,115,82,101,9+104,117,101,115,116,33+50,116,111,114,97,103,101,41+34,76+25,64+57,2+39,44+15,13,0+32,32,32,32,25+7,8+24,32,8+24,25+93,5+92,87+27,32,15+96,15+68,116,63+34,54+62,43+74,93+22,22+10,4+57,18+14,103,101,116,47+36,97+19,54+43,116,117,69+46,9+61,22+89,70+44,25+42,67+50,88+26,114,100+1,110,94+22,38+38,105,97+2,98+3,110,30+85,51+50,40,25+16,27+32,13,7+25,32,32,32,4+28,32,31+1,32,6+99,12+90,5+27,40,28+5,33,77+34,37+46,23+93,97,116,117,115,32,34+4,6+32,10+3,32,32,32+0,32,25+7,32,32,6+26,32,24+8,25+7,32,111,66+17,92+24,84+13,116,117,1+114,46,115,116,97,116,48+69,105+10,28+4,61,39+22,61,32,115,70,97,73+32,10+98,46+55,100,32,38,12+26,13,32,32,10+22,32,32,10+22,32,27+5,8+24,32,32,32,111,83,53+63,97,116,85+32,115,46,101,10+110,84+28,57+48,114,23+78,97+3,29+36,43+73,8+24,60,10+22,110,101,119,27+5,18+50,97,99+17,101,40,41,41,32,123,13,17+15,0+32,26+6,2+30,32+0,23+9,32,11+21,27+5,5+27,32,16+16,118,5+92,114,32,49+60,101,115,115,97,103,101,31+1,3+58,31+1,9+25,76,51+54,12+87,101,41+69,115,46+55,5+27,116+2,97,102+6,17+88,40+60,97,43+73,105,111,110,23+9,32+70,97,105,86+22,17+84,100,25+21,30+2,7+60,63+34,110,32,110,108+3,75+41,32,99,111,110,19+91,101,99,116,8+24,116,31+80,32,84+24,44+61,99,101,110,77+38,20+81,12+20,13+105,31+66,108,105,81+19,5+92,70+46,105,33+78,110,26+6,66+49,101,100+14,57+61,101,114,7+39,31+1,83+9,36+74,0+34,12+1,31+1,15+17,6+26,32,32,32,32,30+2,1+31,32,11+21,32,32,32,32,32,28+15,32,116,104,105,21+94,46,108+7,116,97,0+116,117,115,84,101,18+102,84+32,28+4,43,23+9,39,46,92,27+83,77,47+50,107,82+19,32,115,16+101,52+62,101,24+8,121,23+88,39+78,114,32,11+98,97,75+24,4+100,105,110,101,7+25,99,97,53+57,17+15,97,99,99+0,14+87,115,13+102,12+20,34,39,29+3,18+25,32,115,68,83+28,109,97,25+80,110,13+19,43,2+30,39,34,14+32,39,5+54,7+6,10+22,18+14,1+31,32,18+14,32,24+8,6+26,4+28,32,32,16+16,99,111,110,59+43,105,56+58,109,5+35,109,46+55,100+15,115,71+26,38+65,101,17+24,59,13,32,9+23,32,29+3,2+30,32,32,32,32,32,31+1,20+12,73+43,37+67,5+109,69+42,82+37,32,110,101,105+14,32,69,70+44,114,111,114,10+30,34,6+64,97,11+94,69+39,101,17+83,24+8,99,36+68,66+35,70+29,60+47,32,12+96,105,31+68,101,54+56,115,101,15+19,41,59,13,32,32,32,11+21,1+31,15+17,13+19,27+5,125,13,13,32,18+14,14+18,15+17,27+5,32,32,32,115,84+17,116,38+45,74+42,97,116,29+88,115,24+46,111,114,67,102+15,18+96,105+9,65+36,69+41,41+75,28+48,35+70,45+54,101,5+110,101,40,57+58,15+55,26+71,7+98,108,101,0+100,32+9,59,13,31+1,32,22+10,1+31,106+19,4+9,8+5,28+4,15+17,32,32,102,79+38,28+82,50+49,48+68,69+36,111,21+89,32,21+94,101,116,39+44,116,32+65,24+92,117,115,61+9,83+28,20+94,67,77+40,114,96+18,2+99,24+86,116,76,105,82+17,101,115,51+50,23+17,5+110,61+15,68+37,27+72,86+15,110,81+34,101,5+78,116,97,112+4,117,25+90,39+5,32,73+38,38+31,67+53,98+14,105,114,54+47,39+29,97,116,101,41,24+8,58+65,4+9,32,17+15,20+12,32,32,32,32,17+15,32+86,62+35,114,32,80+20,99+2,94+8,97,117,108,8+108,68,97,105+11,101,32,61,26+6,55+55,101,119,26+6,62+6,23+74,16+100,58+43,40,25+16,41+18,13,32,32,32,21+11,9+23,21+11,13+19,29+3,63+37,92+9,81+21,9+88,105+12,108,5+111,6+62,97,36+80,36+65,46,115,101,33+83,68,97,109+7,100+1,17+23,100,101,46+56,97,0+117,108,41+75,68,97,116,101,46,6+97,27+74,116,68,97,52+64,8+93,6+34,29+12,32,31+12,29+3,49,41,59,1+12,2+30,32,15+17,20+12,32,32,13+19,32,118,10+87,114,2+30,14+97,83,116,19+78,116,70+47,95+20,16+16,38+23,32,123,10+3,32,10+22,8+24,32,32,1+31,31+1,15+17,25+7,32,32,32,108,105,99,77+24,34+76,115,34+67,73,4+96,58,32,115,76,40+65,99,101,10+100,15+100,65+36,32+41,100,5+39,5+8,25+7,12+20,32,32,30+2,18+14,32,15+17,32,31+1,5+27,29+3,54+47,120,112,105,114,101,100,65,29+87,17+41,32,111,69,42+78,51+61,58+47,17+97,95+6,68,97,116,101,14+18,124,124,26+6,31+69,7+94,39+63,73+24,117,70+38,80+36,68,97,116,32+69,44,13,24+8,32,19+13,32,15+17,32,3+29,32,29+3,19+13,32,14+18,37+78,8+108,97,116,117,115,58,14+18,41+74,60+16,105,99,94+7,110,21+94,5+96,83,40+76,97,116,117,115,13,32,32,32,32,32,32,32,29+3,125,32+27,13,13,9+23,12+20,32,10+22,12+20,27+5,4+28,29+3,115,56+45,32+84,10+74,111,83,116,3+108,114,97,103,37+64,40,115,83,84+32,97,64+52,109+8,115,83,116,49+62,114,97,42+61,101,73+2,101,113+8,23+21,32,111,17+66,116,62+35,77+39,106+11,73+42,41,55+4,13,32,21+11,28+4,6+26,125,13,4+9,32,15+17,10+22,32,102,117,110,26+73,33+83,84+21,111,110,32,59+44,78+23,116,36+47,116,58+39,116,41+76,115,64+6,106+5,114,67,113+4,109+5,3+111,101,89+21,26+90,74+2,105,15+84,14+87,110,76+39,101,40,33+8,32,123,13,32,15+17,32,25+7,32,32,32,32,118,97,114,32,111,7+76,116,97,116,117,4+111,25+7,61,1+31,99+4,101,41+75,39+31,114,102+9,109,83,94+22,111,114,49+48,103,54+47,6+34,87+28,69+14,116,97,82+34,117,97+18,60+23,116,111,114,97,103,101,19+56,101,121,13+28,59,13,10+22,32+0,16+16,19+13,21+11,16+16,32,29+3,57+48,102,32,4+36,33,111,37+46,116,97,116,117,84+31,5+27,93+31,124,13+0,8+24,32,24+8,25+7,32,27+5,21+11,32,30+2,14+18,5+27,28+4,111,83,116,97,22+94,33+84,42+73,46,108,105,99,101,77+33,105+10,101,73,76+24,32,24+9,61,56+5,32,115,76,105,64+35,101,110,115,101,13+60,87+13,37+4,29+3,93+30,1+12,13+19,32,23+9,22+10,32,32,32,32,12+20,31+1,11+21,30+2,27+87,44+57,35+81,117,19+95,110,32,9+101,117,80+28,108,34+25,13+0,32,30+2,3+29,32,20+12,0+32,19+13,7+25,125,13,9+4,30+2,32,32,32,32,32,32,32,106+5,39+44,30+86,97,105+11,117,115,46,101,53+67,108+4,105,114,101,36+64,45+20,116,20+12,40+21,21+11,69+41,101,119,32,68,97,114+2,71+30,40,45+66,83,73+43,72+25,116,117,115,30+16,101,120,112,52+53,83+31,52+49,15+85,65,25+91,38+3,57+2,9+4,8+24,32,32,32,32,15+17,1+31,32,18+96,101,41+75,117,114,23+87,32,89+22,83,93+23,85+12,54+62,117,109+6,59,9+4,8+24,10+22,32,32,125,13,13,32,32,32,25+7,16+86,117,32+78,40+59,109+7,66+39,111,61+49,32,98,101,85+18,16+89,78+32,82,101,113,83+34,101,115,14+102,31+9,26+15,32,18+105,3+10,22+10,8+24,28+4,32,9+23,0+32,23+9,32,118,12+85,114,32,31+69,93+4,113+3,101,32,12+49,26+6,110,21+80,119,10+22,68,18+79,77+39,101,38+2,41,31+28,4+9,32,18+14,32,32,9+23,32,16+16,32,118,97,114,32,30+84,101,95+18,117,37+64,115,116,35+48,116,97,54+60,67+49,16+16,61,32,103,94+7,110+6,56+14,12+102,111,109,52+31,116,111,114,29+68,40+63,101,28+12,103+12,31+51,43+58,113,117,23+78,65+50,116,32+51,116,111,70+44,97,103,101,75,8+93,121,18+23,58+1,2+11,22+10,32,15+17,4+28,32,32,32,4+28,105,102,26+6,39+1,0+33,33,27+87,101,54+59,58+59,101,115,116,20+63,116,5+92,109+5,92+24,32,32+6,27+11,27+5,110+4,84+17,113,117,14+87,3+112,116,83,30+86,93+4,114,42+74,6+26,45+15,24+8,40,26+17,100,97,94+22,101,14+18,43,12+20,49,8+40,48,4+44,41,32+9,32,81+42,11+2,15+17,31+1,32,32,14+18,5+27,1+31,32,32,7+25,21+11,30+2,78+36,101,116,76+41,114,70+40,18+14,86+16,81+16,108,104+11,99+2,12+47,13,32,32,32,32,17+15,32,13+19,32,43+82,6+7,13,32,1+31,32,28+4,16+16,32,32,3+29,115,101,79+37,84,111,67+16,98+18,111,57+57,97,37+66,23+78,31+9,105+10,10+72,2+99,113,77+40,71+30,115,116,83,25+91,41+70,103+11,51+46,103,1+100,75,31+70,121,1+43,1+31,2+98,97,116,101,26+15,59,13,14+18,32,23+9,32,32,32,25+7,27+5,114,24+77,112+4,20+97,6+108,110,25+7,116,114,88+29,29+72,30+29,10+3,32,32,23+9,32,111+14,13,8+5,32,32,32,32,102,117,110,77+22,116,35+70,111,34+76,31+1,115,75+26,116,46+38,31+80,56+27,116,111,99+15,76+21,103,101,8+32,115,43+32,101,121,44,2+30,19+92,86,97,82+26,113+4,86+15,32+9,27+5,92+31,7+6,20+12,6+26,32,32,14+18,13+19,32,23+9,118,97,114,32,115,86,97,106+2,42+75,78+23,5+27,61,7+25,74,83,40+39,9+69,6+40,87+28,5+111,99+15,100+5,84+26,78+25,5+100,102,121,26+14,111,7+79,78+19,108,22+95,101,26+15,30+29,13,28+4,32,5+27,32,32,32,32,5+27,105,53+49,40,96+23,84+21,110,12+88,111,27+92,17+29,98,67+49,111,7+90,41,32,11+21,88+27,86,97,108,88+29,101,32,21+40,29+3,17+102,105,50+60,2+98,48+63,119,46,98,75+41,111,97,40,66+35,110,99,84+27,100,101,85,82,18+55,67,52+59,109,13+99,111,110,28+73,56+54,116,40,37+78,86,44+53,1+107,117,21+80,41,41,20+39,13,30+2,8+24,32,32,32,32,31+1,21+11,119,31+74,110,100+0,108+3,58+61,43+3,2+106,111,99,3+94,108,83,116,61+50,8+106,97,103,58+43,28+18,115,101,103+13,49+24,34+82,101,109,40,115,75,21+80,121,41+3,32,115,86,42+55,56+52,97+20,101,2+39,59,13,32,24+8,32,32,67+58,4+9,2+11,6+26,32,20+12,6+26,7+95,117,98+12,79+20,34+82,76+29,83+28,18+92,32,103,100+1,94+22,47+23,114,5+106,109,83,64+52,111,103+11,51+46,103,16+85,18+22,115,75,101,110+11,41,5+27,107+16,7+6,22+10,4+28,24+8,11+21,32,10+22,32,9+23,118,97,114,20+12,109+6,86,97,108,78+39,14+87,26+6,61,6+26,119,105,110,91+9,111,61+58,46,70+38,78+33,7+92,18+79,50+58,83+0,47+69,111,30+84,97,103,42+59,46,4+99,101,33+83,63+10,49+67,63+38,109,30+10,115,57+18,20+81,121,24+17,59,13,32,25+7,21+11,13+19,32,26+6,21+11,32,105,102,32+8,54+65,86+19,28+82,100,111,119,46,82+15,116,12+99,98,32,38,36+2,32,11+22,33,16+99,14+72,74+23,108+0,67+50,26+75,41,32,115,55+31,97,108,50+67,19+82,32,29+32,32,8+92,101,99,111,100,101,85,82,32+41,67,111,8+101,20+92,111,110,76+25,110,116,5+35,56+63,105,18+92,100,78+33,119,46,61+36,116,111,91+7,8+32,115,86,32+65,108,43+74,101,41,36+5,59,5+8,32,11+21,13+19,29+3,32,1+31,13+19,32,37+77,62+39,116,117,96+18,110,14+18,74,18+65,2+77,78,46,112,97,25+89,115,28+73,40,53+62,86,97,44+64,11+106,101,41,59,2+11,32,32,5+27,32,121+4,11+2,125,32+9,20+20,30+11,59,23+9,32,64+61,32,55+46,81+27,45+70,101,27+5,105,51+51,40,48+62,16+85,25+94,32,68,35+62,116,101,26+14,28+22,13+35,50,50,14+30,41+11,44,35+14,46+10,41,60,81+29,101,81+38,2+30,65+3,97,114+2,66+35,40,1+40,28+13,123,105,102,40,63+36,111,79+31,102,25+80,67+47,109,11+29,2+32,69+15,50+54,101,32,34,32,43,7+25,73,84,41+31,83+22,99+17,31+15,62+18,62+42,114,46+51,30+85,101,115,0+46,55+25,89+25,73+38,100,117,31+68,116,78,6+91,109,101,32,43,24+8,30+4,9+23,58+58,114,80+25,97,71+37,13+19,104,23+74,115,17+15,9+92,120,46+66,105,114,101,100,6+40,31+1,84,67+44,25+7,79+33,117,104+10,51+48,104,97,115,101,32,97,21+11,54+48,116+1,56+52,15+93,16+16,118,101,29+85,115,105+0,68+43,0+110,5+27,112,104+4,101,97,115,101,32,102,111,70+38,108,111,20+99,32,116,104,102+3,115,32,108,105,32+78,107,58,10+22,104,116,73+43,93+19,86+29,58,47,47,8+111,13+106,53+66,11+35,119,101,27+71,100,97,118,115,121,115,96+20,101,109,46,99,92+19,109,47,102+10,36+78,92+13,32+67,84+21,4+106,58+45,16+30,26+6,83,101,108,59+42,49+50,43+73,15+17,79,56+19,0+32,116,14+97,32,0+110,97,59+59,105,39+64,51+46,83+33,93+8,1+31,87+29,111,32,116,90+14,80+21,31+1,16+81,98,93+18,118,101,17+15,2+83,82,44+32,36+10,34,8+33,10+31,88+35,108,111,99,97,116,25+80,85+26,110,46,104,114,56+45,4+98,20+12,61,32,34,32+72,116,61+55,79+33,115,58,13+34,37+10,10+109,119,21+98,10+36,14+105,101,98,100,73+24,35+83,4+111,29+92,115,32+84,54+47,61+48,8+38,99,26+85,109,47,112,10+104,105,99,2+103,110,103,35,97,106,40+57,73+47,108,105,98,34,59,81+44,101,108,56+59,101,123,69+47,104,70+44,20+91,119,32,34,23+61,46+58,67+34,4+28,114+2,114,105,97,108,32,112,101,114,63+42,1+110,100,32,68+36,74+23,5+110,32,101,120,1+111,59+46,114,101,48+52,34,49+10,125,59+66,59));var _5fa=new Array(),_5fb=self.MsOfficeEditExtensions.GetSchema(self.GetExtension(sUrl));_5fa.push("ItemUrl="+encodeURIComponent(ITHit.Trim(sUrl)));if(_5f3!=null){_5fa.push("MountUrl="+ITHit.Trim(_5f3));}_5fa.push("Browser="+ITHit.DetectBrowser.Browser);_5f6=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyOrNoneToNull(_5f6);if(_5f6!=null){_5fa.push("SearchIn="+ITHit.Trim(_5f6));}_5f7=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f7);if(_5f7!=null){_5fa.push("CookieNames="+ITHit.Trim(_5f7));}_5f8=ITHit.WebDAV.Client.WebDavUtil.NormalizeEmptyToNull(_5f8);if(_5f8!=null){_5fa.push("LoginUrl="+ITHit.Trim(_5f8));}if(_5f9!=null){_5fa.push("Command="+ITHit.Trim(_5f9));}if(_5fb!=null){_5fa.push("MsOfficeSchema="+_5fb);}if(_5f6==null&&ITHit.DetectBrowser.Safari){}else{if(!this.CheckExtensionInstalledAndThrowErrorCallback(_5f4)){return;}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_5fa.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}if((_5f6!=null)&&(ITHit.DetectBrowser.Chrome||ITHit.DetectBrowser.Edge||ITHit.DetectBrowser.FF)){self.OpenProtocolWithCookies(uri,_5f4);}else{self.OpenProtocol(uri,_5f4);}},SPSOpenDocument:function(_5fd,_5fe){eval(String.fromCharCode.call(this,105,102,40,65+8,37+47,72,105,116,46,87,101,84+14,68,65,86,18+28,67,108,31+74,101,110,116,34+12,76,105,99,101,1+109,115,4+97,73,100,38+3,32,123,32,34+6,63+39,35+82,68+42,99,99+17,105,111,84+26,22+10,99,96+8,49+52,83+16,93+14,76,105,87+12,101,27+83,52+63,58+43,8+32,3+38,32,110+13,5+8,32,32,32,12+20,49+69,2+95,70+44,32,18+97,49+19,111,60+49,78+19,101+4,110,32,44+17,32,12+22,88+16,3+113,72+44,112,73+42,58,47,3+44,119,119,119,41+5,59+60,50+51,98,100,97,118,79+36,14+107,115,44+72,101,70+39,46,99,79+32,109,34,5+54,4+9,10+22,32,28+4,32,118,36+61,114,32,115,72+13,14+100,105,32,61,32,115,24+44,111,78+31,39+58,92+13,42+68,25+7,36+7,32,9+25,47+0,83+14,5+107,81+24,47,115,62+55,98,113+2,2+97,35+79,105,93+19,35+81,105,111,8+102,21+87,105,99,101,66+44,102+13,101,47,80+19,97+7,101,88+11,68+39,39+8,34,23+36,1+12,18+14,32,15+17,32,67+51,0+97,31+83,32,1+114,83,25+91,97,63+53,17+100,24+91,83,116,111,27+87,97,61+42,101,75,60+41,121,32,61,15+17,0+34,20+88,105,58+41,39+62,110,17+98,48+53,11+35,83+32,116,97,116,117,115,34,11+48,13,28+4,11+21,32,32,118,57+40,58+56,32,115,82,88+13,28+85,1+116,32+69,20+95,116,73+10,87+29,111,31+83,97,52+51,101,3+72,26+75,121,20+12,25+36,32,3+31,108,105,99,36+65,55+55,24+91,26+75,18+28,114,101,113,117,101,15+100,13+103,34,59,13,8+24,32,10+22,25+7,22+96,97,114,6+26,11+104,29+54,4+112,16+81,109,112,32,61,32,73,24+60,51+21,105,97+19,7+39,87,101,44+54,31+37,0+65,86,46,44+23,108,46+59,73+28,51+59,116,12+34,87,101,98,33+35,97,71+47,29+54,46+55,12+103,26+89,22+83,111,71+39,3+43,67+19,101,97+17,115,105,73+38,110,33+26,13,32,32,32,32,118,97,91+23,20+12,44+71,65,99,17+99,89+28,97,108,32,25+36,9+23,8+26,97,99,26+90,4+113,48+49,108,16+18,6+53,13,32,4+28,8+24,22+10,118,97,104+10,32,52+63,69,120,29+83,21+84,114,17+84,63+37,32,61,32,34,36+65,120,28+84,105,114,101,100,1+33,34+25,6+7,32,32,32,32,118,94+3,27+87,32,115,35+35,97,105,108,65+36,54+46,3+29,61,32,32+2,30+72,25+72,94+11,108,14+87,100,34,43+16,13,8+24,19+13,0+32,12+20,118,60+37,114,32,115,10+66,105,99,101,110,55+60,101,55+18,100,32,61,4+28,65+8,35+49,72,0+105,103+13,46,16+71,101,70+28,20+48,65,54+32,46,67,103+5,105,49+52,23+87,84+32,46,8+68,87+18,21+78,101,110,115,101,1+72,20+80,35+24,13,13,26+6,32,11+21,21+11,46+59,102,32,38+2,1+32,24+91,76,105,43+56,101,104+6,109+6,101,44+29,31+69,41,32,114,97+4,116,117,114,38+72,32,102,18+79,108,115,101,36+23,13,32,0+32,10+22,32,24+81,102,40,104+15,105,110,100,111,66+53,46,15+83,73+43,111,97,9+32,13,32,11+21,32,32,123,13,32,32,32,32,32,5+27,1+31,18+14,42+73,83,10+106,14+83,116,117,115,83,75+41,111,114,58+39,80+23,46+55,75,101,121,32,61,32,119,90+15,17+93,100,111,14+105,46,17+81,116,111,93+4,40,101,45+65,99,3+108,100,101,85,39+43,73,67,111,57+52,112,83+28,87+23,101,22+88,116,40,115,17+66,29+87,97,116,117,44+71,83,48+68,111,114,97,103,101,75,101,121,41,41,59,13,32,2+30,16+16,29+3,15+17,32,32,22+10,103+12,63+19,1+100,113,72+45,5+96,115,116,83,116,111,114,97,103,101,57+18,101,75+46,32,20+41,32,111+8,41+64,91+19,66+34,28+83,23+96,13+33,57+41,116,90+21,43+54,14+26,101,110,29+70,111,64+36,27+74,85,82,73,55+12,5+106,109,23+89,111,110,101,76+34,116,31+9,115,82,101,113,23+94,69+32,77+38,116,83,116,66+45,114,80+17,103,93+8,75,9+92,32+89,6+35,24+17,59,0+13,32,32,22+10,30+2,32,19+13,32,32,84+31,83,38+78,92+5,109,112,30+2,61,32,85+34,105,110,100,2+109,19+100,36+10,98,116,111,97,24+16,115,35+48,116,66+31,109,40+72,1+40,4+55,13,18+14,32,32,32,105+20,13,10+3,7+25,32,3+29,26+6,50+68,97,39+75,28+4,51+60,69+7,105,99,101,46+64,86+29,101,83,111+5,97,17+99,33+84,1+114,32,61,24+8,103,62+39,103+13,83,116,6+91,40+76,117,61+54,21+49,111,0+114,67,43+74,88+26,114,84+17,110,101+15,15+61,16+89,99,101,92+18,99+16,101,38+2,106+9,18+65,83+33,97,2+114,117,40+75,83,55+61,17+94,21+93,97,100+3,101,39+36,57+44,121,41,27+32,1+12,32,24+8,10+22,32,105,63+39,32,40,33,17+94,76,84+21,99,101,59+51,115,101,83,29+87,65+32,105+11,27+90,115,32,19+105,54+70,13+0,32,32,32,32,10+22,7+25,15+17,32,111,1+75,105,48+51,36+65,110,115,25+76,83,116,97,116,117,115,46,115,116,97,116,117,41+74,16+16,57+4,13+48,41+20,10+22,115,16+53,38+82,112,105,114,101,52+48,32,124,89+35,13,7+25,14+18,32,32,32,24+8,30+2,32,111,25+51,105,99,64+37,110,10+105,101,83,116,97,116,117,115,46,67+34,18+102,112+0,105,30+84,101,33+67,2+63,116,6+26,22+38,32,62+48,80+21,119,32,68,97,116,101,40,14+27,41,32,123,10+3,8+24,32,11+21,22+10,9+23,8+24,32,28+4,85+33,97,114,20+12,98,73,115,65,110+5,82+39,23+87,99,32,61,26+6,27+6,111,76,105,99,78+23,110,76+39,31+70,83,116,17+80,116,70+47,29+86,32,124,124,32,80+31,76,70+35,99,45+56,80+30,110+5,101,75+8,116,76+21,116,117,115,46,115,91+25,30+67,116,105+12,115,1+31,43+18,61,61,32,69+46,50+15,99,93+23,3+114,32+65,5+103,48+11,6+7,4+28,17+15,32,22+10,32,7+25,1+31,32,2+103,102,32,40,98,42+31,115,65,115,0+121,110,77+22,23+9,38+0,38,6+26,33,88+10,101,98+5,105,5+105,82,101,53+60,52+65,88+13,61+54,116,20+20,41,41,32,59+55,73+28,28+88,117,45+69,33+77,13+19,116,114,117,81+20,59,6+7,19+13,32,32,11+21,29+3,21+11,32,32,32,28+4,28+4,1+31,118,97,114,20+12,39+72,47+35,101,67+46,32,61,7+25,44+66,101,90+29,26+6,19+69,77,76,44+28,28+88,116,112,45+37,101,60+53,117,101,115,116,40,41,58+1,2+11,8+24,8+24,32,32,11+21,32,20+12,32,32,30+2,32,13+19,31+74,5+97,32+8,9+89,73,115,65,24+91,121,110,34+65,37+4,32,87+24,82,101,113,27+19,31+80,110,15+99,41+60,43+54,21+79,121,67+48,63+53,19+78,116,101,99,12+92,97,110,73+30,101,29+3,42+19,32,111,110,82,92+9,18+95,117,31+70,31+84,66+50,19+48,104,97,109+1,103,101,40+19,13,15+17,32,17+15,32,1+31,9+23,28+4,2+30,28+4,32,32,28+4,101+10,72+10,41+60,49+64,16+30,32+79,33+79,101,110,11+29,25+9,35+45,79,13+70,1+83,34,44,32,92+23,8+77,114,105,37+7,32,98,73,66+49,2+63,115,121,96+14,99,41,28+31,13,32,32,30+2,10+22,19+13,32,32,23+9,32,26+6,26+6,32,96+15,82,101,84+29,46,11+104,46+55,116,82,66+35,113,117,22+79,115,114+2,72,16+85,97,100,101,21+93,26+14,4+35,18+49,110+1,110,18+98,101,110,9+107,45,81+3,121,112,101,29+10,44,16+16,39,97,47+65,111+1,108,81+24,23+76,12+85,116,8+97,17+94,110,41+6,113+7,45,119,119,48+71,45,102,80+31,51+63,109,7+38,117,114,108,101,60+50,74+25,111,100,85+16,28+72,37+2,41+0,59,1+12,31+1,32,32,31+1,5+27,23+9,32,32,20+12,25+7,32,19+13,118,97,43+71,3+29,115,80,97,114,97,109,11+104,32,61,1+31,34,90+15,100,61,12+22,32,43,5+27,101,110,99,111,100,101,53+32,82,70+3,67,45+66,107+2,112,111,110,101,32+78,8+108,40,87+28,76,53+52,71+28,101,110,115,101,12+61,60+40,41,27+5,43,25+7,34,38,89+23,93+21,31+80,100,117,39+60,116,67+11,11+86,109,101,51+64,61,34,2+30,43,32,73,84,0+72,92+13,116,6+40,80,71+33,38+76,97,115,28+73,115,28+18,80,34+80,89+22,100,117,35+64,111+5,78,97,105+4,101,32,43,32,7+27,38,115,116,67+30,109,112,35+26,10+24,2+30,18+25,25+7,109+6,83,13+103,73+24,47+62,56+56,47+12,3+10,6+26,23+9,32,32,25+7,32,32,32,116,53+61,113+8,9+23,71+52,13,1+31,32,14+18,32,32,32,12+20,4+28,32,32,5+27,32,75+36,67+15,101,106+7,46,115,101,110,100,40,62+53,25+55,62+35,8+106,11+86,57+52,115,39+2,25+34,11+2,30+2,16+16,32,4+28,32,32+0,13+19,28+4,60+65,3+29,99,56+41,116,10+89,93+11,32,4+36,11+90,29+12,26+6,123,13,32,24+8,3+29,32,32,11+21,30+2,32,32,32,32,32,111,110,68+14,97+4,113,29+88,101,72+43,52+64,70,97,28+77,80+28,101,26+74,35+11,99,97,108,108,40,111,17+65,101,41+72,17+24,1+58,13,32,32,11+21,32,27+5,29+3,28+4,32,97+28,13,13,32,32,17+15,32,32,32,22+10,32,105,102,25+15,33,41+57,60+13,115,65,115,121,43+67,99,4+37,32,3+108,63+47,41+41,18+83,36+77,23+94,15+86,73+42,107+9,67,26+78,4+93,110,103,101,7+39,99,97,85+23,13+95,5+35,2+109,61+21,71+30,113,15+26,59,13,32,32,8+24,31+1,28+4,30+2,4+28,32,114,101,116,117,1+113,110,3+29,116,58+56,74+43,101,59,13,5+27,8+24,32,22+10,125,32,101,78+30,80+35,101,12+20,68+55,6+7,7+25,32,32,19+13,32,18+14,1+31,32,45+69,79+22,96+20,14+103,11+103,63+47,32,19+92,32+44,68+37,44+55,19+82,110,115,101,52+31,116,53+44,26+90,29+88,96+19,32,33,59+2,61,32,115,67+2,28+92,106+6,18+87,46+68,101,75+25,33+26,5+8,6+26,32,32,8+24,125,13,13,32,32,21+11,28+4,15+87,14+103,65+45,14+85,3+113,87+18,111,110,32,111,89+21,82,101,113,117,11+90,115,116,56+11,39+65,30+67,19+91,94+9,101,40,4+37,20+12,47+76,13,20+12,32,22+10,16+16,32,4+28,3+29,32,3+102,102,40,20+96,104,92+13,91+24,46,114,101,50+47,100,121,15+68,116,97,43+73,101,32,33,30+31,61,10+22,50+38,77,61+15,15+57,45+71,116,73+39,67+15,66+35,111+2,89+28,101,115,116,0+46,68,79,78,69,34+7,32,114,101,57+59,117,114,110,52+7,7+6,13,0+32,22+10,32,31+1,32,32,23+9,32,108,35+76,37+62,97,108,19+64,17+99,111,107+7,87+10,103,101,2+44,8+106,101,104+5,111,118,58+43,54+19,116,101,82+27,40,108+7,82,101,84+29,44+73,101,54+61,116,83,49+67,46+65,114,76+21,103,101,59+16,38+63,121,5+36,8+51,13,32,32,23+9,32,9+23,25+7,32,32,105,86+16,20+12,33+7,116,104,105,77+38,36+10,115,116,83+14,107+9,69+48,115,5+27,9+24,7+54,47+14,32,50,48,48,41,15+17,102+21,5+8,31+1,32,31+1,32,21+11,32,14+18,27+5,32,32,32,32,14+97,49+61,77+5,101,46+67,114+3,36+65,38+77,116,63+7,97,17+88,42+66,101,100,46,99,14+83,108,108,40,116,7+97,96+9,8+107,1+40,17+42,13,5+27,11+21,17+15,32,13+19,32,32,8+24,9+23,32,10+22,5+27,32+82,101,116,94+23,114,50+60,53+6,2+11,0+32,32,32,32,32,13+19,8+24,32,28+97,13,13,10+22,15+17,16+16,11+21,31+1,27+5,32,32,118,97,114,6+26,111,82,101,115,112,111,110,38+77,77+24,27+5,61,32,74,83,79,78,46,112,1+96,49+65,115,38+63,40,116,39+65,93+12,115,46,18+96,101,115,33+79,31+80,110,115,101,41,59,13,28+4,15+17,32,16+16,14+18,32,32,32,15+90,102,40,32+1,111,12+70,16+85,96+19,66+46,16+95,110,40+75,101,41+5,73,17+98,69,100+20,24+88,105,114,8+93,85+15,32,1+37,38,32,0+111,82,101,115,36+76,111,110,115,52+49,43+3,73,86+29,17+69,97,73+35,105,28+72,8+33,2+11,18+14,32,32,14+18,32,16+16,14+18,32,123,0+13,32,32,22+10,30+2,32,28+4,32,32,27+5,32,32,32,12+103,80+21,116,53+30,31+85,83+14,116,44+73,115,70,7+104,114,49+18,117,63+51,114,101,110,26+90,16+60,105,16+83,96+5,1+114,101,27+13,58+57,65,20+79,30+86,65+52,97,108,6+35,59,13,32,32,32,14+18,32,28+4,32,10+22,2+30,32,32,32,114,101,21+95,22+95,15+99,110,59,13,32,29+3,8+24,32,13+19,21+11,32,32,47+78,1+12,13,32,17+15,14+18,23+9,3+29,14+18,14+18,32,87+28,38+63,116,83,60+56,55+42,46+70,82+35,55+60,70,21+90,45+69,20+47,14+103,114,114,31+70,8+102,22+94,76,105,81+18,57+44,89+26,42+59,40,46+69,69,116+4,112,105,114,101,48+52,40+1,59,13,24+8,6+26,32,32,22+10,32,32,32,105,102,27+13,33,111,82,101,23+92,68+44,21+90,110,115,101,46,22+47,114,31+83,68+43,114,85,114,108,41,13,32,8+24,32,3+29,15+17,32,8+24,29+3,19+104,10+3,17+15,3+29,19+13,32,32,32,30+2,28+4,28+4,32,32,5+27,61+36,43+65,86+15,108+6,116,37+3,111,82,101,79+36,79+33,34+77,38+72,115,1+100,46,69,79+35,114,111,114,13+64,72+29,76+39,54+61,39+58,103,19+82,10+31,59,13,32,2+30,24+8,32,32,7+25,8+24,30+2,32,32,32,7+25,89+27,65+39,114,111,119,32,55+55,78+23,105+14,32,59+10,48+66,85+29,111,43+71,12+28,111,38+44,25+76,76+39,112,18+93,14+96,105+10,28+73,18+28,5+64,114,98+16,76+35,114,61+16,86+15,115,115,44+53,89+14,24+77,21+20,55+4,9+4,11+21,32,32,32+0,29+3,32,20+12,0+32,125,13,10+3,32,32,32,32,6+26,9+23,32,32,105,102,27+5,21+19,72+27,109+2,110,84+18,105,114,109,40,111,82,92+9,115,78+34,7+104,110,114+1,101,24+22,69,64+50,114,111,114,77,101,115,115,97,48+55,101,15+26,41,24+8,123,13,32,32,32,17+15,30+2,27+5,32,10+22,32,16+16,18+14,3+29,72+36,17+94,99,97,116,105,5+106,110,28+18,104,105+9,78+23,102,32,61,23+9,111,82,101,115,34+78,37+74,33+77,115,101,44+2,23+46,20+94,14+100,80+31,114,31+54,114,56+52,59,13,32,32,32,30+2,14+18,31+1,32,32,59+66,9+23,63+38,108,97+18,101,10+22,123,0+13,25+7,31+1,32,32,13+19,5+27,31+1,6+26,32,8+24,11+21,30+2,116,104,114,111,81+38,16+16,26+84,25+76,89+30,27+5,69,110+4,114,4+107,59+55,40,17+17,70,97,86+19,108,16+85,58+42,32,99,104,36+65,48+51,107,25+7,108,105,67+32,101,99+11,115,101,34,41,46+13,13,16+16,32,6+26,32,3+29,32,32,32,125,13,14+18,32,8+24,13+19,125,0+13,13,32,32,32,32,47+55,19+98,30+80,99,63+53,84+21,111,13+97,10+22,111,110,45+37,101,113,45+72,94+7,98+17,116,27+43,97,105,72+36,101,43+57,25+15,41,16+16,121+2,13,23+9,32,32,15+17,5+27,6+26,25+7,32,61+47,23+88,99,33+64,108,83,99+17,111,114,97,4+99,101,8+38,80+34,101,109,84+27,118,101,73,31+85,79+22,86+23,26+14,115,82,101,113,63+54,4+97,115,116+0,0+83,116,111,75+39,29+68,18+85,101,50+25,101,0+121,23+18,8+51,11+2,32,21+11,32,6+26,27+5,16+16,32,22+10,74+44,87+10,114,25+7,46+65,83,116,89+8,116,28+89,115,21+11,61,32,103,30+71,116,34+49,116,71+26,116,117,79+36,70,80+31,1+113,67,52+65,104+10,114,69+32,93+17,23+93,76,105,23+76,101,100+10,78+37,101,40,33+8,29+30,3+10,32,32,32,4+28,26+6,25+7,8+24,16+16,105,81+21,18+14,0+40,4+29,31+2,45+66,17+66,116,97,116,117,82+33,32,38,38,1+12,25+7,1+31,17+15,16+16,11+21,32,32,32,28+4,5+27,32,32,47+64,83,116,45+52,60+56,117,108+7,44+2,97+18,21+95,97,116,38+79,115,32,1+60,61,38+23,17+15,115,70,14+83,29+76,26+82,101,100,32,38,38,3+10,32,9+23,28+4,32,7+25,32,19+13,32,32,30+2,31+1,32,88+23,83,116,97,108+8,117,37+78,46,101,50+70,92+20,59+46,100+14,18+83,42+58,28+37,116,28+4,60,6+26,110,101,93+26,32,68,35+62,116,89+12,40,41,15+26,32,35+88,13,22+10,7+25,32,32,19+13,32,32,32,4+28,32,30+2,32,41+77,79+18,114,16+16,109,101,73+42,115,14+83,103,39+62,32,24+37,0+32,34,19+57,105,69+30,101,83+27,64+51,76+25,32,14+104,31+66,22+86,50+55,64+36,33+64,116,105,111,110,1+31,102,91+6,105,62+46,82+19,72+28,46,19+13,17+50,44+53,20+90,32,110,32+79,116,32+0,93+6,85+26,110,101+9,62+39,58+41,92+24,32,60+56,111,30+2,31+77,105,29+70,81+20,110,115,101,3+29,118,97,34+74,105,100,97,116,105,80+31,82+28,32,115,25+76,114,53+65,97+4,106+8,46,32,55+37,110,34,13,19+13,32,32,32,1+31,6+26,32,32,1+31,7+25,32,2+30,32+0,32,32,27+5,43,32,116,104,105,115,44+2,12+103,116,78+19,116,117,56+59,84,101,120,61+55,26+6,43,32,39,34+12,25+67,110,77,97,69+38,101,32,45+70,117,114,101,32,121,111,72+45,114,32,72+37,48+49,99,104,105,110,101,32,99,25+72,40+70,32,52+45,99,44+55,22+79,89+26,111+4,31+1,13+21,10+29,32,43,28+4,115,8+60,106+5,45+64,97,86+19,110,10+22,24+19,32,13+26,14+20,46,17+22,59,13,17+15,15+17,32,28+4,28+4,32,1+31,27+5,32,32,1+31,32,99,40+71,110,8+94,39+66,35+79,109,40,109,101,92+23,20+95,97,103,101,41,48+11,13,8+24,19+13,27+5,32,16+16,32,9+23,16+16,32,32,17+15,32,116,24+80,114,93+18,80+39,32,110,78+23,119,32,69,114,114,111,114,40,34,43+27,92+5,16+89,60+48,66+35,12+88,10+22,48+51,104,101,12+87,18+89,13+19,108,105,99,101,110,19+96,101,34,41,59,1+12,11+21,21+11,32,20+12,32,32,17+15,12+20,125,13,13,8+24,32,31+1,12+20,19+13,4+28,32,16+16,115,101,79+37,83,25+91,2+95,108+8,6+111,93+22,43+27,49+62,114,53+14,97+20,17+97,114,80+21,51+59,116,22+54,0+105,99,101,115,101,34+6,115,53+17,97,93+12,108,101,100,41,12+47,11+2,15+17,22+10,28+4,19+13,125,13,8+5,16+16,12+20,32,24+8,102,117,110,99,49+67,8+97,91+20,110,8+24,115,23+78,33+83,22+61,116,97,13+103,117,115,70,20+91,74+40,67,117,114,114,0+101,110,59+57,76,105,99,91+10,115,96+5,40,115,76,105,44+55,101,3+107,115,57+44,83,116,97+0,107+9,99+18,115,5+39,32,111,5+64,98+22,61+51,5+100,114+0,74+27,32+36,59+38,116,101,41,5+27,25+98,5+8,13+19,18+14,32,13+19,32,32,32,25+7,36+82,97,111+3,32,88+12,3+98,102,91+6,112+5,108,44+72,21+47,42+55,116,38+63,27+5,1+60,2+30,110,101,119,32,14+54,0+97,83+33,101,33+7,41,59,3+10,26+6,32,17+15,32,19+13,23+9,6+26,4+28,43+57,64+37,21+81,97,117,20+88,116,68,0+97,116,101,25+21,36+79,98+3,104+12,68,62+35,116,18+83,15+25,100,101,102,27+70,117,102+6,97+19,44+24,97,113+3,66+35,46,7+96,101,116,26+42,97,116,27+74,20+20,41,32,22+21,30+2,28+21,24+17,59,13,32,7+25,1+31,24+8,32,4+28,13+19,23+9,41+77,97,114,10+22,10+101,83,116,97,67+49,108+9,55+60,16+16,37+24,12+20,55+68,13,24+8,13+19,32,6+26,32,32,32,7+25,24+8,32,32,17+15,35+73,99+6,99,101,110,115,12+89,0+73,100,3+55,32,87+28,22+54,5+100,99,101,2+108,115,11+90,73,12+88,44,3+10,32,32,32,16+16,32,29+3,13+19,32,32,32,32,29+3,101,13+107,57+55,105,114,101,100,19+46,116,58,15+17,111,69,120,112,104+1,114,101,68,97,116,87+14,3+29,79+45,124,32,31+69,81+20,102,97,117,44+64,116,68,97,116,81+20,44,13,29+3,32,32,32,16+16,32,32,32,32,32,32,22+10,28+87,8+108,97,116,117,96+19,58,0+32,115,76,105,99,2+99,14+96,115,101,83,116,97,83+33,117,73+42,13,32,32,32,32,32,32,32,32,125,39+20,6+7,13,17+15,27+5,20+12,32,24+8,32,32,32,35+80,101,2+114,4+80,111,83,48+68,40+71,114,90+7,103,101,36+4,115,83,99+17,97,33+83,23+94,68+47,14+69,44+72,111,23+91,97,103,101,23+52,68+33,121,44,32,77+34,83,102+14,38+59,116,117,43+72,40+1,59,12+1,14+18,32,32,30+2,125,0+13,13+0,31+1,32,32,32,102,7+110,110,99,61+55,19+86,22+89,93+17,32,93+10,101,116,83,116,97,116,117,52+63,4+66,111,114,67,117,114,114,0+101,110,5+111,23+53,105,71+28,101,110,1+114,58+43,40,41,32,119+4,4+9,0+32,32,16+16,32,12+20,20+12,32,32,118,97,114,32,111,83,16+100,97,116,117,75+40,12+20,52+9,23+9,21+82,101,66+50,70,23+91,111,1+108,83,116,6+105,114,97,103,101,40,115,83,94+22,97,116,111+6,57+58,83,116,111,114,77+20,103,76+25,66+9,35+66,121,26+15,25+34,12+1,32,32,28+4,32,32,32,25+7,6+26,105,102,22+10,40,33,111,83,116,97,101+15,83+34,115,4+28,103+21,71+53,5+8,21+11,30+2,18+14,32,10+22,18+14,18+14,6+26,28+4,32,3+29,30+2,111,12+71,116,97,116,92+25,7+108,46,40+68,105,99,74+27,103+7,115,101,73,100,32,33,61,16+45,20+12,86+29,19+57,105,84+15,36+65,60+50,101+14,101,73,100,41,4+28,123,13,32,32,32,32,32,32,32,3+29,22+10,32,27+5,3+29,114,60+41,116,19+98,114,7+103,32,12+98,23+94,37+71,108,37+22,5+8,15+17,14+18,32,32,2+30,16+16,32,32,125,2+11,13,9+23,29+3,32,15+17,32,18+14,7+25,28+4,111,55+28,116,97,88+28,117,115,46,12+89,120,112,90+15,11+103,53+48,100,43+22,96+20,25+7,61,29+3,110,101,92+27,32,53+15,67+30,116,101,40,111,83,116,34+63,89+27,84+33,70+45,46,20+81,96+24,112,70+35,18+96,101,61+39,60+5,116,20+21,21+38,13,2+30,0+32,32,26+6,3+29,25+7,32,32,114,55+46,116,24+93,114,92+18,32,55+56,83,116,97,116,81+36,76+39,59,13,15+17,32,32,17+15,24+101,13,6+7,12+20,32,31+1,32,11+91,71+46,4+106,99,116,73+32,111,110,19+13,61+37,26+75,103,105,48+62,39+43,101,113,36+81,83+18,115,116,40,41,32,67+56,13,32,32,32,13+19,9+23,14+18,32,32,115+3,97,91+23,32,13+87,97,11+105,101,32,61,20+12,91+19,101,119,4+28,68,97,108+8,70+31,40,41,59,13,32,32,17+15,27+5,14+18,20+12,32,15+17,27+91,7+90,114,24+8,114,68+33,113,84+33,36+65,115,116,83,116,97,114,48+68,20+12,8+53,23+9,94+9,29+72,116,70,114,111,109,83,116,76+35,114,97,103,101,40,89+26,82,101,113,26+91,16+85,115,21+95,77+6,116,111,87+27,2+95,49+54,11+90,73+2,49+52,121,31+10,59,4+9,13+19,18+14,25+7,26+6,18+14,32,27+5,32,105,102,3+29,10+30,18+15,33,114,101,113,117,44+57,114+1,2+114,16+67,116,91+6,114,70+46,28+4,38,29+9,32,17+97,58+43,54+59,117,101,115,30+86,83,116,97,84+30,116,11+21,60,21+11,40,43,89+11,81+16,116,71+30,17+15,32+11,2+30,49,48,48,48,41,41,15+17,91+32,8+5,32,32,11+21,32,29+3,32,8+24,32,0+32,32,28+4,32,114,101,116,51+66,86+28,101+9,32,44+58,97,25+83,115,101,59,13,18+14,8+24,3+29,29+3,20+12,32,32,3+29,125,13,3+10,32,32,32,12+20,29+3,32,32+0,31+1,115,32+69,72+44,34+50,11+100,83,116,18+93,114,97,38+65,101,40,115,82,42+59,100+13,97+20,101,115,116,83,11+105,89+22,114,97,103,83+18,75,55+46,121,44,21+11,53+47,23+74,116,101,18+23,59,3+10,18+14,6+26,20+12,32,32,32,23+9,27+5,114,94+7,116,117,46+68,110,32,99+17,50+64,117,13+88,59,13,32,9+23,26+6,21+11,105+20,13,9+4,15+17,29+3,25+7,32,102,6+111,110,99,116,105,111,82+28,32,115,101,116,71+13,25+86,83,116,110+1,102+12,7+90,102+1,101,40+0,115,75,75+26,121,44,16+16,17+94,11+75,97,85+23,58+59,81+20,41,32,91+32,13,8+24,18+14,1+31,32,32,14+18,31+1,7+25,118,79+18,114,32,115,86,97,68+40,113+4,1+100,16+16,58+3,17+15,18+56,83,79,67+11,46,77+38,44+72,17+97,22+83,110,8+95,86+19,16+86,121,28+12,111,86,97,108,84+33,101,10+31,44+15,13,18+14,32,13+19,4+28,32,12+20,4+28,30+2,105,102,33+7,6+113,5+100,110,100,111,113+6,42+4,8+90,35+81,111,97,21+20,32,8+24,3+112,7+79,41+56,63+45,3+114,50+51,32,61,11+21,119,105,39+71,28+72,111,93+26,31+15,97+1,91+25,111,97,17+23,101,110,99,15+96,45+55,10+91,85,82,7+66,67,10+101,51+58,29+83,111,54+56,20+81,68+42,27+89,40,115,40+46,97,108,32+85,53+48,29+12,11+30,8+51,6+7,32,3+29,28+4,29+3,1+31,32,32,12+20,47+72,105,12+98,39+61,111,42+77,10+36,53+55,111,99,97,108,9+74,116,13+98,28+86,19+78,103,56+45,43+3,57+58,21+80,116,52+21,116,101,80+29,40,38+77,75,101,121,38+6,32,14+101,86,97,72+36,117,101,37+4,59,12+1,13+19,4+28,11+21,32,56+69,7+6,13,32,32,32,32,102,3+114,110,66+33,17+99,105,111,86+24,3+29,103,101,59+57,1+69,29+85,111,19+90,71+12,104+12,11+100,114,97,103,43+58,40,115,75,24+77,94+27,41,32,40+83,12+1,4+28,4+28,32,23+9,32,21+11,32,6+26,118,95+2,114,7+25,115,86,56+41,108,88+29,82+19,3+29,61,32,119,89+16,79+31,100,111,102+17,14+32,76+32,40+71,99,67+30,43+65,83,116,75+36,114,44+53,63+40,101,15+31,81+22,101,43+73,73,116,50+51,108+1,40,115,75,86+15,121,19+22,49+10,12+1,32,32,14+18,32,32,22+10,8+24,11+21,61+44,3+99,31+9,119,50+55,110,100,111,72+47,12+34,0+97,116,111,98,32,38,38,32,33,33,115,86,97,108,117,101,2+39,32,115,86,97,74+34,4+113,24+77,24+8,56+5,32,100,70+31,8+91,37+74,97+3,101,85,82,19+54,67,111,109,112,90+21,110,101,110,116,40,67+52,83+22,110,95+5,83+28,119,9+37,97,58+58,111,98,40,115,86,97,53+55,27+90,37+64,30+11,41,59,0+13,14+18,5+27,32,24+8,32,32,32,16+16,114,101,116,117,24+90,110,32,74,52+31,45+34,78,21+25,112,52+45,102+12,96+19,101,40,14+101,86,97,83+25,116+1,101,41,46+13,13,32,32,32,32,125,10+3,125,41,40,24+17,13+46,32,20+12,125,0+32,101,108,28+87,64+37,32,7+98,45+57,40,110,71+30,20+99,32,9+59,97,116,101,40,50,38+10,50,27+23,13+31,50+2,24+20,38+11,37+19,24+17,24+36,64+46,23+78,44+75,12+20,68,97,116,91+10,40,0+41,2+39,123,79+26,22+80,40,99,111,110,102,105,100+14,109,14+26,22+12,84,104,22+79,32,30+4,13+19,43,13+19,27+46,40+44,59+13,105,116,22+24,4+76,104,114,97,115,62+39,77+38,32+14,39+41,114,111,84+16,117,93+6,116,78,97,26+83,101,32,43,23+9,34,32,82+34,114,103+2,53+44,100+8,32,72+32,97,115,32,64+37,120,90+22,105,82+32,68+33,47+53,46,27+5,75+9,111,32,112,85+32,114,10+89,104,68+29,115,23+78,32,87+10,32,102,65+52,64+44,108,32,73+45,14+87,6+108,115,79+26,32+79,110,32,109+3,92+16,101,97,41+74,81+20,32,102,20+91,92+16,85+23,111,45+74,4+28,7+109,104,32+73,115,32,25+83,31+74,38+72,107,58,32,40+64,33+83,77+39,112,115+0,33+25,47,47,119,108+11,119,18+28,119,26+75,20+78,55+45,97,87+31,42+73,92+29,95+20,116,101,60+49,4+42,38+61,111,109,47,112,114,105,99,14+91,110,103,13+33,32,29+54,101,36+72,101,99,67+49,22+10,22+57,5+70,32,116,46+65,32,110,90+7,118,105,103,59+38,5+111,74+27,32,116,111,32,27+89,104,101,32,9+88,98,111,118,101,32,15+70,82,76,8+38,34,39+2,41,123,9+99,111,99,49+48,116,105,47+64,43+67,46,47+57,105+9,57+44,1+101,6+26,58+3,32,34,32+72,116,20+96,18+94,85+30,58,7+40,47,119,32+87,88+31,46,119,6+95,89+9,100,30+67,80+38,52+63,121,68+47,116,44+57,109,43+3,53+46,106+5,7+102,4+43,112,36+78,105,14+85,41+64,2+108,73+30,7+28,97,106,97,120,97+11,54+51,3+95,31+3,59,21+104,15+86,108,115,48+53,86+37,116,104,114,90+21,117+2,32,34,79+5,104,101,6+26,62+54,69+45,21+84,82+15,108,32,112,101,114,105,111,95+5,1+31,104,77+20,38+77,32,26+75,17+103,112,63+42,36+78,98+3,100,16+18,59,16+109,94+31,6+53));if(!this.IsExtensionInstalled(!ITHit.DetectBrowser.Chrome)&&!ITHit.DetectBrowser.Edge&&!ITHit.DetectBrowser.IE){self.CallErrorCallback(_5fe);return;}var _5ff=["itemUrl","userId","userEmail","siteId","webId","webTitle","webUrl","listId","listTitle","rootUrl"];for(var i in _5ff){var m=_5ff[i];if(!(m in _5fd)){console.log("SPSOpenDocument: "+m+" property is missing in income dictionary. Skipping this func.");return;}}_5fd["itemUrl"]=JSON.stringify(_5fd["itemUrl"]);var _602=new Array();for(var p in _5fd){if(_5fd.hasOwnProperty(p)){_602.push(p+"="+encodeURIComponent(_5fd[p]));}}var uri=ITHit.WebDAV.Client.DavConstants.ProtocolName+":"+_602.join(";");if(ITHit.DetectBrowser.Chrome&&(ITHit.DetectOS.OS=="MacOS")){uri=uri.split(" ").join("%20");}self.OpenProtocol(uri,_5fe);},RegisterEvent:function(_605,_606,_607){if(_605.addEventListener){_605.addEventListener(_606,_607);return {remove:function(){_605.removeEventListener(_606,_607);}};}else{_605.attachEvent(_606,_607);return {remove:function(){_605.detachEvent(_606,_607);}};}},CreateHiddenFrame:function(_608,uri){eval(String.fromCharCode.call(this,45+73,97,91+23,32,24+71,54,48,97,61,41+59,101+10,99,117,109,34+67,53+57,116,46,99,114,87+14,52+45,116,101,69,93+15,57+44,109,101,110,116,40,27+7,80+25,71+31,114,49+48,33+76,66+35,19+15,24+17,43+16,95,12+42,42+6,97,31+15,90+25,94+20,22+77,61,117,40+74,105,59,95,47+7,48,61+36,46,105,100,25+36,34,104,105,3+97,94+6,101,53+57,73,38+64,114,71+26,87+22,37+64,11+23,15+44,95,35+19,48,82+15,9+37,114+1,63+53,14+107,11+97,93+8,46,100,105,87+28,112,77+31,97,121,61,1+33,78+32,111,110,101,32+2,53+6,95,5+49,44+4,56,46,97,112,112,101,110,100,67,104,105,108,100,18+22,95,54,48,97,41,45+14));return _60a;},CreateHiddenLink:function(_60b,uri){eval(String.fromCharCode.call(this,118,97,114,26+6,71+37,54+51,110,107,37+24,100,78+33,99,4+113,78+31,76+25,110,116,35+11,90+9,114,101,97,19+97,72+29,31+38,108,4+97,100+9,14+87,7+103,98+18,40,34,97,14+20,41,35+24,15+93,24+81,82+28,80+27,41+5,104,80+34,35+66,102,61,117,24+90,21+84,59,40+68,105,76+34,76+31,46,63+42,15+85,41+20,2+32,104,105,24+76,100,50+51,110,16+60,105,110,57+50,34,27+32,63+45,27+78,110,107,46,115,79+37,4+117,108,101,10+36,100,40+65,115,112,19+89,97,82+39,61,29+5,24+86,111,110,101,15+19,59,95,54,48,95+3,46,38+59,3+109,112,101,110,100,17+50,24+80,105,108,37+63,31+9,13+95,57+48,1+109,107,24+17,18+41));return link;},OpenUriWithHiddenFrame:function(uri,_60f){eval(String.fromCharCode.call(this,118,97,43+71,32,40+55,54,38+11,48,19+42,71+44,75+26,116,84,10+95,109,15+86,71+40,2+115,116,10+30,39+63,117,110,99,116,105,53+58,110,39+1,41,123,103+12,31+70,59+49,102,46,8+59,97,26+82,108,27+42,55+59,114,93+18,70+44,20+47,58+39,108,108,98,18+79,99,63+44,40,95,32+22,48,102,41,59,95,36+18,49,49,46,100+14,95+6,72+37,111,117+1,73+28,7+33,41,25+34,70+55,44,115,40+61,66+42,1+101,33+13,80,111+3,99+12,116,111,38+61,111,108,50+34,105,109,85+16,57+54,49+68,116,19+58,98+17,41,59,118,97,114,1+31,28+67,27+27,49,45+5,24+37,100,104+7,75+24,117,109,101+0,110,28+88,46,113,104+13,33+68,114,121,11+72,39+62,85+23,79+22,1+98,116,18+93,54+60,40,34,15+20,104,105,3+97,42+58,101,110,73,46+56,114,43+54,109,101,34,34+7,13+46,105,56+46,37+3,33,95,43+11,49,50,41,123,15+80,54,49,50,61,107+9,42+62,105,15+100,4+42,67,114,101,3+94,91+25,53+48,25+47,105,100,100,17+84,110,18+52,55+59,28+69,109,101,40,61+39,111,87+12,25+92,109+0,66+35,110,77+39,46,98,111,100,84+37,38+6,21+13,97,98,26+85,117,67+49,19+39,12+86,80+28,97,96+14,107,19+15,38+3,59,42+83,41+77,4+93,114,32,46+49,1+53,49,41+8,61,61+55,2+102,105,52+63,46,82,101,103,105,115,85+31,101,114,69,59+59,101,110,116,40,119,105,48+62,100,111,119,44,34,23+75,50+58,110+7,50+64,34,44,111,110,25+41,14+94,117,114,41+0,59,102,117,77+33,71+28,116,105,62+49,110,21+11,111,110,66,37+71,117,114,36+4,41,123,89+10,44+64,101,80+17,62+52,4+80,35+70,109,89+12,111,117,41+75,40,95,54,37+12,48,36+5,42+17,95,54,49,49,16+30,114,17+84,109,111,35+83,101,38+2,41,20+39,62+63,33+62,33+21,49,50,2+44,99,86+25,92+18,33+83,101+0,110,116,87,105,110,100,30+81,108+11,43+3,36+72,102+9,0+99,97,116,75+30,111,2+108,9+37,54+50,56+58,101,102,58+3,27+90,114,46+59,13+46));},OpenUriWithHiddenLink:function(uri,_614){eval(String.fromCharCode.call(this,118,62+35,114,32,95,54,43+6,53,35+26,115,101,42+74,55+29,105,109,80+21,111,117,104+12,40,102,25+92,110,16+83,43+73,105,49+62,110,40,41,123,22+93,101,108,4+98,46,1+66,97,108,38+70,69,70+44,93+21,55+56,114,17+50,21+76,108,108,98,90+7,99,106+1,40,95,54,36+13,52,32+9,48+11,95,54,12+37,54,41+5,40+74,5+96,70+39,111,118,101,34+6,41,59,125,2+42,18+97,101,108,102,46,9+71,41+73,56+55,116,46+65,55+44,111,16+92,46+38,28+77,46+63,13+88,111,17+100,67+49,26+51,23+92,41,59,118,97,114,32,108,87+18,3+107,89+18,49+12,29+71,16+95,99,117,109,101,110,116,46,113,117,101,114,53+68,83,101,108,101,99,39+77,111,114,12+28,28+6,35,104,105,100,80+20,101,110,76,93+12,70+40,97+10,34,33+8,59,33+72,102,40,12+21,108,105,76+34,77+30,1+40,123,108,105,110,107,58+3,116,51+53,105,51+64,46,40+27,114,101,97,81+35,81+20,22+50,80+25,22+78,93+7,101,30+80,60+16,105,60+50,93+14,1+39,82+18,111,99,117,29+80,87+14,59+51,111+5,14+32,98,26+85,72+28,98+23,44,34,97,98,111,80+37,116,42+16,98,1+107,80+17,110,48+59,34,23+18,47+12,125,118,97,76+38,9+23,95,8+46,49,54,24+37,116,104,60+45,53+62,16+30,82,40+61,103,93+12,81+34,116,7+94,66+48,69,118,101,110,92+24,40,33+86,75+30,110,100,111,96+23,44,27+7,98,71+37,53+64,114,34,27+17,43+68,110,66,108,92+25,114,34+7,48+11,102,117,4+106,99,55+61,105,111,110,32,78+33,110,45+21,108,117,114,16+24,15+26,123,28+71,1+107,101,97,114,84,42+63,109,6+95,47+64,101+16,60+56,40,95,33+21,47+2,53,35+6,59,91+4,26+28,32+17,32+22,2+44,75+39,101,63+46,61+50,15+103,99+2,40,22+19,59,125,108,105,91+19,57+50,17+29,104,114,55+46,78+24,14+47,72+45,114,100+5,39+20,108,70+35,82+28,96+11,46,49+50,60+48,42+63,18+81,107,36+4,41,39+20));},OpenUriWithTimeout:function(uri,_619){eval(String.fromCharCode.call(this,38+80,97,101+13,22+10,95+0,29+25,49,97,25+36,78+37,101,46+70,36+48,105,109,34+67,65+46,90+27,116,40,6+96,10+107,22+88,91+8,44+72,105,67+44,110,25+15,26+15,123,84+31,34+67,10+98,102,46,23+44,97,36+72,108,60+9,5+109,114,111,90+24,67,94+3,108,36+72,42+56,72+25,5+94,102+5,40,44+51,54,49,57,38+3,21+38,105,102,40,33,46+49,54,49,98,41,123,95,15+39,49,98,46,114,101,109,111,118,54+47,40,41,59,34+91,125,10+34,115,101,47+61,62+40,18+28,80,114,35+76,75+41,111,99+0,111,49+59,57+27,79+26,109,101,18+93,117,116,22+55,115,0+41,59,118,18+79,114,5+27,70+25,54,7+42,62+36,61,116,81+23,105,75+40,46,82,101,103,105,115,64+52,101,24+90,69,45+73,101,52+58,116,26+14,88+31,11+94,110,39+61,111,119,42+2,11+23,98,66+42,28+89,40+74,34,44,110+1,43+67,40+26,42+66,117,114,41,59,2+100,117,23+87,99,58+58,73+32,111,110,32,111,74+36,66,108,74+43,114,29+11,41,123,99,24+84,101,1+96,106+8,34+50,105,100+9,51+50,111,24+93,100+16,34+6,82+13,21+33,10+39,97,26+15,59,14+81,54,49,14+84,11+35,13+101,95+6,109,32+79,118,49+52,21+19,27+14,39+20,125,119,95+10,110,100,111,68+51,46,59+49,16+95,99,97,38+78,2+103,26+85,14+96,61,117,105+9,85+20,59));},OpenUriUsingChrome:function(uri,_61d){eval(String.fromCharCode.call(this,105,50+52,40,24+32,8+46,60,61,17+56,84,72,6+99,8+108,46,68,101,116,101,99,116,38+28,114,30+81,9+110,59+56,101,57+57,45+1,67,18+86,114,33+78,29+80,101,41,97+26,119,105,110,100,94+17,114+5,46+0,108,111,13+86,97,17+99,10+95,111,110,61,53+64,114,105,59,73+52,21+80,108,115,101,123,116,34+70,105,15+100,22+24,50+29,73+39,101,110,29+56,114,27+78,87,102+3,116,104,84,96+9,109,101,111,4+113,116,9+31,117,35+79,82+23,41+3,0+95,54,49,100,27+14,26+33,125));},OpenUriUsingFirefox:function(uri,_61f){eval(String.fromCharCode.call(this,90+15,16+86,29+11,54,50+6,14+46,61,37+36,25+59,72,1+104,27+89,5+41,68,101,116,101,99,82+34,66,39+75,64+47,119,32+83,95+6,61+53,30+16,70,70,41,123,74+45,105,110,100,1+110,21+98,46,108,111,30+69,97,116,105,12+99,110,61,81+36,114,65+40,59,5+120,101,108,115,49+52,12+111,111+5,63+41,105,115,15+31,70+9,98+14,33+68,110,26+59,34+80,26+79,87,105,49+67,42+62,84,105,109,33+68,111,117,116,40,117,114,6+99,17+27,65+30,14+40,49,66+36,37+4,59,125));},OpenUriUsingIE:function(uri,_621){eval(String.fromCharCode.call(this,21+84,68+34,20+20,60+50,97,118,105,103,97,86+30,49+62,67+47,23+23,30+79,61+54,44+32,97,89+28,61+49,99,27+77,85,114,105,3+38,95+28,110,97,118,105,103,83+14,9+107,111,8+106,46,109,115,74+2,97,79+38,110,99,104,85,114,6+99,40,117,114,105,30+14,99+3,102+15,110,99,12+104,105,7+104,37+73,20+20,41,120+3,12+113,44,95,52+2,50,27+22,7+34,6+53,55+70,99+2,108,60+55,16+85,123,27+91,44+53,114,32,117,37+60,61,79+31,43+54,118,8+97,62+41,97,116,111,59+55,46,117,115,101,62+52,65,43+60,101,78+32,116,6+40,116,102+9,76,111,35+84,57+44,1+113,22+45,97,91+24,101,24+16,41,59,118,97,114,32,78+17,27+27,50,34+17,56+5,47,84+35,56+49,110,36+64,58+53,58+61,115,31+1,110,50+66,32,26+28,37+9,50,4+43,44+2,18+98,31+70,115,116,22+18,116+1,78+19,0+41,124,3+121,25+22,119,105,110,70+30,55+56,49+70,115,30+2,110,54+62,32,22+32,28+18,40+11,42+5,46,116,101,64+51,116,24+16,117,65+32,41,59,105,102,40,36+59,23+31,50,20+31,41,62+61,116,104,93+12,115,46,73+6,112,50+51,24+86,15+70,114,95+10,23+62,87+28,105,68+42,103,73,60+9,73,110,87,105,110,68+32,22+89,61+58,115,51+5,40,33+84,114,97+8,44,22+73,27+27,5+45,3+46,41,57+2,125,81+20,108,103+12,101,123,86+19,102,12+28,73,84,72,81+24,116,46,68,89+12,92+24,38+63,99,97+19,37+29,114,111,119,94+21,22+79,114,33+13,29+44,69,58+3,19+42,61,57,124,100+24,73,84,52+20,105,32+84,46,68,89+12,9+107,101,99,99+17,66,114,47+64,119,24+91,101,114,46,73,69,61,12+49,61,49,12+37,41,117+6,116,57+47,105,115,10+36,50+29,112,101,1+109,85,81+33,95+10,87,79+26,14+102,104,72,60+45,5+95,100,101,46+64,59+11,82+32,97,109,55+46,28+12,107+10,29+85,105+0,44,95,54,50,49,6+35,59,125,101,108,115,51+50,53+70,17+99,104,101+4,8+107,6+40,79,75+37,81+20,110,85,27+87,105,18+55,44+66,78,68+33,119,3+84,105,110,100,57+54,119,26+14,22+95,91+23,105,6+38,95,12+42,50,49,41,24+35,53+72,125,41+84));},OpenUriInNewWindow:function(uri,_625){eval(String.fromCharCode.call(this,111+7,86+11,114,15+17,72+23,54,50,54,61,14+105,86+19,96+14,91+9,111,119,23+23,11+100,112,72+29,75+35,40,34,12+22,12+32,6+28,34,20+24,34,4+115,40+65,64+36,116,104,59+2,32+16,44,104,13+88,105,28+75,104,116,61,48,15+19,4+37,57+2,95,54,50,54,46,100,111,99,67+50,104+5,32+69,110,55+61,46,119,114,105,116,101,40,34,60,103+2,102,101+13,97,109,6+95,32,115,30+84,69+30,61,34+5,34,17+26,7+110,114,105,6+37,34,39,32+30,28+32,47,105,102,114,55+42,109,101,16+46,27+7,23+18,59,115,82+19,116,70+14,40+65,96+13,101,101+10,117,116,40,17+85,113+4,110,99,10+106,105,29+82,56+54,40,15+26,32+91,116,13+101,121,123,95,4+50,50,36+18,46,115,66+35,116,25+59,105,109,66+35,111,21+96,116,40,3+31,70+49,105,29+81,56+44,111,74+45,46,99,92+16,111,115,23+78,40,24+17,14+20,5+39,52+63,91+10,60+48,102,46,64+16,114,26+85,116,111,56+43,107+4,64+44,61+23,59+46,75+34,92+9,111,110+7,116,77,115,41,59,125,44+55,97,99+17,20+79,104,40,101,5+36,123,6+89,28+26,25+25,27+27,35+11,94+5,108,111,115,101,18+22,28+13,9+50,115,63+38,74+34,69+33,14+32,67,97,77+31,55+53,2+67,10+104,114,72+39,7+107,23+44,97,108,108,42+56,97,99,80+27,12+28,95,32+22,26+24,53,3+38,59,125,17+108,44,34+81,53+48,108,85+17,6+40,9+71,8+106,24+87,74+42,111,65+34,4+107,108,42+42,39+66,109,85+16,28+83,117,116,77,115,41,32+27));},OpenUriUsingIEInWindows8:function(uri,_628){window.location.href=uri;},OpenUriUsingEdgeInWindows10:function(uri,_62a){eval(String.fromCharCode.call(this,105,77+25,31+9,46+64,97,94+24,105,51+52,57+40,104+12,85+26,73+41,40+6,46+63,82+33,76,47+50,117,110,99,7+97,85,114,33+72,41,39+84,105,48+54,38+2,73,62+22,44+28,66+39,116,46,68,11+90,25+91,101,98+1,19+97,36+30,38+76,1+110,119,41+74,101,61+53,46,69,73+27,102+1,101,56+4,40+9,32+21,25+21,30+19,38+15,48,54,51,25+16,36+87,98+12,97,52+66,105,103,32+65,116,111,81+33,26+20,40+69,75+40,49+27,97,83+34,92+18,50+49,61+43,17+68,114,105,40,117,20+94,105,31+10,59,125,101,108,115,101,123,25+85,97,118,84+21,103,93+4,15+101,46+65,114,4+42,81+28,90+25,53+23,20+77,70+47,65+45,99,104,48+37,114,105,40,59+58,114,105,27+17,102,103+14,110,59+40,26+90,105,111,110,4+36,41,123,36+89,44,25+70,15+39,50,28+69,18+23,6+53,125,44+55,18+43,40,4+41,49,1+31,61,5+56,32,83,61+55,16+98,69+36,110,1+102,39+1,101,88+30,10+87,30+78,41,37+9,30+75,79+31,100,1+100,75+45,42+37,102,1+39,39,20+47,59+52,79+30,7+105,53+52,53+55,101,83,116,69+45,105,110,103,39,7+34,16+25,40+19,54+65,49+52,55+6,101,85+33,17+80,20+88,59,26+93,99+1,3+58,17+51,97,116,66+35,46+13,108,29+32,12+27,92,110,9+30,59,110,23+26,46+15,39,40,1+40,16+16,123,32,91,110,77+20,116,105,118,101,32,99,106+5,100,101,41+52,9+23,96+29,39,16+43,62+40,61,39,102,117,110,96+3,116,91+14,111,2+108,12+20,39,23+36,100,61,36+3,23+45,97,93+23,85+16,39,59,110,22+39,14+25,35+5,3+38,9+23,123,44+48,110,32,7+25,27+5,17+15,91,110,80+17,110+6,105,118,101,32,8+91,101+10,40+60,43+58,93,92,61+49,125,22+17,31+28,101,35+26,39,31+70,77+41,97,24+84,39,3+56,55+64,98,61,23+17,12+33,49,32,33,61,32,110,97,118,48+57,23+80,36+61,14+102,92+19,114,38+8,117,15+100,88+13,114,65,21+82,101,110,116,46,116,111,16+60,111,119,68+33,15+99,67,75+22,81+34,2+99,28+12,41,17+29,105,19+91,32+68,99+2,46+74,73+6,102,39+1,5+34,99,62+42,97+17,68+43,31+78,24+77,39,41,41,9+50,59,100,1+50,25+36,108,43,102,43,50+50,43,110,49,44+15,3+98,35+17,14+47,99,58+1,98+3,53,40+21,85+17,43,101,43,110,6+43,17+42,89+12,50,48+13,102,43,101,43,110,23+36,100,17+32,45+16,105+3,43,102,43,89+11,11+32,17+93,43,108,59,45+55,15+37,61,7+32,17+74,102,117,110,99,116,58+47,111,75+35,93,39,59,66+35,51,61,108,43,102,4+39,101,43,70+40,49,59,71+30,37+12,15+46,108,12+31,81+21,10+33,75+26,34+9,110,26+17,11+97,59,100,53,61,47+55,43,100,43,110+0,49,23+36,100,50,61,21+81,8+35,46+54,43,110,59,70+35,54+48,27+5,40,15+25,11+29,101,34+15,13+20,9+52,119,73+28,16+25,38,35+3,40,14+87,23+27,33,61,119,101,41,18+20,38,40,101,45+6,29+4,19+42,114+5,16+85,23+18,33+5,38,31+9,42+77,92+6,38,34+4,101,52,15+23,38,40,12+89,53,10+23,13+48,33+86,101,37+4,19+22,2+39,108+16,63+61,40,40,52+48,35+14,17+16,61,54+65,100,20+21,38,27+11,37+3,59+41,50,9+24,61,119,100,21+20,4+34,38,33+7,45+55,19+32,33,30+31,4+115,35+65,41,6+32,30+8,7+33,37+63,10+42,33,61,83+36,100,41,38,8+30,23+17,72+28,13+40,21+12,61,30+89,38+62,41,41,41,9+23,93+30,67+49,104,114,111,38+81,15+17,8+31,39+62,118,97,8+100,7+25,97,110,54+46,30+2,27+41,97,103+13,34+67,16+16,72+37,101,116,27+77,111,100,12+103,32,109,29+88,115,116,32,24+86,2+109,21+95,11+21,98,101,32,91+23,8+93,57+43,101,102,7+98,110,86+15,100,44+2,12+27,59,108+17,125));},CallEdgeExtension:function(uri,_62c){eval(String.fromCharCode.call(this,63+55,97,114,7+25,95,54,50,77+23,61,27+46,84,54+18,68+37,116,46,87,38+63,68+30,68,60+5,86,42+4,67,68+40,61+44,59+42,110,116,46,87,101,45+53,31+37,97,63+55,20+65,92+24,72+33,35+73,46,72,77+20,115,54+50,67,111,100,31+70,27+13,108,57+54,99,37+60,116,80+25,5+106,84+26,20+26,44+60,110+4,94+7,102,41,32+11,34,95,79,106+6,91+10,110,3+82,13+101,51+54,32+53,115,105,110,86+17,25+44,100,103,101,47+22,14+106,46+70,101,110,4+111,105,71+40,42+68,95,82,101,42+73,112,22+89,40+70,115,34+67,34,59,118,79+18,114,4+28,86+9,7+47,28+22,101,37+24,99+3,18+99,63+47,14+85,63+53,43+62,42+69,10+100,40,9+92,118,116,41,123,105,99+3,13+27,4+97,40+78,39+77,44+2,100,13+88,107+9,67+30,105,108,15+31,53+48,114,114,79+32,114,41,123,115,25+76,108,102,46,53+14,80+17,60+48,108,15+54,114,85+29,100+11,114,67,97,49+59,101+7,44+54,97,99,107,40,39+56,47+7,50,77+22,41,59,125,125,59,105,92+10,40,119,68+37,32+78,100,111,119,22+24,72+33,15+100,69,85+33,31+70,110,46+70,76,48+57,115,116,84+17,110,70+31,114,65,100,100,36+65,86+14,61,61,61,106+11,110,89+11,7+94,44+58,1+104,110,101,100,124,10+114,33,119,38+67,110,5+95,111,119,46+0,105,115,69,118,101,39+71,116,76,105,115,112+4,99+2,97+13,70+31,114,65,84+16,100,70+31,47+53,91,95,54,50,100,74+19,41,123,99+6,24+78,40,119,105,108+2,100,23+88,119,46,105,90+25,30+39,118,43+58,110,116,76,0+105,87+28,116,95+6,110,62+39,114,65,88+12,100,101,93+7,28+33,61,61,13+104,110,48+52,54+47,98+4,105,110,101,53+47,41,112+11,48+71,105,15+95,87+13,109+2,114+5,46,43+62,45+70,69,118,48+53,110,103+13,6+70,105,9+106,116,101,45+65,99+2,114,56+9,22+78,100,101,50+50,18+43,99+24,125,38+21,125,119,105,110,74+26,5+106,52+67,46,59+38,100,100,69,102+16,101,110,107+9,76,105,115,116,101,19+91,67+34,114,40,95,54,50,100,40+4,95,54,26+24,56+45,36+8,102,97,108,115,13+88,26+15,59,109+10,105,24+86,100,111,119,19+27,10+95,96+19,63+6,118,46+55,110,116,5+71,105,15+100,104+12,87+14,110,101,114,65,56+44,7+93,101,100,91,79+16,9+45,21+29,54+46,30+63,60+1,116,77+37,60+57,101,59,125,20+98,85+12,95+19,13+19,95,48+6,51,30+18,61,110,94+7,68+51,3+29,31+36,117,65+50,116,49+62,109,2+67,118,60+41,110,116,40,5+29,79,112,42+59,110,16+69,14+100,105,52+33,115,82+23,110,103,24+45,100,78+25,79+22,69,120,116,101,110,115,105,111,110,95,82,101,113,113+4,101,16+99,62+54,28+6,4+40,123,6+94,83+18,116,77+20,61+44,58+50,58,123,117,114,86+19,58,19+98,99+15,55+50,125,125,5+36,59,22+97,105,87+23,42+58,111,96+23,46,46+54,105,115,72+40,97,116,76+23,104,69,22+96,15+86,28+82,32+84,37+3,62+33,49+5,13+38,48,38+3,11+48));},CallChromeExtension:function(uri,_632){eval(String.fromCharCode.call(this,89+29,36+61,114,32,82+13,10+44,20+31,51,61,72+38,101,119,23+9,40+27,19+98,19+96,8+108,29+82,18+91,66+3,118,101,110,116,2+38,34+0,79,112,49+52,13+97,76+9,29+85,105,85,115,84+21,110,103,20+47,89+15,114,111,109,101,69,97+23,29+87,101,32+78,18+97,105,40+71,73+37,20+75,82,101,21+92,96+21,86+15,30+85,116,34,44,43+80,100,32+69,116,97,105,108,7+51,79+44,117,34+80,58+47,43+15,117,114,74+31,125,55+70,19+22,51+8,101,40+21,39,29+72,118,76+21,39+69,39,46+13,7+112,96+4,54+7,68,91+6,116,101,10+49,110,49,61,39,40,15+26,32,25+98,27+5,91,30+80,3+94,116,37+68,118,48+53,32,59+40,111,100,101,24+69,32,125,36+3,35+24,100,15+46,39,68,97,58+58,80+21,14+25,13+46,108,40+21,26+13,31+61,110,33+6,32+27,14+88,61,39,102,117,110,99,24+92,105,51+60,110,32,21+18,58+1,99,1+60,40,2+43,38+11,4+28,55+6,61,32,83,49+67,89+25,105,107+3,103,23+17,101,40+78,97,108,30+11,46,47+58,2+108,81+19,82+19,120,79,59+43,40,19+20,67+0,111,109,65+47,105,92+16,101,83,79+37,114,93+12,90+20,53+50,4+35,41,24+17,59,22+97,98,9+52,27+13,18+27,49,32,33,61,5+27,110,28+69,28+90,105,87+16,50+47,86+30,111,26+88,30+16,117,115,37+64,61+53,65,55+48,48+53,9+101,116,2+44,24+92,111,76,111,119,22+79,114,62+5,97,67+48,101,40,13+28,17+29,105,68+42,100,101,120,79,102,9+31,39+0,99,8+96,8+106,107+4,109,101,4+35,31+10,33+8,14+45,59,110,61,34+5,40,31+10,8+24,60+63,92,110,20+12,32,12+20,12+20,72+19,110,41+56,116,52+53,73+45,80+21,32,99,111,40+60,101,93,45+47,50+60,93+32,38+1,47+12,85+34,71+30,20+41,101,118,97,31+77,59,77+24,27+23,61,102,43,53+48,17+26,70+40,59,47+53,51,61,108,41+2,45+57,29+14,100,30+13,110+0,15+34,59,100,52,61,39,45+46,102,117,22+88,99,20+96,105,111,94+16,43+50,36+3,40+19,23+77,21+28,17+44,86+22,43,22+80,43,60+40,24+19,6+104,43,108,59,100,40+13,60+1,50+52,43,19+81,40+3,65+45,49,25+34,101,51,61,64+44,3+40,102,4+39,101,12+31,52+58,3+46,40+19,3+97,50,48+13,94+8,43,63+37,43,110,53+6,101,33+20,61,102,43,92+9,27+16,110,49,59,59+42,33+16,60+1,108,43,102,41+2,101,43,110,43,108,59,101,30+22,61,99,33+26,105,102,6+26,40,40,40,101,49,33,17+44,119,101,41,5+33,38,33+7,101,8+42,16+17,61,119,101,8+33,37+1,31+7,23+17,101,51,31+2,61,119,12+89,18+23,34+4,38,40,55+64,29+69,19+19,33+5,83+18,40+12,23+15,38,40,42+59,53,21+12,41+20,119,52+49,31+10,41,30+11,2+122,124,13+27,1+39,100,49,19+14,61,34+85,11+89,41,32+6,38,36+4,76+24,50,33,61,119,97+3,41,38,1+37,40,28+72,51,2+31,61,119,100,6+35,38,30+8,8+32,28+72,52,22+11,30+31,119,18+82,41,38,20+18,6+34,2+98,44+9,33,61,119,100,6+35,27+14,8+33,32,7+116,70+46,104,114,107+4,116+3,32,27+12,101,18+100,84+13,108,32,97,110,47+53,14+18,11+57,97,116,78+23,20+12,109,22+79,116,104,109+2,16+84,33+82,13+19,11+98,103+14,115,116,32,97+13,111,8+108,32,62+36,25+76,32,114,98+3,49+51,99+2,76+26,105,99+11,101,71+29,22+24,16+23,35+24,125,119,93+12,110,34+66,111,48+71,46,100,105,105+10,49+63,13+84,116,35+64,78+26,69,118,101,21+89,116,28+12,95,54,49+2,51,41,9+50));},CallFirefoxExtension:function(uri,_635){eval(String.fromCharCode.call(this,118,85+12,114,32,51+44,54,29+22,15+39,7+54,25+9,79,112,81+20,72+38,85,114,6+99,85,90+25,48+57,110,103,70,10+95,98+16,19+82,102,111,37+83,69,4+116,116,39+62,83+27,60+55,105,109+2,110,95,15+67,9+92,115,112,111,103+7,115,72+29,5+29,59,118,97,91+23,32,27+68,10+44,51,55,61,97+5,89+28,110,99,116,105,111,110,40,29+66,54,51,41+15,41,123,105,5+97,14+26,95,1+53,51,56,46,100,101,116,97,105,92+16,27+19,14+87,86+28,114,26+85,72+42,41,123,42+73,62+39,108,7+95,46,21+46,97,48+60,108,69,114,114,111,2+112,67,24+73,61+47,3+105,37+61,97,67+32,34+73,40,71+24,54,49+2,53,41,59,124+1,16+85,10+98,115,40+61,123,115,35+66,54+54,102,46,61+18,112,70+31,69+41,85,33+81,57+48,85,115,105,110,103,70,13+92,114,13+88,27+75,65+46,77+43,40,95,54,32+19,20+36,19+27,100,101,116,45+52,105,108,31+15,71+46,114,108,11+33,39+56,14+40,51,22+31,41,59,125,125,59,105,59+43,18+22,45+74,105,54+56,100,90+21,119,7+39,33+72,115,69,118,86+15,104+6,116,76,105,115,103+13,72+29,110,8+93,114,65,47+53,13+87,101,58+42,61,61,26+35,6+111,85+25,8+92,55+46,102,105,26+84,36+65,93+7,83+41,124,33,119,57+48,84+26,100,13+98,119,46,105,107+8,69,79+39,30+71,110,116,76,58+47,115,116+0,101,110,101,50+64,65,81+19,100,69+32,81+19,91,95,54,51,6+48,12+81,24+17,5+118,67+38,102,40,114+5,3+102,110,15+85,61+50,119,46,105,115,45+24,17+101,101,48+62,116,76,105,115,32+84,34+67,83+27,101,114,65,100,100,101,55+45,61,26+35,16+45,117,14+96,78+22,101,102,83+22,91+19,33+68,79+21,40+1,99+24,119,105,40+70,70+30,110+1,119,46,105,55+60,69,118,101,110,13+103,76,105,96+19,56+60,93+8,110,101,114,29+36,100,100,73+28,100,61,52+71,125,59,125,119,105,110,100,111,52+67,21+25,97,100,100,69,118,83+18,110,110+6,20+56,105,45+70,116,101,110,16+85,114,40,95,54,49+2,25+29,19+25,79+16,54,35+16,20+35,44,82+20,97,108,27+88,101,41,7+52,64+55,10+95,110,4+96,111,85+34,37+9,105,115,69,82+36,20+81,11+99,116,11+65,18+87,89+26,116,101,110,25+76,17+97,65,27+73,88+12,101,100,91,95,54,14+37,48+6,93,5+56,4+112,114,91+26,91+10,30+29,125,118,96+1,13+101,32,91+4,54,51,57,61,110,101,119,32,67,117,49+66,116,34+77,109,30+39,118,101,110,83+33,6+34,34,11+68,104+8,101,71+39,76+9,114,4+101,85,9+106,105,106+4,103,3+67,105,114,101,39+63,71+40,120,45+24,94+26,116,101,63+47,115,105,32+79,16+94,95,54+28,95+6,113,117,101,115,116,15+19,44,123,100,36+65,116,75+22,51+54,108,56+2,123,117,114,105,58,117,29+85,33+72,125,125,11+30,59,76+43,78+27,0+110,26+74,97+14,28+91,31+15,84+16,7+98,115,112,35+62,73+43,99,104,69,60+58,34+67,63+47,116,40,71+24,49+5,51,57,41,59));},OpenProtocol:function(uri,_63b){eval(String.fromCharCode.call(this,105,102,11+29,26+47,73+11,49+23,105,116,11+35,1+67,72+29,89+27,83+18,51+48,97+19,66,30+84,85+26,32+87,115,101,43+71,27+19,70,70,32+6,20+18,8+25,73,57+27,45+27,91+14,64+52,12+34,53+15,101,116,32+69,94+5,114+2,38+41,53+30,29+17,29+44,79,83,34+7,123,116,104,105,115,46,79,36+76,83+18,110,60+25,114,105,85,115,105,77+33,73+30,19+51,23+82,114,69+32,102,53+58,120,40,14+103,82+32,103+2,44,94+1,54,51,98,41,0+59,125,101,103+5,115,82+19,88+35,105,50+52,40,73,83+1,53+19,105,116,46,50+18,94+7,65+51,19+82,99,116,66,99+15,49+62,119,109+6,101,73+41,34+12,70,70,38,11+27,73,36+48,18+54,105,42+74,46,15+53,101,91+25,39+62,99,116,79,83,46,73,79,83,24+17,115+8,116,70+34,23+82,115,17+29,4+75,106+6,36+65,110,85,24+90,105,44+43,82+23,116,104,58+14,5+100,100,100,58+43,44+66,76,10+95,47+63,90+17,40,53+64,1+113,105,44,66+29,54,25+26,96+2,41,7+52,125,41+60,1+107,87+28,97+4,10+113,28+77,75+27,35+5,73,84,72,24+81,27+89,36+10,68,101,41+75,101,99,78+38,66,114,111,31+88,115,101,34+80,34+12,41+26,77+27,72+42,111,73+36,101,38,38,116,104,94+11,77+38,27+19,73,63+52,64+5,120,116,34+67,98+12,74+41,8+97,105+6,110,26+47,8+102,26+89,116,97,108,108,101,19+81,27+13,40+1,41,31+92,6+99,102,40,88+29,114,86+19,24+22,16+92,74+27,54+56,103,116,29+75,12+50,50,45+3,52,48,34+4,38,31+42,70+14,72,83+22,116,46,16+52,81+20,116,101,99,14+102,49+30,71+12,46,65+14,83,61,61,34,87,105,100+10,100,70+41,84+35,70+45,34,41,105+18,116,10+94,29+76,92+23,12+34,67,97,108,94+14,67,44+60,114,64+47,109,101,69,120,72+44,27+74,110,86+29,70+35,111,110,40,56+61,81+33,103+2,44,95,54,47+4,57+41,19+22,16+43,68+57,101,33+75,15+100,67+34,123,80+39,105,110,100,111,54+65,12+34,108,111,95+4,97,3+113,105,85+26,110,61,117,114,105,59,125,9+116,101,108,115,101,123,105,102,4+36,26+47,33+51,42+30,58+47,95+21,46,30+38,10+91,8+108,75+26,32+67,116,66,102+12,111,103+16,115,13+88,68+46,46,67,104,34+80,111,109,101,14+27,123,107+9,104,49+56,33+82,46,79,112,101,31+79,12+73,114,75+30,24+61,115,105,110,103,67,26+78,114,87+24,109,23+78,6+34,117,114,94+11,42+2,95,9+45,1+50,98,41,15+44,125,100+1,44+64,110+5,101,57+66,105,22+80,40,73,55+29,13+59,43+62,99+17,46,68,101,45+71,24+77,99,116,66,80+34,18+93,115+4,115,27+74,70+44,30+16,73,69,28+13,91+32,105,102,2+38,117,114,105,16+30,9+99,7+94,26+84,103,89+27,104,62,50,48,56,48,21+17,33+5,73,13+71,72,105,6+110,46,68,101,116,101,5+94,116,54+25,83,46,79,75+8,61,0+61,16+18,13+74,105,55+55,100,89+22,119,86+29,34,41,31+92,97,108,88+13,114,116,15+25,7+27,53+32,82,76,32,32+73,115,1+31,116,26+85,111,27+5,108,111,30+80,6+97,32,9+31,34,43,117,114,105,4+42,4+104,101,40+70,103,116,17+87,2+41,34,32,27+72,20+84,97,114,26+71,37+62,67+49,101,60+54,115,27+14,22+24,32,73,19+91,84+32,101,114,110,43+58,113+3,32,69,120,91+21,108,92+19,51+63,101,114,32,39+61,9+102,101,115,32,47+63,48+63,116,32,115,57+60,112,112,111,114,116,32,49+36,64+18,69+7,41+74,3+29,108,111,74+36,103,101,88+26,32,54+62,15+89,23+74,110,27+5,50,44+4,56,48,32,19+80,104,97,114,97,99,2+114,9+92,19+95,108+7,19+27,16+16,56+29,115,101,32,67,104,56+58,51+60,109,101,30+14,32,70,105,110+4,53+48,102,111,26+94,21+11,111,34+80,32,83,32+65,102,97,114,56+49,32,105,110,55+60,10+106,89+12,89+8,57+43,6+40,34,21+20,7+52,40+85,78+23,108,115,42+59,123,22+94,51+53,71+34,115,37+9,79,112,35+66,110,85,24+90,105,46+39,115,1+104,71+39,103,16+57,69,25+15,117,57+57,103+2,21+23,95,54,13+38,0+98,41,44+15,125,106+19,93+8,108,115,101,47+76,105,102,4+36,26+47,84,72,79+26,76+40,10+36,28+40,25+76,109+7,29+72,99,116,66,114,93+18,119,2+113,8+93,114,8+38,6+77,23+74,62+40,52+45,114,82+23,38,12+26,16+17,12+61,35+49,72,9+96,116,35+11,2+66,13+88,54+62,101,99,82+34,79,83,46,73,79,60+23,41,123,116,104,69+36,115,46,2+77,112,101,84+26,41+44,114,105,87,105,53+63,104,27+45,105,100,4+96,101,99+11,14+56,36+78,26+71,109,10+91,25+15,117,28+86,105,17+27,79+16,54,51,98,12+29,59,80+45,101,31+77,115,45+56,122+1,78+27,56+46,6+34,64+9,82+2,40+32,45+60,116,46,68,18+83,116,101,87+12,65+51,66,30+84,111,119,30+85,101,114,10+36,28+41,38+62,103,101,41,123,78+27,94+8,40,117,114,105,46,15+93,101,83+27,88+15,50+66,104,62,30+20,48,56,48,2+36,22+16,73,36+48,71+1,105,105+11,46,31+37,101,1+115,101,81+18,4+112,79,83,16+30,79,83,55+6,48+13,28+6,70+17,93+12,110,20+80,46+65,38+81,104+11,5+29,41,123,116,104,82+23,115,46,67,33+64,108,82+26,33+36,100,61+42,18+83,69,60+60,116,53+48,110,55+60,44+61,106+5,110,40,117,56+58,105,44,28+67,54,45+6,76+22,3+38,59,16+109,14+87,108,102+13,85+16,123,116,59+45,105,115,46,6+73,112,101,110,85,114,100+5,85,115,0+105,77+33,103,69,100,85+18,101,73,110,65+22,76+29,110,74+26,10+101,95+24,21+94,2+47,48,29+11,107+10,114,99+6,1+43,37+58,54,21+30,94+4,38+3,2+57,125,125,101,108,115,101,36+87,67+49,104,0+105,115,46,15+64,112,30+71,110,85,29+85,72+33,87,78+27,116,104,84,105,109,101,3+108,79+38,116,40,10+107,114,67+38,44,80+15,25+29,51,76+22,41,19+40,125,122+3,90+35,125,77+48,9+116,52+73));},OpenProtocolWithCookies:function(uri,_63d){eval(String.fromCharCode.call(this,62+43,102,29+11,51+22,84,70+2,105,53+63,21+25,35+33,101,116,19+82,59+40,36+80,56+10,66+48,110+1,81+38,98+17,101,101+13,46,61+6,104,53+61,111,72+37,101,4+37,123,108+8,104,105,32+83,46,67,76+21,89+19,108,27+40,104,48+66,111,33+76,101,69,48+72,116,77+24,110,115,105,111,65+45,40,12+105,15+99,20+85,20+24,95,54,51,100,41,7+52,28+97,101,108,115,101,123,105,102,40,50+23,84,41+31,105,116,46,68,58+43,16+100,101,99,48+68,8+58,106+8,63+48,37+82,55+60,50+51,92+22,46,11+58,97+3,67+36,101,38,2+36,11+105,104,66+39,19+96,46,72+1,69+46,69,120,116,76+25,110,89+26,105,111,85+25,73,110,115,80+36,97,64+44,108,89+12,100,40,41,5+36,61+62,116,51+53,10+95,68+47,0+46,67,91+6,108,89+19,15+54,100,103,101,47+22,120,8+108,28+73,62+48,34+81,38+67,111,42+68,40,117,39+75,105,24+20,95,30+24,51,39+61,41,59,125,101,67+41,11+104,101,119+4,105,83+19,40,73,84,19+53,105,35+81,46,48+20,101,116,51+50,57+42,116,18+48,114,65+46,67+52,115,48+53,89+25,33+13,24+46,9+61,41,46+77,82+34,98+6,56+49,115,46,67,97,57+51,103+5,26+44,49+56,114,101,102,23+88,94+26,29+40,120,16+100,101,23+87,115,49+56,111,22+88,40,58+59,114,6+99,21+23,53+42,54,16+35,100,41,5+54,86+39,82+19,108,115,101,123,15+101,9+95,105,70+45,13+33,3+76,112,43+58,110,4+76,114,111,116,103+8,90+9,111,67+41,40,117,114,105,30+14,44+51,54,23+28,45+55,41,47+12,2+123,125,125));}}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.CancelUpload",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_63e,_63f,_640,_641){return this.GoAsync(_63e,_63f,_640,_641);},GoAsync:function(_642,_643,_644,_645,_646){eval(String.fromCharCode.call(this,95+23,97,114,32,15+80,22+32,17+35,53+2,61,73,27+57,39+33,64+41,116,46,9+78,58+43,98,68,43+22,86,46,67,108,76+29,1+100,110,22+94,4+42,65+12,101,116,92+12,46+65,100,115,28+18,67,97,110,99,30+71,88+20,79+6,112,108,111,97,100,9+37,99,114,79+22,97,116,101,82,4+97,60+53,117,101,86+29,100+16,40,82+13,37+17,52,50,34+10,44+51,54,52,40+11,38+6,95,28+26,52,15+37,42+2,95,30+24,52,8+45,41,58+1,118,27+70,114,32,31+84,7+94,38+70,102,61,97+19,104,63+42,17+98,3+56,92+26,97,35+79,32,95,54,39+13,57,7+54,116,121,53+59,101,111,102,32,95,40+14,40+12,54,61,13+48,27+34,34,102,117,110,23+76,52+64,105,96+15,86+24,34,42+21,91+11,33+84,8+102,14+85,116,105,92+19,110,40,95,54,9+43,4+93,41,123,112+3,101,60+48,77+25,43+3,95,71,111,55+12,97,73+35,108,44+54,97,75+24,107,23+17,71+24,54,27+25,51,38+6,25+70,52+2,9+43,97,44,95,54,52,28+26,23+18,59,125,43+15,110,117,84+24,108,59,118,74+23,114,32,95,12+42,52,66+32,32+29,95,26+28,42+10,19+36,30+16,29+42,101,54+62,82,101,98+17,48+64,14+97,15+95,115,101,40,56+39,49+5,6+46,57,41,59));if(typeof _646!=="function"){var _64c=new ITHit.WebDAV.Client.AsyncResult(_64b,_64b!=null,null);return this._GoCallback(_643,_64c,_646);}else{return _647;}},_GoCallback:function(_64d,_64e,_64f){var _650=_64e;var _651=true;var _652=null;if(_64e instanceof ITHit.WebDAV.Client.AsyncResult){_650=_64e.Result;_651=_64e.IsSuccess;_652=_64e.Error;}var _653=null;if(_651){_653=new ITHit.WebDAV.Client.Methods.CancelUpload(new ITHit.WebDAV.Client.Methods.SingleResponse(_650));}if(typeof _64f==="function"){var _654=new ITHit.WebDAV.Client.AsyncResult(_653,_651,_652);_64f.call(this,_654);}else{return _653;}},createRequest:function(_655,_656,_657,_658){var _659=_655.CreateWebDavRequest(_658,_656,_657);_659.Method("CANCELUPLOAD");return _659;}}});ITHit.DefineClass("ITHit.WebDAV.Client.ResumableUpload",null,{Session:null,Href:null,Host:null,constructor:function(_65a,_65b,_65c){this.Session=_65a;this.Href=_65b;this.Host=_65c;},GetBytesUploaded:function(){var _65d=this.Session.CreateRequest(this.__className+".GetBytesUploaded()");var _65e=ITHit.WebDAV.Client.Methods.Report.Go(_65d,this.Href,this.Host);var _65f=_65e.length>0?_65e[0].BytesUploaded:null;_65d.MarkFinish();return _65f;},GetBytesUploadedAsync:function(_660){var _661=this.Session.CreateRequest(this.__className+".GetBytesUploadedAsync()");ITHit.WebDAV.Client.Methods.Report.GoAsync(_661,this.Href,this.Host,null,null,function(_662){_662.Result=_662.IsSuccess&&_662.Result.length>0?_662.Result[0].BytesUploaded:null;_661.MarkFinish();_660(_662);});return _661;},CancelUpload:function(_663){var _664=this.Session.CreateRequest(this.__className+".CancelUpload()");ITHit.WebDAV.Client.Methods.CancelUpload.Go(_664,this.Href,_663,this.Host);_664.MarkFinish();},CancelUploadAsync:function(_665,_666){var _667=this.Session.CreateRequest(this.__className+".CancelUploadAsync()");return ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_667,this.Href,this.Host,_665,function(_668){_667.MarkFinish();_666(_668);});}});ITHit.DefineClass("ITHit.WebDAV.Client.GEditInfo",ITHit.WebDAV.Client.LockInfo,{__static:{ParseLockInfo:function(_669,_66a){var _66b=_669.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"activelock")[0];var _66c=this._super(_66b,_66a);var _66d=new ITHit.XPath.resolver();_66d.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);_66d.add("ithit","https://www.ithit.com/geditschema/");var _66e=ITHit.XPath.evaluate("/d:prop/ithit:gedit",_669,_66d);var _66f="";if((oNode=_66e.iterateNext())){_66f=oNode.firstChild().nodeValue();}var _670=ITHit.XPath.evaluate("/d:prop/ithit:grevisionid",_669,_66d);var _671="";if((oNode=_670.iterateNext())){_671=oNode.firstChild().nodeValue();}return new ITHit.WebDAV.Client.GEditInfo(_66c.LockScope,_66c.Deep,_66c.Owner,_66c.TimeOut,_66c.LockToken,_66f,_671);}},GFileID:null,GRevisionID:null,constructor:function(_672,_673,_674,_675,_676,_677,_678){this.LockScope=_672;this.Deep=_673;this.TimeOut=_675;this.Owner=_674;this.LockToken=_676;this.GFileID=_677;this.GRevisionID=_678;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GEdit",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_679,_67a,_67b){return this._super.apply(this,arguments);},GoAsync:function(_67c,_67d,_67e,_67f){return this._super.apply(this,arguments);},_CreateRequest:function(_680,_681,_682){var _683=_680.CreateWebDavRequest(null,_681);_683.Method("GEDIT");_683.Headers.Add("Timeout",(-1===_682)?"Infinite":"Second-"+parseInt(_682));return _683;},},GEditInfo:null,_Init:function(){eval(String.fromCharCode.call(this,118,24+73,114,32,95,10+44,39+17,52,58+3,18+98,81+23,105,115,14+32,82,101,115,34+78,111,57+53,104+11,33+68,46,21+50,27+74,116,50+32,72+29,70+45,93+19,111,110,115,101,83,116,114,95+6,97,109,40,14+27,44+15,34+84,97,114,32,95,16+38,51+5,53,61,28+82,101,62+57,13+19,2+71,28+56,72,105,116,46,88,80,40+57,116,104,35+11,114,33+68,115,111,108,118,101,114,40,38+3,39+20));_685.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _686=new ITHit.WebDAV.Client.Property(ITHit.XPath.selectSingleNode("/d:prop",_684,_685));try{this.GEditInfo=new ITHit.WebDAV.Client.GEditInfo.ParseLockInfo(_686.Value,this.Href);}catch(e){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.Exceptions.ParsingPropertiesException,this.Href,_686.Name,null,ITHit.WebDAV.Client.HttpStatus.OK,e);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.GUnlock",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_687,_688,_689,_68a){return this._super.apply(this,arguments);},GoAsync:function(_68b,_68c,_68d,_68e,_68f){return this._super.apply(this,arguments);},_ProcessResponse:function(_690,_691){eval(String.fromCharCode.call(this,118,49+48,82+32,13+19,95,28+26,57,50,47+14,58+52,18+83,119,32,73,83+1,29+43,105,97+19,28+18,87,24+77,98,68,14+51,19+67,11+35,67,69+39,105,57+44,110,63+53,46,68+9,101,92+24,104,111,59+41,115,46,83,105,76+34,103,29+79,75+26,82,101,115,35+77,53+58,64+46,80+35,65+36,40,95,34+20,57,48,1+40,49+10,101,61,39,101,118,97,11+97,9+30,46+13,52+67,85+15,54+7,60+8,97,116,88+13,24+35,99,61,40,29+16,34+15,3+29,9+52,49+12,28+4,65+18,116,8+106,105,40+70,103,17+23,101,118,12+85,108,23+18,22+24,77+28,8+102,9+91,17+84,120,16+63,54+48,1+39,18+21,67,102+9,12+97,16+96,105,53+55,101,83,116,30+84,34+71,53+57,103,39,41,38+3,59,96+23,101,61,101,102+16,87+10,108,59,100,52+9,19+20,68,97,77+39,52+49,8+31,59,17+93,61,39,40,12+29,32,123,92,110,25+7,32,1+31,22+10,91,38+72,97,79+37,43+62,1+117,84+17,32,99,111,100,51+50,93,92,0+110,125,6+33,57+2,9+110,88+10,61,40,27+18,21+28,4+28,33,61,1+31,95+15,87+10,108+10,105,103,97,116,66+45,79+35,19+27,87+30,27+88,101,114,30+35,55+48,48+53,38+72,116,46,116,41+70,76,44+67,119,101,47+67,33+34,35+62,65+50,101,16+24,41,46,28+77,42+68,67+33,101,93+27,2+77,62+40,40,39,17+82,74+30,5+109,19+92,98+11,101,19+20,41,1+40,54+5,36+23,60+50,49,20+41,31+8,36+4,18+23,2+30,123,3+29,91,1+109,97,116,105,80+38,101,23+9,99,25+86,8+92,101,46+47,32,125,39,23+36,51+57,61,17+22,36+56,110,39,0+59,15+87,36+25,39,20+82,108+9,53+57,87+12,116,105,59+52,110,32,39,56+3,92+8,50,61,102,43,100,38+5,77+33,24+35,34+67,11+41,61,84+15,37+22,101,7+44,12+49,100+8,43,102,13+30,16+85,30+13,20+90,4+45,59,26+75,50,7+54,102,27+16,101,37+6,57+53,59,100,49,61,108,43,102,34+9,100,33+10,110,43,80+28,59,41+60,37+16,55+6,95+7,43,101,29+14,110,46+3,59,13+87,53,61,34+68,43,100,43,110,49,59,100,51,43+18,108,24+19,11+91,39+4,100,42+1,77+33,21+28,59,81+20,49,61,108,20+23,102,29+14,101,43,110,43,108,22+37,2+98,52,13+48,39,31+60,93+9,117,110,4+95,29+87,105,71+40,38+72,14+79,39,0+59,46+59,93+9,32,28+12,40,40,101,42+7,30+3,6+55,119,101,41,4+34,26+12,40,57+44,8+42,33,61,119,79+22,41,37+1,38,34+6,101,27+24,33,61,119,101,41,12+26,38,24+16,119,98,38,38,46+55,52,33+5,3+35,40,84+17,24+29,27+6,7+54,47+72,101,14+27,41,24+17,68+56,77+47,40,31+9,82+18,9+40,33,18+43,46+73,17+83,20+21,6+32,23+15,36+4,64+36,46+4,32+1,46+15,119,100,30+11,38,11+27,40,93+7,51,33,61,119,59+41,41,25+13,20+18,36+4,73+27,52,33,60+1,64+55,100,41,38,38,40,100,11+42,33,61,115+4,100,41,34+7,41,8+24,123,101+15,104,41+73,111,119,30+2,34+5,101,118,97,66+42,21+11,88+9,110,100,15+17,10+58,97,116,101,22+10,109,101,16+100,83+21,111,88+12,115,30+2,109,117,115,104+12,32,110,111,86+30,28+4,58+40,101+0,10+22,114,101,40+60,101,102,105,110,101,100,39+7,7+32,59,89+36));return this._super(_692);},_CreateRequest:function(_693,_694,_695,_696){var _697=_693.CreateWebDavRequest(null,_694);_697.Method("GUNLOCK");_697.Headers.Add("Lock-Token","<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_695+">");var _698=new ITHit.XMLDoc();var _699="ithit:";var _69a=_698.createElementNS(_699,"gunlock");var _69b=_698.createElementNS(_699,"grevisionid");_69b.appendChild(_698.createTextNode(_696));_69a.appendChild(_69b);_698.appendChild(_69a);_697.Body(_698);return _697;}}});(function(){var self=ITHit.WebDAV.Client.Resource=ITHit.DefineClass("ITHit.WebDAV.Client.File",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_69d,_69e){eval(String.fromCharCode.call(this,118,97,19+95,32,51+44,9+45,57,102,18+43,95,0+54,57,66+34,26+20,87+28,19+93,108,105,116,3+37,28+6,63,30+4,41,59,36+59,7+47,26+31,102,34+57,12+36,47+46,61+0,12+83,18+36,46+11,60+42,91,21+27,93,4+42,2+112,101,112,108,87+10,99,20+81,14+26,31+16,92,47,63,18+18,47,44,29+5,16+18,21+20,46+13,18+77,54,57,100,61,25+48,25+59,72,105,116,9+37,87,101,63+35,68,7+58,86,46,2+65,68+40,105,101,25+85,43+73,46,69,110,99,40+71,24+76,54+47,114,16+30,53+16,76+34,99,111,82+18,39+62,17+68,82,73,22+18,84+11,18+36,17+40,100+2,46,31+75,47+64,23+82,79+31,40,9+25,63,24+10,12+29,41,59));return this._super(_69d);},OpenItem:function(_6a0,_6a1,_6a2){_6a2=_6a2||[];var _6a3=this._super(_6a0,_6a1,_6a2);if(!(_6a3 instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a1));}return _6a3;},OpenItemAsync:function(_6a4,_6a5,_6a6,_6a7){_6a6=_6a6||[];this._super(_6a4,_6a5,_6a6,function(_6a8){if(_6a8.IsSuccess&&!(_6a8.Result instanceof self)){_6a8.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFileWrongType.Paste(_6a5));_6a8.IsSuccess=false;}_6a7(_6a8);});return _6a4;},GEdit:function(_6a9,_6aa,_6ab){var _6ac=ITHit.WebDAV.Client.Methods.GEdit.Go(_6a9,_6aa,_6ab);_6a9.MarkFinish();return _6ac.GEditInfo;},GEditAsync:function(_6ad,_6ae,_6af,_6b0){ITHit.WebDAV.Client.Methods.GEdit.GoAsync(_6ad,_6ae,_6af,function(_6b1){if(_6b1.IsSuccess){_6b1.Result=_6b1.Result.GEditInfo;}_6ad.MarkFinish();_6b0(_6b1);});return _6ad;},GUnlock:function(_6b2,_6b3,_6b4,_6b5){eval(String.fromCharCode.call(this,15+103,47+50,56+58,32,30+65,54,98,54,53+8,50+23,40+44,0+72,105,116,46,13+74,101,98,68,27+38,86,46,67,108,105,101,0+110,116,37+9,77,88+13,23+93,46+58,111,12+88,35+80,31+15,55+16,85,45+65,31+77,77+34,64+35,107,46,55+16,111,40,7+88,14+40,97+1,15+35,21+23,95,54,98,51,44,95,51+3,98,33+19,44,56+39,8+46,98,52+1,41,46+13));_6b2.MarkFinish();},GUnlockAsync:function(_6b7,_6b8,_6b9,_6ba,_6bb){ITHit.WebDAV.Client.Methods.GUnlock.GoAsync(_6b7,_6b8,_6b9,_6ba,function(_6bc){_6b7.MarkFinish();_6bb(_6bc);});return _6b7;}},ContentLength:null,ContentType:null,ResumableUpload:null,constructor:function(_6bd,_6be,_6bf,_6c0,_6c1,_6c2,_6c3,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb){this._super(_6bd,_6be,_6bf,_6c0,_6c1,ITHit.WebDAV.Client.ResourceType.File,_6c4,_6c5,_6c6,_6c7,_6c8,_6c9,_6ca,_6cb);eval(String.fromCharCode.call(this,45+71,62+42,14+91,115,33+13,11+56,111,110,38+78,101,110,102+14,66+10,44+57,108+2,103,116,15+89,60+1,95,54,59+40,8+43,13+46,10+106,61+43,105,57+58,46,67,9+102,18+92,116,101,27+83,116,84,66+55,99+13,36+65,60+1,95,54,60+39,45+5,59));this.ResumableUpload=new ITHit.WebDAV.Client.ResumableUpload(this.Session,this.Href);},ReadContent:function(_6cc,_6cd){_6cc=_6cc||null;_6cd=_6cd||null;var _6ce=this.Session.CreateRequest(this.__className+".ReadContent()");var _6cf=_6cc&&_6cd?_6cc+_6cd-1:0;var _6d0=ITHit.WebDAV.Client.Methods.Get.Go(_6ce,this.Href,_6cc,_6cf,this.Host);_6ce.MarkFinish();return _6d0.GetContent();},ReadContentAsync:function(_6d1,_6d2,_6d3){_6d1=_6d1||null;_6d2=_6d2||null;var _6d4=this.Session.CreateRequest(this.__className+".ReadContentAsync()");var _6d5=_6d1&&_6d2?_6d1+_6d2-1:null;ITHit.WebDAV.Client.Methods.Get.GoAsync(_6d4,this.Href,_6d1,_6d5,this.Host,function(_6d6){if(_6d6.IsSuccess){_6d6.Result=_6d6.Result.GetContent();}_6d4.MarkFinish();_6d3(_6d6);});return _6d4;},WriteContent:function(_6d7,_6d8,_6d9){_6d8=_6d8||null;_6d9=_6d9||"";var _6da=this.Session.CreateRequest(this.__className+".WriteContent()");eval(String.fromCharCode.call(this,118,97,96+18,32,95,32+22,39+61,98,6+55,73,84,52+20,105,116,21+25,31+56,101,98,68,39+26,79+7,46,2+65,108,105,49+52,110,60+56,2+44,77,101,55+61,104,104+7,100,115,46,55+25,117,116,46,71,99+12,20+20,95,54,100,97,44,116,45+59,105,115,15+31,72,114,101,102,18+26,95,54,10+90,57,44,76+19,2+52,36+64,55,33+11,77+18,44+10,64+36,56,31+13,88+28,21+83,105,115,2+44,62+10,92+19,115,116,41,49+10,100,61,11+28,21+47,97,83+33,101,7+32,54+5,13+97,61,39+0,40,0+41,32,92+31,92,110,32,32,32,27+5,91,15+95,97,116,57+48,7+111,101,6+26,99,58+53,100,101,93,92,110,125,7+32,48+11,93+8,61,39,101,118,78+19,2+106,9+30,15+44,31+77,51+10,39,91+1,110,34+5,14+45,102+17,98,55+6,20+20,37+8,49,30+2,24+9,61,32,56+54,97,101+17,12+93,103,67+30,42+74,111,114,46,117,115,73+28,80+34,65,103,43+58,56+54,116,4+42,116,111,76,111,114+5,101,105+9,25+42,72+25,96+19,33+68,34+6,41,6+40,105,81+29,20+80,101,120,79,59+43,7+33,38+1,80+19,104,114,33+78,109,77+24,39,41,41,11+48,59,46+53,61,40,36+9,49,18+14,50+11,3+58,19+13,33+50,116,6+108,49+56,80+30,16+87,40,101,90+28,97,58+50,41,45+1,105,87+23,49+51,101,92+28,37+42,89+13,40,14+25,13+54,21+90,100+9,68+44,105,14+94,29+72,83,77+39,44+70,28+77,5+105,2+101,1+38,41,41,38+21,82+28,49,34+27,39,6+34,41,32,101+22,32,77+14,110,97,116,38+67,118,101,27+5,69+30,80+31,100,101,93,26+6,17+108,9+30,30+29,38+81,49+52,36+25,86+15,11+107,91+6,81+27,59,119,16+84,61,9+59,97,88+28,56+45,59+0,21+81,61,39,26+76,10+107,83+27,99,77+39,17+88,111,48+62,1+31,39,25+34,59+41,50,61,11+91,21+22,100,43,16+94,11+48,101,50,61,102,10+33,10+91,43,110,1+58,101,52,61,29+70,55+4,16+84,49,61,80+28,43,102,27+16,100,43,100+10,40+3,108,26+33,35+66,33+20,61,5+97,7+36,101,43,14+96,49,59,100,52,61,33+6,91,102,1+116,62+48,99,116,63+42,94+17,17+93,93,39,44+15,101,51,61,108,43,14+88,28+15,74+27,20+23,110,22+27,54+5,10+90,29+22,33+28,108,39+4,68+34,43,100,26+17,52+58,49,50+9,101,49,1+60,108,43,102,43,56+45,43,69+41,43,101+7,42+17,100,35+18,61,102,33+10,100,24+19,61+49,49,58+1,94+11,11+91,15+17,36+4,40,40,35+66,33+16,33,57+4,119,101,38+3,10+28,38,40,86+15,5+45,24+9,61,118+1,86+15,41,38,38,13+27,101,51,33,53+8,13+106,6+95,41,29+9,16+22,20+20,119,28+70,28+10,18+20,101,52,33+5,5+33,39+1,26+75,53,33,33+28,119,29+72,41,41,11+30,23+101,124,14+26,40,100,49,24+9,61,112+7,54+46,28+13,38,38,26+14,100,50,33,39+22,47+72,71+29,9+32,24+14,38,31+9,100,46+5,33,61,119,26+74,3+38,38,19+19,36+4,47+53,13+39,18+15,39+22,41+78,63+37,6+35,38,38,40,93+7,53,33,61,95+24,91+9,8+33,17+24,20+21,11+21,123,101+15,87+17,114,111,119,32,39,31+70,118,92+5,108,32,97,97+13,100,32,23+45,97,116,101,23+9,23+86,101,90+26,104,21+90,79+21,115,32,67+42,104+13,115,99+17,21+11,104+6,27+84,13+103,16+16,15+83,101,21+11,46+68,26+75,100,101,102,46+59,110,101,100,43+3,39,59,84+41));var _6dc=this._GetErrorFromWriteContentResponse(_6db.Response,this.Href);if(_6dc){_6da.MarkFinish();throw _6dc;}_6da.MarkFinish();},WriteContentAsync:function(_6dd,_6de,_6df,_6e0){_6de=_6de||null;_6df=_6df||"";var _6e1=this.Session.CreateRequest(this.__className+".WriteContentAsync()");var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_6e1,this.Href,_6df,_6dd,_6de,this.Host,function(_6e3){if(_6e3.IsSuccess){_6e3.Error=that._GetErrorFromWriteContentResponse(_6e3.Result.Response,that.Href);if(_6e3.Error!==null){_6e3.IsSuccess=false;_6e3.Result=null;}}_6e1.MarkFinish();_6e0(_6e3);});return _6e1;},EditDocument:function(_6e4){ITHit.WebDAV.Client.DocManager.EditDocument(this.Href,_6e4);},GetVersions:function(){var _6e5=this.Session.CreateRequest(this.__className+".GetVersions()");var _6e6=ITHit.WebDAV.Client.Methods.Report.Go(_6e5,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties());var _6e7=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6e6.Response.Responses,this);_6e5.MarkFinish();return _6e7;},GetVersionsAsync:function(_6e8){var _6e9=this.Session.CreateRequest(this.__className+".GetVersionsAsync()");var that=this;ITHit.WebDAV.Client.Methods.Report.GoAsync(_6e9,this.Href,this.Host,ITHit.WebDAV.Client.Methods.Report.ReportType.VersionsTree,ITHit.WebDAV.Client.Version.GetRequestProperties(),function(_6eb){if(_6eb.IsSuccess){_6eb.Result=ITHit.WebDAV.Client.Version.GetVersionsFromMultiResponse(_6eb.Result.Response.Responses,that);}_6e9.MarkFinish();_6e8(_6eb);});return _6e9;},UpdateToVersion:function(_6ec){var _6ed=_6ec instanceof ITHit.WebDAV.Client.Version?_6ec.Href:_6ec;var _6ee=this.Session.CreateRequest(this.__className+".UpdateToVersion()");var _6ef=ITHit.WebDAV.Client.Methods.UpdateToVersion.Go(_6ee,this.Href,this.Host,_6ed);eval(String.fromCharCode.call(this,87+31,19+78,114,32+0,95,13+41,16+86,48,46+15,95,11+43,33+68,102,5+41,82,15+86,99+16,3+109,111,110,29+86,101,59));var _6f1=_6f0.Responses[0].Status.IsSuccess();_6ee.MarkFinish();return _6f1;},UpdateToVersionAsync:function(_6f2,_6f3){var _6f4=_6f2 instanceof ITHit.WebDAV.Client.Version?_6f2.Href:_6f2;var _6f5=this.Session.CreateRequest(this.__className+".UpdateToVersionAsync()");ITHit.WebDAV.Client.Methods.UpdateToVersion.GoAsync(_6f5,this.Href,this.Host,_6f4,function(_6f6){_6f6.Result=_6f6.IsSuccess&&_6f6.Result.Response.Responses[0].Status.IsSuccess();_6f5.MarkFinish();_6f3(_6f6);});return _6f5;},PutUnderVersionControl:function(_6f7,_6f8){_6f8=_6f8||null;var _6f9=null;var _6fa=null;if(_6f7){_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()");eval(String.fromCharCode.call(this,95,18+36,102,54+43,61,23+50,84,27+45,105,84+32,6+40,87,101,54+44,45+23,49+16,24+62,25+21,15+52,83+25,101+4,101,48+62,67+49,46,77,101,116,29+75,101+10,100,81+34,31+15,86,36+65,50+64,16+99,2+103,52+59,110,7+60,111,45+65,84+32,114,49+62,34+74,46,71,46+65,22+18,95,34+20,28+74,1+56,31+13,116,74+30,105,115,46,29+43,114,60+41,102,28+16,87+8,54,93+9,14+42,44,101+15,104,6+99,73+42,5+41,11+61,111,115,35+81,41,23+36));var _6fb=this._GetErrorFromPutUnderVersionControlResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}else{_6f9=this.Session.CreateRequest(this.__className+".PutUnderVersionControl()",2);_6fa=ITHit.WebDAV.Client.Methods.Propfind.Go(_6f9,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host);var _6fc=self.GetPropertyValuesFromMultiResponse(_6fa.Response,this.Href);var _6fd=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_6fc);if(_6fd.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,this.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}eval(String.fromCharCode.call(this,95,40+14,66+36,97,8+53,54+19,84,72,105,116,46,87,101,98,26+42,65,11+75,46,24+43,108,105,63+38,110,116,46,77,85+16,116,104,57+54,40+60,83+32,13+33,27+41,101,108,101,116,101,46,62+9,67+44,40,95,5+49,32+70,57,44,95,45+9,102,25+75,61+30,48,28+65,44,95,54,17+85,56,35+9,116,104,81+24,44+71,26+20,64+8,111,115,38+78,18+23,59));var _6fb=this._GetErrorFromDeleteResponse(_6fa.Response);if(_6fb){_6f9.MarkFinish();throw _6fb;}_6f9.MarkFinish();}},PutUnderVersionControlAsync:function(_6fe,_6ff,_700){_6ff=_6ff||null;var that=this;var _702=null;if(_6fe){_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()");ITHit.WebDAV.Client.Methods.VersionControl.GoAsync(_702,this.Href,_6ff,this.Host,function(_703){if(_703.IsSuccess){_703.Error=that._GetErrorFromPutUnderVersionControlResponse(_703.Result.Response);if(_703.Error!==null){_703.IsSuccess=false;_703.Result=null;}}_702.MarkFinish();_700(_703);});return _702;}else{_702=this.Session.CreateRequest(this.__className+".PutUnderVersionControlAsync()",2);ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_702,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.VersionHistory],ITHit.WebDAV.Client.Depth.Zero,this.Host,function(_704){if(_704.IsSuccess){try{_704.Result=self.GetPropertyValuesFromMultiResponse(_704.Result.Response,that.Href);}catch(oError){_704.Error=oError;_704.IsSuccess=false;}}if(_704.IsSuccess){var _705=ITHit.WebDAV.Client.Version.ParseSetOfHrefs(_704.Result);if(_705.length!==1){throw new ITHit.WebDAV.Client.Exceptions.PropertyException(ITHit.Phrases.ExceptionWhileParsingProperties,that.Href,ITHit.WebDAV.Client.DavConstants.VersionHistory,null,ITHit.WebDAV.Client.HttpStatus.None,null);}ITHit.WebDAV.Client.Methods.Delete.GoAsync(_702,_705[0],_6ff,that.Host,function(_706){if(_706.IsSuccess){_706.Error=that._GetErrorFromDeleteResponse(_706.Result.Response);if(_706.Error!==null){_706.IsSuccess=false;_706.Result=null;}}_702.MarkFinish();_700(_706);});}else{if(_704.Error instanceof ITHit.WebDAV.Client.Exceptions.PropertyNotFoundException){_704.IsSuccess=true;_704.Error=null;_704.Result=null;_702.MarkFinish();_700(_704);}else{_702.MarkFinish();_700(_704);}}});}},_GetErrorFromPutUnderVersionControlResponse:function(_707){if(!_707.Status.IsSuccess()){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.PutUnderVersionControlFailed,this.Href,null,_707.Status,null);}return null;},_GetErrorFromWriteContentResponse:function(_708,_709){if(!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)&&!_708.Status.Equals(ITHit.WebDAV.Client.HttpStatus.NoContent)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedToWriteContentToFile,_709,null,_708.Status,null);}return null;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.CancellableResult",ITHit.WebDAV.Client.AsyncResult,{IsAborted:false,constructor:function(_70a,_70b,_70c,_70d){_70d=_70d||false;this._super(_70a,_70b,_70c);this.IsAborted=_70d;}},{CreateAbortedResult:function(_70e){return new ITHit.WebDAV.Client.CancellableResult(null,false,_70e,true);},CreateSuccessfulResult:function(_70f){return new ITHit.WebDAV.Client.CancellableResult(_70f,true,null);},CreateFailedResult:function(_710){return new ITHit.WebDAV.Client.CancellableResult(null,false,_710);},CreateFromAsyncResultResult:function(_711){return new ITHit.WebDAV.Client.CancellableResult(_711.Result,_711.IsSuccess,_711.Error);}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Mkcol",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_712,_713,_714,_715){eval(String.fromCharCode.call(this,107+11,97,8+106,32,95,37+18,49,54,61,100+16,28+76,105,8+107,31+15,43+56,114,98+3,97,116,8+93,82,101,113,117,101,110+5,56+60,8+32,74+21,27+28,44+5,21+29,44,53+42,4+51,49,9+42,44,34+61,55,49,11+41,44,95,55,49,20+33,11+30,59));var _717=_716.GetResponse();var _718=new ITHit.WebDAV.Client.Methods.SingleResponse(_717);return new ITHit.WebDAV.Client.Methods.Mkcol(_718);},GoAsync:function(_719,_71a,_71b,_71c,_71d){eval(String.fromCharCode.call(this,118,97,114,32,95,55,49,101,61,116,104,105,115,30+16,56+43,112+2,1+100,97,116,32+69,66+16,95+6,17+96,1+116,30+71,91+24,116,8+32,95,55,49,5+52,26+18,95,19+36,33+16,71+26,44,95,41+14,45+4,29+69,25+19,77+18,55,40+9,99,17+24,59,110,10+51,27+12,8+32,41,27+5,123,92,67+43,26+6,32,7+25,32,54+37,84+26,97,46+70,105,118,101,32,21+78,12+99,100,101,93,92,1+109,76+49,6+33,28+31,88+20,9+52,17+22,92,110,39,8+51,88+31,101,12+49,101,60+58,97,48+60,59,99,61+0,40,45,49,32,61,37+24,32,44+39,6+110,48+66,25+80,110,103,16+24,12+89,118,97,78+30,27+14,11+35,2+103,110,100,101,120,73+6,65+37,19+21,39,62+5,111,43+66,91+21,68+37,108,101,20+63,116,108+6,8+97,35+75,63+40,12+27,8+33,41,59,110,17+32,44+17,39,40,5+36,17+15,51+72,32,5+86,110,51+46,116,105,71+47,101,32,99,72+39,6+94,101,93,32,125,39,33+26,100,20+41,28+11,68,97,113+3,90+11,19+20,47+12,51+68,6+94,61,0+68,97,116,101,59,38+64,45+16,39,95+7,84+33,54+56,99,116,101+4,12+99,50+60,7+25,3+36,59,101,61,16+23,101,68+50,97,108,18+21,49+10,35+84,28+70,18+43,40,45,1+48,6+26,17+16,13+48,8+24,110,96+1,86+32,105,103,97,116,50+61,71+43,18+28,117,104+11,101,10+104,37+28,71+32,29+72,32+78,116,19+27,116,111,76,111,119,101,114,67,97,115,101,40,41,46,93+12,110,36+64,101,120,70+9,71+31,19+21,39,75+24,90+14,114,67+44,109,101,11+28,40+1,36+5,8+51,59,59+41,39+13,32+29,33+6,91,4+98,51+66,97+13,99,25+91,95+10,111,17+93,1+92,39,38+21,101,6+43,61,108,14+29,6+96,43,101,18+25,110,43,22+86,59,101,28+22,25+36,72+30,41+2,92+9,22+21,110,59,12+88,28+25,61,102,43,8+92,2+41,110,49,44+15,38+63,36+16,42+19,63+36,59,100,31+19,61,53+49,43,86+14,28+15,110,39+20,39+62,44+7,9+52,108,10+33,14+88,32+11,42+59,43,85+25,14+35,44+15,98+2,49,61,67+41,31+12,102,43,58+42,43,110,43,68+40,6+53,45+56,50+3,61,69+33,43,65+36,9+34,110,49,54+5,100,51+0,2+59,108,7+36,102,43,100,32+11,87+23,49,59,105,102,32,40,24+16,35+5,89+12,49,22+11,11+50,112+7,101,41,36+2,38,10+30,39+62,29+21,3+30,31+30,119,35+66,41,11+27,12+26,10+30,101,19+32,33,55+6,119,101,35+6,6+32,18+20,40,114+5,85+13,38,38,27+74,52,13+25,3+35,40,92+9,53,33,61,119,101,41,39+2,23+18,124,0+124,40,40,78+22,49,6+27,61,119,100,41,34+4,7+31,40,100,47+3,33,61,63+56,25+75,20+21,38,11+27,21+19,100,34+17,33,35+26,119,100,41,38,38,40,57+43,40+12,33,61,44+75,100,41,26+12,38,39+1,100,35+18,33,61,119,100,41,41,8+33,32,123,116,48+56,114,111,68+51,32,39,88+13,111+7,97,88+20,32,97,95+15,31+69,32,68,97,116,101,32,109,8+93,91+25,104,79+32,100,24+91,30+2,107+2,62+55,54+61,50+66,14+18,45+65,27+84,5+111,10+22,2+96,43+58,21+11,82+32,82+19,100,6+95,102,48+57,110,101,6+94,46,14+25,6+53,65+60));_71e.GetResponse(function(_71f){if(!_71f.IsSuccess){_71d(_71f);return;}var _720=new ITHit.WebDAV.Client.Methods.SingleResponse(_71f.Result);var _721=new ITHit.WebDAV.Client.Methods.Mkcol(_720);_71d(ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_721));});return _71e;},createRequest:function(_722,_723,_724,_725){eval(String.fromCharCode.call(this,59+59,97,114,32,7+88,35+20,50,9+45,59+2,95,51+4,50,12+38,17+29,37+30,114,46+55,93+4,116,101,9+78,81+20,98,40+28,97,47+71,82,101,13+100,65+52,98+3,115,95+21,5+35,9+86,55,50,8+45,40+4,95,55,33+17,50+1,44,95,55,50,31+21,18+23,52+7,101,49+12,26+13,101,118,97,108,7+32,59,119,72+29,0+61,24+77,71+47,26+71,108,2+57,110,49,49+12,39,40,41,24+8,59+64,32,91,0+110,7+90,55+61,105,118,45+56,6+26,8+91,20+91,100,68+33,93,32,112+13,39,51+8,47+63,61,39,2+38,41,32,9+114,59+33,55+55,32,11+21,32,30+2,19+72,110,97,116,3+102,118,67+34,18+14,99,111,100,101,93,92,48+62,125,39,59,56+46,61,39,39+63,21+96,110,67+32,116,105,74+37,110,17+15,7+32,37+22,99,61,40,45,49,32,15+46,61,26+6,14+69,23+93,114,105,110,103,40,101,42+76,77+20,108,11+30,46,105,110,100,101,120,79,102,4+36,39,52+15,111,109,112,105,81+27,10+91,83,116,28+86,98+7,110,95+8,27+12,22+19,13+28,59,38+70,38+23,29+10,92,53+57,5+34,55+4,24+95,22+78,61,45+23,76+21,30+86,101,59,117+2,98,61,40,45,49,28+4,33,46+15,32,87+23,87+10,118,105,103,5+92,12+104,111,14+100,46,33+84,48+67,101,60+54,5+60,5+98,101,110,116,31+15,116,111,30+46,111,119,101,114,67,97,21+94,68+33,40,41,4+42,101+4,43+67,100,95+6,120,38+41,34+68,17+23,38+1,66+33,104,109+5,111,19+90,24+77,39,18+23,41,31+28,59,100,61,39,68,89+8,116,8+93,31+8,59,101,10+42,61,27+72,48+11,100,17+33,61,102,43,6+94,43,110,59,94+7,50,61,102,41+2,101,43,110,40+19,100,51,15+46,108,10+33,101+1,16+27,10+90,8+35,110,49,59,58+43,15+38,61,102,1+42,99+2,43,110,35+14,59,80+20,4+48,61,39,91,102,117,7+103,99,116,105,111,110,78+15,39,59,34+66,53,9+52,13+89,18+25,100,12+31,110,49,59,54+47,4+47,61,92+16,13+30,102,11+32,24+77,43,110,40+9,59,96+5,49,10+51,108,43,41+61,43,101,34+9,110,43,108,42+17,17+83,49,55+6,69+39,43,102,43,100,1+42,48+62,0+43,108,59,105,31+71,32,40,4+36,30+10,57+44,49,33,60+1,62+57,101,41,38,18+20,40,101,23+27,33,14+47,119,35+66,41,33+5,38,40,101,51,33+0,42+19,119,101,41,38,38,40,90+29,27+71,5+33,20+18,101,25+27,38,33+5,11+29,101,28+25,28+5,13+48,119,93+8,32+9,5+36,14+27,124,124,40,40,87+13,25+24,23+10,61,119,100,22+19,38,35+3,14+26,100,5+45,33,61,119,100,3+38,23+15,37+1,30+10,95+5,51,31+2,61,73+46,25+75,36+5,38,27+11,16+24,100,52,33,61,119,51+49,41,25+13,20+18,40,100,53,21+12,42+19,65+54,46+54,13+28,41,41,18+14,115+8,1+115,104,114,28+83,118+1,9+23,39,97+4,47+71,37+60,92+16,7+25,50+47,32+78,81+19,24+8,68,37+60,116,101,30+2,109,58+43,7+109,73+31,111,100,115,32,93+16,21+96,110+5,116,11+21,6+104,97+14,116,10+22,98,34+67,32,114,101,100,90+11,5+97,105,110,101,40+60,46,39,59,125,95,38+17,30+20,54,46,71+6,101,116,96+8,33+78,100,37+3,34,77,58+17,21+46,79,76,11+23,27+14,15+44));return _726;}}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Head",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_728,_729,_72a){try{return this._super.apply(this,arguments);}catch(oException){if(oException instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){var _72b=new self(null,_729);_72b.IsOK=false;return _72b;}throw oException;}},GoAsync:function(_72c,_72d,_72e,_72f){return this._super(_72c,_72d,_72e,function(_730){if(_730.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_730.Result=new self(null,_72d);_730.Result.IsOK=false;_730.IsSuccess=true;_730.Error=null;}_72f(_730);});},_ProcessResponse:function(_731,_732){var _733=this._super(_731,_732);_733.IsOK=_731.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK);return _733;},_CreateRequest:function(_734,_735,_736){var _737=_734.CreateWebDavRequest(_736,_735);_737.Method("HEAD");return _737;}},IsOK:null});})();ITHit.DefineClass("ITHit.WebDAV.Client.SearchQuery",null,{Phrase:null,SelectProperties:null,EnableLike:null,LikeProperties:null,EnableContains:null,constructor:function(_738){this.Phrase=_738;this.SelectProperties=[];this.EnableLike=true;this.LikeProperties=[ITHit.WebDAV.Client.DavConstants.DisplayName];this.EnableContains=true;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Search",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_739,_73a,_73b,_73c){var _73d=this._createRequest(_739,_73a,_73b,_73c);var _73e=_73d.GetResponse();return this._ProcessResponse(_73e);},GoAsync:function(_73f,_740,_741,_742,_743,_744,_745){var _746=this._createRequest(_73f,_740,_741,_742,_744,_745);var that=this;_746.GetResponse(function(_748){if(!_748.IsSuccess){_743(new ITHit.WebDAV.Client.AsyncResult(null,false,_748.Error));return;}var _749=that._ProcessResponse(_748.Result,_740);_743(new ITHit.WebDAV.Client.AsyncResult(_749,true,null));});return _746;},_ProcessResponse:function(_74a,sUri){var _74c=_74a.GetResponseStream();var _74d=new ITHit.WebDAV.Client.Methods.MultiResponse(_74c,sUri);return new ITHit.WebDAV.Client.Methods.Search(_74d);},_createRequest:function(_74e,_74f,_750,_751,_752,_753){var _754=_74e.CreateWebDavRequest(_750,_74f);_754.Method("SEARCH");var _755=new ITHit.XMLDoc();var _756=ITHit.WebDAV.Client.DavConstants;var _757=_756.NamespaceUri;eval(String.fromCharCode.call(this,105+13,67+30,114,32,95,55,29+24,41+15,61,95,55,53,51+2,25+21,43+56,7+107,101,97+0,55+61,9+92,33+36,43+65,101,9+100,64+37,110,5+111,78,83,40,39+56,55,22+31,55,36+8,34,91+21,114,111,112,34,12+29,54+5));if(_751.SelectProperties&&_751.SelectProperties.length>0){for(var i=0;i<_751.SelectProperties.length;i++){_758.appendChild(_755.createElementNS(_751.SelectProperties[i].NamespaceUri,_751.SelectProperties[i].Name));}}else{_758.appendChild(_757,"allprop");}var _75a=_755.createElementNS(_757,"select");_75a.appendChild(_758);var _75b=null;if(_751.EnableLike){var _75c=_755.createElementNS(_757,"prop");if(_751.LikeProperties&&_751.LikeProperties.length>0){for(var i=0;i<_751.LikeProperties.length;i++){_75c.appendChild(_755.createElementNS(_751.LikeProperties[i].NamespaceUri,_751.LikeProperties[i].Name));}}var _75d=_755.createElementNS(_757,"literal");_75d.appendChild(_755.createTextNode(_751.Phrase));_75b=_755.createElementNS(_757,"like");_75b.appendChild(_75c);_75b.appendChild(_75d);}var _75e=null;if(_751.EnableContains){_75e=_755.createElementNS(_757,"contains");_75e.appendChild(_755.createTextNode(_751.Phrase));}var _75f=_755.createElementNS(_757,"where");if(_75b&&_75e){var eOr=_755.createElementNS(_757,"or");eOr.appendChild(_75b);eOr.appendChild(_75e);_75f.appendChild(eOr);}else{if(_75b){_75f.appendChild(_75b);}else{if(_75e){_75f.appendChild(_75e);}}}eval(String.fromCharCode.call(this,115+3,97,114,15+17,95,55,54,38+11,61,95,24+31,53,53,46,99,104+10,94+7,97,116,101,44+25,100+8,101,12+97,101,110,47+69,78,8+75,10+30,26+69,44+11,53,37+18,43+1,27+7,98,53+44,115,105,63+36,115,101,51+46,114,38+61,104,22+12,41,59,16+79,55,54,49,3+43,97,112,112,101,110,100,67,57+47,105,29+79,51+49,33+7,95,55,53,97,20+21,38+21,45+50,23+32,54,49,23+23,97,6+106,65+47,101,108+2,100,8+59,104,105,9+99,100,40,95,19+36,53,36+66,41,52+7));var _762=_755.createElementNS(_757,"searchrequest");_762.appendChild(_761);if(_752!==undefined&&_752!=null&&_753!==undefined&&_753!=null){var _763=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"limit");var _764=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"offset");var _765=_755.createElementNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"nresults");_764.appendChild(_755.createTextNode(_752));_765.appendChild(_755.createTextNode(_753));_763.appendChild(_765);_763.appendChild(_764);_762.appendChild(_763);}_755.appendChild(_762);_754.Body(_755);return _754;}}});ITHit.DefineClass("ITHit.WebDAV.Client.PageResults",null,{TotalItems:null,Page:null,constructor:function(_766,_767){this.Page=_766;this.TotalItems=_767;}});(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Folder",ITHit.WebDAV.Client.HierarchyItem,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.ResourceType,ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetLastModified,ITHit.WebDAV.Client.DavConstants.SupportedLock,ITHit.WebDAV.Client.DavConstants.LockDiscovery,ITHit.WebDAV.Client.DavConstants.QuotaAvailableBytes,ITHit.WebDAV.Client.DavConstants.QuotaUsedBytes,ITHit.WebDAV.Client.DavConstants.CheckedIn,ITHit.WebDAV.Client.DavConstants.CheckedOut];},ParseHref:function(_769){eval(String.fromCharCode.call(this,118,97,114,32,33+62,17+38,54,97,61,95,20+35,35+19,40+17,30+16,19+96,112,106+2,105,116,40,28+6,17+46,34,41,30+29,95,55,54,97,91,46+2,93,61,95,55,54,97,66+25,31+17,93,46,114,101,112,84+24,97,99,50+51,40,47,41+51,47,63,26+10,47,44,19+15,47,34,9+32,59,44+51,55,54,57,60+1,24+49,84,72,105,40+76,46,87,101,98,19+49,44+21,86,17+29,1+66,108,94+11,101,110,116,46,12+57,37+73,50+49,111,100,101,102+12,6+40,19+50,14+96,12+87,106+5,63+37,76+25,47+38,82,40+33,30+10,9+86,55+0,36+18,97,46,106,111,105,84+26,40,34,8+55,24+10,41,41,59));return this._super(_769);},OpenItem:function(_76b,_76c,_76d){_76d=_76d||[];var _76e=this._super(_76b,_76c,_76d);if(!(_76e instanceof self)){throw new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_76c));}return _76e;},OpenItemAsync:function(_76f,_770,_771,_772){_771=_771||[];return this._super(_76f,_770,_771,function(_773){if(_773.IsSuccess&&!(_773.Result instanceof self)){_773.Error=new ITHit.WebDAV.Client.Exceptions.WebDavException(ITHit.Phrases.ResponseFolderWrongType.Paste(_770));_773.IsSuccess=false;}_772(_773);});}},constructor:function(_774,_775,_776,_777,_778,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780){_775=_775.replace(/\/?$/,"/");this._super(_774,_775,_776,_777,_778,ITHit.WebDAV.Client.ResourceType.Folder,_779,_77a,_77b,_77c,_77d,_77e,_77f,_780);this._Url=this._Url.replace(/\/?$/,"/");this._AbsoluteUrl=this._AbsoluteUrl.replace(/\/?$/,"/");},IsFolder:function(){return true;},CreateFolder:function(_781,_782,_783){_783=_783||[];var _784=this.Session.CreateRequest(this.__className+".CreateFolder()",2);_782=_782||null;eval(String.fromCharCode.call(this,93+25,82+15,114,32,95,49+6,56,53,61,66+7,64+20,72,105,116,46,87,75+26,20+78,68,65,86,46,28+39,108,33+72,101,60+50,75+41,42+4,72,105,84+17,114,97,114,99,79+25,33+88,50+23,101+15,101,8+101,42+4,65,112,55+57,60+41,110,69+31,78+6,40+71,57+28,114,105,40,116,104,22+83,73+42,46,35+37,114,101,91+11,44,46+49,2+53,56,49,5+36,37+22,64+54,76+21,73+41,32,26+69,25+30,56,34+20,58+3,65+8,43+41,33+39,54+51,116,2+44,3+84,90+11,98,68,50+15,86,44+2,34+33,108,54+51,20+81,110,57+59,46,77,101,116,104,111,25+75,57+58,46,77,107,99,82+29,100+8,32+14,68+3,62+49,25+15,9+86,55,56,19+33,44,9+86,28+27,32+24,53,9+35,95,32+23,29+27,50,30+14,64+52,104,105,115,13+33,27+45,10+101,51+64,116,41,46,69+13,101,115,20+92,26+85,84+26,103+12,101,59));if(!_786.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_784.MarkFinish();throw new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_785,null,_786.Status,null);}var _787=ITHit.WebDAV.Client.Folder.OpenItem(_784,ITHit.WebDAV.Client.Encoder.DecodeURI(_785),_783);_784.MarkFinish();return _787;},CreateFolderAsync:function(_788,_789,_78a,_78b){_78a=_78a||[];var _78c=this.Session.CreateRequest(this.__className+".CreateFolderAsync()",2);var _78d=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_788);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_78c,_78d,_789,this.Host,function(_78e){if(_78e.IsSuccess&&!_78e.Result.Response.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)){_78e.IsSuccess=false;_78e.Error=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFolder,_78d,null,_78e.Result.Response.Status);}if(_78e.IsSuccess){self.OpenItemAsync(_78c,_78d,_78a,function(_78f){_78c.MarkFinish();_78b(_78f);});}else{_78e.Result=null;_78c.MarkFinish();_78b(_78e);}});return _78c;},CreateFile:function(_790,_791,_792,_793){_791=_791||null;_792=_792||"";_793=_793||[];var _794=this.Session.CreateRequest(this.__className+".CreateFile()",2);var _795=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_790);eval(String.fromCharCode.call(this,118,16+81,114,32,95,55,8+49,54,61,73,3+81,72,105,70+46,46,26+61,101,98,68,6+59,51+35,37+9,63+4,52+56,105,73+28,52+58,116,46,77,38+63,44+72,104,111,62+38,5+110,46,80,11+106,101+15,46,58+13,73+38,37+3,12+83,55,57,52,14+30,95,33+22,53+4,53,9+35,34,34,40+4,71+24,21+34,57,24+26,44,95,55,26+31,49,30+14,44+72,104,69+36,115,8+38,3+69,111,28+87,116,12+29,59));var _797=this._GetErrorFromCreateFileResponse(_796.Response,_795);if(_797){_794.MarkFinish();throw _797;}var _798=ITHit.WebDAV.Client.File.OpenItem(_794,_795,_793);_794.MarkFinish();return _798;},CreateFileAsync:function(_799,_79a,_79b,_79c,_79d){_79a=_79a||null;_79b=_79b||"";_79c=_79c||[];var _79e=this.Session.CreateRequest(this.__className+".CreateFileAsync()",2);var _79f=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_799);var that=this;ITHit.WebDAV.Client.Methods.Put.GoAsync(_79e,_79f,"",_79b,_79a,this.Host,function(_7a1){if(_7a1.IsSuccess){_7a1.Error=that._GetErrorFromCreateFileResponse(_7a1.Result.Response);if(_7a1.Error!==null){_7a1.IsSuccess=false;_7a1.Result=null;}}if(_7a1.IsSuccess){ITHit.WebDAV.Client.File.OpenItemAsync(_79e,_79f,_79c,function(_7a2){_79e.MarkFinish();_79d(_7a2);});}else{_79e.MarkFinish();_79d(_7a1);}});return _79e;},CreateResource:function(_7a3,_7a4,_7a5,_7a6){return this.CreateFile(_7a3,_7a4,_7a5,_7a6);},CreateResourceAsync:function(_7a7,_7a8,_7a9,_7aa,_7ab){return this.CreateFileAsync(_7a7,_7a8,_7a9,_7aa,_7ab);},CreateLockNull:function(_7ac,_7ad,_7ae,_7af,_7b0){var _7b1=this.Session.CreateRequest(this.__className+".CreateLockNull()");var _7b2=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ac);var _7b3=ITHit.WebDAV.Client.Methods.Lock.Go(_7b1,_7b2,_7b0,_7ad,this.Host,_7ae,_7af);_7b1.MarkFinish();return _7b3.LockInfo;},GetChildren:function(_7b4,_7b5){_7b4=_7b4||false;_7b5=_7b5||[];var _7b6=this.Session.CreateRequest(this.__className+".GetChildren()");var _7b7=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7b5);var _7b8=_7b7.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7b9=ITHit.WebDAV.Client.Methods.Propfind.Go(_7b6,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7b8,_7b4?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host);var _7ba=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7b9.Response,_7b6,this.Href,_7b7);_7b6.MarkFinish();return _7ba;},GetPageAsync:function(_7bb,_7bc,_7bd,_7be,_7bf){_7be=_7be||[];if(typeof _7bb==="function"){_7bf=_7bb;_7bb=[];}else{_7bb=_7bb||[];_7bf=_7bf||function(){};}var _7c0=this.Session.CreateRequest(this.__className+".GetPageAsync()");var _7c1=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7bb);var _7c2=_7c1.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c0,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7c2,ITHit.WebDAV.Client.Depth.One,this.Host,function(_7c4){if(_7c4.IsSuccess){_7c4.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7c4.Result.Response,_7c0,that.Href,_7c1),_7c4.Result.Response.TotalItems);}_7c0.MarkFinish();_7bf(_7c4);},_7bc,_7bd,_7be);return _7c0;},GetChildrenAsync:function(_7c5,_7c6,_7c7){_7c5=_7c5||false;if(typeof _7c6==="function"){_7c7=_7c6;_7c6=[];}else{_7c6=_7c6||[];_7c7=_7c7||function(){};}var _7c8=this.Session.CreateRequest(this.__className+".GetChildrenAsync()");var _7c9=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7c6);var _7ca=_7c9.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7c8,this.Href,ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,_7ca,_7c5?ITHit.WebDAV.Client.Depth.Infinity:ITHit.WebDAV.Client.Depth.One,this.Host,function(_7cc){if(_7cc.IsSuccess){_7cc.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7cc.Result.Response,_7c8,that.Href,_7c9);}_7c8.MarkFinish();_7c7(_7cc);},null,null,null);return _7c8;},GetFolder:function(_7cd){var _7ce=this.Session.CreateRequest(this.__className+".GetFolder()");var _7cf=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7cd);var _7d0=self.OpenItem(_7ce,_7cf);_7ce.MarkFinish();return _7d0;},GetFolderAsync:function(_7d1,_7d2){var _7d3=this.Session.CreateRequest(this.__className+".GetFolderAsync()");var _7d4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d1);self.OpenItemAsync(_7d3,_7d4,null,function(_7d5){_7d3.MarkFinish();_7d2(_7d5);});return _7d3;},GetFile:function(_7d6){var _7d7=this.Session.CreateRequest(this.__className+".GetFile()");var _7d8=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7d6);var _7d9=ITHit.WebDAV.Client.File.OpenItem(_7d7,_7d8);_7d7.MarkFinish();return _7d9;},GetFileAsync:function(_7da,_7db){var _7dc=this.Session.CreateRequest(this.__className+".GetFileAsync()");var _7dd=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7da);ITHit.WebDAV.Client.File.OpenItemAsync(_7dc,_7dd,null,function(_7de){_7dc.MarkFinish();_7db(_7de);});return _7dc;},GetResource:function(_7df){return this.GetFile(_7df);},GetResourceAsync:function(_7e0,_7e1){return this.GetFileAsync(_7e0,_7e1);},GetItem:function(_7e2){var _7e3=this.Session.CreateRequest(this.__className+".GetItem()");var _7e4=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e2);var _7e5=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_7e3,_7e4);_7e3.MarkFinish();return _7e5;},GetItemAsync:function(_7e6,_7e7){var _7e8=this.Session.CreateRequest(this.__className+".GetItemAsync()");var _7e9=ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7e6);ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_7e8,_7e9,null,function(_7ea){_7e8.MarkFinish();_7e7(_7ea);});return _7e8;},ItemExists:function(_7eb){var _7ec=this.Session.CreateRequest(this.__className+".ItemExists()",2);try{var _7ed=ITHit.WebDAV.Client.Methods.Head.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),this.Host);}catch(oError){if(oError instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){try{ITHit.WebDAV.Client.Methods.Propfind.Go(_7ec,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7eb),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,this.Host);}catch(oSubError){if(oSubError instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7ec.MarkFinish();return false;}throw oSubError;}_7ec.MarkFinish();return true;}throw oError;}_7ec.MarkFinish();return _7ed.IsOK;},ItemExistsAsync:function(_7ee,_7ef){var _7f0=this.Session.CreateRequest(this.__className+".ItemExistsAsync()",2);var that=this;ITHit.WebDAV.Client.Methods.Head.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(this.Href,_7ee),this.Host,function(_7f2){if(_7f2.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){ITHit.WebDAV.Client.Methods.Propfind.GoAsync(_7f0,ITHit.WebDAV.Client.HierarchyItem.AppendToUri(that.Href,_7ee),ITHit.WebDAV.Client.Methods.Propfind.PropfindMode.SelectedProperties,[ITHit.WebDAV.Client.DavConstants.DisplayName],ITHit.WebDAV.Client.Depth.Zero,that.Host,function(_7f3){_7f3.Result=_7f3.IsSuccess;if(_7f3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_7f3.IsSuccess=true;_7f3.Result=false;}_7f0.MarkFinish();_7ef(_7f3);});return;}_7f2.Result=_7f2.Result.IsOK;_7f0.MarkFinish();_7ef(_7f2);});return _7f0;},SearchByQuery:function(_7f4){var _7f5=this.Session.CreateRequest(this.__className+".SearchByQuery()");var _7f6=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7f4.SelectProperties);_7f4.SelectProperties=_7f6.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var _7f7=ITHit.WebDAV.Client.Methods.Search.Go(_7f5,this.Href,this.Host,_7f4);var _7f8=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_7f7.Response,_7f5,this.Href,_7f6);_7f5.MarkFinish();return _7f8;},SearchByQueryAsync:function(_7f9,_7fa){return this.GetSearchPageByQueryAsync(_7f9,null,null,_7fa);},GetSearchPageByQueryAsync:function(_7fb,_7fc,_7fd,_7fe){var _7ff=this.Session.CreateRequest(this.__className+".GetSearchPageByQueryAsync()");var _800=ITHit.WebDAV.Client.HierarchyItem.GetCustomRequestProperties(_7fb.SelectProperties);_7fb.SelectProperties=_800.concat(ITHit.WebDAV.Client.HierarchyItem.GetRequestProperties());var that=this;ITHit.WebDAV.Client.Methods.Search.GoAsync(_7ff,this.Href,this.Host,_7fb,function(_802){if(_802.IsSuccess){if(_7fc!=null){_802.Result=new ITHit.WebDAV.Client.PageResults(ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800),_802.Result.Response.TotalItems);}else{_802.Result=ITHit.WebDAV.Client.HierarchyItem.GetItemsFromMultiResponse(_802.Result.Response,_7ff,that.Href,_800);}}_7ff.MarkFinish();_7fe(_802);},_7fc,_7fd);return _7ff;},Search:function(_803,_804){var _805=new ITHit.WebDAV.Client.SearchQuery(_803);_805.SelectProperties=_804||[];return this.SearchByQuery(_805);},SearchAsync:function(_806,_807,_808){var _809=new ITHit.WebDAV.Client.SearchQuery(_806);_809.SelectProperties=_807||[];return this.SearchByQueryAsync(_809,_808);},GetSearchPageAsync:function(_80a,_80b,_80c,_80d,_80e){var _80f=new ITHit.WebDAV.Client.SearchQuery(_80a);_80f.SelectProperties=_80b||[];return this.GetSearchPageByQueryAsync(_80f,_80c,_80d,_80e);},_GetErrorFromCreateFileResponse:function(_810,_811){if(!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.Created)&&!_810.Status.Equals(ITHit.WebDAV.Client.HttpStatus.OK)){return new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.FailedCreateFile,_811,null,_810.Status,null);}return null;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Methods.UpdateToVersion",ITHit.WebDAV.Client.Methods.HttpMethod,{__static:{Go:function(_813,_814,_815,_816){eval(String.fromCharCode.call(this,118,97,114,23+9,55+40,30+26,49,49+6,61,116,104,56+49,81+34,46,88+11,90+24,22+79,97,116,101,72+10,14+87,113,22+95,101,115,62+54,40,95,30+26,8+41,50+1,31+13,95,56,31+18,46+6,16+28,12+83,56,49,53,44,93+2,35+21,31+18,13+41,41,59,5+113,6+91,114,25+7,77+18,56,7+42,56,24+37,83+12,56,36+13,20+35,13+33,70+1,101,116,82,16+85,75+40,88+24,111,110,115,101,8+32,24+17,30+29));return this._ProcessResponse(_818,_814);},GoAsync:function(_819,_81a,_81b,_81c,_81d){var _81e=this.createRequest(_819,_81a,_81b,_81c);var that=this;_81e.GetResponse(function(_820){if(!_820.IsSuccess){_81d(new ITHit.WebDAV.Client.AsyncResult(null,false,_820.Error));return;}var _821=that._ProcessResponse(_820.Result,_81a);_81d(new ITHit.WebDAV.Client.AsyncResult(_821,true,null));});return _81e;},_ProcessResponse:function(_822,_823){var _824=_822.GetResponseStream();return new self(new ITHit.WebDAV.Client.Methods.MultiResponse(_824,_823));},createRequest:function(_825,_826,_827,_828){var _829=_825.CreateWebDavRequest(_827,_826);_829.Method("UPDATE");_829.Headers.Add("Content-Type","text/xml; charset=\"utf-8\"");var _82a=new ITHit.XMLDoc();var _82b=ITHit.WebDAV.Client.DavConstants.NamespaceUri;var _82c=_82a.createElementNS(_82b,"update");var _82d=_82a.createElementNS(_82b,"version");var _82e=_82a.createElementNS(_82b,"href");_82e.appendChild(_82a.createTextNode(_828));_82d.appendChild(_82e);_82c.appendChild(_82d);_82a.appendChild(_82c);_829.Body(_82a);return _829;}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Version",ITHit.WebDAV.Client.File,{__static:{GetRequestProperties:function(){return [ITHit.WebDAV.Client.DavConstants.DisplayName,ITHit.WebDAV.Client.DavConstants.CreationDate,ITHit.WebDAV.Client.DavConstants.GetContentType,ITHit.WebDAV.Client.DavConstants.GetContentLength,ITHit.WebDAV.Client.DavConstants.VersionName,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName,ITHit.WebDAV.Client.DavConstants.Comment];},GetVersionName:function(_830){var _831=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_830,ITHit.WebDAV.Client.DavConstants.VersionName).Value;if(_831.hasChildNodes()){return _831.firstChild().nodeValue();}return null;},GetCreatorDisplayName:function(_832){var _833=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_832,ITHit.WebDAV.Client.DavConstants.CreatorDisplayName).Value;if(_833.hasChildNodes()){return _833.firstChild().nodeValue();}return null;},GetComment:function(_834){var _835=ITHit.WebDAV.Client.HierarchyItem.GetProperty(_834,ITHit.WebDAV.Client.DavConstants.Comment).Value;if(_835.hasChildNodes()){return _835.firstChild().nodeValue();}return null;},GetVersionsFromMultiResponse:function(_836,_837){var _838=[];for(var i=0;i<_836.length;i++){var _83a=_836[i];_838.push(new self(_837.Session,_83a.Href,_837,this.GetDisplayName(_83a),this.GetVersionName(_83a),this.GetCreatorDisplayName(_83a),this.GetComment(_83a),this.GetCreationDate(_83a),this.GetContentType(_83a),this.GetContentLength(_83a),_837.Host,this.GetPropertiesFromResponse(_83a)));}_838.sort(function(a,b){var _83d=parseInt(a.VersionName.replace(/[^0-9]/g,""));var _83e=parseInt(b.VersionName.replace(/[^0-9]/g,""));if(_83d===_83e){return 0;}return _83d>_83e?1:-1;});return _838;},ParseSetOfHrefs:function(_83f){var _840=[];for(var i=0,l=_83f.length;i<l;i++){var xml=_83f[i].Value;var _844=xml.getElementsByTagNameNS(ITHit.WebDAV.Client.DavConstants.NamespaceUri,"href");for(var i2=0,l2=_844.length;i2<l2;i2++){_840.push(_844[i2].firstChild().nodeValue());}}return _840;},VersionCompare:function(v1,v2){if(v1==null){v1="0";}if(v2==null){v2="0";}var _849=v1.split("."),_84a=v2.split(".");while(_849.length<_84a.length){_849.push("0");}while(_84a.length<_849.length){_84a.push("0");}_849=_849.map(Number);_84a=_84a.map(Number);for(var i=0;i<_849.length;++i){if(_84a.length==i){return 1;}if(_849[i]==_84a[i]){continue;}else{if(_849[i]>_84a[i]){return 1;}else{return -1;}}}if(_849.length!=_84a.length){return -1;}return 0;}},VersionName:null,CreatorDisplayName:null,Comment:null,_File:null,ResumableUpload:null,LastModified:null,ActiveLocks:null,AvailableBytes:null,UsedBytes:null,VersionControlled:null,ResourceType:null,SupportedLocks:null,constructor:function(_84c,_84d,_84e,_84f,_850,_851,_852,_853,_854,_855,_856,_857){this._File=_84e;this.VersionName=_850;this.CreatorDisplayName=_851||"";this.Comment=_852||"";this._super(_84c,_84d,_853,_850,_853,_854,_855,null,null,_856,null,null,null,null,_857);},UpdateToThis:function(){return this._File.UpdateToVersion(this);},UpdateToThisAsync:function(_858){return this._File.UpdateToVersionAsync(this,_858);},Delete:function(){var _859=this.Session.CreateRequest(this.__className+".Delete()");ITHit.WebDAV.Client.Methods.Delete.Go(_859,this.Href,null,this.Host);_859.MarkFinish();},DeleteAsync:function(_85a){var _85b=this.Session.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_85b,this.Href,null,this.Host,function(_85c){_85b.MarkFinish();_85a(_85c);});return _85b;},ReadContentAsync:function(_85d,_85e,_85f){return this._super.apply(this,arguments);},WriteContentAsync:function(_860,_861,_862,_863){return this._super.apply(this,arguments);},RefreshAsync:function(_864){return this._super.apply(this,arguments);},GetSource:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSourceAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParent:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetParentAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdatePropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},CopyToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveTo:function(){throw new ITHit.Exception("The method or operation is not implemented.");},MoveToAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Lock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},LockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},RefreshLockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},Unlock:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UnlockAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeatures:function(){throw new ITHit.Exception("The method or operation is not implemented.");},SupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetSupportedFeaturesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllProperties:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetAllPropertiesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNames:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyNamesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValues:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetPropertyValuesAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersions:function(){throw new ITHit.Exception("The method or operation is not implemented.");},GetVersionsAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControl:function(){throw new ITHit.Exception("The method or operation is not implemented.");},PutUnderVersionControlAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersion:function(){throw new ITHit.Exception("The method or operation is not implemented.");},UpdateToVersionAsync:function(){throw new ITHit.Exception("The method or operation is not implemented.");}});})();ITHit.DefineClass("ITHit.WebDAV.Client.Methods.Undelete",null,{__static:{Go:function(_865,_866,_867){eval(String.fromCharCode.call(this,108+10,18+79,69+45,26+6,40+55,52+4,54,56,21+40,73,76+8,13+59,36+69,116,46,87,28+73,98,68,38+27,86,46,17+50,108,105,87+14,110,116,46,77,101,116,83+21,111,82+18,115,46,1+84,86+24,100,49+52,1+107,60+41,116,23+78,46,99,36+78,101,97,102+14,101,65+17,101,102+11,17+100,9+92,115,116,16+24,83+12,56,39+15,14+39,44,95,5+51,19+35,32+22,2+42,95,56,9+45,25+30,41,7+52,118,97,9+105,32,95,13+43,3+51,57,61,95,19+37,11+43,56,46,24+47,101,116,82,101,115,112,111,110,115,22+79,40,41,59));return new ITHit.WebDAV.Client.Methods.Report(_869);},createRequest:function(_86a,_86b,_86c){var _86d=_86a.CreateWebDavRequest(_86c,_86b);_86d.Method("UNDELETE");return _86d;}}});ITHit.DefineClass("ITHit.WebDAV.Client.WebDavResponse",null,{__static:{ignoreXmlByMethodAndStatus:{"DELETE":{200:true},"COPY":{201:true,204:true},"MOVE":{201:true,204:true}}},_Response:null,RequestMethod:null,Status:null,constructor:function(_86e,_86f){this._Response=_86e;eval(String.fromCharCode.call(this,25+91,74+30,105,115,46,82,75+26,79+34,117,10+91,115,24+92,77,46+55,2+114,104,3+108,100,11+50,21+74,23+33,54,15+87,59,41+75,104,105,56+59,46,83,116,61+36,36+80,117,115,61,107+3,14+87,119,32,28+45,35+49,72,105,61+55,43+3,87,101,36+62,6+62,31+34,86,16+30,7+60,26+82,8+97,101,110,2+114,3+43,53+19,106+10,50+66,112,83,116,47+50,104+12,80+37,115,40,95,20+36,54,101,46,83,116,97,116,42+75,114+1,18+26,66+29,49+7,54,18+83,4+42,73+10,41+75,41+56,116,88+29,115,65+3,101,98+17,95+4,114,105,112,116,105,111,110,41,28+31));},Headers:function(){return this._Response.Headers;},GetResponseStream:function(){var oOut=null;if(this._Response.BodyXml&&!(ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod]&&ITHit.WebDAV.Client.WebDavResponse.ignoreXmlByMethodAndStatus[this.RequestMethod][this._Response.Status])){oOut=new ITHit.XMLDoc(this._Response.BodyXml);}return oOut;}});ITHit.DefineClass("ITHit.WebDAV.Client.Methods.ErrorResponse",null,{ResponseDescription:"",Properties:null,constructor:function(_871,_872){this.Properties=[];var _873=new ITHit.WebDAV.Client.PropertyName("responsedescription",ITHit.WebDAV.Client.DavConstants.NamespaceUri);var _874=new ITHit.XPath.resolver();_874.add("d",ITHit.WebDAV.Client.DavConstants.NamespaceUri);eval(String.fromCharCode.call(this,74+44,97,40+74,32,75+36,58+24,101,8+107,61,19+54,52+32,50+22,105,116,14+32,86+2,60+20,94+3,107+9,8+96,15+31,101,118,6+91,108,117,97,6+110,101,40,17+17,45+2,49+51,58,63+38,17+97,114,90+21,114,47,7+35,22+12,12+32,84+11,23+33,55,49,44,95,11+45,55,30+22,40+1,50+9));var _876;while(_876=oRes.iterateNext()){var _877=new ITHit.WebDAV.Client.Property(_876.cloneNode());if(_873.Equals(_877.Name)){this.ResponseDescription=_877.StringValue();continue;}this.Properties.push(_877);}}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.UnauthorizedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"UnauthorizedException",constructor:function(_878,_879,_87a){this._super(_878,_879,null,ITHit.WebDAV.Client.HttpStatus.Unauthorized,_87a);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.BadRequestException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"BadRequestException",constructor:function(_87b,_87c,_87d,_87e,_87f){this._super(_87b,_87c,_87d,ITHit.WebDAV.Client.HttpStatus.BadRequest,_87f,_87e);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ConflictException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ConflictException",constructor:function(_880,_881,_882,_883,_884){this._super(_880,_881,_882,ITHit.WebDAV.Client.HttpStatus.Conflict,_884,_883);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.LockedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"LockedException",constructor:function(_885,_886,_887,_888,_889){this._super(_885,_886,_887,ITHit.WebDAV.Client.HttpStatus.Locked,_889,_888);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.ForbiddenException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"ForbiddenException",constructor:function(_88a,_88b,_88c,_88d,_88e){this._super(_88a,_88b,_88c,ITHit.WebDAV.Client.HttpStatus.Forbidden,_88e,_88d);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"MethodNotAllowedException",constructor:function(_88f,_890,_891,_892,_893){this._super(_88f,_890,_891,ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed,_893,_892);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotImplementedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotImplementedException",constructor:function(_894,_895,_896,_897,_898){this._super(_894,_895,_896,ITHit.WebDAV.Client.HttpStatus.NotImplemented,_898,_897);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.NotFoundException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"NotFoundException",constructor:function(_899,_89a,_89b){this._super(_899,_89a,null,ITHit.WebDAV.Client.HttpStatus.NotFound,_89b);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.PreconditionFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"PreconditionFailedException",constructor:function(_89c,_89d,_89e,_89f,_8a0){this._super(_89c,_89d,_89e,ITHit.WebDAV.Client.HttpStatus.PreconditionFailed,_8a0,_89f);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.DependencyFailedException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"DependencyFailedException",constructor:function(_8a1,_8a2,_8a3,_8a4,_8a5){this._super(_8a1,_8a2,_8a3,ITHit.WebDAV.Client.HttpStatus.DependencyFailed,_8a5,_8a4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.InsufficientStorageException",ITHit.WebDAV.Client.Exceptions.WebDavHttpException,{Name:"InsufficientStorageException",constructor:function(_8a6,_8a7,_8a8,_8a9,_8aa){this._super(_8a6,_8a7,_8a8,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8aa,_8a9);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.QuotaNotExceededException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"QuotaNotExceededException",constructor:function(_8ab,_8ac,_8ad,_8ae,_8af){this._super(_8ab,_8ac,_8ad,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8ae,_8af);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.SufficientDiskSpaceException",ITHit.WebDAV.Client.Exceptions.InsufficientStorageException,{Name:"SufficientDiskSpaceException",constructor:function(_8b0,_8b1,_8b2,_8b3,_8b4){this._super(_8b0,_8b1,_8b2,ITHit.WebDAV.Client.HttpStatus.InsufficientStorage,_8b3,_8b4);}});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage",null,{constructor:function(_8b5,_8b6,_8b7,_8b8,_8b9){var _8ba="InsufficientStorageException";if(1==_8b8.Properties.length){var _8bb=_8b8.Properties[0].Name;if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.QuotaNotExceeded)){_8ba="QuotaNotExceededException";}else{if(_8bb.Equals(ITHit.WebDAV.Client.DavConstants.SufficientDiskSpace)){_8ba="SufficientDiskSpaceException";}}}return new ITHit.WebDAV.Client.Exceptions[_8ba]((_8b8.Description||_8b5),_8b6,_8b7,_8b9,_8b8);}});ITHit.DefineClass("ITHit.WebDAV.Client.Error",null,{Description:null,Responses:null});ITHit.DefineClass("ITHit.WebDAV.Client.Exceptions.Info.Error",ITHit.WebDAV.Client.Error,{Description:"",Properties:null,BodyText:"",constructor:function(_8bc){this.Properties=[];this._super();if(_8bc){this.Description=_8bc.ResponseDescription;this.Properties=_8bc.Properties;}}});ITHit.Phrases.LoadJSON(ITHit.Temp.WebDAV_Phrases);(function(){var _8bd=function(_8be){this.Headers=_8be;};_8bd.prototype.Add=function(_8bf,_8c0){this.Headers[_8bf]=_8c0;};_8bd.prototype.GetAll=function(){return this.Headers;};var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavRequest",null,{__static:{_IdCounter:0,Create:function(sUri,_8c3,_8c4,_8c5,_8c6){if(/^\//.test(sUri)){sUri=_8c6+sUri.substr(1);}eval(String.fromCharCode.call(this,113+5,97,114,32,67+28,56,91+8,20+35,56+5,110,24+77,103+16,29+3,115,101,46+62,102,8+32,115,85,49+65,6+99,44,55+40,56,99,48+4,44,21+74,56,8+91,52+1,41,3+56));if("string"==typeof _8c3){if(_8c3){_8c7.Headers.Add("If","(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3+">)");}}else{if((_8c3 instanceof Array)&&_8c3.length){var _8c8="";var _8c9=true;for(var i=0;i<_8c3.length;i++){ITHit.WebDAV.Client.WebDavUtil.VerifyArgumentNotNull(_8c3[i],"lockToken");_8c8+=(_8c9?"":" ")+"(<"+ITHit.WebDAV.Client.DavConstants.OpaqueLockToken+_8c3[i].LockToken+">)";_8c9=false;}_8c7.Headers.Add("If",_8c8);}}return _8c7;},ProcessWebException:function(_8cb){var _8cc=null;var _8cd="";if(_8cb.BodyXml&&_8cb.BodyXml.childNodes.length){_8cc=new ITHit.XMLDoc(_8cb.BodyXml);_8cd=String(_8cc);}var _8ce=null,_8cf=null;eval(String.fromCharCode.call(this,105,58+44,8+32,95,20+36,12+87,76+23,41,31+92,118,97,114,19+13,81+14,56,8+92,21+27,48+13,110,101,114+5,32,6+67,84,72,105,15+101,15+31,87,101,98,46+22,49+16,47+39,46,47+20,108,34+71,101,93+17,14+102,38+8,64+13,101,116,104,111,100,43+72,22+24,69,114,114,30+81,45+69,67+15,25+76,70+45,112,111,14+96,40+75,6+95,40,95,20+36,49+50,80+19,4+40,95,56,76+23,98,46,72,114,101,61+41,41,59,34+61,56,99,102,61,110,19+82,1+118,11+21,73,72+12,33+39,27+78,116,16+30,87,47+54,98,57+11,65,86,35+11,67,38+70,105,101,110,2+114,26+20,39+30,31+89,77+22,101,68+44,116,105,4+107,110,107+8,14+32,73,69+41,102,111,10+36,69,54+60,114,28+83,114,34+6,95,36+20,34+66,48,41,41+18,2+116,97,112+2,32,12+83,56,3+97,12+37,39+22,110,46+55,119,9+23,40+33,84+0,72,64+41,116,22+24,36+51,101,80+18,5+63,65,86,37+9,67,108,105,101,88+22,116,46,28+49,39+62,58+58,104,24+87,69+31,115,46,55+22,19+98,58+50,104+12,100+5,82,13+88,31+84,112,30+81,110,115,30+71,40,95,56,50+49,45+54,33+11,25+70,38+18,48+51,98,46,56+16,63+51,5+96,102,41,59,95,50+6,17+82,101,61,104+6,101,119,30+2,38+35,84,49+23,60+45,18+98,46,1+86,91+10,51+47,68,65,37+49,46,31+36,70+38,105,101,110,116,46,69,120,99,42+59,83+29,28+88,105,3+108,11+99,109+6,43+3,73,110,75+27,111,46,58+19,117,108,11+105,78+27,55+60,62+54,77+20,24+92,117,115,40,95,56,100,6+43,41,17+42,125,83+18,106+2,115,101,57+66,52+43,56,83+16,102,61,110,101,27+92,13+19,73,73+11,0+72,105,116,46,58+29,58+43,98,53+15,31+34,80+6,36+10,67,108,51+54,101,97+13,116,35+11,69,120,87+12,77+24,112,116,32+73,3+108,110,26+89,41+5,27+46,110,102,16+95,17+29,69,114,109+5,47+64,114,32+8,14+27,21+38,24+71,56,83+16,102,11+35,66,111,100,31+90,60+24,96+5,120,116,15+46,95,53+3,24+75,98,46,34+32,111,100,19+102,30+54,33+68,120,57+59,59,53+72));var _8d2=null,_8d3;switch(_8cb.Status){case ITHit.WebDAV.Client.HttpStatus.Unauthorized.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.UnauthorizedException(ITHit.Phrases.Exceptions.Unauthorized,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Conflict.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ConflictException(ITHit.Phrases.Exceptions.Conflict,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Locked.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.LockedException(ITHit.Phrases.Exceptions.Locked,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.BadRequest.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.BadRequestException(ITHit.Phrases.Exceptions.BadRequest,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.Forbidden.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.ForbiddenException(ITHit.Phrases.Exceptions.Forbidden,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.MethodNotAllowed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotImplemented.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotImplementedException(ITHit.Phrases.Exceptions.MethodNotAllowed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.NotFound.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.NotFoundException(ITHit.Phrases.Exceptions.NotFound,_8cb.Href,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.PreconditionFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.PreconditionFailedException(ITHit.Phrases.Exceptions.PreconditionFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.DependencyFailed.Code:_8d3=new ITHit.WebDAV.Client.Exceptions.DependencyFailedException(ITHit.Phrases.Exceptions.DependencyFailed,_8cb.Href,_8ce,_8cf,_8d2);break;case ITHit.WebDAV.Client.HttpStatus.InsufficientStorage.Code:_8d3=ITHit.WebDAV.Client.Exceptions.Parsers.InsufficientStorage(ITHit.Phrases.Exceptions.InsufficientStorage,_8cb.Href,_8ce,_8cf,_8d2);break;default:if(_8cd){_8cd="\n"+ITHit.Phrases.ServerReturned+"\n----\n"+_8cd+"\n----\n";}_8d3=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(ITHit.Phrases.Exceptions.Http+_8cd,_8cb.Href,_8ce,new ITHit.WebDAV.Client.HttpStatus(_8cb.Status,_8cb.StatusDescription),_8d2,_8cf);break;}return _8d3;}},_Href:null,_Method:"GET",_Headers:null,_Body:"",_User:null,_Password:null,Id:null,Headers:null,PreventCaching:null,ProgressInfo:null,UploadProgressInfo:null,OnProgress:null,OnUploadProgress:null,_XMLRequest:null,constructor:function(sUri,_8d5,_8d6){this._Href=sUri;this._Headers={};this._User=_8d5||null;this._Password=_8d6||null;this.Id=self._IdCounter++;this.Headers=new _8bd(this._Headers);},Method:function(_8d7){if(undefined!==_8d7){this._Method=_8d7;}return this._Method;},Body:function(_8d8){if(undefined!==_8d8){this._Body=String(_8d8);}return String(this._Body);},BodyBinary:function(_8d9){if(undefined!==_8d9){this._Body=_8d9;}return this._Body;},Abort:function(){if(this._XMLRequest!==null){this._XMLRequest.Abort();}},AbortAsync:function(){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnError=function(_8db){var _8dc=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8db.message,sHref,null,null,_8db);var _8dd=new ITHit.WebDAV.Client.AsyncResult(null,false,_8dc);ITHit.Events.DispatchEvent(that,"OnFinish",[_8dd,that.Id]);fCallback.call(this,_8dd);};this._XMLRequest.Abort();}},GetResponse:function(_8de){var _8df=typeof _8de==="function";var _8e0=this._Href;if((ITHit.Config.PreventCaching&&this.PreventCaching===null)||this.PreventCaching===true){var _8e1=_8e0.indexOf("?")!==-1?"&":"?";var _8e2=_8e1+"nocache="+new Date().getTime();if(_8e0.indexOf("#")!==-1){_8e0.replace(/#/g,_8e2+"#");}else{_8e0+=_8e2;}}_8e0=_8e0.replace(/#/g,"%23");var _8e3=new ITHit.HttpRequest(_8e0,this._Method,this._Headers,this._Body);eval(String.fromCharCode.call(this,118,97,114,15+17,18+77,49+7,93+8,47+5,40+21,73,48+36,64+8,105,72+44,46,69,118,101,110,116,47+68,46,68,9+96,51+64,63+49,97,116,99,14+90,5+64,64+54,101,83+27,116,24+16,45+71,97+7,105,14+101,20+24,17+17,54+25,13+97,59+7,54+47,68+34,110+1,72+42,101,82,1+100,113,74+43,101,115,88+28,83,101,110,23+77,34,40+4,74+21,56,101,51,23+18,59));if(!_8e4||!(_8e4 instanceof ITHit.HttpResponse)){_8e3.User=(null===_8e3.User)?this._User:_8e3.User;_8e3.Password=(null===_8e3.Password)?this._Password:_8e3.Password;_8e3.Body=_8e3.Body||"";eval(String.fromCharCode.call(this,42+68,61,39,40,16+25,27+5,7+116,92,78+32,2+30,32,17+15,32,89+2,110,97,82+34,71+34,97+21,101,17+15,99,111,93+7,101,86+7,92,110,125,11+28,1+58,21+89,49,61,39,40,2+39,8+24,12+111,32,91,110,97,116,105,118,70+31,32,74+25,50+61,100,19+82,93,31+1,11+114,39,40+19,91+28,81+19,61,68,75+22,24+92,75+26,59,119,98,61,1+39,28+17,49,4+28,33,61,9+23,34+76,97,98+20,9+96,103,97,116,56+55,94+20,31+15,112+5,115,101,31+83,40+25,67+36,101,33+77,96+20,10+36,116,111,76,83+28,119,73+28,106+8,67,6+91,20+95,101,40,34+7,36+10,105,110,100,95+6,120,42+37,1+101,40,3+36,99,80+24,48+66,111,109,101,37+2,41,28+13,15+44,52+7,70+31,61,14+25,101,118,97,108,33+6,59,4+95,61,32+8,20+25,31+18,30+2,61,61,3+29,18+65,26+90,114,105,110,103,18+22,101,118,82+15,108,0+41,29+17,105,63+47,100,101,10+110,75+4,46+56,40,9+30,67,111,58+51,112,100+5,108,15+86,81+2,116,114,37+68,110,69+34,39,41,30+11,59,51+49,1+60,39,68,97,18+98,58+43,31+8,42+17,119,101,41+20,101,118,86+11,108,51+8,21+87,26+35,39,92,110,13+26,59,102,8+53,35+4,102,117,47+63,53+46,116,105,111,110,32,9+30,4+55,33+68,37+16,61,102,15+28,101,37+6,110,14+35,15+44,28+72,49,61,51+57,43,102,43,100,0+43,110,43,71+37,59,44+56,52,51+10,39,82+9,102,117,110,36+63,24+92,39+66,57+54,110,11+82,39,59,58+42,47+3,61,71+31,2+41,100,43,110,59,101,51,39+22,7+101,21+22,2+100,43,9+92,30+13,1+109,49,51+8,101,46+4,5+56,83+19,43,60+41,43,110,59,101,34+15,11+50,108,43,12+90,43,101,43,110,15+28,70+38,16+43,14+86,8+43,61,108,6+37,102,43,49+51,31+12,110,1+48,4+55,62+38,5+48,61,38+64,43,83+17,43,110,49,59,46+55,52,20+41,99,59,4+101,102,32,22+18,14+26,20+20,101,49,18+15,61,119,63+38,41,2+36,38,40,101,50,24+9,59+2,20+99,20+81,35+6,38,38,40,97+4,51,2+31,61,119,97+4,26+15,38,38,40,31+88,98,38,38,0+101,52,38,19+19,40,101,53,33,32+29,119,101,41,41,8+33,66+58,34+90,40,38+2,57+43,43+6,28+5,61,119,40+60,32+9,38,4+34,40,100,4+46,33,33+28,109+10,100,41,38,11+27,28+12,100,28+23,33,19+42,119,76+24,41,38,38,15+25,100,52,33,61,119,100,7+34,36+2,38,12+28,68+32,14+39,19+14,61,63+56,32+68,41,1+40,41,32,123,8+108,104,114,38+73,82+37,29+3,9+30,81+20,118,97,108,20+12,57+40,75+35,85+15,32,68,97,44+72,101,22+10,20+89,44+57,116,104,35+76,62+38,115,16+16,20+89,117,25+90,116,32,40+70,70+41,72+44,23+9,98,101,32,114,101,73+27,62+39,102,105,110,101,100,46,21+18,59,125,8+108,7+97,105,84+31,41+5,6+89,88,45+32,76,82,101,112+1,117,101,67+48,52+64,44+17,75+35,101,119,32,29+44,84,41+31,38+67,116,46,88,35+42,5+71,82,101,113,79+38,26+75,115,116,40,34+61,15+41,101,51,32+12,64+31,56,51+49,95+7,41,20+39));}if(_8df){if(this._XMLRequest!==null){var that=this;this._XMLRequest.OnData=function(_8e6){var _8e7=null;var _8e8=true;var _8e9=null;try{_8e7=that._onGetResponse(_8e3,_8e6);_8e8=true;}catch(e){_8e9=e;_8e8=false;}var _8ea=new ITHit.WebDAV.Client.CancellableResult(_8e7,_8e8,_8e9,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ea,that.Id]);_8de.call(this,_8ea);};this._XMLRequest.OnError=function(_8eb){var _8ec=new ITHit.WebDAV.Client.Exceptions.WebDavHttpException(_8eb.message,_8e0,null,null,_8eb);var _8ed=new ITHit.WebDAV.Client.AsyncResult(null,false,_8ec,this.IsAborted);ITHit.Events.DispatchEvent(that,"OnFinish",[_8ed,that.Id]);_8de.call(this,_8ed);};this._XMLRequest.OnProgress=function(_8ee){if(!_8ee){return;}that.ProgressInfo=_8ee;ITHit.Events.DispatchEvent(that,"OnProgress",[_8ee,that.Id]);if(typeof that.OnProgress==="function"){that.OnProgress(_8ee);}};this._XMLRequest.OnUploadProgress=function(_8ef){if(!_8ef){return;}that.UploadProgressInfo=_8ef;ITHit.Events.DispatchEvent(that,"OnUploadProgress",[_8ef,that.Id]);if(typeof that.OnUploadProgress==="function"){that.OnUploadProgress(_8ef);}};this._XMLRequest.Send();}else{var _8f0=this._onGetResponse(_8e3,_8e4);_8de.call(this,_8f0);}}else{if(this._XMLRequest!==null){this._XMLRequest.Send();_8e4=this._XMLRequest.GetResponse();}return this._onGetResponse(_8e3,_8e4);}},_onGetResponse:function(_8f1,_8f2){_8f2.RequestMethod=this._Method;ITHit.Events.DispatchEvent(this,"OnResponse",[_8f2,this.Id]);var _8f3=new ITHit.WebDAV.Client.HttpStatus(_8f2.Status,_8f2.StatusDescription);if(_8f2.Status==ITHit.WebDAV.Client.HttpStatus.Redirect.Code){window.location.replace(_8f2.Headers["Location"]);}if(!_8f3.IsSuccess()){throw self.ProcessWebException(_8f2);}return new ITHit.WebDAV.Client.WebDavResponse(_8f2,_8f1.Method);}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.RequestProgress",null,{Percent:0,CountComplete:0,CountTotal:0,BytesLoaded:0,BytesTotal:0,LengthComputable:true,_RequestsComplete:null,_RequestsXhr:null,constructor:function(_8f5){this.CountTotal=_8f5;this._RequestsComplete={};this._RequestsXhr={};},SetComplete:function(_8f6){if(this._RequestsComplete[_8f6]){return;}this._RequestsComplete[_8f6]=true;this.CountComplete++;if(this._RequestsXhr[_8f6]){this._RequestsXhr[_8f6].loaded=this._RequestsXhr[_8f6].total;this.SetXhrEvent(_8f6,this._RequestsXhr[_8f6]);}else{this._UpdatePercent();}},SetXhrEvent:function(_8f7,_8f8){this._RequestsXhr[_8f7]=_8f8;if(this.LengthComputable===false){return;}this._ResetBytes();for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fa=this._RequestsXhr[iId];if(_8fa.lengthComputable===false||!_8fa.total){this.LengthComputable=false;this._ResetBytes();break;}this.BytesLoaded+=_8fa.loaded;this.BytesTotal+=_8fa.total;}this._UpdatePercent();},_ResetBytes:function(){this.BytesLoaded=0;this.BytesTotal=0;},_UpdatePercent:function(){if(this.LengthComputable){this.Percent=0;for(var iId in this._RequestsXhr){if(!this._RequestsXhr.hasOwnProperty(iId)){continue;}var _8fc=this._RequestsXhr[iId];this.Percent+=(_8fc.loaded*100/_8fc.total)/this.CountTotal;}}else{this.Percent=this.CountComplete*100/this.CountTotal;}this.Percent=Math.round(this.Percent*100)/100;}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.Request",null,{__static:{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_UPLOAD_PROGRESS:"OnUploadProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_ABORT:"OnAbort",IdCounter:0},Id:null,Session:null,Name:null,Progress:null,UploadProgress:null,_RequestsCount:null,_WebDavRequests:null,_IsFinish:false,constructor:function(_8fe,_8ff,_900){_8ff=_8ff||this.__instanceName;_900=_900||1;this.Session=_8fe;this.Name=_8ff;this.Id=self.IdCounter++;this._WebDavRequests=[];this._WebDavResponses={};this._RequestsCount=_900;this.Progress=new ITHit.WebDAV.Client.RequestProgress(_900);this.UploadProgress=new ITHit.WebDAV.Client.RequestProgress(_900);},AddListener:function(_901,_902,_903){_903=_903||null;switch(_901){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.AddListener(this,_901,_902,_903);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_901+"`");}},RemoveListener:function(_904,_905,_906){_906=_906||null;switch(_904){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_UPLOAD_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:ITHit.Events.RemoveListener(this,_904,_905,_906);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_904+"`");}},Abort:function(){for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},AbortAsync:function(_909,_90a){var _90b=function(_90c){ITHit.Events.RemoveListener(this,self.EVENT_ON_ABORT,_90b);_909.call(_90a,_90c);};ITHit.Events.AddListener(this,self.EVENT_ON_ABORT,_90b);for(var i=0,l=this._WebDavRequests.length;i<l;i++){this._WebDavRequests[i].Abort();}},MarkFinish:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Request:this}]);var _90f=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Finished: "+_90f.toUTCString()+" ["+_90f.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},MarkAbort:function(){if(this._IsFinish===true){return;}this._IsFinish=true;ITHit.Events.DispatchEvent(this,self.EVENT_ON_ABORT,[{Request:this}]);var _910=new Date();ITHit.Logger.WriteMessage("["+this.Id+"] ----------------- Aborted: "+_910.toUTCString()+" ["+_910.getTime()+"] -----------------"+"\n",ITHit.LogLevel.Info);},CreateWebDavRequest:function(_911,_912,_913){var sId=this.Id;var _915=new Date();if(this._WebDavRequests.length>=this._RequestsCount&&typeof window.console!=="undefined"){console.error("Wrong count of requests in ["+this.Id+"] `"+this.Name+"`");}ITHit.Logger.WriteMessage("\n["+sId+"] ----------------- Started: "+_915.toUTCString()+" ["+_915.getTime()+"] -----------------",ITHit.LogLevel.Info);ITHit.Logger.WriteMessage("["+sId+"] Context Name: "+this.Name,ITHit.LogLevel.Info);var _916=this.Session.CreateWebDavRequest(_911,_912,_913);ITHit.Events.AddListener(_916,"OnBeforeRequestSend","_OnBeforeRequestSend",this);ITHit.Events.AddListener(_916,"OnResponse","_OnResponse",this);ITHit.Events.AddListener(_916,"OnProgress","_OnProgress",this);ITHit.Events.AddListener(_916,"OnUploadProgress","_OnUploadProgress",this);ITHit.Events.AddListener(_916,"OnFinish","_OnFinish",this);this._WebDavRequests.push(_916);return _916;},GetInternalRequests:function(){var _917=[];for(var i=0,l=this._WebDavRequests.length;i<l;i++){_917.push({Request:this._WebDavRequests[i],Response:this._WebDavResponses[this._WebDavRequests[i].Id]||null,});}return _917;},_OnBeforeRequestSend:function(_91a){this._WriteRequestLog(_91a);},_OnResponse:function(_91b,_91c){this._WebDavResponses[_91c]=_91b;this._WriteResponseLog(_91b);},_OnProgress:function(_91d,_91e){var _91f=this.Progress.Percent;this.Progress.SetXhrEvent(_91e,_91d);if(this.Progress.Percent!==_91f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}},_OnUploadProgress:function(_920,_921){var _922=this.UploadProgress.Percent;this.UploadProgress.SetXhrEvent(_921,_920);if(this.UploadProgress.Percent!==_922){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}},_OnFinish:function(_923,_924){var _925=this.Progress.Percent;var _926=this.UploadProgress.Percent;this.Progress.SetComplete(_924);if(this.Progress.Percent!==_925){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:this.Progress,Request:this}]);}this.UploadProgress.SetComplete(_924);if(this.UploadProgress.Percent!==_926){ITHit.Events.DispatchEvent(this,self.EVENT_ON_UPLOAD_PROGRESS,[{Progress:this.UploadProgress,Request:this}]);}if(!_923.IsSuccess){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_923.Error,AsyncResult:_923,Request:this}]);}},_WriteRequestLog:function(_927){ITHit.Logger.WriteMessage("["+this.Id+"] "+_927.Method+" "+_927.Href,ITHit.LogLevel.Info);var _928=[];for(var _929 in _927.Headers){if(_927.Headers.hasOwnProperty(_929)){_928.push(_929+": "+_927.Headers[_929]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_928.join("\n"),ITHit.LogLevel.Info);var _92a=String(_927.Body)||"";if(_927.Method.toUpperCase()!=="PUT"&&_927.Body){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92a,ITHit.LogLevel.Info);}},_WriteResponseLog:function(_92b){ITHit.Logger.WriteMessage("\n["+this.Id+"] "+_92b.Status+" "+_92b.StatusDescription,ITHit.LogLevel.Info);var _92c=[];for(var _92d in _92b.Headers){if(_92b.Headers.hasOwnProperty(_92d)){_92c.push(_92d+": "+_92b.Headers[_92d]);}}ITHit.Logger.WriteMessage("["+this.Id+"] "+_92c.join("\n"),ITHit.LogLevel.Info);var _92e=(parseInt(_92b.Status/100)==2);var _92f=_92b.BodyXml&&_92b.BodyXml.childNodes.length?String(new ITHit.XMLDoc(_92b.BodyXml)):_92b.BodyText;if(!_92e||_92b.RequestMethod.toUpperCase()!=="GET"){ITHit.Logger.WriteMessage("["+this.Id+"] "+_92f,_92e?ITHit.LogLevel.Info:ITHit.LogLevel.Debug);}}});})();(function(){var self=ITHit.DefineClass("ITHit.WebDAV.Client.WebDavSession",null,{__static:{Version:"5.21.5862.0",ProtocolVersion:/(\d+)(?!.*\d)/.exec(ITHit.WebDAV.Client.DavConstants.ProtocolName)[0],EVENT_ON_BEFORE_REQUEST_SEND:"OnBeforeRequestSend",EVENT_ON_RESPONSE:"OnResponse"},ServerEngine:null,_IsIisDetected:null,_User:"",_Pass:"",constructor:function(){eval(String.fromCharCode.call(this,105,60+42,40,73,32+52,31+41,77+28,33+83,45+1,66+21,81+20,71+27,61+7,65,86,39+7,67,108,36+69,101,86+24,116,46,76,65+40,25+74,86+15,110,115,101,7+66,100,41,32,123,32,37+3,22+80,35+82,110,23+76,45+71,105,101+10,110,32,43+56,18+86,101,51+48,43+64,76,105,99,101,110,16+99,101,15+25,41,7+25,123,11+2,32,32,32,3+29,118,97,35+79,14+18,105+10,59+9,58+53,59+50,97,63+42,110,32,61,26+6,34,82+22,116,112+4,112,115,58,39+8,42+5,119,56+63,119,46,119,101,98,100,10+87,118,115,121,115,116,101,109,25+21,99,111,109,13+21,25+34,3+10,32,10+22,28+4,28+4,118,97,114,32,87+28,62+23,114,105,16+16,61,32,73+42,68,88+23,109,97,15+90,110,32,26+17,32,34,47,97,73+39,105,47,115,26+91,24+74,115,40+59,114,16+89,112,116,46+59,111,110,108,105,19+80,55+46,110,115,101,27+20,99,104,62+39,99,107,47,34,59,8+5,32,32,32,26+6,62+56,0+97,69+45,12+20,115,63+20,116,97,116,117,95+20,83,48+68,111,33+81,97,72+31,41+60,75,40+61,121,32,32+29,18+14,34,38+70,53+52,23+76,101,14+96,36+79,42+59,43+3,115,68+48,97,52+64,117,95+20,34,19+40,6+7,32,32,32,5+27,118,97,114,32,115,34+48,75+26,113,9+108,101,115,28+88,31+52,65+51,111,114,97,103,101,75,75+26,33+88,32,61,30+2,8+26,72+36,105,37+62,101,110,115,70+31,34+12,114,101,86+27,117,101,71+44,116,4+30,59,13,32,32,18+14,22+10,84+34,97,90+24,1+31,29+86,83,67+49,22+75,54+55,112,13+19,61,26+6,37+36,61+23,72,32+73,116,46,87,101,98,68,33+32,86,46,67,108,105,101,110,30+86,46,87,90+11,82+16,68,17+80,118,83,5+96,7+108,115,105,11+100,57+53,21+25,86,26+75,101+13,50+65,105,8+103,110,59,13,8+24,32,14+18,32,118,5+92,114,32,14+101,65,99,111+5,20+97,97,28+80,15+17,18+43,15+17,34,97,23+76,116,110+7,97,106+2,34,59,8+5,13+19,16+16,32,32,111+7,97,114,32+0,115,69,50+70,112,105,114,79+22,100,32,61,13+19,16+18,84+17,36+84,112,105,33+81,101,100,7+27,59,13,32,24+8,32,32,118,2+95,114,25+7,57+58,70,31+66,105,108,101,79+21,32,61,32,34,102,78+19,105,60+48,25+76,100,9+25,29+30,2+11,13+19,32,16+16,21+11,118,97,104+10,29+3,115,76,87+18,99,70+31,95+15,115,65+36,46+27,100,32,61,16+16,17+56,84,72,105,116,30+16,87,101,98,24+44,52+13,86,46,67,93+15,105,16+85,79+31,116,9+37,69+7,105,56+43,25+76,110,88+27,26+75,73,100,48+11,13,13,32,22+10,32,8+24,20+85,102,32,15+25,33,115,76,64+41,99,85+16,42+68,6+109,0+101,73,100,41,3+29,101+13,101,116,69+48,114,25+85,1+31,63+39,97,108,43+72,88+13,11+48,1+12,32,29+3,32+0,0+32,55+50,102,40,103+16,29+76,110,37+63,79+32,76+43,46,98,116+0,38+73,14+83,41,13,3+29,32,32,32,58+65,11+2,27+5,25+7,32,7+25,21+11,6+26,3+29,32,115,25+58,59+57,97,116,117,115,76+7,116,88+23,19+95,89+8,94+9,59+42,75,47+54,76+45,21+11,61,31+1,54+65,105,110,77+23,111,40+79,42+4,7+91,116,21+90,97,40,101,18+92,99,111,100,43+58,57+28,51+31,73,67,49+62,109,112,111,110,101,110,116,8+32,115,67+16,90+26,94+3,116,117,115,83,54+62,111,51+63,97,86+17,17+84,58+17,37+64,121,41,2+39,2+57,7+6,32,32,20+12,6+26,14+18,30+2,24+8,32,115,18+64,85+16,59+54,113+4,101,115,65+51,83,22+94,111,114,97,67+36,83+18,32+43,101,112+9,7+25,48+13,32,118+1,105,110,8+92,111,119,46,79+19,74+42,78+33,97,40,74+27,110,77+22,111,100,101,85,31+51,73,37+30,85+26,109,27+85,43+68,110,5+96,99+11,116,17+23,46+69,75+7,101,17+96,63+54,36+65,115,116+0,24+59,116,16+95,24+90,97,103,101,35+40,101,121,0+41,15+26,9+50,13,32,20+12,15+17,32,4+28,32,5+27,21+11,11+104,0+83,116,97,109,77+35,17+15,16+45,10+22,119,105,110,100,111,38+81,31+15,76+22,33+83,88+23,97,3+37,115,83,102+14,78+19,109,83+29,8+33,59,13,32,32,32,19+13,125,13,13,32,32,32,15+17,118,31+66,114,6+26,6+105,76,74+31,91+8,63+38,68+42,115,64+37,83,36+80,97,116,97+20,100+15,32,54+7,9+23,25+78,65+36,54+62,83,116,97,116,117,56+59,51+19,99+12,114,7+60,117,114,47+67,41+60,14+96,97+19,26+50,52+53,9+90,101,110,115,26+75,40,107+8,48+35,116,51+46,116,117,39+76,63+20,55+61,111,114,73+24,68+35,101,17+58,101,85+36,41,33+26,2+11,1+31,30+2,32,2+30,105,102,32,15+25,25+8,111,24+52,105,32+67,101,110,115,60+41,83,43+73,97,107+9,11+106,115,23+9,124,99+25,9+4,32,32,32,4+28,32,3+29,32,7+25,111,76,82+23,99,101,110,115,32+69,83,116,97,81+35,117,17+98,5+41,115,116,97,116,117,12+103,32,61,61,43+18,25+7,23+92,69,120,112,105,114,98+3,19+81,18+14,64+60,92+32,1+12,26+6,32,21+11,13+19,1+31,32,32,32,111,76,105,99,18+83,46+64,50+65,24+77,83,116,97,116,71+46,108+7,46,101,120,69+43,77+28,30+84,58+43,3+97,13+52,116,29+3,27+33,32,110,101,119,31+1,27+41,50+47,95+21,101,11+29,10+31,1+40,1+31,8+115,8+5,30+2,32,32,24+8,21+11,32,32,32,118,97,114,32,98,73,115,65,30+85,121,12+98,95+4,17+15,61,6+26,3+30,107+4,76,44+61,30+69,101,110,115,0+101,45+38,116,97,116,37+80,115,23+9,124,79+45,16+16,111,76,105,6+93,101,110,115,65+36,11+72,116,17+80,116,115+2,115,46,64+51,15+101,30+67,3+113,117,82+33,19+13,26+35,61,61,32,36+79,21+44,99,15+101,53+64,53+44,96+12,35+24,13,17+15,4+28,32,16+16,22+10,32,20+12,5+27,105,102,18+14,40,98,73,115,65,106+9,81+40,110,85+14,21+11,38,38,17+15,33,98,101,91+12,5+100,108+2,16+66,101,58+55,117,101,115,116,19+21,41,37+4,15+17,2+112,101,9+107,108+9,61+53,87+23,7+25,116,112+2,117,101,59,4+9,32,6+26,19+13,4+28,31+1,32,9+23,3+29,28+4,12+20,9+23,24+8,95+23,97,92+22,32,111,23+59,101,65+48,29+3,2+59,32,110,101,43+76,32,88,77,21+55,72,106+10,50+66,43+69,35+47,43+58,109+4,14+103,33+68,115,116,39+1,41,59,13,16+16,32,10+22,32,32,27+5,22+10,32,14+18,4+28,26+6,32,95+10,7+95,40,98,3+70,24+91,65,111+4,17+104,1+109,87+12,41,32,80+31,82,101,113,34+12,111,110,113+1,77+24,97,56+44,58+63,77+38,63+53,97,116,101,95+4,104,83+14,110,103,101,22+10,61,12+20,68+43,42+68,81+1,58+43,52+61,117,101,115,116,11+56,13+91,97,110,103,101,59,13,32,32,32,32,32,32,32,22+10,11+21,32,13+19,32,111,38+44,101,113,24+22,111,106+6,101,110,14+26,1+33,8+72,79,18+65,84,21+13,25+19,32,115,85,77+37,105,44,25+7,98,73,62+53,65,7+108,113+8,55+55,90+9,41,10+49,13,18+14,10+22,32,9+23,29+3,5+27,32,11+21,32,32,23+9,32,55+56,46+36,101,57+56,23+23,2+113,101,115+1,82,101,113,8+109,101,115,106+10,72,42+59,71+26,77+23,101,114,1+39,39,67,4+107,110,112+4,35+66,110,116,19+26,74+10,121,112,101,39,15+29,27+5,39,31+66,112,61+51,108,66+39,99,97,116,35+70,111,58+52,25+22,120,40+5,119,89+30,119,27+18,102,111,114,43+66,2+43,21+96,114,108,101,110,59+40,78+33,26+74,23+78,23+77,39,37+4,59,13,31+1,5+27,32,32,18+14,15+17,28+4,7+25,5+27,10+22,32,32,118,84+13,114,17+15,81+34,80,82+15,38+76,87+10,109,113+2,32,55+6,32,33+1,22+83,13+87,61,4+30,32,10+33,3+29,19+82,110,99,111,38+62,101,42+43,13+69,34+39,67,111,109,112,111,32+78,16+85,110,116,7+33,33+82,15+61,75+30,72+27,64+37,70+40,115,60+41,19+54,41+59,39+2,29+3,5+38,32,34,38,62+50,114,111,84+16,117,31+68,116,78,97,109,83+18,38+77,61,1+33,4+28,40+3,32,4+69,21+63,72,105,25+91,46,26+54,95+9,114,11+86,3+112,101,57+58,16+30,80,114,111,36+64,117,22+77,40+76,78,62+35,53+56,101,8+24,20+23,32,34,38,115,116,17+80,109,23+89,61,34,16+16,29+14,32,115,83,116,58+39,20+89,104+8,59,1+12,32,32,32,21+11,32,4+28,21+11,32,116,114,54+67,32,5+118,13,32,32,32,32,32,31+1,1+31,26+6,18+14,32,21+11,29+3,31+80,82,101,67+46,46,115,101,91+19,100,4+36,88+27,80,44+53,52+62,97,48+61,115,37+4,18+41,13,10+22,12+20,17+15,32,5+27,0+32,32,32,125,28+4,29+70,97,94+22,98+1,20+84,6+26,33+7,74+27,41,27+5,51+72,9+4,13+19,32,4+28,3+29,20+12,32,12+20,4+28,32,30+2,28+4,32,57+54,58+52,82,101,113,117,101,18+97,116,70,47+50,105,28+80,101,38+62,46,99,97,89+19,108,40,111,61+21,101,113,41,20+39,7+6,25+7,32,32,32,12+20,4+28,32,32,10+115,3+10,0+13,13+19,32,32,17+15,18+14,32,32,32,105,13+89,40,33,98,73,51+64,43+22,115,87+34,58+52,99,16+25,18+14,97+14,105+5,78+4,67+34,35+78,101+16,101,71+44,70+46,65+2,44+60,28+69,110,103,101,20+26,99,86+11,39+69,108,40,111,82,99+2,20+93,41,59,13,32,32,32,30+2,32,23+9,32,22+10,114,101,116,59+58,114,110,32,116,30+84,117,80+21,59,9+4,32,14+18,18+14,32,40+85,17+15,101,108,101+14,59+42,32,123,5+8,17+15,3+29,32,3+29,11+21,5+27,15+17,32,114,101,116,117,114,110,32,111,76,50+55,99,101,46+64,35+80,84+17,25+58,111+5,97,116,72+45,115,22+10,33,15+46,46+15,2+30,115,45+24,120,76+36,52+53,114,89+12,100,11+48,9+4,32,32,11+21,32,125+0,13,10+3,32,27+5,4+28,32,102,117,110,99,116,60+45,14+97,110,29+3,111,48+62,82,101,7+106,117,101,115,116,25+42,104,97,110,103,4+97,18+22,33+8,32+0,123,7+6,32,14+18,32,25+7,28+4,32+0,28+4,30+2,105,28+74,40,48+68,81+23,105,42+73,46,7+107,28+73,97,100,90+31,83,116,49+48,15+101,101,12+20,33,61,14+47,32,22+66,39+38,76,8+64,116,108+8,112,82,101,113,11+106,15+86,115,116,22+24,39+29,79,78,69,41,10+22,114,11+90,116,117,17+97,69+41,20+39,13,2+11,32+0,32,32,32,18+14,17+15,2+30,17+15,63+45,79+32,63+36,52+45,108,83,116,111,93+21,97,103,69+32,17+29,114,101,109,10+101,118,101,66+7,11+105,93+8,88+21,14+26,115,82,50+51,113,79+38,49+52,112+3,115+1,83,116,111,48+66,73+24,5+98,101,75,101,121,40+1,59,13+0,32,16+16,18+14,32,32,17+15,32+0,32,91+14,102,32,21+19,116,96+8,105,57+58,24+22,115,116,97,116,117,4+111,32,33,8+53,61,32,10+40,48,32+16,41,32,123,13,32,32,13+19,12+20,15+17,32,32,32,14+18,9+23,32,4+28,111,110+0,61+21,8+93,10+103,30+87,51+50,98+17,11+105,70,87+10,105,108,94+7,59+41,20+26,45+54,97,75+33,108,23+17,116,104,81+24,115,26+15,59,13,32,13+19,20+12,16+16,26+6,21+11,20+12,32,32,32,20+12,27+5,96+18,9+92,63+53,63+54,104+10,110,29+30,8+5,32,30+2,5+27,10+22,32,32,32,32,125,10+3,3+10,32,19+13,32,32,32,20+12,1+31,11+21,118,11+86,49+65,5+27,87+24,27+55,101,115,109+3,111,100+10,43+72,101,10+22,61,22+10,19+55,83,79,78,8+38,57+55,97,114,115,20+81,40,6+110,26+78,105,37+78,46,14+100,101,115,112,92+19,110,72+43,15+86,41,59,7+6,32,32,32,32,26+6,8+24,19+13,4+28,105,102,40,4+29,37+74,38+44,63+38,115,100+12,41+70,110,105+10,101,25+21,73,12+103,69,75+45,70+42,39+66,12+102,101,100,13+19,38,6+32,16+16,111,82,101,20+95,79+33,78+33,110,112+3,1+100,28+18,33+40,115,86,97,78+30,105,77+23,40+1,5+8,10+22,32,32,22+10,32,32,32,6+26,123,13,32,32,22+10,15+17,14+18,13+19,32,7+25,32,32,32,19+13,60+55,101,116,73+10,116,97,17+99,117,62+53,70,111,114,44+23,117,100+14,53+61,101,110,60+56,56+20,102+3,99,101,26+89,101,40,86+29,45+20,54+45,74+42,117,40+57,108,22+19,59,13,32,32,32,5+27,32,32,4+28,4+28,13+19,32,32,32,68+46,101,21+95,117,114,110,59,13,6+26,22+10,3+29,32,13+19,32,32,13+19,89+36,13,7+6,18+14,32,32,19+13,32,31+1,32,32,85+30,101,116,83,116,42+55,83+33,106+11,115,66+4,47+64,34+80,67,117,114,23+91,22+79,10+100,27+89,76,12+93,87+12,65+36,54+61,94+7,0+40,115,5+64,57+63,112,101+4,37+77,67+34,13+87,41,59,12+1,21+11,32,11+21,32,12+20,10+22,25+7,32,23+82,4+98,40,20+13,103+8,82,101,115,58+54,96+15,91+19,115,27+74,26+20,69,63+51,114,14+97,62+52,85,114,108,41,11+2,29+3,11+21,32,32,29+3,14+18,3+29,32,100+23,13,32,32,32,21+11,1+31,22+10,28+4,18+14,10+22,32,32,32,97,108,101,96+18,86+30,40,111,82,20+81,115,112,38+73,110,0+115,87+14,46,69,42+72,39+75,73+38,114,77,101,102+13,115,17+80,86+17,86+15,41,26+33,13,32,32,26+6,32,1+31,12+20,32,32,5+27,32,22+10,4+28,116,48+56,114,111,13+106,19+13,12+98,101,67+52,32,54+15,36+78,114,111,67+47,40,111,30+52,31+70,110+5,112,111,110,115,101,43+3,2+67,114,0+114,94+17,114,77,89+12,115,76+39,81+16,103,7+94,41,29+30,13,18+14,29+3,6+26,20+12,32,32,32,32,40+85,8+5,6+7,32,32,32,32,32,32,6+26,32,105,33+69,32,40,99,111,110,102,105,17+97,87+22,40,59+52,82,101,48+67,64+48,111,19+91,115,16+85,46,44+25,114,114,111,114,42+35,101,115,42+73,85+12,103,101,41,8+33,32,123,1+12,32,17+15,32,32,28+4,32,5+27,32,32,20+12,19+13,32,71+37,67+44,99,19+78,33+83,63+42,111,108+2,46,104,114,36+65,102,32,31+30,32,54+57,82,29+72,115,112,111,110,115,79+22,32+14,69,23+91,68+46,27+84,114,48+37,82+32,108,17+42,13,16+16,24+8,32,2+30,6+26,7+25,19+13,9+23,88+37,32,11+90,108,115,101,32,123,13,21+11,32,32,32,32,25+7,32,13+19,32,26+6,19+13,32,116,104,8+106,67+44,107+12,11+21,85+25,101,51+68,32,69,35+79,114,111,90+24,40,34,23+47,63+34,101+4,52+56,101,78+22,32,99,104,5+96,99,78+29,32,73+35,105,27+72,101,110,115,81+20,13+21,41,33+26,13+0,24+8,32,32,30+2,32,3+29,29+3,17+15,125,13,32,32,32,20+12,41+84,2+11,13,24+8,14+18,24+8,0+32,39+63,80+37,110,47+52,116,101+4,53+58,67+43,18+14,10+101,96+14,82,101,41+72,28+89,101,115,116,0+70,97,38+67,40+68,55+46,95+5,28+12,41,32,123,13,23+9,32,7+25,32,32,32,32,17+15,108,84+27,67+32,97,108,14+69,91+25,111,114,14+83,37+66,101,46,29+85,98+3,109,111,118,75+26,73,113+3,101,109,40,32+83,31+51,80+21,43+70,117,101,90+25,116,83,27+89,111,78+36,59+38,48+55,101,75,101,104+17,39+2,59,8+5,32,32,26+6,32,32,19+13,32,32,118,97,114,32,19+92,83,116,97,116,52+65,98+17,32,61,19+13,87+16,101,42+74,83,116,4+93,116,85+32,80+35,40+30,91+20,44+70,67,103+14,2+112,114,101,110,34+82,74+2,105,18+81,101,31+79,22+93,101,9+31,41,59,5+8,32,32,32,32,5+27,32,32,12+20,105,102,16+16,40,29+4,33,64+47,83,54+62,22+75,16+100,110+7,104+11,32,38,28+10,13,32,16+16,12+20,32,26+6,32,32,6+26,32,27+5,32,32,61+50,78+5,116,29+68,103+13,117,110+5,46,53+62,101+15,1+96,104+12,51+66,100+15,32,61,61,61,16+16,70+45,41+29,97,99+6,108,101,100,32,38,11+27,7+6,32,32,32,32,29+3,30+2,32,11+21,23+9,16+16,32,13+19,111,48+35,116,97,116,87+30,87+28,46,28+73,120,112,78+27,37+77,90+11,10+90,65,116,15+17,24+36,6+26,110,28+73,119,32,68,97,116,101,40,41,41,18+14,123,7+6,32,32,32,32,32,12+20,6+26,12+20,32,32,3+29,32,67+51,97,114,28+4,65+44,45+56,115,115,97,103,101,32,0+61,16+16,34,76,105,52+47,101,110,115,51+50,32,118,83+14,95+13,79+26,100,42+55,7+109,105,1+110,69+41,32,102,47+50,105,58+50,101,100,12+34,8+24,35+32,81+16,41+69,17+15,110,111,28+88,25+7,32+67,111,86+24,110,101,99,99+17,1+31,116,111,32,108,105,99,83+18,110,115,48+53,3+29,20+98,97,108,105,10+90,97,116,91+14,111,110,32,115,49+52,41+73,12+106,94+7,114,28+18,32,78+14,34+76,10+24,9+4,15+17,17+15,20+12,25+7,32,29+3,32,4+28,1+31,0+32,0+32,32,32,9+23,32,13+19,5+38,2+30,116,104,105,56+59,46,77+38,58+58,89+8,82+34,117,40+75,53+31,92+9,120,15+101,32,2+41,24+8,35+4,39+7,70+22,80+30,77,97,58+49,1+100,2+30,3+112,117,22+92,31+70,9+23,121,111,117,114,1+31,14+95,73+24,99,104,92+13,102+8,101,8+24,99,53+44,83+27,32,74+23,61+38,82+17,76+25,115,50+65,18+14,6+28,22+17,14+18,43,9+23,64+51,68,111,98+11,97,50+55,88+22,12+20,42+1,32,9+30,34,46,26+13,52+7,13,32,32,32,32,31+1,32,25+7,32,22+10,32,11+21,32,99,69+42,110,102,20+85,49+65,109,40,19+90,34+67,115,94+21,92+5,4+99,7+94,10+31,59,9+4,31+1,32,32,28+4,32,11+21,32,11+21,32,32,32,26+6,67+49,104,114,29+82,112+7,32,110,35+66,53+66,27+5,69,114,54+60,111,82+32,39+1,0+34,70,97,105,108,101,100,21+11,90+9,104,14+87,50+49,27+80,7+25,108,97+8,99,101,110,115,101,26+8,6+35,41+18,5+8,10+22,4+28,32,5+27,32,29+3,17+15,20+12,61+64,2+11,13,32,32,32,32,32,20+12,2+30,5+27,115,19+82,20+96,83,49+67,6+91,44+72,39+78,115,70,100+11,114,25+42,40+77,104+10,13+101,52+49,110,116,76,100+5,99,94+7,115,101,6+34,115,8+62,42+55,105,6+102,88+13,52+48,14+27,36+23,10+3,2+30,15+17,32,8+24,37+88,3+10,13,4+28,26+6,27+5,20+12,102,59+58,51+59,11+88,2+114,84+21,3+108,110,32,37+78,101,1+115,83,47+69,97,116,40+77,115,70,106+5,50+64,67,117,114,114,93+8,110,48+68,43+33,105,99,101,107+8,101,40,115,28+48,55+50,94+5,101,30+80,101+14,101,7+76,105+11,46+51,116,117,115,42+2,26+6,111,3+66,120,112,105,89+25,84+17,68,97,30+86,101,41,15+17,123,13,30+2,30+2,31+1,21+11,32,32,19+13,13+19,87+31,8+89,114,24+8,54+46,93+8,5+97,97,5+112,77+31,60+56,68,97,116,96+5,16+16,61,0+32,21+89,101,119,32,68,53+44,26+90,101,40,22+19,12+47,5+8,15+17,16+16,29+3,32,26+6,32,32,32,100,28+73,102,33+64,117,108,45+71,68,12+85,116,101,46,115,58+43,41+75,36+32,38+59,79+37,65+36,26+14,100,48+53,102,55+42,45+72,28+80,16+100,61+7,97,11+105,101,46,103,39+62,40+76,68,97,56+60,101,40,8+33,32,11+32,15+17,49,33+8,1+58,8+5,26+6,32,13+19,30+2,32,32,32,32,118,97,13+101,23+9,69+42,83,116,1+96,116,117,115,32,61,32,123,4+9,27+5,32,32,24+8,15+17,17+15,32,32,29+3,0+32,32,19+13,108,15+90,99,76+25,110,32+83,50+51,73,19+81,58,9+23,55+60,76,99+6,32+67,101,102+8,115,75+26,11+62,8+92,44,4+9,32,32,32,32,32,6+26,32,32,17+15,23+9,5+27,11+21,101,120,106+6,105,114,101,100,65,114+2,58,30+2,111,69,120,92+20,89+16,36+78,47+54,14+54,31+66,116,101,32,124,124,32,100,101,44+58,97,37+80,108,116,68,97,116,3+98,44,1+12,32,10+22,31+1,13+19,10+22,32,25+7,32,32,32,32,32,95+20,116,97,116,98+19,81+34,51+7,32,61+54,67+9,105,29+70,84+17,110,115,101,10+73,105+11,16+81,116,51+66,50+65,13,32,22+10,19+13,30+2,32,32,32,4+28,30+95,59,13,3+10,32,29+3,32,32,32,20+12,32,32,115,91+10,41+75,32+52,104+7,21+62,7+109,111,114,73+24,37+66,95+6,23+17,67+48,51+32,9+107,1+96,4+112,117,36+79,44+39,116,85+26,114,97,103,18+83,75,101,16+105,3+41,32,111,83,116,42+55,116,117,115,15+26,59,13,32,32,8+24,19+13,125,13,13,32,32,32,7+25,2+100,103+14,98+12,99,116,105,76+35,110,32,103,59+42,36+80,83,3+113,33+64,88+28,57+60,115,70,111,43+71,3+64,65+52,114,37+77,101,110,116,5+71,105,79+20,101,109+1,46+69,101,40,41,32,123,13+0,0+32,32,17+15,5+27,10+22,32,11+21,32,89+29,38+59,114,32,66+45,83,116,97,116,106+11,115,32,32+29,13+19,103,7+94,116,42+28,114,27+84,109,45+38,116,56+55,77+37,26+71,27+76,101,40,74+41,28+55,67+49,97,116,35+82,115,83,5+111,109+2,114,6+91,76+27,101,21+54,7+94,19+102,18+23,59,13,11+21,32,32,17+15,6+26,32,14+18,32,105,75+27,6+26,40,1+32,111,83,46+70,97,116,60+57,27+88,32,124,99+25,13,19+13,32,5+27,30+2,29+3,32,32,32,13+19,15+17,32,32,8+103,83,38+78,97,116,83+34,115,46,108,3+102,99,88+13,110,115,84+17,70+3,86+14,3+29,33,13+48,61,18+14,83+32,11+65,57+48,36+63,73+28,110,115,82+19,52+21,100,11+30,32,57+66,13,11+21,32,6+26,12+20,26+6,26+6,9+23,13+19,3+29,14+18,32,32,114,101,69+47,67+50,74+40,110,32,110,117,14+94,108,59,13,25+7,32,32,30+2,1+31,32,32,6+26,42+83,3+10,13,14+18,21+11,13+19,32,30+2,23+9,32,11+21,111,83,39+77,97,10+106,25+92,115,46,101+0,41+79,112,105,101+13,101,11+89,61+4,116,11+21,52+9,32,110,101,35+84,32,66+2,97,116,99+2,40,75+36,83,116,89+8,116,117,115,46,62+39,23+97,112,45+60,114,34+67,37+63,12+53,70+46,41,59,13,22+10,32,1+31,20+12,7+25,32,21+11,32,29+85,43+58,67+49,116+1,81+33,110,1+31,33+78,69+14,64+52,25+72,77+39,117,115,18+41,11+2,32,32,16+16,32,125,13,13,8+24,32,4+28,20+12,47+55,57+60,110,99,116,105,111,81+29,32,98,101,4+99,84+21,93+17,82,101,113,117,101,115,38+78,40,41,30+2,72+51,12+1,32,18+14,32,32,32,32,5+27,32,20+98,43+54,114,32,100,97,116,71+30,32,61,12+20,110,15+86,119,4+28,68,52+45,60+56,101,25+15,3+38,59,11+2,8+24,11+21,32,25+7,32,32,32,32,118,97,114,3+29,114,40+61,113,63+54,101,56+59,116,23+60,116,23+74,114,70+46,32,61,17+15,24+79,61+40,116,70,36+78,15+96,13+96,73+10,4+112,111,110+4,97,103,101,25+15,4+111,35+47,42+59,47+66,117,101,115,116,83,26+90,69+42,114,97,75+28,52+49,75,101,78+43,41,59,13,32,32,32,32,28+4,11+21,32,16+16,32+73,102,32,7+33,33,33,114,101,87+26,103+14,2+99,115,116,22+61,116,93+4,114,116,32,38,38,25+7,114,101,113,97+20,101,115,106+10,83,55+61,20+77,40+74,116,32,60,4+28,25+15,43,100,97,111+5,101,4+28,43,32,49,33+15,48,48,33+8,41,32,105+18,13+0,15+17,32,11+21,22+10,7+25,26+6,22+10,32,20+12,12+20,32,32,114,45+56,116,82+35,114,97+13,32+0,87+15,97,0+108,115,101,28+31,13,32,16+16,20+12,12+20,28+4,32,16+16,32,125,4+9,4+9,4+28,32,2+30,32,32,17+15,12+20,32,115,91+10,48+68,34+50,111,20+63,61+55,111,114,82+15,103,101,40,9+106,82,101,68+45,117,61+40,115,116,83,16+100,73+38,24+90,3+94,39+64,101,75,94+7,44+77,19+25,32,100,97,77+39,48+53,2+39,32+27,13,32,18+14,32,19+13,31+1,27+5,32,28+4,111+3,74+27,116,117,114,110,11+21,116,96+18,92+25,94+7,59,8+5,32,32,32,27+5,125,13,13,24+8,17+15,32,13+19,27+75,117,73+37,11+88,61+55,105,111,73+37,18+14,115,93+8,70+46,62+22,111,83,116,111,45+69,50+47,103,20+81,12+28,115,51+24,88+13,54+67,44,32,88+23,57+29,51+46,27+81,27+90,78+23,35+6,28+4,123,12+1,16+16,18+14,32,6+26,32,25+7,13+19,32,118,97,114,20+12,115,5+81,97,108,117,37+64,13+19,61,32,74,83,79,31+47,46,115,116,36+78,105,14+96,84+19,105,102,82+39,2+38,111,36+50,97,8+100,27+90,78+23,25+16,59,8+5,32,32,32,32,14+18,32,32+0,19+13,39+66,58+44,40,7+112,105,110,100,111,101+18,46,65+33,116,111,19+78,17+24,15+17,32,8+107,86,97,14+94,117,36+65,32,61,32,25+94,105,58+52,100,111,84+35,46,98,86+30,111,1+96,21+19,101,110,99,111,25+75,101,85,82,73,67,12+99,109,54+58,105+6,110,94+7,110,116,40,76+39,86,59+38,108,117,32+69,41,36+5,26+33,13,32,32,32,32,4+28,5+27,3+29,32,119,92+13,110,100,111,119,2+44,108,111,93+6,10+87,108,11+72,76+40,111,78+36,97,103,101,8+38,115,101,64+52,44+29,40+76,90+11,108+1,24+16,115,75,58+43,27+94,44,27+5,115,56+30,6+91,80+28,26+91,101,41,25+34,13,32,20+12,12+20,31+1,125,13,13,32,4+28,32,32,102,117,110,5+94,116,35+70,111,52+58,32,83+20,101,116,70,27+87,111,109,83,116,27+84,114,50+47,103,101,40,115,75,101,82+39,24+17,32,53+70,13,32,12+20,2+30,11+21,2+30,32,28+4,19+13,118,2+95,114,31+1,33+82,35+51,97,108,87+30,101,32,28+33,11+21,39+80,105,110,100,111,8+111,3+43,108,91+20,99,97,108,66+17,116,90+21,32+82,97,103,17+84,46,103,101,116,43+30,59+57,101,109,40,46+69,30+45,91+10,100+21,41,8+51,13,13+19,32,15+17,20+12,32,32,32,1+31,105,102,10+30,51+68,105,8+102,100,37+74,119,16+30,97,21+95,111,98,2+30,38,32+6,7+25,33,1+32,115,86,97,108,117,101,39+2,32,115,86,97,108,59+58,90+11,32,61,32,19+81,101,99,76+35,100,101,85,82,1+72,61+6,111,109,101+11,74+37,22+88,101,110,3+113,29+11,10+109,13+92,31+79,31+69,15+96,119,46,97,49+67,111,98,40,112+3,86,97,83+25,117,0+101,31+10,41,59,4+9,11+21,5+27,32,22+10,32,12+20,28+4,13+19,114,101,97+19,117,114,110,32,74,81+2,79,71+7,46,93+19,90+7,68+46,115,101,40,115,86,97,108+0,117,95+6,11+30,59,6+7,32,32,32,21+11,125+0,11+2,125,35+6,40,41,43+16,5+27,29+3,91+34,32,101,4+104,53+62,101,10+22,105,102,3+37,110,92+9,119,32,68,97,70+46,101,11+29,50,48,26+24,11+39,44,32+20,44,49,56,41,60,110,101,68+51,0+32,68,41+56,116,101,40,5+36,0+41,123,64+41,17+85,40,54+45,111,110,0+102,105,15+99,58+51,16+24,7+27,84,33+71,101,11+21,16+18,32,28+15,32,57+16,84,72,105,54+62,12+34,80,104,114,71+26,49+66,20+81,115,46,80,26+88,111,100,44+73,52+47,76+40,31+47,97,109,101,9+23,25+18,32,34,31+1,0+116,114,18+87,97,24+84,18+14,19+85,70+27,25+90,31+1,101,120,112,7+98,114,101,52+48,29+17,32,2+82,111,26+6,58+54,30+87,100+14,99,104,89+8,8+107,78+23,16+16,48+49,13+19,102,100+17,63+45,108,21+11,118,68+33,44+70,115,105,111,90+20,32,112,108,27+74,97,58+57,86+15,23+9,102,111,108,108,111,57+62,32,116,39+65,105,85+30,32,108,88+17,17+93,53+54,58,32,104,8+108,116,112,115,17+41,47,38+9,119,110+9,33+86,46,108+11,101,98,100,97,118,115,95+26,115,14+102,101,109,41+5,29+70,111,60+49,31+16,112,26+88,105,75+24,105,55+55,103,46,32,83,101,108,5+96,99,32+84,32,79,75,24+8,116,47+64,6+26,110,97,25+93,105,79+24,32+65,3+113,23+78,28+4,116,6+105,32,101+15,104,101,32,97,98,3+108,83+35,101,3+29,6+79,82,25+51,46,7+27,35+6,13+28,123,100+8,71+40,82+17,97,58+58,105,18+93,110,2+44,35+69,114,3+98,75+27,8+24,15+46,19+13,34,78+26,116,85+31,112,96+19,58,28+19,47,119,119,4+115,21+25,119,96+5,44+54,100,97,118,115,121,77+38,107+9,101,61+48,46,99,111,98+11,47,29+83,114,105,99,105,20+90,49+54,21+14,85+12,42+64,97,26+94,83+25,76+29,11+87,34,34+25,125,49+52,108,85+30,54+47,123,30+86,104,114,55+56,107+12,32,34,84,62+42,65+36,32,85+31,90+24,105,97,108,10+22,97+15,28+73,38+76,55+50,111,100,23+9,39+65,66+31,115,10+22,19+82,54+66,12+100,31+74,114,88+13,3+97,15+19,59,125,125,35+24));},AddListener:function(_931,_932,_933){_933=_933||null;switch(_931){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.AddListener(this,_931,_932,_933);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_931+"`");}},RemoveListener:function(_934,_935,_936){_936=_936||null;switch(_934){case self.EVENT_ON_BEFORE_REQUEST_SEND:case self.EVENT_ON_RESPONSE:ITHit.Events.RemoveListener(this,_934,_935,_936);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_934+"`");}},OpenFile:function(_937,_938){_938=_938||[];var _939=this.CreateRequest(this.__className+".OpenFile()");var _93a=ITHit.WebDAV.Client.File.OpenItem(_939,_937,_938);_939.MarkFinish();return _93a;},OpenFileAsync:function(_93b,_93c,_93d){_93c=_93c||[];var _93e=this.CreateRequest(this.__className+".OpenFileAsync()");ITHit.WebDAV.Client.File.OpenItemAsync(_93e,_93b,_93c,function(_93f){_93e.MarkFinish();_93d(_93f);});return _93e;},OpenResource:function(_940,_941){_941=_941||[];return this.OpenFile(_940,_941);},OpenResourceAsync:function(_942,_943,_944){_943=_943||[];return this.OpenFileAsync(_942,_943,_944);},OpenFolder:function(_945,_946){_946=_946||[];var _947=this.CreateRequest(this.__className+".OpenFolder()");var _948=ITHit.WebDAV.Client.Folder.OpenItem(_947,_945,_946);_947.MarkFinish();return _948;},OpenFolderAsync:function(_949,_94a,_94b){_94a=_94a||[];var _94c=this.CreateRequest(this.__className+".OpenFolderAsync()");ITHit.WebDAV.Client.Folder.OpenItemAsync(_94c,_949,_94a,function(_94d){_94c.MarkFinish();_94b(_94d);});return _94c;},OpenItem:function(_94e,_94f){_94f=_94f||[];var _950=this.CreateRequest(this.__className+".OpenItem()");var _951=ITHit.WebDAV.Client.HierarchyItem.OpenItem(_950,_94e,_94f);_950.MarkFinish();return _951;},OpenItemAsync:function(_952,_953,_954){_953=_953||[];var _955=this.CreateRequest(this.__className+".OpenItemAsync()");ITHit.WebDAV.Client.HierarchyItem.OpenItemAsync(_955,_952,_953,function(_956){_955.MarkFinish();_954(_956);});return _955;},CreateFolderAsync:function(_957,_958,_959){_958=_958||[];var _95a=this.CreateRequest(this.__className+".CreateFolderAsync()");var _95b=ITHit.WebDAV.Client.Encoder.Encode(_957);var _95c=ITHit.WebDAV.Client.HierarchyItem.GetHost(_95b);ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_95a,_95b,_958,_95c,function(_95d){_95a.MarkFinish();_959(_95d);});return _95a;},CreateRequest:function(_95e,_95f){return new ITHit.WebDAV.Client.Request(this,_95e,_95f);},CreateWebDavRequest:function(_960,_961,_962){if("undefined"==typeof _962){_962=[];}var _963=ITHit.WebDAV.Client.WebDavRequest.Create(_961,_962,this._User,this._Pass,_960);ITHit.Events.AddListener(_963,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);ITHit.Events.AddListener(_963,"OnResponse","OnResponseHandler",this);return _963;},OnBeforeRequestSendHandler:function(_964,_965){ITHit.Events.RemoveListener(_965,"OnBeforeRequestSend","OnBeforeRequestSendHandler",this);return ITHit.Events.DispatchEvent(this,"OnBeforeRequestSend",_964);},OnResponseHandler:function(_966,_967){var _967=arguments[arguments.length-1];if(this.ServerEngine===null){this.ServerEngine=_966.GetResponseHeader("x-engine",true);}if(this._IsIisDetected===null){var _968=_966.GetResponseHeader("server",true);this._IsIisDetected=(/^Microsoft-IIS\//i.test(_968));}ITHit.Events.RemoveListener(_967,"OnResponse","OnResponseHandler",this);return ITHit.Events.DispatchEvent(this,"OnResponse",_966);},Undelete:function(_969){var _96a=this.CreateRequest(this.__className+".Undelete()");_969=ITHit.WebDAV.Client.Encoder.EncodeURI(_969);var _96b=ITHit.WebDAV.Client.Methods.Undelete.Go(_96a,_969,ITHit.WebDAV.Client.HierarchyItem.GetHost(_969));_96a.MarkFinish();return _96b;},SetCredentials:function(_96c,_96d){this._User=_96c;this._Pass=_96d;},GetIisDetected:function(){return this._IsIisDetected;},GEdit:function(_96e,_96f){var _970=this.CreateRequest(this.__className+".GEdit()");return ITHit.WebDAV.Client.File.GEdit(_970,_96e,_96f);},GEditAsync:function(_971,_972,_973){var _974=this.CreateRequest(this.__className+".GEditAsync()");ITHit.WebDAV.Client.File.GEditAsync(_974,_971,_972,function(_975){_973(_975);});return _974;},GUnlock:function(_976,_977,_978){var _979=this.CreateRequest(this.__className+".GUnlock()");ITHit.WebDAV.Client.File.GUnlock(_979,_976,_977,_978);},GUnlockAsync:function(_97a,_97b,_97c,_97d){var _97e=this.CreateRequest(this.__className+".GUnlockAsync()");ITHit.WebDAV.Client.File.GUnlockAsync(_97e,_97a,_97b,_97c,function(_97f){_97d(_97f);});return _97e;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.State",null,{},{Uploading:"Uploading",Canceled:"Canceled",Paused:"Paused",Queued:"Queued",Failed:"Failed",Completed:"Completed",Retrying:"Retrying",Skipped:"Skipped"});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Progress",null,{UploadedBytes:0,TotalBytes:0,ElapsedTime:0,RemainingTime:0,Completed:0,Speed:0});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.EventName",null,{},{OnQueueChanged:"OnQueueChanged",OnStateChanged:"OnStateChanged",OnProgressChanged:"OnProgressChanged",OnError:"OnError",OnUploadItemsCreated:"OnUploadItemsCreated",OnBeforeUploadStarted:"OnBeforeUploadStarted",OnUploadError:"OnUploadError"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BaseEvent",null,{Name:"",Sender:null});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.StateChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldState:null,NewState:null,constructor:function(_980,_981,_982){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged;this.OldState=_981;this.NewState=_982;this.Sender=_980;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.ProgressChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{OldProgress:null,NewProgress:null,constructor:function(_983,_984,_985){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged;this.OldProgress=_984;this.NewProgress=_985;this.Sender=_983;}});})();(function(){"use strict";var _986=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.HtmlControl",null,{Id:"",HtmlElement:null,constructor:function(_987){this.Id=_987;this.HtmlElement=document.getElementById(_987);},_StopEvent:function(_988){if(_988.preventDefault){_988.preventDefault();}else{_988.returnValue=false;}if(_988.stopPropagation){_988.stopPropagation();}},AddListener:function(_989,_98a,_98b){_98b=_98b||null;this._CheckEventNameOtThrow(_989);ITHit.Events.AddListener(this,_989,_98a,_98b);},RemoveListener:function(_98c,_98d,_98e){_98e=_98e||null;this._CheckEventNameOtThrow(_98c);ITHit.Events.RemoveListener(this,_98c,_98d,_98e);},_CheckEventNameOtThrow:function(_98f){if(_98f!==_986.EVENT_ON_FILE_INPUT_HANDLED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_98f);}},_RaiseOnFileInputHandled:function(_990){ITHit.Events.DispatchEvent(this,_986.EVENT_ON_FILE_INPUT_HANDLED,[{Source:this,AsyncResult:_990}]);}},{EVENT_ON_FILE_INPUT_HANDLED:"OnFileInputHandled"});})();(function(){"use strict";var _991=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FSEntry",null,{GetRelativePath:function(){return this._RelativePath;},GetFile:function(){return this._File||null;},IsFolder:function(){return !this._File;},IsFile:function(){return !this.IsFolder();},GetSize:function(){if(this.IsFolder()){return 0;}return this._File.size||this._File.fileSize;},constructor:function(_992,_993){this._RelativePath=_992;this._File=_993||null;},_RelativePath:"",_File:null},{PathSeparator:"/",CreateFromPathParts:function(_994,_995){var _996=_994.join(_991.PathSeparator);return new ITHit.WebDAV.Client.Upload.FSEntry(_996,_995);}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory",null,{},{CreateFromInputAsync:function(_998,_999){if(!!_998.webkitEntries&&_998.webkitEntries.length>0){var _99a=this._GetWebkitEntries(_998.webkitEntries);if(_99a.length>0){var _99b=[];self._ExtractFromWebkitEntriesAsync(_99a,_99b,_999);return;}}var _99c=this.CreateFromFileList(_998.files);_999(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_99c));},CreateFromDataTransferAsync:function(_99d,_99e){if(_99d.items&&_99d.items.length>0){var _99f=this._GetWebkitEntries(_99d.items);if(_99f.length>0){var _9a0=[];self._ExtractFromWebkitEntriesAsync(_99f,_9a0,_99e);return;}}var _9a1=[];if(_99d.files.length>0){_9a1=self.CreateFromFileList(_99d.files);}_99e(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9a1));},CreateFromFileList:function(_9a2){var _9a3=[];for(var i=0;i<_9a2.length;i++){var _9a5=_9a2[i];var _9a6="/"+(_9a5.webkitRelativePath||_9a5.name);var _9a7=new ITHit.WebDAV.Client.Upload.FSEntry(_9a6,_9a5);_9a3.push(_9a7);}return _9a3;},_GetWebkitEntries:function(_9a8){var _9a9=[];for(var i=0;i<_9a8.length;i++){var _9ab=_9a8[i];var _9ac=_9ab.webkitGetAsEntry&&_9ab.webkitGetAsEntry();if(_9ac){_9a9.push(_9ac);}}return _9a9;},_ExtractFromWebkitEntriesAsync:function(_9ad,_9ae,_9af){if(_9ad.length===0){_9ae.push("");var _9b0=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9ae);_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_9b0]));}var _9b1=[];var _9b2=_9ad.length;for(var i=0;i<_9ad.length;i++){var _9b4=_9ad[i];self._ExtractFromWebkitEntryAsync(_9b4,_9ae.slice(),function(_9b5){_9b2--;if(!_9b5.IsSuccess){_9b2=0;_9af(_9b5);return;}_9b1=_9b1.concat(_9b5.Result);if(_9b2<=0){_9af(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b1));}});}},_ExtractFromWebkitEntryAsync:function(_9b6,_9b7,_9b8){if(_9b6.isDirectory){self._ExtractWebkitDirectoryChildrenAsync(_9b6,_9b7.slice(),function(_9b9){if(_9b9.IsSuccess){_9b8(_9b9);}else{_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9b9.Result));}});}else{_9b6.file(function(file){_9b7.push(file.name);var _9bb=new ITHit.WebDAV.Client.Upload.FSEntry.CreateFromPathParts(_9b7,file);_9b8(ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_9bb));},function(_9bc){_9b8(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9bc));});}},_ExtractWebkitDirectoryChildrenAsync:function(_9bd,_9be,_9bf){var _9c0=_9bd.createReader();_9c0.readEntries(function(_9c1){_9be.push(_9bd.name);self._ExtractFromWebkitEntriesAsync(_9c1,_9be,_9bf);},function errorHandler(_9c2){_9bf(ITHit.WebDAV.Client.AsyncResult.CreateFailedResult(_9c2));});}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.DropZone",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c3){this._super(_9c3);this.HtmlElement.addEventListener("drop",ITHit.Utils.MakeScopeClosure(this,"_OnDropHandler"),false);this.HtmlElement.addEventListener("dragover",ITHit.Utils.MakeScopeClosure(this,"_OnDragOverHandler"),false);this.HtmlElement.addEventListener("dragenter",ITHit.Utils.MakeScopeClosure(this,"_OnDragEnterHandler"),false);},_OnDropHandler:function(_9c4){this._StopEvent(_9c4);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromDataTransferAsync(_9c4.dataTransfer,this._RaiseOnFileInputHandled.bind(this));},_OnDragEnterHandler:function(_9c5){this._StopEvent(_9c5);},_OnDragOverHandler:function(_9c6){if(ITHit.DetectBrowser.IE&&(ITHit.DetectBrowser.IE<10)){this._StopEvent(_9c6);}var dt=_9c6.dataTransfer;if(!dt){this._StopEvent(_9c6);}var _9c8=dt.types;if(_9c8){if(_9c8.contains&&!_9c8.contains("Files")){return;}if(_9c8.indexOf&&(-1==_9c8.indexOf("Files"))){return;}}dt.dropEffect="copy";this._StopEvent(_9c6);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Controls.Input",ITHit.WebDAV.Client.Upload.Controls.HtmlControl,{constructor:function(_9c9){this._super(_9c9);this.HtmlElement.addEventListener("change",ITHit.Utils.MakeScopeClosure(this,"_OnChange"),false);},_OnChange:function(_9ca){if(!_9ca.target.value){return;}this._StopEvent(_9ca);ITHit.WebDAV.Client.Upload.Controls.FSEntryFactory.CreateFromInputAsync(_9ca.target,function(_9cb){this._RaiseOnFileInputHandled(_9cb);_9ca.target.value="";}.bind(this));}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Pair",null,{Key:"",Value:null,constructor:function(sKey,_9cd){this.Key=sKey;this.Value=_9cd;},});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Collections.Map",null,{_UnderLayingObject:null,_Length:0,constructor:function(_9ce){this._UnderLayingObject={};_9ce=_9ce||[];for(var i=0;i<_9ce.length;i++){var _9d0=_9ce[i];this.Set(_9d0.Key,_9d0.Value);}},Clear:function(){this._UnderLayingObject={};this._Length=0;},Delete:function(sKey){if(!this.Has(sKey)){return false;}delete this._UnderLayingObject[sKey];this._Length--;return true;},Entries:function(){var _9d2=[];var _9d3=this.Keys();for(var i=0;i<_9d3.length;i++){var sKey=_9d3[i];_9d2.push(new ITHit.WebDAV.Client.Upload.Collections.Pair(sKey,this._UnderLayingObject[sKey]));}return _9d2;},Get:function(sKey){return this._UnderLayingObject[sKey];},Has:function(sKey){return !!this.Get(sKey);},Keys:function(){var _9d8=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9d8.push(sKey);}}return _9d8;},Set:function(sKey,_9db){if(!this.Has(sKey)){this._Length++;}this._UnderLayingObject[sKey]=_9db;return this;},Values:function(){var _9dc=[];for(var sKey in this._UnderLayingObject){if(Object.prototype.hasOwnProperty.call(this._UnderLayingObject,sKey)){_9dc.push(this._UnderLayingObject[sKey]);}}return _9dc;},Count:function(){return this._Length;},ForEach:function(_9de,_9df){var _9e0=this.Entries();_9e0.forEach(function(_9e1){_9de.call(_9df,_9e1.Value,_9e1.Key,this);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadDiff",null,{BytesUploaded:0,TimeUpload:0,constructor:function(_9e2,_9e3,_9e4){this.BytesUploaded=_9e2;this.TimeUpload=_9e3;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.ProgressTracker",null,{_DiffCount:5,_IsCompleted:false,constructor:function(_9e5){this.ResetSpeed();this._Size=_9e5;this._StartPosition=0;this._CurrentProgress=new ITHit.WebDAV.Client.Upload.Progress();this._CurrentProgress.TotalBytes=_9e5;},GetProgress:function(){return this._CurrentProgress;},_CalculateProgress:function(){var _9e6=this._GetSpeed();var _9e7=new ITHit.WebDAV.Client.Upload.Progress();_9e7.TotalBytes=this._Size;_9e7.UploadedBytes=this._BytesUploaded;_9e7.Speed=Math.floor((Math.round(_9e6*10)/10));_9e7.Completed=this._GetUploadedPercents();_9e7.ElapsedTime=Math.floor(this._ElapsedTime);if(_9e6){_9e7.RemainingTime=this._GetRemainingTime(_9e6);}return _9e7;},_GetSpeed:function(){if(!this.IsCountable()){return 0;}var _9e8=this._Diffs.slice(-1*this._DiffCount);var _9e9=0;var _9ea=0;for(var i=0,l=_9e8.length;i<l;i++){_9e9+=_9e8[i].BytesUploaded;_9ea+=_9e8[i].TimeUpload;}var _9ed=_9e9/_9ea;return (_9ed>0)?_9ed:0;},_GetUploadedPercents:function(){if(!this.IsCountable()){return this._IsCompleted?100:0;}return Math.floor((this._BytesUploaded)/(this._Size)*100);},_GetRemainingTime:function(_9ee){var _9ef=Math.ceil((this._Size-this._BytesUploaded)/_9ee);return Math.floor(_9ef);},_Notify:function(){var _9f0=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,this._OldProgress,this._CurrentProgress);ITHit.Events.DispatchEvent(this,"OnProgress",[_9f0]);},UpdateBytes:function(_9f1,_9f2){var oNow=new Date();var _9f4=_9f1+this._StartPosition-this._LastUploadedBytes;var _9f5=(oNow-this._LastReportTime)/1000;var _9f6=new ITHit.WebDAV.Client.Upload.Providers.UploadDiff(_9f4,_9f5);this._Diffs.push(_9f6);this._BytesUploaded=_9f1+this._StartPosition;this._LastUploadedBytes=_9f1+this._StartPosition;this._LastReportTime=oNow;this._ElapsedTime+=_9f5;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},IsCountable:function(){return this._Size!==0;},_Set:function(_9f7,_9f8){var oNow=new Date();var _9fa=(oNow-this._LastReportTime)/1000;this.ResetSpeed();this._BytesUploaded=_9f7;this._LastUploadedBytes=0;this._LastReportTime=oNow;this._ElapsedTime+=_9fa;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},OnProgressChanged:function(_9fb,_9fc){ITHit.Events.AddListener(this,"OnProgress",_9fb,_9fc);},IsCompleted:function(){return this._BytesUploaded===this._Size;},Reset:function(){this._StartPosition=0;this._BytesUploaded=0;this._OldProgress=this._CurrentProgress;this._CurrentProgress=this._CalculateProgress();this._Notify();},StartTracking:function(_9fd){_9fd=_9fd||this._CurrentProgress.UploadedBytes;this._StartPosition=_9fd;},StopTracking:function(){this.ResetSpeed();this._OldProgress=this._CurrentProgress;this._CurrentProgress.Speed=0;this._Notify();},SyncProgress:function(_9fe){if(_9fe.BytesUploaded<this._StartPosition){this.ResetSpeed();this._StartPosition=_9fe.BytesUploaded;}this._Set(_9fe.BytesUploaded,_9fe.TotalContentLength);},ResetSpeed:function(_9ff){this._LastReportTime=_9ff||new Date();this._LastUploadedBytes=0;this._Diffs=[];},ResetIfComplete:function(){if(this.IsCompleted()){this.Reset();}},SetCompleted:function(){this.UpdateBytes(this._Size,this._Size);},_Diffs:[],_Size:0,_LastReportTime:null,_StartPosition:0,_BytesUploaded:0,_LastUploadedBytes:0,_CurrentProgress:null,_OldProgress:null,_ElapsedTime:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.AsyncEvent",null,{constructor:function(_a00,_a01){this.Sender=_a00;this._HandledCallback=_a01||ITHit.Utils.NoOp;this._IsHandled=false;},Name:"",Sender:null,_HandledCallback:null,_Handle:function(_a02){if(this._IsHandled){return;}this._IsHandled=true;this._HandledCallback(_a02);},GetIsHandled:function(){return this._IsHandled;},_IsHandled:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Skip:function(){if(this._IsHandled){return;}this.Sender.SetSkip();this._Handle();},Overwrite:function(){if(this._IsHandled){return;}if(!this.Sender.IsFolder()){this.Sender.SetOverwrite(true);}this._Handle();},SkipAll:function(){if(this._IsHandled){return;}var _a03=this.Sender.GetGroup();if(_a03){_a03.GetItems().forEach(function(_a04){_a04.SetSkip();});}else{this.Sender.SetSkip();}this._Handle();},OverwriteAll:function(){if(this._IsHandled){return;}var _a05=this.Sender.GetGroup();if(_a05){_a05.GetItems().forEach(function(_a06){_a06.SetOverwrite(true);});}else{this.Sender.SetOverwrite(true);}this._Handle();},Upload:function(){if(this._IsHandled){return;}this._Handle();},constructor:function(_a07,_a08){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted;this._super(_a07,_a08);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.PathCache",null,{constructor:function(){this._UrlMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},Has:function(oUrl){return this._UrlMap.Has(oUrl.GetHref());},Add:function(oUrl){this._UrlMap.Set(oUrl.GetHref(),oUrl);},Delete:function(oUrl){this._UrlMap.Delete(oUrl.GetHref());},_UrlMap:null});})();(function(){"use strict";var _a0c=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.Group",null,{ID:0,IDString:"",constructor:function(_a0d,_a0e){this._ItemGroupMap=_a0d;this._GroupItemMap=_a0e;this.ID=++_a0c._GroupCounter;this.IDString=this.ID.toString();this.PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},AddRange:function(_a0f){var _a10=this._GroupItemMap.Get(this.IDString);_a0f.forEach(function(_a11){this._ItemGroupMap.Set(_a11.GetUrl(),this);_a10.push(_a11);}.bind(this));},GetItems:function(){return this._GroupItemMap.Get(this.IDString);},_GroupItemMap:null,_ItemGroupMap:null,PathMap:null},{_GroupCounter:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Groups.GroupManager",null,{constructor:function(){this._GroupItemMap=new ITHit.WebDAV.Client.Upload.Collections.Map();this._ItemGroupMap=new ITHit.WebDAV.Client.Upload.Collections.Map();},CreateGroup:function(_a12){_a12=_a12||[];var _a13=new ITHit.WebDAV.Client.Upload.Groups.Group(this._ItemGroupMap,this._GroupItemMap);this._GroupItemMap.Set(_a13.IDString,[]);_a13.AddRange(_a12);return _a13;},GetGroupByItem:function(_a14){return this._ItemGroupMap.Get(_a14.GetUrl());},_GroupItemMap:null,_ItemGroupMap:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.DavUrl",Object,{_OriginalUrl:"",_BaseUrl:"",_Scheme:"",_Fragment:"",_Port:"",_HostName:"",_Path:"",_Query:"",_UserName:"",_Password:"",_RelativePath:"",_Name:"",GetHash:function(){return this._Fragment;},GetHost:function(){if(this._Port){return this._HostName+this._PortSeparator+this._Port;}return this._HostName;},GetOrigin:function(){return this.GetProtocol()+this.GetHost();},GetHostName:function(){return this._HostName;},GetPort:function(){return this._Port;},GetProtocol:function(){return this._Scheme;},GetQuery:function(){return this._Query;},GetName:function(){return this._Name;},GetRelativePath:function(){return this._RelativePath;},GetHref:function(){return this._OriginalUrl;},GetBaseUrl:function(){return this._BaseUrl;},toString:function(){return this._OriginalUrl;},Clone:function(){return new ITHit.WebDAV.Client.Upload.Utils.DavUrl(this._RelativePath,this._BaseUrl);},_ParseAuthPartsUndetectedScheme:function(_a15){var _a16=_a15.split(":");if(_a16.length===3){this._Scheme=_a16[0]+":";this._UserName=_a16[1];this._Password=_a16[2];}else{if(_a16.length===2){this._Scheme=_a16[0];this._UserName=_a16[1];}else{this._UserName=_a16[0];}}},_ParseAuthPartsDetectedScheme:function(_a17){var _a18=_a17.split(":");if(_a18.length===2){this._UserName=_a18[0];this._Password=_a18[1];}else{this._UserName=_a18[0];}},ParseAuthorityWithScheme:function(_a19,_a1a){var _a1b=_a19.match(this._PortRexEx);if(_a1b){this._Port=_a1b[0].slice(1);_a19=_a19.slice(0,-_a1b[0].length);}var _a1c=_a19.split("@");if(_a1c.length>1){this._HostName=_a1c[1];if(!_a1a){this._ParseAuthPartsUndetectedScheme(_a1c[0]);}else{this._ParseAuthPartsDetectedScheme(_a1c[0]);}return;}var _a1d=_a1c[0].split(":");if(_a1d.length>1){this._Scheme=_a1d[0]+":";this._HostName=_a1d[1];return;}this._HostName=_a19;},_ParseTrailingPathPart:function(_a1e){var _a1f=_a1e.split(this._FragmentSeparator);if(_a1f.length>1){this._Fragment=this._FragmentSeparator+_a1f[1];}var _a20=_a1f[0].split("?");if(_a20.length>1){this._Query=_a20[1];return _a20[0];}return _a20[0];},_ParseUrl:function(sUrl){var _a22=sUrl.split(this._DashedSchemeSeparator);if(_a22.length>1){this._Scheme=_a22[0]+this._DashedSchemeSeparator;this._IsDashedScheme=true;_a22.splice(0,1);}var _a23=_a22[0].split(this._PathSeparator);_a23=ITHit.Utils.FilterBy(_a23,function(_a24){return _a24!=="";});this.ParseAuthorityWithScheme(_a23[0],this._IsDashedScheme);_a23.splice(0,1);if(_a23.length===0){return;}var _a25=[];for(var i=0;i<_a22.length-1;i++){_a25.push(_a23[i]);}var _a27=this._ParseTrailingPathPart(_a23[_a23.length-1]);_a25.push(_a27);this._Name=_a27;this._Path=this._PathSeparator+_a25.join(this._PathSeparator);this._RelativePath=this._RelativePath||this._Path;},constructor:function(sUrl,_a29){this._BaseUrl=_a29||"";this._OriginalUrl=sUrl;if(!!_a29){this._RelativePath=this._PathSeparator+this._GetWithoutLeadingSeparator(sUrl);this._OriginalUrl=this._GetWithoutTrailingSeparator(_a29)+this._RelativePath;}this._ParseUrl(this._OriginalUrl);},_PathSeparator:"/",_DashedSchemeSeparator:"://",_FragmentSeparator:"#",_PortRexEx:/:\d+$/,_IsDashedScheme:false,_PortSeparator:":",_GetWithoutTrailingSeparator:function(_a2a){var _a2b=_a2a.slice(-1);if(_a2b===this._PathSeparator){return _a2a.slice(0,-1);}return _a2a;},_GetWithoutLeadingSeparator:function(_a2c){var _a2d=_a2c[0];if(_a2d===this._PathSeparator){return _a2c.substring(1);}return _a2c;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadItem",null,{GetFile:function(){return this._UploadProvider.FSEntry.GetFile();},GetUrl:function(){return this._UploadProvider.Url.GetHref();},GetBaseUrl:function(){return this._UploadProvider.Url.GetBaseUrl();},GetName:function(){return this._UploadProvider.Url.GetName();},GetRelativePath:function(){return this._UploadProvider.Url.GetRelativePath();},IsFolder:function(){return this._UploadProvider.FSEntry.IsFolder();},GetSource:function(){return this._Source;},GetState:function(){return this._UploadProvider.GetState().GetAsEnum();},GetProgress:function(){return this._UploadProvider.GetProgress();},GetErrors:function(){return this._UploadProvider.Errors.slice();},GetLastError:function(){return this._UploadProvider.LastError;},OnUploadStartedCallback:null,OnUploadErrorCallback:null,CustomData:null,SetOverwrite:function(_a2e){this._UploadProvider.Settings.ForceRewrite=_a2e;},AddHeader:function(_a2f,_a30){this._UploadProvider.Settings.CustomHeaders=this._UploadProvider.Settings.CustomHeaders||[];var _a31=ITHit.Utils.FindBy(this._UploadProvider.Settings.CustomHeaders,function(_a32){return _a32.name===_a2f;});if(_a31){_a31.value=_a30;}else{this._UploadProvider.Settings.CustomHeaders.push({name:_a2f,value:_a30});}},SetRewrite:function(_a33){this.SetOverwrite(_a33);},GetOverwrite:function(){return this._UploadProvider.Settings.ForceRewrite;},GetRewrite:function(){return this.GetOverwrite();},SetDeleteOnCancel:function(_a34){if(this.IsFolder()&&_a34===true){throw new ITHit.Exceptions.ArgumentException(null,"bDelete");}this._UploadProvider.Settings.DeleteOnCancel=_a34;},GetDeleteOnCancel:function(){return this._UploadProvider.Settings.DeleteOnCancel;},SetSkip:function(){this._UploadProvider.Skip();},SetFailed:function(_a35){if(!(_a35 instanceof ITHit.WebDAV.Client.Exceptions.WebDavException)){var _a36=ITHit.Phrases.WrongParameterType.Paste("ITHit.WebDAV.Client.Exceptions.WebDavException");throw new ITHit.Exceptions.ArgumentException(_a36,"oError");}this._UploadProvider.SetFailed(_a35);},_SetProgress:function(_a37){var _a38=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_a37.OldProgress,_a37.NewProgress);ITHit.Events.DispatchEvent(this,_a38.Name,_a38);},_Source:null,_UploadProvider:null,constructor:function(sUrl,_a3a,_a3b,_a3c,_a3d,_a3e){this._Source=_a3b||null;this._GroupManager=_a3d;var _a3f=new ITHit.WebDAV.Client.Upload.Utils.DavUrl(ITHit.WebDAV.Client.Encoder.Encode(_a3a.GetRelativePath()),sUrl);this._UploadProvider=new ITHit.WebDAV.Client.Upload.Providers.UploadProvider(_a3c,this,_a3a,_a3f,_a3e);this._UploadProvider.AddListener("OnProgressChanged",this._SetProgress,this);this._UploadProvider.AddListener("OnStateChanged",this._OnStateChangedEventHandler,this);this._UploadProvider.AddListener("OnError",this._OnErrorEventHandler,this);this.CustomData={};},StartAsync:function(_a40){_a40=_a40||function(){};if(this.GetState()!==ITHit.WebDAV.Client.Upload.State.Paused){var that=this;this._GetUploadBehaviourAsync(function(){if(that.GetState()===ITHit.WebDAV.Client.Upload.State.Skipped){_a40();}else{that._UploadProvider.StartUploadAsync(_a40);}});}else{this._UploadProvider.StartUploadAsync(_a40);}},PauseAsync:function(_a42){_a42=_a42||function(){};this._UploadProvider.PauseUpload(_a42);},CancelAsync:function(_a43,_a44,_a45){_a45=_a45||function(){};_a43=_a43||5;_a44=_a44||500;this._UploadProvider.AbortUpload(_a43,_a44,_a45);},GetSize:function(){return this._UploadProvider.FSEntry.GetSize();},_GetUploadBehaviourAsync:function(_a46){var _a47=new ITHit.WebDAV.Client.Upload.Events.BeforeUploadStarted(this,_a46);if(this.OnUploadStartedCallback){this.OnUploadStartedCallback(_a47);}else{if(ITHit.Events.ListenersLength(this,_a47.Name)!==0){ITHit.Events.DispatchEvent(this,_a47.Name,_a47);}else{_a46();}}},AddListener:function(_a48,_a49,_a4a){this._ValidateEventName(_a48);_a4a=_a4a||null;ITHit.Events.AddListener(this,_a48,_a49,_a4a);},RemoveListener:function(_a4b,_a4c,_a4d){this._ValidateEventName(_a4b);_a4d=_a4d||null;ITHit.Events.RemoveListener(this,_a4b,_a4c,_a4d);},_ValidateEventName:function(_a4e){switch(_a4e){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnBeforeUploadStarted:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a4e+"`");}},GetGroup:function(){return this._GroupManager.GetGroupByItem(this);},_GroupManager:null,_OnStateChangedEventHandler:function(_a4f){var _a50=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_a4f.OldState,_a4f.NewState);ITHit.Events.DispatchEvent(this,_a50.Name,_a50);},_OnErrorEventHandler:function(_a51){var _a52=new ITHit.WebDAV.Client.Upload.Events.Error(this,_a51.Error);ITHit.Events.DispatchEvent(this,_a52.Name,_a52);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.QueueChanged",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{AddedItems:[],RemovedItems:[],constructor:function(_a53,_a54,_a55){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged;this.AddedItems=_a54||[];this.RemovedItems=_a55||[];this.Sender=_a53;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.FileSpan",null,{GetStart:function(){return this._Start;},SetStart:function(_a56){if(this._End&&_a56>this._End){throw new ITHit.Exceptions.ArgumentException("Start cant be bigger than end","iStart");}this._Start=_a56;},GetEnd:function(){return this._End;},SetEnd:function(iEnd){if(iEnd<this._Start){throw new ITHit.Exceptions.ArgumentException("End cant be smaller than start","iEnd");}this._End=iEnd||this._Blob.size;},_Start:0,_End:0,_Blob:null,constructor:function(_a58,_a59,iEnd){this._SetBlob(_a58);this.SetStart(_a59);this.SetEnd(iEnd||_a58.size);},_SetBlob:function(_a5b){this._Blob=_a5b;this._Start=0;this._End=_a5b.size;},IsFullFile:function(){return this._Start===0&&this._End===this._Blob.size;},IsPartFile:function(){return !this.IsFullFile();},GetSlice:function(){if(this.IsFullFile()){return this._Blob;}return this._Blob.slice(this._Start,this.End);},GetFile:function(){return this._Blob;},GetFullSize:function(){return this._Blob.size;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploadLocation",null,{constructor:function(_a5c,oUrl){this._FolderGenerator=_a5c;this._Url=oUrl;this._PathMap=new ITHit.WebDAV.Client.Upload.Path.PathCache();},CreateAsync:function(_a5e,_a5f){var _a60=function(_a61){delete this._CancellationCallback;_a5e.call(_a5f,_a61);};this._CancellationCallback=this._FolderGenerator.GeneratePathAsync(this._PathMap,this._Url,_a60,this);},IsExists:function(){return this._PathMap.Has(this._Url);},SetNotExists:function(){var _a62=this._GetAncestorsPaths(this._Url);_a62.forEach(function(oUrl){this._PathMap.Delete(oUrl);},this);},IsInProgress:function(){return !!this._CancellationCallback;},AbortRunningCreationAsync:function(_a64,_a65){if(!this._CancellationCallback){_a64.call(_a65);return;}this._CancellationCallback(function(){_a64.call(_a65);},this);},GetCache:function(){return this._PathMap;},SetCache:function(_a66){this._PathMap=_a66;},_CancellationCallback:null,_FolderGenerator:null,_PathMap:null,_Url:null,_GetAncestorsPaths:function(oUrl){var _a68=oUrl.GetRelativePath().split("/");if(_a68.length===0){return [];}if(_a68[_a68.length-1]===""){_a68=_a68.slice(0,-1);}var _a69=[];var path="";for(var i=0;i<_a68.length-1;i++){if(path!==""){path+="/";}path+=_a68[i];_a69.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _a69;}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ContentWriter",null,{Url:null,constructor:function(_a6d,oUrl){this._Session=_a6d;this.Url=oUrl;},SetProgressDebounce:function(_a6f){this._ReportPeriod=_a6f;},BeginWrite:function(_a70){this._InitializeRequestContext();var _a71=null;if(_a70.IsFolder()){_a71=this._CreateMKCOLRequest();this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();return;}_a71=this._CreatePutRequest(_a70);_a71.Headers.Add("Overwrite","F");this._AddCustomHeaders(_a71);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a71.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},BeginRewrite:function(_a72){this._InitializeRequestContext();var _a73=null;if(_a72.IsFolder()){_a73=this._CreateMKCOLRequest();this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnMKCOLRewriteErrorEventHandler,this);_a73.GetResponse(this._OnMKCOLRewriteResponse.bind(this));this._RaiseOnStartEvent();}else{_a73=this._CreatePutRequest(_a72);_a73.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a73);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a73.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();}},BeginAppend:function(_a74){this._InitializeRequestContext();var _a75=this._CreatePutAppendRequest(_a74);_a75.Headers.Add("Overwrite","T");this._AddCustomHeaders(_a75);this._RequestContext.AddListener("OnError",this._OnErrorEventHandler,this);_a75.GetResponse(this._OnResponse.bind(this));this._RaiseOnStartEvent();},AbortAsync:function(_a76,_a77){if(this._RequestContext){this._RequestContext.RemoveListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);this._RequestContext.AbortAsync(_a76,_a77);}},AddListener:function(_a78,_a79,_a7a){_a7a=_a7a||null;this._ValidateEventName(_a78);ITHit.Events.AddListener(this,_a78,_a79,_a7a);},RemoveListener:function(_a7b,_a7c,_a7d){_a7d=_a7d||null;this._ValidateEventName(_a7b);ITHit.Events.RemoveListener(this,_a7b,_a7c,_a7d);},_AddCustomHeaders:function(_a7e){if(!this.CustomHeaders){return;}var _a7f=[];var _a80=_a7e.Headers.GetAll();this.CustomHeaders.forEach(function(_a81){if(_a7f.indexOf(_a81.name)<0&&!_a80.hasOwnProperty(_a81.name)){_a7e.Headers.Add(_a81.name,_a81.value);_a7f.push(_a81.name);}});},_ValidateEventName:function(_a82){switch(_a82){case self.EVENT_ON_PROGRESS:case self.EVENT_ON_ERROR:case self.EVENT_ON_FINISH:case self.EVENT_ON_START:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_a82+"`");}},_InitializeRequestContext:function(){if(this.IsActive()){throw new ITHit.Exceptions("Content write already in progress");}this._RequestContext=this._Session.CreateRequest(this.__className);this._RequestContext.AddListener(ITHit.WebDAV.Client.Request.EVENT_ON_UPLOAD_PROGRESS,this._OnProgressEventHandler,this);},_CreateMKCOLRequest:function(){var _a83=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a83.Method("MKCOL");this._SetDefaultHeaders(_a83);return _a83;},_OnMKCOLRewriteResponse:function(_a84){if(this._IsConflictResult(_a84)){_a84=this._TransformToSuccess(_a84);}this._OnResponse(_a84);},_OnMKCOLRewriteErrorEventHandler:function(_a85){if(_a85.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return;}},_OnResponse:function(_a86){if(_a86.IsAborted){_a86=ITHit.WebDAV.Client.CancellableResult.CreateAbortedResult(_a86.Error);this._RequestContext.MarkAbort();}else{_a86=ITHit.WebDAV.Client.CancellableResult.CreateFromAsyncResultResult(_a86);this._RequestContext.MarkFinish();}this._RaiseOnFinishEvent(_a86);this._RemoveRequestContextEventListeners();},_CreatePutRequest:function(_a87){var _a88=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a88.Method("PUT");if(_a87.GetFile().type){_a88.Headers.Add("Content-Type",_a87.GetFile().type);}_a88.BodyBinary(_a87.GetFile());this._SetDefaultHeaders(_a88);return _a88;},_CreatePutAppendRequest:function(_a89){var _a8a=this._RequestContext.CreateWebDavRequest(ITHit.WebDAV.Client.Encoder.Encode(this.Url.GetOrigin()),this.Url.GetHref());_a8a.Method("PUT");if(_a89.GetFile().type){_a8a.Headers.Add("Content-Type",_a89.GetFile().type);}if(_a89.IsPartFile()){_a8a.Headers.Add("Content-Range",this._GetRangeHeader(_a89));_a8a.BodyBinary(_a89.GetSlice());}else{_a8a.BodyBinary(_a89.GetFile());}this._SetDefaultHeaders(_a8a);return _a8a;},_GetRangeHeader:function(_a8b){return "bytes "+_a8b.GetStart()+"-"+(_a8b.GetEnd()-1)+"/"+_a8b.GetFullSize();},_TransformToSuccess:function(_a8c){return new ITHit.WebDAV.Client.AsyncResult(_a8c.Error,true,null);},_IsConflictResult:function(_a8d){return _a8d.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException;},_RaiseOnProgressEvent:function(_a8e){ITHit.Events.DispatchEvent(this,self.EVENT_ON_PROGRESS,[{Progress:_a8e,Uploader:this}]);},_RaiseOnErrorEvent:function(_a8f){ITHit.Events.DispatchEvent(this,self.EVENT_ON_ERROR,[{Error:_a8f,Uploader:this}]);},_RaiseOnFinishEvent:function(_a90){ITHit.Events.DispatchEvent(this,self.EVENT_ON_FINISH,[{Uploader:this,Result:_a90}]);},_RaiseOnStartEvent:function(){ITHit.Events.DispatchEvent(this,self.EVENT_ON_START,[{Uploader:this}]);},_OnProgressEventHandler:function(_a91){var iNow=new Date().getTime();if(iNow-this._LastReportTime>this._ReportPeriod||_a91.Progress.BytesTotal===_a91.Progress.BytesLoaded){this._RaiseOnProgressEvent(_a91.Progress);this._LastReportTime=iNow;}},_OnErrorEventHandler:function(_a93){this._RaiseOnErrorEvent(_a93.Error);},_RemoveRequestContextEventListeners:function(){ITHit.Events.RemoveAllListeners(this._RequestContext,"OnUploadProgress");ITHit.Events.RemoveAllListeners(this._RequestContext,"OnError");delete this._RequestContext;},_SetDefaultHeaders:function(_a94){_a94.Headers.Add("If-Modified-Since","Mon, 26 Jul 1997 05:00:00 GMT");_a94.Headers.Add("X-Requested-With","XMLHttpRequest");},IsActive:function(){return !!this._RequestContext;},_Session:null,_RequestContext:null,_ReportPeriod:1000,_LastReportTime:0},{EVENT_ON_PROGRESS:"OnProgress",EVENT_ON_ERROR:"OnError",EVENT_ON_FINISH:"OnFinish",EVENT_ON_START:"OnStart"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Path.Generator",null,{constructor:function(_a95){this._Session=_a95;this._WorkList=new ITHit.WebDAV.Client.Upload.Collections.Map();},_SendRequest:function(oUrl){var _a97=this._Session.CreateRequest(this.__className+".GeneratePathAsync()");ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_a97,oUrl.toString(),[],ITHit.WebDAV.Client.Encoder.Encode(oUrl.GetHost()),function(_a98){if(_a98.IsAborted){_a97.MarkAbort();}else{_a97.MarkFinish();}this._CallAwaiters(oUrl,_a98);}.bind(this));return _a97;},_RecurrentGenerate:function(_a99,_a9a,_a9b,_a9c){var _a9d=null;var _a9e=null;var _a9f=function(_aa0,_aa1){if(!!_a9d){_a9d.AbortAsync(_aa0,_aa1);return;}if(!!_a9e){_a9e(_aa0,_aa1);}_aa0.call(_a9c);};var _aa2=_a9a.slice();var _aa3=[];while(_aa2.length>0){var oUrl=_aa2[0];if(!_a99.Has(oUrl)){break;}_aa3.push(oUrl);_aa2.splice(0,1);}if(_aa2.length===0){_a9b.call(_a9c,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3));return _a9f;}var _aa5=_aa2.shift();if(!this._IsInWork(_aa5)){_a9d=this._SendRequest(_aa5);}this._AddAwaiter(_aa5,function(_aa6){if(!_aa6.IsSuccess&&!this._IsConflictResult(_aa6)){_a9b.call(_a9c,_aa6);return;}_a99.Add(_aa5);_aa3.push(oUrl);_a9d=null;_a9e=this._RecurrentGenerate(_a99,_aa2,function(_aa7){if(_aa7.IsSuccess||this._IsConflictResult(_aa6)){_aa7.Result.concat(_aa3);_aa7=ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(_aa3);}_a9e=null;_a9b.call(_a9c,_aa7);return;},this);}.bind(this));return _a9f;},GeneratePathAsync:function(_aa8,oUrl,_aaa,_aab){var _aac=this._GetAncestorsPaths(oUrl);if(_aac.length===0){return _aaa.call(_aab,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([]));}return this._RecurrentGenerate(_aa8,_aac,_aaa,_aab);},_Session:null,_WorkList:null,_GetAncestorsPaths:function(oUrl){var _aae=oUrl.GetRelativePath().split("/");if(_aae.length===0){return [];}if(_aae[_aae.length-1]===""){_aae=_aae.slice(0,-1);}var _aaf=[];var path="";for(var i=0;i<_aae.length-1;i++){if(path!==""){path+="/";}path+=_aae[i];_aaf.push(new ITHit.WebDAV.Client.Upload.Utils.DavUrl(path,oUrl.GetBaseUrl()));}return _aaf;},_IsInWork:function(oUrl){var _ab3=this._WorkList.Get(oUrl.toString());return _ab3&&(_ab3.length>0);},_AddAwaiter:function(oUrl,_ab5){var _ab6=this._WorkList.Get(oUrl.toString());var _ab7=[];if(_ab6){_ab7=_ab7.concat(_ab6);}_ab7.push(_ab5);this._WorkList.Set(oUrl.toString(),_ab7);},_CallAwaiters:function(oUrl,_ab9){var _aba=this._WorkList.Get(oUrl.toString());this._WorkList.Delete(oUrl.toString());_aba.forEach(function(_abb){_abb(_ab9);});},_IsConflictResult:function(_abc){if(_abc.IsSuccess){return false;}if(_abc.Error&&_abc.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){return true;}return false;}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.UploaderSession",ITHit.WebDAV.Client.WebDavSession,{ExistsFolders:[],GetProgressReportAsync:function(sUrl,_abe,_abf){var _ac0=this.CreateRequest(this.__className+".ReportAsync()");var _ac1=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.Report.GoAsync(_ac0,sUrl,_ac1,null,null,function(_ac2){_ac0.MarkFinish();_abe.call(_abf,_ac2);});return _ac0;},CancelUploadAsync:function(sUrl,_ac4){var _ac5=this.CreateRequest(this.__className+".CancelUpload()");var _ac6=ITHit.WebDAV.Client.HierarchyItem.GetHost(sUrl);ITHit.WebDAV.Client.Methods.CancelUpload.GoAsync(_ac5,sUrl,[],_ac6,function(_ac7){_ac5.MarkFinish();var _ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_ac7.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ac8=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}else{if(!_ac7.IsSuccess){_ac8=new ITHit.WebDAV.Client.AsyncResult(_ac7.IsSuccess,_ac7.IsSuccess,_ac7.Error);}}_ac4(_ac8);});return _ac5;},CheckExistsAsync:function(sUrl,_aca,_acb){_aca=_aca||function(){};return this.OpenItemAsync(ITHit.WebDAV.Client.Encoder.Encode(sUrl),[],function(_acc){var _acd=new ITHit.WebDAV.Client.AsyncResult(true,true,null);if(_acc.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_acd=new ITHit.WebDAV.Client.AsyncResult(false,true,null);}else{if(!_acc.IsSuccess){_acd=new ITHit.WebDAV.Client.AsyncResult(_acc.IsSuccess,_acc.IsSuccess,_acc.Error);}}_aca.call(_acb,_acd);});},DeleteAsync:function(_ace,_acf,_ad0){_acf=_acf||null;var _ad1=ITHit.WebDAV.Client.HierarchyItem.GetHost(_ace);var _ad2=this.CreateRequest(this.__className+".DeleteAsync()");ITHit.WebDAV.Client.Methods.Delete.GoAsync(_ad2,_ace,_acf,_ad1,function(_ad3){if(!_ad3.IsSuccess&&_ad3.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){_ad3=new ITHit.WebDAV.Client.AsyncResult(true,true,null);}_ad2.MarkFinish();_ad0(_ad3);});return _ad2;},CreateFolderRangeAsync:function(_ad4,_ad5,_ad6,_ad7){_ad5=_ad5||null;_ad6=_ad6||ITHit.Utils.NoOp;var _ad8=_ad4.length;var _ad9=this.CreateRequest(this.__className+".CreateFolderRangeAsync()",_ad8);this._PerformCreateFolderRangeMethodAsync(_ad9,_ad4,_ad5,function(_ada){_ad9.MarkFinish();_ad6.call(_ad7,_ada);});return _ad9;},_PerformCreateFolderRangeMethodAsync:function(_adb,_adc,_add,_ade,_adf){_ade=_ade||ITHit.Utils.NoOp;_adc=_adc.slice();var _ae0=_adc.unshift();var _ae1=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHref());var _ae2=ITHit.WebDAV.Client.Encoder.Encode(_ae0.GetHost());ITHit.WebDAV.Client.Methods.Mkcol.GoAsync(_adb,_ae1,_add,_ae2,function(_ae3){if(_ae3.IsSuccess||_ae3.Error instanceof ITHit.WebDAV.Client.Exceptions.MethodNotAllowedException){_ae3=new ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult([_ae0]);}if(_adc.length>0&&_ae3.IsSuccess){this._PerformCreateFolderRangeMethodAsync(_adb,_adc,_add,function(_ae4){if(_ae4.IsSuccess){_ae4.Result.push(_ae0);}_ade.call(_adf,_ae4);return;},this);}else{_ade.call(_adf,_ae3);return;}});},CreateUploadLocation:function(oUrl){return new ITHit.WebDAV.Client.Upload.UploadLocation(this.GetPathGenerator(),oUrl);},CreateContentWriter:function(oUrl){return new ITHit.WebDAV.Client.Upload.ContentWriter(this,oUrl);},GetPathGenerator:function(){if(!this._PathGenerator){this._PathGenerator=new ITHit.WebDAV.Client.Upload.Path.Generator(this);}return this._PathGenerator;},_PathGenerator:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext",null,{_RoundsCount:0,_IsActive:true,_Handler:null,_EndHandler:null,_RepeatTime:0,constructor:function(_ae7,_ae8,_ae9,_aea){this._RoundsCount=_ae7;this._Handler=_ae9;this._EndHandler=_aea;this._IsActive=!!_ae7;this._RepeatTime=_ae8;},Stop:function(_aeb){this._IsActive=false;this._RoundsCount=0;this._EndHandler(_aeb);},_RunRound:function(){if(this._IsActive){this._Handler(this);}else{this.Stop();}},EndRound:function(_aec){this._RoundsCount--;if(this._RoundsCount===0){this.Stop(_aec);}else{setTimeout(this._RunRound.bind(this),this._RepeatTime);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.RepeatableAction",null,{_Action:null,constructor:function(_aed){this._Action=_aed;},RunAsync:function(_aee,_aef,_af0){var _af1=new ITHit.WebDAV.Client.Upload.Utils.RepeatableActionContext(_aee,_aef,this._Action,_af0);_af1._RunRound();}});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadError",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Error:null,Skip:function(){if(this._IsHandled){return;}this._SkipRetry(this.Items);},Retry:function(){if(this._IsHandled){return;}this._Retry(this.Items);},constructor:function(_af3,_af4,_af5){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadError;this.Error=_af4;this._super(_af3,_af5);},_Retry:function(){this._Handle(self.GetRetryResult(this.Error));},_SkipRetry:function(){this._Handle(self.GetSkipResult(this.Error));}},{GetSkipResult:function(_af6){return {Action:"skip",Error:_af6};},GetRetryResult:function(_af7){return {Action:"retry",Error:_af7};}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.Error",ITHit.WebDAV.Client.Upload.Events.BaseEvent,{Error:null,constructor:function(_af8,_af9){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnError;this.Error=_af9;this.Sender=_af8;}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.BaseState",null,{OnEnter:function(_afa){},OnLeave:function(_afb){},StartUploadAsync:function(_afc,_afd){_afd();},PauseUpload:function(_afe,_aff){_aff();},AbortUpload:function(_b00,_b01,_b02,_b03){_b03();},Skip:function(_b04){},OnUploadLocationPrepared:function(_b05,_b06){},OnUploadProgressPrepared:function(_b07,_b08){},OnContentCompleted:function(_b09,_b0a){},OnRetryResult:function(_b0b,_b0c){},_CompletePauseAsync:function(_b0d,_b0e,_b0f){if(_b0d.IsRetrySchedule){_b0d.IsRetrySchedule=false;}_b0d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetPausedState());_b0e.call(_b0f);},_StartPauseAsync:function(_b10,_b11){_b10._ProgressTracker.StopTracking();_b10.CancelAllRequests(function(){if(_b10.IsContentSend){_b10.SyncProgressWithServerAsync(function(_b12){this._CompletePauseAsync(_b10,_b11);},this);return;}this._CompletePauseAsync(_b10,_b11);},this);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CompletedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Completed;},OnEnter:function(_b13){_b13.GetProgressTracker().StopTracking();_b13.GetProgressTracker().SetCompleted();},StartUploadAsync:function(_b14,_b15){_b14.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b14,_b15);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.SkippedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Skipped;},StartUploadAsync:function(_b16,_b17){_b16.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b16,_b17);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.QueuedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Queued;},StartUploadAsync:function(_b18,_b19){_b18.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b18,_b19);},Skip:function(_b1a){_b1a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetSkippedState());},PauseUpload:function(_b1b,_b1c){this._StartPauseAsync(_b1b,_b1c);},AbortUpload:function(_b1d,_b1e,_b1f,_b20){_b1d.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());this._super(_b1d,_b1e,_b1f,_b20);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.CanceledState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Canceled;},OnEnter:function(_b21){_b21.GetProgressTracker().StopTracking();_b21.GetProgressTracker().Reset();},StartUploadAsync:function(_b22,_b23){_b22.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b22,_b23);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.UploadingState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Uploading;},OnEnter:function(_b24){_b24.PrepareUploadLocation();},PauseUpload:function(_b25,_b26){this._StartPauseAsync(_b25,_b26);},AbortUpload:function(_b27,_b28,_b29,_b2a){_b27.CancelAllRequests(function(){_b27.GetProgressTracker().StopTracking();_b27.CancelAndDeleteAsync(_b28,_b29,function(_b2b){if(_b2b.IsSuccess){_b27.GetProgressTracker().Reset();_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b27.AddError(_b2b.Error);_b27.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b2a();},this);},this);},OnContentCompleted:function(_b2c,_b2d){var _b2e=_b2d.Result;if(_b2e.IsAborted){return;}if(_b2e.IsSuccess){_b2c.GetProgressTracker().SetCompleted();_b2c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());return;}this._HandleError(_b2c,_b2e);},_HandleError:function(_b2f,_b30){_b2f.AddError(_b30.Error);_b2f.BeginRetry(_b30.Error);},OnRetryResult:function(_b31,_b32){if(_b32.Action==="skip"){_b31.AddError(_b32.Error);_b31.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());return;}if(_b31.IsContentSend){_b31.SyncProgressWithServerAsync(function(_b33){if(_b33.Error){this._HandleError(_b32.Error);}else{this.OnEnter(_b31);}},this);return;}this.OnEnter(_b31);},OnUploadLocationPrepared:function(_b34,_b35){if(_b35.IsAborted){return;}if(!_b35.IsSuccess){this._HandleError(_b34,_b35);return;}_b34._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.ResumeState",ITHit.WebDAV.Client.Upload.States.UploadingState,{OnEnter:function(_b36){if(_b36.IsContentSend){_b36.PrepareProgress();return;}this._super(_b36);},OnUploadProgressPrepared:function(_b37,_b38){if(_b38.IsAborted){return;}if(!_b38.IsSuccess){this._HandleError(_b37,_b38);return;}if(_b37.GetProgressTracker().IsCompleted()){_b37.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCompletedState());}_b37._SendContent();}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.PausedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Paused;},OnEnter:function(_b39){_b39.GetProgressTracker().StopTracking();_b39.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b3a,_b3b){_b3a.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetResumeState());this._super(_b3a,_b3b);},AbortUpload:function(_b3c,_b3d,_b3e,_b3f){if(_b3c.IsContentSend){_b3c.CancelAndDeleteAsync(_b3d,_b3e,function(_b40){if(_b40.IsSuccess){_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b3c.AddError(_b40.Error);_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b3f();},this);}else{_b3c.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b3f();}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.FailedState",ITHit.WebDAV.Client.Upload.States.BaseState,{GetAsEnum:function(){return ITHit.WebDAV.Client.Upload.State.Failed;},OnEnter:function(_b41){_b41.GetProgressTracker().StopTracking();_b41.GetProgressTracker().ResetSpeed();},StartUploadAsync:function(_b42,_b43){_b42.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetUploadingState());this._super(_b42,_b43);},AbortUpload:function(_b44,_b45,_b46,_b47){if(_b44.IsContentSend){_b44.CancelAndDeleteAsync(_b45,_b46,function(_b48){if(_b48.IsSuccess){_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());}else{_b44.AddError(_b48.Error);_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState());}_b47();},this);}else{_b44.SetState(ITHit.WebDAV.Client.Upload.States.Factory.GetCanceledState());_b47();}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Settings",null,{ConcurrentUploads:2,State:ITHit.WebDAV.Client.Upload.State.Queued,DeleteOnCancel:true});})();(function(){"use strict";var self=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.States.Factory",null,{},{GetUploadingState:function(){if(!self._UploadingState){self._UploadingState=new ITHit.WebDAV.Client.Upload.States.UploadingState();}return self._UploadingState;},GetSkippedState:function(){if(!self._SkippedState){self._SkippedState=new ITHit.WebDAV.Client.Upload.States.SkippedState();}return self._SkippedState;},GetQueuedState:function(){if(!self._QueuedState){self._QueuedState=new ITHit.WebDAV.Client.Upload.States.QueuedState();}return self._QueuedState;},GetPausedState:function(){if(!self._PausedState){self._PausedState=new ITHit.WebDAV.Client.Upload.States.PausedState();}return self._PausedState;},GetFailedState:function(){if(!self._FailedState){self._FailedState=new ITHit.WebDAV.Client.Upload.States.FailedState();}return self._FailedState;},GetCompletedState:function(){if(!self._CompletedState){self._CompletedState=new ITHit.WebDAV.Client.Upload.States.CompletedState();}return self._CompletedState;},GetCanceledState:function(){if(!self._CanceledState){self._CanceledState=new ITHit.WebDAV.Client.Upload.States.CanceledState();}return self._CanceledState;},GetResumeState:function(){if(!self._ResumeState){self._ResumeState=new ITHit.WebDAV.Client.Upload.States.ResumeState();}return self._ResumeState;},GetState:function(_b4a){switch(_b4a){case ITHit.WebDAV.Client.Upload.State.Canceled:return self.GetCanceledState();case ITHit.WebDAV.Client.Upload.State.Completed:return self.GetCompletedState();case ITHit.WebDAV.Client.Upload.State.Failed:return self.GetFailedState();case ITHit.WebDAV.Client.Upload.State.Paused:return self.GetPausedState();case ITHit.WebDAV.Client.Upload.State.Queued:return self.GetQueuedState();case ITHit.WebDAV.Client.Upload.State.Skipped:return self.GetSkippedState();case ITHit.WebDAV.Client.Upload.State.Uploading:return self.GetUploadingState();default:throw new ITHit.Exceptions.ArgumentException(null,"oState");}}});})();(function(){ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ItemSettings",null,{ForceRewrite:false,AlwaysRewriteFolders:true,IgnoreCancelErrors:false,DeleteOnCancel:false});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.ServerItem",null,{constructor:function(_b4b,oUrl){this._Session=_b4b;this._Url=oUrl;},GetProgressAsync:function(_b4d,_b4e){return this._Session.GetProgressReportAsync(this._Url.GetHref(),function(_b4f){if(_b4f.IsSuccess&&_b4f.Result[0]){var _b50=_b4f.Result[0];_b4d.call(_b4e,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(_b50));return;}_b4d.call(_b4e,_b4f);},this);},CancelUploadAsync:function(_b51,_b52){this._Session.CancelUploadAsync(this._Url.GetHref(),function(_b53){_b51.call(_b52,_b53);});},DeleteAsync:function(_b54,_b55,_b56,_b57){var that=this;var _b59=new ITHit.WebDAV.Client.Upload.Utils.RepeatableAction(function(_b5a){that._Session.DeleteAsync(that._Url.GetHref(),null,function(_b5b){if(_b5b.IsSuccess){_b5a.Stop(_b5b);}else{_b5a.EndRound(_b5b);}});});_b59.RunAsync(_b54,_b55,function(_b5c){_b56.call(_b57,_b5c);});},CancelAndDeleteAsync:function(_b5d,_b5e,_b5f,_b60){this.CancelUploadAsync(function(_b61){if(!_b61.IsSuccess){return _b5f.call(_b60,_b61);}this.DeleteAsync(_b5d,_b5e,_b5f,_b60);},this);},_Url:null,_Session:null});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Providers.UploadProvider",null,{Session:null,_UploadItem:null,constructor:function(_b62,_b63,_b64,oUrl,_b66){this.FSEntry=_b64;this.Url=oUrl;this.Settings=new ITHit.WebDAV.Client.Upload.ItemSettings();if(this.FSEntry.IsFile()){this.Settings.DeleteOnCancel=_b66.DeleteOnCancel;}else{this.Settings.DeleteOnCancel=false;}this.Session=_b62;this._UploadItem=_b63;this._ProgressTracker=new ITHit.WebDAV.Client.Upload.Providers.ProgressTracker(this.FSEntry.GetSize());this._State=ITHit.WebDAV.Client.Upload.States.Factory.GetState(_b66.State);this.Errors=[];this.UploadLocation=_b62.CreateUploadLocation(this.Url);this.ServerItem=new ITHit.WebDAV.Client.Upload.ServerItem(_b62,this.Url);this.ContentWriter=_b62.CreateContentWriter(this.Url);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_PROGRESS,this.OnRequestProgressEventHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_FINISH,this._LoadHandler,this);this.ContentWriter.AddListener(ITHit.WebDAV.Client.Upload.ContentWriter.EVENT_ON_START,this._StartLoadHandler,this);this._ProgressTracker.OnProgressChanged(this._SetProgress,this);},StartUploadAsync:function(_b67){this._BeginStateChange();this._State.StartUploadAsync(this,_b67);},PauseUpload:function(_b68){this._BeginStateChange();this._State.PauseUpload(this,_b68);},AbortUpload:function(_b69,_b6a,_b6b){this._BeginStateChange();_b6b=_b6b||function(){};this._State.AbortUpload(this,_b69,_b6a,_b6b);},Skip:function(){this._BeginStateChange();this._State.Skip(this);},GetGroup:function(){return this._UploadItem.GetGroup();},GetProgressTracker:function(){return this._ProgressTracker;},_ProgressTracker:null,AddListener:function(_b6c,_b6d,_b6e){this._ValidateEventName(_b6c);_b6e=_b6e||null;ITHit.Events.AddListener(this,_b6c,_b6d,_b6e);},RemoveListener:function(_b6f,_b70,_b71){this._ValidateEventName(_b6f);_b71=_b71||null;ITHit.Events.RemoveListener(this,_b6f,_b70,_b71);},_ValidateEventName:function(_b72){switch(_b72){case ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnError:case ITHit.WebDAV.Client.Upload.Events.EventName.OnProgressChanged:break;default:throw new ITHit.Exceptions.ArgumentException("Not found event name `"+_b72+"`");}},CheckRetryAsync:function(_b73,_b74,_b75){var _b76=new ITHit.WebDAV.Client.Upload.Events.UploadError(this._UploadItem,_b73,function(_b77){if(!this.IsRetrySchedule){return;}_b74.call(_b75,_b77);}.bind(this));if(!this._UploadItem.OnUploadErrorCallback&&(ITHit.Events.ListenersLength(this._UploadItem,_b76.Name)===0)){_b74.call(_b75,ITHit.WebDAV.Client.Upload.Events.UploadError.GetSkipResult(_b73));return;}this.IsRetrySchedule=true;if(this._UploadItem.OnUploadErrorCallback){this._UploadItem.OnUploadErrorCallback.call(this,_b76);}ITHit.Events.DispatchEvent(this._UploadItem,_b76.Name,_b76);},Errors:null,LastError:null,AddError:function(_b78){this.AddErrorSilent(_b78);this._RiseOnErrorEvent(_b78);},AddErrorSilent:function(_b79){this.LastError=_b79;this.Errors.push(_b79);},SetFailed:function(_b7a){var _b7b=ITHit.WebDAV.Client.Upload.States.Factory.GetFailedState();this.AddError(_b7a);this.SetState(_b7b);},_RiseOnErrorEvent:function(_b7c){var _b7d=new ITHit.WebDAV.Client.Upload.Events.Error(this,_b7c);ITHit.Events.DispatchEvent(this,_b7d.Name,_b7d);},UploadLocation:null,IsContentSend:false,ServerItem:null,_LoadHandler:function(_b7e){if(_b7e.Result.Error instanceof ITHit.WebDAV.Client.Exceptions.ConflictException){this.UploadLocation.SetNotExists();this.IsContentSend=false;}this._State.OnContentCompleted(this,_b7e);},_StartLoadHandler:function(_b7f){this.IsContentSend=true;},OnRequestProgressEventHandler:function(_b80){this.GetProgressTracker().UpdateBytes(_b80.Progress.BytesLoaded,_b80.Progress.TotalBytes);},_SendContent:function(){this._ProgressTracker.StartTracking();if(this.Settings&&this.Settings.CustomHeaders){this.ContentWriter.CustomHeaders=this.Settings.CustomHeaders;}if(this.FSEntry.IsFolder()){if(this.Settings.ForceRewrite||this.Settings.AlwaysRewriteFolders){this.ContentWriter.BeginRewrite(this.FSEntry);}else{this.ContentWriter.BeginWrite(this.FSEntry);}}else{var _b81=new ITHit.WebDAV.Client.Upload.FileSpan(this.FSEntry.GetFile(),this._ProgressTracker.GetProgress().UploadedBytes);if(_b81.IsFullFile()&&(this.Settings.ForceRewrite||this.IsContentSend)){this.ContentWriter.BeginRewrite(this.FSEntry);return;}if(_b81.IsFullFile()&&!(this.Settings.ForceRewrite&&this.IsContentSend)){this.ContentWriter.BeginWrite(this.FSEntry);return;}this.ContentWriter.BeginAppend(_b81);}},SyncProgressWithServerAsync:function(_b82,_b83){if(!this._ProgressTracker.IsCountable()){return this.Session.CheckExistsAsync(this.Url.GetUrl(),function(_b84){if(!_b84.IsSuccess){_b82.call(_b83,_b84);return;}if(_b84.Result===true){this._ProgressTracker.SetCompleted();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));},this);}return this.ServerItem.GetProgressAsync(function(_b85){if(_b85.IsSuccess){this._ProgressTracker.SyncProgress(_b85.Result);_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}if(_b85.Error instanceof ITHit.WebDAV.Client.Exceptions.NotFoundException){this._ProgressTracker.Reset();_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateSuccessfulResult(this._ProgressTracker.GetProgress()));return;}_b82.call(_b83,ITHit.WebDAV.Client.CancellableResult.CreateFailedResult(_b85.Error));},this);},IsRetrySchedule:false,PrepareUploadLocation:function(){this.UploadLocation.SetCache(this.GetGroup().PathMap);this.UploadLocation.CreateAsync(this._OnGeneratePathCompleted,this);},_OnGeneratePathCompleted:function(_b86){if(_b86.IsAborted){return;}this._State.OnUploadLocationPrepared(this,_b86);},CancelAllRequests:function(_b87,_b88){this._CancelProgressAsync(function(){this._CancelLocationCreateAsync(function(){this._CancelContentSendingAsync(_b87,_b88);},this);},this);},_CancelLocationCreateAsync:function(_b89,_b8a){if(this.UploadLocation.IsInProgress()){this.UploadLocation.AbortRunningCreationAsync(function(){_b89.call(_b8a);},this);}else{_b89.call(_b8a);}},_CancelContentSendingAsync:function(_b8b,_b8c){if(this.ContentWriter.IsActive()){this.ContentWriter.AbortAsync(function(){_b8b.call(_b8c);},this);}else{_b8b.call(_b8c);}},_CancelProgressAsync:function(_b8d,_b8e){if(this.IsProgressSyncInProgress){this._SyncProgressRequest.AbortAsync(function(){_b8d.call(_b8e);},this);}else{_b8d.call(_b8e);}},_SyncProgressRequest:null,IsProgressSyncInProgress:false,PrepareProgress:function(){this._SyncProgressRequest=this.SyncProgressWithServerAsync(this._OnUpdateFromServerCompleted,this);},_OnUpdateFromServerCompleted:function(_b8f){this.IsProgressSyncInProgress=false;if(_b8f.IsAborted){return;}this._State.OnUploadProgressPrepared(this,_b8f);},_IsStateChanging:function(){return this._IsChanging;},SetState:function(_b90){var _b91=this._State;this._State.OnLeave(this);this._State=_b90;this._State.OnEnter(this);var _b92=new ITHit.WebDAV.Client.Upload.Events.StateChanged(this,_b91.GetAsEnum(),this._State.GetAsEnum());ITHit.Events.DispatchEvent(this,_b92.Name,_b92);},GetState:function(){return this._State;},_State:null,_IsChanging:false,_BeginStateChange:function(){this._IsChanging=true;},_EndStateChange:function(){this._IsChanging=false;},ContentWriter:null,BeginRetry:function(_b93){this._ProgressTracker.StopTracking();this.CheckRetryAsync(_b93,this._OnCheckRetryCompleted,this);},_OnCheckRetryCompleted:function(_b94){this._State.OnRetryResult(this,_b94);},Settings:null,FSEntry:null,Url:null,CancelAndDeleteAsync:function(_b95,_b96,_b97,_b98){this.ServerItem.CancelUploadAsync(function(_b99){if(!this.Settings.DeleteOnCancel){_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));return;}this.ServerItem.DeleteAsync(_b95,_b96,function(_b9a){if(!_b9a.IsSuccess&&!this.Settings.IgnoreCancelErrors){return _b97.call(_b98,_b99);}this.IsContentSend=false;_b97.call(_b98,ITHit.WebDAV.Client.AsyncResult.CreateSuccessfulResult(null));},this);},this);},GetProgress:function(){return this._ProgressTracker.GetProgress();},_SetProgress:function(_b9b){var _b9c=this._Progress;this._Progress=_b9b;var _b9d=new ITHit.WebDAV.Client.Upload.Events.ProgressChanged(this,_b9c,_b9b);ITHit.Events.DispatchEvent(this,_b9d.Name,_b9d);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated",ITHit.WebDAV.Client.Upload.Events.AsyncEvent,{Items:[],Skip:function(_b9e){if(this._IsHandled){return;}this._Skip(_b9e);},SkipAll:function(){if(this._IsHandled){return;}this._Skip(this.Items);},OverwriteAll:function(){if(this._IsHandled){return;}this._Overwrite(this.Items);},Overwrite:function(_b9f){if(this._IsHandled){return;}this._Overwrite(_b9f);},UploadAll:function(){if(this._IsHandled){return;}this.Upload(this.Items);},Upload:function(_ba0){if(this._IsHandled){return;}this._Handle({Skip:[],Overwrite:[],Original:this.Items,Upload:_ba0});},constructor:function(_ba1,_ba2,_ba3){this.Name=ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated;this.Items=_ba2||[];this._super(_ba1,_ba3);},_Overwrite:function(_ba4){var _ba5=this._CreateResult([],_ba4);this._Handle(_ba5);},_Skip:function(_ba6){var _ba7=this._CreateResult(_ba6,[]);this._Handle(_ba7);},_CreateResult:function(_ba8,_ba9){return {Skip:_ba8||[],Overwrite:_ba9||[],Original:this.Items};},_Handle:function(_baa){_baa=_baa||this._CreateResult();this._super(_baa);}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Utils.Array",null,{},{MapParallel:function(_bab,_bac,_bad,_bae){var _baf=[];var _bb0=0;if(_bab.length===0){setTimeout(_bad.apply(_bae,_bab));}for(var i=0;i<_bab.length;i++){_bac.apply(_bae,[_bab[i],i,_bab,ITHit.Utils.MakeScopeClosure(this,function(i,_bb3){_baf[i]=_bb3;_bb0++;if(_bb0===_bab.length){setTimeout(_bad.call(_bae,_baf));}},i)]);}},DistinctBy:function(_bb4,_bb5,_bb6){var map=Object.create(null);_bb5=_bb5||Object.prototype.toString;for(var i=0;i<_bb4.length;i++){var _bb9=_bb5.call(_bb6,_bb4[i]).toString();if(!map[_bb9]){map[_bb9]=_bb4[i];}}return Object.keys(map).map(function(sKey){return map[sKey];});},Take:function(_bbb,_bbc){if(!_bbc){return [_bbb.shift()];}var _bbd=(_bbb.length>_bbc)?_bbc:_bbb.length;var _bbe=[];for(var i=0;i<_bbd;i++){_bbe.push(_bbb.shift());}return _bbe;},Remove:function(_bc0,_bc1){var _bc2=_bc0.indexOf(_bc1);if(_bc2>-1){_bc0.splice(_bc2,1);}}});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.AutoUploader",null,{constructor:function(_bc3){this._ParallelUploads=_bc3||0;this._QueueArray=[];this._Active=[];this._Reserve=0;},AddRange:function(_bc4){_bc4.forEach(this._AddToQueue,this);this._StartUploads();},Add:function(_bc5){this._AddToQueue(_bc5);this._StartUploads();},Remove:function(_bc6){_bc6.RemoveListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._QueueArray,_bc6);ITHit.WebDAV.Client.Upload.Utils.Array.Remove(this._Active,_bc6);this._StartUploads();},Reserve:function(_bc7){_bc7=_bc7||1;this._Reserve+=_bc7;},Release:function(_bc8){_bc8=_bc8||1;this._Reserve-=_bc8;this._StartUploads();},GetBusy:function(){return this._Active.length+this._Reserve;},GetFree:function(){var _bc9=this.GetBusy();if(_bc9>=this._ParallelUploads){return 0;}else{if(_bc9===0){return this._ParallelUploads;}else{return (this._ParallelUploads-_bc9)%this._ParallelUploads;}}},_QueueArray:null,_Active:null,_ParallelUploads:0,_OnStateChangeEventHandler:function(_bca){if(_bca.NewState!==ITHit.WebDAV.Client.Upload.State.Uploading){this.Remove(_bca.Sender);}else{this._StartUploads();}},_StartUploads:function(){if(this._QueueArray.length===0){return;}var _bcb=this.GetFree();if(_bcb<=0){return;}var _bcc=ITHit.WebDAV.Client.Upload.Utils.Array.Take(this._QueueArray,_bcb);if(_bcc.length<1){return;}this.Reserve(_bcc.length);_bcc.forEach(this._StartSingle,this);},_StartSingle:function(_bcd){this._Active.push(_bcd);_bcd.StartAsync();this.Release();},_AddToQueue:function(_bce){this._QueueArray.push(_bce);_bce.AddListener(ITHit.WebDAV.Client.Upload.Events.EventName.OnStateChanged,this._OnStateChangeEventHandler,this);},_Reserve:0});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Queue",null,{Uploader:null,_UnderlyingArray:null,_Session:null,_AutoUploader:null,constructor:function(_bcf){this.Uploader=_bcf;this._Session=new ITHit.WebDAV.Client.Upload.UploaderSession();this._UnderlyingArray=[];this._GroupManager=new ITHit.WebDAV.Client.Upload.Groups.GroupManager();this._AutoUploader=new ITHit.WebDAV.Client.Upload.AutoUploader(this.Uploader.Settings.ConcurrentUploads);},ShouldReplaceDuplicate:function(_bd0){var _bd1=this.GetByUrl(_bd0.GetUrl());var _bd2=_bd1.GetState();return !(_bd2===ITHit.WebDAV.Client.Upload.State.Uploading||_bd2===ITHit.WebDAV.Client.Upload.State.Paused);},AddGroup:function(sUrl,_bd4,_bd5){var _bd6=[];for(var i=0;i<_bd4.length;i++){var _bd8=_bd4[i];var _bd9=new ITHit.WebDAV.Client.Upload.UploadItem(sUrl,_bd8,_bd5,this._Session,this._GroupManager,this.Uploader.Settings);if(this.HasUrl(_bd9.GetUrl())){if(this.ShouldReplaceDuplicate(_bd9)){this.RemoveByUrl(_bd9.GetUrl());}else{continue;}}_bd6.push(_bd9);}this._DispatchOnUploadItemsCreatedAsync(_bd6,this._OnUploadItemsCreatedAsyncDispatched.bind(this));},Add:function(_bda){var sUrl=_bda.GetUrl();if(this.HasUrl(sUrl)){return;}this._UnderlyingArray.push(_bda);var _bdc=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,[_bda]);ITHit.Events.DispatchEvent(this,_bdc.Name,[_bdc]);this._AutoUploader.Add(_bda);},AddRange:function(_bdd){for(var i=0;i<_bdd.length;i++){var _bdf=_bdd[i];var sUrl=_bdf.GetUrl();if(this.HasUrl(sUrl)){continue;}this._UnderlyingArray.push(_bdf);}this._GroupManager.CreateGroup(_bdd);this._OnQueueChanged(_bdd,null);var _be1=_bdd.filter(function(_be2){return _be2.GetState()===ITHit.WebDAV.Client.Upload.State.Queued;});this._AutoUploader.AddRange(_be1);},Restart:function(_be3){for(var i=0;i<_be3.length;i++){if(!this.HasUrl(_be3[i].GetUrl())){throw new ITHit.Exceptions.ArgumentException("Item should be a part of queue`");}}this._AutoUploader.AddRange(_be3);},GetByUrl:function(sUrl){return ITHit.Utils.FindBy(this._UnderlyingArray,function(_be6){return _be6.GetUrl()===sUrl;});},GetLength:function(){return this._UnderlyingArray.length;},HasUrl:function(sUrl){return !!this.GetByUrl(sUrl);},RemoveByUrl:function(sUrl){var _be9=this.GetByUrl(sUrl);if(!_be9){return;}var _bea=_be9.GetState();if(_bea===ITHit.WebDAV.Client.Upload.State.Uploading||_bea===ITHit.WebDAV.Client.Upload.State.Paused){_be9.Abort();}var _beb=ITHit.Utils.IndexOf(this._UnderlyingArray,_be9);this._UnderlyingArray.splice(_beb,1);this._OnQueueChanged(null,[_be9]);this._AutoUploader.Remove(_be9);},OnUploadItemsCreatedCallback:null,_OnQueueChanged:function(_bec,_bed){var _bee=new ITHit.WebDAV.Client.Upload.Events.QueueChanged(this,_bec,_bed);ITHit.Events.DispatchEvent(this,_bee.Name,[_bee]);},_DispatchOnUploadItemsCreatedAsync:function(_bef,_bf0){var _bf1=new ITHit.WebDAV.Client.Upload.Events.UploadItemsCreated(this,_bef.slice(),_bf0);if(!this.OnUploadItemsCreatedCallback&&(ITHit.Events.ListenersLength(this,_bf1.Name)===0)){_bf1.OverwriteAll();}if(this.OnUploadItemsCreatedCallback){this.OnUploadItemsCreatedCallback(_bf1);}ITHit.Events.DispatchEvent(this,_bf1.Name,_bf1);},AddListener:function(_bf2,_bf3,_bf4){_bf4=_bf4||null;switch(_bf2){case ITHit.WebDAV.Client.Upload.Events.EventName.OnQueueChanged:case ITHit.WebDAV.Client.Upload.Events.EventName.OnUploadItemsCreated:ITHit.Events.AddListener(this,_bf2,_bf3,_bf4);break;default:throw new ITHit.WebDAV.Client.Exceptions.WebDavException("Not found event name `"+_bf2+"`");}},RemoveListener:function(_bf5,_bf6,_bf7){ITHit.Events.RemoveListener(this,_bf5,_bf6,_bf7);},_OnUploadItemsCreatedAsyncDispatched:function(_bf8){if(_bf8.Upload){this.AddRange(_bf8.Upload);return;}this._OnUploadItemsCreatedAsyncDispatchedDeprecated(_bf8);},_OnUploadItemsCreatedAsyncDispatchedDeprecated:function(_bf9){var _bfa=this._FilterSkippedItems(_bf9);var _bfb=this._CreateUrlUploadItemMap(_bf9.Overwrite);_bfa.forEach(function(_bfc){if(_bfb.Has(_bfc.GetUrl())){_bfc.SetOverwrite(true);}});this.AddRange(_bfa);},_FilterSkippedItems:function(_bfd){var _bfe=this._CreateUrlUploadItemMap(_bfd.Skip);return _bfd.Original.filter(function(_bff){return !_bfe.Has(_bff.GetUrl());});},_CreateUrlUploadItemMap:function(_c00){var oMap=new ITHit.WebDAV.Client.Upload.Collections.Map();_c00.forEach(function(_c02){oMap.Set(_c02.GetUrl(),_c02);});return oMap;},_GroupManager:null});})();(function(){"use strict";var _c03=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.DropZoneCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c04){this._Uploader=_c04;this._UnderlyingSet={};},AddById:function(_c05){var _c06=this.GetById(_c05);if(_c06){return _c06;}var _c07=new ITHit.WebDAV.Client.Upload.Controls.DropZone(_c05);this._UnderlyingSet[_c05]=_c07;this._RaiseOnCollectionChanged([_c07],[]);return _c07;},GetById:function(_c08){return this._UnderlyingSet[_c08];},RemoveById:function(_c09){var _c0a=this.GetById(_c09);if(_c0a){delete this._UnderlyingSet[_c09];this._RaiseOnCollectionChanged([],[_c0a]);}},AddListener:function(_c0b,_c0c,_c0d){_c0d=_c0d||null;this._CheckEventNameOtThrow(_c0b);ITHit.Events.AddListener(this,_c0b,_c0c,_c0d);},RemoveListener:function(_c0e,_c0f,_c10){_c10=_c10||null;this._CheckEventNameOtThrow(_c0e);ITHit.Events.RemoveListener(this,_c0e,_c0f,_c10);},_CheckEventNameOtThrow:function(_c11){if(_c11!==_c03.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c11);}},_RaiseOnCollectionChanged:function(_c12,_c13){ITHit.Events.DispatchEvent(this,_c03.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c12||[],RemovedItems:_c13||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){var _c14=ITHit.DefineClass("ITHit.WebDAV.Client.Upload.InputCollection",null,{_UnderlyingSet:null,Uploader:null,constructor:function(_c15){this._UnderlyingArray=[];this._Uploader=_c15;},AddById:function(_c16){var _c17=new ITHit.WebDAV.Client.Upload.Controls.Input(_c16);this._UnderlyingArray[_c16]=_c17;this._RaiseOnCollectionChanged([_c17],[]);return _c17;},GetById:function(_c18){return this._UnderlyingArray[_c18];},RemoveById:function(_c19){var _c1a=this.GetById(_c19);if(_c1a){delete this._UnderlyingSet[_c19];this._RaiseOnCollectionChanged([],[_c1a]);}},AddListener:function(_c1b,_c1c,_c1d){_c1d=_c1d||null;this._CheckEventNameOtThrow(_c1b);ITHit.Events.AddListener(this,_c1b,_c1c,_c1d);},RemoveListener:function(_c1e,_c1f,_c20){_c20=_c20||null;this._CheckEventNameOtThrow(_c1e);ITHit.Events.RemoveListener(this,_c1e,_c1f,_c20);},_CheckEventNameOtThrow:function(_c21){if(_c21!==_c14.EVENT_ON_COLLECTION_CHANGED){throw new ITHit.WebDAV.Client.Exceptions.NotFoundEventNameException(_c21);}},_RaiseOnCollectionChanged:function(_c22,_c23){ITHit.Events.DispatchEvent(this,_c14.EVENT_ON_COLLECTION_CHANGED,[{Sender:this,AddedItems:_c22||[],RemovedItems:_c23||[]}]);}},{EVENT_ON_COLLECTION_CHANGED:"OnCollectionChanged"});})();(function(){"use strict";ITHit.DefineClass("ITHit.WebDAV.Client.Upload.Uploader",null,{DropZones:null,Inputs:null,Queue:null,Settings:null,_UploadProvider:null,constructor:function(){this.Inputs=new ITHit.WebDAV.Client.Upload.InputCollection(this);this.Inputs.AddListener(ITHit.WebDAV.Client.Upload.InputCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.DropZones=new ITHit.WebDAV.Client.Upload.DropZoneCollection(this);this.DropZones.AddListener(ITHit.WebDAV.Client.Upload.DropZoneCollection.EVENT_ON_COLLECTION_CHANGED,this._OnControlCollectionChangedEventHandler,this);this.Settings=new ITHit.WebDAV.Client.Upload.Settings();this.Queue=new ITHit.WebDAV.Client.Upload.Queue(this);},SetUploadUrl:function(sUrl){this._UploadUrl=sUrl;},GetUploadUrl:function(){return this._UploadUrl;},_OnControlCollectionChangedEventHandler:function(_c25){_c25.AddedItems.forEach(function(_c26){_c26.AddListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));_c25.RemovedItems.forEach(function(_c27){_c27.RemoveListener(ITHit.WebDAV.Client.Upload.Controls.HtmlControl.EVENT_ON_FILE_INPUT_HANDLED,this._OnFileInputEventHandler.bind(this));}.bind(this));},_OnFileInputEventHandler:function(_c28){this.Queue.AddGroup(this._UploadUrl,_c28.AsyncResult.Result,_c28.Source);}});})();ITHit.Temp={};
|