Added server-side IDER over CIRA support.

Ylian Saint-Hilaire committed Apr 25, 2019 at 15:13 UTC bfd7b8ba410405420f7fc727fe89172ad178a9f0
6 files changed +922 -923
amt/amt-ider-module.js
+6 -4
@@ -108,6 +108,7 @@ module.exports.CreateAmtRemoteIder = function (webserver, meshcentral) {
108 obj.bytesFromAmt = 0;
109 obj.inSequence = 0;
110 obj.outSequence = 0;
111 + g_readQueue = [];
112
113 // Send first command, OPEN_SESSION
114 obj.SendCommand(0x40, webserver.common.ShortToStrX(obj.rx_timeout) + webserver.common.ShortToStrX(obj.tx_timeout) + webserver.common.ShortToStrX(obj.heartbeat) + webserver.common.IntToStrX(obj.version));
@@ -587,8 +588,8 @@ module.exports.CreateAmtRemoteIder = function (webserver, meshcentral) {
588 if (obj.sectorStats) { obj.sectorStats(1, (dev == 0xA0) ? 0 : 1, mediaBlocks, lba, len); }
589 if (dev == 0xA0) { lba <<= 9; len <<= 9; } else { lba <<= 11; len <<= 11; }
590 if (g_media !== null) {
590 - console.log('IDERERROR: Read while performing read');
591 - obj.Stop();
591 + // Queue read operation
592 + g_readQueue.push({ media: media, dev: dev, lba: lba, len: len, fr: featureRegister });
593 } else {
594 // obj.iderinfo.readbfr // TODO: MaxRead
595 g_media = media;
@@ -600,7 +601,7 @@ module.exports.CreateAmtRemoteIder = function (webserver, meshcentral) {
601 }
602 }
603
603 - var g_dev, g_lba, g_len, g_media = null, g_reset = false;
604 + var g_readQueue = [], g_dev, g_lba, g_len, g_media = null, g_reset = false;
605 function sendDiskDataEx(featureRegister) {
606 var len = g_len, lba = g_lba;
607 if (g_len > obj.iderinfo.readbfr) { len = obj.iderinfo.readbfr; }
@@ -613,7 +614,8 @@ module.exports.CreateAmtRemoteIder = function (webserver, meshcentral) {
614 sendDiskDataEx(featureRegister);
615 } else {
616 g_media = null;
616 - if (g_reset) { obj.SendCommand(0x47); g_reset = false; } // Send ResetOccuredResponse
617 + if (g_reset) { obj.SendCommand(0x47); g_readQueue = []; g_reset = false; } // Send ResetOccuredResponse
618 + else if (g_readQueue.length > 0) { var op = g_readQueue.shift(); g_media = op.media; g_dev = op.dev; g_lba = op.lba; g_len = op.len; sendDiskDataEx(op.fr); } // Un-queue read operation
619 }
620 });
621 }
amt/amt-ider.js
-2
@@ -79,8 +79,6 @@ module.exports.CreateAmtIderSession = function (parent, db, ws, req, args, domai
79 if (results[i].toLowerCase().endsWith('.img')) { floppyImages.push(results[i].substring(userPath.length + 1)); }
80 else if (results[i].toLowerCase().endsWith('.iso')) { cdromImages.push(results[i].substring(userPath.length + 1)); }
81 }
82 - //console.log(floppyImages, cdromImages);
83 -
82 var xx, sel = true, html = "<div style='margin:10px 5px 10px 5px'>Select disk images & start type.</div>";
83
84 // Floppy image selection
amt/amt-redir-mesh.js
+35 -89
@@ -13,7 +13,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
13 obj.net = require('net');
14 obj.tls = require('tls');
15 obj.crypto = require('crypto');
16 - obj.constants = require('constants');
16 + const constants = require('constants');
17 obj.socket = null;
18 obj.amtuser = null;
19 obj.amtpass = null;
@@ -21,6 +21,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
21 obj.protocol = module.protocol; // 1 = SOL, 2 = KVM, 3 = IDER
22 obj.xtlsoptions = null;
23 obj.redirTrace = false;
24 + obj.tls1only = 0; // TODO
25
26 obj.amtaccumulator = "";
27 obj.amtsequence = 1;
@@ -53,6 +54,17 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
54 var a = []; for (var i = 1; i < arguments.length; i++) { a.push(arguments[i]); } console.log(...a);
55 }
56
57 + // Older NodeJS does not support the keyword "class", so we do without using this syntax
58 + // TODO: Validate that it's the same as above and that it works.
59 + function SerialTunnel(options) {
60 + var obj = new require('stream').Duplex(options);
61 + obj.forwardwrite = null;
62 + obj.updateBuffer = function (chunk) { this.push(chunk); };
63 + obj._write = function (chunk, encoding, callback) { if (obj.forwardwrite != null) { obj.forwardwrite(chunk); } else { console.err("Failed to fwd _write."); } if (callback) callback(); }; // Pass data written to forward
64 + obj._read = function (size) { }; // Push nothing, anything to read should be pushed from updateBuffer()
65 + return obj;
66 + }
67 +
68 obj.Start = function (nodeid) {
69 //console.log('Amt-Redir-Start', nodeid);
70 obj.connectstate = 0;
@@ -106,18 +118,15 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
118
119 var ciraconn = meshcentral.mpsserver.ciraConnections[nodeid];
120
109 - /*
121 // Compute target port, look at the CIRA port mappings, if non-TLS is allowed, use that, if not use TLS
111 - var port = 16993;
112 - //if (node.intelamt.tls == 0) port = 16992; // DEBUG: Allow TLS flag to set TLS mode within CIRA
113 - if (ciraconn.tag.boundPorts.indexOf(16992) >= 0) port = 16992; // RELEASE: Always use non-TLS mode if available within CIRA
114 - if (req.query.p == 2) port += 2;
122 + var port = 16995;
123 + if (ciraconn.tag.boundPorts.indexOf(16994) >= 0) port = 16994; // RELEASE: Always use non-TLS mode if available within CIRA
124
125 // Setup a new CIRA channel
126 if ((port == 16993) || (port == 16995)) {
127 // Perform TLS - ( TODO: THIS IS BROKEN on Intel AMT v7 but works on v10, Not sure why. Well, could be broken TLS 1.0 in firmware )
128 var ser = new SerialTunnel();
120 - var chnl = parent.mpsserver.SetupCiraChannel(ciraconn, port);
129 + var chnl = meshcentral.mpsserver.SetupCiraChannel(ciraconn, port);
130
131 // let's chain up the TLSSocket <-> SerialTunnel <-> CIRA APF (chnl)
132 // Anything that needs to be forwarded by SerialTunnel will be encapsulated by chnl write
@@ -141,7 +150,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
150
151 // TLSSocket to encapsulate TLS communication, which then tunneled via SerialTunnel an then wrapped through CIRA APF
152 const TLSSocket = require('tls').TLSSocket;
144 - const tlsoptions = { secureProtocol: ((req.query.tls1only == 1) ? 'TLSv1_method' : 'SSLv23_method'), ciphers: 'RSA+AES:!aNULL:!MD5:!DSS', secureOptions: constants.SSL_OP_NO_SSLv2 | constants.SSL_OP_NO_SSLv3 | constants.SSL_OP_NO_COMPRESSION | constants.SSL_OP_CIPHER_SERVER_PREFERENCE, rejectUnauthorized: false };
153 + const tlsoptions = { secureProtocol: ((obj.tls1only == 1) ? 'TLSv1_method' : 'SSLv23_method'), ciphers: 'RSA+AES:!aNULL:!MD5:!DSS', secureOptions: constants.SSL_OP_NO_SSLv2 | constants.SSL_OP_NO_SSLv3 | constants.SSL_OP_NO_COMPRESSION | constants.SSL_OP_CIPHER_SERVER_PREFERENCE, rejectUnauthorized: false };
154 const tlsock = new TLSSocket(ser, tlsoptions);
155 tlsock.on('error', function (err) { Debug(1, "CIRA TLS Connection Error ", err); });
156 tlsock.on('secureConnect', function () { Debug(2, "CIRA Secure TLS Connection"); ws._socket.resume(); });
@@ -151,73 +160,36 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
160 // AMT/TLS ---> WS
161 try {
162 data = data.toString('binary');
154 - if (ws.interceptor) { data = ws.interceptor.processAmtData(data); } // Run data thru interceptor
163 //ws.send(Buffer.from(data, 'binary'));
164 ws.send(data);
165 } catch (e) { }
166 });
167
168 // If TLS is on, forward it through TLSSocket
161 - ws.forwardclient = tlsock;
162 - ws.forwardclient.xtls = 1;
169 + obj.forwardclient = tlsock;
170 + obj.forwardclient.xtls = 1;
171 } else {
172 // Without TLS
165 - ws.forwardclient = parent.mpsserver.SetupCiraChannel(ciraconn, port);
166 - ws.forwardclient.xtls = 0;
167 - ws._socket.resume();
173 + obj.forwardclient = meshcentral.mpsserver.SetupCiraChannel(ciraconn, port);
174 + obj.forwardclient.xtls = 0;
175 }
176
170 - // When data is received from the web socket, forward the data into the associated CIRA cahnnel.
171 - // If the CIRA connection is pending, the CIRA channel has built-in buffering, so we are ok sending anyway.
172 - ws.on('message', function (msg) {
173 - // WS ---> AMT/TLS
174 - msg = msg.toString('binary');
175 - if (ws.interceptor) { msg = ws.interceptor.processBrowserData(msg); } // Run data thru interceptor
176 - if (ws.forwardclient.xtls == 1) { ws.forwardclient.write(Buffer.from(msg, 'binary')); } else { ws.forwardclient.write(msg); }
177 - });
178 -
179 - // If error, close the associated TCP connection.
180 - ws.on('error', function (err) {
181 - console.log('CIRA server websocket error from ' + ws._socket.remoteAddress + ', ' + err.toString().split('\r')[0] + '.');
182 - Debug(1, 'Websocket relay closed on error.');
183 - if (ws.forwardclient && ws.forwardclient.close) { ws.forwardclient.close(); } // TODO: If TLS is used, we need to close the socket that is wrapped by TLS
184 - });
185 -
186 - // If the web socket is closed, close the associated TCP connection.
187 - ws.on('close', function (req) {
188 - Debug(1, 'Websocket relay closed.');
189 - if (ws.forwardclient && ws.forwardclient.close) { ws.forwardclient.close(); } // TODO: If TLS is used, we need to close the socket that is wrapped by TLS
190 - });
191 -
192 - ws.forwardclient.onStateChange = function (ciraconn, state) {
193 - Debug(2, 'Relay CIRA state change', state);
194 - if (state == 0) { try { ws.close(); } catch (e) { } }
177 + obj.forwardclient.onStateChange = function (ciraconn, state) {
178 + Debug(2, 'Intel AMT CIRA relay state change', state);
179 + if (state == 0) { try { obj.Stop(); } catch (e) { } }
180 + else if (state == 2) { obj.xxOnSocketConnected(); }
181 };
182
197 - ws.forwardclient.onData = function (ciraconn, data) {
198 - Debug(4, 'Relay CIRA data', data.length);
199 - if (ws.interceptor) { data = ws.interceptor.processAmtData(data); } // Run data thru interceptor
200 - if (data.length > 0) { try { ws.send(Buffer.from(data, 'binary')); } catch (e) { } } // TODO: Add TLS support
183 + obj.forwardclient.onData = function (ciraconn, data) {
184 + Debug(4, 'Intel AMT CIRA data', data.length);
185 + if (data.length > 0) { obj.xxOnSocketData(data); } // TODO: Add TLS support
186 };
187
203 - ws.forwardclient.onSendOk = function (ciraconn) {
188 + obj.forwardclient.onSendOk = function (ciraconn) {
189 // TODO: Flow control? (Dont' really need it with AMT, but would be nice)
205 - //console.log('onSendOk');
190 + Debug(4, 'Intel AMT CIRA sendok');
191 };
192
208 - // Fetch Intel AMT credentials & Setup interceptor
209 - if (req.query.p == 1) {
210 - Debug(3, 'INTERCEPTOR1', { host: node.host, port: port, user: node.intelamt.user, pass: node.intelamt.pass });
211 - ws.interceptor = obj.interceptor.CreateHttpInterceptor({ host: node.host, port: port, user: node.intelamt.user, pass: node.intelamt.pass });
212 - ws.interceptor.blockAmtStorage = true;
213 - }
214 - else if (req.query.p == 2) {
215 - Debug(3, 'INTERCEPTOR2', { user: node.intelamt.user, pass: node.intelamt.pass });
216 - ws.interceptor = obj.interceptor.CreateRedirInterceptor({ user: node.intelamt.user, pass: node.intelamt.pass });
217 - ws.interceptor.blockAmtStorage = true;
218 - }
219 - */
220 -
193 return;
194 }
195
@@ -225,32 +197,6 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
197 if ((conn & 4) != 0) { // We got a new web socket connection, initiate a TCP connection to the target Intel AMT host/port.
198 Debug(1, 'Opening Intel AMT transport connection to ' + nodeid + '.');
199
228 - /*
229 - // When data is received from the web socket, forward the data into the associated TCP connection.
230 - ws.on('message', function (msg) {
231 - if (obj.parent.debugLevel >= 1) { // DEBUG
232 - Debug(1, 'TCP relay data to ' + node.host + ', ' + msg.length + ' bytes');
233 - if (obj.parent.debugLevel >= 4) { Debug(4, ' ' + msg.toString('hex')); }
234 - }
235 - msg = msg.toString('binary');
236 - if (ws.interceptor) { msg = ws.interceptor.processBrowserData(msg); } // Run data thru interceptor
237 - ws.forwardclient.write(Buffer.from(msg, 'binary')); // Forward data to the associated TCP connection.
238 - });
239 -
240 - // If error, close the associated TCP connection.
241 - ws.on('error', function (err) {
242 - console.log('Error with relay web socket connection from ' + ws._socket.remoteAddress + ', ' + err.toString().split('\r')[0] + '.');
243 - Debug(1, 'Error with relay web socket connection from ' + ws._socket.remoteAddress + '.');
244 - if (ws.forwardclient) { try { ws.forwardclient.destroy(); } catch (e) { } }
245 - });
246 -
247 - // If the web socket is closed, close the associated TCP connection.
248 - ws.on('close', function () {
249 - Debug(1, 'Closing relay web socket connection to ' + nodeid + '.');
250 - if (ws.forwardclient) { try { ws.forwardclient.destroy(); } catch (e) { } }
251 - });
252 - */
253 -
200 // Compute target port
201 var port = 16994;
202 if (node.intelamt.tls > 0) port = 16995; // This is a direct connection, use TLS when possible
@@ -261,7 +207,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
207 obj.forwardclient.setEncoding('binary');
208 } else {
209 // If TLS is going to be used, setup a TLS socket
264 - var tlsoptions = { secureProtocol: ((req.query.tls1only == 1) ? 'TLSv1_method' : 'SSLv23_method'), ciphers: 'RSA+AES:!aNULL:!MD5:!DSS', secureOptions: constants.SSL_OP_NO_SSLv2 | constants.SSL_OP_NO_SSLv3 | constants.SSL_OP_NO_COMPRESSION | constants.SSL_OP_CIPHER_SERVER_PREFERENCE, rejectUnauthorized: false };
210 + var tlsoptions = { secureProtocol: ((obj.tls1only == 1) ? 'TLSv1_method' : 'SSLv23_method'), ciphers: 'RSA+AES:!aNULL:!MD5:!DSS', secureOptions: constants.SSL_OP_NO_SSLv2 | constants.SSL_OP_NO_SSLv3 | constants.SSL_OP_NO_COMPRESSION | constants.SSL_OP_CIPHER_SERVER_PREFERENCE, rejectUnauthorized: false };
211 obj.forwardclient = obj.tls.connect(port, node.host, tlsoptions, function () {
212 // The TLS connection method is the same as TCP, but located a bit differently.
213 Debug(2, 'TLS Intel AMT transport connected to ' + node.host + ':' + port + '.');
@@ -507,9 +453,9 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
453 }
454
455 obj.xxSend = function (x) {
510 - if (obj.redirTrace) { console.log("REDIR-SEND(" + x.length + "): " + webserver.common.rstr2hex(x)); }
456 + if (obj.redirTrace) { console.log("REDIR-SEND2(" + x.length + "): " + new Buffer(x, "binary").toString('hex')); }
457 //obj.Debug("Send(" + x.length + "): " + webserver.common.rstr2hex(x));
512 - obj.forwardclient.write(new Buffer(x, "binary"));
458 + obj.forwardclient.write(x);
459 }
460
461 obj.Send = function (x) {
@@ -543,8 +489,8 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
489 obj.xxStateChange(0);
490 obj.connectstate = -1;
491 obj.amtaccumulator = "";
546 - if (obj.forwardclient != null) { obj.forwardclient.destroy(); obj.forwardclient = null; }
547 - if (obj.amtkeepalivetimer != null) { clearInterval(obj.amtkeepalivetimer); obj.amtkeepalivetimer = null; }
492 + if (obj.forwardclient != null) { try { obj.forwardclient.close(); } catch (ex) { } delete obj.forwardclient; }
493 + if (obj.amtkeepalivetimer != null) { clearInterval(obj.amtkeepalivetimer); delete obj.amtkeepalivetimer; }
494 }
495
496 obj.RedirectStartSol = String.fromCharCode(0x10, 0x00, 0x00, 0x00, 0x53, 0x4F, 0x4C, 0x20);
public/commander.htm
+877 -828
@@ -11,168 +11,168 @@ function ObjectToStringEx(b,c){var a="";if(0!=b&&(!b||null==b))return"(Null)";if
11 function ObjectToStringEx2(b,c){var a="";if(0!=b&&(!b||null==b))return"(Null)";if(b instanceof Array)for(var d in b)a+="\r\n"+gap2(c)+"Item #"+d+": "+ObjectToStringEx2(b[d],c+1);else if(b instanceof Object)for(d in b)a+="\r\n"+gap2(c)+d+" = "+ObjectToStringEx2(b[d],c+1);else a+=EscapeHtml(b);return a}function gap(b){for(var c="",a=0;a<4*b;a++)c+="&nbsp;";return c}function gap2(b){for(var c="",a=0;a<4*b;a++)c+=" ";return c}function ObjectToString(b){return ObjectToStringEx(b,0)}
12 function ObjectToString2(b){return ObjectToStringEx2(b,0)}function hex2rstr(b){if("string"!=typeof b||0==b.length)return"";var c="";b=(""+b).match(/../g);for(var a;a=b.shift();)c+=String.fromCharCode("0x"+a);return c}function char2hex(b){return(b+256).toString(16).substr(-2).toUpperCase()}function rstr2hex(b){var c="",a;for(a=0;a<b.length;a++)c+=char2hex(b.charCodeAt(a));return c}function encode_utf8(b){return unescape(encodeURIComponent(b))}
13 function decode_utf8(b){return decodeURIComponent(escape(b))}function data2blob(b){for(var c=Array(b.length),a=0;a<b.length;a++)c[a]=b.charCodeAt(a);return new Blob([new Uint8Array(c)])}function random(b){return Math.floor(Math.random()*b)}function trademarks(b){return b.replace(/\(R\)/g,"&reg;").replace(/\(TM\)/g,"&trade;")}
14 -var CreateAmtRemoteIder=function(){function b(){urlvars&&urlvars.idertrace&&console.log.apply(console,[].concat($jscomp.arrayFromArguments(arguments)))}function c(c,d,z,D){switch(d.charCodeAt(0)){case 0:b("SCSI: TEST_UNIT_READY",c);switch(c){case 160:if(null==e.floppy)return e.SendCommandEndResponse(1,2,c,58,0),-1;if(0==e.floppyReady)return e.floppyReady=!0,e.SendCommandEndResponse(1,6,c,40,0),-1;break;case 176:if(null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;if(0==e.cdromReady)return e.cdromReady=
15 -!0,e.SendCommandEndResponse(1,6,c,40,0),-1;break;default:return b("SCSI Internal error 3",c),-1}e.SendCommandEndResponse(1,0,c,0,0);break;case 8:D=((d.charCodeAt(1)&31)<<16)+(d.charCodeAt(2)<<8)+d.charCodeAt(3);d=d.charCodeAt(4);0==d&&(d=256);b("SCSI: READ_6",c,D,d);a(c,D,d,z);break;case 10:return D=((d.charCodeAt(1)&31)<<16)+(d.charCodeAt(2)<<8)+d.charCodeAt(3),d=d.charCodeAt(4),0==d&&(d=256),b("SCSI: WRITE_6",c,D,d),e.SendCommandEndResponse(1,2,c,58,0),-1;case 26:b("SCSI: MODE_SENSE_6",c);if(63==
16 -d.charCodeAt(2)&&0==d.charCodeAt(3)){D=d=0;switch(c){case 160:if(null==e.floppy)return e.SendCommandEndResponse(1,2,c,58,0),-1;d=0;D=128;break;case 176:if(null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;d=5;D=128;break;default:return b("SCSI Internal error 6",c),-1}e.SendDataToHost(c,!0,String.fromCharCode(0,d,D,0),z&1);return}e.SendCommandEndResponse(1,5,c,36,0);break;case 27:e.SendCommandEndResponse(1,0,c);break;case 30:b("SCSI: ALLOW_MEDIUM_REMOVAL",c);if(160==c&&null==e.floppy||176==
17 -c&&null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;e.SendCommandEndResponse(1,0,c,0,0);break;case 35:b("SCSI: READ_FORMAT_CAPACITIES",c);D=ReadShort(d,7);switch(c){case 160:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,5,c,36,0),-1;break;case 176:if(null==e.cdrom||0==e.cdrom.size)return e.SendCommandEndResponse(0,5,c,36,0),-1;break;default:return b("SCSI Internal error 4",c),-1}e.SendDataToHost(c,!0,IntToStr(8)+String.fromCharCode(0,0,11,64,2,0,2,0),z&1);break;
18 -case 37:b("SCSI: READ_CAPACITY",c);d=0;switch(c){case 160:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,2,c,58,0),-1;null!=e.floppy&&(d=(e.floppy.size>>9)-1);b("DEV_FLOPPY",d);break;case 176:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,2,c,58,0),-1;null!=e.cdrom&&(d=(e.cdrom.size>>11)-1);b("DEV_CDDVD",d);break;default:return b("SCSI Internal error 4",c),-1}b("SCSI: READ_CAPACITY2",c,D);e.SendDataToHost(D,!0,IntToStr(d)+String.fromCharCode(0,0,176==
19 -c?8:2,0),z&1);break;case 40:D=ReadInt(d,2);d=ReadShort(d,7);b("SCSI: READ_10",c,D,d);a(c,D,d,z);break;case 42:case 46:D=ReadInt(d,2);d=ReadShort(d,7);b("SCSI: WRITE_10",c,D,d);e.SendGetDataFromHost(c,512*d);break;case 67:D=ReadShort(d,7);var A=d.charCodeAt(1)&2,G=d.charCodeAt(2)&7;0==G&&(G=d.charCodeAt(9)>>6);b("SCSI: READ_TOC, dev="+c+", buflen="+D+", msf="+A+", format="+G);switch(c){case 160:return e.SendCommandEndResponse(1,5,c,32,0),-1;case 176:break;default:return b("SCSI Internal error 9",c),
20 --1}1==G?e.SendDataToHost(c,!0,String.fromCharCode(0,10,1,1,0,20,1,0,0,0,0,0),z&1):0==G&&(A?e.SendDataToHost(c,!0,String.fromCharCode(0,18,1,1,0,20,1,0,0,0,2,0,0,20,170,0,0,0,52,19),z&1):e.SendDataToHost(c,!0,String.fromCharCode(0,18,1,1,0,20,1,0,0,0,0,0,0,20,170,0,0,0,0,0),z&1));break;case 70:var G=2!=d.charCodeAt(1),L=ReadShort(d,2);D=ReadShort(d,7);b("SCSI: GET_CONFIGURATION",c,G,L,D);if(0==D)return e.SendDataToHost(c,!0,IntToStr(60)+IntToStr(8),z&1),-1;A=IntToStr(8);0==L&&(A+=x);if(1==L||G&&1>
21 -L)A+=k;if(2==L||G&&2>L)A+=h;if(3==L||G&&3>L)A+=K;if(16==L||G&&16>L)A+=q;if(30==L||G&&30>L)A+=C;if(256==L||G&&256>L)A+=B;if(261==L||G&&261>L)A+=y;A=IntToStr(A.length)+A;A.length>D&&(A=A.substring(0,D));e.SendDataToHost(c,!0,A,z&1);return-1;case 74:b("SCSI: GET_EVENT_STATUS_NOTIFICATION",c,d.charCodeAt(1),d.charCodeAt(4),d.charCodeAt(9));if(1!=d.charCodeAt(1)&&16!=d.charCodeAt(4)){b("SCSI ERROR");e.SendCommandEndResponse(1,5,c,38,1);break}d=0;160==c&&null!=e.floppy?d=2:176==c&&null!=e.cdrom&&(d=2);
22 -e.SendDataToHost(c,!0,String.fromCharCode(0,d,128,0),z&1);break;case 76:e.SendCommand(81,IntToStrX(0)+IntToStrX(0)+IntToStrX(0)+String.fromCharCode(135,80,3,0,0,0,176,81,5,32,0),!0);break;case 81:return b("SCSI READ_DISC_INFO",c),e.SendCommandEndResponse(0,5,c,32,0),-1;case 85:return b("SCSI ERROR: MODE_SELECT_10",c),e.SendCommandEndResponse(1,5,c,32,0),-1;case 90:b("SCSI: MODE_SENSE_10",c,d.charCodeAt(2)&63);D=ReadShort(d,7);A=null;if(0==D)return e.SendDataToHost(c,!0,IntToStr(60)+IntToStr(8),z&
23 -1),-1;D=0;160==c?null!=e.floppy&&(D=e.floppy.size>>9):null!=e.cdrom&&(D=e.cdrom.size>>11);switch(d.charCodeAt(2)&63){case 1:A=160==c?2880>=D?I:F:E;break;case 5:160==c&&(A=2880>=D?r:n);break;case 63:A=160==c?2880>=D?m:p:v;break;case 26:176==c&&(A=g);break;case 29:176==c&&(A=w);break;case 42:176==c&&(A=l)}null==A?e.SendCommandEndResponse(0,5,c,32,0):e.SendDataToHost(c,!0,A,z&1);break;default:return b("IDER: Unknown SCSI command",d.charCodeAt(0)),e.SendCommandEndResponse(0,5,c,32,0),-1}return 0}function a(a,
24 -b,c,m){var g=null,y=0;160==a&&(g=e.floppy,null!=e.floppy&&(y=e.floppy.size>>9));176==a&&(g=e.cdrom,null!=e.cdrom&&(y=e.cdrom.size>>11));if(0>c||b+c>y)return e.SendCommandEndResponse(1,5,a,33,0),0;if(0==c)return e.SendCommandEndResponse(1,0,a,0,0),0;null!=g&&(e.sectorStats&&e.sectorStats(1,160==a?0:1,y,b,c),160==a?(b<<=9,c<<=9):(b<<=11,c<<=11),null!==D?(console.log("IDERERROR: Read while performing read"),e.Stop()):(D=g,A=a,G=b,L=c,d(m)))}function d(a){var b=L,c=G;L>e.iderinfo.readbfr&&(b=e.iderinfo.readbfr);
25 -L-=b;G+=b;var m=new FileReader;m.onload=function(){e.SendDataToHost(A,0==L,this.result,a&1);0<L&&0==z?d(a):(D=null,z&&(e.SendCommand(71),z=!1))};m.readAsBinaryString(D.slice(c,c+b))}var e={protocol:3,bytesToAmt:0,bytesFromAmt:0,rx_timeout:3E4,tx_timeout:0,heartbeat:2E4,version:1,acc:"",inSequence:0,outSequence:0,iderinfo:null,enabled:!1,iderStart:0,floppy:null,cdrom:null,floppyReady:!1,cdromReady:!1,sectorStats:null},n=String.fromCharCode(0,38,49,128,0,0,0,0,5,30,16,169,8,32,2,0,3,195,0,0,0,0,0,0,
26 -0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0),p=String.fromCharCode(0,92,36,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0,3,22,0,160,0,0,0,0,0,18,2,0,0,0,0,0,0,0,160,0,0,0,5,30,16,169,8,32,2,0,3,195,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0,8,10,0,0,0,0,0,0,0,0,0,0,11,6,0,0,0,17,36,49),r=String.fromCharCode(0,38,36,128,0,0,0,0,5,30,4,176,2,18,2,0,0,80,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0),m=String.fromCharCode(0,92,36,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0,3,22,0,160,0,0,0,0,0,18,2,0,0,0,0,0,0,0,160,0,
27 -0,0,5,30,4,176,2,18,2,0,0,80,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0,8,10,0,0,0,0,0,0,0,0,0,0,11,6,0,0,0,17,36,49),g=String.fromCharCode(0,18,1,128,0,0,0,0,26,10,0,0,0,0,0,0,0,0,0,0),w=String.fromCharCode(0,18,1,128,0,0,0,0,29,10,0,0,0,0,0,0,0,0,0,0),l=String.fromCharCode(0,32,1,128,0,0,0,0,42,24,0,0,0,0,32,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0),v=String.fromCharCode(0,40,1,128,0,0,0,0,1,6,0,255,0,0,0,0,42,24,0,0,0,0,2,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0);String.fromCharCode(0,0,0,40,
28 -0,0,0,8);var x=String.fromCharCode(0,0,3,4,0,8,1,0),k=String.fromCharCode(0,1,3,4,0,0,0,2),h=String.fromCharCode(0,2,3,4,0,0,0,0),K=String.fromCharCode(0,3,3,4,41,0,0,2),q=String.fromCharCode(0,16,1,8,0,0,8,0,0,1,0,0),C=String.fromCharCode(0,30,3,0),B=String.fromCharCode(1,0,3,0),y=String.fromCharCode(1,5,3,0),I=String.fromCharCode(0,18,36,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0),F=String.fromCharCode(0,18,49,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0),E=String.fromCharCode(0,14,1,128,0,0,0,0,1,6,0,255,0,
29 -0,0,0);e.xxStateChange=function(a){b("IDER-StateChange",a);0==a&&e.Stop();3==a&&e.Start()};e.Start=function(){b("IDER-Start");b(e.floppy,e.cdrom);e.bytesToAmt=0;e.bytesFromAmt=0;e.inSequence=0;e.outSequence=0;e.SendCommand(64,ShortToStrX(e.rx_timeout)+ShortToStrX(e.tx_timeout)+ShortToStrX(e.heartbeat)+IntToStrX(e.version));e.sectorStats&&(e.sectorStats(0,0,e.floppy?e.floppy.size>>9:0),e.sectorStats(0,1,e.cdrom?e.cdrom.size>>11:0))};e.Stop=function(){b("IDER-Stop");e.parent.Stop()};e.ProcessData=function(a){e.bytesFromAmt+=
30 -a.length;e.acc+=a;for(b("IDER-ProcessData",e.acc.length,rstr2hex(e.acc));;){a=e.ProcessDataEx();if(0==a)break;if(e.inSequence!=ReadIntX(e.acc,4)){b("ERROR: Out of sequence",e.inSequence,ReadIntX(e.acc,4));e.Stop();break}e.inSequence++;e.acc=e.acc.substring(a)}};e.SendCommand=function(a,c,m,g){null==c&&(c="");m=50<a&&1==m?2:0;g&&(m+=1);c=String.fromCharCode(a,0,0,m)+IntToStrX(e.outSequence++)+c;e.parent.xxSend(c);e.bytesToAmt+=c.length;75!=a&&b("IDER-SendData",c.length,rstr2hex(c))};e.SendCommandEndResponse=
31 -function(a,b,c,m,g){a?e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,197,0,3,0,0,0,c,80,0,0,0),!0):e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,135,b<<4,3,0,0,0,c,81,b,m,g),!0)};e.SendDataToHost=function(a,b,c,m){var g=m?0:c.length;1==b?e.SendCommand(84,String.fromCharCode(0,c.length&255,c.length>>8,0,m?180:181,0,2,0,g&255,g>>8,a,88,133,0,3,0,0,0,a,80,0,0,0,0,0,0)+c,b,m):e.SendCommand(84,String.fromCharCode(0,c.length&255,c.length>>8,0,m?180:181,0,2,0,g&255,g>>8,a,88,
32 -0,0,0,0,0,0,0,0,0,0,0,0,0,0)+c,b,m)};e.SendGetDataFromHost=function(a,b){e.SendCommand(82,String.fromCharCode(0,b&255,b>>8,0,181,0,0,0,b&255,b>>8,a,88,0,0,0,0,0,0,0,0,0,0,0),!1)};e.SendDisableEnableFeatures=function(a,b){null==b&&(b="");e.SendCommand(72,String.fromCharCode(a)+b)};e.ProcessDataEx=function(){if(8>e.acc.length)return 0;switch(e.acc.charCodeAt(0)){case 65:if(30>e.acc.length)break;var a=e.acc.charCodeAt(29);if(e.acc.length<30+a)break;e.iderinfo={};e.iderinfo.major=e.acc.charCodeAt(8);
33 -e.iderinfo.minor=e.acc.charCodeAt(9);e.iderinfo.fwmajor=e.acc.charCodeAt(10);e.iderinfo.fwminor=e.acc.charCodeAt(11);e.iderinfo.readbfr=ReadShortX(e.acc,16);e.iderinfo.writebfr=ReadShortX(e.acc,18);e.iderinfo.proto=e.acc.charCodeAt(21);e.iderinfo.iana=ReadIntX(e.acc,25);b(e.iderinfo);0!=e.iderinfo.proto&&(b("Unknown proto",e.iderinfo.proto),e.Stop());8192<e.iderinfo.readbfr&&(b("Illegal read buffer size",e.iderinfo.readbfr),e.Stop());8192<e.iderinfo.writebfr&&(b("Illegal write buffer size",e.iderinfo.writebfr),
34 -e.Stop());0==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(9)):1==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(17)):2==e.iderStart&&e.SendDisableEnableFeatures(3,IntToStrX(25));return 30+a;case 67:return b("CLOSE"),e.Stop(),8;case 68:return e.SendCommand(69),8;case 69:return b("PONG"),8;case 70:if(9>e.acc.length)break;a=e.acc.charCodeAt(8);null===D?(e.SendCommand(71),b("RESETOCCURED1",a)):(z=!0,b("RESETOCCURED2",a));return 9;case 73:if(13>e.acc.length)break;var a=e.acc.charCodeAt(8),
35 -m=ReadIntX(e.acc,9);b("STATUS_DATA",a,m);switch(a){case 1:m&1&&(0==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(9)):1==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(17)):2==e.iderStart&&e.SendDisableEnableFeatures(3,IntToStrX(25)));break;case 2:e.enabled=m&2?!0:!1;b("IDER Status: "+e.enabled);break;case 3:1!=m&&b("Register toggle failure")}return 13;case 74:if(11>e.acc.length)break;b("IDER: ABORT",e.acc.charCodeAt(8));return 11;case 75:return 8;case 80:if(28>e.acc.length)break;var a=
36 -e.acc.charCodeAt(14)&16?176:160,m=e.acc.charCodeAt(14),g=e.acc.substring(16,28),y=e.acc.charCodeAt(9);b("SCSI_CMD",a,rstr2hex(g),y,m);c(a,g,y,m);return 28;case 83:if(14>e.acc.length)break;a=ReadShortX(e.acc,9);if(e.acc.length<14+a)break;b("SCSI_WRITE, len = "+(14+a));e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,135,112,3,0,0,0,160,81,7,39,0),!0);return 14+a;default:b("Unknown IDER command",e.acc[0]),e.Stop()}return 0};var z=!1,D=null,A,G,L;return e},CreateAmtRemoteServerIder=function(){function b(){urlvars&&
37 -urlvars.idertrace&&console.log.apply(console,[].concat($jscomp.arrayFromArguments(arguments)))}var c={protocol:4,iderStart:0,floppy:null,cdrom:null,state:0,onStateChanged:null,m:{sectorStats:null,onDialogPrompt:null,dialogPrompt:function(a){c.socket.send(JSON.stringify({action:"dialogResponse",args:a}))},bytesToAmt:0,bytesFromAmt:0,server:!0,Stop:function(){c.Stop()}},xxStateChange:function(a){if(c.state!=a&&(b("SIDER-StateChange",a),c.state=a,null!=c.onStateChanged))c.onStateChanged(c,c.state)},
38 -Start:function(a,d,e,n,p){b("SIDER-Start",a,d,e,n,p);c.host=a;c.port=d;c.user=e;c.pass=n;c.connectstate=0;c.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/webider.ashx?host="+a+"&port="+d+"&tls="+p+("*"==e?"&serverauth=1":"")+("undefined"===typeof n?"&serverauth=1&user="+e:"")+"&tls1only="+c.tlsv1only);c.socket.onopen=c.xxOnSocketConnected;c.socket.onmessage=c.xxOnMessage;
39 -c.socket.onclose=c.xxOnSocketClosed;c.xxStateChange(1)},Stop:function(){b("SIDER-Stop");null!=c.socket&&(c.socket.close(),c.socket=null);c.xxStateChange(0)},xxOnSocketConnected:function(){c.xxStateChange(2);c.socket.send(JSON.stringify({action:"start"}))},xxOnMessage:function(a){var b=null;try{b=JSON.parse(a.data)}catch(e){}if(null!=b&&"string"==typeof b.action)switch(b.action){case "dialog":if(null!=c.m.onDialogPrompt)c.m.onDialogPrompt(c,b.args,b.buttons);break;case "state":2==b.state&&c.xxStateChange(3);
40 -break;case "stats":c.m.bytesToAmt=b.toAmt;c.m.bytesFromAmt=b.fromAmt;c.m.sectorStats&&c.m.sectorStats(b.mode,b.dev,b.total,b.start,b.len);break;case "error":console.log("IDER Error: "+";Floppy disk image does not exist;Invalid floppy disk image;Unable to open floppy disk image;CDROM disk image does not exist;Invalid CDROM disk image;Unable to open CDROM disk image;Can't perform IDER with no disk images".split(";")[b.code]);break;default:console.log("Unknown Server IDER action: "+b.action),breal}},
41 -xxOnSocketClosed:function(){c.Stop()}};return c},CreateWsmanComm=function(b,c,a,d,e){function n(){g.socketState=2;g.socketParseState=0;g.socketAccumulator="";g.socketHeader=null;g.socketData="";for(i in g.pendingAjaxCall)g.sendRequest(g.pendingAjaxCall[i][0],g.pendingAjaxCall[i][3],g.pendingAjaxCall[i][4])}function p(a){if("object"==typeof a.data)if(1==l)v.push(a.data);else if(w.readAsBinaryString)l=!0,w.readAsBinaryString(new Blob([a.data]));else if(w.readAsArrayBuffer)l=!0,w.readAsArrayBuffer(a.data);
42 -else{var b="";a=new Uint8Array(a.data);for(var c=a.byteLength,m=0;m<c;m++)b+=String.fromCharCode(a[m]);r(b)}else r(a.data)}function r(a){if("object"===typeof a){var b="";a=new Uint8Array(a);for(var c=a.byteLength,m=0;m<c;m++)b+=String.fromCharCode(a[m]);a=b}else if("string"!==typeof a)return;for(g.socketAccumulator+=a;;){if(0==g.socketParseState){a=g.socketAccumulator.indexOf("\r\n\r\n");if(0>a)break;g.socketHeader=g.socketAccumulator.substring(0,a).split("\r\n");if(null==g.amtVersion)for(m in g.socketHeader)0==
43 -g.socketHeader[m].indexOf("Server: Intel(R) Active Management Technology ")&&(g.amtVersion=g.socketHeader[m].substring(46));g.socketAccumulator=g.socketAccumulator.substring(a+4);g.socketParseState=1;g.socketData="";g.socketXHeader={Directive:g.socketHeader[0].split(" ")};for(m in g.socketHeader)0!=m&&(a=g.socketHeader[m].indexOf(":"),g.socketXHeader[g.socketHeader[m].substring(0,a).toLowerCase()]=g.socketHeader[m].substring(a+2))}if(1==g.socketParseState){b=-1;if(void 0==g.socketXHeader.connection||
44 -"close"!=g.socketXHeader.connection.toLowerCase()||void 0!=g.socketXHeader["transfer-encoding"]&&"chunked"==g.socketXHeader["transfer-encoding"].toLowerCase())if(void 0!=g.socketXHeader["content-length"]){b=parseInt(g.socketXHeader["content-length"]);if(g.socketAccumulator.length<b)break;a=g.socketAccumulator.substring(0,b);g.socketAccumulator=g.socketAccumulator.substring(b);g.socketData=a;b=0}else{c=g.socketAccumulator.indexOf("\r\n");if(0>c)break;b=parseInt(g.socketAccumulator.substring(0,c),16);
45 -if(isNaN(b)){g.websocket&&g.websocket.close();break}if(g.socketAccumulator.length<c+2+b+2)break;a=g.socketAccumulator.substring(c+2,c+2+b);g.socketAccumulator=g.socketAccumulator.substring(c+2+b+2);g.socketData+=a}else b=0;0==b&&(c=g.socketXHeader,a=g.socketData,b=parseInt(c.Directive[1]),isNaN(b)&&(b=602),401==b&&3>++g.authcounter?g.challengeParams=g.parseDigest(c["www-authenticate"]):(c=g.pendingAjaxCall.shift(),g.authcounter=0,g.ActiveAjaxCount--,g.gotNextMessages(a,"success",{status:b},c),g.PerformNextAjax()),
46 -g.socketParseState=0,g.socketHeader=null)}}}function m(a){0==g.inDataCount&&(g.tlsv1only=1-g.tlsv1only);g.socketState=0;null!=g.socket&&(g.socket.close(),g.socket=null);if(0<g.pendingAjaxCall.length){a=g.pendingAjaxCall.shift();var b=a[5];g.PerformAjaxExNodeJS2(a[0],a[1],a[2],a[3],a[4],--b)}}var g={PendingAjax:[],ActiveAjaxCount:0,MaxActiveAjaxCount:1,FailAllError:0,challengeParams:null,noncecounter:1,authcounter:0,socket:null,socketState:0};g.host=b;g.port=c;g.user=a;g.pass=d;g.tls=e;g.tlsv1only=
47 -0;g.cnonce=Math.random().toString(36).substring(7);g.inDataCount=0;g.amtVersion=null;g.PerformAjax=function(a,b,c,m,d,e){g.ActiveAjaxCount<g.MaxActiveAjaxCount&&0==g.PendingAjax.length?g.PerformAjaxEx(a,b,c,d,e):1==m?g.PendingAjax.unshift([a,b,c,d,e]):g.PendingAjax.push([a,b,c,d,e])};g.PerformNextAjax=function(){if(!(g.ActiveAjaxCount>=g.MaxActiveAjaxCount||0==g.PendingAjax.length)){var a=g.PendingAjax.shift();g.PerformAjaxEx(a[0],a[1],a[2],a[3],a[4]);g.PerformNextAjax()}};g.PerformAjaxEx=function(a,
48 -b,c,m,d){if(0!=g.FailAllError)g.gotNextMessagesError({status:g.FailAllError},"error",null,[a,b,c,m,d]);else return a||(a=""),g.ActiveAjaxCount++,g.PerformAjaxExNodeJS(a,b,c,m,d)};g.pendingAjaxCall=[];g.PerformAjaxExNodeJS=function(a,b,c,m,d){g.PerformAjaxExNodeJS2(a,b,c,m,d,3)};g.PerformAjaxExNodeJS2=function(a,b,c,m,d,e){0>=e||0!=g.FailAllError?(g.ActiveAjaxCount--,999!=g.FailAllError&&g.gotNextMessages(null,"error",{status:0==g.FailAllError?408:g.FailAllError},[a,b,c,m,d]),g.PerformNextAjax()):
49 -(g.pendingAjaxCall.push([a,b,c,m,d,e]),0==g.socketState?g.xxConnectHttpSocket():2==g.socketState&&g.sendRequest(a,m,d))};g.sendRequest=function(a,b,c){b=b?b:"/wsman";c=c?c:"POST";var m=c+" "+b+" HTTP/1.1\r\n";null!=g.challengeParams&&(c=hex_md5(hex_md5(g.user+":"+g.challengeParams.realm+":"+g.pass)+":"+g.challengeParams.nonce+":"+g.noncecounter+":"+g.cnonce+":"+g.challengeParams.qop+":"+hex_md5(c+":"+b)),m+="Authorization: "+g.renderDigest({username:g.user,realm:g.challengeParams.realm,nonce:g.challengeParams.nonce,
50 -uri:b,qop:g.challengeParams.qop,response:c,nc:g.noncecounter++,cnonce:g.cnonce})+"\r\n");a=m+="Host: "+g.host+":"+g.port+"\r\nContent-Length: "+a.length+"\r\n\r\n"+a;if(2==g.socketState&&null!=g.socket&&g.socket.readyState==WebSocket.OPEN){b=new Uint8Array(a.length);for(m=0;m<a.length;++m)b[m]=a.charCodeAt(m);try{g.socket.send(b.buffer)}catch(d){}}};g.parseDigest=function(a){a=a.substring(7).split(",");for(i in a)a[i]=a[i].trim();return a.reduce(function(a,b){var c=b.split("=");a[c[0]]=c[1].replace(/"/g,
51 -"");return a},{})};g.renderDigest=function(a){var b=[];for(i in a)b.push(i);return"Digest "+b.reduce(function(b,c){return b+","+c+'="'+a[c]+'"'},"").substring(1)};g.xxConnectHttpSocket=function(){g.inDataCount=0;g.socketState=1;g.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/webrelay.ashx?p=1&host="+g.host+"&port="+g.port+"&tls="+g.tls+"&tls1only="+g.tlsv1only+("*"==a?"&serverauth=1":
52 -"")+("undefined"===typeof d?"&serverauth=1&user="+a:""));g.socket.onopen=n;g.socket.onmessage=p;g.socket.onclose=m};var w=new FileReader,l=!1,v=[];w.readAsBinaryString?w.onload=function(a){r(a.target.result);0==v.length?l=!1:w.readAsBinaryString(new Blob([v.shift()]))}:w.readAsArrayBuffer&&(w.onloadend=function(a){r(a.target.result);0==v.length?l=!1:w.readAsArrayBuffer(v.shift())});g.gotNextMessages=function(a,b,c,m){if(999!=g.FailAllError)if(0!=g.FailAllError)m[1](null,g.FailAllError,m[2]);else if(200!=
53 -c.status)m[1](null,c.status,m[2]);else m[1](a,200,m[2])};g.gotNextMessagesError=function(a,b,c,m){if(999!=g.FailAllError)if(0!=g.FailAllError)m[1](null,g.FailAllError,m[2]);else m[1](g,null,{Header:{HttpError:a.status}},a.status,m[2])};g.CancelAllQueries=function(a){for(;0<g.PendingAjax.length;){var b=g.PendingAjax.shift();b[1](null,a,b[2])}null!=g.websocket&&(g.websocket.close(),g.websocket=null,g.socketState=0)};return g},CreateAmtRedirect=function(b){var c={};c.m=b;b.parent=c;c.State=0;c.socket=
54 -null;c.host=null;c.port=0;c.user=null;c.pass=null;c.authuri="/RedirectionService";c.tlsv1only=0;c.connectstate=0;c.protocol=b.protocol;c.amtaccumulator="";c.amtsequence=1;c.amtkeepalivetimer=null;c.onStateChanged=null;c.Start=function(a,b,d,m,g){c.host=a;c.port=b;c.user=d;c.pass=m;c.connectstate=0;c.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/webrelay.ashx?p=2&host="+
55 -a+"&port="+b+"&tls="+g+("*"==d?"&serverauth=1":"")+("undefined"===typeof m?"&serverauth=1&user="+d:"")+"&tls1only="+c.tlsv1only);c.socket.onopen=c.xxOnSocketConnected;c.socket.onmessage=c.xxOnMessage;c.socket.onclose=c.xxOnSocketClosed;c.xxStateChange(1)};c.xxOnSocketConnected=function(){urlvars&&urlvars.redirtrace&&console.log("REDIR-CONNECT");c.xxStateChange(2);1==c.protocol&&c.xxSend(c.RedirectStartSol);2==c.protocol&&c.xxSend(c.RedirectStartKvm);3==c.protocol&&c.xxSend(c.RedirectStartIder)};var a=
56 -new FileReader,d=!1,e=[];a.readAsBinaryString?a.onload=function(b){c.xxOnSocketData(b.target.result);0==e.length?d=!1:a.readAsBinaryString(new Blob([e.shift()]))}:a.readAsArrayBuffer&&(a.onloadend=function(b){c.xxOnSocketData(b.target.result);0==e.length?d=!1:a.readAsArrayBuffer(e.shift())});c.xxOnMessage=function(b){c.inDataCount++;if("object"==typeof b.data)if(1==d)e.push(b.data);else if(a.readAsBinaryString)d=!0,a.readAsBinaryString(new Blob([b.data]));else if(f.readAsArrayBuffer)d=!0,a.readAsArrayBuffer(b.data);
57 -else{var p="";b=new Uint8Array(b.data);for(var r=b.byteLength,m=0;m<r;m++)p+=String.fromCharCode(b[m]);c.xxOnSocketData(p)}else c.xxOnSocketData(b.data)};c.xxOnSocketData=function(a){if(a&&-1!=c.connectstate){if("object"===typeof a){var b="",d=new Uint8Array(a),m=d.byteLength;for(a=0;a<m;a++)b+=String.fromCharCode(d[a]);a=b}else if("string"!==typeof a)return;if((2==c.protocol||3==c.protocol)&&1==c.connectstate)return c.m.ProcessData(a);c.amtaccumulator+=a;for(urlvars&&urlvars.redirtrace&&console.log("REDIR-RECV("+
58 -c.amtaccumulator.length+"): "+rstr2hex(c.amtaccumulator));1<=c.amtaccumulator.length;){a=0;switch(c.amtaccumulator.charCodeAt(0)){case 17:if(4>c.amtaccumulator.length)return;switch(c.amtaccumulator.charCodeAt(1)){case 0:if(13>c.amtaccumulator.length)return;b=c.amtaccumulator.charCodeAt(12);if(c.amtaccumulator.length<13+b)return;c.xxSend(String.fromCharCode(19,0,0,0,0,0,0,0,0));a=13+b;break;default:c.Stop()}break;case 20:if(9>c.amtaccumulator.length)return;var g=ReadIntX(c.amtaccumulator,5);if(c.amtaccumulator.length<
59 -9+g)return;var m=c.amtaccumulator.charCodeAt(1),b=c.amtaccumulator.charCodeAt(4),e=[];for(a=0;a<g;a++)e.push(c.amtaccumulator.charCodeAt(9+a));d=c.amtaccumulator.substring(9,9+g);a=9+g;if(0==b)0<=e.indexOf(4)?c.xxSend(String.fromCharCode(19,0,0,0,4)+IntToStrX(c.user.length+c.authuri.length+8)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(0,0)+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(0,0,0,0)):0<=e.indexOf(3)?c.xxSend(String.fromCharCode(19,0,0,0,3)+IntToStrX(c.user.length+
60 -c.authuri.length+7)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(0,0)+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(0,0,0)):0<=e.indexOf(1)?c.xxSend(String.fromCharCode(19,0,0,0,1)+IntToStrX(c.user.length+c.pass.length+2)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(c.pass.length)+c.pass):c.Stop();else if(3!=b&&4!=b||1!=m)0==m?(1==c.protocol&&c.xxSend(String.fromCharCode(32,0,0,0)+IntToStrX(c.amtsequence++)+ShortToStrX(1E4)+ShortToStrX(100)+
61 -ShortToStrX(0)+ShortToStrX(1E4)+ShortToStrX(100)+ShortToStrX(0)+IntToStrX(0)),2==c.protocol&&c.xxSend(String.fromCharCode(64,0,0,0,0,0,0,0)),3==c.protocol&&(c.connectstate=1,c.xxStateChange(3))):c.Stop();else{var g=0,e=d.charCodeAt(g),m=d.substring(g+1,g+1+e),g=g+(e+1),l=d.charCodeAt(g),e=d.substring(g+1,g+1+l),g=g+(l+1),l=0,l=null,v=c.xxRandomNonce(32),x="";4==b&&(l=d.charCodeAt(g),l=d.substring(g+1,g+1+l),x="00000002:"+v+":"+l+":");d=hex_md5(hex_md5(c.user+":"+m+":"+c.pass)+":"+e+":"+x+hex_md5("POST:"+
62 -c.authuri));g=c.user.length+m.length+e.length+c.authuri.length+v.length+8+d.length+7;4==b&&(g+=l.length+1);d=String.fromCharCode(19,0,0,0,b)+IntToStrX(g)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(m.length)+m+String.fromCharCode(e.length)+e+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(v.length)+v+String.fromCharCode(8)+"00000002"+String.fromCharCode(d.length)+d;4==b&&(d+=String.fromCharCode(l.length)+l);c.xxSend(d)}break;case 33:if(23>c.amtaccumulator.length)break;
14 +var CreateAmtRemoteIder=function(){function b(){urlvars&&urlvars.idertrace&&console.log.apply(console,[].concat($jscomp.arrayFromArguments(arguments)))}function c(c,d,z,C){switch(d.charCodeAt(0)){case 0:b("SCSI: TEST_UNIT_READY",c);switch(c){case 160:if(null==e.floppy)return e.SendCommandEndResponse(1,2,c,58,0),-1;if(0==e.floppyReady)return e.floppyReady=!0,e.SendCommandEndResponse(1,6,c,40,0),-1;break;case 176:if(null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;if(0==e.cdromReady)return e.cdromReady=
15 +!0,e.SendCommandEndResponse(1,6,c,40,0),-1;break;default:return b("SCSI Internal error 3",c),-1}e.SendCommandEndResponse(1,0,c,0,0);break;case 8:C=((d.charCodeAt(1)&31)<<16)+(d.charCodeAt(2)<<8)+d.charCodeAt(3);d=d.charCodeAt(4);0==d&&(d=256);b("SCSI: READ_6",c,C,d);a(c,C,d,z);break;case 10:return C=((d.charCodeAt(1)&31)<<16)+(d.charCodeAt(2)<<8)+d.charCodeAt(3),d=d.charCodeAt(4),0==d&&(d=256),b("SCSI: WRITE_6",c,C,d),e.SendCommandEndResponse(1,2,c,58,0),-1;case 26:b("SCSI: MODE_SENSE_6",c);if(63==
16 +d.charCodeAt(2)&&0==d.charCodeAt(3)){C=d=0;switch(c){case 160:if(null==e.floppy)return e.SendCommandEndResponse(1,2,c,58,0),-1;d=0;C=128;break;case 176:if(null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;d=5;C=128;break;default:return b("SCSI Internal error 6",c),-1}e.SendDataToHost(c,!0,String.fromCharCode(0,d,C,0),z&1);return}e.SendCommandEndResponse(1,5,c,36,0);break;case 27:e.SendCommandEndResponse(1,0,c);break;case 30:b("SCSI: ALLOW_MEDIUM_REMOVAL",c);if(160==c&&null==e.floppy||176==
17 +c&&null==e.cdrom)return e.SendCommandEndResponse(1,2,c,58,0),-1;e.SendCommandEndResponse(1,0,c,0,0);break;case 35:b("SCSI: READ_FORMAT_CAPACITIES",c);C=ReadShort(d,7);switch(c){case 160:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,5,c,36,0),-1;break;case 176:if(null==e.cdrom||0==e.cdrom.size)return e.SendCommandEndResponse(0,5,c,36,0),-1;break;default:return b("SCSI Internal error 4",c),-1}e.SendDataToHost(c,!0,IntToStr(8)+String.fromCharCode(0,0,11,64,2,0,2,0),z&1);break;
18 +case 37:b("SCSI: READ_CAPACITY",c);d=0;switch(c){case 160:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,2,c,58,0),-1;null!=e.floppy&&(d=(e.floppy.size>>9)-1);b("DEV_FLOPPY",d);break;case 176:if(null==e.floppy||0==e.floppy.size)return e.SendCommandEndResponse(0,2,c,58,0),-1;null!=e.cdrom&&(d=(e.cdrom.size>>11)-1);b("DEV_CDDVD",d);break;default:return b("SCSI Internal error 4",c),-1}b("SCSI: READ_CAPACITY2",c,C);e.SendDataToHost(C,!0,IntToStr(d)+String.fromCharCode(0,0,176==
19 +c?8:2,0),z&1);break;case 40:C=ReadInt(d,2);d=ReadShort(d,7);b("SCSI: READ_10",c,C,d);a(c,C,d,z);break;case 42:case 46:C=ReadInt(d,2);d=ReadShort(d,7);b("SCSI: WRITE_10",c,C,d);e.SendGetDataFromHost(c,512*d);break;case 67:C=ReadShort(d,7);var F=d.charCodeAt(1)&2,r=d.charCodeAt(2)&7;0==r&&(r=d.charCodeAt(9)>>6);b("SCSI: READ_TOC, dev="+c+", buflen="+C+", msf="+F+", format="+r);switch(c){case 160:return e.SendCommandEndResponse(1,5,c,32,0),-1;case 176:break;default:return b("SCSI Internal error 9",c),
20 +-1}1==r?e.SendDataToHost(c,!0,String.fromCharCode(0,10,1,1,0,20,1,0,0,0,0,0),z&1):0==r&&(F?e.SendDataToHost(c,!0,String.fromCharCode(0,18,1,1,0,20,1,0,0,0,2,0,0,20,170,0,0,0,52,19),z&1):e.SendDataToHost(c,!0,String.fromCharCode(0,18,1,1,0,20,1,0,0,0,0,0,0,20,170,0,0,0,0,0),z&1));break;case 70:var r=2!=d.charCodeAt(1),M=ReadShort(d,2);C=ReadShort(d,7);b("SCSI: GET_CONFIGURATION",c,r,M,C);if(0==C)return e.SendDataToHost(c,!0,IntToStr(60)+IntToStr(8),z&1),-1;F=IntToStr(8);0==M&&(F+=B);if(1==M||r&&1>
21 +M)F+=l;if(2==M||r&&2>M)F+=g;if(3==M||r&&3>M)F+=x;if(16==M||r&&16>M)F+=u;if(30==M||r&&30>M)F+=J;if(256==M||r&&256>M)F+=A;if(261==M||r&&261>M)F+=y;F=IntToStr(F.length)+F;F.length>C&&(F=F.substring(0,C));e.SendDataToHost(c,!0,F,z&1);return-1;case 74:b("SCSI: GET_EVENT_STATUS_NOTIFICATION",c,d.charCodeAt(1),d.charCodeAt(4),d.charCodeAt(9));if(1!=d.charCodeAt(1)&&16!=d.charCodeAt(4)){b("SCSI ERROR");e.SendCommandEndResponse(1,5,c,38,1);break}d=0;160==c&&null!=e.floppy?d=2:176==c&&null!=e.cdrom&&(d=2);
22 +e.SendDataToHost(c,!0,String.fromCharCode(0,d,128,0),z&1);break;case 76:e.SendCommand(81,IntToStrX(0)+IntToStrX(0)+IntToStrX(0)+String.fromCharCode(135,80,3,0,0,0,176,81,5,32,0),!0);break;case 81:return b("SCSI READ_DISC_INFO",c),e.SendCommandEndResponse(0,5,c,32,0),-1;case 85:return b("SCSI ERROR: MODE_SELECT_10",c),e.SendCommandEndResponse(1,5,c,32,0),-1;case 90:b("SCSI: MODE_SENSE_10",c,d.charCodeAt(2)&63);C=ReadShort(d,7);F=null;if(0==C)return e.SendDataToHost(c,!0,IntToStr(60)+IntToStr(8),z&
23 +1),-1;C=0;160==c?null!=e.floppy&&(C=e.floppy.size>>9):null!=e.cdrom&&(C=e.cdrom.size>>11);switch(d.charCodeAt(2)&63){case 1:F=160==c?2880>=C?H:E:D;break;case 5:160==c&&(F=2880>=C?v:q);break;case 63:F=160==c?2880>=C?n:k:w;break;case 26:176==c&&(F=p);break;case 29:176==c&&(F=h);break;case 42:176==c&&(F=m)}null==F?e.SendCommandEndResponse(0,5,c,32,0):e.SendDataToHost(c,!0,F,z&1);break;default:return b("IDER: Unknown SCSI command",d.charCodeAt(0)),e.SendCommandEndResponse(0,5,c,32,0),-1}return 0}function a(a,
24 +b,c,n){var h=null,y=0;160==a&&(h=e.floppy,null!=e.floppy&&(y=e.floppy.size>>9));176==a&&(h=e.cdrom,null!=e.cdrom&&(y=e.cdrom.size>>11));if(0>c||b+c>y)return e.SendCommandEndResponse(1,5,a,33,0),0;if(0==c)return e.SendCommandEndResponse(1,0,a,0,0),0;null!=h&&(e.sectorStats&&e.sectorStats(1,160==a?0:1,y,b,c),160==a?(b<<=9,c<<=9):(b<<=11,c<<=11),null!==F?z.push({media:h,dev:a,lba:b,len:c,fr:n}):(F=h,M=a,W=b,r=c,d(n)))}function d(a){var b=r,c=W;r>e.iderinfo.readbfr&&(b=e.iderinfo.readbfr);r-=b;W+=b;var n=
25 +new FileReader;n.onload=function(){e.SendDataToHost(M,0==r,this.result,a&1);if(0<r&&0==C)d(a);else if(F=null,C)e.SendCommand(71),z=[],C=!1;else if(0<z.length){var b=z.shift();F=b.media;M=b.dev;W=b.lba;r=b.len;d(b.fr)}};n.readAsBinaryString(F.slice(c,c+b))}var e={protocol:3,bytesToAmt:0,bytesFromAmt:0,rx_timeout:3E4,tx_timeout:0,heartbeat:2E4,version:1,acc:"",inSequence:0,outSequence:0,iderinfo:null,enabled:!1,iderStart:0,floppy:null,cdrom:null,floppyReady:!1,cdromReady:!1,sectorStats:null},q=String.fromCharCode(0,
26 +38,49,128,0,0,0,0,5,30,16,169,8,32,2,0,3,195,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0),k=String.fromCharCode(0,92,36,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0,3,22,0,160,0,0,0,0,0,18,2,0,0,0,0,0,0,0,160,0,0,0,5,30,16,169,8,32,2,0,3,195,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0,8,10,0,0,0,0,0,0,0,0,0,0,11,6,0,0,0,17,36,49),v=String.fromCharCode(0,38,36,128,0,0,0,0,5,30,4,176,2,18,2,0,0,80,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0),n=String.fromCharCode(0,92,36,128,0,0,0,0,1,10,0,1,0,0,0,
27 +0,2,0,0,0,3,22,0,160,0,0,0,0,0,18,2,0,0,0,0,0,0,0,160,0,0,0,5,30,4,176,2,18,2,0,0,80,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,2,208,0,0,8,10,0,0,0,0,0,0,0,0,0,0,11,6,0,0,0,17,36,49),p=String.fromCharCode(0,18,1,128,0,0,0,0,26,10,0,0,0,0,0,0,0,0,0,0),h=String.fromCharCode(0,18,1,128,0,0,0,0,29,10,0,0,0,0,0,0,0,0,0,0),m=String.fromCharCode(0,32,1,128,0,0,0,0,42,24,0,0,0,0,32,0,0,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0),w=String.fromCharCode(0,40,1,128,0,0,0,0,1,6,0,255,0,0,0,0,42,24,0,0,0,0,2,0,0,0,0,0,0,128,
28 +0,0,0,0,0,0,0,0,0,0,0,0);String.fromCharCode(0,0,0,40,0,0,0,8);var B=String.fromCharCode(0,0,3,4,0,8,1,0),l=String.fromCharCode(0,1,3,4,0,0,0,2),g=String.fromCharCode(0,2,3,4,0,0,0,0),x=String.fromCharCode(0,3,3,4,41,0,0,2),u=String.fromCharCode(0,16,1,8,0,0,8,0,0,1,0,0),J=String.fromCharCode(0,30,3,0),A=String.fromCharCode(1,0,3,0),y=String.fromCharCode(1,5,3,0),H=String.fromCharCode(0,18,36,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0),E=String.fromCharCode(0,18,49,128,0,0,0,0,1,10,0,1,0,0,0,0,2,0,0,0),
29 +D=String.fromCharCode(0,14,1,128,0,0,0,0,1,6,0,255,0,0,0,0);e.xxStateChange=function(a){b("IDER-StateChange",a);0==a&&e.Stop();3==a&&e.Start()};e.Start=function(){b("IDER-Start");b(e.floppy,e.cdrom);e.bytesToAmt=0;e.bytesFromAmt=0;e.inSequence=0;e.outSequence=0;z=[];e.SendCommand(64,ShortToStrX(e.rx_timeout)+ShortToStrX(e.tx_timeout)+ShortToStrX(e.heartbeat)+IntToStrX(e.version));e.sectorStats&&(e.sectorStats(0,0,e.floppy?e.floppy.size>>9:0),e.sectorStats(0,1,e.cdrom?e.cdrom.size>>11:0))};e.Stop=
30 +function(){b("IDER-Stop");e.parent.Stop()};e.ProcessData=function(a){e.bytesFromAmt+=a.length;e.acc+=a;for(b("IDER-ProcessData",e.acc.length,rstr2hex(e.acc));;){a=e.ProcessDataEx();if(0==a)break;if(e.inSequence!=ReadIntX(e.acc,4)){b("ERROR: Out of sequence",e.inSequence,ReadIntX(e.acc,4));e.Stop();break}e.inSequence++;e.acc=e.acc.substring(a)}};e.SendCommand=function(a,c,n,h){null==c&&(c="");n=50<a&&1==n?2:0;h&&(n+=1);c=String.fromCharCode(a,0,0,n)+IntToStrX(e.outSequence++)+c;e.parent.xxSend(c);
31 +e.bytesToAmt+=c.length;75!=a&&b("IDER-SendData",c.length,rstr2hex(c))};e.SendCommandEndResponse=function(a,b,c,n,h){a?e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,197,0,3,0,0,0,c,80,0,0,0),!0):e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,135,b<<4,3,0,0,0,c,81,b,n,h),!0)};e.SendDataToHost=function(a,b,c,n){var h=n?0:c.length;1==b?e.SendCommand(84,String.fromCharCode(0,c.length&255,c.length>>8,0,n?180:181,0,2,0,h&255,h>>8,a,88,133,0,3,0,0,0,a,80,0,0,0,0,0,0)+c,b,n):e.SendCommand(84,
32 +String.fromCharCode(0,c.length&255,c.length>>8,0,n?180:181,0,2,0,h&255,h>>8,a,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0)+c,b,n)};e.SendGetDataFromHost=function(a,b){e.SendCommand(82,String.fromCharCode(0,b&255,b>>8,0,181,0,0,0,b&255,b>>8,a,88,0,0,0,0,0,0,0,0,0,0,0),!1)};e.SendDisableEnableFeatures=function(a,b){null==b&&(b="");e.SendCommand(72,String.fromCharCode(a)+b)};e.ProcessDataEx=function(){if(8>e.acc.length)return 0;switch(e.acc.charCodeAt(0)){case 65:if(30>e.acc.length)break;var a=e.acc.charCodeAt(29);
33 +if(e.acc.length<30+a)break;e.iderinfo={};e.iderinfo.major=e.acc.charCodeAt(8);e.iderinfo.minor=e.acc.charCodeAt(9);e.iderinfo.fwmajor=e.acc.charCodeAt(10);e.iderinfo.fwminor=e.acc.charCodeAt(11);e.iderinfo.readbfr=ReadShortX(e.acc,16);e.iderinfo.writebfr=ReadShortX(e.acc,18);e.iderinfo.proto=e.acc.charCodeAt(21);e.iderinfo.iana=ReadIntX(e.acc,25);b(e.iderinfo);0!=e.iderinfo.proto&&(b("Unknown proto",e.iderinfo.proto),e.Stop());8192<e.iderinfo.readbfr&&(b("Illegal read buffer size",e.iderinfo.readbfr),
34 +e.Stop());8192<e.iderinfo.writebfr&&(b("Illegal write buffer size",e.iderinfo.writebfr),e.Stop());0==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(9)):1==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(17)):2==e.iderStart&&e.SendDisableEnableFeatures(3,IntToStrX(25));return 30+a;case 67:return b("CLOSE"),e.Stop(),8;case 68:return e.SendCommand(69),8;case 69:return b("PONG"),8;case 70:if(9>e.acc.length)break;a=e.acc.charCodeAt(8);null===F?(e.SendCommand(71),b("RESETOCCURED1",a)):(C=!0,b("RESETOCCURED2",
35 +a));return 9;case 73:if(13>e.acc.length)break;var a=e.acc.charCodeAt(8),n=ReadIntX(e.acc,9);b("STATUS_DATA",a,n);switch(a){case 1:n&1&&(0==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(9)):1==e.iderStart?e.SendDisableEnableFeatures(3,IntToStrX(17)):2==e.iderStart&&e.SendDisableEnableFeatures(3,IntToStrX(25)));break;case 2:e.enabled=n&2?!0:!1;b("IDER Status: "+e.enabled);break;case 3:1!=n&&b("Register toggle failure")}return 13;case 74:if(11>e.acc.length)break;b("IDER: ABORT",e.acc.charCodeAt(8));
36 +return 11;case 75:return 8;case 80:if(28>e.acc.length)break;var a=e.acc.charCodeAt(14)&16?176:160,n=e.acc.charCodeAt(14),h=e.acc.substring(16,28),d=e.acc.charCodeAt(9);b("SCSI_CMD",a,rstr2hex(h),d,n);c(a,h,d,n);return 28;case 83:if(14>e.acc.length)break;a=ReadShortX(e.acc,9);if(e.acc.length<14+a)break;b("SCSI_WRITE, len = "+(14+a));e.SendCommand(81,String.fromCharCode(0,0,0,0,0,0,0,0,0,0,0,0,135,112,3,0,0,0,160,81,7,39,0),!0);return 14+a;default:b("Unknown IDER command",e.acc[0]),e.Stop()}return 0};
37 +var z=[],C=!1,F=null,M,W,r;return e},CreateAmtRemoteServerIder=function(){function b(){urlvars&&urlvars.idertrace&&console.log.apply(console,[].concat($jscomp.arrayFromArguments(arguments)))}var c={protocol:4,iderStart:0,floppy:null,cdrom:null,state:0,onStateChanged:null,m:{sectorStats:null,onDialogPrompt:null,dialogPrompt:function(a){c.socket.send(JSON.stringify({action:"dialogResponse",args:a}))},bytesToAmt:0,bytesFromAmt:0,server:!0,Stop:function(){c.Stop()}},xxStateChange:function(a){if(c.state!=
38 +a&&(b("SIDER-StateChange",a),c.state=a,null!=c.onStateChanged))c.onStateChanged(c,c.state)},Start:function(a,d,e,q,k){b("SIDER-Start",a,d,e,q,k);c.host=a;c.port=d;c.user=e;c.pass=q;c.connectstate=0;c.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/webider.ashx?host="+a+"&port="+d+"&tls="+k+("*"==e?"&serverauth=1":"")+("undefined"===typeof q?"&serverauth=1&user="+e:"")+"&tls1only="+
39 +c.tlsv1only);c.socket.onopen=c.xxOnSocketConnected;c.socket.onmessage=c.xxOnMessage;c.socket.onclose=c.xxOnSocketClosed;c.xxStateChange(1)},Stop:function(){b("SIDER-Stop");null!=c.socket&&(c.socket.close(),c.socket=null);c.xxStateChange(0)},xxOnSocketConnected:function(){c.xxStateChange(2);c.socket.send(JSON.stringify({action:"start"}))},xxOnMessage:function(a){var b=null;try{b=JSON.parse(a.data)}catch(e){}if(null!=b&&"string"==typeof b.action)switch(b.action){case "dialog":if(null!=c.m.onDialogPrompt)c.m.onDialogPrompt(c,
40 +b.args,b.buttons);break;case "state":2==b.state&&c.xxStateChange(3);break;case "stats":c.m.bytesToAmt=b.toAmt;c.m.bytesFromAmt=b.fromAmt;c.m.sectorStats&&c.m.sectorStats(b.mode,b.dev,b.total,b.start,b.len);break;case "error":console.log("IDER Error: "+";Floppy disk image does not exist;Invalid floppy disk image;Unable to open floppy disk image;CDROM disk image does not exist;Invalid CDROM disk image;Unable to open CDROM disk image;Can't perform IDER with no disk images".split(";")[b.code]);break;
41 +default:console.log("Unknown Server IDER action: "+b.action),breal}},xxOnSocketClosed:function(){c.Stop()}};return c},CreateWsmanComm=function(b,c,a,d,e){function q(){p.socketState=2;p.socketParseState=0;p.socketAccumulator="";p.socketHeader=null;p.socketData="";for(i in p.pendingAjaxCall)p.sendRequest(p.pendingAjaxCall[i][0],p.pendingAjaxCall[i][3],p.pendingAjaxCall[i][4])}function k(a){if("object"==typeof a.data)if(1==m)w.push(a.data);else if(h.readAsBinaryString)m=!0,h.readAsBinaryString(new Blob([a.data]));
42 +else if(h.readAsArrayBuffer)m=!0,h.readAsArrayBuffer(a.data);else{var b="";a=new Uint8Array(a.data);for(var c=a.byteLength,n=0;n<c;n++)b+=String.fromCharCode(a[n]);v(b)}else v(a.data)}function v(a){if("object"===typeof a){var b="";a=new Uint8Array(a);for(var c=a.byteLength,n=0;n<c;n++)b+=String.fromCharCode(a[n]);a=b}else if("string"!==typeof a)return;for(p.socketAccumulator+=a;;){if(0==p.socketParseState){a=p.socketAccumulator.indexOf("\r\n\r\n");if(0>a)break;p.socketHeader=p.socketAccumulator.substring(0,
43 +a).split("\r\n");if(null==p.amtVersion)for(n in p.socketHeader)0==p.socketHeader[n].indexOf("Server: Intel(R) Active Management Technology ")&&(p.amtVersion=p.socketHeader[n].substring(46));p.socketAccumulator=p.socketAccumulator.substring(a+4);p.socketParseState=1;p.socketData="";p.socketXHeader={Directive:p.socketHeader[0].split(" ")};for(n in p.socketHeader)0!=n&&(a=p.socketHeader[n].indexOf(":"),p.socketXHeader[p.socketHeader[n].substring(0,a).toLowerCase()]=p.socketHeader[n].substring(a+2))}if(1==
44 +p.socketParseState){b=-1;if(void 0==p.socketXHeader.connection||"close"!=p.socketXHeader.connection.toLowerCase()||void 0!=p.socketXHeader["transfer-encoding"]&&"chunked"==p.socketXHeader["transfer-encoding"].toLowerCase())if(void 0!=p.socketXHeader["content-length"]){b=parseInt(p.socketXHeader["content-length"]);if(p.socketAccumulator.length<b)break;a=p.socketAccumulator.substring(0,b);p.socketAccumulator=p.socketAccumulator.substring(b);p.socketData=a;b=0}else{c=p.socketAccumulator.indexOf("\r\n");
45 +if(0>c)break;b=parseInt(p.socketAccumulator.substring(0,c),16);if(isNaN(b)){p.websocket&&p.websocket.close();break}if(p.socketAccumulator.length<c+2+b+2)break;a=p.socketAccumulator.substring(c+2,c+2+b);p.socketAccumulator=p.socketAccumulator.substring(c+2+b+2);p.socketData+=a}else b=0;0==b&&(c=p.socketXHeader,a=p.socketData,b=parseInt(c.Directive[1]),isNaN(b)&&(b=602),401==b&&3>++p.authcounter?p.challengeParams=p.parseDigest(c["www-authenticate"]):(c=p.pendingAjaxCall.shift(),p.authcounter=0,p.ActiveAjaxCount--,
46 +p.gotNextMessages(a,"success",{status:b},c),p.PerformNextAjax()),p.socketParseState=0,p.socketHeader=null)}}}function n(a){0==p.inDataCount&&(p.tlsv1only=1-p.tlsv1only);p.socketState=0;null!=p.socket&&(p.socket.close(),p.socket=null);if(0<p.pendingAjaxCall.length){a=p.pendingAjaxCall.shift();var b=a[5];p.PerformAjaxExNodeJS2(a[0],a[1],a[2],a[3],a[4],--b)}}var p={PendingAjax:[],ActiveAjaxCount:0,MaxActiveAjaxCount:1,FailAllError:0,challengeParams:null,noncecounter:1,authcounter:0,socket:null,socketState:0};
47 +p.host=b;p.port=c;p.user=a;p.pass=d;p.tls=e;p.tlsv1only=0;p.cnonce=Math.random().toString(36).substring(7);p.inDataCount=0;p.amtVersion=null;p.PerformAjax=function(a,b,c,n,h,d){p.ActiveAjaxCount<p.MaxActiveAjaxCount&&0==p.PendingAjax.length?p.PerformAjaxEx(a,b,c,h,d):1==n?p.PendingAjax.unshift([a,b,c,h,d]):p.PendingAjax.push([a,b,c,h,d])};p.PerformNextAjax=function(){if(!(p.ActiveAjaxCount>=p.MaxActiveAjaxCount||0==p.PendingAjax.length)){var a=p.PendingAjax.shift();p.PerformAjaxEx(a[0],a[1],a[2],
48 +a[3],a[4]);p.PerformNextAjax()}};p.PerformAjaxEx=function(a,b,c,n,h){if(0!=p.FailAllError)p.gotNextMessagesError({status:p.FailAllError},"error",null,[a,b,c,n,h]);else return a||(a=""),p.ActiveAjaxCount++,p.PerformAjaxExNodeJS(a,b,c,n,h)};p.pendingAjaxCall=[];p.PerformAjaxExNodeJS=function(a,b,c,n,h){p.PerformAjaxExNodeJS2(a,b,c,n,h,3)};p.PerformAjaxExNodeJS2=function(a,b,c,n,h,d){0>=d||0!=p.FailAllError?(p.ActiveAjaxCount--,999!=p.FailAllError&&p.gotNextMessages(null,"error",{status:0==p.FailAllError?
49 +408:p.FailAllError},[a,b,c,n,h]),p.PerformNextAjax()):(p.pendingAjaxCall.push([a,b,c,n,h,d]),0==p.socketState?p.xxConnectHttpSocket():2==p.socketState&&p.sendRequest(a,n,h))};p.sendRequest=function(a,b,c){b=b?b:"/wsman";c=c?c:"POST";var n=c+" "+b+" HTTP/1.1\r\n";null!=p.challengeParams&&(c=hex_md5(hex_md5(p.user+":"+p.challengeParams.realm+":"+p.pass)+":"+p.challengeParams.nonce+":"+p.noncecounter+":"+p.cnonce+":"+p.challengeParams.qop+":"+hex_md5(c+":"+b)),n+="Authorization: "+p.renderDigest({username:p.user,
50 +realm:p.challengeParams.realm,nonce:p.challengeParams.nonce,uri:b,qop:p.challengeParams.qop,response:c,nc:p.noncecounter++,cnonce:p.cnonce})+"\r\n");a=n+="Host: "+p.host+":"+p.port+"\r\nContent-Length: "+a.length+"\r\n\r\n"+a;if(2==p.socketState&&null!=p.socket&&p.socket.readyState==WebSocket.OPEN){b=new Uint8Array(a.length);for(n=0;n<a.length;++n)b[n]=a.charCodeAt(n);try{p.socket.send(b.buffer)}catch(h){}}};p.parseDigest=function(a){a=a.substring(7).split(",");for(i in a)a[i]=a[i].trim();return a.reduce(function(a,
51 +b){var c=b.split("=");a[c[0]]=c[1].replace(/"/g,"");return a},{})};p.renderDigest=function(a){var b=[];for(i in a)b.push(i);return"Digest "+b.reduce(function(b,c){return b+","+c+'="'+a[c]+'"'},"").substring(1)};p.xxConnectHttpSocket=function(){p.inDataCount=0;p.socketState=1;p.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+"/webrelay.ashx?p=1&host="+p.host+"&port="+p.port+
52 +"&tls="+p.tls+"&tls1only="+p.tlsv1only+("*"==a?"&serverauth=1":"")+("undefined"===typeof d?"&serverauth=1&user="+a:""));p.socket.onopen=q;p.socket.onmessage=k;p.socket.onclose=n};var h=new FileReader,m=!1,w=[];h.readAsBinaryString?h.onload=function(a){v(a.target.result);0==w.length?m=!1:h.readAsBinaryString(new Blob([w.shift()]))}:h.readAsArrayBuffer&&(h.onloadend=function(a){v(a.target.result);0==w.length?m=!1:h.readAsArrayBuffer(w.shift())});p.gotNextMessages=function(a,b,c,n){if(999!=p.FailAllError)if(0!=
53 +p.FailAllError)n[1](null,p.FailAllError,n[2]);else if(200!=c.status)n[1](null,c.status,n[2]);else n[1](a,200,n[2])};p.gotNextMessagesError=function(a,b,c,n){if(999!=p.FailAllError)if(0!=p.FailAllError)n[1](null,p.FailAllError,n[2]);else n[1](p,null,{Header:{HttpError:a.status}},a.status,n[2])};p.CancelAllQueries=function(a){for(;0<p.PendingAjax.length;){var b=p.PendingAjax.shift();b[1](null,a,b[2])}null!=p.websocket&&(p.websocket.close(),p.websocket=null,p.socketState=0)};return p},CreateAmtRedirect=
54 +function(b){var c={};c.m=b;b.parent=c;c.State=0;c.socket=null;c.host=null;c.port=0;c.user=null;c.pass=null;c.authuri="/RedirectionService";c.tlsv1only=0;c.connectstate=0;c.protocol=b.protocol;c.amtaccumulator="";c.amtsequence=1;c.amtkeepalivetimer=null;c.onStateChanged=null;c.Start=function(a,b,d,n,e){c.host=a;c.port=b;c.user=d;c.pass=n;c.connectstate=0;c.socket=new WebSocket(window.location.protocol.replace("http","ws")+"//"+window.location.host+window.location.pathname.substring(0,window.location.pathname.lastIndexOf("/"))+
55 +"/webrelay.ashx?p=2&host="+a+"&port="+b+"&tls="+e+("*"==d?"&serverauth=1":"")+("undefined"===typeof n?"&serverauth=1&user="+d:"")+"&tls1only="+c.tlsv1only);c.socket.onopen=c.xxOnSocketConnected;c.socket.onmessage=c.xxOnMessage;c.socket.onclose=c.xxOnSocketClosed;c.xxStateChange(1)};c.xxOnSocketConnected=function(){urlvars&&urlvars.redirtrace&&console.log("REDIR-CONNECT");c.xxStateChange(2);1==c.protocol&&c.xxSend(c.RedirectStartSol);2==c.protocol&&c.xxSend(c.RedirectStartKvm);3==c.protocol&&c.xxSend(c.RedirectStartIder)};
56 +var a=new FileReader,d=!1,e=[];a.readAsBinaryString?a.onload=function(b){c.xxOnSocketData(b.target.result);0==e.length?d=!1:a.readAsBinaryString(new Blob([e.shift()]))}:a.readAsArrayBuffer&&(a.onloadend=function(b){c.xxOnSocketData(b.target.result);0==e.length?d=!1:a.readAsArrayBuffer(e.shift())});c.xxOnMessage=function(b){c.inDataCount++;if("object"==typeof b.data)if(1==d)e.push(b.data);else if(a.readAsBinaryString)d=!0,a.readAsBinaryString(new Blob([b.data]));else if(f.readAsArrayBuffer)d=!0,a.readAsArrayBuffer(b.data);
57 +else{var k="";b=new Uint8Array(b.data);for(var v=b.byteLength,n=0;n<v;n++)k+=String.fromCharCode(b[n]);c.xxOnSocketData(k)}else c.xxOnSocketData(b.data)};c.xxOnSocketData=function(a){if(a&&-1!=c.connectstate){if("object"===typeof a){var b="",d=new Uint8Array(a),n=d.byteLength;for(a=0;a<n;a++)b+=String.fromCharCode(d[a]);a=b}else if("string"!==typeof a)return;if((2==c.protocol||3==c.protocol)&&1==c.connectstate)return c.m.ProcessData(a);c.amtaccumulator+=a;for(urlvars&&urlvars.redirtrace&&console.log("REDIR-RECV("+
58 +c.amtaccumulator.length+"): "+rstr2hex(c.amtaccumulator));1<=c.amtaccumulator.length;){a=0;switch(c.amtaccumulator.charCodeAt(0)){case 17:if(4>c.amtaccumulator.length)return;switch(c.amtaccumulator.charCodeAt(1)){case 0:if(13>c.amtaccumulator.length)return;b=c.amtaccumulator.charCodeAt(12);if(c.amtaccumulator.length<13+b)return;c.xxSend(String.fromCharCode(19,0,0,0,0,0,0,0,0));a=13+b;break;default:c.Stop()}break;case 20:if(9>c.amtaccumulator.length)return;var e=ReadIntX(c.amtaccumulator,5);if(c.amtaccumulator.length<
59 +9+e)return;var n=c.amtaccumulator.charCodeAt(1),b=c.amtaccumulator.charCodeAt(4),h=[];for(a=0;a<e;a++)h.push(c.amtaccumulator.charCodeAt(9+a));d=c.amtaccumulator.substring(9,9+e);a=9+e;if(0==b)0<=h.indexOf(4)?c.xxSend(String.fromCharCode(19,0,0,0,4)+IntToStrX(c.user.length+c.authuri.length+8)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(0,0)+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(0,0,0,0)):0<=h.indexOf(3)?c.xxSend(String.fromCharCode(19,0,0,0,3)+IntToStrX(c.user.length+
60 +c.authuri.length+7)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(0,0)+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(0,0,0)):0<=h.indexOf(1)?c.xxSend(String.fromCharCode(19,0,0,0,1)+IntToStrX(c.user.length+c.pass.length+2)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(c.pass.length)+c.pass):c.Stop();else if(3!=b&&4!=b||1!=n)0==n?(1==c.protocol&&c.xxSend(String.fromCharCode(32,0,0,0)+IntToStrX(c.amtsequence++)+ShortToStrX(1E4)+ShortToStrX(100)+
61 +ShortToStrX(0)+ShortToStrX(1E4)+ShortToStrX(100)+ShortToStrX(0)+IntToStrX(0)),2==c.protocol&&c.xxSend(String.fromCharCode(64,0,0,0,0,0,0,0)),3==c.protocol&&(c.connectstate=1,c.xxStateChange(3))):c.Stop();else{var e=0,h=d.charCodeAt(e),n=d.substring(e+1,e+1+h),e=e+(h+1),m=d.charCodeAt(e),h=d.substring(e+1,e+1+m),e=e+(m+1),m=0,m=null,w=c.xxRandomNonce(32),B="";4==b&&(m=d.charCodeAt(e),m=d.substring(e+1,e+1+m),B="00000002:"+w+":"+m+":");d=hex_md5(hex_md5(c.user+":"+n+":"+c.pass)+":"+h+":"+B+hex_md5("POST:"+
62 +c.authuri));e=c.user.length+n.length+h.length+c.authuri.length+w.length+8+d.length+7;4==b&&(e+=m.length+1);d=String.fromCharCode(19,0,0,0,b)+IntToStrX(e)+String.fromCharCode(c.user.length)+c.user+String.fromCharCode(n.length)+n+String.fromCharCode(h.length)+h+String.fromCharCode(c.authuri.length)+c.authuri+String.fromCharCode(w.length)+w+String.fromCharCode(8)+"00000002"+String.fromCharCode(d.length)+d;4==b&&(d+=String.fromCharCode(m.length)+m);c.xxSend(d)}break;case 33:if(23>c.amtaccumulator.length)break;
63 a=23;c.xxSend(String.fromCharCode(39,0,0,0)+IntToStrX(c.amtsequence++)+String.fromCharCode(0,0,27,0,0,0));1==c.protocol&&(c.amtkeepalivetimer=setInterval(c.xxSendAmtKeepAlive,2E3));c.connectstate=1;c.xxStateChange(3);break;case 41:if(10>c.amtaccumulator.length)break;a=10;break;case 42:if(10>c.amtaccumulator.length)break;b=10+((c.amtaccumulator.charCodeAt(9)&255)<<8)+(c.amtaccumulator.charCodeAt(8)&255);if(c.amtaccumulator.length<b)break;c.m.ProcessData(c.amtaccumulator.substring(10,b));a=b;break;
64 case 43:if(8>c.amtaccumulator.length)break;a=8;break;case 65:if(8>c.amtaccumulator.length)break;c.connectstate=1;c.m.Start();8<c.amtaccumulator.length&&c.m.ProcessData(c.amtaccumulator.substring(8));a=c.amtaccumulator.length;break;default:console.log("Unknown Intel AMT command: "+c.amtaccumulator.charCodeAt(0)+" acclen="+c.amtaccumulator.length);c.Stop();return}if(0==a)break;c.amtaccumulator=c.amtaccumulator.substring(a)}}};c.xxSend=function(a){urlvars&&urlvars.redirtrace&&console.log("REDIR-SEND("+
65 a.length+"): "+rstr2hex(a));if(null!=c.socket&&c.socket.readyState==WebSocket.OPEN){for(var b=new Uint8Array(a.length),d=0;d<a.length;++d)b[d]=a.charCodeAt(d);c.socket.send(b.buffer)}};c.Send=function(a){null!=c.socket&&1==c.connectstate&&(1==c.protocol?c.xxSend(String.fromCharCode(40,0,0,0)+IntToStrX(c.amtsequence++)+ShortToStrX(a.length)+a):c.xxSend(a))};c.xxSendAmtKeepAlive=function(){null!=c.socket&&c.xxSend(String.fromCharCode(43,0,0,0)+IntToStrX(c.amtsequence++))};c.xxRandomNonceX="abcdef0123456789";
66 c.xxRandomNonce=function(a){for(var b="",d=0;d<a;d++)b+=c.xxRandomNonceX.charAt(Math.floor(Math.random()*c.xxRandomNonceX.length));return b};c.xxOnSocketClosed=function(){urlvars&&urlvars.redirtrace&&console.log("REDIR-CLOSED");c.Stop()};c.xxStateChange=function(a){if(c.State!=a&&(c.State=a,c.m.xxStateChange(c.State),null!=c.onStateChanged))c.onStateChanged(c,c.State)};c.Stop=function(){c.xxStateChange(0);c.connectstate=-1;c.amtaccumulator="";null!=c.socket&&(c.socket.close(),c.socket=null);null!=
67 -c.amtkeepalivetimer&&(clearInterval(c.amtkeepalivetimer),c.amtkeepalivetimer=null)};c.RedirectStartSol=String.fromCharCode(16,0,0,0,83,79,76,32);c.RedirectStartKvm=String.fromCharCode(16,1,0,0,75,86,77,82);c.RedirectStartIder=String.fromCharCode(16,0,0,0,73,68,69,82);return c},WsmanStackCreateService=function(b,c,a,d,e,n){function p(a){for(var b,c={},m=0;m<a.childNodes.length;m++){var g=a.childNodes[m];b=null==g.childElementCount||0==g.childElementCount?g.textContent:p(g);"true"==b&&(b=!0);"false"==
68 -b&&(b=!1);parseInt(b)+""===b&&(b=parseInt(b));var h=b;if(null!=g.attributes&&0<g.attributes.length)for(h={Value:b},b=0;b<g.attributes.length;b++)h["@"+g.attributes[b].name]=g.attributes[b].value;c[g.localName]instanceof Array?c[g.localName].push(h):c[g.localName]=null==c[g.localName]?h:[c[g.localName],h]}return c}function r(a){if(!a)return"";var b="",c;for(c in a)a.hasOwnProperty(c)&&0===c.indexOf("@")&&(b+=" "+c.substring(1)+'="'+a[c]+'"');return b}function m(a){if(!a)return"";if("string"==typeof a)return a;
69 -if(a.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+a.InstanceID+"</w:Selector></w:SelectorSet>";var b="<w:SelectorSet>",c;for(c in a)if(a.hasOwnProperty(c)){b+='<w:Selector Name="'+c+'">';if(a[c].ReferenceParameters){var b=b+"<a:EndpointReference>",b=b+("<a:Address>"+a[c].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+a[c].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>"),m=a[c].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(m))for(var g=
70 -0;g<m.length;g++)b+="<w:Selector"+r(m[g])+">"+m[g].Value+"</w:Selector>";else b+="<w:Selector"+r(m)+">"+m.Value+"</w:Selector>";b+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else b+=a[c];b+="</w:Selector>"}return b+"</w:SelectorSet>"}var g={NextMessageId:1,Address:"/wsman"};g.comm=CreateWsmanComm(b,c,a,d,e,n);g.PerformAjax=function(a,b,c,m,d){null==d&&(d="");g.comm.PerformAjax('<?xml version="1.0" encoding="utf-8"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+
71 -d+"><Header><a:Action>"+a,function(a,c,m){200!=c?b(g,null,{Header:{HttpError:c}},c,m):(a=g.ParseWsman(a))&&null!=a?b(g,a.Header.ResourceURI,a,200,m):b(g,null,{Header:{HttpError:c}},601,m)},c,m)};g.CancelAllQueries=function(a){g.comm.CancelAllQueries(a)};g.GetNameFromUrl=function(a){var b=a.lastIndexOf("/");return-1==b?a:a.substring(b+1)};g.ExecSubscribe=function(a,b,c,d,k,h,e,q,C,B){var y="",I="";q="";null!=C&&null!=B&&(y='<t:IssuedTokens xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>'+
72 -C+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+B+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",I='<w:Auth Profile="http://schemas.dmtf.org/wbem/wsman/1/wsman/secprofile/http/digest"/>');null!=q&&(q="<a:ReferenceParameters><m:arg>"+q+"</m:arg></a:ReferenceParameters>");"PushWithAck"==b?b="dmtf.org/wbem/wsman/1/wsman/PushWithAck":"Push"==b&&(b="xmlsoap.org/ws/2004/08/eventing/DeliveryModes/Push");
73 -a="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+m(e)+y+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.'+b+'"><e:NotifyTo><a:Address>'+c+"</a:Address>"+q+"</e:NotifyTo>"+I+"</e:Delivery></e:Subscribe>";g.PerformAjax(a+"</Body></Envelope>",d,k,
74 -h,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:m="http://x.com"')};g.ExecUnSubscribe=function(a,b,c,d,k){a="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+m(k)+"</Header><Body><e:Unsubscribe/>";g.PerformAjax(a+"</Body></Envelope>",b,c,d,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')};
75 -g.ExecPut=function(a,b,c,d,k,h){h="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+m(h)+"</Header><Body>";if(a&&null!=b){var e=g.GetNameFromUrl(a);a="<r:"+e+' xmlns:r="'+a+'">';for(var q in b)if(b.hasOwnProperty(q)&&
76 -0!==q.indexOf("__")&&0!==q.indexOf("@")&&null!=b[q]&&"function"!==typeof b[q])if("object"===typeof b[q]&&b[q].ReferenceParameters){a+="<r:"+q+"><a:Address>"+b[q].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+b[q].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var C=b[q].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(C))for(var B=0;B<C.length;B++)a+="<w:Selector"+r(C[B])+">"+C[B].Value+"</w:Selector>";else a+="<w:Selector"+r(C)+">"+C.Value+"</w:Selector>";
77 -a+="</w:SelectorSet></a:ReferenceParameters></r:"+q+">"}else if(Array.isArray(b[q]))for(B=0;B<b[q].length;B++)a+="<r:"+q+">"+b[q][B].toString()+"</r:"+q+">";else a+="<r:"+q+">"+b[q].toString()+"</r:"+q+">";b=a+("</r:"+e+">")}else b="";g.PerformAjax(h+b+"</Body></Envelope>",c,d,k)};g.ExecCreate=function(a,b,c,d,k,h){var e=g.GetNameFromUrl(a);a="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +
78 -"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+m(h)+"</Header><Body><g:"+e+' xmlns:g="'+a+'">';for(var q in b)a+="<g:"+q+">"+b[q]+"</g:"+q+">";g.PerformAjax(a+"</g:"+e+"></Body></Envelope>",c,d,k)};g.ExecDelete=function(a,b,c,d,k){a="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +
79 -"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+m(b)+"</Header><Body /></Envelope>";g.PerformAjax(a,c,d,k)};g.ExecGet=function(a,b,c,m){g.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",
80 -b,c,m)};g.ExecMethod=function(a,b,c,m,d,h,e){var q="",C;for(C in c)if(null!=c[C])if(Array.isArray(c[C]))for(var B in c[C])q+="<r:"+C+">"+c[C][B]+"</r:"+C+">";else q+="<r:"+C+">"+c[C]+"</r:"+C+">";g.ExecMethodXml(a,b,q,m,d,h,e)};g.ExecMethodXml=function(a,b,c,d,k,h,e){g.PerformAjax(a+"/"+b+"</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+
81 -m(e)+"</Header><Body><r:"+b+'_INPUT xmlns:r="'+a+'">'+c+"</r:"+b+"_INPUT></Body></Envelope>",d,k,h)};g.ExecEnum=function(a,b,c,m){g.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',
82 -b,c,m)};g.ExecPull=function(a,b,c,m,d){g.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+g.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+g.NextMessageId++ +'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+b+"</EnumerationContext></Pull></Body></Envelope>",
83 -c,m,d)};g.ParseWsman=function(a){try{if(!a.childNodes){var b=a;if(window.DOMParser)a=(new DOMParser).parseFromString(b,"text/xml");else{var c=new ActiveXObject("Microsoft.XMLDOM");c.async=!1;c.loadXML(b);a=c}}var b={Header:{}},m=a.getElementsByTagName("Header")[0],g;m||(m=a.getElementsByTagName("a:Header")[0]);if(!m)return null;for(c=0;c<m.childNodes.length;c++){var d=m.childNodes[c];b.Header[d.localName]=d.textContent}var e=a.getElementsByTagName("Body")[0];e||(e=a.getElementsByTagName("a:Body")[0]);
84 -if(!e)return null;0<e.childNodes.length&&(g=e.childNodes[0].localName,g.indexOf("_OUTPUT")==g.length-7&&(g=g.substring(0,g.length-7)),b.Header.Method=g,b.Body=p(e.childNodes[0]));return b}catch(q){return console.log("Unable to parse XML: "+a),null}};return g};
85 -function AmtStackCreateService(b){function c(){var a=l.GetPendingActions();v<a&&(v=a);null!=l.onProcessChanged&&x!=a&&(x=a,l.onProcessChanged(a,v));0==a&&(v=0)}function a(a,b,c,m,g,h,k){200!=g?(c(l,a,null,g,h),e(1)):null!=b&&"EnumerateResponse"==b.Header.Method&&b.Body.EnumerationContext?l.wsman.ExecPull(m,b.Body.EnumerationContext,function(b,m,g,e){d(a,g,c,m,[],e,h,k)}):(c(l,a,null,603,h),e(1))}function d(a,b,m,g,h,k,z,D){if(200!=k)m(l,a,null,k,z),e(1);else if(null==b||"PullResponse"!=b.Header.Method)m(l,
86 -a,null,604,z),e(1);else{for(var q in b.Body.Items)if(b.Body.Items[q]instanceof Array)for(var w in b.Body.Items[q])"function"!=typeof b.Body.Items[q][w]&&h.push(b.Body.Items[q][w]);else"function"!=typeof b.Body.Items[q]&&h.push(b.Body.Items[q]);b.Body.EnumerationContext?l.wsman.ExecPull(g,b.Body.EnumerationContext,function(b,c,g,k){d(a,g,m,c,h,k,z,1)}):(e(1),m(l,a,h,k,z),c())}}function e(a){l.ActiveEnumsCount-=a;l.ActiveEnumsCount>=l.MaxActiveEnumsCount||0==l.PendingEnums.length?c():(a=l.PendingEnums.shift(),
87 -l.Enum(a[0],a[1],a[2]),e(0))}function n(a,b,m,g,d,h,k){l.PendingBatchOperations-=2;var e=b.shift(),q=l.Enum;"*"==e[0]&&(q=l.Get,e=e.substring(1));q(e,function(d,e,q,D,A){A[2][e]={response:null==q?null:q.Body,responses:q,status:D};0==A[1].length||401==D||1!=h&&200!=D&&400!=D?(l.PendingBatchOperations-=2*b.length,c(),m(l,a,A[2],D,g)):(c(),n(a,b,m,g,A[2],k))},[a,b,d],k);c()}function p(a){a.names.length<=a.current?a.callback(l,a.name,a.responses,200,a.tag):(l.wsman.ExecGet(l.CompleteName(a.names[a.current]),
88 -function(b,c,m,g){null==m||200!=g?a.callback(l,a.name,null,g,a.tag):(a.responses[m.Header.Method]=m,p(a))},a.pri),a.current++);c()}function r(a,b,c,g,d){if(200!=g||"0"!=c.Body.ReturnValue)d[0](l,null,d[2]);else l.AMT_MessageLog_GetRecords(c.Body.IterationIdentifier,390,m,d)}function m(a,b,c,d,h){if(200!=d||"0"!=c.Body.ReturnValue)h[0](l,null,h[2]);else{var k,e,q;b=h[2];d=new Date;var A=c.Body.RecordArray;"string"===typeof A&&(c.Body.RecordArray=[c.Body.RecordArray]);for(k in A){a=null;try{a=window.atob(A[k])}catch(w){}if(null!=
89 -a&&(e=ReadIntX(a,0),0<e&&4294967295>e)){q={DeviceAddress:a.charCodeAt(4),EventSensorType:a.charCodeAt(5),EventType:a.charCodeAt(6),EventOffset:a.charCodeAt(7),EventSourceType:a.charCodeAt(8),EventSeverity:a.charCodeAt(9),SensorNumber:a.charCodeAt(10),Entity:a.charCodeAt(11),EntityInstance:a.charCodeAt(12),EventData:[],Time:new Date(1E3*(e+60*d.getTimezoneOffset()))};for(e=13;21>e;e++)q.EventData.push(a.charCodeAt(e));q.EntityStr=K[q.Entity];q.Desc=g(q.EventSensorType,q.EventOffset,q.EventData,q.Entity);
90 -q.EntityStr||(q.EntityStr="Unknown");b.push(q)}}if(1!=c.Body.NoMoreRecords)l.AMT_MessageLog_GetRecords(c.Body.IterationIdentifier,390,m,[h[0],b,h[2]]);else h[0](l,b,h[2])}}function g(a,b,c,m){if(15==a)return 235==c[0]?"Invalid Data":0==b?k[c[1]]:h[c[1]];if(18==a&&170==c[0])return"Agent watchdog "+char2hex(c[4])+char2hex(c[3])+char2hex(c[2])+char2hex(c[1])+"-"+char2hex(c[6])+char2hex(c[5])+"-... changed to "+l.WatchdogCurrentStates[c[7]];if(5==a&&0==b)return"Case intrusion";if(192==a&&0==b&&170==c[0]&&
67 +c.amtkeepalivetimer&&(clearInterval(c.amtkeepalivetimer),c.amtkeepalivetimer=null)};c.RedirectStartSol=String.fromCharCode(16,0,0,0,83,79,76,32);c.RedirectStartKvm=String.fromCharCode(16,1,0,0,75,86,77,82);c.RedirectStartIder=String.fromCharCode(16,0,0,0,73,68,69,82);return c},WsmanStackCreateService=function(b,c,a,d,e,q){function k(a){for(var b,c={},n=0;n<a.childNodes.length;n++){var d=a.childNodes[n];b=null==d.childElementCount||0==d.childElementCount?d.textContent:k(d);"true"==b&&(b=!0);"false"==
68 +b&&(b=!1);parseInt(b)+""===b&&(b=parseInt(b));var e=b;if(null!=d.attributes&&0<d.attributes.length)for(e={Value:b},b=0;b<d.attributes.length;b++)e["@"+d.attributes[b].name]=d.attributes[b].value;c[d.localName]instanceof Array?c[d.localName].push(e):c[d.localName]=null==c[d.localName]?e:[c[d.localName],e]}return c}function v(a){if(!a)return"";var b="",c;for(c in a)a.hasOwnProperty(c)&&0===c.indexOf("@")&&(b+=" "+c.substring(1)+'="'+a[c]+'"');return b}function n(a){if(!a)return"";if("string"==typeof a)return a;
69 +if(a.InstanceID)return'<w:SelectorSet><w:Selector Name="InstanceID">'+a.InstanceID+"</w:Selector></w:SelectorSet>";var b="<w:SelectorSet>",c;for(c in a)if(a.hasOwnProperty(c)){b+='<w:Selector Name="'+c+'">';if(a[c].ReferenceParameters){var b=b+"<a:EndpointReference>",b=b+("<a:Address>"+a[c].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+a[c].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>"),n=a[c].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(n))for(var d=
70 +0;d<n.length;d++)b+="<w:Selector"+v(n[d])+">"+n[d].Value+"</w:Selector>";else b+="<w:Selector"+v(n)+">"+n.Value+"</w:Selector>";b+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else b+=a[c];b+="</w:Selector>"}return b+"</w:SelectorSet>"}var p={NextMessageId:1,Address:"/wsman"};p.comm=CreateWsmanComm(b,c,a,d,e,q);p.PerformAjax=function(a,b,c,n,d){null==d&&(d="");p.comm.PerformAjax('<?xml version="1.0" encoding="utf-8"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+
71 +d+"><Header><a:Action>"+a,function(a,c,n){200!=c?b(p,null,{Header:{HttpError:c}},c,n):(a=p.ParseWsman(a))&&null!=a?b(p,a.Header.ResourceURI,a,200,n):b(p,null,{Header:{HttpError:c}},601,n)},c,n)};p.CancelAllQueries=function(a){p.comm.CancelAllQueries(a)};p.GetNameFromUrl=function(a){var b=a.lastIndexOf("/");return-1==b?a:a.substring(b+1)};p.ExecSubscribe=function(a,b,c,d,e,g,x,u,J,A){var y="",H="";u="";null!=J&&null!=A&&(y='<t:IssuedTokens xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>'+
72 +J+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+A+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",H='<w:Auth Profile="http://schemas.dmtf.org/wbem/wsman/1/wsman/secprofile/http/digest"/>');null!=u&&(u="<a:ReferenceParameters><m:arg>"+u+"</m:arg></a:ReferenceParameters>");"PushWithAck"==b?b="dmtf.org/wbem/wsman/1/wsman/PushWithAck":"Push"==b&&(b="xmlsoap.org/ws/2004/08/eventing/DeliveryModes/Push");
73 +a="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+n(x)+y+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.'+b+'"><e:NotifyTo><a:Address>'+c+"</a:Address>"+u+"</e:NotifyTo>"+H+"</e:Delivery></e:Subscribe>";p.PerformAjax(a+"</Body></Envelope>",d,e,
74 +g,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:m="http://x.com"')};p.ExecUnSubscribe=function(a,b,c,d,e){a="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+n(e)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(a+"</Body></Envelope>",b,c,d,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')};
75 +p.ExecPut=function(a,b,c,d,e,g){g="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+n(g)+"</Header><Body>";if(a&&null!=b){var x=p.GetNameFromUrl(a);a="<r:"+x+' xmlns:r="'+a+'">';for(var u in b)if(b.hasOwnProperty(u)&&
76 +0!==u.indexOf("__")&&0!==u.indexOf("@")&&null!=b[u]&&"function"!==typeof b[u])if("object"===typeof b[u]&&b[u].ReferenceParameters){a+="<r:"+u+"><a:Address>"+b[u].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+b[u].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var J=b[u].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(J))for(var A=0;A<J.length;A++)a+="<w:Selector"+v(J[A])+">"+J[A].Value+"</w:Selector>";else a+="<w:Selector"+v(J)+">"+J.Value+"</w:Selector>";
77 +a+="</w:SelectorSet></a:ReferenceParameters></r:"+u+">"}else if(Array.isArray(b[u]))for(A=0;A<b[u].length;A++)a+="<r:"+u+">"+b[u][A].toString()+"</r:"+u+">";else a+="<r:"+u+">"+b[u].toString()+"</r:"+u+">";b=a+("</r:"+x+">")}else b="";p.PerformAjax(g+b+"</Body></Envelope>",c,d,e)};p.ExecCreate=function(a,b,c,d,e,g){var x=p.GetNameFromUrl(a);a="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +
78 +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+n(g)+"</Header><Body><g:"+x+' xmlns:g="'+a+'">';for(var u in b)a+="<g:"+u+">"+b[u]+"</g:"+u+">";p.PerformAjax(a+"</g:"+x+"></Body></Envelope>",c,d,e)};p.ExecDelete=function(a,b,c,d,e){a="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +
79 +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+n(b)+"</Header><Body /></Envelope>";p.PerformAjax(a,c,d,e)};p.ExecGet=function(a,b,c,n){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",
80 +b,c,n)};p.ExecMethod=function(a,b,c,n,d,e,x){var u="",J;for(J in c)if(null!=c[J])if(Array.isArray(c[J]))for(var A in c[J])u+="<r:"+J+">"+c[J][A]+"</r:"+J+">";else u+="<r:"+J+">"+c[J]+"</r:"+J+">";p.ExecMethodXml(a,b,u,n,d,e,x)};p.ExecMethodXml=function(a,b,c,d,e,g,x){p.PerformAjax(a+"/"+b+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+
81 +n(x)+"</Header><Body><r:"+b+'_INPUT xmlns:r="'+a+'">'+c+"</r:"+b+"_INPUT></Body></Envelope>",d,e,g)};p.ExecEnum=function(a,b,c,n){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',
82 +b,c,n)};p.ExecPull=function(a,b,c,n,d){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+a+"</w:ResourceURI><a:MessageID>"+p.NextMessageId++ +'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+b+"</EnumerationContext></Pull></Body></Envelope>",
83 +c,n,d)};p.ParseWsman=function(a){try{if(!a.childNodes){var b=a;if(window.DOMParser)a=(new DOMParser).parseFromString(b,"text/xml");else{var c=new ActiveXObject("Microsoft.XMLDOM");c.async=!1;c.loadXML(b);a=c}}var b={Header:{}},n=a.getElementsByTagName("Header")[0],d;n||(n=a.getElementsByTagName("a:Header")[0]);if(!n)return null;for(c=0;c<n.childNodes.length;c++){var e=n.childNodes[c];b.Header[e.localName]=e.textContent}var p=a.getElementsByTagName("Body")[0];p||(p=a.getElementsByTagName("a:Body")[0]);
84 +if(!p)return null;0<p.childNodes.length&&(d=p.childNodes[0].localName,d.indexOf("_OUTPUT")==d.length-7&&(d=d.substring(0,d.length-7)),b.Header.Method=d,b.Body=k(p.childNodes[0]));return b}catch(u){return console.log("Unable to parse XML: "+a),null}};return p};
85 +function AmtStackCreateService(b){function c(){var a=m.GetPendingActions();w<a&&(w=a);null!=m.onProcessChanged&&B!=a&&(B=a,m.onProcessChanged(a,w));0==a&&(w=0)}function a(a,b,c,n,h,g,z){200!=h?(c(m,a,null,h,g),e(1)):null!=b&&"EnumerateResponse"==b.Header.Method&&b.Body.EnumerationContext?m.wsman.ExecPull(n,b.Body.EnumerationContext,function(b,n,h,e){d(a,h,c,n,[],e,g,z)}):(c(m,a,null,603,g),e(1))}function d(a,b,n,h,g,l,z,C){if(200!=l)n(m,a,null,l,z),e(1);else if(null==b||"PullResponse"!=b.Header.Method)n(m,
86 +a,null,604,z),e(1);else{for(var F in b.Body.Items)if(b.Body.Items[F]instanceof Array)for(var u in b.Body.Items[F])"function"!=typeof b.Body.Items[F][u]&&g.push(b.Body.Items[F][u]);else"function"!=typeof b.Body.Items[F]&&g.push(b.Body.Items[F]);b.Body.EnumerationContext?m.wsman.ExecPull(h,b.Body.EnumerationContext,function(b,c,h,e){d(a,h,n,c,g,e,z,1)}):(e(1),n(m,a,g,l,z),c())}}function e(a){m.ActiveEnumsCount-=a;m.ActiveEnumsCount>=m.MaxActiveEnumsCount||0==m.PendingEnums.length?c():(a=m.PendingEnums.shift(),
87 +m.Enum(a[0],a[1],a[2]),e(0))}function q(a,b,n,d,h,e,z){m.PendingBatchOperations-=2;var C=b.shift(),g=m.Enum;"*"==C[0]&&(g=m.Get,C=C.substring(1));g(C,function(h,C,g,l,F){F[2][C]={response:null==g?null:g.Body,responses:g,status:l};0==F[1].length||401==l||1!=e&&200!=l&&400!=l?(m.PendingBatchOperations-=2*b.length,c(),n(m,a,F[2],l,d)):(c(),q(a,b,n,d,F[2],z))},[a,b,h],z);c()}function k(a){a.names.length<=a.current?a.callback(m,a.name,a.responses,200,a.tag):(m.wsman.ExecGet(m.CompleteName(a.names[a.current]),
88 +function(b,c,n,d){null==n||200!=d?a.callback(m,a.name,null,d,a.tag):(a.responses[n.Header.Method]=n,k(a))},a.pri),a.current++);c()}function v(a,b,c,d,h){if(200!=d||"0"!=c.Body.ReturnValue)h[0](m,null,h[2]);else m.AMT_MessageLog_GetRecords(c.Body.IterationIdentifier,390,n,h)}function n(a,b,c,d,h){if(200!=d||"0"!=c.Body.ReturnValue)h[0](m,null,h[2]);else{var e,z,C;b=h[2];d=new Date;var g=c.Body.RecordArray;"string"===typeof g&&(c.Body.RecordArray=[c.Body.RecordArray]);for(e in g){a=null;try{a=window.atob(g[e])}catch(l){}if(null!=
89 +a&&(z=ReadIntX(a,0),0<z&&4294967295>z)){C={DeviceAddress:a.charCodeAt(4),EventSensorType:a.charCodeAt(5),EventType:a.charCodeAt(6),EventOffset:a.charCodeAt(7),EventSourceType:a.charCodeAt(8),EventSeverity:a.charCodeAt(9),SensorNumber:a.charCodeAt(10),Entity:a.charCodeAt(11),EntityInstance:a.charCodeAt(12),EventData:[],Time:new Date(1E3*(z+60*d.getTimezoneOffset()))};for(z=13;21>z;z++)C.EventData.push(a.charCodeAt(z));C.EntityStr=x[C.Entity];C.Desc=p(C.EventSensorType,C.EventOffset,C.EventData,C.Entity);
90 +C.EntityStr||(C.EntityStr="Unknown");b.push(C)}}if(1!=c.Body.NoMoreRecords)m.AMT_MessageLog_GetRecords(c.Body.IterationIdentifier,390,n,[h[0],b,h[2]]);else h[0](m,b,h[2])}}function p(a,b,c,n){if(15==a)return 235==c[0]?"Invalid Data":0==b?l[c[1]]:g[c[1]];if(18==a&&170==c[0])return"Agent watchdog "+char2hex(c[4])+char2hex(c[3])+char2hex(c[2])+char2hex(c[1])+"-"+char2hex(c[6])+char2hex(c[5])+"-... changed to "+m.WatchdogCurrentStates[c[7]];if(5==a&&0==b)return"Case intrusion";if(192==a&&0==b&&170==c[0]&&
91 48==c[1]){if(0==c[2])return"A remote Serial Over LAN session was established.";if(1==c[2])return"Remote Serial Over LAN session finished. User control was restored.";if(2==c[2])return"A remote IDE-Redirection session was established.";if(3==c[2])return"Remote IDE-Redirection session finished. User control was restored."}if(36==a)return a=(c[1]<<24)+(c[2]<<16)+(c[3]<<8)+c[4],b="#"+c[0],170==c[0]&&(b="wired"),4294967293==a?"All received packet filter was matched on "+b+" interface.":4294967292==a?"All outbound packet filter was matched on "+
92 b+" interface.":4294967290==a?"Spoofed packet filter was matched on "+b+" interface.":"Filter "+a+" was matched on "+b+" interface.";if(192==a)return 0==c[2]?"Security policy invoked. Some or all network traffic (TX) was stopped.":2==c[2]?"Security policy invoked. Some or all network traffic (RX) was stopped.":"Security policy invoked.";if(193==a){if(170==c[0]&&48==c[1]&&0==c[2]&&0==c[3])return"User request for remote connection.";if(170==c[0]&&32==c[1]&&3==c[2]&&1==c[3])return"EAC error: attempt to get posture while NAC in Intel\ufffd AMT is disabled.";
93 -if(170==c[0]&&32==c[1]&&4==c[2]&&0==c[3])return"Certificate revoked. "}return 6==a?"Authentication failed "+(c[1]+(c[2]<<8))+" times. The system may be under attack.":30==a?"No bootable media":32==a?"Operating system lockup or power interrupt":35==a?"System boot failure":37==a?"System firmware started (at least one CPU is properly executing).":"Unknown Sensor Type #"+a}function w(a,b,c,m,g){if(200!=m)g[0](l,[],m);else{var d,h,e=g[1],k=new Date,x;if(0<c.Body.RecordsReturned)for(h in c.Body.EventRecords=
94 -MakeToArray(c.Body.EventRecords),c.Body.EventRecords){a=null;try{a=window.atob(c.Body.EventRecords[h])}catch(v){console.log(v+" "+c.Body.EventRecords[h])}b={AuditAppID:ReadShort(a,0),EventID:ReadShort(a,2),InitiatorType:a.charCodeAt(4)};b.AuditApp=q[b.AuditAppID];b.Event=q[100*b.AuditAppID+b.EventID];b.Event||(b.Event="#"+b.EventID);0==b.InitiatorType&&(d=a.charCodeAt(5),b.Initiator=a.substring(6,6+d),d=6+d);1==b.InitiatorType&&(b.KerberosUserInDomain=ReadInt(a,5),d=a.charCodeAt(9),b.Initiator=GetSidString(a.substring(10,
95 -10+d)),d=10+d);2==b.InitiatorType&&(b.Initiator="<i>Local</i>",d=5);3==b.InitiatorType&&(b.Initiator="<i>KVM Default Port</i>",d=5);x=ReadInt(a,d);b.Time=new Date(1E3*(x+60*k.getTimezoneOffset()));d+=4;b.MCLocationType=a.charCodeAt(d++);x=a.charCodeAt(d++);b.NetAddress=a.substring(d,d+x);d+=x;x=a.charCodeAt(d++);b.Ex=a.substring(d,d+x);b.ExStr=l.GetAuditLogExtendedDataStr(100*b.AuditAppID+b.EventID,b.Ex);e.push(b)}if(c.Body.TotalRecordCount>e.length)l.AMT_AuditLog_ReadRecords(e.length+1,w,[g[0],e]);
96 -else g[0](l,e,m)}}var l={};l.wsman=b;l.pfx=["http://intel.com/wbem/wscim/1/amt-schema/1/","http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/","http://intel.com/wbem/wscim/1/ips-schema/1/"];l.PendingEnums=[];l.PendingBatchOperations=0;l.ActiveEnumsCount=0;l.MaxActiveEnumsCount=1;l.onProcessChanged=null;var v=0,x=0;l.GetPendingActions=function(){return 2*l.PendingEnums.length+l.ActiveEnumsCount+l.wsman.comm.PendingAjax.length+l.wsman.comm.ActiveAjaxCount+l.PendingBatchOperations};l.Subscribe=function(a,
97 -b,m,g,d,h,e,k,q,w){l.wsman.ExecSubscribe(l.CompleteName(a),b,m,function(b,m,y,h){c();g(l,a,y,h,d)},0,h,e,k,q,w);c()};l.UnSubscribe=function(a,b,m,g,d){l.wsman.ExecUnSubscribe(l.CompleteName(a),function(g,d,h,e){c();b(l,a,h,e,m)},0,g,d);c()};l.Get=function(a,b,m,g){l.wsman.ExecGet(l.CompleteName(a),function(g,d,h,e){c();b(l,a,h,e,m)},0,g);c()};l.Put=function(a,b,m,g,d,h){l.wsman.ExecPut(l.CompleteName(a),b,function(b,d,h,e){c();m(l,a,h,e,g)},0,d,h);c()};l.Create=function(a,b,m,g,d){l.wsman.ExecCreate(l.CompleteName(a),
98 -b,function(b,d,h,e){c();m(l,a,h,e,g)},0,d);c()};l.Delete=function(a,b,m,g,d){l.wsman.ExecDelete(l.CompleteName(a),b,function(b,d,h,e){c();m(l,a,h,e,g)},0,d);c()};l.Exec=function(a,b,m,g,d,h,e){l.wsman.ExecMethod(l.CompleteName(a),b,m,function(b,m,y,h){c();g(l,a,l.CompleteExecResponse(y),h,d)},0,h,e);c()};l.ExecWithXml=function(a,b,m,g,d,h,e){l.wsman.ExecMethodXml(l.CompleteName(a),b,execArgumentsToXml(m),function(b,m,h,y){c();g(l,a,l.CompleteExecResponse(h),y,d)},0,h,e);c()};l.Enum=function(b,m,g,
99 -d){l.ActiveEnumsCount<l.MaxActiveEnumsCount?(l.ActiveEnumsCount++,l.wsman.ExecEnum(l.CompleteName(b),function(g,d,h,y,e){c();a(b,h,m,d,y,e)},g,d)):l.PendingEnums.push([b,m,g,d]);c()};l.BatchEnum=function(a,b,m,g,d,h){l.PendingBatchOperations+=2*b.length;n(a,Clone(b),m,g,{},d,h);c()};l.BatchGet=function(a,b,m,g,d){p({name:a,names:b,callback:m,current:0,responses:{},tag:g,pri:d});c()};l.CompleteName=function(a){if(0==a.indexOf("AMT_"))return l.pfx[0]+a;if(0==a.indexOf("CIM_"))return l.pfx[1]+a;if(0==
100 -a.indexOf("IPS_"))return l.pfx[2]+a};l.CompleteExecResponse=function(a){a&&null!=a&&a.Body&&void 0!=a.Body.ReturnValue&&(a.Body.ReturnValueStr=l.AmtStatusToStr(a.Body.ReturnValue));return a};l.RequestPowerStateChange=function(a,b){l.CIM_PowerManagementService_RequestPowerStateChange(a,'<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="CreationClassName">CIM_ComputerSystem</Selector><Selector Name="Name">ManagedSystem</Selector></SelectorSet></ReferenceParameters>',
101 -null,null,b)};l.SetBootConfigRole=function(a,b){l.CIM_BootService_SetBootConfigRole('<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootConfigSetting</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="InstanceID">Intel(r) AMT: Boot Configuration 0</Selector></SelectorSet></ReferenceParameters>',
102 -a,b)};l.CancelAllQueries=function(a){l.wsman.CancelAllQueries(a)};l.AMT_AgentPresenceWatchdog_RegisterAgent=function(a){l.Exec("AMT_AgentPresenceWatchdog","RegisterAgent",{},a)};l.AMT_AgentPresenceWatchdog_AssertPresence=function(a,b){l.Exec("AMT_AgentPresenceWatchdog","AssertPresence",{SequenceNumber:a},b)};l.AMT_AgentPresenceWatchdog_AssertShutdown=function(a,b){l.Exec("AMT_AgentPresenceWatchdog","AssertShutdown",{SequenceNumber:a},b)};l.AMT_AgentPresenceWatchdog_AddAction=function(a,b,c,m,g,d,
103 -h,e,k){l.Exec("AMT_AgentPresenceWatchdog","AddAction",{OldState:a,NewState:b,EventOnTransition:c,ActionSd:m,ActionEac:g},d,h,e,k)};l.AMT_AgentPresenceWatchdog_DeleteAllActions=function(a,b,c,m){l.Exec("AMT_AgentPresenceWatchdog","DeleteAllActions",{},a,b,c,m)};l.AMT_AgentPresenceWatchdogAction_GetActionEac=function(a){l.Exec("AMT_AgentPresenceWatchdogAction","GetActionEac",{},a)};l.AMT_AgentPresenceWatchdogVA_RegisterAgent=function(a){l.Exec("AMT_AgentPresenceWatchdogVA","RegisterAgent",{},a)};l.AMT_AgentPresenceWatchdogVA_AssertPresence=
104 -function(a,b){l.Exec("AMT_AgentPresenceWatchdogVA","AssertPresence",{SequenceNumber:a},b)};l.AMT_AgentPresenceWatchdogVA_AssertShutdown=function(a,b){l.Exec("AMT_AgentPresenceWatchdogVA","AssertShutdown",{SequenceNumber:a},b)};l.AMT_AgentPresenceWatchdogVA_AddAction=function(a,b,c,m,g,d){l.Exec("AMT_AgentPresenceWatchdogVA","AddAction",{OldState:a,NewState:b,EventOnTransition:c,ActionSd:m,ActionEac:g},d)};l.AMT_AgentPresenceWatchdogVA_DeleteAllActions=function(a,b){l.Exec("AMT_AgentPresenceWatchdogVA",
105 -"DeleteAllActions",{_method_dummy:a},b)};l.AMT_AuditLog_ClearLog=function(a){l.Exec("AMT_AuditLog","ClearLog",{},a)};l.AMT_AuditLog_RequestStateChange=function(a,b,c){l.Exec("AMT_AuditLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.AMT_AuditLog_ReadRecords=function(a,b,c){l.Exec("AMT_AuditLog","ReadRecords",{StartIndex:a},b,c)};l.AMT_AuditLog_SetAuditLock=function(a,b,c,m){l.Exec("AMT_AuditLog","SetAuditLock",{LockTimeoutInSeconds:a,Flag:b,Handle:c},m)};l.AMT_AuditLog_ExportAuditLogSignature=
106 -function(a,b){l.Exec("AMT_AuditLog","ExportAuditLogSignature",{SigningMechanism:a},b)};l.AMT_AuditLog_SetSigningKeyMaterial=function(a,b,c,m,g){l.Exec("AMT_AuditLog","SetSigningKeyMaterial",{SigningMechanismType:a,SigningKey:b,LengthOfCertificates:c,Certificates:m},g)};l.AMT_AuditPolicyRule_SetAuditPolicy=function(a,b,c,m,g){l.Exec("AMT_AuditPolicyRule","SetAuditPolicy",{Enable:a,AuditedAppID:b,EventID:c,PolicyType:m},g)};l.AMT_AuditPolicyRule_SetAuditPolicyBulk=function(a,b,c,m,g){l.Exec("AMT_AuditPolicyRule",
107 -"SetAuditPolicyBulk",{Enable:a,AuditedAppID:b,EventID:c,PolicyType:m},g)};l.AMT_AuthorizationService_AddUserAclEntryEx=function(a,b,c,m,g,d){l.Exec("AMT_AuthorizationService","AddUserAclEntryEx",{DigestUsername:a,DigestPassword:b,KerberosUserSid:c,AccessPermission:m,Realms:g},d)};l.AMT_AuthorizationService_EnumerateUserAclEntries=function(a,b){l.Exec("AMT_AuthorizationService","EnumerateUserAclEntries",{StartIndex:a},b)};l.AMT_AuthorizationService_GetUserAclEntryEx=function(a,b,c){l.Exec("AMT_AuthorizationService",
108 -"GetUserAclEntryEx",{Handle:a},b,c)};l.AMT_AuthorizationService_UpdateUserAclEntryEx=function(a,b,c,m,g,d,h){l.Exec("AMT_AuthorizationService","UpdateUserAclEntryEx",{Handle:a,DigestUsername:b,DigestPassword:c,KerberosUserSid:m,AccessPermission:g,Realms:d},h)};l.AMT_AuthorizationService_RemoveUserAclEntry=function(a,b){l.Exec("AMT_AuthorizationService","RemoveUserAclEntry",{Handle:a},b)};l.AMT_AuthorizationService_SetAdminAclEntryEx=function(a,b,c){l.Exec("AMT_AuthorizationService","SetAdminAclEntryEx",
109 -{Username:a,DigestPassword:b},c)};l.AMT_AuthorizationService_GetAdminAclEntry=function(a){l.Exec("AMT_AuthorizationService","GetAdminAclEntry",{},a)};l.AMT_AuthorizationService_GetAdminAclEntryStatus=function(a){l.Exec("AMT_AuthorizationService","GetAdminAclEntryStatus",{},a)};l.AMT_AuthorizationService_GetAdminNetAclEntryStatus=function(a){l.Exec("AMT_AuthorizationService","GetAdminNetAclEntryStatus",{},a)};l.AMT_AuthorizationService_SetAclEnabledState=function(a,b,c,m){l.Exec("AMT_AuthorizationService",
110 -"SetAclEnabledState",{Handle:a,Enabled:b},c,m)};l.AMT_AuthorizationService_GetAclEnabledState=function(a,b,c){l.Exec("AMT_AuthorizationService","GetAclEnabledState",{Handle:a},b,c)};l.AMT_EndpointAccessControlService_RequestStateChange=function(a,b,c){l.Exec("AMT_EndpointAccessControlService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.AMT_EndpointAccessControlService_GetPosture=function(a,b){l.Exec("AMT_EndpointAccessControlService","GetPosture",{PostureType:a},b)};l.AMT_EndpointAccessControlService_GetPostureHash=
111 -function(a,b){l.Exec("AMT_EndpointAccessControlService","GetPostureHash",{PostureType:a},b)};l.AMT_EndpointAccessControlService_UpdatePostureState=function(a,b){l.Exec("AMT_EndpointAccessControlService","UpdatePostureState",{UpdateType:a},b)};l.AMT_EndpointAccessControlService_GetEacOptions=function(a){l.Exec("AMT_EndpointAccessControlService","GetEacOptions",{},a)};l.AMT_EndpointAccessControlService_SetEacOptions=function(a,b,c){l.Exec("AMT_EndpointAccessControlService","SetEacOptions",{EacVendors:a,
112 -PostureHashAlgorithm:b},c)};l.AMT_EnvironmentDetectionSettingData_SetSystemDefensePolicy=function(a,b){l.Exec("AMT_EnvironmentDetectionSettingData","SetSystemDefensePolicy",{Policy:a},b)};l.AMT_EnvironmentDetectionSettingData_EnableVpnRouting=function(a,b){l.Exec("AMT_EnvironmentDetectionSettingData","EnableVpnRouting",{Enable:a},b)};l.AMT_EthernetPortSettings_SetLinkPreference=function(a,b,c){l.Exec("AMT_EthernetPortSettings","SetLinkPreference",{LinkPreference:a,Timeout:b},c)};l.AMT_HeuristicPacketFilterStatistics_ResetSelectedStats=
113 -function(a,b){l.Exec("AMT_HeuristicPacketFilterStatistics","ResetSelectedStats",{SelectedStatistics:a},b)};l.AMT_KerberosSettingData_GetCredentialCacheState=function(a){l.Exec("AMT_KerberosSettingData","GetCredentialCacheState",{},a)};l.AMT_KerberosSettingData_SetCredentialCacheState=function(a,b){l.Exec("AMT_KerberosSettingData","SetCredentialCacheState",{Enable:a},b)};l.AMT_MessageLog_CancelIteration=function(a,b){l.Exec("AMT_MessageLog","CancelIteration",{IterationIdentifier:a},b)};l.AMT_MessageLog_RequestStateChange=
114 -function(a,b,c){l.Exec("AMT_MessageLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.AMT_MessageLog_ClearLog=function(a){l.Exec("AMT_MessageLog","ClearLog",{},a)};l.AMT_MessageLog_GetRecords=function(a,b,c,m){l.Exec("AMT_MessageLog","GetRecords",{IterationIdentifier:a,MaxReadRecords:b},c,m)};l.AMT_MessageLog_GetRecord=function(a,b,c){l.Exec("AMT_MessageLog","GetRecord",{IterationIdentifier:a,PositionToNext:b},c)};l.AMT_MessageLog_PositionAtRecord=function(a,b,c,m){l.Exec("AMT_MessageLog",
115 -"PositionAtRecord",{IterationIdentifier:a,MoveAbsolute:b,RecordNumber:c},m)};l.AMT_MessageLog_PositionToFirstRecord=function(a,b){l.Exec("AMT_MessageLog","PositionToFirstRecord",{},a,b)};l.AMT_MessageLog_FreezeLog=function(a,b){l.Exec("AMT_MessageLog","FreezeLog",{Freeze:a},b)};l.AMT_PublicKeyManagementService_AddCRL=function(a,b,c){l.Exec("AMT_PublicKeyManagementService","AddCRL",{Url:a,SerialNumbers:b},c)};l.AMT_PublicKeyManagementService_ResetCRLList=function(a,b){l.Exec("AMT_PublicKeyManagementService",
116 -"ResetCRLList",{_method_dummy:a},b)};l.AMT_PublicKeyManagementService_AddCertificate=function(a,b){l.Exec("AMT_PublicKeyManagementService","AddCertificate",{CertificateBlob:a},b)};l.AMT_PublicKeyManagementService_AddTrustedRootCertificate=function(a,b){l.Exec("AMT_PublicKeyManagementService","AddTrustedRootCertificate",{CertificateBlob:a},b)};l.AMT_PublicKeyManagementService_AddKey=function(a,b){l.Exec("AMT_PublicKeyManagementService","AddKey",{KeyBlob:a},b)};l.AMT_PublicKeyManagementService_GeneratePKCS10Request=
117 -function(a,b,c,m){l.Exec("AMT_PublicKeyManagementService","GeneratePKCS10Request",{KeyPair:a,DNName:b,Usage:c},m)};l.AMT_PublicKeyManagementService_GeneratePKCS10RequestEx=function(a,b,c,m){l.Exec("AMT_PublicKeyManagementService","GeneratePKCS10RequestEx",{KeyPair:a,SigningAlgorithm:b,NullSignedCertificateRequest:c},m)};l.AMT_PublicKeyManagementService_GenerateKeyPair=function(a,b,c){l.Exec("AMT_PublicKeyManagementService","GenerateKeyPair",{KeyAlgorithm:a,KeyLength:b},c)};l.AMT_RedirectionService_RequestStateChange=
118 -function(a,b){l.Exec("AMT_RedirectionService","RequestStateChange",{RequestedState:a},b)};l.AMT_RedirectionService_TerminateSession=function(a,b){l.Exec("AMT_RedirectionService","TerminateSession",{SessionType:a},b)};l.AMT_RemoteAccessService_AddMpServer=function(a,b,c,m,g,d,h,e,k){l.Exec("AMT_RemoteAccessService","AddMpServer",{AccessInfo:a,InfoFormat:b,Port:c,AuthMethod:m,Certificate:g,Username:d,Password:h,CN:e},k)};l.AMT_RemoteAccessService_AddRemoteAccessPolicyRule=function(a,b,c,m,g,d){l.Exec("AMT_RemoteAccessService",
119 -"AddRemoteAccessPolicyRule",{Trigger:a,TunnelLifeTime:b,ExtendedData:c,MpServer:m,InternalMpServer:g},d)};l.AMT_RemoteAccessService_CloseRemoteAccessConnection=function(a,b){l.Exec("AMT_RemoteAccessService","CloseRemoteAccessConnection",{_method_dummy:a},b)};l.AMT_SetupAndConfigurationService_CommitChanges=function(a,b){l.Exec("AMT_SetupAndConfigurationService","CommitChanges",{_method_dummy:a},b)};l.AMT_SetupAndConfigurationService_Unprovision=function(a,b){l.Exec("AMT_SetupAndConfigurationService",
120 -"Unprovision",{ProvisioningMode:a},b)};l.AMT_SetupAndConfigurationService_PartialUnprovision=function(a,b){l.Exec("AMT_SetupAndConfigurationService","PartialUnprovision",{_method_dummy:a},b)};l.AMT_SetupAndConfigurationService_ResetFlashWearOutProtection=function(a,b){l.Exec("AMT_SetupAndConfigurationService","ResetFlashWearOutProtection",{_method_dummy:a},b)};l.AMT_SetupAndConfigurationService_ExtendProvisioningPeriod=function(a,b){l.Exec("AMT_SetupAndConfigurationService","ExtendProvisioningPeriod",
121 -{Duration:a},b)};l.AMT_SetupAndConfigurationService_SetMEBxPassword=function(a,b){l.Exec("AMT_SetupAndConfigurationService","SetMEBxPassword",{Password:a},b)};l.AMT_SetupAndConfigurationService_SetTLSPSK=function(a,b,c){l.Exec("AMT_SetupAndConfigurationService","SetTLSPSK",{PID:a,PPS:b},c)};l.AMT_SetupAndConfigurationService_GetProvisioningAuditRecord=function(a){l.Exec("AMT_SetupAndConfigurationService","GetProvisioningAuditRecord",{},a)};l.AMT_SetupAndConfigurationService_GetUuid=function(a){l.Exec("AMT_SetupAndConfigurationService",
122 -"GetUuid",{},a)};l.AMT_SetupAndConfigurationService_GetUnprovisionBlockingComponents=function(a){l.Exec("AMT_SetupAndConfigurationService","GetUnprovisionBlockingComponents",{},a)};l.AMT_SetupAndConfigurationService_GetProvisioningAuditRecordV2=function(a){l.Exec("AMT_SetupAndConfigurationService","GetProvisioningAuditRecordV2",{},a)};l.AMT_SystemDefensePolicy_GetTimeout=function(a){l.Exec("AMT_SystemDefensePolicy","GetTimeout",{},a)};l.AMT_SystemDefensePolicy_SetTimeout=function(a,b){l.Exec("AMT_SystemDefensePolicy",
123 -"SetTimeout",{Timeout:a},b)};l.AMT_SystemDefensePolicy_UpdateStatistics=function(a,b,c,m,g,d){l.Exec("AMT_SystemDefensePolicy","UpdateStatistics",{NetworkInterface:a,ResetOnRead:b},c,m,g,d)};l.AMT_SystemPowerScheme_SetPowerScheme=function(a,b,c){l.Exec("AMT_SystemPowerScheme","SetPowerScheme",{},a,c,0,{InstanceID:b})};l.AMT_TimeSynchronizationService_GetLowAccuracyTimeSynch=function(a,b){l.Exec("AMT_TimeSynchronizationService","GetLowAccuracyTimeSynch",{},a,b)};l.AMT_TimeSynchronizationService_SetHighAccuracyTimeSynch=
124 -function(a,b,c,m,g){l.Exec("AMT_TimeSynchronizationService","SetHighAccuracyTimeSynch",{Ta0:a,Tm1:b,Tm2:c},m,g)};l.AMT_UserInitiatedConnectionService_RequestStateChange=function(a,b,c){l.Exec("AMT_UserInitiatedConnectionService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.AMT_WebUIService_RequestStateChange=function(a,b,c){l.Exec("AMT_WebUIService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.AMT_WiFiPortConfigurationService_AddWiFiSettings=function(a,b,c,m,g,d){l.ExecWithXml("AMT_WiFiPortConfigurationService",
125 -"AddWiFiSettings",{WiFiEndpoint:a,WiFiEndpointSettingsInput:b,IEEE8021xSettingsInput:c,ClientCredential:m,CACredential:g},d)};l.AMT_WiFiPortConfigurationService_UpdateWiFiSettings=function(a,b,c,m,g,d){l.ExecWithXml("AMT_WiFiPortConfigurationService","UpdateWiFiSettings",{WiFiEndpointSettings:a,WiFiEndpointSettingsInput:b,IEEE8021xSettingsInput:c,ClientCredential:m,CACredential:g},d)};l.AMT_WiFiPortConfigurationService_DeleteAllITProfiles=function(a,b){l.Exec("AMT_WiFiPortConfigurationService","DeleteAllITProfiles",
126 -{_method_dummy:a},b)};l.AMT_WiFiPortConfigurationService_DeleteAllUserProfiles=function(a,b){l.Exec("AMT_WiFiPortConfigurationService","DeleteAllUserProfiles",{_method_dummy:a},b)};l.CIM_Account_RequestStateChange=function(a,b,c){l.Exec("CIM_Account","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_AccountManagementService_CreateAccount=function(a,b,c){l.Exec("CIM_AccountManagementService","CreateAccount",{System:a,AccountTemplate:b},c)};l.CIM_BootConfigSetting_ChangeBootOrder=function(a,
127 -b){l.Exec("CIM_BootConfigSetting","ChangeBootOrder",{Source:a},b)};l.CIM_BootService_SetBootConfigRole=function(a,b,c){l.Exec("CIM_BootService","SetBootConfigRole",{BootConfigSetting:a,Role:b},c,0,1)};l.CIM_Card_ConnectorPower=function(a,b,c){l.Exec("CIM_Card","ConnectorPower",{Connector:a,PoweredOn:b},c)};l.CIM_Card_IsCompatible=function(a,b){l.Exec("CIM_Card","IsCompatible",{ElementToCheck:a},b)};l.CIM_Chassis_IsCompatible=function(a,b){l.Exec("CIM_Chassis","IsCompatible",{ElementToCheck:a},b)};
128 -l.CIM_Fan_SetSpeed=function(a,b){l.Exec("CIM_Fan","SetSpeed",{DesiredSpeed:a},b)};l.CIM_KVMRedirectionSAP_RequestStateChange=function(a,b,c){l.Exec("CIM_KVMRedirectionSAP","RequestStateChange",{RequestedState:a},c)};l.CIM_MediaAccessDevice_LockMedia=function(a,b){l.Exec("CIM_MediaAccessDevice","LockMedia",{Lock:a},b)};l.CIM_MediaAccessDevice_SetPowerState=function(a,b,c){l.Exec("CIM_MediaAccessDevice","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_MediaAccessDevice_Reset=function(a){l.Exec("CIM_MediaAccessDevice",
129 -"Reset",{},a)};l.CIM_MediaAccessDevice_EnableDevice=function(a,b){l.Exec("CIM_MediaAccessDevice","EnableDevice",{Enabled:a},b)};l.CIM_MediaAccessDevice_OnlineDevice=function(a,b){l.Exec("CIM_MediaAccessDevice","OnlineDevice",{Online:a},b)};l.CIM_MediaAccessDevice_QuiesceDevice=function(a,b){l.Exec("CIM_MediaAccessDevice","QuiesceDevice",{Quiesce:a},b)};l.CIM_MediaAccessDevice_SaveProperties=function(a){l.Exec("CIM_MediaAccessDevice","SaveProperties",{},a)};l.CIM_MediaAccessDevice_RestoreProperties=
130 -function(a){l.Exec("CIM_MediaAccessDevice","RestoreProperties",{},a)};l.CIM_MediaAccessDevice_RequestStateChange=function(a,b,c){l.Exec("CIM_MediaAccessDevice","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_PhysicalFrame_IsCompatible=function(a,b){l.Exec("CIM_PhysicalFrame","IsCompatible",{ElementToCheck:a},b)};l.CIM_PhysicalPackage_IsCompatible=function(a,b){l.Exec("CIM_PhysicalPackage","IsCompatible",{ElementToCheck:a},b)};l.CIM_PowerManagementService_RequestPowerStateChange=
131 -function(a,b,c,m,g){l.Exec("CIM_PowerManagementService","RequestPowerStateChange",{PowerState:a,ManagedElement:b,Time:c,TimeoutPeriod:m},g,0,1)};l.CIM_PowerSupply_SetPowerState=function(a,b,c){l.Exec("CIM_PowerSupply","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_PowerSupply_Reset=function(a){l.Exec("CIM_PowerSupply","Reset",{},a)};l.CIM_PowerSupply_EnableDevice=function(a,b){l.Exec("CIM_PowerSupply","EnableDevice",{Enabled:a},b)};l.CIM_PowerSupply_OnlineDevice=function(a,b){l.Exec("CIM_PowerSupply",
132 -"OnlineDevice",{Online:a},b)};l.CIM_PowerSupply_QuiesceDevice=function(a,b){l.Exec("CIM_PowerSupply","QuiesceDevice",{Quiesce:a},b)};l.CIM_PowerSupply_SaveProperties=function(a){l.Exec("CIM_PowerSupply","SaveProperties",{},a)};l.CIM_PowerSupply_RestoreProperties=function(a){l.Exec("CIM_PowerSupply","RestoreProperties",{},a)};l.CIM_PowerSupply_RequestStateChange=function(a,b,c){l.Exec("CIM_PowerSupply","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_Processor_SetPowerState=function(a,
133 -b,c){l.Exec("CIM_Processor","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_Processor_Reset=function(a){l.Exec("CIM_Processor","Reset",{},a)};l.CIM_Processor_EnableDevice=function(a,b){l.Exec("CIM_Processor","EnableDevice",{Enabled:a},b)};l.CIM_Processor_OnlineDevice=function(a,b){l.Exec("CIM_Processor","OnlineDevice",{Online:a},b)};l.CIM_Processor_QuiesceDevice=function(a,b){l.Exec("CIM_Processor","QuiesceDevice",{Quiesce:a},b)};l.CIM_Processor_SaveProperties=function(a){l.Exec("CIM_Processor","SaveProperties",
134 -{},a)};l.CIM_Processor_RestoreProperties=function(a){l.Exec("CIM_Processor","RestoreProperties",{},a)};l.CIM_Processor_RequestStateChange=function(a,b,c){l.Exec("CIM_Processor","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_RecordLog_ClearLog=function(a){l.Exec("CIM_RecordLog","ClearLog",{},a)};l.CIM_RecordLog_RequestStateChange=function(a,b,c){l.Exec("CIM_RecordLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_RedirectionService_RequestStateChange=function(a,
135 -b,c){l.Exec("CIM_RedirectionService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_Sensor_SetPowerState=function(a,b,c){l.Exec("CIM_Sensor","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_Sensor_Reset=function(a){l.Exec("CIM_Sensor","Reset",{},a)};l.CIM_Sensor_EnableDevice=function(a,b){l.Exec("CIM_Sensor","EnableDevice",{Enabled:a},b)};l.CIM_Sensor_OnlineDevice=function(a,b){l.Exec("CIM_Sensor","OnlineDevice",{Online:a},b)};l.CIM_Sensor_QuiesceDevice=function(a,b){l.Exec("CIM_Sensor",
136 -"QuiesceDevice",{Quiesce:a},b)};l.CIM_Sensor_SaveProperties=function(a){l.Exec("CIM_Sensor","SaveProperties",{},a)};l.CIM_Sensor_RestoreProperties=function(a){l.Exec("CIM_Sensor","RestoreProperties",{},a)};l.CIM_Sensor_RequestStateChange=function(a,b,c){l.Exec("CIM_Sensor","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_StatisticalData_ResetSelectedStats=function(a,b){l.Exec("CIM_StatisticalData","ResetSelectedStats",{SelectedStatistics:a},b)};l.CIM_Watchdog_KeepAlive=function(a){l.Exec("CIM_Watchdog",
137 -"KeepAlive",{},a)};l.CIM_Watchdog_SetPowerState=function(a,b,c){l.Exec("CIM_Watchdog","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_Watchdog_Reset=function(a){l.Exec("CIM_Watchdog","Reset",{},a)};l.CIM_Watchdog_EnableDevice=function(a,b){l.Exec("CIM_Watchdog","EnableDevice",{Enabled:a},b)};l.CIM_Watchdog_OnlineDevice=function(a,b){l.Exec("CIM_Watchdog","OnlineDevice",{Online:a},b)};l.CIM_Watchdog_QuiesceDevice=function(a,b){l.Exec("CIM_Watchdog","QuiesceDevice",{Quiesce:a},b)};l.CIM_Watchdog_SaveProperties=
138 -function(a){l.Exec("CIM_Watchdog","SaveProperties",{},a)};l.CIM_Watchdog_RestoreProperties=function(a){l.Exec("CIM_Watchdog","RestoreProperties",{},a)};l.CIM_Watchdog_RequestStateChange=function(a,b,c){l.Exec("CIM_Watchdog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.CIM_WiFiPort_SetPowerState=function(a,b,c){l.Exec("CIM_WiFiPort","SetPowerState",{PowerState:a,Time:b},c)};l.CIM_WiFiPort_Reset=function(a){l.Exec("CIM_WiFiPort","Reset",{},a)};l.CIM_WiFiPort_EnableDevice=function(a,
139 -b){l.Exec("CIM_WiFiPort","EnableDevice",{Enabled:a},b)};l.CIM_WiFiPort_OnlineDevice=function(a,b){l.Exec("CIM_WiFiPort","OnlineDevice",{Online:a},b)};l.CIM_WiFiPort_QuiesceDevice=function(a,b){l.Exec("CIM_WiFiPort","QuiesceDevice",{Quiesce:a},b)};l.CIM_WiFiPort_SaveProperties=function(a){l.Exec("CIM_WiFiPort","SaveProperties",{},a)};l.CIM_WiFiPort_RestoreProperties=function(a){l.Exec("CIM_WiFiPort","RestoreProperties",{},a)};l.CIM_WiFiPort_RequestStateChange=function(a,b,c){l.Exec("CIM_WiFiPort",
140 -"RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.IPS_HostBasedSetupService_Setup=function(a,b,c,m,g,d,h){l.Exec("IPS_HostBasedSetupService","Setup",{NetAdminPassEncryptionType:a,NetworkAdminPassword:b,McNonce:c,Certificate:m,SigningAlgorithm:g,DigitalSignature:d},h)};l.IPS_HostBasedSetupService_AddNextCertInChain=function(a,b,c,m){l.Exec("IPS_HostBasedSetupService","AddNextCertInChain",{NextCertificate:a,IsLeafCertificate:b,IsRootCertificate:c},m)};l.IPS_HostBasedSetupService_AdminSetup=
141 -function(a,b,c,m,g,d){l.Exec("IPS_HostBasedSetupService","AdminSetup",{NetAdminPassEncryptionType:a,NetworkAdminPassword:b,McNonce:c,SigningAlgorithm:m,DigitalSignature:g},d)};l.IPS_HostBasedSetupService_UpgradeClientToAdmin=function(a,b,c,m){l.Exec("IPS_HostBasedSetupService","UpgradeClientToAdmin",{McNonce:a,SigningAlgorithm:b,DigitalSignature:c},m)};l.IPS_HostBasedSetupService_DisableClientControlMode=function(a,b){l.Exec("IPS_HostBasedSetupService","DisableClientControlMode",{_method_dummy:a},
142 -b)};l.IPS_KVMRedirectionSettingData_TerminateSession=function(a){l.Exec("IPS_KVMRedirectionSettingData","TerminateSession",{},a)};l.IPS_KVMRedirectionSettingData_DataChannelRead=function(a){l.Exec("IPS_KVMRedirectionSettingData","DataChannelRead",{},a)};l.IPS_KVMRedirectionSettingData_DataChannelWrite=function(a,b){l.Exec("IPS_KVMRedirectionSettingData","DataChannelWrite",{DataMessage:a},b)};l.IPS_OptInService_StartOptIn=function(a){l.Exec("IPS_OptInService","StartOptIn",{},a)};l.IPS_OptInService_CancelOptIn=
143 -function(a){l.Exec("IPS_OptInService","CancelOptIn",{},a)};l.IPS_OptInService_SendOptInCode=function(a,b){l.Exec("IPS_OptInService","SendOptInCode",{OptInCode:a},b)};l.IPS_OptInService_StartService=function(a){l.Exec("IPS_OptInService","StartService",{},a)};l.IPS_OptInService_StopService=function(a){l.Exec("IPS_OptInService","StopService",{},a)};l.IPS_OptInService_RequestStateChange=function(a,b,c){l.Exec("IPS_OptInService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.IPS_ProvisioningRecordLog_RequestStateChange=
144 -function(a,b,c){l.Exec("IPS_ProvisioningRecordLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};l.IPS_ProvisioningRecordLog_ClearLog=function(a,b){l.Exec("IPS_ProvisioningRecordLog","ClearLog",{_method_dummy:a},b)};l.IPS_ScreenConfigurationService_SetSessionState=function(a,b,c){l.Exec("IPS_ScreenConfigurationService","SetSessionState",{SessionState:a,ConsecutiveRebootsNum:b},c)};l.IPS_SecIOService_RequestStateChange=function(a,b,c){l.Exec("IPS_SecIOService","RequestStateChange",{RequestedState:a,
145 -TimeoutPeriod:b},c)};l.IPS_HTTPProxyService_AddProxyAccessPoint=function(a,b,c,m,g){l.Exec("IPS_HTTPProxyService","AddProxyAccessPoint",{AccessInfo:a,InfoFormat:b,Port:c,NetworkDnsSuffix:m},g)};l.AmtStatusToStr=function(a){return l.AmtStatusCodes[a]?l.AmtStatusCodes[a]:"UNKNOWN_ERROR"};l.AmtStatusCodes={0:"SUCCESS",1:"INTERNAL_ERROR",2:"NOT_READY",3:"INVALID_PT_MODE",4:"INVALID_MESSAGE_LENGTH",5:"TABLE_FINGERPRINT_NOT_AVAILABLE",6:"INTEGRITY_CHECK_FAILED",7:"UNSUPPORTED_ISVS_VERSION",8:"APPLICATION_NOT_REGISTERED",
93 +if(170==c[0]&&32==c[1]&&4==c[2]&&0==c[3])return"Certificate revoked. "}return 6==a?"Authentication failed "+(c[1]+(c[2]<<8))+" times. The system may be under attack.":30==a?"No bootable media":32==a?"Operating system lockup or power interrupt":35==a?"System boot failure":37==a?"System firmware started (at least one CPU is properly executing).":"Unknown Sensor Type #"+a}function h(a,b,c,n,d){if(200!=n)d[0](m,[],n);else{var e,z,C=d[1],g=new Date,l;if(0<c.Body.RecordsReturned)for(z in c.Body.EventRecords=
94 +MakeToArray(c.Body.EventRecords),c.Body.EventRecords){a=null;try{a=window.atob(c.Body.EventRecords[z])}catch(p){console.log(p+" "+c.Body.EventRecords[z])}b={AuditAppID:ReadShort(a,0),EventID:ReadShort(a,2),InitiatorType:a.charCodeAt(4)};b.AuditApp=u[b.AuditAppID];b.Event=u[100*b.AuditAppID+b.EventID];b.Event||(b.Event="#"+b.EventID);0==b.InitiatorType&&(e=a.charCodeAt(5),b.Initiator=a.substring(6,6+e),e=6+e);1==b.InitiatorType&&(b.KerberosUserInDomain=ReadInt(a,5),e=a.charCodeAt(9),b.Initiator=GetSidString(a.substring(10,
95 +10+e)),e=10+e);2==b.InitiatorType&&(b.Initiator="<i>Local</i>",e=5);3==b.InitiatorType&&(b.Initiator="<i>KVM Default Port</i>",e=5);l=ReadInt(a,e);b.Time=new Date(1E3*(l+60*g.getTimezoneOffset()));e+=4;b.MCLocationType=a.charCodeAt(e++);l=a.charCodeAt(e++);b.NetAddress=a.substring(e,e+l);e+=l;l=a.charCodeAt(e++);b.Ex=a.substring(e,e+l);b.ExStr=m.GetAuditLogExtendedDataStr(100*b.AuditAppID+b.EventID,b.Ex);C.push(b)}if(c.Body.TotalRecordCount>C.length)m.AMT_AuditLog_ReadRecords(C.length+1,h,[d[0],C]);
96 +else d[0](m,C,n)}}var m={};m.wsman=b;m.pfx=["http://intel.com/wbem/wscim/1/amt-schema/1/","http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/","http://intel.com/wbem/wscim/1/ips-schema/1/"];m.PendingEnums=[];m.PendingBatchOperations=0;m.ActiveEnumsCount=0;m.MaxActiveEnumsCount=1;m.onProcessChanged=null;var w=0,B=0;m.GetPendingActions=function(){return 2*m.PendingEnums.length+m.ActiveEnumsCount+m.wsman.comm.PendingAjax.length+m.wsman.comm.ActiveAjaxCount+m.PendingBatchOperations};m.Subscribe=function(a,
97 +b,n,d,h,e,z,C,g,l){m.wsman.ExecSubscribe(m.CompleteName(a),b,n,function(b,n,e,y){c();d(m,a,e,y,h)},0,e,z,C,g,l);c()};m.UnSubscribe=function(a,b,n,d,h){m.wsman.ExecUnSubscribe(m.CompleteName(a),function(d,h,e,g){c();b(m,a,e,g,n)},0,d,h);c()};m.Get=function(a,b,n,d){m.wsman.ExecGet(m.CompleteName(a),function(d,h,e,C){c();b(m,a,e,C,n)},0,d);c()};m.Put=function(a,b,n,d,h,e){m.wsman.ExecPut(m.CompleteName(a),b,function(b,h,e,g){c();n(m,a,e,g,d)},0,h,e);c()};m.Create=function(a,b,n,d,h){m.wsman.ExecCreate(m.CompleteName(a),
98 +b,function(b,h,e,g){c();n(m,a,e,g,d)},0,h);c()};m.Delete=function(a,b,n,d,h){m.wsman.ExecDelete(m.CompleteName(a),b,function(b,h,e,g){c();n(m,a,e,g,d)},0,h);c()};m.Exec=function(a,b,n,d,h,e,z){m.wsman.ExecMethod(m.CompleteName(a),b,n,function(b,n,e,z){c();d(m,a,m.CompleteExecResponse(e),z,h)},0,e,z);c()};m.ExecWithXml=function(a,b,n,d,h,e,z){m.wsman.ExecMethodXml(m.CompleteName(a),b,execArgumentsToXml(n),function(b,n,e,z){c();d(m,a,m.CompleteExecResponse(e),z,h)},0,e,z);c()};m.Enum=function(b,n,d,
99 +h){m.ActiveEnumsCount<m.MaxActiveEnumsCount?(m.ActiveEnumsCount++,m.wsman.ExecEnum(m.CompleteName(b),function(d,h,e,y,g){c();a(b,e,n,h,y,g)},d,h)):m.PendingEnums.push([b,n,d,h]);c()};m.BatchEnum=function(a,b,n,d,h,e){m.PendingBatchOperations+=2*b.length;q(a,Clone(b),n,d,{},h,e);c()};m.BatchGet=function(a,b,n,d,h){k({name:a,names:b,callback:n,current:0,responses:{},tag:d,pri:h});c()};m.CompleteName=function(a){if(0==a.indexOf("AMT_"))return m.pfx[0]+a;if(0==a.indexOf("CIM_"))return m.pfx[1]+a;if(0==
100 +a.indexOf("IPS_"))return m.pfx[2]+a};m.CompleteExecResponse=function(a){a&&null!=a&&a.Body&&void 0!=a.Body.ReturnValue&&(a.Body.ReturnValueStr=m.AmtStatusToStr(a.Body.ReturnValue));return a};m.RequestPowerStateChange=function(a,b){m.CIM_PowerManagementService_RequestPowerStateChange(a,'<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="CreationClassName">CIM_ComputerSystem</Selector><Selector Name="Name">ManagedSystem</Selector></SelectorSet></ReferenceParameters>',
101 +null,null,b)};m.SetBootConfigRole=function(a,b){m.CIM_BootService_SetBootConfigRole('<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_BootConfigSetting</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="InstanceID">Intel(r) AMT: Boot Configuration 0</Selector></SelectorSet></ReferenceParameters>',
102 +a,b)};m.CancelAllQueries=function(a){m.wsman.CancelAllQueries(a)};m.AMT_AgentPresenceWatchdog_RegisterAgent=function(a){m.Exec("AMT_AgentPresenceWatchdog","RegisterAgent",{},a)};m.AMT_AgentPresenceWatchdog_AssertPresence=function(a,b){m.Exec("AMT_AgentPresenceWatchdog","AssertPresence",{SequenceNumber:a},b)};m.AMT_AgentPresenceWatchdog_AssertShutdown=function(a,b){m.Exec("AMT_AgentPresenceWatchdog","AssertShutdown",{SequenceNumber:a},b)};m.AMT_AgentPresenceWatchdog_AddAction=function(a,b,c,n,d,h,
103 +e,C,g){m.Exec("AMT_AgentPresenceWatchdog","AddAction",{OldState:a,NewState:b,EventOnTransition:c,ActionSd:n,ActionEac:d},h,e,C,g)};m.AMT_AgentPresenceWatchdog_DeleteAllActions=function(a,b,c,n){m.Exec("AMT_AgentPresenceWatchdog","DeleteAllActions",{},a,b,c,n)};m.AMT_AgentPresenceWatchdogAction_GetActionEac=function(a){m.Exec("AMT_AgentPresenceWatchdogAction","GetActionEac",{},a)};m.AMT_AgentPresenceWatchdogVA_RegisterAgent=function(a){m.Exec("AMT_AgentPresenceWatchdogVA","RegisterAgent",{},a)};m.AMT_AgentPresenceWatchdogVA_AssertPresence=
104 +function(a,b){m.Exec("AMT_AgentPresenceWatchdogVA","AssertPresence",{SequenceNumber:a},b)};m.AMT_AgentPresenceWatchdogVA_AssertShutdown=function(a,b){m.Exec("AMT_AgentPresenceWatchdogVA","AssertShutdown",{SequenceNumber:a},b)};m.AMT_AgentPresenceWatchdogVA_AddAction=function(a,b,c,n,d,h){m.Exec("AMT_AgentPresenceWatchdogVA","AddAction",{OldState:a,NewState:b,EventOnTransition:c,ActionSd:n,ActionEac:d},h)};m.AMT_AgentPresenceWatchdogVA_DeleteAllActions=function(a,b){m.Exec("AMT_AgentPresenceWatchdogVA",
105 +"DeleteAllActions",{_method_dummy:a},b)};m.AMT_AuditLog_ClearLog=function(a){m.Exec("AMT_AuditLog","ClearLog",{},a)};m.AMT_AuditLog_RequestStateChange=function(a,b,c){m.Exec("AMT_AuditLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.AMT_AuditLog_ReadRecords=function(a,b,c){m.Exec("AMT_AuditLog","ReadRecords",{StartIndex:a},b,c)};m.AMT_AuditLog_SetAuditLock=function(a,b,c,n){m.Exec("AMT_AuditLog","SetAuditLock",{LockTimeoutInSeconds:a,Flag:b,Handle:c},n)};m.AMT_AuditLog_ExportAuditLogSignature=
106 +function(a,b){m.Exec("AMT_AuditLog","ExportAuditLogSignature",{SigningMechanism:a},b)};m.AMT_AuditLog_SetSigningKeyMaterial=function(a,b,c,n,d){m.Exec("AMT_AuditLog","SetSigningKeyMaterial",{SigningMechanismType:a,SigningKey:b,LengthOfCertificates:c,Certificates:n},d)};m.AMT_AuditPolicyRule_SetAuditPolicy=function(a,b,c,n,d){m.Exec("AMT_AuditPolicyRule","SetAuditPolicy",{Enable:a,AuditedAppID:b,EventID:c,PolicyType:n},d)};m.AMT_AuditPolicyRule_SetAuditPolicyBulk=function(a,b,c,n,d){m.Exec("AMT_AuditPolicyRule",
107 +"SetAuditPolicyBulk",{Enable:a,AuditedAppID:b,EventID:c,PolicyType:n},d)};m.AMT_AuthorizationService_AddUserAclEntryEx=function(a,b,c,n,d,h){m.Exec("AMT_AuthorizationService","AddUserAclEntryEx",{DigestUsername:a,DigestPassword:b,KerberosUserSid:c,AccessPermission:n,Realms:d},h)};m.AMT_AuthorizationService_EnumerateUserAclEntries=function(a,b){m.Exec("AMT_AuthorizationService","EnumerateUserAclEntries",{StartIndex:a},b)};m.AMT_AuthorizationService_GetUserAclEntryEx=function(a,b,c){m.Exec("AMT_AuthorizationService",
108 +"GetUserAclEntryEx",{Handle:a},b,c)};m.AMT_AuthorizationService_UpdateUserAclEntryEx=function(a,b,c,n,d,h,e){m.Exec("AMT_AuthorizationService","UpdateUserAclEntryEx",{Handle:a,DigestUsername:b,DigestPassword:c,KerberosUserSid:n,AccessPermission:d,Realms:h},e)};m.AMT_AuthorizationService_RemoveUserAclEntry=function(a,b){m.Exec("AMT_AuthorizationService","RemoveUserAclEntry",{Handle:a},b)};m.AMT_AuthorizationService_SetAdminAclEntryEx=function(a,b,c){m.Exec("AMT_AuthorizationService","SetAdminAclEntryEx",
109 +{Username:a,DigestPassword:b},c)};m.AMT_AuthorizationService_GetAdminAclEntry=function(a){m.Exec("AMT_AuthorizationService","GetAdminAclEntry",{},a)};m.AMT_AuthorizationService_GetAdminAclEntryStatus=function(a){m.Exec("AMT_AuthorizationService","GetAdminAclEntryStatus",{},a)};m.AMT_AuthorizationService_GetAdminNetAclEntryStatus=function(a){m.Exec("AMT_AuthorizationService","GetAdminNetAclEntryStatus",{},a)};m.AMT_AuthorizationService_SetAclEnabledState=function(a,b,c,n){m.Exec("AMT_AuthorizationService",
110 +"SetAclEnabledState",{Handle:a,Enabled:b},c,n)};m.AMT_AuthorizationService_GetAclEnabledState=function(a,b,c){m.Exec("AMT_AuthorizationService","GetAclEnabledState",{Handle:a},b,c)};m.AMT_EndpointAccessControlService_RequestStateChange=function(a,b,c){m.Exec("AMT_EndpointAccessControlService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.AMT_EndpointAccessControlService_GetPosture=function(a,b){m.Exec("AMT_EndpointAccessControlService","GetPosture",{PostureType:a},b)};m.AMT_EndpointAccessControlService_GetPostureHash=
111 +function(a,b){m.Exec("AMT_EndpointAccessControlService","GetPostureHash",{PostureType:a},b)};m.AMT_EndpointAccessControlService_UpdatePostureState=function(a,b){m.Exec("AMT_EndpointAccessControlService","UpdatePostureState",{UpdateType:a},b)};m.AMT_EndpointAccessControlService_GetEacOptions=function(a){m.Exec("AMT_EndpointAccessControlService","GetEacOptions",{},a)};m.AMT_EndpointAccessControlService_SetEacOptions=function(a,b,c){m.Exec("AMT_EndpointAccessControlService","SetEacOptions",{EacVendors:a,
112 +PostureHashAlgorithm:b},c)};m.AMT_EnvironmentDetectionSettingData_SetSystemDefensePolicy=function(a,b){m.Exec("AMT_EnvironmentDetectionSettingData","SetSystemDefensePolicy",{Policy:a},b)};m.AMT_EnvironmentDetectionSettingData_EnableVpnRouting=function(a,b){m.Exec("AMT_EnvironmentDetectionSettingData","EnableVpnRouting",{Enable:a},b)};m.AMT_EthernetPortSettings_SetLinkPreference=function(a,b,c){m.Exec("AMT_EthernetPortSettings","SetLinkPreference",{LinkPreference:a,Timeout:b},c)};m.AMT_HeuristicPacketFilterStatistics_ResetSelectedStats=
113 +function(a,b){m.Exec("AMT_HeuristicPacketFilterStatistics","ResetSelectedStats",{SelectedStatistics:a},b)};m.AMT_KerberosSettingData_GetCredentialCacheState=function(a){m.Exec("AMT_KerberosSettingData","GetCredentialCacheState",{},a)};m.AMT_KerberosSettingData_SetCredentialCacheState=function(a,b){m.Exec("AMT_KerberosSettingData","SetCredentialCacheState",{Enable:a},b)};m.AMT_MessageLog_CancelIteration=function(a,b){m.Exec("AMT_MessageLog","CancelIteration",{IterationIdentifier:a},b)};m.AMT_MessageLog_RequestStateChange=
114 +function(a,b,c){m.Exec("AMT_MessageLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.AMT_MessageLog_ClearLog=function(a){m.Exec("AMT_MessageLog","ClearLog",{},a)};m.AMT_MessageLog_GetRecords=function(a,b,c,n){m.Exec("AMT_MessageLog","GetRecords",{IterationIdentifier:a,MaxReadRecords:b},c,n)};m.AMT_MessageLog_GetRecord=function(a,b,c){m.Exec("AMT_MessageLog","GetRecord",{IterationIdentifier:a,PositionToNext:b},c)};m.AMT_MessageLog_PositionAtRecord=function(a,b,c,n){m.Exec("AMT_MessageLog",
115 +"PositionAtRecord",{IterationIdentifier:a,MoveAbsolute:b,RecordNumber:c},n)};m.AMT_MessageLog_PositionToFirstRecord=function(a,b){m.Exec("AMT_MessageLog","PositionToFirstRecord",{},a,b)};m.AMT_MessageLog_FreezeLog=function(a,b){m.Exec("AMT_MessageLog","FreezeLog",{Freeze:a},b)};m.AMT_PublicKeyManagementService_AddCRL=function(a,b,c){m.Exec("AMT_PublicKeyManagementService","AddCRL",{Url:a,SerialNumbers:b},c)};m.AMT_PublicKeyManagementService_ResetCRLList=function(a,b){m.Exec("AMT_PublicKeyManagementService",
116 +"ResetCRLList",{_method_dummy:a},b)};m.AMT_PublicKeyManagementService_AddCertificate=function(a,b){m.Exec("AMT_PublicKeyManagementService","AddCertificate",{CertificateBlob:a},b)};m.AMT_PublicKeyManagementService_AddTrustedRootCertificate=function(a,b){m.Exec("AMT_PublicKeyManagementService","AddTrustedRootCertificate",{CertificateBlob:a},b)};m.AMT_PublicKeyManagementService_AddKey=function(a,b){m.Exec("AMT_PublicKeyManagementService","AddKey",{KeyBlob:a},b)};m.AMT_PublicKeyManagementService_GeneratePKCS10Request=
117 +function(a,b,c,n){m.Exec("AMT_PublicKeyManagementService","GeneratePKCS10Request",{KeyPair:a,DNName:b,Usage:c},n)};m.AMT_PublicKeyManagementService_GeneratePKCS10RequestEx=function(a,b,c,n){m.Exec("AMT_PublicKeyManagementService","GeneratePKCS10RequestEx",{KeyPair:a,SigningAlgorithm:b,NullSignedCertificateRequest:c},n)};m.AMT_PublicKeyManagementService_GenerateKeyPair=function(a,b,c){m.Exec("AMT_PublicKeyManagementService","GenerateKeyPair",{KeyAlgorithm:a,KeyLength:b},c)};m.AMT_RedirectionService_RequestStateChange=
118 +function(a,b){m.Exec("AMT_RedirectionService","RequestStateChange",{RequestedState:a},b)};m.AMT_RedirectionService_TerminateSession=function(a,b){m.Exec("AMT_RedirectionService","TerminateSession",{SessionType:a},b)};m.AMT_RemoteAccessService_AddMpServer=function(a,b,c,n,d,h,e,C,g){m.Exec("AMT_RemoteAccessService","AddMpServer",{AccessInfo:a,InfoFormat:b,Port:c,AuthMethod:n,Certificate:d,Username:h,Password:e,CN:C},g)};m.AMT_RemoteAccessService_AddRemoteAccessPolicyRule=function(a,b,c,n,d,h){m.Exec("AMT_RemoteAccessService",
119 +"AddRemoteAccessPolicyRule",{Trigger:a,TunnelLifeTime:b,ExtendedData:c,MpServer:n,InternalMpServer:d},h)};m.AMT_RemoteAccessService_CloseRemoteAccessConnection=function(a,b){m.Exec("AMT_RemoteAccessService","CloseRemoteAccessConnection",{_method_dummy:a},b)};m.AMT_SetupAndConfigurationService_CommitChanges=function(a,b){m.Exec("AMT_SetupAndConfigurationService","CommitChanges",{_method_dummy:a},b)};m.AMT_SetupAndConfigurationService_Unprovision=function(a,b){m.Exec("AMT_SetupAndConfigurationService",
120 +"Unprovision",{ProvisioningMode:a},b)};m.AMT_SetupAndConfigurationService_PartialUnprovision=function(a,b){m.Exec("AMT_SetupAndConfigurationService","PartialUnprovision",{_method_dummy:a},b)};m.AMT_SetupAndConfigurationService_ResetFlashWearOutProtection=function(a,b){m.Exec("AMT_SetupAndConfigurationService","ResetFlashWearOutProtection",{_method_dummy:a},b)};m.AMT_SetupAndConfigurationService_ExtendProvisioningPeriod=function(a,b){m.Exec("AMT_SetupAndConfigurationService","ExtendProvisioningPeriod",
121 +{Duration:a},b)};m.AMT_SetupAndConfigurationService_SetMEBxPassword=function(a,b){m.Exec("AMT_SetupAndConfigurationService","SetMEBxPassword",{Password:a},b)};m.AMT_SetupAndConfigurationService_SetTLSPSK=function(a,b,c){m.Exec("AMT_SetupAndConfigurationService","SetTLSPSK",{PID:a,PPS:b},c)};m.AMT_SetupAndConfigurationService_GetProvisioningAuditRecord=function(a){m.Exec("AMT_SetupAndConfigurationService","GetProvisioningAuditRecord",{},a)};m.AMT_SetupAndConfigurationService_GetUuid=function(a){m.Exec("AMT_SetupAndConfigurationService",
122 +"GetUuid",{},a)};m.AMT_SetupAndConfigurationService_GetUnprovisionBlockingComponents=function(a){m.Exec("AMT_SetupAndConfigurationService","GetUnprovisionBlockingComponents",{},a)};m.AMT_SetupAndConfigurationService_GetProvisioningAuditRecordV2=function(a){m.Exec("AMT_SetupAndConfigurationService","GetProvisioningAuditRecordV2",{},a)};m.AMT_SystemDefensePolicy_GetTimeout=function(a){m.Exec("AMT_SystemDefensePolicy","GetTimeout",{},a)};m.AMT_SystemDefensePolicy_SetTimeout=function(a,b){m.Exec("AMT_SystemDefensePolicy",
123 +"SetTimeout",{Timeout:a},b)};m.AMT_SystemDefensePolicy_UpdateStatistics=function(a,b,c,n,d,h){m.Exec("AMT_SystemDefensePolicy","UpdateStatistics",{NetworkInterface:a,ResetOnRead:b},c,n,d,h)};m.AMT_SystemPowerScheme_SetPowerScheme=function(a,b,c){m.Exec("AMT_SystemPowerScheme","SetPowerScheme",{},a,c,0,{InstanceID:b})};m.AMT_TimeSynchronizationService_GetLowAccuracyTimeSynch=function(a,b){m.Exec("AMT_TimeSynchronizationService","GetLowAccuracyTimeSynch",{},a,b)};m.AMT_TimeSynchronizationService_SetHighAccuracyTimeSynch=
124 +function(a,b,c,n,d){m.Exec("AMT_TimeSynchronizationService","SetHighAccuracyTimeSynch",{Ta0:a,Tm1:b,Tm2:c},n,d)};m.AMT_UserInitiatedConnectionService_RequestStateChange=function(a,b,c){m.Exec("AMT_UserInitiatedConnectionService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.AMT_WebUIService_RequestStateChange=function(a,b,c){m.Exec("AMT_WebUIService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.AMT_WiFiPortConfigurationService_AddWiFiSettings=function(a,b,c,n,d,h){m.ExecWithXml("AMT_WiFiPortConfigurationService",
125 +"AddWiFiSettings",{WiFiEndpoint:a,WiFiEndpointSettingsInput:b,IEEE8021xSettingsInput:c,ClientCredential:n,CACredential:d},h)};m.AMT_WiFiPortConfigurationService_UpdateWiFiSettings=function(a,b,c,n,d,h){m.ExecWithXml("AMT_WiFiPortConfigurationService","UpdateWiFiSettings",{WiFiEndpointSettings:a,WiFiEndpointSettingsInput:b,IEEE8021xSettingsInput:c,ClientCredential:n,CACredential:d},h)};m.AMT_WiFiPortConfigurationService_DeleteAllITProfiles=function(a,b){m.Exec("AMT_WiFiPortConfigurationService","DeleteAllITProfiles",
126 +{_method_dummy:a},b)};m.AMT_WiFiPortConfigurationService_DeleteAllUserProfiles=function(a,b){m.Exec("AMT_WiFiPortConfigurationService","DeleteAllUserProfiles",{_method_dummy:a},b)};m.CIM_Account_RequestStateChange=function(a,b,c){m.Exec("CIM_Account","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_AccountManagementService_CreateAccount=function(a,b,c){m.Exec("CIM_AccountManagementService","CreateAccount",{System:a,AccountTemplate:b},c)};m.CIM_BootConfigSetting_ChangeBootOrder=function(a,
127 +b){m.Exec("CIM_BootConfigSetting","ChangeBootOrder",{Source:a},b)};m.CIM_BootService_SetBootConfigRole=function(a,b,c){m.Exec("CIM_BootService","SetBootConfigRole",{BootConfigSetting:a,Role:b},c,0,1)};m.CIM_Card_ConnectorPower=function(a,b,c){m.Exec("CIM_Card","ConnectorPower",{Connector:a,PoweredOn:b},c)};m.CIM_Card_IsCompatible=function(a,b){m.Exec("CIM_Card","IsCompatible",{ElementToCheck:a},b)};m.CIM_Chassis_IsCompatible=function(a,b){m.Exec("CIM_Chassis","IsCompatible",{ElementToCheck:a},b)};
128 +m.CIM_Fan_SetSpeed=function(a,b){m.Exec("CIM_Fan","SetSpeed",{DesiredSpeed:a},b)};m.CIM_KVMRedirectionSAP_RequestStateChange=function(a,b,c){m.Exec("CIM_KVMRedirectionSAP","RequestStateChange",{RequestedState:a},c)};m.CIM_MediaAccessDevice_LockMedia=function(a,b){m.Exec("CIM_MediaAccessDevice","LockMedia",{Lock:a},b)};m.CIM_MediaAccessDevice_SetPowerState=function(a,b,c){m.Exec("CIM_MediaAccessDevice","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_MediaAccessDevice_Reset=function(a){m.Exec("CIM_MediaAccessDevice",
129 +"Reset",{},a)};m.CIM_MediaAccessDevice_EnableDevice=function(a,b){m.Exec("CIM_MediaAccessDevice","EnableDevice",{Enabled:a},b)};m.CIM_MediaAccessDevice_OnlineDevice=function(a,b){m.Exec("CIM_MediaAccessDevice","OnlineDevice",{Online:a},b)};m.CIM_MediaAccessDevice_QuiesceDevice=function(a,b){m.Exec("CIM_MediaAccessDevice","QuiesceDevice",{Quiesce:a},b)};m.CIM_MediaAccessDevice_SaveProperties=function(a){m.Exec("CIM_MediaAccessDevice","SaveProperties",{},a)};m.CIM_MediaAccessDevice_RestoreProperties=
130 +function(a){m.Exec("CIM_MediaAccessDevice","RestoreProperties",{},a)};m.CIM_MediaAccessDevice_RequestStateChange=function(a,b,c){m.Exec("CIM_MediaAccessDevice","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_PhysicalFrame_IsCompatible=function(a,b){m.Exec("CIM_PhysicalFrame","IsCompatible",{ElementToCheck:a},b)};m.CIM_PhysicalPackage_IsCompatible=function(a,b){m.Exec("CIM_PhysicalPackage","IsCompatible",{ElementToCheck:a},b)};m.CIM_PowerManagementService_RequestPowerStateChange=
131 +function(a,b,c,n,d){m.Exec("CIM_PowerManagementService","RequestPowerStateChange",{PowerState:a,ManagedElement:b,Time:c,TimeoutPeriod:n},d,0,1)};m.CIM_PowerSupply_SetPowerState=function(a,b,c){m.Exec("CIM_PowerSupply","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_PowerSupply_Reset=function(a){m.Exec("CIM_PowerSupply","Reset",{},a)};m.CIM_PowerSupply_EnableDevice=function(a,b){m.Exec("CIM_PowerSupply","EnableDevice",{Enabled:a},b)};m.CIM_PowerSupply_OnlineDevice=function(a,b){m.Exec("CIM_PowerSupply",
132 +"OnlineDevice",{Online:a},b)};m.CIM_PowerSupply_QuiesceDevice=function(a,b){m.Exec("CIM_PowerSupply","QuiesceDevice",{Quiesce:a},b)};m.CIM_PowerSupply_SaveProperties=function(a){m.Exec("CIM_PowerSupply","SaveProperties",{},a)};m.CIM_PowerSupply_RestoreProperties=function(a){m.Exec("CIM_PowerSupply","RestoreProperties",{},a)};m.CIM_PowerSupply_RequestStateChange=function(a,b,c){m.Exec("CIM_PowerSupply","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_Processor_SetPowerState=function(a,
133 +b,c){m.Exec("CIM_Processor","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_Processor_Reset=function(a){m.Exec("CIM_Processor","Reset",{},a)};m.CIM_Processor_EnableDevice=function(a,b){m.Exec("CIM_Processor","EnableDevice",{Enabled:a},b)};m.CIM_Processor_OnlineDevice=function(a,b){m.Exec("CIM_Processor","OnlineDevice",{Online:a},b)};m.CIM_Processor_QuiesceDevice=function(a,b){m.Exec("CIM_Processor","QuiesceDevice",{Quiesce:a},b)};m.CIM_Processor_SaveProperties=function(a){m.Exec("CIM_Processor","SaveProperties",
134 +{},a)};m.CIM_Processor_RestoreProperties=function(a){m.Exec("CIM_Processor","RestoreProperties",{},a)};m.CIM_Processor_RequestStateChange=function(a,b,c){m.Exec("CIM_Processor","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_RecordLog_ClearLog=function(a){m.Exec("CIM_RecordLog","ClearLog",{},a)};m.CIM_RecordLog_RequestStateChange=function(a,b,c){m.Exec("CIM_RecordLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_RedirectionService_RequestStateChange=function(a,
135 +b,c){m.Exec("CIM_RedirectionService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_Sensor_SetPowerState=function(a,b,c){m.Exec("CIM_Sensor","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_Sensor_Reset=function(a){m.Exec("CIM_Sensor","Reset",{},a)};m.CIM_Sensor_EnableDevice=function(a,b){m.Exec("CIM_Sensor","EnableDevice",{Enabled:a},b)};m.CIM_Sensor_OnlineDevice=function(a,b){m.Exec("CIM_Sensor","OnlineDevice",{Online:a},b)};m.CIM_Sensor_QuiesceDevice=function(a,b){m.Exec("CIM_Sensor",
136 +"QuiesceDevice",{Quiesce:a},b)};m.CIM_Sensor_SaveProperties=function(a){m.Exec("CIM_Sensor","SaveProperties",{},a)};m.CIM_Sensor_RestoreProperties=function(a){m.Exec("CIM_Sensor","RestoreProperties",{},a)};m.CIM_Sensor_RequestStateChange=function(a,b,c){m.Exec("CIM_Sensor","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_StatisticalData_ResetSelectedStats=function(a,b){m.Exec("CIM_StatisticalData","ResetSelectedStats",{SelectedStatistics:a},b)};m.CIM_Watchdog_KeepAlive=function(a){m.Exec("CIM_Watchdog",
137 +"KeepAlive",{},a)};m.CIM_Watchdog_SetPowerState=function(a,b,c){m.Exec("CIM_Watchdog","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_Watchdog_Reset=function(a){m.Exec("CIM_Watchdog","Reset",{},a)};m.CIM_Watchdog_EnableDevice=function(a,b){m.Exec("CIM_Watchdog","EnableDevice",{Enabled:a},b)};m.CIM_Watchdog_OnlineDevice=function(a,b){m.Exec("CIM_Watchdog","OnlineDevice",{Online:a},b)};m.CIM_Watchdog_QuiesceDevice=function(a,b){m.Exec("CIM_Watchdog","QuiesceDevice",{Quiesce:a},b)};m.CIM_Watchdog_SaveProperties=
138 +function(a){m.Exec("CIM_Watchdog","SaveProperties",{},a)};m.CIM_Watchdog_RestoreProperties=function(a){m.Exec("CIM_Watchdog","RestoreProperties",{},a)};m.CIM_Watchdog_RequestStateChange=function(a,b,c){m.Exec("CIM_Watchdog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.CIM_WiFiPort_SetPowerState=function(a,b,c){m.Exec("CIM_WiFiPort","SetPowerState",{PowerState:a,Time:b},c)};m.CIM_WiFiPort_Reset=function(a){m.Exec("CIM_WiFiPort","Reset",{},a)};m.CIM_WiFiPort_EnableDevice=function(a,
139 +b){m.Exec("CIM_WiFiPort","EnableDevice",{Enabled:a},b)};m.CIM_WiFiPort_OnlineDevice=function(a,b){m.Exec("CIM_WiFiPort","OnlineDevice",{Online:a},b)};m.CIM_WiFiPort_QuiesceDevice=function(a,b){m.Exec("CIM_WiFiPort","QuiesceDevice",{Quiesce:a},b)};m.CIM_WiFiPort_SaveProperties=function(a){m.Exec("CIM_WiFiPort","SaveProperties",{},a)};m.CIM_WiFiPort_RestoreProperties=function(a){m.Exec("CIM_WiFiPort","RestoreProperties",{},a)};m.CIM_WiFiPort_RequestStateChange=function(a,b,c){m.Exec("CIM_WiFiPort",
140 +"RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.IPS_HostBasedSetupService_Setup=function(a,b,c,n,d,h,e){m.Exec("IPS_HostBasedSetupService","Setup",{NetAdminPassEncryptionType:a,NetworkAdminPassword:b,McNonce:c,Certificate:n,SigningAlgorithm:d,DigitalSignature:h},e)};m.IPS_HostBasedSetupService_AddNextCertInChain=function(a,b,c,n){m.Exec("IPS_HostBasedSetupService","AddNextCertInChain",{NextCertificate:a,IsLeafCertificate:b,IsRootCertificate:c},n)};m.IPS_HostBasedSetupService_AdminSetup=
141 +function(a,b,c,n,d,h){m.Exec("IPS_HostBasedSetupService","AdminSetup",{NetAdminPassEncryptionType:a,NetworkAdminPassword:b,McNonce:c,SigningAlgorithm:n,DigitalSignature:d},h)};m.IPS_HostBasedSetupService_UpgradeClientToAdmin=function(a,b,c,n){m.Exec("IPS_HostBasedSetupService","UpgradeClientToAdmin",{McNonce:a,SigningAlgorithm:b,DigitalSignature:c},n)};m.IPS_HostBasedSetupService_DisableClientControlMode=function(a,b){m.Exec("IPS_HostBasedSetupService","DisableClientControlMode",{_method_dummy:a},
142 +b)};m.IPS_KVMRedirectionSettingData_TerminateSession=function(a){m.Exec("IPS_KVMRedirectionSettingData","TerminateSession",{},a)};m.IPS_KVMRedirectionSettingData_DataChannelRead=function(a){m.Exec("IPS_KVMRedirectionSettingData","DataChannelRead",{},a)};m.IPS_KVMRedirectionSettingData_DataChannelWrite=function(a,b){m.Exec("IPS_KVMRedirectionSettingData","DataChannelWrite",{DataMessage:a},b)};m.IPS_OptInService_StartOptIn=function(a){m.Exec("IPS_OptInService","StartOptIn",{},a)};m.IPS_OptInService_CancelOptIn=
143 +function(a){m.Exec("IPS_OptInService","CancelOptIn",{},a)};m.IPS_OptInService_SendOptInCode=function(a,b){m.Exec("IPS_OptInService","SendOptInCode",{OptInCode:a},b)};m.IPS_OptInService_StartService=function(a){m.Exec("IPS_OptInService","StartService",{},a)};m.IPS_OptInService_StopService=function(a){m.Exec("IPS_OptInService","StopService",{},a)};m.IPS_OptInService_RequestStateChange=function(a,b,c){m.Exec("IPS_OptInService","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.IPS_ProvisioningRecordLog_RequestStateChange=
144 +function(a,b,c){m.Exec("IPS_ProvisioningRecordLog","RequestStateChange",{RequestedState:a,TimeoutPeriod:b},c)};m.IPS_ProvisioningRecordLog_ClearLog=function(a,b){m.Exec("IPS_ProvisioningRecordLog","ClearLog",{_method_dummy:a},b)};m.IPS_ScreenConfigurationService_SetSessionState=function(a,b,c){m.Exec("IPS_ScreenConfigurationService","SetSessionState",{SessionState:a,ConsecutiveRebootsNum:b},c)};m.IPS_SecIOService_RequestStateChange=function(a,b,c){m.Exec("IPS_SecIOService","RequestStateChange",{RequestedState:a,
145 +TimeoutPeriod:b},c)};m.IPS_HTTPProxyService_AddProxyAccessPoint=function(a,b,c,n,d){m.Exec("IPS_HTTPProxyService","AddProxyAccessPoint",{AccessInfo:a,InfoFormat:b,Port:c,NetworkDnsSuffix:n},d)};m.AmtStatusToStr=function(a){return m.AmtStatusCodes[a]?m.AmtStatusCodes[a]:"UNKNOWN_ERROR"};m.AmtStatusCodes={0:"SUCCESS",1:"INTERNAL_ERROR",2:"NOT_READY",3:"INVALID_PT_MODE",4:"INVALID_MESSAGE_LENGTH",5:"TABLE_FINGERPRINT_NOT_AVAILABLE",6:"INTEGRITY_CHECK_FAILED",7:"UNSUPPORTED_ISVS_VERSION",8:"APPLICATION_NOT_REGISTERED",
146 9:"INVALID_REGISTRATION_DATA",10:"APPLICATION_DOES_NOT_EXIST",11:"NOT_ENOUGH_STORAGE",12:"INVALID_NAME",13:"BLOCK_DOES_NOT_EXIST",14:"INVALID_BYTE_OFFSET",15:"INVALID_BYTE_COUNT",16:"NOT_PERMITTED",17:"NOT_OWNER",18:"BLOCK_LOCKED_BY_OTHER",19:"BLOCK_NOT_LOCKED",20:"INVALID_GROUP_PERMISSIONS",21:"GROUP_DOES_NOT_EXIST",22:"INVALID_MEMBER_COUNT",23:"MAX_LIMIT_REACHED",24:"INVALID_AUTH_TYPE",25:"AUTHENTICATION_FAILED",26:"INVALID_DHCP_MODE",27:"INVALID_IP_ADDRESS",28:"INVALID_DOMAIN_NAME",29:"UNSUPPORTED_VERSION",
147 30:"REQUEST_UNEXPECTED",31:"INVALID_TABLE_TYPE",32:"INVALID_PROVISIONING_STATE",33:"UNSUPPORTED_OBJECT",34:"INVALID_TIME",35:"INVALID_INDEX",36:"INVALID_PARAMETER",37:"INVALID_NETMASK",38:"FLASH_WRITE_LIMIT_EXCEEDED",39:"INVALID_IMAGE_LENGTH",40:"INVALID_IMAGE_SIGNATURE",41:"PROPOSE_ANOTHER_VERSION",42:"INVALID_PID_FORMAT",43:"INVALID_PPS_FORMAT",44:"BIST_COMMAND_BLOCKED",45:"CONNECTION_FAILED",46:"CONNECTION_TOO_MANY",47:"RNG_GENERATION_IN_PROGRESS",48:"RNG_NOT_READY",49:"CERTIFICATE_NOT_READY",
148 1024:"DISABLED_BY_POLICY",2048:"NETWORK_IF_ERROR_BASE",2049:"UNSUPPORTED_OEM_NUMBER",2050:"UNSUPPORTED_BOOT_OPTION",2051:"INVALID_COMMAND",2052:"INVALID_SPECIAL_COMMAND",2053:"INVALID_HANDLE",2054:"INVALID_PASSWORD",2055:"INVALID_REALM",2056:"STORAGE_ACL_ENTRY_IN_USE",2057:"DATA_MISSING",2058:"DUPLICATE",2059:"EVENTLOG_FROZEN",2060:"PKI_MISSING_KEYS",2061:"PKI_GENERATING_KEYS",2062:"INVALID_KEY",2063:"INVALID_CERT",2064:"CERT_KEY_NOT_MATCH",2065:"MAX_KERB_DOMAIN_REACHED",2066:"UNSUPPORTED",2067:"INVALID_PRIORITY",
149 -2068:"NOT_FOUND",2069:"INVALID_CREDENTIALS",2070:"INVALID_PASSPHRASE",2072:"NO_ASSOCIATION",2075:"AUDIT_FAIL",2076:"BLOCKING_COMPONENT",2081:"USER_CONSENT_REQUIRED",4096:"APP_INTERNAL_ERROR",4097:"NOT_INITIALIZED",4098:"LIB_VERSION_UNSUPPORTED",4099:"INVALID_PARAM",4100:"RESOURCES",4101:"HARDWARE_ACCESS_ERROR",4102:"REQUESTOR_NOT_REGISTERED",4103:"NETWORK_ERROR",4104:"PARAM_BUFFER_TOO_SHORT",4105:"COM_NOT_INITIALIZED_IN_THREAD",4106:"URL_REQUIRED"};l.GetMessageLog=function(a,b){l.AMT_MessageLog_PositionToFirstRecord(r,
150 -[a,b,[]])};var k="Unspecified.;No system memory is physically installed in the system.;No usable system memory, all installed memory has experienced an unrecoverable failure.;Unrecoverable hard-disk/ATAPI/IDE device failure.;Unrecoverable system-board failure.;Unrecoverable diskette subsystem failure.;Unrecoverable hard-disk controller failure.;Unrecoverable PS/2 or USB keyboard failure.;Removable boot media not found.;Unrecoverable video controller failure.;No video device detected.;Firmware (BIOS) ROM corruption detected.;CPU voltage mismatch (processors that share same supply have mismatched voltage requirements);CPU speed matching failure".split(";"),
151 -h="Unspecified.;Memory initialization.;Starting hard-disk initialization and test;Secondary processor(s) initialization;User authentication;User-initiated system setup;USB resource configuration;PCI resource configuration;Option ROM initialization;Video initialization;Cache initialization;SM Bus initialization;Keyboard controller initialization;Embedded controller/management controller initialization;Docking station attachment;Enabling docking station;Docking station ejection;Disabling docking station;Calling operating system wake-up vector;Starting operating system boot process;Baseboard or motherboard initialization;reserved;Floppy initialization;Keyboard test;Pointing device test;Primary processor initialization".split(";"),
152 -K="Unspecified;Other;Unknown;Processor;Disk;Peripheral;System management module;System board;Memory module;Processor module;Power supply;Add in card;Front panel board;Back panel board;Power system board;Drive backplane;System internal expansion board;Other system board;Processor board;Power unit;Power module;Power management board;Chassis back panel board;System chassis;Sub chassis;Other chassis board;Disk drive bay;Peripheral bay;Device bay;Fan cooling;Cooling unit;Cable interconnect;Memory device;System management software;BIOS;Intel(r) ME;System bus;Group;Intel(r) ME;External environment;Battery;Processing blade;Connectivity switch;Processor/memory module;I/O module;Processor I/O module;Management controller firmware;IPMI channel;PCI bus;PCI express bus;SCSI bus;SATA/SAS bus;Processor front side bus".split(";");
153 -l.RealmNames=";;Redirection;;Hardware Asset;Remote Control;Storage;Event Manager;Storage Admin;Agent Presence Local;Agent Presence Remote;Circuit Breaker;Network Time;General Information;Firmware Update;EIT;LocalUN;Endpoint Access Control;Endpoint Access Control Admin;Event Log Reader;Audit Log;ACL Realm;;;Local System".split(";");l.WatchdogCurrentStates={1:"Not Started",2:"Stopped",4:"Running",8:"Expired",16:"Suspended"};var q={16:"Security Admin",17:"RCO",18:"Redirection Manager",19:"Firmware Update Manager",
149 +2068:"NOT_FOUND",2069:"INVALID_CREDENTIALS",2070:"INVALID_PASSPHRASE",2072:"NO_ASSOCIATION",2075:"AUDIT_FAIL",2076:"BLOCKING_COMPONENT",2081:"USER_CONSENT_REQUIRED",4096:"APP_INTERNAL_ERROR",4097:"NOT_INITIALIZED",4098:"LIB_VERSION_UNSUPPORTED",4099:"INVALID_PARAM",4100:"RESOURCES",4101:"HARDWARE_ACCESS_ERROR",4102:"REQUESTOR_NOT_REGISTERED",4103:"NETWORK_ERROR",4104:"PARAM_BUFFER_TOO_SHORT",4105:"COM_NOT_INITIALIZED_IN_THREAD",4106:"URL_REQUIRED"};m.GetMessageLog=function(a,b){m.AMT_MessageLog_PositionToFirstRecord(v,
150 +[a,b,[]])};var l="Unspecified.;No system memory is physically installed in the system.;No usable system memory, all installed memory has experienced an unrecoverable failure.;Unrecoverable hard-disk/ATAPI/IDE device failure.;Unrecoverable system-board failure.;Unrecoverable diskette subsystem failure.;Unrecoverable hard-disk controller failure.;Unrecoverable PS/2 or USB keyboard failure.;Removable boot media not found.;Unrecoverable video controller failure.;No video device detected.;Firmware (BIOS) ROM corruption detected.;CPU voltage mismatch (processors that share same supply have mismatched voltage requirements);CPU speed matching failure".split(";"),
151 +g="Unspecified.;Memory initialization.;Starting hard-disk initialization and test;Secondary processor(s) initialization;User authentication;User-initiated system setup;USB resource configuration;PCI resource configuration;Option ROM initialization;Video initialization;Cache initialization;SM Bus initialization;Keyboard controller initialization;Embedded controller/management controller initialization;Docking station attachment;Enabling docking station;Docking station ejection;Disabling docking station;Calling operating system wake-up vector;Starting operating system boot process;Baseboard or motherboard initialization;reserved;Floppy initialization;Keyboard test;Pointing device test;Primary processor initialization".split(";"),
152 +x="Unspecified;Other;Unknown;Processor;Disk;Peripheral;System management module;System board;Memory module;Processor module;Power supply;Add in card;Front panel board;Back panel board;Power system board;Drive backplane;System internal expansion board;Other system board;Processor board;Power unit;Power module;Power management board;Chassis back panel board;System chassis;Sub chassis;Other chassis board;Disk drive bay;Peripheral bay;Device bay;Fan cooling;Cooling unit;Cable interconnect;Memory device;System management software;BIOS;Intel(r) ME;System bus;Group;Intel(r) ME;External environment;Battery;Processing blade;Connectivity switch;Processor/memory module;I/O module;Processor I/O module;Management controller firmware;IPMI channel;PCI bus;PCI express bus;SCSI bus;SATA/SAS bus;Processor front side bus".split(";");
153 +m.RealmNames=";;Redirection;;Hardware Asset;Remote Control;Storage;Event Manager;Storage Admin;Agent Presence Local;Agent Presence Remote;Circuit Breaker;Network Time;General Information;Firmware Update;EIT;LocalUN;Endpoint Access Control;Endpoint Access Control Admin;Event Log Reader;Audit Log;ACL Realm;;;Local System".split(";");m.WatchdogCurrentStates={1:"Not Started",2:"Stopped",4:"Running",8:"Expired",16:"Suspended"};var u={16:"Security Admin",17:"RCO",18:"Redirection Manager",19:"Firmware Update Manager",
154 20:"Security Audit Log",21:"Network Time",22:"Network Administration",23:"Storage Administration",24:"Event Manager",25:"Circuit Breaker Manager",26:"Agent Presence Manager",27:"Wireless Configuration",28:"EAC",29:"KVM",30:"User Opt-In Events",32:"Screen Blanking",33:"Watchdog Events",1600:"Provisioning Started",1601:"Provisioning Completed",1602:"ACL Entry Added",1603:"ACL Entry Modified",1604:"ACL Entry Removed",1605:"ACL Access with Invalid Credentials",1606:"ACL Entry State",1607:"TLS State Changed",
155 1608:"TLS Server Certificate Set",1609:"TLS Server Certificate Remove",1610:"TLS Trusted Root Certificate Added",1611:"TLS Trusted Root Certificate Removed",1612:"TLS Preshared Key Set",1613:"Kerberos Settings Modified",1614:"Kerberos Master Key Modified",1615:"Flash Wear out Counters Reset",1616:"Power Package Modified",1617:"Set Realm Authentication Mode",1618:"Upgrade Client to Admin Control Mode",1619:"Unprovisioning Started",1700:"Performed Power Up",1701:"Performed Power Down",1702:"Performed Power Cycle",
156 1703:"Performed Reset",1704:"Set Boot Options",1800:"IDER Session Opened",1801:"IDER Session Closed",1802:"IDER Enabled",1803:"IDER Disabled",1804:"SoL Session Opened",1805:"SoL Session Closed",1806:"SoL Enabled",1807:"SoL Disabled",1808:"KVM Session Started",1809:"KVM Session Ended",1810:"KVM Enabled",1811:"KVM Disabled",1812:"VNC Password Failed 3 Times",1900:"Firmware Updated",1901:"Firmware Update Failed",2E3:"Security Audit Log Cleared",2001:"Security Audit Policy Modified",2002:"Security Audit Log Disabled",
157 2003:"Security Audit Log Enabled",2004:"Security Audit Log Exported",2005:"Security Audit Log Recovered",2100:"Intel&reg; ME Time Set",2200:"TCPIP Parameters Set",2201:"Host Name Set",2202:"Domain Name Set",2203:"VLAN Parameters Set",2204:"Link Policy Set",2205:"IPv6 Parameters Set",2300:"Global Storage Attributes Set",2301:"Storage EACL Modified",2302:"Storage FPACL Modified",2303:"Storage Write Operation",2400:"Alert Subscribed",2401:"Alert Unsubscribed",2402:"Event Log Cleared",2403:"Event Log Frozen",
158 2500:"CB Filter Added",2501:"CB Filter Removed",2502:"CB Policy Added",2503:"CB Policy Removed",2504:"CB Default Policy Set",2505:"CB Heuristics Option Set",2506:"CB Heuristics State Cleared",2600:"Agent Watchdog Added",2601:"Agent Watchdog Removed",2602:"Agent Watchdog Action Set",2700:"Wireless Profile Added",2701:"Wireless Profile Removed",2702:"Wireless Profile Updated",2800:"EAC Posture Signer SET",2801:"EAC Enabled",2802:"EAC Disabled",2803:"EAC Posture State",2804:"EAC Set Options",2900:"KVM Opt-in Enabled",
159 -2901:"KVM Opt-in Disabled",2902:"KVM Password Changed",2903:"KVM Consent Succeeded",2904:"KVM Consent Failed",3E3:"Opt-In Policy Change",3001:"Send Consent Code Event",3002:"Start Opt-In Blocked Event"};l.GetAuditLogExtendedDataStr=function(a,b){if((1602==a||1604==a)&&0==b.charCodeAt(0))return b.substring(2,2+b.charCodeAt(1));if(1603==a)return 0==b.charCodeAt(1)?b.substring(3):null;if(1605==a)return["Invalid ME access","Invalid MEBx access"][b.charCodeAt(0)];if(1606==a){var c=["Disabled","Enabled"][b.charCodeAt(0)];
160 -0==b.charCodeAt(1)&&(c+=", "+b.substring(3));return c}return 1607==a?"Remote "+["NoAuth","ServerAuth","MutualAuth"][b.charCodeAt(0)]+", Local "+["NoAuth","ServerAuth","MutualAuth"][b.charCodeAt(1)]:1617==a?l.RealmNames[ReadInt(b,0)]+", "+["NoAuth","Auth","Disabled"][b.charCodeAt(4)]:1619==a?["BIOS","MEBx","Local MEI","Local WSMAN","Remote WSAMN"][b.charCodeAt(0)]:1900==a?"From "+ReadShort(b,0)+"."+ReadShort(b,2)+"."+ReadShort(b,4)+"."+ReadShort(b,6)+" to "+ReadShort(b,8)+"."+ReadShort(b,10)+"."+ReadShort(b,
161 -12)+"."+ReadShort(b,14):2100==a?(c=new Date,c.setTime(1E3*ReadInt(b,0)+6E4*(new Date).getTimezoneOffset()),c.toLocaleString()):3E3==a?"From "+["None","KVM","All"][b.charCodeAt(0)]+" to "+["None","KVM","All"][b.charCodeAt(1)]:3001==a?["Success","Failed 3 times"][b.charCodeAt(0)]:null};l.GetAuditLog=function(a){l.AMT_AuditLog_ReadRecords(1,w,[a,[]])};return l}function hex_md5(b){return forge.md.md5.create().update(b).digest().toHex()}function rstr_md5(b){return hex2rstr(hex_md5(b))}
159 +2901:"KVM Opt-in Disabled",2902:"KVM Password Changed",2903:"KVM Consent Succeeded",2904:"KVM Consent Failed",3E3:"Opt-In Policy Change",3001:"Send Consent Code Event",3002:"Start Opt-In Blocked Event"};m.GetAuditLogExtendedDataStr=function(a,b){if((1602==a||1604==a)&&0==b.charCodeAt(0))return b.substring(2,2+b.charCodeAt(1));if(1603==a)return 0==b.charCodeAt(1)?b.substring(3):null;if(1605==a)return["Invalid ME access","Invalid MEBx access"][b.charCodeAt(0)];if(1606==a){var c=["Disabled","Enabled"][b.charCodeAt(0)];
160 +0==b.charCodeAt(1)&&(c+=", "+b.substring(3));return c}return 1607==a?"Remote "+["NoAuth","ServerAuth","MutualAuth"][b.charCodeAt(0)]+", Local "+["NoAuth","ServerAuth","MutualAuth"][b.charCodeAt(1)]:1617==a?m.RealmNames[ReadInt(b,0)]+", "+["NoAuth","Auth","Disabled"][b.charCodeAt(4)]:1619==a?["BIOS","MEBx","Local MEI","Local WSMAN","Remote WSAMN"][b.charCodeAt(0)]:1900==a?"From "+ReadShort(b,0)+"."+ReadShort(b,2)+"."+ReadShort(b,4)+"."+ReadShort(b,6)+" to "+ReadShort(b,8)+"."+ReadShort(b,10)+"."+ReadShort(b,
161 +12)+"."+ReadShort(b,14):2100==a?(c=new Date,c.setTime(1E3*ReadInt(b,0)+6E4*(new Date).getTimezoneOffset()),c.toLocaleString()):3E3==a?"From "+["None","KVM","All"][b.charCodeAt(0)]+" to "+["None","KVM","All"][b.charCodeAt(1)]:3001==a?["Success","Failed 3 times"][b.charCodeAt(0)]:null};m.GetAuditLog=function(a){m.AMT_AuditLog_ReadRecords(1,h,[a,[]])};return m}function hex_md5(b){return forge.md.md5.create().update(b).digest().toHex()}function rstr_md5(b){return hex2rstr(hex_md5(b))}
162 function execArgumentsToXml(b){if(void 0===b||null===b)return null;var c="",a;for(a in b){var d=b[a];d&&(c="reference"===d.__parameterType?c+referenceToXml(a,d):c+instanceToXml(a,d))}return c}
163 -function instanceToXml(b,c){if(void 0===c||null===c)return null;var a=!!c.__namespace,d=a?"<q:":"<",e=a?"</q:":"</",a="<r:"+b+(a?' xmlns:q="'+c.__namespace+'"':"")+">",n;for(n in c)c.hasOwnProperty(n)&&0!==n.indexOf("__")&&("function"===typeof c[n]||Array.isArray(c[n])||("object"===typeof c[n]?console.error("only convert one level down..."):a+=d+n+">"+c[n].toString()+e+n+">"));return a+("</r:"+b+">")}
163 +function instanceToXml(b,c){if(void 0===c||null===c)return null;var a=!!c.__namespace,d=a?"<q:":"<",e=a?"</q:":"</",a="<r:"+b+(a?' xmlns:q="'+c.__namespace+'"':"")+">",q;for(q in c)c.hasOwnProperty(q)&&0!==q.indexOf("__")&&("function"===typeof c[q]||Array.isArray(c[q])||("object"===typeof c[q]?console.error("only convert one level down..."):a+=d+q+">"+c[q].toString()+e+q+">"));return a+("</r:"+b+">")}
164 function referenceToXml(b,c){if(void 0===c||null===c)return null;var a="<r:"+b+"><a:Address>/wsman</a:Address><a:ReferenceParameters><w:ResourceURI>"+c.__resourceUri+"</w:ResourceURI><w:SelectorSet>",d;for(d in c)c.hasOwnProperty(d)&&0!==d.indexOf("__")&&("function"===typeof c[d]||"object"===typeof c[d]||Array.isArray(c[d])||(a+='<w:Selector Name="'+d+'">'+c[d].toString()+"</w:Selector>"));return a+("</w:SelectorSet></a:ReferenceParameters></r:"+b+">")}
165 function GetSidString(b){for(var c="S-"+b.charCodeAt(0)+"-"+b.charCodeAt(7),a=2;a<b.length/4;a++)c+="-"+ReadIntX(b,4*a);return c}
166 function GetSidByteArray(b){if(!b||null==b)return null;b=b.split("-");if(4>b.length||"s"!=b[0]&&"S"!=b[0])return null;for(var c=1;c<b.length;c++){var a=parseInt(b[c]);if(a!=b[c])return null;b[c]=a}a=String.fromCharCode(b[1])+String.fromCharCode(b.length-3)+ShortToStr(Math.floor(b[2]/Math.pow(2,32)))+IntToStr(b[2]&65535);for(c=3;c<b.length;c++)a+=IntToStrX(b[c]);return a}
167 -(function(b,c){"function"===typeof define&&define.amd?define([],c):b.forge=c()})(this,function(){var b,c,a;(function(d){function e(a,b){var c,m,g,d,h,e,k,y,l,w=b&&b.split("/"),x=q.map,v=x&&x["*"]||{};if(a&&"."===a.charAt(0))if(b){w=w.slice(0,w.length-1);a=a.split("/");h=a.length-1;q.nodeIdCompat&&I.test(a[h])&&(a[h]=a[h].replace(I,""));a=w.concat(a);for(h=0;h<a.length;h+=1)if(c=a[h],"."===c)a.splice(h,1),--h;else if(".."===c)if(1!==h||".."!==a[2]&&".."!==a[0])0<h&&(a.splice(h-1,2),h-=2);else break;
168 -a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((w||v)&&x){c=a.split("/");for(h=c.length;0<h;--h){m=c.slice(0,h).join("/");if(w)for(l=w.length;0<l;--l)if(g=x[w.slice(0,l).join("/")])if(g=g[m]){d=g;e=h;break}if(d)break;!k&&v&&v[m]&&(k=v[m],y=h)}!d&&k&&(d=k,e=y);d&&(c.splice(0,e,d),a=c.join("/"))}return a}function n(a,b){return function(){return v.apply(d,y.call(arguments,0).concat([a,b]))}}function p(a){return function(b){return e(b,a)}}function r(a){return function(b){h[a]=b}}function m(a){if(B.call(K,
169 -a)){var b=K[a];delete K[a];C[a]=!0;l.apply(d,b)}if(!B.call(h,a)&&!B.call(C,a))throw Error("No "+a);return h[a]}function g(a){var b,c=a?a.indexOf("!"):-1;-1<c&&(b=a.substring(0,c),a=a.substring(c+1,a.length));return[b,a]}function w(a){return function(){return q&&q.config&&q.config[a]||{}}}var l,v,x,k,h={},K={},q={},C={},B=Object.prototype.hasOwnProperty,y=[].slice,I=/\.js$/;x=function(a,b){var c,d=g(a),h=d[0];a=d[1];h&&(h=e(h,b),c=m(h));h?a=c&&c.normalize?c.normalize(a,p(b)):e(a,b):(a=e(a,b),d=g(a),
170 -h=d[0],a=d[1],h&&(c=m(h)));return{f:h?h+"!"+a:a,n:a,pr:h,p:c}};k={require:function(a){return n(a)},exports:function(a){var b=h[a];return"undefined"!==typeof b?b:h[a]={}},module:function(a){return{id:a,uri:"",exports:h[a],config:w(a)}}};l=function(a,b,c,g){var e,y,l,q,w=[];y=typeof c;var v;g=g||a;if("undefined"===y||"function"===y){b=!b.length&&c.length?["require","exports","module"]:b;for(q=0;q<b.length;q+=1)if(l=x(b[q],g),y=l.f,"require"===y)w[q]=k.require(a);else if("exports"===y)w[q]=k.exports(a),
171 -v=!0;else if("module"===y)e=w[q]=k.module(a);else if(B.call(h,y)||B.call(K,y)||B.call(C,y))w[q]=m(y);else if(l.p)l.p.load(l.n,n(g,!0),r(y),{}),w[q]=h[y];else throw Error(a+" missing "+y);b=c?c.apply(h[a],w):void 0;a&&(e&&e.exports!==d&&e.exports!==h[a]?h[a]=e.exports:b===d&&v||(h[a]=b))}else a&&(h[a]=c)};b=c=v=function(a,b,c,g,h){if("string"===typeof a)return k[a]?k[a](b):m(x(a,b).f);if(!a.splice){q=a;q.deps&&v(q.deps,q.callback);if(!b)return;b.splice?(a=b,b=c,c=null):a=d}b=b||function(){};"function"===
172 -typeof c&&(c=g,g=h);g?l(d,a,b,c):setTimeout(function(){l(d,a,b,c)},4);return v};v.config=function(a){return v(a)};b._defined=h;a=function(a,b,c){b.splice||(c=b,b=[]);B.call(h,a)||B.call(K,a)||(K[a]=[a,b,c])};a.amd={jQuery:!0}})();a("node_modules/almond/almond",function(){});(function(){function b(a){function c(a){this.data="";this.read=0;if("string"===typeof a)this.data=a;else if(d.isArrayBuffer(a)||d.isArrayBufferView(a)){a=new Uint8Array(a);try{this.data=String.fromCharCode.apply(null,a)}catch(b){for(var m=
173 -0;m<a.length;++m)this.putByte(a[m])}}else if(a instanceof c||"object"===typeof a&&"string"===typeof a.data&&"number"===typeof a.read)this.data=a.data,this.read=a.read;this._constructedStringLength=0}var d=a.util=a.util||{};(function(){if("undefined"!==typeof process&&process.nextTick)d.nextTick=process.nextTick,d.setImmediate="function"===typeof setImmediate?setImmediate:d.nextTick;else if("function"===typeof setImmediate)d.setImmediate=setImmediate,d.nextTick=function(a){return setImmediate(a)};
174 -else{d.setImmediate=function(a){setTimeout(a,0)};if("undefined"!==typeof window&&"function"===typeof window.postMessage){var a=[];d.setImmediate=function(b){a.push(b);1===a.length&&window.postMessage("forge.setImmediate","*")};window.addEventListener("message",function(b){b.source===window&&"forge.setImmediate"===b.data&&(b.stopPropagation(),b=a.slice(),a.length=0,b.forEach(function(a){a()}))},!0)}if("undefined"!==typeof MutationObserver){var b=Date.now(),c=!0,m=document.createElement("div"),a=[];
175 -(new MutationObserver(function(){var b=a.slice();a.length=0;b.forEach(function(a){a()})})).observe(m,{attributes:!0});var g=d.setImmediate;d.setImmediate=function(d){15<Date.now()-b?(b=Date.now(),g(d)):(a.push(d),1===a.length&&m.setAttribute("a",c=!c))}}d.nextTick=d.setImmediate}})();d.isArray=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)};d.isArrayBuffer=function(a){return"undefined"!==typeof ArrayBuffer&&a instanceof ArrayBuffer};d.isArrayBufferView=function(a){return a&&
167 +(function(b,c){"function"===typeof define&&define.amd?define([],c):b.forge=c()})(this,function(){var b,c,a;(function(d){function e(a,b){var c,n,d,h,e,g,l,y,m,p=b&&b.split("/"),w=u.map,x=w&&w["*"]||{};if(a&&"."===a.charAt(0))if(b){p=p.slice(0,p.length-1);a=a.split("/");e=a.length-1;u.nodeIdCompat&&H.test(a[e])&&(a[e]=a[e].replace(H,""));a=p.concat(a);for(e=0;e<a.length;e+=1)if(c=a[e],"."===c)a.splice(e,1),--e;else if(".."===c)if(1!==e||".."!==a[2]&&".."!==a[0])0<e&&(a.splice(e-1,2),e-=2);else break;
168 +a=a.join("/")}else 0===a.indexOf("./")&&(a=a.substring(2));if((p||x)&&w){c=a.split("/");for(e=c.length;0<e;--e){n=c.slice(0,e).join("/");if(p)for(m=p.length;0<m;--m)if(d=w[p.slice(0,m).join("/")])if(d=d[n]){h=d;g=e;break}if(h)break;!l&&x&&x[n]&&(l=x[n],y=e)}!h&&l&&(h=l,g=y);h&&(c.splice(0,g,h),a=c.join("/"))}return a}function q(a,b){return function(){return w.apply(d,y.call(arguments,0).concat([a,b]))}}function k(a){return function(b){return e(b,a)}}function v(a){return function(b){g[a]=b}}function n(a){if(A.call(x,
169 +a)){var b=x[a];delete x[a];J[a]=!0;m.apply(d,b)}if(!A.call(g,a)&&!A.call(J,a))throw Error("No "+a);return g[a]}function p(a){var b,c=a?a.indexOf("!"):-1;-1<c&&(b=a.substring(0,c),a=a.substring(c+1,a.length));return[b,a]}function h(a){return function(){return u&&u.config&&u.config[a]||{}}}var m,w,B,l,g={},x={},u={},J={},A=Object.prototype.hasOwnProperty,y=[].slice,H=/\.js$/;B=function(a,b){var c,d=p(a),h=d[0];a=d[1];h&&(h=e(h,b),c=n(h));h?a=c&&c.normalize?c.normalize(a,k(b)):e(a,b):(a=e(a,b),d=p(a),
170 +h=d[0],a=d[1],h&&(c=n(h)));return{f:h?h+"!"+a:a,n:a,pr:h,p:c}};l={require:function(a){return q(a)},exports:function(a){var b=g[a];return"undefined"!==typeof b?b:g[a]={}},module:function(a){return{id:a,uri:"",exports:g[a],config:h(a)}}};m=function(a,b,c,h){var e,y,u,m,p=[];y=typeof c;var w;h=h||a;if("undefined"===y||"function"===y){b=!b.length&&c.length?["require","exports","module"]:b;for(m=0;m<b.length;m+=1)if(u=B(b[m],h),y=u.f,"require"===y)p[m]=l.require(a);else if("exports"===y)p[m]=l.exports(a),
171 +w=!0;else if("module"===y)e=p[m]=l.module(a);else if(A.call(g,y)||A.call(x,y)||A.call(J,y))p[m]=n(y);else if(u.p)u.p.load(u.n,q(h,!0),v(y),{}),p[m]=g[y];else throw Error(a+" missing "+y);b=c?c.apply(g[a],p):void 0;a&&(e&&e.exports!==d&&e.exports!==g[a]?g[a]=e.exports:b===d&&w||(g[a]=b))}else a&&(g[a]=c)};b=c=w=function(a,b,c,h,e){if("string"===typeof a)return l[a]?l[a](b):n(B(a,b).f);if(!a.splice){u=a;u.deps&&w(u.deps,u.callback);if(!b)return;b.splice?(a=b,b=c,c=null):a=d}b=b||function(){};"function"===
172 +typeof c&&(c=h,h=e);h?m(d,a,b,c):setTimeout(function(){m(d,a,b,c)},4);return w};w.config=function(a){return w(a)};b._defined=g;a=function(a,b,c){b.splice||(c=b,b=[]);A.call(g,a)||A.call(x,a)||(x[a]=[a,b,c])};a.amd={jQuery:!0}})();a("node_modules/almond/almond",function(){});(function(){function b(a){function c(a){this.data="";this.read=0;if("string"===typeof a)this.data=a;else if(d.isArrayBuffer(a)||d.isArrayBufferView(a)){a=new Uint8Array(a);try{this.data=String.fromCharCode.apply(null,a)}catch(b){for(var n=
173 +0;n<a.length;++n)this.putByte(a[n])}}else if(a instanceof c||"object"===typeof a&&"string"===typeof a.data&&"number"===typeof a.read)this.data=a.data,this.read=a.read;this._constructedStringLength=0}var d=a.util=a.util||{};(function(){if("undefined"!==typeof process&&process.nextTick)d.nextTick=process.nextTick,d.setImmediate="function"===typeof setImmediate?setImmediate:d.nextTick;else if("function"===typeof setImmediate)d.setImmediate=setImmediate,d.nextTick=function(a){return setImmediate(a)};
174 +else{d.setImmediate=function(a){setTimeout(a,0)};if("undefined"!==typeof window&&"function"===typeof window.postMessage){var a=[];d.setImmediate=function(b){a.push(b);1===a.length&&window.postMessage("forge.setImmediate","*")};window.addEventListener("message",function(b){b.source===window&&"forge.setImmediate"===b.data&&(b.stopPropagation(),b=a.slice(),a.length=0,b.forEach(function(a){a()}))},!0)}if("undefined"!==typeof MutationObserver){var b=Date.now(),c=!0,n=document.createElement("div"),a=[];
175 +(new MutationObserver(function(){var b=a.slice();a.length=0;b.forEach(function(a){a()})})).observe(n,{attributes:!0});var e=d.setImmediate;d.setImmediate=function(d){15<Date.now()-b?(b=Date.now(),e(d)):(a.push(d),1===a.length&&n.setAttribute("a",c=!c))}}d.nextTick=d.setImmediate}})();d.isArray=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)};d.isArrayBuffer=function(a){return"undefined"!==typeof ArrayBuffer&&a instanceof ArrayBuffer};d.isArrayBufferView=function(a){return a&&
176 d.isArrayBuffer(a.buffer)&&void 0!==a.byteLength};d.ByteBuffer=c;d.ByteStringBuffer=c;d.ByteStringBuffer.prototype._optimizeConstructedString=function(a){this._constructedStringLength+=a;4096<this._constructedStringLength&&(this.data.substr(0,1),this._constructedStringLength=0)};d.ByteStringBuffer.prototype.length=function(){return this.data.length-this.read};d.ByteStringBuffer.prototype.isEmpty=function(){return 0>=this.length()};d.ByteStringBuffer.prototype.putByte=function(a){return this.putBytes(String.fromCharCode(a))};
177 d.ByteStringBuffer.prototype.fillWithByte=function(a,b){a=String.fromCharCode(a);for(var c=this.data;0<b;)b&1&&(c+=a),b>>>=1,0<b&&(a+=a);this.data=c;this._optimizeConstructedString(b);return this};d.ByteStringBuffer.prototype.putBytes=function(a){this.data+=a;this._optimizeConstructedString(a.length);return this};d.ByteStringBuffer.prototype.putString=function(a){return this.putBytes(d.encodeUtf8(a))};d.ByteStringBuffer.prototype.putInt16=function(a){return this.putBytes(String.fromCharCode(a>>8&
178 255)+String.fromCharCode(a&255))};d.ByteStringBuffer.prototype.putInt24=function(a){return this.putBytes(String.fromCharCode(a>>16&255)+String.fromCharCode(a>>8&255)+String.fromCharCode(a&255))};d.ByteStringBuffer.prototype.putInt32=function(a){return this.putBytes(String.fromCharCode(a>>24&255)+String.fromCharCode(a>>16&255)+String.fromCharCode(a>>8&255)+String.fromCharCode(a&255))};d.ByteStringBuffer.prototype.putInt16Le=function(a){return this.putBytes(String.fromCharCode(a&255)+String.fromCharCode(a>>
@@ -183,10 +183,10 @@ function(){var a=this.data.charCodeAt(this.read)^this.data.charCodeAt(this.read+
183 function(a){var b=this.getInt(a);a=2<<a-2;b>=a&&(b-=a<<1);return b};d.ByteStringBuffer.prototype.getBytes=function(a){var b;a?(a=Math.min(this.length(),a),b=this.data.slice(this.read,this.read+a),this.read+=a):0===a?b="":(b=0===this.read?this.data:this.data.slice(this.read),this.clear());return b};d.ByteStringBuffer.prototype.bytes=function(a){return"undefined"===typeof a?this.data.slice(this.read):this.data.slice(this.read,this.read+a)};d.ByteStringBuffer.prototype.at=function(a){return this.data.charCodeAt(this.read+
184 a)};d.ByteStringBuffer.prototype.setAt=function(a,b){this.data=this.data.substr(0,this.read+a)+String.fromCharCode(b)+this.data.substr(this.read+a+1);return this};d.ByteStringBuffer.prototype.last=function(){return this.data.charCodeAt(this.data.length-1)};d.ByteStringBuffer.prototype.copy=function(){var a=d.createBuffer(this.data);a.read=this.read;return a};d.ByteStringBuffer.prototype.compact=function(){0<this.read&&(this.data=this.data.slice(this.read),this.read=0);return this};d.ByteStringBuffer.prototype.clear=
185 function(){this.data="";this.read=0;return this};d.ByteStringBuffer.prototype.truncate=function(a){a=Math.max(0,this.length()-a);this.data=this.data.substr(this.read,a);this.read=0;return this};d.ByteStringBuffer.prototype.toHex=function(){for(var a="",b=this.read;b<this.data.length;++b){var c=this.data.charCodeAt(b);16>c&&(a+="0");a+=c.toString(16)}return a};d.ByteStringBuffer.prototype.toString=function(){return d.decodeUtf8(this.bytes())};d.DataBuffer=function(a,b){b=b||{};this.read=b.readOffset||
186 -0;this.growSize=b.growSize||1024;var c=d.isArrayBuffer(a),m=d.isArrayBufferView(a);c||m?(this.data=c?new DataView(a):new DataView(a.buffer,a.byteOffset,a.byteLength),this.write="writeOffset"in b?b.writeOffset:this.data.byteLength):(this.data=new DataView(new ArrayBuffer(0)),this.write=0,null!==a&&void 0!==a&&this.putBytes(a),"writeOffset"in b&&(this.write=b.writeOffset))};d.DataBuffer.prototype.length=function(){return this.write-this.read};d.DataBuffer.prototype.isEmpty=function(){return 0>=this.length()};
187 -d.DataBuffer.prototype.accommodate=function(a,b){if(this.length()>=a)return this;b=Math.max(b||this.growSize,a);var c=new Uint8Array(this.data.buffer,this.data.byteOffset,this.data.byteLength),m=new Uint8Array(this.length()+b);m.set(c);this.data=new DataView(m.buffer);return this};d.DataBuffer.prototype.putByte=function(a){this.accommodate(1);this.data.setUint8(this.write++,a);return this};d.DataBuffer.prototype.fillWithByte=function(a,b){this.accommodate(b);for(var c=0;c<b;++c)this.data.setUint8(a);
188 -return this};d.DataBuffer.prototype.putBytes=function(a,b){if(d.isArrayBufferView(a)){var c=new Uint8Array(a.buffer,a.byteOffset,a.byteLength),m=c.byteLength-c.byteOffset;this.accommodate(m);var g=new Uint8Array(this.data.buffer,this.write);g.set(c);this.write+=m;return this}if(d.isArrayBuffer(a))return c=new Uint8Array(a),this.accommodate(c.byteLength),g=new Uint8Array(this.data.buffer),g.set(c,this.write),this.write+=c.byteLength,this;if(a instanceof d.DataBuffer||"object"===typeof a&&"number"===
189 -typeof a.read&&"number"===typeof a.write&&d.isArrayBufferView(a.data))return c=new Uint8Array(a.data.byteLength,a.read,a.length()),this.accommodate(c.byteLength),g=new Uint8Array(a.data.byteLength,this.write),g.set(c),this.write+=c.byteLength,this;a instanceof d.ByteStringBuffer&&(a=a.data,b="binary");b=b||"binary";if("string"===typeof a){if("hex"===b)return this.accommodate(Math.ceil(a.length/2)),c=new Uint8Array(this.data.buffer,this.write),this.write+=d.binary.hex.decode(a,c,this.write),this;if("base64"===
186 +0;this.growSize=b.growSize||1024;var c=d.isArrayBuffer(a),n=d.isArrayBufferView(a);c||n?(this.data=c?new DataView(a):new DataView(a.buffer,a.byteOffset,a.byteLength),this.write="writeOffset"in b?b.writeOffset:this.data.byteLength):(this.data=new DataView(new ArrayBuffer(0)),this.write=0,null!==a&&void 0!==a&&this.putBytes(a),"writeOffset"in b&&(this.write=b.writeOffset))};d.DataBuffer.prototype.length=function(){return this.write-this.read};d.DataBuffer.prototype.isEmpty=function(){return 0>=this.length()};
187 +d.DataBuffer.prototype.accommodate=function(a,b){if(this.length()>=a)return this;b=Math.max(b||this.growSize,a);var c=new Uint8Array(this.data.buffer,this.data.byteOffset,this.data.byteLength),d=new Uint8Array(this.length()+b);d.set(c);this.data=new DataView(d.buffer);return this};d.DataBuffer.prototype.putByte=function(a){this.accommodate(1);this.data.setUint8(this.write++,a);return this};d.DataBuffer.prototype.fillWithByte=function(a,b){this.accommodate(b);for(var c=0;c<b;++c)this.data.setUint8(a);
188 +return this};d.DataBuffer.prototype.putBytes=function(a,b){if(d.isArrayBufferView(a)){var c=new Uint8Array(a.buffer,a.byteOffset,a.byteLength),n=c.byteLength-c.byteOffset;this.accommodate(n);var e=new Uint8Array(this.data.buffer,this.write);e.set(c);this.write+=n;return this}if(d.isArrayBuffer(a))return c=new Uint8Array(a),this.accommodate(c.byteLength),e=new Uint8Array(this.data.buffer),e.set(c,this.write),this.write+=c.byteLength,this;if(a instanceof d.DataBuffer||"object"===typeof a&&"number"===
189 +typeof a.read&&"number"===typeof a.write&&d.isArrayBufferView(a.data))return c=new Uint8Array(a.data.byteLength,a.read,a.length()),this.accommodate(c.byteLength),e=new Uint8Array(a.data.byteLength,this.write),e.set(c),this.write+=c.byteLength,this;a instanceof d.ByteStringBuffer&&(a=a.data,b="binary");b=b||"binary";if("string"===typeof a){if("hex"===b)return this.accommodate(Math.ceil(a.length/2)),c=new Uint8Array(this.data.buffer,this.write),this.write+=d.binary.hex.decode(a,c,this.write),this;if("base64"===
190 b)return this.accommodate(3*Math.ceil(a.length/4)),c=new Uint8Array(this.data.buffer,this.write),this.write+=d.binary.base64.decode(a,c,this.write),this;"utf8"===b&&(a=d.encodeUtf8(a),b="binary");if("binary"===b||"raw"===b)return this.accommodate(a.length),c=new Uint8Array(this.data.buffer,this.write),this.write+=d.binary.raw.decode(c),this;if("utf16"===b)return this.accommodate(2*a.length),c=new Uint16Array(this.data.buffer,this.write),this.write+=d.text.utf16.encode(c),this;throw Error("Invalid encoding: "+
191 b);}throw Error("Invalid parameter: "+a);};d.DataBuffer.prototype.putBuffer=function(a){this.putBytes(a);a.clear();return this};d.DataBuffer.prototype.putString=function(a){return this.putBytes(a,"utf16")};d.DataBuffer.prototype.putInt16=function(a){this.accommodate(2);this.data.setInt16(this.write,a);this.write+=2;return this};d.DataBuffer.prototype.putInt24=function(a){this.accommodate(3);this.data.setInt16(this.write,a>>8&65535);this.data.setInt8(this.write,a>>16&255);this.write+=3;return this};
192 d.DataBuffer.prototype.putInt32=function(a){this.accommodate(4);this.data.setInt32(this.write,a);this.write+=4;return this};d.DataBuffer.prototype.putInt16Le=function(a){this.accommodate(2);this.data.setInt16(this.write,a,!0);this.write+=2;return this};d.DataBuffer.prototype.putInt24Le=function(a){this.accommodate(3);this.data.setInt8(this.write,a>>16&255);this.data.setInt16(this.write,a>>8&65535,!0);this.write+=3;return this};d.DataBuffer.prototype.putInt32Le=function(a){this.accommodate(4);this.data.setInt32(this.write,
@@ -196,69 +196,69 @@ this.data.getInt32(this.read,!0);this.read+=4;return a};d.DataBuffer.prototype.g
196 d.DataBuffer.prototype.bytes=function(a){return"undefined"===typeof a?this.data.slice(this.read):this.data.slice(this.read,this.read+a)};d.DataBuffer.prototype.at=function(a){return this.data.getUint8(this.read+a)};d.DataBuffer.prototype.setAt=function(a,b){this.data.setUint8(a,b);return this};d.DataBuffer.prototype.last=function(){return this.data.getUint8(this.write-1)};d.DataBuffer.prototype.copy=function(){return new d.DataBuffer(this)};d.DataBuffer.prototype.compact=function(){if(0<this.read){var a=
197 new Uint8Array(this.data.buffer,this.read),b=new Uint8Array(a.byteLength);b.set(a);this.data=new DataView(b);this.write-=this.read;this.read=0}return this};d.DataBuffer.prototype.clear=function(){this.data=new DataView(new ArrayBuffer(0));this.read=this.write=0;return this};d.DataBuffer.prototype.truncate=function(a){this.write=Math.max(0,this.length()-a);this.read=Math.min(this.read,this.write);return this};d.DataBuffer.prototype.toHex=function(){for(var a="",b=this.read;b<this.data.byteLength;++b){var c=
198 this.data.getUint8(b);16>c&&(a+="0");a+=c.toString(16)}return a};d.DataBuffer.prototype.toString=function(a){var b=new Uint8Array(this.data,this.read,this.length());a=a||"utf8";if("binary"===a||"raw"===a)return d.binary.raw.encode(b);if("hex"===a)return d.binary.hex.encode(b);if("base64"===a)return d.binary.base64.encode(b);if("utf8"===a)return d.text.utf8.decode(b);if("utf16"===a)return d.text.utf16.decode(b);throw Error("Invalid encoding: "+a);};d.createBuffer=function(a,b){void 0!==a&&"utf8"===
199 -(b||"raw")&&(a=d.encodeUtf8(a));return new d.ByteBuffer(a)};d.fillString=function(a,b){for(var c="";0<b;)b&1&&(c+=a),b>>>=1,0<b&&(a+=a);return c};d.xorBytes=function(a,b,c){for(var m="",d="",g="",h=0,e=0;0<c;--c,++h)d=a.charCodeAt(h)^b.charCodeAt(h),10<=e&&(m+=g,g="",e=0),g+=String.fromCharCode(d),++e;return m+g};d.hexToBytes=function(a){var b="",c=0;a.length&1&&(c=1,b+=String.fromCharCode(parseInt(a[0],16)));for(;c<a.length;c+=2)b+=String.fromCharCode(parseInt(a.substr(c,2),16));return b};d.bytesToHex=
200 -function(a){return d.createBuffer(a).toHex()};d.int32ToBytes=function(a){return String.fromCharCode(a>>24&255)+String.fromCharCode(a>>16&255)+String.fromCharCode(a>>8&255)+String.fromCharCode(a&255)};var e=[62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,64,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51];d.encode64=function(a,b){for(var c="",m="",d,g,h,e=0;e<a.length;)d=
201 -a.charCodeAt(e++),g=a.charCodeAt(e++),h=a.charCodeAt(e++),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(d>>2),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((d&3)<<4|g>>4),isNaN(g)?c+="==":(c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((g&15)<<2|h>>6),c+=isNaN(h)?"=":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(h&63)),b&&c.length>b&&(m+=c.substr(0,b)+"\r\n",c=c.substr(b));return m+
202 -c};d.decode64=function(a){a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");for(var b="",c,m,d,g,h=0;h<a.length;)c=e[a.charCodeAt(h++)-43],m=e[a.charCodeAt(h++)-43],d=e[a.charCodeAt(h++)-43],g=e[a.charCodeAt(h++)-43],b+=String.fromCharCode(c<<2|m>>4),64!==d&&(b+=String.fromCharCode((m&15)<<4|d>>2),64!==g&&(b+=String.fromCharCode((d&3)<<6|g)));return b};d.encodeUtf8=function(a){return unescape(encodeURIComponent(a))};d.decodeUtf8=function(a){return decodeURIComponent(escape(a))};d.binary={raw:{},hex:{},base64:{}};
203 -d.binary.raw.encode=function(a){return String.fromCharCode.apply(null,a)};d.binary.raw.decode=function(a,b,c){var m=b;m||(m=new Uint8Array(a.length));for(var d=c=c||0,g=0;g<a.length;++g)m[d++]=a.charCodeAt(g);return b?d-c:m};d.binary.hex.encode=d.bytesToHex;d.binary.hex.decode=function(a,b,c){var m=b;m||(m=new Uint8Array(Math.ceil(a.length/2)));c=c||0;var d=0,g=c;a.length&1&&(d=1,m[g++]=parseInt(a[0],16));for(;d<a.length;d+=2)m[g++]=parseInt(a.substr(d,2),16);return b?g-c:m};d.binary.base64.encode=
204 -function(a,b){for(var c="",m="",d,g,h,e=0;e<a.byteLength;)d=a[e++],g=a[e++],h=a[e++],c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(d>>2),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((d&3)<<4|g>>4),isNaN(g)?c+="==":(c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((g&15)<<2|h>>6),c+=isNaN(h)?"=":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(h&63)),b&&c.length>b&&(m+=c.substr(0,
205 -b)+"\r\n",c=c.substr(b));return m+c};d.binary.base64.decode=function(a,b,c){var m=b;m||(m=new Uint8Array(3*Math.ceil(a.length/4)));a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");c=c||0;for(var d,g,h,k,q=0,x=c;q<a.length;)d=e[a.charCodeAt(q++)-43],g=e[a.charCodeAt(q++)-43],h=e[a.charCodeAt(q++)-43],k=e[a.charCodeAt(q++)-43],m[x++]=d<<2|g>>4,64!==h&&(m[x++]=(g&15)<<4|h>>2,64!==k&&(m[x++]=(h&3)<<6|k));return b?x-c:m.subarray(0,x)};d.text={utf8:{},utf16:{}};d.text.utf8.encode=function(a,b,c){a=d.encodeUtf8(a);
206 -var m=b;m||(m=new Uint8Array(a.length));for(var g=c=c||0,h=0;h<a.length;++h)m[g++]=a.charCodeAt(h);return b?g-c:m};d.text.utf8.decode=function(a){return d.decodeUtf8(String.fromCharCode.apply(null,a))};d.text.utf16.encode=function(a,b,c){var m=b;m||(m=new Uint8Array(2*a.length));for(var d=new Uint16Array(m.buffer),g=c=c||0,h=c,e=0;e<a.length;++e)d[h++]=a.charCodeAt(e),g+=2;return b?g-c:m};d.text.utf16.decode=function(a){return String.fromCharCode.apply(null,new Uint16Array(a.buffer))};d.deflate=function(a,
207 -b,c){b=d.decode64(a.deflate(d.encode64(b)).rval);c&&(a=2,b.charCodeAt(1)&32&&(a=6),b=b.substring(a,b.length-4));return b};d.inflate=function(a,b,c){a=a.inflate(d.encode64(b)).rval;return null===a?null:d.decode64(a)};var v=function(a,b,c){if(!a)throw Error("WebStorage not available.");null===c?a=a.removeItem(b):(c=d.encode64(JSON.stringify(c)),a=a.setItem(b,c));if("undefined"!==typeof a&&!0!==a.rval)throw b=Error(a.error.message),b.id=a.error.id,b.name=a.error.name,b;},x=function(a,b){if(!a)throw Error("WebStorage not available.");
208 -var c=a.getItem(b);if(a.init)if(null===c.rval){if(c.error){var m=Error(c.error.message);m.id=c.error.id;m.name=c.error.name;throw m;}c=null}else c=c.rval;null!==c&&(c=JSON.parse(d.decode64(c)));return c},k=function(a,b,c,m){var g=x(a,b);null===g&&(g={});g[c]=m;v(a,b,g)},h=function(a,b,c){a=x(a,b);null!==a&&(a=c in a?a[c]:null);return a},K=function(a,b,c){var m=x(a,b);if(null!==m&&c in m){delete m[c];c=!0;for(var g in m){c=!1;break}c&&(m=null);v(a,b,m)}},q=function(a,b){v(a,b,null)},C=function(a,b,
209 -c){var m=null;"undefined"===typeof c&&(c=["web","flash"]);var g,d=!1,h=null,e;for(e in c){g=c[e];try{if("flash"===g||"both"===g){if(null===b[0])throw Error("Flash local storage not available.");m=a.apply(this,b);d="flash"===g}if("web"===g||"both"===g)b[0]=localStorage,m=a.apply(this,b),d=!0}catch(k){h=k}if(d)break}if(!d)throw h;return m};d.setItem=function(a,b,c,m,g){C(k,arguments,g)};d.getItem=function(a,b,c,m){return C(h,arguments,m)};d.removeItem=function(a,b,c,m){C(K,arguments,m)};d.clearItems=
210 -function(a,b,c){C(q,arguments,c)};d.parseUrl=function(a){var b=/^(https?):\/\/([^:&^\/]*):?(\d*)(.*)$/g;b.lastIndex=0;b=b.exec(a);if(a=null===b?null:{full:a,scheme:b[1],host:b[2],port:b[3],path:b[4]})a.fullHost=a.host,a.port?80!==a.port&&"http"===a.scheme?a.fullHost+=":"+a.port:443!==a.port&&"https"===a.scheme&&(a.fullHost+=":"+a.port):"http"===a.scheme?a.port=80:"https"===a.scheme&&(a.port=443),a.full=a.scheme+"://"+a.fullHost;return a};var B=null;d.getQueryVariables=function(a){var b=function(a){var b=
211 -{};a=a.split("&");for(var c=0;c<a.length;c++){var m=a[c].indexOf("="),g;0<m?(g=a[c].substring(0,m),m=a[c].substring(m+1)):(g=a[c],m=null);g in b||(b[g]=[]);g in Object.prototype||null===m||b[g].push(unescape(m))}return b};"undefined"===typeof a?(null===B&&(B="undefined"!==typeof window&&window.location&&window.location.search?b(window.location.search.substring(1)):{}),a=B):a=b(a);return a};d.parseFragment=function(a){var b=a,c="",m=a.indexOf("?");0<m&&(b=a.substring(0,m),c=a.substring(m+1));a=b.split("/");
212 -0<a.length&&""===a[0]&&a.shift();m=""===c?{}:d.getQueryVariables(c);return{pathString:b,queryString:c,path:a,query:m}};d.makeRequest=function(a){var b=d.parseFragment(a),c={path:b.pathString,query:b.queryString,getPath:function(a){return"undefined"===typeof a?b.path:b.path[a]},getQuery:function(a,c){var m;"undefined"===typeof a?m=b.query:(m=b.query[a])&&"undefined"!==typeof c&&(m=m[c]);return m},getQueryLast:function(a,b){var m=c.getQuery(a);return m?m[m.length-1]:b}};return c};d.makeLink=function(a,
213 -b,c){a=jQuery.isArray(a)?a.join("/"):a;b=jQuery.param(b||{});c=c||"";return a+(0<b.length?"?"+b:"")+(0<c.length?"#"+c:"")};d.setPath=function(a,b,c){if("object"===typeof a&&null!==a)for(var m=0,g=b.length;m<g;){var d=b[m++];if(m==g)a[d]=c;else{var h=d in a;if(!h||h&&"object"!==typeof a[d]||h&&null===a[d])a[d]={};a=a[d]}}};d.getPath=function(a,b,c){for(var m=0,g=b.length,d=!0;d&&m<g&&"object"===typeof a&&null!==a;){var h=b[m++];(d=h in a)&&(a=a[h])}return d?a:c};d.deletePath=function(a,b){if("object"===
214 -typeof a&&null!==a)for(var c=0,m=b.length;c<m;){var g=b[c++];if(c==m)delete a[g];else{if(!(g in a)||"object"!==typeof a[g]||null===a[g])break;a=a[g]}}};d.isEmpty=function(a){for(var b in a)if(a.hasOwnProperty(b))return!1;return!0};d.format=function(a){var b=/%./g,c,m,g=0,d=[];for(m=0;c=b.exec(a);)switch(m=a.substring(m,b.lastIndex-2),0<m.length&&d.push(m),m=b.lastIndex,c=c[0][1],c){case "s":case "o":g<arguments.length?d.push(arguments[g++ +1]):d.push("<?>");break;case "%":d.push("%");break;default:d.push("<#"+
215 -c+"?>")}d.push(a.substring(m));return d.join("")};d.formatNumber=function(a,b,c,m){var g=isNaN(b=Math.abs(b))?2:b;b=void 0===c?",":c;m=void 0===m?".":m;c=0>a?"-":"";var d=parseInt(a=Math.abs(+a||0).toFixed(g),10)+"",h=3<d.length?d.length%3:0;return c+(h?d.substr(0,h)+m:"")+d.substr(h).replace(/(\d{3})(?=\d)/g,"$1"+m)+(g?b+Math.abs(a-d).toFixed(g).slice(2):"")};d.formatSize=function(a){return a=1073741824<=a?d.formatNumber(a/1073741824,2,".","")+" GiB":1048576<=a?d.formatNumber(a/1048576,2,".","")+
216 -" MiB":1024<=a?d.formatNumber(a/1024,0)+" KiB":d.formatNumber(a,0)+" bytes"};d.bytesFromIP=function(a){return-1!==a.indexOf(".")?d.bytesFromIPv4(a):-1!==a.indexOf(":")?d.bytesFromIPv6(a):null};d.bytesFromIPv4=function(a){a=a.split(".");if(4!==a.length)return null;for(var b=d.createBuffer(),c=0;c<a.length;++c){var m=parseInt(a[c],10);if(isNaN(m))return null;b.putByte(m)}return b.getBytes()};d.bytesFromIPv6=function(a){var b=0;a=a.split(":").filter(function(a){0===a.length&&++b;return!0});for(var c=
217 -2*(8-a.length+b),m=d.createBuffer(),g=0;8>g;++g)if(a[g]&&0!==a[g].length){var h=d.hexToBytes(a[g]);2>h.length&&m.putByte(0);m.putBytes(h)}else m.fillWithByte(0,c),c=0;return m.getBytes()};d.bytesToIP=function(a){return 4===a.length?d.bytesToIPv4(a):16===a.length?d.bytesToIPv6(a):null};d.bytesToIPv4=function(a){if(4!==a.length)return null;for(var b=[],c=0;c<a.length;++c)b.push(a.charCodeAt(c));return b.join(".")};d.bytesToIPv6=function(a){if(16!==a.length)return null;for(var b=[],c=[],m=0,g=0;g<a.length;g+=
218 -2){for(var h=d.bytesToHex(a[g]+a[g+1]);"0"===h[0]&&"0"!==h;)h=h.substr(1);if("0"===h){var e=c[c.length-1],k=b.length;e&&k===e.end+1?(e.end=k,e.end-e.start>c[m].end-c[m].start&&(m=c.length-1)):c.push({start:k,end:k})}b.push(h)}0<c.length&&(a=c[m],0<a.end-a.start&&(b.splice(a.start,a.end-a.start+1,""),0===a.start&&b.unshift(""),7===a.end&&b.push("")));return b.join(":")};d.estimateCores=function(a,b){function c(a,e,k){if(0===e){var q=Math.floor(a.reduce(function(a,b){return a+b},0)/a.length);d.cores=
219 -Math.max(1,q);URL.revokeObjectURL(h);return b(null,d.cores)}m(k,function(b,m){a.push(g(k,m));c(a,e-1,k)})}function m(a,b){for(var c=[],g=[],d=0;d<a;++d){var e=new Worker(h);e.addEventListener("message",function(m){g.push(m.data);if(g.length===a){for(m=0;m<a;++m)c[m].terminate();b(null,g)}});c.push(e)}for(d=0;d<a;++d)c[d].postMessage(d)}function g(a,b){for(var c=[],m=0;m<a;++m)for(var d=b[m],h=c[m]=[],e=0;e<a;++e)if(m!==e){var k=b[e];(d.st>k.st&&d.st<k.et||k.st>d.st&&k.st<d.et)&&h.push(e)}return c.reduce(function(a,
220 -b){return Math.max(a,b.length)},0)}"function"===typeof a&&(b=a,a={});a=a||{};if("cores"in d&&!a.update)return b(null,d.cores);if("undefined"!==typeof navigator&&"hardwareConcurrency"in navigator&&0<navigator.hardwareConcurrency)return d.cores=navigator.hardwareConcurrency,b(null,d.cores);if("undefined"===typeof Worker)return d.cores=1,b(null,d.cores);if("undefined"===typeof Blob)return d.cores=2,b(null,d.cores);var h=URL.createObjectURL(new Blob(["(",function(){self.addEventListener("message",function(a){a=
221 -Date.now();for(var b=a+4;Date.now()<b;);self.postMessage({st:a,et:b})})}.toString(),")()"],{type:"application/javascript"}));c([],5,16)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.util)return c.util;c.defined.util=!0;for(var e=0;e<g.length;++e)g[e](c);
222 -return c.util}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/util",["require","module"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.cipher=a.cipher||{};a.cipher.algorithms=a.cipher.algorithms||{};a.cipher.createCipher=function(b,c){var g=b;"string"===typeof g&&(g=a.cipher.getAlgorithm(g))&&
223 -(g=g());if(!g)throw Error("Unsupported algorithm: "+b);return new a.cipher.BlockCipher({algorithm:g,key:c,decrypt:!1})};a.cipher.createDecipher=function(b,c){var g=b;"string"===typeof g&&(g=a.cipher.getAlgorithm(g))&&(g=g());if(!g)throw Error("Unsupported algorithm: "+b);return new a.cipher.BlockCipher({algorithm:g,key:c,decrypt:!0})};a.cipher.registerAlgorithm=function(b,c){b=b.toUpperCase();a.cipher.algorithms[b]=c};a.cipher.getAlgorithm=function(b){b=b.toUpperCase();return b in a.cipher.algorithms?
224 -a.cipher.algorithms[b]:null};var c=a.cipher.BlockCipher=function(a){this.algorithm=a.algorithm;this.mode=this.algorithm.mode;this.blockSize=this.mode.blockSize;this._finish=!1;this.output=this._input=null;this._op=a.decrypt?this.mode.decrypt:this.mode.encrypt;this._decrypt=a.decrypt;this.algorithm.initialize(a)};c.prototype.start=function(b){b=b||{};var c={},g;for(g in b)c[g]=b[g];c.decrypt=this._decrypt;this._finish=!1;this._input=a.util.createBuffer();this.output=b.output||a.util.createBuffer();
199 +(b||"raw")&&(a=d.encodeUtf8(a));return new d.ByteBuffer(a)};d.fillString=function(a,b){for(var c="";0<b;)b&1&&(c+=a),b>>>=1,0<b&&(a+=a);return c};d.xorBytes=function(a,b,c){for(var d="",n="",e="",g=0,h=0;0<c;--c,++g)n=a.charCodeAt(g)^b.charCodeAt(g),10<=h&&(d+=e,e="",h=0),e+=String.fromCharCode(n),++h;return d+e};d.hexToBytes=function(a){var b="",c=0;a.length&1&&(c=1,b+=String.fromCharCode(parseInt(a[0],16)));for(;c<a.length;c+=2)b+=String.fromCharCode(parseInt(a.substr(c,2),16));return b};d.bytesToHex=
200 +function(a){return d.createBuffer(a).toHex()};d.int32ToBytes=function(a){return String.fromCharCode(a>>24&255)+String.fromCharCode(a>>16&255)+String.fromCharCode(a>>8&255)+String.fromCharCode(a&255)};var e=[62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,64,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51];d.encode64=function(a,b){for(var c="",d="",n,e,g,h=0;h<a.length;)n=
201 +a.charCodeAt(h++),e=a.charCodeAt(h++),g=a.charCodeAt(h++),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(n>>2),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((n&3)<<4|e>>4),isNaN(e)?c+="==":(c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((e&15)<<2|g>>6),c+=isNaN(g)?"=":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(g&63)),b&&c.length>b&&(d+=c.substr(0,b)+"\r\n",c=c.substr(b));return d+
202 +c};d.decode64=function(a){a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");for(var b="",c,d,n,g,h=0;h<a.length;)c=e[a.charCodeAt(h++)-43],d=e[a.charCodeAt(h++)-43],n=e[a.charCodeAt(h++)-43],g=e[a.charCodeAt(h++)-43],b+=String.fromCharCode(c<<2|d>>4),64!==n&&(b+=String.fromCharCode((d&15)<<4|n>>2),64!==g&&(b+=String.fromCharCode((n&3)<<6|g)));return b};d.encodeUtf8=function(a){return unescape(encodeURIComponent(a))};d.decodeUtf8=function(a){return decodeURIComponent(escape(a))};d.binary={raw:{},hex:{},base64:{}};
203 +d.binary.raw.encode=function(a){return String.fromCharCode.apply(null,a)};d.binary.raw.decode=function(a,b,c){var d=b;d||(d=new Uint8Array(a.length));for(var n=c=c||0,e=0;e<a.length;++e)d[n++]=a.charCodeAt(e);return b?n-c:d};d.binary.hex.encode=d.bytesToHex;d.binary.hex.decode=function(a,b,c){var d=b;d||(d=new Uint8Array(Math.ceil(a.length/2)));c=c||0;var n=0,e=c;a.length&1&&(n=1,d[e++]=parseInt(a[0],16));for(;n<a.length;n+=2)d[e++]=parseInt(a.substr(n,2),16);return b?e-c:d};d.binary.base64.encode=
204 +function(a,b){for(var c="",d="",n,e,g,h=0;h<a.byteLength;)n=a[h++],e=a[h++],g=a[h++],c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(n>>2),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((n&3)<<4|e>>4),isNaN(e)?c+="==":(c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt((e&15)<<2|g>>6),c+=isNaN(g)?"=":"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(g&63)),b&&c.length>b&&(d+=c.substr(0,
205 +b)+"\r\n",c=c.substr(b));return d+c};d.binary.base64.decode=function(a,b,c){var d=b;d||(d=new Uint8Array(3*Math.ceil(a.length/4)));a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");c=c||0;for(var n,g,h,l,u=0,p=c;u<a.length;)n=e[a.charCodeAt(u++)-43],g=e[a.charCodeAt(u++)-43],h=e[a.charCodeAt(u++)-43],l=e[a.charCodeAt(u++)-43],d[p++]=n<<2|g>>4,64!==h&&(d[p++]=(g&15)<<4|h>>2,64!==l&&(d[p++]=(h&3)<<6|l));return b?p-c:d.subarray(0,p)};d.text={utf8:{},utf16:{}};d.text.utf8.encode=function(a,b,c){a=d.encodeUtf8(a);
206 +var n=b;n||(n=new Uint8Array(a.length));for(var e=c=c||0,g=0;g<a.length;++g)n[e++]=a.charCodeAt(g);return b?e-c:n};d.text.utf8.decode=function(a){return d.decodeUtf8(String.fromCharCode.apply(null,a))};d.text.utf16.encode=function(a,b,c){var d=b;d||(d=new Uint8Array(2*a.length));for(var n=new Uint16Array(d.buffer),e=c=c||0,g=c,h=0;h<a.length;++h)n[g++]=a.charCodeAt(h),e+=2;return b?e-c:d};d.text.utf16.decode=function(a){return String.fromCharCode.apply(null,new Uint16Array(a.buffer))};d.deflate=function(a,
207 +b,c){b=d.decode64(a.deflate(d.encode64(b)).rval);c&&(a=2,b.charCodeAt(1)&32&&(a=6),b=b.substring(a,b.length-4));return b};d.inflate=function(a,b,c){a=a.inflate(d.encode64(b)).rval;return null===a?null:d.decode64(a)};var w=function(a,b,c){if(!a)throw Error("WebStorage not available.");null===c?a=a.removeItem(b):(c=d.encode64(JSON.stringify(c)),a=a.setItem(b,c));if("undefined"!==typeof a&&!0!==a.rval)throw b=Error(a.error.message),b.id=a.error.id,b.name=a.error.name,b;},B=function(a,b){if(!a)throw Error("WebStorage not available.");
208 +var c=a.getItem(b);if(a.init)if(null===c.rval){if(c.error){var n=Error(c.error.message);n.id=c.error.id;n.name=c.error.name;throw n;}c=null}else c=c.rval;null!==c&&(c=JSON.parse(d.decode64(c)));return c},l=function(a,b,c,d){var n=B(a,b);null===n&&(n={});n[c]=d;w(a,b,n)},g=function(a,b,c){a=B(a,b);null!==a&&(a=c in a?a[c]:null);return a},x=function(a,b,c){var d=B(a,b);if(null!==d&&c in d){delete d[c];c=!0;for(var n in d){c=!1;break}c&&(d=null);w(a,b,d)}},u=function(a,b){w(a,b,null)},k=function(a,b,
209 +c){var d=null;"undefined"===typeof c&&(c=["web","flash"]);var n,e=!1,g=null,h;for(h in c){n=c[h];try{if("flash"===n||"both"===n){if(null===b[0])throw Error("Flash local storage not available.");d=a.apply(this,b);e="flash"===n}if("web"===n||"both"===n)b[0]=localStorage,d=a.apply(this,b),e=!0}catch(l){g=l}if(e)break}if(!e)throw g;return d};d.setItem=function(a,b,c,d,n){k(l,arguments,n)};d.getItem=function(a,b,c,d){return k(g,arguments,d)};d.removeItem=function(a,b,c,d){k(x,arguments,d)};d.clearItems=
210 +function(a,b,c){k(u,arguments,c)};d.parseUrl=function(a){var b=/^(https?):\/\/([^:&^\/]*):?(\d*)(.*)$/g;b.lastIndex=0;b=b.exec(a);if(a=null===b?null:{full:a,scheme:b[1],host:b[2],port:b[3],path:b[4]})a.fullHost=a.host,a.port?80!==a.port&&"http"===a.scheme?a.fullHost+=":"+a.port:443!==a.port&&"https"===a.scheme&&(a.fullHost+=":"+a.port):"http"===a.scheme?a.port=80:"https"===a.scheme&&(a.port=443),a.full=a.scheme+"://"+a.fullHost;return a};var A=null;d.getQueryVariables=function(a){var b=function(a){var b=
211 +{};a=a.split("&");for(var c=0;c<a.length;c++){var d=a[c].indexOf("="),n;0<d?(n=a[c].substring(0,d),d=a[c].substring(d+1)):(n=a[c],d=null);n in b||(b[n]=[]);n in Object.prototype||null===d||b[n].push(unescape(d))}return b};"undefined"===typeof a?(null===A&&(A="undefined"!==typeof window&&window.location&&window.location.search?b(window.location.search.substring(1)):{}),a=A):a=b(a);return a};d.parseFragment=function(a){var b=a,c="",n=a.indexOf("?");0<n&&(b=a.substring(0,n),c=a.substring(n+1));a=b.split("/");
212 +0<a.length&&""===a[0]&&a.shift();n=""===c?{}:d.getQueryVariables(c);return{pathString:b,queryString:c,path:a,query:n}};d.makeRequest=function(a){var b=d.parseFragment(a),c={path:b.pathString,query:b.queryString,getPath:function(a){return"undefined"===typeof a?b.path:b.path[a]},getQuery:function(a,c){var d;"undefined"===typeof a?d=b.query:(d=b.query[a])&&"undefined"!==typeof c&&(d=d[c]);return d},getQueryLast:function(a,b){var d=c.getQuery(a);return d?d[d.length-1]:b}};return c};d.makeLink=function(a,
213 +b,c){a=jQuery.isArray(a)?a.join("/"):a;b=jQuery.param(b||{});c=c||"";return a+(0<b.length?"?"+b:"")+(0<c.length?"#"+c:"")};d.setPath=function(a,b,c){if("object"===typeof a&&null!==a)for(var d=0,n=b.length;d<n;){var e=b[d++];if(d==n)a[e]=c;else{var g=e in a;if(!g||g&&"object"!==typeof a[e]||g&&null===a[e])a[e]={};a=a[e]}}};d.getPath=function(a,b,c){for(var d=0,n=b.length,e=!0;e&&d<n&&"object"===typeof a&&null!==a;){var g=b[d++];(e=g in a)&&(a=a[g])}return e?a:c};d.deletePath=function(a,b){if("object"===
214 +typeof a&&null!==a)for(var c=0,d=b.length;c<d;){var n=b[c++];if(c==d)delete a[n];else{if(!(n in a)||"object"!==typeof a[n]||null===a[n])break;a=a[n]}}};d.isEmpty=function(a){for(var b in a)if(a.hasOwnProperty(b))return!1;return!0};d.format=function(a){var b=/%./g,c,d,n=0,e=[];for(d=0;c=b.exec(a);)switch(d=a.substring(d,b.lastIndex-2),0<d.length&&e.push(d),d=b.lastIndex,c=c[0][1],c){case "s":case "o":n<arguments.length?e.push(arguments[n++ +1]):e.push("<?>");break;case "%":e.push("%");break;default:e.push("<#"+
215 +c+"?>")}e.push(a.substring(d));return e.join("")};d.formatNumber=function(a,b,c,d){var n=isNaN(b=Math.abs(b))?2:b;b=void 0===c?",":c;d=void 0===d?".":d;c=0>a?"-":"";var e=parseInt(a=Math.abs(+a||0).toFixed(n),10)+"",g=3<e.length?e.length%3:0;return c+(g?e.substr(0,g)+d:"")+e.substr(g).replace(/(\d{3})(?=\d)/g,"$1"+d)+(n?b+Math.abs(a-e).toFixed(n).slice(2):"")};d.formatSize=function(a){return a=1073741824<=a?d.formatNumber(a/1073741824,2,".","")+" GiB":1048576<=a?d.formatNumber(a/1048576,2,".","")+
216 +" MiB":1024<=a?d.formatNumber(a/1024,0)+" KiB":d.formatNumber(a,0)+" bytes"};d.bytesFromIP=function(a){return-1!==a.indexOf(".")?d.bytesFromIPv4(a):-1!==a.indexOf(":")?d.bytesFromIPv6(a):null};d.bytesFromIPv4=function(a){a=a.split(".");if(4!==a.length)return null;for(var b=d.createBuffer(),c=0;c<a.length;++c){var n=parseInt(a[c],10);if(isNaN(n))return null;b.putByte(n)}return b.getBytes()};d.bytesFromIPv6=function(a){var b=0;a=a.split(":").filter(function(a){0===a.length&&++b;return!0});for(var c=
217 +2*(8-a.length+b),n=d.createBuffer(),e=0;8>e;++e)if(a[e]&&0!==a[e].length){var g=d.hexToBytes(a[e]);2>g.length&&n.putByte(0);n.putBytes(g)}else n.fillWithByte(0,c),c=0;return n.getBytes()};d.bytesToIP=function(a){return 4===a.length?d.bytesToIPv4(a):16===a.length?d.bytesToIPv6(a):null};d.bytesToIPv4=function(a){if(4!==a.length)return null;for(var b=[],c=0;c<a.length;++c)b.push(a.charCodeAt(c));return b.join(".")};d.bytesToIPv6=function(a){if(16!==a.length)return null;for(var b=[],c=[],n=0,e=0;e<a.length;e+=
218 +2){for(var g=d.bytesToHex(a[e]+a[e+1]);"0"===g[0]&&"0"!==g;)g=g.substr(1);if("0"===g){var l=c[c.length-1],u=b.length;l&&u===l.end+1?(l.end=u,l.end-l.start>c[n].end-c[n].start&&(n=c.length-1)):c.push({start:u,end:u})}b.push(g)}0<c.length&&(a=c[n],0<a.end-a.start&&(b.splice(a.start,a.end-a.start+1,""),0===a.start&&b.unshift(""),7===a.end&&b.push("")));return b.join(":")};d.estimateCores=function(a,b){function c(a,l,u){if(0===l){var m=Math.floor(a.reduce(function(a,b){return a+b},0)/a.length);d.cores=
219 +Math.max(1,m);URL.revokeObjectURL(g);return b(null,d.cores)}n(u,function(b,d){a.push(e(u,d));c(a,l-1,u)})}function n(a,b){for(var c=[],d=[],e=0;e<a;++e){var h=new Worker(g);h.addEventListener("message",function(n){d.push(n.data);if(d.length===a){for(n=0;n<a;++n)c[n].terminate();b(null,d)}});c.push(h)}for(e=0;e<a;++e)c[e].postMessage(e)}function e(a,b){for(var c=[],d=0;d<a;++d)for(var n=b[d],g=c[d]=[],h=0;h<a;++h)if(d!==h){var l=b[h];(n.st>l.st&&n.st<l.et||l.st>n.st&&l.st<n.et)&&g.push(h)}return c.reduce(function(a,
220 +b){return Math.max(a,b.length)},0)}"function"===typeof a&&(b=a,a={});a=a||{};if("cores"in d&&!a.update)return b(null,d.cores);if("undefined"!==typeof navigator&&"hardwareConcurrency"in navigator&&0<navigator.hardwareConcurrency)return d.cores=navigator.hardwareConcurrency,b(null,d.cores);if("undefined"===typeof Worker)return d.cores=1,b(null,d.cores);if("undefined"===typeof Blob)return d.cores=2,b(null,d.cores);var g=URL.createObjectURL(new Blob(["(",function(){self.addEventListener("message",function(a){a=
221 +Date.now();for(var b=a+4;Date.now()<b;);self.postMessage({st:a,et:b})})}.toString(),")()"],{type:"application/javascript"}));c([],5,16)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.util)return c.util;c.defined.util=!0;for(var p=0;p<e.length;++p)e[p](c);
222 +return c.util}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/util",["require","module"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.cipher=a.cipher||{};a.cipher.algorithms=a.cipher.algorithms||{};a.cipher.createCipher=function(b,c){var d=b;"string"===typeof d&&(d=a.cipher.getAlgorithm(d))&&
223 +(d=d());if(!d)throw Error("Unsupported algorithm: "+b);return new a.cipher.BlockCipher({algorithm:d,key:c,decrypt:!1})};a.cipher.createDecipher=function(b,c){var d=b;"string"===typeof d&&(d=a.cipher.getAlgorithm(d))&&(d=d());if(!d)throw Error("Unsupported algorithm: "+b);return new a.cipher.BlockCipher({algorithm:d,key:c,decrypt:!0})};a.cipher.registerAlgorithm=function(b,c){b=b.toUpperCase();a.cipher.algorithms[b]=c};a.cipher.getAlgorithm=function(b){b=b.toUpperCase();return b in a.cipher.algorithms?
224 +a.cipher.algorithms[b]:null};var c=a.cipher.BlockCipher=function(a){this.algorithm=a.algorithm;this.mode=this.algorithm.mode;this.blockSize=this.mode.blockSize;this._finish=!1;this.output=this._input=null;this._op=a.decrypt?this.mode.decrypt:this.mode.encrypt;this._decrypt=a.decrypt;this.algorithm.initialize(a)};c.prototype.start=function(b){b=b||{};var c={},d;for(d in b)c[d]=b[d];c.decrypt=this._decrypt;this._finish=!1;this._input=a.util.createBuffer();this.output=b.output||a.util.createBuffer();
225 this.mode.start(c)};c.prototype.update=function(a){for(a&&this._input.putBuffer(a);!this._op.call(this.mode,this._input,this.output,this._finish)&&!this._finish;);this._input.compact()};c.prototype.finish=function(a){!a||"ECB"!==this.mode.name&&"CBC"!==this.mode.name||(this.mode.pad=function(b){return a(this.blockSize,b,!1)},this.mode.unpad=function(b){return a(this.blockSize,b,!0)});var b={};b.decrypt=this._decrypt;b.overflow=this._input.length()%this.blockSize;if(!this._decrypt&&this.mode.pad&&
226 -!this.mode.pad(this._input,b))return!1;this._finish=!0;this.update();return this._decrypt&&this.mode.unpad&&!this.mode.unpad(this.output,b)||this.mode.afterFinish&&!this.mode.afterFinish(this.output,b)?!1:!0}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.cipher)return c.cipher;
227 -c.defined.cipher=!0;for(var e=0;e<g.length;++e)g[e](c);return c.cipher}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/cipher",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b){"string"===typeof b&&(b=a.util.createBuffer(b));if(a.util.isArray(b)&&
228 -4<b.length){var g=b;b=a.util.createBuffer();for(var d=0;d<g.length;++d)b.putByte(g[d])}a.util.isArray(b)||(b=[b.getInt32(),b.getInt32(),b.getInt32(),b.getInt32()]);return b}function d(a){a[a.length-1]=a[a.length-1]+1&4294967295}function e(a){return[a/4294967296|0,a&4294967295]}a.cipher=a.cipher||{};var v=a.cipher.modes=a.cipher.modes||{};v.ecb=function(a){a=a||{};this.name="ECB";this.cipher=a.cipher;this.blockSize=a.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);this._outBlock=
229 -Array(this._ints)};v.ecb.prototype.start=function(a){};v.ecb.prototype.encrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.encrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c])};v.ecb.prototype.decrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.decrypt(this._inBlock,
230 -this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c])};v.ecb.prototype.pad=function(a,b){var c=a.length()===this.blockSize?this.blockSize:this.blockSize-a.length();a.fillWithByte(c,c);return!0};v.ecb.prototype.unpad=function(a,b){if(0<b.overflow)return!1;var c=a.length(),c=a.at(c-1);if(c>this.blockSize<<2)return!1;a.truncate(c);return!0};v.cbc=function(a){a=a||{};this.name="CBC";this.cipher=a.cipher;this.blockSize=a.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);
231 -this._outBlock=Array(this._ints)};v.cbc.prototype.start=function(a){if(null===a.iv){if(!this._prev)throw Error("Invalid IV parameter.");this._iv=this._prev.slice(0)}else if("iv"in a)this._iv=c(a.iv),this._prev=this._iv.slice(0);else throw Error("Invalid IV parameter.");};v.cbc.prototype.encrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=this._prev[c]^a.getInt32();this.cipher.encrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c]);
232 -this._prev=this._outBlock};v.cbc.prototype.decrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.decrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._prev[c]^this._outBlock[c]);this._prev=this._inBlock.slice(0)};v.cbc.prototype.pad=function(a,b){var c=a.length()===this.blockSize?this.blockSize:this.blockSize-a.length();a.fillWithByte(c,c);return!0};v.cbc.prototype.unpad=function(a,
233 -b){if(0<b.overflow)return!1;var c=a.length(),c=a.at(c-1);if(c>this.blockSize<<2)return!1;a.truncate(c);return!0};v.cfb=function(b){b=b||{};this.name="CFB";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};v.cfb.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");this._iv=c(a.iv);this._inBlock=
234 -this._iv.slice(0);this._partialBytes=0};v.cfb.prototype.encrypt=function(a,b,c){var m=a.length();if(0===m)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&m>=this.blockSize)for(var g=0;g<this._ints;++g)this._inBlock[g]=a.getInt32()^this._outBlock[g],b.putInt32(this._inBlock[g]);else{var d=(this.blockSize-m)%this.blockSize;0<d&&(d=this.blockSize-d);this._partialOutput.clear();for(g=0;g<this._ints;++g)this._partialBlock[g]=a.getInt32()^this._outBlock[g],this._partialOutput.putInt32(this._partialBlock[g]);
235 -if(0<d)a.read-=this.blockSize;else for(g=0;g<this._ints;++g)this._inBlock[g]=this._partialBlock[g];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<d&&!c)return b.putBytes(this._partialOutput.getBytes(d-this._partialBytes)),this._partialBytes=d,!0;b.putBytes(this._partialOutput.getBytes(m-this._partialBytes));this._partialBytes=0}};v.cfb.prototype.decrypt=function(a,b,c){var m=a.length();if(0===m)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&
236 -m>=this.blockSize)for(var g=0;g<this._ints;++g)this._inBlock[g]=a.getInt32(),b.putInt32(this._inBlock[g]^this._outBlock[g]);else{var d=(this.blockSize-m)%this.blockSize;0<d&&(d=this.blockSize-d);this._partialOutput.clear();for(g=0;g<this._ints;++g)this._partialBlock[g]=a.getInt32(),this._partialOutput.putInt32(this._partialBlock[g]^this._outBlock[g]);if(0<d)a.read-=this.blockSize;else for(g=0;g<this._ints;++g)this._inBlock[g]=this._partialBlock[g];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);
237 -if(0<d&&!c)return b.putBytes(this._partialOutput.getBytes(d-this._partialBytes)),this._partialBytes=d,!0;b.putBytes(this._partialOutput.getBytes(m-this._partialBytes));this._partialBytes=0}};v.ofb=function(b){b=b||{};this.name="OFB";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};v.ofb.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");
238 -this._iv=c(a.iv);this._inBlock=this._iv.slice(0);this._partialBytes=0};v.ofb.prototype.encrypt=function(a,b,c){var m=a.length();if(0===a.length())return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&m>=this.blockSize)for(var g=0;g<this._ints;++g)b.putInt32(a.getInt32()^this._outBlock[g]),this._inBlock[g]=this._outBlock[g];else{var d=(this.blockSize-m)%this.blockSize;0<d&&(d=this.blockSize-d);this._partialOutput.clear();for(g=0;g<this._ints;++g)this._partialOutput.putInt32(a.getInt32()^
239 -this._outBlock[g]);if(0<d)a.read-=this.blockSize;else for(g=0;g<this._ints;++g)this._inBlock[g]=this._outBlock[g];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<d&&!c)return b.putBytes(this._partialOutput.getBytes(d-this._partialBytes)),this._partialBytes=d,!0;b.putBytes(this._partialOutput.getBytes(m-this._partialBytes));this._partialBytes=0}};v.ofb.prototype.decrypt=v.ofb.prototype.encrypt;v.ctr=function(b){b=b||{};this.name="CTR";this.cipher=b.cipher;this.blockSize=
240 -b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};v.ctr.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");this._iv=c(a.iv);this._inBlock=this._iv.slice(0);this._partialBytes=0};v.ctr.prototype.encrypt=function(a,b,c){var m=a.length();if(0===m)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&m>=this.blockSize)for(var g=0;g<
241 -this._ints;++g)b.putInt32(a.getInt32()^this._outBlock[g]);else{var e=(this.blockSize-m)%this.blockSize;0<e&&(e=this.blockSize-e);this._partialOutput.clear();for(g=0;g<this._ints;++g)this._partialOutput.putInt32(a.getInt32()^this._outBlock[g]);0<e&&(a.read-=this.blockSize);0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<e&&!c)return b.putBytes(this._partialOutput.getBytes(e-this._partialBytes)),this._partialBytes=e,!0;b.putBytes(this._partialOutput.getBytes(m-this._partialBytes));
242 -this._partialBytes=0}d(this._inBlock)};v.ctr.prototype.decrypt=v.ctr.prototype.encrypt;v.gcm=function(b){b=b||{};this.name="GCM";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0;this._R=3774873600};v.gcm.prototype.start=function(b){if(!("iv"in b))throw Error("Invalid IV parameter.");var c=a.util.createBuffer(b.iv);this._cipherLength=0;var g;
226 +!this.mode.pad(this._input,b))return!1;this._finish=!0;this.update();return this._decrypt&&this.mode.unpad&&!this.mode.unpad(this.output,b)||this.mode.afterFinish&&!this.mode.afterFinish(this.output,b)?!1:!0}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.cipher)return c.cipher;
227 +c.defined.cipher=!0;for(var p=0;p<e.length;++p)e[p](c);return c.cipher}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/cipher",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b){"string"===typeof b&&(b=a.util.createBuffer(b));if(a.util.isArray(b)&&
228 +4<b.length){var d=b;b=a.util.createBuffer();for(var e=0;e<d.length;++e)b.putByte(d[e])}a.util.isArray(b)||(b=[b.getInt32(),b.getInt32(),b.getInt32(),b.getInt32()]);return b}function d(a){a[a.length-1]=a[a.length-1]+1&4294967295}function e(a){return[a/4294967296|0,a&4294967295]}a.cipher=a.cipher||{};var w=a.cipher.modes=a.cipher.modes||{};w.ecb=function(a){a=a||{};this.name="ECB";this.cipher=a.cipher;this.blockSize=a.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);this._outBlock=
229 +Array(this._ints)};w.ecb.prototype.start=function(a){};w.ecb.prototype.encrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.encrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c])};w.ecb.prototype.decrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.decrypt(this._inBlock,
230 +this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c])};w.ecb.prototype.pad=function(a,b){var c=a.length()===this.blockSize?this.blockSize:this.blockSize-a.length();a.fillWithByte(c,c);return!0};w.ecb.prototype.unpad=function(a,b){if(0<b.overflow)return!1;var c=a.length(),c=a.at(c-1);if(c>this.blockSize<<2)return!1;a.truncate(c);return!0};w.cbc=function(a){a=a||{};this.name="CBC";this.cipher=a.cipher;this.blockSize=a.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);
231 +this._outBlock=Array(this._ints)};w.cbc.prototype.start=function(a){if(null===a.iv){if(!this._prev)throw Error("Invalid IV parameter.");this._iv=this._prev.slice(0)}else if("iv"in a)this._iv=c(a.iv),this._prev=this._iv.slice(0);else throw Error("Invalid IV parameter.");};w.cbc.prototype.encrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=this._prev[c]^a.getInt32();this.cipher.encrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._outBlock[c]);
232 +this._prev=this._outBlock};w.cbc.prototype.decrypt=function(a,b,c){if(a.length()<this.blockSize&&!(c&&0<a.length()))return!0;for(c=0;c<this._ints;++c)this._inBlock[c]=a.getInt32();this.cipher.decrypt(this._inBlock,this._outBlock);for(c=0;c<this._ints;++c)b.putInt32(this._prev[c]^this._outBlock[c]);this._prev=this._inBlock.slice(0)};w.cbc.prototype.pad=function(a,b){var c=a.length()===this.blockSize?this.blockSize:this.blockSize-a.length();a.fillWithByte(c,c);return!0};w.cbc.prototype.unpad=function(a,
233 +b){if(0<b.overflow)return!1;var c=a.length(),c=a.at(c-1);if(c>this.blockSize<<2)return!1;a.truncate(c);return!0};w.cfb=function(b){b=b||{};this.name="CFB";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};w.cfb.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");this._iv=c(a.iv);this._inBlock=
234 +this._iv.slice(0);this._partialBytes=0};w.cfb.prototype.encrypt=function(a,b,c){var d=a.length();if(0===d)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&d>=this.blockSize)for(var n=0;n<this._ints;++n)this._inBlock[n]=a.getInt32()^this._outBlock[n],b.putInt32(this._inBlock[n]);else{var e=(this.blockSize-d)%this.blockSize;0<e&&(e=this.blockSize-e);this._partialOutput.clear();for(n=0;n<this._ints;++n)this._partialBlock[n]=a.getInt32()^this._outBlock[n],this._partialOutput.putInt32(this._partialBlock[n]);
235 +if(0<e)a.read-=this.blockSize;else for(n=0;n<this._ints;++n)this._inBlock[n]=this._partialBlock[n];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<e&&!c)return b.putBytes(this._partialOutput.getBytes(e-this._partialBytes)),this._partialBytes=e,!0;b.putBytes(this._partialOutput.getBytes(d-this._partialBytes));this._partialBytes=0}};w.cfb.prototype.decrypt=function(a,b,c){var d=a.length();if(0===d)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&
236 +d>=this.blockSize)for(var n=0;n<this._ints;++n)this._inBlock[n]=a.getInt32(),b.putInt32(this._inBlock[n]^this._outBlock[n]);else{var e=(this.blockSize-d)%this.blockSize;0<e&&(e=this.blockSize-e);this._partialOutput.clear();for(n=0;n<this._ints;++n)this._partialBlock[n]=a.getInt32(),this._partialOutput.putInt32(this._partialBlock[n]^this._outBlock[n]);if(0<e)a.read-=this.blockSize;else for(n=0;n<this._ints;++n)this._inBlock[n]=this._partialBlock[n];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);
237 +if(0<e&&!c)return b.putBytes(this._partialOutput.getBytes(e-this._partialBytes)),this._partialBytes=e,!0;b.putBytes(this._partialOutput.getBytes(d-this._partialBytes));this._partialBytes=0}};w.ofb=function(b){b=b||{};this.name="OFB";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};w.ofb.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");
238 +this._iv=c(a.iv);this._inBlock=this._iv.slice(0);this._partialBytes=0};w.ofb.prototype.encrypt=function(a,b,c){var d=a.length();if(0===a.length())return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&d>=this.blockSize)for(var n=0;n<this._ints;++n)b.putInt32(a.getInt32()^this._outBlock[n]),this._inBlock[n]=this._outBlock[n];else{var e=(this.blockSize-d)%this.blockSize;0<e&&(e=this.blockSize-e);this._partialOutput.clear();for(n=0;n<this._ints;++n)this._partialOutput.putInt32(a.getInt32()^
239 +this._outBlock[n]);if(0<e)a.read-=this.blockSize;else for(n=0;n<this._ints;++n)this._inBlock[n]=this._outBlock[n];0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<e&&!c)return b.putBytes(this._partialOutput.getBytes(e-this._partialBytes)),this._partialBytes=e,!0;b.putBytes(this._partialOutput.getBytes(d-this._partialBytes));this._partialBytes=0}};w.ofb.prototype.decrypt=w.ofb.prototype.encrypt;w.ctr=function(b){b=b||{};this.name="CTR";this.cipher=b.cipher;this.blockSize=
240 +b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=null;this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0};w.ctr.prototype.start=function(a){if(!("iv"in a))throw Error("Invalid IV parameter.");this._iv=c(a.iv);this._inBlock=this._iv.slice(0);this._partialBytes=0};w.ctr.prototype.encrypt=function(a,b,c){var n=a.length();if(0===n)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&n>=this.blockSize)for(var e=0;e<
241 +this._ints;++e)b.putInt32(a.getInt32()^this._outBlock[e]);else{var p=(this.blockSize-n)%this.blockSize;0<p&&(p=this.blockSize-p);this._partialOutput.clear();for(e=0;e<this._ints;++e)this._partialOutput.putInt32(a.getInt32()^this._outBlock[e]);0<p&&(a.read-=this.blockSize);0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<p&&!c)return b.putBytes(this._partialOutput.getBytes(p-this._partialBytes)),this._partialBytes=p,!0;b.putBytes(this._partialOutput.getBytes(n-this._partialBytes));
242 +this._partialBytes=0}d(this._inBlock)};w.ctr.prototype.decrypt=w.ctr.prototype.encrypt;w.gcm=function(b){b=b||{};this.name="GCM";this.cipher=b.cipher;this.blockSize=b.blockSize||16;this._ints=this.blockSize/4;this._inBlock=Array(this._ints);this._outBlock=Array(this._ints);this._partialOutput=a.util.createBuffer();this._partialBytes=0;this._R=3774873600};w.gcm.prototype.start=function(b){if(!("iv"in b))throw Error("Invalid IV parameter.");var c=a.util.createBuffer(b.iv);this._cipherLength=0;var g;
243 g="additionalData"in b?a.util.createBuffer(b.additionalData):a.util.createBuffer();this._tagLength="tagLength"in b?b.tagLength:128;this._tag=null;if(b.decrypt&&(this._tag=a.util.createBuffer(b.tag).getBytes(),this._tag.length!==this._tagLength/8))throw Error("Authentication tag does not match tag length.");this._hashBlock=Array(this._ints);this.tag=null;this._hashSubkey=Array(this._ints);this.cipher.encrypt([0,0,0,0],this._hashSubkey);this.componentBits=4;this._m=this.generateHashTable(this._hashSubkey,
244 this.componentBits);b=c.length();if(12===b)this._j0=[c.getInt32(),c.getInt32(),c.getInt32(),1];else{for(this._j0=[0,0,0,0];0<c.length();)this._j0=this.ghash(this._hashSubkey,this._j0,[c.getInt32(),c.getInt32(),c.getInt32(),c.getInt32()]);this._j0=this.ghash(this._hashSubkey,this._j0,[0,0].concat(e(8*b)))}this._inBlock=this._j0.slice(0);d(this._inBlock);this._partialBytes=0;g=a.util.createBuffer(g);this._aDataLength=e(8*g.length());(c=g.length()%this.blockSize)&&g.fillWithByte(0,this.blockSize-c);
245 -for(this._s=[0,0,0,0];0<g.length();)this._s=this.ghash(this._hashSubkey,this._s,[g.getInt32(),g.getInt32(),g.getInt32(),g.getInt32()])};v.gcm.prototype.encrypt=function(a,b,c){var m=a.length();if(0===m)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&m>=this.blockSize){for(var g=0;g<this._ints;++g)b.putInt32(this._outBlock[g]^=a.getInt32());this._cipherLength+=this.blockSize}else{var e=(this.blockSize-m)%this.blockSize;0<e&&(e=this.blockSize-e);this._partialOutput.clear();
246 -for(g=0;g<this._ints;++g)this._partialOutput.putInt32(a.getInt32()^this._outBlock[g]);if(0===e||c){c?(g=m%this.blockSize,this._cipherLength+=g,this._partialOutput.truncate(this.blockSize-g)):this._cipherLength+=this.blockSize;for(g=0;g<this._ints;++g)this._outBlock[g]=this._partialOutput.getInt32();this._partialOutput.read-=this.blockSize}0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<e&&!c)return a.read-=this.blockSize,b.putBytes(this._partialOutput.getBytes(e-this._partialBytes)),
247 -this._partialBytes=e,!0;b.putBytes(this._partialOutput.getBytes(m-this._partialBytes));this._partialBytes=0}this._s=this.ghash(this._hashSubkey,this._s,this._outBlock);d(this._inBlock)};v.gcm.prototype.decrypt=function(a,b,c){var m=a.length();if(m<this.blockSize&&!(c&&0<m))return!0;this.cipher.encrypt(this._inBlock,this._outBlock);d(this._inBlock);this._hashBlock[0]=a.getInt32();this._hashBlock[1]=a.getInt32();this._hashBlock[2]=a.getInt32();this._hashBlock[3]=a.getInt32();this._s=this.ghash(this._hashSubkey,
248 -this._s,this._hashBlock);for(a=0;a<this._ints;++a)b.putInt32(this._outBlock[a]^this._hashBlock[a]);this._cipherLength=m<this.blockSize?this._cipherLength+m%this.blockSize:this._cipherLength+this.blockSize};v.gcm.prototype.afterFinish=function(b,c){var g=!0;c.decrypt&&c.overflow&&b.truncate(this.blockSize-c.overflow);this.tag=a.util.createBuffer();var d=this._aDataLength.concat(e(8*this._cipherLength));this._s=this.ghash(this._hashSubkey,this._s,d);d=[];this.cipher.encrypt(this._j0,d);for(var q=0;q<
249 -this._ints;++q)this.tag.putInt32(this._s[q]^d[q]);this.tag.truncate(this.tag.length()%(this._tagLength/8));c.decrypt&&this.tag.bytes()!==this._tag&&(g=!1);return g};v.gcm.prototype.multiply=function(a,b){for(var c=[0,0,0,0],m=b.slice(0),g=0;128>g;++g)a[g/32|0]&1<<31-g%32&&(c[0]^=m[0],c[1]^=m[1],c[2]^=m[2],c[3]^=m[3]),this.pow(m,m);return c};v.gcm.prototype.pow=function(a,b){for(var c=a[3]&1,m=3;0<m;--m)b[m]=a[m]>>>1|(a[m-1]&1)<<31;b[0]=a[0]>>>1;c&&(b[0]^=this._R)};v.gcm.prototype.tableMultiply=function(a){for(var b=
250 -[0,0,0,0],c=0;32>c;++c){var m=this._m[c][a[c/8|0]>>>4*(7-c%8)&15];b[0]^=m[0];b[1]^=m[1];b[2]^=m[2];b[3]^=m[3]}return b};v.gcm.prototype.ghash=function(a,b,c){b[0]^=c[0];b[1]^=c[1];b[2]^=c[2];b[3]^=c[3];return this.tableMultiply(b)};v.gcm.prototype.generateHashTable=function(a,b){for(var c=8/b,m=4*c,c=16*c,g=Array(c),d=0;d<c;++d){var e=[0,0,0,0];e[d/m|0]=1<<b-1<<(m-1-d%m)*b;g[d]=this.generateSubHashTable(this.multiply(e,a),b)}return g};v.gcm.prototype.generateSubHashTable=function(a,b){var c=1<<b,
251 -m=c>>>1,g=Array(c);g[m]=a.slice(0);for(var d=m>>>1;0<d;)this.pow(g[2*d],g[d]=[]),d>>=1;for(d=2;d<m;){for(var e=1;e<d;++e){var l=g[d],v=g[e];g[d+e]=[l[0]^v[0],l[1]^v[1],l[2]^v[2],l[3]^v[3]]}d*=2}g[0]=[0,0,0,0];for(d=m+1;d<c;++d)e=g[d^m],g[d]=[a[0]^e[0],a[1]^e[1],a[2]^e[2],a[3]^e[3]];return g}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=
252 -n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.cipherModes)return c.cipherModes;c.defined.cipherModes=!0;for(var e=0;e<g.length;++e)g[e](c);return c.cipherModes}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/cipherModes",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,
253 -0))})})();(function(){function b(a){function c(b,g){a.cipher.registerAlgorithm(b,function(){return new a.aes.Algorithm(b,g)})}function d(){k=!0;C=[0,1,2,4,8,16,32,64,128,27,54];for(var a=Array(256),b=0;128>b;++b)a[b]=b<<1,a[b+128]=b+128<<1^283;K=Array(256);q=Array(256);B=Array(4);y=Array(4);for(b=0;4>b;++b)B[b]=Array(256),y[b]=Array(256);for(var c=0,m=0,g,e,h,l,v,b=0;256>b;++b){l=m^m<<1^m<<2^m<<3^m<<4;l=l>>8^l&255^99;K[c]=l;q[l]=c;v=a[l];g=a[c];e=a[g];h=a[e];v^=v<<24^l<<16^l<<8^l;e=(g^e^h)<<24^(c^
254 -h)<<16^(c^e^h)<<8^c^g^h;for(var x=0;4>x;++x)B[x][c]=v,y[x][l]=e,v=v<<24|v>>>8,e=e<<24|e>>>8;0===c?c=m=1:(c=g^a[a[a[g^h]]],m^=a[a[m]])}}function e(a,b){for(var c=a.slice(0),m,g=1,d=c.length,k=h*(d+6+1),l=d;l<k;++l)m=c[l-1],0===l%d?(m=K[m>>>16&255]<<24^K[m>>>8&255]<<16^K[m&255]<<8^K[m>>>24]^C[g]<<24,g++):6<d&&4===l%d&&(m=K[m>>>24]<<24^K[m>>>16&255]<<16^K[m>>>8&255]<<8^K[m&255]),c[l]=c[l-d]^m;if(b){for(var g=y[0],d=y[1],q=y[2],v=y[3],x=c.slice(0),k=c.length,l=0,w=k-h;l<k;l+=h,w-=h)if(0===l||l===k-h)x[l]=
255 -c[w],x[l+1]=c[w+3],x[l+2]=c[w+2],x[l+3]=c[w+1];else for(var B=0;B<h;++B)m=c[w+B],x[l+(3&-B)]=g[K[m>>>24]]^d[K[m>>>16&255]]^q[K[m>>>8&255]]^v[K[m&255]];c=x}return c}function v(a,b,c,m){var g=a.length/4-1,d,e,h,k,l;m?(d=y[0],e=y[1],h=y[2],k=y[3],l=q):(d=B[0],e=B[1],h=B[2],k=B[3],l=K);var v,x,w,C,n,p;v=b[0]^a[0];x=b[m?3:1]^a[1];w=b[2]^a[2];b=b[m?1:3]^a[3];for(var r=3,U=1;U<g;++U)C=d[v>>>24]^e[x>>>16&255]^h[w>>>8&255]^k[b&255]^a[++r],n=d[x>>>24]^e[w>>>16&255]^h[b>>>8&255]^k[v&255]^a[++r],p=d[w>>>24]^
256 -e[b>>>16&255]^h[v>>>8&255]^k[x&255]^a[++r],b=d[b>>>24]^e[v>>>16&255]^h[x>>>8&255]^k[w&255]^a[++r],v=C,x=n,w=p;c[0]=l[v>>>24]<<24^l[x>>>16&255]<<16^l[w>>>8&255]<<8^l[b&255]^a[++r];c[m?3:1]=l[x>>>24]<<24^l[w>>>16&255]<<16^l[b>>>8&255]<<8^l[v&255]^a[++r];c[2]=l[w>>>24]<<24^l[b>>>16&255]<<16^l[v>>>8&255]<<8^l[x&255]^a[++r];c[m?1:3]=l[b>>>24]<<24^l[v>>>16&255]<<16^l[x>>>8&255]<<8^l[w&255]^a[++r]}function x(b){b=b||{};var c="AES-"+(b.mode||"CBC").toUpperCase(),g;g=b.decrypt?a.cipher.createDecipher(c,b.key):
257 -a.cipher.createCipher(c,b.key);var d=g.start;g.start=function(b,c){var e=null;c instanceof a.util.ByteBuffer&&(e=c,c={});c=c||{};c.output=e;c.iv=b;d.call(g,c)};return g}a.aes=a.aes||{};a.aes.startEncrypting=function(a,b,c,m){a=x({key:a,output:c,decrypt:!1,mode:m});a.start(b);return a};a.aes.createEncryptionCipher=function(a,b){return x({key:a,output:null,decrypt:!1,mode:b})};a.aes.startDecrypting=function(a,b,c,m){a=x({key:a,output:c,decrypt:!0,mode:m});a.start(b);return a};a.aes.createDecryptionCipher=
258 -function(a,b){return x({key:a,output:null,decrypt:!0,mode:b})};a.aes.Algorithm=function(a,b){k||d();var c=this;c.name=a;c.mode=new b({blockSize:16,cipher:{encrypt:function(a,b){return v(c._w,a,b,!1)},decrypt:function(a,b){return v(c._w,a,b,!0)}}});c._init=!1};a.aes.Algorithm.prototype.initialize=function(b){if(!this._init){var c=b.key,g;if("string"===typeof c&&(16===c.length||24===c.length||32===c.length))c=a.util.createBuffer(c);else if(a.util.isArray(c)&&(16===c.length||24===c.length||32===c.length)){g=
259 -c;for(var c=a.util.createBuffer(),d=0;d<g.length;++d)c.putByte(g[d])}if(!a.util.isArray(c)){g=c;var c=[],h=g.length();if(16===h||24===h||32===h)for(h>>>=2,d=0;d<h;++d)c.push(g.getInt32())}if(!a.util.isArray(c)||4!==c.length&&6!==c.length&&8!==c.length)throw Error("Invalid key parameter.");g=-1!==["CFB","OFB","CTR","GCM"].indexOf(this.mode.name);this._w=e(c,b.decrypt&&!g);this._init=!0}};a.aes._expandKey=function(a,b){k||d();return e(a,b)};a.aes._updateBlock=v;c("AES-ECB",a.cipher.modes.ecb);c("AES-CBC",
260 -a.cipher.modes.cbc);c("AES-CFB",a.cipher.modes.cfb);c("AES-OFB",a.cipher.modes.ofb);c("AES-CTR",a.cipher.modes.ctr);c("AES-GCM",a.cipher.modes.gcm);var k=!1,h=4,K,q,C,B,y}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.aes)return c.aes;c.defined.aes=
261 -!0;for(var e=0;e<g.length;++e)g[e](c);return c.aes}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/aes",["require","module","./cipher","./cipherModes","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.pki=a.pki||{};a=a.pki.oids=a.oids=a.oids||{};a["1.2.840.113549.1.1.1"]="rsaEncryption";
245 +for(this._s=[0,0,0,0];0<g.length();)this._s=this.ghash(this._hashSubkey,this._s,[g.getInt32(),g.getInt32(),g.getInt32(),g.getInt32()])};w.gcm.prototype.encrypt=function(a,b,c){var n=a.length();if(0===n)return!0;this.cipher.encrypt(this._inBlock,this._outBlock);if(0===this._partialBytes&&n>=this.blockSize){for(var e=0;e<this._ints;++e)b.putInt32(this._outBlock[e]^=a.getInt32());this._cipherLength+=this.blockSize}else{var p=(this.blockSize-n)%this.blockSize;0<p&&(p=this.blockSize-p);this._partialOutput.clear();
246 +for(e=0;e<this._ints;++e)this._partialOutput.putInt32(a.getInt32()^this._outBlock[e]);if(0===p||c){c?(e=n%this.blockSize,this._cipherLength+=e,this._partialOutput.truncate(this.blockSize-e)):this._cipherLength+=this.blockSize;for(e=0;e<this._ints;++e)this._outBlock[e]=this._partialOutput.getInt32();this._partialOutput.read-=this.blockSize}0<this._partialBytes&&this._partialOutput.getBytes(this._partialBytes);if(0<p&&!c)return a.read-=this.blockSize,b.putBytes(this._partialOutput.getBytes(p-this._partialBytes)),
247 +this._partialBytes=p,!0;b.putBytes(this._partialOutput.getBytes(n-this._partialBytes));this._partialBytes=0}this._s=this.ghash(this._hashSubkey,this._s,this._outBlock);d(this._inBlock)};w.gcm.prototype.decrypt=function(a,b,c){var n=a.length();if(n<this.blockSize&&!(c&&0<n))return!0;this.cipher.encrypt(this._inBlock,this._outBlock);d(this._inBlock);this._hashBlock[0]=a.getInt32();this._hashBlock[1]=a.getInt32();this._hashBlock[2]=a.getInt32();this._hashBlock[3]=a.getInt32();this._s=this.ghash(this._hashSubkey,
248 +this._s,this._hashBlock);for(a=0;a<this._ints;++a)b.putInt32(this._outBlock[a]^this._hashBlock[a]);this._cipherLength=n<this.blockSize?this._cipherLength+n%this.blockSize:this._cipherLength+this.blockSize};w.gcm.prototype.afterFinish=function(b,c){var d=!0;c.decrypt&&c.overflow&&b.truncate(this.blockSize-c.overflow);this.tag=a.util.createBuffer();var h=this._aDataLength.concat(e(8*this._cipherLength));this._s=this.ghash(this._hashSubkey,this._s,h);h=[];this.cipher.encrypt(this._j0,h);for(var p=0;p<
249 +this._ints;++p)this.tag.putInt32(this._s[p]^h[p]);this.tag.truncate(this.tag.length()%(this._tagLength/8));c.decrypt&&this.tag.bytes()!==this._tag&&(d=!1);return d};w.gcm.prototype.multiply=function(a,b){for(var c=[0,0,0,0],d=b.slice(0),n=0;128>n;++n)a[n/32|0]&1<<31-n%32&&(c[0]^=d[0],c[1]^=d[1],c[2]^=d[2],c[3]^=d[3]),this.pow(d,d);return c};w.gcm.prototype.pow=function(a,b){for(var c=a[3]&1,d=3;0<d;--d)b[d]=a[d]>>>1|(a[d-1]&1)<<31;b[0]=a[0]>>>1;c&&(b[0]^=this._R)};w.gcm.prototype.tableMultiply=function(a){for(var b=
250 +[0,0,0,0],c=0;32>c;++c){var d=this._m[c][a[c/8|0]>>>4*(7-c%8)&15];b[0]^=d[0];b[1]^=d[1];b[2]^=d[2];b[3]^=d[3]}return b};w.gcm.prototype.ghash=function(a,b,c){b[0]^=c[0];b[1]^=c[1];b[2]^=c[2];b[3]^=c[3];return this.tableMultiply(b)};w.gcm.prototype.generateHashTable=function(a,b){for(var c=8/b,d=4*c,c=16*c,n=Array(c),e=0;e<c;++e){var h=[0,0,0,0];h[e/d|0]=1<<b-1<<(d-1-e%d)*b;n[e]=this.generateSubHashTable(this.multiply(h,a),b)}return n};w.gcm.prototype.generateSubHashTable=function(a,b){var c=1<<b,
251 +d=c>>>1,n=Array(c);n[d]=a.slice(0);for(var e=d>>>1;0<e;)this.pow(n[2*e],n[e]=[]),e>>=1;for(e=2;e<d;){for(var h=1;h<e;++h){var p=n[e],m=n[h];n[e+h]=[p[0]^m[0],p[1]^m[1],p[2]^m[2],p[3]^m[3]]}e*=2}n[0]=[0,0,0,0];for(e=d+1;e<c;++e)h=n[e^d],n[e]=[a[0]^h[0],a[1]^h[1],a[2]^h[2],a[3]^h[3]];return n}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=
252 +q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.cipherModes)return c.cipherModes;c.defined.cipherModes=!0;for(var p=0;p<e.length;++p)e[p](c);return c.cipherModes}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/cipherModes",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,
253 +0))})})();(function(){function b(a){function c(b,d){a.cipher.registerAlgorithm(b,function(){return new a.aes.Algorithm(b,d)})}function d(){l=!0;q=[0,1,2,4,8,16,32,64,128,27,54];for(var a=Array(256),b=0;128>b;++b)a[b]=b<<1,a[b+128]=b+128<<1^283;x=Array(256);u=Array(256);A=Array(4);y=Array(4);for(b=0;4>b;++b)A[b]=Array(256),y[b]=Array(256);for(var c=0,n=0,e,h,g,p,m,b=0;256>b;++b){p=n^n<<1^n<<2^n<<3^n<<4;p=p>>8^p&255^99;x[c]=p;u[p]=c;m=a[p];e=a[c];h=a[e];g=a[h];m^=m<<24^p<<16^p<<8^p;h=(e^h^g)<<24^(c^
254 +g)<<16^(c^h^g)<<8^c^e^g;for(var w=0;4>w;++w)A[w][c]=m,y[w][p]=h,m=m<<24|m>>>8,h=h<<24|h>>>8;0===c?c=n=1:(c=e^a[a[a[e^g]]],n^=a[a[n]])}}function e(a,b){for(var c=a.slice(0),d,n=1,h=c.length,l=g*(h+6+1),p=h;p<l;++p)d=c[p-1],0===p%h?(d=x[d>>>16&255]<<24^x[d>>>8&255]<<16^x[d&255]<<8^x[d>>>24]^q[n]<<24,n++):6<h&&4===p%h&&(d=x[d>>>24]<<24^x[d>>>16&255]<<16^x[d>>>8&255]<<8^x[d&255]),c[p]=c[p-h]^d;if(b){for(var n=y[0],h=y[1],m=y[2],u=y[3],w=c.slice(0),l=c.length,p=0,k=l-g;p<l;p+=g,k-=g)if(0===p||p===l-g)w[p]=
255 +c[k],w[p+1]=c[k+3],w[p+2]=c[k+2],w[p+3]=c[k+1];else for(var A=0;A<g;++A)d=c[k+A],w[p+(3&-A)]=n[x[d>>>24]]^h[x[d>>>16&255]]^m[x[d>>>8&255]]^u[x[d&255]];c=w}return c}function w(a,b,c,d){var n=a.length/4-1,e,h,g,l,p;d?(e=y[0],h=y[1],g=y[2],l=y[3],p=u):(e=A[0],h=A[1],g=A[2],l=A[3],p=x);var m,w,k,q,B,J;m=b[0]^a[0];w=b[d?3:1]^a[1];k=b[2]^a[2];b=b[d?1:3]^a[3];for(var v=3,Z=1;Z<n;++Z)q=e[m>>>24]^h[w>>>16&255]^g[k>>>8&255]^l[b&255]^a[++v],B=e[w>>>24]^h[k>>>16&255]^g[b>>>8&255]^l[m&255]^a[++v],J=e[k>>>24]^
256 +h[b>>>16&255]^g[m>>>8&255]^l[w&255]^a[++v],b=e[b>>>24]^h[m>>>16&255]^g[w>>>8&255]^l[k&255]^a[++v],m=q,w=B,k=J;c[0]=p[m>>>24]<<24^p[w>>>16&255]<<16^p[k>>>8&255]<<8^p[b&255]^a[++v];c[d?3:1]=p[w>>>24]<<24^p[k>>>16&255]<<16^p[b>>>8&255]<<8^p[m&255]^a[++v];c[2]=p[k>>>24]<<24^p[b>>>16&255]<<16^p[m>>>8&255]<<8^p[w&255]^a[++v];c[d?1:3]=p[b>>>24]<<24^p[m>>>16&255]<<16^p[w>>>8&255]<<8^p[k&255]^a[++v]}function k(b){b=b||{};var c="AES-"+(b.mode||"CBC").toUpperCase(),d;d=b.decrypt?a.cipher.createDecipher(c,b.key):
257 +a.cipher.createCipher(c,b.key);var e=d.start;d.start=function(b,c){var h=null;c instanceof a.util.ByteBuffer&&(h=c,c={});c=c||{};c.output=h;c.iv=b;e.call(d,c)};return d}a.aes=a.aes||{};a.aes.startEncrypting=function(a,b,c,d){a=k({key:a,output:c,decrypt:!1,mode:d});a.start(b);return a};a.aes.createEncryptionCipher=function(a,b){return k({key:a,output:null,decrypt:!1,mode:b})};a.aes.startDecrypting=function(a,b,c,d){a=k({key:a,output:c,decrypt:!0,mode:d});a.start(b);return a};a.aes.createDecryptionCipher=
258 +function(a,b){return k({key:a,output:null,decrypt:!0,mode:b})};a.aes.Algorithm=function(a,b){l||d();var c=this;c.name=a;c.mode=new b({blockSize:16,cipher:{encrypt:function(a,b){return w(c._w,a,b,!1)},decrypt:function(a,b){return w(c._w,a,b,!0)}}});c._init=!1};a.aes.Algorithm.prototype.initialize=function(b){if(!this._init){var c=b.key,d;if("string"===typeof c&&(16===c.length||24===c.length||32===c.length))c=a.util.createBuffer(c);else if(a.util.isArray(c)&&(16===c.length||24===c.length||32===c.length)){d=
259 +c;for(var c=a.util.createBuffer(),h=0;h<d.length;++h)c.putByte(d[h])}if(!a.util.isArray(c)){d=c;var c=[],g=d.length();if(16===g||24===g||32===g)for(g>>>=2,h=0;h<g;++h)c.push(d.getInt32())}if(!a.util.isArray(c)||4!==c.length&&6!==c.length&&8!==c.length)throw Error("Invalid key parameter.");d=-1!==["CFB","OFB","CTR","GCM"].indexOf(this.mode.name);this._w=e(c,b.decrypt&&!d);this._init=!0}};a.aes._expandKey=function(a,b){l||d();return e(a,b)};a.aes._updateBlock=w;c("AES-ECB",a.cipher.modes.ecb);c("AES-CBC",
260 +a.cipher.modes.cbc);c("AES-CFB",a.cipher.modes.cfb);c("AES-OFB",a.cipher.modes.ofb);c("AES-CTR",a.cipher.modes.ctr);c("AES-GCM",a.cipher.modes.gcm);var l=!1,g=4,x,u,q,A,y}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.aes)return c.aes;c.defined.aes=
261 +!0;for(var p=0;p<e.length;++p)e[p](c);return c.aes}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/aes",["require","module","./cipher","./cipherModes","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.pki=a.pki||{};a=a.pki.oids=a.oids=a.oids||{};a["1.2.840.113549.1.1.1"]="rsaEncryption";
262 a.rsaEncryption="1.2.840.113549.1.1.1";a["1.2.840.113549.1.1.4"]="md5WithRSAEncryption";a.md5WithRSAEncryption="1.2.840.113549.1.1.4";a["1.2.840.113549.1.1.5"]="sha1WithRSAEncryption";a.sha1WithRSAEncryption="1.2.840.113549.1.1.5";a["1.2.840.113549.1.1.7"]="RSAES-OAEP";a["RSAES-OAEP"]="1.2.840.113549.1.1.7";a["1.2.840.113549.1.1.8"]="mgf1";a.mgf1="1.2.840.113549.1.1.8";a["1.2.840.113549.1.1.9"]="pSpecified";a.pSpecified="1.2.840.113549.1.1.9";a["1.2.840.113549.1.1.10"]="RSASSA-PSS";a["RSASSA-PSS"]=
263 "1.2.840.113549.1.1.10";a["1.2.840.113549.1.1.11"]="sha256WithRSAEncryption";a.sha256WithRSAEncryption="1.2.840.113549.1.1.11";a["1.2.840.113549.1.1.12"]="sha384WithRSAEncryption";a.sha384WithRSAEncryption="1.2.840.113549.1.1.12";a["1.2.840.113549.1.1.13"]="sha512WithRSAEncryption";a.sha512WithRSAEncryption="1.2.840.113549.1.1.13";a["1.3.14.3.2.7"]="desCBC";a.desCBC="1.3.14.3.2.7";a["1.3.14.3.2.26"]="sha1";a.sha1="1.3.14.3.2.26";a["2.16.840.1.101.3.4.2.1"]="sha256";a.sha256="2.16.840.1.101.3.4.2.1";
264 a["2.16.840.1.101.3.4.2.2"]="sha384";a.sha384="2.16.840.1.101.3.4.2.2";a["2.16.840.1.101.3.4.2.3"]="sha512";a.sha512="2.16.840.1.101.3.4.2.3";a["1.2.840.113549.2.5"]="md5";a.md5="1.2.840.113549.2.5";a["1.2.840.113549.1.7.1"]="data";a.data="1.2.840.113549.1.7.1";a["1.2.840.113549.1.7.2"]="signedData";a.signedData="1.2.840.113549.1.7.2";a["1.2.840.113549.1.7.3"]="envelopedData";a.envelopedData="1.2.840.113549.1.7.3";a["1.2.840.113549.1.7.4"]="signedAndEnvelopedData";a.signedAndEnvelopedData="1.2.840.113549.1.7.4";
@@ -272,215 +272,215 @@ a["2.5.4.8"]="stateOrProvinceName";a.stateOrProvinceName="2.5.4.8";a["2.5.4.10"]
272 "subjectAltName";a["2.5.29.8"]="issuerAltName";a["2.5.29.9"]="subjectDirectoryAttributes";a["2.5.29.10"]="basicConstraints";a["2.5.29.11"]="nameConstraints";a["2.5.29.12"]="policyConstraints";a["2.5.29.13"]="basicConstraints";a["2.5.29.14"]="subjectKeyIdentifier";a.subjectKeyIdentifier="2.5.29.14";a["2.5.29.15"]="keyUsage";a.keyUsage="2.5.29.15";a["2.5.29.16"]="privateKeyUsagePeriod";a["2.5.29.17"]="subjectAltName";a.subjectAltName="2.5.29.17";a["2.5.29.18"]="issuerAltName";a.issuerAltName="2.5.29.18";
273 a["2.5.29.19"]="basicConstraints";a.basicConstraints="2.5.29.19";a["2.5.29.20"]="cRLNumber";a["2.5.29.21"]="cRLReason";a["2.5.29.22"]="expirationDate";a["2.5.29.23"]="instructionCode";a["2.5.29.24"]="invalidityDate";a["2.5.29.25"]="cRLDistributionPoints";a["2.5.29.26"]="issuingDistributionPoint";a["2.5.29.27"]="deltaCRLIndicator";a["2.5.29.28"]="issuingDistributionPoint";a["2.5.29.29"]="certificateIssuer";a["2.5.29.30"]="nameConstraints";a["2.5.29.31"]="cRLDistributionPoints";a["2.5.29.32"]="certificatePolicies";
274 a["2.5.29.33"]="policyMappings";a["2.5.29.34"]="policyConstraints";a["2.5.29.35"]="authorityKeyIdentifier";a["2.5.29.36"]="policyConstraints";a["2.5.29.37"]="extKeyUsage";a.extKeyUsage="2.5.29.37";a["2.5.29.46"]="freshestCRL";a["2.5.29.54"]="inhibitAnyPolicy";a["1.3.6.1.5.5.7.3.1"]="serverAuth";a.serverAuth="1.3.6.1.5.5.7.3.1";a["1.3.6.1.5.5.7.3.2"]="clientAuth";a.clientAuth="1.3.6.1.5.5.7.3.2";a["1.3.6.1.5.5.7.3.3"]="codeSigning";a.codeSigning="1.3.6.1.5.5.7.3.3";a["1.3.6.1.5.5.7.3.4"]="emailProtection";
275 -a.emailProtection="1.3.6.1.5.5.7.3.4";a["1.3.6.1.5.5.7.3.8"]="timeStamping";a.timeStamping="1.3.6.1.5.5.7.3.8"}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.oids)return c.oids;c.defined.oids=!0;for(var e=0;e<g.length;++e)g[e](c);return c.oids}},
276 -r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/oids",["require","module"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1=a.asn1||{};c.Class={UNIVERSAL:0,APPLICATION:64,CONTEXT_SPECIFIC:128,PRIVATE:192};c.Type={NONE:0,BOOLEAN:1,INTEGER:2,BITSTRING:3,OCTETSTRING:4,NULL:5,OID:6,
277 -ODESC:7,EXTERNAL:8,REAL:9,ENUMERATED:10,EMBEDDED:11,UTF8:12,ROID:13,SEQUENCE:16,SET:17,PRINTABLESTRING:19,IA5STRING:22,UTCTIME:23,GENERALIZEDTIME:24,BMPSTRING:30};c.create=function(b,c,g,d){if(a.util.isArray(d)){for(var e=[],l=0;l<d.length;++l)void 0!==d[l]&&e.push(d[l]);d=e}return{tagClass:b,type:c,constructed:g,composed:g||a.util.isArray(d),value:d}};var d=c.getBerValueLength=function(a){var b=a.getByte();if(128!==b)return b&128?a.getInt((b&127)<<3):b};c.fromDer=function(b,e){void 0===e&&(e=!0);
278 -"string"===typeof b&&(b=a.util.createBuffer(b));if(2>b.length()){var k=Error("Too few bytes to parse DER.");k.bytes=b.length();throw k;}var h=b.getByte(),k=h&192,l=h&31,q=d(b);if(b.length()<q){if(e)throw k=Error("Too few bytes to read ASN.1 value."),k.detail=b.length()+" < "+q,k;q=b.length()}var C,B=32===(h&32);C=B;if(!C&&k===c.Class.UNIVERSAL&&l===c.Type.BITSTRING&&1<q){var y=b.read;if(0===b.getByte()&&(h=b.getByte(),h&=192,h===c.Class.UNIVERSAL||h===c.Class.CONTEXT_SPECIFIC))try{if(C=d(b)===q-(b.read-
279 -y))++y,--q}catch(n){}b.read=y}if(C)if(C=[],void 0===q)for(;;){if(b.bytes(2)===String.fromCharCode(0,0)){b.getBytes(2);break}C.push(c.fromDer(b,e))}else for(y=b.length();0<q;)C.push(c.fromDer(b,e)),q-=y-b.length(),y=b.length();else{if(void 0===q){if(e)throw Error("Non-constructed ASN.1 object of indefinite length.");q=b.length()}if(l===c.Type.BMPSTRING)for(C="",y=0;y<q;y+=2)C+=String.fromCharCode(b.getInt16());else C=b.getBytes(q)}return c.create(k,l,B,C)};c.toDer=function(b){var d=a.util.createBuffer(),
280 -e=b.tagClass|b.type,h=a.util.createBuffer();if(b.composed){b.constructed?e|=32:h.putByte(0);for(var l=0;l<b.value.length;++l)void 0!==b.value[l]&&h.putBuffer(c.toDer(b.value[l]))}else if(b.type===c.Type.BMPSTRING)for(l=0;l<b.value.length;++l)h.putInt16(b.value.charCodeAt(l));else h.putBytes(b.value);d.putByte(e);if(127>=h.length())d.putByte(h.length()&127);else{l=h.length();b="";do b+=String.fromCharCode(l&255),l>>>=8;while(0<l);d.putByte(b.length|128);for(l=b.length-1;0<=l;--l)d.putByte(b.charCodeAt(l))}d.putBuffer(h);
281 -return d};c.oidToDer=function(b){b=b.split(".");var c=a.util.createBuffer();c.putByte(40*parseInt(b[0],10)+parseInt(b[1],10));for(var d,g,e,l,w=2;w<b.length;++w){d=!0;g=[];e=parseInt(b[w],10);do l=e&127,e>>>=7,d||(l|=128),g.push(l),d=!1;while(0<e);for(d=g.length-1;0<=d;--d)c.putByte(g[d])}return c};c.derToOid=function(b){var c;"string"===typeof b&&(b=a.util.createBuffer(b));var d=b.getByte();c=Math.floor(d/40)+"."+d%40;for(var g=0;0<b.length();)d=b.getByte(),g<<=7,d&128?g+=d&127:(c+="."+(g+d),g=0);
282 -return c};c.utcTimeToDate=function(a){var b=new Date,c=parseInt(a.substr(0,2),10),c=50<=c?1900+c:2E3+c,d=parseInt(a.substr(2,2),10)-1,g=parseInt(a.substr(4,2),10),m=parseInt(a.substr(6,2),10),e=parseInt(a.substr(8,2),10),l=0;if(11<a.length){var w=a.charAt(10),n=10;"+"!==w&&"-"!==w&&(l=parseInt(a.substr(10,2),10),n+=2)}b.setUTCFullYear(c,d,g);b.setUTCHours(m,e,l,0);n&&(w=a.charAt(n),"+"===w||"-"===w)&&(c=parseInt(a.substr(n+1,2),10),a=parseInt(a.substr(n+4,2),10),a=6E4*(60*c+a),"+"===w?b.setTime(+b-
283 -a):b.setTime(+b+a));return b};c.generalizedTimeToDate=function(a){var b=new Date,c=parseInt(a.substr(0,4),10),d=parseInt(a.substr(4,2),10)-1,g=parseInt(a.substr(6,2),10),m=parseInt(a.substr(8,2),10),e=parseInt(a.substr(10,2),10),l=parseInt(a.substr(12,2),10),w=0,n=0,F=!1;"Z"===a.charAt(a.length-1)&&(F=!0);var E=a.length-5,z=a.charAt(E);if("+"===z||"-"===z)n=parseInt(a.substr(E+1,2),10),E=parseInt(a.substr(E+4,2),10),n=6E4*(60*n+E),"+"===z&&(n*=-1),F=!0;"."===a.charAt(14)&&(w=1E3*parseFloat(a.substr(14),
284 -10));F?(b.setUTCFullYear(c,d,g),b.setUTCHours(m,e,l,w),b.setTime(+b+n)):(b.setFullYear(c,d,g),b.setHours(m,e,l,w));return b};c.dateToUtcTime=function(a){if("string"===typeof a)return a;var b="",c=[];c.push((""+a.getUTCFullYear()).substr(2));c.push(""+(a.getUTCMonth()+1));c.push(""+a.getUTCDate());c.push(""+a.getUTCHours());c.push(""+a.getUTCMinutes());c.push(""+a.getUTCSeconds());for(a=0;a<c.length;++a)2>c[a].length&&(b+="0"),b+=c[a];return b+"Z"};c.dateToGeneralizedTime=function(a){if("string"===
275 +a.emailProtection="1.3.6.1.5.5.7.3.4";a["1.3.6.1.5.5.7.3.8"]="timeStamping";a.timeStamping="1.3.6.1.5.5.7.3.8"}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.oids)return c.oids;c.defined.oids=!0;for(var p=0;p<e.length;++p)e[p](c);return c.oids}},
276 +v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/oids",["require","module"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1=a.asn1||{};c.Class={UNIVERSAL:0,APPLICATION:64,CONTEXT_SPECIFIC:128,PRIVATE:192};c.Type={NONE:0,BOOLEAN:1,INTEGER:2,BITSTRING:3,OCTETSTRING:4,NULL:5,OID:6,
277 +ODESC:7,EXTERNAL:8,REAL:9,ENUMERATED:10,EMBEDDED:11,UTF8:12,ROID:13,SEQUENCE:16,SET:17,PRINTABLESTRING:19,IA5STRING:22,UTCTIME:23,GENERALIZEDTIME:24,BMPSTRING:30};c.create=function(b,c,d,e){if(a.util.isArray(e)){for(var h=[],m=0;m<e.length;++m)void 0!==e[m]&&h.push(e[m]);e=h}return{tagClass:b,type:c,constructed:d,composed:d||a.util.isArray(e),value:e}};var d=c.getBerValueLength=function(a){var b=a.getByte();if(128!==b)return b&128?a.getInt((b&127)<<3):b};c.fromDer=function(b,e){void 0===e&&(e=!0);
278 +"string"===typeof b&&(b=a.util.createBuffer(b));if(2>b.length()){var l=Error("Too few bytes to parse DER.");l.bytes=b.length();throw l;}var g=b.getByte(),l=g&192,m=g&31,u=d(b);if(b.length()<u){if(e)throw l=Error("Too few bytes to read ASN.1 value."),l.detail=b.length()+" < "+u,l;u=b.length()}var k,A=32===(g&32);k=A;if(!k&&l===c.Class.UNIVERSAL&&m===c.Type.BITSTRING&&1<u){var y=b.read;if(0===b.getByte()&&(g=b.getByte(),g&=192,g===c.Class.UNIVERSAL||g===c.Class.CONTEXT_SPECIFIC))try{if(k=d(b)===u-(b.read-
279 +y))++y,--u}catch(q){}b.read=y}if(k)if(k=[],void 0===u)for(;;){if(b.bytes(2)===String.fromCharCode(0,0)){b.getBytes(2);break}k.push(c.fromDer(b,e))}else for(y=b.length();0<u;)k.push(c.fromDer(b,e)),u-=y-b.length(),y=b.length();else{if(void 0===u){if(e)throw Error("Non-constructed ASN.1 object of indefinite length.");u=b.length()}if(m===c.Type.BMPSTRING)for(k="",y=0;y<u;y+=2)k+=String.fromCharCode(b.getInt16());else k=b.getBytes(u)}return c.create(l,m,A,k)};c.toDer=function(b){var d=a.util.createBuffer(),
280 +e=b.tagClass|b.type,h=a.util.createBuffer();if(b.composed){b.constructed?e|=32:h.putByte(0);for(var m=0;m<b.value.length;++m)void 0!==b.value[m]&&h.putBuffer(c.toDer(b.value[m]))}else if(b.type===c.Type.BMPSTRING)for(m=0;m<b.value.length;++m)h.putInt16(b.value.charCodeAt(m));else h.putBytes(b.value);d.putByte(e);if(127>=h.length())d.putByte(h.length()&127);else{m=h.length();b="";do b+=String.fromCharCode(m&255),m>>>=8;while(0<m);d.putByte(b.length|128);for(m=b.length-1;0<=m;--m)d.putByte(b.charCodeAt(m))}d.putBuffer(h);
281 +return d};c.oidToDer=function(b){b=b.split(".");var c=a.util.createBuffer();c.putByte(40*parseInt(b[0],10)+parseInt(b[1],10));for(var d,e,h,m,p=2;p<b.length;++p){d=!0;e=[];h=parseInt(b[p],10);do m=h&127,h>>>=7,d||(m|=128),e.push(m),d=!1;while(0<h);for(d=e.length-1;0<=d;--d)c.putByte(e[d])}return c};c.derToOid=function(b){var c;"string"===typeof b&&(b=a.util.createBuffer(b));var d=b.getByte();c=Math.floor(d/40)+"."+d%40;for(var e=0;0<b.length();)d=b.getByte(),e<<=7,d&128?e+=d&127:(c+="."+(e+d),e=0);
282 +return c};c.utcTimeToDate=function(a){var b=new Date,c=parseInt(a.substr(0,2),10),c=50<=c?1900+c:2E3+c,d=parseInt(a.substr(2,2),10)-1,e=parseInt(a.substr(4,2),10),n=parseInt(a.substr(6,2),10),h=parseInt(a.substr(8,2),10),m=0;if(11<a.length){var p=a.charAt(10),k=10;"+"!==p&&"-"!==p&&(m=parseInt(a.substr(10,2),10),k+=2)}b.setUTCFullYear(c,d,e);b.setUTCHours(n,h,m,0);k&&(p=a.charAt(k),"+"===p||"-"===p)&&(c=parseInt(a.substr(k+1,2),10),a=parseInt(a.substr(k+4,2),10),a=6E4*(60*c+a),"+"===p?b.setTime(+b-
283 +a):b.setTime(+b+a));return b};c.generalizedTimeToDate=function(a){var b=new Date,c=parseInt(a.substr(0,4),10),d=parseInt(a.substr(4,2),10)-1,e=parseInt(a.substr(6,2),10),n=parseInt(a.substr(8,2),10),h=parseInt(a.substr(10,2),10),m=parseInt(a.substr(12,2),10),p=0,k=0,q=!1;"Z"===a.charAt(a.length-1)&&(q=!0);var D=a.length-5,z=a.charAt(D);if("+"===z||"-"===z)k=parseInt(a.substr(D+1,2),10),D=parseInt(a.substr(D+4,2),10),k=6E4*(60*k+D),"+"===z&&(k*=-1),q=!0;"."===a.charAt(14)&&(p=1E3*parseFloat(a.substr(14),
284 +10));q?(b.setUTCFullYear(c,d,e),b.setUTCHours(n,h,m,p),b.setTime(+b+k)):(b.setFullYear(c,d,e),b.setHours(n,h,m,p));return b};c.dateToUtcTime=function(a){if("string"===typeof a)return a;var b="",c=[];c.push((""+a.getUTCFullYear()).substr(2));c.push(""+(a.getUTCMonth()+1));c.push(""+a.getUTCDate());c.push(""+a.getUTCHours());c.push(""+a.getUTCMinutes());c.push(""+a.getUTCSeconds());for(a=0;a<c.length;++a)2>c[a].length&&(b+="0"),b+=c[a];return b+"Z"};c.dateToGeneralizedTime=function(a){if("string"===
285 typeof a)return a;var b="",c=[];c.push(""+a.getUTCFullYear());c.push(""+(a.getUTCMonth()+1));c.push(""+a.getUTCDate());c.push(""+a.getUTCHours());c.push(""+a.getUTCMinutes());c.push(""+a.getUTCSeconds());for(a=0;a<c.length;++a)2>c[a].length&&(b+="0"),b+=c[a];return b+"Z"};c.integerToDer=function(b){var c=a.util.createBuffer();if(-128<=b&&128>b)return c.putSignedInt(b,8);if(-32768<=b&&32768>b)return c.putSignedInt(b,16);if(-8388608<=b&&8388608>b)return c.putSignedInt(b,24);if(-2147483648<=b&&2147483648>
286 -b)return c.putSignedInt(b,32);c=Error("Integer too large; max is 32-bits.");c.integer=b;throw c;};c.derToInteger=function(b){"string"===typeof b&&(b=a.util.createBuffer(b));var c=8*b.length();if(32<c)throw Error("Integer too large; max is 32-bits.");return b.getSignedInt(c)};c.validate=function(b,d,e,h){var l=!1;if(b.tagClass!==d.tagClass&&"undefined"!==typeof d.tagClass||b.type!==d.type&&"undefined"!==typeof d.type)h&&(b.tagClass!==d.tagClass&&h.push("["+d.name+'] Expected tag class "'+d.tagClass+
287 -'", got "'+b.tagClass+'"'),b.type!==d.type&&h.push("["+d.name+'] Expected type "'+d.type+'", got "'+b.type+'"'));else if(b.constructed===d.constructed||"undefined"===typeof d.constructed){l=!0;if(d.value&&a.util.isArray(d.value))for(var q=0,w=0;l&&w<d.value.length;++w)l=d.value[w].optional||!1,b.value[q]&&((l=c.validate(b.value[q],d.value[w],e,h))?++q:d.value[w].optional&&(l=!0)),!l&&h&&h.push("["+d.name+'] Tag class "'+d.tagClass+'", type "'+d.type+'" expected value length "'+d.value.length+'", got "'+
288 -b.value.length+'"');l&&e&&(d.capture&&(e[d.capture]=b.value),d.captureAsn1&&(e[d.captureAsn1]=b))}else h&&h.push("["+d.name+'] Expected constructed "'+d.constructed+'", got "'+b.constructed+'"');return l};var e=/[^\\u0000-\\u00ff]/;c.prettyPrint=function(b,d,k){var h="";d=d||0;k=k||2;0<d&&(h+="\n");for(var w="",q=0;q<d*k;++q)w+=" ";h+=w+"Tag: ";switch(b.tagClass){case c.Class.UNIVERSAL:h+="Universal:";break;case c.Class.APPLICATION:h+="Application:";break;case c.Class.CONTEXT_SPECIFIC:h+="Context-Specific:";
289 -break;case c.Class.PRIVATE:h+="Private:"}if(b.tagClass===c.Class.UNIVERSAL)switch(h+=b.type,b.type){case c.Type.NONE:h+=" (None)";break;case c.Type.BOOLEAN:h+=" (Boolean)";break;case c.Type.BITSTRING:h+=" (Bit string)";break;case c.Type.INTEGER:h+=" (Integer)";break;case c.Type.OCTETSTRING:h+=" (Octet string)";break;case c.Type.NULL:h+=" (Null)";break;case c.Type.OID:h+=" (Object Identifier)";break;case c.Type.ODESC:h+=" (Object Descriptor)";break;case c.Type.EXTERNAL:h+=" (External or Instance of)";
290 -break;case c.Type.REAL:h+=" (Real)";break;case c.Type.ENUMERATED:h+=" (Enumerated)";break;case c.Type.EMBEDDED:h+=" (Embedded PDV)";break;case c.Type.UTF8:h+=" (UTF8)";break;case c.Type.ROID:h+=" (Relative Object Identifier)";break;case c.Type.SEQUENCE:h+=" (Sequence)";break;case c.Type.SET:h+=" (Set)";break;case c.Type.PRINTABLESTRING:h+=" (Printable String)";break;case c.Type.IA5String:h+=" (IA5String (ASCII))";break;case c.Type.UTCTIME:h+=" (UTC time)";break;case c.Type.GENERALIZEDTIME:h+=" (Generalized time)";
291 -break;case c.Type.BMPSTRING:h+=" (BMP String)"}else h+=b.type;h=h+"\n"+(w+"Constructed: "+b.constructed+"\n");if(b.composed){for(var n=0,B="",q=0;q<b.value.length;++q)void 0!==b.value[q]&&(n+=1,B+=c.prettyPrint(b.value[q],d+1,k),q+1<b.value.length&&(B+=","));h+=w+"Sub values: "+n+B}else if(h+=w+"Value: ",b.type===c.Type.OID&&(d=c.derToOid(b.value),h+=d,a.pki&&a.pki.oids&&d in a.pki.oids&&(h+=" ("+a.pki.oids[d]+") ")),b.type===c.Type.INTEGER)try{h+=c.derToInteger(b.value)}catch(y){h+="0x"+a.util.bytesToHex(b.value)}else b.type===
292 -c.Type.OCTETSTRING?(e.test(b.value)||(h+="("+b.value+") "),h+="0x"+a.util.bytesToHex(b.value)):h=b.type===c.Type.UTF8?h+a.util.decodeUtf8(b.value):b.type===c.Type.PRINTABLESTRING||b.type===c.Type.IA5String?h+b.value:e.test(b.value)?h+("0x"+a.util.bytesToHex(b.value)):0===b.value.length?h+"[null]":h+b.value;return h}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,
293 -c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.asn1)return c.asn1;c.defined.asn1=!0;for(var e=0;e<g.length;++e)g[e](c);return c.asn1}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/asn1",["require","module","./util","./oids"],function(){p.apply(null,Array.prototype.slice.call(arguments,
294 -0))})})();(function(){function b(a){function c(){v=String.fromCharCode(128);v+=a.util.fillString(String.fromCharCode(0),64);x=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,6,11,0,5,10,15,4,9,14,3,8,13,2,7,12,5,8,11,14,1,4,7,10,13,0,3,6,9,12,15,2,0,7,14,5,12,3,10,1,8,15,6,13,4,11,2,9];k=[7,12,17,22,7,12,17,22,7,12,17,22,7,12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,15,21,6,10,15,21,6,10,15,21,6,10,15,21];h=Array(64);for(var b=0;64>b;++b)h[b]=Math.floor(4294967296*
295 -Math.abs(Math.sin(b+1)));K=!0}function d(a,b,c){for(var g,m,e,l,z,D,A,w=c.length();64<=w;){m=a.h0;e=a.h1;l=a.h2;z=a.h3;for(A=0;16>A;++A)b[A]=c.getInt32Le(),g=z^e&(l^z),g=m+g+h[A]+b[A],D=k[A],m=z,z=l,l=e,e+=g<<D|g>>>32-D;for(;32>A;++A)g=l^z&(e^l),g=m+g+h[A]+b[x[A]],D=k[A],m=z,z=l,l=e,e+=g<<D|g>>>32-D;for(;48>A;++A)g=e^l^z,g=m+g+h[A]+b[x[A]],D=k[A],m=z,z=l,l=e,e+=g<<D|g>>>32-D;for(;64>A;++A)g=l^(e|~z),g=m+g+h[A]+b[x[A]],D=k[A],m=z,z=l,l=e,e+=g<<D|g>>>32-D;a.h0=a.h0+m|0;a.h1=a.h1+e|0;a.h2=a.h2+l|0;a.h3=
296 -a.h3+z|0;w-=64}}var e=a.md5=a.md5||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.md5=a.md.algorithms.md5=e;e.create=function(){K||c();var b=null,e=a.util.createBuffer(),h=Array(16),k={algorithm:"md5",blockLength:64,digestLength:16,messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){k.messageLength=0;k.fullMessageLength=k.messageLength64=[];for(var c=k.messageLengthSize/4,d=0;d<c;++d)k.fullMessageLength.push(0);e=a.util.createBuffer();b={h0:1732584193,h1:4023233417,
297 -h2:2562383102,h3:271733878};return k}};k.start();k.update=function(c,g){"utf8"===g&&(c=a.util.encodeUtf8(c));var l=c.length;k.messageLength+=l;for(var l=[l/4294967296>>>0,l>>>0],z=k.fullMessageLength.length-1;0<=z;--z)k.fullMessageLength[z]+=l[1],l[1]=l[0]+(k.fullMessageLength[z]/4294967296>>>0),k.fullMessageLength[z]>>>=0,l[0]=l[1]/4294967296>>>0;e.putBytes(c);d(b,h,e);(2048<e.read||0===e.length())&&e.compact();return k};k.digest=function(){var c=a.util.createBuffer();c.putBytes(e.bytes());c.putBytes(v.substr(0,
298 -k.blockLength-(k.fullMessageLength[k.fullMessageLength.length-1]+k.messageLengthSize&k.blockLength-1)));for(var g,l=0,z=k.fullMessageLength.length-1;0<=z;--z)g=8*k.fullMessageLength[z]+l,l=g/4294967296>>>0,c.putInt32Le(g>>>0);g={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3};d(g,h,c);c=a.util.createBuffer();c.putInt32Le(g.h0);c.putInt32Le(g.h1);c.putInt32Le(g.h2);c.putInt32Le(g.h3);return c};return k};var v=null,x=null,k=null,h=null,K=!1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=
299 -!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.md5)return c.md5;c.defined.md5=!0;for(var e=0;e<g.length;++e)g[e](c);return c.md5}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,
300 -0))};a("js/md5",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){for(var g,m,e,l,w,v,n,E,z=d.length();64<=z;){m=a.h0;e=a.h1;l=a.h2;w=a.h3;v=a.h4;for(E=0;16>E;++E)g=d.getInt32(),b[E]=g,n=w^e&(l^w),g=(m<<5|m>>>27)+n+v+1518500249+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;for(;20>E;++E)g=b[E-3]^b[E-8]^b[E-14]^b[E-16],g=g<<1|g>>>31,b[E]=g,n=w^e&(l^w),g=(m<<5|m>>>27)+n+v+1518500249+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;for(;32>
301 -E;++E)g=b[E-3]^b[E-8]^b[E-14]^b[E-16],g=g<<1|g>>>31,b[E]=g,n=e^l^w,g=(m<<5|m>>>27)+n+v+1859775393+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;for(;40>E;++E)g=b[E-6]^b[E-16]^b[E-28]^b[E-32],g=g<<2|g>>>30,b[E]=g,n=e^l^w,g=(m<<5|m>>>27)+n+v+1859775393+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;for(;60>E;++E)g=b[E-6]^b[E-16]^b[E-28]^b[E-32],g=g<<2|g>>>30,b[E]=g,n=e&l|w&(e^l),g=(m<<5|m>>>27)+n+v+2400959708+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;for(;80>E;++E)g=b[E-6]^b[E-16]^b[E-28]^b[E-32],g=g<<2|g>>>30,b[E]=g,n=e^l^w,g=(m<<5|m>>>
302 -27)+n+v+3395469782+g,v=w,w=l,l=e<<30|e>>>2,e=m,m=g;a.h0=a.h0+m|0;a.h1=a.h1+e|0;a.h2=a.h2+l|0;a.h3=a.h3+w|0;a.h4=a.h4+v|0;z-=64}}var d=a.sha1=a.sha1||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha1=a.md.algorithms.sha1=d;d.create=function(){v||(e=String.fromCharCode(128),e+=a.util.fillString(String.fromCharCode(0),64),v=!0);var b=null,d=a.util.createBuffer(),h=Array(80),w={algorithm:"sha1",blockLength:64,digestLength:20,messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){w.messageLength=
303 -0;w.fullMessageLength=w.messageLength64=[];for(var c=w.messageLengthSize/4,g=0;g<c;++g)w.fullMessageLength.push(0);d=a.util.createBuffer();b={h0:1732584193,h1:4023233417,h2:2562383102,h3:271733878,h4:3285377520};return w}};w.start();w.update=function(e,l){"utf8"===l&&(e=a.util.encodeUtf8(e));var v=e.length;w.messageLength+=v;for(var v=[v/4294967296>>>0,v>>>0],y=w.fullMessageLength.length-1;0<=y;--y)w.fullMessageLength[y]+=v[1],v[1]=v[0]+(w.fullMessageLength[y]/4294967296>>>0),w.fullMessageLength[y]>>>=
304 -0,v[0]=v[1]/4294967296>>>0;d.putBytes(e);c(b,h,d);(2048<d.read||0===d.length())&&d.compact();return w};w.digest=function(){var q=a.util.createBuffer();q.putBytes(d.bytes());q.putBytes(e.substr(0,w.blockLength-(w.fullMessageLength[w.fullMessageLength.length-1]+w.messageLengthSize&w.blockLength-1)));a.util.createBuffer();for(var v,B,y=8*w.fullMessageLength[0],n=0;n<w.fullMessageLength.length;++n)v=8*w.fullMessageLength[n+1],B=v/4294967296>>>0,y+=B,q.putInt32(y>>>0),y=v;v={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3,
305 -h4:b.h4};c(v,h,q);q=a.util.createBuffer();q.putInt32(v.h0);q.putInt32(v.h1);q.putInt32(v.h2);q.putInt32(v.h3);q.putInt32(v.h4);return q};return w};var e=null,v=!1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.sha1)return c.sha1;c.defined.sha1=
306 -!0;for(var e=0;e<g.length;++e)g[e](c);return c.sha1}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha1",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,g){for(var d,m,e,l,w,v,n,z,D,A,G,p,u,r=g.length();64<=r;){for(w=0;16>w;++w)b[w]=g.getInt32();
307 -for(;64>w;++w)d=b[w-2],d=(d>>>17|d<<15)^(d>>>19|d<<13)^d>>>10,m=b[w-15],m=(m>>>7|m<<25)^(m>>>18|m<<14)^m>>>3,b[w]=d+b[w-7]+m+b[w-16]|0;v=a.h0;n=a.h1;z=a.h2;D=a.h3;A=a.h4;G=a.h5;p=a.h6;u=a.h7;for(w=0;64>w;++w)d=(A>>>6|A<<26)^(A>>>11|A<<21)^(A>>>25|A<<7),e=p^A&(G^p),m=(v>>>2|v<<30)^(v>>>13|v<<19)^(v>>>22|v<<10),l=v&n|z&(v^n),d=u+d+e+x[w]+b[w],m+=l,u=p,p=G,G=A,A=D+d|0,D=z,z=n,n=v,v=d+m|0;a.h0=a.h0+v|0;a.h1=a.h1+n|0;a.h2=a.h2+z|0;a.h3=a.h3+D|0;a.h4=a.h4+A|0;a.h5=a.h5+G|0;a.h6=a.h6+p|0;a.h7=a.h7+u|0;r-=
308 -64}}var d=a.sha256=a.sha256||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha256=a.md.algorithms.sha256=d;d.create=function(){v||(e=String.fromCharCode(128),e+=a.util.fillString(String.fromCharCode(0),64),x=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,
309 -2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],v=!0);var b=null,d=a.util.createBuffer(),w=Array(64),q={algorithm:"sha256",blockLength:64,digestLength:32,
310 -messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){q.messageLength=0;q.fullMessageLength=q.messageLength64=[];for(var c=q.messageLengthSize/4,g=0;g<c;++g)q.fullMessageLength.push(0);d=a.util.createBuffer();b={h0:1779033703,h1:3144134277,h2:1013904242,h3:2773480762,h4:1359893119,h5:2600822924,h6:528734635,h7:1541459225};return q}};q.start();q.update=function(e,l){"utf8"===l&&(e=a.util.encodeUtf8(e));var v=e.length;q.messageLength+=v;for(var v=[v/4294967296>>>0,v>>>0],x=q.fullMessageLength.length-
311 -1;0<=x;--x)q.fullMessageLength[x]+=v[1],v[1]=v[0]+(q.fullMessageLength[x]/4294967296>>>0),q.fullMessageLength[x]>>>=0,v[0]=v[1]/4294967296>>>0;d.putBytes(e);c(b,w,d);(2048<d.read||0===d.length())&&d.compact();return q};q.digest=function(){var v=a.util.createBuffer();v.putBytes(d.bytes());v.putBytes(e.substr(0,q.blockLength-(q.fullMessageLength[q.fullMessageLength.length-1]+q.messageLengthSize&q.blockLength-1)));a.util.createBuffer();for(var x,n,p=8*q.fullMessageLength[0],F=0;F<q.fullMessageLength.length;++F)x=
312 -8*q.fullMessageLength[F+1],n=x/4294967296>>>0,p+=n,v.putInt32(p>>>0),p=x;x={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3,h4:b.h4,h5:b.h5,h6:b.h6,h7:b.h7};c(x,w,v);v=a.util.createBuffer();v.putInt32(x.h0);v.putInt32(x.h1);v.putInt32(x.h2);v.putInt32(x.h3);v.putInt32(x.h4);v.putInt32(x.h5);v.putInt32(x.h6);v.putInt32(x.h7);return v};return q};var e=null,v=!1,x=null}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge=
313 -{}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.sha256)return c.sha256;c.defined.sha256=!0;for(var e=0;e<g.length;++e)g[e](c);return c.sha256}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha256",["require","module","./util"],function(){p.apply(null,
314 -Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){for(var g,m,e,h,l,z,D,A,v,w,u,x,n,P,p,N,r,T,W,U,M,V,J,H,S,Z=d.length();128<=Z;){for(S=0;16>S;++S)b[S][0]=d.getInt32()>>>0,b[S][1]=d.getInt32()>>>0;for(;80>S;++S)l=b[S-2],v=l[0],l=l[1],g=((v>>>19|l<<13)^(l>>>29|v<<3)^v>>>6)>>>0,m=((v<<13|l>>>19)^(l<<3|v>>>29)^(v<<26|l>>>6))>>>0,l=b[S-15],v=l[0],l=l[1],e=((v>>>1|l<<31)^(v>>>8|l<<24)^v>>>7)>>>0,h=((v<<31|l>>>1)^(v<<24|l>>>8)^(v<<25|l>>>7))>>>0,v=b[S-7],w=b[S-16],
315 -l=m+v[1]+h+w[1],b[S][0]=g+v[0]+e+w[0]+(l/4294967296>>>0)>>>0,b[S][1]=l>>>0;v=a[0][0];w=a[0][1];u=a[1][0];x=a[1][1];n=a[2][0];P=a[2][1];p=a[3][0];N=a[3][1];r=a[4][0];T=a[4][1];W=a[5][0];U=a[5][1];M=a[6][0];V=a[6][1];J=a[7][0];H=a[7][1];for(S=0;80>S;++S)g=((r>>>14|T<<18)^(r>>>18|T<<14)^(T>>>9|r<<23))>>>0,l=((r<<18|T>>>14)^(r<<14|T>>>18)^(T<<23|r>>>9))>>>0,m=(M^r&(W^M))>>>0,z=(V^T&(U^V))>>>0,e=((v>>>28|w<<4)^(w>>>2|v<<30)^(w>>>7|v<<25))>>>0,h=((v<<4|w>>>28)^(w<<30|v>>>2)^(w<<25|v>>>7))>>>0,D=(v&u|n&
316 -(v^u))>>>0,A=(w&x|P&(w^x))>>>0,l=H+l+z+k[S][1]+b[S][1],g=J+g+m+k[S][0]+b[S][0]+(l/4294967296>>>0)>>>0,m=l>>>0,l=h+A,e=e+D+(l/4294967296>>>0)>>>0,h=l>>>0,J=M,H=V,M=W,V=U,W=r,U=T,l=N+m,r=p+g+(l/4294967296>>>0)>>>0,T=l>>>0,p=n,N=P,n=u,P=x,u=v,x=w,l=m+h,v=g+e+(l/4294967296>>>0)>>>0,w=l>>>0;l=a[0][1]+w;a[0][0]=a[0][0]+v+(l/4294967296>>>0)>>>0;a[0][1]=l>>>0;l=a[1][1]+x;a[1][0]=a[1][0]+u+(l/4294967296>>>0)>>>0;a[1][1]=l>>>0;l=a[2][1]+P;a[2][0]=a[2][0]+n+(l/4294967296>>>0)>>>0;a[2][1]=l>>>0;l=a[3][1]+N;a[3][0]=
317 -a[3][0]+p+(l/4294967296>>>0)>>>0;a[3][1]=l>>>0;l=a[4][1]+T;a[4][0]=a[4][0]+r+(l/4294967296>>>0)>>>0;a[4][1]=l>>>0;l=a[5][1]+U;a[5][0]=a[5][0]+W+(l/4294967296>>>0)>>>0;a[5][1]=l>>>0;l=a[6][1]+V;a[6][0]=a[6][0]+M+(l/4294967296>>>0)>>>0;a[6][1]=l>>>0;l=a[7][1]+H;a[7][0]=a[7][0]+J+(l/4294967296>>>0)>>>0;a[7][1]=l>>>0;Z-=128}}var d=a.sha512=a.sha512||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha512=a.md.algorithms.sha512=d;var e=a.sha384=a.sha512.sha384=a.sha512.sha384||{};e.create=function(){return d.create("SHA-384")};
318 -a.md.sha384=a.md.algorithms.sha384=e;a.sha512.sha256=a.sha512.sha256||{create:function(){return d.create("SHA-512/256")}};a.md["sha512/256"]=a.md.algorithms["sha512/256"]=a.sha512.sha256;a.sha512.sha224=a.sha512.sha224||{create:function(){return d.create("SHA-512/224")}};a.md["sha512/224"]=a.md.algorithms["sha512/224"]=a.sha512.sha224;d.create=function(b){x||(v=String.fromCharCode(128),v+=a.util.fillString(String.fromCharCode(0),128),k=[[1116352408,3609767458],[1899447441,602891725],[3049323471,3964484399],
319 -[3921009573,2173295548],[961987163,4081628472],[1508970993,3053834265],[2453635748,2937671579],[2870763221,3664609560],[3624381080,2734883394],[310598401,1164996542],[607225278,1323610764],[1426881987,3590304994],[1925078388,4068182383],[2162078206,991336113],[2614888103,633803317],[3248222580,3479774868],[3835390401,2666613458],[4022224774,944711139],[264347078,2341262773],[604807628,2007800933],[770255983,1495990901],[1249150122,1856431235],[1555081692,3175218132],[1996064986,2198950837],[2554220882,
320 -3999719339],[2821834349,766784016],[2952996808,2566594879],[3210313671,3203337956],[3336571891,1034457026],[3584528711,2466948901],[113926993,3758326383],[338241895,168717936],[666307205,1188179964],[773529912,1546045734],[1294757372,1522805485],[1396182291,2643833823],[1695183700,2343527390],[1986661051,1014477480],[2177026350,1206759142],[2456956037,344077627],[2730485921,1290863460],[2820302411,3158454273],[3259730800,3505952657],[3345764771,106217008],[3516065817,3606008344],[3600352804,1432725776],
321 -[4094571909,1467031594],[275423344,851169720],[430227734,3100823752],[506948616,1363258195],[659060556,3750685593],[883997877,3785050280],[958139571,3318307427],[1322822218,3812723403],[1537002063,2003034995],[1747873779,3602036899],[1955562222,1575990012],[2024104815,1125592928],[2227730452,2716904306],[2361852424,442776044],[2428436474,593698344],[2756734187,3733110249],[3204031479,2999351573],[3329325298,3815920427],[3391569614,3928383900],[3515267271,566280711],[3940187606,3454069534],[4118630271,
322 -4000239992],[116418474,1914138554],[174292421,2731055270],[289380356,3203993006],[460393269,320620315],[685471733,587496836],[852142971,1086792851],[1017036298,365543100],[1126000580,2618297676],[1288033470,3409855158],[1501505948,4234509866],[1607167915,987167468],[1816402316,1246189591]],h={"SHA-512":[[1779033703,4089235720],[3144134277,2227873595],[1013904242,4271175723],[2773480762,1595750129],[1359893119,2917565137],[2600822924,725511199],[528734635,4215389547],[1541459225,327033209]],"SHA-384":[[3418070365,
323 -3238371032],[1654270250,914150663],[2438529370,812702999],[355462360,4144912697],[1731405415,4290775857],[2394180231,1750603025],[3675008525,1694076839],[1203062813,3204075428]],"SHA-512/256":[[573645204,4230739756],[2673172387,3360449730],[596883563,1867755857],[2520282905,1497426621],[2519219938,2827943907],[3193839141,1401305490],[721525244,746961066],[246885852,2177182882]],"SHA-512/224":[[2352822216,424955298],[1944164710,2312950998],[502970286,855612546],[1738396948,1479516111],[258812777,2077511080],
324 -[2011393907,79989058],[1067287976,1780299464],[286451373,2446758561]]},x=!0);"undefined"===typeof b&&(b="SHA-512");if(!(b in h))throw Error("Invalid SHA-512 algorithm: "+b);for(var d=h[b],e=null,l=a.util.createBuffer(),w=Array(80),n=0;80>n;++n)w[n]=Array(2);var p={algorithm:b.replace("-","").toLowerCase(),blockLength:128,digestLength:64,messageLength:0,fullMessageLength:null,messageLengthSize:16,start:function(){p.messageLength=0;p.fullMessageLength=p.messageLength128=[];for(var b=p.messageLengthSize/
325 -4,c=0;c<b;++c)p.fullMessageLength.push(0);l=a.util.createBuffer();e=Array(d.length);for(c=0;c<d.length;++c)e[c]=d[c].slice(0);return p}};p.start();p.update=function(b,d){"utf8"===d&&(b=a.util.encodeUtf8(b));var h=b.length;p.messageLength+=h;for(var h=[h/4294967296>>>0,h>>>0],k=p.fullMessageLength.length-1;0<=k;--k)p.fullMessageLength[k]+=h[1],h[1]=h[0]+(p.fullMessageLength[k]/4294967296>>>0),p.fullMessageLength[k]>>>=0,h[0]=h[1]/4294967296>>>0;l.putBytes(b);c(e,w,l);(2048<l.read||0===l.length())&&
326 -l.compact();return p};p.digest=function(){var d=a.util.createBuffer();d.putBytes(l.bytes());d.putBytes(v.substr(0,p.blockLength-(p.fullMessageLength[p.fullMessageLength.length-1]+p.messageLengthSize&p.blockLength-1)));a.util.createBuffer();for(var h,k,q=8*p.fullMessageLength[0],x=0;x<p.fullMessageLength.length;++x)h=8*p.fullMessageLength[x+1],k=h/4294967296>>>0,q+=k,d.putInt32(q>>>0),q=h;h=Array(e.length);for(x=0;x<e.length;++x)h[x]=e[x].slice(0);c(h,w,d);d=a.util.createBuffer();k="SHA-512"===b?h.length:
327 -"SHA-384"===b?h.length-2:h.length-4;for(x=0;x<k;++x)d.putInt32(h[x][0]),x===k-1&&"SHA-512/224"===b||d.putInt32(h[x][1]);return d};return p};var v=null,x=!1,k=null,h=null}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.sha512)return c.sha512;c.defined.sha512=
328 -!0;for(var e=0;e<g.length;++e)g[e](c);return c.sha512}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha512",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.md=a.md||{};a.md.algorithms={md5:a.md5,sha1:a.sha1,sha256:a.sha256};a.md.md5=a.md5;a.md.sha1=a.sha1;
329 -a.md.sha256=a.sha256}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.md)return c.md;c.defined.md=!0;for(var e=0;e<g.length;++e)g[e](c);return c.md}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,
330 -Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/md","require module ./md5 ./sha1 ./sha256 ./sha512".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){(a.hmac=a.hmac||{}).create=function(){var b=null,c=null,d=null,e={start:function(e,k){if(null!==e)if("string"===typeof e)if(e=e.toLowerCase(),e in a.md.algorithms)b=a.md.algorithms[e].create();else throw Error('Unknown hash algorithm "'+
331 -e+'"');else b=e;if(null!==k){if("string"===typeof k)k=a.util.createBuffer(k);else if(a.util.isArray(k)){var h=k;k=a.util.createBuffer();for(var v=0;v<h.length;++v)k.putByte(h[v])}var q=k.length();q>b.blockLength&&(b.start(),b.update(k.bytes()),k=b.digest());c=a.util.createBuffer();d=a.util.createBuffer();q=k.length();for(v=0;v<q;++v)h=k.at(v),c.putByte(54^h),d.putByte(92^h);if(q<b.blockLength)for(h=b.blockLength-q,v=0;v<h;++v)c.putByte(54),d.putByte(92);c=c.bytes();d=d.bytes()}b.start();b.update(c)},
332 -update:function(a){b.update(a)},getMac:function(){var a=b.digest().bytes();b.start();b.update(d);b.update(a);return b.digest()}};e.digest=e.getMac;return e}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.hmac)return c.hmac;c.defined.hmac=!0;for(var e=
333 -0;e<g.length;++e)g[e](c);return c.hmac}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/hmac",["require","module","./md","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a){for(var b=a.name+": ",d=[],g=function(a,b){return" "+b},m=0;m<a.values.length;++m)d.push(a.values[m].replace(/^(\S+\r\n)/,
334 -g));b+=d.join(",")+"\r\n";d=0;a=-1;for(m=0;m<b.length;++m,++d)if(65<d&&-1!==a)d=b[a],","===d?(++a,b=b.substr(0,a)+"\r\n "+b.substr(a)):b=b.substr(0,a)+"\r\n"+d+b.substr(a+1),d=m-a-1,a=-1,++m;else if(" "===b[m]||"\t"===b[m]||","===b[m])a=m;return b}var d=a.pem=a.pem||{};d.encode=function(b,d){d=d||{};var e="-----BEGIN "+b.type+"-----\r\n",k;b.procType&&(k={name:"Proc-Type",values:[String(b.procType.version),b.procType.type]},e+=c(k));b.contentDomain&&(k={name:"Content-Domain",values:[b.contentDomain]},
335 -e+=c(k));b.dekInfo&&(k={name:"DEK-Info",values:[b.dekInfo.algorithm]},b.dekInfo.parameters&&k.values.push(b.dekInfo.parameters),e+=c(k));if(b.headers)for(k=0;k<b.headers.length;++k)e+=c(b.headers[k]);b.procType&&(e+="\r\n");e+=a.util.encode64(b.body,d.maxline||64)+"\r\n";return e+="-----END "+b.type+"-----\r\n"};d.decode=function(b){for(var c=[],d=/\s*-----BEGIN ([A-Z0-9- ]+)-----\r?\n?([\x21-\x7e\s]+?(?:\r?\n\r?\n))?([:A-Za-z0-9+\/=\s]+?)-----END \1-----/g,g=/([\x21-\x7e]+):\s*([\x21-\x7e\s^:]+)/,
336 -e=/\r?\n/,w;;){w=d.exec(b);if(!w)break;var q={type:w[1],procType:null,contentDomain:null,dekInfo:null,headers:[],body:a.util.decode64(w[3])};c.push(q);if(w[2]){for(var n=w[2].split(e),B=0;w&&B<n.length;){w=n[B].replace(/\s+$/,"");for(var y=B+1;y<n.length;++y){var p=n[y];if(!/\s/.test(p[0]))break;w+=p;B=y}if(w=w.match(g)){for(var y={name:w[1],values:[]},p=w[2].split(","),F=0;F<p.length;++F)y.values.push(p[F].replace(/^\s+/,""));if(q.procType)if(q.contentDomain||"Content-Domain"!==y.name)if(q.dekInfo||
337 -"DEK-Info"!==y.name)q.headers.push(y);else{if(0===y.values.length)throw Error('Invalid PEM formatted message. The "DEK-Info" header must have at least one subfield.');q.dekInfo={algorithm:p[0],parameters:p[1]||null}}else q.contentDomain=p[0]||"";else{if("Proc-Type"!==y.name)throw Error('Invalid PEM formatted message. The first encapsulated header must be "Proc-Type".');if(2!==y.values.length)throw Error('Invalid PEM formatted message. The "Proc-Type" header must have two subfields.');q.procType={version:p[0],
338 -type:p[1]}}}++B}if("ENCRYPTED"===q.procType&&!q.dekInfo)throw Error('Invalid PEM formatted message. The "DEK-Info" header must be present if "Proc-Type" is "ENCRYPTED".');}}if(0===c.length)throw Error("Invalid PEM formatted message.");return c}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);
339 -c=c||{};c.defined=c.defined||{};if(c.defined.pem)return c.pem;c.defined.pem=!0;for(var e=0;e<g.length;++e)g[e](c);return c.pem}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pem",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d){a.cipher.registerAlgorithm(b,
340 -function(){return new a.des.Algorithm(b,d)})}function d(a,b,c,g){var e=32===a.length?3:9;g=3===e?g?[30,-2,-2]:[0,32,2]:g?[94,62,-2,32,64,2,30,-2,-2]:[0,32,2,62,30,-2,64,96,2];var m=b[0],l=b[1];b=(m>>>4^l)&252645135;l^=b;m^=b<<4;b=(m>>>16^l)&65535;l^=b;m^=b<<16;b=(l>>>2^m)&858993459;m^=b;l^=b<<2;b=(l>>>8^m)&16711935;m^=b;l^=b<<8;b=(m>>>1^l)&1431655765;for(var l=l^b,m=m^b<<1,m=m<<1|m>>>31,l=l<<1|l>>>31,w=0;w<e;w+=3){for(var r=g[w+1],u=g[w+2],O=g[w];O!=r;O+=u){var R=l^a[O],P=(l>>>4|l<<28)^a[O+1];b=m;
341 -m=l;l=b^(x[R>>>24&63]|h[R>>>16&63]|q[R>>>8&63]|B[R&63]|v[P>>>24&63]|k[P>>>16&63]|n[P>>>8&63]|p[P&63])}b=m;m=l;l=b}m=m>>>1|m<<31;l=l>>>1|l<<31;b=(m>>>1^l)&1431655765;l^=b;m^=b<<1;b=(l>>>8^m)&16711935;m^=b;l^=b<<8;b=(l>>>2^m)&858993459;m^=b;l^=b<<2;b=(m>>>16^l)&65535;l^=b;m^=b<<16;b=(m>>>4^l)&252645135;c[0]=m^b<<4;c[1]=l^b}function e(b){b=b||{};var c="DES-"+(b.mode||"CBC").toUpperCase(),d;d=b.decrypt?a.cipher.createDecipher(c,b.key):a.cipher.createCipher(c,b.key);var g=d.start;d.start=function(b,c){var e=
342 -null;c instanceof a.util.ByteBuffer&&(e=c,c={});c=c||{};c.output=e;c.iv=b;g.call(d,c)};return d}a.des=a.des||{};a.des.startEncrypting=function(a,b,c,d){a=e({key:a,output:c,decrypt:!1,mode:d||(null===b?"ECB":"CBC")});a.start(b);return a};a.des.createEncryptionCipher=function(a,b){return e({key:a,output:null,decrypt:!1,mode:b})};a.des.startDecrypting=function(a,b,c,d){a=e({key:a,output:c,decrypt:!0,mode:d||(null===b?"ECB":"CBC")});a.start(b);return a};a.des.createDecryptionCipher=function(a,b){return e({key:a,
286 +b)return c.putSignedInt(b,32);c=Error("Integer too large; max is 32-bits.");c.integer=b;throw c;};c.derToInteger=function(b){"string"===typeof b&&(b=a.util.createBuffer(b));var c=8*b.length();if(32<c)throw Error("Integer too large; max is 32-bits.");return b.getSignedInt(c)};c.validate=function(b,d,e,h){var m=!1;if(b.tagClass!==d.tagClass&&"undefined"!==typeof d.tagClass||b.type!==d.type&&"undefined"!==typeof d.type)h&&(b.tagClass!==d.tagClass&&h.push("["+d.name+'] Expected tag class "'+d.tagClass+
287 +'", got "'+b.tagClass+'"'),b.type!==d.type&&h.push("["+d.name+'] Expected type "'+d.type+'", got "'+b.type+'"'));else if(b.constructed===d.constructed||"undefined"===typeof d.constructed){m=!0;if(d.value&&a.util.isArray(d.value))for(var u=0,k=0;m&&k<d.value.length;++k)m=d.value[k].optional||!1,b.value[u]&&((m=c.validate(b.value[u],d.value[k],e,h))?++u:d.value[k].optional&&(m=!0)),!m&&h&&h.push("["+d.name+'] Tag class "'+d.tagClass+'", type "'+d.type+'" expected value length "'+d.value.length+'", got "'+
288 +b.value.length+'"');m&&e&&(d.capture&&(e[d.capture]=b.value),d.captureAsn1&&(e[d.captureAsn1]=b))}else h&&h.push("["+d.name+'] Expected constructed "'+d.constructed+'", got "'+b.constructed+'"');return m};var e=/[^\\u0000-\\u00ff]/;c.prettyPrint=function(b,d,h){var g="";d=d||0;h=h||2;0<d&&(g+="\n");for(var x="",u=0;u<d*h;++u)x+=" ";g+=x+"Tag: ";switch(b.tagClass){case c.Class.UNIVERSAL:g+="Universal:";break;case c.Class.APPLICATION:g+="Application:";break;case c.Class.CONTEXT_SPECIFIC:g+="Context-Specific:";
289 +break;case c.Class.PRIVATE:g+="Private:"}if(b.tagClass===c.Class.UNIVERSAL)switch(g+=b.type,b.type){case c.Type.NONE:g+=" (None)";break;case c.Type.BOOLEAN:g+=" (Boolean)";break;case c.Type.BITSTRING:g+=" (Bit string)";break;case c.Type.INTEGER:g+=" (Integer)";break;case c.Type.OCTETSTRING:g+=" (Octet string)";break;case c.Type.NULL:g+=" (Null)";break;case c.Type.OID:g+=" (Object Identifier)";break;case c.Type.ODESC:g+=" (Object Descriptor)";break;case c.Type.EXTERNAL:g+=" (External or Instance of)";
290 +break;case c.Type.REAL:g+=" (Real)";break;case c.Type.ENUMERATED:g+=" (Enumerated)";break;case c.Type.EMBEDDED:g+=" (Embedded PDV)";break;case c.Type.UTF8:g+=" (UTF8)";break;case c.Type.ROID:g+=" (Relative Object Identifier)";break;case c.Type.SEQUENCE:g+=" (Sequence)";break;case c.Type.SET:g+=" (Set)";break;case c.Type.PRINTABLESTRING:g+=" (Printable String)";break;case c.Type.IA5String:g+=" (IA5String (ASCII))";break;case c.Type.UTCTIME:g+=" (UTC time)";break;case c.Type.GENERALIZEDTIME:g+=" (Generalized time)";
291 +break;case c.Type.BMPSTRING:g+=" (BMP String)"}else g+=b.type;g=g+"\n"+(x+"Constructed: "+b.constructed+"\n");if(b.composed){for(var k=0,A="",u=0;u<b.value.length;++u)void 0!==b.value[u]&&(k+=1,A+=c.prettyPrint(b.value[u],d+1,h),u+1<b.value.length&&(A+=","));g+=x+"Sub values: "+k+A}else if(g+=x+"Value: ",b.type===c.Type.OID&&(d=c.derToOid(b.value),g+=d,a.pki&&a.pki.oids&&d in a.pki.oids&&(g+=" ("+a.pki.oids[d]+") ")),b.type===c.Type.INTEGER)try{g+=c.derToInteger(b.value)}catch(y){g+="0x"+a.util.bytesToHex(b.value)}else b.type===
292 +c.Type.OCTETSTRING?(e.test(b.value)||(g+="("+b.value+") "),g+="0x"+a.util.bytesToHex(b.value)):g=b.type===c.Type.UTF8?g+a.util.decodeUtf8(b.value):b.type===c.Type.PRINTABLESTRING||b.type===c.Type.IA5String?g+b.value:e.test(b.value)?g+("0x"+a.util.bytesToHex(b.value)):0===b.value.length?g+"[null]":g+b.value;return g}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,
293 +c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.asn1)return c.asn1;c.defined.asn1=!0;for(var p=0;p<e.length;++p)e[p](c);return c.asn1}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/asn1",["require","module","./util","./oids"],function(){k.apply(null,Array.prototype.slice.call(arguments,
294 +0))})})();(function(){function b(a){function c(){k=String.fromCharCode(128);k+=a.util.fillString(String.fromCharCode(0),64);q=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,6,11,0,5,10,15,4,9,14,3,8,13,2,7,12,5,8,11,14,1,4,7,10,13,0,3,6,9,12,15,2,0,7,14,5,12,3,10,1,8,15,6,13,4,11,2,9];l=[7,12,17,22,7,12,17,22,7,12,17,22,7,12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,15,21,6,10,15,21,6,10,15,21,6,10,15,21];g=Array(64);for(var b=0;64>b;++b)g[b]=Math.floor(4294967296*
295 +Math.abs(Math.sin(b+1)));x=!0}function d(a,b,c){for(var e,n,h,m,z,C,p,x=c.length();64<=x;){n=a.h0;h=a.h1;m=a.h2;z=a.h3;for(p=0;16>p;++p)b[p]=c.getInt32Le(),e=z^h&(m^z),e=n+e+g[p]+b[p],C=l[p],n=z,z=m,m=h,h+=e<<C|e>>>32-C;for(;32>p;++p)e=m^z&(h^m),e=n+e+g[p]+b[q[p]],C=l[p],n=z,z=m,m=h,h+=e<<C|e>>>32-C;for(;48>p;++p)e=h^m^z,e=n+e+g[p]+b[q[p]],C=l[p],n=z,z=m,m=h,h+=e<<C|e>>>32-C;for(;64>p;++p)e=m^(h|~z),e=n+e+g[p]+b[q[p]],C=l[p],n=z,z=m,m=h,h+=e<<C|e>>>32-C;a.h0=a.h0+n|0;a.h1=a.h1+h|0;a.h2=a.h2+m|0;a.h3=
296 +a.h3+z|0;x-=64}}var e=a.md5=a.md5||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.md5=a.md.algorithms.md5=e;e.create=function(){x||c();var b=null,e=a.util.createBuffer(),g=Array(16),l={algorithm:"md5",blockLength:64,digestLength:16,messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){l.messageLength=0;l.fullMessageLength=l.messageLength64=[];for(var c=l.messageLengthSize/4,d=0;d<c;++d)l.fullMessageLength.push(0);e=a.util.createBuffer();b={h0:1732584193,h1:4023233417,
297 +h2:2562383102,h3:271733878};return l}};l.start();l.update=function(c,m){"utf8"===m&&(c=a.util.encodeUtf8(c));var p=c.length;l.messageLength+=p;for(var p=[p/4294967296>>>0,p>>>0],z=l.fullMessageLength.length-1;0<=z;--z)l.fullMessageLength[z]+=p[1],p[1]=p[0]+(l.fullMessageLength[z]/4294967296>>>0),l.fullMessageLength[z]>>>=0,p[0]=p[1]/4294967296>>>0;e.putBytes(c);d(b,g,e);(2048<e.read||0===e.length())&&e.compact();return l};l.digest=function(){var c=a.util.createBuffer();c.putBytes(e.bytes());c.putBytes(k.substr(0,
298 +l.blockLength-(l.fullMessageLength[l.fullMessageLength.length-1]+l.messageLengthSize&l.blockLength-1)));for(var m,p=0,z=l.fullMessageLength.length-1;0<=z;--z)m=8*l.fullMessageLength[z]+p,p=m/4294967296>>>0,c.putInt32Le(m>>>0);m={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3};d(m,g,c);c=a.util.createBuffer();c.putInt32Le(m.h0);c.putInt32Le(m.h1);c.putInt32Le(m.h2);c.putInt32Le(m.h3);return c};return l};var k=null,q=null,l=null,g=null,x=!1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=
299 +!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.md5)return c.md5;c.defined.md5=!0;for(var p=0;p<e.length;++p)e[p](c);return c.md5}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,
300 +0))};a("js/md5",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){for(var e,n,h,m,p,k,w,D,z=d.length();64<=z;){n=a.h0;h=a.h1;m=a.h2;p=a.h3;k=a.h4;for(D=0;16>D;++D)e=d.getInt32(),b[D]=e,w=p^h&(m^p),e=(n<<5|n>>>27)+w+k+1518500249+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;for(;20>D;++D)e=b[D-3]^b[D-8]^b[D-14]^b[D-16],e=e<<1|e>>>31,b[D]=e,w=p^h&(m^p),e=(n<<5|n>>>27)+w+k+1518500249+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;for(;32>
301 +D;++D)e=b[D-3]^b[D-8]^b[D-14]^b[D-16],e=e<<1|e>>>31,b[D]=e,w=h^m^p,e=(n<<5|n>>>27)+w+k+1859775393+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;for(;40>D;++D)e=b[D-6]^b[D-16]^b[D-28]^b[D-32],e=e<<2|e>>>30,b[D]=e,w=h^m^p,e=(n<<5|n>>>27)+w+k+1859775393+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;for(;60>D;++D)e=b[D-6]^b[D-16]^b[D-28]^b[D-32],e=e<<2|e>>>30,b[D]=e,w=h&m|p&(h^m),e=(n<<5|n>>>27)+w+k+2400959708+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;for(;80>D;++D)e=b[D-6]^b[D-16]^b[D-28]^b[D-32],e=e<<2|e>>>30,b[D]=e,w=h^m^p,e=(n<<5|n>>>
302 +27)+w+k+3395469782+e,k=p,p=m,m=h<<30|h>>>2,h=n,n=e;a.h0=a.h0+n|0;a.h1=a.h1+h|0;a.h2=a.h2+m|0;a.h3=a.h3+p|0;a.h4=a.h4+k|0;z-=64}}var d=a.sha1=a.sha1||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha1=a.md.algorithms.sha1=d;d.create=function(){k||(e=String.fromCharCode(128),e+=a.util.fillString(String.fromCharCode(0),64),k=!0);var b=null,d=a.util.createBuffer(),h=Array(80),x={algorithm:"sha1",blockLength:64,digestLength:20,messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){x.messageLength=
303 +0;x.fullMessageLength=x.messageLength64=[];for(var c=x.messageLengthSize/4,e=0;e<c;++e)x.fullMessageLength.push(0);d=a.util.createBuffer();b={h0:1732584193,h1:4023233417,h2:2562383102,h3:271733878,h4:3285377520};return x}};x.start();x.update=function(e,m){"utf8"===m&&(e=a.util.encodeUtf8(e));var k=e.length;x.messageLength+=k;for(var k=[k/4294967296>>>0,k>>>0],w=x.fullMessageLength.length-1;0<=w;--w)x.fullMessageLength[w]+=k[1],k[1]=k[0]+(x.fullMessageLength[w]/4294967296>>>0),x.fullMessageLength[w]>>>=
304 +0,k[0]=k[1]/4294967296>>>0;d.putBytes(e);c(b,h,d);(2048<d.read||0===d.length())&&d.compact();return x};x.digest=function(){var u=a.util.createBuffer();u.putBytes(d.bytes());u.putBytes(e.substr(0,x.blockLength-(x.fullMessageLength[x.fullMessageLength.length-1]+x.messageLengthSize&x.blockLength-1)));a.util.createBuffer();for(var k,w,q=8*x.fullMessageLength[0],H=0;H<x.fullMessageLength.length;++H)k=8*x.fullMessageLength[H+1],w=k/4294967296>>>0,q+=w,u.putInt32(q>>>0),q=k;k={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3,
305 +h4:b.h4};c(k,h,u);u=a.util.createBuffer();u.putInt32(k.h0);u.putInt32(k.h1);u.putInt32(k.h2);u.putInt32(k.h3);u.putInt32(k.h4);return u};return x};var e=null,k=!1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.sha1)return c.sha1;c.defined.sha1=
306 +!0;for(var p=0;p<e.length;++p)e[p](c);return c.sha1}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha1",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){for(var e,n,h,m,p,k,D,z,C,F,w,v,r,R=d.length();64<=R;){for(p=0;16>p;++p)b[p]=d.getInt32();
307 +for(;64>p;++p)e=b[p-2],e=(e>>>17|e<<15)^(e>>>19|e<<13)^e>>>10,n=b[p-15],n=(n>>>7|n<<25)^(n>>>18|n<<14)^n>>>3,b[p]=e+b[p-7]+n+b[p-16]|0;k=a.h0;D=a.h1;z=a.h2;C=a.h3;F=a.h4;w=a.h5;v=a.h6;r=a.h7;for(p=0;64>p;++p)e=(F>>>6|F<<26)^(F>>>11|F<<21)^(F>>>25|F<<7),h=v^F&(w^v),n=(k>>>2|k<<30)^(k>>>13|k<<19)^(k>>>22|k<<10),m=k&D|z&(k^D),e=r+e+h+q[p]+b[p],n+=m,r=v,v=w,w=F,F=C+e|0,C=z,z=D,D=k,k=e+n|0;a.h0=a.h0+k|0;a.h1=a.h1+D|0;a.h2=a.h2+z|0;a.h3=a.h3+C|0;a.h4=a.h4+F|0;a.h5=a.h5+w|0;a.h6=a.h6+v|0;a.h7=a.h7+r|0;R-=
308 +64}}var d=a.sha256=a.sha256||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha256=a.md.algorithms.sha256=d;d.create=function(){k||(e=String.fromCharCode(128),e+=a.util.fillString(String.fromCharCode(0),64),q=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,
309 +2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],k=!0);var b=null,d=a.util.createBuffer(),h=Array(64),u={algorithm:"sha256",blockLength:64,digestLength:32,
310 +messageLength:0,fullMessageLength:null,messageLengthSize:8,start:function(){u.messageLength=0;u.fullMessageLength=u.messageLength64=[];for(var c=u.messageLengthSize/4,e=0;e<c;++e)u.fullMessageLength.push(0);d=a.util.createBuffer();b={h0:1779033703,h1:3144134277,h2:1013904242,h3:2773480762,h4:1359893119,h5:2600822924,h6:528734635,h7:1541459225};return u}};u.start();u.update=function(e,m){"utf8"===m&&(e=a.util.encodeUtf8(e));var k=e.length;u.messageLength+=k;for(var k=[k/4294967296>>>0,k>>>0],w=u.fullMessageLength.length-
311 +1;0<=w;--w)u.fullMessageLength[w]+=k[1],k[1]=k[0]+(u.fullMessageLength[w]/4294967296>>>0),u.fullMessageLength[w]>>>=0,k[0]=k[1]/4294967296>>>0;d.putBytes(e);c(b,h,d);(2048<d.read||0===d.length())&&d.compact();return u};u.digest=function(){var k=a.util.createBuffer();k.putBytes(d.bytes());k.putBytes(e.substr(0,u.blockLength-(u.fullMessageLength[u.fullMessageLength.length-1]+u.messageLengthSize&u.blockLength-1)));a.util.createBuffer();for(var w,q,B=8*u.fullMessageLength[0],E=0;E<u.fullMessageLength.length;++E)w=
312 +8*u.fullMessageLength[E+1],q=w/4294967296>>>0,B+=q,k.putInt32(B>>>0),B=w;w={h0:b.h0,h1:b.h1,h2:b.h2,h3:b.h3,h4:b.h4,h5:b.h5,h6:b.h6,h7:b.h7};c(w,h,k);k=a.util.createBuffer();k.putInt32(w.h0);k.putInt32(w.h1);k.putInt32(w.h2);k.putInt32(w.h3);k.putInt32(w.h4);k.putInt32(w.h5);k.putInt32(w.h6);k.putInt32(w.h7);return k};return u};var e=null,k=!1,q=null}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge=
313 +{}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.sha256)return c.sha256;c.defined.sha256=!0;for(var p=0;p<e.length;++p)e[p](c);return c.sha256}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha256",["require","module","./util"],function(){k.apply(null,
314 +Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){for(var e,n,h,g,m,z,C,p,k,w,r,q,B,T,ca,O,v,V,ba,Z,N,aa,L,G,I,Y=d.length();128<=Y;){for(I=0;16>I;++I)b[I][0]=d.getInt32()>>>0,b[I][1]=d.getInt32()>>>0;for(;80>I;++I)m=b[I-2],k=m[0],m=m[1],e=((k>>>19|m<<13)^(m>>>29|k<<3)^k>>>6)>>>0,n=((k<<13|m>>>19)^(m<<3|k>>>29)^(k<<26|m>>>6))>>>0,m=b[I-15],k=m[0],m=m[1],h=((k>>>1|m<<31)^(k>>>8|m<<24)^k>>>7)>>>0,g=((k<<31|m>>>1)^(k<<24|m>>>8)^(k<<25|m>>>7))>>>0,k=b[I-7],w=b[I-
315 +16],m=n+k[1]+g+w[1],b[I][0]=e+k[0]+h+w[0]+(m/4294967296>>>0)>>>0,b[I][1]=m>>>0;k=a[0][0];w=a[0][1];r=a[1][0];q=a[1][1];B=a[2][0];T=a[2][1];ca=a[3][0];O=a[3][1];v=a[4][0];V=a[4][1];ba=a[5][0];Z=a[5][1];N=a[6][0];aa=a[6][1];L=a[7][0];G=a[7][1];for(I=0;80>I;++I)e=((v>>>14|V<<18)^(v>>>18|V<<14)^(V>>>9|v<<23))>>>0,m=((v<<18|V>>>14)^(v<<14|V>>>18)^(V<<23|v>>>9))>>>0,n=(N^v&(ba^N))>>>0,z=(aa^V&(Z^aa))>>>0,h=((k>>>28|w<<4)^(w>>>2|k<<30)^(w>>>7|k<<25))>>>0,g=((k<<4|w>>>28)^(w<<30|k>>>2)^(w<<25|k>>>7))>>>0,
316 +C=(k&r|B&(k^r))>>>0,p=(w&q|T&(w^q))>>>0,m=G+m+z+l[I][1]+b[I][1],e=L+e+n+l[I][0]+b[I][0]+(m/4294967296>>>0)>>>0,n=m>>>0,m=g+p,h=h+C+(m/4294967296>>>0)>>>0,g=m>>>0,L=N,G=aa,N=ba,aa=Z,ba=v,Z=V,m=O+n,v=ca+e+(m/4294967296>>>0)>>>0,V=m>>>0,ca=B,O=T,B=r,T=q,r=k,q=w,m=n+g,k=e+h+(m/4294967296>>>0)>>>0,w=m>>>0;m=a[0][1]+w;a[0][0]=a[0][0]+k+(m/4294967296>>>0)>>>0;a[0][1]=m>>>0;m=a[1][1]+q;a[1][0]=a[1][0]+r+(m/4294967296>>>0)>>>0;a[1][1]=m>>>0;m=a[2][1]+T;a[2][0]=a[2][0]+B+(m/4294967296>>>0)>>>0;a[2][1]=m>>>
317 +0;m=a[3][1]+O;a[3][0]=a[3][0]+ca+(m/4294967296>>>0)>>>0;a[3][1]=m>>>0;m=a[4][1]+V;a[4][0]=a[4][0]+v+(m/4294967296>>>0)>>>0;a[4][1]=m>>>0;m=a[5][1]+Z;a[5][0]=a[5][0]+ba+(m/4294967296>>>0)>>>0;a[5][1]=m>>>0;m=a[6][1]+aa;a[6][0]=a[6][0]+N+(m/4294967296>>>0)>>>0;a[6][1]=m>>>0;m=a[7][1]+G;a[7][0]=a[7][0]+L+(m/4294967296>>>0)>>>0;a[7][1]=m>>>0;Y-=128}}var d=a.sha512=a.sha512||{};a.md=a.md||{};a.md.algorithms=a.md.algorithms||{};a.md.sha512=a.md.algorithms.sha512=d;var e=a.sha384=a.sha512.sha384=a.sha512.sha384||
318 +{};e.create=function(){return d.create("SHA-384")};a.md.sha384=a.md.algorithms.sha384=e;a.sha512.sha256=a.sha512.sha256||{create:function(){return d.create("SHA-512/256")}};a.md["sha512/256"]=a.md.algorithms["sha512/256"]=a.sha512.sha256;a.sha512.sha224=a.sha512.sha224||{create:function(){return d.create("SHA-512/224")}};a.md["sha512/224"]=a.md.algorithms["sha512/224"]=a.sha512.sha224;d.create=function(b){q||(k=String.fromCharCode(128),k+=a.util.fillString(String.fromCharCode(0),128),l=[[1116352408,
319 +3609767458],[1899447441,602891725],[3049323471,3964484399],[3921009573,2173295548],[961987163,4081628472],[1508970993,3053834265],[2453635748,2937671579],[2870763221,3664609560],[3624381080,2734883394],[310598401,1164996542],[607225278,1323610764],[1426881987,3590304994],[1925078388,4068182383],[2162078206,991336113],[2614888103,633803317],[3248222580,3479774868],[3835390401,2666613458],[4022224774,944711139],[264347078,2341262773],[604807628,2007800933],[770255983,1495990901],[1249150122,1856431235],
320 +[1555081692,3175218132],[1996064986,2198950837],[2554220882,3999719339],[2821834349,766784016],[2952996808,2566594879],[3210313671,3203337956],[3336571891,1034457026],[3584528711,2466948901],[113926993,3758326383],[338241895,168717936],[666307205,1188179964],[773529912,1546045734],[1294757372,1522805485],[1396182291,2643833823],[1695183700,2343527390],[1986661051,1014477480],[2177026350,1206759142],[2456956037,344077627],[2730485921,1290863460],[2820302411,3158454273],[3259730800,3505952657],[3345764771,
321 +106217008],[3516065817,3606008344],[3600352804,1432725776],[4094571909,1467031594],[275423344,851169720],[430227734,3100823752],[506948616,1363258195],[659060556,3750685593],[883997877,3785050280],[958139571,3318307427],[1322822218,3812723403],[1537002063,2003034995],[1747873779,3602036899],[1955562222,1575990012],[2024104815,1125592928],[2227730452,2716904306],[2361852424,442776044],[2428436474,593698344],[2756734187,3733110249],[3204031479,2999351573],[3329325298,3815920427],[3391569614,3928383900],
322 +[3515267271,566280711],[3940187606,3454069534],[4118630271,4000239992],[116418474,1914138554],[174292421,2731055270],[289380356,3203993006],[460393269,320620315],[685471733,587496836],[852142971,1086792851],[1017036298,365543100],[1126000580,2618297676],[1288033470,3409855158],[1501505948,4234509866],[1607167915,987167468],[1816402316,1246189591]],g={"SHA-512":[[1779033703,4089235720],[3144134277,2227873595],[1013904242,4271175723],[2773480762,1595750129],[1359893119,2917565137],[2600822924,725511199],
323 +[528734635,4215389547],[1541459225,327033209]],"SHA-384":[[3418070365,3238371032],[1654270250,914150663],[2438529370,812702999],[355462360,4144912697],[1731405415,4290775857],[2394180231,1750603025],[3675008525,1694076839],[1203062813,3204075428]],"SHA-512/256":[[573645204,4230739756],[2673172387,3360449730],[596883563,1867755857],[2520282905,1497426621],[2519219938,2827943907],[3193839141,1401305490],[721525244,746961066],[246885852,2177182882]],"SHA-512/224":[[2352822216,424955298],[1944164710,
324 +2312950998],[502970286,855612546],[1738396948,1479516111],[258812777,2077511080],[2011393907,79989058],[1067287976,1780299464],[286451373,2446758561]]},q=!0);"undefined"===typeof b&&(b="SHA-512");if(!(b in g))throw Error("Invalid SHA-512 algorithm: "+b);for(var d=g[b],e=null,h=a.util.createBuffer(),m=Array(80),H=0;80>H;++H)m[H]=Array(2);var E={algorithm:b.replace("-","").toLowerCase(),blockLength:128,digestLength:64,messageLength:0,fullMessageLength:null,messageLengthSize:16,start:function(){E.messageLength=
325 +0;E.fullMessageLength=E.messageLength128=[];for(var b=E.messageLengthSize/4,c=0;c<b;++c)E.fullMessageLength.push(0);h=a.util.createBuffer();e=Array(d.length);for(c=0;c<d.length;++c)e[c]=d[c].slice(0);return E}};E.start();E.update=function(b,d){"utf8"===d&&(b=a.util.encodeUtf8(b));var g=b.length;E.messageLength+=g;for(var g=[g/4294967296>>>0,g>>>0],l=E.fullMessageLength.length-1;0<=l;--l)E.fullMessageLength[l]+=g[1],g[1]=g[0]+(E.fullMessageLength[l]/4294967296>>>0),E.fullMessageLength[l]>>>=0,g[0]=
326 +g[1]/4294967296>>>0;h.putBytes(b);c(e,m,h);(2048<h.read||0===h.length())&&h.compact();return E};E.digest=function(){var d=a.util.createBuffer();d.putBytes(h.bytes());d.putBytes(k.substr(0,E.blockLength-(E.fullMessageLength[E.fullMessageLength.length-1]+E.messageLengthSize&E.blockLength-1)));a.util.createBuffer();for(var g,C,l=8*E.fullMessageLength[0],u=0;u<E.fullMessageLength.length;++u)g=8*E.fullMessageLength[u+1],C=g/4294967296>>>0,l+=C,d.putInt32(l>>>0),l=g;g=Array(e.length);for(u=0;u<e.length;++u)g[u]=
327 +e[u].slice(0);c(g,m,d);d=a.util.createBuffer();C="SHA-512"===b?g.length:"SHA-384"===b?g.length-2:g.length-4;for(u=0;u<C;++u)d.putInt32(g[u][0]),u===C-1&&"SHA-512/224"===b||d.putInt32(g[u][1]);return d};return E};var k=null,q=!1,l=null,g=null}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);
328 +c=c||{};c.defined=c.defined||{};if(c.defined.sha512)return c.sha512;c.defined.sha512=!0;for(var p=0;p<e.length;++p)e[p](c);return c.sha512}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/sha512",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.md=a.md||{};
329 +a.md.algorithms={md5:a.md5,sha1:a.sha1,sha256:a.sha256};a.md.md5=a.md5;a.md.sha1=a.sha1;a.md.sha256=a.sha256}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.md)return c.md;c.defined.md=!0;for(var p=0;p<e.length;++p)e[p](c);return c.md}},v=a;a=function(b,
330 +c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/md","require module ./md5 ./sha1 ./sha256 ./sha512".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){(a.hmac=a.hmac||{}).create=function(){var b=null,c=null,d=null,e={start:function(e,l){if(null!==e)if("string"===typeof e)if(e=e.toLowerCase(),e in a.md.algorithms)b=
331 +a.md.algorithms[e].create();else throw Error('Unknown hash algorithm "'+e+'"');else b=e;if(null!==l){if("string"===typeof l)l=a.util.createBuffer(l);else if(a.util.isArray(l)){var g=l;l=a.util.createBuffer();for(var k=0;k<g.length;++k)l.putByte(g[k])}var u=l.length();u>b.blockLength&&(b.start(),b.update(l.bytes()),l=b.digest());c=a.util.createBuffer();d=a.util.createBuffer();u=l.length();for(k=0;k<u;++k)g=l.at(k),c.putByte(54^g),d.putByte(92^g);if(u<b.blockLength)for(g=b.blockLength-u,k=0;k<g;++k)c.putByte(54),
332 +d.putByte(92);c=c.bytes();d=d.bytes()}b.start();b.update(c)},update:function(a){b.update(a)},getMac:function(){var a=b.digest().bytes();b.start();b.update(d);b.update(a);return b.digest()}};e.digest=e.getMac;return e}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||
333 +{};if(c.defined.hmac)return c.hmac;c.defined.hmac=!0;for(var p=0;p<e.length;++p)e[p](c);return c.hmac}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/hmac",["require","module","./md","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a){for(var b=a.name+": ",d=[],e=function(a,
334 +b){return" "+b},n=0;n<a.values.length;++n)d.push(a.values[n].replace(/^(\S+\r\n)/,e));b+=d.join(",")+"\r\n";d=0;a=-1;for(n=0;n<b.length;++n,++d)if(65<d&&-1!==a)d=b[a],","===d?(++a,b=b.substr(0,a)+"\r\n "+b.substr(a)):b=b.substr(0,a)+"\r\n"+d+b.substr(a+1),d=n-a-1,a=-1,++n;else if(" "===b[n]||"\t"===b[n]||","===b[n])a=n;return b}var d=a.pem=a.pem||{};d.encode=function(b,d){d=d||{};var e="-----BEGIN "+b.type+"-----\r\n",h;b.procType&&(h={name:"Proc-Type",values:[String(b.procType.version),b.procType.type]},
335 +e+=c(h));b.contentDomain&&(h={name:"Content-Domain",values:[b.contentDomain]},e+=c(h));b.dekInfo&&(h={name:"DEK-Info",values:[b.dekInfo.algorithm]},b.dekInfo.parameters&&h.values.push(b.dekInfo.parameters),e+=c(h));if(b.headers)for(h=0;h<b.headers.length;++h)e+=c(b.headers[h]);b.procType&&(e+="\r\n");e+=a.util.encode64(b.body,d.maxline||64)+"\r\n";return e+="-----END "+b.type+"-----\r\n"};d.decode=function(b){for(var c=[],d=/\s*-----BEGIN ([A-Z0-9- ]+)-----\r?\n?([\x21-\x7e\s]+?(?:\r?\n\r?\n))?([:A-Za-z0-9+\/=\s]+?)-----END \1-----/g,
336 +e=/([\x21-\x7e]+):\s*([\x21-\x7e\s^:]+)/,h=/\r?\n/,p;;){p=d.exec(b);if(!p)break;var u={type:p[1],procType:null,contentDomain:null,dekInfo:null,headers:[],body:a.util.decode64(p[3])};c.push(u);if(p[2]){for(var k=p[2].split(h),q=0;p&&q<k.length;){p=k[q].replace(/\s+$/,"");for(var y=q+1;y<k.length;++y){var H=k[y];if(!/\s/.test(H[0]))break;p+=H;q=y}if(p=p.match(e)){for(var y={name:p[1],values:[]},H=p[2].split(","),E=0;E<H.length;++E)y.values.push(H[E].replace(/^\s+/,""));if(u.procType)if(u.contentDomain||
337 +"Content-Domain"!==y.name)if(u.dekInfo||"DEK-Info"!==y.name)u.headers.push(y);else{if(0===y.values.length)throw Error('Invalid PEM formatted message. The "DEK-Info" header must have at least one subfield.');u.dekInfo={algorithm:H[0],parameters:H[1]||null}}else u.contentDomain=H[0]||"";else{if("Proc-Type"!==y.name)throw Error('Invalid PEM formatted message. The first encapsulated header must be "Proc-Type".');if(2!==y.values.length)throw Error('Invalid PEM formatted message. The "Proc-Type" header must have two subfields.');
338 +u.procType={version:H[0],type:H[1]}}}++q}if("ENCRYPTED"===u.procType&&!u.dekInfo)throw Error('Invalid PEM formatted message. The "DEK-Info" header must be present if "Proc-Type" is "ENCRYPTED".');}}if(0===c.length)throw Error("Invalid PEM formatted message.");return c}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);
339 +c=c||{};c.defined=c.defined||{};if(c.defined.pem)return c.pem;c.defined.pem=!0;for(var p=0;p<e.length;++p)e[p](c);return c.pem}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pem",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d){a.cipher.registerAlgorithm(b,
340 +function(){return new a.des.Algorithm(b,d)})}function d(a,b,c,e){var n=32===a.length?3:9;e=3===n?e?[30,-2,-2]:[0,32,2]:e?[94,62,-2,32,64,2,30,-2,-2]:[0,32,2,62,30,-2,64,96,2];var h=b[0],m=b[1];b=(h>>>4^m)&252645135;m^=b;h^=b<<4;b=(h>>>16^m)&65535;m^=b;h^=b<<16;b=(m>>>2^h)&858993459;h^=b;m^=b<<2;b=(m>>>8^h)&16711935;h^=b;m^=b<<8;b=(h>>>1^m)&1431655765;for(var m=m^b,h=h^b<<1,h=h<<1|h>>>31,m=m<<1|m>>>31,p=0;p<n;p+=3){for(var v=e[p+1],r=e[p+2],R=e[p];R!=v;R+=r){var U=m^a[R],T=(m>>>4|m<<28)^a[R+1];b=h;
341 +h=m;m=b^(q[U>>>24&63]|g[U>>>16&63]|u[U>>>8&63]|A[U&63]|k[T>>>24&63]|l[T>>>16&63]|x[T>>>8&63]|J[T&63])}b=h;h=m;m=b}h=h>>>1|h<<31;m=m>>>1|m<<31;b=(h>>>1^m)&1431655765;m^=b;h^=b<<1;b=(m>>>8^h)&16711935;h^=b;m^=b<<8;b=(m>>>2^h)&858993459;h^=b;m^=b<<2;b=(h>>>16^m)&65535;m^=b;h^=b<<16;b=(h>>>4^m)&252645135;c[0]=h^b<<4;c[1]=m^b}function e(b){b=b||{};var c="DES-"+(b.mode||"CBC").toUpperCase(),d;d=b.decrypt?a.cipher.createDecipher(c,b.key):a.cipher.createCipher(c,b.key);var h=d.start;d.start=function(b,c){var e=
342 +null;c instanceof a.util.ByteBuffer&&(e=c,c={});c=c||{};c.output=e;c.iv=b;h.call(d,c)};return d}a.des=a.des||{};a.des.startEncrypting=function(a,b,c,d){a=e({key:a,output:c,decrypt:!1,mode:d||(null===b?"ECB":"CBC")});a.start(b);return a};a.des.createEncryptionCipher=function(a,b){return e({key:a,output:null,decrypt:!1,mode:b})};a.des.startDecrypting=function(a,b,c,d){a=e({key:a,output:c,decrypt:!0,mode:d||(null===b?"ECB":"CBC")});a.start(b);return a};a.des.createDecryptionCipher=function(a,b){return e({key:a,
343 output:null,decrypt:!0,mode:b})};a.des.Algorithm=function(a,b){var c=this;c.name=a;c.mode=new b({blockSize:8,cipher:{encrypt:function(a,b){return d(c._keys,a,b,!1)},decrypt:function(a,b){return d(c._keys,a,b,!0)}}});c._init=!1};a.des.Algorithm.prototype.initialize=function(b){if(!this._init){b=a.util.createBuffer(b.key);if(0===this.name.indexOf("3DES")&&24!==b.length())throw Error("Invalid Triple-DES key size: "+8*b.length());for(var c=[0,4,536870912,536870916,65536,65540,536936448,536936452,512,
344 -516,536871424,536871428,66048,66052,536936960,536936964],d=[0,1,1048576,1048577,67108864,67108865,68157440,68157441,256,257,1048832,1048833,67109120,67109121,68157696,68157697],g=[0,8,2048,2056,16777216,16777224,16779264,16779272,0,8,2048,2056,16777216,16777224,16779264,16779272],e=[0,2097152,134217728,136314880,8192,2105344,134225920,136323072,131072,2228224,134348800,136445952,139264,2236416,134356992,136454144],h=[0,262144,16,262160,0,262144,16,262160,4096,266240,4112,266256,4096,266240,4112,266256],
345 -l=[0,1024,32,1056,0,1024,32,1056,33554432,33555456,33554464,33555488,33554432,33555456,33554464,33555488],k=[0,268435456,524288,268959744,2,268435458,524290,268959746,0,268435456,524288,268959744,2,268435458,524290,268959746],q=[0,65536,2048,67584,536870912,536936448,536872960,536938496,131072,196608,133120,198656,537001984,537067520,537004032,537069568],v=[0,262144,0,262144,2,262146,2,262146,33554432,33816576,33554432,33816576,33554434,33816578,33554434,33816578],w=[0,268435456,8,268435464,0,268435456,
346 -8,268435464,1024,268436480,1032,268436488,1024,268436480,1032,268436488],x=[0,32,0,32,1048576,1048608,1048576,1048608,8192,8224,8192,8224,1056768,1056800,1056768,1056800],n=[0,16777216,512,16777728,2097152,18874368,2097664,18874880,67108864,83886080,67109376,83886592,69206016,85983232,69206528,85983744],B=[0,4096,134217728,134221824,524288,528384,134742016,134746112,16,4112,134217744,134221840,524304,528400,134742032,134746128],p=[0,4,256,260,0,4,256,260,1,5,257,261,1,5,257,261],K=8<b.length()?3:
347 -1,C=[],r=[0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0],U=0,M,V=0;V<K;V++){var J=b.getInt32(),H=b.getInt32();M=(J>>>4^H)&252645135;H^=M;J^=M<<4;M=(H>>>-16^J)&65535;J^=M;H^=M<<-16;M=(J>>>2^H)&858993459;H^=M;J^=M<<2;M=(H>>>-16^J)&65535;J^=M;H^=M<<-16;M=(J>>>1^H)&1431655765;H^=M;J^=M<<1;M=(H>>>8^J)&16711935;J^=M;H^=M<<8;M=(J>>>1^H)&1431655765;H^=M;J^=M<<1;M=J<<8|H>>>20&240;for(var J=H<<24|H<<8&16711680|H>>>8&65280|H>>>24&240,H=M,S=0;S<r.length;++S){r[S]?(J=J<<2|J>>>26,H=H<<2|H>>>26):(J=J<<1|J>>>27,H=H<<1|H>>>27);
348 -var J=J&-15,H=H&-15,Z=c[J>>>28]|d[J>>>24&15]|g[J>>>20&15]|e[J>>>16&15]|h[J>>>12&15]|l[J>>>8&15]|k[J>>>4&15],aa=q[H>>>28]|v[H>>>24&15]|w[H>>>20&15]|x[H>>>16&15]|n[H>>>12&15]|B[H>>>8&15]|p[H>>>4&15];M=(aa>>>16^Z)&65535;C[U++]=Z^M;C[U++]=aa^M<<16}}this._keys=C;this._init=!0}};c("DES-ECB",a.cipher.modes.ecb);c("DES-CBC",a.cipher.modes.cbc);c("DES-CFB",a.cipher.modes.cfb);c("DES-OFB",a.cipher.modes.ofb);c("DES-CTR",a.cipher.modes.ctr);c("3DES-ECB",a.cipher.modes.ecb);c("3DES-CBC",a.cipher.modes.cbc);c("3DES-CFB",
349 -a.cipher.modes.cfb);c("3DES-OFB",a.cipher.modes.ofb);c("3DES-CTR",a.cipher.modes.ctr);var v=[16843776,0,65536,16843780,16842756,66564,4,65536,1024,16843776,16843780,1024,16778244,16842756,16777216,4,1028,16778240,16778240,66560,66560,16842752,16842752,16778244,65540,16777220,16777220,65540,0,1028,66564,16777216,65536,16843780,4,16842752,16843776,16777216,16777216,1024,16842756,65536,66560,16777220,1024,4,16778244,66564,16843780,65540,16842752,16778244,16777220,1028,66564,16843776,1028,16778240,16778240,
350 -0,65540,66560,0,16842756],x=[-2146402272,-2147450880,32768,1081376,1048576,32,-2146435040,-2147450848,-2147483616,-2146402272,-2146402304,-2147483648,-2147450880,1048576,32,-2146435040,1081344,1048608,-2147450848,0,-2147483648,32768,1081376,-2146435072,1048608,-2147483616,0,1081344,32800,-2146402304,-2146435072,32800,0,1081376,-2146435040,1048576,-2147450848,-2146435072,-2146402304,32768,-2146435072,-2147450880,32,-2146402272,1081376,32,32768,-2147483648,32800,-2146402304,1048576,-2147483616,1048608,
351 --2147450848,-2147483616,1048608,1081344,0,-2147450880,32800,-2147483648,-2146435040,-2146402272,1081344],k=[520,134349312,0,134348808,134218240,0,131592,134218240,131080,134217736,134217736,131072,134349320,131080,134348800,520,134217728,8,134349312,512,131584,134348800,134348808,131592,134218248,131584,131072,134218248,8,134349320,512,134217728,134349312,134217728,131080,520,131072,134349312,134218240,0,512,131080,134349320,134218240,134217736,512,0,134348808,134218248,131072,134217728,134349320,
352 -8,131592,131584,134217736,134348800,134218248,520,134348800,131592,8,134348808,131584],h=[8396801,8321,8321,128,8396928,8388737,8388609,8193,0,8396800,8396800,8396929,129,0,8388736,8388609,1,8192,8388608,8396801,128,8388608,8193,8320,8388737,1,8320,8388736,8192,8396928,8396929,129,8388736,8388609,8396800,8396929,129,0,0,8396800,8320,8388736,8388737,1,8396801,8321,8321,128,8396929,129,1,8192,8388609,8193,8396928,8388737,8193,8320,8388608,8396801,128,8388608,8192,8396928],n=[256,34078976,34078720,1107296512,
353 -524288,256,1073741824,34078720,1074266368,524288,33554688,1074266368,1107296512,1107820544,524544,1073741824,33554432,1074266112,1074266112,0,1073742080,1107820800,1107820800,33554688,1107820544,1073742080,0,1107296256,34078976,33554432,1107296256,524544,524288,1107296512,256,33554432,1073741824,34078720,1107296512,1074266368,33554688,1073741824,1107820544,34078976,1074266368,256,33554432,1107820544,1107820800,524544,1107296256,1107820800,34078720,0,1074266112,1107296256,524544,33554688,1073742080,
354 -524288,0,1074266112,34078976,1073742080],q=[536870928,541065216,16384,541081616,541065216,16,541081616,4194304,536887296,4210704,4194304,536870928,4194320,536887296,536870912,16400,0,4194320,536887312,16384,4210688,536887312,16,541065232,541065232,0,4210704,541081600,16400,4210688,541081600,536870912,536887296,16,541065232,4210688,541081616,4194304,16400,536870928,4194304,536887296,536870912,16400,536870928,541081616,4210688,541065216,4210704,541081600,0,541065232,16,16384,541065216,4210704,16384,
355 -4194320,536887312,0,541081600,536870912,4194320,536887312],p=[2097152,69206018,67110914,0,2048,67110914,2099202,69208064,69208066,2097152,0,67108866,2,67108864,69206018,2050,67110912,2099202,2097154,67110912,67108866,69206016,69208064,2097154,69206016,2048,2050,69208066,2099200,2,67108864,2099200,67108864,2099200,2097152,67110914,67110914,69206018,69206018,2,2097154,67108864,67110912,2097152,69208064,2050,2099202,69208064,2050,67108866,69208066,69206016,2099200,0,2,69208066,0,2099202,69206016,2048,
356 -67108866,67110912,2048,2097154],B=[268439616,4096,262144,268701760,268435456,268439616,64,268435456,262208,268697600,268701760,266240,268701696,266304,4096,64,268697600,268435520,268439552,4160,266240,262208,268697664,268701696,4160,0,0,268697664,268435520,268439552,266304,262144,266304,262144,268701696,4096,64,268697664,4096,266304,268439552,64,268435520,268697600,268697664,268435456,262144,268439616,0,268701760,262208,268435520,268697600,268439552,268439616,0,268701760,266240,266240,4160,4160,262208,
357 -268435456,268701696]}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.des)return c.des;c.defined.des=!0;for(var e=0;e<g.length;++e)g[e](c);return c.des}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,
358 -Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/des",["require","module","./cipher","./cipherModes","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var d=a.pkcs5=a.pkcs5||{},e="undefined"!==typeof process&&process.versions&&process.versions.node,l;e&&!a.disableNativeCode&&(l=c("crypto"));a.pbkdf2=d.pbkdf2=function(b,c,d,g,n,q){function p(){if(L>r)return q(null,z);E.start(null,
359 -null);E.update(c);E.update(a.util.int32ToBytes(L));D=G=E.digest().getBytes();u=2;B()}function B(){if(u<=d)return E.start(null,null),E.update(G),A=E.digest().getBytes(),D=a.util.xorBytes(D,A,y),G=A,++u,a.util.setImmediate(B);z+=L<r?D:D.substr(0,F);++L;p()}"function"===typeof n&&(q=n,n=null);if(e&&!a.disableNativeCode&&l.pbkdf2&&(null===n||"object"!==typeof n)&&(4<l.pbkdf2Sync.length||!n||"sha1"===n))return"string"!==typeof n&&(n="sha1"),c=new Buffer(c,"binary"),q?4===l.pbkdf2Sync.length?l.pbkdf2(b,
360 -c,d,g,function(a,b){if(a)return q(a);q(null,b.toString("binary"))}):l.pbkdf2(b,c,d,g,n,function(a,b){if(a)return q(a);q(null,b.toString("binary"))}):4===l.pbkdf2Sync.length?l.pbkdf2Sync(b,c,d,g).toString("binary"):l.pbkdf2Sync(b,c,d,g,n).toString("binary");if("undefined"===typeof n||null===n)n=a.md.sha1.create();if("string"===typeof n){if(!(n in a.md.algorithms))throw Error("Unknown hash algorithm: "+n);n=a.md[n].create()}var y=n.digestLength;if(g>4294967295*y){b=Error("Derived key is too long.");
361 -if(q)return q(b);throw b;}var r=Math.ceil(g/y),F=g-(r-1)*y,E=a.hmac.create();E.start(n,b);var z="",D,A,G;if(!q){for(var L=1;L<=r;++L){E.start(null,null);E.update(c);E.update(a.util.int32ToBytes(L));D=G=E.digest().getBytes();for(var u=2;u<=d;++u)E.start(null,null),E.update(G),A=E.digest().getBytes(),D=a.util.xorBytes(D,A,y),G=A;z+=L<r?D:D.substr(0,F)}return z}L=1;p()}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===
362 -typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pbkdf2)return c.pbkdf2;c.defined.pbkdf2=!0;for(var e=0;e<g.length;++e)g[e](c);return c.pbkdf2}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pbkdf2",["require","module",
363 -"./hmac","./md","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var d="undefined"!==typeof process&&process.versions&&process.versions.node,e=null;a.disableNativeCode||!d||process.versions["node-webkit"]||(e=c("crypto"));(a.prng=a.prng||{}).create=function(b){function c(a){if(32<=h.pools[0].messageLength)return d(),a();h.seedFile(32-h.pools[0].messageLength<<5,function(b,c){if(b)return a(b);h.collect(c);d();a()})}function d(){var a=h.plugin.md.create();
364 -a.update(h.pools[0].digest().getBytes());h.pools[0].start();for(var b=1,c=1;32>c;++c)b=31===b?2147483648:b<<2,0===b%h.reseeds&&(a.update(h.pools[c].digest().getBytes()),h.pools[c].start());b=a.digest().getBytes();a.start();a.update(b);a=a.digest().getBytes();h.key=h.plugin.formatKey(b);h.seed=h.plugin.formatSeed(a);h.reseeds=4294967295===h.reseeds?0:h.reseeds+1;h.generated=0}function g(b){var c=null;if("undefined"!==typeof window){var d=window.crypto||window.msCrypto;d&&d.getRandomValues&&(c=function(a){return d.getRandomValues(a)})}var e=
365 -a.util.createBuffer();if(c)for(;e.length()<b;){var h=Math.max(1,Math.min(b-e.length(),65536)/4),l=new Uint32Array(Math.floor(h));try{for(c(l),h=0;h<l.length;++h)e.putInt32(l[h])}catch(k){if(!("undefined"!==typeof QuotaExceededError&&k instanceof QuotaExceededError))throw k;}}if(e.length()<b)for(c=Math.floor(65536*Math.random());e.length()<b;)for(h=16807*(c&65535),c=16807*(c>>16),h+=(c&32767)<<16,h+=c>>15,h=(h&2147483647)+(h>>31),c=h&4294967295,h=0;3>h;++h)l=c>>>(h<<3),l^=Math.floor(256*Math.random()),
366 -e.putByte(String.fromCharCode(l&255));return e.getBytes(b)}var h={plugin:b,key:null,seed:null,time:null,reseeds:0,generated:0};b=b.md;for(var n=Array(32),q=0;32>q;++q)n[q]=b.create();h.pools=n;h.pool=0;h.generate=function(b,d){function g(A){if(A)return d(A);if(q.length()>=b)return d(null,q.getBytes(b));1048575<h.generated&&(h.key=null);if(null===h.key)return a.util.nextTick(function(){c(g)});A=e(h.key,h.seed);h.generated+=A.length;q.putBytes(A);h.key=k(e(h.key,l(h.seed)));h.seed=z(e(h.key,h.seed));
367 -a.util.setImmediate(g)}if(!d)return h.generateSync(b);var e=h.plugin.cipher,l=h.plugin.increment,k=h.plugin.formatKey,z=h.plugin.formatSeed,q=a.util.createBuffer();h.key=null;g()};h.generateSync=function(b){var c=h.plugin.cipher,g=h.plugin.increment,e=h.plugin.formatKey,l=h.plugin.formatSeed;h.key=null;for(var k=a.util.createBuffer();k.length()<b;){1048575<h.generated&&(h.key=null);null===h.key&&(32<=h.pools[0].messageLength||h.collect(h.seedFileSync(32-h.pools[0].messageLength<<5)),d());var z=c(h.key,
368 -h.seed);h.generated+=z.length;k.putBytes(z);h.key=e(c(h.key,g(h.seed)));h.seed=l(c(h.key,h.seed))}return k.getBytes(b)};e?(h.seedFile=function(a,b){e.randomBytes(a,function(a,c){if(a)return b(a);b(null,c.toString())})},h.seedFileSync=function(a){return e.randomBytes(a).toString()}):(h.seedFile=function(a,b){try{b(null,g(a))}catch(c){b(c)}},h.seedFileSync=g);h.collect=function(a){for(var b=a.length,c=0;c<b;++c)h.pools[h.pool].update(a.substr(c,1)),h.pool=31===h.pool?0:h.pool+1};h.collectInt=function(a,
369 -b){for(var c="",d=0;d<b;d+=8)c+=String.fromCharCode(a>>d&255);h.collect(c)};h.registerWorker=function(a){a===self?h.seedFile=function(a,b){function c(a){a=a.data;a.forge&&a.forge.prng&&(self.removeEventListener("message",c),b(a.forge.prng.err,a.forge.prng.bytes))}self.addEventListener("message",c);self.postMessage({forge:{prng:{needed:a}}})}:a.addEventListener("message",function(b){b=b.data;b.forge&&b.forge.prng&&h.seedFile(b.forge.prng.needed,function(b,c){a.postMessage({forge:{prng:{err:b,bytes:c}}})})})};
370 -return h}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.prng)return c.prng;c.defined.prng=!0;for(var e=0;e<g.length;++e)g[e](c);return c.prng}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,
371 -0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/prng",["require","module","./md","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.random&&a.random.getBytes||function(b){function c(){var b=a.prng.create(d);b.getBytes=function(a,c){return b.generate(a,c)};b.getBytesSync=function(a){return b.generate(a)};return b}var d={},e=Array(4),n=a.util.createBuffer();d.formatKey=function(b){var c=a.util.createBuffer(b);b=Array(4);
372 -b[0]=c.getInt32();b[1]=c.getInt32();b[2]=c.getInt32();b[3]=c.getInt32();return a.aes._expandKey(b,!1)};d.formatSeed=function(b){var c=a.util.createBuffer(b);b=Array(4);b[0]=c.getInt32();b[1]=c.getInt32();b[2]=c.getInt32();b[3]=c.getInt32();return b};d.cipher=function(b,c){a.aes._updateBlock(b,c,e,!1);n.putInt32(e[0]);n.putInt32(e[1]);n.putInt32(e[2]);n.putInt32(e[3]);return n.getBytes()};d.increment=function(a){++a[3];return a};d.md=a.md.sha256;var k=c(),h="undefined"!==typeof process&&process.versions&&
373 -process.versions.node,p=null;if("undefined"!==typeof window){var q=window.crypto||window.msCrypto;q&&q.getRandomValues&&(p=function(a){return q.getRandomValues(a)})}if(a.disableNativeCode||!h&&!p){k.collectInt(+new Date,32);if("undefined"!==typeof navigator){var h="",r;for(r in navigator)try{"string"==typeof navigator[r]&&(h+=navigator[r])}catch(B){}k.collect(h);h=null}b&&(b().mousemove(function(a){k.collectInt(a.clientX,16);k.collectInt(a.clientY,16)}),b().keypress(function(a){k.collectInt(a.charCode,
374 -8)}))}if(a.random)for(r in k)a.random[r]=k[r];else a.random=k;a.random.createInstance=c}("undefined"!==typeof jQuery?jQuery:null)}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.random)return c.random;c.defined.random=!0;for(var e=0;e<g.length;++e)g[e](c);
375 -return c.random}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/random","require module ./aes ./md ./prng ./util".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=[217,120,249,196,25,221,181,237,40,233,253,121,74,160,216,157,198,126,55,131,43,118,83,142,98,76,100,136,68,
344 +516,536871424,536871428,66048,66052,536936960,536936964],d=[0,1,1048576,1048577,67108864,67108865,68157440,68157441,256,257,1048832,1048833,67109120,67109121,68157696,68157697],e=[0,8,2048,2056,16777216,16777224,16779264,16779272,0,8,2048,2056,16777216,16777224,16779264,16779272],h=[0,2097152,134217728,136314880,8192,2105344,134225920,136323072,131072,2228224,134348800,136445952,139264,2236416,134356992,136454144],g=[0,262144,16,262160,0,262144,16,262160,4096,266240,4112,266256,4096,266240,4112,266256],
345 +m=[0,1024,32,1056,0,1024,32,1056,33554432,33555456,33554464,33555488,33554432,33555456,33554464,33555488],l=[0,268435456,524288,268959744,2,268435458,524290,268959746,0,268435456,524288,268959744,2,268435458,524290,268959746],p=[0,65536,2048,67584,536870912,536936448,536872960,536938496,131072,196608,133120,198656,537001984,537067520,537004032,537069568],u=[0,262144,0,262144,2,262146,2,262146,33554432,33816576,33554432,33816576,33554434,33816578,33554434,33816578],k=[0,268435456,8,268435464,0,268435456,
346 +8,268435464,1024,268436480,1032,268436488,1024,268436480,1032,268436488],q=[0,32,0,32,1048576,1048608,1048576,1048608,8192,8224,8192,8224,1056768,1056800,1056768,1056800],w=[0,16777216,512,16777728,2097152,18874368,2097664,18874880,67108864,83886080,67109376,83886592,69206016,85983232,69206528,85983744],x=[0,4096,134217728,134221824,524288,528384,134742016,134746112,16,4112,134217744,134221840,524304,528400,134742032,134746128],A=[0,4,256,260,0,4,256,260,1,5,257,261,1,5,257,261],J=8<b.length()?3:
347 +1,B=[],v=[0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0],Z=0,N,aa=0;aa<J;aa++){var L=b.getInt32(),G=b.getInt32();N=(L>>>4^G)&252645135;G^=N;L^=N<<4;N=(G>>>-16^L)&65535;L^=N;G^=N<<-16;N=(L>>>2^G)&858993459;G^=N;L^=N<<2;N=(G>>>-16^L)&65535;L^=N;G^=N<<-16;N=(L>>>1^G)&1431655765;G^=N;L^=N<<1;N=(G>>>8^L)&16711935;L^=N;G^=N<<8;N=(L>>>1^G)&1431655765;G^=N;L^=N<<1;N=L<<8|G>>>20&240;for(var L=G<<24|G<<8&16711680|G>>>8&65280|G>>>24&240,G=N,I=0;I<v.length;++I){v[I]?(L=L<<2|L>>>26,G=G<<2|G>>>26):(L=L<<1|L>>>27,G=G<<1|G>>>
348 +27);var L=L&-15,G=G&-15,Y=c[L>>>28]|d[L>>>24&15]|e[L>>>20&15]|h[L>>>16&15]|g[L>>>12&15]|m[L>>>8&15]|l[L>>>4&15],da=p[G>>>28]|u[G>>>24&15]|k[G>>>20&15]|q[G>>>16&15]|w[G>>>12&15]|x[G>>>8&15]|A[G>>>4&15];N=(da>>>16^Y)&65535;B[Z++]=Y^N;B[Z++]=da^N<<16}}this._keys=B;this._init=!0}};c("DES-ECB",a.cipher.modes.ecb);c("DES-CBC",a.cipher.modes.cbc);c("DES-CFB",a.cipher.modes.cfb);c("DES-OFB",a.cipher.modes.ofb);c("DES-CTR",a.cipher.modes.ctr);c("3DES-ECB",a.cipher.modes.ecb);c("3DES-CBC",a.cipher.modes.cbc);
349 +c("3DES-CFB",a.cipher.modes.cfb);c("3DES-OFB",a.cipher.modes.ofb);c("3DES-CTR",a.cipher.modes.ctr);var k=[16843776,0,65536,16843780,16842756,66564,4,65536,1024,16843776,16843780,1024,16778244,16842756,16777216,4,1028,16778240,16778240,66560,66560,16842752,16842752,16778244,65540,16777220,16777220,65540,0,1028,66564,16777216,65536,16843780,4,16842752,16843776,16777216,16777216,1024,16842756,65536,66560,16777220,1024,4,16778244,66564,16843780,65540,16842752,16778244,16777220,1028,66564,16843776,1028,
350 +16778240,16778240,0,65540,66560,0,16842756],q=[-2146402272,-2147450880,32768,1081376,1048576,32,-2146435040,-2147450848,-2147483616,-2146402272,-2146402304,-2147483648,-2147450880,1048576,32,-2146435040,1081344,1048608,-2147450848,0,-2147483648,32768,1081376,-2146435072,1048608,-2147483616,0,1081344,32800,-2146402304,-2146435072,32800,0,1081376,-2146435040,1048576,-2147450848,-2146435072,-2146402304,32768,-2146435072,-2147450880,32,-2146402272,1081376,32,32768,-2147483648,32800,-2146402304,1048576,
351 +-2147483616,1048608,-2147450848,-2147483616,1048608,1081344,0,-2147450880,32800,-2147483648,-2146435040,-2146402272,1081344],l=[520,134349312,0,134348808,134218240,0,131592,134218240,131080,134217736,134217736,131072,134349320,131080,134348800,520,134217728,8,134349312,512,131584,134348800,134348808,131592,134218248,131584,131072,134218248,8,134349320,512,134217728,134349312,134217728,131080,520,131072,134349312,134218240,0,512,131080,134349320,134218240,134217736,512,0,134348808,134218248,131072,
352 +134217728,134349320,8,131592,131584,134217736,134348800,134218248,520,134348800,131592,8,134348808,131584],g=[8396801,8321,8321,128,8396928,8388737,8388609,8193,0,8396800,8396800,8396929,129,0,8388736,8388609,1,8192,8388608,8396801,128,8388608,8193,8320,8388737,1,8320,8388736,8192,8396928,8396929,129,8388736,8388609,8396800,8396929,129,0,0,8396800,8320,8388736,8388737,1,8396801,8321,8321,128,8396929,129,1,8192,8388609,8193,8396928,8388737,8193,8320,8388608,8396801,128,8388608,8192,8396928],x=[256,
353 +34078976,34078720,1107296512,524288,256,1073741824,34078720,1074266368,524288,33554688,1074266368,1107296512,1107820544,524544,1073741824,33554432,1074266112,1074266112,0,1073742080,1107820800,1107820800,33554688,1107820544,1073742080,0,1107296256,34078976,33554432,1107296256,524544,524288,1107296512,256,33554432,1073741824,34078720,1107296512,1074266368,33554688,1073741824,1107820544,34078976,1074266368,256,33554432,1107820544,1107820800,524544,1107296256,1107820800,34078720,0,1074266112,1107296256,
354 +524544,33554688,1073742080,524288,0,1074266112,34078976,1073742080],u=[536870928,541065216,16384,541081616,541065216,16,541081616,4194304,536887296,4210704,4194304,536870928,4194320,536887296,536870912,16400,0,4194320,536887312,16384,4210688,536887312,16,541065232,541065232,0,4210704,541081600,16400,4210688,541081600,536870912,536887296,16,541065232,4210688,541081616,4194304,16400,536870928,4194304,536887296,536870912,16400,536870928,541081616,4210688,541065216,4210704,541081600,0,541065232,16,16384,
355 +541065216,4210704,16384,4194320,536887312,0,541081600,536870912,4194320,536887312],J=[2097152,69206018,67110914,0,2048,67110914,2099202,69208064,69208066,2097152,0,67108866,2,67108864,69206018,2050,67110912,2099202,2097154,67110912,67108866,69206016,69208064,2097154,69206016,2048,2050,69208066,2099200,2,67108864,2099200,67108864,2099200,2097152,67110914,67110914,69206018,69206018,2,2097154,67108864,67110912,2097152,69208064,2050,2099202,69208064,2050,67108866,69208066,69206016,2099200,0,2,69208066,
356 +0,2099202,69206016,2048,67108866,67110912,2048,2097154],A=[268439616,4096,262144,268701760,268435456,268439616,64,268435456,262208,268697600,268701760,266240,268701696,266304,4096,64,268697600,268435520,268439552,4160,266240,262208,268697664,268701696,4160,0,0,268697664,268435520,268439552,266304,262144,266304,262144,268701696,4096,64,268697664,4096,266304,268439552,64,268435520,268697600,268697664,268435456,262144,268439616,0,268701760,262208,268435520,268697600,268439552,268439616,0,268701760,266240,
357 +266240,4160,4160,262208,268435456,268701696]}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.des)return c.des;c.defined.des=!0;for(var p=0;p<e.length;++p)e[p](c);return c.des}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,
358 +v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/des",["require","module","./cipher","./cipherModes","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var d=a.pkcs5=a.pkcs5||{},e="undefined"!==typeof process&&process.versions&&process.versions.node,m;e&&!a.disableNativeCode&&(m=c("crypto"));a.pbkdf2=d.pbkdf2=function(b,c,d,g,p,u){function k(){if(W>v)return u(null,z);
359 +D.start(null,null);D.update(c);D.update(a.util.int32ToBytes(W));C=M=D.digest().getBytes();r=2;q()}function q(){if(r<=d)return D.start(null,null),D.update(M),F=D.digest().getBytes(),C=a.util.xorBytes(C,F,y),M=F,++r,a.util.setImmediate(q);z+=W<v?C:C.substr(0,E);++W;k()}"function"===typeof p&&(u=p,p=null);if(e&&!a.disableNativeCode&&m.pbkdf2&&(null===p||"object"!==typeof p)&&(4<m.pbkdf2Sync.length||!p||"sha1"===p))return"string"!==typeof p&&(p="sha1"),c=new Buffer(c,"binary"),u?4===m.pbkdf2Sync.length?
360 +m.pbkdf2(b,c,d,g,function(a,b){if(a)return u(a);u(null,b.toString("binary"))}):m.pbkdf2(b,c,d,g,p,function(a,b){if(a)return u(a);u(null,b.toString("binary"))}):4===m.pbkdf2Sync.length?m.pbkdf2Sync(b,c,d,g).toString("binary"):m.pbkdf2Sync(b,c,d,g,p).toString("binary");if("undefined"===typeof p||null===p)p=a.md.sha1.create();if("string"===typeof p){if(!(p in a.md.algorithms))throw Error("Unknown hash algorithm: "+p);p=a.md[p].create()}var y=p.digestLength;if(g>4294967295*y){b=Error("Derived key is too long.");
361 +if(u)return u(b);throw b;}var v=Math.ceil(g/y),E=g-(v-1)*y,D=a.hmac.create();D.start(p,b);var z="",C,F,M;if(!u){for(var W=1;W<=v;++W){D.start(null,null);D.update(c);D.update(a.util.int32ToBytes(W));C=M=D.digest().getBytes();for(var r=2;r<=d;++r)D.start(null,null),D.update(M),F=D.digest().getBytes(),C=a.util.xorBytes(C,F,y),M=F;z+=W<v?C:C.substr(0,E)}return z}W=1;k()}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===
362 +typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pbkdf2)return c.pbkdf2;c.defined.pbkdf2=!0;for(var p=0;p<e.length;++p)e[p](c);return c.pbkdf2}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pbkdf2",["require","module",
363 +"./hmac","./md","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var d="undefined"!==typeof process&&process.versions&&process.versions.node,e=null;a.disableNativeCode||!d||process.versions["node-webkit"]||(e=c("crypto"));(a.prng=a.prng||{}).create=function(b){function c(a){if(32<=g.pools[0].messageLength)return d(),a();g.seedFile(32-g.pools[0].messageLength<<5,function(b,c){if(b)return a(b);g.collect(c);d();a()})}function d(){var a=g.plugin.md.create();
364 +a.update(g.pools[0].digest().getBytes());g.pools[0].start();for(var b=1,c=1;32>c;++c)b=31===b?2147483648:b<<2,0===b%g.reseeds&&(a.update(g.pools[c].digest().getBytes()),g.pools[c].start());b=a.digest().getBytes();a.start();a.update(b);a=a.digest().getBytes();g.key=g.plugin.formatKey(b);g.seed=g.plugin.formatSeed(a);g.reseeds=4294967295===g.reseeds?0:g.reseeds+1;g.generated=0}function p(b){var c=null;if("undefined"!==typeof window){var d=window.crypto||window.msCrypto;d&&d.getRandomValues&&(c=function(a){return d.getRandomValues(a)})}var e=
365 +a.util.createBuffer();if(c)for(;e.length()<b;){var h=Math.max(1,Math.min(b-e.length(),65536)/4),g=new Uint32Array(Math.floor(h));try{for(c(g),h=0;h<g.length;++h)e.putInt32(g[h])}catch(m){if(!("undefined"!==typeof QuotaExceededError&&m instanceof QuotaExceededError))throw m;}}if(e.length()<b)for(c=Math.floor(65536*Math.random());e.length()<b;)for(h=16807*(c&65535),c=16807*(c>>16),h+=(c&32767)<<16,h+=c>>15,h=(h&2147483647)+(h>>31),c=h&4294967295,h=0;3>h;++h)g=c>>>(h<<3),g^=Math.floor(256*Math.random()),
366 +e.putByte(String.fromCharCode(g&255));return e.getBytes(b)}var g={plugin:b,key:null,seed:null,time:null,reseeds:0,generated:0};b=b.md;for(var k=Array(32),u=0;32>u;++u)k[u]=b.create();g.pools=k;g.pool=0;g.generate=function(b,d){function e(u){if(u)return d(u);if(C.length()>=b)return d(null,C.getBytes(b));1048575<g.generated&&(g.key=null);if(null===g.key)return a.util.nextTick(function(){c(e)});u=h(g.key,g.seed);g.generated+=u.length;C.putBytes(u);g.key=p(h(g.key,m(g.seed)));g.seed=l(h(g.key,g.seed));
367 +a.util.setImmediate(e)}if(!d)return g.generateSync(b);var h=g.plugin.cipher,m=g.plugin.increment,p=g.plugin.formatKey,l=g.plugin.formatSeed,C=a.util.createBuffer();g.key=null;e()};g.generateSync=function(b){var c=g.plugin.cipher,e=g.plugin.increment,h=g.plugin.formatKey,m=g.plugin.formatSeed;g.key=null;for(var p=a.util.createBuffer();p.length()<b;){1048575<g.generated&&(g.key=null);null===g.key&&(32<=g.pools[0].messageLength||g.collect(g.seedFileSync(32-g.pools[0].messageLength<<5)),d());var l=c(g.key,
368 +g.seed);g.generated+=l.length;p.putBytes(l);g.key=h(c(g.key,e(g.seed)));g.seed=m(c(g.key,g.seed))}return p.getBytes(b)};e?(g.seedFile=function(a,b){e.randomBytes(a,function(a,c){if(a)return b(a);b(null,c.toString())})},g.seedFileSync=function(a){return e.randomBytes(a).toString()}):(g.seedFile=function(a,b){try{b(null,p(a))}catch(c){b(c)}},g.seedFileSync=p);g.collect=function(a){for(var b=a.length,c=0;c<b;++c)g.pools[g.pool].update(a.substr(c,1)),g.pool=31===g.pool?0:g.pool+1};g.collectInt=function(a,
369 +b){for(var c="",d=0;d<b;d+=8)c+=String.fromCharCode(a>>d&255);g.collect(c)};g.registerWorker=function(a){a===self?g.seedFile=function(a,b){function c(a){a=a.data;a.forge&&a.forge.prng&&(self.removeEventListener("message",c),b(a.forge.prng.err,a.forge.prng.bytes))}self.addEventListener("message",c);self.postMessage({forge:{prng:{needed:a}}})}:a.addEventListener("message",function(b){b=b.data;b.forge&&b.forge.prng&&g.seedFile(b.forge.prng.needed,function(b,c){a.postMessage({forge:{prng:{err:b,bytes:c}}})})})};
370 +return g}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.prng)return c.prng;c.defined.prng=!0;for(var p=0;p<e.length;++p)e[p](c);return c.prng}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,
371 +0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/prng",["require","module","./md","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.random&&a.random.getBytes||function(b){function c(){var b=a.prng.create(d);b.getBytes=function(a,c){return b.generate(a,c)};b.getBytesSync=function(a){return b.generate(a)};return b}var d={},e=Array(4),k=a.util.createBuffer();d.formatKey=function(b){var c=a.util.createBuffer(b);b=Array(4);
372 +b[0]=c.getInt32();b[1]=c.getInt32();b[2]=c.getInt32();b[3]=c.getInt32();return a.aes._expandKey(b,!1)};d.formatSeed=function(b){var c=a.util.createBuffer(b);b=Array(4);b[0]=c.getInt32();b[1]=c.getInt32();b[2]=c.getInt32();b[3]=c.getInt32();return b};d.cipher=function(b,c){a.aes._updateBlock(b,c,e,!1);k.putInt32(e[0]);k.putInt32(e[1]);k.putInt32(e[2]);k.putInt32(e[3]);return k.getBytes()};d.increment=function(a){++a[3];return a};d.md=a.md.sha256;var l=c(),g="undefined"!==typeof process&&process.versions&&
373 +process.versions.node,q=null;if("undefined"!==typeof window){var u=window.crypto||window.msCrypto;u&&u.getRandomValues&&(q=function(a){return u.getRandomValues(a)})}if(a.disableNativeCode||!g&&!q){l.collectInt(+new Date,32);if("undefined"!==typeof navigator){var g="",v;for(v in navigator)try{"string"==typeof navigator[v]&&(g+=navigator[v])}catch(A){}l.collect(g);g=null}b&&(b().mousemove(function(a){l.collectInt(a.clientX,16);l.collectInt(a.clientY,16)}),b().keypress(function(a){l.collectInt(a.charCode,
374 +8)}))}if(a.random)for(v in l)a.random[v]=l[v];else a.random=l;a.random.createInstance=c}("undefined"!==typeof jQuery?jQuery:null)}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.random)return c.random;c.defined.random=!0;for(var p=0;p<e.length;++p)e[p](c);
375 +return c.random}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/random","require module ./aes ./md ./prng ./util".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=[217,120,249,196,25,221,181,237,40,233,253,121,74,160,216,157,198,126,55,131,43,118,83,142,98,76,100,136,68,
376 139,251,162,23,154,89,245,135,179,79,19,97,69,109,141,9,129,125,50,189,143,64,235,134,183,123,11,240,149,33,34,92,107,78,130,84,214,101,147,206,96,178,28,115,86,192,20,167,140,241,220,18,117,202,31,59,190,228,209,66,61,212,48,163,60,182,38,111,191,14,218,70,105,7,87,39,242,29,155,188,148,67,3,248,17,199,246,144,239,62,231,6,195,213,47,200,102,30,215,8,232,234,222,128,82,238,247,132,170,114,172,53,77,106,42,150,26,210,113,90,21,73,116,75,159,208,94,4,24,164,236,194,224,65,110,15,81,203,204,36,145,
377 -175,80,161,244,112,57,153,124,58,133,35,184,180,122,252,2,54,91,37,85,151,49,45,93,250,152,227,138,146,174,5,223,41,16,103,108,186,201,211,0,230,207,225,158,168,44,99,22,1,63,88,226,137,169,13,56,52,27,171,51,255,176,187,72,12,95,185,177,205,46,197,243,219,71,229,165,156,119,10,166,32,104,254,127,193,173],d=[1,2,3,5];a.rc2=a.rc2||{};a.rc2.expandKey=function(b,d){"string"===typeof b&&(b=a.util.createBuffer(b));d=d||128;var e=b,h=b.length(),l=d,q=Math.ceil(l/8),l=255>>(l&7),w;for(w=h;128>w;w++)e.putByte(c[e.at(w-
378 -1)+e.at(w-h)&255]);e.setAt(128-q,c[e.at(128-q)&l]);for(w=127-q;0<=w;w--)e.setAt(w,c[e.at(w+1)^e.at(w+q)]);return e};var e=function(b,c,g){var e=!1,l=null,q=null,n=null,p,y,r,F,E=[];b=a.rc2.expandKey(b,c);for(r=0;64>r;r++)E.push(b.getInt16Le());g?(p=function(a){for(r=0;4>r;r++){a[r]+=E[F]+(a[(r+3)%4]&a[(r+2)%4])+(~a[(r+3)%4]&a[(r+1)%4]);var b=a[r],c=d[r];a[r]=b<<c&65535|(b&65535)>>16-c;F++}},y=function(a){for(r=0;4>r;r++)a[r]+=E[a[(r+3)%4]&63]}):(p=function(a){for(r=3;0<=r;r--){var b=a[r],c=d[r];a[r]=
379 -(b&65535)>>c|b<<16-c&65535;a[r]-=E[F]+(a[(r+3)%4]&a[(r+2)%4])+(~a[(r+3)%4]&a[(r+1)%4]);F--}},y=function(a){for(r=3;0<=r;r--)a[r]-=E[a[(r+3)%4]&63]});var z=null;return z={start:function(b,c){b&&"string"===typeof b&&(b=a.util.createBuffer(b));e=!1;l=a.util.createBuffer();q=c||new a.util.createBuffer;n=b;z.output=q},update:function(a){for(e||l.putBuffer(a);8<=l.length();){a=[[5,p],[1,y],[6,p],[1,y],[5,p]];var b=[];for(r=0;4>r;r++){var c=l.getInt16Le();null!==n&&(g?c^=n.getInt16Le():n.putInt16Le(c));
380 -b.push(c&65535)}F=g?0:63;for(c=0;c<a.length;c++)for(var d=0;d<a[c][0];d++)a[c][1](b);for(r=0;4>r;r++)null!==n&&(g?n.putInt16Le(b[r]):b[r]^=n.getInt16Le()),q.putInt16Le(b[r])}},finish:function(a){var b=!0;if(g)if(a)b=a(8,l,!g);else{var c=8===l.length()?8:8-l.length();l.fillWithByte(c,c)}b&&(e=!0,z.update());!g&&(b=0===l.length())&&(a?b=a(8,q,!g):(a=q.length(),c=q.at(a-1),c>a?b=!1:q.truncate(c)));return b}}};a.rc2.startEncrypting=function(b,c,d){b=a.rc2.createEncryptionCipher(b,128);b.start(c,d);return b};
381 -a.rc2.createEncryptionCipher=function(a,b){return e(a,b,!0)};a.rc2.startDecrypting=function(b,c,d){b=a.rc2.createDecryptionCipher(b,128);b.start(c,d);return b};a.rc2.createDecryptionCipher=function(a,b){return e(a,b,!1)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||
382 -{};if(c.defined.rc2)return c.rc2;c.defined.rc2=!0;for(var e=0;e<g.length;++e)g[e](c);return c.rc2}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/rc2",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){this.data=[];null!=a&&("number"==typeof a?
383 -this.fromNumber(a,b,d):null==b&&"string"!=typeof a?this.fromString(a,256):this.fromString(a,b))}function d(){return new c(null)}function e(a,b,c,d,g,m){for(;0<=--m;){var h=b*this.data[a++]+c.data[d]+g;g=Math.floor(h/67108864);c.data[d++]=h&67108863}return g}function v(a,b,c,d,g,e){var m=b&32767;for(b>>=15;0<=--e;){var h=this.data[a]&32767,l=this.data[a++]>>15,k=b*h+l*m,h=m*h+((k&32767)<<15)+c.data[d]+(g&1073741823);g=(h>>>30)+(k>>>15)+b*l+(g>>>30);c.data[d++]=h&1073741823}return g}function n(a,b,
384 -c,d,g,e){var m=b&16383;for(b>>=14;0<=--e;){var h=this.data[a]&16383,l=this.data[a++]>>14,k=b*h+l*m,h=m*h+((k&16383)<<14)+c.data[d]+g;g=(h>>28)+(k>>14)+b*l;c.data[d++]=h&268435455}return g}function k(a,b){var c=L[a.charCodeAt(b)];return null==c?-1:c}function h(a){var b=d();b.fromInt(a);return b}function p(a){var b=1,c;0!=(c=a>>>16)&&(a=c,b+=16);0!=(c=a>>8)&&(a=c,b+=8);0!=(c=a>>4)&&(a=c,b+=4);0!=(c=a>>2)&&(a=c,b+=2);0!=a>>1&&(b+=1);return b}function q(a){this.m=a}function r(a){this.m=a;this.mp=a.invDigit();
385 -this.mpl=this.mp&32767;this.mph=this.mp>>15;this.um=(1<<a.DB-15)-1;this.mt2=2*a.t}function B(a,b){return a&b}function y(a,b){return a|b}function I(a,b){return a^b}function F(a,b){return a&~b}function E(){}function z(a){return a}function D(a){this.r2=d();this.q3=d();c.ONE.dlShiftTo(2*a.t,this.r2);this.mu=this.r2.divide(a);this.m=a}function A(){return{nextBytes:function(a){for(var b=0;b<a.length;++b)a[b]=Math.floor(256*Math.random())}}}var G;"undefined"===typeof navigator?(c.prototype.am=n,G=28):"Microsoft Internet Explorer"==
386 -navigator.appName?(c.prototype.am=v,G=30):"Netscape"!=navigator.appName?(c.prototype.am=e,G=26):(c.prototype.am=n,G=28);c.prototype.DB=G;c.prototype.DM=(1<<G)-1;c.prototype.DV=1<<G;c.prototype.FV=Math.pow(2,52);c.prototype.F1=52-G;c.prototype.F2=2*G-52;var L=[],u;G=48;for(u=0;9>=u;++u)L[G++]=u;G=97;for(u=10;36>u;++u)L[G++]=u;G=65;for(u=10;36>u;++u)L[G++]=u;q.prototype.convert=function(a){return 0>a.s||0<=a.compareTo(this.m)?a.mod(this.m):a};q.prototype.revert=function(a){return a};q.prototype.reduce=
387 -function(a){a.divRemTo(this.m,null,a)};q.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};q.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};r.prototype.convert=function(a){var b=d();a.abs().dlShiftTo(this.m.t,b);b.divRemTo(this.m,null,b);0>a.s&&0<b.compareTo(c.ZERO)&&this.m.subTo(b,b);return b};r.prototype.revert=function(a){var b=d();a.copyTo(b);this.reduce(b);return b};r.prototype.reduce=function(a){for(;a.t<=this.mt2;)a.data[a.t++]=0;for(var b=0;b<this.m.t;++b){var c=
388 -a.data[b]&32767,d=c*this.mpl+((c*this.mph+(a.data[b]>>15)*this.mpl&this.um)<<15)&a.DM,c=b+this.m.t;for(a.data[c]+=this.m.am(0,d,a,b,0,this.m.t);a.data[c]>=a.DV;)a.data[c]-=a.DV,a.data[++c]++}a.clamp();a.drShiftTo(this.m.t,a);0<=a.compareTo(this.m)&&a.subTo(this.m,a)};r.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};r.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};c.prototype.copyTo=function(a){for(var b=this.t-1;0<=b;--b)a.data[b]=this.data[b];a.t=this.t;a.s=this.s};
389 -c.prototype.fromInt=function(a){this.t=1;this.s=0>a?-1:0;0<a?this.data[0]=a:-1>a?this.data[0]=a+this.DV:this.t=0};c.prototype.fromString=function(a,b){var d;if(16==b)d=4;else if(8==b)d=3;else if(256==b)d=8;else if(2==b)d=1;else if(32==b)d=5;else if(4==b)d=2;else{this.fromRadix(a,b);return}this.s=this.t=0;for(var e=a.length,m=!1,h=0;0<=--e;){var l=8==d?a[e]&255:k(a,e);0>l?"-"==a.charAt(e)&&(m=!0):(m=!1,0==h?this.data[this.t++]=l:h+d>this.DB?(this.data[this.t-1]|=(l&(1<<this.DB-h)-1)<<h,this.data[this.t++]=
390 -l>>this.DB-h):this.data[this.t-1]|=l<<h,h+=d,h>=this.DB&&(h-=this.DB))}8==d&&0!=(a[0]&128)&&(this.s=-1,0<h&&(this.data[this.t-1]|=(1<<this.DB-h)-1<<h));this.clamp();m&&c.ZERO.subTo(this,this)};c.prototype.clamp=function(){for(var a=this.s&this.DM;0<this.t&&this.data[this.t-1]==a;)--this.t};c.prototype.dlShiftTo=function(a,b){var c;for(c=this.t-1;0<=c;--c)b.data[c+a]=this.data[c];for(c=a-1;0<=c;--c)b.data[c]=0;b.t=this.t+a;b.s=this.s};c.prototype.drShiftTo=function(a,b){for(var c=a;c<this.t;++c)b.data[c-
391 -a]=this.data[c];b.t=Math.max(this.t-a,0);b.s=this.s};c.prototype.lShiftTo=function(a,b){var c=a%this.DB,d=this.DB-c,g=(1<<d)-1,e=Math.floor(a/this.DB),m=this.s<<c&this.DM,h;for(h=this.t-1;0<=h;--h)b.data[h+e+1]=this.data[h]>>d|m,m=(this.data[h]&g)<<c;for(h=e-1;0<=h;--h)b.data[h]=0;b.data[e]=m;b.t=this.t+e+1;b.s=this.s;b.clamp()};c.prototype.rShiftTo=function(a,b){b.s=this.s;var c=Math.floor(a/this.DB);if(c>=this.t)b.t=0;else{var d=a%this.DB,g=this.DB-d,e=(1<<d)-1;b.data[0]=this.data[c]>>d;for(var m=
392 -c+1;m<this.t;++m)b.data[m-c-1]|=(this.data[m]&e)<<g,b.data[m-c]=this.data[m]>>d;0<d&&(b.data[this.t-c-1]|=(this.s&e)<<g);b.t=this.t-c;b.clamp()}};c.prototype.subTo=function(a,b){for(var c=0,d=0,g=Math.min(a.t,this.t);c<g;)d+=this.data[c]-a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;if(a.t<this.t){for(d-=a.s;c<this.t;)d+=this.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d+=this.s}else{for(d+=this.s;c<a.t;)d-=a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d-=a.s}b.s=0>d?-1:0;-1>d?b.data[c++]=this.DV+d:0<d&&
393 -(b.data[c++]=d);b.t=c;b.clamp()};c.prototype.multiplyTo=function(a,b){var d=this.abs(),e=a.abs(),m=d.t;for(b.t=m+e.t;0<=--m;)b.data[m]=0;for(m=0;m<e.t;++m)b.data[m+d.t]=d.am(0,e.data[m],b,m,0,d.t);b.s=0;b.clamp();this.s!=a.s&&c.ZERO.subTo(b,b)};c.prototype.squareTo=function(a){for(var b=this.abs(),c=a.t=2*b.t;0<=--c;)a.data[c]=0;for(c=0;c<b.t-1;++c){var d=b.am(c,b.data[c],a,2*c,0,1);(a.data[c+b.t]+=b.am(c+1,2*b.data[c],a,2*c+1,d,b.t-c-1))>=b.DV&&(a.data[c+b.t]-=b.DV,a.data[c+b.t+1]=1)}0<a.t&&(a.data[a.t-
394 -1]+=b.am(c,b.data[c],a,2*c,0,1));a.s=0;a.clamp()};c.prototype.divRemTo=function(a,b,e){var m=a.abs();if(!(0>=m.t)){var h=this.abs();if(h.t<m.t)null!=b&&b.fromInt(0),null!=e&&this.copyTo(e);else{null==e&&(e=d());var l=d(),k=this.s;a=a.s;var z=this.DB-p(m.data[m.t-1]);0<z?(m.lShiftTo(z,l),h.lShiftTo(z,e)):(m.copyTo(l),h.copyTo(e));m=l.t;h=l.data[m-1];if(0!=h){var q=h*(1<<this.F1)+(1<m?l.data[m-2]>>this.F2:0),A=this.FV/q,q=(1<<this.F1)/q,u=1<<this.F2,D=e.t,v=D-m,n=null==b?d():b;l.dlShiftTo(v,n);0<=e.compareTo(n)&&
395 -(e.data[e.t++]=1,e.subTo(n,e));c.ONE.dlShiftTo(m,n);for(n.subTo(l,l);l.t<m;)l.data[l.t++]=0;for(;0<=--v;){var x=e.data[--D]==h?this.DM:Math.floor(e.data[D]*A+(e.data[D-1]+u)*q);if((e.data[D]+=l.am(0,x,e,v,0,m))<x)for(l.dlShiftTo(v,n),e.subTo(n,e);e.data[D]<--x;)e.subTo(n,e)}null!=b&&(e.drShiftTo(m,b),k!=a&&c.ZERO.subTo(b,b));e.t=m;e.clamp();0<z&&e.rShiftTo(z,e);0>k&&c.ZERO.subTo(e,e)}}}};c.prototype.invDigit=function(){if(1>this.t)return 0;var a=this.data[0];if(0==(a&1))return 0;var b=a&3,b=b*(2-
396 -(a&15)*b)&15,b=b*(2-(a&255)*b)&255,b=b*(2-((a&65535)*b&65535))&65535,b=b*(2-a*b%this.DV)%this.DV;return 0<b?this.DV-b:-b};c.prototype.isEven=function(){return 0==(0<this.t?this.data[0]&1:this.s)};c.prototype.exp=function(a,b){if(4294967295<a||1>a)return c.ONE;var e=d(),m=d(),h=b.convert(this),l=p(a)-1;for(h.copyTo(e);0<=--l;)if(b.sqrTo(e,m),0<(a&1<<l))b.mulTo(m,h,e);else var k=e,e=m,m=k;return b.revert(e)};c.prototype.toString=function(a){if(0>this.s)return"-"+this.negate().toString(a);if(16==a)a=
397 -4;else if(8==a)a=3;else if(2==a)a=1;else if(32==a)a=5;else if(4==a)a=2;else return this.toRadix(a);var b=(1<<a)-1,c,d=!1,g="",e=this.t,m=this.DB-e*this.DB%a;if(0<e--)for(m<this.DB&&0<(c=this.data[e]>>m)&&(d=!0,g="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));0<=e;)m<a?(c=(this.data[e]&(1<<m)-1)<<a-m,c|=this.data[--e]>>(m+=this.DB-a)):(c=this.data[e]>>(m-=a)&b,0>=m&&(m+=this.DB,--e)),0<c&&(d=!0),d&&(g+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));return d?g:"0"};c.prototype.negate=function(){var a=
398 -d();c.ZERO.subTo(this,a);return a};c.prototype.abs=function(){return 0>this.s?this.negate():this};c.prototype.compareTo=function(a){var b=this.s-a.s;if(0!=b)return b;var c=this.t,b=c-a.t;if(0!=b)return 0>this.s?-b:b;for(;0<=--c;)if(0!=(b=this.data[c]-a.data[c]))return b;return 0};c.prototype.bitLength=function(){return 0>=this.t?0:this.DB*(this.t-1)+p(this.data[this.t-1]^this.s&this.DM)};c.prototype.mod=function(a){var b=d();this.abs().divRemTo(a,null,b);0>this.s&&0<b.compareTo(c.ZERO)&&a.subTo(b,
399 -b);return b};c.prototype.modPowInt=function(a,b){var c;c=256>a||b.isEven()?new q(b):new r(b);return this.exp(a,c)};c.ZERO=h(0);c.ONE=h(1);E.prototype.convert=z;E.prototype.revert=z;E.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c)};E.prototype.sqrTo=function(a,b){a.squareTo(b)};D.prototype.convert=function(a){if(0>a.s||a.t>2*this.m.t)return a.mod(this.m);if(0>a.compareTo(this.m))return a;var b=d();a.copyTo(b);this.reduce(b);return b};D.prototype.revert=function(a){return a};D.prototype.reduce=function(a){a.drShiftTo(this.m.t-
400 -1,this.r2);a.t>this.m.t+1&&(a.t=this.m.t+1,a.clamp());this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3);for(this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);0>a.compareTo(this.r2);)a.dAddOffset(1,this.m.t+1);for(a.subTo(this.r2,a);0<=a.compareTo(this.m);)a.subTo(this.m,a)};D.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};D.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};var O=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,
401 -113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509],R=67108864/O[O.length-1];c.prototype.chunkSize=function(a){return Math.floor(Math.LN2*this.DB/Math.log(a))};c.prototype.toRadix=function(a){null==a&&(a=10);if(0==this.signum()||2>a||36<a)return"0";var b=this.chunkSize(a),b=Math.pow(a,
402 -b),c=h(b),g=d(),e=d(),m="";for(this.divRemTo(c,g,e);0<g.signum();)m=(b+e.intValue()).toString(a).substr(1)+m,g.divRemTo(c,g,e);return e.intValue().toString(a)+m};c.prototype.fromRadix=function(a,b){this.fromInt(0);null==b&&(b=10);for(var d=this.chunkSize(b),e=Math.pow(b,d),m=!1,h=0,l=0,z=0;z<a.length;++z){var q=k(a,z);0>q?"-"==a.charAt(z)&&0==this.signum()&&(m=!0):(l=b*l+q,++h>=d&&(this.dMultiply(e),this.dAddOffset(l,0),l=h=0))}0<h&&(this.dMultiply(Math.pow(b,h)),this.dAddOffset(l,0));m&&c.ZERO.subTo(this,
403 -this)};c.prototype.fromNumber=function(a,b,d){if("number"==typeof b)if(2>a)this.fromInt(1);else for(this.fromNumber(a,d),this.testBit(a-1)||this.bitwiseTo(c.ONE.shiftLeft(a-1),y,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(b);)this.dAddOffset(2,0),this.bitLength()>a&&this.subTo(c.ONE.shiftLeft(a-1),this);else{d=[];var e=a&7;d.length=(a>>3)+1;b.nextBytes(d);d[0]=0<e?d[0]&(1<<e)-1:0;this.fromString(d,256)}};c.prototype.bitwiseTo=function(a,b,c){var d,g,e=Math.min(a.t,this.t);for(d=
404 -0;d<e;++d)c.data[d]=b(this.data[d],a.data[d]);if(a.t<this.t){g=a.s&this.DM;for(d=e;d<this.t;++d)c.data[d]=b(this.data[d],g);c.t=this.t}else{g=this.s&this.DM;for(d=e;d<a.t;++d)c.data[d]=b(g,a.data[d]);c.t=a.t}c.s=b(this.s,a.s);c.clamp()};c.prototype.changeBit=function(a,b){var d=c.ONE.shiftLeft(a);this.bitwiseTo(d,b,d);return d};c.prototype.addTo=function(a,b){for(var c=0,d=0,g=Math.min(a.t,this.t);c<g;)d+=this.data[c]+a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;if(a.t<this.t){for(d+=a.s;c<this.t;)d+=
377 +175,80,161,244,112,57,153,124,58,133,35,184,180,122,252,2,54,91,37,85,151,49,45,93,250,152,227,138,146,174,5,223,41,16,103,108,186,201,211,0,230,207,225,158,168,44,99,22,1,63,88,226,137,169,13,56,52,27,171,51,255,176,187,72,12,95,185,177,205,46,197,243,219,71,229,165,156,119,10,166,32,104,254,127,193,173],d=[1,2,3,5];a.rc2=a.rc2||{};a.rc2.expandKey=function(b,d){"string"===typeof b&&(b=a.util.createBuffer(b));d=d||128;var e=b,h=b.length(),m=d,u=Math.ceil(m/8),m=255>>(m&7),k;for(k=h;128>k;k++)e.putByte(c[e.at(k-
378 +1)+e.at(k-h)&255]);e.setAt(128-u,c[e.at(128-u)&m]);for(k=127-u;0<=k;k--)e.setAt(k,c[e.at(k+1)^e.at(k+u)]);return e};var e=function(b,c,e){var g=!1,m=null,p=null,k=null,q,y,v,E,D=[];b=a.rc2.expandKey(b,c);for(v=0;64>v;v++)D.push(b.getInt16Le());e?(q=function(a){for(v=0;4>v;v++){a[v]+=D[E]+(a[(v+3)%4]&a[(v+2)%4])+(~a[(v+3)%4]&a[(v+1)%4]);var b=a[v],c=d[v];a[v]=b<<c&65535|(b&65535)>>16-c;E++}},y=function(a){for(v=0;4>v;v++)a[v]+=D[a[(v+3)%4]&63]}):(q=function(a){for(v=3;0<=v;v--){var b=a[v],c=d[v];a[v]=
379 +(b&65535)>>c|b<<16-c&65535;a[v]-=D[E]+(a[(v+3)%4]&a[(v+2)%4])+(~a[(v+3)%4]&a[(v+1)%4]);E--}},y=function(a){for(v=3;0<=v;v--)a[v]-=D[a[(v+3)%4]&63]});var z=null;return z={start:function(b,c){b&&"string"===typeof b&&(b=a.util.createBuffer(b));g=!1;m=a.util.createBuffer();p=c||new a.util.createBuffer;k=b;z.output=p},update:function(a){for(g||m.putBuffer(a);8<=m.length();){a=[[5,q],[1,y],[6,q],[1,y],[5,q]];var b=[];for(v=0;4>v;v++){var c=m.getInt16Le();null!==k&&(e?c^=k.getInt16Le():k.putInt16Le(c));
380 +b.push(c&65535)}E=e?0:63;for(c=0;c<a.length;c++)for(var d=0;d<a[c][0];d++)a[c][1](b);for(v=0;4>v;v++)null!==k&&(e?k.putInt16Le(b[v]):b[v]^=k.getInt16Le()),p.putInt16Le(b[v])}},finish:function(a){var b=!0;if(e)if(a)b=a(8,m,!e);else{var c=8===m.length()?8:8-m.length();m.fillWithByte(c,c)}b&&(g=!0,z.update());!e&&(b=0===m.length())&&(a?b=a(8,p,!e):(a=p.length(),c=p.at(a-1),c>a?b=!1:p.truncate(c)));return b}}};a.rc2.startEncrypting=function(b,c,d){b=a.rc2.createEncryptionCipher(b,128);b.start(c,d);return b};
381 +a.rc2.createEncryptionCipher=function(a,b){return e(a,b,!0)};a.rc2.startDecrypting=function(b,c,d){b=a.rc2.createDecryptionCipher(b,128);b.start(c,d);return b};a.rc2.createDecryptionCipher=function(a,b){return e(a,b,!1)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||
382 +{};if(c.defined.rc2)return c.rc2;c.defined.rc2=!0;for(var p=0;p<e.length;++p)e[p](c);return c.rc2}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/rc2",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d){this.data=[];null!=a&&("number"==typeof a?
383 +this.fromNumber(a,b,d):null==b&&"string"!=typeof a?this.fromString(a,256):this.fromString(a,b))}function d(){return new c(null)}function e(a,b,c,d,n,h){for(;0<=--h;){var g=b*this.data[a++]+c.data[d]+n;n=Math.floor(g/67108864);c.data[d++]=g&67108863}return n}function k(a,b,c,d,e,n){var h=b&32767;for(b>>=15;0<=--n;){var g=this.data[a]&32767,m=this.data[a++]>>15,z=b*g+m*h,g=h*g+((z&32767)<<15)+c.data[d]+(e&1073741823);e=(g>>>30)+(z>>>15)+b*m+(e>>>30);c.data[d++]=g&1073741823}return e}function q(a,b,
384 +c,d,e,n){var h=b&16383;for(b>>=14;0<=--n;){var g=this.data[a]&16383,m=this.data[a++]>>14,z=b*g+m*h,g=h*g+((z&16383)<<14)+c.data[d]+e;e=(g>>28)+(z>>14)+b*m;c.data[d++]=g&268435455}return e}function l(a,b){var c=W[a.charCodeAt(b)];return null==c?-1:c}function g(a){var b=d();b.fromInt(a);return b}function x(a){var b=1,c;0!=(c=a>>>16)&&(a=c,b+=16);0!=(c=a>>8)&&(a=c,b+=8);0!=(c=a>>4)&&(a=c,b+=4);0!=(c=a>>2)&&(a=c,b+=2);0!=a>>1&&(b+=1);return b}function u(a){this.m=a}function v(a){this.m=a;this.mp=a.invDigit();
385 +this.mpl=this.mp&32767;this.mph=this.mp>>15;this.um=(1<<a.DB-15)-1;this.mt2=2*a.t}function A(a,b){return a&b}function y(a,b){return a|b}function H(a,b){return a^b}function E(a,b){return a&~b}function D(){}function z(a){return a}function C(a){this.r2=d();this.q3=d();c.ONE.dlShiftTo(2*a.t,this.r2);this.mu=this.r2.divide(a);this.m=a}function F(){return{nextBytes:function(a){for(var b=0;b<a.length;++b)a[b]=Math.floor(256*Math.random())}}}var M;"undefined"===typeof navigator?(c.prototype.am=q,M=28):"Microsoft Internet Explorer"==
386 +navigator.appName?(c.prototype.am=k,M=30):"Netscape"!=navigator.appName?(c.prototype.am=e,M=26):(c.prototype.am=q,M=28);c.prototype.DB=M;c.prototype.DM=(1<<M)-1;c.prototype.DV=1<<M;c.prototype.FV=Math.pow(2,52);c.prototype.F1=52-M;c.prototype.F2=2*M-52;var W=[],r;M=48;for(r=0;9>=r;++r)W[M++]=r;M=97;for(r=10;36>r;++r)W[M++]=r;M=65;for(r=10;36>r;++r)W[M++]=r;u.prototype.convert=function(a){return 0>a.s||0<=a.compareTo(this.m)?a.mod(this.m):a};u.prototype.revert=function(a){return a};u.prototype.reduce=
387 +function(a){a.divRemTo(this.m,null,a)};u.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};u.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};v.prototype.convert=function(a){var b=d();a.abs().dlShiftTo(this.m.t,b);b.divRemTo(this.m,null,b);0>a.s&&0<b.compareTo(c.ZERO)&&this.m.subTo(b,b);return b};v.prototype.revert=function(a){var b=d();a.copyTo(b);this.reduce(b);return b};v.prototype.reduce=function(a){for(;a.t<=this.mt2;)a.data[a.t++]=0;for(var b=0;b<this.m.t;++b){var c=
388 +a.data[b]&32767,d=c*this.mpl+((c*this.mph+(a.data[b]>>15)*this.mpl&this.um)<<15)&a.DM,c=b+this.m.t;for(a.data[c]+=this.m.am(0,d,a,b,0,this.m.t);a.data[c]>=a.DV;)a.data[c]-=a.DV,a.data[++c]++}a.clamp();a.drShiftTo(this.m.t,a);0<=a.compareTo(this.m)&&a.subTo(this.m,a)};v.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};v.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};c.prototype.copyTo=function(a){for(var b=this.t-1;0<=b;--b)a.data[b]=this.data[b];a.t=this.t;a.s=this.s};
389 +c.prototype.fromInt=function(a){this.t=1;this.s=0>a?-1:0;0<a?this.data[0]=a:-1>a?this.data[0]=a+this.DV:this.t=0};c.prototype.fromString=function(a,b){var d;if(16==b)d=4;else if(8==b)d=3;else if(256==b)d=8;else if(2==b)d=1;else if(32==b)d=5;else if(4==b)d=2;else{this.fromRadix(a,b);return}this.s=this.t=0;for(var e=a.length,n=!1,h=0;0<=--e;){var g=8==d?a[e]&255:l(a,e);0>g?"-"==a.charAt(e)&&(n=!0):(n=!1,0==h?this.data[this.t++]=g:h+d>this.DB?(this.data[this.t-1]|=(g&(1<<this.DB-h)-1)<<h,this.data[this.t++]=
390 +g>>this.DB-h):this.data[this.t-1]|=g<<h,h+=d,h>=this.DB&&(h-=this.DB))}8==d&&0!=(a[0]&128)&&(this.s=-1,0<h&&(this.data[this.t-1]|=(1<<this.DB-h)-1<<h));this.clamp();n&&c.ZERO.subTo(this,this)};c.prototype.clamp=function(){for(var a=this.s&this.DM;0<this.t&&this.data[this.t-1]==a;)--this.t};c.prototype.dlShiftTo=function(a,b){var c;for(c=this.t-1;0<=c;--c)b.data[c+a]=this.data[c];for(c=a-1;0<=c;--c)b.data[c]=0;b.t=this.t+a;b.s=this.s};c.prototype.drShiftTo=function(a,b){for(var c=a;c<this.t;++c)b.data[c-
391 +a]=this.data[c];b.t=Math.max(this.t-a,0);b.s=this.s};c.prototype.lShiftTo=function(a,b){var c=a%this.DB,d=this.DB-c,e=(1<<d)-1,n=Math.floor(a/this.DB),h=this.s<<c&this.DM,g;for(g=this.t-1;0<=g;--g)b.data[g+n+1]=this.data[g]>>d|h,h=(this.data[g]&e)<<c;for(g=n-1;0<=g;--g)b.data[g]=0;b.data[n]=h;b.t=this.t+n+1;b.s=this.s;b.clamp()};c.prototype.rShiftTo=function(a,b){b.s=this.s;var c=Math.floor(a/this.DB);if(c>=this.t)b.t=0;else{var d=a%this.DB,e=this.DB-d,n=(1<<d)-1;b.data[0]=this.data[c]>>d;for(var h=
392 +c+1;h<this.t;++h)b.data[h-c-1]|=(this.data[h]&n)<<e,b.data[h-c]=this.data[h]>>d;0<d&&(b.data[this.t-c-1]|=(this.s&n)<<e);b.t=this.t-c;b.clamp()}};c.prototype.subTo=function(a,b){for(var c=0,d=0,e=Math.min(a.t,this.t);c<e;)d+=this.data[c]-a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;if(a.t<this.t){for(d-=a.s;c<this.t;)d+=this.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d+=this.s}else{for(d+=this.s;c<a.t;)d-=a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d-=a.s}b.s=0>d?-1:0;-1>d?b.data[c++]=this.DV+d:0<d&&
393 +(b.data[c++]=d);b.t=c;b.clamp()};c.prototype.multiplyTo=function(a,b){var d=this.abs(),e=a.abs(),n=d.t;for(b.t=n+e.t;0<=--n;)b.data[n]=0;for(n=0;n<e.t;++n)b.data[n+d.t]=d.am(0,e.data[n],b,n,0,d.t);b.s=0;b.clamp();this.s!=a.s&&c.ZERO.subTo(b,b)};c.prototype.squareTo=function(a){for(var b=this.abs(),c=a.t=2*b.t;0<=--c;)a.data[c]=0;for(c=0;c<b.t-1;++c){var d=b.am(c,b.data[c],a,2*c,0,1);(a.data[c+b.t]+=b.am(c+1,2*b.data[c],a,2*c+1,d,b.t-c-1))>=b.DV&&(a.data[c+b.t]-=b.DV,a.data[c+b.t+1]=1)}0<a.t&&(a.data[a.t-
394 +1]+=b.am(c,b.data[c],a,2*c,0,1));a.s=0;a.clamp()};c.prototype.divRemTo=function(a,b,e){var n=a.abs();if(!(0>=n.t)){var g=this.abs();if(g.t<n.t)null!=b&&b.fromInt(0),null!=e&&this.copyTo(e);else{null==e&&(e=d());var m=d(),z=this.s;a=a.s;var l=this.DB-x(n.data[n.t-1]);0<l?(n.lShiftTo(l,m),g.lShiftTo(l,e)):(n.copyTo(m),g.copyTo(e));n=m.t;g=m.data[n-1];if(0!=g){var C=g*(1<<this.F1)+(1<n?m.data[n-2]>>this.F2:0),u=this.FV/C,C=(1<<this.F1)/C,k=1<<this.F2,F=e.t,r=F-n,q=null==b?d():b;m.dlShiftTo(r,q);0<=e.compareTo(q)&&
395 +(e.data[e.t++]=1,e.subTo(q,e));c.ONE.dlShiftTo(n,q);for(q.subTo(m,m);m.t<n;)m.data[m.t++]=0;for(;0<=--r;){var D=e.data[--F]==g?this.DM:Math.floor(e.data[F]*u+(e.data[F-1]+k)*C);if((e.data[F]+=m.am(0,D,e,r,0,n))<D)for(m.dlShiftTo(r,q),e.subTo(q,e);e.data[F]<--D;)e.subTo(q,e)}null!=b&&(e.drShiftTo(n,b),z!=a&&c.ZERO.subTo(b,b));e.t=n;e.clamp();0<l&&e.rShiftTo(l,e);0>z&&c.ZERO.subTo(e,e)}}}};c.prototype.invDigit=function(){if(1>this.t)return 0;var a=this.data[0];if(0==(a&1))return 0;var b=a&3,b=b*(2-
396 +(a&15)*b)&15,b=b*(2-(a&255)*b)&255,b=b*(2-((a&65535)*b&65535))&65535,b=b*(2-a*b%this.DV)%this.DV;return 0<b?this.DV-b:-b};c.prototype.isEven=function(){return 0==(0<this.t?this.data[0]&1:this.s)};c.prototype.exp=function(a,b){if(4294967295<a||1>a)return c.ONE;var e=d(),n=d(),g=b.convert(this),m=x(a)-1;for(g.copyTo(e);0<=--m;)if(b.sqrTo(e,n),0<(a&1<<m))b.mulTo(n,g,e);else var z=e,e=n,n=z;return b.revert(e)};c.prototype.toString=function(a){if(0>this.s)return"-"+this.negate().toString(a);if(16==a)a=
397 +4;else if(8==a)a=3;else if(2==a)a=1;else if(32==a)a=5;else if(4==a)a=2;else return this.toRadix(a);var b=(1<<a)-1,c,d=!1,e="",n=this.t,h=this.DB-n*this.DB%a;if(0<n--)for(h<this.DB&&0<(c=this.data[n]>>h)&&(d=!0,e="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));0<=n;)h<a?(c=(this.data[n]&(1<<h)-1)<<a-h,c|=this.data[--n]>>(h+=this.DB-a)):(c=this.data[n]>>(h-=a)&b,0>=h&&(h+=this.DB,--n)),0<c&&(d=!0),d&&(e+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));return d?e:"0"};c.prototype.negate=function(){var a=
398 +d();c.ZERO.subTo(this,a);return a};c.prototype.abs=function(){return 0>this.s?this.negate():this};c.prototype.compareTo=function(a){var b=this.s-a.s;if(0!=b)return b;var c=this.t,b=c-a.t;if(0!=b)return 0>this.s?-b:b;for(;0<=--c;)if(0!=(b=this.data[c]-a.data[c]))return b;return 0};c.prototype.bitLength=function(){return 0>=this.t?0:this.DB*(this.t-1)+x(this.data[this.t-1]^this.s&this.DM)};c.prototype.mod=function(a){var b=d();this.abs().divRemTo(a,null,b);0>this.s&&0<b.compareTo(c.ZERO)&&a.subTo(b,
399 +b);return b};c.prototype.modPowInt=function(a,b){var c;c=256>a||b.isEven()?new u(b):new v(b);return this.exp(a,c)};c.ZERO=g(0);c.ONE=g(1);D.prototype.convert=z;D.prototype.revert=z;D.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c)};D.prototype.sqrTo=function(a,b){a.squareTo(b)};C.prototype.convert=function(a){if(0>a.s||a.t>2*this.m.t)return a.mod(this.m);if(0>a.compareTo(this.m))return a;var b=d();a.copyTo(b);this.reduce(b);return b};C.prototype.revert=function(a){return a};C.prototype.reduce=function(a){a.drShiftTo(this.m.t-
400 +1,this.r2);a.t>this.m.t+1&&(a.t=this.m.t+1,a.clamp());this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3);for(this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);0>a.compareTo(this.r2);)a.dAddOffset(1,this.m.t+1);for(a.subTo(this.r2,a);0<=a.compareTo(this.m);)a.subTo(this.m,a)};C.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};C.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};var R=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,
401 +113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509],U=67108864/R[R.length-1];c.prototype.chunkSize=function(a){return Math.floor(Math.LN2*this.DB/Math.log(a))};c.prototype.toRadix=function(a){null==a&&(a=10);if(0==this.signum()||2>a||36<a)return"0";var b=this.chunkSize(a),b=Math.pow(a,
402 +b),c=g(b),e=d(),n=d(),m="";for(this.divRemTo(c,e,n);0<e.signum();)m=(b+n.intValue()).toString(a).substr(1)+m,e.divRemTo(c,e,n);return n.intValue().toString(a)+m};c.prototype.fromRadix=function(a,b){this.fromInt(0);null==b&&(b=10);for(var d=this.chunkSize(b),e=Math.pow(b,d),n=!1,h=0,g=0,m=0;m<a.length;++m){var z=l(a,m);0>z?"-"==a.charAt(m)&&0==this.signum()&&(n=!0):(g=b*g+z,++h>=d&&(this.dMultiply(e),this.dAddOffset(g,0),g=h=0))}0<h&&(this.dMultiply(Math.pow(b,h)),this.dAddOffset(g,0));n&&c.ZERO.subTo(this,
403 +this)};c.prototype.fromNumber=function(a,b,d){if("number"==typeof b)if(2>a)this.fromInt(1);else for(this.fromNumber(a,d),this.testBit(a-1)||this.bitwiseTo(c.ONE.shiftLeft(a-1),y,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(b);)this.dAddOffset(2,0),this.bitLength()>a&&this.subTo(c.ONE.shiftLeft(a-1),this);else{d=[];var e=a&7;d.length=(a>>3)+1;b.nextBytes(d);d[0]=0<e?d[0]&(1<<e)-1:0;this.fromString(d,256)}};c.prototype.bitwiseTo=function(a,b,c){var d,e,n=Math.min(a.t,this.t);for(d=
404 +0;d<n;++d)c.data[d]=b(this.data[d],a.data[d]);if(a.t<this.t){e=a.s&this.DM;for(d=n;d<this.t;++d)c.data[d]=b(this.data[d],e);c.t=this.t}else{e=this.s&this.DM;for(d=n;d<a.t;++d)c.data[d]=b(e,a.data[d]);c.t=a.t}c.s=b(this.s,a.s);c.clamp()};c.prototype.changeBit=function(a,b){var d=c.ONE.shiftLeft(a);this.bitwiseTo(d,b,d);return d};c.prototype.addTo=function(a,b){for(var c=0,d=0,e=Math.min(a.t,this.t);c<e;)d+=this.data[c]+a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;if(a.t<this.t){for(d+=a.s;c<this.t;)d+=
405 this.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d+=this.s}else{for(d+=this.s;c<a.t;)d+=a.data[c],b.data[c++]=d&this.DM,d>>=this.DB;d+=a.s}b.s=0>d?-1:0;0<d?b.data[c++]=d:-1>d&&(b.data[c++]=this.DV+d);b.t=c;b.clamp()};c.prototype.dMultiply=function(a){this.data[this.t]=this.am(0,a-1,this,0,0,this.t);++this.t;this.clamp()};c.prototype.dAddOffset=function(a,b){if(0!=a){for(;this.t<=b;)this.data[this.t++]=0;for(this.data[b]+=a;this.data[b]>=this.DV;)this.data[b]-=this.DV,++b>=this.t&&(this.data[this.t++]=
406 -0),++this.data[b]}};c.prototype.multiplyLowerTo=function(a,b,c){var d=Math.min(this.t+a.t,b);c.s=0;for(c.t=d;0<d;)c.data[--d]=0;var g;for(g=c.t-this.t;d<g;++d)c.data[d+this.t]=this.am(0,a.data[d],c,d,0,this.t);for(g=Math.min(a.t,b);d<g;++d)this.am(0,a.data[d],c,d,0,b-d);c.clamp()};c.prototype.multiplyUpperTo=function(a,b,c){--b;var d=c.t=this.t+a.t-b;for(c.s=0;0<=--d;)c.data[d]=0;for(d=Math.max(b-this.t,0);d<a.t;++d)c.data[this.t+d-b]=this.am(b-d,a.data[d],c,0,0,this.t+d-b);c.clamp();c.drShiftTo(1,
407 -c)};c.prototype.modInt=function(a){if(0>=a)return 0;var b=this.DV%a,c=0>this.s?a-1:0;if(0<this.t)if(0==b)c=this.data[0]%a;else for(var d=this.t-1;0<=d;--d)c=(b*c+this.data[d])%a;return c};c.prototype.millerRabin=function(a){var b=this.subtract(c.ONE),d=b.getLowestSetBit();if(0>=d)return!1;for(var e=b.shiftRight(d),m=A(),h,l=0;l<a;++l){do h=new c(this.bitLength(),m);while(0>=h.compareTo(c.ONE)||0<=h.compareTo(b));h=h.modPow(e,this);if(0!=h.compareTo(c.ONE)&&0!=h.compareTo(b)){for(var k=1;k++<d&&0!=
406 +0),++this.data[b]}};c.prototype.multiplyLowerTo=function(a,b,c){var d=Math.min(this.t+a.t,b);c.s=0;for(c.t=d;0<d;)c.data[--d]=0;var e;for(e=c.t-this.t;d<e;++d)c.data[d+this.t]=this.am(0,a.data[d],c,d,0,this.t);for(e=Math.min(a.t,b);d<e;++d)this.am(0,a.data[d],c,d,0,b-d);c.clamp()};c.prototype.multiplyUpperTo=function(a,b,c){--b;var d=c.t=this.t+a.t-b;for(c.s=0;0<=--d;)c.data[d]=0;for(d=Math.max(b-this.t,0);d<a.t;++d)c.data[this.t+d-b]=this.am(b-d,a.data[d],c,0,0,this.t+d-b);c.clamp();c.drShiftTo(1,
407 +c)};c.prototype.modInt=function(a){if(0>=a)return 0;var b=this.DV%a,c=0>this.s?a-1:0;if(0<this.t)if(0==b)c=this.data[0]%a;else for(var d=this.t-1;0<=d;--d)c=(b*c+this.data[d])%a;return c};c.prototype.millerRabin=function(a){var b=this.subtract(c.ONE),d=b.getLowestSetBit();if(0>=d)return!1;for(var e=b.shiftRight(d),n=F(),h,g=0;g<a;++g){do h=new c(this.bitLength(),n);while(0>=h.compareTo(c.ONE)||0<=h.compareTo(b));h=h.modPow(e,this);if(0!=h.compareTo(c.ONE)&&0!=h.compareTo(b)){for(var m=1;m++<d&&0!=
408 h.compareTo(b);)if(h=h.modPowInt(2,this),0==h.compareTo(c.ONE))return!1;if(0!=h.compareTo(b))return!1}}return!0};c.prototype.clone=function(){var a=d();this.copyTo(a);return a};c.prototype.intValue=function(){if(0>this.s){if(1==this.t)return this.data[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this.data[0];if(0==this.t)return 0}return(this.data[1]&(1<<32-this.DB)-1)<<this.DB|this.data[0]};c.prototype.byteValue=function(){return 0==this.t?this.s:this.data[0]<<24>>24};c.prototype.shortValue=
409 -function(){return 0==this.t?this.s:this.data[0]<<16>>16};c.prototype.signum=function(){return 0>this.s?-1:0>=this.t||1==this.t&&0>=this.data[0]?0:1};c.prototype.toByteArray=function(){var a=this.t,b=[];b[0]=this.s;var c=this.DB-a*this.DB%8,d,g=0;if(0<a--)for(c<this.DB&&(d=this.data[a]>>c)!=(this.s&this.DM)>>c&&(b[g++]=d|this.s<<this.DB-c);0<=a;)if(8>c?(d=(this.data[a]&(1<<c)-1)<<8-c,d|=this.data[--a]>>(c+=this.DB-8)):(d=this.data[a]>>(c-=8)&255,0>=c&&(c+=this.DB,--a)),0!=(d&128)&&(d|=-256),0==g&&
410 -(this.s&128)!=(d&128)&&++g,0<g||d!=this.s)b[g++]=d;return b};c.prototype.equals=function(a){return 0==this.compareTo(a)};c.prototype.min=function(a){return 0>this.compareTo(a)?this:a};c.prototype.max=function(a){return 0<this.compareTo(a)?this:a};c.prototype.and=function(a){var b=d();this.bitwiseTo(a,B,b);return b};c.prototype.or=function(a){var b=d();this.bitwiseTo(a,y,b);return b};c.prototype.xor=function(a){var b=d();this.bitwiseTo(a,I,b);return b};c.prototype.andNot=function(a){var b=d();this.bitwiseTo(a,
411 -F,b);return b};c.prototype.not=function(){for(var a=d(),b=0;b<this.t;++b)a.data[b]=this.DM&~this.data[b];a.t=this.t;a.s=~this.s;return a};c.prototype.shiftLeft=function(a){var b=d();0>a?this.rShiftTo(-a,b):this.lShiftTo(a,b);return b};c.prototype.shiftRight=function(a){var b=d();0>a?this.lShiftTo(-a,b):this.rShiftTo(a,b);return b};c.prototype.getLowestSetBit=function(){for(var a=0;a<this.t;++a)if(0!=this.data[a]){var b=a*this.DB;a=this.data[a];if(0==a)a=-1;else{var c=0;0==(a&65535)&&(a>>=16,c+=16);
412 -0==(a&255)&&(a>>=8,c+=8);0==(a&15)&&(a>>=4,c+=4);0==(a&3)&&(a>>=2,c+=2);0==(a&1)&&++c;a=c}return b+a}return 0>this.s?this.t*this.DB:-1};c.prototype.bitCount=function(){for(var a=0,b=this.s&this.DM,c=0;c<this.t;++c){for(var d=this.data[c]^b,g=0;0!=d;)d&=d-1,++g;a+=g}return a};c.prototype.testBit=function(a){var b=Math.floor(a/this.DB);return b>=this.t?0!=this.s:0!=(this.data[b]&1<<a%this.DB)};c.prototype.setBit=function(a){return this.changeBit(a,y)};c.prototype.clearBit=function(a){return this.changeBit(a,
413 -F)};c.prototype.flipBit=function(a){return this.changeBit(a,I)};c.prototype.add=function(a){var b=d();this.addTo(a,b);return b};c.prototype.subtract=function(a){var b=d();this.subTo(a,b);return b};c.prototype.multiply=function(a){var b=d();this.multiplyTo(a,b);return b};c.prototype.divide=function(a){var b=d();this.divRemTo(a,b,null);return b};c.prototype.remainder=function(a){var b=d();this.divRemTo(a,null,b);return b};c.prototype.divideAndRemainder=function(a){var b=d(),c=d();this.divRemTo(a,b,
414 -c);return[b,c]};c.prototype.modPow=function(a,b){var c=a.bitLength(),g,e=h(1),m;if(0>=c)return e;g=18>c?1:48>c?3:144>c?4:768>c?5:6;m=8>c?new q(b):b.isEven()?new D(b):new r(b);var l=[],k=3,z=g-1,A=(1<<g)-1;l[1]=m.convert(this);if(1<g)for(c=d(),m.sqrTo(l[1],c);k<=A;)l[k]=d(),m.mulTo(c,l[k-2],l[k]),k+=2;for(var u=a.t-1,v,n=!0,x=d(),c=p(a.data[u])-1;0<=u;){c>=z?v=a.data[u]>>c-z&A:(v=(a.data[u]&(1<<c+1)-1)<<z-c,0<u&&(v|=a.data[u-1]>>this.DB+c-z));for(k=g;0==(v&1);)v>>=1,--k;0>(c-=k)&&(c+=this.DB,--u);
415 -if(n)l[v].copyTo(e),n=!1;else{for(;1<k;)m.sqrTo(e,x),m.sqrTo(x,e),k-=2;0<k?m.sqrTo(e,x):(k=e,e=x,x=k);m.mulTo(x,l[v],e)}for(;0<=u&&0==(a.data[u]&1<<c);)m.sqrTo(e,x),k=e,e=x,x=k,0>--c&&(c=this.DB-1,--u)}return m.revert(e)};c.prototype.modInverse=function(a){var b=a.isEven();if(this.isEven()&&b||0==a.signum())return c.ZERO;for(var d=a.clone(),e=this.clone(),m=h(1),l=h(0),k=h(0),z=h(1);0!=d.signum();){for(;d.isEven();)d.rShiftTo(1,d),b?(m.isEven()&&l.isEven()||(m.addTo(this,m),l.subTo(a,l)),m.rShiftTo(1,
416 -m)):l.isEven()||l.subTo(a,l),l.rShiftTo(1,l);for(;e.isEven();)e.rShiftTo(1,e),b?(k.isEven()&&z.isEven()||(k.addTo(this,k),z.subTo(a,z)),k.rShiftTo(1,k)):z.isEven()||z.subTo(a,z),z.rShiftTo(1,z);0<=d.compareTo(e)?(d.subTo(e,d),b&&m.subTo(k,m),l.subTo(z,l)):(e.subTo(d,e),b&&k.subTo(m,k),z.subTo(l,z))}if(0!=e.compareTo(c.ONE))return c.ZERO;if(0<=z.compareTo(a))return z.subtract(a);if(0>z.signum())z.addTo(a,z);else return z;return 0>z.signum()?z.add(a):z};c.prototype.pow=function(a){return this.exp(a,
417 -new E)};c.prototype.gcd=function(a){var b=0>this.s?this.negate():this.clone();a=0>a.s?a.negate():a.clone();if(0>b.compareTo(a)){var c=b,b=a;a=c}var c=b.getLowestSetBit(),d=a.getLowestSetBit();if(0>d)return b;c<d&&(d=c);0<d&&(b.rShiftTo(d,b),a.rShiftTo(d,a));for(;0<b.signum();)0<(c=b.getLowestSetBit())&&b.rShiftTo(c,b),0<(c=a.getLowestSetBit())&&a.rShiftTo(c,a),0<=b.compareTo(a)?(b.subTo(a,b),b.rShiftTo(1,b)):(a.subTo(b,a),a.rShiftTo(1,a));0<d&&a.lShiftTo(d,a);return a};c.prototype.isProbablePrime=
418 -function(a){var b,c=this.abs();if(1==c.t&&c.data[0]<=O[O.length-1]){for(b=0;b<O.length;++b)if(c.data[0]==O[b])return!0;return!1}if(c.isEven())return!1;for(b=1;b<O.length;){for(var d=O[b],g=b+1;g<O.length&&d<R;)d*=O[g++];for(d=c.modInt(d);b<g;)if(0==d%O[b++])return!1}return c.millerRabin(a)};a.jsbn=a.jsbn||{};a.jsbn.BigInteger=c}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,
419 -p=function(a,c){c.exports=function(c){var g=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.jsbn)return c.jsbn;c.defined.jsbn=!0;for(var e=0;e<g.length;++e)g[e](c);return c.jsbn}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/jsbn",["require","module"],function(){p.apply(null,Array.prototype.slice.call(arguments,
420 -0))})})();(function(){function b(a){function c(b,d,e){e||(e=a.md.sha1.create());for(var g="",h=Math.ceil(d/e.digestLength),n=0;n<h;++n){var q=String.fromCharCode(n>>24&255,n>>16&255,n>>8&255,n&255);e.start();e.update(b+q);g+=e.digest().getBytes()}return g.substring(0,d)}var d=a.pkcs1=a.pkcs1||{};d.encode_rsa_oaep=function(b,d,e,k,h){var n,q,w,p;"string"===typeof e?(n=e,q=k||void 0,w=h||void 0):e&&(n=e.label||void 0,q=e.seed||void 0,w=e.md||void 0,e.mgf1&&e.mgf1.md&&(p=e.mgf1.md));w?w.start():w=a.md.sha1.create();
421 -p||(p=w);b=Math.ceil(b.n.bitLength()/8);e=b-2*w.digestLength-2;if(d.length>e)throw p=Error("RSAES-OAEP input message length is too long."),p.length=d.length,p.maxLength=e,p;n||(n="");w.update(n,"raw");n=w.digest();k="";e-=d.length;for(h=0;h<e;h++)k+="\x00";d=n.getBytes()+k+"\u0001"+d;if(!q)q=a.random.getBytes(w.digestLength);else if(q.length!==w.digestLength)throw p=Error("Invalid RSAES-OAEP seed. The seed length must match the digest length."),p.seedLength=q.length,p.digestLength=w.digestLength,
422 -p;b=c(q,b-w.digestLength-1,p);d=a.util.xorBytes(d,b,d.length);w=c(d,w.digestLength,p);return"\x00"+a.util.xorBytes(q,w,q.length)+d};d.decode_rsa_oaep=function(b,d,e,k){var h,n,q;"string"===typeof e?(h=e,n=k||void 0):e&&(h=e.label||void 0,n=e.md||void 0,e.mgf1&&e.mgf1.md&&(q=e.mgf1.md));e=Math.ceil(b.n.bitLength()/8);if(d.length!==e)throw q=Error("RSAES-OAEP encoded message length is invalid."),q.length=d.length,q.expectedLength=e,q;void 0===n?n=a.md.sha1.create():n.start();q||(q=n);if(e<2*n.digestLength+
423 -2)throw Error("RSAES-OAEP key is too short for the hash function.");h||(h="");n.update(h,"raw");h=n.digest().getBytes();b=d.charAt(0);k=d.substring(1,n.digestLength+1);d=d.substring(1+n.digestLength);var w=c(d,n.digestLength,q);k=a.util.xorBytes(k,w,k.length);q=c(k,e-n.digestLength-1,q);d=a.util.xorBytes(d,q,d.length);e=d.substring(0,n.digestLength);q="\x00"!==b;for(b=0;b<n.digestLength;++b)q|=h.charAt(b)!==e.charAt(b);h=1;for(n=b=n.digestLength;n<d.length;n++)e=d.charCodeAt(n),k=e&1^1,q|=e&(h?65534:
424 -0),h&=k,b+=h;if(q||1!==d.charCodeAt(b))throw Error("Invalid RSAES-OAEP padding.");return d.substring(b+1)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs1)return c.pkcs1;c.defined.pkcs1=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pkcs1}},
425 -r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs1",["require","module","./util","./random","./sha1"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,g,m){return"workers"in g?e(a,b,g,m):d(a,b,g,m)}function d(b,c,e,g){var h=n(b,c),l=0,k=p(h.bitLength());"millerRabinTests"in
426 -e&&(k=e.millerRabinTests);var q=10;"maxBlockTime"in e&&(q=e.maxBlockTime);var G=+new Date;do{h.bitLength()>b&&(h=n(b,c));if(h.isProbablePrime(k))return g(null,h);h.dAddOffset(r[l++%8],0)}while(0>q||+new Date-G<q);a.util.setImmediate(function(){d(b,c,e,g)})}function e(b,c,g,l){function k(){function a(e){if(!m){--g;var k=e.data;if(k.found){for(e=0;e<d.length;++e)d[e].terminate();m=!0;return l(null,new h(k.prime,16))}z.bitLength()>b&&(z=n(b,c));k=z.toString(16);e.target.postMessage({hex:k,workLoad:A});
427 -z.dAddOffset(p,0)}}q=Math.max(1,q);for(var d=[],e=0;e<q;++e)d[e]=new Worker(x);for(var g=q,e=0;e<q;++e)d[e].addEventListener("message",a);var m=!1}if("undefined"===typeof Worker)return d(b,c,g,l);var z=n(b,c),q=g.workers,A=g.workLoad||100,p=30*A/8,x=g.workerScript||"forge/prime.worker.js";if(-1===q)return a.util.estimateCores(function(a,b){a&&(b=2);q=b-1;k()});k()}function n(a,b){var c=new h(a,b),d=a-1;c.testBit(d)||c.bitwiseTo(h.ONE.shiftLeft(d),C,c);c.dAddOffset(31-c.mod(q).byteValue(),0);return c}
428 -function p(a){return 100>=a?27:150>=a?18:200>=a?15:250>=a?12:300>=a?9:350>=a?8:400>=a?7:500>=a?6:600>=a?5:800>=a?4:1250>=a?3:2}if(!a.prime){var k=a.prime=a.prime||{},h=a.jsbn.BigInteger,r=[6,4,2,4,2,4,6,2],q=new h(null);q.fromInt(30);var C=function(a,b){return a|b};k.generateProbablePrime=function(b,d,e){"function"===typeof d&&(e=d,d={});d=d||{};var h=d.algorithm||"PRIMEINC";"string"===typeof h&&(h={name:h});h.options=h.options||{};var l=d.prng||a.random;d={nextBytes:function(a){for(var b=l.getBytesSync(a.length),
429 -c=0;c<a.length;++c)a[c]=b.charCodeAt(c)}};if("PRIMEINC"===h.name)return c(b,d,h.options,e);throw Error("Invalid prime generation algorithm: "+h.name);}}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.prime)return c.prime;c.defined.prime=!0;for(var g=
430 -0;g<e.length;++g)e[g](c);return c.prime}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/prime",["require","module","./util","./jsbn","./random"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d,e){var g=a.util.createBuffer();d=Math.ceil(d.n.bitLength()/8);if(b.length>d-11)throw g=
431 -Error("Message is too long for PKCS#1 v1.5 padding."),g.length=b.length,g.max=d-11,g;g.putByte(0);g.putByte(e);d=d-3-b.length;if(0===e||1===e){e=0===e?0:255;for(var h=0;h<d;++h)g.putByte(e)}else for(;0<d;){for(var l=0,k=a.random.getBytes(d),h=0;h<d;++h)e=k.charCodeAt(h),0===e?++l:g.putByte(e);d=l}g.putByte(0);g.putBytes(b);return g}function d(b,c,e,g){c=Math.ceil(c.n.bitLength()/8);b=a.util.createBuffer(b);var h=b.getByte(),l=b.getByte();if(0!==h||e&&0!==l&&1!==l||!e&&2!=l||e&&0===l&&"undefined"===
432 -typeof g)throw Error("Encryption block is invalid.");e=0;if(0===l)for(e=c-3-g,g=0;g<e;++g){if(0!==b.getByte())throw Error("Encryption block is invalid.");}else if(1===l)for(e=0;1<b.length();){if(255!==b.getByte()){--b.read;break}++e}else if(2===l)for(e=0;1<b.length();){if(0===b.getByte()){--b.read;break}++e}if(0!==b.getByte()||e!==c-3-b.length())throw Error("Encryption block is invalid.");return b.getBytes()}function e(b,c,d){function g(){h(b.pBits,function(a,c){if(a)return d(a);b.p=c;if(null!==b.q)return l(a,
433 -b.q);h(b.qBits,l)})}function h(b,c){a.prime.generateProbablePrime(b,q,c)}function l(a,c){if(a)return d(a);b.q=c;if(0>b.p.compareTo(b.q)){var e=b.p;b.p=b.q;b.q=e}0!==b.p.subtract(k.ONE).gcd(b.e).compareTo(k.ONE)?(b.p=null,g()):0!==b.q.subtract(k.ONE).gcd(b.e).compareTo(k.ONE)?(b.q=null,h(b.qBits,l)):(b.p1=b.p.subtract(k.ONE),b.q1=b.q.subtract(k.ONE),b.phi=b.p1.multiply(b.q1),0!==b.phi.gcd(b.e).compareTo(k.ONE)?(b.p=b.q=null,g()):(b.n=b.p.multiply(b.q),b.n.bitLength()!==b.bits?(b.q=null,h(b.qBits,l)):
434 -(e=b.e.modInverse(b.phi),b.keys={privateKey:r.rsa.setPrivateKey(b.n,b.e,e,b.p,b.q,e.mod(b.p1),e.mod(b.q1),b.q.modInverse(b.p)),publicKey:r.rsa.setPublicKey(b.n,b.e)},d(null,b.keys))))}"function"===typeof c&&(d=c,c={});c=c||{};var q={algorithm:{name:c.algorithm||"PRIMEINC",options:{workers:c.workers||2,workLoad:c.workLoad||100,workerScript:c.workerScript}}};"prng"in c&&(q.prng=c.prng);g()}function n(b){b=b.toString(16);"8"<=b[0]&&(b="00"+b);return a.util.hexToBytes(b)}function p(a){return 100>=a?27:
435 -150>=a?18:200>=a?15:250>=a?12:300>=a?9:350>=a?8:400>=a?7:500>=a?6:600>=a?5:800>=a?4:1250>=a?3:2}if("undefined"===typeof k)var k=a.jsbn.BigInteger;var h=a.asn1;a.pki=a.pki||{};a.pki.rsa=a.rsa=a.rsa||{};var r=a.pki,q=[6,4,2,4,2,4,6,2],C={name:"PrivateKeyInfo",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"PrivateKeyInfo.version",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyVersion"},{name:"PrivateKeyInfo.privateKeyAlgorithm",tagClass:h.Class.UNIVERSAL,
436 -type:h.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"privateKeyOid"}]},{name:"PrivateKeyInfo",tagClass:h.Class.UNIVERSAL,type:h.Type.OCTETSTRING,constructed:!1,capture:"privateKey"}]},B={name:"RSAPrivateKey",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"RSAPrivateKey.version",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyVersion"},{name:"RSAPrivateKey.modulus",
437 -tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyModulus"},{name:"RSAPrivateKey.publicExponent",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyPublicExponent"},{name:"RSAPrivateKey.privateExponent",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyPrivateExponent"},{name:"RSAPrivateKey.prime1",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyPrime1"},{name:"RSAPrivateKey.prime2",
438 -tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyPrime2"},{name:"RSAPrivateKey.exponent1",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyExponent1"},{name:"RSAPrivateKey.exponent2",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyExponent2"},{name:"RSAPrivateKey.coefficient",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"privateKeyCoefficient"}]},y={name:"RSAPublicKey",tagClass:h.Class.UNIVERSAL,
439 -type:h.Type.SEQUENCE,constructed:!0,value:[{name:"RSAPublicKey.modulus",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"publicKeyModulus"},{name:"RSAPublicKey.exponent",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"publicKeyExponent"}]},I=a.pki.rsa.publicKeyValidator={name:"SubjectPublicKeyInfo",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"subjectPublicKeyInfo",value:[{name:"SubjectPublicKeyInfo.AlgorithmIdentifier",tagClass:h.Class.UNIVERSAL,
440 -type:h.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"publicKeyOid"}]},{name:"SubjectPublicKeyInfo.subjectPublicKey",tagClass:h.Class.UNIVERSAL,type:h.Type.BITSTRING,constructed:!1,value:[{name:"SubjectPublicKeyInfo.subjectPublicKey.RSAPublicKey",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,optional:!0,captureAsn1:"rsaPublicKey"}]}]},F=function(a){var b;if(a.algorithm in r.oids)b=r.oids[a.algorithm];
441 -else throw b=Error("Unknown message digest algorithm."),b.algorithm=a.algorithm,b;var c=h.oidToDer(b).getBytes();b=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]);var d=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]);d.value.push(h.create(h.Class.UNIVERSAL,h.Type.OID,!1,c));d.value.push(h.create(h.Class.UNIVERSAL,h.Type.NULL,!1,""));a=h.create(h.Class.UNIVERSAL,h.Type.OCTETSTRING,!1,a.digest().getBytes());b.value.push(d);b.value.push(a);return h.toDer(b).getBytes()},E=function(b,c,d){if(d)return b.modPow(c.e,
442 -c.n);if(!c.p||!c.q)return b.modPow(c.d,c.n);c.dP||(c.dP=c.d.mod(c.p.subtract(k.ONE)));c.dQ||(c.dQ=c.d.mod(c.q.subtract(k.ONE)));c.qInv||(c.qInv=c.q.modInverse(c.p));do d=new k(a.util.bytesToHex(a.random.getBytes(c.n.bitLength()/8)),16);while(0<=d.compareTo(c.n)||!d.gcd(c.n).equals(k.ONE));b=b.multiply(d.modPow(c.e,c.n)).mod(c.n);var e=b.mod(c.p).modPow(c.dP,c.p);for(b=b.mod(c.q).modPow(c.dQ,c.q);0>e.compareTo(b);)e=e.add(c.p);b=e.subtract(b).multiply(c.qInv).mod(c.p).multiply(c.q).add(b);return b=
443 -b.multiply(d.modInverse(c.n)).mod(c.n)};r.rsa.encrypt=function(b,d,e){var h=e,l=Math.ceil(d.n.bitLength()/8);!1!==e&&!0!==e?(h=2===e,e=c(b,d,e)):(e=a.util.createBuffer(),e.putBytes(b));b=new k(e.toHex(),16);d=E(b,d,h).toString(16);h=a.util.createBuffer();for(l-=Math.ceil(d.length/2);0<l;)h.putByte(0),--l;h.putBytes(a.util.hexToBytes(d));return h.getBytes()};r.rsa.decrypt=function(b,c,e,g){var h=Math.ceil(c.n.bitLength()/8);if(b.length!==h)throw c=Error("Encrypted message length is invalid."),c.length=
444 -b.length,c.expected=h,c;b=new k(a.util.createBuffer(b).toHex(),16);if(0<=b.compareTo(c.n))throw Error("Encrypted message is invalid.");b=E(b,c,e).toString(16);for(var l=a.util.createBuffer(),h=h-Math.ceil(b.length/2);0<h;)l.putByte(0),--h;l.putBytes(a.util.hexToBytes(b));return!1!==g?d(l.getBytes(),c,e):l.getBytes()};r.rsa.createKeyPairGenerationState=function(b,c,d){"string"===typeof b&&(b=parseInt(b,10));b=b||2048;d=d||{};var e=d.prng||a.random,g={nextBytes:function(a){for(var b=e.getBytesSync(a.length),
445 -c=0;c<a.length;++c)a[c]=b.charCodeAt(c)}};d=d.algorithm||"PRIMEINC";if("PRIMEINC"===d)b={algorithm:d,state:0,bits:b,rng:g,eInt:c||65537,e:new k(null),p:null,q:null,qBits:b>>1,pBits:b-(b>>1),pqState:0,num:null,keys:null},b.e.fromInt(b.eInt);else throw Error("Invalid key generation algorithm: "+d);return b};r.rsa.stepKeyPairGenerationState=function(a,b){"algorithm"in a||(a.algorithm="PRIMEINC");var c=new k(null);c.fromInt(30);for(var d=0,e=function(a,b){return a|b},g=+new Date,m,h=0;null===a.keys&&
446 -(0>=b||h<b);){if(0===a.state){m=null===a.p?a.pBits:a.qBits;var l=m-1;0===a.pqState?(a.num=new k(m,a.rng),a.num.testBit(l)||a.num.bitwiseTo(k.ONE.shiftLeft(l),e,a.num),a.num.dAddOffset(31-a.num.mod(c).byteValue(),0),d=0,++a.pqState):1===a.pqState?a.num.bitLength()>m?a.pqState=0:a.num.isProbablePrime(p(a.num.bitLength()))?++a.pqState:a.num.dAddOffset(q[d++%8],0):2===a.pqState?a.pqState=0===a.num.subtract(k.ONE).gcd(a.e).compareTo(k.ONE)?3:0:3===a.pqState&&(a.pqState=0,null===a.p?a.p=a.num:a.q=a.num,
447 -null!==a.p&&null!==a.q&&++a.state,a.num=null)}else 1===a.state?(0>a.p.compareTo(a.q)&&(a.num=a.p,a.p=a.q,a.q=a.num),++a.state):2===a.state?(a.p1=a.p.subtract(k.ONE),a.q1=a.q.subtract(k.ONE),a.phi=a.p1.multiply(a.q1),++a.state):3===a.state?0===a.phi.gcd(a.e).compareTo(k.ONE)?++a.state:(a.p=null,a.q=null,a.state=0):4===a.state?(a.n=a.p.multiply(a.q),a.n.bitLength()===a.bits?++a.state:(a.q=null,a.state=0)):5===a.state&&(m=a.e.modInverse(a.phi),a.keys={privateKey:r.rsa.setPrivateKey(a.n,a.e,m,a.p,a.q,
448 -m.mod(a.p1),m.mod(a.q1),a.q.modInverse(a.p)),publicKey:r.rsa.setPublicKey(a.n,a.e)});m=+new Date;h+=m-g;g=m}return null!==a.keys};r.rsa.generateKeyPair=function(a,b,c,d){1===arguments.length?"object"===typeof a?(c=a,a=void 0):"function"===typeof a&&(d=a,a=void 0):2===arguments.length?"number"===typeof a?"function"===typeof b?(d=b,b=void 0):"number"!==typeof b&&(c=b,b=void 0):(c=a,d=b,b=a=void 0):3===arguments.length&&("number"===typeof b?"function"===typeof c&&(d=c,c=void 0):(d=c,c=b,b=void 0));c=
449 -c||{};void 0===a&&(a=c.bits||2048);void 0===b&&(b=c.e||65537);var g=r.rsa.createKeyPairGenerationState(a,b,c);if(!d)return r.rsa.stepKeyPairGenerationState(g,0),g.keys;e(g,c,d)};r.setRsaPublicKey=r.rsa.setPublicKey=function(b,e){var l={n:b,e:e,encrypt:function(b,d,e){"string"===typeof d?d=d.toUpperCase():void 0===d&&(d="RSAES-PKCS1-V1_5");if("RSAES-PKCS1-V1_5"===d)d={encode:function(a,b,d){return c(a,b,2).getBytes()}};else if("RSA-OAEP"===d||"RSAES-OAEP"===d)d={encode:function(b,c){return a.pkcs1.encode_rsa_oaep(c,
450 -b,e)}};else if(-1!==["RAW","NONE","NULL",null].indexOf(d))d={encode:function(a){return a}};else if("string"===typeof d)throw Error('Unsupported encryption scheme: "'+d+'".');b=d.encode(b,l,!0);return r.rsa.encrypt(b,l,!0)},verify:function(a,b,c){"string"===typeof c?c=c.toUpperCase():void 0===c&&(c="RSASSA-PKCS1-V1_5");if("RSASSA-PKCS1-V1_5"===c)c={verify:function(a,b){b=d(b,l,!0);var c=h.fromDer(b);return a===c.value[1].value}};else if("NONE"===c||"NULL"===c||null===c)c={verify:function(a,b){b=d(b,
451 -l,!0);return a===b}};b=r.rsa.decrypt(b,l,!0,!1);return c.verify(a,b,l.n.bitLength())}};return l};r.setRsaPrivateKey=r.rsa.setPrivateKey=function(b,c,e,g,h,l,k,q){var n={n:b,e:c,d:e,p:g,q:h,dP:l,dQ:k,qInv:q,decrypt:function(b,c,e){"string"===typeof c?c=c.toUpperCase():void 0===c&&(c="RSAES-PKCS1-V1_5");b=r.rsa.decrypt(b,n,!1,!1);if("RSAES-PKCS1-V1_5"===c)c={decode:d};else if("RSA-OAEP"===c||"RSAES-OAEP"===c)c={decode:function(b,c){return a.pkcs1.decode_rsa_oaep(c,b,e)}};else if(-1!==["RAW","NONE",
452 -"NULL",null].indexOf(c))c={decode:function(a){return a}};else throw Error('Unsupported encryption scheme: "'+c+'".');return c.decode(b,n,!1)},sign:function(a,b){var c=!1;"string"===typeof b&&(b=b.toUpperCase());if(void 0===b||"RSASSA-PKCS1-V1_5"===b)b={encode:F},c=1;else if("NONE"===b||"NULL"===b||null===b)b={encode:function(){return a}},c=1;var d=b.encode(a,n.n.bitLength());return r.rsa.encrypt(d,n,c)}};return n};r.wrapRsaPrivateKey=function(a){return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,
453 -[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(0).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(r.oids.rsaEncryption).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.NULL,!1,"")]),h.create(h.Class.UNIVERSAL,h.Type.OCTETSTRING,!1,h.toDer(a).getBytes())])};r.privateKeyFromAsn1=function(b){var c={},d=[];h.validate(b,C,c,d)&&(b=h.fromDer(a.util.createBuffer(c.privateKey)));c={};d=[];if(!h.validate(b,B,c,d))throw c=Error("Cannot read private key. ASN.1 object does not contain an RSAPrivateKey."),
454 -c.errors=d,c;var e,g,l,q,n,d=a.util.createBuffer(c.privateKeyModulus).toHex();b=a.util.createBuffer(c.privateKeyPublicExponent).toHex();e=a.util.createBuffer(c.privateKeyPrivateExponent).toHex();g=a.util.createBuffer(c.privateKeyPrime1).toHex();l=a.util.createBuffer(c.privateKeyPrime2).toHex();q=a.util.createBuffer(c.privateKeyExponent1).toHex();n=a.util.createBuffer(c.privateKeyExponent2).toHex();c=a.util.createBuffer(c.privateKeyCoefficient).toHex();return r.setRsaPrivateKey(new k(d,16),new k(b,
455 -16),new k(e,16),new k(g,16),new k(l,16),new k(q,16),new k(n,16),new k(c,16))};r.privateKeyToAsn1=r.privateKeyToRSAPrivateKey=function(a){return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(0).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.n)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.e)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.d)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.p)),h.create(h.Class.UNIVERSAL,
456 -h.Type.INTEGER,!1,n(a.q)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.dP)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.dQ)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.qInv))])};r.publicKeyFromAsn1=function(b){var c={},d=[];if(h.validate(b,I,c,d)){d=h.derToOid(c.publicKeyOid);if(d!==r.oids.rsaEncryption)throw c=Error("Cannot read public key. Unknown OID."),c.oid=d,c;b=c.rsaPublicKey}d=[];if(!h.validate(b,y,c,d))throw c=Error("Cannot read public key. ASN.1 object does not contain an RSAPublicKey."),
457 -c.errors=d,c;d=a.util.createBuffer(c.publicKeyModulus).toHex();c=a.util.createBuffer(c.publicKeyExponent).toHex();return r.setRsaPublicKey(new k(d,16),new k(c,16))};r.publicKeyToAsn1=r.publicKeyToSubjectPublicKeyInfo=function(a){return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(r.oids.rsaEncryption).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.NULL,!1,"")]),h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,
458 -!1,[r.publicKeyToRSAPublicKey(a)])])};r.publicKeyToRSAPublicKey=function(a){return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.n)),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,n(a.e))])}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||
459 -{};c.defined=c.defined||{};if(c.defined.rsa)return c.rsa;c.defined.rsa=!0;for(var g=0;g<e.length;++g)e[g](c);return c.rsa}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/rsa","require module ./asn1 ./jsbn ./oids ./pkcs1 ./prime ./random ./util".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,
460 -b){return a.start().update(b).digest().getBytes()}if("undefined"===typeof d)var d=a.jsbn.BigInteger;var e=a.asn1,n=a.pki=a.pki||{};n.pbe=a.pbe=a.pbe||{};var p=n.oids,k={name:"EncryptedPrivateKeyInfo",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"EncryptedPrivateKeyInfo.encryptionAlgorithm",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:e.Class.UNIVERSAL,type:e.Type.OID,constructed:!1,capture:"encryptionOid"},
461 -{name:"AlgorithmIdentifier.parameters",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,captureAsn1:"encryptionParams"}]},{name:"EncryptedPrivateKeyInfo.encryptedData",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"encryptedData"}]},h={name:"PBES2Algorithms",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.keyDerivationFunc",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.keyDerivationFunc.oid",
409 +function(){return 0==this.t?this.s:this.data[0]<<16>>16};c.prototype.signum=function(){return 0>this.s?-1:0>=this.t||1==this.t&&0>=this.data[0]?0:1};c.prototype.toByteArray=function(){var a=this.t,b=[];b[0]=this.s;var c=this.DB-a*this.DB%8,d,e=0;if(0<a--)for(c<this.DB&&(d=this.data[a]>>c)!=(this.s&this.DM)>>c&&(b[e++]=d|this.s<<this.DB-c);0<=a;)if(8>c?(d=(this.data[a]&(1<<c)-1)<<8-c,d|=this.data[--a]>>(c+=this.DB-8)):(d=this.data[a]>>(c-=8)&255,0>=c&&(c+=this.DB,--a)),0!=(d&128)&&(d|=-256),0==e&&
410 +(this.s&128)!=(d&128)&&++e,0<e||d!=this.s)b[e++]=d;return b};c.prototype.equals=function(a){return 0==this.compareTo(a)};c.prototype.min=function(a){return 0>this.compareTo(a)?this:a};c.prototype.max=function(a){return 0<this.compareTo(a)?this:a};c.prototype.and=function(a){var b=d();this.bitwiseTo(a,A,b);return b};c.prototype.or=function(a){var b=d();this.bitwiseTo(a,y,b);return b};c.prototype.xor=function(a){var b=d();this.bitwiseTo(a,H,b);return b};c.prototype.andNot=function(a){var b=d();this.bitwiseTo(a,
411 +E,b);return b};c.prototype.not=function(){for(var a=d(),b=0;b<this.t;++b)a.data[b]=this.DM&~this.data[b];a.t=this.t;a.s=~this.s;return a};c.prototype.shiftLeft=function(a){var b=d();0>a?this.rShiftTo(-a,b):this.lShiftTo(a,b);return b};c.prototype.shiftRight=function(a){var b=d();0>a?this.lShiftTo(-a,b):this.rShiftTo(a,b);return b};c.prototype.getLowestSetBit=function(){for(var a=0;a<this.t;++a)if(0!=this.data[a]){var b=a*this.DB;a=this.data[a];if(0==a)a=-1;else{var c=0;0==(a&65535)&&(a>>=16,c+=16);
412 +0==(a&255)&&(a>>=8,c+=8);0==(a&15)&&(a>>=4,c+=4);0==(a&3)&&(a>>=2,c+=2);0==(a&1)&&++c;a=c}return b+a}return 0>this.s?this.t*this.DB:-1};c.prototype.bitCount=function(){for(var a=0,b=this.s&this.DM,c=0;c<this.t;++c){for(var d=this.data[c]^b,e=0;0!=d;)d&=d-1,++e;a+=e}return a};c.prototype.testBit=function(a){var b=Math.floor(a/this.DB);return b>=this.t?0!=this.s:0!=(this.data[b]&1<<a%this.DB)};c.prototype.setBit=function(a){return this.changeBit(a,y)};c.prototype.clearBit=function(a){return this.changeBit(a,
413 +E)};c.prototype.flipBit=function(a){return this.changeBit(a,H)};c.prototype.add=function(a){var b=d();this.addTo(a,b);return b};c.prototype.subtract=function(a){var b=d();this.subTo(a,b);return b};c.prototype.multiply=function(a){var b=d();this.multiplyTo(a,b);return b};c.prototype.divide=function(a){var b=d();this.divRemTo(a,b,null);return b};c.prototype.remainder=function(a){var b=d();this.divRemTo(a,null,b);return b};c.prototype.divideAndRemainder=function(a){var b=d(),c=d();this.divRemTo(a,b,
414 +c);return[b,c]};c.prototype.modPow=function(a,b){var c=a.bitLength(),e,n=g(1),m;if(0>=c)return n;e=18>c?1:48>c?3:144>c?4:768>c?5:6;m=8>c?new u(b):b.isEven()?new C(b):new v(b);var z=[],l=3,p=e-1,k=(1<<e)-1;z[1]=m.convert(this);if(1<e)for(c=d(),m.sqrTo(z[1],c);l<=k;)z[l]=d(),m.mulTo(c,z[l-2],z[l]),l+=2;for(var F=a.t-1,r,q=!0,D=d(),c=x(a.data[F])-1;0<=F;){c>=p?r=a.data[F]>>c-p&k:(r=(a.data[F]&(1<<c+1)-1)<<p-c,0<F&&(r|=a.data[F-1]>>this.DB+c-p));for(l=e;0==(r&1);)r>>=1,--l;0>(c-=l)&&(c+=this.DB,--F);
415 +if(q)z[r].copyTo(n),q=!1;else{for(;1<l;)m.sqrTo(n,D),m.sqrTo(D,n),l-=2;0<l?m.sqrTo(n,D):(l=n,n=D,D=l);m.mulTo(D,z[r],n)}for(;0<=F&&0==(a.data[F]&1<<c);)m.sqrTo(n,D),l=n,n=D,D=l,0>--c&&(c=this.DB-1,--F)}return m.revert(n)};c.prototype.modInverse=function(a){var b=a.isEven();if(this.isEven()&&b||0==a.signum())return c.ZERO;for(var d=a.clone(),e=this.clone(),n=g(1),h=g(0),m=g(0),z=g(1);0!=d.signum();){for(;d.isEven();)d.rShiftTo(1,d),b?(n.isEven()&&h.isEven()||(n.addTo(this,n),h.subTo(a,h)),n.rShiftTo(1,
416 +n)):h.isEven()||h.subTo(a,h),h.rShiftTo(1,h);for(;e.isEven();)e.rShiftTo(1,e),b?(m.isEven()&&z.isEven()||(m.addTo(this,m),z.subTo(a,z)),m.rShiftTo(1,m)):z.isEven()||z.subTo(a,z),z.rShiftTo(1,z);0<=d.compareTo(e)?(d.subTo(e,d),b&&n.subTo(m,n),h.subTo(z,h)):(e.subTo(d,e),b&&m.subTo(n,m),z.subTo(h,z))}if(0!=e.compareTo(c.ONE))return c.ZERO;if(0<=z.compareTo(a))return z.subtract(a);if(0>z.signum())z.addTo(a,z);else return z;return 0>z.signum()?z.add(a):z};c.prototype.pow=function(a){return this.exp(a,
417 +new D)};c.prototype.gcd=function(a){var b=0>this.s?this.negate():this.clone();a=0>a.s?a.negate():a.clone();if(0>b.compareTo(a)){var c=b,b=a;a=c}var c=b.getLowestSetBit(),d=a.getLowestSetBit();if(0>d)return b;c<d&&(d=c);0<d&&(b.rShiftTo(d,b),a.rShiftTo(d,a));for(;0<b.signum();)0<(c=b.getLowestSetBit())&&b.rShiftTo(c,b),0<(c=a.getLowestSetBit())&&a.rShiftTo(c,a),0<=b.compareTo(a)?(b.subTo(a,b),b.rShiftTo(1,b)):(a.subTo(b,a),a.rShiftTo(1,a));0<d&&a.lShiftTo(d,a);return a};c.prototype.isProbablePrime=
418 +function(a){var b,c=this.abs();if(1==c.t&&c.data[0]<=R[R.length-1]){for(b=0;b<R.length;++b)if(c.data[0]==R[b])return!0;return!1}if(c.isEven())return!1;for(b=1;b<R.length;){for(var d=R[b],e=b+1;e<R.length&&d<U;)d*=R[e++];for(d=c.modInt(d);b<e;)if(0==d%R[b++])return!1}return c.millerRabin(a)};a.jsbn=a.jsbn||{};a.jsbn.BigInteger=c}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,
419 +k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.jsbn)return c.jsbn;c.defined.jsbn=!0;for(var p=0;p<e.length;++p)e[p](c);return c.jsbn}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/jsbn",["require","module"],function(){k.apply(null,Array.prototype.slice.call(arguments,
420 +0))})})();(function(){function b(a){function c(b,d,e){e||(e=a.md.sha1.create());for(var h="",g=Math.ceil(d/e.digestLength),p=0;p<g;++p){var k=String.fromCharCode(p>>24&255,p>>16&255,p>>8&255,p&255);e.start();e.update(b+k);h+=e.digest().getBytes()}return h.substring(0,d)}var d=a.pkcs1=a.pkcs1||{};d.encode_rsa_oaep=function(b,d,e,h,g){var k,u,q,A;"string"===typeof e?(k=e,u=h||void 0,q=g||void 0):e&&(k=e.label||void 0,u=e.seed||void 0,q=e.md||void 0,e.mgf1&&e.mgf1.md&&(A=e.mgf1.md));q?q.start():q=a.md.sha1.create();
421 +A||(A=q);b=Math.ceil(b.n.bitLength()/8);e=b-2*q.digestLength-2;if(d.length>e)throw A=Error("RSAES-OAEP input message length is too long."),A.length=d.length,A.maxLength=e,A;k||(k="");q.update(k,"raw");k=q.digest();h="";e-=d.length;for(g=0;g<e;g++)h+="\x00";d=k.getBytes()+h+"\u0001"+d;if(!u)u=a.random.getBytes(q.digestLength);else if(u.length!==q.digestLength)throw A=Error("Invalid RSAES-OAEP seed. The seed length must match the digest length."),A.seedLength=u.length,A.digestLength=q.digestLength,
422 +A;b=c(u,b-q.digestLength-1,A);d=a.util.xorBytes(d,b,d.length);q=c(d,q.digestLength,A);return"\x00"+a.util.xorBytes(u,q,u.length)+d};d.decode_rsa_oaep=function(b,d,e,h){var g,k,u;"string"===typeof e?(g=e,k=h||void 0):e&&(g=e.label||void 0,k=e.md||void 0,e.mgf1&&e.mgf1.md&&(u=e.mgf1.md));e=Math.ceil(b.n.bitLength()/8);if(d.length!==e)throw u=Error("RSAES-OAEP encoded message length is invalid."),u.length=d.length,u.expectedLength=e,u;void 0===k?k=a.md.sha1.create():k.start();u||(u=k);if(e<2*k.digestLength+
423 +2)throw Error("RSAES-OAEP key is too short for the hash function.");g||(g="");k.update(g,"raw");g=k.digest().getBytes();b=d.charAt(0);h=d.substring(1,k.digestLength+1);d=d.substring(1+k.digestLength);var q=c(d,k.digestLength,u);h=a.util.xorBytes(h,q,h.length);u=c(h,e-k.digestLength-1,u);d=a.util.xorBytes(d,u,d.length);e=d.substring(0,k.digestLength);u="\x00"!==b;for(b=0;b<k.digestLength;++b)u|=g.charAt(b)!==e.charAt(b);g=1;for(k=b=k.digestLength;k<d.length;k++)e=d.charCodeAt(k),h=e&1^1,u|=e&(g?65534:
424 +0),g&=h,b+=g;if(u||1!==d.charCodeAt(b))throw Error("Invalid RSAES-OAEP padding.");return d.substring(b+1)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs1)return c.pkcs1;c.defined.pkcs1=!0;for(var p=0;p<e.length;++p)e[p](c);return c.pkcs1}},
425 +v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs1",["require","module","./util","./random","./sha1"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,n,g){return"workers"in n?e(a,b,n,g):d(a,b,n,g)}function d(b,c,e,g){var m=k(b,c),z=0,l=q(m.bitLength());"millerRabinTests"in
426 +e&&(l=e.millerRabinTests);var p=10;"maxBlockTime"in e&&(p=e.maxBlockTime);var u=+new Date;do{m.bitLength()>b&&(m=k(b,c));if(m.isProbablePrime(l))return g(null,m);m.dAddOffset(x[z++%8],0)}while(0>p||+new Date-u<p);a.util.setImmediate(function(){d(b,c,e,g)})}function e(b,c,m,l){function p(){function a(e){if(!h){--n;var m=e.data;if(m.found){for(e=0;e<d.length;++e)d[e].terminate();h=!0;return l(null,new g(m.prime,16))}z.bitLength()>b&&(z=k(b,c));m=z.toString(16);e.target.postMessage({hex:m,workLoad:u});
427 +z.dAddOffset(q,0)}}C=Math.max(1,C);for(var d=[],e=0;e<C;++e)d[e]=new Worker(x);for(var n=C,e=0;e<C;++e)d[e].addEventListener("message",a);var h=!1}if("undefined"===typeof Worker)return d(b,c,m,l);var z=k(b,c),C=m.workers,u=m.workLoad||100,q=30*u/8,x=m.workerScript||"forge/prime.worker.js";if(-1===C)return a.util.estimateCores(function(a,b){a&&(b=2);C=b-1;p()});p()}function k(a,b){var c=new g(a,b),d=a-1;c.testBit(d)||c.bitwiseTo(g.ONE.shiftLeft(d),v,c);c.dAddOffset(31-c.mod(u).byteValue(),0);return c}
428 +function q(a){return 100>=a?27:150>=a?18:200>=a?15:250>=a?12:300>=a?9:350>=a?8:400>=a?7:500>=a?6:600>=a?5:800>=a?4:1250>=a?3:2}if(!a.prime){var l=a.prime=a.prime||{},g=a.jsbn.BigInteger,x=[6,4,2,4,2,4,6,2],u=new g(null);u.fromInt(30);var v=function(a,b){return a|b};l.generateProbablePrime=function(b,d,e){"function"===typeof d&&(e=d,d={});d=d||{};var h=d.algorithm||"PRIMEINC";"string"===typeof h&&(h={name:h});h.options=h.options||{};var g=d.prng||a.random;d={nextBytes:function(a){for(var b=g.getBytesSync(a.length),
429 +c=0;c<a.length;++c)a[c]=b.charCodeAt(c)}};if("PRIMEINC"===h.name)return c(b,d,h.options,e);throw Error("Invalid prime generation algorithm: "+h.name);}}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.prime)return c.prime;c.defined.prime=!0;for(var p=
430 +0;p<e.length;++p)e[p](c);return c.prime}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/prime",["require","module","./util","./jsbn","./random"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d,e){var h=a.util.createBuffer();d=Math.ceil(d.n.bitLength()/8);if(b.length>d-11)throw h=
431 +Error("Message is too long for PKCS#1 v1.5 padding."),h.length=b.length,h.max=d-11,h;h.putByte(0);h.putByte(e);d=d-3-b.length;if(0===e||1===e){e=0===e?0:255;for(var g=0;g<d;++g)h.putByte(e)}else for(;0<d;){for(var m=0,l=a.random.getBytes(d),g=0;g<d;++g)e=l.charCodeAt(g),0===e?++m:h.putByte(e);d=m}h.putByte(0);h.putBytes(b);return h}function d(b,c,e,h){c=Math.ceil(c.n.bitLength()/8);b=a.util.createBuffer(b);var g=b.getByte(),m=b.getByte();if(0!==g||e&&0!==m&&1!==m||!e&&2!=m||e&&0===m&&"undefined"===
432 +typeof h)throw Error("Encryption block is invalid.");e=0;if(0===m)for(e=c-3-h,h=0;h<e;++h){if(0!==b.getByte())throw Error("Encryption block is invalid.");}else if(1===m)for(e=0;1<b.length();){if(255!==b.getByte()){--b.read;break}++e}else if(2===m)for(e=0;1<b.length();){if(0===b.getByte()){--b.read;break}++e}if(0!==b.getByte()||e!==c-3-b.length())throw Error("Encryption block is invalid.");return b.getBytes()}function e(b,c,d){function h(){g(b.pBits,function(a,c){if(a)return d(a);b.p=c;if(null!==b.q)return m(a,
433 +b.q);g(b.qBits,m)})}function g(b,c){a.prime.generateProbablePrime(b,p,c)}function m(a,c){if(a)return d(a);b.q=c;if(0>b.p.compareTo(b.q)){var e=b.p;b.p=b.q;b.q=e}0!==b.p.subtract(l.ONE).gcd(b.e).compareTo(l.ONE)?(b.p=null,h()):0!==b.q.subtract(l.ONE).gcd(b.e).compareTo(l.ONE)?(b.q=null,g(b.qBits,m)):(b.p1=b.p.subtract(l.ONE),b.q1=b.q.subtract(l.ONE),b.phi=b.p1.multiply(b.q1),0!==b.phi.gcd(b.e).compareTo(l.ONE)?(b.p=b.q=null,h()):(b.n=b.p.multiply(b.q),b.n.bitLength()!==b.bits?(b.q=null,g(b.qBits,m)):
434 +(e=b.e.modInverse(b.phi),b.keys={privateKey:x.rsa.setPrivateKey(b.n,b.e,e,b.p,b.q,e.mod(b.p1),e.mod(b.q1),b.q.modInverse(b.p)),publicKey:x.rsa.setPublicKey(b.n,b.e)},d(null,b.keys))))}"function"===typeof c&&(d=c,c={});c=c||{};var p={algorithm:{name:c.algorithm||"PRIMEINC",options:{workers:c.workers||2,workLoad:c.workLoad||100,workerScript:c.workerScript}}};"prng"in c&&(p.prng=c.prng);h()}function k(b){b=b.toString(16);"8"<=b[0]&&(b="00"+b);return a.util.hexToBytes(b)}function q(a){return 100>=a?27:
435 +150>=a?18:200>=a?15:250>=a?12:300>=a?9:350>=a?8:400>=a?7:500>=a?6:600>=a?5:800>=a?4:1250>=a?3:2}if("undefined"===typeof l)var l=a.jsbn.BigInteger;var g=a.asn1;a.pki=a.pki||{};a.pki.rsa=a.rsa=a.rsa||{};var x=a.pki,u=[6,4,2,4,2,4,6,2],v={name:"PrivateKeyInfo",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"PrivateKeyInfo.version",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyVersion"},{name:"PrivateKeyInfo.privateKeyAlgorithm",tagClass:g.Class.UNIVERSAL,
436 +type:g.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"privateKeyOid"}]},{name:"PrivateKeyInfo",tagClass:g.Class.UNIVERSAL,type:g.Type.OCTETSTRING,constructed:!1,capture:"privateKey"}]},A={name:"RSAPrivateKey",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"RSAPrivateKey.version",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyVersion"},{name:"RSAPrivateKey.modulus",
437 +tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyModulus"},{name:"RSAPrivateKey.publicExponent",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyPublicExponent"},{name:"RSAPrivateKey.privateExponent",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyPrivateExponent"},{name:"RSAPrivateKey.prime1",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyPrime1"},{name:"RSAPrivateKey.prime2",
438 +tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyPrime2"},{name:"RSAPrivateKey.exponent1",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyExponent1"},{name:"RSAPrivateKey.exponent2",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyExponent2"},{name:"RSAPrivateKey.coefficient",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"privateKeyCoefficient"}]},y={name:"RSAPublicKey",tagClass:g.Class.UNIVERSAL,
439 +type:g.Type.SEQUENCE,constructed:!0,value:[{name:"RSAPublicKey.modulus",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"publicKeyModulus"},{name:"RSAPublicKey.exponent",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"publicKeyExponent"}]},H=a.pki.rsa.publicKeyValidator={name:"SubjectPublicKeyInfo",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"subjectPublicKeyInfo",value:[{name:"SubjectPublicKeyInfo.AlgorithmIdentifier",tagClass:g.Class.UNIVERSAL,
440 +type:g.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"publicKeyOid"}]},{name:"SubjectPublicKeyInfo.subjectPublicKey",tagClass:g.Class.UNIVERSAL,type:g.Type.BITSTRING,constructed:!1,value:[{name:"SubjectPublicKeyInfo.subjectPublicKey.RSAPublicKey",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,optional:!0,captureAsn1:"rsaPublicKey"}]}]},E=function(a){var b;if(a.algorithm in x.oids)b=x.oids[a.algorithm];
441 +else throw b=Error("Unknown message digest algorithm."),b.algorithm=a.algorithm,b;var c=g.oidToDer(b).getBytes();b=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]);var d=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]);d.value.push(g.create(g.Class.UNIVERSAL,g.Type.OID,!1,c));d.value.push(g.create(g.Class.UNIVERSAL,g.Type.NULL,!1,""));a=g.create(g.Class.UNIVERSAL,g.Type.OCTETSTRING,!1,a.digest().getBytes());b.value.push(d);b.value.push(a);return g.toDer(b).getBytes()},D=function(b,c,d){if(d)return b.modPow(c.e,
442 +c.n);if(!c.p||!c.q)return b.modPow(c.d,c.n);c.dP||(c.dP=c.d.mod(c.p.subtract(l.ONE)));c.dQ||(c.dQ=c.d.mod(c.q.subtract(l.ONE)));c.qInv||(c.qInv=c.q.modInverse(c.p));do d=new l(a.util.bytesToHex(a.random.getBytes(c.n.bitLength()/8)),16);while(0<=d.compareTo(c.n)||!d.gcd(c.n).equals(l.ONE));b=b.multiply(d.modPow(c.e,c.n)).mod(c.n);var e=b.mod(c.p).modPow(c.dP,c.p);for(b=b.mod(c.q).modPow(c.dQ,c.q);0>e.compareTo(b);)e=e.add(c.p);b=e.subtract(b).multiply(c.qInv).mod(c.p).multiply(c.q).add(b);return b=
443 +b.multiply(d.modInverse(c.n)).mod(c.n)};x.rsa.encrypt=function(b,d,e){var h=e,g=Math.ceil(d.n.bitLength()/8);!1!==e&&!0!==e?(h=2===e,e=c(b,d,e)):(e=a.util.createBuffer(),e.putBytes(b));b=new l(e.toHex(),16);d=D(b,d,h).toString(16);h=a.util.createBuffer();for(g-=Math.ceil(d.length/2);0<g;)h.putByte(0),--g;h.putBytes(a.util.hexToBytes(d));return h.getBytes()};x.rsa.decrypt=function(b,c,e,g){var m=Math.ceil(c.n.bitLength()/8);if(b.length!==m)throw c=Error("Encrypted message length is invalid."),c.length=
444 +b.length,c.expected=m,c;b=new l(a.util.createBuffer(b).toHex(),16);if(0<=b.compareTo(c.n))throw Error("Encrypted message is invalid.");b=D(b,c,e).toString(16);for(var p=a.util.createBuffer(),m=m-Math.ceil(b.length/2);0<m;)p.putByte(0),--m;p.putBytes(a.util.hexToBytes(b));return!1!==g?d(p.getBytes(),c,e):p.getBytes()};x.rsa.createKeyPairGenerationState=function(b,c,d){"string"===typeof b&&(b=parseInt(b,10));b=b||2048;d=d||{};var e=d.prng||a.random,h={nextBytes:function(a){for(var b=e.getBytesSync(a.length),
445 +c=0;c<a.length;++c)a[c]=b.charCodeAt(c)}};d=d.algorithm||"PRIMEINC";if("PRIMEINC"===d)b={algorithm:d,state:0,bits:b,rng:h,eInt:c||65537,e:new l(null),p:null,q:null,qBits:b>>1,pBits:b-(b>>1),pqState:0,num:null,keys:null},b.e.fromInt(b.eInt);else throw Error("Invalid key generation algorithm: "+d);return b};x.rsa.stepKeyPairGenerationState=function(a,b){"algorithm"in a||(a.algorithm="PRIMEINC");var c=new l(null);c.fromInt(30);for(var d=0,e=function(a,b){return a|b},n=+new Date,h,g=0;null===a.keys&&
446 +(0>=b||g<b);){if(0===a.state){h=null===a.p?a.pBits:a.qBits;var m=h-1;0===a.pqState?(a.num=new l(h,a.rng),a.num.testBit(m)||a.num.bitwiseTo(l.ONE.shiftLeft(m),e,a.num),a.num.dAddOffset(31-a.num.mod(c).byteValue(),0),d=0,++a.pqState):1===a.pqState?a.num.bitLength()>h?a.pqState=0:a.num.isProbablePrime(q(a.num.bitLength()))?++a.pqState:a.num.dAddOffset(u[d++%8],0):2===a.pqState?a.pqState=0===a.num.subtract(l.ONE).gcd(a.e).compareTo(l.ONE)?3:0:3===a.pqState&&(a.pqState=0,null===a.p?a.p=a.num:a.q=a.num,
447 +null!==a.p&&null!==a.q&&++a.state,a.num=null)}else 1===a.state?(0>a.p.compareTo(a.q)&&(a.num=a.p,a.p=a.q,a.q=a.num),++a.state):2===a.state?(a.p1=a.p.subtract(l.ONE),a.q1=a.q.subtract(l.ONE),a.phi=a.p1.multiply(a.q1),++a.state):3===a.state?0===a.phi.gcd(a.e).compareTo(l.ONE)?++a.state:(a.p=null,a.q=null,a.state=0):4===a.state?(a.n=a.p.multiply(a.q),a.n.bitLength()===a.bits?++a.state:(a.q=null,a.state=0)):5===a.state&&(h=a.e.modInverse(a.phi),a.keys={privateKey:x.rsa.setPrivateKey(a.n,a.e,h,a.p,a.q,
448 +h.mod(a.p1),h.mod(a.q1),a.q.modInverse(a.p)),publicKey:x.rsa.setPublicKey(a.n,a.e)});h=+new Date;g+=h-n;n=h}return null!==a.keys};x.rsa.generateKeyPair=function(a,b,c,d){1===arguments.length?"object"===typeof a?(c=a,a=void 0):"function"===typeof a&&(d=a,a=void 0):2===arguments.length?"number"===typeof a?"function"===typeof b?(d=b,b=void 0):"number"!==typeof b&&(c=b,b=void 0):(c=a,d=b,b=a=void 0):3===arguments.length&&("number"===typeof b?"function"===typeof c&&(d=c,c=void 0):(d=c,c=b,b=void 0));c=
449 +c||{};void 0===a&&(a=c.bits||2048);void 0===b&&(b=c.e||65537);var n=x.rsa.createKeyPairGenerationState(a,b,c);if(!d)return x.rsa.stepKeyPairGenerationState(n,0),n.keys;e(n,c,d)};x.setRsaPublicKey=x.rsa.setPublicKey=function(b,e){var m={n:b,e:e,encrypt:function(b,d,e){"string"===typeof d?d=d.toUpperCase():void 0===d&&(d="RSAES-PKCS1-V1_5");if("RSAES-PKCS1-V1_5"===d)d={encode:function(a,b,d){return c(a,b,2).getBytes()}};else if("RSA-OAEP"===d||"RSAES-OAEP"===d)d={encode:function(b,c){return a.pkcs1.encode_rsa_oaep(c,
450 +b,e)}};else if(-1!==["RAW","NONE","NULL",null].indexOf(d))d={encode:function(a){return a}};else if("string"===typeof d)throw Error('Unsupported encryption scheme: "'+d+'".');b=d.encode(b,m,!0);return x.rsa.encrypt(b,m,!0)},verify:function(a,b,c){"string"===typeof c?c=c.toUpperCase():void 0===c&&(c="RSASSA-PKCS1-V1_5");if("RSASSA-PKCS1-V1_5"===c)c={verify:function(a,b){b=d(b,m,!0);var c=g.fromDer(b);return a===c.value[1].value}};else if("NONE"===c||"NULL"===c||null===c)c={verify:function(a,b){b=d(b,
451 +m,!0);return a===b}};b=x.rsa.decrypt(b,m,!0,!1);return c.verify(a,b,m.n.bitLength())}};return m};x.setRsaPrivateKey=x.rsa.setPrivateKey=function(b,c,e,g,m,l,p,k){var u={n:b,e:c,d:e,p:g,q:m,dP:l,dQ:p,qInv:k,decrypt:function(b,c,e){"string"===typeof c?c=c.toUpperCase():void 0===c&&(c="RSAES-PKCS1-V1_5");b=x.rsa.decrypt(b,u,!1,!1);if("RSAES-PKCS1-V1_5"===c)c={decode:d};else if("RSA-OAEP"===c||"RSAES-OAEP"===c)c={decode:function(b,c){return a.pkcs1.decode_rsa_oaep(c,b,e)}};else if(-1!==["RAW","NONE",
452 +"NULL",null].indexOf(c))c={decode:function(a){return a}};else throw Error('Unsupported encryption scheme: "'+c+'".');return c.decode(b,u,!1)},sign:function(a,b){var c=!1;"string"===typeof b&&(b=b.toUpperCase());if(void 0===b||"RSASSA-PKCS1-V1_5"===b)b={encode:E},c=1;else if("NONE"===b||"NULL"===b||null===b)b={encode:function(){return a}},c=1;var d=b.encode(a,u.n.bitLength());return x.rsa.encrypt(d,u,c)}};return u};x.wrapRsaPrivateKey=function(a){return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,
453 +[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(0).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(x.oids.rsaEncryption).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.NULL,!1,"")]),g.create(g.Class.UNIVERSAL,g.Type.OCTETSTRING,!1,g.toDer(a).getBytes())])};x.privateKeyFromAsn1=function(b){var c={},d=[];g.validate(b,v,c,d)&&(b=g.fromDer(a.util.createBuffer(c.privateKey)));c={};d=[];if(!g.validate(b,A,c,d))throw c=Error("Cannot read private key. ASN.1 object does not contain an RSAPrivateKey."),
454 +c.errors=d,c;var e,h,m,p,k,d=a.util.createBuffer(c.privateKeyModulus).toHex();b=a.util.createBuffer(c.privateKeyPublicExponent).toHex();e=a.util.createBuffer(c.privateKeyPrivateExponent).toHex();h=a.util.createBuffer(c.privateKeyPrime1).toHex();m=a.util.createBuffer(c.privateKeyPrime2).toHex();p=a.util.createBuffer(c.privateKeyExponent1).toHex();k=a.util.createBuffer(c.privateKeyExponent2).toHex();c=a.util.createBuffer(c.privateKeyCoefficient).toHex();return x.setRsaPrivateKey(new l(d,16),new l(b,
455 +16),new l(e,16),new l(h,16),new l(m,16),new l(p,16),new l(k,16),new l(c,16))};x.privateKeyToAsn1=x.privateKeyToRSAPrivateKey=function(a){return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(0).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.n)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.e)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.d)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.p)),g.create(g.Class.UNIVERSAL,
456 +g.Type.INTEGER,!1,k(a.q)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.dP)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.dQ)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.qInv))])};x.publicKeyFromAsn1=function(b){var c={},d=[];if(g.validate(b,H,c,d)){d=g.derToOid(c.publicKeyOid);if(d!==x.oids.rsaEncryption)throw c=Error("Cannot read public key. Unknown OID."),c.oid=d,c;b=c.rsaPublicKey}d=[];if(!g.validate(b,y,c,d))throw c=Error("Cannot read public key. ASN.1 object does not contain an RSAPublicKey."),
457 +c.errors=d,c;d=a.util.createBuffer(c.publicKeyModulus).toHex();c=a.util.createBuffer(c.publicKeyExponent).toHex();return x.setRsaPublicKey(new l(d,16),new l(c,16))};x.publicKeyToAsn1=x.publicKeyToSubjectPublicKeyInfo=function(a){return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(x.oids.rsaEncryption).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.NULL,!1,"")]),g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,
458 +!1,[x.publicKeyToRSAPublicKey(a)])])};x.publicKeyToRSAPublicKey=function(a){return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.n)),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,k(a.e))])}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||
459 +{};c.defined=c.defined||{};if(c.defined.rsa)return c.rsa;c.defined.rsa=!0;for(var p=0;p<e.length;++p)e[p](c);return c.rsa}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/rsa","require module ./asn1 ./jsbn ./oids ./pkcs1 ./prime ./random ./util".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,
460 +b){return a.start().update(b).digest().getBytes()}if("undefined"===typeof d)var d=a.jsbn.BigInteger;var e=a.asn1,k=a.pki=a.pki||{};k.pbe=a.pbe=a.pbe||{};var q=k.oids,l={name:"EncryptedPrivateKeyInfo",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"EncryptedPrivateKeyInfo.encryptionAlgorithm",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"AlgorithmIdentifier.algorithm",tagClass:e.Class.UNIVERSAL,type:e.Type.OID,constructed:!1,capture:"encryptionOid"},
461 +{name:"AlgorithmIdentifier.parameters",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,captureAsn1:"encryptionParams"}]},{name:"EncryptedPrivateKeyInfo.encryptedData",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"encryptedData"}]},g={name:"PBES2Algorithms",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.keyDerivationFunc",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.keyDerivationFunc.oid",
462 tagClass:e.Class.UNIVERSAL,type:e.Type.OID,constructed:!1,capture:"kdfOid"},{name:"PBES2Algorithms.params",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.params.salt",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"kdfSalt"},{name:"PBES2Algorithms.params.iterationCount",tagClass:e.Class.UNIVERSAL,type:e.Type.INTEGER,onstructed:!0,capture:"kdfIterationCount"}]}]},{name:"PBES2Algorithms.encryptionScheme",tagClass:e.Class.UNIVERSAL,
463 -type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.encryptionScheme.oid",tagClass:e.Class.UNIVERSAL,type:e.Type.OID,constructed:!1,capture:"encOid"},{name:"PBES2Algorithms.encryptionScheme.iv",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"encIv"}]}]},r={name:"pkcs-12PbeParams",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"pkcs-12PbeParams.salt",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"salt"},
464 -{name:"pkcs-12PbeParams.iterations",tagClass:e.Class.UNIVERSAL,type:e.Type.INTEGER,constructed:!1,capture:"iterations"}]};n.encryptPrivateKeyInfo=function(b,c,d){d=d||{};d.saltSize=d.saltSize||8;d.count=d.count||2048;d.algorithm=d.algorithm||"aes128";var g=a.random.getBytesSync(d.saltSize),h=d.count,k=e.integerToDer(h),w;if(0===d.algorithm.indexOf("aes")||"des"===d.algorithm){var z,D;switch(d.algorithm){case "aes128":z=w=16;d=p["aes128-CBC"];D=a.aes.createEncryptionCipher;break;case "aes192":w=24;
465 -z=16;d=p["aes192-CBC"];D=a.aes.createEncryptionCipher;break;case "aes256":w=32;z=16;d=p["aes256-CBC"];D=a.aes.createEncryptionCipher;break;case "des":z=w=8;d=p.desCBC;D=a.des.createEncryptionCipher;break;default:throw g=Error("Cannot encrypt private key. Unknown encryption algorithm."),g.algorithm=d.algorithm,g;}var A=a.pkcs5.pbkdf2(c,g,h,w);c=a.random.getBytesSync(z);h=D(A);h.start(c);h.update(e.toDer(b));h.finish();b=h.output.getBytes();g=e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,
466 -e.Type.OID,!1,e.oidToDer(p.pkcs5PBES2).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(p.pkcs5PBKDF2).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,!1,g),e.create(e.Class.UNIVERSAL,e.Type.INTEGER,!1,k.getBytes())])]),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(d).getBytes()),e.create(e.Class.UNIVERSAL,
467 -e.Type.OCTETSTRING,!1,c)])])])}else if("3des"===d.algorithm)w=24,d=new a.util.ByteBuffer(g),A=n.pbe.generatePkcs12Key(c,d,1,h,w),c=n.pbe.generatePkcs12Key(c,d,2,h,w),h=a.des.createEncryptionCipher(A),h.start(c),h.update(e.toDer(b)),h.finish(),b=h.output.getBytes(),g=e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(p["pbeWithSHAAnd3-KeyTripleDES-CBC"]).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,
468 -!1,g),e.create(e.Class.UNIVERSAL,e.Type.INTEGER,!1,k.getBytes())])]);else throw g=Error("Cannot encrypt private key. Unknown encryption algorithm."),g.algorithm=d.algorithm,g;return e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[g,e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,!1,b)])};n.decryptPrivateKeyInfo=function(b,c){var d=null,g={},h=[];if(!e.validate(b,k,g,h))throw d=Error("Cannot read encrypted private key. ASN.1 object is not a supported EncryptedPrivateKeyInfo."),d.errors=h,d;h=e.derToOid(g.encryptionOid);
469 -h=n.pbe.getCipher(h,g.encryptionParams,c);g=a.util.createBuffer(g.encryptedData);h.update(g);h.finish()&&(d=e.fromDer(h.output));return d};n.encryptedPrivateKeyToPem=function(b,c){var d={type:"ENCRYPTED PRIVATE KEY",body:e.toDer(b).getBytes()};return a.pem.encode(d,{maxline:c})};n.encryptedPrivateKeyFromPem=function(b){b=a.pem.decode(b)[0];if("ENCRYPTED PRIVATE KEY"!==b.type){var c=Error('Could not convert encrypted private key from PEM; PEM header type is "ENCRYPTED PRIVATE KEY".');c.headerType=
470 -b.type;throw c;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert encrypted private key from PEM; PEM is encrypted.");return e.fromDer(b.body)};n.encryptRsaPrivateKey=function(b,c,d){d=d||{};if(!d.legacy)return b=n.wrapRsaPrivateKey(n.privateKeyToAsn1(b)),b=n.encryptPrivateKeyInfo(b,c,d),n.encryptedPrivateKeyToPem(b);var g,h,k;switch(d.algorithm){case "aes128":d="AES-128-CBC";h=16;g=a.random.getBytesSync(16);k=a.aes.createEncryptionCipher;break;case "aes192":d="AES-192-CBC";
471 -h=24;g=a.random.getBytesSync(16);k=a.aes.createEncryptionCipher;break;case "aes256":d="AES-256-CBC";h=32;g=a.random.getBytesSync(16);k=a.aes.createEncryptionCipher;break;case "3des":d="DES-EDE3-CBC";h=24;g=a.random.getBytesSync(8);k=a.des.createEncryptionCipher;break;case "des":d="DES-CBC";h=8;g=a.random.getBytesSync(8);k=a.des.createEncryptionCipher;break;default:throw b=Error('Could not encrypt RSA private key; unsupported encryption algorithm "'+d.algorithm+'".'),b.algorithm=d.algorithm,b;}c=a.pbe.opensslDeriveBytes(c,
472 -g.substr(0,8),h);c=k(c);c.start(g);c.update(e.toDer(n.privateKeyToAsn1(b)));c.finish();b={type:"RSA PRIVATE KEY",procType:{version:"4",type:"ENCRYPTED"},dekInfo:{algorithm:d,parameters:a.util.bytesToHex(g).toUpperCase()},body:c.output.getBytes()};return a.pem.encode(b)};n.decryptRsaPrivateKey=function(b,c){var d=null,g=a.pem.decode(b)[0];if("ENCRYPTED PRIVATE KEY"!==g.type&&"PRIVATE KEY"!==g.type&&"RSA PRIVATE KEY"!==g.type)throw d=Error('Could not convert private key from PEM; PEM header type is not "ENCRYPTED PRIVATE KEY", "PRIVATE KEY", or "RSA PRIVATE KEY".'),
473 -d.headerType=d,d;if(g.procType&&"ENCRYPTED"===g.procType.type){var h,k;switch(g.dekInfo.algorithm){case "DES-CBC":h=8;k=a.des.createDecryptionCipher;break;case "DES-EDE3-CBC":h=24;k=a.des.createDecryptionCipher;break;case "AES-128-CBC":h=16;k=a.aes.createDecryptionCipher;break;case "AES-192-CBC":h=24;k=a.aes.createDecryptionCipher;break;case "AES-256-CBC":h=32;k=a.aes.createDecryptionCipher;break;case "RC2-40-CBC":h=5;k=function(b){return a.rc2.createDecryptionCipher(b,40)};break;case "RC2-64-CBC":h=
474 -8;k=function(b){return a.rc2.createDecryptionCipher(b,64)};break;case "RC2-128-CBC":h=16;k=function(b){return a.rc2.createDecryptionCipher(b,128)};break;default:throw d=Error('Could not decrypt private key; unsupported encryption algorithm "'+g.dekInfo.algorithm+'".'),d.algorithm=g.dekInfo.algorithm,d;}var w=a.util.hexToBytes(g.dekInfo.parameters);h=a.pbe.opensslDeriveBytes(c,w.substr(0,8),h);k=k(h);k.start(w);k.update(a.util.createBuffer(g.body));if(k.finish())d=k.output.getBytes();else return d}else d=
475 -g.body;d="ENCRYPTED PRIVATE KEY"===g.type?n.decryptPrivateKeyInfo(e.fromDer(d),c):e.fromDer(d);null!==d&&(d=n.privateKeyFromAsn1(d));return d};n.pbe.generatePkcs12Key=function(b,c,d,e,g,h){var k,l;if("undefined"===typeof h||null===h)h=a.md.sha1.create();var n=h.digestLength,A=h.blockLength,w=new a.util.ByteBuffer,p=new a.util.ByteBuffer;if(null!==b&&void 0!==b){for(l=0;l<b.length;l++)p.putInt16(b.charCodeAt(l));p.putInt16(0)}b=p.length();var u=c.length(),v=new a.util.ByteBuffer;v.fillWithByte(d,A);
476 -var x=A*Math.ceil(u/A);d=new a.util.ByteBuffer;for(l=0;l<x;l++)d.putByte(c.at(l%u));x=A*Math.ceil(b/A);c=new a.util.ByteBuffer;for(l=0;l<x;l++)c.putByte(p.at(l%b));p=d;p.putBuffer(c);c=Math.ceil(g/n);for(d=1;d<=c;d++){x=new a.util.ByteBuffer;x.putBytes(v.bytes());x.putBytes(p.bytes());for(l=0;l<e;l++)h.start(),h.update(x.getBytes()),x=h.digest();var r=new a.util.ByteBuffer;for(l=0;l<A;l++)r.putByte(x.at(l%n));var K=Math.ceil(u/A)+Math.ceil(b/A),N=new a.util.ByteBuffer;for(k=0;k<K;k++){var X=new a.util.ByteBuffer(p.getBytes(A)),
477 -T=511;for(l=r.length()-1;0<=l;l--)T>>=8,T+=r.at(l)+X.at(l),X.setAt(l,T&255);N.putBuffer(X)}p=N;w.putBuffer(x)}w.truncate(w.length()-g);return w};n.pbe.getCipher=function(a,b,c){switch(a){case n.oids.pkcs5PBES2:return n.pbe.getCipherForPBES2(a,b,c);case n.oids["pbeWithSHAAnd3-KeyTripleDES-CBC"]:case n.oids["pbewithSHAAnd40BitRC2-CBC"]:return n.pbe.getCipherForPKCS12PBE(a,b,c);default:throw b=Error("Cannot read encrypted PBE data block. Unsupported OID."),b.oid=a,b.supportedOids=["pkcs5PBES2","pbeWithSHAAnd3-KeyTripleDES-CBC",
478 -"pbewithSHAAnd40BitRC2-CBC"],b;}};n.pbe.getCipherForPBES2=function(b,c,d){var g={};b=[];if(!e.validate(c,h,g,b)){var k=Error("Cannot read password-based-encryption algorithm parameters. ASN.1 object is not a supported EncryptedPrivateKeyInfo.");k.errors=b;throw k;}b=e.derToOid(g.kdfOid);if(b!==n.oids.pkcs5PBKDF2)throw k=Error("Cannot read encrypted private key. Unsupported key derivation function OID."),k.oid=b,k.supportedOids=["pkcs5PBKDF2"],k;b=e.derToOid(g.encOid);if(b!==n.oids["aes128-CBC"]&&
479 -b!==n.oids["aes192-CBC"]&&b!==n.oids["aes256-CBC"]&&b!==n.oids["des-EDE3-CBC"]&&b!==n.oids.desCBC)throw k=Error("Cannot read encrypted private key. Unsupported encryption scheme OID."),k.oid=b,k.supportedOids=["aes128-CBC","aes192-CBC","aes256-CBC","des-EDE3-CBC","desCBC"],k;c=g.kdfSalt;var w=a.util.createBuffer(g.kdfIterationCount),w=w.getInt(w.length()<<3),p;switch(n.oids[b]){case "aes128-CBC":p=16;k=a.aes.createDecryptionCipher;break;case "aes192-CBC":p=24;k=a.aes.createDecryptionCipher;break;
480 -case "aes256-CBC":p=32;k=a.aes.createDecryptionCipher;break;case "des-EDE3-CBC":p=24;k=a.des.createDecryptionCipher;break;case "desCBC":p=8,k=a.des.createDecryptionCipher}b=a.pkcs5.pbkdf2(d,c,w,p);g=g.encIv;k=k(b);k.start(g);return k};n.pbe.getCipherForPKCS12PBE=function(b,c,d){var g={},h=[];if(!e.validate(c,r,g,h))throw d=Error("Cannot read password-based-encryption algorithm parameters. ASN.1 object is not a supported EncryptedPrivateKeyInfo."),d.errors=h,d;var h=a.util.createBuffer(g.salt),g=a.util.createBuffer(g.iterations),
481 -g=g.getInt(g.length()<<3),k;switch(b){case n.oids["pbeWithSHAAnd3-KeyTripleDES-CBC"]:k=24;c=8;b=a.des.startDecrypting;break;case n.oids["pbewithSHAAnd40BitRC2-CBC"]:k=5;c=8;b=function(b,c){var d=a.rc2.createDecryptionCipher(b,40);d.start(c,null);return d};break;default:throw d=Error("Cannot read PKCS #12 PBE data block. Unsupported OID."),d.oid=b,d;}k=n.pbe.generatePkcs12Key(d,h,1,g,k);d=n.pbe.generatePkcs12Key(d,h,2,g,c);return b(k,d)};n.pbe.opensslDeriveBytes=function(b,d,e,h){if("undefined"===
482 -typeof h||null===h)h=a.md.md5.create();null===d&&(d="");for(var k=[c(h,b+d)],l=16,n=1;l<e;++n,l+=16)k.push(c(h,k[n-1]+b+d));return k.join("").substr(0,e)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pbe)return c.pbe;c.defined.pbe=!0;for(var g=
483 -0;g<e.length;++g)e[g](c);return c.pbe}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pbe","require module ./aes ./asn1 ./des ./md ./oids ./pem ./pbkdf2 ./random ./rc2 ./rsa ./util".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1,d=a.pkcs7asn1=a.pkcs7asn1||{};a.pkcs7=
463 +type:e.Type.SEQUENCE,constructed:!0,value:[{name:"PBES2Algorithms.encryptionScheme.oid",tagClass:e.Class.UNIVERSAL,type:e.Type.OID,constructed:!1,capture:"encOid"},{name:"PBES2Algorithms.encryptionScheme.iv",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"encIv"}]}]},x={name:"pkcs-12PbeParams",tagClass:e.Class.UNIVERSAL,type:e.Type.SEQUENCE,constructed:!0,value:[{name:"pkcs-12PbeParams.salt",tagClass:e.Class.UNIVERSAL,type:e.Type.OCTETSTRING,constructed:!1,capture:"salt"},
464 +{name:"pkcs-12PbeParams.iterations",tagClass:e.Class.UNIVERSAL,type:e.Type.INTEGER,constructed:!1,capture:"iterations"}]};k.encryptPrivateKeyInfo=function(b,c,d){d=d||{};d.saltSize=d.saltSize||8;d.count=d.count||2048;d.algorithm=d.algorithm||"aes128";var h=a.random.getBytesSync(d.saltSize),g=d.count,l=e.integerToDer(g),p;if(0===d.algorithm.indexOf("aes")||"des"===d.algorithm){var z,C;switch(d.algorithm){case "aes128":z=p=16;d=q["aes128-CBC"];C=a.aes.createEncryptionCipher;break;case "aes192":p=24;
465 +z=16;d=q["aes192-CBC"];C=a.aes.createEncryptionCipher;break;case "aes256":p=32;z=16;d=q["aes256-CBC"];C=a.aes.createEncryptionCipher;break;case "des":z=p=8;d=q.desCBC;C=a.des.createEncryptionCipher;break;default:throw h=Error("Cannot encrypt private key. Unknown encryption algorithm."),h.algorithm=d.algorithm,h;}var F=a.pkcs5.pbkdf2(c,h,g,p);c=a.random.getBytesSync(z);g=C(F);g.start(c);g.update(e.toDer(b));g.finish();b=g.output.getBytes();h=e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,
466 +e.Type.OID,!1,e.oidToDer(q.pkcs5PBES2).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(q.pkcs5PBKDF2).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,!1,h),e.create(e.Class.UNIVERSAL,e.Type.INTEGER,!1,l.getBytes())])]),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(d).getBytes()),e.create(e.Class.UNIVERSAL,
467 +e.Type.OCTETSTRING,!1,c)])])])}else if("3des"===d.algorithm)p=24,d=new a.util.ByteBuffer(h),F=k.pbe.generatePkcs12Key(c,d,1,g,p),c=k.pbe.generatePkcs12Key(c,d,2,g,p),g=a.des.createEncryptionCipher(F),g.start(c),g.update(e.toDer(b)),g.finish(),b=g.output.getBytes(),h=e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OID,!1,e.oidToDer(q["pbeWithSHAAnd3-KeyTripleDES-CBC"]).getBytes()),e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,
468 +!1,h),e.create(e.Class.UNIVERSAL,e.Type.INTEGER,!1,l.getBytes())])]);else throw h=Error("Cannot encrypt private key. Unknown encryption algorithm."),h.algorithm=d.algorithm,h;return e.create(e.Class.UNIVERSAL,e.Type.SEQUENCE,!0,[h,e.create(e.Class.UNIVERSAL,e.Type.OCTETSTRING,!1,b)])};k.decryptPrivateKeyInfo=function(b,c){var d=null,h={},g=[];if(!e.validate(b,l,h,g))throw d=Error("Cannot read encrypted private key. ASN.1 object is not a supported EncryptedPrivateKeyInfo."),d.errors=g,d;g=e.derToOid(h.encryptionOid);
469 +g=k.pbe.getCipher(g,h.encryptionParams,c);h=a.util.createBuffer(h.encryptedData);g.update(h);g.finish()&&(d=e.fromDer(g.output));return d};k.encryptedPrivateKeyToPem=function(b,c){var d={type:"ENCRYPTED PRIVATE KEY",body:e.toDer(b).getBytes()};return a.pem.encode(d,{maxline:c})};k.encryptedPrivateKeyFromPem=function(b){b=a.pem.decode(b)[0];if("ENCRYPTED PRIVATE KEY"!==b.type){var c=Error('Could not convert encrypted private key from PEM; PEM header type is "ENCRYPTED PRIVATE KEY".');c.headerType=
470 +b.type;throw c;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert encrypted private key from PEM; PEM is encrypted.");return e.fromDer(b.body)};k.encryptRsaPrivateKey=function(b,c,d){d=d||{};if(!d.legacy)return b=k.wrapRsaPrivateKey(k.privateKeyToAsn1(b)),b=k.encryptPrivateKeyInfo(b,c,d),k.encryptedPrivateKeyToPem(b);var h,g,l;switch(d.algorithm){case "aes128":d="AES-128-CBC";g=16;h=a.random.getBytesSync(16);l=a.aes.createEncryptionCipher;break;case "aes192":d="AES-192-CBC";
471 +g=24;h=a.random.getBytesSync(16);l=a.aes.createEncryptionCipher;break;case "aes256":d="AES-256-CBC";g=32;h=a.random.getBytesSync(16);l=a.aes.createEncryptionCipher;break;case "3des":d="DES-EDE3-CBC";g=24;h=a.random.getBytesSync(8);l=a.des.createEncryptionCipher;break;case "des":d="DES-CBC";g=8;h=a.random.getBytesSync(8);l=a.des.createEncryptionCipher;break;default:throw b=Error('Could not encrypt RSA private key; unsupported encryption algorithm "'+d.algorithm+'".'),b.algorithm=d.algorithm,b;}c=a.pbe.opensslDeriveBytes(c,
472 +h.substr(0,8),g);c=l(c);c.start(h);c.update(e.toDer(k.privateKeyToAsn1(b)));c.finish();b={type:"RSA PRIVATE KEY",procType:{version:"4",type:"ENCRYPTED"},dekInfo:{algorithm:d,parameters:a.util.bytesToHex(h).toUpperCase()},body:c.output.getBytes()};return a.pem.encode(b)};k.decryptRsaPrivateKey=function(b,c){var d=null,h=a.pem.decode(b)[0];if("ENCRYPTED PRIVATE KEY"!==h.type&&"PRIVATE KEY"!==h.type&&"RSA PRIVATE KEY"!==h.type)throw d=Error('Could not convert private key from PEM; PEM header type is not "ENCRYPTED PRIVATE KEY", "PRIVATE KEY", or "RSA PRIVATE KEY".'),
473 +d.headerType=d,d;if(h.procType&&"ENCRYPTED"===h.procType.type){var g,l;switch(h.dekInfo.algorithm){case "DES-CBC":g=8;l=a.des.createDecryptionCipher;break;case "DES-EDE3-CBC":g=24;l=a.des.createDecryptionCipher;break;case "AES-128-CBC":g=16;l=a.aes.createDecryptionCipher;break;case "AES-192-CBC":g=24;l=a.aes.createDecryptionCipher;break;case "AES-256-CBC":g=32;l=a.aes.createDecryptionCipher;break;case "RC2-40-CBC":g=5;l=function(b){return a.rc2.createDecryptionCipher(b,40)};break;case "RC2-64-CBC":g=
474 +8;l=function(b){return a.rc2.createDecryptionCipher(b,64)};break;case "RC2-128-CBC":g=16;l=function(b){return a.rc2.createDecryptionCipher(b,128)};break;default:throw d=Error('Could not decrypt private key; unsupported encryption algorithm "'+h.dekInfo.algorithm+'".'),d.algorithm=h.dekInfo.algorithm,d;}var p=a.util.hexToBytes(h.dekInfo.parameters);g=a.pbe.opensslDeriveBytes(c,p.substr(0,8),g);l=l(g);l.start(p);l.update(a.util.createBuffer(h.body));if(l.finish())d=l.output.getBytes();else return d}else d=
475 +h.body;d="ENCRYPTED PRIVATE KEY"===h.type?k.decryptPrivateKeyInfo(e.fromDer(d),c):e.fromDer(d);null!==d&&(d=k.privateKeyFromAsn1(d));return d};k.pbe.generatePkcs12Key=function(b,c,d,e,h,g){var m,l;if("undefined"===typeof g||null===g)g=a.md.sha1.create();var p=g.digestLength,k=g.blockLength,q=new a.util.ByteBuffer,x=new a.util.ByteBuffer;if(null!==b&&void 0!==b){for(l=0;l<b.length;l++)x.putInt16(b.charCodeAt(l));x.putInt16(0)}b=x.length();var r=c.length(),w=new a.util.ByteBuffer;w.fillWithByte(d,k);
476 +var v=k*Math.ceil(r/k);d=new a.util.ByteBuffer;for(l=0;l<v;l++)d.putByte(c.at(l%r));v=k*Math.ceil(b/k);c=new a.util.ByteBuffer;for(l=0;l<v;l++)c.putByte(x.at(l%b));x=d;x.putBuffer(c);c=Math.ceil(h/p);for(d=1;d<=c;d++){v=new a.util.ByteBuffer;v.putBytes(w.bytes());v.putBytes(x.bytes());for(l=0;l<e;l++)g.start(),g.update(v.getBytes()),v=g.digest();var B=new a.util.ByteBuffer;for(l=0;l<k;l++)B.putByte(v.at(l%p));var ca=Math.ceil(r/k)+Math.ceil(b/k),O=new a.util.ByteBuffer;for(m=0;m<ca;m++){var S=new a.util.ByteBuffer(x.getBytes(k)),
477 +V=511;for(l=B.length()-1;0<=l;l--)V>>=8,V+=B.at(l)+S.at(l),S.setAt(l,V&255);O.putBuffer(S)}x=O;q.putBuffer(v)}q.truncate(q.length()-h);return q};k.pbe.getCipher=function(a,b,c){switch(a){case k.oids.pkcs5PBES2:return k.pbe.getCipherForPBES2(a,b,c);case k.oids["pbeWithSHAAnd3-KeyTripleDES-CBC"]:case k.oids["pbewithSHAAnd40BitRC2-CBC"]:return k.pbe.getCipherForPKCS12PBE(a,b,c);default:throw b=Error("Cannot read encrypted PBE data block. Unsupported OID."),b.oid=a,b.supportedOids=["pkcs5PBES2","pbeWithSHAAnd3-KeyTripleDES-CBC",
478 +"pbewithSHAAnd40BitRC2-CBC"],b;}};k.pbe.getCipherForPBES2=function(b,c,d){var h={};b=[];if(!e.validate(c,g,h,b)){var l=Error("Cannot read password-based-encryption algorithm parameters. ASN.1 object is not a supported EncryptedPrivateKeyInfo.");l.errors=b;throw l;}b=e.derToOid(h.kdfOid);if(b!==k.oids.pkcs5PBKDF2)throw l=Error("Cannot read encrypted private key. Unsupported key derivation function OID."),l.oid=b,l.supportedOids=["pkcs5PBKDF2"],l;b=e.derToOid(h.encOid);if(b!==k.oids["aes128-CBC"]&&
479 +b!==k.oids["aes192-CBC"]&&b!==k.oids["aes256-CBC"]&&b!==k.oids["des-EDE3-CBC"]&&b!==k.oids.desCBC)throw l=Error("Cannot read encrypted private key. Unsupported encryption scheme OID."),l.oid=b,l.supportedOids=["aes128-CBC","aes192-CBC","aes256-CBC","des-EDE3-CBC","desCBC"],l;c=h.kdfSalt;var p=a.util.createBuffer(h.kdfIterationCount),p=p.getInt(p.length()<<3),q;switch(k.oids[b]){case "aes128-CBC":q=16;l=a.aes.createDecryptionCipher;break;case "aes192-CBC":q=24;l=a.aes.createDecryptionCipher;break;
480 +case "aes256-CBC":q=32;l=a.aes.createDecryptionCipher;break;case "des-EDE3-CBC":q=24;l=a.des.createDecryptionCipher;break;case "desCBC":q=8,l=a.des.createDecryptionCipher}b=a.pkcs5.pbkdf2(d,c,p,q);h=h.encIv;l=l(b);l.start(h);return l};k.pbe.getCipherForPKCS12PBE=function(b,c,d){var h={},g=[];if(!e.validate(c,x,h,g))throw d=Error("Cannot read password-based-encryption algorithm parameters. ASN.1 object is not a supported EncryptedPrivateKeyInfo."),d.errors=g,d;var g=a.util.createBuffer(h.salt),h=a.util.createBuffer(h.iterations),
481 +h=h.getInt(h.length()<<3),l;switch(b){case k.oids["pbeWithSHAAnd3-KeyTripleDES-CBC"]:l=24;c=8;b=a.des.startDecrypting;break;case k.oids["pbewithSHAAnd40BitRC2-CBC"]:l=5;c=8;b=function(b,c){var d=a.rc2.createDecryptionCipher(b,40);d.start(c,null);return d};break;default:throw d=Error("Cannot read PKCS #12 PBE data block. Unsupported OID."),d.oid=b,d;}l=k.pbe.generatePkcs12Key(d,g,1,h,l);d=k.pbe.generatePkcs12Key(d,g,2,h,c);return b(l,d)};k.pbe.opensslDeriveBytes=function(b,d,e,h){if("undefined"===
482 +typeof h||null===h)h=a.md.md5.create();null===d&&(d="");for(var g=[c(h,b+d)],l=16,m=1;l<e;++m,l+=16)g.push(c(h,g[m-1]+b+d));return g.join("").substr(0,e)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pbe)return c.pbe;c.defined.pbe=!0;for(var p=
483 +0;p<e.length;++p)e[p](c);return c.pbe}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pbe","require module ./aes ./asn1 ./des ./md ./oids ./pem ./pbkdf2 ./random ./rc2 ./rsa ./util".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1,d=a.pkcs7asn1=a.pkcs7asn1||{};a.pkcs7=
484 a.pkcs7||{};a.pkcs7.asn1=d;a={name:"ContentInfo",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"ContentInfo.ContentType",tagClass:c.Class.UNIVERSAL,type:c.Type.OID,constructed:!1,capture:"contentType"},{name:"ContentInfo.content",tagClass:c.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,optional:!0,captureAsn1:"content"}]};d.contentInfoValidator=a;var e={name:"EncryptedContentInfo",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"EncryptedContentInfo.contentType",
485 tagClass:c.Class.UNIVERSAL,type:c.Type.OID,constructed:!1,capture:"contentType"},{name:"EncryptedContentInfo.contentEncryptionAlgorithm",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"EncryptedContentInfo.contentEncryptionAlgorithm.algorithm",tagClass:c.Class.UNIVERSAL,type:c.Type.OID,constructed:!1,capture:"encAlgorithm"},{name:"EncryptedContentInfo.contentEncryptionAlgorithm.parameter",tagClass:c.Class.UNIVERSAL,captureAsn1:"encParameter"}]},{name:"EncryptedContentInfo.encryptedContent",
486 tagClass:c.Class.CONTEXT_SPECIFIC,type:0,capture:"encryptedContent",captureAsn1:"encryptedContentAsn1"}]};d.envelopedDataValidator={name:"EnvelopedData",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"EnvelopedData.Version",tagClass:c.Class.UNIVERSAL,type:c.Type.INTEGER,constructed:!1,capture:"version"},{name:"EnvelopedData.RecipientInfos",tagClass:c.Class.UNIVERSAL,type:c.Type.SET,constructed:!0,captureAsn1:"recipientInfos"}].concat(e)};d.encryptedDataValidator={name:"EncryptedData",
@@ -491,359 +491,408 @@ value:[{name:"SignerInfo.digestAlgorithm.algorithm",tagClass:c.Class.UNIVERSAL,t
491 constructed:!0,capture:"signatureAlgorithm"},{name:"SignerInfo.encryptedDigest",tagClass:c.Class.UNIVERSAL,type:c.Type.OCTETSTRING,constructed:!1,capture:"signature"},{name:"SignerInfo.unauthenticatedAttributes",tagClass:c.Class.CONTEXT_SPECIFIC,type:1,constructed:!0,optional:!0,capture:"unauthenticatedAttributes"}]}]}]};d.recipientInfoValidator={name:"RecipientInfo",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"RecipientInfo.version",tagClass:c.Class.UNIVERSAL,type:c.Type.INTEGER,
492 constructed:!1,capture:"version"},{name:"RecipientInfo.issuerAndSerial",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,value:[{name:"RecipientInfo.issuerAndSerial.issuer",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,captureAsn1:"issuer"},{name:"RecipientInfo.issuerAndSerial.serialNumber",tagClass:c.Class.UNIVERSAL,type:c.Type.INTEGER,constructed:!1,capture:"serial"}]},{name:"RecipientInfo.keyEncryptionAlgorithm",tagClass:c.Class.UNIVERSAL,type:c.Type.SEQUENCE,constructed:!0,
493 value:[{name:"RecipientInfo.keyEncryptionAlgorithm.algorithm",tagClass:c.Class.UNIVERSAL,type:c.Type.OID,constructed:!1,capture:"encAlgorithm"},{name:"RecipientInfo.keyEncryptionAlgorithm.parameter",tagClass:c.Class.UNIVERSAL,constructed:!1,captureAsn1:"encParameter"}]},{name:"RecipientInfo.encryptedKey",tagClass:c.Class.UNIVERSAL,type:c.Type.OCTETSTRING,constructed:!1,capture:"encKey"}]}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===
494 -typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs7asn1)return c.pkcs7asn1;c.defined.pkcs7asn1=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pkcs7asn1}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs7asn1",
495 -["require","module","./asn1","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.mgf=a.mgf||{};(a.mgf.mgf1=a.mgf1=a.mgf1||{}).create=function(b){return{generate:function(c,d){for(var e=new a.util.ByteBuffer,n=Math.ceil(d/b.digestLength),k=0;k<n;k++){var h=new a.util.ByteBuffer;h.putInt32(k);b.start();b.update(c+h.getBytes());e.putBuffer(b.digest())}e.truncate(e.length()-d);return e.getBytes()}}}}if("function"!==typeof a)if("object"===typeof module&&
496 -module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.mgf1)return c.mgf1;c.defined.mgf1=!0;for(var g=0;g<e.length;++g)e[g](c);return c.mgf1}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,
497 -Array.prototype.slice.call(arguments,0))};a("js/mgf1",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.mgf=a.mgf||{};a.mgf.mgf1=a.mgf1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||
498 -{};if(c.defined.mgf)return c.mgf;c.defined.mgf=!0;for(var g=0;g<e.length;++g)e[g](c);return c.mgf}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/mgf",["require","module","./mgf1"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){(a.pss=a.pss||{}).create=function(b){3===arguments.length&&
499 -(b={md:arguments[0],mgf:arguments[1],saltLength:arguments[2]});var c=b.md,d=b.mgf,e=c.digestLength,n=b.salt||null;"string"===typeof n&&(n=a.util.createBuffer(n));var k;if("saltLength"in b)k=b.saltLength;else if(null!==n)k=n.length();else throw Error("Salt length not specified or specific salt not given.");if(null!==n&&n.length()!==k)throw Error("Given salt length does not match length of given salt.");var h=b.prng||a.random;return{encode:function(b,g){var p,r=g-1,y=Math.ceil(r/8),I=b.digest().getBytes();
500 -if(y<e+k+2)throw Error("Message is too long to encrypt.");var F;F=null===n?h.getBytesSync(k):n.bytes();p=new a.util.ByteBuffer;p.fillWithByte(0,8);p.putBytes(I);p.putBytes(F);c.start();c.update(p.getBytes());I=c.digest().getBytes();p=new a.util.ByteBuffer;p.fillWithByte(0,y-k-e-2);p.putByte(1);p.putBytes(F);var E=p.getBytes(),z=y-e-1,D=d.generate(I,z);F="";for(p=0;p<z;p++)F+=String.fromCharCode(E.charCodeAt(p)^D.charCodeAt(p));r=65280>>8*y-r&255;F=String.fromCharCode(F.charCodeAt(0)&~r)+F.substr(1);
501 -return F+I+String.fromCharCode(188)},verify:function(b,g,h){var n;n=h-1;h=Math.ceil(n/8);g=g.substr(-h);if(h<e+k+2)throw Error("Inconsistent parameters to PSS signature verification.");if(188!==g.charCodeAt(h-1))throw Error("Encoded message does not end in 0xBC.");var p=h-e-1,x=g.substr(0,p);g=g.substr(p,e);var r=65280>>8*h-n&255;if(0!==(x.charCodeAt(0)&r))throw Error("Bits beyond keysize not zero as expected.");var E=d.generate(g,p),z="";for(n=0;n<p;n++)z+=String.fromCharCode(x.charCodeAt(n)^E.charCodeAt(n));
502 -z=String.fromCharCode(z.charCodeAt(0)&~r)+z.substr(1);h=h-e-k-2;for(n=0;n<h;n++)if(0!==z.charCodeAt(n))throw Error("Leftmost octets not zero as expected");if(1!==z.charCodeAt(h))throw Error("Inconsistent PSS signature, 0x01 marker not found");h=z.substr(-k);p=new a.util.ByteBuffer;p.fillWithByte(0,8);p.putBytes(b);p.putBytes(h);c.start();c.update(p.getBytes());b=c.digest().getBytes();return g===b}}}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,
503 -module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pss)return c.pss;c.defined.pss=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pss}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pss",
504 -["require","module","./random","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b){"string"===typeof b&&(b={shortName:b});for(var d=null,e,g=0;null===d&&g<a.attributes.length;++g)e=a.attributes[g],b.type&&b.type===e.type?d=e:b.name&&b.name===e.name?d=e:b.shortName&&b.shortName===e.shortName&&(d=e);return d}function d(b){var c=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]),e;b=b.attributes;for(var g=0;g<b.length;++g){e=b[g];
505 -var k=e.value,l=h.Type.PRINTABLESTRING;"valueTagClass"in e&&(l=e.valueTagClass,l===h.Type.UTF8&&(k=a.util.encodeUtf8(k)));e=h.create(h.Class.UNIVERSAL,h.Type.SET,!0,[h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(e.type).getBytes()),h.create(h.Class.UNIVERSAL,l,!1,k)])]);c.value.push(e)}return c}function e(a){for(var b,c=0;c<a.length;++c){b=a[c];"undefined"===typeof b.name&&(b.type&&b.type in r.oids?b.name=r.oids[b.type]:b.shortName&&b.shortName in
506 -C&&(b.name=r.oids[C[b.shortName]]));if("undefined"===typeof b.type)if(b.name&&b.name in r.oids)b.type=r.oids[b.name];else throw a=Error("Attribute type not specified."),a.attribute=b,a;"undefined"===typeof b.shortName&&b.name&&b.name in C&&(b.shortName=C[b.name]);if(b.type===q.extensionRequest&&(b.valueConstructed=!0,b.valueTagClass=h.Type.SEQUENCE,!b.value&&b.extensions)){b.value=[];for(var d=0;d<b.extensions.length;++d)b.value.push(r.certificateExtensionToAsn1(n(b.extensions[d])))}if("undefined"===
507 -typeof b.value)throw a=Error("Attribute value not specified."),a.attribute=b,a;}}function n(b,c){c=c||{};"undefined"===typeof b.name&&b.id&&b.id in r.oids&&(b.name=r.oids[b.id]);if("undefined"===typeof b.id)if(b.name&&b.name in r.oids)b.id=r.oids[b.name];else{var d=Error("Extension ID not specified.");d.extension=b;throw d;}if("undefined"!==typeof b.value)return b;if("keyUsage"===b.name){var e=d=0,g=0;b.digitalSignature&&(e|=128,d=7);b.nonRepudiation&&(e|=64,d=6);b.keyEncipherment&&(e|=32,d=5);b.dataEncipherment&&
508 -(e|=16,d=4);b.keyAgreement&&(e|=8,d=3);b.keyCertSign&&(e|=4,d=2);b.cRLSign&&(e|=2,d=1);b.encipherOnly&&(e|=1,d=0);b.decipherOnly&&(g|=128,d=7);d=String.fromCharCode(d);0!==g?d+=String.fromCharCode(e)+String.fromCharCode(g):0!==e&&(d+=String.fromCharCode(e));b.value=h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,!1,d)}else if("basicConstraints"===b.name)b.value=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]),b.cA&&b.value.value.push(h.create(h.Class.UNIVERSAL,h.Type.BOOLEAN,!1,String.fromCharCode(255))),
509 -"pathLenConstraint"in b&&b.value.value.push(h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(b.pathLenConstraint).getBytes()));else if("extKeyUsage"===b.name)for(e in b.value=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]),d=b.value.value,b)!0===b[e]&&(e in q?d.push(h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(q[e]).getBytes())):-1!==e.indexOf(".")&&d.push(h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(e).getBytes())));else if("nsCertType"===b.name)e=d=0,b.client&&(e|=128,
510 -d=7),b.server&&(e|=64,d=6),b.email&&(e|=32,d=5),b.objsign&&(e|=16,d=4),b.reserved&&(e|=8,d=3),b.sslCA&&(e|=4,d=2),b.emailCA&&(e|=2,d=1),b.objCA&&(e|=1,d=0),d=String.fromCharCode(d),0!==e&&(d+=String.fromCharCode(e)),b.value=h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,!1,d);else if("subjectAltName"===b.name||"issuerAltName"===b.name)for(b.value=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]),g=0;g<b.altNames.length;++g){e=b.altNames[g];d=e.value;if(7===e.type&&e.ip){if(d=a.util.bytesFromIP(e.ip),
511 -null===d)throw d=Error('Extension "ip" value is not a valid IPv4 or IPv6 address.'),d.extension=b,d;}else 8===e.type&&(d=e.oid?h.oidToDer(h.oidToDer(e.oid)):h.oidToDer(d));b.value.value.push(h.create(h.Class.CONTEXT_SPECIFIC,e.type,!1,d))}else"subjectKeyIdentifier"===b.name&&c.cert&&(d=c.cert.generateSubjectKeyIdentifier(),b.subjectKeyIdentifier=d.toHex(),b.value=h.create(h.Class.UNIVERSAL,h.Type.OCTETSTRING,!1,d.getBytes()));if("undefined"===typeof b.value)throw d=Error("Extension value not specified."),
512 -d.extension=b,d;return b}function p(a,b){switch(a){case q["RSASSA-PSS"]:var c=[];void 0!==b.hash.algorithmOid&&c.push(h.create(h.Class.CONTEXT_SPECIFIC,0,!0,[h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(b.hash.algorithmOid).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.NULL,!1,"")])]));void 0!==b.mgf.algorithmOid&&c.push(h.create(h.Class.CONTEXT_SPECIFIC,1,!0,[h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,
513 -!1,h.oidToDer(b.mgf.algorithmOid).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(b.mgf.hash.algorithmOid).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.NULL,!1,"")])])]));void 0!==b.saltLength&&c.push(h.create(h.Class.CONTEXT_SPECIFIC,2,!0,[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(b.saltLength).getBytes())]));return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,c);default:return h.create(h.Class.UNIVERSAL,h.Type.NULL,
514 -!1,"")}}function k(b){var c=h.create(h.Class.CONTEXT_SPECIFIC,0,!0,[]);if(0===b.attributes.length)return c;b=b.attributes;for(var d=0;d<b.length;++d){var e=b[d],g=e.value,k=h.Type.UTF8;"valueTagClass"in e&&(k=e.valueTagClass);k===h.Type.UTF8&&(g=a.util.encodeUtf8(g));var l=!1;"valueConstructed"in e&&(l=e.valueConstructed);e=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(e.type).getBytes()),h.create(h.Class.UNIVERSAL,h.Type.SET,!0,[h.create(h.Class.UNIVERSAL,
515 -k,l,g)])]);c.value.push(e)}return c}var h=a.asn1,r=a.pki=a.pki||{},q=r.oids,C={};C.CN=q.commonName;C.commonName="CN";C.C=q.countryName;C.countryName="C";C.L=q.localityName;C.localityName="L";C.ST=q.stateOrProvinceName;C.stateOrProvinceName="ST";C.O=q.organizationName;C.organizationName="O";C.OU=q.organizationalUnitName;C.organizationalUnitName="OU";C.E=q.emailAddress;C.emailAddress="E";var B=a.pki.rsa.publicKeyValidator,y={name:"Certificate",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,
516 -value:[{name:"Certificate.TBSCertificate",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"tbsCertificate",value:[{name:"Certificate.TBSCertificate.version",tagClass:h.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.version.integer",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"certVersion"}]},{name:"Certificate.TBSCertificate.serialNumber",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,
517 -capture:"certSerialNumber"},{name:"Certificate.TBSCertificate.signature",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.TBSCertificate.signature.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"certinfoSignatureOid"},{name:"Certificate.TBSCertificate.signature.parameters",tagClass:h.Class.UNIVERSAL,optional:!0,captureAsn1:"certinfoSignatureParams"}]},{name:"Certificate.TBSCertificate.issuer",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,
518 -constructed:!0,captureAsn1:"certIssuer"},{name:"Certificate.TBSCertificate.validity",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.TBSCertificate.validity.notBefore (utc)",tagClass:h.Class.UNIVERSAL,type:h.Type.UTCTIME,constructed:!1,optional:!0,capture:"certValidity1UTCTime"},{name:"Certificate.TBSCertificate.validity.notBefore (generalized)",tagClass:h.Class.UNIVERSAL,type:h.Type.GENERALIZEDTIME,constructed:!1,optional:!0,capture:"certValidity2GeneralizedTime"},
519 -{name:"Certificate.TBSCertificate.validity.notAfter (utc)",tagClass:h.Class.UNIVERSAL,type:h.Type.UTCTIME,constructed:!1,optional:!0,capture:"certValidity3UTCTime"},{name:"Certificate.TBSCertificate.validity.notAfter (generalized)",tagClass:h.Class.UNIVERSAL,type:h.Type.GENERALIZEDTIME,constructed:!1,optional:!0,capture:"certValidity4GeneralizedTime"}]},{name:"Certificate.TBSCertificate.subject",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"certSubject"},B,{name:"Certificate.TBSCertificate.issuerUniqueID",
520 -tagClass:h.Class.CONTEXT_SPECIFIC,type:1,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.issuerUniqueID.id",tagClass:h.Class.UNIVERSAL,type:h.Type.BITSTRING,constructed:!1,capture:"certIssuerUniqueId"}]},{name:"Certificate.TBSCertificate.subjectUniqueID",tagClass:h.Class.CONTEXT_SPECIFIC,type:2,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.subjectUniqueID.id",tagClass:h.Class.UNIVERSAL,type:h.Type.BITSTRING,constructed:!1,capture:"certSubjectUniqueId"}]},
521 -{name:"Certificate.TBSCertificate.extensions",tagClass:h.Class.CONTEXT_SPECIFIC,type:3,constructed:!0,captureAsn1:"certExtensions",optional:!0}]},{name:"Certificate.signatureAlgorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.signatureAlgorithm.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"certSignatureOid"},{name:"Certificate.TBSCertificate.signature.parameters",tagClass:h.Class.UNIVERSAL,optional:!0,captureAsn1:"certSignatureParams"}]},
522 -{name:"Certificate.signatureValue",tagClass:h.Class.UNIVERSAL,type:h.Type.BITSTRING,constructed:!1,capture:"certSignature"}]},I={name:"rsapss",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"rsapss.hashAlgorithm",tagClass:h.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,value:[{name:"rsapss.hashAlgorithm.AlgorithmIdentifier",tagClass:h.Class.UNIVERSAL,type:h.Class.SEQUENCE,constructed:!0,optional:!0,value:[{name:"rsapss.hashAlgorithm.AlgorithmIdentifier.algorithm",tagClass:h.Class.UNIVERSAL,
523 -type:h.Type.OID,constructed:!1,capture:"hashOid"}]}]},{name:"rsapss.maskGenAlgorithm",tagClass:h.Class.CONTEXT_SPECIFIC,type:1,constructed:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier",tagClass:h.Class.UNIVERSAL,type:h.Class.SEQUENCE,constructed:!0,optional:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"maskGenOid"},{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.params",tagClass:h.Class.UNIVERSAL,
524 -type:h.Type.SEQUENCE,constructed:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.params.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"maskGenHashOid"}]}]}]},{name:"rsapss.saltLength",tagClass:h.Class.CONTEXT_SPECIFIC,type:2,optional:!0,value:[{name:"rsapss.saltLength.saltLength",tagClass:h.Class.UNIVERSAL,type:h.Class.INTEGER,constructed:!1,capture:"saltLength"}]},{name:"rsapss.trailerField",tagClass:h.Class.CONTEXT_SPECIFIC,type:3,optional:!0,value:[{name:"rsapss.trailer.trailer",
525 -tagClass:h.Class.UNIVERSAL,type:h.Class.INTEGER,constructed:!1,capture:"trailer"}]}]},F={name:"CertificationRequest",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"csr",value:[{name:"CertificationRequestInfo",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"certificationRequestInfo",value:[{name:"CertificationRequestInfo.integer",tagClass:h.Class.UNIVERSAL,type:h.Type.INTEGER,constructed:!1,capture:"certificationRequestInfoVersion"},{name:"CertificationRequestInfo.subject",
526 -tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,captureAsn1:"certificationRequestInfoSubject"},B,{name:"CertificationRequestInfo.attributes",tagClass:h.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,optional:!0,capture:"certificationRequestInfoAttributes",value:[{name:"CertificationRequestInfo.attributes",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"CertificationRequestInfo.attributes.type",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1},{name:"CertificationRequestInfo.attributes.value",
527 -tagClass:h.Class.UNIVERSAL,type:h.Type.SET,constructed:!0}]}]}]},{name:"CertificationRequest.signatureAlgorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.SEQUENCE,constructed:!0,value:[{name:"CertificationRequest.signatureAlgorithm.algorithm",tagClass:h.Class.UNIVERSAL,type:h.Type.OID,constructed:!1,capture:"csrSignatureOid"},{name:"CertificationRequest.signatureAlgorithm.parameters",tagClass:h.Class.UNIVERSAL,optional:!0,captureAsn1:"csrSignatureParams"}]},{name:"CertificationRequest.signature",tagClass:h.Class.UNIVERSAL,
528 -type:h.Type.BITSTRING,constructed:!1,capture:"csrSignature"}]};r.RDNAttributesAsArray=function(a,b){for(var c=[],d,e,g,m=0;m<a.value.length;++m){d=a.value[m];for(var k=0;k<d.value.length;++k)g={},e=d.value[k],g.type=h.derToOid(e.value[0].value),g.value=e.value[1].value,g.valueTagClass=e.value[1].type,g.type in q&&(g.name=q[g.type],g.name in C&&(g.shortName=C[g.name])),b&&(b.update(g.type),b.update(g.value)),c.push(g)}return c};r.CRIAttributesAsArray=function(a){for(var b=[],c=0;c<a.length;++c)for(var d=
529 -a[c],e=h.derToOid(d.value[0].value),d=d.value[1].value,g=0;g<d.length;++g){var m={};m.type=e;m.value=d[g].value;m.valueTagClass=d[g].type;m.type in q&&(m.name=q[m.type],m.name in C&&(m.shortName=C[m.name]));if(m.type===q.extensionRequest){m.extensions=[];for(var k=0;k<m.value.length;++k)m.extensions.push(r.certificateExtensionFromAsn1(m.value[k]))}b.push(m)}return b};var E=function(a,b,c){var d={};if(a!==q["RSASSA-PSS"])return d;c&&(d={hash:{algorithmOid:q.sha1},mgf:{algorithmOid:q.mgf1,hash:{algorithmOid:q.sha1}},
530 -saltLength:20});c={};a=[];if(!h.validate(b,I,c,a))throw b=Error("Cannot read RSASSA-PSS parameter block."),b.errors=a,b;void 0!==c.hashOid&&(d.hash=d.hash||{},d.hash.algorithmOid=h.derToOid(c.hashOid));void 0!==c.maskGenOid&&(d.mgf=d.mgf||{},d.mgf.algorithmOid=h.derToOid(c.maskGenOid),d.mgf.hash=d.mgf.hash||{},d.mgf.hash.algorithmOid=h.derToOid(c.maskGenHashOid));void 0!==c.saltLength&&(d.saltLength=c.saltLength.charCodeAt(0));return d};r.certificateFromPem=function(b,c,d){b=a.pem.decode(b)[0];if("CERTIFICATE"!==
531 -b.type&&"X509 CERTIFICATE"!==b.type&&"TRUSTED CERTIFICATE"!==b.type)throw c=Error('Could not convert certificate from PEM; PEM header type is not "CERTIFICATE", "X509 CERTIFICATE", or "TRUSTED CERTIFICATE".'),c.headerType=b.type,c;if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert certificate from PEM; PEM is encrypted.");d=h.fromDer(b.body,d);return r.certificateFromAsn1(d,c)};r.certificateToPem=function(b,c){var d={type:"CERTIFICATE",body:h.toDer(r.certificateToAsn1(b)).getBytes()};
532 -return a.pem.encode(d,{maxline:c})};r.publicKeyFromPem=function(b){b=a.pem.decode(b)[0];if("PUBLIC KEY"!==b.type&&"RSA PUBLIC KEY"!==b.type){var c=Error('Could not convert public key from PEM; PEM header type is not "PUBLIC KEY" or "RSA PUBLIC KEY".');c.headerType=b.type;throw c;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert public key from PEM; PEM is encrypted.");b=h.fromDer(b.body);return r.publicKeyFromAsn1(b)};r.publicKeyToPem=function(b,c){var d={type:"PUBLIC KEY",
533 -body:h.toDer(r.publicKeyToAsn1(b)).getBytes()};return a.pem.encode(d,{maxline:c})};r.publicKeyToRSAPublicKeyPem=function(b,c){var d={type:"RSA PUBLIC KEY",body:h.toDer(r.publicKeyToRSAPublicKey(b)).getBytes()};return a.pem.encode(d,{maxline:c})};r.getPublicKeyFingerprint=function(b,c){c=c||{};var d=c.md||a.md.sha1.create(),e;switch(c.type||"RSAPublicKey"){case "RSAPublicKey":e=h.toDer(r.publicKeyToRSAPublicKey(b)).getBytes();break;case "SubjectPublicKeyInfo":e=h.toDer(r.publicKeyToAsn1(b)).getBytes();
534 -break;default:throw Error('Unknown fingerprint type "'+c.type+'".');}d.start();d.update(e);d=d.digest();if("hex"===c.encoding)return d=d.toHex(),c.delimiter?d.match(/.{2}/g).join(c.delimiter):d;if("binary"===c.encoding)return d.getBytes();if(c.encoding)throw Error('Unknown encoding "'+c.encoding+'".');return d};r.certificationRequestFromPem=function(b,c,d){b=a.pem.decode(b)[0];if("CERTIFICATE REQUEST"!==b.type)throw c=Error('Could not convert certification request from PEM; PEM header type is not "CERTIFICATE REQUEST".'),
535 -c.headerType=b.type,c;if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert certification request from PEM; PEM is encrypted.");d=h.fromDer(b.body,d);return r.certificationRequestFromAsn1(d,c)};r.certificationRequestToPem=function(b,c){var d={type:"CERTIFICATE REQUEST",body:h.toDer(r.certificationRequestToAsn1(b)).getBytes()};return a.pem.encode(d,{maxline:c})};r.createCertificate=function(){var b={version:2,serialNumber:"00",signatureOid:null,signature:null,siginfo:{}};b.siginfo.algorithmOid=
494 +typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs7asn1)return c.pkcs7asn1;c.defined.pkcs7asn1=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pkcs7asn1}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs7asn1",
495 +["require","module","./asn1","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.mgf=a.mgf||{};(a.mgf.mgf1=a.mgf1=a.mgf1||{}).create=function(b){return{generate:function(c,d){for(var e=new a.util.ByteBuffer,k=Math.ceil(d/b.digestLength),l=0;l<k;l++){var g=new a.util.ByteBuffer;g.putInt32(l);b.start();b.update(c+g.getBytes());e.putBuffer(b.digest())}e.truncate(e.length()-d);return e.getBytes()}}}}if("function"!==typeof a)if("object"===typeof module&&
496 +module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.mgf1)return c.mgf1;c.defined.mgf1=!0;for(var k=0;k<e.length;++k)e[k](c);return c.mgf1}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,
497 +Array.prototype.slice.call(arguments,0))};a("js/mgf1",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.mgf=a.mgf||{};a.mgf.mgf1=a.mgf1}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||
498 +{};if(c.defined.mgf)return c.mgf;c.defined.mgf=!0;for(var k=0;k<e.length;++k)e[k](c);return c.mgf}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/mgf",["require","module","./mgf1"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){(a.pss=a.pss||{}).create=function(b){3===arguments.length&&
499 +(b={md:arguments[0],mgf:arguments[1],saltLength:arguments[2]});var c=b.md,d=b.mgf,e=c.digestLength,k=b.salt||null;"string"===typeof k&&(k=a.util.createBuffer(k));var l;if("saltLength"in b)l=b.saltLength;else if(null!==k)l=k.length();else throw Error("Salt length not specified or specific salt not given.");if(null!==k&&k.length()!==l)throw Error("Given salt length does not match length of given salt.");var g=b.prng||a.random;return{encode:function(b,p){var q,v=p-1,y=Math.ceil(v/8),H=b.digest().getBytes();
500 +if(y<e+l+2)throw Error("Message is too long to encrypt.");var E;E=null===k?g.getBytesSync(l):k.bytes();q=new a.util.ByteBuffer;q.fillWithByte(0,8);q.putBytes(H);q.putBytes(E);c.start();c.update(q.getBytes());H=c.digest().getBytes();q=new a.util.ByteBuffer;q.fillWithByte(0,y-l-e-2);q.putByte(1);q.putBytes(E);var D=q.getBytes(),z=y-e-1,C=d.generate(H,z);E="";for(q=0;q<z;q++)E+=String.fromCharCode(D.charCodeAt(q)^C.charCodeAt(q));v=65280>>8*y-v&255;E=String.fromCharCode(E.charCodeAt(0)&~v)+E.substr(1);
501 +return E+H+String.fromCharCode(188)},verify:function(b,g,k){var p;p=k-1;k=Math.ceil(p/8);g=g.substr(-k);if(k<e+l+2)throw Error("Inconsistent parameters to PSS signature verification.");if(188!==g.charCodeAt(k-1))throw Error("Encoded message does not end in 0xBC.");var q=k-e-1,v=g.substr(0,q);g=g.substr(q,e);var E=65280>>8*k-p&255;if(0!==(v.charCodeAt(0)&E))throw Error("Bits beyond keysize not zero as expected.");var D=d.generate(g,q),z="";for(p=0;p<q;p++)z+=String.fromCharCode(v.charCodeAt(p)^D.charCodeAt(p));
502 +z=String.fromCharCode(z.charCodeAt(0)&~E)+z.substr(1);k=k-e-l-2;for(p=0;p<k;p++)if(0!==z.charCodeAt(p))throw Error("Leftmost octets not zero as expected");if(1!==z.charCodeAt(k))throw Error("Inconsistent PSS signature, 0x01 marker not found");k=z.substr(-l);q=new a.util.ByteBuffer;q.fillWithByte(0,8);q.putBytes(b);q.putBytes(k);c.start();c.update(q.getBytes());b=c.digest().getBytes();return g===b}}}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,
503 +module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pss)return c.pss;c.defined.pss=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pss}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pss",
504 +["require","module","./random","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b){"string"===typeof b&&(b={shortName:b});for(var d=null,e,g=0;null===d&&g<a.attributes.length;++g)e=a.attributes[g],b.type&&b.type===e.type?d=e:b.name&&b.name===e.name?d=e:b.shortName&&b.shortName===e.shortName&&(d=e);return d}function d(b){var c=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]),e;b=b.attributes;for(var h=0;h<b.length;++h){e=b[h];
505 +var l=e.value,m=g.Type.PRINTABLESTRING;"valueTagClass"in e&&(m=e.valueTagClass,m===g.Type.UTF8&&(l=a.util.encodeUtf8(l)));e=g.create(g.Class.UNIVERSAL,g.Type.SET,!0,[g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(e.type).getBytes()),g.create(g.Class.UNIVERSAL,m,!1,l)])]);c.value.push(e)}return c}function e(a){for(var b,c=0;c<a.length;++c){b=a[c];"undefined"===typeof b.name&&(b.type&&b.type in x.oids?b.name=x.oids[b.type]:b.shortName&&b.shortName in
506 +v&&(b.name=x.oids[v[b.shortName]]));if("undefined"===typeof b.type)if(b.name&&b.name in x.oids)b.type=x.oids[b.name];else throw a=Error("Attribute type not specified."),a.attribute=b,a;"undefined"===typeof b.shortName&&b.name&&b.name in v&&(b.shortName=v[b.name]);if(b.type===u.extensionRequest&&(b.valueConstructed=!0,b.valueTagClass=g.Type.SEQUENCE,!b.value&&b.extensions)){b.value=[];for(var d=0;d<b.extensions.length;++d)b.value.push(x.certificateExtensionToAsn1(k(b.extensions[d])))}if("undefined"===
507 +typeof b.value)throw a=Error("Attribute value not specified."),a.attribute=b,a;}}function k(b,c){c=c||{};"undefined"===typeof b.name&&b.id&&b.id in x.oids&&(b.name=x.oids[b.id]);if("undefined"===typeof b.id)if(b.name&&b.name in x.oids)b.id=x.oids[b.name];else{var d=Error("Extension ID not specified.");d.extension=b;throw d;}if("undefined"!==typeof b.value)return b;if("keyUsage"===b.name){var e=d=0,h=0;b.digitalSignature&&(e|=128,d=7);b.nonRepudiation&&(e|=64,d=6);b.keyEncipherment&&(e|=32,d=5);b.dataEncipherment&&
508 +(e|=16,d=4);b.keyAgreement&&(e|=8,d=3);b.keyCertSign&&(e|=4,d=2);b.cRLSign&&(e|=2,d=1);b.encipherOnly&&(e|=1,d=0);b.decipherOnly&&(h|=128,d=7);d=String.fromCharCode(d);0!==h?d+=String.fromCharCode(e)+String.fromCharCode(h):0!==e&&(d+=String.fromCharCode(e));b.value=g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,!1,d)}else if("basicConstraints"===b.name)b.value=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]),b.cA&&b.value.value.push(g.create(g.Class.UNIVERSAL,g.Type.BOOLEAN,!1,String.fromCharCode(255))),
509 +"pathLenConstraint"in b&&b.value.value.push(g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(b.pathLenConstraint).getBytes()));else if("extKeyUsage"===b.name)for(e in b.value=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]),d=b.value.value,b)!0===b[e]&&(e in u?d.push(g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(u[e]).getBytes())):-1!==e.indexOf(".")&&d.push(g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(e).getBytes())));else if("nsCertType"===b.name)e=d=0,b.client&&(e|=128,
510 +d=7),b.server&&(e|=64,d=6),b.email&&(e|=32,d=5),b.objsign&&(e|=16,d=4),b.reserved&&(e|=8,d=3),b.sslCA&&(e|=4,d=2),b.emailCA&&(e|=2,d=1),b.objCA&&(e|=1,d=0),d=String.fromCharCode(d),0!==e&&(d+=String.fromCharCode(e)),b.value=g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,!1,d);else if("subjectAltName"===b.name||"issuerAltName"===b.name)for(b.value=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]),h=0;h<b.altNames.length;++h){e=b.altNames[h];d=e.value;if(7===e.type&&e.ip){if(d=a.util.bytesFromIP(e.ip),
511 +null===d)throw d=Error('Extension "ip" value is not a valid IPv4 or IPv6 address.'),d.extension=b,d;}else 8===e.type&&(d=e.oid?g.oidToDer(g.oidToDer(e.oid)):g.oidToDer(d));b.value.value.push(g.create(g.Class.CONTEXT_SPECIFIC,e.type,!1,d))}else"subjectKeyIdentifier"===b.name&&c.cert&&(d=c.cert.generateSubjectKeyIdentifier(),b.subjectKeyIdentifier=d.toHex(),b.value=g.create(g.Class.UNIVERSAL,g.Type.OCTETSTRING,!1,d.getBytes()));if("undefined"===typeof b.value)throw d=Error("Extension value not specified."),
512 +d.extension=b,d;return b}function q(a,b){switch(a){case u["RSASSA-PSS"]:var c=[];void 0!==b.hash.algorithmOid&&c.push(g.create(g.Class.CONTEXT_SPECIFIC,0,!0,[g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(b.hash.algorithmOid).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.NULL,!1,"")])]));void 0!==b.mgf.algorithmOid&&c.push(g.create(g.Class.CONTEXT_SPECIFIC,1,!0,[g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,
513 +!1,g.oidToDer(b.mgf.algorithmOid).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(b.mgf.hash.algorithmOid).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.NULL,!1,"")])])]));void 0!==b.saltLength&&c.push(g.create(g.Class.CONTEXT_SPECIFIC,2,!0,[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(b.saltLength).getBytes())]));return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,c);default:return g.create(g.Class.UNIVERSAL,g.Type.NULL,
514 +!1,"")}}function l(b){var c=g.create(g.Class.CONTEXT_SPECIFIC,0,!0,[]);if(0===b.attributes.length)return c;b=b.attributes;for(var d=0;d<b.length;++d){var e=b[d],h=e.value,l=g.Type.UTF8;"valueTagClass"in e&&(l=e.valueTagClass);l===g.Type.UTF8&&(h=a.util.encodeUtf8(h));var m=!1;"valueConstructed"in e&&(m=e.valueConstructed);e=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(e.type).getBytes()),g.create(g.Class.UNIVERSAL,g.Type.SET,!0,[g.create(g.Class.UNIVERSAL,
515 +l,m,h)])]);c.value.push(e)}return c}var g=a.asn1,x=a.pki=a.pki||{},u=x.oids,v={};v.CN=u.commonName;v.commonName="CN";v.C=u.countryName;v.countryName="C";v.L=u.localityName;v.localityName="L";v.ST=u.stateOrProvinceName;v.stateOrProvinceName="ST";v.O=u.organizationName;v.organizationName="O";v.OU=u.organizationalUnitName;v.organizationalUnitName="OU";v.E=u.emailAddress;v.emailAddress="E";var A=a.pki.rsa.publicKeyValidator,y={name:"Certificate",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,
516 +value:[{name:"Certificate.TBSCertificate",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"tbsCertificate",value:[{name:"Certificate.TBSCertificate.version",tagClass:g.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.version.integer",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"certVersion"}]},{name:"Certificate.TBSCertificate.serialNumber",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,
517 +capture:"certSerialNumber"},{name:"Certificate.TBSCertificate.signature",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.TBSCertificate.signature.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"certinfoSignatureOid"},{name:"Certificate.TBSCertificate.signature.parameters",tagClass:g.Class.UNIVERSAL,optional:!0,captureAsn1:"certinfoSignatureParams"}]},{name:"Certificate.TBSCertificate.issuer",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,
518 +constructed:!0,captureAsn1:"certIssuer"},{name:"Certificate.TBSCertificate.validity",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.TBSCertificate.validity.notBefore (utc)",tagClass:g.Class.UNIVERSAL,type:g.Type.UTCTIME,constructed:!1,optional:!0,capture:"certValidity1UTCTime"},{name:"Certificate.TBSCertificate.validity.notBefore (generalized)",tagClass:g.Class.UNIVERSAL,type:g.Type.GENERALIZEDTIME,constructed:!1,optional:!0,capture:"certValidity2GeneralizedTime"},
519 +{name:"Certificate.TBSCertificate.validity.notAfter (utc)",tagClass:g.Class.UNIVERSAL,type:g.Type.UTCTIME,constructed:!1,optional:!0,capture:"certValidity3UTCTime"},{name:"Certificate.TBSCertificate.validity.notAfter (generalized)",tagClass:g.Class.UNIVERSAL,type:g.Type.GENERALIZEDTIME,constructed:!1,optional:!0,capture:"certValidity4GeneralizedTime"}]},{name:"Certificate.TBSCertificate.subject",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"certSubject"},A,{name:"Certificate.TBSCertificate.issuerUniqueID",
520 +tagClass:g.Class.CONTEXT_SPECIFIC,type:1,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.issuerUniqueID.id",tagClass:g.Class.UNIVERSAL,type:g.Type.BITSTRING,constructed:!1,capture:"certIssuerUniqueId"}]},{name:"Certificate.TBSCertificate.subjectUniqueID",tagClass:g.Class.CONTEXT_SPECIFIC,type:2,constructed:!0,optional:!0,value:[{name:"Certificate.TBSCertificate.subjectUniqueID.id",tagClass:g.Class.UNIVERSAL,type:g.Type.BITSTRING,constructed:!1,capture:"certSubjectUniqueId"}]},
521 +{name:"Certificate.TBSCertificate.extensions",tagClass:g.Class.CONTEXT_SPECIFIC,type:3,constructed:!0,captureAsn1:"certExtensions",optional:!0}]},{name:"Certificate.signatureAlgorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"Certificate.signatureAlgorithm.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"certSignatureOid"},{name:"Certificate.TBSCertificate.signature.parameters",tagClass:g.Class.UNIVERSAL,optional:!0,captureAsn1:"certSignatureParams"}]},
522 +{name:"Certificate.signatureValue",tagClass:g.Class.UNIVERSAL,type:g.Type.BITSTRING,constructed:!1,capture:"certSignature"}]},H={name:"rsapss",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"rsapss.hashAlgorithm",tagClass:g.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,value:[{name:"rsapss.hashAlgorithm.AlgorithmIdentifier",tagClass:g.Class.UNIVERSAL,type:g.Class.SEQUENCE,constructed:!0,optional:!0,value:[{name:"rsapss.hashAlgorithm.AlgorithmIdentifier.algorithm",tagClass:g.Class.UNIVERSAL,
523 +type:g.Type.OID,constructed:!1,capture:"hashOid"}]}]},{name:"rsapss.maskGenAlgorithm",tagClass:g.Class.CONTEXT_SPECIFIC,type:1,constructed:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier",tagClass:g.Class.UNIVERSAL,type:g.Class.SEQUENCE,constructed:!0,optional:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"maskGenOid"},{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.params",tagClass:g.Class.UNIVERSAL,
524 +type:g.Type.SEQUENCE,constructed:!0,value:[{name:"rsapss.maskGenAlgorithm.AlgorithmIdentifier.params.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"maskGenHashOid"}]}]}]},{name:"rsapss.saltLength",tagClass:g.Class.CONTEXT_SPECIFIC,type:2,optional:!0,value:[{name:"rsapss.saltLength.saltLength",tagClass:g.Class.UNIVERSAL,type:g.Class.INTEGER,constructed:!1,capture:"saltLength"}]},{name:"rsapss.trailerField",tagClass:g.Class.CONTEXT_SPECIFIC,type:3,optional:!0,value:[{name:"rsapss.trailer.trailer",
525 +tagClass:g.Class.UNIVERSAL,type:g.Class.INTEGER,constructed:!1,capture:"trailer"}]}]},E={name:"CertificationRequest",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"csr",value:[{name:"CertificationRequestInfo",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"certificationRequestInfo",value:[{name:"CertificationRequestInfo.integer",tagClass:g.Class.UNIVERSAL,type:g.Type.INTEGER,constructed:!1,capture:"certificationRequestInfoVersion"},{name:"CertificationRequestInfo.subject",
526 +tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,captureAsn1:"certificationRequestInfoSubject"},A,{name:"CertificationRequestInfo.attributes",tagClass:g.Class.CONTEXT_SPECIFIC,type:0,constructed:!0,optional:!0,capture:"certificationRequestInfoAttributes",value:[{name:"CertificationRequestInfo.attributes",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"CertificationRequestInfo.attributes.type",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1},{name:"CertificationRequestInfo.attributes.value",
527 +tagClass:g.Class.UNIVERSAL,type:g.Type.SET,constructed:!0}]}]}]},{name:"CertificationRequest.signatureAlgorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.SEQUENCE,constructed:!0,value:[{name:"CertificationRequest.signatureAlgorithm.algorithm",tagClass:g.Class.UNIVERSAL,type:g.Type.OID,constructed:!1,capture:"csrSignatureOid"},{name:"CertificationRequest.signatureAlgorithm.parameters",tagClass:g.Class.UNIVERSAL,optional:!0,captureAsn1:"csrSignatureParams"}]},{name:"CertificationRequest.signature",tagClass:g.Class.UNIVERSAL,
528 +type:g.Type.BITSTRING,constructed:!1,capture:"csrSignature"}]};x.RDNAttributesAsArray=function(a,b){for(var c=[],d,e,h,n=0;n<a.value.length;++n){d=a.value[n];for(var l=0;l<d.value.length;++l)h={},e=d.value[l],h.type=g.derToOid(e.value[0].value),h.value=e.value[1].value,h.valueTagClass=e.value[1].type,h.type in u&&(h.name=u[h.type],h.name in v&&(h.shortName=v[h.name])),b&&(b.update(h.type),b.update(h.value)),c.push(h)}return c};x.CRIAttributesAsArray=function(a){for(var b=[],c=0;c<a.length;++c)for(var d=
529 +a[c],e=g.derToOid(d.value[0].value),d=d.value[1].value,h=0;h<d.length;++h){var n={};n.type=e;n.value=d[h].value;n.valueTagClass=d[h].type;n.type in u&&(n.name=u[n.type],n.name in v&&(n.shortName=v[n.name]));if(n.type===u.extensionRequest){n.extensions=[];for(var l=0;l<n.value.length;++l)n.extensions.push(x.certificateExtensionFromAsn1(n.value[l]))}b.push(n)}return b};var D=function(a,b,c){var d={};if(a!==u["RSASSA-PSS"])return d;c&&(d={hash:{algorithmOid:u.sha1},mgf:{algorithmOid:u.mgf1,hash:{algorithmOid:u.sha1}},
530 +saltLength:20});c={};a=[];if(!g.validate(b,H,c,a))throw b=Error("Cannot read RSASSA-PSS parameter block."),b.errors=a,b;void 0!==c.hashOid&&(d.hash=d.hash||{},d.hash.algorithmOid=g.derToOid(c.hashOid));void 0!==c.maskGenOid&&(d.mgf=d.mgf||{},d.mgf.algorithmOid=g.derToOid(c.maskGenOid),d.mgf.hash=d.mgf.hash||{},d.mgf.hash.algorithmOid=g.derToOid(c.maskGenHashOid));void 0!==c.saltLength&&(d.saltLength=c.saltLength.charCodeAt(0));return d};x.certificateFromPem=function(b,c,d){b=a.pem.decode(b)[0];if("CERTIFICATE"!==
531 +b.type&&"X509 CERTIFICATE"!==b.type&&"TRUSTED CERTIFICATE"!==b.type)throw c=Error('Could not convert certificate from PEM; PEM header type is not "CERTIFICATE", "X509 CERTIFICATE", or "TRUSTED CERTIFICATE".'),c.headerType=b.type,c;if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert certificate from PEM; PEM is encrypted.");d=g.fromDer(b.body,d);return x.certificateFromAsn1(d,c)};x.certificateToPem=function(b,c){var d={type:"CERTIFICATE",body:g.toDer(x.certificateToAsn1(b)).getBytes()};
532 +return a.pem.encode(d,{maxline:c})};x.publicKeyFromPem=function(b){b=a.pem.decode(b)[0];if("PUBLIC KEY"!==b.type&&"RSA PUBLIC KEY"!==b.type){var c=Error('Could not convert public key from PEM; PEM header type is not "PUBLIC KEY" or "RSA PUBLIC KEY".');c.headerType=b.type;throw c;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert public key from PEM; PEM is encrypted.");b=g.fromDer(b.body);return x.publicKeyFromAsn1(b)};x.publicKeyToPem=function(b,c){var d={type:"PUBLIC KEY",
533 +body:g.toDer(x.publicKeyToAsn1(b)).getBytes()};return a.pem.encode(d,{maxline:c})};x.publicKeyToRSAPublicKeyPem=function(b,c){var d={type:"RSA PUBLIC KEY",body:g.toDer(x.publicKeyToRSAPublicKey(b)).getBytes()};return a.pem.encode(d,{maxline:c})};x.getPublicKeyFingerprint=function(b,c){c=c||{};var d=c.md||a.md.sha1.create(),e;switch(c.type||"RSAPublicKey"){case "RSAPublicKey":e=g.toDer(x.publicKeyToRSAPublicKey(b)).getBytes();break;case "SubjectPublicKeyInfo":e=g.toDer(x.publicKeyToAsn1(b)).getBytes();
534 +break;default:throw Error('Unknown fingerprint type "'+c.type+'".');}d.start();d.update(e);d=d.digest();if("hex"===c.encoding)return d=d.toHex(),c.delimiter?d.match(/.{2}/g).join(c.delimiter):d;if("binary"===c.encoding)return d.getBytes();if(c.encoding)throw Error('Unknown encoding "'+c.encoding+'".');return d};x.certificationRequestFromPem=function(b,c,d){b=a.pem.decode(b)[0];if("CERTIFICATE REQUEST"!==b.type)throw c=Error('Could not convert certification request from PEM; PEM header type is not "CERTIFICATE REQUEST".'),
535 +c.headerType=b.type,c;if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert certification request from PEM; PEM is encrypted.");d=g.fromDer(b.body,d);return x.certificationRequestFromAsn1(d,c)};x.certificationRequestToPem=function(b,c){var d={type:"CERTIFICATE REQUEST",body:g.toDer(x.certificationRequestToAsn1(b)).getBytes()};return a.pem.encode(d,{maxline:c})};x.createCertificate=function(){var b={version:2,serialNumber:"00",signatureOid:null,signature:null,siginfo:{}};b.siginfo.algorithmOid=
536 null;b.validity={};b.validity.notBefore=new Date;b.validity.notAfter=new Date;b.issuer={};b.issuer.getField=function(a){return c(b.issuer,a)};b.issuer.addField=function(a){e([a]);b.issuer.attributes.push(a)};b.issuer.attributes=[];b.issuer.hash=null;b.subject={};b.subject.getField=function(a){return c(b.subject,a)};b.subject.addField=function(a){e([a]);b.subject.attributes.push(a)};b.subject.attributes=[];b.subject.hash=null;b.extensions=[];b.publicKey=null;b.md=null;b.setSubject=function(a,c){e(a);
537 -b.subject.attributes=a;delete b.subject.uniqueId;c&&(b.subject.uniqueId=c);b.subject.hash=null};b.setIssuer=function(a,c){e(a);b.issuer.attributes=a;delete b.issuer.uniqueId;c&&(b.issuer.uniqueId=c);b.issuer.hash=null};b.setExtensions=function(a){for(var c=0;c<a.length;++c)n(a[c],{cert:b});b.extensions=a};b.getExtension=function(a){"string"===typeof a&&(a={name:a});for(var c=null,d,e=0;null===c&&e<b.extensions.length;++e)d=b.extensions[e],a.id&&d.id===a.id?c=d:a.name&&d.name===a.name&&(c=d);return c};
538 -b.sign=function(c,d){b.md=d||a.md.sha1.create();var e=q[b.md.algorithm+"WithRSAEncryption"];if(!e)throw e=Error("Could not compute certificate digest. Unknown message digest algorithm OID."),e.algorithm=b.md.algorithm,e;b.signatureOid=b.siginfo.algorithmOid=e;b.tbsCertificate=r.getTBSCertificate(b);e=h.toDer(b.tbsCertificate);b.md.update(e.getBytes());b.signature=c.sign(b.md)};b.verify=function(c){var d=!1;if(!b.issued(c)){var d=b.subject,e=Error("The parent certificate did not issue the given child certificate; the child certificate's issuer does not match the parent's subject.");
539 -e.expectedIssuer=c.issuer.attributes;e.actualIssuer=d.attributes;throw e;}e=c.md;if(null===e){if(c.signatureOid in q)switch(q[c.signatureOid]){case "sha1WithRSAEncryption":e=a.md.sha1.create();break;case "md5WithRSAEncryption":e=a.md.md5.create();break;case "sha256WithRSAEncryption":e=a.md.sha256.create();break;case "sha512WithRSAEncryption":e=a.md.sha512.create();break;case "RSASSA-PSS":e=a.md.sha256.create()}if(null===e)throw e=Error("Could not compute certificate digest. Unknown signature OID."),
540 -e.signatureOid=c.signatureOid,e;var g=c.tbsCertificate||r.getTBSCertificate(c),g=h.toDer(g);e.update(g.getBytes())}if(null!==e){var k;switch(c.signatureOid){case q.sha1WithRSAEncryption:k=void 0;break;case q["RSASSA-PSS"]:d=q[c.signatureParameters.mgf.hash.algorithmOid];if(void 0===d||void 0===a.md[d])throw e=Error("Unsupported MGF hash function."),e.oid=c.signatureParameters.mgf.hash.algorithmOid,e.name=d,e;k=q[c.signatureParameters.mgf.algorithmOid];if(void 0===k||void 0===a.mgf[k])throw e=Error("Unsupported MGF function."),
541 -e.oid=c.signatureParameters.mgf.algorithmOid,e.name=k,e;k=a.mgf[k].create(a.md[d].create());d=q[c.signatureParameters.hash.algorithmOid];if(void 0===d||void 0===a.md[d])throw{message:"Unsupported RSASSA-PSS hash function.",oid:c.signatureParameters.hash.algorithmOid,name:d};k=a.pss.create(a.md[d].create(),k,c.signatureParameters.saltLength)}d=b.publicKey.verify(e.digest().getBytes(),c.signature,k)}return d};b.isIssuer=function(a){var c=!1,d=b.issuer;a=a.subject;if(d.hash&&a.hash)c=d.hash===a.hash;
542 -else if(d.attributes.length===a.attributes.length)for(var c=!0,e,g,h=0;c&&h<d.attributes.length;++h)if(e=d.attributes[h],g=a.attributes[h],e.type!==g.type||e.value!==g.value)c=!1;return c};b.issued=function(a){return a.isIssuer(b)};b.generateSubjectKeyIdentifier=function(){return r.getPublicKeyFingerprint(b.publicKey,{type:"RSAPublicKey"})};b.verifySubjectKeyIdentifier=function(){for(var c=q.subjectKeyIdentifier,d=0;d<b.extensions.length;++d){var e=b.extensions[d];if(e.id===c)return c=b.generateSubjectKeyIdentifier().getBytes(),
543 -a.util.hexToBytes(e.subjectKeyIdentifier)===c}return!1};return b};r.certificateFromAsn1=function(b,d){var k={},n=[];if(!h.validate(b,y,k,n))throw k=Error("Cannot read X.509 certificate. ASN.1 object is not an X509v3 Certificate."),k.errors=n,k;if("string"!==typeof k.certSignature){for(var n="\x00",p=0;p<k.certSignature.length;++p)n+=h.toDer(k.certSignature[p]).getBytes();k.certSignature=n}n=h.derToOid(k.publicKeyOid);if(n!==r.oids.rsaEncryption)throw Error("Cannot read public key. OID is not RSA.");
544 -var u=r.createCertificate();u.version=k.certVersion?k.certVersion.charCodeAt(0):0;n=a.util.createBuffer(k.certSerialNumber);u.serialNumber=n.toHex();u.signatureOid=a.asn1.derToOid(k.certSignatureOid);u.signatureParameters=E(u.signatureOid,k.certSignatureParams,!0);u.siginfo.algorithmOid=a.asn1.derToOid(k.certinfoSignatureOid);u.siginfo.parameters=E(u.siginfo.algorithmOid,k.certinfoSignatureParams,!1);n=a.util.createBuffer(k.certSignature);++n.read;u.signature=n.getBytes();n=[];void 0!==k.certValidity1UTCTime&&
545 -n.push(h.utcTimeToDate(k.certValidity1UTCTime));void 0!==k.certValidity2GeneralizedTime&&n.push(h.generalizedTimeToDate(k.certValidity2GeneralizedTime));void 0!==k.certValidity3UTCTime&&n.push(h.utcTimeToDate(k.certValidity3UTCTime));void 0!==k.certValidity4GeneralizedTime&&n.push(h.generalizedTimeToDate(k.certValidity4GeneralizedTime));if(2<n.length)throw Error("Cannot read notBefore/notAfter validity times; more than two times were provided in the certificate.");if(2>n.length)throw Error("Cannot read notBefore/notAfter validity times; they were not provided as either UTCTime or GeneralizedTime.");
546 -u.validity.notBefore=n[0];u.validity.notAfter=n[1];u.tbsCertificate=k.tbsCertificate;if(d){u.md=null;if(u.signatureOid in q)switch(n=q[u.signatureOid],n){case "sha1WithRSAEncryption":u.md=a.md.sha1.create();break;case "md5WithRSAEncryption":u.md=a.md.md5.create();break;case "sha256WithRSAEncryption":u.md=a.md.sha256.create();break;case "sha512WithRSAEncryption":u.md=a.md.sha512.create();break;case "RSASSA-PSS":u.md=a.md.sha256.create()}if(null===u.md)throw k=Error("Could not compute certificate digest. Unknown signature OID."),
547 -k.signatureOid=u.signatureOid,k;n=h.toDer(u.tbsCertificate);u.md.update(n.getBytes())}n=a.md.sha1.create();u.issuer.getField=function(a){return c(u.issuer,a)};u.issuer.addField=function(a){e([a]);u.issuer.attributes.push(a)};u.issuer.attributes=r.RDNAttributesAsArray(k.certIssuer,n);k.certIssuerUniqueId&&(u.issuer.uniqueId=k.certIssuerUniqueId);u.issuer.hash=n.digest().toHex();n=a.md.sha1.create();u.subject.getField=function(a){return c(u.subject,a)};u.subject.addField=function(a){e([a]);u.subject.attributes.push(a)};
548 -u.subject.attributes=r.RDNAttributesAsArray(k.certSubject,n);k.certSubjectUniqueId&&(u.subject.uniqueId=k.certSubjectUniqueId);u.subject.hash=n.digest().toHex();u.extensions=k.certExtensions?r.certificateExtensionsFromAsn1(k.certExtensions):[];u.publicKey=r.publicKeyFromAsn1(k.subjectPublicKeyInfo);return u};r.certificateExtensionsFromAsn1=function(a){for(var b=[],c=0;c<a.value.length;++c)for(var d=a.value[c],e=0;e<d.value.length;++e)b.push(r.certificateExtensionFromAsn1(d.value[e]));return b};r.certificateExtensionFromAsn1=
549 -function(b){var c={};c.id=h.derToOid(b.value[0].value);c.critical=!1;b.value[1].type===h.Type.BOOLEAN?(c.critical=0!==b.value[1].value.charCodeAt(0),c.value=b.value[2].value):c.value=b.value[1].value;if(c.id in q)if(c.name=q[c.id],"keyUsage"===c.name){b=h.fromDer(c.value);var d=0,e=0;1<b.value.length&&(d=b.value.charCodeAt(1),e=2<b.value.length?b.value.charCodeAt(2):0);c.digitalSignature=128===(d&128);c.nonRepudiation=64===(d&64);c.keyEncipherment=32===(d&32);c.dataEncipherment=16===(d&16);c.keyAgreement=
550 -8===(d&8);c.keyCertSign=4===(d&4);c.cRLSign=2===(d&2);c.encipherOnly=1===(d&1);c.decipherOnly=128===(e&128)}else if("basicConstraints"===c.name)b=h.fromDer(c.value),c.cA=0<b.value.length&&b.value[0].type===h.Type.BOOLEAN?0!==b.value[0].value.charCodeAt(0):!1,d=null,0<b.value.length&&b.value[0].type===h.Type.INTEGER?d=b.value[0].value:1<b.value.length&&(d=b.value[1].value),null!==d&&(c.pathLenConstraint=h.derToInteger(d));else if("extKeyUsage"===c.name)for(b=h.fromDer(c.value),d=0;d<b.value.length;++d)e=
551 -h.derToOid(b.value[d].value),e in q?c[q[e]]=!0:c[e]=!0;else if("nsCertType"===c.name)b=h.fromDer(c.value),d=0,1<b.value.length&&(d=b.value.charCodeAt(1)),c.client=128===(d&128),c.server=64===(d&64),c.email=32===(d&32),c.objsign=16===(d&16),c.reserved=8===(d&8),c.sslCA=4===(d&4),c.emailCA=2===(d&2),c.objCA=1===(d&1);else if("subjectAltName"===c.name||"issuerAltName"===c.name)for(c.altNames=[],b=h.fromDer(c.value),e=0;e<b.value.length;++e){var d=b.value[e],g={type:d.type,value:d.value};c.altNames.push(g);
552 -switch(d.type){case 7:g.ip=a.util.bytesToIP(d.value);break;case 8:g.oid=h.derToOid(d.value)}}else"subjectKeyIdentifier"===c.name&&(b=h.fromDer(c.value),c.subjectKeyIdentifier=a.util.bytesToHex(b.value));return c};r.certificationRequestFromAsn1=function(b,d){var k={},n=[];if(!h.validate(b,F,k,n))throw k=Error("Cannot read PKCS#10 certificate request. ASN.1 object is not a PKCS#10 CertificationRequest."),k.errors=n,k;if("string"!==typeof k.csrSignature){for(var n="\x00",p=0;p<k.csrSignature.length;++p)n+=
553 -h.toDer(k.csrSignature[p]).getBytes();k.csrSignature=n}n=h.derToOid(k.publicKeyOid);if(n!==r.oids.rsaEncryption)throw Error("Cannot read public key. OID is not RSA.");var u=r.createCertificationRequest();u.version=k.csrVersion?k.csrVersion.charCodeAt(0):0;u.signatureOid=a.asn1.derToOid(k.csrSignatureOid);u.signatureParameters=E(u.signatureOid,k.csrSignatureParams,!0);u.siginfo.algorithmOid=a.asn1.derToOid(k.csrSignatureOid);u.siginfo.parameters=E(u.siginfo.algorithmOid,k.csrSignatureParams,!1);n=
554 -a.util.createBuffer(k.csrSignature);++n.read;u.signature=n.getBytes();u.certificationRequestInfo=k.certificationRequestInfo;if(d){u.md=null;if(u.signatureOid in q)switch(n=q[u.signatureOid],n){case "sha1WithRSAEncryption":u.md=a.md.sha1.create();break;case "md5WithRSAEncryption":u.md=a.md.md5.create();break;case "sha256WithRSAEncryption":u.md=a.md.sha256.create();break;case "sha512WithRSAEncryption":u.md=a.md.sha512.create();break;case "RSASSA-PSS":u.md=a.md.sha256.create()}if(null===u.md)throw k=
555 -Error("Could not compute certification request digest. Unknown signature OID."),k.signatureOid=u.signatureOid,k;n=h.toDer(u.certificationRequestInfo);u.md.update(n.getBytes())}n=a.md.sha1.create();u.subject.getField=function(a){return c(u.subject,a)};u.subject.addField=function(a){e([a]);u.subject.attributes.push(a)};u.subject.attributes=r.RDNAttributesAsArray(k.certificationRequestInfoSubject,n);u.subject.hash=n.digest().toHex();u.publicKey=r.publicKeyFromAsn1(k.subjectPublicKeyInfo);u.getAttribute=
556 -function(a){return c(u,a)};u.addAttribute=function(a){e([a]);u.attributes.push(a)};u.attributes=r.CRIAttributesAsArray(k.certificationRequestInfoAttributes||[]);return u};r.createCertificationRequest=function(){var b={version:0,signatureOid:null,signature:null,siginfo:{}};b.siginfo.algorithmOid=null;b.subject={};b.subject.getField=function(a){return c(b.subject,a)};b.subject.addField=function(a){e([a]);b.subject.attributes.push(a)};b.subject.attributes=[];b.subject.hash=null;b.publicKey=null;b.attributes=
557 -[];b.getAttribute=function(a){return c(b,a)};b.addAttribute=function(a){e([a]);b.attributes.push(a)};b.md=null;b.setSubject=function(a){e(a);b.subject.attributes=a;b.subject.hash=null};b.setAttributes=function(a){e(a);b.attributes=a};b.sign=function(c,d){b.md=d||a.md.sha1.create();var e=q[b.md.algorithm+"WithRSAEncryption"];if(!e)throw e=Error("Could not compute certification request digest. Unknown message digest algorithm OID."),e.algorithm=b.md.algorithm,e;b.signatureOid=b.siginfo.algorithmOid=
558 -e;b.certificationRequestInfo=r.getCertificationRequestInfo(b);e=h.toDer(b.certificationRequestInfo);b.md.update(e.getBytes());b.signature=c.sign(b.md)};b.verify=function(){var c=!1,d=b.md;if(null===d){if(b.signatureOid in q)switch(q[b.signatureOid]){case "sha1WithRSAEncryption":d=a.md.sha1.create();break;case "md5WithRSAEncryption":d=a.md.md5.create();break;case "sha256WithRSAEncryption":d=a.md.sha256.create();break;case "sha512WithRSAEncryption":d=a.md.sha512.create();break;case "RSASSA-PSS":d=a.md.sha256.create()}if(null===
559 -d)throw d=Error("Could not compute certification request digest. Unknown signature OID."),d.signatureOid=b.signatureOid,d;var e=b.certificationRequestInfo||r.getCertificationRequestInfo(b),e=h.toDer(e);d.update(e.getBytes())}if(null!==d){var g;switch(b.signatureOid){case q["RSASSA-PSS"]:c=q[b.signatureParameters.mgf.hash.algorithmOid];if(void 0===c||void 0===a.md[c])throw d=Error("Unsupported MGF hash function."),d.oid=b.signatureParameters.mgf.hash.algorithmOid,d.name=c,d;g=q[b.signatureParameters.mgf.algorithmOid];
560 -if(void 0===g||void 0===a.mgf[g])throw d=Error("Unsupported MGF function."),d.oid=b.signatureParameters.mgf.algorithmOid,d.name=g,d;g=a.mgf[g].create(a.md[c].create());c=q[b.signatureParameters.hash.algorithmOid];if(void 0===c||void 0===a.md[c])throw d=Error("Unsupported RSASSA-PSS hash function."),d.oid=b.signatureParameters.hash.algorithmOid,d.name=c,d;g=a.pss.create(a.md[c].create(),g,b.signatureParameters.saltLength)}c=b.publicKey.verify(d.digest().getBytes(),b.signature,g)}return c};return b};
561 -r.getTBSCertificate=function(b){var c=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.CONTEXT_SPECIFIC,0,!0,[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(b.version).getBytes())]),h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber)),h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(b.siginfo.algorithmOid).getBytes()),p(b.siginfo.algorithmOid,b.siginfo.parameters)]),d(b.issuer),h.create(h.Class.UNIVERSAL,
562 -h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.UTCTIME,!1,h.dateToUtcTime(b.validity.notBefore)),h.create(h.Class.UNIVERSAL,h.Type.UTCTIME,!1,h.dateToUtcTime(b.validity.notAfter))]),d(b.subject),r.publicKeyToAsn1(b.publicKey)]);b.issuer.uniqueId&&c.value.push(h.create(h.Class.CONTEXT_SPECIFIC,1,!0,[h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,!1,String.fromCharCode(0)+b.issuer.uniqueId)]));b.subject.uniqueId&&c.value.push(h.create(h.Class.CONTEXT_SPECIFIC,2,!0,[h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,
563 -!1,String.fromCharCode(0)+b.subject.uniqueId)]));0<b.extensions.length&&c.value.push(r.certificateExtensionsToAsn1(b.extensions));return c};r.getCertificationRequestInfo=function(a){return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.INTEGER,!1,h.integerToDer(a.version).getBytes()),d(a.subject),r.publicKeyToAsn1(a.publicKey),k(a)])};r.distinguishedNameToAsn1=function(a){return d(a)};r.certificateToAsn1=function(a){var b=a.tbsCertificate||r.getTBSCertificate(a);
564 -return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[b,h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(a.signatureOid).getBytes()),p(a.signatureOid,a.signatureParameters)]),h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,!1,String.fromCharCode(0)+a.signature)])};r.certificateExtensionsToAsn1=function(a){var b=h.create(h.Class.CONTEXT_SPECIFIC,3,!0,[]),c=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]);b.value.push(c);for(var d=0;d<a.length;++d)c.value.push(r.certificateExtensionToAsn1(a[d]));
565 -return b};r.certificateExtensionToAsn1=function(a){var b=h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[]);b.value.push(h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(a.id).getBytes()));a.critical&&b.value.push(h.create(h.Class.UNIVERSAL,h.Type.BOOLEAN,!1,String.fromCharCode(255)));var c=a.value;"string"!==typeof a.value&&(c=h.toDer(c).getBytes());b.value.push(h.create(h.Class.UNIVERSAL,h.Type.OCTETSTRING,!1,c));return b};r.certificationRequestToAsn1=function(a){var b=a.certificationRequestInfo||
566 -r.getCertificationRequestInfo(a);return h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[b,h.create(h.Class.UNIVERSAL,h.Type.SEQUENCE,!0,[h.create(h.Class.UNIVERSAL,h.Type.OID,!1,h.oidToDer(a.signatureOid).getBytes()),p(a.signatureOid,a.signatureParameters)]),h.create(h.Class.UNIVERSAL,h.Type.BITSTRING,!1,String.fromCharCode(0)+a.signature)])};r.createCaStore=function(b){function c(b){if(!b.hash){var g=a.md.sha1.create();b.attributes=r.RDNAttributesAsArray(d(b),g);b.hash=g.digest().toHex()}return e.certs[b.hash]||
567 -null}var e={certs:{},getIssuer:function(a){return c(a.issuer)},addCertificate:function(b){"string"===typeof b&&(b=a.pki.certificateFromPem(b));if(!b.subject.hash){var c=a.md.sha1.create();b.subject.attributes=r.RDNAttributesAsArray(d(b.subject),c);b.subject.hash=c.digest().toHex()}b.subject.hash in e.certs?(c=e.certs[b.subject.hash],a.util.isArray(c)||(c=[c]),c.push(b)):e.certs[b.subject.hash]=b},hasCertificate:function(b){var d=c(b.subject);if(!d)return!1;a.util.isArray(d)||(d=[d]);b=h.toDer(r.certificateToAsn1(b)).getBytes();
568 -for(var e=0;e<d.length;++e){var g=h.toDer(r.certificateToAsn1(d[e])).getBytes();if(b===g)return!0}return!1}};if(b)for(var g=0;g<b.length;++g)e.addCertificate(b[g]);return e};r.certificateError={bad_certificate:"forge.pki.BadCertificate",unsupported_certificate:"forge.pki.UnsupportedCertificate",certificate_revoked:"forge.pki.CertificateRevoked",certificate_expired:"forge.pki.CertificateExpired",certificate_unknown:"forge.pki.CertificateUnknown",unknown_ca:"forge.pki.UnknownCertificateAuthority"};
569 -r.verifyCertificateChain=function(b,c,d){c=c.slice(0);var e=c.slice(0),g=new Date,h=!0,k=null,l=0;do{var n=c.shift(),q=null,p=!1;if(g<n.validity.notBefore||g>n.validity.notAfter)k={message:"Certificate is not valid yet or has expired.",error:r.certificateError.certificate_expired,notBefore:n.validity.notBefore,notAfter:n.validity.notAfter,now:g};if(null===k){q=c[0]||b.getIssuer(n);null===q&&n.isIssuer(n)&&(p=!0,q=n);if(q){var v=q;a.util.isArray(v)||(v=[v]);for(var w=!1;!w&&0<v.length;){q=v.shift();
570 -try{w=q.verify(n)}catch(x){}}w||(k={message:"Certificate signature is invalid.",error:r.certificateError.bad_certificate})}null!==k||q&&!p||b.hasCertificate(n)||(k={message:"Certificate is not trusted.",error:r.certificateError.unknown_ca})}null===k&&q&&!n.isIssuer(q)&&(k={message:"Certificate issuer is invalid.",error:r.certificateError.bad_certificate});if(null===k)for(v={keyUsage:!0,basicConstraints:!0},w=0;null===k&&w<n.extensions.length;++w){var y=n.extensions[w];!y.critical||y.name in v||(k=
571 -{message:"Certificate has an unsupported critical extension.",error:r.certificateError.unsupported_certificate})}null!==k||h&&(0!==c.length||q&&!p)||(h=n.getExtension("basicConstraints"),n=n.getExtension("keyUsage"),null!==n&&(n.keyCertSign&&null!==h||(k={message:"Certificate keyUsage or basicConstraints conflict or indicate that the certificate is not a CA. If the certificate is the only one in the chain or isn't the first then the certificate must be a valid CA.",error:r.certificateError.bad_certificate})),
572 -null!==k||null===h||h.cA||(k={message:"Certificate basicConstraints indicates the certificate is not a CA.",error:r.certificateError.bad_certificate}),null===k&&null!==n&&"pathLenConstraint"in h&&l-1>h.pathLenConstraint&&(k={message:"Certificate basicConstraints pathLenConstraint violated.",error:r.certificateError.bad_certificate}));n=null===k?!0:k.error;h=d?d(n,l,e):n;if(!0===h)k=null;else{!0===n&&(k={message:"The application rejected the certificate.",error:r.certificateError.bad_certificate});
573 -if(h||0===h)"object"!==typeof h||a.util.isArray(h)?"string"===typeof h&&(k.error=h):(h.message&&(k.message=h.message),h.error&&(k.error=h.error));throw k;}h=!1;++l}while(0<c.length);return!0}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.x509)return c.x509;
574 -c.defined.x509=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pki}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/x509","require module ./aes ./asn1 ./des ./md ./mgf ./oids ./pem ./pss ./rsa ./util".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d,e){for(var g=
575 -[],h=0;h<a.length;h++)for(var m=0;m<a[h].safeBags.length;m++){var k=a[h].safeBags[m];if(void 0===e||k.type===e)null===b?g.push(k):void 0!==k.attributes[b]&&0<=k.attributes[b].indexOf(d)&&g.push(k)}return g}function d(b){if(b.composed||b.constructed){for(var c=a.util.createBuffer(),e=0;e<b.value.length;++e)c.putBytes(b.value[e].value);b.composed=b.constructed=!1;b.value=c.getBytes()}return b}function e(b,c,g,l){c=k.fromDer(c,g);if(c.tagClass!==k.Class.UNIVERSAL||c.type!==k.Type.SEQUENCE||!0!==c.constructed)throw Error("PKCS#12 AuthenticatedSafe expected to be a SEQUENCE OF ContentInfo");
576 -for(var p=0;p<c.value.length;p++){var r={},x=[];if(!k.validate(c.value[p],q,r,x))throw b=Error("Cannot read ContentInfo."),b.errors=x,b;var x={encrypted:!1},u=null,u=r.content.value[0];switch(k.derToOid(r.contentType)){case h.oids.data:if(u.tagClass!==k.Class.UNIVERSAL||u.type!==k.Type.OCTETSTRING)throw Error("PKCS#12 SafeContents Data is not an OCTET STRING.");u=d(u).value;break;case h.oids.encryptedData:var y=l,r={},B=[];if(!k.validate(u,a.pkcs7.asn1.encryptedDataValidator,r,B))throw b=Error("Cannot read EncryptedContentInfo."),
577 -b.errors=B,b;u=k.derToOid(r.contentType);if(u!==h.oids.data)throw b=Error("PKCS#12 EncryptedContentInfo ContentType is not Data."),b.oid=u,b;u=k.derToOid(r.encAlgorithm);u=h.pbe.getCipher(u,r.encParameter,y);r=d(r.encryptedContentAsn1);r=a.util.createBuffer(r.value);u.update(r);if(!u.finish())throw Error("Failed to decrypt PKCS#12 SafeContents.");u=u.output.getBytes();x.encrypted=!0;break;default:throw b=Error("Unsupported PKCS#12 contentType."),b.contentType=k.derToOid(r.contentType),b;}x.safeBags=
578 -n(u,g,l);b.safeContents.push(x)}}function n(a,b,c){if(!b&&0===a.length)return[];a=k.fromDer(a,b);if(a.tagClass!==k.Class.UNIVERSAL||a.type!==k.Type.SEQUENCE||!0!==a.constructed)throw Error("PKCS#12 SafeContents expected to be a SEQUENCE OF SafeBag.");for(var d=[],e=0;e<a.value.length;e++){var g={},m=[];if(!k.validate(a.value[e],B,g,m))throw a=Error("Cannot read SafeBag."),a.errors=m,a;var l={type:k.derToOid(g.bagId),attributes:p(g.bagAttributes)};d.push(l);var q,r,v=g.bagValue.value[0];switch(l.type){case h.oids.pkcs8ShroudedKeyBag:if(v=
579 -h.decryptPrivateKeyInfo(v,c),null===v)throw Error("Unable to decrypt PKCS#8 ShroudedKeyBag, wrong password?");case h.oids.keyBag:try{l.key=h.privateKeyFromAsn1(v)}catch(w){l.key=null,l.asn1=v}continue;case h.oids.certBag:q=I;r=function(){if(k.derToOid(g.certId)!==h.oids.x509Certificate){var a=Error("Unsupported certificate type, only X.509 supported.");a.oid=k.derToOid(g.certId);throw a;}a=k.fromDer(g.cert,b);try{l.cert=h.certificateFromAsn1(a,!0)}catch(c){l.cert=null,l.asn1=a}};break;default:throw a=
580 -Error("Unsupported PKCS#12 SafeBag type."),a.oid=l.type,a;}if(void 0!==q&&!k.validate(v,q,g,m))throw a=Error("Cannot read PKCS#12 "+q.name),a.errors=m,a;r()}return d}function p(a){var b={};if(void 0!==a)for(var c=0;c<a.length;++c){var d={},e=[];if(!k.validate(a[c],y,d,e))throw a=Error("Cannot read PKCS#12 BagAttribute."),a.errors=e,a;e=k.derToOid(d.oid);if(void 0!==h.oids[e]){b[h.oids[e]]=[];for(var g=0;g<d.values.length;++g)b[h.oids[e]].push(d.values[g].value)}}return b}var k=a.asn1,h=a.pki,r=a.pkcs12=
581 -a.pkcs12||{},q={name:"ContentInfo",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"ContentInfo.contentType",tagClass:k.Class.UNIVERSAL,type:k.Type.OID,constructed:!1,capture:"contentType"},{name:"ContentInfo.content",tagClass:k.Class.CONTEXT_SPECIFIC,constructed:!0,captureAsn1:"content"}]},C={name:"PFX",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.version",tagClass:k.Class.UNIVERSAL,type:k.Type.INTEGER,constructed:!1,capture:"version"},
582 -q,{name:"PFX.macData",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,optional:!0,captureAsn1:"mac",value:[{name:"PFX.macData.mac",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.macData.mac.digestAlgorithm",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.macData.mac.digestAlgorithm.algorithm",tagClass:k.Class.UNIVERSAL,type:k.Type.OID,constructed:!1,capture:"macAlgorithm"},{name:"PFX.macData.mac.digestAlgorithm.parameters",
583 -tagClass:k.Class.UNIVERSAL,captureAsn1:"macAlgorithmParameters"}]},{name:"PFX.macData.mac.digest",tagClass:k.Class.UNIVERSAL,type:k.Type.OCTETSTRING,constructed:!1,capture:"macDigest"}]},{name:"PFX.macData.macSalt",tagClass:k.Class.UNIVERSAL,type:k.Type.OCTETSTRING,constructed:!1,capture:"macSalt"},{name:"PFX.macData.iterations",tagClass:k.Class.UNIVERSAL,type:k.Type.INTEGER,constructed:!1,optional:!0,capture:"macIterations"}]}]},B={name:"SafeBag",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,
584 -value:[{name:"SafeBag.bagId",tagClass:k.Class.UNIVERSAL,type:k.Type.OID,constructed:!1,capture:"bagId"},{name:"SafeBag.bagValue",tagClass:k.Class.CONTEXT_SPECIFIC,constructed:!0,captureAsn1:"bagValue"},{name:"SafeBag.bagAttributes",tagClass:k.Class.UNIVERSAL,type:k.Type.SET,constructed:!0,optional:!0,capture:"bagAttributes"}]},y={name:"Attribute",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"Attribute.attrId",tagClass:k.Class.UNIVERSAL,type:k.Type.OID,constructed:!1,
585 -capture:"oid"},{name:"Attribute.attrValues",tagClass:k.Class.UNIVERSAL,type:k.Type.SET,constructed:!0,capture:"values"}]},I={name:"CertBag",tagClass:k.Class.UNIVERSAL,type:k.Type.SEQUENCE,constructed:!0,value:[{name:"CertBag.certId",tagClass:k.Class.UNIVERSAL,type:k.Type.OID,constructed:!1,capture:"certId"},{name:"CertBag.certValue",tagClass:k.Class.CONTEXT_SPECIFIC,constructed:!0,value:[{name:"CertBag.certValue[0]",tagClass:k.Class.UNIVERSAL,type:k.Class.OCTETSTRING,constructed:!1,capture:"cert"}]}]};
586 -r.pkcs12FromAsn1=function(b,n,q){"string"===typeof n?(q=n,n=!0):void 0===n&&(n=!0);var p={};if(!k.validate(b,C,p,[]))throw n=Error("Cannot read PKCS#12 PFX. ASN.1 object is not an PKCS#12 PFX."),n.errors=n,n;var v={version:p.version.charCodeAt(0),safeContents:[],getBags:function(b){var d={},e;"localKeyId"in b?e=b.localKeyId:"localKeyIdHex"in b&&(e=a.util.hexToBytes(b.localKeyIdHex));void 0===e&&!("friendlyName"in b)&&"bagType"in b&&(d[b.bagType]=c(v.safeContents,null,null,b.bagType));void 0!==e&&
587 -(d.localKeyId=c(v.safeContents,"localKeyId",e,b.bagType));"friendlyName"in b&&(d.friendlyName=c(v.safeContents,"friendlyName",b.friendlyName,b.bagType));return d},getBagsByFriendlyName:function(a,b){return c(v.safeContents,"friendlyName",a,b)},getBagsByLocalKeyId:function(a,b){return c(v.safeContents,"localKeyId",a,b)}};if(3!==p.version.charCodeAt(0))throw n=Error("PKCS#12 PFX of version other than 3 not supported."),n.version=p.version.charCodeAt(0),n;if(k.derToOid(p.contentType)!==h.oids.data)throw n=
588 -Error("Only PKCS#12 PFX in password integrity mode supported."),n.oid=k.derToOid(p.contentType),n;b=p.content.value[0];if(b.tagClass!==k.Class.UNIVERSAL||b.type!==k.Type.OCTETSTRING)throw Error("PKCS#12 authSafe content data is not an OCTET STRING.");b=d(b);if(p.mac){var x=null,y=0,u=k.derToOid(p.macAlgorithm);switch(u){case h.oids.sha1:x=a.md.sha1.create();y=20;break;case h.oids.sha256:x=a.md.sha256.create();y=32;break;case h.oids.sha384:x=a.md.sha384.create();y=48;break;case h.oids.sha512:x=a.md.sha512.create();
589 -y=64;break;case h.oids.md5:x=a.md.md5.create(),y=16}if(null===x)throw Error("PKCS#12 uses unsupported MAC algorithm: "+u);var u=new a.util.ByteBuffer(p.macSalt),B="macIterations"in p?parseInt(a.util.bytesToHex(p.macIterations),16):1,y=r.generateKey(q,u,3,B,y,x),u=a.hmac.create();u.start(x,y);u.update(b.value);if(u.getMac().getBytes()!==p.macDigest)throw Error("PKCS#12 MAC could not be verified. Invalid password?");}e(v,b.value,n,q);return v};r.toPkcs12Asn1=function(b,c,d,e){e=e||{};e.saltSize=e.saltSize||
590 -8;e.count=e.count||2048;e.algorithm=e.algorithm||e.encAlgorithm||"aes128";"useMac"in e||(e.useMac=!0);"localKeyId"in e||(e.localKeyId=null);"generateLocalKeyId"in e||(e.generateLocalKeyId=!0);var g=e.localKeyId,l;if(null!==g)g=a.util.hexToBytes(g);else if(e.generateLocalKeyId)if(c){var n=a.util.isArray(c)?c[0]:c;"string"===typeof n&&(n=h.certificateFromPem(n));g=a.md.sha1.create();g.update(k.toDer(h.certificateToAsn1(n)).getBytes());g=g.digest().getBytes()}else g=a.random.getBytes(20);n=[];null!==
591 -g&&n.push(k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.localKeyId).getBytes()),k.create(k.Class.UNIVERSAL,k.Type.SET,!0,[k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,g)])]));"friendlyName"in e&&n.push(k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.friendlyName).getBytes()),k.create(k.Class.UNIVERSAL,k.Type.SET,!0,[k.create(k.Class.UNIVERSAL,k.Type.BMPSTRING,!1,e.friendlyName)])]));
592 -0<n.length&&(l=k.create(k.Class.UNIVERSAL,k.Type.SET,!0,n));g=[];n=[];null!==c&&(n=a.util.isArray(c)?c:[c]);for(var q=[],p=0;p<n.length;++p){c=n[p];"string"===typeof c&&(c=h.certificateFromPem(c));var v=0===p?l:void 0;c=h.certificateToAsn1(c);c=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.certBag).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.x509Certificate).getBytes()),
593 -k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,k.toDer(c).getBytes())])])]),v]);q.push(c)}0<q.length&&(c=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,q),c=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.data).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,k.toDer(c).getBytes())])]),g.push(c));c=null;null!==b&&(b=h.wrapRsaPrivateKey(h.privateKeyToAsn1(b)),
594 -c=null===d?k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.keyBag).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[b]),l]):k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.pkcs8ShroudedKeyBag).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[h.encryptPrivateKeyInfo(b,d,e)]),l]),b=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[c]),b=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,
595 -[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.data).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,k.toDer(b).getBytes())])]),g.push(b));l=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,g);var w;e.useMac&&(g=a.md.sha1.create(),w=new a.util.ByteBuffer(a.random.getBytes(e.saltSize)),e=e.count,b=r.generateKey(d,w,3,e,20),d=a.hmac.create(),d.start(g,b),d.update(k.toDer(l).getBytes()),d=d.getMac(),w=k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,
596 -!0,[k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.sha1).getBytes()),k.create(k.Class.UNIVERSAL,k.Type.NULL,!1,"")]),k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,d.getBytes())]),k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,w.getBytes()),k.create(k.Class.UNIVERSAL,k.Type.INTEGER,!1,k.integerToDer(e).getBytes())]));return k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,
597 -k.Type.INTEGER,!1,k.integerToDer(3).getBytes()),k.create(k.Class.UNIVERSAL,k.Type.SEQUENCE,!0,[k.create(k.Class.UNIVERSAL,k.Type.OID,!1,k.oidToDer(h.oids.data).getBytes()),k.create(k.Class.CONTEXT_SPECIFIC,0,!0,[k.create(k.Class.UNIVERSAL,k.Type.OCTETSTRING,!1,k.toDer(l).getBytes())])]),w])};r.generateKey=a.pbe.generatePkcs12Key}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,
598 -p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs12)return c.pkcs12;c.defined.pkcs12=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pkcs12}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs12","require module ./asn1 ./hmac ./oids ./pkcs7asn1 ./pbe ./random ./rsa ./sha1 ./util ./x509".split(" "),
599 -function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1,d=a.pki=a.pki||{};d.pemToDer=function(b){b=a.pem.decode(b)[0];if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert PEM to DER; PEM is encrypted.");return a.util.createBuffer(b.body)};d.privateKeyFromPem=function(b){b=a.pem.decode(b)[0];if("PRIVATE KEY"!==b.type&&"RSA PRIVATE KEY"!==b.type){var e=Error('Could not convert private key from PEM; PEM header type is not "PRIVATE KEY" or "RSA PRIVATE KEY".');
600 -e.headerType=b.type;throw e;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert private key from PEM; PEM is encrypted.");b=c.fromDer(b.body);return d.privateKeyFromAsn1(b)};d.privateKeyToPem=function(b,e){var n={type:"RSA PRIVATE KEY",body:c.toDer(d.privateKeyToAsn1(b)).getBytes()};return a.pem.encode(n,{maxline:e})};d.privateKeyInfoToPem=function(b,d){var e={type:"PRIVATE KEY",body:c.toDer(b).getBytes()};return a.pem.encode(e,{maxline:d})}}if("function"!==typeof a)if("object"===
601 -typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pki)return c.pki;c.defined.pki=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pki}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,
602 -Array.prototype.slice.call(arguments,0))};a("js/pki","require module ./asn1 ./oids ./pbe ./pem ./pbkdf2 ./pkcs12 ./pss ./rsa ./util ./x509".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=function(b,c,d,e){var g=a.util.createBuffer(),h=b.length>>1,k=h+(b.length&1),l=b.substr(0,k),k=b.substr(h,k);b=a.util.createBuffer();h=a.hmac.create();d=c+d;var n=Math.ceil(e/16);c=Math.ceil(e/20);h.start("MD5",l);l=a.util.createBuffer();b.putBytes(d);
603 -for(var q=0;q<n;++q)h.start(null,null),h.update(b.getBytes()),b.putBuffer(h.digest()),h.start(null,null),h.update(b.bytes()+d),l.putBuffer(h.digest());h.start("SHA1",k);k=a.util.createBuffer();b.clear();b.putBytes(d);for(q=0;q<c;++q)h.start(null,null),h.update(b.getBytes()),b.putBuffer(h.digest()),h.start(null,null),h.update(b.bytes()+d),k.putBuffer(h.digest());g.putBytes(a.util.xorBytes(l.getBytes(),k.getBytes(),e));return g},d=function(b,c,d){d=!1;try{var e=b.deflate(c.fragment.getBytes());c.fragment=
604 -a.util.createBuffer(e);c.length=e.length;d=!0}catch(g){}return d},e=function(b,c,d){d=!1;try{var e=b.inflate(c.fragment.getBytes());c.fragment=a.util.createBuffer(e);c.length=e.length;d=!0}catch(g){}return d},n=function(b,c){var d=0;switch(c){case 1:d=b.getByte();break;case 2:d=b.getInt16();break;case 3:d=b.getInt24();break;case 4:d=b.getInt32()}return a.util.createBuffer(b.getBytes(d))},p=function(a,b,c){a.putInt(c.length(),b<<3);a.putBuffer(c)},k={Versions:{TLS_1_0:{major:3,minor:1},TLS_1_1:{major:3,
605 -minor:2},TLS_1_2:{major:3,minor:3}}};k.SupportedVersions=[k.Versions.TLS_1_1,k.Versions.TLS_1_0];k.Version=k.SupportedVersions[0];k.MaxFragment=15360;k.ConnectionEnd={server:0,client:1};k.PRFAlgorithm={tls_prf_sha256:0};k.BulkCipherAlgorithm={none:null,rc4:0,des3:1,aes:2};k.CipherType={stream:0,block:1,aead:2};k.MACAlgorithm={none:null,hmac_md5:0,hmac_sha1:1,hmac_sha256:2,hmac_sha384:3,hmac_sha512:4};k.CompressionMethod={none:0,deflate:1};k.ContentType={change_cipher_spec:20,alert:21,handshake:22,
606 -application_data:23,heartbeat:24};k.HandshakeType={hello_request:0,client_hello:1,server_hello:2,certificate:11,server_key_exchange:12,certificate_request:13,server_hello_done:14,certificate_verify:15,client_key_exchange:16,finished:20};k.Alert={};k.Alert.Level={warning:1,fatal:2};k.Alert.Description={close_notify:0,unexpected_message:10,bad_record_mac:20,decryption_failed:21,record_overflow:22,decompression_failure:30,handshake_failure:40,bad_certificate:42,unsupported_certificate:43,certificate_revoked:44,
607 -certificate_expired:45,certificate_unknown:46,illegal_parameter:47,unknown_ca:48,access_denied:49,decode_error:50,decrypt_error:51,export_restriction:60,protocol_version:70,insufficient_security:71,internal_error:80,user_canceled:90,no_renegotiation:100};k.HeartbeatMessageType={heartbeat_request:1,heartbeat_response:2};k.CipherSuites={};k.getCipherSuite=function(a){var b=null,c;for(c in k.CipherSuites){var d=k.CipherSuites[c];if(d.id[0]===a.charCodeAt(0)&&d.id[1]===a.charCodeAt(1)){b=d;break}}return b};
608 -k.handleUnexpected=function(a,b){(a.open||a.entity!==k.ConnectionEnd.client)&&a.error(a,{message:"Unexpected message. Received TLS record out of order.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.unexpected_message}})};k.handleHelloRequest=function(a,b,c){!a.handshaking&&0<a.handshakes&&(k.queue(a,k.createAlert(a,{level:k.Alert.Level.warning,description:k.Alert.Description.no_renegotiation})),k.flush(a));a.process()};k.parseHelloMessage=function(b,c,d){var e=null,g=b.entity===
609 -k.ConnectionEnd.client;if(38>d)b.error(b,{message:g?"Invalid ServerHello message. Message too short.":"Invalid ClientHello message. Message too short.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.illegal_parameter}});else{c=c.fragment;var h=c.length(),e={version:{major:c.getByte(),minor:c.getByte()},random:a.util.createBuffer(c.getBytes(32)),session_id:n(c,1),extensions:[]};g?(e.cipher_suite=c.getBytes(2),e.compression_method=c.getByte()):(e.cipher_suites=n(c,2),e.compression_methods=
610 -n(c,1));h=d-(h-c.length());if(0<h){for(d=n(c,2);0<d.length();)e.extensions.push({type:[d.getByte(),d.getByte()],data:n(d,2)});if(!g)for(d=0;d<e.extensions.length;++d)if(c=e.extensions[d],0===c.type[0]&&0===c.type[1])for(c=n(c.data,2);0<c.length()&&0===c.getByte();)b.session.extensions.server_name.serverNameList.push(n(c,2).getBytes())}if(b.session.version&&(e.version.major!==b.session.version.major||e.version.minor!==b.session.version.minor))return b.error(b,{message:"TLS version change is disallowed during renegotiation.",
611 -send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.protocol_version}});if(g)b.session.cipherSuite=k.getCipherSuite(e.cipher_suite);else for(d=a.util.createBuffer(e.cipher_suites.bytes());0<d.length()&&(b.session.cipherSuite=k.getCipherSuite(d.getBytes(2)),null===b.session.cipherSuite););if(null===b.session.cipherSuite)return b.error(b,{message:"No cipher suites in common.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.handshake_failure},cipherSuite:a.util.bytesToHex(e.cipher_suite)});
612 -b.session.compressionMethod=g?e.compression_method:k.CompressionMethod.none}return e};k.createSecurityParameters=function(a,b){var c=a.entity===k.ConnectionEnd.client,d=b.random.bytes(),e=c?a.session.sp.client_random:d,c=c?d:k.createRandom().getBytes();a.session.sp={entity:a.entity,prf_algorithm:k.PRFAlgorithm.tls_prf_sha256,bulk_cipher_algorithm:null,cipher_type:null,enc_key_length:null,block_length:null,fixed_iv_length:null,record_iv_length:null,mac_algorithm:null,mac_length:null,mac_key_length:null,
613 -compression_algorithm:a.session.compressionMethod,pre_master_secret:null,master_secret:null,client_random:e,server_random:c}};k.handleServerHello=function(a,b,c){b=k.parseHelloMessage(a,b,c);if(!a.fail){if(b.version.minor<=a.version.minor)a.version.minor=b.version.minor;else return a.error(a,{message:"Incompatible TLS version.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.protocol_version}});a.session.version=a.version;c=b.session_id.bytes();0<c.length&&c===a.session.id?
614 -(a.expect=B,a.session.resuming=!0,a.session.sp.server_random=b.random.bytes()):(a.expect=h,a.session.resuming=!1,k.createSecurityParameters(a,b));a.session.id=c;a.process()}};k.handleClientHello=function(b,c,d){c=k.parseHelloMessage(b,c,d);if(!b.fail){var e=c.session_id.bytes();d=null;if(b.sessionCache)if(d=b.sessionCache.getSession(e),null===d)e="";else if(d.version.major!==c.version.major||d.version.minor>c.version.minor)d=null,e="";0===e.length&&(e=a.random.getBytes(32));b.session.id=e;b.session.clientHelloVersion=
615 -c.version;b.session.sp={};if(d)b.version=b.session.version=d.version,b.session.sp=d.sp;else{for(var g,e=1;e<k.SupportedVersions.length&&!(g=k.SupportedVersions[e],g.minor<=c.version.minor);++e);b.version={major:g.major,minor:g.minor};b.session.version=b.version}null!==d?(b.expect=A,b.session.resuming=!0,b.session.sp.client_random=c.random.bytes()):(b.expect=!1!==b.verifyClient?E:z,b.session.resuming=!1,k.createSecurityParameters(b,c));b.open=!0;k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,
616 -data:k.createServerHello(b)}));b.session.resuming?(k.queue(b,k.createRecord(b,{type:k.ContentType.change_cipher_spec,data:k.createChangeCipherSpec()})),b.state.pending=k.createConnectionState(b),b.state.current.write=b.state.pending.write,k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createFinished(b)}))):(k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createCertificate(b)})),b.fail||(k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createServerKeyExchange(b)})),
617 -!1!==b.verifyClient&&k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createCertificateRequest(b)})),k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createServerHelloDone(b)}))));k.flush(b);b.process()}};k.handleCertificate=function(b,c,d){if(3>d)return b.error(b,{message:"Invalid Certificate message. Message too short.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.illegal_parameter}});d=n(c.fragment,3);var e,g;c=[];try{for(;0<d.length();)e=
618 -n(d,3),g=a.asn1.fromDer(e),e=a.pki.certificateFromAsn1(g,!0),c.push(e)}catch(h){return b.error(b,{message:"Could not parse certificate list.",cause:h,send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.bad_certificate}})}e=b.entity===k.ConnectionEnd.client;!e&&!0!==b.verifyClient||0!==c.length?0===c.length?b.expect=e?r:z:(e?b.session.serverCertificate=c[0]:b.session.clientCertificate=c[0],k.verifyCertificateChain(b,c)&&(b.expect=e?r:z)):b.error(b,{message:e?"No server certificate provided.":
619 -"No client certificate provided.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.illegal_parameter}});b.process()};k.handleServerKeyExchange=function(a,b,c){if(0<c)return a.error(a,{message:"Invalid key parameters. Only RSA is supported.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.unsupported_certificate}});a.expect=q;a.process()};k.handleClientKeyExchange=function(b,c,d){if(48>d)return b.error(b,{message:"Invalid key parameters. Only RSA is supported.",
620 -send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.unsupported_certificate}});c=n(c.fragment,2).getBytes();d=null;if(b.getPrivateKey)try{d=b.getPrivateKey(b,b.session.serverCertificate),d=a.pki.privateKeyFromPem(d)}catch(e){b.error(b,{message:"Could not get private key.",cause:e,send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}})}if(null===d)return b.error(b,{message:"No private key set.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}});
621 -try{var g=b.session.sp;g.pre_master_secret=d.decrypt(c);var h=b.session.clientHelloVersion;if(h.major!==g.pre_master_secret.charCodeAt(0)||h.minor!==g.pre_master_secret.charCodeAt(1))throw Error("TLS version rollback attack detected.");}catch(e){g.pre_master_secret=a.random.getBytes(48)}b.expect=A;null!==b.session.clientCertificate&&(b.expect=D);b.process()};k.handleCertificateRequest=function(a,b,c){if(3>c)return a.error(a,{message:"Invalid CertificateRequest. Message too short.",send:!0,alert:{level:k.Alert.Level.fatal,
622 -description:k.Alert.Description.illegal_parameter}});b=b.fragment;b={certificate_types:n(b,1),certificate_authorities:n(b,2)};a.session.certificateRequest=b;a.expect=C;a.process()};k.handleCertificateVerify=function(b,c,d){if(2>d)return b.error(b,{message:"Invalid CertificateVerify. Message too short.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.illegal_parameter}});d=c.fragment;d.read-=4;c=d.bytes();d.read+=4;d=n(d,2).getBytes();var e=a.util.createBuffer();e.putBuffer(b.session.md5.digest());
623 -e.putBuffer(b.session.sha1.digest());e=e.getBytes();try{if(!b.session.clientCertificate.publicKey.verify(e,d,"NONE"))throw Error("CertificateVerify signature does not match.");b.session.md5.update(c);b.session.sha1.update(c)}catch(g){return b.error(b,{message:"Bad signature in CertificateVerify.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.handshake_failure}})}b.expect=A;b.process()};k.handleServerHelloDone=function(b,c,d){if(0<d)return b.error(b,{message:"Invalid ServerHelloDone message. Invalid length.",
624 -send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.record_overflow}});if(null===b.serverCertificate&&(c={message:"No server certificate provided. Not enough security.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.insufficient_security}},d=b.verify(b,c.alert.description,0,[]),!0!==d)){if(d||0===d)"object"!==typeof d||a.util.isArray(d)?"number"===typeof d&&(c.alert.description=d):(d.message&&(c.message=d.message),d.alert&&(c.alert.description=d.alert));
625 -return b.error(b,c)}null!==b.session.certificateRequest&&(c=k.createRecord(b,{type:k.ContentType.handshake,data:k.createCertificate(b)}),k.queue(b,c));c=k.createRecord(b,{type:k.ContentType.handshake,data:k.createClientKeyExchange(b)});k.queue(b,c);b.expect=F;c=function(a,b){null!==a.session.certificateRequest&&null!==a.session.clientCertificate&&k.queue(a,k.createRecord(a,{type:k.ContentType.handshake,data:k.createCertificateVerify(a,b)}));k.queue(a,k.createRecord(a,{type:k.ContentType.change_cipher_spec,
626 -data:k.createChangeCipherSpec()}));a.state.pending=k.createConnectionState(a);a.state.current.write=a.state.pending.write;k.queue(a,k.createRecord(a,{type:k.ContentType.handshake,data:k.createFinished(a)}));a.expect=B;k.flush(a);a.process()};if(null===b.session.certificateRequest||null===b.session.clientCertificate)return c(b,null);k.getClientSignature(b,c)};k.handleChangeCipherSpec=function(a,b){if(1!==b.fragment.getByte())return a.error(a,{message:"Invalid ChangeCipherSpec message received.",send:!0,
627 -alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.illegal_parameter}});var c=a.entity===k.ConnectionEnd.client;if(a.session.resuming&&c||!a.session.resuming&&!c)a.state.pending=k.createConnectionState(a);a.state.current.read=a.state.pending.read;if(!a.session.resuming&&c||a.session.resuming&&!c)a.state.pending=null;a.expect=c?y:G;a.process()};k.handleFinished=function(b,d,e){e=d.fragment;e.read-=4;var h=e.bytes();e.read+=4;d=d.fragment.getBytes();e=a.util.createBuffer();e.putBuffer(b.session.md5.digest());
628 -e.putBuffer(b.session.sha1.digest());var l=b.entity===k.ConnectionEnd.client;e=c(b.session.sp.master_secret,l?"server finished":"client finished",e.getBytes(),12);if(e.getBytes()!==d)return b.error(b,{message:"Invalid verify_data in Finished message.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.decrypt_error}});b.session.md5.update(h);b.session.sha1.update(h);if(b.session.resuming&&l||!b.session.resuming&&!l)k.queue(b,k.createRecord(b,{type:k.ContentType.change_cipher_spec,
629 -data:k.createChangeCipherSpec()})),b.state.current.write=b.state.pending.write,b.state.pending=null,k.queue(b,k.createRecord(b,{type:k.ContentType.handshake,data:k.createFinished(b)}));b.expect=l?I:L;b.handshaking=!1;++b.handshakes;b.peerCertificate=l?b.session.serverCertificate:b.session.clientCertificate;k.flush(b);b.isConnected=!0;b.connected(b);b.process()};k.handleAlert=function(a,b){var c=b.fragment,c={level:c.getByte(),description:c.getByte()},d;switch(c.description){case k.Alert.Description.close_notify:d=
630 -"Connection closed.";break;case k.Alert.Description.unexpected_message:d="Unexpected message.";break;case k.Alert.Description.bad_record_mac:d="Bad record MAC.";break;case k.Alert.Description.decryption_failed:d="Decryption failed.";break;case k.Alert.Description.record_overflow:d="Record overflow.";break;case k.Alert.Description.decompression_failure:d="Decompression failed.";break;case k.Alert.Description.handshake_failure:d="Handshake failure.";break;case k.Alert.Description.bad_certificate:d=
631 -"Bad certificate.";break;case k.Alert.Description.unsupported_certificate:d="Unsupported certificate.";break;case k.Alert.Description.certificate_revoked:d="Certificate revoked.";break;case k.Alert.Description.certificate_expired:d="Certificate expired.";break;case k.Alert.Description.certificate_unknown:d="Certificate unknown.";break;case k.Alert.Description.illegal_parameter:d="Illegal parameter.";break;case k.Alert.Description.unknown_ca:d="Unknown certificate authority.";break;case k.Alert.Description.access_denied:d=
632 -"Access denied.";break;case k.Alert.Description.decode_error:d="Decode error.";break;case k.Alert.Description.decrypt_error:d="Decrypt error.";break;case k.Alert.Description.export_restriction:d="Export restriction.";break;case k.Alert.Description.protocol_version:d="Unsupported protocol version.";break;case k.Alert.Description.insufficient_security:d="Insufficient security.";break;case k.Alert.Description.internal_error:d="Internal error.";break;case k.Alert.Description.user_canceled:d="User canceled.";
633 -break;case k.Alert.Description.no_renegotiation:d="Renegotiation not supported.";break;default:d="Unknown error."}if(c.description===k.Alert.Description.close_notify)return a.close();a.error(a,{message:d,send:!1,origin:a.entity===k.ConnectionEnd.client?"server":"client",alert:c});a.process()};k.handleHandshake=function(b,c){var d=c.fragment,e=d.getByte(),g=d.getInt24();if(g>d.length())return b.fragmented=c,c.fragment=a.util.createBuffer(),d.read-=4,b.process();b.fragmented=null;d.read-=4;var h=d.bytes(g+
634 -4);d.read+=4;e in W[b.entity][b.expect]?(b.entity!==k.ConnectionEnd.server||b.open||b.fail||(b.handshaking=!0,b.session={version:null,extensions:{server_name:{serverNameList:[]}},cipherSuite:null,compressionMethod:null,serverCertificate:null,clientCertificate:null,md5:a.md.md5.create(),sha1:a.md.sha1.create()}),e!==k.HandshakeType.hello_request&&e!==k.HandshakeType.certificate_verify&&e!==k.HandshakeType.finished&&(b.session.md5.update(h),b.session.sha1.update(h)),W[b.entity][b.expect][e](b,c,g)):
635 -k.handleUnexpected(b,c)};k.handleApplicationData=function(a,b){a.data.putBuffer(b.fragment);a.dataReady(a);a.process()};k.handleHeartbeat=function(b,c){var d=c.fragment,e=d.getByte(),g=d.getInt16(),d=d.getBytes(g);if(e===k.HeartbeatMessageType.heartbeat_request){if(b.handshaking||g>d.length)return b.process();k.queue(b,k.createRecord(b,{type:k.ContentType.heartbeat,data:k.createHeartbeat(k.HeartbeatMessageType.heartbeat_response,d)}));k.flush(b)}else if(e===k.HeartbeatMessageType.heartbeat_response){if(d!==
636 -b.expectedHeartbeatPayload)return b.process();b.heartbeatReceived&&b.heartbeatReceived(b,a.util.createBuffer(d))}b.process()};var h=1,r=2,q=3,C=4,B=5,y=6,I=7,F=8,E=1,z=2,D=3,A=4,G=5,L=6,u=k.handleUnexpected,O=k.handleChangeCipherSpec,R=k.handleAlert,P=k.handleHandshake,Y=k.handleApplicationData,N=k.handleHeartbeat,X=[];X[k.ConnectionEnd.client]=[[u,R,P,u,N],[u,R,P,u,N],[u,R,P,u,N],[u,R,P,u,N],[u,R,P,u,N],[O,R,u,u,N],[u,R,P,u,N],[u,R,P,Y,N],[u,R,P,u,N]];X[k.ConnectionEnd.server]=[[u,R,P,u,N],[u,R,
637 -P,u,N],[u,R,P,u,N],[u,R,P,u,N],[O,R,u,u,N],[u,R,P,u,N],[u,R,P,Y,N],[u,R,P,u,N]];var O=k.handleHelloRequest,R=k.handleCertificate,P=k.handleServerKeyExchange,Y=k.handleCertificateRequest,N=k.handleServerHelloDone,T=k.handleFinished,W=[];W[k.ConnectionEnd.client]=[[u,u,k.handleServerHello,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,R,P,Y,N,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,u,P,Y,N,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,u,u,Y,N,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,u,u,u,N,u,u,u,u,u,u],
638 -[O,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,T],[O,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[O,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u]];W[k.ConnectionEnd.server]=[[u,k.handleClientHello,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[u,u,u,u,u,u,u,u,u,u,u,R,u,u,u,u,u,u,u,u,u],[u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,k.handleClientKeyExchange,u,u,u,u],[u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,k.handleCertificateVerify,u,u,u,u,u],[u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[u,u,u,u,u,
639 -u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,T],[u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u],[u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u,u]];k.generateKeys=function(a,b){var d=b.client_random+b.server_random;a.session.resuming||(b.master_secret=c(b.pre_master_secret,"master secret",d,48).bytes(),b.pre_master_secret=null);var d=b.server_random+b.client_random,e=2*b.mac_key_length+2*b.enc_key_length,h=a.version.major===k.Versions.TLS_1_0.major&&a.version.minor===k.Versions.TLS_1_0.minor;h&&(e+=2*b.fixed_iv_length);d=
640 -c(b.master_secret,"key expansion",d,e);e={client_write_MAC_key:d.getBytes(b.mac_key_length),server_write_MAC_key:d.getBytes(b.mac_key_length),client_write_key:d.getBytes(b.enc_key_length),server_write_key:d.getBytes(b.enc_key_length)};h&&(e.client_write_IV=d.getBytes(b.fixed_iv_length),e.server_write_IV=d.getBytes(b.fixed_iv_length));return e};k.createConnectionState=function(a){var b=a.entity===k.ConnectionEnd.client,c=function(){var a={sequenceNumber:[0,0],macKey:null,macLength:0,macFunction:null,
641 -cipherState:null,cipherFunction:function(a){return!0},compressionState:null,compressFunction:function(a){return!0},updateSequenceNumber:function(){4294967295===a.sequenceNumber[1]?(a.sequenceNumber[1]=0,++a.sequenceNumber[0]):++a.sequenceNumber[1]}};return a},g={read:c(),write:c()};g.read.update=function(a,b){g.read.cipherFunction(b,g.read)?g.read.compressFunction(a,b,g.read)||a.error(a,{message:"Could not decompress record.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.decompression_failure}}):
642 -a.error(a,{message:"Could not decrypt record or bad MAC.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.bad_record_mac}});return!a.fail};g.write.update=function(a,b){g.write.compressFunction(a,b,g.write)?g.write.cipherFunction(b,g.write)||a.error(a,{message:"Could not encrypt record.",send:!1,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}}):a.error(a,{message:"Could not compress record.",send:!1,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}});
643 -return!a.fail};if(a.session)switch(c=a.session.sp,a.session.cipherSuite.initSecurityParameters(c),c.keys=k.generateKeys(a,c),g.read.macKey=b?c.keys.server_write_MAC_key:c.keys.client_write_MAC_key,g.write.macKey=b?c.keys.client_write_MAC_key:c.keys.server_write_MAC_key,a.session.cipherSuite.initConnectionState(g,a,c),c.compression_algorithm){case k.CompressionMethod.none:break;case k.CompressionMethod.deflate:g.read.compressFunction=e;g.write.compressFunction=d;break;default:throw Error("Unsupported compression algorithm.");
644 -}return g};k.createRandom=function(){var b=new Date,b=+b+6E4*b.getTimezoneOffset(),c=a.util.createBuffer();c.putInt32(b);c.putBytes(a.random.getBytes(28));return c};k.createRecord=function(a,b){return b.data?{type:b.type,version:{major:a.version.major,minor:a.version.minor},length:b.data.length(),fragment:b.data}:null};k.createAlert=function(b,c){var d=a.util.createBuffer();d.putByte(c.level);d.putByte(c.description);return k.createRecord(b,{type:k.ContentType.alert,data:d})};k.createClientHello=
645 -function(b){b.session.clientHelloVersion={major:b.version.major,minor:b.version.minor};for(var c=a.util.createBuffer(),d=0;d<b.cipherSuites.length;++d){var e=b.cipherSuites[d];c.putByte(e.id[0]);c.putByte(e.id[1])}var g=c.length(),d=a.util.createBuffer();d.putByte(k.CompressionMethod.none);var h=d.length(),e=a.util.createBuffer();if(b.virtualHost){var l=a.util.createBuffer();l.putByte(0);l.putByte(0);var n=a.util.createBuffer();n.putByte(0);p(n,2,a.util.createBuffer(b.virtualHost));var q=a.util.createBuffer();
646 -p(q,2,n);p(l,2,q);e.putBuffer(l)}l=e.length();0<l&&(l+=2);n=b.session.id;g=n.length+1+2+4+28+2+g+1+h+l;h=a.util.createBuffer();h.putByte(k.HandshakeType.client_hello);h.putInt24(g);h.putByte(b.version.major);h.putByte(b.version.minor);h.putBytes(b.session.sp.client_random);p(h,1,a.util.createBuffer(n));p(h,2,c);p(h,1,d);0<l&&p(h,2,e);return h};k.createServerHello=function(b){var c=b.session.id,d=c.length+1+2+4+28+2+1,e=a.util.createBuffer();e.putByte(k.HandshakeType.server_hello);e.putInt24(d);e.putByte(b.version.major);
647 -e.putByte(b.version.minor);e.putBytes(b.session.sp.server_random);p(e,1,a.util.createBuffer(c));e.putByte(b.session.cipherSuite.id[0]);e.putByte(b.session.cipherSuite.id[1]);e.putByte(b.session.compressionMethod);return e};k.createCertificate=function(b){var c=b.entity===k.ConnectionEnd.client,d=null;b.getCertificate&&(d=b.getCertificate(b,c?b.session.certificateRequest:b.session.extensions.server_name.serverNameList));var e=a.util.createBuffer();if(null!==d)try{a.util.isArray(d)||(d=[d]);for(var g=
648 -null,h=0;h<d.length;++h){var l=a.pem.decode(d[h])[0];if("CERTIFICATE"!==l.type&&"X509 CERTIFICATE"!==l.type&&"TRUSTED CERTIFICATE"!==l.type){var n=Error('Could not convert certificate from PEM; PEM header type is not "CERTIFICATE", "X509 CERTIFICATE", or "TRUSTED CERTIFICATE".');n.headerType=l.type;throw n;}if(l.procType&&"ENCRYPTED"===l.procType.type)throw Error("Could not convert certificate from PEM; PEM is encrypted.");var q=a.util.createBuffer(l.body);null===g&&(g=a.asn1.fromDer(q.bytes(),!1));
649 -var r=a.util.createBuffer();p(r,3,q);e.putBuffer(r)}d=a.pki.certificateFromAsn1(g);c?b.session.clientCertificate=d:b.session.serverCertificate=d}catch(u){return b.error(b,{message:"Could not send certificate list.",cause:u,send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.bad_certificate}})}b=3+e.length();c=a.util.createBuffer();c.putByte(k.HandshakeType.certificate);c.putInt24(b);p(c,3,e);return c};k.createClientKeyExchange=function(b){var c=a.util.createBuffer();c.putByte(b.session.clientHelloVersion.major);
650 -c.putByte(b.session.clientHelloVersion.minor);c.putBytes(a.random.getBytes(46));var d=b.session.sp;d.pre_master_secret=c.getBytes();c=b.session.serverCertificate.publicKey.encrypt(d.pre_master_secret);b=c.length+2;d=a.util.createBuffer();d.putByte(k.HandshakeType.client_key_exchange);d.putInt24(b);d.putInt16(c.length);d.putBytes(c);return d};k.createServerKeyExchange=function(b){return a.util.createBuffer()};k.getClientSignature=function(b,c){var d=a.util.createBuffer();d.putBuffer(b.session.md5.digest());
651 -d.putBuffer(b.session.sha1.digest());d=d.getBytes();b.getSignature=b.getSignature||function(b,c,d){var e=null;if(b.getPrivateKey)try{e=b.getPrivateKey(b,b.session.clientCertificate),e=a.pki.privateKeyFromPem(e)}catch(g){b.error(b,{message:"Could not get private key.",cause:g,send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}})}null===e?b.error(b,{message:"No private key set.",send:!0,alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.internal_error}}):
652 -c=e.sign(c,null);d(b,c)};b.getSignature(b,d,c)};k.createCertificateVerify=function(b,c){var d=c.length+2,e=a.util.createBuffer();e.putByte(k.HandshakeType.certificate_verify);e.putInt24(d);e.putInt16(c.length);e.putBytes(c);return e};k.createCertificateRequest=function(b){var c=a.util.createBuffer();c.putByte(1);var d=a.util.createBuffer(),e;for(e in b.caStore.certs){var g=a.pki.distinguishedNameToAsn1(b.caStore.certs[e].subject);d.putBuffer(a.asn1.toDer(g))}b=1+c.length()+2+d.length();e=a.util.createBuffer();
653 -e.putByte(k.HandshakeType.certificate_request);e.putInt24(b);p(e,1,c);p(e,2,d);return e};k.createServerHelloDone=function(b){b=a.util.createBuffer();b.putByte(k.HandshakeType.server_hello_done);b.putInt24(0);return b};k.createChangeCipherSpec=function(){var b=a.util.createBuffer();b.putByte(1);return b};k.createFinished=function(b){var d=a.util.createBuffer();d.putBuffer(b.session.md5.digest());d.putBuffer(b.session.sha1.digest());d=c(b.session.sp.master_secret,b.entity===k.ConnectionEnd.client?"client finished":
654 -"server finished",d.getBytes(),12);b=a.util.createBuffer();b.putByte(k.HandshakeType.finished);b.putInt24(d.length());b.putBuffer(d);return b};k.createHeartbeat=function(b,c,d){"undefined"===typeof d&&(d=c.length);var e=a.util.createBuffer();e.putByte(b);e.putInt16(d);e.putBytes(c);b=e.length();e.putBytes(a.random.getBytes(Math.max(16,b-d-3)));return e};k.queue=function(b,c){if(c){if(c.type===k.ContentType.handshake){var d=c.fragment.bytes();b.session.md5.update(d);b.session.sha1.update(d)}if(c.fragment.length()<=
655 -k.MaxFragment)d=[c];else{for(var d=[],e=c.fragment.bytes();e.length>k.MaxFragment;)d.push(k.createRecord(b,{type:c.type,data:a.util.createBuffer(e.slice(0,k.MaxFragment))})),e=e.slice(k.MaxFragment);0<e.length&&d.push(k.createRecord(b,{type:c.type,data:a.util.createBuffer(e)}))}for(e=0;e<d.length&&!b.fail;++e){var g=d[e];b.state.current.write.update(b,g)&&b.records.push(g)}}};k.flush=function(a){for(var b=0;b<a.records.length;++b){var c=a.records[b];a.tlsData.putByte(c.type);a.tlsData.putByte(c.version.major);
656 -a.tlsData.putByte(c.version.minor);a.tlsData.putInt16(c.fragment.length());a.tlsData.putBuffer(a.records[b].fragment)}a.records=[];return a.tlsDataReady(a)};var U=function(b){switch(b){case !0:return!0;case a.pki.certificateError.bad_certificate:return k.Alert.Description.bad_certificate;case a.pki.certificateError.unsupported_certificate:return k.Alert.Description.unsupported_certificate;case a.pki.certificateError.certificate_revoked:return k.Alert.Description.certificate_revoked;case a.pki.certificateError.certificate_expired:return k.Alert.Description.certificate_expired;
657 -case a.pki.certificateError.certificate_unknown:return k.Alert.Description.certificate_unknown;case a.pki.certificateError.unknown_ca:return k.Alert.Description.unknown_ca;default:return k.Alert.Description.bad_certificate}},M=function(b){switch(b){case !0:return!0;case k.Alert.Description.bad_certificate:return a.pki.certificateError.bad_certificate;case k.Alert.Description.unsupported_certificate:return a.pki.certificateError.unsupported_certificate;case k.Alert.Description.certificate_revoked:return a.pki.certificateError.certificate_revoked;
658 -case k.Alert.Description.certificate_expired:return a.pki.certificateError.certificate_expired;case k.Alert.Description.certificate_unknown:return a.pki.certificateError.certificate_unknown;case k.Alert.Description.unknown_ca:return a.pki.certificateError.unknown_ca;default:return a.pki.certificateError.bad_certificate}};k.verifyCertificateChain=function(b,c){try{a.pki.verifyCertificateChain(b.caStore,c,function(c,d,e){U(c);d=b.verify(b,c,d,e);if(!0!==d){if("object"===typeof d&&!a.util.isArray(d))throw c=
659 -Error("The application rejected the certificate."),c.send=!0,c.alert={level:k.Alert.Level.fatal,description:k.Alert.Description.bad_certificate},d.message&&(c.message=d.message),d.alert&&(c.alert.description=d.alert),c;d!==c&&(d=M(d))}return d})}catch(d){var e=d;if("object"!==typeof e||a.util.isArray(e))e={send:!0,alert:{level:k.Alert.Level.fatal,description:U(d)}};"send"in e||(e.send=!0);"alert"in e||(e.alert={level:k.Alert.Level.fatal,description:U(e.error)});b.error(b,e)}return!b.fail};k.createSessionCache=
660 -function(b,c){var d=null;if(b&&b.getSession&&b.setSession&&b.order)d=b;else{d={};d.cache=b||{};d.capacity=Math.max(c||100,1);d.order=[];for(var e in b)d.order.length<=c?d.order.push(e):delete b[e];d.getSession=function(b){var c=null,e=null;b?e=a.util.bytesToHex(b):0<d.order.length&&(e=d.order[0]);if(null!==e&&e in d.cache){c=d.cache[e];delete d.cache[e];for(var g in d.order)if(d.order[g]===e){d.order.splice(g,1);break}}return c};d.setSession=function(b,c){if(d.order.length===d.capacity){var e=d.order.shift();
661 -delete d.cache[e]}e=a.util.bytesToHex(b);d.order.push(e);d.cache[e]=c}}return d};k.createConnection=function(b){var c=null,c=b.caStore?a.util.isArray(b.caStore)?a.pki.createCaStore(b.caStore):b.caStore:a.pki.createCaStore(),d=b.cipherSuites||null;if(null===d){var d=[],e;for(e in k.CipherSuites)d.push(k.CipherSuites[e])}e=b.server?k.ConnectionEnd.server:k.ConnectionEnd.client;var g=b.sessionCache?k.createSessionCache(b.sessionCache):null,h={version:{major:k.Version.major,minor:k.Version.minor},entity:e,
662 -sessionId:b.sessionId,caStore:c,sessionCache:g,cipherSuites:d,connected:b.connected,virtualHost:b.virtualHost||null,verifyClient:b.verifyClient||!1,verify:b.verify||function(a,b,c,d){return b},getCertificate:b.getCertificate||null,getPrivateKey:b.getPrivateKey||null,getSignature:b.getSignature||null,input:a.util.createBuffer(),tlsData:a.util.createBuffer(),data:a.util.createBuffer(),tlsDataReady:b.tlsDataReady,dataReady:b.dataReady,heartbeatReceived:b.heartbeatReceived,closed:b.closed,error:function(a,
663 -c){c.origin=c.origin||(a.entity===k.ConnectionEnd.client?"client":"server");c.send&&(k.queue(a,k.createAlert(a,c.alert)),k.flush(a));var d=!1!==c.fatal;d&&(a.fail=!0);b.error(a,c);d&&a.close(!1)},deflate:b.deflate||null,inflate:b.inflate||null,reset:function(a){h.version={major:k.Version.major,minor:k.Version.minor};h.record=null;h.session=null;h.peerCertificate=null;h.state={pending:null,current:null};h.expect=0;h.fragmented=null;h.records=[];h.open=!1;h.handshakes=0;h.handshaking=!1;h.isConnected=
664 -!1;h.fail=!(a||"undefined"===typeof a);h.input.clear();h.tlsData.clear();h.data.clear();h.state.current=k.createConnectionState(h)}};h.reset();h.handshake=function(b){if(h.entity!==k.ConnectionEnd.client)h.error(h,{message:"Cannot initiate handshake as a server.",fatal:!1});else if(h.handshaking)h.error(h,{message:"Handshake already in progress.",fatal:!1});else{h.fail&&!h.open&&0===h.handshakes&&(h.fail=!1);h.handshaking=!0;b=b||"";var c=null;0<b.length&&(h.sessionCache&&(c=h.sessionCache.getSession(b)),
665 -null===c&&(b=""));0===b.length&&h.sessionCache&&(c=h.sessionCache.getSession(),null!==c&&(b=c.id));h.session={id:b,version:null,cipherSuite:null,compressionMethod:null,serverCertificate:null,certificateRequest:null,clientCertificate:null,sp:{},md5:a.md.md5.create(),sha1:a.md.sha1.create()};c&&(h.version=c.version,h.session.sp=c.sp);h.session.sp.client_random=k.createRandom().getBytes();h.open=!0;k.queue(h,k.createRecord(h,{type:k.ContentType.handshake,data:k.createClientHello(h)}));k.flush(h)}};h.process=
666 -function(b){var c=0;b&&h.input.putBytes(b);if(!h.fail){null!==h.record&&h.record.ready&&h.record.fragment.isEmpty()&&(h.record=null);if(null===h.record){c=0;b=h.input;var d=b.length();5>d?c=5-d:(h.record={type:b.getByte(),version:{major:b.getByte(),minor:b.getByte()},length:b.getInt16(),fragment:a.util.createBuffer(),ready:!1},(b=h.record.version.major===h.version.major)&&h.session&&h.session.version&&(b=h.record.version.minor===h.version.minor),b||h.error(h,{message:"Incompatible TLS version.",send:!0,
667 -alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.protocol_version}}))}if(!h.fail&&null!==h.record&&!h.record.ready){c=h;b=0;var d=c.input,e=d.length();e<c.record.length?b=c.record.length-e:(c.record.fragment.putBytes(d.getBytes(c.record.length)),d.compact(),c.state.current.read.update(c,c.record)&&(null!==c.fragmented&&(c.fragmented.type===c.record.type?(c.fragmented.fragment.putBuffer(c.record.fragment),c.record=c.fragmented):c.error(c,{message:"Invalid fragmented record.",send:!0,
668 -alert:{level:k.Alert.Level.fatal,description:k.Alert.Description.unexpected_message}})),c.record.ready=!0));c=b}if(!h.fail&&null!==h.record&&h.record.ready)if(b=h.record,d=b.type-k.ContentType.change_cipher_spec,e=X[h.entity][h.expect],d in e)e[d](h,b);else k.handleUnexpected(h,b)}return c};h.prepare=function(b){k.queue(h,k.createRecord(h,{type:k.ContentType.application_data,data:a.util.createBuffer(b)}));return k.flush(h)};h.prepareHeartbeatRequest=function(b,c){b instanceof a.util.ByteBuffer&&(b=
669 -b.bytes());"undefined"===typeof c&&(c=b.length);h.expectedHeartbeatPayload=b;k.queue(h,k.createRecord(h,{type:k.ContentType.heartbeat,data:k.createHeartbeat(k.HeartbeatMessageType.heartbeat_request,b,c)}));return k.flush(h)};h.close=function(a){if(!h.fail&&h.sessionCache&&h.session){var b={id:h.session.id,version:h.session.version,sp:h.session.sp};b.sp.keys=null;h.sessionCache.setSession(b.id,b)}if(h.open){h.open=!1;h.input.clear();if(h.isConnected||h.handshaking)h.isConnected=h.handshaking=!1,k.queue(h,
670 -k.createAlert(h,{level:k.Alert.Level.warning,description:k.Alert.Description.close_notify})),k.flush(h);h.closed(h)}h.reset(a)};return h};a.tls=a.tls||{};for(var V in k)"function"!==typeof k[V]&&(a.tls[V]=k[V]);a.tls.prf_tls1=c;a.tls.hmac_sha1=function(b,c,d){var e=a.hmac.create();e.start("SHA1",b);b=a.util.createBuffer();b.putInt32(c[0]);b.putInt32(c[1]);b.putByte(d.type);b.putByte(d.version.major);b.putByte(d.version.minor);b.putInt16(d.length);b.putBytes(d.fragment.bytes());e.update(b.getBytes());
671 -return e.digest().getBytes()};a.tls.createSessionCache=k.createSessionCache;a.tls.createConnection=k.createConnection}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.tls)return c.tls;c.defined.tls=!0;for(var g=0;g<e.length;++g)e[g](c);return c.tls}},
672 -r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/tls","require module ./asn1 ./hmac ./md ./pem ./pki ./random ./util".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,e,g){e=e.entity===a.tls.ConnectionEnd.client;b.read.cipherState={init:!1,cipher:a.cipher.createDecipher("AES-CBC",
673 -e?g.keys.server_write_key:g.keys.client_write_key),iv:e?g.keys.server_write_IV:g.keys.client_write_IV};b.write.cipherState={init:!1,cipher:a.cipher.createCipher("AES-CBC",e?g.keys.client_write_key:g.keys.server_write_key),iv:e?g.keys.client_write_IV:g.keys.server_write_IV};b.read.cipherFunction=p;b.write.cipherFunction=d;b.read.macLength=b.write.macLength=g.mac_length;b.read.macFunction=b.write.macFunction=k.hmac_sha1}function d(b,c){var g=!1,h=c.macFunction(c.macKey,c.sequenceNumber,b);b.fragment.putBytes(h);
674 -c.updateSequenceNumber();h=b.version.minor===k.Versions.TLS_1_0.minor?c.cipherState.init?null:c.cipherState.iv:a.random.getBytesSync(16);c.cipherState.init=!0;var n=c.cipherState.cipher;n.start({iv:h});b.version.minor>=k.Versions.TLS_1_1.minor&&n.output.putBytes(h);n.update(b.fragment);n.finish(e)&&(b.fragment=n.output,b.length=b.fragment.length(),g=!0);return g}function e(a,b,c){c||(a-=b.length()%a,b.fillWithByte(a-1,a));return!0}function n(a,b,c){a=!0;if(c){c=b.length();for(var d=b.last(),e=c-1-
675 -d;e<c-1;++e)a=a&&b.at(e)==d;a&&b.truncate(d+1)}return a}function p(b,c){var d=!1;++h;d=b.version.minor===k.Versions.TLS_1_0.minor?c.cipherState.init?null:c.cipherState.iv:b.fragment.getBytes(16);c.cipherState.init=!0;var e=c.cipherState.cipher;e.start({iv:d});e.update(b.fragment);var d=e.finish(n),g=c.macLength,l=a.random.getBytesSync(g),r=e.output.length();r>=g?(b.fragment=e.output.getBytes(r-g),l=e.output.getBytes(g)):b.fragment=e.output.getBytes();b.fragment=a.util.createBuffer(b.fragment);b.length=
676 -b.fragment.length();g=c.macFunction(c.macKey,c.sequenceNumber,b);c.updateSequenceNumber();e=c.macKey;r=a.hmac.create();r.start("SHA1",e);r.update(l);l=r.digest().getBytes();r.start(null,null);r.update(g);g=r.digest().getBytes();return l===g&&d}var k=a.tls;k.CipherSuites.TLS_RSA_WITH_AES_128_CBC_SHA={id:[0,47],name:"TLS_RSA_WITH_AES_128_CBC_SHA",initSecurityParameters:function(a){a.bulk_cipher_algorithm=k.BulkCipherAlgorithm.aes;a.cipher_type=k.CipherType.block;a.enc_key_length=16;a.block_length=16;
677 -a.fixed_iv_length=16;a.record_iv_length=16;a.mac_algorithm=k.MACAlgorithm.hmac_sha1;a.mac_length=20;a.mac_key_length=20},initConnectionState:c};k.CipherSuites.TLS_RSA_WITH_AES_256_CBC_SHA={id:[0,53],name:"TLS_RSA_WITH_AES_256_CBC_SHA",initSecurityParameters:function(a){a.bulk_cipher_algorithm=k.BulkCipherAlgorithm.aes;a.cipher_type=k.CipherType.block;a.enc_key_length=32;a.block_length=16;a.fixed_iv_length=16;a.record_iv_length=16;a.mac_algorithm=k.MACAlgorithm.hmac_sha1;a.mac_length=20;a.mac_key_length=
678 -20},initConnectionState:c};var h=0}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.aesCipherSuites)return c.aesCipherSuites;c.defined.aesCipherSuites=!0;for(var g=0;g<e.length;++g)e[g](c);return c.aesCipherSuites}},r=a;a=function(b,c){n="string"===
679 -typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/aesCipherSuites",["require","module","./aes","./tls"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.debug=a.debug||{};a.debug.storage={};a.debug.get=function(b,c){var d;"undefined"===typeof b?d=a.debug.storage:b in a.debug.storage&&(d="undefined"===typeof c?a.debug.storage[b]:
680 -a.debug.storage[b][c]);return d};a.debug.set=function(b,c,d){b in a.debug.storage||(a.debug.storage[b]={});a.debug.storage[b][c]=d};a.debug.clear=function(b,c){"undefined"===typeof b?a.debug.storage={}:b in a.debug.storage&&("undefined"===typeof c?delete a.debug.storage[b]:delete a.debug.storage[b][c])}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=
681 -function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.debug)return c.debug;c.defined.debug=!0;for(var g=0;g<e.length;++g)e[g](c);return c.debug}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/debug",["require","module"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();
682 -(function(){function b(a){function c(b,d,e,g){b.generate=function(b,c){for(var l=new a.util.ByteBuffer,n=Math.ceil(c/g)+e,p=new a.util.ByteBuffer,r=e;r<n;++r){p.putInt32(r);d.start();d.update(b+p.getBytes());var w=d.digest();l.putBytes(w.getBytes(g))}l.truncate(l.length()-c);return l.getBytes()}}a.kem=a.kem||{};var d=a.jsbn.BigInteger;a.kem.rsa={};a.kem.rsa.create=function(b,c){c=c||{};var e=c.prng||a.random;return{encrypt:function(c,g){var n=Math.ceil(c.n.bitLength()/8),q;do q=(new d(a.util.bytesToHex(e.getBytesSync(n)),
683 -16)).mod(c.n);while(q.equals(d.ZERO));q=a.util.hexToBytes(q.toString(16));n-=q.length;0<n&&(q=a.util.fillString(String.fromCharCode(0),n)+q);n=c.encrypt(q,"NONE");q=b.generate(q,g);return{encapsulation:n,key:q}},decrypt:function(a,c,d){a=a.decrypt(c,"NONE");return b.generate(a,d)}}};a.kem.kdf1=function(a,b){c(this,a,0,b||a.digestLength)};a.kem.kdf2=function(a,b){c(this,a,1,b||a.digestLength)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===
684 -typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.kem)return c.kem;c.defined.kem=!0;for(var g=0;g<e.length;++g)e[g](c);return c.kem}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/kem",["require","module","./util","./random",
685 -"./jsbn"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.log=a.log||{};a.log.levels="none error warning info debug verbose max".split(" ");var c={},d=[],e=null;a.log.LEVEL_LOCKED=2;a.log.NO_LEVEL_CHECK=4;a.log.INTERPOLATE=8;for(var n=0;n<a.log.levels.length;++n){var p=a.log.levels[n];c[p]={index:n,name:p.toUpperCase()}}a.log.logMessage=function(b){for(var e=c[b.level].index,k=0;k<d.length;++k){var l=d[k];l.flags&a.log.NO_LEVEL_CHECK?l.f(b):e<=c[l.level].index&&
686 -l.f(l,b)}};a.log.prepareStandard=function(a){"standard"in a||(a.standard=c[a.level].name+" ["+a.category+"] "+a.message)};a.log.prepareFull=function(b){if(!("full"in b)){var c=[b.message],c=c.concat([]);b.full=a.util.format.apply(this,c)}};a.log.prepareStandardFull=function(b){"standardFull"in b||(a.log.prepareStandard(b),b.standardFull=b.standard)};p=["error","warning","info","debug","verbose"];for(n=0;n<p.length;++n)(function(b){a.log[b]=function(c,d){var e=Array.prototype.slice.call(arguments).slice(2);
687 -a.log.logMessage({timestamp:new Date,level:b,category:c,message:d,arguments:e})}})(p[n]);a.log.makeLogger=function(b){b={flags:0,f:b};a.log.setLevel(b,"none");return b};a.log.setLevel=function(b,c){var d=!1;if(b&&!(b.flags&a.log.LEVEL_LOCKED))for(var e=0;e<a.log.levels.length;++e)if(c==a.log.levels[e]){b.level=c;d=!0;break}return d};a.log.lock=function(b,c){b.flags="undefined"===typeof c||c?b.flags|a.log.LEVEL_LOCKED:b.flags&~a.log.LEVEL_LOCKED};a.log.addLogger=function(a){d.push(a)};if("undefined"!==
688 -typeof console&&"log"in console){if(console.error&&console.warn&&console.info&&console.debug)var k={error:console.error,warning:console.warn,info:console.info,debug:console.debug,verbose:console.debug},e=function(b,c){a.log.prepareStandard(c);var d=k[c.level],e=[c.standard],e=e.concat(c.arguments.slice());d.apply(console,e)};else e=function(b,c){a.log.prepareStandardFull(c);console.log(c.standardFull)};e=a.log.makeLogger(e);a.log.setLevel(e,"debug");a.log.addLogger(e)}else console={log:function(){}};
689 -null!==e&&(n=a.util.getQueryVariables(),"console.level"in n&&a.log.setLevel(e,n["console.level"].slice(-1)[0]),"console.lock"in n&&"true"==n["console.lock"].slice(-1)[0]&&a.log.lock(e));a.log.consoleLogger=e}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.log)return c.log;
690 -c.defined.log=!0;for(var g=0;g<e.length;++g)e[g](c);return c.log}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/log",["require","module","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b){var d={},e=[];if(!q.validate(b,C.asn1.recipientInfoValidator,d,e))throw b=Error("Cannot read PKCS#7 RecipientInfo. ASN.1 object is not an PKCS#7 RecipientInfo."),
691 -b.errors=e,b;return{version:d.version.charCodeAt(0),issuer:a.pki.RDNAttributesAsArray(d.issuer),serialNumber:a.util.createBuffer(d.serial).toHex(),encryptedContent:{algorithm:q.derToOid(d.encAlgorithm),parameter:d.encParameter.value,content:d.encKey}}}function d(b){return q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.INTEGER,!1,q.integerToDer(b.version).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[a.pki.distinguishedNameToAsn1({attributes:b.issuer}),
692 -q.create(q.Class.UNIVERSAL,q.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber))]),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.encryptedContent.algorithm).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.NULL,!1,"")]),q.create(q.Class.UNIVERSAL,q.Type.OCTETSTRING,!1,b.encryptedContent.content)])}function e(a){for(var b=[],c=0;c<a.length;++c)b.push(d(a[c]));return b}function n(b){var c=q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,
693 -q.Type.INTEGER,!1,q.integerToDer(b.version).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[a.pki.distinguishedNameToAsn1({attributes:b.issuer}),q.create(q.Class.UNIVERSAL,q.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber))]),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.digestAlgorithm).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.NULL,!1,"")])]);b.authenticatedAttributesAsn1&&c.value.push(b.authenticatedAttributesAsn1);c.value.push(q.create(q.Class.UNIVERSAL,
694 -q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.signatureAlgorithm).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.NULL,!1,"")]));c.value.push(q.create(q.Class.UNIVERSAL,q.Type.OCTETSTRING,!1,b.signature));if(0<b.unauthenticatedAttributes.length){for(var d=q.create(q.Class.CONTEXT_SPECIFIC,1,!0,[]),e=0;e<b.unauthenticatedAttributes.length;++e)d.values.push(p(b.unauthenticatedAttributes[e]));c.value.push(d)}return c}function p(b){var c;if(b.type===a.pki.oids.contentType)c=
695 -q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.value).getBytes());else if(b.type===a.pki.oids.messageDigest)c=q.create(q.Class.UNIVERSAL,q.Type.OCTETSTRING,!1,b.value.bytes());else if(b.type===a.pki.oids.signingTime){c=new Date("Jan 1, 1950 00:00:00Z");var d=new Date("Jan 1, 2050 00:00:00Z"),e=b.value;if("string"===typeof e)var g=Date.parse(e),e=isNaN(g)?13===e.length?q.utcTimeToDate(e):q.generalizedTimeToDate(e):new Date(g);c=e>=c&&e<d?q.create(q.Class.UNIVERSAL,q.Type.UTCTIME,!1,q.dateToUtcTime(e)):
696 -q.create(q.Class.UNIVERSAL,q.Type.GENERALIZEDTIME,!1,q.dateToGeneralizedTime(e))}return q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.type).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SET,!0,[c])])}function k(b){return[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(a.pki.oids.data).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.algorithm).getBytes()),q.create(q.Class.UNIVERSAL,
697 -q.Type.OCTETSTRING,!1,b.parameter.getBytes())]),q.create(q.Class.CONTEXT_SPECIFIC,0,!0,[q.create(q.Class.UNIVERSAL,q.Type.OCTETSTRING,!1,b.content.getBytes())])]}function h(b,c,d){var e={};if(!q.validate(c,d,e,[]))throw b=Error("Cannot read PKCS#7 message. ASN.1 object is not a supported PKCS#7 message."),b.errors=b,b;if(q.derToOid(e.contentType)!==a.pki.oids.data)throw Error("Unsupported PKCS#7 message. Only wrapped ContentType Data supported.");if(e.encryptedContent){c="";if(a.util.isArray(e.encryptedContent))for(d=
698 -0;d<e.encryptedContent.length;++d){if(e.encryptedContent[d].type!==q.Type.OCTETSTRING)throw Error("Malformed PKCS#7 message, expecting encrypted content constructed of only OCTET STRING objects.");c+=e.encryptedContent[d].value}else c=e.encryptedContent;b.encryptedContent={algorithm:q.derToOid(e.encAlgorithm),parameter:a.util.createBuffer(e.encParameter.value),content:a.util.createBuffer(c)}}if(e.content){c="";if(a.util.isArray(e.content))for(d=0;d<e.content.length;++d){if(e.content[d].type!==q.Type.OCTETSTRING)throw Error("Malformed PKCS#7 message, expecting content constructed of only OCTET STRING objects.");
699 -c+=e.content[d].value}else c=e.content;b.content=a.util.createBuffer(c)}b.version=e.version.charCodeAt(0);return b.rawCapture=e}function r(b){if(void 0===b.encryptedContent.key)throw Error("Symmetric key not available.");if(void 0===b.content){var c;switch(b.encryptedContent.algorithm){case a.pki.oids["aes128-CBC"]:case a.pki.oids["aes192-CBC"]:case a.pki.oids["aes256-CBC"]:c=a.aes.createDecryptionCipher(b.encryptedContent.key);break;case a.pki.oids.desCBC:case a.pki.oids["des-EDE3-CBC"]:c=a.des.createDecryptionCipher(b.encryptedContent.key);
700 -break;default:throw Error("Unsupported symmetric cipher, OID "+b.encryptedContent.algorithm);}c.start(b.encryptedContent.parameter);c.update(b.encryptedContent.content);if(!c.finish())throw Error("Symmetric decryption failed.");b.content=c.output}}var q=a.asn1,C=a.pkcs7=a.pkcs7||{};C.messageFromPem=function(b){b=a.pem.decode(b)[0];if("PKCS7"!==b.type){var c=Error('Could not convert PKCS#7 message from PEM; PEM header type is not "PKCS#7".');c.headerType=b.type;throw c;}if(b.procType&&"ENCRYPTED"===
701 -b.procType.type)throw Error("Could not convert PKCS#7 message from PEM; PEM is encrypted.");b=q.fromDer(b.body);return C.messageFromAsn1(b)};C.messageToPem=function(b,c){var d={type:"PKCS7",body:q.toDer(b.toAsn1()).getBytes()};return a.pem.encode(d,{maxline:c})};C.messageFromAsn1=function(b){var c={},d=[];if(!q.validate(b,C.asn1.contentInfoValidator,c,d))throw c=Error("Cannot read PKCS#7 message. ASN.1 object is not an PKCS#7 ContentInfo."),c.errors=d,c;d=q.derToOid(c.contentType);switch(d){case a.pki.oids.envelopedData:d=
702 -C.createEnvelopedData();break;case a.pki.oids.encryptedData:d=C.createEncryptedData();break;case a.pki.oids.signedData:d=C.createSignedData();break;default:throw Error("Cannot read PKCS#7 message. ContentType with OID "+d+" is not (yet) supported.");}d.fromAsn1(c.content.value[0]);return d};C.createSignedData=function(){var b=null;return b={type:a.pki.oids.signedData,version:1,certificates:[],crls:[],signers:[],digestAlgorithmIdentifiers:[],contentInfo:null,signerInfos:[],fromAsn1:function(c){h(b,
703 -c,C.asn1.signedDataValidator);b.certificates=[];b.crls=[];b.digestAlgorithmIdentifiers=[];b.contentInfo=null;b.signerInfos=[];c=b.rawCapture.certificates.value;for(var d=0;d<c.length;++d)b.certificates.push(a.pki.certificateFromAsn1(c[d]))},toAsn1:function(){b.contentInfo||b.sign();for(var c=[],d=0;d<b.certificates.length;++d)c.push(a.pki.certificateToAsn1(b.certificates[d]));var d=[],e=q.create(q.Class.CONTEXT_SPECIFIC,0,!0,[q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,
704 -q.Type.INTEGER,!1,q.integerToDer(b.version).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SET,!0,b.digestAlgorithmIdentifiers),b.contentInfo])]);0<c.length&&e.value[0].value.push(q.create(q.Class.CONTEXT_SPECIFIC,0,!0,c));0<d.length&&e.value[0].value.push(q.create(q.Class.CONTEXT_SPECIFIC,1,!0,d));e.value[0].value.push(q.create(q.Class.UNIVERSAL,q.Type.SET,!0,b.signerInfos));return q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.type).getBytes()),
537 +b.subject.attributes=a;delete b.subject.uniqueId;c&&(b.subject.uniqueId=c);b.subject.hash=null};b.setIssuer=function(a,c){e(a);b.issuer.attributes=a;delete b.issuer.uniqueId;c&&(b.issuer.uniqueId=c);b.issuer.hash=null};b.setExtensions=function(a){for(var c=0;c<a.length;++c)k(a[c],{cert:b});b.extensions=a};b.getExtension=function(a){"string"===typeof a&&(a={name:a});for(var c=null,d,e=0;null===c&&e<b.extensions.length;++e)d=b.extensions[e],a.id&&d.id===a.id?c=d:a.name&&d.name===a.name&&(c=d);return c};
538 +b.sign=function(c,d){b.md=d||a.md.sha1.create();var e=u[b.md.algorithm+"WithRSAEncryption"];if(!e)throw e=Error("Could not compute certificate digest. Unknown message digest algorithm OID."),e.algorithm=b.md.algorithm,e;b.signatureOid=b.siginfo.algorithmOid=e;b.tbsCertificate=x.getTBSCertificate(b);e=g.toDer(b.tbsCertificate);b.md.update(e.getBytes());b.signature=c.sign(b.md)};b.verify=function(c){var d=!1;if(!b.issued(c)){var d=b.subject,e=Error("The parent certificate did not issue the given child certificate; the child certificate's issuer does not match the parent's subject.");
539 +e.expectedIssuer=c.issuer.attributes;e.actualIssuer=d.attributes;throw e;}e=c.md;if(null===e){if(c.signatureOid in u)switch(u[c.signatureOid]){case "sha1WithRSAEncryption":e=a.md.sha1.create();break;case "md5WithRSAEncryption":e=a.md.md5.create();break;case "sha256WithRSAEncryption":e=a.md.sha256.create();break;case "sha512WithRSAEncryption":e=a.md.sha512.create();break;case "RSASSA-PSS":e=a.md.sha256.create()}if(null===e)throw e=Error("Could not compute certificate digest. Unknown signature OID."),
540 +e.signatureOid=c.signatureOid,e;var h=c.tbsCertificate||x.getTBSCertificate(c),h=g.toDer(h);e.update(h.getBytes())}if(null!==e){var l;switch(c.signatureOid){case u.sha1WithRSAEncryption:l=void 0;break;case u["RSASSA-PSS"]:d=u[c.signatureParameters.mgf.hash.algorithmOid];if(void 0===d||void 0===a.md[d])throw e=Error("Unsupported MGF hash function."),e.oid=c.signatureParameters.mgf.hash.algorithmOid,e.name=d,e;l=u[c.signatureParameters.mgf.algorithmOid];if(void 0===l||void 0===a.mgf[l])throw e=Error("Unsupported MGF function."),
541 +e.oid=c.signatureParameters.mgf.algorithmOid,e.name=l,e;l=a.mgf[l].create(a.md[d].create());d=u[c.signatureParameters.hash.algorithmOid];if(void 0===d||void 0===a.md[d])throw{message:"Unsupported RSASSA-PSS hash function.",oid:c.signatureParameters.hash.algorithmOid,name:d};l=a.pss.create(a.md[d].create(),l,c.signatureParameters.saltLength)}d=b.publicKey.verify(e.digest().getBytes(),c.signature,l)}return d};b.isIssuer=function(a){var c=!1,d=b.issuer;a=a.subject;if(d.hash&&a.hash)c=d.hash===a.hash;
542 +else if(d.attributes.length===a.attributes.length)for(var c=!0,e,h,g=0;c&&g<d.attributes.length;++g)if(e=d.attributes[g],h=a.attributes[g],e.type!==h.type||e.value!==h.value)c=!1;return c};b.issued=function(a){return a.isIssuer(b)};b.generateSubjectKeyIdentifier=function(){return x.getPublicKeyFingerprint(b.publicKey,{type:"RSAPublicKey"})};b.verifySubjectKeyIdentifier=function(){for(var c=u.subjectKeyIdentifier,d=0;d<b.extensions.length;++d){var e=b.extensions[d];if(e.id===c)return c=b.generateSubjectKeyIdentifier().getBytes(),
543 +a.util.hexToBytes(e.subjectKeyIdentifier)===c}return!1};return b};x.certificateFromAsn1=function(b,d){var h={},l=[];if(!g.validate(b,y,h,l))throw h=Error("Cannot read X.509 certificate. ASN.1 object is not an X509v3 Certificate."),h.errors=l,h;if("string"!==typeof h.certSignature){for(var l="\x00",k=0;k<h.certSignature.length;++k)l+=g.toDer(h.certSignature[k]).getBytes();h.certSignature=l}l=g.derToOid(h.publicKeyOid);if(l!==x.oids.rsaEncryption)throw Error("Cannot read public key. OID is not RSA.");
544 +var r=x.createCertificate();r.version=h.certVersion?h.certVersion.charCodeAt(0):0;l=a.util.createBuffer(h.certSerialNumber);r.serialNumber=l.toHex();r.signatureOid=a.asn1.derToOid(h.certSignatureOid);r.signatureParameters=D(r.signatureOid,h.certSignatureParams,!0);r.siginfo.algorithmOid=a.asn1.derToOid(h.certinfoSignatureOid);r.siginfo.parameters=D(r.siginfo.algorithmOid,h.certinfoSignatureParams,!1);l=a.util.createBuffer(h.certSignature);++l.read;r.signature=l.getBytes();l=[];void 0!==h.certValidity1UTCTime&&
545 +l.push(g.utcTimeToDate(h.certValidity1UTCTime));void 0!==h.certValidity2GeneralizedTime&&l.push(g.generalizedTimeToDate(h.certValidity2GeneralizedTime));void 0!==h.certValidity3UTCTime&&l.push(g.utcTimeToDate(h.certValidity3UTCTime));void 0!==h.certValidity4GeneralizedTime&&l.push(g.generalizedTimeToDate(h.certValidity4GeneralizedTime));if(2<l.length)throw Error("Cannot read notBefore/notAfter validity times; more than two times were provided in the certificate.");if(2>l.length)throw Error("Cannot read notBefore/notAfter validity times; they were not provided as either UTCTime or GeneralizedTime.");
546 +r.validity.notBefore=l[0];r.validity.notAfter=l[1];r.tbsCertificate=h.tbsCertificate;if(d){r.md=null;if(r.signatureOid in u)switch(l=u[r.signatureOid],l){case "sha1WithRSAEncryption":r.md=a.md.sha1.create();break;case "md5WithRSAEncryption":r.md=a.md.md5.create();break;case "sha256WithRSAEncryption":r.md=a.md.sha256.create();break;case "sha512WithRSAEncryption":r.md=a.md.sha512.create();break;case "RSASSA-PSS":r.md=a.md.sha256.create()}if(null===r.md)throw h=Error("Could not compute certificate digest. Unknown signature OID."),
547 +h.signatureOid=r.signatureOid,h;l=g.toDer(r.tbsCertificate);r.md.update(l.getBytes())}l=a.md.sha1.create();r.issuer.getField=function(a){return c(r.issuer,a)};r.issuer.addField=function(a){e([a]);r.issuer.attributes.push(a)};r.issuer.attributes=x.RDNAttributesAsArray(h.certIssuer,l);h.certIssuerUniqueId&&(r.issuer.uniqueId=h.certIssuerUniqueId);r.issuer.hash=l.digest().toHex();l=a.md.sha1.create();r.subject.getField=function(a){return c(r.subject,a)};r.subject.addField=function(a){e([a]);r.subject.attributes.push(a)};
548 +r.subject.attributes=x.RDNAttributesAsArray(h.certSubject,l);h.certSubjectUniqueId&&(r.subject.uniqueId=h.certSubjectUniqueId);r.subject.hash=l.digest().toHex();r.extensions=h.certExtensions?x.certificateExtensionsFromAsn1(h.certExtensions):[];r.publicKey=x.publicKeyFromAsn1(h.subjectPublicKeyInfo);return r};x.certificateExtensionsFromAsn1=function(a){for(var b=[],c=0;c<a.value.length;++c)for(var d=a.value[c],e=0;e<d.value.length;++e)b.push(x.certificateExtensionFromAsn1(d.value[e]));return b};x.certificateExtensionFromAsn1=
549 +function(b){var c={};c.id=g.derToOid(b.value[0].value);c.critical=!1;b.value[1].type===g.Type.BOOLEAN?(c.critical=0!==b.value[1].value.charCodeAt(0),c.value=b.value[2].value):c.value=b.value[1].value;if(c.id in u)if(c.name=u[c.id],"keyUsage"===c.name){b=g.fromDer(c.value);var d=0,e=0;1<b.value.length&&(d=b.value.charCodeAt(1),e=2<b.value.length?b.value.charCodeAt(2):0);c.digitalSignature=128===(d&128);c.nonRepudiation=64===(d&64);c.keyEncipherment=32===(d&32);c.dataEncipherment=16===(d&16);c.keyAgreement=
550 +8===(d&8);c.keyCertSign=4===(d&4);c.cRLSign=2===(d&2);c.encipherOnly=1===(d&1);c.decipherOnly=128===(e&128)}else if("basicConstraints"===c.name)b=g.fromDer(c.value),c.cA=0<b.value.length&&b.value[0].type===g.Type.BOOLEAN?0!==b.value[0].value.charCodeAt(0):!1,d=null,0<b.value.length&&b.value[0].type===g.Type.INTEGER?d=b.value[0].value:1<b.value.length&&(d=b.value[1].value),null!==d&&(c.pathLenConstraint=g.derToInteger(d));else if("extKeyUsage"===c.name)for(b=g.fromDer(c.value),d=0;d<b.value.length;++d)e=
551 +g.derToOid(b.value[d].value),e in u?c[u[e]]=!0:c[e]=!0;else if("nsCertType"===c.name)b=g.fromDer(c.value),d=0,1<b.value.length&&(d=b.value.charCodeAt(1)),c.client=128===(d&128),c.server=64===(d&64),c.email=32===(d&32),c.objsign=16===(d&16),c.reserved=8===(d&8),c.sslCA=4===(d&4),c.emailCA=2===(d&2),c.objCA=1===(d&1);else if("subjectAltName"===c.name||"issuerAltName"===c.name)for(c.altNames=[],b=g.fromDer(c.value),e=0;e<b.value.length;++e){var d=b.value[e],h={type:d.type,value:d.value};c.altNames.push(h);
552 +switch(d.type){case 7:h.ip=a.util.bytesToIP(d.value);break;case 8:h.oid=g.derToOid(d.value)}}else"subjectKeyIdentifier"===c.name&&(b=g.fromDer(c.value),c.subjectKeyIdentifier=a.util.bytesToHex(b.value));return c};x.certificationRequestFromAsn1=function(b,d){var h={},l=[];if(!g.validate(b,E,h,l))throw h=Error("Cannot read PKCS#10 certificate request. ASN.1 object is not a PKCS#10 CertificationRequest."),h.errors=l,h;if("string"!==typeof h.csrSignature){for(var l="\x00",k=0;k<h.csrSignature.length;++k)l+=
553 +g.toDer(h.csrSignature[k]).getBytes();h.csrSignature=l}l=g.derToOid(h.publicKeyOid);if(l!==x.oids.rsaEncryption)throw Error("Cannot read public key. OID is not RSA.");var r=x.createCertificationRequest();r.version=h.csrVersion?h.csrVersion.charCodeAt(0):0;r.signatureOid=a.asn1.derToOid(h.csrSignatureOid);r.signatureParameters=D(r.signatureOid,h.csrSignatureParams,!0);r.siginfo.algorithmOid=a.asn1.derToOid(h.csrSignatureOid);r.siginfo.parameters=D(r.siginfo.algorithmOid,h.csrSignatureParams,!1);l=
554 +a.util.createBuffer(h.csrSignature);++l.read;r.signature=l.getBytes();r.certificationRequestInfo=h.certificationRequestInfo;if(d){r.md=null;if(r.signatureOid in u)switch(l=u[r.signatureOid],l){case "sha1WithRSAEncryption":r.md=a.md.sha1.create();break;case "md5WithRSAEncryption":r.md=a.md.md5.create();break;case "sha256WithRSAEncryption":r.md=a.md.sha256.create();break;case "sha512WithRSAEncryption":r.md=a.md.sha512.create();break;case "RSASSA-PSS":r.md=a.md.sha256.create()}if(null===r.md)throw h=
555 +Error("Could not compute certification request digest. Unknown signature OID."),h.signatureOid=r.signatureOid,h;l=g.toDer(r.certificationRequestInfo);r.md.update(l.getBytes())}l=a.md.sha1.create();r.subject.getField=function(a){return c(r.subject,a)};r.subject.addField=function(a){e([a]);r.subject.attributes.push(a)};r.subject.attributes=x.RDNAttributesAsArray(h.certificationRequestInfoSubject,l);r.subject.hash=l.digest().toHex();r.publicKey=x.publicKeyFromAsn1(h.subjectPublicKeyInfo);r.getAttribute=
556 +function(a){return c(r,a)};r.addAttribute=function(a){e([a]);r.attributes.push(a)};r.attributes=x.CRIAttributesAsArray(h.certificationRequestInfoAttributes||[]);return r};x.createCertificationRequest=function(){var b={version:0,signatureOid:null,signature:null,siginfo:{}};b.siginfo.algorithmOid=null;b.subject={};b.subject.getField=function(a){return c(b.subject,a)};b.subject.addField=function(a){e([a]);b.subject.attributes.push(a)};b.subject.attributes=[];b.subject.hash=null;b.publicKey=null;b.attributes=
557 +[];b.getAttribute=function(a){return c(b,a)};b.addAttribute=function(a){e([a]);b.attributes.push(a)};b.md=null;b.setSubject=function(a){e(a);b.subject.attributes=a;b.subject.hash=null};b.setAttributes=function(a){e(a);b.attributes=a};b.sign=function(c,d){b.md=d||a.md.sha1.create();var e=u[b.md.algorithm+"WithRSAEncryption"];if(!e)throw e=Error("Could not compute certification request digest. Unknown message digest algorithm OID."),e.algorithm=b.md.algorithm,e;b.signatureOid=b.siginfo.algorithmOid=
558 +e;b.certificationRequestInfo=x.getCertificationRequestInfo(b);e=g.toDer(b.certificationRequestInfo);b.md.update(e.getBytes());b.signature=c.sign(b.md)};b.verify=function(){var c=!1,d=b.md;if(null===d){if(b.signatureOid in u)switch(u[b.signatureOid]){case "sha1WithRSAEncryption":d=a.md.sha1.create();break;case "md5WithRSAEncryption":d=a.md.md5.create();break;case "sha256WithRSAEncryption":d=a.md.sha256.create();break;case "sha512WithRSAEncryption":d=a.md.sha512.create();break;case "RSASSA-PSS":d=a.md.sha256.create()}if(null===
559 +d)throw d=Error("Could not compute certification request digest. Unknown signature OID."),d.signatureOid=b.signatureOid,d;var e=b.certificationRequestInfo||x.getCertificationRequestInfo(b),e=g.toDer(e);d.update(e.getBytes())}if(null!==d){var h;switch(b.signatureOid){case u["RSASSA-PSS"]:c=u[b.signatureParameters.mgf.hash.algorithmOid];if(void 0===c||void 0===a.md[c])throw d=Error("Unsupported MGF hash function."),d.oid=b.signatureParameters.mgf.hash.algorithmOid,d.name=c,d;h=u[b.signatureParameters.mgf.algorithmOid];
560 +if(void 0===h||void 0===a.mgf[h])throw d=Error("Unsupported MGF function."),d.oid=b.signatureParameters.mgf.algorithmOid,d.name=h,d;h=a.mgf[h].create(a.md[c].create());c=u[b.signatureParameters.hash.algorithmOid];if(void 0===c||void 0===a.md[c])throw d=Error("Unsupported RSASSA-PSS hash function."),d.oid=b.signatureParameters.hash.algorithmOid,d.name=c,d;h=a.pss.create(a.md[c].create(),h,b.signatureParameters.saltLength)}c=b.publicKey.verify(d.digest().getBytes(),b.signature,h)}return c};return b};
561 +x.getTBSCertificate=function(b){var c=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.CONTEXT_SPECIFIC,0,!0,[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(b.version).getBytes())]),g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber)),g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(b.siginfo.algorithmOid).getBytes()),q(b.siginfo.algorithmOid,b.siginfo.parameters)]),d(b.issuer),g.create(g.Class.UNIVERSAL,
562 +g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.UTCTIME,!1,g.dateToUtcTime(b.validity.notBefore)),g.create(g.Class.UNIVERSAL,g.Type.UTCTIME,!1,g.dateToUtcTime(b.validity.notAfter))]),d(b.subject),x.publicKeyToAsn1(b.publicKey)]);b.issuer.uniqueId&&c.value.push(g.create(g.Class.CONTEXT_SPECIFIC,1,!0,[g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,!1,String.fromCharCode(0)+b.issuer.uniqueId)]));b.subject.uniqueId&&c.value.push(g.create(g.Class.CONTEXT_SPECIFIC,2,!0,[g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,
563 +!1,String.fromCharCode(0)+b.subject.uniqueId)]));0<b.extensions.length&&c.value.push(x.certificateExtensionsToAsn1(b.extensions));return c};x.getCertificationRequestInfo=function(a){return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.INTEGER,!1,g.integerToDer(a.version).getBytes()),d(a.subject),x.publicKeyToAsn1(a.publicKey),l(a)])};x.distinguishedNameToAsn1=function(a){return d(a)};x.certificateToAsn1=function(a){var b=a.tbsCertificate||x.getTBSCertificate(a);
564 +return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[b,g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(a.signatureOid).getBytes()),q(a.signatureOid,a.signatureParameters)]),g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,!1,String.fromCharCode(0)+a.signature)])};x.certificateExtensionsToAsn1=function(a){var b=g.create(g.Class.CONTEXT_SPECIFIC,3,!0,[]),c=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]);b.value.push(c);for(var d=0;d<a.length;++d)c.value.push(x.certificateExtensionToAsn1(a[d]));
565 +return b};x.certificateExtensionToAsn1=function(a){var b=g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[]);b.value.push(g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(a.id).getBytes()));a.critical&&b.value.push(g.create(g.Class.UNIVERSAL,g.Type.BOOLEAN,!1,String.fromCharCode(255)));var c=a.value;"string"!==typeof a.value&&(c=g.toDer(c).getBytes());b.value.push(g.create(g.Class.UNIVERSAL,g.Type.OCTETSTRING,!1,c));return b};x.certificationRequestToAsn1=function(a){var b=a.certificationRequestInfo||
566 +x.getCertificationRequestInfo(a);return g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[b,g.create(g.Class.UNIVERSAL,g.Type.SEQUENCE,!0,[g.create(g.Class.UNIVERSAL,g.Type.OID,!1,g.oidToDer(a.signatureOid).getBytes()),q(a.signatureOid,a.signatureParameters)]),g.create(g.Class.UNIVERSAL,g.Type.BITSTRING,!1,String.fromCharCode(0)+a.signature)])};x.createCaStore=function(b){function c(b){if(!b.hash){var g=a.md.sha1.create();b.attributes=x.RDNAttributesAsArray(d(b),g);b.hash=g.digest().toHex()}return e.certs[b.hash]||
567 +null}var e={certs:{},getIssuer:function(a){return c(a.issuer)},addCertificate:function(b){"string"===typeof b&&(b=a.pki.certificateFromPem(b));if(!b.subject.hash){var c=a.md.sha1.create();b.subject.attributes=x.RDNAttributesAsArray(d(b.subject),c);b.subject.hash=c.digest().toHex()}b.subject.hash in e.certs?(c=e.certs[b.subject.hash],a.util.isArray(c)||(c=[c]),c.push(b)):e.certs[b.subject.hash]=b},hasCertificate:function(b){var d=c(b.subject);if(!d)return!1;a.util.isArray(d)||(d=[d]);b=g.toDer(x.certificateToAsn1(b)).getBytes();
568 +for(var e=0;e<d.length;++e){var h=g.toDer(x.certificateToAsn1(d[e])).getBytes();if(b===h)return!0}return!1}};if(b)for(var l=0;l<b.length;++l)e.addCertificate(b[l]);return e};x.certificateError={bad_certificate:"forge.pki.BadCertificate",unsupported_certificate:"forge.pki.UnsupportedCertificate",certificate_revoked:"forge.pki.CertificateRevoked",certificate_expired:"forge.pki.CertificateExpired",certificate_unknown:"forge.pki.CertificateUnknown",unknown_ca:"forge.pki.UnknownCertificateAuthority"};
569 +x.verifyCertificateChain=function(b,c,d){c=c.slice(0);var e=c.slice(0),h=new Date,g=!0,l=null,m=0;do{var k=c.shift(),p=null,u=!1;if(h<k.validity.notBefore||h>k.validity.notAfter)l={message:"Certificate is not valid yet or has expired.",error:x.certificateError.certificate_expired,notBefore:k.validity.notBefore,notAfter:k.validity.notAfter,now:h};if(null===l){p=c[0]||b.getIssuer(k);null===p&&k.isIssuer(k)&&(u=!0,p=k);if(p){var q=p;a.util.isArray(q)||(q=[q]);for(var D=!1;!D&&0<q.length;){p=q.shift();
570 +try{D=p.verify(k)}catch(v){}}D||(l={message:"Certificate signature is invalid.",error:x.certificateError.bad_certificate})}null!==l||p&&!u||b.hasCertificate(k)||(l={message:"Certificate is not trusted.",error:x.certificateError.unknown_ca})}null===l&&p&&!k.isIssuer(p)&&(l={message:"Certificate issuer is invalid.",error:x.certificateError.bad_certificate});if(null===l)for(q={keyUsage:!0,basicConstraints:!0},D=0;null===l&&D<k.extensions.length;++D){var w=k.extensions[D];!w.critical||w.name in q||(l=
571 +{message:"Certificate has an unsupported critical extension.",error:x.certificateError.unsupported_certificate})}null!==l||g&&(0!==c.length||p&&!u)||(g=k.getExtension("basicConstraints"),k=k.getExtension("keyUsage"),null!==k&&(k.keyCertSign&&null!==g||(l={message:"Certificate keyUsage or basicConstraints conflict or indicate that the certificate is not a CA. If the certificate is the only one in the chain or isn't the first then the certificate must be a valid CA.",error:x.certificateError.bad_certificate})),
572 +null!==l||null===g||g.cA||(l={message:"Certificate basicConstraints indicates the certificate is not a CA.",error:x.certificateError.bad_certificate}),null===l&&null!==k&&"pathLenConstraint"in g&&m-1>g.pathLenConstraint&&(l={message:"Certificate basicConstraints pathLenConstraint violated.",error:x.certificateError.bad_certificate}));k=null===l?!0:l.error;g=d?d(k,m,e):k;if(!0===g)l=null;else{!0===k&&(l={message:"The application rejected the certificate.",error:x.certificateError.bad_certificate});
573 +if(g||0===g)"object"!==typeof g||a.util.isArray(g)?"string"===typeof g&&(l.error=g):(g.message&&(l.message=g.message),g.error&&(l.error=g.error));throw l;}g=!1;++m}while(0<c.length);return!0}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.x509)return c.x509;
574 +c.defined.x509=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pki}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/x509","require module ./aes ./asn1 ./des ./md ./mgf ./oids ./pem ./pss ./rsa ./util".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(a,b,d,e){for(var h=
575 +[],g=0;g<a.length;g++)for(var l=0;l<a[g].safeBags.length;l++){var n=a[g].safeBags[l];if(void 0===e||n.type===e)null===b?h.push(n):void 0!==n.attributes[b]&&0<=n.attributes[b].indexOf(d)&&h.push(n)}return h}function d(b){if(b.composed||b.constructed){for(var c=a.util.createBuffer(),e=0;e<b.value.length;++e)c.putBytes(b.value[e].value);b.composed=b.constructed=!1;b.value=c.getBytes()}return b}function e(b,c,m,p){c=l.fromDer(c,m);if(c.tagClass!==l.Class.UNIVERSAL||c.type!==l.Type.SEQUENCE||!0!==c.constructed)throw Error("PKCS#12 AuthenticatedSafe expected to be a SEQUENCE OF ContentInfo");
576 +for(var q=0;q<c.value.length;q++){var x={},v=[];if(!l.validate(c.value[q],u,x,v))throw b=Error("Cannot read ContentInfo."),b.errors=v,b;var v={encrypted:!1},r=null,r=x.content.value[0];switch(l.derToOid(x.contentType)){case g.oids.data:if(r.tagClass!==l.Class.UNIVERSAL||r.type!==l.Type.OCTETSTRING)throw Error("PKCS#12 SafeContents Data is not an OCTET STRING.");r=d(r).value;break;case g.oids.encryptedData:var A=p,x={},y=[];if(!l.validate(r,a.pkcs7.asn1.encryptedDataValidator,x,y))throw b=Error("Cannot read EncryptedContentInfo."),
577 +b.errors=y,b;r=l.derToOid(x.contentType);if(r!==g.oids.data)throw b=Error("PKCS#12 EncryptedContentInfo ContentType is not Data."),b.oid=r,b;r=l.derToOid(x.encAlgorithm);r=g.pbe.getCipher(r,x.encParameter,A);x=d(x.encryptedContentAsn1);x=a.util.createBuffer(x.value);r.update(x);if(!r.finish())throw Error("Failed to decrypt PKCS#12 SafeContents.");r=r.output.getBytes();v.encrypted=!0;break;default:throw b=Error("Unsupported PKCS#12 contentType."),b.contentType=l.derToOid(x.contentType),b;}v.safeBags=
578 +k(r,m,p);b.safeContents.push(v)}}function k(a,b,c){if(!b&&0===a.length)return[];a=l.fromDer(a,b);if(a.tagClass!==l.Class.UNIVERSAL||a.type!==l.Type.SEQUENCE||!0!==a.constructed)throw Error("PKCS#12 SafeContents expected to be a SEQUENCE OF SafeBag.");for(var d=[],e=0;e<a.value.length;e++){var h={},n=[];if(!l.validate(a.value[e],A,h,n))throw a=Error("Cannot read SafeBag."),a.errors=n,a;var m={type:l.derToOid(h.bagId),attributes:q(h.bagAttributes)};d.push(m);var p,u,x=h.bagValue.value[0];switch(m.type){case g.oids.pkcs8ShroudedKeyBag:if(x=
579 +g.decryptPrivateKeyInfo(x,c),null===x)throw Error("Unable to decrypt PKCS#8 ShroudedKeyBag, wrong password?");case g.oids.keyBag:try{m.key=g.privateKeyFromAsn1(x)}catch(v){m.key=null,m.asn1=x}continue;case g.oids.certBag:p=H;u=function(){if(l.derToOid(h.certId)!==g.oids.x509Certificate){var a=Error("Unsupported certificate type, only X.509 supported.");a.oid=l.derToOid(h.certId);throw a;}a=l.fromDer(h.cert,b);try{m.cert=g.certificateFromAsn1(a,!0)}catch(c){m.cert=null,m.asn1=a}};break;default:throw a=
580 +Error("Unsupported PKCS#12 SafeBag type."),a.oid=m.type,a;}if(void 0!==p&&!l.validate(x,p,h,n))throw a=Error("Cannot read PKCS#12 "+p.name),a.errors=n,a;u()}return d}function q(a){var b={};if(void 0!==a)for(var c=0;c<a.length;++c){var d={},e=[];if(!l.validate(a[c],y,d,e))throw a=Error("Cannot read PKCS#12 BagAttribute."),a.errors=e,a;e=l.derToOid(d.oid);if(void 0!==g.oids[e]){b[g.oids[e]]=[];for(var h=0;h<d.values.length;++h)b[g.oids[e]].push(d.values[h].value)}}return b}var l=a.asn1,g=a.pki,x=a.pkcs12=
581 +a.pkcs12||{},u={name:"ContentInfo",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"ContentInfo.contentType",tagClass:l.Class.UNIVERSAL,type:l.Type.OID,constructed:!1,capture:"contentType"},{name:"ContentInfo.content",tagClass:l.Class.CONTEXT_SPECIFIC,constructed:!0,captureAsn1:"content"}]},v={name:"PFX",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.version",tagClass:l.Class.UNIVERSAL,type:l.Type.INTEGER,constructed:!1,capture:"version"},
582 +u,{name:"PFX.macData",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,optional:!0,captureAsn1:"mac",value:[{name:"PFX.macData.mac",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.macData.mac.digestAlgorithm",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"PFX.macData.mac.digestAlgorithm.algorithm",tagClass:l.Class.UNIVERSAL,type:l.Type.OID,constructed:!1,capture:"macAlgorithm"},{name:"PFX.macData.mac.digestAlgorithm.parameters",
583 +tagClass:l.Class.UNIVERSAL,captureAsn1:"macAlgorithmParameters"}]},{name:"PFX.macData.mac.digest",tagClass:l.Class.UNIVERSAL,type:l.Type.OCTETSTRING,constructed:!1,capture:"macDigest"}]},{name:"PFX.macData.macSalt",tagClass:l.Class.UNIVERSAL,type:l.Type.OCTETSTRING,constructed:!1,capture:"macSalt"},{name:"PFX.macData.iterations",tagClass:l.Class.UNIVERSAL,type:l.Type.INTEGER,constructed:!1,optional:!0,capture:"macIterations"}]}]},A={name:"SafeBag",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,
584 +value:[{name:"SafeBag.bagId",tagClass:l.Class.UNIVERSAL,type:l.Type.OID,constructed:!1,capture:"bagId"},{name:"SafeBag.bagValue",tagClass:l.Class.CONTEXT_SPECIFIC,constructed:!0,captureAsn1:"bagValue"},{name:"SafeBag.bagAttributes",tagClass:l.Class.UNIVERSAL,type:l.Type.SET,constructed:!0,optional:!0,capture:"bagAttributes"}]},y={name:"Attribute",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"Attribute.attrId",tagClass:l.Class.UNIVERSAL,type:l.Type.OID,constructed:!1,
585 +capture:"oid"},{name:"Attribute.attrValues",tagClass:l.Class.UNIVERSAL,type:l.Type.SET,constructed:!0,capture:"values"}]},H={name:"CertBag",tagClass:l.Class.UNIVERSAL,type:l.Type.SEQUENCE,constructed:!0,value:[{name:"CertBag.certId",tagClass:l.Class.UNIVERSAL,type:l.Type.OID,constructed:!1,capture:"certId"},{name:"CertBag.certValue",tagClass:l.Class.CONTEXT_SPECIFIC,constructed:!0,value:[{name:"CertBag.certValue[0]",tagClass:l.Class.UNIVERSAL,type:l.Class.OCTETSTRING,constructed:!1,capture:"cert"}]}]};
586 +x.pkcs12FromAsn1=function(b,k,u){"string"===typeof k?(u=k,k=!0):void 0===k&&(k=!0);var q={};if(!l.validate(b,v,q,[]))throw k=Error("Cannot read PKCS#12 PFX. ASN.1 object is not an PKCS#12 PFX."),k.errors=k,k;var w={version:q.version.charCodeAt(0),safeContents:[],getBags:function(b){var d={},e;"localKeyId"in b?e=b.localKeyId:"localKeyIdHex"in b&&(e=a.util.hexToBytes(b.localKeyIdHex));void 0===e&&!("friendlyName"in b)&&"bagType"in b&&(d[b.bagType]=c(w.safeContents,null,null,b.bagType));void 0!==e&&
587 +(d.localKeyId=c(w.safeContents,"localKeyId",e,b.bagType));"friendlyName"in b&&(d.friendlyName=c(w.safeContents,"friendlyName",b.friendlyName,b.bagType));return d},getBagsByFriendlyName:function(a,b){return c(w.safeContents,"friendlyName",a,b)},getBagsByLocalKeyId:function(a,b){return c(w.safeContents,"localKeyId",a,b)}};if(3!==q.version.charCodeAt(0))throw k=Error("PKCS#12 PFX of version other than 3 not supported."),k.version=q.version.charCodeAt(0),k;if(l.derToOid(q.contentType)!==g.oids.data)throw k=
588 +Error("Only PKCS#12 PFX in password integrity mode supported."),k.oid=l.derToOid(q.contentType),k;b=q.content.value[0];if(b.tagClass!==l.Class.UNIVERSAL||b.type!==l.Type.OCTETSTRING)throw Error("PKCS#12 authSafe content data is not an OCTET STRING.");b=d(b);if(q.mac){var A=null,y=0,r=l.derToOid(q.macAlgorithm);switch(r){case g.oids.sha1:A=a.md.sha1.create();y=20;break;case g.oids.sha256:A=a.md.sha256.create();y=32;break;case g.oids.sha384:A=a.md.sha384.create();y=48;break;case g.oids.sha512:A=a.md.sha512.create();
589 +y=64;break;case g.oids.md5:A=a.md.md5.create(),y=16}if(null===A)throw Error("PKCS#12 uses unsupported MAC algorithm: "+r);var r=new a.util.ByteBuffer(q.macSalt),B="macIterations"in q?parseInt(a.util.bytesToHex(q.macIterations),16):1,y=x.generateKey(u,r,3,B,y,A),r=a.hmac.create();r.start(A,y);r.update(b.value);if(r.getMac().getBytes()!==q.macDigest)throw Error("PKCS#12 MAC could not be verified. Invalid password?");}e(w,b.value,k,u);return w};x.toPkcs12Asn1=function(b,c,d,e){e=e||{};e.saltSize=e.saltSize||
590 +8;e.count=e.count||2048;e.algorithm=e.algorithm||e.encAlgorithm||"aes128";"useMac"in e||(e.useMac=!0);"localKeyId"in e||(e.localKeyId=null);"generateLocalKeyId"in e||(e.generateLocalKeyId=!0);var h=e.localKeyId,m;if(null!==h)h=a.util.hexToBytes(h);else if(e.generateLocalKeyId)if(c){var k=a.util.isArray(c)?c[0]:c;"string"===typeof k&&(k=g.certificateFromPem(k));h=a.md.sha1.create();h.update(l.toDer(g.certificateToAsn1(k)).getBytes());h=h.digest().getBytes()}else h=a.random.getBytes(20);k=[];null!==
591 +h&&k.push(l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.localKeyId).getBytes()),l.create(l.Class.UNIVERSAL,l.Type.SET,!0,[l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,h)])]));"friendlyName"in e&&k.push(l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.friendlyName).getBytes()),l.create(l.Class.UNIVERSAL,l.Type.SET,!0,[l.create(l.Class.UNIVERSAL,l.Type.BMPSTRING,!1,e.friendlyName)])]));
592 +0<k.length&&(m=l.create(l.Class.UNIVERSAL,l.Type.SET,!0,k));h=[];k=[];null!==c&&(k=a.util.isArray(c)?c:[c]);for(var p=[],u=0;u<k.length;++u){c=k[u];"string"===typeof c&&(c=g.certificateFromPem(c));var q=0===u?m:void 0;c=g.certificateToAsn1(c);c=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.certBag).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.x509Certificate).getBytes()),
593 +l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,l.toDer(c).getBytes())])])]),q]);p.push(c)}0<p.length&&(c=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,p),c=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.data).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,l.toDer(c).getBytes())])]),h.push(c));c=null;null!==b&&(b=g.wrapRsaPrivateKey(g.privateKeyToAsn1(b)),
594 +c=null===d?l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.keyBag).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[b]),m]):l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.pkcs8ShroudedKeyBag).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[g.encryptPrivateKeyInfo(b,d,e)]),m]),b=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[c]),b=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,
595 +[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.data).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,l.toDer(b).getBytes())])]),h.push(b));m=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,h);var v;e.useMac&&(h=a.md.sha1.create(),v=new a.util.ByteBuffer(a.random.getBytes(e.saltSize)),e=e.count,b=x.generateKey(d,v,3,e,20),d=a.hmac.create(),d.start(h,b),d.update(l.toDer(m).getBytes()),d=d.getMac(),v=l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,
596 +!0,[l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.sha1).getBytes()),l.create(l.Class.UNIVERSAL,l.Type.NULL,!1,"")]),l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,d.getBytes())]),l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,v.getBytes()),l.create(l.Class.UNIVERSAL,l.Type.INTEGER,!1,l.integerToDer(e).getBytes())]));return l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,
597 +l.Type.INTEGER,!1,l.integerToDer(3).getBytes()),l.create(l.Class.UNIVERSAL,l.Type.SEQUENCE,!0,[l.create(l.Class.UNIVERSAL,l.Type.OID,!1,l.oidToDer(g.oids.data).getBytes()),l.create(l.Class.CONTEXT_SPECIFIC,0,!0,[l.create(l.Class.UNIVERSAL,l.Type.OCTETSTRING,!1,l.toDer(m).getBytes())])]),v])};x.generateKey=a.pbe.generatePkcs12Key}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,
598 +k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs12)return c.pkcs12;c.defined.pkcs12=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pkcs12}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/pkcs12","require module ./asn1 ./hmac ./oids ./pkcs7asn1 ./pbe ./random ./rsa ./sha1 ./util ./x509".split(" "),
599 +function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=a.asn1,d=a.pki=a.pki||{};d.pemToDer=function(b){b=a.pem.decode(b)[0];if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert PEM to DER; PEM is encrypted.");return a.util.createBuffer(b.body)};d.privateKeyFromPem=function(b){b=a.pem.decode(b)[0];if("PRIVATE KEY"!==b.type&&"RSA PRIVATE KEY"!==b.type){var e=Error('Could not convert private key from PEM; PEM header type is not "PRIVATE KEY" or "RSA PRIVATE KEY".');
600 +e.headerType=b.type;throw e;}if(b.procType&&"ENCRYPTED"===b.procType.type)throw Error("Could not convert private key from PEM; PEM is encrypted.");b=c.fromDer(b.body);return d.privateKeyFromAsn1(b)};d.privateKeyToPem=function(b,e){var k={type:"RSA PRIVATE KEY",body:c.toDer(d.privateKeyToAsn1(b)).getBytes()};return a.pem.encode(k,{maxline:e})};d.privateKeyInfoToPem=function(b,d){var e={type:"PRIVATE KEY",body:c.toDer(b).getBytes()};return a.pem.encode(e,{maxline:d})}}if("function"!==typeof a)if("object"===
601 +typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pki)return c.pki;c.defined.pki=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pki}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,
602 +Array.prototype.slice.call(arguments,0))};a("js/pki","require module ./asn1 ./oids ./pbe ./pem ./pbkdf2 ./pkcs12 ./pss ./rsa ./util ./x509".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c=function(b,c,d,e){var h=a.util.createBuffer(),g=b.length>>1,l=g+(b.length&1),k=b.substr(0,l),l=b.substr(g,l);b=a.util.createBuffer();g=a.hmac.create();d=c+d;var m=Math.ceil(e/16);c=Math.ceil(e/20);g.start("MD5",k);k=a.util.createBuffer();b.putBytes(d);
603 +for(var p=0;p<m;++p)g.start(null,null),g.update(b.getBytes()),b.putBuffer(g.digest()),g.start(null,null),g.update(b.bytes()+d),k.putBuffer(g.digest());g.start("SHA1",l);l=a.util.createBuffer();b.clear();b.putBytes(d);for(p=0;p<c;++p)g.start(null,null),g.update(b.getBytes()),b.putBuffer(g.digest()),g.start(null,null),g.update(b.bytes()+d),l.putBuffer(g.digest());h.putBytes(a.util.xorBytes(k.getBytes(),l.getBytes(),e));return h},d=function(b,c,d){d=!1;try{var e=b.deflate(c.fragment.getBytes());c.fragment=
604 +a.util.createBuffer(e);c.length=e.length;d=!0}catch(h){}return d},e=function(b,c,d){d=!1;try{var e=b.inflate(c.fragment.getBytes());c.fragment=a.util.createBuffer(e);c.length=e.length;d=!0}catch(h){}return d},k=function(b,c){var d=0;switch(c){case 1:d=b.getByte();break;case 2:d=b.getInt16();break;case 3:d=b.getInt24();break;case 4:d=b.getInt32()}return a.util.createBuffer(b.getBytes(d))},q=function(a,b,c){a.putInt(c.length(),b<<3);a.putBuffer(c)},l={Versions:{TLS_1_0:{major:3,minor:1},TLS_1_1:{major:3,
605 +minor:2},TLS_1_2:{major:3,minor:3}}};l.SupportedVersions=[l.Versions.TLS_1_1,l.Versions.TLS_1_0];l.Version=l.SupportedVersions[0];l.MaxFragment=15360;l.ConnectionEnd={server:0,client:1};l.PRFAlgorithm={tls_prf_sha256:0};l.BulkCipherAlgorithm={none:null,rc4:0,des3:1,aes:2};l.CipherType={stream:0,block:1,aead:2};l.MACAlgorithm={none:null,hmac_md5:0,hmac_sha1:1,hmac_sha256:2,hmac_sha384:3,hmac_sha512:4};l.CompressionMethod={none:0,deflate:1};l.ContentType={change_cipher_spec:20,alert:21,handshake:22,
606 +application_data:23,heartbeat:24};l.HandshakeType={hello_request:0,client_hello:1,server_hello:2,certificate:11,server_key_exchange:12,certificate_request:13,server_hello_done:14,certificate_verify:15,client_key_exchange:16,finished:20};l.Alert={};l.Alert.Level={warning:1,fatal:2};l.Alert.Description={close_notify:0,unexpected_message:10,bad_record_mac:20,decryption_failed:21,record_overflow:22,decompression_failure:30,handshake_failure:40,bad_certificate:42,unsupported_certificate:43,certificate_revoked:44,
607 +certificate_expired:45,certificate_unknown:46,illegal_parameter:47,unknown_ca:48,access_denied:49,decode_error:50,decrypt_error:51,export_restriction:60,protocol_version:70,insufficient_security:71,internal_error:80,user_canceled:90,no_renegotiation:100};l.HeartbeatMessageType={heartbeat_request:1,heartbeat_response:2};l.CipherSuites={};l.getCipherSuite=function(a){var b=null,c;for(c in l.CipherSuites){var d=l.CipherSuites[c];if(d.id[0]===a.charCodeAt(0)&&d.id[1]===a.charCodeAt(1)){b=d;break}}return b};
608 +l.handleUnexpected=function(a,b){(a.open||a.entity!==l.ConnectionEnd.client)&&a.error(a,{message:"Unexpected message. Received TLS record out of order.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.unexpected_message}})};l.handleHelloRequest=function(a,b,c){!a.handshaking&&0<a.handshakes&&(l.queue(a,l.createAlert(a,{level:l.Alert.Level.warning,description:l.Alert.Description.no_renegotiation})),l.flush(a));a.process()};l.parseHelloMessage=function(b,c,d){var e=null,h=b.entity===
609 +l.ConnectionEnd.client;if(38>d)b.error(b,{message:h?"Invalid ServerHello message. Message too short.":"Invalid ClientHello message. Message too short.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.illegal_parameter}});else{c=c.fragment;var g=c.length(),e={version:{major:c.getByte(),minor:c.getByte()},random:a.util.createBuffer(c.getBytes(32)),session_id:k(c,1),extensions:[]};h?(e.cipher_suite=c.getBytes(2),e.compression_method=c.getByte()):(e.cipher_suites=k(c,2),e.compression_methods=
610 +k(c,1));g=d-(g-c.length());if(0<g){for(d=k(c,2);0<d.length();)e.extensions.push({type:[d.getByte(),d.getByte()],data:k(d,2)});if(!h)for(d=0;d<e.extensions.length;++d)if(c=e.extensions[d],0===c.type[0]&&0===c.type[1])for(c=k(c.data,2);0<c.length()&&0===c.getByte();)b.session.extensions.server_name.serverNameList.push(k(c,2).getBytes())}if(b.session.version&&(e.version.major!==b.session.version.major||e.version.minor!==b.session.version.minor))return b.error(b,{message:"TLS version change is disallowed during renegotiation.",
611 +send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.protocol_version}});if(h)b.session.cipherSuite=l.getCipherSuite(e.cipher_suite);else for(d=a.util.createBuffer(e.cipher_suites.bytes());0<d.length()&&(b.session.cipherSuite=l.getCipherSuite(d.getBytes(2)),null===b.session.cipherSuite););if(null===b.session.cipherSuite)return b.error(b,{message:"No cipher suites in common.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.handshake_failure},cipherSuite:a.util.bytesToHex(e.cipher_suite)});
612 +b.session.compressionMethod=h?e.compression_method:l.CompressionMethod.none}return e};l.createSecurityParameters=function(a,b){var c=a.entity===l.ConnectionEnd.client,d=b.random.bytes(),e=c?a.session.sp.client_random:d,c=c?d:l.createRandom().getBytes();a.session.sp={entity:a.entity,prf_algorithm:l.PRFAlgorithm.tls_prf_sha256,bulk_cipher_algorithm:null,cipher_type:null,enc_key_length:null,block_length:null,fixed_iv_length:null,record_iv_length:null,mac_algorithm:null,mac_length:null,mac_key_length:null,
613 +compression_algorithm:a.session.compressionMethod,pre_master_secret:null,master_secret:null,client_random:e,server_random:c}};l.handleServerHello=function(a,b,c){b=l.parseHelloMessage(a,b,c);if(!a.fail){if(b.version.minor<=a.version.minor)a.version.minor=b.version.minor;else return a.error(a,{message:"Incompatible TLS version.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.protocol_version}});a.session.version=a.version;c=b.session_id.bytes();0<c.length&&c===a.session.id?
614 +(a.expect=A,a.session.resuming=!0,a.session.sp.server_random=b.random.bytes()):(a.expect=g,a.session.resuming=!1,l.createSecurityParameters(a,b));a.session.id=c;a.process()}};l.handleClientHello=function(b,c,d){c=l.parseHelloMessage(b,c,d);if(!b.fail){var e=c.session_id.bytes();d=null;if(b.sessionCache)if(d=b.sessionCache.getSession(e),null===d)e="";else if(d.version.major!==c.version.major||d.version.minor>c.version.minor)d=null,e="";0===e.length&&(e=a.random.getBytes(32));b.session.id=e;b.session.clientHelloVersion=
615 +c.version;b.session.sp={};if(d)b.version=b.session.version=d.version,b.session.sp=d.sp;else{for(var h,e=1;e<l.SupportedVersions.length&&!(h=l.SupportedVersions[e],h.minor<=c.version.minor);++e);b.version={major:h.major,minor:h.minor};b.session.version=b.version}null!==d?(b.expect=F,b.session.resuming=!0,b.session.sp.client_random=c.random.bytes()):(b.expect=!1!==b.verifyClient?D:z,b.session.resuming=!1,l.createSecurityParameters(b,c));b.open=!0;l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,
616 +data:l.createServerHello(b)}));b.session.resuming?(l.queue(b,l.createRecord(b,{type:l.ContentType.change_cipher_spec,data:l.createChangeCipherSpec()})),b.state.pending=l.createConnectionState(b),b.state.current.write=b.state.pending.write,l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createFinished(b)}))):(l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createCertificate(b)})),b.fail||(l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createServerKeyExchange(b)})),
617 +!1!==b.verifyClient&&l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createCertificateRequest(b)})),l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createServerHelloDone(b)}))));l.flush(b);b.process()}};l.handleCertificate=function(b,c,d){if(3>d)return b.error(b,{message:"Invalid Certificate message. Message too short.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.illegal_parameter}});d=k(c.fragment,3);var e,h;c=[];try{for(;0<d.length();)e=
618 +k(d,3),h=a.asn1.fromDer(e),e=a.pki.certificateFromAsn1(h,!0),c.push(e)}catch(g){return b.error(b,{message:"Could not parse certificate list.",cause:g,send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.bad_certificate}})}e=b.entity===l.ConnectionEnd.client;!e&&!0!==b.verifyClient||0!==c.length?0===c.length?b.expect=e?x:z:(e?b.session.serverCertificate=c[0]:b.session.clientCertificate=c[0],l.verifyCertificateChain(b,c)&&(b.expect=e?x:z)):b.error(b,{message:e?"No server certificate provided.":
619 +"No client certificate provided.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.illegal_parameter}});b.process()};l.handleServerKeyExchange=function(a,b,c){if(0<c)return a.error(a,{message:"Invalid key parameters. Only RSA is supported.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.unsupported_certificate}});a.expect=u;a.process()};l.handleClientKeyExchange=function(b,c,d){if(48>d)return b.error(b,{message:"Invalid key parameters. Only RSA is supported.",
620 +send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.unsupported_certificate}});c=k(c.fragment,2).getBytes();d=null;if(b.getPrivateKey)try{d=b.getPrivateKey(b,b.session.serverCertificate),d=a.pki.privateKeyFromPem(d)}catch(e){b.error(b,{message:"Could not get private key.",cause:e,send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}})}if(null===d)return b.error(b,{message:"No private key set.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}});
621 +try{var h=b.session.sp;h.pre_master_secret=d.decrypt(c);var g=b.session.clientHelloVersion;if(g.major!==h.pre_master_secret.charCodeAt(0)||g.minor!==h.pre_master_secret.charCodeAt(1))throw Error("TLS version rollback attack detected.");}catch(e){h.pre_master_secret=a.random.getBytes(48)}b.expect=F;null!==b.session.clientCertificate&&(b.expect=C);b.process()};l.handleCertificateRequest=function(a,b,c){if(3>c)return a.error(a,{message:"Invalid CertificateRequest. Message too short.",send:!0,alert:{level:l.Alert.Level.fatal,
622 +description:l.Alert.Description.illegal_parameter}});b=b.fragment;b={certificate_types:k(b,1),certificate_authorities:k(b,2)};a.session.certificateRequest=b;a.expect=v;a.process()};l.handleCertificateVerify=function(b,c,d){if(2>d)return b.error(b,{message:"Invalid CertificateVerify. Message too short.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.illegal_parameter}});d=c.fragment;d.read-=4;c=d.bytes();d.read+=4;d=k(d,2).getBytes();var e=a.util.createBuffer();e.putBuffer(b.session.md5.digest());
623 +e.putBuffer(b.session.sha1.digest());e=e.getBytes();try{if(!b.session.clientCertificate.publicKey.verify(e,d,"NONE"))throw Error("CertificateVerify signature does not match.");b.session.md5.update(c);b.session.sha1.update(c)}catch(h){return b.error(b,{message:"Bad signature in CertificateVerify.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.handshake_failure}})}b.expect=F;b.process()};l.handleServerHelloDone=function(b,c,d){if(0<d)return b.error(b,{message:"Invalid ServerHelloDone message. Invalid length.",
624 +send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.record_overflow}});if(null===b.serverCertificate&&(c={message:"No server certificate provided. Not enough security.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.insufficient_security}},d=b.verify(b,c.alert.description,0,[]),!0!==d)){if(d||0===d)"object"!==typeof d||a.util.isArray(d)?"number"===typeof d&&(c.alert.description=d):(d.message&&(c.message=d.message),d.alert&&(c.alert.description=d.alert));
625 +return b.error(b,c)}null!==b.session.certificateRequest&&(c=l.createRecord(b,{type:l.ContentType.handshake,data:l.createCertificate(b)}),l.queue(b,c));c=l.createRecord(b,{type:l.ContentType.handshake,data:l.createClientKeyExchange(b)});l.queue(b,c);b.expect=E;c=function(a,b){null!==a.session.certificateRequest&&null!==a.session.clientCertificate&&l.queue(a,l.createRecord(a,{type:l.ContentType.handshake,data:l.createCertificateVerify(a,b)}));l.queue(a,l.createRecord(a,{type:l.ContentType.change_cipher_spec,
626 +data:l.createChangeCipherSpec()}));a.state.pending=l.createConnectionState(a);a.state.current.write=a.state.pending.write;l.queue(a,l.createRecord(a,{type:l.ContentType.handshake,data:l.createFinished(a)}));a.expect=A;l.flush(a);a.process()};if(null===b.session.certificateRequest||null===b.session.clientCertificate)return c(b,null);l.getClientSignature(b,c)};l.handleChangeCipherSpec=function(a,b){if(1!==b.fragment.getByte())return a.error(a,{message:"Invalid ChangeCipherSpec message received.",send:!0,
627 +alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.illegal_parameter}});var c=a.entity===l.ConnectionEnd.client;if(a.session.resuming&&c||!a.session.resuming&&!c)a.state.pending=l.createConnectionState(a);a.state.current.read=a.state.pending.read;if(!a.session.resuming&&c||a.session.resuming&&!c)a.state.pending=null;a.expect=c?y:M;a.process()};l.handleFinished=function(b,d,e){e=d.fragment;e.read-=4;var h=e.bytes();e.read+=4;d=d.fragment.getBytes();e=a.util.createBuffer();e.putBuffer(b.session.md5.digest());
628 +e.putBuffer(b.session.sha1.digest());var g=b.entity===l.ConnectionEnd.client;e=c(b.session.sp.master_secret,g?"server finished":"client finished",e.getBytes(),12);if(e.getBytes()!==d)return b.error(b,{message:"Invalid verify_data in Finished message.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.decrypt_error}});b.session.md5.update(h);b.session.sha1.update(h);if(b.session.resuming&&g||!b.session.resuming&&!g)l.queue(b,l.createRecord(b,{type:l.ContentType.change_cipher_spec,
629 +data:l.createChangeCipherSpec()})),b.state.current.write=b.state.pending.write,b.state.pending=null,l.queue(b,l.createRecord(b,{type:l.ContentType.handshake,data:l.createFinished(b)}));b.expect=g?H:W;b.handshaking=!1;++b.handshakes;b.peerCertificate=g?b.session.serverCertificate:b.session.clientCertificate;l.flush(b);b.isConnected=!0;b.connected(b);b.process()};l.handleAlert=function(a,b){var c=b.fragment,c={level:c.getByte(),description:c.getByte()},d;switch(c.description){case l.Alert.Description.close_notify:d=
630 +"Connection closed.";break;case l.Alert.Description.unexpected_message:d="Unexpected message.";break;case l.Alert.Description.bad_record_mac:d="Bad record MAC.";break;case l.Alert.Description.decryption_failed:d="Decryption failed.";break;case l.Alert.Description.record_overflow:d="Record overflow.";break;case l.Alert.Description.decompression_failure:d="Decompression failed.";break;case l.Alert.Description.handshake_failure:d="Handshake failure.";break;case l.Alert.Description.bad_certificate:d=
631 +"Bad certificate.";break;case l.Alert.Description.unsupported_certificate:d="Unsupported certificate.";break;case l.Alert.Description.certificate_revoked:d="Certificate revoked.";break;case l.Alert.Description.certificate_expired:d="Certificate expired.";break;case l.Alert.Description.certificate_unknown:d="Certificate unknown.";break;case l.Alert.Description.illegal_parameter:d="Illegal parameter.";break;case l.Alert.Description.unknown_ca:d="Unknown certificate authority.";break;case l.Alert.Description.access_denied:d=
632 +"Access denied.";break;case l.Alert.Description.decode_error:d="Decode error.";break;case l.Alert.Description.decrypt_error:d="Decrypt error.";break;case l.Alert.Description.export_restriction:d="Export restriction.";break;case l.Alert.Description.protocol_version:d="Unsupported protocol version.";break;case l.Alert.Description.insufficient_security:d="Insufficient security.";break;case l.Alert.Description.internal_error:d="Internal error.";break;case l.Alert.Description.user_canceled:d="User canceled.";
633 +break;case l.Alert.Description.no_renegotiation:d="Renegotiation not supported.";break;default:d="Unknown error."}if(c.description===l.Alert.Description.close_notify)return a.close();a.error(a,{message:d,send:!1,origin:a.entity===l.ConnectionEnd.client?"server":"client",alert:c});a.process()};l.handleHandshake=function(b,c){var d=c.fragment,e=d.getByte(),h=d.getInt24();if(h>d.length())return b.fragmented=c,c.fragment=a.util.createBuffer(),d.read-=4,b.process();b.fragmented=null;d.read-=4;var g=d.bytes(h+
634 +4);d.read+=4;e in ba[b.entity][b.expect]?(b.entity!==l.ConnectionEnd.server||b.open||b.fail||(b.handshaking=!0,b.session={version:null,extensions:{server_name:{serverNameList:[]}},cipherSuite:null,compressionMethod:null,serverCertificate:null,clientCertificate:null,md5:a.md.md5.create(),sha1:a.md.sha1.create()}),e!==l.HandshakeType.hello_request&&e!==l.HandshakeType.certificate_verify&&e!==l.HandshakeType.finished&&(b.session.md5.update(g),b.session.sha1.update(g)),ba[b.entity][b.expect][e](b,c,h)):
635 +l.handleUnexpected(b,c)};l.handleApplicationData=function(a,b){a.data.putBuffer(b.fragment);a.dataReady(a);a.process()};l.handleHeartbeat=function(b,c){var d=c.fragment,e=d.getByte(),h=d.getInt16(),d=d.getBytes(h);if(e===l.HeartbeatMessageType.heartbeat_request){if(b.handshaking||h>d.length)return b.process();l.queue(b,l.createRecord(b,{type:l.ContentType.heartbeat,data:l.createHeartbeat(l.HeartbeatMessageType.heartbeat_response,d)}));l.flush(b)}else if(e===l.HeartbeatMessageType.heartbeat_response){if(d!==
636 +b.expectedHeartbeatPayload)return b.process();b.heartbeatReceived&&b.heartbeatReceived(b,a.util.createBuffer(d))}b.process()};var g=1,x=2,u=3,v=4,A=5,y=6,H=7,E=8,D=1,z=2,C=3,F=4,M=5,W=6,r=l.handleUnexpected,R=l.handleChangeCipherSpec,U=l.handleAlert,T=l.handleHandshake,ca=l.handleApplicationData,O=l.handleHeartbeat,S=[];S[l.ConnectionEnd.client]=[[r,U,T,r,O],[r,U,T,r,O],[r,U,T,r,O],[r,U,T,r,O],[r,U,T,r,O],[R,U,r,r,O],[r,U,T,r,O],[r,U,T,ca,O],[r,U,T,r,O]];S[l.ConnectionEnd.server]=[[r,U,T,r,O],[r,
637 +U,T,r,O],[r,U,T,r,O],[r,U,T,r,O],[R,U,r,r,O],[r,U,T,r,O],[r,U,T,ca,O],[r,U,T,r,O]];var R=l.handleHelloRequest,U=l.handleCertificate,T=l.handleServerKeyExchange,ca=l.handleCertificateRequest,O=l.handleServerHelloDone,V=l.handleFinished,ba=[];ba[l.ConnectionEnd.client]=[[r,r,l.handleServerHello,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,U,T,ca,O,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,T,ca,O,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,r,ca,O,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,r,r,O,r,r,
638 +r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,V],[R,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[R,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r]];ba[l.ConnectionEnd.server]=[[r,l.handleClientHello,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[r,r,r,r,r,r,r,r,r,r,r,U,r,r,r,r,r,r,r,r,r],[r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,l.handleClientKeyExchange,r,r,r,r],[r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,l.handleCertificateVerify,r,r,r,r,r],[r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[r,
639 +r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,V],[r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r],[r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r,r]];l.generateKeys=function(a,b){var d=b.client_random+b.server_random;a.session.resuming||(b.master_secret=c(b.pre_master_secret,"master secret",d,48).bytes(),b.pre_master_secret=null);var d=b.server_random+b.client_random,e=2*b.mac_key_length+2*b.enc_key_length,h=a.version.major===l.Versions.TLS_1_0.major&&a.version.minor===l.Versions.TLS_1_0.minor;h&&(e+=2*b.fixed_iv_length);
640 +d=c(b.master_secret,"key expansion",d,e);e={client_write_MAC_key:d.getBytes(b.mac_key_length),server_write_MAC_key:d.getBytes(b.mac_key_length),client_write_key:d.getBytes(b.enc_key_length),server_write_key:d.getBytes(b.enc_key_length)};h&&(e.client_write_IV=d.getBytes(b.fixed_iv_length),e.server_write_IV=d.getBytes(b.fixed_iv_length));return e};l.createConnectionState=function(a){var b=a.entity===l.ConnectionEnd.client,c=function(){var a={sequenceNumber:[0,0],macKey:null,macLength:0,macFunction:null,
641 +cipherState:null,cipherFunction:function(a){return!0},compressionState:null,compressFunction:function(a){return!0},updateSequenceNumber:function(){4294967295===a.sequenceNumber[1]?(a.sequenceNumber[1]=0,++a.sequenceNumber[0]):++a.sequenceNumber[1]}};return a},g={read:c(),write:c()};g.read.update=function(a,b){g.read.cipherFunction(b,g.read)?g.read.compressFunction(a,b,g.read)||a.error(a,{message:"Could not decompress record.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.decompression_failure}}):
642 +a.error(a,{message:"Could not decrypt record or bad MAC.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.bad_record_mac}});return!a.fail};g.write.update=function(a,b){g.write.compressFunction(a,b,g.write)?g.write.cipherFunction(b,g.write)||a.error(a,{message:"Could not encrypt record.",send:!1,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}}):a.error(a,{message:"Could not compress record.",send:!1,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}});
643 +return!a.fail};if(a.session)switch(c=a.session.sp,a.session.cipherSuite.initSecurityParameters(c),c.keys=l.generateKeys(a,c),g.read.macKey=b?c.keys.server_write_MAC_key:c.keys.client_write_MAC_key,g.write.macKey=b?c.keys.client_write_MAC_key:c.keys.server_write_MAC_key,a.session.cipherSuite.initConnectionState(g,a,c),c.compression_algorithm){case l.CompressionMethod.none:break;case l.CompressionMethod.deflate:g.read.compressFunction=e;g.write.compressFunction=d;break;default:throw Error("Unsupported compression algorithm.");
644 +}return g};l.createRandom=function(){var b=new Date,b=+b+6E4*b.getTimezoneOffset(),c=a.util.createBuffer();c.putInt32(b);c.putBytes(a.random.getBytes(28));return c};l.createRecord=function(a,b){return b.data?{type:b.type,version:{major:a.version.major,minor:a.version.minor},length:b.data.length(),fragment:b.data}:null};l.createAlert=function(b,c){var d=a.util.createBuffer();d.putByte(c.level);d.putByte(c.description);return l.createRecord(b,{type:l.ContentType.alert,data:d})};l.createClientHello=
645 +function(b){b.session.clientHelloVersion={major:b.version.major,minor:b.version.minor};for(var c=a.util.createBuffer(),d=0;d<b.cipherSuites.length;++d){var e=b.cipherSuites[d];c.putByte(e.id[0]);c.putByte(e.id[1])}var h=c.length(),d=a.util.createBuffer();d.putByte(l.CompressionMethod.none);var g=d.length(),e=a.util.createBuffer();if(b.virtualHost){var k=a.util.createBuffer();k.putByte(0);k.putByte(0);var m=a.util.createBuffer();m.putByte(0);q(m,2,a.util.createBuffer(b.virtualHost));var p=a.util.createBuffer();
646 +q(p,2,m);q(k,2,p);e.putBuffer(k)}k=e.length();0<k&&(k+=2);m=b.session.id;h=m.length+1+2+4+28+2+h+1+g+k;g=a.util.createBuffer();g.putByte(l.HandshakeType.client_hello);g.putInt24(h);g.putByte(b.version.major);g.putByte(b.version.minor);g.putBytes(b.session.sp.client_random);q(g,1,a.util.createBuffer(m));q(g,2,c);q(g,1,d);0<k&&q(g,2,e);return g};l.createServerHello=function(b){var c=b.session.id,d=c.length+1+2+4+28+2+1,e=a.util.createBuffer();e.putByte(l.HandshakeType.server_hello);e.putInt24(d);e.putByte(b.version.major);
647 +e.putByte(b.version.minor);e.putBytes(b.session.sp.server_random);q(e,1,a.util.createBuffer(c));e.putByte(b.session.cipherSuite.id[0]);e.putByte(b.session.cipherSuite.id[1]);e.putByte(b.session.compressionMethod);return e};l.createCertificate=function(b){var c=b.entity===l.ConnectionEnd.client,d=null;b.getCertificate&&(d=b.getCertificate(b,c?b.session.certificateRequest:b.session.extensions.server_name.serverNameList));var e=a.util.createBuffer();if(null!==d)try{a.util.isArray(d)||(d=[d]);for(var h=
648 +null,g=0;g<d.length;++g){var k=a.pem.decode(d[g])[0];if("CERTIFICATE"!==k.type&&"X509 CERTIFICATE"!==k.type&&"TRUSTED CERTIFICATE"!==k.type){var m=Error('Could not convert certificate from PEM; PEM header type is not "CERTIFICATE", "X509 CERTIFICATE", or "TRUSTED CERTIFICATE".');m.headerType=k.type;throw m;}if(k.procType&&"ENCRYPTED"===k.procType.type)throw Error("Could not convert certificate from PEM; PEM is encrypted.");var p=a.util.createBuffer(k.body);null===h&&(h=a.asn1.fromDer(p.bytes(),!1));
649 +var u=a.util.createBuffer();q(u,3,p);e.putBuffer(u)}d=a.pki.certificateFromAsn1(h);c?b.session.clientCertificate=d:b.session.serverCertificate=d}catch(r){return b.error(b,{message:"Could not send certificate list.",cause:r,send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.bad_certificate}})}b=3+e.length();c=a.util.createBuffer();c.putByte(l.HandshakeType.certificate);c.putInt24(b);q(c,3,e);return c};l.createClientKeyExchange=function(b){var c=a.util.createBuffer();c.putByte(b.session.clientHelloVersion.major);
650 +c.putByte(b.session.clientHelloVersion.minor);c.putBytes(a.random.getBytes(46));var d=b.session.sp;d.pre_master_secret=c.getBytes();c=b.session.serverCertificate.publicKey.encrypt(d.pre_master_secret);b=c.length+2;d=a.util.createBuffer();d.putByte(l.HandshakeType.client_key_exchange);d.putInt24(b);d.putInt16(c.length);d.putBytes(c);return d};l.createServerKeyExchange=function(b){return a.util.createBuffer()};l.getClientSignature=function(b,c){var d=a.util.createBuffer();d.putBuffer(b.session.md5.digest());
651 +d.putBuffer(b.session.sha1.digest());d=d.getBytes();b.getSignature=b.getSignature||function(b,c,d){var e=null;if(b.getPrivateKey)try{e=b.getPrivateKey(b,b.session.clientCertificate),e=a.pki.privateKeyFromPem(e)}catch(h){b.error(b,{message:"Could not get private key.",cause:h,send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}})}null===e?b.error(b,{message:"No private key set.",send:!0,alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.internal_error}}):
652 +c=e.sign(c,null);d(b,c)};b.getSignature(b,d,c)};l.createCertificateVerify=function(b,c){var d=c.length+2,e=a.util.createBuffer();e.putByte(l.HandshakeType.certificate_verify);e.putInt24(d);e.putInt16(c.length);e.putBytes(c);return e};l.createCertificateRequest=function(b){var c=a.util.createBuffer();c.putByte(1);var d=a.util.createBuffer(),e;for(e in b.caStore.certs){var h=a.pki.distinguishedNameToAsn1(b.caStore.certs[e].subject);d.putBuffer(a.asn1.toDer(h))}b=1+c.length()+2+d.length();e=a.util.createBuffer();
653 +e.putByte(l.HandshakeType.certificate_request);e.putInt24(b);q(e,1,c);q(e,2,d);return e};l.createServerHelloDone=function(b){b=a.util.createBuffer();b.putByte(l.HandshakeType.server_hello_done);b.putInt24(0);return b};l.createChangeCipherSpec=function(){var b=a.util.createBuffer();b.putByte(1);return b};l.createFinished=function(b){var d=a.util.createBuffer();d.putBuffer(b.session.md5.digest());d.putBuffer(b.session.sha1.digest());d=c(b.session.sp.master_secret,b.entity===l.ConnectionEnd.client?"client finished":
654 +"server finished",d.getBytes(),12);b=a.util.createBuffer();b.putByte(l.HandshakeType.finished);b.putInt24(d.length());b.putBuffer(d);return b};l.createHeartbeat=function(b,c,d){"undefined"===typeof d&&(d=c.length);var e=a.util.createBuffer();e.putByte(b);e.putInt16(d);e.putBytes(c);b=e.length();e.putBytes(a.random.getBytes(Math.max(16,b-d-3)));return e};l.queue=function(b,c){if(c){if(c.type===l.ContentType.handshake){var d=c.fragment.bytes();b.session.md5.update(d);b.session.sha1.update(d)}if(c.fragment.length()<=
655 +l.MaxFragment)d=[c];else{for(var d=[],e=c.fragment.bytes();e.length>l.MaxFragment;)d.push(l.createRecord(b,{type:c.type,data:a.util.createBuffer(e.slice(0,l.MaxFragment))})),e=e.slice(l.MaxFragment);0<e.length&&d.push(l.createRecord(b,{type:c.type,data:a.util.createBuffer(e)}))}for(e=0;e<d.length&&!b.fail;++e){var h=d[e];b.state.current.write.update(b,h)&&b.records.push(h)}}};l.flush=function(a){for(var b=0;b<a.records.length;++b){var c=a.records[b];a.tlsData.putByte(c.type);a.tlsData.putByte(c.version.major);
656 +a.tlsData.putByte(c.version.minor);a.tlsData.putInt16(c.fragment.length());a.tlsData.putBuffer(a.records[b].fragment)}a.records=[];return a.tlsDataReady(a)};var Z=function(b){switch(b){case !0:return!0;case a.pki.certificateError.bad_certificate:return l.Alert.Description.bad_certificate;case a.pki.certificateError.unsupported_certificate:return l.Alert.Description.unsupported_certificate;case a.pki.certificateError.certificate_revoked:return l.Alert.Description.certificate_revoked;case a.pki.certificateError.certificate_expired:return l.Alert.Description.certificate_expired;
657 +case a.pki.certificateError.certificate_unknown:return l.Alert.Description.certificate_unknown;case a.pki.certificateError.unknown_ca:return l.Alert.Description.unknown_ca;default:return l.Alert.Description.bad_certificate}},N=function(b){switch(b){case !0:return!0;case l.Alert.Description.bad_certificate:return a.pki.certificateError.bad_certificate;case l.Alert.Description.unsupported_certificate:return a.pki.certificateError.unsupported_certificate;case l.Alert.Description.certificate_revoked:return a.pki.certificateError.certificate_revoked;
658 +case l.Alert.Description.certificate_expired:return a.pki.certificateError.certificate_expired;case l.Alert.Description.certificate_unknown:return a.pki.certificateError.certificate_unknown;case l.Alert.Description.unknown_ca:return a.pki.certificateError.unknown_ca;default:return a.pki.certificateError.bad_certificate}};l.verifyCertificateChain=function(b,c){try{a.pki.verifyCertificateChain(b.caStore,c,function(c,d,e){Z(c);d=b.verify(b,c,d,e);if(!0!==d){if("object"===typeof d&&!a.util.isArray(d))throw c=
659 +Error("The application rejected the certificate."),c.send=!0,c.alert={level:l.Alert.Level.fatal,description:l.Alert.Description.bad_certificate},d.message&&(c.message=d.message),d.alert&&(c.alert.description=d.alert),c;d!==c&&(d=N(d))}return d})}catch(d){var e=d;if("object"!==typeof e||a.util.isArray(e))e={send:!0,alert:{level:l.Alert.Level.fatal,description:Z(d)}};"send"in e||(e.send=!0);"alert"in e||(e.alert={level:l.Alert.Level.fatal,description:Z(e.error)});b.error(b,e)}return!b.fail};l.createSessionCache=
660 +function(b,c){var d=null;if(b&&b.getSession&&b.setSession&&b.order)d=b;else{d={};d.cache=b||{};d.capacity=Math.max(c||100,1);d.order=[];for(var e in b)d.order.length<=c?d.order.push(e):delete b[e];d.getSession=function(b){var c=null,e=null;b?e=a.util.bytesToHex(b):0<d.order.length&&(e=d.order[0]);if(null!==e&&e in d.cache){c=d.cache[e];delete d.cache[e];for(var h in d.order)if(d.order[h]===e){d.order.splice(h,1);break}}return c};d.setSession=function(b,c){if(d.order.length===d.capacity){var e=d.order.shift();
661 +delete d.cache[e]}e=a.util.bytesToHex(b);d.order.push(e);d.cache[e]=c}}return d};l.createConnection=function(b){var c=null,c=b.caStore?a.util.isArray(b.caStore)?a.pki.createCaStore(b.caStore):b.caStore:a.pki.createCaStore(),d=b.cipherSuites||null;if(null===d){var d=[],e;for(e in l.CipherSuites)d.push(l.CipherSuites[e])}e=b.server?l.ConnectionEnd.server:l.ConnectionEnd.client;var h=b.sessionCache?l.createSessionCache(b.sessionCache):null,g={version:{major:l.Version.major,minor:l.Version.minor},entity:e,
662 +sessionId:b.sessionId,caStore:c,sessionCache:h,cipherSuites:d,connected:b.connected,virtualHost:b.virtualHost||null,verifyClient:b.verifyClient||!1,verify:b.verify||function(a,b,c,d){return b},getCertificate:b.getCertificate||null,getPrivateKey:b.getPrivateKey||null,getSignature:b.getSignature||null,input:a.util.createBuffer(),tlsData:a.util.createBuffer(),data:a.util.createBuffer(),tlsDataReady:b.tlsDataReady,dataReady:b.dataReady,heartbeatReceived:b.heartbeatReceived,closed:b.closed,error:function(a,
663 +c){c.origin=c.origin||(a.entity===l.ConnectionEnd.client?"client":"server");c.send&&(l.queue(a,l.createAlert(a,c.alert)),l.flush(a));var d=!1!==c.fatal;d&&(a.fail=!0);b.error(a,c);d&&a.close(!1)},deflate:b.deflate||null,inflate:b.inflate||null,reset:function(a){g.version={major:l.Version.major,minor:l.Version.minor};g.record=null;g.session=null;g.peerCertificate=null;g.state={pending:null,current:null};g.expect=0;g.fragmented=null;g.records=[];g.open=!1;g.handshakes=0;g.handshaking=!1;g.isConnected=
664 +!1;g.fail=!(a||"undefined"===typeof a);g.input.clear();g.tlsData.clear();g.data.clear();g.state.current=l.createConnectionState(g)}};g.reset();g.handshake=function(b){if(g.entity!==l.ConnectionEnd.client)g.error(g,{message:"Cannot initiate handshake as a server.",fatal:!1});else if(g.handshaking)g.error(g,{message:"Handshake already in progress.",fatal:!1});else{g.fail&&!g.open&&0===g.handshakes&&(g.fail=!1);g.handshaking=!0;b=b||"";var c=null;0<b.length&&(g.sessionCache&&(c=g.sessionCache.getSession(b)),
665 +null===c&&(b=""));0===b.length&&g.sessionCache&&(c=g.sessionCache.getSession(),null!==c&&(b=c.id));g.session={id:b,version:null,cipherSuite:null,compressionMethod:null,serverCertificate:null,certificateRequest:null,clientCertificate:null,sp:{},md5:a.md.md5.create(),sha1:a.md.sha1.create()};c&&(g.version=c.version,g.session.sp=c.sp);g.session.sp.client_random=l.createRandom().getBytes();g.open=!0;l.queue(g,l.createRecord(g,{type:l.ContentType.handshake,data:l.createClientHello(g)}));l.flush(g)}};g.process=
666 +function(b){var c=0;b&&g.input.putBytes(b);if(!g.fail){null!==g.record&&g.record.ready&&g.record.fragment.isEmpty()&&(g.record=null);if(null===g.record){c=0;b=g.input;var d=b.length();5>d?c=5-d:(g.record={type:b.getByte(),version:{major:b.getByte(),minor:b.getByte()},length:b.getInt16(),fragment:a.util.createBuffer(),ready:!1},(b=g.record.version.major===g.version.major)&&g.session&&g.session.version&&(b=g.record.version.minor===g.version.minor),b||g.error(g,{message:"Incompatible TLS version.",send:!0,
667 +alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.protocol_version}}))}if(!g.fail&&null!==g.record&&!g.record.ready){c=g;b=0;var d=c.input,e=d.length();e<c.record.length?b=c.record.length-e:(c.record.fragment.putBytes(d.getBytes(c.record.length)),d.compact(),c.state.current.read.update(c,c.record)&&(null!==c.fragmented&&(c.fragmented.type===c.record.type?(c.fragmented.fragment.putBuffer(c.record.fragment),c.record=c.fragmented):c.error(c,{message:"Invalid fragmented record.",send:!0,
668 +alert:{level:l.Alert.Level.fatal,description:l.Alert.Description.unexpected_message}})),c.record.ready=!0));c=b}if(!g.fail&&null!==g.record&&g.record.ready)if(b=g.record,d=b.type-l.ContentType.change_cipher_spec,e=S[g.entity][g.expect],d in e)e[d](g,b);else l.handleUnexpected(g,b)}return c};g.prepare=function(b){l.queue(g,l.createRecord(g,{type:l.ContentType.application_data,data:a.util.createBuffer(b)}));return l.flush(g)};g.prepareHeartbeatRequest=function(b,c){b instanceof a.util.ByteBuffer&&(b=
669 +b.bytes());"undefined"===typeof c&&(c=b.length);g.expectedHeartbeatPayload=b;l.queue(g,l.createRecord(g,{type:l.ContentType.heartbeat,data:l.createHeartbeat(l.HeartbeatMessageType.heartbeat_request,b,c)}));return l.flush(g)};g.close=function(a){if(!g.fail&&g.sessionCache&&g.session){var b={id:g.session.id,version:g.session.version,sp:g.session.sp};b.sp.keys=null;g.sessionCache.setSession(b.id,b)}if(g.open){g.open=!1;g.input.clear();if(g.isConnected||g.handshaking)g.isConnected=g.handshaking=!1,l.queue(g,
670 +l.createAlert(g,{level:l.Alert.Level.warning,description:l.Alert.Description.close_notify})),l.flush(g);g.closed(g)}g.reset(a)};return g};a.tls=a.tls||{};for(var aa in l)"function"!==typeof l[aa]&&(a.tls[aa]=l[aa]);a.tls.prf_tls1=c;a.tls.hmac_sha1=function(b,c,d){var e=a.hmac.create();e.start("SHA1",b);b=a.util.createBuffer();b.putInt32(c[0]);b.putInt32(c[1]);b.putByte(d.type);b.putByte(d.version.major);b.putByte(d.version.minor);b.putInt16(d.length);b.putBytes(d.fragment.bytes());e.update(b.getBytes());
671 +return e.digest().getBytes()};a.tls.createSessionCache=l.createSessionCache;a.tls.createConnection=l.createConnection}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.tls)return c.tls;c.defined.tls=!0;for(var k=0;k<e.length;++k)e[k](c);return c.tls}},
672 +v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/tls","require module ./asn1 ./hmac ./md ./pem ./pki ./random ./util".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,e,g){e=e.entity===a.tls.ConnectionEnd.client;b.read.cipherState={init:!1,cipher:a.cipher.createDecipher("AES-CBC",
673 +e?g.keys.server_write_key:g.keys.client_write_key),iv:e?g.keys.server_write_IV:g.keys.client_write_IV};b.write.cipherState={init:!1,cipher:a.cipher.createCipher("AES-CBC",e?g.keys.client_write_key:g.keys.server_write_key),iv:e?g.keys.client_write_IV:g.keys.server_write_IV};b.read.cipherFunction=q;b.write.cipherFunction=d;b.read.macLength=b.write.macLength=g.mac_length;b.read.macFunction=b.write.macFunction=l.hmac_sha1}function d(b,c){var g=!1,h=c.macFunction(c.macKey,c.sequenceNumber,b);b.fragment.putBytes(h);
674 +c.updateSequenceNumber();h=b.version.minor===l.Versions.TLS_1_0.minor?c.cipherState.init?null:c.cipherState.iv:a.random.getBytesSync(16);c.cipherState.init=!0;var k=c.cipherState.cipher;k.start({iv:h});b.version.minor>=l.Versions.TLS_1_1.minor&&k.output.putBytes(h);k.update(b.fragment);k.finish(e)&&(b.fragment=k.output,b.length=b.fragment.length(),g=!0);return g}function e(a,b,c){c||(a-=b.length()%a,b.fillWithByte(a-1,a));return!0}function k(a,b,c){a=!0;if(c){c=b.length();for(var d=b.last(),e=c-1-
675 +d;e<c-1;++e)a=a&&b.at(e)==d;a&&b.truncate(d+1)}return a}function q(b,c){var d=!1;++g;d=b.version.minor===l.Versions.TLS_1_0.minor?c.cipherState.init?null:c.cipherState.iv:b.fragment.getBytes(16);c.cipherState.init=!0;var e=c.cipherState.cipher;e.start({iv:d});e.update(b.fragment);var d=e.finish(k),h=c.macLength,m=a.random.getBytesSync(h),p=e.output.length();p>=h?(b.fragment=e.output.getBytes(p-h),m=e.output.getBytes(h)):b.fragment=e.output.getBytes();b.fragment=a.util.createBuffer(b.fragment);b.length=
676 +b.fragment.length();h=c.macFunction(c.macKey,c.sequenceNumber,b);c.updateSequenceNumber();e=c.macKey;p=a.hmac.create();p.start("SHA1",e);p.update(m);m=p.digest().getBytes();p.start(null,null);p.update(h);h=p.digest().getBytes();return m===h&&d}var l=a.tls;l.CipherSuites.TLS_RSA_WITH_AES_128_CBC_SHA={id:[0,47],name:"TLS_RSA_WITH_AES_128_CBC_SHA",initSecurityParameters:function(a){a.bulk_cipher_algorithm=l.BulkCipherAlgorithm.aes;a.cipher_type=l.CipherType.block;a.enc_key_length=16;a.block_length=16;
677 +a.fixed_iv_length=16;a.record_iv_length=16;a.mac_algorithm=l.MACAlgorithm.hmac_sha1;a.mac_length=20;a.mac_key_length=20},initConnectionState:c};l.CipherSuites.TLS_RSA_WITH_AES_256_CBC_SHA={id:[0,53],name:"TLS_RSA_WITH_AES_256_CBC_SHA",initSecurityParameters:function(a){a.bulk_cipher_algorithm=l.BulkCipherAlgorithm.aes;a.cipher_type=l.CipherType.block;a.enc_key_length=32;a.block_length=16;a.fixed_iv_length=16;a.record_iv_length=16;a.mac_algorithm=l.MACAlgorithm.hmac_sha1;a.mac_length=20;a.mac_key_length=
678 +20},initConnectionState:c};var g=0}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.aesCipherSuites)return c.aesCipherSuites;c.defined.aesCipherSuites=!0;for(var k=0;k<e.length;++k)e[k](c);return c.aesCipherSuites}},v=a;a=function(b,c){q="string"===
679 +typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/aesCipherSuites",["require","module","./aes","./tls"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.debug=a.debug||{};a.debug.storage={};a.debug.get=function(b,c){var d;"undefined"===typeof b?d=a.debug.storage:b in a.debug.storage&&(d="undefined"===typeof c?a.debug.storage[b]:
680 +a.debug.storage[b][c]);return d};a.debug.set=function(b,c,d){b in a.debug.storage||(a.debug.storage[b]={});a.debug.storage[b][c]=d};a.debug.clear=function(b,c){"undefined"===typeof b?a.debug.storage={}:b in a.debug.storage&&("undefined"===typeof c?delete a.debug.storage[b]:delete a.debug.storage[b][c])}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=
681 +function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.debug)return c.debug;c.defined.debug=!0;for(var k=0;k<e.length;++k)e[k](c);return c.debug}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/debug",["require","module"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();
682 +(function(){function b(a){function c(b,d,e,h){b.generate=function(b,c){for(var k=new a.util.ByteBuffer,m=Math.ceil(c/h)+e,p=new a.util.ByteBuffer,q=e;q<m;++q){p.putInt32(q);d.start();d.update(b+p.getBytes());var v=d.digest();k.putBytes(v.getBytes(h))}k.truncate(k.length()-c);return k.getBytes()}}a.kem=a.kem||{};var d=a.jsbn.BigInteger;a.kem.rsa={};a.kem.rsa.create=function(b,c){c=c||{};var e=c.prng||a.random;return{encrypt:function(c,g){var k=Math.ceil(c.n.bitLength()/8),p;do p=(new d(a.util.bytesToHex(e.getBytesSync(k)),
683 +16)).mod(c.n);while(p.equals(d.ZERO));p=a.util.hexToBytes(p.toString(16));k-=p.length;0<k&&(p=a.util.fillString(String.fromCharCode(0),k)+p);k=c.encrypt(p,"NONE");p=b.generate(p,g);return{encapsulation:k,key:p}},decrypt:function(a,c,d){a=a.decrypt(c,"NONE");return b.generate(a,d)}}};a.kem.kdf1=function(a,b){c(this,a,0,b||a.digestLength)};a.kem.kdf2=function(a,b){c(this,a,1,b||a.digestLength)}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===
684 +typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.kem)return c.kem;c.defined.kem=!0;for(var k=0;k<e.length;++k)e[k](c);return c.kem}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/kem",["require","module","./util","./random",
685 +"./jsbn"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){a.log=a.log||{};a.log.levels="none error warning info debug verbose max".split(" ");var c={},d=[],e=null;a.log.LEVEL_LOCKED=2;a.log.NO_LEVEL_CHECK=4;a.log.INTERPOLATE=8;for(var k=0;k<a.log.levels.length;++k){var q=a.log.levels[k];c[q]={index:k,name:q.toUpperCase()}}a.log.logMessage=function(b){for(var e=c[b.level].index,l=0;l<d.length;++l){var k=d[l];k.flags&a.log.NO_LEVEL_CHECK?k.f(b):e<=c[k.level].index&&
686 +k.f(k,b)}};a.log.prepareStandard=function(a){"standard"in a||(a.standard=c[a.level].name+" ["+a.category+"] "+a.message)};a.log.prepareFull=function(b){if(!("full"in b)){var c=[b.message],c=c.concat([]);b.full=a.util.format.apply(this,c)}};a.log.prepareStandardFull=function(b){"standardFull"in b||(a.log.prepareStandard(b),b.standardFull=b.standard)};q=["error","warning","info","debug","verbose"];for(k=0;k<q.length;++k)(function(b){a.log[b]=function(c,d){var e=Array.prototype.slice.call(arguments).slice(2);
687 +a.log.logMessage({timestamp:new Date,level:b,category:c,message:d,arguments:e})}})(q[k]);a.log.makeLogger=function(b){b={flags:0,f:b};a.log.setLevel(b,"none");return b};a.log.setLevel=function(b,c){var d=!1;if(b&&!(b.flags&a.log.LEVEL_LOCKED))for(var e=0;e<a.log.levels.length;++e)if(c==a.log.levels[e]){b.level=c;d=!0;break}return d};a.log.lock=function(b,c){b.flags="undefined"===typeof c||c?b.flags|a.log.LEVEL_LOCKED:b.flags&~a.log.LEVEL_LOCKED};a.log.addLogger=function(a){d.push(a)};if("undefined"!==
688 +typeof console&&"log"in console){if(console.error&&console.warn&&console.info&&console.debug)var l={error:console.error,warning:console.warn,info:console.info,debug:console.debug,verbose:console.debug},e=function(b,c){a.log.prepareStandard(c);var d=l[c.level],e=[c.standard],e=e.concat(c.arguments.slice());d.apply(console,e)};else e=function(b,c){a.log.prepareStandardFull(c);console.log(c.standardFull)};e=a.log.makeLogger(e);a.log.setLevel(e,"debug");a.log.addLogger(e)}else console={log:function(){}};
689 +null!==e&&(k=a.util.getQueryVariables(),"console.level"in k&&a.log.setLevel(e,k["console.level"].slice(-1)[0]),"console.lock"in k&&"true"==k["console.lock"].slice(-1)[0]&&a.log.lock(e));a.log.consoleLogger=e}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.log)return c.log;
690 +c.defined.log=!0;for(var k=0;k<e.length;++k)e[k](c);return c.log}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/log",["require","module","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b){var d={},e=[];if(!u.validate(b,J.asn1.recipientInfoValidator,d,e))throw b=Error("Cannot read PKCS#7 RecipientInfo. ASN.1 object is not an PKCS#7 RecipientInfo."),
691 +b.errors=e,b;return{version:d.version.charCodeAt(0),issuer:a.pki.RDNAttributesAsArray(d.issuer),serialNumber:a.util.createBuffer(d.serial).toHex(),encryptedContent:{algorithm:u.derToOid(d.encAlgorithm),parameter:d.encParameter.value,content:d.encKey}}}function d(b){return u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.INTEGER,!1,u.integerToDer(b.version).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[a.pki.distinguishedNameToAsn1({attributes:b.issuer}),
692 +u.create(u.Class.UNIVERSAL,u.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber))]),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.encryptedContent.algorithm).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.NULL,!1,"")]),u.create(u.Class.UNIVERSAL,u.Type.OCTETSTRING,!1,b.encryptedContent.content)])}function e(a){for(var b=[],c=0;c<a.length;++c)b.push(d(a[c]));return b}function k(b){var c=u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,
693 +u.Type.INTEGER,!1,u.integerToDer(b.version).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[a.pki.distinguishedNameToAsn1({attributes:b.issuer}),u.create(u.Class.UNIVERSAL,u.Type.INTEGER,!1,a.util.hexToBytes(b.serialNumber))]),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.digestAlgorithm).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.NULL,!1,"")])]);b.authenticatedAttributesAsn1&&c.value.push(b.authenticatedAttributesAsn1);c.value.push(u.create(u.Class.UNIVERSAL,
694 +u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.signatureAlgorithm).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.NULL,!1,"")]));c.value.push(u.create(u.Class.UNIVERSAL,u.Type.OCTETSTRING,!1,b.signature));if(0<b.unauthenticatedAttributes.length){for(var d=u.create(u.Class.CONTEXT_SPECIFIC,1,!0,[]),e=0;e<b.unauthenticatedAttributes.length;++e)d.values.push(q(b.unauthenticatedAttributes[e]));c.value.push(d)}return c}function q(b){var c;if(b.type===a.pki.oids.contentType)c=
695 +u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.value).getBytes());else if(b.type===a.pki.oids.messageDigest)c=u.create(u.Class.UNIVERSAL,u.Type.OCTETSTRING,!1,b.value.bytes());else if(b.type===a.pki.oids.signingTime){c=new Date("Jan 1, 1950 00:00:00Z");var d=new Date("Jan 1, 2050 00:00:00Z"),e=b.value;if("string"===typeof e)var g=Date.parse(e),e=isNaN(g)?13===e.length?u.utcTimeToDate(e):u.generalizedTimeToDate(e):new Date(g);c=e>=c&&e<d?u.create(u.Class.UNIVERSAL,u.Type.UTCTIME,!1,u.dateToUtcTime(e)):
696 +u.create(u.Class.UNIVERSAL,u.Type.GENERALIZEDTIME,!1,u.dateToGeneralizedTime(e))}return u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.type).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SET,!0,[c])])}function l(b){return[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(a.pki.oids.data).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.algorithm).getBytes()),u.create(u.Class.UNIVERSAL,
697 +u.Type.OCTETSTRING,!1,b.parameter.getBytes())]),u.create(u.Class.CONTEXT_SPECIFIC,0,!0,[u.create(u.Class.UNIVERSAL,u.Type.OCTETSTRING,!1,b.content.getBytes())])]}function g(b,c,d){var e={};if(!u.validate(c,d,e,[]))throw b=Error("Cannot read PKCS#7 message. ASN.1 object is not a supported PKCS#7 message."),b.errors=b,b;if(u.derToOid(e.contentType)!==a.pki.oids.data)throw Error("Unsupported PKCS#7 message. Only wrapped ContentType Data supported.");if(e.encryptedContent){c="";if(a.util.isArray(e.encryptedContent))for(d=
698 +0;d<e.encryptedContent.length;++d){if(e.encryptedContent[d].type!==u.Type.OCTETSTRING)throw Error("Malformed PKCS#7 message, expecting encrypted content constructed of only OCTET STRING objects.");c+=e.encryptedContent[d].value}else c=e.encryptedContent;b.encryptedContent={algorithm:u.derToOid(e.encAlgorithm),parameter:a.util.createBuffer(e.encParameter.value),content:a.util.createBuffer(c)}}if(e.content){c="";if(a.util.isArray(e.content))for(d=0;d<e.content.length;++d){if(e.content[d].type!==u.Type.OCTETSTRING)throw Error("Malformed PKCS#7 message, expecting content constructed of only OCTET STRING objects.");
699 +c+=e.content[d].value}else c=e.content;b.content=a.util.createBuffer(c)}b.version=e.version.charCodeAt(0);return b.rawCapture=e}function v(b){if(void 0===b.encryptedContent.key)throw Error("Symmetric key not available.");if(void 0===b.content){var c;switch(b.encryptedContent.algorithm){case a.pki.oids["aes128-CBC"]:case a.pki.oids["aes192-CBC"]:case a.pki.oids["aes256-CBC"]:c=a.aes.createDecryptionCipher(b.encryptedContent.key);break;case a.pki.oids.desCBC:case a.pki.oids["des-EDE3-CBC"]:c=a.des.createDecryptionCipher(b.encryptedContent.key);
700 +break;default:throw Error("Unsupported symmetric cipher, OID "+b.encryptedContent.algorithm);}c.start(b.encryptedContent.parameter);c.update(b.encryptedContent.content);if(!c.finish())throw Error("Symmetric decryption failed.");b.content=c.output}}var u=a.asn1,J=a.pkcs7=a.pkcs7||{};J.messageFromPem=function(b){b=a.pem.decode(b)[0];if("PKCS7"!==b.type){var c=Error('Could not convert PKCS#7 message from PEM; PEM header type is not "PKCS#7".');c.headerType=b.type;throw c;}if(b.procType&&"ENCRYPTED"===
701 +b.procType.type)throw Error("Could not convert PKCS#7 message from PEM; PEM is encrypted.");b=u.fromDer(b.body);return J.messageFromAsn1(b)};J.messageToPem=function(b,c){var d={type:"PKCS7",body:u.toDer(b.toAsn1()).getBytes()};return a.pem.encode(d,{maxline:c})};J.messageFromAsn1=function(b){var c={},d=[];if(!u.validate(b,J.asn1.contentInfoValidator,c,d))throw c=Error("Cannot read PKCS#7 message. ASN.1 object is not an PKCS#7 ContentInfo."),c.errors=d,c;d=u.derToOid(c.contentType);switch(d){case a.pki.oids.envelopedData:d=
702 +J.createEnvelopedData();break;case a.pki.oids.encryptedData:d=J.createEncryptedData();break;case a.pki.oids.signedData:d=J.createSignedData();break;default:throw Error("Cannot read PKCS#7 message. ContentType with OID "+d+" is not (yet) supported.");}d.fromAsn1(c.content.value[0]);return d};J.createSignedData=function(){var b=null;return b={type:a.pki.oids.signedData,version:1,certificates:[],crls:[],signers:[],digestAlgorithmIdentifiers:[],contentInfo:null,signerInfos:[],fromAsn1:function(c){g(b,
703 +c,J.asn1.signedDataValidator);b.certificates=[];b.crls=[];b.digestAlgorithmIdentifiers=[];b.contentInfo=null;b.signerInfos=[];c=b.rawCapture.certificates.value;for(var d=0;d<c.length;++d)b.certificates.push(a.pki.certificateFromAsn1(c[d]))},toAsn1:function(){b.contentInfo||b.sign();for(var c=[],d=0;d<b.certificates.length;++d)c.push(a.pki.certificateToAsn1(b.certificates[d]));var d=[],e=u.create(u.Class.CONTEXT_SPECIFIC,0,!0,[u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,
704 +u.Type.INTEGER,!1,u.integerToDer(b.version).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SET,!0,b.digestAlgorithmIdentifiers),b.contentInfo])]);0<c.length&&e.value[0].value.push(u.create(u.Class.CONTEXT_SPECIFIC,0,!0,c));0<d.length&&e.value[0].value.push(u.create(u.Class.CONTEXT_SPECIFIC,1,!0,d));e.value[0].value.push(u.create(u.Class.UNIVERSAL,u.Type.SET,!0,b.signerInfos));return u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.type).getBytes()),
705 e])},addSigner:function(c){var d=c.issuer,e=c.serialNumber;c.certificate&&(e=c.certificate,"string"===typeof e&&(e=a.pki.certificateFromPem(e)),d=e.issuer.attributes,e=e.serialNumber);var g=c.key;if(!g)throw Error("Could not add PKCS#7 signer; no private key specified.");"string"===typeof g&&(g=a.pki.privateKeyFromPem(g));var h=c.digestAlgorithm||a.pki.oids.sha1;switch(h){case a.pki.oids.sha1:case a.pki.oids.sha256:case a.pki.oids.sha384:case a.pki.oids.sha512:case a.pki.oids.md5:break;default:throw Error("Could not add PKCS#7 signer; unknown message digest algorithm: "+
706 -h);}c=c.authenticatedAttributes||[];if(0<c.length){for(var k=!1,l=!1,n=0;n<c.length;++n){var q=c[n];if(!k&&q.type===a.pki.oids.contentType){if(k=!0,l)break}else if(!l&&q.type===a.pki.oids.messageDigest&&(l=!0,k))break}if(!k||!l)throw Error("Invalid signer.authenticatedAttributes. If signer.authenticatedAttributes is specified, then it must contain at least two attributes, PKCS #9 content-type and PKCS #9 message-digest.");}b.signers.push({key:g,version:1,issuer:d,serialNumber:e,digestAlgorithm:h,
707 -signatureAlgorithm:a.pki.oids.rsaEncryption,signature:null,authenticatedAttributes:c,unauthenticatedAttributes:[]})},sign:function(){if("object"!==typeof b.content||null===b.contentInfo)if(b.contentInfo=q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(a.pki.oids.data).getBytes())]),"content"in b){var c;b.content instanceof a.util.ByteBuffer?c=b.content.bytes():"string"===typeof b.content&&(c=a.util.encodeUtf8(b.content));b.contentInfo.value.push(q.create(q.Class.CONTEXT_SPECIFIC,
708 -0,!0,[q.create(q.Class.UNIVERSAL,q.Type.OCTETSTRING,!1,c)]))}if(0!==b.signers.length){c={};for(var d=0;d<b.signers.length;++d){var e=b.signers[d],g=e.digestAlgorithm;g in c||(c[g]=a.md[a.pki.oids[g]].create());e.md=0===e.authenticatedAttributes.length?c[g]:a.md[a.pki.oids[g]].create()}b.digestAlgorithmIdentifiers=[];for(g in c)b.digestAlgorithmIdentifiers.push(q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(g).getBytes()),q.create(q.Class.UNIVERSAL,
709 -q.Type.NULL,!1,"")]));if(2>b.contentInfo.value.length)throw Error("Could not sign PKCS#7 message; there is no content to sign.");var g=q.derToOid(b.contentInfo.value[0].value),d=b.contentInfo.value[1],d=d.value[0],h=q.toDer(d);h.getByte();q.getBerValueLength(h);var h=h.getBytes(),k;for(k in c)c[k].start().update(h);k=new Date;for(d=0;d<b.signers.length;++d){e=b.signers[d];if(0===e.authenticatedAttributes.length){if(g!==a.pki.oids.data)throw Error("Invalid signer; authenticatedAttributes must be present when the ContentInfo content type is not PKCS#7 Data.");
710 -}else{e.authenticatedAttributesAsn1=q.create(q.Class.CONTEXT_SPECIFIC,0,!0,[]);for(var h=q.create(q.Class.UNIVERSAL,q.Type.SET,!0,[]),l=0;l<e.authenticatedAttributes.length;++l){var r=e.authenticatedAttributes[l];r.type===a.pki.oids.messageDigest?r.value=c[e.digestAlgorithm].digest():r.type!==a.pki.oids.signingTime||r.value||(r.value=k);h.value.push(p(r));e.authenticatedAttributesAsn1.value.push(p(r))}h=q.toDer(h).getBytes();e.md.start().update(h)}e.signature=e.key.sign(e.md,"RSASSA-PKCS1-V1_5")}c=
711 -b;g=b.signers;k=[];for(d=0;d<g.length;++d)k.push(n(g[d]));c.signerInfos=k}},verify:function(){throw Error("PKCS#7 signature verification not yet implemented.");},addCertificate:function(c){"string"===typeof c&&(c=a.pki.certificateFromPem(c));b.certificates.push(c)},addCertificateRevokationList:function(a){throw Error("PKCS#7 CRL support not yet implemented.");}}};C.createEncryptedData=function(){var b=null;return b={type:a.pki.oids.encryptedData,version:0,encryptedContent:{algorithm:a.pki.oids["aes256-CBC"]},
712 -fromAsn1:function(a){h(b,a,C.asn1.encryptedDataValidator)},decrypt:function(a){void 0!==a&&(b.encryptedContent.key=a);r(b)}}};C.createEnvelopedData=function(){var b=null;return b={type:a.pki.oids.envelopedData,version:0,recipients:[],encryptedContent:{algorithm:a.pki.oids["aes256-CBC"]},fromAsn1:function(a){var d=h(b,a,C.asn1.envelopedDataValidator);a=b;for(var d=d.recipientInfos.value,e=[],k=0;k<d.length;++k)e.push(c(d[k]));a.recipients=e},toAsn1:function(){return q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,
713 -!0,[q.create(q.Class.UNIVERSAL,q.Type.OID,!1,q.oidToDer(b.type).getBytes()),q.create(q.Class.CONTEXT_SPECIFIC,0,!0,[q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,[q.create(q.Class.UNIVERSAL,q.Type.INTEGER,!1,q.integerToDer(b.version).getBytes()),q.create(q.Class.UNIVERSAL,q.Type.SET,!0,e(b.recipients)),q.create(q.Class.UNIVERSAL,q.Type.SEQUENCE,!0,k(b.encryptedContent))])])])},findRecipient:function(a){for(var c=a.issuer.attributes,d=0;d<b.recipients.length;++d){var e=b.recipients[d],g=e.issuer;if(e.serialNumber===
714 -a.serialNumber&&g.length===c.length){for(var h=!0,k=0;k<c.length;++k)if(g[k].type!==c[k].type||g[k].value!==c[k].value){h=!1;break}if(h)return e}}return null},decrypt:function(c,d){if(void 0===b.encryptedContent.key&&void 0!==c&&void 0!==d)switch(c.encryptedContent.algorithm){case a.pki.oids.rsaEncryption:case a.pki.oids.desCBC:var e=d.decrypt(c.encryptedContent.content);b.encryptedContent.key=a.util.createBuffer(e);break;default:throw Error("Unsupported asymmetric cipher, OID "+c.encryptedContent.algorithm);
715 -}r(b)},addRecipient:function(c){b.recipients.push({version:0,issuer:c.issuer.attributes,serialNumber:c.serialNumber,encryptedContent:{algorithm:a.pki.oids.rsaEncryption,key:c.publicKey}})},encrypt:function(c,d){if(void 0===b.encryptedContent.content){d=d||b.encryptedContent.algorithm;c=c||b.encryptedContent.key;var e,g,h;switch(d){case a.pki.oids["aes128-CBC"]:g=e=16;h=a.aes.createEncryptionCipher;break;case a.pki.oids["aes192-CBC"]:e=24;g=16;h=a.aes.createEncryptionCipher;break;case a.pki.oids["aes256-CBC"]:e=
706 +h);}c=c.authenticatedAttributes||[];if(0<c.length){for(var l=!1,k=!1,m=0;m<c.length;++m){var p=c[m];if(!l&&p.type===a.pki.oids.contentType){if(l=!0,k)break}else if(!k&&p.type===a.pki.oids.messageDigest&&(k=!0,l))break}if(!l||!k)throw Error("Invalid signer.authenticatedAttributes. If signer.authenticatedAttributes is specified, then it must contain at least two attributes, PKCS #9 content-type and PKCS #9 message-digest.");}b.signers.push({key:g,version:1,issuer:d,serialNumber:e,digestAlgorithm:h,
707 +signatureAlgorithm:a.pki.oids.rsaEncryption,signature:null,authenticatedAttributes:c,unauthenticatedAttributes:[]})},sign:function(){if("object"!==typeof b.content||null===b.contentInfo)if(b.contentInfo=u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(a.pki.oids.data).getBytes())]),"content"in b){var c;b.content instanceof a.util.ByteBuffer?c=b.content.bytes():"string"===typeof b.content&&(c=a.util.encodeUtf8(b.content));b.contentInfo.value.push(u.create(u.Class.CONTEXT_SPECIFIC,
708 +0,!0,[u.create(u.Class.UNIVERSAL,u.Type.OCTETSTRING,!1,c)]))}if(0!==b.signers.length){c={};for(var d=0;d<b.signers.length;++d){var e=b.signers[d],g=e.digestAlgorithm;g in c||(c[g]=a.md[a.pki.oids[g]].create());e.md=0===e.authenticatedAttributes.length?c[g]:a.md[a.pki.oids[g]].create()}b.digestAlgorithmIdentifiers=[];for(g in c)b.digestAlgorithmIdentifiers.push(u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(g).getBytes()),u.create(u.Class.UNIVERSAL,
709 +u.Type.NULL,!1,"")]));if(2>b.contentInfo.value.length)throw Error("Could not sign PKCS#7 message; there is no content to sign.");var g=u.derToOid(b.contentInfo.value[0].value),d=b.contentInfo.value[1],d=d.value[0],h=u.toDer(d);h.getByte();u.getBerValueLength(h);var h=h.getBytes(),l;for(l in c)c[l].start().update(h);l=new Date;for(d=0;d<b.signers.length;++d){e=b.signers[d];if(0===e.authenticatedAttributes.length){if(g!==a.pki.oids.data)throw Error("Invalid signer; authenticatedAttributes must be present when the ContentInfo content type is not PKCS#7 Data.");
710 +}else{e.authenticatedAttributesAsn1=u.create(u.Class.CONTEXT_SPECIFIC,0,!0,[]);for(var h=u.create(u.Class.UNIVERSAL,u.Type.SET,!0,[]),m=0;m<e.authenticatedAttributes.length;++m){var p=e.authenticatedAttributes[m];p.type===a.pki.oids.messageDigest?p.value=c[e.digestAlgorithm].digest():p.type!==a.pki.oids.signingTime||p.value||(p.value=l);h.value.push(q(p));e.authenticatedAttributesAsn1.value.push(q(p))}h=u.toDer(h).getBytes();e.md.start().update(h)}e.signature=e.key.sign(e.md,"RSASSA-PKCS1-V1_5")}c=
711 +b;g=b.signers;l=[];for(d=0;d<g.length;++d)l.push(k(g[d]));c.signerInfos=l}},verify:function(){throw Error("PKCS#7 signature verification not yet implemented.");},addCertificate:function(c){"string"===typeof c&&(c=a.pki.certificateFromPem(c));b.certificates.push(c)},addCertificateRevokationList:function(a){throw Error("PKCS#7 CRL support not yet implemented.");}}};J.createEncryptedData=function(){var b=null;return b={type:a.pki.oids.encryptedData,version:0,encryptedContent:{algorithm:a.pki.oids["aes256-CBC"]},
712 +fromAsn1:function(a){g(b,a,J.asn1.encryptedDataValidator)},decrypt:function(a){void 0!==a&&(b.encryptedContent.key=a);v(b)}}};J.createEnvelopedData=function(){var b=null;return b={type:a.pki.oids.envelopedData,version:0,recipients:[],encryptedContent:{algorithm:a.pki.oids["aes256-CBC"]},fromAsn1:function(a){var d=g(b,a,J.asn1.envelopedDataValidator);a=b;for(var d=d.recipientInfos.value,e=[],h=0;h<d.length;++h)e.push(c(d[h]));a.recipients=e},toAsn1:function(){return u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,
713 +!0,[u.create(u.Class.UNIVERSAL,u.Type.OID,!1,u.oidToDer(b.type).getBytes()),u.create(u.Class.CONTEXT_SPECIFIC,0,!0,[u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,[u.create(u.Class.UNIVERSAL,u.Type.INTEGER,!1,u.integerToDer(b.version).getBytes()),u.create(u.Class.UNIVERSAL,u.Type.SET,!0,e(b.recipients)),u.create(u.Class.UNIVERSAL,u.Type.SEQUENCE,!0,l(b.encryptedContent))])])])},findRecipient:function(a){for(var c=a.issuer.attributes,d=0;d<b.recipients.length;++d){var e=b.recipients[d],g=e.issuer;if(e.serialNumber===
714 +a.serialNumber&&g.length===c.length){for(var h=!0,l=0;l<c.length;++l)if(g[l].type!==c[l].type||g[l].value!==c[l].value){h=!1;break}if(h)return e}}return null},decrypt:function(c,d){if(void 0===b.encryptedContent.key&&void 0!==c&&void 0!==d)switch(c.encryptedContent.algorithm){case a.pki.oids.rsaEncryption:case a.pki.oids.desCBC:var e=d.decrypt(c.encryptedContent.content);b.encryptedContent.key=a.util.createBuffer(e);break;default:throw Error("Unsupported asymmetric cipher, OID "+c.encryptedContent.algorithm);
715 +}v(b)},addRecipient:function(c){b.recipients.push({version:0,issuer:c.issuer.attributes,serialNumber:c.serialNumber,encryptedContent:{algorithm:a.pki.oids.rsaEncryption,key:c.publicKey}})},encrypt:function(c,d){if(void 0===b.encryptedContent.content){d=d||b.encryptedContent.algorithm;c=c||b.encryptedContent.key;var e,g,h;switch(d){case a.pki.oids["aes128-CBC"]:g=e=16;h=a.aes.createEncryptionCipher;break;case a.pki.oids["aes192-CBC"]:e=24;g=16;h=a.aes.createEncryptionCipher;break;case a.pki.oids["aes256-CBC"]:e=
716 32;g=16;h=a.aes.createEncryptionCipher;break;case a.pki.oids["des-EDE3-CBC"]:e=24;g=8;h=a.des.createEncryptionCipher;break;default:throw Error("Unsupported symmetric cipher, OID "+d);}if(void 0===c)c=a.util.createBuffer(a.random.getBytes(e));else if(c.length()!=e)throw Error("Symmetric key has wrong length; got "+c.length()+" bytes, expected "+e+".");b.encryptedContent.algorithm=d;b.encryptedContent.key=c;b.encryptedContent.parameter=a.util.createBuffer(a.random.getBytes(g));e=h(c);e.start(b.encryptedContent.parameter.copy());
717 e.update(b.content);if(!e.finish())throw Error("Symmetric encryption failed.");b.encryptedContent.content=e.output}for(e=0;e<b.recipients.length;++e)if(g=b.recipients[e],void 0===g.encryptedContent.content)switch(g.encryptedContent.algorithm){case a.pki.oids.rsaEncryption:g.encryptedContent.content=g.encryptedContent.key.encrypt(b.encryptedContent.key.data);break;default:throw Error("Unsupported asymmetric cipher, OID "+g.encryptedContent.algorithm);}}}}}if("function"!==typeof a)if("object"===typeof module&&
718 -module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs7)return c.pkcs7;c.defined.pkcs7=!0;for(var g=0;g<e.length;++g)e[g](c);return c.pkcs7}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,
719 -Array.prototype.slice.call(arguments,0))};a("js/pkcs7","require module ./aes ./asn1 ./des ./oids ./pem ./pkcs7asn1 ./random ./util ./x509".split(" "),function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d){var e=d.toString(16);"8"<=e[0]&&(e="00"+e);e=a.util.hexToBytes(e);b.putInt32(e.length);b.putBytes(e)}function d(a,b){a.putInt32(b.length);a.putString(b)}function e(){for(var b=a.md.sha1.create(),c=arguments.length,d=0;d<c;++d)b.update(arguments[d]);
720 -return b.digest()}var n=a.ssh=a.ssh||{};n.privateKeyToPutty=function(b,k,h){h=h||"";k=k||"";var n=""===k?"none":"aes256-cbc",q;q="PuTTY-User-Key-File-2: ssh-rsa\r\n"+("Encryption: "+n+"\r\n")+("Comment: "+h+"\r\n");var p=a.util.createBuffer();d(p,"ssh-rsa");c(p,b.e);c(p,b.n);var r=a.util.encode64(p.bytes(),64),v=Math.floor(r.length/66)+1;q+="Public-Lines: "+v+"\r\n";q+=r;r=a.util.createBuffer();c(r,b.d);c(r,b.p);c(r,b.q);c(r,b.qInv);k?(v=r.length()+16-1,v-=v%16,b=e(r.bytes()),b.truncate(b.length()-
721 -v+r.length()),r.putBuffer(b),v=a.util.createBuffer(),v.putBuffer(e("\x00\x00\x00\x00",k)),v.putBuffer(e("\x00\x00\x00\u0001",k)),v=a.aes.createEncryptionCipher(v.truncate(8),"CBC"),v.start(a.util.createBuffer().fillWithByte(0,16)),v.update(r.copy()),v.finish(),v=v.output,v.truncate(16),b=a.util.encode64(v.bytes(),64)):b=a.util.encode64(r.bytes(),64);v=Math.floor(b.length/66)+1;q+="\r\nPrivate-Lines: "+v+"\r\n";q+=b;k=e("putty-private-key-file-mac-key",k);v=a.util.createBuffer();d(v,"ssh-rsa");d(v,
722 -n);d(v,h);v.putInt32(p.length());v.putBuffer(p);v.putInt32(r.length());v.putBuffer(r);h=a.hmac.create();h.start("sha1",k);h.update(v.bytes());return q+="\r\nPrivate-MAC: "+h.digest().toHex()+"\r\n"};n.publicKeyToOpenSSH=function(b,e){e=e||"";var h=a.util.createBuffer();d(h,"ssh-rsa");c(h,b.e);c(h,b.n);return"ssh-rsa "+a.util.encode64(h.bytes())+" "+e};n.privateKeyToOpenSSH=function(b,c){return c?a.pki.encryptRsaPrivateKey(b,c,{legacy:!0,algorithm:"aes128"}):a.pki.privateKeyToPem(b)};n.getPublicKeyFingerprint=
723 -function(b,e){e=e||{};var h=e.md||a.md.md5.create(),l=a.util.createBuffer();d(l,"ssh-rsa");c(l,b.e);c(l,b.n);h.start();h.update(l.getBytes());h=h.digest();if("hex"===e.encoding)return h=h.toHex(),e.delimiter?h.match(/.{2}/g).join(e.delimiter):h;if("binary"===e.encoding)return h.getBytes();if(e.encoding)throw Error('Unknown encoding "'+e.encoding+'".');return h}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&
724 -(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.ssh)return c.ssh;c.defined.ssh=!0;for(var g=0;g<e.length;++g)e[g](c);return c.ssh}},r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/ssh","require module ./aes ./hmac ./md5 ./sha1 ./util".split(" "),
725 -function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c={},d=0;a.debug.set("forge.task","tasks",c);var e={};a.debug.set("forge.task","queues",e);var n={ready:{}};n.ready.stop="ready";n.ready.start="running";n.ready.cancel="done";n.ready.fail="error";n.running={};n.running.stop="ready";n.running.start="running";n.running.block="blocked";n.running.unblock="running";n.running.sleep="sleeping";n.running.wakeup="running";n.running.cancel="done";n.running.fail=
726 -"error";n.blocked={};n.blocked.stop="blocked";n.blocked.start="blocked";n.blocked.block="blocked";n.blocked.unblock="blocked";n.blocked.sleep="blocked";n.blocked.wakeup="blocked";n.blocked.cancel="done";n.blocked.fail="error";n.sleeping={};n.sleeping.stop="sleeping";n.sleeping.start="sleeping";n.sleeping.block="sleeping";n.sleeping.unblock="sleeping";n.sleeping.sleep="sleeping";n.sleeping.wakeup="sleeping";n.sleeping.cancel="done";n.sleeping.fail="error";n.done={};n.done.stop="done";n.done.start=
727 -"done";n.done.block="done";n.done.unblock="done";n.done.sleep="done";n.done.wakeup="done";n.done.cancel="done";n.done.fail="error";n.error={};n.error.stop="error";n.error.start="error";n.error.block="error";n.error.unblock="error";n.error.sleep="error";n.error.wakeup="error";n.error.cancel="error";n.error.fail="error";var p=function(a){this.id=-1;this.name=a.name||"?";this.parent=a.parent||null;this.run=a.run;this.subtasks=[];this.error=!1;this.state="ready";this.blocks=0;this.userData=this.swapTime=
728 -this.timeoutId=null;this.id=d++;c[this.id]=this};p.prototype.debug=function(b){a.log.debug("forge.task",b||"","[%s][%s] task:",this.id,this.name,this,"subtasks:",this.subtasks.length,"queue:",e)};p.prototype.next=function(a,b){"function"===typeof a&&(b=a,a=this.name);var c=new p({run:b,name:a,parent:this});c.state="running";c.type=this.type;c.successCallback=this.successCallback||null;c.failureCallback=this.failureCallback||null;this.subtasks.push(c);return this};p.prototype.parallel=function(b,c){a.util.isArray(b)&&
729 -(c=b,b=this.name);return this.next(b,function(d){d.block(c.length);for(var e=function(b,e){a.task.start({type:b,run:function(a){c[e](a)},success:function(a){d.unblock()},failure:function(a){d.unblock()}})},g=0;g<c.length;g++)e(b+"__parallel-"+d.id+"-"+g,g)})};p.prototype.stop=function(){this.state=n[this.state].stop};p.prototype.start=function(){this.error=!1;this.state=n[this.state].start;"running"===this.state&&(this.start=new Date,this.run(this),h(this,0))};p.prototype.block=function(a){this.blocks+=
730 -"undefined"===typeof a?1:a;0<this.blocks&&(this.state=n[this.state].block)};p.prototype.unblock=function(a){this.blocks-="undefined"===typeof a?1:a;0===this.blocks&&"done"!==this.state&&(this.state="running",h(this,0));return this.blocks};p.prototype.sleep=function(a){this.state=n[this.state].sleep;var b=this;this.timeoutId=setTimeout(function(){b.timeoutId=null;b.state="running";h(b,0)},"undefined"===typeof a?0:a)};p.prototype.wait=function(a){a.wait(this)};p.prototype.wakeup=function(){"sleeping"===
731 -this.state&&(cancelTimeout(this.timeoutId),this.timeoutId=null,this.state="running",h(this,0))};p.prototype.cancel=function(){this.state=n[this.state].cancel;this.permitsNeeded=0;null!==this.timeoutId&&(cancelTimeout(this.timeoutId),this.timeoutId=null);this.subtasks=[]};p.prototype.fail=function(a){this.error=!0;r(this,!0);if(a)a.error=this.error,a.swapTime=this.swapTime,a.userData=this.userData,h(a,0);else{if(null!==this.parent){for(a=this.parent;null!==a.parent;)a.error=this.error,a.swapTime=this.swapTime,
732 -a.userData=this.userData,a=a.parent;r(a,!0)}this.failureCallback&&this.failureCallback(this)}};var k=function(a){a.error=!1;a.state=n[a.state].start;setTimeout(function(){"running"===a.state&&(a.swapTime=+new Date,a.run(a),h(a,0))},0)},h=function(a,b){var c=30<b||20<+new Date-a.swapTime,d=function(b){b++;if("running"===a.state)if(c&&(a.swapTime=+new Date),0<a.subtasks.length){var d=a.subtasks.shift();d.error=a.error;d.swapTime=a.swapTime;d.userData=a.userData;d.run(d);d.error||h(d,b)}else r(a),a.error||
733 -null===a.parent||(a.parent.error=a.error,a.parent.swapTime=a.swapTime,a.parent.userData=a.userData,h(a.parent,b))};c?setTimeout(d,0):d(b)},r=function(b,d){b.state="done";delete c[b.id];null===b.parent&&(b.type in e?0===e[b.type].length?a.log.error("forge.task","[%s][%s] task queue empty [%s]",b.id,b.name,b.type):e[b.type][0]!==b?a.log.error("forge.task","[%s][%s] task not first in queue [%s]",b.id,b.name,b.type):(e[b.type].shift(),0===e[b.type].length?delete e[b.type]:e[b.type][0].start()):a.log.error("forge.task",
734 -"[%s][%s] task queue missing [%s]",b.id,b.name,b.type),d||(b.error&&b.failureCallback?b.failureCallback(b):!b.error&&b.successCallback&&b.successCallback(b)))};a.task=a.task||{};a.task.start=function(a){var b=new p({run:a.run,name:a.name||"?"});b.type=a.type;b.successCallback=a.success||null;b.failureCallback=a.failure||null;b.type in e?e[a.type].push(b):(e[b.type]=[b],k(b))};a.task.cancel=function(a){a in e&&(e[a]=[e[a][0]])};a.task.createCondition=function(){var a={tasks:{},wait:function(b){b.id in
735 -a.tasks||(b.block(),a.tasks[b.id]=b)},notify:function(){var b=a.tasks;a.tasks={};for(var c in b)b[c].unblock()}};return a}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var n,p=function(a,c){c.exports=function(c){var e=n.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.task)return c.task;c.defined.task=!0;for(var g=0;g<e.length;++g)e[g](c);return c.task}},
736 -r=a;a=function(b,c){n="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,r.apply(null,Array.prototype.slice.call(arguments,0));a=r;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/task",["require","module","./debug","./log","./util"],function(){p.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){if("function"!==typeof a)if("object"===typeof module&&module.exports){var b=!0;a=function(a,b){b(c,module)}}else{"undefined"===typeof forge&&(forge={disableNativeCode:!1});
737 -return}var e,n=function(a,b){b.exports=function(b){var c=e.map(function(b){return a(b)});b=b||{};b.defined=b.defined||{};if(b.defined.forge)return b.forge;b.defined.forge=!0;for(var d=0;d<c.length;++d)c[d](b);return b};b.exports.disableNativeCode=!0;b.exports(b.exports)},p=a;a=function(c,n){e="string"===typeof c?n.slice(2):c.slice(2);if(b)return delete a,p.apply(null,Array.prototype.slice.call(arguments,0));a=p;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/forge","require module ./aes ./aesCipherSuites ./asn1 ./cipher ./cipherModes ./debug ./des ./hmac ./kem ./log ./md ./mgf1 ./pbkdf2 ./pem ./pkcs7 ./pkcs1 ./pkcs12 ./pki ./prime ./prng ./pss ./random ./rc2 ./ssh ./task ./tls ./util".split(" "),
738 -function(){n.apply(null,Array.prototype.slice.call(arguments,0))})})();return c("js/forge")});function amtcert_linkCertPrivateKey(b,c){for(var a in b){var d=b[a];try{if(0==xxCertPrivateKeys.length)break;for(var e=forge.pki.publicKeyToPem(forge.pki.certificateFromAsn1(forge.asn1.fromDer(d.X509Certificate)).publicKey).substring(60).replace(/(\r\n|\n|\r)/gm,""),n=0;n<c.length;n++)e===c[n].DERKey+"-----END PUBLIC KEY-----"&&(c[n].XCert=d,d.XPrivateKey=c[n])}catch(p){console.log(p)}}}
739 -function amtcert_loadP12File(b,c,a){try{var d=window.forge.util.decode64(btoa(b)),e=window.forge.asn1.fromDer(d),n=window.forge.pkcs12.pkcs12FromAsn1(e,c),p=n.getBags({bagType:window.forge.pki.oids.pkcs8ShroudedKeyBag});console.assert(p[window.forge.pki.oids.pkcs8ShroudedKeyBag]&&0<p[window.forge.pki.oids.pkcs8ShroudedKeyBag].length);var r=p[window.forge.pki.oids.pkcs8ShroudedKeyBag][0].key,m=window.forge.pki.privateKeyToAsn1(r),g=window.forge.pki.wrapRsaPrivateKey(m);window.forge.asn1.toDer(g).getBytes();
740 -var w=n.getBags({bagType:window.forge.pki.oids.certBag})[window.forge.pki.oids.certBag][0].cert.subject.attributes,l=n.getBags({bagType:forge.pki.oids.certBag})[forge.pki.oids.certBag][0].cert;a(r,w,l);return!0}catch(v){}return!1}function amtcert_signWithCaKey(b,c,a,d,e){c&&null!=c||(c=amtcert_createCertificate(d).key);return amtcert_createCertificate(a,c,b,d,e)}
741 -function amtcert_createCertificate(b,c,a,d,e){var n,p=forge.pki.createCertificate();a?p.publicKey=forge.pki.publicKeyFromPem("-----BEGIN PUBLIC KEY-----"+a+"-----END PUBLIC KEY-----"):(n=forge.pki.rsa.generateKeyPair(2048),p.publicKey=n.publicKey);p.serialNumber=""+Math.floor(1E5*Math.random()+1);p.validity.notBefore=new Date;p.validity.notBefore.setFullYear(p.validity.notBefore.getFullYear()-1);p.validity.notAfter=new Date;p.validity.notAfter.setFullYear(p.validity.notAfter.getFullYear()+30);var r=
742 -[];b.CN&&r.push({name:"commonName",value:b.CN});b.C&&r.push({name:"countryName",value:b.C});b.ST&&r.push({shortName:"ST",value:b.ST});b.O&&r.push({name:"organizationName",value:b.O});p.setSubject(r);c?(b=[],d.CN&&b.push({name:"commonName",value:d.CN}),d.C&&b.push({name:"countryName",value:d.C}),d.ST&&b.push({shortName:"ST",value:d.ST}),d.O&&b.push({name:"organizationName",value:d.O}),p.setIssuer(b)):p.setIssuer(r);void 0==c?p.setExtensions([{name:"basicConstraints",cA:!0},{name:"nsCertType",sslCA:!0,
743 -emailCA:!0,objCA:!0},{name:"subjectKeyIdentifier"}]):(null==e?e={name:"extKeyUsage",serverAuth:!0}:e.name="extKeyUsage",p.setExtensions([{name:"basicConstraints"},{name:"keyUsage",keyCertSign:!0,digitalSignature:!0,nonRepudiation:!0,keyEncipherment:!0,dataEncipherment:!0},e,{name:"nsCertType",client:!0,server:!0,email:!0,objsign:!0},{name:"subjectKeyIdentifier"}]));c?p.sign(c,forge.md.sha256.create()):p.sign(n.privateKey,forge.md.sha256.create());return a?p:{cert:p,key:n.privateKey}}
718 +module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.pkcs7)return c.pkcs7;c.defined.pkcs7=!0;for(var k=0;k<e.length;++k)e[k](c);return c.pkcs7}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,
719 +Array.prototype.slice.call(arguments,0))};a("js/pkcs7","require module ./aes ./asn1 ./des ./oids ./pem ./pkcs7asn1 ./random ./util ./x509".split(" "),function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){function c(b,d){var e=d.toString(16);"8"<=e[0]&&(e="00"+e);e=a.util.hexToBytes(e);b.putInt32(e.length);b.putBytes(e)}function d(a,b){a.putInt32(b.length);a.putString(b)}function e(){for(var b=a.md.sha1.create(),c=arguments.length,d=0;d<c;++d)b.update(arguments[d]);
720 +return b.digest()}var k=a.ssh=a.ssh||{};k.privateKeyToPutty=function(b,l,g){g=g||"";l=l||"";var k=""===l?"none":"aes256-cbc",q;q="PuTTY-User-Key-File-2: ssh-rsa\r\n"+("Encryption: "+k+"\r\n")+("Comment: "+g+"\r\n");var v=a.util.createBuffer();d(v,"ssh-rsa");c(v,b.e);c(v,b.n);var w=a.util.encode64(v.bytes(),64),y=Math.floor(w.length/66)+1;q+="Public-Lines: "+y+"\r\n";q+=w;w=a.util.createBuffer();c(w,b.d);c(w,b.p);c(w,b.q);c(w,b.qInv);l?(y=w.length()+16-1,y-=y%16,b=e(w.bytes()),b.truncate(b.length()-
721 +y+w.length()),w.putBuffer(b),y=a.util.createBuffer(),y.putBuffer(e("\x00\x00\x00\x00",l)),y.putBuffer(e("\x00\x00\x00\u0001",l)),y=a.aes.createEncryptionCipher(y.truncate(8),"CBC"),y.start(a.util.createBuffer().fillWithByte(0,16)),y.update(w.copy()),y.finish(),y=y.output,y.truncate(16),b=a.util.encode64(y.bytes(),64)):b=a.util.encode64(w.bytes(),64);y=Math.floor(b.length/66)+1;q+="\r\nPrivate-Lines: "+y+"\r\n";q+=b;l=e("putty-private-key-file-mac-key",l);y=a.util.createBuffer();d(y,"ssh-rsa");d(y,
722 +k);d(y,g);y.putInt32(v.length());y.putBuffer(v);y.putInt32(w.length());y.putBuffer(w);g=a.hmac.create();g.start("sha1",l);g.update(y.bytes());return q+="\r\nPrivate-MAC: "+g.digest().toHex()+"\r\n"};k.publicKeyToOpenSSH=function(b,e){e=e||"";var g=a.util.createBuffer();d(g,"ssh-rsa");c(g,b.e);c(g,b.n);return"ssh-rsa "+a.util.encode64(g.bytes())+" "+e};k.privateKeyToOpenSSH=function(b,c){return c?a.pki.encryptRsaPrivateKey(b,c,{legacy:!0,algorithm:"aes128"}):a.pki.privateKeyToPem(b)};k.getPublicKeyFingerprint=
723 +function(b,e){e=e||{};var g=e.md||a.md.md5.create(),k=a.util.createBuffer();d(k,"ssh-rsa");c(k,b.e);c(k,b.n);g.start();g.update(k.getBytes());g=g.digest();if("hex"===e.encoding)return g=g.toHex(),e.delimiter?g.match(/.{2}/g).join(e.delimiter):g;if("binary"===e.encoding)return g.getBytes();if(e.encoding)throw Error('Unknown encoding "'+e.encoding+'".');return g}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&
724 +(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.ssh)return c.ssh;c.defined.ssh=!0;for(var k=0;k<e.length;++k)e[k](c);return c.ssh}},v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/ssh","require module ./aes ./hmac ./md5 ./sha1 ./util".split(" "),
725 +function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){function b(a){var c={},d=0;a.debug.set("forge.task","tasks",c);var e={};a.debug.set("forge.task","queues",e);var k={ready:{}};k.ready.stop="ready";k.ready.start="running";k.ready.cancel="done";k.ready.fail="error";k.running={};k.running.stop="ready";k.running.start="running";k.running.block="blocked";k.running.unblock="running";k.running.sleep="sleeping";k.running.wakeup="running";k.running.cancel="done";k.running.fail=
726 +"error";k.blocked={};k.blocked.stop="blocked";k.blocked.start="blocked";k.blocked.block="blocked";k.blocked.unblock="blocked";k.blocked.sleep="blocked";k.blocked.wakeup="blocked";k.blocked.cancel="done";k.blocked.fail="error";k.sleeping={};k.sleeping.stop="sleeping";k.sleeping.start="sleeping";k.sleeping.block="sleeping";k.sleeping.unblock="sleeping";k.sleeping.sleep="sleeping";k.sleeping.wakeup="sleeping";k.sleeping.cancel="done";k.sleeping.fail="error";k.done={};k.done.stop="done";k.done.start=
727 +"done";k.done.block="done";k.done.unblock="done";k.done.sleep="done";k.done.wakeup="done";k.done.cancel="done";k.done.fail="error";k.error={};k.error.stop="error";k.error.start="error";k.error.block="error";k.error.unblock="error";k.error.sleep="error";k.error.wakeup="error";k.error.cancel="error";k.error.fail="error";var q=function(a){this.id=-1;this.name=a.name||"?";this.parent=a.parent||null;this.run=a.run;this.subtasks=[];this.error=!1;this.state="ready";this.blocks=0;this.userData=this.swapTime=
728 +this.timeoutId=null;this.id=d++;c[this.id]=this};q.prototype.debug=function(b){a.log.debug("forge.task",b||"","[%s][%s] task:",this.id,this.name,this,"subtasks:",this.subtasks.length,"queue:",e)};q.prototype.next=function(a,b){"function"===typeof a&&(b=a,a=this.name);var c=new q({run:b,name:a,parent:this});c.state="running";c.type=this.type;c.successCallback=this.successCallback||null;c.failureCallback=this.failureCallback||null;this.subtasks.push(c);return this};q.prototype.parallel=function(b,c){a.util.isArray(b)&&
729 +(c=b,b=this.name);return this.next(b,function(d){d.block(c.length);for(var e=function(b,e){a.task.start({type:b,run:function(a){c[e](a)},success:function(a){d.unblock()},failure:function(a){d.unblock()}})},g=0;g<c.length;g++)e(b+"__parallel-"+d.id+"-"+g,g)})};q.prototype.stop=function(){this.state=k[this.state].stop};q.prototype.start=function(){this.error=!1;this.state=k[this.state].start;"running"===this.state&&(this.start=new Date,this.run(this),g(this,0))};q.prototype.block=function(a){this.blocks+=
730 +"undefined"===typeof a?1:a;0<this.blocks&&(this.state=k[this.state].block)};q.prototype.unblock=function(a){this.blocks-="undefined"===typeof a?1:a;0===this.blocks&&"done"!==this.state&&(this.state="running",g(this,0));return this.blocks};q.prototype.sleep=function(a){this.state=k[this.state].sleep;var b=this;this.timeoutId=setTimeout(function(){b.timeoutId=null;b.state="running";g(b,0)},"undefined"===typeof a?0:a)};q.prototype.wait=function(a){a.wait(this)};q.prototype.wakeup=function(){"sleeping"===
731 +this.state&&(cancelTimeout(this.timeoutId),this.timeoutId=null,this.state="running",g(this,0))};q.prototype.cancel=function(){this.state=k[this.state].cancel;this.permitsNeeded=0;null!==this.timeoutId&&(cancelTimeout(this.timeoutId),this.timeoutId=null);this.subtasks=[]};q.prototype.fail=function(a){this.error=!0;v(this,!0);if(a)a.error=this.error,a.swapTime=this.swapTime,a.userData=this.userData,g(a,0);else{if(null!==this.parent){for(a=this.parent;null!==a.parent;)a.error=this.error,a.swapTime=this.swapTime,
732 +a.userData=this.userData,a=a.parent;v(a,!0)}this.failureCallback&&this.failureCallback(this)}};var l=function(a){a.error=!1;a.state=k[a.state].start;setTimeout(function(){"running"===a.state&&(a.swapTime=+new Date,a.run(a),g(a,0))},0)},g=function(a,b){var c=30<b||20<+new Date-a.swapTime,d=function(b){b++;if("running"===a.state)if(c&&(a.swapTime=+new Date),0<a.subtasks.length){var d=a.subtasks.shift();d.error=a.error;d.swapTime=a.swapTime;d.userData=a.userData;d.run(d);d.error||g(d,b)}else v(a),a.error||
733 +null===a.parent||(a.parent.error=a.error,a.parent.swapTime=a.swapTime,a.parent.userData=a.userData,g(a.parent,b))};c?setTimeout(d,0):d(b)},v=function(b,d){b.state="done";delete c[b.id];null===b.parent&&(b.type in e?0===e[b.type].length?a.log.error("forge.task","[%s][%s] task queue empty [%s]",b.id,b.name,b.type):e[b.type][0]!==b?a.log.error("forge.task","[%s][%s] task not first in queue [%s]",b.id,b.name,b.type):(e[b.type].shift(),0===e[b.type].length?delete e[b.type]:e[b.type][0].start()):a.log.error("forge.task",
734 +"[%s][%s] task queue missing [%s]",b.id,b.name,b.type),d||(b.error&&b.failureCallback?b.failureCallback(b):!b.error&&b.successCallback&&b.successCallback(b)))};a.task=a.task||{};a.task.start=function(a){var b=new q({run:a.run,name:a.name||"?"});b.type=a.type;b.successCallback=a.success||null;b.failureCallback=a.failure||null;b.type in e?e[a.type].push(b):(e[b.type]=[b],l(b))};a.task.cancel=function(a){a in e&&(e[a]=[e[a][0]])};a.task.createCondition=function(){var a={tasks:{},wait:function(b){b.id in
735 +a.tasks||(b.block(),a.tasks[b.id]=b)},notify:function(){var b=a.tasks;a.tasks={};for(var c in b)b[c].unblock()}};return a}}if("function"!==typeof a)if("object"===typeof module&&module.exports){var e=!0;a=function(a,b){b(c,module)}}else return"undefined"===typeof forge&&(forge={}),b(forge);var q,k=function(a,c){c.exports=function(c){var e=q.map(function(b){return a(b)}).concat(b);c=c||{};c.defined=c.defined||{};if(c.defined.task)return c.task;c.defined.task=!0;for(var k=0;k<e.length;++k)e[k](c);return c.task}},
736 +v=a;a=function(b,c){q="string"===typeof b?c.slice(2):b.slice(2);if(e)return delete a,v.apply(null,Array.prototype.slice.call(arguments,0));a=v;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/task",["require","module","./debug","./log","./util"],function(){k.apply(null,Array.prototype.slice.call(arguments,0))})})();(function(){if("function"!==typeof a)if("object"===typeof module&&module.exports){var b=!0;a=function(a,b){b(c,module)}}else{"undefined"===typeof forge&&(forge={disableNativeCode:!1});
737 +return}var e,q=function(a,b){b.exports=function(b){var c=e.map(function(b){return a(b)});b=b||{};b.defined=b.defined||{};if(b.defined.forge)return b.forge;b.defined.forge=!0;for(var d=0;d<c.length;++d)c[d](b);return b};b.exports.disableNativeCode=!0;b.exports(b.exports)},k=a;a=function(c,n){e="string"===typeof c?n.slice(2):c.slice(2);if(b)return delete a,k.apply(null,Array.prototype.slice.call(arguments,0));a=k;return a.apply(null,Array.prototype.slice.call(arguments,0))};a("js/forge","require module ./aes ./aesCipherSuites ./asn1 ./cipher ./cipherModes ./debug ./des ./hmac ./kem ./log ./md ./mgf1 ./pbkdf2 ./pem ./pkcs7 ./pkcs1 ./pkcs12 ./pki ./prime ./prng ./pss ./random ./rc2 ./ssh ./task ./tls ./util".split(" "),
738 +function(){q.apply(null,Array.prototype.slice.call(arguments,0))})})();return c("js/forge")});function amtcert_linkCertPrivateKey(b,c){for(var a in b){var d=b[a];try{if(0==xxCertPrivateKeys.length)break;for(var e=forge.pki.publicKeyToPem(forge.pki.certificateFromAsn1(forge.asn1.fromDer(d.X509Certificate)).publicKey).substring(60).replace(/(\r\n|\n|\r)/gm,""),q=0;q<c.length;q++)e===c[q].DERKey+"-----END PUBLIC KEY-----"&&(c[q].XCert=d,d.XPrivateKey=c[q])}catch(k){console.log(k)}}}
739 +function amtcert_loadP12File(b,c,a){try{var d=window.forge.util.decode64(btoa(b)),e=window.forge.asn1.fromDer(d),q=window.forge.pkcs12.pkcs12FromAsn1(e,c),k=q.getBags({bagType:window.forge.pki.oids.pkcs8ShroudedKeyBag});console.assert(k[window.forge.pki.oids.pkcs8ShroudedKeyBag]&&0<k[window.forge.pki.oids.pkcs8ShroudedKeyBag].length);var v=k[window.forge.pki.oids.pkcs8ShroudedKeyBag][0].key,n=window.forge.pki.privateKeyToAsn1(v),p=window.forge.pki.wrapRsaPrivateKey(n);window.forge.asn1.toDer(p).getBytes();
740 +var h=q.getBags({bagType:window.forge.pki.oids.certBag})[window.forge.pki.oids.certBag][0].cert.subject.attributes,m=q.getBags({bagType:forge.pki.oids.certBag})[forge.pki.oids.certBag][0].cert;a(v,h,m);return!0}catch(w){}return!1}function amtcert_signWithCaKey(b,c,a,d,e){c&&null!=c||(c=amtcert_createCertificate(d).key);return amtcert_createCertificate(a,c,b,d,e)}
741 +function amtcert_createCertificate(b,c,a,d,e){var q,k=forge.pki.createCertificate();a?k.publicKey=forge.pki.publicKeyFromPem("-----BEGIN PUBLIC KEY-----"+a+"-----END PUBLIC KEY-----"):(q=forge.pki.rsa.generateKeyPair(2048),k.publicKey=q.publicKey);k.serialNumber=""+Math.floor(1E5*Math.random()+1);k.validity.notBefore=new Date;k.validity.notBefore.setFullYear(k.validity.notBefore.getFullYear()-1);k.validity.notAfter=new Date;k.validity.notAfter.setFullYear(k.validity.notAfter.getFullYear()+30);var v=
742 +[];b.CN&&v.push({name:"commonName",value:b.CN});b.C&&v.push({name:"countryName",value:b.C});b.ST&&v.push({shortName:"ST",value:b.ST});b.O&&v.push({name:"organizationName",value:b.O});k.setSubject(v);c?(b=[],d.CN&&b.push({name:"commonName",value:d.CN}),d.C&&b.push({name:"countryName",value:d.C}),d.ST&&b.push({shortName:"ST",value:d.ST}),d.O&&b.push({name:"organizationName",value:d.O}),k.setIssuer(b)):k.setIssuer(v);void 0==c?k.setExtensions([{name:"basicConstraints",cA:!0},{name:"nsCertType",sslCA:!0,
743 +emailCA:!0,objCA:!0},{name:"subjectKeyIdentifier"}]):(null==e?e={name:"extKeyUsage",serverAuth:!0}:e.name="extKeyUsage",k.setExtensions([{name:"basicConstraints"},{name:"keyUsage",keyCertSign:!0,digitalSignature:!0,nonRepudiation:!0,keyEncipherment:!0,dataEncipherment:!0},e,{name:"nsCertType",client:!0,server:!0,email:!0,objsign:!0},{name:"subjectKeyIdentifier"}]));c?k.sign(c,forge.md.sha256.create()):k.sign(q.privateKey,forge.md.sha256.create());return a?k:{cert:k,key:q.privateKey}}
744 function _stringToArrayBuffer(b){for(var c=new ArrayBuffer(b.length),a=new Uint8Array(c),d=0,e=b.length;d<e;d++)a[d]=b.charCodeAt(d);return c}function _arrayBufferToString(b){var c="";b=new Uint8Array(b);for(var a=b.byteLength,d=0;d<a;d++)c+=String.fromCharCode(b[d]);return c}script_functionTable1="nop jump set print dialog getitem substr indexof split join length jsonparse jsonstr add substract parseint wsbatchenum wsput wscreate wsdelete wsexec scriptspeed wssubscribe wsunsubscribe readchar signwithdummyca".split(" ");
745 script_functionTable2="encodeuri decodeuri passwordcheck atob btoa hex2str str2hex random md5 maketoarray readshort readshortx readint readsint readintx shorttostr shorttostrx inttostr inttostrx".split(" ");script_functionTableX2=[encodeURI,decodeURI,passwordcheck,window.atob.bind(window),window.btoa.bind(window),hex2rstr,rstr2hex,random,rstr_md5,MakeToArray,ReadShort,ReadShortX,ReadInt,ReadSInt,ReadIntX,ShortToStr,ShortToStrX,IntToStr,IntToStrX];script_functionTable3="pullsystemstatus pulleventlog pullauditlog pullcertificates pullwatchdog pullsystemdefense pullhardware pulluserinfo pullremoteaccess highlightblock disconnect getsidstring getsidbytearray pulleventsubscriptions".split(" ");
746 script_functionTableX3=[PullSystemStatus,PullEventLog,PullAuditLog,PullCertificates,PullWatchdog,PullSystemDefense,PullHardware,PullUserInfo,PullRemoteAccess,script_HighlightBlock,,function(b,c){return GetSidString(c)},function(b,c){return GetSidByteArray(c)},PullEventSubscriptions];
747 function script_setup(b,c){var a={startvars:c};if(6>b.length)return console.error("Invalid script length"),null;if(612182341!=ReadInt(b,0))return console.error("Invalid binary script"),null;if(1<ReadShort(b,4))return console.error("Unsupported script version"),null;a.script=b.substring(6);a.reset=function(b){a.stop();a.ip=0;a.variables=c;a.state=1};a.start=function(b){a.stop();a.stepspeed=b;0<b&&(a.timer=setInterval(function(){a.step()},b))};a.stop=function(){null!=a.timer&&clearInterval(a.timer);
748 -a.timer=null;a.stepspeed=0};a.getVar=function(b){return void 0==b?void 0:a.getVarEx(b.split("."),a.variables)};a.getVarEx=function(b,c){try{return void 0==b?void 0:0==b.length?c:a.getVarEx(b.slice(1),c[b[0]])}catch(n){return null}};a.setVar=function(b,c){a.setVarEx(b.split("."),a.variables,c)};a.setVarEx=function(b,c,n){1==b.length?c[b[0]]=n:a.setVarEx(b.slice(1),c[b[0]],n)};a.step=function(){if(1==a.state){if(a.ip<a.script.length){var b=ReadShort(a.script,a.ip),c=ReadShort(a.script,a.ip+2),n=ReadShort(a.script,
749 -a.ip+4),p=a.ip+6,r=[],m;for(m in a.variables)m.startsWith("__")&&delete a.variables[m];for(m=0;m<n;m++){var g=ReadShort(a.script,p),w=a.script.substring(p+2,p+2+g),l=w.charCodeAt(0),w=w.substring(1);if(2>l){for(;1<w.split("{").length;)var v=w.split("{").pop().split("}").shift(),w=w.replace("{"+v+"}",a.getVar(v));1==l&&(a.variables["__"+m]=decodeURI(w),w="__"+m);r.push(w)}if(2==l||3==l)a.variables["__"+m]=ReadSInt(w,0),r.push("__"+m);p+=2+g}a.ip+=c;c=[];for(m=0;10>m;m++)c.push(a.getVar(r[m]));var x;
750 -try{if(1E4>b)switch(b){case 0:break;case 1:if(c[2]){if("<"==c[2]&&c[1]<c[3]||"<="==c[2]&&c[1]<=c[3]||"!="==c[2]&&c[1]!=c[3]||"="==c[2]&&c[1]==c[3]||">="==c[2]&&c[1]>=c[3]||">"==c[2]&&c[1]>c[3])a.ip=c[0]}else a.ip=c[0];break;case 2:void 0==r[1]?delete a.variables[r[0]]:a.setVar(r[0],c[1]);break;case 3:if(a.onConsole)a.onConsole(a.toString(c[0]),a);else console.log(a.toString(c[0]));break;case 4:a.state=2;a.dialog=!0;setDialogMode(11,c[0],c[2],a.xxStepDialogOk,c[1],a);break;case 5:for(m in c[1])c[1][m][c[2]]==
751 -c[3]&&(x=m);break;case 6:x=c[1].substr(c[2],c[3]);break;case 7:x=c[1].indexOf(c[2]);break;case 8:x=c[1].split(c[2]);break;case 9:x=c[1].join(c[2]);break;case 10:x=c[1].length;break;case 11:x=JSON.parse(c[1]);break;case 12:x=JSON.stringify(c[1]);break;case 13:x=c[1]+c[2];break;case 14:x=c[1]-c[2];break;case 15:x=parseInt(c[1]);break;case 16:a.state=2;a.amtstack.BatchEnum(c[0],c[1],a.xxWsmanReturn,a);break;case 17:a.state=2;a.amtstack.Put(c[0],c[1],a.xxWsmanReturn,a);break;case 18:a.state=2;a.amtstack.Create(c[0],
748 +a.timer=null;a.stepspeed=0};a.getVar=function(b){return void 0==b?void 0:a.getVarEx(b.split("."),a.variables)};a.getVarEx=function(b,c){try{return void 0==b?void 0:0==b.length?c:a.getVarEx(b.slice(1),c[b[0]])}catch(q){return null}};a.setVar=function(b,c){a.setVarEx(b.split("."),a.variables,c)};a.setVarEx=function(b,c,q){1==b.length?c[b[0]]=q:a.setVarEx(b.slice(1),c[b[0]],q)};a.step=function(){if(1==a.state){if(a.ip<a.script.length){var b=ReadShort(a.script,a.ip),c=ReadShort(a.script,a.ip+2),q=ReadShort(a.script,
749 +a.ip+4),k=a.ip+6,v=[],n;for(n in a.variables)n.startsWith("__")&&delete a.variables[n];for(n=0;n<q;n++){var p=ReadShort(a.script,k),h=a.script.substring(k+2,k+2+p),m=h.charCodeAt(0),h=h.substring(1);if(2>m){for(;1<h.split("{").length;)var w=h.split("{").pop().split("}").shift(),h=h.replace("{"+w+"}",a.getVar(w));1==m&&(a.variables["__"+n]=decodeURI(h),h="__"+n);v.push(h)}if(2==m||3==m)a.variables["__"+n]=ReadSInt(h,0),v.push("__"+n);k+=2+p}a.ip+=c;c=[];for(n=0;10>n;n++)c.push(a.getVar(v[n]));var B;
750 +try{if(1E4>b)switch(b){case 0:break;case 1:if(c[2]){if("<"==c[2]&&c[1]<c[3]||"<="==c[2]&&c[1]<=c[3]||"!="==c[2]&&c[1]!=c[3]||"="==c[2]&&c[1]==c[3]||">="==c[2]&&c[1]>=c[3]||">"==c[2]&&c[1]>c[3])a.ip=c[0]}else a.ip=c[0];break;case 2:void 0==v[1]?delete a.variables[v[0]]:a.setVar(v[0],c[1]);break;case 3:if(a.onConsole)a.onConsole(a.toString(c[0]),a);else console.log(a.toString(c[0]));break;case 4:a.state=2;a.dialog=!0;setDialogMode(11,c[0],c[2],a.xxStepDialogOk,c[1],a);break;case 5:for(n in c[1])c[1][n][c[2]]==
751 +c[3]&&(B=n);break;case 6:B=c[1].substr(c[2],c[3]);break;case 7:B=c[1].indexOf(c[2]);break;case 8:B=c[1].split(c[2]);break;case 9:B=c[1].join(c[2]);break;case 10:B=c[1].length;break;case 11:B=JSON.parse(c[1]);break;case 12:B=JSON.stringify(c[1]);break;case 13:B=c[1]+c[2];break;case 14:B=c[1]-c[2];break;case 15:B=parseInt(c[1]);break;case 16:a.state=2;a.amtstack.BatchEnum(c[0],c[1],a.xxWsmanReturn,a);break;case 17:a.state=2;a.amtstack.Put(c[0],c[1],a.xxWsmanReturn,a);break;case 18:a.state=2;a.amtstack.Create(c[0],
752 c[1],a.xxWsmanReturn,a);break;case 19:a.state=2;a.amtstack.Delete(c[0],c[1],a.xxWsmanReturn,a);break;case 20:a.state=2;a.amtstack.Exec(c[0],c[1],c[2],a.xxWsmanReturn,a,0,c[3]);break;case 21:a.stepspeed=c[0];null!=a.timer&&(clearInterval(a.timer),a.timer=setInterval(function(){a.step()},a.stepspeed));break;case 22:a.state=2;a.amtstack.Subscribe(c[0],c[1],c[2],a.xxWsmanReturn,a,0,c[3],c[4],c[5],c[6]);break;case 23:a.state=2;a.amtstack.UnSubscribe(c[0],a.xxWsmanReturn,a,0,c[1]);break;case 24:console.log(c[1],
753 -c[2],c[1].charCodeAt(c[2]));x=c[1].charCodeAt(c[2]);break;case 25:a.state=2;amtcert_signWithCaKey(c[0],null,c[1],{CN:"Untrusted Root Certificate"},a.xxSignWithDummyCaReturn);break;default:a.state=9,console.error("Script Error, unknown command: "+b)}else 2E4>b?x=script_functionTableX2[b-1E4](c[1],c[2],c[3],c[4],c[5],c[6]):script_functionTableX3&&script_functionTableX3[b-2E4]&&(x=script_functionTableX3[b-2E4](a,c[1],c[2],c[3],c[4],c[5],c[6]));void 0!=x&&a.setVar(r[0],x)}catch(k){"object"==typeof k&&
754 -(k=k.message),a.setVar("_exception",k)}}1==a.state&&a.ip>=a.script.length&&(a.state=0,a.stop());if(a.onStep)a.onStep(a);return a}};a.xxStepDialogOk=function(b){a.variables.DialogSelect=b;a.state=1;a.dialog=!1;if(a.onStep)a.onStep(a)};a.xxWsmanReturn=function(b,c,n,p){a.setVar(c,n);a.setVar("wsman_result",p);a.setVar("wsman_result_str",httpErrorTable[p]?httpErrorTable[p]:"Error #"+p);a.state=1;if(a.onStep)a.onStep(a)};a.xxSignWithDummyCaReturn=function(b){a.setVar("signed_cert",btoa(_arrayBufferToString(b)));
753 +c[2],c[1].charCodeAt(c[2]));B=c[1].charCodeAt(c[2]);break;case 25:a.state=2;amtcert_signWithCaKey(c[0],null,c[1],{CN:"Untrusted Root Certificate"},a.xxSignWithDummyCaReturn);break;default:a.state=9,console.error("Script Error, unknown command: "+b)}else 2E4>b?B=script_functionTableX2[b-1E4](c[1],c[2],c[3],c[4],c[5],c[6]):script_functionTableX3&&script_functionTableX3[b-2E4]&&(B=script_functionTableX3[b-2E4](a,c[1],c[2],c[3],c[4],c[5],c[6]));void 0!=B&&a.setVar(v[0],B)}catch(l){"object"==typeof l&&
754 +(l=l.message),a.setVar("_exception",l)}}1==a.state&&a.ip>=a.script.length&&(a.state=0,a.stop());if(a.onStep)a.onStep(a);return a}};a.xxStepDialogOk=function(b){a.variables.DialogSelect=b;a.state=1;a.dialog=!1;if(a.onStep)a.onStep(a)};a.xxWsmanReturn=function(b,c,q,k){a.setVar(c,q);a.setVar("wsman_result",k);a.setVar("wsman_result_str",httpErrorTable[k]?httpErrorTable[k]:"Error #"+k);a.state=1;if(a.onStep)a.onStep(a)};a.xxSignWithDummyCaReturn=function(b){a.setVar("signed_cert",btoa(_arrayBufferToString(b)));
755 a.state=1;if(a.onStep)a.onStep(a)};a.toString=function(a){return"object"==typeof a?JSON.stringify(a):a};a.reset();return a}
756 -function script_compile(b,c){var a="",d=b.split("\n"),e={},n=[],p=[],r;for(r in d){var m=d[r];if(m.startsWith("##SWAP ")){var g=m.split(" ");3==g.length&&(p[g[1]]=g[2])}if("#"!=m[0]&&0!=m.length){for(g in p)m=m.split(g).join(p[g]);var w=m.match(/"[^"]*"|[^\s"]+/g);if(0!=w.length)if(":"==m[0])e[w[0].toUpperCase()]=a.length;else{m=script_functionTable1.indexOf(w[0].toLowerCase());-1==m&&(m=script_functionTable2.indexOf(w[0].toLowerCase()),0<=m&&(m+=1E4));-1==m&&(m=script_functionTable3.indexOf(w[0].toLowerCase()),
757 -0<=m&&(m+=2E4));if(-1==m)return c&&c("Unabled to compile, unknown command: "+w[0]),"";var l=ShortToStr(w.length-1),v;for(v in w)if(0!=v)if(":"==w[v][0])n.push([w[v],a.length+l.length+7]),l+=ShortToStr(5)+String.fromCharCode(3)+IntToStr(4294967295);else var x=parseInt(w[v]),l=x==w[v]?l+(ShortToStr(5)+String.fromCharCode(2)+IntToStr(x)):'"'==w[v][0]&&'"'==w[v][w[v].length-1]?l+(ShortToStr(w[v].length-1)+String.fromCharCode(1)+w[v].substring(1,w[v].length-1)):l+(ShortToStr(w[v].length+1)+String.fromCharCode(0)+
758 -w[v]);l=ShortToStr(m)+ShortToStr(l.length+4)+l;a+=l}}}for(r in n){d=n[r][0].toUpperCase();p=n[r][1];g=e[d];if(void 0==g)return c&&c("Unabled to compile, unknown label: "+d),"";a=a.substr(0,p)+IntToStr(g)+a.substr(p+4)}return IntToStr(612182341)+ShortToStr(1)+a}
759 -function script_decompile(b,c){var a="",d=6,e={};if(0<=c)d=c;else{if(6>b.length)return"# Invalid script length";var n=ReadInt(b,0),p=ReadShort(b,4);if(612182341!=n)return"# Invalid binary script: "+n;if(1!=p)return"# Invalid script version"}for(;d<b.length;){var n=ReadShort(b,d),p=ReadShort(b,d+2),r=ReadShort(b,d+4),m=d+6,g="";0<=c||(a+=":label"+(d-6)+"\n");for(var w=0;w<r;w++){var l=ReadShort(b,m),v=b.substring(m+2,m+2+l),x=v.charCodeAt(0);0==x?g+=" "+v.substring(1):1==x?g+=' "'+v.substring(1)+'"':
760 -2==x?g+=" "+ReadInt(v,1):3==x&&(v=ReadInt(v,1),x=e[v],x||(x=":label"+v,e[x]=v),g+=" "+x);m+=2+l}a=1E4>n?a+(script_functionTable1[n]+g+"\n"):2E4<=n?a+(script_functionTable3[n-2E4]+g+"\n"):a+(script_functionTable2[n-1E4]+g+"\n");d+=p;if(0<=c)return a}d=a.split("\n");a="";for(w in d)n=d[w],":"!=n[0]?a+=n+"\n":e[n]&&(a+=n+"\n");return a}
761 -var CreateAmtRemoteDesktop=function(b,c){function a(a,b,c){if(1!=g.holding){var d=0==g.rotation?b:1==g.rotation?g.canvas.canvas.width-g.sparew2-c:2==g.rotation?g.canvas.canvas.width-g.sparew2-b:3==g.rotation?c:0;c=0==g.rotation?c:1==g.rotation?b:2==g.rotation?g.canvas.canvas.height-g.spareh2-c:3==g.rotation?g.canvas.canvas.height-g.spareh-b:0;g.canvas.putImageData(a,d,c)}}function d(a,b){var c=4*b;if(0<g.rotation)if(1==g.rotation){var c=b%g.sparew,d=Math.floor(b/g.sparew);b=c*g.sparew2+(g.sparew2-
762 -1-d);c=4*b}else 2==g.rotation?c=g.sparew*g.spareh*4-4-c:3==g.rotation&&(c=b%g.sparew,d=Math.floor(b/g.sparew),b=(g.sparew2-1-c)*g.sparew2+d,c=4*b);1==g.bpp?(g.spare.data[c++]=a&224,g.spare.data[c++]=(a&28)<<3,g.spare.data[c++]=p((a&3)<<6)):(g.spare.data[c++]=a>>8&248,g.spare.data[c++]=a>>3&252,g.spare.data[c++]=(a&31)<<3);g.spare.data[c]=255}function e(a,b){return 0==g.rotation||1==g.rotation?a:2==g.rotation?a-g.canvas.canvas.width:3==g.rotation?a-g.canvas.canvas.height:0}function n(a,b){return 0==
763 -g.rotation?b:1==g.rotation?b-g.canvas.canvas.width:2==g.rotation?b-g.canvas.canvas.height:3==g.rotation?b:0}function p(a){return 127<a?a+32:a}function r(){1!=g.holding&&g.Send(String.fromCharCode(3,1,0,0,0,0)+ShortToStr(g.rwidth)+ShortToStr(g.rheight))}function m(a,b){b||(b=window.event);if(b.code){var c;c=b;c=c.code.startsWith("Key")&&4==c.code.length?c.code.charCodeAt(3)+(0==c.shiftKey?32:0):c.code.startsWith("Digit")&&6==c.code.length?c.code.charCodeAt(5):c.code.startsWith("Numpad")&&7==c.code.length?
764 -c.code.charCodeAt(6):w[c.code];null!=c&&g.sendkey(c,a)}else{c=b.keyCode;173==c&&(c=189);61==c&&(c=187);var d=c;0==b.shiftKey&&65<=c&&90>=c&&(d=c+32);112<=c&&124>=c&&(d=c+65358);8==c&&(d=65288);9==c&&(d=65289);13==c&&(d=65293);16==c&&(d=65505);17==c&&(d=65507);18==c&&(d=65513);27==c&&(d=65307);33==c&&(d=65365);34==c&&(d=65366);35==c&&(d=65367);36==c&&(d=65360);37==c&&(d=65361);38==c&&(d=65362);39==c&&(d=65363);40==c&&(d=65364);45==c&&(d=65379);46==c&&(d=65535);96<=c&&105>=c&&(d=c-48);106==c&&(d=42);
765 -107==c&&(d=43);109==c&&(d=45);110==c&&(d=46);111==c&&(d=47);186==c&&(d=59);187==c&&(d=61);188==c&&(d=44);189==c&&(d=45);190==c&&(d=46);191==c&&(d=47);192==c&&(d=96);219==c&&(d=91);220==c&&(d=92);221==c&&(d=93);222==c&&(d=39);g.sendkey(d,a)}return g.haltEvent(b)}var g={};g.canvasid=b;g.scrolldiv=c;g.canvas=Q(b).getContext("2d");g.protocol=2;g.state=0;g.acc="";g.ScreenWidth=960;g.ScreenHeight=700;g.width=0;g.height=0;g.rwidth=0;g.rheight=0;g.bpp=2;g.useZRLE=!0;g.showmouse=!0;g.buttonmask=0;g.spare=
766 -null;g.sparew=0;g.spareh=0;g.sparew2=0;g.spareh2=0;g.sparecache={};g.ZRLEfirst=1;g.onScreenSizeChange=null;g.frameRateDelay=0;g.noMouseRotate=!1;g.rotation=0;g.kvmDataSupported=!1;g.onKvmData=null;g.onKvmDataPending=[];g.onKvmDataAck=-1;g.holding=!1;g.lastKeepAlive=Date.now();g.Debug=function(a){console.log(a)};g.xxStateChange=function(a){0==a?(g.canvas.fillStyle="#000000",g.canvas.fillRect(0,0,g.width,g.height),g.canvas.canvas.width=g.rwidth=g.width=640,g.canvas.canvas.height=g.rheight=g.height=
767 -400,QS(g.canvasid).cursor="auto"):g.showmouse||(QS(g.canvasid).cursor="none")};g.ProcessData=function(b){if(b)for(g.acc+=b;0<g.acc.length;){b=0;if(0==g.state&&12<=g.acc.length)b=12,g.state=1,g.Send("RFB 003.008\n");else if(1==g.state&&1<=g.acc.length)b=g.acc.charCodeAt(0)+1,g.Send(String.fromCharCode(1)),g.state=2;else if(2==g.state&&4<=g.acc.length){b=4;if(0!=ReadInt(g.acc,0))return g.Stop();g.Send(String.fromCharCode(1));g.state=3}else if(3==g.state&&24<=g.acc.length){g.rotation=0;b=ReadInt(g.acc,
768 -20);if(g.acc.length<24+b)break;b=24+b;g.canvas.canvas.width=g.rwidth=g.width=g.ScreenWidth=ReadShort(g.acc,0);g.canvas.canvas.height=g.rheight=g.height=g.ScreenHeight=ReadShort(g.acc,2);var c="";g.useZRLE&&(c+=IntToStr(16));c+=IntToStr(0);c+=IntToStr(1092);g.Send(String.fromCharCode(2,0)+ShortToStr(c.length/4+1)+c+IntToStr(-223));1==g.bpp&&g.Send(String.fromCharCode(0,0,0,0,8,8,0,1)+ShortToStr(7)+ShortToStr(7)+ShortToStr(3)+String.fromCharCode(5,2,0,0,0,0));g.state=4;g.parent.xxStateChange(3);r();
769 -if(null!=g.onScreenSizeChange)g.onScreenSizeChange(g,g.ScreenWidth,g.ScreenHeight)}else if(4==g.state)switch(g.acc.charCodeAt(0)){case 0:if(4>g.acc.length)return;g.state=100+ReadShort(g.acc,2);b=4;break;case 2:b=1;break;case 3:if(8>g.acc.length)return;b=ReadInt(g.acc,4)+8;if(g.acc.length<b)return;c=g.acc;if(8>c.length)b=0;else if(b=ReadInt(g.acc,4)+8,c.length<b)b=0;else if(null!=g.onKvmData&&(c=c.substring(8,b),16<=c.length&&"\x00KvmDataChannel"==c.substring(0,15))){0==g.kvmDataSupported&&(g.kvmDataSupported=
770 -!0,console.log("KVM Data Channel Supported."));if(-1==g.onKvmDataAck&&16==c.length||0!=c.charCodeAt(15))g.onKvmDataAck=!0;urlvars&&urlvars.kvmdatatrace&&console.log("KVM-Recv("+(c.length-16)+"): "+c.substring(16));if(16<c.length)g.onKvmData(c.substring(16));1==g.onKvmDataAck&&0<g.onKvmDataPending.length&&g.sendKvmData(g.onKvmDataPending.shift())}}else if(100<g.state&&12<=g.acc.length){var h=ReadShort(g.acc,0),l=ReadShort(g.acc,2),m=ReadShort(g.acc,4),v=ReadShort(g.acc,6),w=m*v;b=ReadInt(g.acc,8);
771 -if(17>b){if(1>m||64<m||1>v||64<v)return console.log("Invalid tile size ("+m+","+v+"), disconnecting."),g.Stop();if(g.sparew!=m||g.spareh!=v){g.sparew=g.sparew2=m;g.spareh=g.spareh2=v;if(1==g.rotation||3==g.rotation)g.sparew2=v,g.spareh2=m;c=g.sparew2+"x"+g.spareh2;g.spare=g.sparecache[c];g.spare||(g.sparecache[c]=g.spare=g.canvas.createImageData(g.sparew2,g.spareh2))}}if(4294967073==b){if(g.canvas.canvas.width=g.ScreenWidth=g.rwidth=g.width=m,g.canvas.canvas.height=g.ScreenHeight=g.rheight=g.height=
772 -v,g.Send(String.fromCharCode(3,0,0,0,0,0)+ShortToStr(g.width)+ShortToStr(g.height)),b=12,null!=g.onScreenSizeChange)g.onScreenSizeChange(g,g.ScreenWidth,g.ScreenHeight)}else if(0==b){var y=12;b=12+w*g.bpp;if(g.acc.length<b)break;for(c=0;c<w;c++)d(g.acc.charCodeAt(y++)+(2==g.bpp?g.acc.charCodeAt(y++)<<8:0),c);a(g.spare,h,l)}else if(16==b){if(16>g.acc.length)break;b=ReadInt(g.acc,12);if(g.acc.length<16+b)break;y=16;if(5<b&&0==g.acc.charCodeAt(y)&&ReadShortX(g.acc,y+1)==b-5){var c=g.acc,y=y+5,I=c.charCodeAt(y++),
773 -F=void 0,E=void 0,F=void 0,z={},D=0,A=0,A=void 0;if(0==I){for(A=0;A<w;A++)d(c.charCodeAt(y++)+(2==g.bpp?c.charCodeAt(y++)<<8:0),A);a(g.spare,h,l)}else if(1==I)E=c.charCodeAt(y++)+(2==g.bpp?c.charCodeAt(y++)<<8:0),g.canvas.fillStyle="rgb("+(1==g.bpp?(E&224)+","+((E&28)<<3)+","+p((E&3)<<6):(E>>8&248)+","+(E>>3&252)+","+((E&31)<<3))+")",c=e(h,l),l=n(h,l),h=c,g.canvas.fillRect(h,l,m,v);else if(1<I&&17>I){m=4;v=15;for(A=0;A<I;A++)z[A]=c.charCodeAt(y++)+(2==g.bpp?c.charCodeAt(y++)<<8:0);2==I?v=m=1:4>=I&&
774 -(m=2,v=3);for(;D<w&&y<c.length;)for(E=c.charCodeAt(y++),A=8-m;0<=A;A-=m)d(z[E>>A&v],D++);a(g.spare,h,l)}else if(128==I){for(;D<w&&y<c.length;){E=c.charCodeAt(y++)+(2==g.bpp?c.charCodeAt(y++)<<8:0);A=1;do A+=F=c.charCodeAt(y++);while(255==F);for(;0<=--A;)d(E,D++)}a(g.spare,h,l)}else if(129<I){for(A=0;A<I-128;A++)z[A]=c.charCodeAt(y++)+(2==g.bpp?c.charCodeAt(y++)<<8:0);for(;D<w&&y<c.length;){A=1;F=c.charCodeAt(y++);E=z[F%128];if(127<F){do A+=F=c.charCodeAt(y++);while(255==F)}for(;0<=--A;)d(E,D++)}a(g.spare,
775 -h,l)}}b=16+b}else return g.Debug("Unknown Encoding: "+b+", HEX: "+rstr2hex(g.acc)),g.Stop();100==--g.state&&(g.state=4,0==g.frameRateDelay?r():setTimeout(r,g.frameRateDelay))}if(0==b)break;g.acc=g.acc.substring(b)}};g.hold=function(a){if(g.holding!=a)if(g.holding=a,g.canvas.fillStyle="#000000",g.canvas.fillRect(0,0,g.width,g.height),0==g.holding){if(g.canvas.canvas.width!=g.width||g.canvas.canvas.height!=g.height)if(g.canvas.canvas.width=g.width,g.canvas.canvas.height=g.height,null!=g.onScreenSizeChange)g.onScreenSizeChange(g,
776 -g.ScreenWidth,g.ScreenHeight);g.Send(String.fromCharCode(3,0,0,0,0,0)+ShortToStr(g.width)+ShortToStr(g.height))}else g.UnGrabMouseInput(),g.UnGrabKeyInput()};g.tcanvas=null;g.setRotation=function(a){for(;0>a;)a+=4;a%=4;if(1==g.holding)g.rotation=a;else{if(a==g.rotation)return!0;var b=g.canvas.canvas.width,c=g.canvas.canvas.height;if(1==g.rotation||3==g.rotation)b=g.canvas.canvas.height,c=g.canvas.canvas.width;null==g.tcanvas&&(g.tcanvas=document.createElement("canvas"));var d=g.tcanvas.getContext("2d");
777 -d.setTransform(1,0,0,1,0,0);d.canvas.width=b;d.canvas.height=c;d.rotate(-90*g.rotation*Math.PI/180);0==g.rotation&&d.drawImage(g.canvas.canvas,0,0);1==g.rotation&&d.drawImage(g.canvas.canvas,-g.canvas.canvas.width,0);2==g.rotation&&d.drawImage(g.canvas.canvas,-g.canvas.canvas.width,-g.canvas.canvas.height);3==g.rotation&&d.drawImage(g.canvas.canvas,0,-g.canvas.canvas.height);if(0==g.rotation||2==g.rotation)g.canvas.canvas.height=b,g.canvas.canvas.width=c;if(1==g.rotation||3==g.rotation)g.canvas.canvas.height=
778 -c,g.canvas.canvas.width=b;g.canvas.setTransform(1,0,0,1,0,0);g.canvas.rotate(90*a*Math.PI/180);g.rotation=a;g.canvas.drawImage(g.tcanvas,e(0,0),n(0,0));g.width=g.canvas.canvas.width;g.height=g.canvas.canvas.height;if(null!=g.onScreenResize)g.onScreenResize(g,g.width,g.height,g.CanvasId);return!0}};g.Start=function(){g.state=0;g.acc="";g.ZRLEfirst=1;g.onKvmDataPending=[];g.onKvmDataAck=-1;g.kvmDataSupported=!1;for(var a in g.sparecache)delete g.sparecache[a]};g.Stop=function(){g.UnGrabMouseInput();
779 -g.UnGrabKeyInput();g.parent.Stop()};g.Send=function(a){g.parent.Send(a)};var w={Pause:19,CapsLock:20,Space:32,Quote:39,Minus:45,NumpadMultiply:42,NumpadAdd:43,PrintScreen:44,Comma:44,NumpadSubtract:45,NumpadDecimal:46,Period:46,Slash:47,NumpadDivide:47,Semicolon:59,Equal:61,OSLeft:91,BracketLeft:91,OSRight:91,Backslash:92,BracketRight:93,ContextMenu:93,Backquote:96,NumLock:144,ScrollLock:145,Backspace:65288,Tab:65289,Enter:65293,NumpadEnter:65293,Escape:65307,Delete:65535,Home:65360,PageUp:65365,
780 -PageDown:65366,ArrowLeft:65361,ArrowUp:65362,ArrowRight:65363,ArrowDown:65364,End:65367,Insert:65379,F1:65470,F2:65471,F3:65472,F4:65473,F5:65474,F6:65475,F7:65476,F8:65477,F9:65478,F10:65479,F11:65480,F12:65481,ShiftLeft:65505,ShiftRight:65506,ControlLeft:65507,ControlRight:65508,AltLeft:65513,AltRight:65514,MetaLeft:65511,MetaRight:65512};g.sendkey=function(a,b){if("object"==typeof a)for(var c in a)g.sendkey(a[c][0],a[c][1]);else g.Send(String.fromCharCode(4,b,0,0)+IntToStr(a))};g.sendKvmData=function(a){!0!==
781 -g.onKvmDataAck?g.onKvmDataPending.push(a):(urlvars&&urlvars.kvmdatatrace&&console.log("KVM-Send("+a.length+"): "+a),a="\x00KvmDataChannel\x00"+a,g.Send(String.fromCharCode(6,0,0,0)+IntToStr(a.length)+a),g.onKvmDataAck=!1)};g.sendKeepAlive=function(){g.lastKeepAlive<Date.now()-5E3&&(g.lastKeepAlive=Date.now(),g.Send(String.fromCharCode(6,0,0,0)+IntToStr(16)+"\x00KvmDataChannel\x00"))};g.SendCtrlAltDelMsg=function(){g.sendcad()};g.sendcad=function(){g.sendkey(65507,1);g.sendkey(65513,1);g.sendkey(65535,
782 -1);g.sendkey(65535,0);g.sendkey(65513,0);g.sendkey(65507,0)};var l=!1,v=!1;g.GrabMouseInput=function(){if(1!=l){var a=g.canvas.canvas;a.onmouseup=g.mouseup;a.onmousedown=g.mousedown;a.onmousemove=g.mousemove;l=!0}};g.UnGrabMouseInput=function(){if(0!=l){var a=g.canvas.canvas;a.onmousemove=null;a.onmouseup=null;a.onmousedown=null;l=!1}};g.GrabKeyInput=function(){1!=v&&(document.onkeyup=g.handleKeyUp,document.onkeydown=g.handleKeyDown,document.onkeypress=g.handleKeys,v=!0)};g.UnGrabKeyInput=function(){0!=
783 -v&&(document.onkeyup=null,document.onkeydown=null,document.onkeypress=null,v=!1)};g.handleKeys=function(a){return g.haltEvent(a)};g.handleKeyUp=function(a){return m(0,a)};g.handleKeyDown=function(a){return m(1,a)};g.haltEvent=function(a){a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};g.mousedown=function(a){g.buttonmask|=1<<a.button;return g.mousemove(a)};g.mouseup=function(a){g.buttonmask&=65535-(1<<a.button);return g.mousemove(a)};g.mousemove=function(a){if(4!=
784 -g.state)return!0;var b=g.getPositionOfControl(Q(g.canvasid));g.mx=(a.pageX-b[0])*(g.canvas.canvas.height/Q(g.canvasid).offsetHeight);g.my=(a.pageY-b[1]+(c?c.scrollTop:0))*(g.canvas.canvas.width/Q(g.canvasid).offsetWidth);if(1!=g.noMouseRotate){var b=g.mx,d=g.my;g.mx2=0==g.rotation?b:1==g.rotation?d:2==g.rotation?g.canvas.canvas.width-b:3==g.rotation?g.canvas.canvas.height-d:0;b=g.mx;d=g.my;g.my=0==g.rotation?d:1==g.rotation?g.canvas.canvas.width-b:2==g.rotation?g.canvas.canvas.height-d:3==g.rotation?
785 -b:0;g.mx=g.mx2}g.Send(String.fromCharCode(5,g.buttonmask)+ShortToStr(g.mx)+ShortToStr(g.my));return g.haltEvent(a)};g.getPositionOfControl=function(a){var b=Array(2);for(b[0]=b[1]=0;a;)b[0]+=a.offsetLeft,b[1]+=a.offsetTop,a=a.offsetParent;return b};return g},CreateAgentRemoteDesktop=function(b,c){var a={};a.CanvasId=b;"string"===typeof b&&(a.CanvasId=Q(b));a.Canvas=a.CanvasId.getContext("2d");a.scrolldiv=c;a.State=0;a.PendingOperations=[];a.tilesReceived=0;a.TilesDrawn=0;a.KillDraw=0;a.ipad=!1;a.tabletKeyboardVisible=
786 -!1;a.LastX=0;a.LastY=0;a.touchenabled=0;a.submenuoffset=0;a.touchtimer=null;a.TouchArray={};a.connectmode=0;a.connectioncount=0;a.rotation=0;a.protocol=2;a.debugmode=0;a.firstUpKeys=[];a.stopInput=!1;a.sessionid=0;a.username;a.oldie=!1;a.CompressionLevel=50;a.ScalingLevel=1024;a.FrameRateTimer=50;a.FirstDraw=!1;a.ScreenWidth=960;a.ScreenHeight=700;a.width=960;a.height=960;a.onScreenSizeChange=null;a.onMessage=null;a.onConnectCountChanged=null;a.onDebugMessage=null;a.onTouchEnabledChanged=null;a.onDisplayinfo=
787 -null;a.Start=function(){a.State=0};a.Stop=function(){a.setRotation(0);a.UnGrabKeyInput();a.UnGrabMouseInput();a.touchenabled=0;if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);a.Canvas.clearRect(0,0,a.CanvasId.width,a.CanvasId.height)};a.xxStateChange=function(b){if(a.State!=b)switch(a.State=b,b){case 0:a.Stop()}};a.send=function(b){a.parent.send(b)};a.ProcessPictureMsg=function(b,c,d){var r=new Image;r.xcount=a.tilesReceived++;var m=a.tilesReceived;r.src=
788 -"data:image/jpeg;base64,"+btoa(b.substring(4,b.length));r.onload=function(){if(null!=a.Canvas&&a.KillDraw<m&&0!=a.State)for(a.PendingOperations.push([m,2,r,c,d]);a.DoPendingOperations(););};r.error=function(){console.log("DecodeTileError")}};a.DoPendingOperations=function(){if(0==a.PendingOperations.length)return!1;for(var b=0;b<a.PendingOperations.length;b++){var c=a.PendingOperations[b];if(c[0]==a.TilesDrawn+1)return 1==c[1]?a.ProcessCopyRectMsg(c[2]):2==c[1]&&(a.Canvas.drawImage(c[2],a.rotX(c[3],
789 -c[4]),a.rotY(c[3],c[4])),delete c[2]),a.PendingOperations.splice(b,1),delete c,a.TilesDrawn++,a.TilesDrawn==a.tilesReceived&&a.KillDraw<a.TilesDrawn&&(a.KillDraw=a.TilesDrawn=a.tilesReceived=0),!0}a.oldie&&0<a.PendingOperations.length&&a.TilesDrawn++;return!1};a.ProcessCopyRectMsg=function(b){var c=((b.charCodeAt(0)&255)<<8)+(b.charCodeAt(1)&255),d=((b.charCodeAt(2)&255)<<8)+(b.charCodeAt(3)&255),r=((b.charCodeAt(4)&255)<<8)+(b.charCodeAt(5)&255),m=((b.charCodeAt(6)&255)<<8)+(b.charCodeAt(7)&255),
790 -g=((b.charCodeAt(8)&255)<<8)+(b.charCodeAt(9)&255);b=((b.charCodeAt(10)&255)<<8)+(b.charCodeAt(11)&255);a.Canvas.drawImage(Canvas.canvas,c,d,g,b,r,m,g,b)};a.SendUnPause=function(){a.send(String.fromCharCode(0,8,0,5,0))};a.SendPause=function(){a.send(String.fromCharCode(0,8,0,5,1))};a.SendCompressionLevel=function(b,c,d,r){c&&(a.CompressionLevel=c);d&&(a.ScalingLevel=d);r&&(a.FrameRateTimer=r);a.send(String.fromCharCode(0,5,0,10,b,a.CompressionLevel)+a.shortToStr(a.ScalingLevel)+a.shortToStr(a.FrameRateTimer))};
791 -a.SendRefresh=function(){a.send(String.fromCharCode(0,6,0,4))};a.ProcessScreenMsg=function(b,c){a.Canvas.setTransform(1,0,0,1,0,0);a.rotation=0;a.FirstDraw=!0;a.ScreenWidth=a.width=b;a.ScreenHeight=a.height=c;for(a.KillDraw=a.tilesReceived;0<a.PendingOperations.length;)a.PendingOperations.shift();a.SendCompressionLevel(1);a.SendUnPause();if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId)};a.ProcessData=function(b){for(var c=0;c<b.length;)c+=a.ProcessDataEx(b.substring(c))};
792 -a.ProcessDataEx=function(b){if(!(4>b.length)){var c=null,d=0,r=0,m=ReadShort(b,0),g=ReadShort(b,2);g!=b.length&&1==a.debugmode&&console.log(g,b.length,g==b.length);if(18<=m)console.error("Invalid KVM command "+m+" of size "+g),console.log("Invalid KVM data",b.length,b,rstr2hex(b));else if(g>b.length)console.error("KVM invalid command size",g,b.length);else{if(3==m||4==m||7==m)c=b.substring(4,g),d=((c.charCodeAt(0)&255)<<8)+(c.charCodeAt(1)&255),r=((c.charCodeAt(2)&255)<<8)+(c.charCodeAt(3)&255);switch(m){case 3:if(a.FirstDraw)a.onResize();
793 -a.ProcessPictureMsg(c,d,r);break;case 4:if(a.FirstDraw)a.onResize();a.TilesDrawn==a.tilesReceived?a.ProcessCopyRectMsg(c):a.PendingOperations.push([++tilesReceived,1,c]);break;case 7:a.ProcessScreenMsg(d,r);a.SendKeyMsgKC(a.KeyAction.UP,16);a.SendKeyMsgKC(a.KeyAction.UP,17);a.SendKeyMsgKC(a.KeyAction.UP,18);a.SendKeyMsgKC(a.KeyAction.UP,91);a.SendKeyMsgKC(a.KeyAction.UP,92);a.SendKeyMsgKC(a.KeyAction.UP,16);a.send(String.fromCharCode(0,14,0,4));break;case 11:c=[];d=((b.charCodeAt(4)&255)<<8)+(b.charCodeAt(5)&
794 -255);if(0<d)for(var w=0,r=((b.charCodeAt(6+2*d)&255)<<8)+(b.charCodeAt(7+2*d)&255),m=0;m<d;m++){var l=((b.charCodeAt(6+2*m)&255)<<8)+(b.charCodeAt(7+2*m)&255);65535==l?c.push("All Displays"):c.push("Display "+l);l==r&&(w=m)}if(null!=a.onDisplayinfo)a.onDisplayinfo(a,c,w);break;case 14:a.touchenabled=1;a.TouchArray={};if(null!=a.onTouchEnabledChanged)a.onTouchEnabledChanged(a.touchenabled);break;case 15:a.TouchArray={};break;case 16:a.connectioncount=ReadInt(b,4);if(null!=a.onConnectCountChanged)a.onConnectCountChanged(a.connectioncount,
795 -a);break;case 17:if(null!=a.onMessage)a.onMessage(b.substring(4,g),a)}return g}}};a.MouseButton={NONE:0,LEFT:2,RIGHT:8,MIDDLE:32};a.KeyAction={NONE:0,DOWN:1,UP:2,SCROLL:3,EXUP:4,EXDOWN:5};a.InputType={KEY:1,MOUSE:2,CTRLALTDEL:10,TOUCH:15};a.Alternate=0;var d={Pause:19,CapsLock:20,Space:32,Quote:222,Minus:189,NumpadMultiply:106,NumpadAdd:107,PrintScreen:44,Comma:188,NumpadSubtract:109,NumpadDecimal:110,Period:190,Slash:191,NumpadDivide:111,Semicolon:186,Equal:187,OSLeft:91,BracketLeft:219,OSRight:91,
796 -Backslash:220,BracketRight:221,ContextMenu:93,Backquote:192,NumLock:144,ScrollLock:145,Backspace:8,Tab:9,Enter:13,NumpadEnter:13,Escape:27,Delete:46,Home:36,PageUp:33,PageDown:34,ArrowLeft:37,ArrowUp:38,ArrowRight:39,ArrowDown:40,End:35,Insert:45,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,ShiftLeft:16,ShiftRight:16,ControlLeft:17,ControlRight:17,AltLeft:18,AltRight:18,MetaLeft:91,MetaRight:92,VolumeMute:181};a.SendKeyMsg=function(b,c){if(null!=b)if(c||(c=
797 -window.event),c.code){var p;p=c;p=p.code.startsWith("Key")&&4==p.code.length?p.code.charCodeAt(3):p.code.startsWith("Digit")&&6==p.code.length?p.code.charCodeAt(5):p.code.startsWith("Numpad")&&7==p.code.length?p.code.charCodeAt(6)+48:d[p.code];null!=p&&a.SendKeyMsgKC(b,p)}else p=c.keyCode,59==p&&(p=186),a.SendKeyMsgKC(b,p)};a.SendMessage=function(b){3==a.State&&a.send(String.fromCharCode(0,17)+a.shortToStr(4+b.length)+b)};a.SendKeyMsgKC=function(b,c){3==a.State&&a.send(String.fromCharCode(0,a.InputType.KEY,
798 -0,6,b-1,c))};a.sendcad=function(){a.SendCtrlAltDelMsg()};a.SendCtrlAltDelMsg=function(){3==a.State&&a.send(String.fromCharCode(0,a.InputType.CTRLALTDEL,0,4))};a.SendEscKey=function(){3==a.State&&a.send(String.fromCharCode(0,a.InputType.KEY,0,6,0,27,0,a.InputType.KEY,0,6,1,27))};a.SendStartMsg=function(){a.SendKeyMsgKC(a.KeyAction.EXDOWN,91);a.SendKeyMsgKC(a.KeyAction.EXUP,91)};a.SendCharmsMsg=function(){a.SendKeyMsgKC(a.KeyAction.EXDOWN,91);a.SendKeyMsgKC(a.KeyAction.DOWN,67);a.SendKeyMsgKC(a.KeyAction.UP,
799 -67);a.SendKeyMsgKC(a.KeyAction.EXUP,91)};a.SendTouchMsg1=function(b,c,d,r){3==a.State&&a.send(String.fromCharCode(0,a.InputType.TOUCH)+a.shortToStr(14)+String.fromCharCode(1,b)+a.intToStr(c)+a.shortToStr(d)+a.shortToStr(r))};a.SendTouchMsg2=function(b,c){var d="",r,m;for(m in a.TouchArray)m==b?r=c:1==a.TouchArray[m].f?(r=65542,a.TouchArray[m].f=3):r=2==a.TouchArray[m].f?262144:131078,d+=String.fromCharCode(m)+a.intToStr(r)+a.shortToStr(a.TouchArray[m].x)+a.shortToStr(a.TouchArray[m].y),2==a.TouchArray[m].f&&
800 -delete a.TouchArray[m];3==a.State&&a.send(String.fromCharCode(0,a.InputType.TOUCH)+a.shortToStr(5+d.length)+String.fromCharCode(2)+d);0==Object.keys(a.TouchArray).length&&null!=a.touchtimer&&(clearInterval(a.touchtimer),a.touchtimer=null)};a.SendMouseMsg=function(b,c){if(3==a.State&&null!=b&&null!=a.Canvas){c||(c=window.event);var d=a.Canvas.canvas.height/a.CanvasId.clientHeight,r=a.Canvas.canvas.width/a.CanvasId.clientWidth,m=a.GetPositionOfControl(a.Canvas.canvas),r=(c.pageX-m[0])*r,d=(c.pageY-
801 -m[1])*d,m=0==a.rotation?r:1==a.rotation?d:2==a.rotation?a.Canvas.canvas.width-r:3==a.rotation?a.Canvas.canvas.height-d:0,d=0==a.rotation?d:1==a.rotation?a.Canvas.canvas.width-r:2==a.rotation?a.Canvas.canvas.height-d:3==a.rotation?r:0,r=m;if(0<=r&&r<=a.Canvas.canvas.width&&0<=d&&d<=a.Canvas.canvas.height){var g=m=0;b==a.KeyAction.UP||b==a.KeyAction.DOWN?c.which?1==c.which?m=a.MouseButton.LEFT:2==c.which?m=a.MouseButton.MIDDLE:m=a.MouseButton.RIGHT:c.button&&(0==c.button?m=a.MouseButton.LEFT:1==c.button?
802 -m=a.MouseButton.MIDDLE:m=a.MouseButton.RIGHT):b==a.KeyAction.SCROLL&&(c.detail?g=-120*c.detail:c.wheelDelta&&(g=3*c.wheelDelta));var w="",w=b==a.KeyAction.SCROLL?String.fromCharCode(0,a.InputType.MOUSE,0,12,0,b==a.KeyAction.DOWN?m:2*m&255,r/256&255,r&255,d/256&255,d&255,g/256&255,g&255):String.fromCharCode(0,a.InputType.MOUSE,0,10,0,b==a.KeyAction.DOWN?m:2*m&255,r/256&255,r&255,d/256&255,d&255);a.Action==a.KeyAction.NONE?0==a.Alternate||a.ipad?(a.send(w),a.Alternate=1):a.Alternate=0:a.send(w)}}};
803 -a.GetDisplayNumbers=function(){a.send(String.fromCharCode(0,11,0,4))};a.SetDisplay=function(b){a.send(String.fromCharCode(0,12,0,6,b>>8,b&255))};a.intToStr=function(a){return String.fromCharCode(a>>24&255,a>>16&255,a>>8&255,a&255)};a.shortToStr=function(a){return String.fromCharCode(a>>8&255,a&255)};a.onResize=function(){if(0!=a.ScreenWidth&&0!=a.ScreenHeight&&(a.Canvas.canvas.width!=a.ScreenWidth||a.Canvas.canvas.height!=a.ScreenHeight)){if(a.FirstDraw&&(a.Canvas.canvas.width=a.ScreenWidth,a.Canvas.canvas.height=
804 -a.ScreenHeight,a.Canvas.fillRect(0,0,a.ScreenWidth,a.ScreenHeight),null!=a.onScreenSizeChange))a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);a.FirstDraw=!1}};a.xxMouseInputGrab=!1;a.xxKeyInputGrab=!1;a.xxMouseMove=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.NONE,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxMouseUp=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.UP,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&
805 -b.stopPropagation();return!1};a.xxMouseDown=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.DOWN,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxDOMMouseScroll=function(b){return 3==a.State?(a.SendMouseMsg(a.KeyAction.SCROLL,b),!1):!0};a.xxMouseWheel=function(b){return 3==a.State?(a.SendMouseMsg(a.KeyAction.SCROLL,b),!1):!0};a.xxKeyUp=function(b){3==a.State&&a.SendKeyMsg(a.KeyAction.UP,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();
806 -return!1};a.xxKeyDown=function(b){3==a.State&&a.SendKeyMsg(a.KeyAction.DOWN,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxKeyPress=function(a){a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};a.handleKeys=function(b){return 1==a.stopInput||3!=desktop.State?!1:a.xxKeyPress(b)};a.handleKeyUp=function(b){if(1==a.stopInput||3!=desktop.State)return!1;if(5>a.firstUpKeys.length&&(a.firstUpKeys.push(b.keyCode),5==a.firstUpKeys.length)){var c=
807 -a.firstUpKeys.join(",");if("16,17,91,91,16"==c||"16,17,18,91,92"==c)a.stopInput=!0}return a.xxKeyUp(b)};a.handleKeyDown=function(b){return 1==a.stopInput||3!=desktop.State?!1:a.xxKeyDown(b)};a.mousedown=function(b){return 1==a.stopInput?!1:a.xxMouseDown(b)};a.mouseup=function(b){return 1==a.stopInput?!1:a.xxMouseUp(b)};a.mousemove=function(b){return 1==a.stopInput?!1:a.xxMouseMove(b)};a.mousewheel=function(b){return 1==a.stopInput?!1:a.xxMouseWheel(b)};a.xxMsTouchEvent=function(b){if(4!=b.originalEvent.pointerType){b.preventDefault&&
808 -b.preventDefault();b.stopPropagation&&b.stopPropagation();if("MSPointerDown"==b.type||"MSPointerMove"==b.type||"MSPointerUp"==b.type){var c=0,d=b.originalEvent.pointerId%256,r=Canvas.canvas.width/a.CanvasId.clientWidth*b.offsetX,m=Canvas.canvas.height/a.CanvasId.clientHeight*b.offsetY;"MSPointerDown"==b.type?c=65542:"MSPointerMove"==b.type?c=131078:"MSPointerUp"==b.type&&(c=262144);a.TouchArray[d]||(a.TouchArray[d]={x:r,y:m});a.SendTouchMsg2(d,c);"MSPointerUp"==b.type&&delete a.TouchArray[d]}else alert(b.type);
809 -return!0}};a.xxTouchStart=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled){if(!(1<b.originalEvent.touches.length)){var c=b.originalEvent.touches[0];b.which=1;a.LastX=b.pageX=c.pageX;a.LastY=b.pageY=c.pageY;a.SendMouseMsg(KeyAction.DOWN,b)}}else{var c=a.GetPositionOfControl(Canvas.canvas),d;for(d in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[d].identifier){var r=b.originalEvent.changedTouches[d].identifier%256;a.TouchArray[r]||
810 -(a.TouchArray[r]={x:Canvas.canvas.width/a.CanvasId.clientWidth*(b.originalEvent.touches[d].pageX-c[0]),y:Canvas.canvas.height/a.CanvasId.clientHeight*(b.originalEvent.touches[d].pageY-c[1]),f:1})}0<Object.keys(a.TouchArray).length&&null==touchtimer&&(a.touchtimer=setInterval(function(){a.SendTouchMsg2(256,0)},50))}};a.xxTouchMove=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled){if(!(1<b.originalEvent.touches.length)){var c=b.originalEvent.touches[0];
811 -b.which=1;a.LastX=b.pageX=c.pageX;a.LastY=b.pageY=c.pageY;a.SendMouseMsg(a.KeyAction.NONE,b)}}else{var c=a.GetPositionOfControl(Canvas.canvas),d;for(d in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[d].identifier){var r=b.originalEvent.changedTouches[d].identifier%256;a.TouchArray[r]&&(a.TouchArray[r].x=a.Canvas.canvas.width/a.CanvasId.clientWidth*(b.originalEvent.touches[d].pageX-c[0]),a.TouchArray[r].y=a.Canvas.canvas.height/a.CanvasId.clientHeight*(b.originalEvent.touches[d].pageY-
812 -c[1]))}}};a.xxTouchEnd=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled)1<b.originalEvent.touches.length||(b.which=1,b.pageX=LastX,b.pageY=LastY,a.SendMouseMsg(KeyAction.UP,b));else for(var c in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[c].identifier){var d=b.originalEvent.changedTouches[c].identifier%256;a.TouchArray[d]&&(a.TouchArray[d].f=2)}};a.GrabMouseInput=function(){if(1!=a.xxMouseInputGrab){var b=a.CanvasId;b.onmousemove=
813 -a.xxMouseMove;b.onmouseup=a.xxMouseUp;b.onmousedown=a.xxMouseDown;b.touchstart=a.xxTouchStart;b.touchmove=a.xxTouchMove;b.touchend=a.xxTouchEnd;b.MSPointerDown=a.xxMsTouchEvent;b.MSPointerMove=a.xxMsTouchEvent;b.MSPointerUp=a.xxMsTouchEvent;navigator.userAgent.match(/mozilla/i)?b.DOMMouseScroll=a.xxDOMMouseScroll:b.onmousewheel=a.xxMouseWheel;a.xxMouseInputGrab=!0}};a.UnGrabMouseInput=function(){if(0!=a.xxMouseInputGrab){var b=a.CanvasId;b.onmousemove=null;b.onmouseup=null;b.onmousedown=null;b.touchstart=
814 -null;b.touchmove=null;b.touchend=null;b.MSPointerDown=null;b.MSPointerMove=null;b.MSPointerUp=null;navigator.userAgent.match(/mozilla/i)?b.DOMMouseScroll=null:b.onmousewheel=null;a.xxMouseInputGrab=!1}};a.GrabKeyInput=function(){1!=a.xxKeyInputGrab&&(document.onkeyup=a.xxKeyUp,document.onkeydown=a.xxKeyDown,document.onkeypress=a.xxKeyPress,a.xxKeyInputGrab=!0)};a.UnGrabKeyInput=function(){0!=a.xxKeyInputGrab&&(document.onkeyup=null,document.onkeydown=null,document.onkeypress=null,a.xxKeyInputGrab=
815 -!1)};a.GetPositionOfControl=function(a){var b=Array(2);for(b[0]=b[1]=0;a;)b[0]+=a.offsetLeft,b[1]+=a.offsetTop,a=a.offsetParent;return b};a.crotX=function(b,c){if(0==a.rotation)return b;if(1==a.rotation)return c;if(2==a.rotation)return a.Canvas.canvas.width-b;if(3==a.rotation)return a.Canvas.canvas.height-c};a.crotY=function(b,c){if(0==a.rotation)return c;if(1==a.rotation)return a.Canvas.canvas.width-b;if(2==a.rotation)return a.Canvas.canvas.height-c;if(3==a.rotation)return b};a.rotX=function(b,c){if(0==
816 -a.rotation||1==a.rotation)return b;if(2==a.rotation)return b-a.Canvas.canvas.width;if(3==a.rotation)return b-a.Canvas.canvas.height};a.rotY=function(b,c){if(0==a.rotation||3==a.rotation)return c;if(1==a.rotation)return c-a.Canvas.canvas.width;if(2==a.rotation)return c-a.Canvas.canvas.height};a.tcanvas=null;a.setRotation=function(b){for(;0>b;)b+=4;b%=4;if(b==a.rotation)return!0;var c=a.Canvas.canvas.width,d=a.Canvas.canvas.height;if(1==a.rotation||3==a.rotation)c=a.Canvas.canvas.height,d=a.Canvas.canvas.width;
817 -null==a.tcanvas&&(a.tcanvas=document.createElement("canvas"));var r=a.tcanvas.getContext("2d");r.setTransform(1,0,0,1,0,0);r.canvas.width=c;r.canvas.height=d;r.rotate(-90*a.rotation*Math.PI/180);0==a.rotation&&r.drawImage(a.Canvas.canvas,0,0);1==a.rotation&&r.drawImage(a.Canvas.canvas,-a.Canvas.canvas.width,0);2==a.rotation&&r.drawImage(a.Canvas.canvas,-a.Canvas.canvas.width,-a.Canvas.canvas.height);3==a.rotation&&r.drawImage(a.Canvas.canvas,0,-a.Canvas.canvas.height);if(0==a.rotation||2==a.rotation)a.Canvas.canvas.height=
818 -c,a.Canvas.canvas.width=d;if(1==a.rotation||3==a.rotation)a.Canvas.canvas.height=d,a.Canvas.canvas.width=c;a.Canvas.setTransform(1,0,0,1,0,0);a.Canvas.rotate(90*b*Math.PI/180);a.rotation=b;a.Canvas.drawImage(a.tcanvas,a.rotX(0,0),a.rotY(0,0));a.ScreenWidth=a.Canvas.canvas.width;a.ScreenHeight=a.Canvas.canvas.height;if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);return!0};a.MuchTheSame=function(a,b){return 4>Math.abs(a-b)};a.Debug=function(a){console.log(a)};
819 -a.getIEVersion=function(){var a=-1;"Microsoft Internet Explorer"==navigator.appName&&null!=/MSIE ([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)&&(a=parseFloat(RegExp.$1));return a};a.haltEvent=function(a){a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};return a},CreateKvmDataChannel=function(b,c,a){var d={};d.m=c;c.parent=d;d.webchannel=b;d.State=0;d.protocol=c.protocol;d.onStateChanged=null;d.onControlMsg=null;d.debugmode=0;d.keepalive=a;d.rtcKeepAlive=null;
820 -d.Start=function(){1==d.debugmode&&console.log("start");d.xxStateChange(3);d.webchannel.onmessage=d.xxOnMessage;d.rtcKeepAlive=setInterval(d.xxSendRtcKeepAlive,3E4)};var e=new FileReader,n=!1,p=[];e.readAsBinaryString?e.onload=function(a){d.xxOnSocketData(a.target.result);0==p.length?n=!1:e.readAsBinaryString(new Blob([p.shift()]))}:e.readAsArrayBuffer&&(e.onloadend=function(a){d.xxOnSocketData(a.target.result);0==p.length?n=!1:e.readAsArrayBuffer(p.shift())});d.xxOnMessage=function(a){if("string"==
821 -typeof a.data){if(null!=d.onControlMsg)d.onControlMsg(a.data)}else if("object"==typeof a.data)if(1==n)p.push(a.data);else if(e.readAsBinaryString)n=!0,e.readAsBinaryString(new Blob([a.data]));else if(f.readAsArrayBuffer)n=!0,e.readAsArrayBuffer(a.data);else{var b="";a=new Uint8Array(a.data);for(var c=a.byteLength,w=0;w<c;w++)b+=String.fromCharCode(a[w]);d.xxOnSocketData(b)}else d.xxOnSocketData(a.data)};d.xxOnSocketData=function(a){if(a){if("object"===typeof a){var b="";a=new Uint8Array(a);for(var c=
822 -a.byteLength,e=0;e<c;e++)b+=String.fromCharCode(a[e]);a=b}else if("string"!==typeof a)return;return d.m.ProcessData(a)}};d.sendCtrlMsg=function(a){"string"==typeof a&&(d.webchannel.send(a),urlvars&&urlvars.webrtctrace&&console.log("WebRTC-Send("+d.State+"): ",typeof a,a),null!=d.keepalive&&d.keepalive.sendKeepAlive())};d.send=function(a){if("string"==typeof a){for(var b=new Uint8Array(a.length),c=0;c<a.length;++c)b[c]=a.charCodeAt(c);a=b}urlvars&&urlvars.webrtctrace&&console.log("WebRTC-Send("+d.State+
823 -"): ",typeof a,a);d.webchannel.send(a)};d.xxStateChange=function(a){if(d.State!=a&&(d.State=a,d.m.xxStateChange(d.State),null!=d.onStateChanged))d.onStateChanged(d,d.State)};d.Stop=function(){1==d.debugmode&&console.log("stop");null!=d.rtcKeepAlive&&(clearInterval(d.rtcKeepAlive),d.rtcKeepAlive=null);d.xxStateChange(0)};d.xxSendRtcKeepAlive=function(){urlvars&&urlvars.webrtctrace&&console.log("WebRTC-SendKeepAlive()");d.sendCtrlMsg(JSON.stringify({action:"ping"}))};return d},CreateAmtRemoteTerminal=
824 -function(b){function c(b){if("\x00"!=b&&7!=b.charCodeAt()){var d=b.charCodeAt();if(0==p.terminalEmulation){b=!0;0==(d&128)?(B=d,y=0,b=!1):192==(d&224)?(B=d&31,y=1,b=!0):224==(d&240)?(B=d&15,y=2,b=!0):128==(d&192)&&(0<y?(B<<=6,B+=d&63,y--,b=0!=y):(y=B=0,b=!0));if(1==b)return;b=String.fromCharCode(B)}else 1==p.terminalEmulation?0!=(d&128)&&(b=String.fromCharCode(I[d&127])):2==p.terminalEmulation&&0!=(d&128)&&(b=String.fromCharCode(F[d&127]));switch(d){case 16:b=" ";break;case 24:b="\u2191";break;case 25:b=
825 -"\u2193"}v>p.width&&(v=p.width);x>p.height-1&&(x=p.height-1);switch(b){case "\b":0<v&&(--v,a(" "));break;case "\t":d=8-v%8;for(b=0;b<d;b++)c(" ");break;case "\n":x++;x>p.height-1&&(n(1),x=p.height-1);break;case "\r":v=0;break;default:v>=p.width&&(v=0,l&&x++,x>=p.height-1&&(n(1),x=p.height-1)),a(b),v++}}}function a(a){C[x][v]=a;q[x][v]=(g<<6)+(w<<12)+m}function d(){for(var a=w<<12,b=v;b<p.width;b++)C[x][b]=" ",q[x][b]=a}function e(a){for(var b=w<<12,c=0;c<p.width;c++)C[a][c]=" ",q[a][c]=b}function n(a){var b;
826 -for(b=0;b<p.height-a;b++)C[b]=C[b+a],q[b]=q[b+a];for(b=p.height-a;b<p.height;b++)for(C[b]=[],q[b]=[],a=0;a<p.width;a++)C[b][a]=" ",q[b][a]=448}var p={};p.DivId=b;p.DivElement=document.getElementById(b);p.protocol=1;p.terminalEmulation=1;p.fxEmulation=0;p.fxLineBreak=0;p.width=80;p.height=25;var r="000000 BB0000 00BB00 BBBB00 0000BB BB00BB 00BBBB BBBBBB 555555 FF5555 55FF55 FFFF55 5555FF FF55FF 55FFFF FFFFFF".split(" "),m=0,g=7,w=0,l=!0,v=0,x=0,k=0,h=[],K=0,q=[],C=[],B=0,y=0;p.Start=function(){};p.Init=
827 -function(a,b){p.width=a?a:80;p.height=b?b:25;for(var c=0;c<p.height;c++){C[c]=[];q[c]=[];for(var d=0;d<p.width;d++)C[c][d]=" ",q[c][d]=448}p.TermInit();p.TermDraw()};p.xxStateChange=function(a){};p.ProcessData=function(a){null!=p.capture&&(p.capture+=a);for(var b=0;b<a.length;b++){var n=String.fromCharCode(a.charCodeAt(b)),r=a.charCodeAt(b);switch(k){case 0:switch(r){case 27:k=1;break;default:c(n)}break;case 1:switch(n){case "[":K=0;h=[];k=2;break;case "(":k=4;break;case ")":k=5;break;default:k=0}break;
828 -case 2:if("0"<=n&&"9">=n){h[K]=h[K]?10*h[K]+(n-0):n-0;break}else if(";"==n){K++;break}else{h[0]||(h[0]=0);var r=h,y=K+1,B=void 0;switch(n){case "c":p.TermResetScreen();break;case "A":1==y&&(x-=r[0],0>x&&(x=0));break;case "B":1==y&&(x+=r[0],x>p.height&&(x=p.height));break;case "C":1==y&&(v+=r[0],v>p.width&&(v=p.width));break;case "D":1==y&&(v-=r[0],0>v&&(v=0));break;case "d":1==y&&(x=r[0]-1,x>p.height&&(x=p.height),0>x&&(x=0));break;case "G":1==y&&(v=r[0]-1,0>v&&(v=0),79<v&&(v=79));break;case "J":if(1==
829 -y&&2==r[0])p.TermClear((w<<12)+(g<<6)),x=v=0;else if(0==y||1==y&&0==r[0])for(d(),B=x+1;B<p.height;B++)e(B);else if(1==y&&1==r[0])for(d(),B=0;B<x-1;B++)e(B);break;case "H":2==y?(1>r[0]&&(r[0]=1),1>r[1]&&(r[1]=1),r[0]>p.height&&(r[0]=p.height),r[1]>p.width&&(r[1]=p.width),x=r[0]-1,v=r[1]-1):v=x=0;break;case "m":for(B=0;B<y;B++)r[B]&&0!=r[B]?1==r[B]?8>g&&(g+=8):2==r[B]||22==r[B]?8<=g&&(g-=8):7==r[B]?m=2:27==r[B]?m=0:30<=r[B]&&37>=r[B]?(n=8<=g,g=r[B]-30,n&&8>=g&&(g+=8)):40<=r[B]&&47>=r[B]?w=r[B]-40:90<=
830 -r[B]&&99>=r[B]?g=r[B]-82:100<=r[B]&&109>=r[B]&&(w=r[B]-92):(w=0,g=7,m=0);break;case "K":if(0!=y&&(1!=y||r[0]&&0!=r[0])){if(1==y)if(1==r[0])for(n=w<<12,r=0;r<v;r++)C[x][r]=" ",q[x][r]=n;else 2==r[0]&&e(x)}else d();break;case "h":l=!0;break;case "l":l=!1}k=0}break;case 4:k=0;break;case 5:k=0}}p.TermDraw()};p.ProcessVt100String=function(a){for(var b=0;b<a.length;b++)c(String.fromCharCode(a.charCodeAt(b)))};var I=[199,252,233,226,228,224,229,231,234,235,232,239,238,236,196,197,201,230,198,244,246,242,
831 -251,249,255,214,220,162,163,165,8359,402,225,237,243,250,241,209,170,218,191,8976,172,189,188,161,171,187,9619,9618,9617,9474,9508,9569,9570,9558,9557,9571,9553,9559,9565,9564,9563,9488,9492,9524,9516,9500,9472,9532,9566,9567,9562,9556,9577,9574,9568,9552,9580,9575,9576,9572,9573,9576,9560,9554,9555,9579,9578,9496,9484,9608,9604,9611,9616,9600,945,223,915,960,931,963,181,964,966,952,8486,948,8734,248,949,8719,8801,177,8805,8806,8992,8993,247,8776,176,8226,183,8730,8319,178,8718,160],F=[199,252,233,
832 -226,228,224,229,231,234,235,232,239,238,236,196,197,201,230,198,244,246,242,251,249,255,214,220,162,163,165,8359,402,225,237,243,250,241,209,170,218,191,8976,172,189,188,161,174,187,9619,9618,9617,9474,9508,9569,9570,9558,9557,9571,9553,9559,9565,9564,9563,9488,9492,9524,9516,9500,9472,9532,9566,9567,9562,9556,9577,9574,9568,9552,9580,9575,9576,9572,9573,9576,9560,9554,9555,9579,9578,9496,9484,9608,9604,9611,9616,9600,945,223,915,960,931,963,181,964,966,952,8486,948,8734,248,949,8719,8801,177,8805,
833 -8806,8992,8993,247,8776,176,8226,183,8730,8319,178,8718,160];p.TermClear=function(a){for(var b=0;b<p.height;b++)for(var c=0;c<p.width;c++)C[b][c]=" ",q[b][c]=a};p.TermResetScreen=function(){m=0;g=7;w=0;l=!0;x=v=0;p.TermClear(448)};p.TermSendKeys=function(a){console.log(a);p.parent.Send(a)};p.TermSendKey=function(a){p.parent.Send(String.fromCharCode(a))};p.TermHandleKeys=function(a){if(!a.ctrlKey)return 127==a.which?p.TermSendKey(8):13==a.which?p.TermSendKeys(0==p.fxLineBreak?"\r\n":"\n"):0!=a.which&&
834 -p.TermSendKey(a.which),!1;a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation()};p.TermHandleKeyUp=function(a){if(8!=a.which&&32!=a.which&&9!=a.which)return!0;a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};p.TermHandleKeyDown=function(a){if(65<=a.which&&90>=a.which&&1==a.ctrlKey)p.TermSendKey(a.which-64),a.preventDefault&&a.preventDefault(),a.stopPropagation&&a.stopPropagation();else{if(27==a.which)return p.TermSendKeys(String.fromCharCode(27)),
835 -!0;if(37==a.which)return p.TermSendKeys(String.fromCharCode(27,91,68)),!0;if(38==a.which)return p.TermSendKeys(String.fromCharCode(27,91,65)),!0;if(39==a.which)return p.TermSendKeys(String.fromCharCode(27,91,67)),!0;if(40==a.which)return p.TermSendKeys(String.fromCharCode(27,91,66)),!0;if(9==a.which)return p.TermSendKeys("\t"),a.preventDefault&&a.preventDefault(),a.stopPropagation&&a.stopPropagation(),!0;var b=[80,81,119,120,116,117,113,114,112,77],c=[49,50,51,52,53,54,55,56,57,48,33,64],d=[80,81,
836 -82,83,84,85,86,87,88,89,90,91];if(111<a.which&124>a.which&&0==a.repeat){if(0==p.fxEmulation&&122>a.which)return p.TermSendKeys(String.fromCharCode(27,91,79,b[a.which-112])),!0;if(1==p.fxEmulation)return p.TermSendKeys(String.fromCharCode(27,c[a.which-112])),!0;if(2==p.fxEmulation)return p.TermSendKeys(String.fromCharCode(27,79,d[a.which-112])),!0}if(8!=a.which&&32!=a.which&&9!=a.which)return!0;p.TermSendKey(a.which);a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1}};
837 -p.TermDraw=function(){for(var a,b="",c="",d=1,e,g=0;g<p.height;++g){for(var h=0;h<p.width;++h)switch(a=q[g][h],v==h&&x==g&&(a|=2),a!=d&&(b+=c,c="",d=6,e=12,a&2&&(d=12,e=6),b+='<span style="color:#'+r[a>>d&63]+";background-color:#"+r[a>>e&63],a&1&&(b+=";text-decoration:underline"),b+=';">',c="</span>"+c,d=a),a=C[g][h],a){case "&":b+="&amp;";break;case "<":b+="&lt;";break;case ">":b+="&gt;";break;case " ":b+="&nbsp;";break;default:b+=a}g!=p.height-1&&(b+="<br>")}p.DivElement.innerHTML="<font size='4'><b>"+
838 -b+c+"</b></font>"};p.TermInit=function(){p.TermResetScreen()};p.Init();return p},saveAs=saveAs||function(b){if("undefined"===typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var c=b.document.createElementNS("http://www.w3.org/1999/xhtml","a"),a="download"in c,d=/Version\/[\d\.]+.*Safari/.test(navigator.userAgent),e=b.webkitRequestFileSystem,n=b.requestFileSystem||e||b.mozRequestFileSystem,p=function(a){(b.setImmediate||b.setTimeout)(function(){throw a;},0)},r=0,m=function(a){var c=function(){"string"===
839 -typeof a?(b.URL||b.webkitURL||b).revokeObjectURL(a):a.remove()};b.chrome?c():setTimeout(c,500)},g=function(a,b,c){b=[].concat(b);for(var d=b.length;d--;){var e=a["on"+b[d]];if("function"===typeof e)try{e.call(a,c||a)}catch(g){p(g)}}},w=function(a){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(a.type)?new Blob(["\ufeff",a],{type:a.type}):a},l=function(l,k,h){h||(l=w(l));var p=this;h=l.type;var q=!1,v,B,y=function(){g(p,["writestart","progress","write","writeend"])},
840 -I=function(){if(B&&d&&"undefined"!==typeof FileReader){var a=new FileReader;a.onloadend=function(){var b=a.result;B.location.href="data:attachment/file"+b.slice(b.search(/[,;]/));p.readyState=p.DONE;y()};a.readAsDataURL(l);p.readyState=p.INIT}else{if(q||!v)v=(b.URL||b.webkitURL||b).createObjectURL(l);B?B.location.href=v:void 0==b.open(v,"_blank")&&d&&(b.location.href=v);p.readyState=p.DONE;y();m(v)}},F=function(a){return function(){if(p.readyState!==p.DONE)return a.apply(this,arguments)}},E={create:!0,
841 -exclusive:!1},z;p.readyState=p.INIT;k||(k="download");if(a)v=(b.URL||b.webkitURL||b).createObjectURL(l),c.href=v,c.download=k,setTimeout(function(){var a=new MouseEvent("click");c.dispatchEvent(a);y();m(v);p.readyState=p.DONE});else{b.chrome&&h&&"application/octet-stream"!==h&&(z=l.slice||l.webkitSlice,l=z.call(l,0,l.size,"application/octet-stream"),q=!0);e&&"download"!==k&&(k+=".download");if("application/octet-stream"===h||e)B=b;n?(r+=l.size,n(b.TEMPORARY,r,F(function(a){a.root.getDirectory("saved",
842 -E,F(function(a){var b=function(){a.getFile(k,E,F(function(a){a.createWriter(F(function(b){b.onwriteend=function(b){B.location.href=a.toURL();p.readyState=p.DONE;g(p,"writeend",b);m(a)};b.onerror=function(){var a=b.error;a.code!==a.ABORT_ERR&&I()};["writestart","progress","write","abort"].forEach(function(a){b["on"+a]=p["on"+a]});b.write(l);p.abort=function(){b.abort();p.readyState=p.DONE};p.readyState=p.WRITING}),I)}),I)};a.getFile(k,{create:!1},F(function(a){a.remove();b()}),F(function(a){a.code===
843 -a.NOT_FOUND_ERR?b():I()}))}),I)}),I)):I()}},v=l.prototype;if("undefined"!==typeof navigator&&navigator.msSaveOrOpenBlob)return function(a,b,c){c||(a=w(a));return navigator.msSaveOrOpenBlob(a,b||"download")};v.abort=function(){this.readyState=this.DONE;g(this,"abort")};v.readyState=v.INIT=0;v.WRITING=1;v.DONE=2;v.error=v.onwritestart=v.onprogress=v.onwrite=v.onabort=v.onerror=v.onwriteend=null;return function(a,b,c){return new l(a,b,c)}}}("undefined"!==typeof self&&self||"undefined"!==typeof window&&
844 -window||this.content);"undefined"!==typeof module&&module.exports?module.exports.saveAs=saveAs:"undefined"!==typeof define&&null!==define&&null!=define.amd&&define([],function(){return saveAs});
756 +function script_compile(b,c){var a="",d=b.split("\n"),e={},q=[],k=[],v;for(v in d){var n=d[v];if(n.startsWith("##SWAP ")){var p=n.split(" ");3==p.length&&(k[p[1]]=p[2])}if("#"!=n[0]&&0!=n.length){for(p in k)n=n.split(p).join(k[p]);var h=n.match(/"[^"]*"|[^\s"]+/g);if(0!=h.length)if(":"==n[0])e[h[0].toUpperCase()]=a.length;else{n=script_functionTable1.indexOf(h[0].toLowerCase());-1==n&&(n=script_functionTable2.indexOf(h[0].toLowerCase()),0<=n&&(n+=1E4));-1==n&&(n=script_functionTable3.indexOf(h[0].toLowerCase()),
757 +0<=n&&(n+=2E4));if(-1==n)return c&&c("Unabled to compile, unknown command: "+h[0]),"";var m=ShortToStr(h.length-1),w;for(w in h)if(0!=w)if(":"==h[w][0])q.push([h[w],a.length+m.length+7]),m+=ShortToStr(5)+String.fromCharCode(3)+IntToStr(4294967295);else var B=parseInt(h[w]),m=B==h[w]?m+(ShortToStr(5)+String.fromCharCode(2)+IntToStr(B)):'"'==h[w][0]&&'"'==h[w][h[w].length-1]?m+(ShortToStr(h[w].length-1)+String.fromCharCode(1)+h[w].substring(1,h[w].length-1)):m+(ShortToStr(h[w].length+1)+String.fromCharCode(0)+
758 +h[w]);m=ShortToStr(n)+ShortToStr(m.length+4)+m;a+=m}}}for(v in q){d=q[v][0].toUpperCase();k=q[v][1];p=e[d];if(void 0==p)return c&&c("Unabled to compile, unknown label: "+d),"";a=a.substr(0,k)+IntToStr(p)+a.substr(k+4)}return IntToStr(612182341)+ShortToStr(1)+a}
759 +function script_decompile(b,c){var a="",d=6,e={};if(0<=c)d=c;else{if(6>b.length)return"# Invalid script length";var q=ReadInt(b,0),k=ReadShort(b,4);if(612182341!=q)return"# Invalid binary script: "+q;if(1!=k)return"# Invalid script version"}for(;d<b.length;){var q=ReadShort(b,d),k=ReadShort(b,d+2),v=ReadShort(b,d+4),n=d+6,p="";0<=c||(a+=":label"+(d-6)+"\n");for(var h=0;h<v;h++){var m=ReadShort(b,n),w=b.substring(n+2,n+2+m),B=w.charCodeAt(0);0==B?p+=" "+w.substring(1):1==B?p+=' "'+w.substring(1)+'"':
760 +2==B?p+=" "+ReadInt(w,1):3==B&&(w=ReadInt(w,1),B=e[w],B||(B=":label"+w,e[B]=w),p+=" "+B);n+=2+m}a=1E4>q?a+(script_functionTable1[q]+p+"\n"):2E4<=q?a+(script_functionTable3[q-2E4]+p+"\n"):a+(script_functionTable2[q-1E4]+p+"\n");d+=k;if(0<=c)return a}d=a.split("\n");a="";for(h in d)q=d[h],":"!=q[0]?a+=q+"\n":e[q]&&(a+=q+"\n");return a}
761 +var CreateAmtRemoteDesktop=function(b,c){function a(a,b,c,m,n,p,w,B){var E=a.charCodeAt(b++);B={};var D=0,z=0;if(0==E){for(n=0;n<w;n++)e(a.charCodeAt(b++)+(2==h.bpp?a.charCodeAt(b++)<<8:0),n);d(h.spare,c,m)}else if(1==E)E=a.charCodeAt(b++)+(2==h.bpp?a.charCodeAt(b++)<<8:0),h.canvas.fillStyle="rgb("+(1==h.bpp?(E&224)+","+((E&28)<<3)+","+v((E&3)<<6):(E>>8&248)+","+(E>>3&252)+","+((E&31)<<3))+")",a=q(c,m),m=k(c,m),h.canvas.fillRect(a,m,n,p);else if(1<E&&17>E){p=4;z=15;for(n=0;n<E;n++)B[n]=a.charCodeAt(b++)+
762 +(2==h.bpp?a.charCodeAt(b++)<<8:0);2==E?z=p=1:4>=E&&(p=2,z=3);for(;D<w&&b<a.length;)for(E=a.charCodeAt(b++),n=8-p;0<=n;n-=p)e(B[E>>n&z],D++);d(h.spare,c,m)}else if(128==E){for(;D<w&&b<a.length;){E=a.charCodeAt(b++)+(2==h.bpp?a.charCodeAt(b++)<<8:0);z=1;do z+=n=a.charCodeAt(b++);while(255==n);for(;0<=--z;)e(E,D++)}d(h.spare,c,m)}else if(129<E){for(n=0;n<E-128;n++)B[n]=a.charCodeAt(b++)+(2==h.bpp?a.charCodeAt(b++)<<8:0);for(;D<w&&b<a.length;){z=1;n=a.charCodeAt(b++);E=B[n%128];if(127<n){do z+=n=a.charCodeAt(b++);
763 +while(255==n)}for(;0<=--z;)e(E,D++)}d(h.spare,c,m)}}function d(a,b,c){if(1!=h.holding){var d=0==h.rotation?b:1==h.rotation?h.canvas.canvas.width-h.sparew2-c:2==h.rotation?h.canvas.canvas.width-h.sparew2-b:3==h.rotation?c:0;c=0==h.rotation?c:1==h.rotation?b:2==h.rotation?h.canvas.canvas.height-h.spareh2-c:3==h.rotation?h.canvas.canvas.height-h.spareh-b:0;h.canvas.putImageData(a,d,c)}}function e(a,b){var c=4*b;if(0<h.rotation)if(1==h.rotation){var c=b%h.sparew,d=Math.floor(b/h.sparew);b=c*h.sparew2+
764 +(h.sparew2-1-d);c=4*b}else 2==h.rotation?c=h.sparew*h.spareh*4-4-c:3==h.rotation&&(c=b%h.sparew,d=Math.floor(b/h.sparew),b=(h.sparew2-1-c)*h.sparew2+d,c=4*b);1==h.bpp?(h.spare.data[c++]=a&224,h.spare.data[c++]=(a&28)<<3,h.spare.data[c++]=v((a&3)<<6)):(h.spare.data[c++]=a>>8&248,h.spare.data[c++]=a>>3&252,h.spare.data[c++]=(a&31)<<3);h.spare.data[c]=255}function q(a,b){return 0==h.rotation||1==h.rotation?a:2==h.rotation?a-h.canvas.canvas.width:3==h.rotation?a-h.canvas.canvas.height:0}function k(a,
765 +b){return 0==h.rotation?b:1==h.rotation?b-h.canvas.canvas.width:2==h.rotation?b-h.canvas.canvas.height:3==h.rotation?b:0}function v(a){return 127<a?a+32:a}function n(){1!=h.holding&&h.Send(String.fromCharCode(3,1,0,0,0,0)+ShortToStr(h.rwidth)+ShortToStr(h.rheight))}function p(a,b){b||(b=window.event);if(b.code){var c;c=b;c=c.code.startsWith("Key")&&4==c.code.length?c.code.charCodeAt(3)+(0==c.shiftKey?32:0):c.code.startsWith("Digit")&&6==c.code.length?c.code.charCodeAt(5):c.code.startsWith("Numpad")&&
766 +7==c.code.length?c.code.charCodeAt(6):m[c.code];null!=c&&h.sendkey(c,a)}else{c=b.keyCode;173==c&&(c=189);61==c&&(c=187);var d=c;0==b.shiftKey&&65<=c&&90>=c&&(d=c+32);112<=c&&124>=c&&(d=c+65358);8==c&&(d=65288);9==c&&(d=65289);13==c&&(d=65293);16==c&&(d=65505);17==c&&(d=65507);18==c&&(d=65513);27==c&&(d=65307);33==c&&(d=65365);34==c&&(d=65366);35==c&&(d=65367);36==c&&(d=65360);37==c&&(d=65361);38==c&&(d=65362);39==c&&(d=65363);40==c&&(d=65364);45==c&&(d=65379);46==c&&(d=65535);96<=c&&105>=c&&(d=c-
767 +48);106==c&&(d=42);107==c&&(d=43);109==c&&(d=45);110==c&&(d=46);111==c&&(d=47);186==c&&(d=59);187==c&&(d=61);188==c&&(d=44);189==c&&(d=45);190==c&&(d=46);191==c&&(d=47);192==c&&(d=96);219==c&&(d=91);220==c&&(d=92);221==c&&(d=93);222==c&&(d=39);h.sendkey(d,a)}return h.haltEvent(b)}var h={};h.canvasid=b;h.scrolldiv=c;h.canvas=Q(b).getContext("2d");h.protocol=2;h.state=0;h.acc="";h.ScreenWidth=960;h.ScreenHeight=700;h.width=0;h.height=0;h.rwidth=0;h.rheight=0;h.bpp=2;h.useZRLE=!0;h.showmouse=!0;h.buttonmask=
768 +0;h.spare=null;h.sparew=0;h.spareh=0;h.sparew2=0;h.spareh2=0;h.sparecache={};h.ZRLEfirst=1;h.onScreenSizeChange=null;h.frameRateDelay=0;h.noMouseRotate=!1;h.rotation=0;h.kvmDataSupported=!1;h.onKvmData=null;h.onKvmDataPending=[];h.onKvmDataAck=-1;h.holding=!1;h.lastKeepAlive=Date.now();h.inflate=ZLIB.inflateInit(-15);h.Debug=function(a){console.log(a)};h.xxStateChange=function(a){0==a?(h.canvas.fillStyle="#000000",h.canvas.fillRect(0,0,h.width,h.height),h.canvas.canvas.width=h.rwidth=h.width=640,
769 +h.canvas.canvas.height=h.rheight=h.height=400,QS(h.canvasid).cursor="auto",h.inflate=ZLIB.inflateInit(-15)):h.showmouse||(QS(h.canvasid).cursor="none")};h.ProcessData=function(b){if(b)for(h.acc+=b;0<h.acc.length;){var c=0;if(0==h.state&&12<=h.acc.length)c=12,h.state=1,h.Send("RFB 003.008\n");else if(1==h.state&&1<=h.acc.length)c=h.acc.charCodeAt(0)+1,h.Send(String.fromCharCode(1)),h.state=2;else if(2==h.state&&4<=h.acc.length){c=4;if(0!=ReadInt(h.acc,0))return h.Stop();h.Send(String.fromCharCode(1));
770 +h.state=3}else if(3==h.state&&24<=h.acc.length){h.rotation=0;b=ReadInt(h.acc,20);if(h.acc.length<24+b)break;c=24+b;h.canvas.canvas.width=h.rwidth=h.width=h.ScreenWidth=ReadShort(h.acc,0);h.canvas.canvas.height=h.rheight=h.height=h.ScreenHeight=ReadShort(h.acc,2);b="";h.useZRLE&&(b+=IntToStr(16));b+=IntToStr(0);b+=IntToStr(1092);h.Send(String.fromCharCode(2,0)+ShortToStr(b.length/4+1)+b+IntToStr(-223));1==h.bpp&&h.Send(String.fromCharCode(0,0,0,0,8,8,0,1)+ShortToStr(7)+ShortToStr(7)+ShortToStr(3)+
771 +String.fromCharCode(5,2,0,0,0,0));h.state=4;h.parent.xxStateChange(3);n();if(null!=h.onScreenSizeChange)h.onScreenSizeChange(h,h.ScreenWidth,h.ScreenHeight)}else if(4==h.state)switch(h.acc.charCodeAt(0)){case 0:if(4>h.acc.length)return;h.state=100+ReadShort(h.acc,2);c=4;break;case 2:c=1;break;case 3:if(8>h.acc.length)return;b=ReadInt(h.acc,4)+8;if(h.acc.length<b)return;var k=h.acc;if(8>k.length)c=0;else if(b=ReadInt(h.acc,4)+8,k.length<b)c=0;else{if(null!=h.onKvmData&&(k=k.substring(8,b),16<=k.length&&
772 +"\x00KvmDataChannel"==k.substring(0,15))){0==h.kvmDataSupported&&(h.kvmDataSupported=!0,console.log("KVM Data Channel Supported."));if(-1==h.onKvmDataAck&&16==k.length||0!=k.charCodeAt(15))h.onKvmDataAck=!0;urlvars&&urlvars.kvmdatatrace&&console.log("KVM-Recv("+(k.length-16)+"): "+k.substring(16));if(16<k.length)h.onKvmData(k.substring(16));1==h.onKvmDataAck&&0<h.onKvmDataPending.length&&h.sendKvmData(h.onKvmDataPending.shift())}c=b}}else if(100<h.state&&12<=h.acc.length){b=ReadShort(h.acc,0);var k=
773 +ReadShort(h.acc,2),c=ReadShort(h.acc,4),m=ReadShort(h.acc,6),p=c*m,q=ReadInt(h.acc,8);if(17>q){if(1>c||64<c||1>m||64<m)return console.log("Invalid tile size ("+c+","+m+"), disconnecting."),h.Stop();if(h.sparew!=c||h.spareh!=m){h.sparew=h.sparew2=c;h.spareh=h.spareh2=m;if(1==h.rotation||3==h.rotation)h.sparew2=m,h.spareh2=c;var v=h.sparew2+"x"+h.spareh2;h.spare=h.sparecache[v];h.spare||(h.sparecache[v]=h.spare=h.canvas.createImageData(h.sparew2,h.spareh2))}}if(4294967073==q){if(h.canvas.canvas.width=
774 +h.ScreenWidth=h.rwidth=h.width=c,h.canvas.canvas.height=h.ScreenHeight=h.rheight=h.height=m,h.Send(String.fromCharCode(3,0,0,0,0,0)+ShortToStr(h.width)+ShortToStr(h.height)),c=12,null!=h.onScreenSizeChange)h.onScreenSizeChange(h,h.ScreenWidth,h.ScreenHeight)}else if(0==q){q=12;c=12+p*h.bpp;if(h.acc.length<c)break;for(m=0;m<p;m++)e(h.acc.charCodeAt(q++)+(2==h.bpp?h.acc.charCodeAt(q++)<<8:0),m);d(h.spare,b,k)}else if(16==q){if(16>h.acc.length)break;v=ReadInt(h.acc,12);if(h.acc.length<16+v)break;q=16;
775 +5<v&&0==h.acc.charCodeAt(q)&&ReadShortX(h.acc,q+1)==v-5?a(h.acc,q+5,b,k,c,m,p,v):(q=h.inflate.inflate(h.acc.substring(q,q+v-0)),0<q.length?a(q,0,b,k,c,m,p,q.length):h.Debug("Invalid deflate data"));c=16+v}else return h.Debug("Unknown Encoding: "+q+", HEX: "+rstr2hex(h.acc)),h.Stop();100==--h.state&&(h.state=4,0==h.frameRateDelay?n():setTimeout(n,h.frameRateDelay))}if(0==c)break;h.acc=h.acc.substring(c)}};h.hold=function(a){if(h.holding!=a)if(h.holding=a,h.canvas.fillStyle="#000000",h.canvas.fillRect(0,
776 +0,h.width,h.height),0==h.holding){if(h.canvas.canvas.width!=h.width||h.canvas.canvas.height!=h.height)if(h.canvas.canvas.width=h.width,h.canvas.canvas.height=h.height,null!=h.onScreenSizeChange)h.onScreenSizeChange(h,h.ScreenWidth,h.ScreenHeight);h.Send(String.fromCharCode(3,0,0,0,0,0)+ShortToStr(h.width)+ShortToStr(h.height))}else h.UnGrabMouseInput(),h.UnGrabKeyInput()};h.tcanvas=null;h.setRotation=function(a){for(;0>a;)a+=4;a%=4;if(1==h.holding)h.rotation=a;else{if(a==h.rotation)return!0;var b=
777 +h.canvas.canvas.width,c=h.canvas.canvas.height;if(1==h.rotation||3==h.rotation)b=h.canvas.canvas.height,c=h.canvas.canvas.width;null==h.tcanvas&&(h.tcanvas=document.createElement("canvas"));var d=h.tcanvas.getContext("2d");d.setTransform(1,0,0,1,0,0);d.canvas.width=b;d.canvas.height=c;d.rotate(-90*h.rotation*Math.PI/180);0==h.rotation&&d.drawImage(h.canvas.canvas,0,0);1==h.rotation&&d.drawImage(h.canvas.canvas,-h.canvas.canvas.width,0);2==h.rotation&&d.drawImage(h.canvas.canvas,-h.canvas.canvas.width,
778 +-h.canvas.canvas.height);3==h.rotation&&d.drawImage(h.canvas.canvas,0,-h.canvas.canvas.height);if(0==h.rotation||2==h.rotation)h.canvas.canvas.height=b,h.canvas.canvas.width=c;if(1==h.rotation||3==h.rotation)h.canvas.canvas.height=c,h.canvas.canvas.width=b;h.canvas.setTransform(1,0,0,1,0,0);h.canvas.rotate(90*a*Math.PI/180);h.rotation=a;h.canvas.drawImage(h.tcanvas,q(0,0),k(0,0));h.width=h.canvas.canvas.width;h.height=h.canvas.canvas.height;if(null!=h.onScreenResize)h.onScreenResize(h,h.width,h.height,
779 +h.CanvasId);return!0}};h.Start=function(){h.state=0;h.acc="";h.ZRLEfirst=1;h.inflate.inflateReset();h.onKvmDataPending=[];h.onKvmDataAck=-1;h.kvmDataSupported=!1;for(var a in h.sparecache)delete h.sparecache[a]};h.Stop=function(){h.UnGrabMouseInput();h.UnGrabKeyInput();h.parent.Stop()};h.Send=function(a){h.parent.Send(a)};var m={Pause:19,CapsLock:20,Space:32,Quote:39,Minus:45,NumpadMultiply:42,NumpadAdd:43,PrintScreen:44,Comma:44,NumpadSubtract:45,NumpadDecimal:46,Period:46,Slash:47,NumpadDivide:47,
780 +Semicolon:59,Equal:61,OSLeft:91,BracketLeft:91,OSRight:91,Backslash:92,BracketRight:93,ContextMenu:93,Backquote:96,NumLock:144,ScrollLock:145,Backspace:65288,Tab:65289,Enter:65293,NumpadEnter:65293,Escape:65307,Delete:65535,Home:65360,PageUp:65365,PageDown:65366,ArrowLeft:65361,ArrowUp:65362,ArrowRight:65363,ArrowDown:65364,End:65367,Insert:65379,F1:65470,F2:65471,F3:65472,F4:65473,F5:65474,F6:65475,F7:65476,F8:65477,F9:65478,F10:65479,F11:65480,F12:65481,ShiftLeft:65505,ShiftRight:65506,ControlLeft:65507,
781 +ControlRight:65508,AltLeft:65513,AltRight:65514,MetaLeft:65511,MetaRight:65512};h.sendkey=function(a,b){if("object"==typeof a)for(var c in a)h.sendkey(a[c][0],a[c][1]);else h.Send(String.fromCharCode(4,b,0,0)+IntToStr(a))};h.sendKvmData=function(a){!0!==h.onKvmDataAck?h.onKvmDataPending.push(a):(urlvars&&urlvars.kvmdatatrace&&console.log("KVM-Send("+a.length+"): "+a),a="\x00KvmDataChannel\x00"+a,h.Send(String.fromCharCode(6,0,0,0)+IntToStr(a.length)+a),h.onKvmDataAck=!1)};h.sendKeepAlive=function(){h.lastKeepAlive<
782 +Date.now()-5E3&&(h.lastKeepAlive=Date.now(),h.Send(String.fromCharCode(6,0,0,0)+IntToStr(16)+"\x00KvmDataChannel\x00"))};h.SendCtrlAltDelMsg=function(){h.sendcad()};h.sendcad=function(){h.sendkey(65507,1);h.sendkey(65513,1);h.sendkey(65535,1);h.sendkey(65535,0);h.sendkey(65513,0);h.sendkey(65507,0)};var w=!1,B=!1;h.GrabMouseInput=function(){if(1!=w){var a=h.canvas.canvas;a.onmouseup=h.mouseup;a.onmousedown=h.mousedown;a.onmousemove=h.mousemove;w=!0}};h.UnGrabMouseInput=function(){if(0!=w){var a=h.canvas.canvas;
783 +a.onmousemove=null;a.onmouseup=null;a.onmousedown=null;w=!1}};h.GrabKeyInput=function(){1!=B&&(document.onkeyup=h.handleKeyUp,document.onkeydown=h.handleKeyDown,document.onkeypress=h.handleKeys,B=!0)};h.UnGrabKeyInput=function(){0!=B&&(document.onkeyup=null,document.onkeydown=null,document.onkeypress=null,B=!1)};h.handleKeys=function(a){return h.haltEvent(a)};h.handleKeyUp=function(a){return p(0,a)};h.handleKeyDown=function(a){return p(1,a)};h.haltEvent=function(a){a.preventDefault&&a.preventDefault();
784 +a.stopPropagation&&a.stopPropagation();return!1};h.mousedown=function(a){h.buttonmask|=1<<a.button;return h.mousemove(a)};h.mouseup=function(a){h.buttonmask&=65535-(1<<a.button);return h.mousemove(a)};h.mousemove=function(a){if(4!=h.state)return!0;var b=h.getPositionOfControl(Q(h.canvasid));h.mx=(a.pageX-b[0])*(h.canvas.canvas.height/Q(h.canvasid).offsetHeight);h.my=(a.pageY-b[1]+(c?c.scrollTop:0))*(h.canvas.canvas.width/Q(h.canvasid).offsetWidth);if(1!=h.noMouseRotate){var b=h.mx,d=h.my;h.mx2=0==
785 +h.rotation?b:1==h.rotation?d:2==h.rotation?h.canvas.canvas.width-b:3==h.rotation?h.canvas.canvas.height-d:0;b=h.mx;d=h.my;h.my=0==h.rotation?d:1==h.rotation?h.canvas.canvas.width-b:2==h.rotation?h.canvas.canvas.height-d:3==h.rotation?b:0;h.mx=h.mx2}h.Send(String.fromCharCode(5,h.buttonmask)+ShortToStr(h.mx)+ShortToStr(h.my));return h.haltEvent(a)};h.getPositionOfControl=function(a){var b=Array(2);for(b[0]=b[1]=0;a;)b[0]+=a.offsetLeft,b[1]+=a.offsetTop,a=a.offsetParent;return b};return h},CreateAgentRemoteDesktop=
786 +function(b,c){var a={};a.CanvasId=b;"string"===typeof b&&(a.CanvasId=Q(b));a.Canvas=a.CanvasId.getContext("2d");a.scrolldiv=c;a.State=0;a.PendingOperations=[];a.tilesReceived=0;a.TilesDrawn=0;a.KillDraw=0;a.ipad=!1;a.tabletKeyboardVisible=!1;a.LastX=0;a.LastY=0;a.touchenabled=0;a.submenuoffset=0;a.touchtimer=null;a.TouchArray={};a.connectmode=0;a.connectioncount=0;a.rotation=0;a.protocol=2;a.debugmode=0;a.firstUpKeys=[];a.stopInput=!1;a.sessionid=0;a.username;a.oldie=!1;a.CompressionLevel=50;a.ScalingLevel=
787 +1024;a.FrameRateTimer=50;a.FirstDraw=!1;a.ScreenWidth=960;a.ScreenHeight=700;a.width=960;a.height=960;a.onScreenSizeChange=null;a.onMessage=null;a.onConnectCountChanged=null;a.onDebugMessage=null;a.onTouchEnabledChanged=null;a.onDisplayinfo=null;a.Start=function(){a.State=0};a.Stop=function(){a.setRotation(0);a.UnGrabKeyInput();a.UnGrabMouseInput();a.touchenabled=0;if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);a.Canvas.clearRect(0,0,a.CanvasId.width,
788 +a.CanvasId.height)};a.xxStateChange=function(b){if(a.State!=b)switch(a.State=b,b){case 0:a.Stop()}};a.send=function(b){a.parent.send(b)};a.ProcessPictureMsg=function(b,c,d){var v=new Image;v.xcount=a.tilesReceived++;var n=a.tilesReceived;v.src="data:image/jpeg;base64,"+btoa(b.substring(4,b.length));v.onload=function(){if(null!=a.Canvas&&a.KillDraw<n&&0!=a.State)for(a.PendingOperations.push([n,2,v,c,d]);a.DoPendingOperations(););};v.error=function(){console.log("DecodeTileError")}};a.DoPendingOperations=
789 +function(){if(0==a.PendingOperations.length)return!1;for(var b=0;b<a.PendingOperations.length;b++){var c=a.PendingOperations[b];if(c[0]==a.TilesDrawn+1)return 1==c[1]?a.ProcessCopyRectMsg(c[2]):2==c[1]&&(a.Canvas.drawImage(c[2],a.rotX(c[3],c[4]),a.rotY(c[3],c[4])),delete c[2]),a.PendingOperations.splice(b,1),delete c,a.TilesDrawn++,a.TilesDrawn==a.tilesReceived&&a.KillDraw<a.TilesDrawn&&(a.KillDraw=a.TilesDrawn=a.tilesReceived=0),!0}a.oldie&&0<a.PendingOperations.length&&a.TilesDrawn++;return!1};
790 +a.ProcessCopyRectMsg=function(b){var c=((b.charCodeAt(0)&255)<<8)+(b.charCodeAt(1)&255),d=((b.charCodeAt(2)&255)<<8)+(b.charCodeAt(3)&255),v=((b.charCodeAt(4)&255)<<8)+(b.charCodeAt(5)&255),n=((b.charCodeAt(6)&255)<<8)+(b.charCodeAt(7)&255),p=((b.charCodeAt(8)&255)<<8)+(b.charCodeAt(9)&255);b=((b.charCodeAt(10)&255)<<8)+(b.charCodeAt(11)&255);a.Canvas.drawImage(Canvas.canvas,c,d,p,b,v,n,p,b)};a.SendUnPause=function(){a.send(String.fromCharCode(0,8,0,5,0))};a.SendPause=function(){a.send(String.fromCharCode(0,
791 +8,0,5,1))};a.SendCompressionLevel=function(b,c,d,v){c&&(a.CompressionLevel=c);d&&(a.ScalingLevel=d);v&&(a.FrameRateTimer=v);a.send(String.fromCharCode(0,5,0,10,b,a.CompressionLevel)+a.shortToStr(a.ScalingLevel)+a.shortToStr(a.FrameRateTimer))};a.SendRefresh=function(){a.send(String.fromCharCode(0,6,0,4))};a.ProcessScreenMsg=function(b,c){a.Canvas.setTransform(1,0,0,1,0,0);a.rotation=0;a.FirstDraw=!0;a.ScreenWidth=a.width=b;a.ScreenHeight=a.height=c;for(a.KillDraw=a.tilesReceived;0<a.PendingOperations.length;)a.PendingOperations.shift();
792 +a.SendCompressionLevel(1);a.SendUnPause();if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId)};a.ProcessData=function(b){for(var c=0;c<b.length;)c+=a.ProcessDataEx(b.substring(c))};a.ProcessDataEx=function(b){if(!(4>b.length)){var c=null,d=0,v=0,n=ReadShort(b,0),p=ReadShort(b,2);p!=b.length&&1==a.debugmode&&console.log(p,b.length,p==b.length);if(18<=n)console.error("Invalid KVM command "+n+" of size "+p),console.log("Invalid KVM data",b.length,b,rstr2hex(b));
793 +else if(p>b.length)console.error("KVM invalid command size",p,b.length);else{if(3==n||4==n||7==n)c=b.substring(4,p),d=((c.charCodeAt(0)&255)<<8)+(c.charCodeAt(1)&255),v=((c.charCodeAt(2)&255)<<8)+(c.charCodeAt(3)&255);switch(n){case 3:if(a.FirstDraw)a.onResize();a.ProcessPictureMsg(c,d,v);break;case 4:if(a.FirstDraw)a.onResize();a.TilesDrawn==a.tilesReceived?a.ProcessCopyRectMsg(c):a.PendingOperations.push([++tilesReceived,1,c]);break;case 7:a.ProcessScreenMsg(d,v);a.SendKeyMsgKC(a.KeyAction.UP,16);
794 +a.SendKeyMsgKC(a.KeyAction.UP,17);a.SendKeyMsgKC(a.KeyAction.UP,18);a.SendKeyMsgKC(a.KeyAction.UP,91);a.SendKeyMsgKC(a.KeyAction.UP,92);a.SendKeyMsgKC(a.KeyAction.UP,16);a.send(String.fromCharCode(0,14,0,4));break;case 11:c=[];d=((b.charCodeAt(4)&255)<<8)+(b.charCodeAt(5)&255);if(0<d)for(var h=0,v=((b.charCodeAt(6+2*d)&255)<<8)+(b.charCodeAt(7+2*d)&255),n=0;n<d;n++){var m=((b.charCodeAt(6+2*n)&255)<<8)+(b.charCodeAt(7+2*n)&255);65535==m?c.push("All Displays"):c.push("Display "+m);m==v&&(h=n)}if(null!=
795 +a.onDisplayinfo)a.onDisplayinfo(a,c,h);break;case 14:a.touchenabled=1;a.TouchArray={};if(null!=a.onTouchEnabledChanged)a.onTouchEnabledChanged(a.touchenabled);break;case 15:a.TouchArray={};break;case 16:a.connectioncount=ReadInt(b,4);if(null!=a.onConnectCountChanged)a.onConnectCountChanged(a.connectioncount,a);break;case 17:if(null!=a.onMessage)a.onMessage(b.substring(4,p),a)}return p}}};a.MouseButton={NONE:0,LEFT:2,RIGHT:8,MIDDLE:32};a.KeyAction={NONE:0,DOWN:1,UP:2,SCROLL:3,EXUP:4,EXDOWN:5};a.InputType=
796 +{KEY:1,MOUSE:2,CTRLALTDEL:10,TOUCH:15};a.Alternate=0;var d={Pause:19,CapsLock:20,Space:32,Quote:222,Minus:189,NumpadMultiply:106,NumpadAdd:107,PrintScreen:44,Comma:188,NumpadSubtract:109,NumpadDecimal:110,Period:190,Slash:191,NumpadDivide:111,Semicolon:186,Equal:187,OSLeft:91,BracketLeft:219,OSRight:91,Backslash:220,BracketRight:221,ContextMenu:93,Backquote:192,NumLock:144,ScrollLock:145,Backspace:8,Tab:9,Enter:13,NumpadEnter:13,Escape:27,Delete:46,Home:36,PageUp:33,PageDown:34,ArrowLeft:37,ArrowUp:38,
797 +ArrowRight:39,ArrowDown:40,End:35,Insert:45,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,ShiftLeft:16,ShiftRight:16,ControlLeft:17,ControlRight:17,AltLeft:18,AltRight:18,MetaLeft:91,MetaRight:92,VolumeMute:181};a.SendKeyMsg=function(b,c){if(null!=b)if(c||(c=window.event),c.code){var k;k=c;k=k.code.startsWith("Key")&&4==k.code.length?k.code.charCodeAt(3):k.code.startsWith("Digit")&&6==k.code.length?k.code.charCodeAt(5):k.code.startsWith("Numpad")&&7==k.code.length?
798 +k.code.charCodeAt(6)+48:d[k.code];null!=k&&a.SendKeyMsgKC(b,k)}else k=c.keyCode,59==k&&(k=186),a.SendKeyMsgKC(b,k)};a.SendMessage=function(b){3==a.State&&a.send(String.fromCharCode(0,17)+a.shortToStr(4+b.length)+b)};a.SendKeyMsgKC=function(b,c){3==a.State&&a.send(String.fromCharCode(0,a.InputType.KEY,0,6,b-1,c))};a.sendcad=function(){a.SendCtrlAltDelMsg()};a.SendCtrlAltDelMsg=function(){3==a.State&&a.send(String.fromCharCode(0,a.InputType.CTRLALTDEL,0,4))};a.SendEscKey=function(){3==a.State&&a.send(String.fromCharCode(0,
799 +a.InputType.KEY,0,6,0,27,0,a.InputType.KEY,0,6,1,27))};a.SendStartMsg=function(){a.SendKeyMsgKC(a.KeyAction.EXDOWN,91);a.SendKeyMsgKC(a.KeyAction.EXUP,91)};a.SendCharmsMsg=function(){a.SendKeyMsgKC(a.KeyAction.EXDOWN,91);a.SendKeyMsgKC(a.KeyAction.DOWN,67);a.SendKeyMsgKC(a.KeyAction.UP,67);a.SendKeyMsgKC(a.KeyAction.EXUP,91)};a.SendTouchMsg1=function(b,c,d,v){3==a.State&&a.send(String.fromCharCode(0,a.InputType.TOUCH)+a.shortToStr(14)+String.fromCharCode(1,b)+a.intToStr(c)+a.shortToStr(d)+a.shortToStr(v))};
800 +a.SendTouchMsg2=function(b,c){var d="",v,n;for(n in a.TouchArray)n==b?v=c:1==a.TouchArray[n].f?(v=65542,a.TouchArray[n].f=3):v=2==a.TouchArray[n].f?262144:131078,d+=String.fromCharCode(n)+a.intToStr(v)+a.shortToStr(a.TouchArray[n].x)+a.shortToStr(a.TouchArray[n].y),2==a.TouchArray[n].f&&delete a.TouchArray[n];3==a.State&&a.send(String.fromCharCode(0,a.InputType.TOUCH)+a.shortToStr(5+d.length)+String.fromCharCode(2)+d);0==Object.keys(a.TouchArray).length&&null!=a.touchtimer&&(clearInterval(a.touchtimer),
801 +a.touchtimer=null)};a.SendMouseMsg=function(b,c){if(3==a.State&&null!=b&&null!=a.Canvas){c||(c=window.event);var d=a.Canvas.canvas.height/a.CanvasId.clientHeight,v=a.Canvas.canvas.width/a.CanvasId.clientWidth,n=a.GetPositionOfControl(a.Canvas.canvas),v=(c.pageX-n[0])*v,d=(c.pageY-n[1])*d,n=0==a.rotation?v:1==a.rotation?d:2==a.rotation?a.Canvas.canvas.width-v:3==a.rotation?a.Canvas.canvas.height-d:0,d=0==a.rotation?d:1==a.rotation?a.Canvas.canvas.width-v:2==a.rotation?a.Canvas.canvas.height-d:3==a.rotation?
802 +v:0,v=n;if(0<=v&&v<=a.Canvas.canvas.width&&0<=d&&d<=a.Canvas.canvas.height){var p=n=0;b==a.KeyAction.UP||b==a.KeyAction.DOWN?c.which?1==c.which?n=a.MouseButton.LEFT:2==c.which?n=a.MouseButton.MIDDLE:n=a.MouseButton.RIGHT:c.button&&(0==c.button?n=a.MouseButton.LEFT:1==c.button?n=a.MouseButton.MIDDLE:n=a.MouseButton.RIGHT):b==a.KeyAction.SCROLL&&(c.detail?p=-120*c.detail:c.wheelDelta&&(p=3*c.wheelDelta));var h="",h=b==a.KeyAction.SCROLL?String.fromCharCode(0,a.InputType.MOUSE,0,12,0,b==a.KeyAction.DOWN?
803 +n:2*n&255,v/256&255,v&255,d/256&255,d&255,p/256&255,p&255):String.fromCharCode(0,a.InputType.MOUSE,0,10,0,b==a.KeyAction.DOWN?n:2*n&255,v/256&255,v&255,d/256&255,d&255);a.Action==a.KeyAction.NONE?0==a.Alternate||a.ipad?(a.send(h),a.Alternate=1):a.Alternate=0:a.send(h)}}};a.GetDisplayNumbers=function(){a.send(String.fromCharCode(0,11,0,4))};a.SetDisplay=function(b){a.send(String.fromCharCode(0,12,0,6,b>>8,b&255))};a.intToStr=function(a){return String.fromCharCode(a>>24&255,a>>16&255,a>>8&255,a&255)};
804 +a.shortToStr=function(a){return String.fromCharCode(a>>8&255,a&255)};a.onResize=function(){if(0!=a.ScreenWidth&&0!=a.ScreenHeight&&(a.Canvas.canvas.width!=a.ScreenWidth||a.Canvas.canvas.height!=a.ScreenHeight)){if(a.FirstDraw&&(a.Canvas.canvas.width=a.ScreenWidth,a.Canvas.canvas.height=a.ScreenHeight,a.Canvas.fillRect(0,0,a.ScreenWidth,a.ScreenHeight),null!=a.onScreenSizeChange))a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);a.FirstDraw=!1}};a.xxMouseInputGrab=!1;a.xxKeyInputGrab=
805 +!1;a.xxMouseMove=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.NONE,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxMouseUp=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.UP,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxMouseDown=function(b){3==a.State&&a.SendMouseMsg(a.KeyAction.DOWN,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxDOMMouseScroll=function(b){return 3==
806 +a.State?(a.SendMouseMsg(a.KeyAction.SCROLL,b),!1):!0};a.xxMouseWheel=function(b){return 3==a.State?(a.SendMouseMsg(a.KeyAction.SCROLL,b),!1):!0};a.xxKeyUp=function(b){3==a.State&&a.SendKeyMsg(a.KeyAction.UP,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxKeyDown=function(b){3==a.State&&a.SendKeyMsg(a.KeyAction.DOWN,b);b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1};a.xxKeyPress=function(a){a.preventDefault&&a.preventDefault();
807 +a.stopPropagation&&a.stopPropagation();return!1};a.handleKeys=function(b){return 1==a.stopInput||3!=desktop.State?!1:a.xxKeyPress(b)};a.handleKeyUp=function(b){if(1==a.stopInput||3!=desktop.State)return!1;if(5>a.firstUpKeys.length&&(a.firstUpKeys.push(b.keyCode),5==a.firstUpKeys.length)){var c=a.firstUpKeys.join(",");if("16,17,91,91,16"==c||"16,17,18,91,92"==c)a.stopInput=!0}return a.xxKeyUp(b)};a.handleKeyDown=function(b){return 1==a.stopInput||3!=desktop.State?!1:a.xxKeyDown(b)};a.mousedown=function(b){return 1==
808 +a.stopInput?!1:a.xxMouseDown(b)};a.mouseup=function(b){return 1==a.stopInput?!1:a.xxMouseUp(b)};a.mousemove=function(b){return 1==a.stopInput?!1:a.xxMouseMove(b)};a.mousewheel=function(b){return 1==a.stopInput?!1:a.xxMouseWheel(b)};a.xxMsTouchEvent=function(b){if(4!=b.originalEvent.pointerType){b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();if("MSPointerDown"==b.type||"MSPointerMove"==b.type||"MSPointerUp"==b.type){var c=0,d=b.originalEvent.pointerId%256,v=Canvas.canvas.width/
809 +a.CanvasId.clientWidth*b.offsetX,n=Canvas.canvas.height/a.CanvasId.clientHeight*b.offsetY;"MSPointerDown"==b.type?c=65542:"MSPointerMove"==b.type?c=131078:"MSPointerUp"==b.type&&(c=262144);a.TouchArray[d]||(a.TouchArray[d]={x:v,y:n});a.SendTouchMsg2(d,c);"MSPointerUp"==b.type&&delete a.TouchArray[d]}else alert(b.type);return!0}};a.xxTouchStart=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled){if(!(1<b.originalEvent.touches.length)){var c=b.originalEvent.touches[0];
810 +b.which=1;a.LastX=b.pageX=c.pageX;a.LastY=b.pageY=c.pageY;a.SendMouseMsg(KeyAction.DOWN,b)}}else{var c=a.GetPositionOfControl(Canvas.canvas),d;for(d in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[d].identifier){var v=b.originalEvent.changedTouches[d].identifier%256;a.TouchArray[v]||(a.TouchArray[v]={x:Canvas.canvas.width/a.CanvasId.clientWidth*(b.originalEvent.touches[d].pageX-c[0]),y:Canvas.canvas.height/a.CanvasId.clientHeight*(b.originalEvent.touches[d].pageY-c[1]),f:1})}0<
811 +Object.keys(a.TouchArray).length&&null==touchtimer&&(a.touchtimer=setInterval(function(){a.SendTouchMsg2(256,0)},50))}};a.xxTouchMove=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled){if(!(1<b.originalEvent.touches.length)){var c=b.originalEvent.touches[0];b.which=1;a.LastX=b.pageX=c.pageX;a.LastY=b.pageY=c.pageY;a.SendMouseMsg(a.KeyAction.NONE,b)}}else{var c=a.GetPositionOfControl(Canvas.canvas),d;for(d in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[d].identifier){var v=
812 +b.originalEvent.changedTouches[d].identifier%256;a.TouchArray[v]&&(a.TouchArray[v].x=a.Canvas.canvas.width/a.CanvasId.clientWidth*(b.originalEvent.touches[d].pageX-c[0]),a.TouchArray[v].y=a.Canvas.canvas.height/a.CanvasId.clientHeight*(b.originalEvent.touches[d].pageY-c[1]))}}};a.xxTouchEnd=function(b){if(3==a.State)if(b.preventDefault&&b.preventDefault(),0==a.touchenabled||1==a.touchenabled)1<b.originalEvent.touches.length||(b.which=1,b.pageX=LastX,b.pageY=LastY,a.SendMouseMsg(KeyAction.UP,b));else for(var c in b.originalEvent.changedTouches)if(b.originalEvent.changedTouches[c].identifier){var d=
813 +b.originalEvent.changedTouches[c].identifier%256;a.TouchArray[d]&&(a.TouchArray[d].f=2)}};a.GrabMouseInput=function(){if(1!=a.xxMouseInputGrab){var b=a.CanvasId;b.onmousemove=a.xxMouseMove;b.onmouseup=a.xxMouseUp;b.onmousedown=a.xxMouseDown;b.touchstart=a.xxTouchStart;b.touchmove=a.xxTouchMove;b.touchend=a.xxTouchEnd;b.MSPointerDown=a.xxMsTouchEvent;b.MSPointerMove=a.xxMsTouchEvent;b.MSPointerUp=a.xxMsTouchEvent;navigator.userAgent.match(/mozilla/i)?b.DOMMouseScroll=a.xxDOMMouseScroll:b.onmousewheel=
814 +a.xxMouseWheel;a.xxMouseInputGrab=!0}};a.UnGrabMouseInput=function(){if(0!=a.xxMouseInputGrab){var b=a.CanvasId;b.onmousemove=null;b.onmouseup=null;b.onmousedown=null;b.touchstart=null;b.touchmove=null;b.touchend=null;b.MSPointerDown=null;b.MSPointerMove=null;b.MSPointerUp=null;navigator.userAgent.match(/mozilla/i)?b.DOMMouseScroll=null:b.onmousewheel=null;a.xxMouseInputGrab=!1}};a.GrabKeyInput=function(){1!=a.xxKeyInputGrab&&(document.onkeyup=a.xxKeyUp,document.onkeydown=a.xxKeyDown,document.onkeypress=
815 +a.xxKeyPress,a.xxKeyInputGrab=!0)};a.UnGrabKeyInput=function(){0!=a.xxKeyInputGrab&&(document.onkeyup=null,document.onkeydown=null,document.onkeypress=null,a.xxKeyInputGrab=!1)};a.GetPositionOfControl=function(a){var b=Array(2);for(b[0]=b[1]=0;a;)b[0]+=a.offsetLeft,b[1]+=a.offsetTop,a=a.offsetParent;return b};a.crotX=function(b,c){if(0==a.rotation)return b;if(1==a.rotation)return c;if(2==a.rotation)return a.Canvas.canvas.width-b;if(3==a.rotation)return a.Canvas.canvas.height-c};a.crotY=function(b,
816 +c){if(0==a.rotation)return c;if(1==a.rotation)return a.Canvas.canvas.width-b;if(2==a.rotation)return a.Canvas.canvas.height-c;if(3==a.rotation)return b};a.rotX=function(b,c){if(0==a.rotation||1==a.rotation)return b;if(2==a.rotation)return b-a.Canvas.canvas.width;if(3==a.rotation)return b-a.Canvas.canvas.height};a.rotY=function(b,c){if(0==a.rotation||3==a.rotation)return c;if(1==a.rotation)return c-a.Canvas.canvas.width;if(2==a.rotation)return c-a.Canvas.canvas.height};a.tcanvas=null;a.setRotation=
817 +function(b){for(;0>b;)b+=4;b%=4;if(b==a.rotation)return!0;var c=a.Canvas.canvas.width,d=a.Canvas.canvas.height;if(1==a.rotation||3==a.rotation)c=a.Canvas.canvas.height,d=a.Canvas.canvas.width;null==a.tcanvas&&(a.tcanvas=document.createElement("canvas"));var v=a.tcanvas.getContext("2d");v.setTransform(1,0,0,1,0,0);v.canvas.width=c;v.canvas.height=d;v.rotate(-90*a.rotation*Math.PI/180);0==a.rotation&&v.drawImage(a.Canvas.canvas,0,0);1==a.rotation&&v.drawImage(a.Canvas.canvas,-a.Canvas.canvas.width,
818 +0);2==a.rotation&&v.drawImage(a.Canvas.canvas,-a.Canvas.canvas.width,-a.Canvas.canvas.height);3==a.rotation&&v.drawImage(a.Canvas.canvas,0,-a.Canvas.canvas.height);if(0==a.rotation||2==a.rotation)a.Canvas.canvas.height=c,a.Canvas.canvas.width=d;if(1==a.rotation||3==a.rotation)a.Canvas.canvas.height=d,a.Canvas.canvas.width=c;a.Canvas.setTransform(1,0,0,1,0,0);a.Canvas.rotate(90*b*Math.PI/180);a.rotation=b;a.Canvas.drawImage(a.tcanvas,a.rotX(0,0),a.rotY(0,0));a.ScreenWidth=a.Canvas.canvas.width;a.ScreenHeight=
819 +a.Canvas.canvas.height;if(null!=a.onScreenSizeChange)a.onScreenSizeChange(a,a.ScreenWidth,a.ScreenHeight,a.CanvasId);return!0};a.MuchTheSame=function(a,b){return 4>Math.abs(a-b)};a.Debug=function(a){console.log(a)};a.getIEVersion=function(){var a=-1;"Microsoft Internet Explorer"==navigator.appName&&null!=/MSIE ([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)&&(a=parseFloat(RegExp.$1));return a};a.haltEvent=function(a){a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};
820 +return a},CreateKvmDataChannel=function(b,c,a){var d={};d.m=c;c.parent=d;d.webchannel=b;d.State=0;d.protocol=c.protocol;d.onStateChanged=null;d.onControlMsg=null;d.debugmode=0;d.keepalive=a;d.rtcKeepAlive=null;d.Start=function(){1==d.debugmode&&console.log("start");d.xxStateChange(3);d.webchannel.onmessage=d.xxOnMessage;d.rtcKeepAlive=setInterval(d.xxSendRtcKeepAlive,3E4)};var e=new FileReader,q=!1,k=[];e.readAsBinaryString?e.onload=function(a){d.xxOnSocketData(a.target.result);0==k.length?q=!1:e.readAsBinaryString(new Blob([k.shift()]))}:
821 +e.readAsArrayBuffer&&(e.onloadend=function(a){d.xxOnSocketData(a.target.result);0==k.length?q=!1:e.readAsArrayBuffer(k.shift())});d.xxOnMessage=function(a){if("string"==typeof a.data){if(null!=d.onControlMsg)d.onControlMsg(a.data)}else if("object"==typeof a.data)if(1==q)k.push(a.data);else if(e.readAsBinaryString)q=!0,e.readAsBinaryString(new Blob([a.data]));else if(f.readAsArrayBuffer)q=!0,e.readAsArrayBuffer(a.data);else{var b="";a=new Uint8Array(a.data);for(var c=a.byteLength,h=0;h<c;h++)b+=String.fromCharCode(a[h]);
822 +d.xxOnSocketData(b)}else d.xxOnSocketData(a.data)};d.xxOnSocketData=function(a){if(a){if("object"===typeof a){var b="";a=new Uint8Array(a);for(var c=a.byteLength,e=0;e<c;e++)b+=String.fromCharCode(a[e]);a=b}else if("string"!==typeof a)return;return d.m.ProcessData(a)}};d.sendCtrlMsg=function(a){"string"==typeof a&&(d.webchannel.send(a),urlvars&&urlvars.webrtctrace&&console.log("WebRTC-Send("+d.State+"): ",typeof a,a),null!=d.keepalive&&d.keepalive.sendKeepAlive())};d.send=function(a){if("string"==
823 +typeof a){for(var b=new Uint8Array(a.length),c=0;c<a.length;++c)b[c]=a.charCodeAt(c);a=b}urlvars&&urlvars.webrtctrace&&console.log("WebRTC-Send("+d.State+"): ",typeof a,a);d.webchannel.send(a)};d.xxStateChange=function(a){if(d.State!=a&&(d.State=a,d.m.xxStateChange(d.State),null!=d.onStateChanged))d.onStateChanged(d,d.State)};d.Stop=function(){1==d.debugmode&&console.log("stop");null!=d.rtcKeepAlive&&(clearInterval(d.rtcKeepAlive),d.rtcKeepAlive=null);d.xxStateChange(0)};d.xxSendRtcKeepAlive=function(){urlvars&&
824 +urlvars.webrtctrace&&console.log("WebRTC-SendKeepAlive()");d.sendCtrlMsg(JSON.stringify({action:"ping"}))};return d},CreateAmtRemoteTerminal=function(b){function c(b){if("\x00"!=b&&7!=b.charCodeAt()){var d=b.charCodeAt();if(0==k.terminalEmulation){b=!0;0==(d&128)?(A=d,y=0,b=!1):192==(d&224)?(A=d&31,y=1,b=!0):224==(d&240)?(A=d&15,y=2,b=!0):128==(d&192)&&(0<y?(A<<=6,A+=d&63,y--,b=0!=y):(y=A=0,b=!0));if(1==b)return;b=String.fromCharCode(A)}else 1==k.terminalEmulation?0!=(d&128)&&(b=String.fromCharCode(H[d&
825 +127])):2==k.terminalEmulation&&0!=(d&128)&&(b=String.fromCharCode(E[d&127]));switch(d){case 16:b=" ";break;case 24:b="\u2191";break;case 25:b="\u2193"}w>k.width&&(w=k.width);B>k.height-1&&(B=k.height-1);switch(b){case "\b":0<w&&(--w,a(" "));break;case "\t":d=8-w%8;for(b=0;b<d;b++)c(" ");break;case "\n":B++;B>k.height-1&&(q(1),B=k.height-1);break;case "\r":w=0;break;default:w>=k.width&&(w=0,m&&B++,B>=k.height-1&&(q(1),B=k.height-1)),a(b),w++}}}function a(a){J[B][w]=a;u[B][w]=(p<<6)+(h<<12)+n}function d(){for(var a=
826 +h<<12,b=w;b<k.width;b++)J[B][b]=" ",u[B][b]=a}function e(a){for(var b=h<<12,c=0;c<k.width;c++)J[a][c]=" ",u[a][c]=b}function q(a){var b;for(b=0;b<k.height-a;b++)J[b]=J[b+a],u[b]=u[b+a];for(b=k.height-a;b<k.height;b++)for(J[b]=[],u[b]=[],a=0;a<k.width;a++)J[b][a]=" ",u[b][a]=448}var k={};k.DivId=b;k.DivElement=document.getElementById(b);k.protocol=1;k.terminalEmulation=1;k.fxEmulation=0;k.fxLineBreak=0;k.width=80;k.height=25;var v="000000 BB0000 00BB00 BBBB00 0000BB BB00BB 00BBBB BBBBBB 555555 FF5555 55FF55 FFFF55 5555FF FF55FF 55FFFF FFFFFF".split(" "),
827 +n=0,p=7,h=0,m=!0,w=0,B=0,l=0,g=[],x=0,u=[],J=[],A=0,y=0;k.Start=function(){};k.Init=function(a,b){k.width=a?a:80;k.height=b?b:25;for(var c=0;c<k.height;c++){J[c]=[];u[c]=[];for(var d=0;d<k.width;d++)J[c][d]=" ",u[c][d]=448}k.TermInit();k.TermDraw()};k.xxStateChange=function(a){};k.ProcessData=function(a){null!=k.capture&&(k.capture+=a);for(var b=0;b<a.length;b++){var q=String.fromCharCode(a.charCodeAt(b)),v=a.charCodeAt(b);switch(l){case 0:switch(v){case 27:l=1;break;default:c(q)}break;case 1:switch(q){case "[":x=
828 +0;g=[];l=2;break;case "(":l=4;break;case ")":l=5;break;default:l=0}break;case 2:if("0"<=q&&"9">=q){g[x]=g[x]?10*g[x]+(q-0):q-0;break}else if(";"==q){x++;break}else{g[0]||(g[0]=0);var v=g,y=x+1,A=void 0;switch(q){case "c":k.TermResetScreen();break;case "A":1==y&&(B-=v[0],0>B&&(B=0));break;case "B":1==y&&(B+=v[0],B>k.height&&(B=k.height));break;case "C":1==y&&(w+=v[0],w>k.width&&(w=k.width));break;case "D":1==y&&(w-=v[0],0>w&&(w=0));break;case "d":1==y&&(B=v[0]-1,B>k.height&&(B=k.height),0>B&&(B=0));
829 +break;case "G":1==y&&(w=v[0]-1,0>w&&(w=0),79<w&&(w=79));break;case "J":if(1==y&&2==v[0])k.TermClear((h<<12)+(p<<6)),B=w=0;else if(0==y||1==y&&0==v[0])for(d(),A=B+1;A<k.height;A++)e(A);else if(1==y&&1==v[0])for(d(),A=0;A<B-1;A++)e(A);break;case "H":2==y?(1>v[0]&&(v[0]=1),1>v[1]&&(v[1]=1),v[0]>k.height&&(v[0]=k.height),v[1]>k.width&&(v[1]=k.width),B=v[0]-1,w=v[1]-1):w=B=0;break;case "m":for(A=0;A<y;A++)v[A]&&0!=v[A]?1==v[A]?8>p&&(p+=8):2==v[A]||22==v[A]?8<=p&&(p-=8):7==v[A]?n=2:27==v[A]?n=0:30<=v[A]&&
830 +37>=v[A]?(q=8<=p,p=v[A]-30,q&&8>=p&&(p+=8)):40<=v[A]&&47>=v[A]?h=v[A]-40:90<=v[A]&&99>=v[A]?p=v[A]-82:100<=v[A]&&109>=v[A]&&(h=v[A]-92):(h=0,p=7,n=0);break;case "K":if(0!=y&&(1!=y||v[0]&&0!=v[0])){if(1==y)if(1==v[0])for(q=h<<12,v=0;v<w;v++)J[B][v]=" ",u[B][v]=q;else 2==v[0]&&e(B)}else d();break;case "h":m=!0;break;case "l":m=!1}l=0}break;case 4:l=0;break;case 5:l=0}}k.TermDraw()};k.ProcessVt100String=function(a){for(var b=0;b<a.length;b++)c(String.fromCharCode(a.charCodeAt(b)))};var H=[199,252,233,
831 +226,228,224,229,231,234,235,232,239,238,236,196,197,201,230,198,244,246,242,251,249,255,214,220,162,163,165,8359,402,225,237,243,250,241,209,170,218,191,8976,172,189,188,161,171,187,9619,9618,9617,9474,9508,9569,9570,9558,9557,9571,9553,9559,9565,9564,9563,9488,9492,9524,9516,9500,9472,9532,9566,9567,9562,9556,9577,9574,9568,9552,9580,9575,9576,9572,9573,9576,9560,9554,9555,9579,9578,9496,9484,9608,9604,9611,9616,9600,945,223,915,960,931,963,181,964,966,952,8486,948,8734,248,949,8719,8801,177,8805,
832 +8806,8992,8993,247,8776,176,8226,183,8730,8319,178,8718,160],E=[199,252,233,226,228,224,229,231,234,235,232,239,238,236,196,197,201,230,198,244,246,242,251,249,255,214,220,162,163,165,8359,402,225,237,243,250,241,209,170,218,191,8976,172,189,188,161,174,187,9619,9618,9617,9474,9508,9569,9570,9558,9557,9571,9553,9559,9565,9564,9563,9488,9492,9524,9516,9500,9472,9532,9566,9567,9562,9556,9577,9574,9568,9552,9580,9575,9576,9572,9573,9576,9560,9554,9555,9579,9578,9496,9484,9608,9604,9611,9616,9600,945,
833 +223,915,960,931,963,181,964,966,952,8486,948,8734,248,949,8719,8801,177,8805,8806,8992,8993,247,8776,176,8226,183,8730,8319,178,8718,160];k.TermClear=function(a){for(var b=0;b<k.height;b++)for(var c=0;c<k.width;c++)J[b][c]=" ",u[b][c]=a};k.TermResetScreen=function(){n=0;p=7;h=0;m=!0;B=w=0;k.TermClear(448)};k.TermSendKeys=function(a){console.log(a);k.parent.Send(a)};k.TermSendKey=function(a){k.parent.Send(String.fromCharCode(a))};k.TermHandleKeys=function(a){if(!a.ctrlKey)return 127==a.which?k.TermSendKey(8):
834 +13==a.which?k.TermSendKeys(0==k.fxLineBreak?"\r\n":"\n"):0!=a.which&&k.TermSendKey(a.which),!1;a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation()};k.TermHandleKeyUp=function(a){if(8!=a.which&&32!=a.which&&9!=a.which)return!0;a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1};k.TermHandleKeyDown=function(a){if(65<=a.which&&90>=a.which&&1==a.ctrlKey)k.TermSendKey(a.which-64),a.preventDefault&&a.preventDefault(),a.stopPropagation&&a.stopPropagation();
835 +else{if(27==a.which)return k.TermSendKeys(String.fromCharCode(27)),!0;if(37==a.which)return k.TermSendKeys(String.fromCharCode(27,91,68)),!0;if(38==a.which)return k.TermSendKeys(String.fromCharCode(27,91,65)),!0;if(39==a.which)return k.TermSendKeys(String.fromCharCode(27,91,67)),!0;if(40==a.which)return k.TermSendKeys(String.fromCharCode(27,91,66)),!0;if(9==a.which)return k.TermSendKeys("\t"),a.preventDefault&&a.preventDefault(),a.stopPropagation&&a.stopPropagation(),!0;var b=[80,81,119,120,116,117,
836 +113,114,112,77],c=[49,50,51,52,53,54,55,56,57,48,33,64],d=[80,81,82,83,84,85,86,87,88,89,90,91];if(111<a.which&124>a.which&&0==a.repeat){if(0==k.fxEmulation&&122>a.which)return k.TermSendKeys(String.fromCharCode(27,91,79,b[a.which-112])),!0;if(1==k.fxEmulation)return k.TermSendKeys(String.fromCharCode(27,c[a.which-112])),!0;if(2==k.fxEmulation)return k.TermSendKeys(String.fromCharCode(27,79,d[a.which-112])),!0}if(8!=a.which&&32!=a.which&&9!=a.which)return!0;k.TermSendKey(a.which);a.preventDefault&&
837 +a.preventDefault();a.stopPropagation&&a.stopPropagation();return!1}};k.TermDraw=function(){for(var a,b="",c="",d=1,e,g=0;g<k.height;++g){for(var h=0;h<k.width;++h)switch(a=u[g][h],w==h&&B==g&&(a|=2),a!=d&&(b+=c,c="",d=6,e=12,a&2&&(d=12,e=6),b+='<span style="color:#'+v[a>>d&63]+";background-color:#"+v[a>>e&63],a&1&&(b+=";text-decoration:underline"),b+=';">',c="</span>"+c,d=a),a=J[g][h],a){case "&":b+="&amp;";break;case "<":b+="&lt;";break;case ">":b+="&gt;";break;case " ":b+="&nbsp;";break;default:b+=
838 +a}g!=k.height-1&&(b+="<br>")}k.DivElement.innerHTML="<font size='4'><b>"+b+c+"</b></font>"};k.TermInit=function(){k.TermResetScreen()};k.Init();return k},ZLIB=ZLIB||{};
839 +"undefined"===typeof ZLIB.common_initialized&&(ZLIB.Z_NO_FLUSH=0,ZLIB.Z_PARTIAL_FLUSH=1,ZLIB.Z_SYNC_FLUSH=2,ZLIB.Z_FULL_FLUSH=3,ZLIB.Z_FINISH=4,ZLIB.Z_BLOCK=5,ZLIB.Z_TREES=6,ZLIB.Z_OK=0,ZLIB.Z_STREAM_END=1,ZLIB.Z_NEED_DICT=2,ZLIB.Z_ERRNO=-1,ZLIB.Z_STREAM_ERROR=-2,ZLIB.Z_DATA_ERROR=-3,ZLIB.Z_MEM_ERROR=-4,ZLIB.Z_BUF_ERROR=-5,ZLIB.Z_VERSION_ERROR=-6,ZLIB.Z_DEFLATED=8,ZLIB.z_stream=function(){this.total_out=this.avail_out=this.next_out=this.total_in=this.avail_in=this.next_in=0;this.state=this.msg=null;
840 +this.adler=this.data_type=0;this.output_data=this.input_data="";this.error=0;this.checksum_function=null},ZLIB.gz_header=function(){this.xflags=this.time=this.text=0;this.os=255;this.extra=null;this.extra_max=this.extra_len=0;this.name=null;this.name_max=0;this.comment=null;this.done=this.hcrc=this.comm_max=0},ZLIB.common_initialized=!0);"undefined"===typeof ZLIB&&alert("ZLIB is not defined. SRC zlib.js before zlib-inflate.js");
841 +(function(){function b(a,b){var c=a.next,d=2==b?a.distbits:a.lenbits,e=a.work,g=a.lens,h=2==b?a.nlen:0,k=a.codes,l;l=1==b?a.nlen:2==b?a.ndist:19;var m,n,p,q,v,w,B,y,E,H,G,I,Y,da,fa,ga,ha,P,K=Array(16);v=Array(16);for(m=0;15>=m;m++)K[m]=0;for(n=0;n<l;n++)K[g[h+n]]++;q=d;for(p=15;1<=p&&0==K[p];p--);q>p&&(q=p);if(0==p)return I={op:64,bits:1,val:0},k[c++]=I,k[c++]=I,2==b?a.distbits=1:a.lenbits=1,a.next=c,0;for(d=1;d<p&&0==K[d];d++);q<d&&(q=d);for(m=w=1;15>=m;m++)if(w<<=1,w-=K[m],0>w)return-1;if(0<w&&
842 +(0==b||1!=p))return a.next=c,-1;v[1]=0;for(m=1;15>m;m++)v[m+1]=v[m]+K[m];for(n=0;n<l;n++)0!=g[h+n]&&(e[v[g[h+n]]++]=n);switch(b){case 0:da=ga=e;ha=fa=0;P=19;break;case 1:da=x;fa=-257;ga=u;ha=-257;P=256;break;default:da=J,ga=A,ha=fa=0,P=-1}n=y=0;m=d;Y=c;l=q;v=0;H=-1;B=1<<q;G=B-1;if(1==b&&852<=B||2==b&&592<=B)return a.next=c,1;for(;;){I={op:0,bits:m-v,val:0};e[n]<P?I.val=e[n]:e[n]>P?(I.op=ga[ha+e[n]],I.val=da[fa+e[n]]):I.op=96;w=1<<m-v;d=E=1<<l;do E-=w,k[Y+(y>>>v)+E]=I;while(0!=E);for(w=1<<m-1;y&w;)w>>>=
843 +1;0!=w?(y&=w-1,y+=w):y=0;n++;if(0==--K[m]){if(m==p)break;m=g[h+e[n]]}if(m>q&&(y&G)!=H){0==v&&(v=q);Y+=d;l=m-v;for(w=1<<l;l+v<p;){w-=K[l+v];if(0>=w)break;l++;w<<=1}B+=1<<l;if(1==b&&852<=B||2==b&&592<=B)return a.next=c,1;H=y&G;k[c+H]={op:l,bits:q,val:Y-c}}}0!=y&&(k[Y+y]={op:64,bits:m-v,val:0});a.next=c+B;2==b?a.distbits=q:a.lenbits=q;return 0}function c(a){var b,c=Array(a);for(b=0;b<a;b++)c[b]=0;return c}function a(a,b,c){return a&&b in a?a[b]:c}function d(){return 0}function e(){var a;this.total=this.check=
844 +this.dmax=this.flags=this.havedict=this.wrap=this.last=this.mode=0;this.head=null;this.wnext=this.whave=this.wsize=this.wbits=0;this.window=null;this.next=this.have=this.ndist=this.nlen=this.ncode=this.distbits=this.lenbits=this.distcode=this.lencode=this.extra=this.offset=this.length=this.bits=this.hold=0;this.lens=c(320);this.work=c(288);this.codes=Array(1444);var b={op:0,bits:0,val:0};for(a=0;1444>a;a++)this.codes[a]=b;this.was=this.back=this.sane=0}function q(a){var b;y||(y=eval("([ {op:96,bits:7,val:0},{op:0,bits:8,val:80},{op:0,bits:8,val:16},{op:20,bits:8,val:115},{op:18,bits:7,val:31},{op:0,bits:8,val:112},{op:0,bits:8,val:48}, {op:0,bits:9,val:192},{op:16,bits:7,val:10},{op:0,bits:8,val:96},{op:0,bits:8,val:32},{op:0,bits:9,val:160},{op:0,bits:8,val:0},{op:0,bits:8,val:128}, {op:0,bits:8,val:64},{op:0,bits:9,val:224},{op:16,bits:7,val:6},{op:0,bits:8,val:88},{op:0,bits:8,val:24},{op:0,bits:9,val:144},{op:19,bits:7,val:59}, {op:0,bits:8,val:120},{op:0,bits:8,val:56},{op:0,bits:9,val:208},{op:17,bits:7,val:17},{op:0,bits:8,val:104},{op:0,bits:8,val:40},{op:0,bits:9,val:176}, {op:0,bits:8,val:8},{op:0,bits:8,val:136},{op:0,bits:8,val:72},{op:0,bits:9,val:240},{op:16,bits:7,val:4},{op:0,bits:8,val:84},{op:0,bits:8,val:20}, {op:21,bits:8,val:227},{op:19,bits:7,val:43},{op:0,bits:8,val:116},{op:0,bits:8,val:52},{op:0,bits:9,val:200},{op:17,bits:7,val:13},{op:0,bits:8,val:100}, {op:0,bits:8,val:36},{op:0,bits:9,val:168},{op:0,bits:8,val:4},{op:0,bits:8,val:132},{op:0,bits:8,val:68},{op:0,bits:9,val:232},{op:16,bits:7,val:8}, {op:0,bits:8,val:92},{op:0,bits:8,val:28},{op:0,bits:9,val:152},{op:20,bits:7,val:83},{op:0,bits:8,val:124},{op:0,bits:8,val:60},{op:0,bits:9,val:216}, {op:18,bits:7,val:23},{op:0,bits:8,val:108},{op:0,bits:8,val:44},{op:0,bits:9,val:184},{op:0,bits:8,val:12},{op:0,bits:8,val:140},{op:0,bits:8,val:76}, {op:0,bits:9,val:248},{op:16,bits:7,val:3},{op:0,bits:8,val:82},{op:0,bits:8,val:18},{op:21,bits:8,val:163},{op:19,bits:7,val:35},{op:0,bits:8,val:114}, {op:0,bits:8,val:50},{op:0,bits:9,val:196},{op:17,bits:7,val:11},{op:0,bits:8,val:98},{op:0,bits:8,val:34},{op:0,bits:9,val:164},{op:0,bits:8,val:2}, {op:0,bits:8,val:130},{op:0,bits:8,val:66},{op:0,bits:9,val:228},{op:16,bits:7,val:7},{op:0,bits:8,val:90},{op:0,bits:8,val:26},{op:0,bits:9,val:148}, {op:20,bits:7,val:67},{op:0,bits:8,val:122},{op:0,bits:8,val:58},{op:0,bits:9,val:212},{op:18,bits:7,val:19},{op:0,bits:8,val:106},{op:0,bits:8,val:42}, {op:0,bits:9,val:180},{op:0,bits:8,val:10},{op:0,bits:8,val:138},{op:0,bits:8,val:74},{op:0,bits:9,val:244},{op:16,bits:7,val:5},{op:0,bits:8,val:86}, {op:0,bits:8,val:22},{op:64,bits:8,val:0},{op:19,bits:7,val:51},{op:0,bits:8,val:118},{op:0,bits:8,val:54},{op:0,bits:9,val:204},{op:17,bits:7,val:15}, {op:0,bits:8,val:102},{op:0,bits:8,val:38},{op:0,bits:9,val:172},{op:0,bits:8,val:6},{op:0,bits:8,val:134},{op:0,bits:8,val:70},{op:0,bits:9,val:236}, {op:16,bits:7,val:9},{op:0,bits:8,val:94},{op:0,bits:8,val:30},{op:0,bits:9,val:156},{op:20,bits:7,val:99},{op:0,bits:8,val:126},{op:0,bits:8,val:62}, {op:0,bits:9,val:220},{op:18,bits:7,val:27},{op:0,bits:8,val:110},{op:0,bits:8,val:46},{op:0,bits:9,val:188},{op:0,bits:8,val:14},{op:0,bits:8,val:142}, {op:0,bits:8,val:78},{op:0,bits:9,val:252},{op:96,bits:7,val:0},{op:0,bits:8,val:81},{op:0,bits:8,val:17},{op:21,bits:8,val:131},{op:18,bits:7,val:31}, {op:0,bits:8,val:113},{op:0,bits:8,val:49},{op:0,bits:9,val:194},{op:16,bits:7,val:10},{op:0,bits:8,val:97},{op:0,bits:8,val:33},{op:0,bits:9,val:162}, {op:0,bits:8,val:1},{op:0,bits:8,val:129},{op:0,bits:8,val:65},{op:0,bits:9,val:226},{op:16,bits:7,val:6},{op:0,bits:8,val:89},{op:0,bits:8,val:25}, {op:0,bits:9,val:146},{op:19,bits:7,val:59},{op:0,bits:8,val:121},{op:0,bits:8,val:57},{op:0,bits:9,val:210},{op:17,bits:7,val:17},{op:0,bits:8,val:105}, {op:0,bits:8,val:41},{op:0,bits:9,val:178},{op:0,bits:8,val:9},{op:0,bits:8,val:137},{op:0,bits:8,val:73},{op:0,bits:9,val:242},{op:16,bits:7,val:4}, {op:0,bits:8,val:85},{op:0,bits:8,val:21},{op:16,bits:8,val:258},{op:19,bits:7,val:43},{op:0,bits:8,val:117},{op:0,bits:8,val:53},{op:0,bits:9,val:202}, {op:17,bits:7,val:13},{op:0,bits:8,val:101},{op:0,bits:8,val:37},{op:0,bits:9,val:170},{op:0,bits:8,val:5},{op:0,bits:8,val:133},{op:0,bits:8,val:69}, {op:0,bits:9,val:234},{op:16,bits:7,val:8},{op:0,bits:8,val:93},{op:0,bits:8,val:29},{op:0,bits:9,val:154},{op:20,bits:7,val:83},{op:0,bits:8,val:125}, {op:0,bits:8,val:61},{op:0,bits:9,val:218},{op:18,bits:7,val:23},{op:0,bits:8,val:109},{op:0,bits:8,val:45},{op:0,bits:9,val:186},{op:0,bits:8,val:13}, {op:0,bits:8,val:141},{op:0,bits:8,val:77},{op:0,bits:9,val:250},{op:16,bits:7,val:3},{op:0,bits:8,val:83},{op:0,bits:8,val:19},{op:21,bits:8,val:195}, {op:19,bits:7,val:35},{op:0,bits:8,val:115},{op:0,bits:8,val:51},{op:0,bits:9,val:198},{op:17,bits:7,val:11},{op:0,bits:8,val:99},{op:0,bits:8,val:35}, {op:0,bits:9,val:166},{op:0,bits:8,val:3},{op:0,bits:8,val:131},{op:0,bits:8,val:67},{op:0,bits:9,val:230},{op:16,bits:7,val:7},{op:0,bits:8,val:91}, {op:0,bits:8,val:27},{op:0,bits:9,val:150},{op:20,bits:7,val:67},{op:0,bits:8,val:123},{op:0,bits:8,val:59},{op:0,bits:9,val:214},{op:18,bits:7,val:19}, {op:0,bits:8,val:107},{op:0,bits:8,val:43},{op:0,bits:9,val:182},{op:0,bits:8,val:11},{op:0,bits:8,val:139},{op:0,bits:8,val:75},{op:0,bits:9,val:246}, {op:16,bits:7,val:5},{op:0,bits:8,val:87},{op:0,bits:8,val:23},{op:64,bits:8,val:0},{op:19,bits:7,val:51},{op:0,bits:8,val:119},{op:0,bits:8,val:55}, {op:0,bits:9,val:206},{op:17,bits:7,val:15},{op:0,bits:8,val:103},{op:0,bits:8,val:39},{op:0,bits:9,val:174},{op:0,bits:8,val:7},{op:0,bits:8,val:135}, {op:0,bits:8,val:71},{op:0,bits:9,val:238},{op:16,bits:7,val:9},{op:0,bits:8,val:95},{op:0,bits:8,val:31},{op:0,bits:9,val:158},{op:20,bits:7,val:99}, {op:0,bits:8,val:127},{op:0,bits:8,val:63},{op:0,bits:9,val:222},{op:18,bits:7,val:27},{op:0,bits:8,val:111},{op:0,bits:8,val:47},{op:0,bits:9,val:190}, {op:0,bits:8,val:15},{op:0,bits:8,val:143},{op:0,bits:8,val:79},{op:0,bits:9,val:254},{op:96,bits:7,val:0},{op:0,bits:8,val:80},{op:0,bits:8,val:16}, {op:20,bits:8,val:115},{op:18,bits:7,val:31},{op:0,bits:8,val:112},{op:0,bits:8,val:48},{op:0,bits:9,val:193},{op:16,bits:7,val:10},{op:0,bits:8,val:96}, {op:0,bits:8,val:32},{op:0,bits:9,val:161},{op:0,bits:8,val:0},{op:0,bits:8,val:128},{op:0,bits:8,val:64},{op:0,bits:9,val:225},{op:16,bits:7,val:6}, {op:0,bits:8,val:88},{op:0,bits:8,val:24},{op:0,bits:9,val:145},{op:19,bits:7,val:59},{op:0,bits:8,val:120},{op:0,bits:8,val:56},{op:0,bits:9,val:209}, {op:17,bits:7,val:17},{op:0,bits:8,val:104},{op:0,bits:8,val:40},{op:0,bits:9,val:177},{op:0,bits:8,val:8},{op:0,bits:8,val:136},{op:0,bits:8,val:72}, {op:0,bits:9,val:241},{op:16,bits:7,val:4},{op:0,bits:8,val:84},{op:0,bits:8,val:20},{op:21,bits:8,val:227},{op:19,bits:7,val:43},{op:0,bits:8,val:116}, {op:0,bits:8,val:52},{op:0,bits:9,val:201},{op:17,bits:7,val:13},{op:0,bits:8,val:100},{op:0,bits:8,val:36},{op:0,bits:9,val:169},{op:0,bits:8,val:4}, {op:0,bits:8,val:132},{op:0,bits:8,val:68},{op:0,bits:9,val:233},{op:16,bits:7,val:8},{op:0,bits:8,val:92},{op:0,bits:8,val:28},{op:0,bits:9,val:153}, {op:20,bits:7,val:83},{op:0,bits:8,val:124},{op:0,bits:8,val:60},{op:0,bits:9,val:217},{op:18,bits:7,val:23},{op:0,bits:8,val:108},{op:0,bits:8,val:44}, {op:0,bits:9,val:185},{op:0,bits:8,val:12},{op:0,bits:8,val:140},{op:0,bits:8,val:76},{op:0,bits:9,val:249},{op:16,bits:7,val:3},{op:0,bits:8,val:82}, {op:0,bits:8,val:18},{op:21,bits:8,val:163},{op:19,bits:7,val:35},{op:0,bits:8,val:114},{op:0,bits:8,val:50},{op:0,bits:9,val:197},{op:17,bits:7,val:11}, {op:0,bits:8,val:98},{op:0,bits:8,val:34},{op:0,bits:9,val:165},{op:0,bits:8,val:2},{op:0,bits:8,val:130},{op:0,bits:8,val:66},{op:0,bits:9,val:229}, {op:16,bits:7,val:7},{op:0,bits:8,val:90},{op:0,bits:8,val:26},{op:0,bits:9,val:149},{op:20,bits:7,val:67},{op:0,bits:8,val:122},{op:0,bits:8,val:58}, {op:0,bits:9,val:213},{op:18,bits:7,val:19},{op:0,bits:8,val:106},{op:0,bits:8,val:42},{op:0,bits:9,val:181},{op:0,bits:8,val:10},{op:0,bits:8,val:138}, {op:0,bits:8,val:74},{op:0,bits:9,val:245},{op:16,bits:7,val:5},{op:0,bits:8,val:86},{op:0,bits:8,val:22},{op:64,bits:8,val:0},{op:19,bits:7,val:51}, {op:0,bits:8,val:118},{op:0,bits:8,val:54},{op:0,bits:9,val:205},{op:17,bits:7,val:15},{op:0,bits:8,val:102},{op:0,bits:8,val:38},{op:0,bits:9,val:173}, {op:0,bits:8,val:6},{op:0,bits:8,val:134},{op:0,bits:8,val:70},{op:0,bits:9,val:237},{op:16,bits:7,val:9},{op:0,bits:8,val:94},{op:0,bits:8,val:30}, {op:0,bits:9,val:157},{op:20,bits:7,val:99},{op:0,bits:8,val:126},{op:0,bits:8,val:62},{op:0,bits:9,val:221},{op:18,bits:7,val:27},{op:0,bits:8,val:110}, {op:0,bits:8,val:46},{op:0,bits:9,val:189},{op:0,bits:8,val:14},{op:0,bits:8,val:142},{op:0,bits:8,val:78},{op:0,bits:9,val:253},{op:96,bits:7,val:0}, {op:0,bits:8,val:81},{op:0,bits:8,val:17},{op:21,bits:8,val:131},{op:18,bits:7,val:31},{op:0,bits:8,val:113},{op:0,bits:8,val:49},{op:0,bits:9,val:195}, {op:16,bits:7,val:10},{op:0,bits:8,val:97},{op:0,bits:8,val:33},{op:0,bits:9,val:163},{op:0,bits:8,val:1},{op:0,bits:8,val:129},{op:0,bits:8,val:65}, {op:0,bits:9,val:227},{op:16,bits:7,val:6},{op:0,bits:8,val:89},{op:0,bits:8,val:25},{op:0,bits:9,val:147},{op:19,bits:7,val:59},{op:0,bits:8,val:121}, {op:0,bits:8,val:57},{op:0,bits:9,val:211},{op:17,bits:7,val:17},{op:0,bits:8,val:105},{op:0,bits:8,val:41},{op:0,bits:9,val:179},{op:0,bits:8,val:9}, {op:0,bits:8,val:137},{op:0,bits:8,val:73},{op:0,bits:9,val:243},{op:16,bits:7,val:4},{op:0,bits:8,val:85},{op:0,bits:8,val:21},{op:16,bits:8,val:258}, {op:19,bits:7,val:43},{op:0,bits:8,val:117},{op:0,bits:8,val:53},{op:0,bits:9,val:203},{op:17,bits:7,val:13},{op:0,bits:8,val:101},{op:0,bits:8,val:37}, {op:0,bits:9,val:171},{op:0,bits:8,val:5},{op:0,bits:8,val:133},{op:0,bits:8,val:69},{op:0,bits:9,val:235},{op:16,bits:7,val:8},{op:0,bits:8,val:93}, {op:0,bits:8,val:29},{op:0,bits:9,val:155},{op:20,bits:7,val:83},{op:0,bits:8,val:125},{op:0,bits:8,val:61},{op:0,bits:9,val:219},{op:18,bits:7,val:23}, {op:0,bits:8,val:109},{op:0,bits:8,val:45},{op:0,bits:9,val:187},{op:0,bits:8,val:13},{op:0,bits:8,val:141},{op:0,bits:8,val:77},{op:0,bits:9,val:251}, {op:16,bits:7,val:3},{op:0,bits:8,val:83},{op:0,bits:8,val:19},{op:21,bits:8,val:195},{op:19,bits:7,val:35},{op:0,bits:8,val:115},{op:0,bits:8,val:51}, {op:0,bits:9,val:199},{op:17,bits:7,val:11},{op:0,bits:8,val:99},{op:0,bits:8,val:35},{op:0,bits:9,val:167},{op:0,bits:8,val:3},{op:0,bits:8,val:131}, {op:0,bits:8,val:67},{op:0,bits:9,val:231},{op:16,bits:7,val:7},{op:0,bits:8,val:91},{op:0,bits:8,val:27},{op:0,bits:9,val:151},{op:20,bits:7,val:67}, {op:0,bits:8,val:123},{op:0,bits:8,val:59},{op:0,bits:9,val:215},{op:18,bits:7,val:19},{op:0,bits:8,val:107},{op:0,bits:8,val:43},{op:0,bits:9,val:183}, {op:0,bits:8,val:11},{op:0,bits:8,val:139},{op:0,bits:8,val:75},{op:0,bits:9,val:247},{op:16,bits:7,val:5},{op:0,bits:8,val:87},{op:0,bits:8,val:23}, {op:64,bits:8,val:0},{op:19,bits:7,val:51},{op:0,bits:8,val:119},{op:0,bits:8,val:55},{op:0,bits:9,val:207},{op:17,bits:7,val:15},{op:0,bits:8,val:103}, {op:0,bits:8,val:39},{op:0,bits:9,val:175},{op:0,bits:8,val:7},{op:0,bits:8,val:135},{op:0,bits:8,val:71},{op:0,bits:9,val:239},{op:16,bits:7,val:9}, {op:0,bits:8,val:95},{op:0,bits:8,val:31},{op:0,bits:9,val:159},{op:20,bits:7,val:99},{op:0,bits:8,val:127},{op:0,bits:8,val:63},{op:0,bits:9,val:223}, {op:18,bits:7,val:27},{op:0,bits:8,val:111},{op:0,bits:8,val:47},{op:0,bits:9,val:191},{op:0,bits:8,val:15},{op:0,bits:8,val:143},{op:0,bits:8,val:79}, {op:0,bits:9,val:255}])"));
845 +H||(H=eval("([ {op:16,bits:5,val:1},{op:23,bits:5,val:257},{op:19,bits:5,val:17},{op:27,bits:5,val:4097},{op:17,bits:5,val:5},{op:25,bits:5,val:1025}, {op:21,bits:5,val:65},{op:29,bits:5,val:16385},{op:16,bits:5,val:3},{op:24,bits:5,val:513},{op:20,bits:5,val:33},{op:28,bits:5,val:8193}, {op:18,bits:5,val:9},{op:26,bits:5,val:2049},{op:22,bits:5,val:129},{op:64,bits:5,val:0},{op:16,bits:5,val:2},{op:23,bits:5,val:385}, {op:19,bits:5,val:25},{op:27,bits:5,val:6145},{op:17,bits:5,val:7},{op:25,bits:5,val:1537},{op:21,bits:5,val:97},{op:29,bits:5,val:24577}, {op:16,bits:5,val:4},{op:24,bits:5,val:769},{op:20,bits:5,val:49},{op:28,bits:5,val:12289},{op:18,bits:5,val:13},{op:26,bits:5,val:3073}, {op:22,bits:5,val:193},{op:64,bits:5,val:0}])"));
846 +a.lencode=0;a.distcode=512;for(b=0;512>b;b++)a.codes[b]=y[b];for(b=0;32>b;b++)a.codes[b+512]=H[b];a.lenbits=9;a.distbits=5}function k(a,b){a.state.check=a.checksum_function(a.state.check,[b&255,b>>>8&255],0,2)}function v(a,b){b.strm=a;b.left=a.avail_out;b.next=a.next_in;b.have=a.avail_in;b.hold=a.state.hold;b.bits=a.state.bits;return b}function n(a){var b=a.strm;b.next_in=a.next;b.avail_out=a.left;b.avail_in=a.have;b.state.hold=a.hold;b.state.bits=a.bits}function p(a){a.hold=0;a.bits=0}function h(a){if(0==
847 +a.have)return!1;a.have--;a.hold+=(a.strm.input_data.charCodeAt(a.next++)&255)<<a.bits;a.bits+=8;return!0}function m(a,b){for(;a.bits<b;)if(!h(a))return!1;return!0}function w(a,b){return a.hold&(1<<b)-1}function B(a,b){a.hold>>>=b;a.bits-=b}function l(a){a.hold>>>=a.bits&7;a.bits-=a.bits&7}function g(a){return(a>>>24&255)+(a>>>8&65280)+((a&65280)<<8)+((a&255)<<24)}var x=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],u=[16,16,16,16,16,16,16,16,17,17,17,17,
848 +18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,203,69],J=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],A=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];ZLIB.inflate_copyright=" inflate 1.2.6 Copyright 1995-2012 Mark Adler ";ZLIB.inflateResetKeep=function(a){var b;if(!a||!a.state)return ZLIB.Z_STREAM_ERROR;b=a.state;a.total_in=a.total_out=b.total=0;a.msg=null;b.wrap&&(a.adler=
849 +b.wrap&1);b.mode=0;b.last=0;b.havedict=0;b.dmax=32768;b.head=null;b.hold=0;b.bits=0;b.lencode=0;b.distcode=0;b.next=0;b.sane=1;b.back=-1;return ZLIB.Z_OK};ZLIB.inflateReset=function(a,b){var c,e;if(!a||!a.state)return ZLIB.Z_STREAM_ERROR;e=a.state;"undefined"===typeof b&&(b=15);0>b?(c=0,b=-b):(c=(b>>>4)+1,48>b&&(b&=15));a.checksum_function=1==c&&"function"===typeof ZLIB.adler32?ZLIB.adler32:2==c&&"function"===typeof ZLIB.crc32?ZLIB.crc32:d;if(b&&(8>b||15<b))return ZLIB.Z_STREAM_ERROR;e.window&&e.wbits!=
850 +b&&(e.window=null);e.wrap=c;e.wbits=b;e.wsize=0;e.whave=0;e.wnext=0;return ZLIB.inflateResetKeep(a)};ZLIB.inflateInit=function(a){var b=new ZLIB.z_stream;b.state=new e;ZLIB.inflateReset(b,a);return b};ZLIB.inflatePrime=function(a,b,c){if(!a||!a.state)return ZLIB.Z_STREAM_ERROR;a=a.state;if(0>b)return a.hold=0,a.bits=0,ZLIB.Z_OK;if(16<b||32<a.bits+b)return ZLIB.Z_STREAM_ERROR;a.hold+=(c&(1<<b)-1)<<a.bits;a.bits+=b;return ZLIB.Z_OK};var y=null,H=null,E=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
851 +ZLIB.inflate=function(a,c){var d,e,u,x,r,y=-1,A=-1,J;if(!a||!a.state||!a.input_data&&0!=a.avail_in)return ZLIB.Z_STREAM_ERROR;d=a.state;11==d.mode&&(d.mode=12);e={};v(a,e);u=e.have;x=e.left;J=ZLIB.Z_OK;a:for(;;)switch(d.mode){case 0:if(0==d.wrap){d.mode=12;break}if(!m(e,16))break a;if(d.wrap&2&&35615==e.hold){d.check=a.checksum_function(0,null,0,0);k(a,e.hold);p(e);d.mode=1;break}d.flags=0;null!==d.head&&(d.head.done=-1);if(!(d.wrap&1)||((w(e,8)<<8)+(e.hold>>>8))%31){a.msg="incorrect header check";
852 +d.mode=29;break}if(w(e,4)!=ZLIB.Z_DEFLATED){a.msg="unknown compression method";d.mode=29;break}B(e,4);y=w(e,4)+8;if(0==d.wbits)d.wbits=y;else if(y>d.wbits){a.msg="invalid window size";d.mode=29;break}d.dmax=1<<y;a.adler=d.check=a.checksum_function(0,null,0,0);d.mode=e.hold&512?9:11;p(e);break;case 1:if(!m(e,16))break a;d.flags=e.hold;if((d.flags&255)!=ZLIB.Z_DEFLATED){a.msg="unknown compression method";d.mode=29;break}if(d.flags&57344){a.msg="unknown header flags set";d.mode=29;break}null!==d.head&&
853 +(d.head.text=e.hold>>>8&1);d.flags&512&&k(a,e.hold);p(e);d.mode=2;case 2:if(!m(e,32))break a;null!==d.head&&(d.head.time=e.hold);d.flags&512&&(r=e.hold,a.state.check=a.checksum_function(a.state.check,[r&255,r>>>8&255,r>>>16&255,r>>>24&255],0,4));p(e);d.mode=3;case 3:if(!m(e,16))break a;null!==d.head&&(d.head.xflags=e.hold&255,d.head.os=e.hold>>>8);d.flags&512&&k(a,e.hold);p(e);d.mode=4;case 4:if(d.flags&1024){if(!m(e,16))break a;d.length=e.hold;null!==d.head&&(d.head.extra_len=e.hold);d.flags&512&&
854 +k(a,e.hold);p(e);d.head.extra=""}else null!==d.head&&(d.head.extra=null);d.mode=5;case 5:if(d.flags&1024&&(r=d.length,r>e.have&&(r=e.have),r&&(null!==d.head&&null!==d.head.extra&&(y=d.head.extra_len-d.length,d.head.extra+=a.input_data.substring(e.next,e.next+(y+r>d.head.extra_max?d.head.extra_max-y:r))),d.flags&512&&(d.check=a.checksum_function(d.check,a.input_data,e.next,r)),e.have-=r,e.next+=r,d.length-=r),d.length))break a;d.length=0;d.mode=6;case 6:if(d.flags&2048){if(0==e.have)break a;null!==
855 +d.head&&null===d.head.name&&(d.head.name="");r=0;do{y=a.input_data.charAt(e.next+r);r++;if("\x00"===y)break;null!==d.head&&d.length<d.head.name_max&&(d.head.name+=y,d.length++)}while(r<e.have);d.flags&512&&(d.check=a.checksum_function(d.check,a.input_data,e.next,r));e.have-=r;e.next+=r;if("\x00"!==y)break a}else null!==d.head&&(d.head.name=null);d.length=0;d.mode=7;case 7:if(d.flags&4096){if(0==e.have)break a;r=0;null!==d.head&&null===d.head.comment&&(d.head.comment="");do{y=a.input_data.charAt(e.next+
856 +r);r++;if("\x00"===y)break;null!==d.head&&d.length<d.head.comm_max&&(d.head.comment+=y,d.length++)}while(r<e.have);d.flags&512&&(d.check=a.checksum_function(d.check,a.input_data,e.next,r));e.have-=r;e.next+=r;if("\x00"!==y)break a}else null!==d.head&&(d.head.comment=null);d.mode=8;case 8:if(d.flags&512){if(!m(e,16))break a;if(e.hold!=(d.check&65535)){a.msg="header crc mismatch";d.mode=29;break}p(e)}null!==d.head&&(d.head.hcrc=d.flags>>>9&1,d.head.done=1);a.adler=d.check=a.checksum_function(0,null,
857 +0,0);d.mode=11;break;case 9:if(!m(e,32))break a;a.adler=d.check=g(e.hold);p(e);d.mode=10;case 10:if(0==d.havedict)return n(e),ZLIB.Z_NEED_DICT;a.adler=d.check=a.checksum_function(0,null,0,0);d.mode=11;case 11:if(c==ZLIB.Z_BLOCK||c==ZLIB.Z_TREES)break a;case 12:if(d.last){l(e);d.mode=26;break}if(!m(e,3))break a;d.last=w(e,1);B(e,1);switch(w(e,2)){case 0:d.mode=13;break;case 1:q(d);d.mode=19;if(c==ZLIB.Z_TREES){B(e,2);break a}break;case 2:d.mode=16;break;case 3:a.msg="invalid block type",d.mode=29}B(e,
858 +2);break;case 13:l(e);if(!m(e,32))break a;if((e.hold&65535)!=(e.hold>>>16&65535^65535)){a.msg="invalid stored block lengths";d.mode=29;break}d.length=e.hold&65535;p(e);d.mode=14;if(c==ZLIB.Z_TREES)break a;case 14:d.mode=15;case 15:if(r=d.length){r>e.have&&(r=e.have);r>e.left&&(r=e.left);if(0==r)break a;a.output_data+=a.input_data.substring(e.next,e.next+r);a.next_out+=r;e.have-=r;e.next+=r;e.left-=r;d.length-=r;break}d.mode=11;break;case 16:if(!m(e,14))break a;d.nlen=w(e,5)+257;B(e,5);d.ndist=w(e,
859 +5)+1;B(e,5);d.ncode=w(e,4)+4;B(e,4);if(286<d.nlen||30<d.ndist){a.msg="too many length or distance symbols";d.mode=29;break}d.have=0;d.mode=17;case 17:for(;d.have<d.ncode;){if(!m(e,3))break a;r=w(e,3);d.lens[E[d.have++]]=r;B(e,3)}for(;19>d.have;)d.lens[E[d.have++]]=0;d.next=0;d.lencode=0;d.lenbits=7;if(J=b(d,0)){a.msg="invalid code lengths set";d.mode=29;break}d.have=0;d.mode=18;case 18:for(;d.have<d.nlen+d.ndist;){for(;;){r=d.codes[d.lencode+w(e,d.lenbits)];if(r.bits<=e.bits)break;if(!h(e))break a}if(16>
860 +r.val)B(e,r.bits),d.lens[d.have++]=r.val;else{if(16==r.val){if(!m(e,r.bits+2))break a;B(e,r.bits);if(0==d.have){a.msg="invalid bit length repeat";d.mode=29;break}y=d.lens[d.have-1];r=3+w(e,2);B(e,2)}else if(17==r.val){if(!m(e,r.bits+3))break a;B(e,r.bits);y=0;r=3+w(e,3);B(e,3)}else{if(!m(e,r.bits+7))break a;B(e,r.bits);y=0;r=11+w(e,7);B(e,7)}if(d.have+r>d.nlen+d.ndist){a.msg="invalid bit length repeat";d.mode=29;break}for(;r--;)d.lens[d.have++]=y}}if(29==d.mode)break;if(0==d.lens[256]){a.msg="invalid code -- missing end-of-block";
861 +d.mode=29;break}d.next=0;d.lencode=d.next;d.lenbits=9;if(J=b(d,1)){a.msg="invalid literal/lengths set";d.mode=29;break}d.distcode=d.next;d.distbits=6;if(J=b(d,2)){a.msg="invalid distances set";d.mode=29;break}d.mode=19;if(c==ZLIB.Z_TREES)break a;case 19:d.mode=20;case 20:if(6<=e.have&&258<=e.left){n(e);r=a;var H=A=y=void 0,O=void 0,S=void 0,V=void 0,ba=void 0,Z=void 0,N=void 0,aa=void 0,L=void 0,G=void 0,I=void 0,Y=void 0,da=void 0,fa=void 0,ga=void 0,ha=void 0,P=void 0,K=void 0,X=void 0,ia=void 0,
862 +ea=-1,P=-1,y=r.state,A=r.input_data,H=r.next_in,O=H+r.avail_in-5,S=r.next_out,V=S-(x-r.avail_out),ba=S+(r.avail_out-257),Z=y.wsize,N=y.whave,aa=y.wnext,L=y.window,G=y.hold,I=y.bits,Y=y.codes,da=y.lencode,fa=y.distcode,ga=(1<<y.lenbits)-1,ha=(1<<y.distbits)-1;b:do c:for(15>I&&(G+=(A.charCodeAt(H++)&255)<<I,I+=8,G+=(A.charCodeAt(H++)&255)<<I,I+=8),P=Y[da+(G&ga)];;){K=P.bits;G>>>=K;I-=K;K=P.op;if(0==K)r.output_data+=String.fromCharCode(P.val),S++;else if(K&16){X=P.val;if(K&=15)I<K&&(G+=(A.charCodeAt(H++)&
863 +255)<<I,I+=8),X+=G&(1<<K)-1,G>>>=K,I-=K;15>I&&(G+=(A.charCodeAt(H++)&255)<<I,I+=8,G+=(A.charCodeAt(H++)&255)<<I,I+=8);P=Y[fa+(G&ha)];d:for(;;){K=P.bits;G>>>=K;I-=K;K=P.op;if(K&16){ia=P.val;K&=15;I<K&&(G+=(A.charCodeAt(H++)&255)<<I,I+=8,I<K&&(G+=(A.charCodeAt(H++)&255)<<I,I+=8));ia+=G&(1<<K)-1;G>>>=K;I-=K;K=S-V;if(ia>K){K=ia-K;if(K>N&&y.sane){r.msg="invalid distance too far back";y.mode=29;break b}ea=0;P=-1;ea=0==aa?ea+(Z-K):ea+(aa-K);K<X&&(X-=K,r.output_data+=L.substring(ea,ea+K),S+=K,ea=-1,P=S-ia)}else ea=
864 +-1,P=S-ia;if(0<=ea)r.output_data+=L.substring(ea,ea+X),S+=X;else{K=X;K>S-P&&(K=S-P);r.output_data+=r.output_data.substring(P,P+K);S+=K;X-=K;P+=K;for(S+=X;2<X;)r.output_data+=r.output_data.charAt(P++),r.output_data+=r.output_data.charAt(P++),r.output_data+=r.output_data.charAt(P++),X-=3;X&&(r.output_data+=r.output_data.charAt(P++),1<X&&(r.output_data+=r.output_data.charAt(P++)))}}else if(0==(K&64)){P=Y[fa+(P.val+(G&(1<<K)-1))];continue d}else{r.msg="invalid distance code";y.mode=29;break b}break d}}else if(0==
865 +(K&64)){P=Y[da+(P.val+(G&(1<<K)-1))];continue c}else{K&32?y.mode=11:(r.msg="invalid literal/length code",y.mode=29);break b}break c}while(H<O&&S<ba);X=I>>>3;H-=X;I-=X<<3;G&=(1<<I)-1;r.next_in=H;r.next_out=S;r.avail_in=H<O?5+(O-H):5-(H-O);r.avail_out=S<ba?257+(ba-S):257-(S-ba);y.hold=G;y.bits=I;v(a,e);11==d.mode&&(d.back=-1);break}for(d.back=0;;){r=d.codes[d.lencode+w(e,d.lenbits)];if(r.bits<=e.bits)break;if(!h(e))break a}if(r.op&&0==(r.op&240)){for(y=r;;){r=d.codes[d.lencode+y.val+(w(e,y.bits+y.op)>>>
866 +y.bits)];if(y.bits+r.bits<=e.bits)break;if(!h(e))break a}B(e,y.bits);d.back+=y.bits}B(e,r.bits);d.back+=r.bits;d.length=r.val;if(0==r.op){d.mode=25;break}if(r.op&32){d.back=-1;d.mode=11;break}if(r.op&64){a.msg="invalid literal/length code";d.mode=29;break}d.extra=r.op&15;d.mode=21;case 21:if(d.extra){if(!m(e,d.extra))break a;d.length+=w(e,d.extra);B(e,d.extra);d.back+=d.extra}d.was=d.length;d.mode=22;case 22:for(;;){r=d.codes[d.distcode+w(e,d.distbits)];if(r.bits<=e.bits)break;if(!h(e))break a}if(0==
867 +(r.op&240)){for(y=r;;){r=d.codes[d.distcode+y.val+(w(e,y.bits+y.op)>>>y.bits)];if(y.bits+r.bits<=e.bits)break;if(!h(e))break a}B(e,y.bits);d.back+=y.bits}B(e,r.bits);d.back+=r.bits;if(r.op&64){a.msg="invalid distance code";d.mode=29;break}d.offset=r.val;d.extra=r.op&15;d.mode=23;case 23:if(d.extra){if(!m(e,d.extra))break a;d.offset+=w(e,d.extra);B(e,d.extra);d.back+=d.extra}d.mode=24;case 24:if(0==e.left)break a;r=x-e.left;if(d.offset>r){r=d.offset-r;if(r>d.whave&&d.sane){a.msg="invalid distance too far back";
868 +d.mode=29;break}r>d.wnext?(r-=d.wnext,y=d.wsize-r):y=d.wnext-r;A=-1;r>d.length&&(r=d.length)}else y=-1,A=a.next_out-d.offset,r=d.length;r>e.left&&(r=e.left);e.left-=r;d.length-=r;if(0<=y)a.output_data+=d.window.substring(y,y+r),a.next_out+=r;else{a.next_out+=r;do a.output_data+=a.output_data.charAt(A++);while(--r)}0==d.length&&(d.mode=20);break;case 25:if(0==e.left)break a;a.output_data+=String.fromCharCode(d.length);a.next_out++;e.left--;d.mode=20;break;case 26:if(d.wrap){if(!m(e,32))break a;x-=
869 +e.left;a.total_out+=x;d.total+=x;x&&(a.adler=d.check=a.checksum_function(d.check,a.output_data,a.output_data.length-x,x));x=e.left;if((d.flags?e.hold:g(e.hold))!=d.check){a.msg="incorrect data check";d.mode=29;break}p(e)}d.mode=27;case 27:if(d.wrap&&d.flags){if(!m(e,32))break a;if(e.hold!=(d.total&4294967295)){a.msg="incorrect length check";d.mode=29;break}p(e)}d.mode=28;case 28:J=ZLIB.Z_STREAM_END;break a;case 29:J=ZLIB.Z_DATA_ERROR;break a;case 30:return ZLIB.Z_MEM_ERROR;default:return ZLIB.Z_STREAM_ERROR}n(e);
870 +if(d.wsize||x!=a.avail_out&&29>d.mode&&(26>d.mode||c!=ZLIB.Z_FINISH))e=a.state,r=a.output_data.length,null===e.window&&(e.window=""),0==e.wsize&&(e.wsize=1<<e.wbits),e.window=r>=e.wsize?a.output_data.substring(r-e.wsize):e.whave+r<e.wsize?e.window+a.output_data:e.window.substring(e.whave-(e.wsize-r))+a.output_data,e.whave=e.window.length,e.wnext=e.whave<e.wsize?e.whave:0;u-=a.avail_in;x-=a.avail_out;a.total_in+=u;a.total_out+=x;d.total+=x;d.wrap&&x&&(a.adler=d.check=a.checksum_function(d.check,a.output_data,
871 +0,a.output_data.length));a.data_type=d.bits+(d.last?64:0)+(11==d.mode?128:0)+(19==d.mode||14==d.mode?256:0);(0==u&&0==x||c==ZLIB.Z_FINISH)&&J==ZLIB.Z_OK&&(J=ZLIB.Z_BUF_ERROR);return J};ZLIB.inflateEnd=function(a){if(!a||!a.state)return ZLIB.Z_STREAM_ERROR;a.state.window=null;a.state=null;return ZLIB.Z_OK};ZLIB.z_stream.prototype.inflate=function(b,c){var d,e;this.input_data=b;this.next_in=a(c,"next_in",0);this.avail_in=a(c,"avail_in",b.length-this.next_in);d=a(c,"flush",ZLIB.Z_SYNC_FLUSH);e=a(c,"avail_out",
872 +-1);var g="";do{this.avail_out=0<=e?e:16384;this.output_data="";this.next_out=0;this.error=ZLIB.inflate(this,d);if(0<=e)return this.output_data;g+=this.output_data;if(0<this.avail_out)break}while(this.error==ZLIB.Z_OK);return g};ZLIB.z_stream.prototype.inflateReset=function(a){return ZLIB.inflateReset(this,a)}})();"undefined"===typeof ZLIB&&alert("ZLIB is not defined. SRC zlib.js before zlib-adler32.js");
873 +(function(){function b(a,b,c,q){var k,v;k=a>>>16&65535;a&=65535;if(1==q)return a+=b.charCodeAt(c)&255,65521<=a&&(a-=65521),k+=a,65521<=k&&(k-=65521),a|k<<16;if(null===b)return 1;if(16>q){for(;q--;)a+=b.charCodeAt(c++)&255,k+=a;65521<=a&&(a-=65521);return a|k%65521<<16}for(;5552<=q;){q-=5552;v=347;do a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&
874 +255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a;while(--v);a%=65521;k%=65521}if(q){for(;16<=q;)q-=16,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&
875 +255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a,a+=b.charCodeAt(c++)&255,k+=a;for(;q--;)a+=b.charCodeAt(c++)&255,k+=a;a%=65521;k%=65521}return a|k<<16}function c(a,b,c,q){var k,v;k=a>>>16&65535;a&=65535;if(1==q)return a+=b[c],65521<=a&&(a-=65521),k+=a,65521<=k&&(k-=65521),
876 +a|k<<16;if(null===b)return 1;if(16>q){for(;q--;)a+=b[c++],k+=a;65521<=a&&(a-=65521);return a|k%65521<<16}for(;5552<=q;){q-=5552;v=347;do a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a;while(--v);a%=65521;k%=65521}if(q){for(;16<=q;)q-=16,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=
877 +a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a,a+=b[c++],k+=a;for(;q--;)a+=b[c++],k+=a;a%=65521;k%=65521}return a|k<<16}ZLIB.adler32=function(a,d,e,q){return"string"===typeof d?b(a,d,e,q):c(a,d,e,q)};ZLIB.adler32_combine=function(a,b,c){var q,k;if(0>c)return 4294967295;k=c%65521;c=a&65535;q=k*c%65521;c+=(b&65535)+65521-1;q+=(a>>16&65535)+(b>>16&65535)+65521-k;65521<=c&&(c-=65521);65521<=c&&(c-=
878 +65521);131042<=q&&(q-=131042);65521<=q&&(q-=65521);return c|q<<16}})();"undefined"===typeof ZLIB&&alert("ZLIB is not defined. SRC zlib.js before zlib-crc32.js");
879 +(function(){function b(a,b){var c,k=0;for(c=0;b;)b&1&&(c^=a[k]),b>>=1,k++;return c}function c(a,c){var q;for(q=0;32>q;q++)a[q]=b(c,c[q])}var a=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,
880 +3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,
881 +476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,
882 +3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,
883 +1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,
884 +1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918E3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];ZLIB.crc32=function(b,c,q,k){if("string"===typeof c){if(null==c)c=0;else{for(b^=4294967295;8<=k;)b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=
885 +a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,b=a[(b^c.charCodeAt(q++))&255]^b>>>8,k-=8;if(k){do b=a[(b^c.charCodeAt(q++))&255]^b>>>8;while(--k)}c=b^4294967295}return c}if(null==c)c=0;else{for(b^=4294967295;8<=k;)b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&
886 +255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,b=a[(b^c[q++])&255]^b>>>8,k-=8;if(k){do b=a[(b^c[q++])&255]^b>>>8;while(--k)}c=b^4294967295}return c};ZLIB.crc32_combine=function(a,e,q){var k,v,n,p;if(0>=q)return a;n=Array(32);p=Array(32);p[0]=3988292384;for(k=v=1;32>k;k++)p[k]=v,v<<=1;c(n,p);c(p,n);do{c(n,p);q&1&&(a=b(n,a));q>>=1;if(0==q)break;c(p,n);q&1&&(a=b(p,a));q>>=1}while(0!=q);return a^e}})();
887 +var saveAs=saveAs||function(b){if("undefined"===typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var c=b.document.createElementNS("http://www.w3.org/1999/xhtml","a"),a="download"in c,d=/Version\/[\d\.]+.*Safari/.test(navigator.userAgent),e=b.webkitRequestFileSystem,q=b.requestFileSystem||e||b.mozRequestFileSystem,k=function(a){(b.setImmediate||b.setTimeout)(function(){throw a;},0)},v=0,n=function(a){var c=function(){"string"===typeof a?(b.URL||b.webkitURL||b).revokeObjectURL(a):a.remove()};
888 +b.chrome?c():setTimeout(c,500)},p=function(a,b,c){b=[].concat(b);for(var d=b.length;d--;){var e=a["on"+b[d]];if("function"===typeof e)try{e.call(a,c||a)}catch(h){k(h)}}},h=function(a){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(a.type)?new Blob(["\ufeff",a],{type:a.type}):a},m=function(k,l,g){g||(k=h(k));var m=this;g=k.type;var u=!1,w,A,y=function(){p(m,["writestart","progress","write","writeend"])},H=function(){if(A&&d&&"undefined"!==typeof FileReader){var a=
889 +new FileReader;a.onloadend=function(){var b=a.result;A.location.href="data:attachment/file"+b.slice(b.search(/[,;]/));m.readyState=m.DONE;y()};a.readAsDataURL(k);m.readyState=m.INIT}else{if(u||!w)w=(b.URL||b.webkitURL||b).createObjectURL(k);A?A.location.href=w:void 0==b.open(w,"_blank")&&d&&(b.location.href=w);m.readyState=m.DONE;y();n(w)}},E=function(a){return function(){if(m.readyState!==m.DONE)return a.apply(this,arguments)}},D={create:!0,exclusive:!1},z;m.readyState=m.INIT;l||(l="download");if(a)w=
890 +(b.URL||b.webkitURL||b).createObjectURL(k),c.href=w,c.download=l,setTimeout(function(){var a=new MouseEvent("click");c.dispatchEvent(a);y();n(w);m.readyState=m.DONE});else{b.chrome&&g&&"application/octet-stream"!==g&&(z=k.slice||k.webkitSlice,k=z.call(k,0,k.size,"application/octet-stream"),u=!0);e&&"download"!==l&&(l+=".download");if("application/octet-stream"===g||e)A=b;q?(v+=k.size,q(b.TEMPORARY,v,E(function(a){a.root.getDirectory("saved",D,E(function(a){var b=function(){a.getFile(l,D,E(function(a){a.createWriter(E(function(b){b.onwriteend=
891 +function(b){A.location.href=a.toURL();m.readyState=m.DONE;p(m,"writeend",b);n(a)};b.onerror=function(){var a=b.error;a.code!==a.ABORT_ERR&&H()};["writestart","progress","write","abort"].forEach(function(a){b["on"+a]=m["on"+a]});b.write(k);m.abort=function(){b.abort();m.readyState=m.DONE};m.readyState=m.WRITING}),H)}),H)};a.getFile(l,{create:!1},E(function(a){a.remove();b()}),E(function(a){a.code===a.NOT_FOUND_ERR?b():H()}))}),H)}),H)):H()}},w=m.prototype;if("undefined"!==typeof navigator&&navigator.msSaveOrOpenBlob)return function(a,
892 +b,c){c||(a=h(a));return navigator.msSaveOrOpenBlob(a,b||"download")};w.abort=function(){this.readyState=this.DONE;p(this,"abort")};w.readyState=w.INIT=0;w.WRITING=1;w.DONE=2;w.error=w.onwritestart=w.onprogress=w.onwrite=w.onabort=w.onerror=w.onwriteend=null;return function(a,b,c){return new m(a,b,c)}}}("undefined"!==typeof self&&self||"undefined"!==typeof window&&window||this.content);
893 +"undefined"!==typeof module&&module.exports?module.exports.saveAs=saveAs:"undefined"!==typeof define&&null!==define&&null!=define.amd&&define([],function(){return saveAs});
894 var version="0.7.5",urlvars={},amtstack,wsstack=null,AllWsman="AMT_8021xCredentialContext AMT_8021XProfile AMT_ActiveFilterStatistics AMT_AgentPresenceCapabilities AMT_AgentPresenceInterfacePolicy AMT_AgentPresenceService AMT_AgentPresenceWatchdog AMT_AgentPresenceWatchdogAction AMT_AlarmClockService IPS_AlarmClockOccurrence AMT_AssetTable AMT_AssetTableService AMT_AuditLog AMT_AuditPolicyRule AMT_AuthorizationService AMT_BootCapabilities AMT_BootSettingData AMT_ComplexFilterEntryBase AMT_CRL AMT_CryptographicCapabilities AMT_EACCredentialContext AMT_EndpointAccessControlService AMT_EnvironmentDetectionInterfacePolicy AMT_EnvironmentDetectionSettingData AMT_EthernetPortSettings AMT_EventLogEntry AMT_EventManagerService AMT_EventSubscriber AMT_FilterEntryBase AMT_FilterInSystemDefensePolicy AMT_GeneralSettings AMT_GeneralSystemDefenseCapabilities AMT_Hdr8021Filter AMT_HeuristicPacketFilterInterfacePolicy AMT_HeuristicPacketFilterSettings AMT_HeuristicPacketFilterStatistics AMT_InterfacePolicy AMT_IPHeadersFilter AMT_KerberosSettingData AMT_ManagementPresenceRemoteSAP AMT_MessageLog AMT_MPSUsernamePassword AMT_NetworkFilter AMT_NetworkPortDefaultSystemDefensePolicy AMT_NetworkPortSystemDefenseCapabilities AMT_NetworkPortSystemDefensePolicy AMT_PCIDevice AMT_PETCapabilities AMT_PETFilterForTarget AMT_PETFilterSetting AMT_ProvisioningCertificateHash AMT_PublicKeyCertificate AMT_PublicKeyManagementCapabilities AMT_PublicKeyManagementService AMT_PublicPrivateKeyPair AMT_RedirectionService AMT_RemoteAccessCapabilities AMT_RemoteAccessCredentialContext AMT_RemoteAccessPolicyAppliesToMPS AMT_RemoteAccessPolicyRule AMT_RemoteAccessService AMT_SetupAndConfigurationService AMT_SNMPEventSubscriber AMT_StateTransitionCondition AMT_SystemDefensePolicy AMT_SystemDefensePolicyInService AMT_SystemDefenseService AMT_SystemPowerScheme AMT_ThirdPartyDataStorageAdministrationService AMT_ThirdPartyDataStorageService AMT_TimeSynchronizationService AMT_TLSCredentialContext AMT_TLSProtocolEndpoint AMT_TLSProtocolEndpointCollection AMT_TLSSettingData AMT_TrapTargetForService AMT_UserInitiatedConnectionService AMT_WebUIService AMT_WiFiPortConfigurationService CIM_AbstractIndicationSubscription CIM_Account CIM_AccountManagementCapabilities CIM_AccountManagementService CIM_AccountOnSystem CIM_AdminDomain CIM_AlertIndication CIM_AssignedIdentity CIM_AssociatedPowerManagementService CIM_AuthenticationService CIM_AuthorizationService CIM_BIOSElement CIM_BIOSFeature CIM_BIOSFeatureBIOSElements CIM_BootConfigSetting CIM_BootService CIM_BootSettingData CIM_BootSourceSetting CIM_Capabilities CIM_Card CIM_Chassis CIM_Chip CIM_Collection CIM_Component CIM_ComputerSystem CIM_ComputerSystemPackage CIM_ConcreteComponent CIM_ConcreteDependency CIM_Controller CIM_CoolingDevice CIM_Credential CIM_CredentialContext CIM_CredentialManagementService CIM_Dependency CIM_DeviceSAPImplementation CIM_ElementCapabilities CIM_ElementConformsToProfile CIM_ElementLocation CIM_ElementSettingData CIM_ElementSoftwareIdentity CIM_ElementStatisticalData CIM_EnabledLogicalElement CIM_EnabledLogicalElementCapabilities CIM_EthernetPort CIM_Fan CIM_FilterCollection CIM_FilterCollectionSubscription CIM_HostedAccessPoint CIM_HostedDependency CIM_HostedService CIM_Identity CIM_IEEE8021xCapabilities CIM_IEEE8021xSettings CIM_Indication CIM_IndicationService CIM_InstalledSoftwareIdentity CIM_KVMRedirectionSAP CIM_LANEndpoint CIM_ListenerDestination CIM_ListenerDestinationWSManagement CIM_Location CIM_Log CIM_LogEntry CIM_LogicalDevice CIM_LogicalElement CIM_LogicalPort CIM_LogicalPortCapabilities CIM_LogManagesRecord CIM_ManagedCredential CIM_ManagedElement CIM_ManagedSystemElement CIM_MediaAccessDevice CIM_MemberOfCollection CIM_Memory CIM_MessageLog CIM_NetworkPort CIM_NetworkPortCapabilities CIM_NetworkPortConfigurationService CIM_OrderedComponent CIM_OwningCollectionElement CIM_OwningJobElement CIM_PCIController CIM_PhysicalComponent CIM_PhysicalElement CIM_PhysicalElementLocation CIM_PhysicalFrame CIM_PhysicalMemory CIM_PhysicalPackage CIM_Policy CIM_PolicyAction CIM_PolicyCondition CIM_PolicyInSystem CIM_PolicyRule CIM_PolicyRuleInSystem CIM_PolicySet CIM_PolicySetAppliesToElement CIM_PolicySetInSystem CIM_PowerManagementCapabilities CIM_PowerManagementService CIM_PowerSupply CIM_Privilege CIM_PrivilegeManagementCapabilities CIM_PrivilegeManagementService CIM_ProcessIndication CIM_Processor CIM_ProtocolEndpoint CIM_ProvidesServiceToElement CIM_Realizes CIM_RecordForLog CIM_RecordLog CIM_RedirectionService CIM_ReferencedProfile CIM_RegisteredProfile CIM_RemoteAccessAvailableToElement CIM_RemoteIdentity CIM_RemotePort CIM_RemoteServiceAccessPoint CIM_Role CIM_RoleBasedAuthorizationService CIM_RoleBasedManagementCapabilities CIM_RoleLimitedToTarget CIM_SAPAvailableForElement CIM_SecurityService CIM_Sensor CIM_Service CIM_ServiceAccessBySAP CIM_ServiceAccessPoint CIM_ServiceAffectsElement CIM_ServiceAvailableToElement CIM_ServiceSAPDependency CIM_ServiceServiceDependency CIM_SettingData CIM_SharedCredential CIM_SoftwareElement CIM_SoftwareFeature CIM_SoftwareFeatureSoftwareElements CIM_SoftwareIdentity CIM_StatisticalData CIM_StorageExtent CIM_System CIM_SystemBIOS CIM_SystemComponent CIM_SystemDevice CIM_SystemPackaging CIM_UseOfLog CIM_Watchdog CIM_WiFiEndpoint CIM_WiFiEndpointCapabilities CIM_WiFiEndpointSettings CIM_WiFiPort CIM_WiFiPortCapabilities IPS_AdminProvisioningRecord IPS_ClientProvisioningRecord IPS_HostBasedSetupService IPS_HostIPSettings IPS_HTTPProxyService IPS_HTTPProxyAccessPoint IPS_IderSessionUsingPort IPS_IPv6PortSettings IPS_KVMRedirectionSettingData IPS_KvmSessionUsingPort IPS_ManualProvisioningRecord IPS_OptInService IPS_ProvisioningAuditRecord IPS_ProvisioningRecordLog IPS_RasSessionUsingPort IPS_ScreenConfigurationService IPS_ScreenSettingData IPS_SecIOService IPS_SessionUsingPort IPS_SolSessionUsingPort IPS_TLSProvisioningRecord IPS_WatchDogAction".split(" "),disconnecturl=
846 -null,terminal,currentView=0,LoadingHtml="<div style=text-align:center;padding-top:20px>Loading...<div>",amtversion=0,amtversionmin=0,amtFirstPull=0,amtwirelessif=-1,desktop,desktopsettings={encoding:1,showfocus:!1,showmouse:!0,showcad:!0,limitFrameRate:!1,noMouseRotate:!1},currentMeshNode=null,webcompilerfeatures="AgentPresence Alarms AuditLog Certificates ComputerSelectorToolbar Desktop DesktopInband DesktopInbandFiles Desktop-Multi DesktopRotation Desktop-Settings EventLog EventSubscriptions FileSaver HardwareInfo IDER IDERDebug IDERStats Look-MeshCentral Mode-MeshCentral2 NetworkSettings PowerControl PowerControl-Advanced RemoteAccess Scripting Scripting-Editor Storage SystemDefense Terminal Terminal-Enumation-All Terminal-FxEnumation-All TerminalSize VersionWarning Wireless WsmanBrowser".split(" "),
895 +null,terminal,currentView=0,LoadingHtml="<div style=text-align:center;padding-top:20px>Loading...<div>",amtversion=0,amtversionmin=0,amtFirstPull=0,amtwirelessif=-1,desktop,desktopsettings={encoding:1,showfocus:!1,showmouse:!0,showcad:!0,limitFrameRate:!1,noMouseRotate:!1},currentMeshNode=null,webcompilerfeatures="AgentPresence Alarms AuditLog Certificates ComputerSelectorToolbar Desktop DesktopInband DesktopInbandFiles Desktop-Multi DesktopRotation Desktop-Settings EventLog EventSubscriptions FileSaver HardwareInfo IDER IDERDebug IDERStats Inflate Look-MeshCentral Mode-MeshCentral2 NetworkSettings PowerControl PowerControl-Advanced RemoteAccess Scripting Scripting-Editor Storage SystemDefense Terminal Terminal-Enumation-All Terminal-FxEnumation-All TerminalSize VersionWarning Wireless WsmanBrowser".split(" "),
896 StatusStrs=["Disconnected","Connecting...","Setup...","Connected"],scriptstate,t,t2,rsepass=null;
897 function startup(){var b=document.getElementsByTagName("input");for(t=0;t<b.length;t++)b[t].id&&(window[b[t].id]=b[t]);urlvars=getUrlVars();for(var c in AllWsman)b=document.createElement("option"),b.text=AllWsman[c],b.id="WSB-"+AllWsman[c],Q(24).add(b);desktop=CreateAmtRedirect(CreateAmtRemoteDesktop("Desk",Q(8)));desktop.onStateChanged=onDesktopStateChange;QE("c10",!0);(t=localStorage.getItem("desktopsettings"))&&(desktopsettings=JSON.parse(t));applyDesktopSettings();
898 terminal=CreateAmtRedirect(CreateAmtRemoteTerminal("Term"));terminal.onStateChanged=onTerminalStateChange;Q(35).value=terminalEmulations[terminal.m.terminalEmulation];Q(32).value=["CR+LF","LF"][terminal.m.fxLineBreak];QE("c4",!0);Q("p13").addEventListener("dragover",haltEvent,!1);Q("p13").addEventListener("dragleave",haltEvent,!1);Q("p13").addEventListener("drop",terminal_FileSelectHandler,!1);document.addEventListener("dragover",haltEvent,!1);document.addEventListener("dragleave",
@@ -855,7 +904,7 @@ function setUrlVar(b,c){urlvars||(urlvars={});urlvars[b]=c}function cleanup(){c3
904 function handleKeyUp(b){if(!xxdialogMode){if(14==currentView&&3==desktop.State){if(Q(49).checked)return;if(null!=webRtcDesktop&&null!=webRtcDesktop.softdesktop)webRtcDesktop.softdesktop.m.handleKeyUp(b),desktop.m.sendKeepAlive();else return desktop.m.handleKeyUp(b)}if(13==currentView&&3==terminal.State)return terminal.m.TermHandleKeyUp(b)}}
905 function handleKeyDown(b){if(!xxdialogMode){if(14==currentView&&3==desktop.State){if(Q(49).checked)return;if(null!=webRtcDesktop&&null!=webRtcDesktop.softdesktop)webRtcDesktop.softdesktop.m.handleKeyDown(b),desktop.m.sendKeepAlive();else return desktop.m.handleKeyDown(b)}if(13==currentView&&3==terminal.State)return terminal.m.TermHandleKeyDown(b)}}
906 function handleKeyPress(b){if(!xxdialogMode){if(14==currentView&&3==desktop.State){if(Q(49).checked)return;if(null!=webRtcDesktop&&null!=webRtcDesktop.softdesktop)webRtcDesktop.softdesktop.m.handleKeys(b),desktop.m.sendKeepAlive();else return desktop.m.handleKeys(b)}if(13==currentView&&3==terminal.State)return terminal.m.TermHandleKeys(b)}}var connectFunc=null,connectFuncTag=null;
858 -function connect(b,c,a,d,e,n,p){go(0);fullscreenonly=!1;connectFunc=n;connectFuncTag=p;1==urlvars.kvm&&go(14);if(1==urlvars.kvmfull||1==urlvars.kvmonly)go(14),deskToggleFull(1==urlvars.kvmonly);1==urlvars.sol&&go(13);wsstack=WsmanStackCreateService(b,c,a,d,e);amtstack=AmtStackCreateService(wsstack);amtstack.onProcessChanged=onProcessChanged;for(b=2;25>b;b++)QV("go"+b,!1);QV("go8",!0);QV("go13",!1);QV("go12",!0);QV("go20",!0);QH(30,"");QH(41,"");amtversion=amtversionmin=amtFirstPull=
907 +function connect(b,c,a,d,e,q,k){go(0);fullscreenonly=!1;connectFunc=q;connectFuncTag=k;1==urlvars.kvm&&go(14);if(1==urlvars.kvmfull||1==urlvars.kvmonly)go(14),deskToggleFull(1==urlvars.kvmonly);1==urlvars.sol&&go(13);wsstack=WsmanStackCreateService(b,c,a,d,e);amtstack=AmtStackCreateService(wsstack);amtstack.onProcessChanged=onProcessChanged;for(b=2;25>b;b++)QV("go"+b,!1);QV("go8",!0);QV("go13",!1);QV("go12",!0);QV("go20",!0);QH(30,"");QH(41,"");amtversion=amtversionmin=amtFirstPull=
908 0;amtsysstate=amtdeltatime=amtlogicalelements=HardwareInventory=void 0;amtPowerBootCapabilities=null;xxAccountFetch=999;QH(17,LoadingHtml);QH(21,LoadingHtml);amtwirelessif=-1;xxWireless=void 0;QH(22,"");QH(18,LoadingHtml);xxAccountAdminName=null;xxAccountRealmInfo={};QH(23,LoadingHtml);eventmessages=null;QH(19,"");QH(20,LoadingHtml);auditLog=null;QH(50,"");
909 QH(51,LoadingHtml);xxCertificates=null;QH(52,LoadingHtml);QH(26,"");iderStop();xxPolicies=xxMPSUserPass=xxRemoteAccessCredentiaLinks=xxUserInitiatedCira=xxCiraServers=xxEnvironementDetection=xxRemoteAccess=null;QH(53,LoadingHtml);QH(55,LoadingHtml);xxSystemDefense=null;xxSystemDefenceLinkedPolicy={};xxUpdatingDefenseStats=!1;xxFilterStatistics=[{},{}];xxFilterStatisticsTimer=null;xxFilterStatisticsTimerActive=
910 !1;QH(54,LoadingHtml);QE(45,!1);QE("DeskWD",!1);QE("deskkeys",!1);urlvars.kvmviewonly&&(QE(49,!1),Q(49).checked=!0);desktopScreenInfo=null;amtstack.BatchEnum("",["CIM_SoftwareIdentity","*AMT_SetupAndConfigurationService"],processSystemVersion);QV(13,!1);fupdatescript()}
@@ -870,22 +919,22 @@ function PullSystemStatus(b){refreshButtons(!1);amtstack.AMT_TimeSynchronization
919 b&&PullWireless()}function processSystemTime(b,c,a,d){errcheck(d,b)||200!=d||(b=new Date,c=new Date,b.setTime(1E3*a.Body.Ta0+6E4*b.getTimezoneOffset()),amtdeltatime=b-c,updateSystemStatus())}var amtdeltatime,amtsysstate,amtlogicalelements,amtfeatures={};
920 function processSystemStatus(b,c,a,d){if(void 0==a.IPS_ScreenConfigurationService||400==a.IPS_ScreenConfigurationService.status)a.IPS_ScreenConfigurationService=null;if(void 0==a.IPS_KVMRedirectionSettingData||400==a.IPS_KVMRedirectionSettingData.status)a.IPS_KVMRedirectionSettingData=null;if(void 0==a.CIM_KVMRedirectionSAP||400==a.CIM_KVMRedirectionSAP.status)a.CIM_KVMRedirectionSAP=null;if(void 0==a.IPS_OptInService||400==a.IPS_OptInService.status)a.IPS_OptInService=null;void 0!=a.AMT_RedirectionService&&
921 200==a.AMT_RedirectionService.status&&QV("go13",!0);d=0;for(var e in a)null!=a[e]&&a[e].status>d&&(d=a[e].status);400!=d&&errcheck(d,b)||(amtsysstate=a,updateSystemStatus())}var DMTFPowerStates=";;Power on;Light sleep;Deep sleep;Power cycle (Soft off);Off - Hard;Hibernate (Off soft);Soft off;Power cycle (Off-hard);Master bus reset;Diagnostic interrupt (NMI);Not applicable;Off - Soft graceful;Off - Hard graceful;Master bus reset graceful;Power cycle (Off - Soft graceful);Power cycle (Off - Hard graceful);Diagnostic interrupt (INIT)".split(";");
873 -function updateSystemStatus(){if(amtsysstate&&!(99<currentView)){var b=0,c,a,d=TableStart(),e="",n=amtsysstate.AMT_GeneralSettings.response;t="Unknown";null!=amtsysstate.CIM_ServiceAvailableToElement&&(t=DMTFPowerStates[amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState]);QH(30,t);0!=desktop.State&&0<Q(41).innerHTML.length&&Q(41).innerHTML!=t&&(desktop.Stop(),setTimeout(connectDesktop,50));QH(41,t);n.PowerSource&&(t+=[", Plugged-in",", On Battery"][n.PowerSource]);
874 -d+=TableEntry("Power",addLink(t,"showPowerActionDlg()"));c=n.HostName;a=n.DomainName;null!=a&&0<a.length&&(c+="."+a);c=0==c.length?"<i>None</i>":EscapeHtml(c);d+=TableEntry("Name & Domain",addLinkConditional(c,"showEditNameDlg()",xxAccountAdminName));HardwareInventory&&(d+=TableEntry("System ID",guidToStr(HardwareInventory.CIM_ComputerSystemPackage.response.PlatformGUID.toLowerCase())));if(amtlogicalelements){var p="",r=getItem(amtlogicalelements,"CreationClassName","AMT_SetupAndConfigurationService");
875 -2==r.ProvisioningState&&5<amtversion&&(p=" activated in Admin Control Mode (ACM)",4==r.ProvisioningMode&&(p=" activated in Client Control Mode (CCM)",b=9));d+=TableEntry("Intel&reg; ME","v"+getItem(amtlogicalelements,"InstanceID","AMT").VersionString+p)}QV(29,2!=amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState);QV(40,2!=amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState);if(200==amtsysstate.AMT_RedirectionService.status){var m=amtfeatures[0]=
876 -1==amtsysstate.AMT_RedirectionService.response.ListenerEnabled,g=amtfeatures[1]=0!=(amtsysstate.AMT_RedirectionService.response.EnabledState&2),p=amtfeatures[2]=0!=(amtsysstate.AMT_RedirectionService.response.EnabledState&1),w=amtfeatures[3]=void 0;5<amtversion&&null!=amtsysstate.CIM_KVMRedirectionSAP&&(QV("go14",!0),w=amtfeatures[3]=6==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState&&2==amtsysstate.CIM_KVMRedirectionSAP.response.RequestedState||2==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState||
877 -6==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState);m&&(e+=", Redirection Port");g&&(e+=", Serial-over-LAN");p&&(e+=", IDE-Redirect");w&&(e+=", KVM");""==e&&(e=" None");d+=TableEntry("Active Features",addLinkConditional(e.substring(2),"showFeaturesDlg()",xxAccountAdminName))}null!=amtsysstate.IPS_KVMRedirectionSettingData&&amtsysstate.IPS_KVMRedirectionSettingData.response&&(p=amtsysstate.IPS_KVMRedirectionSettingData.response,e="Primary display",7<amtversion&&void 0!==p.DefaultScreen&&255>
878 -p.DefaultScreen&&(e=["Primary display","Secondary display","3rd display"][p.DefaultScreen]),e='<span title="The default remote display is the '+e.toLowerCase()+'">'+e+"</span>",1==p.Is5900PortEnabled&&(e+=", Port 5900 enabled"),1==p.OptInPolicy&&(e+=", "+p.OptInPolicyTimeout+" second"+(0<p.OptInPolicyTimeout?"s":"")+" opt-in"),e+=", "+p.SessionTimeout+" minute"+(0<p.SessionTimeout?"s":"")+" session timeout",9<amtversion&&null!=amtsysstate.IPS_ScreenConfigurationService?((p=0!=(amtsysstate.IPS_ScreenConfigurationService.response.EnabledState&
879 -1))&&(e+=", Blanking Allowed"),QV(46,p),Q(47).checked=!1):QV(46,!1),d+=TableEntry("Remote Desktop",addLinkConditional(e,"showDesktopSettingsDlg()",xxAccountAdminName)));QV(27,!m||!g);QV(28,xxAccountAdminName);QV(38,!m||!w);QV(39,xxAccountAdminName);5<amtversion&&null!=amtsysstate.IPS_OptInService&&void 0!=amtsysstate.IPS_OptInService.response&&(e="Unknown state",m=amtsysstate.IPS_OptInService.response.OptInRequired,
880 -0==m&&(e="Not Required"),1==m&&(e="Required for KVM only"),4294967295==m&&(e="Always Required"),1==amtsysstate.IPS_OptInService.response.CanModifyOptInPolicy&&(e=addLinkConditional(e,"showConsentDlg()",xxAccountAdminName)),d+=TableEntry("User Consent",e));if(null!=AmtSystemPowerSchemes)for(e=amtsysstate.CIM_ElementSettingData.responses,m=0;m<e.length;m++)if(e[m].SettingData&&1==e[m].IsCurrent&&"http://intel.com/wbem/wscim/1/amt-schema/1/AMT_SystemPowerScheme"==e[m].SettingData.ReferenceParameters.ResourceURI)for(g=
881 -e[m].SettingData.ReferenceParameters.SelectorSet.Selector[1].Value,w=0;w<AmtSystemPowerSchemes.length;w++)AmtSystemPowerSchemes[w].SchemeGUID==g&&(d+=TableEntry("Power Policy",addLinkConditional(AmtSystemPowerSchemes[w].Description.split(":")[1],'showPowerPolicyDlg("'+g+'")',xxAccountAdminName)));amtdeltatime&&(d+=TableEntry("Date & Time",(new Date((new Date).getTime()+amtdeltatime)).toLocaleString()));e=AddRefreshButton("PullSystemStatus()")+" ";e+=AddButton("Power Actions...","showPowerActionDlg()")+
882 -" ";e+=AddButton("Save State...","saveEntireAmtState()")+" ";e+=AddButton("Run Script...","script_runScriptDlg()")+" ";d+=TableEnd(e);QH(17,d);d="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>"+TableEnd("<div>&nbsp;"+AddRefreshButton("PullSystemStatus(1)")+" Changing network settings may cause this page to becaume unavailable.");d=d+"<br><h2>General Settings</h2>"+TableStart();e="";"<i>None</i>"!=c&&(1==n.SharedFQDN&&(e=", shared with OS"),0==n.SharedFQDN&&
883 -(e=", different from OS"));d+=TableEntry("Name & Domain",addLinkConditional(c+e,"showEditNameDlg(1)",xxAccountAdminName));c="Disabled";1==n.DDNSUpdateEnabled?c="Enabled each "+n.DDNSPeriodicUpdateInterval+" minutes, TTL is "+n.DDNSTTL+" minutes":1==n.DDNSUpdateByDHCPServerEnabled&&(c="Update by DHCP server");d+=TableEntry("Dynamic DNS",addLinkConditional(c,"showEditDnsDlg()",xxAccountAdminName));d+=TableEnd();for(a in amtsysstate.AMT_EthernetPortSettings.responses){c=amtsysstate.AMT_EthernetPortSettings.responses[a];
922 +function updateSystemStatus(){if(amtsysstate&&!(99<currentView)){var b=0,c,a,d=TableStart(),e="",q=amtsysstate.AMT_GeneralSettings.response;t="Unknown";null!=amtsysstate.CIM_ServiceAvailableToElement&&(t=DMTFPowerStates[amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState]);QH(30,t);0!=desktop.State&&0<Q(41).innerHTML.length&&Q(41).innerHTML!=t&&(desktop.Stop(),setTimeout(connectDesktop,50));QH(41,t);q.PowerSource&&(t+=[", Plugged-in",", On Battery"][q.PowerSource]);
923 +d+=TableEntry("Power",addLink(t,"showPowerActionDlg()"));c=q.HostName;a=q.DomainName;null!=a&&0<a.length&&(c+="."+a);c=0==c.length?"<i>None</i>":EscapeHtml(c);d+=TableEntry("Name & Domain",addLinkConditional(c,"showEditNameDlg()",xxAccountAdminName));HardwareInventory&&(d+=TableEntry("System ID",guidToStr(HardwareInventory.CIM_ComputerSystemPackage.response.PlatformGUID.toLowerCase())));if(amtlogicalelements){var k="",v=getItem(amtlogicalelements,"CreationClassName","AMT_SetupAndConfigurationService");
924 +2==v.ProvisioningState&&5<amtversion&&(k=" activated in Admin Control Mode (ACM)",4==v.ProvisioningMode&&(k=" activated in Client Control Mode (CCM)",b=9));d+=TableEntry("Intel&reg; ME","v"+getItem(amtlogicalelements,"InstanceID","AMT").VersionString+k)}QV(29,2!=amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState);QV(40,2!=amtsysstate.CIM_ServiceAvailableToElement.responses[0].PowerState);if(200==amtsysstate.AMT_RedirectionService.status){var n=amtfeatures[0]=
925 +1==amtsysstate.AMT_RedirectionService.response.ListenerEnabled,p=amtfeatures[1]=0!=(amtsysstate.AMT_RedirectionService.response.EnabledState&2),k=amtfeatures[2]=0!=(amtsysstate.AMT_RedirectionService.response.EnabledState&1),h=amtfeatures[3]=void 0;5<amtversion&&null!=amtsysstate.CIM_KVMRedirectionSAP&&(QV("go14",!0),h=amtfeatures[3]=6==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState&&2==amtsysstate.CIM_KVMRedirectionSAP.response.RequestedState||2==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState||
926 +6==amtsysstate.CIM_KVMRedirectionSAP.response.EnabledState);n&&(e+=", Redirection Port");p&&(e+=", Serial-over-LAN");k&&(e+=", IDE-Redirect");h&&(e+=", KVM");""==e&&(e=" None");d+=TableEntry("Active Features",addLinkConditional(e.substring(2),"showFeaturesDlg()",xxAccountAdminName))}null!=amtsysstate.IPS_KVMRedirectionSettingData&&amtsysstate.IPS_KVMRedirectionSettingData.response&&(k=amtsysstate.IPS_KVMRedirectionSettingData.response,e="Primary display",7<amtversion&&void 0!==k.DefaultScreen&&255>
927 +k.DefaultScreen&&(e=["Primary display","Secondary display","3rd display"][k.DefaultScreen]),e='<span title="The default remote display is the '+e.toLowerCase()+'">'+e+"</span>",1==k.Is5900PortEnabled&&(e+=", Port 5900 enabled"),1==k.OptInPolicy&&(e+=", "+k.OptInPolicyTimeout+" second"+(0<k.OptInPolicyTimeout?"s":"")+" opt-in"),e+=", "+k.SessionTimeout+" minute"+(0<k.SessionTimeout?"s":"")+" session timeout",9<amtversion&&null!=amtsysstate.IPS_ScreenConfigurationService?((k=0!=(amtsysstate.IPS_ScreenConfigurationService.response.EnabledState&
928 +1))&&(e+=", Blanking Allowed"),QV(46,k),Q(47).checked=!1):QV(46,!1),d+=TableEntry("Remote Desktop",addLinkConditional(e,"showDesktopSettingsDlg()",xxAccountAdminName)));QV(27,!n||!p);QV(28,xxAccountAdminName);QV(38,!n||!h);QV(39,xxAccountAdminName);5<amtversion&&null!=amtsysstate.IPS_OptInService&&void 0!=amtsysstate.IPS_OptInService.response&&(e="Unknown state",n=amtsysstate.IPS_OptInService.response.OptInRequired,
929 +0==n&&(e="Not Required"),1==n&&(e="Required for KVM only"),4294967295==n&&(e="Always Required"),1==amtsysstate.IPS_OptInService.response.CanModifyOptInPolicy&&(e=addLinkConditional(e,"showConsentDlg()",xxAccountAdminName)),d+=TableEntry("User Consent",e));if(null!=AmtSystemPowerSchemes)for(e=amtsysstate.CIM_ElementSettingData.responses,n=0;n<e.length;n++)if(e[n].SettingData&&1==e[n].IsCurrent&&"http://intel.com/wbem/wscim/1/amt-schema/1/AMT_SystemPowerScheme"==e[n].SettingData.ReferenceParameters.ResourceURI)for(p=
930 +e[n].SettingData.ReferenceParameters.SelectorSet.Selector[1].Value,h=0;h<AmtSystemPowerSchemes.length;h++)AmtSystemPowerSchemes[h].SchemeGUID==p&&(d+=TableEntry("Power Policy",addLinkConditional(AmtSystemPowerSchemes[h].Description.split(":")[1],'showPowerPolicyDlg("'+p+'")',xxAccountAdminName)));amtdeltatime&&(d+=TableEntry("Date & Time",(new Date((new Date).getTime()+amtdeltatime)).toLocaleString()));e=AddRefreshButton("PullSystemStatus()")+" ";e+=AddButton("Power Actions...","showPowerActionDlg()")+
931 +" ";e+=AddButton("Save State...","saveEntireAmtState()")+" ";e+=AddButton("Run Script...","script_runScriptDlg()")+" ";d+=TableEnd(e);QH(17,d);d="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>"+TableEnd("<div>&nbsp;"+AddRefreshButton("PullSystemStatus(1)")+" Changing network settings may cause this page to becaume unavailable.");d=d+"<br><h2>General Settings</h2>"+TableStart();e="";"<i>None</i>"!=c&&(1==q.SharedFQDN&&(e=", shared with OS"),0==q.SharedFQDN&&
932 +(e=", different from OS"));d+=TableEntry("Name & Domain",addLinkConditional(c+e,"showEditNameDlg(1)",xxAccountAdminName));c="Disabled";1==q.DDNSUpdateEnabled?c="Enabled each "+q.DDNSPeriodicUpdateInterval+" minutes, TTL is "+q.DDNSTTL+" minutes":1==q.DDNSUpdateByDHCPServerEnabled&&(c="Update by DHCP server");d+=TableEntry("Dynamic DNS",addLinkConditional(c,"showEditDnsDlg()",xxAccountAdminName));d+=TableEnd();for(a in amtsysstate.AMT_EthernetPortSettings.responses){c=amtsysstate.AMT_EthernetPortSettings.responses[a];
933 if(c.WLANLinkProtectionLevel||1==a)amtwirelessif=a;if(0!=a||amtwirelessif==a||"00-00-00-00-00-00"!=c.MACAddress){0==a&&b++;d+="<br><h2>"+(amtwirelessif==a?"Wireless":"Wired")+" Interface</h2>";d+=TableStart();d+=TableEntry("Link state",1==c.LinkIsUp?"Link is up":"Link is down");"00-00-00-00-00-00"!=c.MACAddress&&(d+=TableEntry("MAC address",c.MACAddress));amtwirelessif==a&&xxWireless&&xxWireless.CIM_WiFiPortCapabilities.response&&(d+=TableEntry("State",addLinkConditional(xxWifiState[xxWireless.CIM_WiFiPort.response.EnabledState],
885 -"showWifiStateDlg()",xxAccountAdminName)),s=xxWireless.CIM_WiFiEndpoint.response.LANID,d+=TableEntry("Radio State",xxRadioState[xxWireless.CIM_WiFiEndpoint.response.EnabledState]+", SSID: "+(s?s:"<i>None</i>")));amtwirelessif!=a&&(d+=TableEntry("Respond to ping",addLinkConditional(["Disabled","ICMP response","RMCP response","ICMP & RMCP response"][n.PingResponseEnabled+(n.RmcpPingResponseEnabled<<1)],"showPingActionDlg()",xxAccountAdminName)),d+=TableEntry("IPv4 state",addLinkConditional(1==c.DHCPEnabled?
934 +"showWifiStateDlg()",xxAccountAdminName)),s=xxWireless.CIM_WiFiEndpoint.response.LANID,d+=TableEntry("Radio State",xxRadioState[xxWireless.CIM_WiFiEndpoint.response.EnabledState]+", SSID: "+(s?s:"<i>None</i>")));amtwirelessif!=a&&(d+=TableEntry("Respond to ping",addLinkConditional(["Disabled","ICMP response","RMCP response","ICMP & RMCP response"][q.PingResponseEnabled+(q.RmcpPingResponseEnabled<<1)],"showPingActionDlg()",xxAccountAdminName)),d+=TableEntry("IPv4 state",addLinkConditional(1==c.DHCPEnabled?
935 "Automatic using DHCP server":"Static IP address","showIPSetupDlg()",xxAccountAdminName)));d+=TableEntry("IPv4 address",isIpAddress(c.IPAddress,"None"));isIpAddress(c.DefaultGateway)&&(d+=TableEntry("IPv4 gateway / Mask",c.DefaultGateway+" / "+isIpAddress(c.SubnetMask,"None")));e=c.PrimaryDNS;isIpAddress(e)&&(c.SecondaryDNS&&(e+=" / "+c.SecondaryDNS),d+=TableEntry("IPv4 domain name server",e));if(200==amtsysstate.IPS_IPv6PortSettings.status&&5<amtversion){c=amtsysstate.IPS_IPv6PortSettings.responses[a];
887 -for(var g="Disabled",l,e=amtsysstate.CIM_ElementSettingData.responses,m=0;m<e.length;m++)e[m].SettingData&&e[m].SettingData.ReferenceParameters.SelectorSet.Selector.Value=="Intel(r) IPS IPv6 Settings "+a&&(l=1==e[m].IsCurrent);1==l&&(e=isIpAddress(c.IPv6Address)||isIpAddress(c.DefaultRouter)||isIpAddress(c.PrimaryDNS)||isIpAddress(c.SecondaryDNS),g="Enabled, Automatic "+(e?"& manual":"")+" addresses");d+=TableEntry("IPv6 state",addLinkConditional(g,"showIPv6StateDlg("+a+","+l+")",xxAccountAdminName));
888 -if(1==l){if(c.CurrentAddressInfo&&0<c.CurrentAddressInfo.length){c.CurrentAddressInfo=MakeToArray(c.CurrentAddressInfo);ipv6addr="";for(m=0;m<c.CurrentAddressInfo.length;m++)0<ipv6addr.length&&(ipv6addr+=", "),ipv6addr+=c.CurrentAddressInfo[m].split(",")[0];d+=TableEntry("IPv6 address",addLink(ipv6addr,"showIPv6AddrDlg("+a+',"'+c.CurrentAddressInfo+'")'))}else d+=TableEntry("IPv6 address","None");isIpAddress(c.CurrentDefaultRouter)&&(d+=TableEntry("IPv6 default router",c.CurrentDefaultRouter));isIpAddress(c.CurrentPrimaryDNS)&&
936 +for(var p="Disabled",m,e=amtsysstate.CIM_ElementSettingData.responses,n=0;n<e.length;n++)e[n].SettingData&&e[n].SettingData.ReferenceParameters.SelectorSet.Selector.Value=="Intel(r) IPS IPv6 Settings "+a&&(m=1==e[n].IsCurrent);1==m&&(e=isIpAddress(c.IPv6Address)||isIpAddress(c.DefaultRouter)||isIpAddress(c.PrimaryDNS)||isIpAddress(c.SecondaryDNS),p="Enabled, Automatic "+(e?"& manual":"")+" addresses");d+=TableEntry("IPv6 state",addLinkConditional(p,"showIPv6StateDlg("+a+","+m+")",xxAccountAdminName));
937 +if(1==m){if(c.CurrentAddressInfo&&0<c.CurrentAddressInfo.length){c.CurrentAddressInfo=MakeToArray(c.CurrentAddressInfo);ipv6addr="";for(n=0;n<c.CurrentAddressInfo.length;n++)0<ipv6addr.length&&(ipv6addr+=", "),ipv6addr+=c.CurrentAddressInfo[n].split(",")[0];d+=TableEntry("IPv6 address",addLink(ipv6addr,"showIPv6AddrDlg("+a+',"'+c.CurrentAddressInfo+'")'))}else d+=TableEntry("IPv6 address","None");isIpAddress(c.CurrentDefaultRouter)&&(d+=TableEntry("IPv6 default router",c.CurrentDefaultRouter));isIpAddress(c.CurrentPrimaryDNS)&&
938 (e=c.CurrentPrimaryDNS,isIpAddress(c.CurrentSecondaryDNS)&&(e+=" / "+c.CurrentSecondaryDNS),d+=TableEntry("IPv6 domain name server",e))}}d+=TableEnd()}}1!=urlvars.kvmonly&&0==fullscreenonly&&(-1!=amtwirelessif&&0==(amtFirstPull&2)&&PullWireless(),QH(21,d),1==b&&0==(amtFirstPull&4)&&PullSystemDefense(),0==(amtFirstPull&8)&&(11<amtversion||11==amtversion&&5<amtversionmin)&&PullStorage());0==currentView&&go(1,1)}}
939 function isIpAddress(b,c){return b&&null!=b&&0<b.length&&"::"!=b&&"::0"!=b?b:c}var IntelAmtEntireState,IntelAmtEntireStateCalls;
940 function saveEntireAmtState(){if(!xxdialogMode){var b="",c=new Date;amtsysstate&&(b="-"+amtsysstate.AMT_GeneralSettings.response.HostName);b+="-"+c.getFullYear()+"-"+("0"+(c.getMonth()+1)).slice(-2)+"-"+("0"+c.getDate()).slice(-2)+"-"+("0"+c.getHours()).slice(-2)+"-"+("0"+c.getMinutes()).slice(-2);c29.value="amtstate"+b+".json";setDialogMode(19,"Save Entire Intel&reg; AMT State",3,saveEntireAmtStateOk)}}
@@ -902,8 +951,8 @@ function showDesktopSettingsDlgOk3(b,c,a,d){200!=d?messagebox("Error","Screen Bl
951 var processMessageLog0responses=null;
952 function processMessageLog0(b,c,a,d){200==d&&(d&&QV("go6",!0),a&&(processMessageLog0responses=a),b="",c="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>",null!=processMessageLog0responses&&(b=1==processMessageLog0responses[0].IsFrozen?AddButton("Un-freeze Log","FreezeLog(0)"):AddButton("Freeze Log","FreezeLog(1)")),c+=TableEnd("<div style=float:right><input id=eventFilter placeholder=Filter style=margin:4px onkeyup=eventFilter()>&nbsp;</div><div>&nbsp;"+AddRefreshButton("PullEventLog(1)")+
953 AddButton("Clear Log","ClearLog()")+AddButton("Save...","SaveEventLog()")+b),QH(19,c+"<br>"))}function SaveEventLog(){xxdialogMode||null==eventmessages||SaveJsonFile("IntelAmtEventlog","events","Intel AMT Event Log",eventmessages)}var eventmessages=null;
905 -function processMessageLog1(b,c){eventmessages=c;var a,d=0,e;e="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px><tr><td width=80px><p><td><td><td><tr><td class=r1 style=width:90px><b>&nbsp;&nbsp;Event</b><td class=r1 style=width:110px><b>Time</b><td class=r1 style=width:160px><b>Source</b><td class=r1><b>Description</b>";for(a in c){d++;var n=1,p=c[a];8<=p.EventSeverity&&(n=2);16<=p.EventSeverity&&(n=3);e+="<tr id=xamtevent"+a+" class=r3 onclick=showEventDetails("+
906 -a+")><td class=r1><p><div class=icon"+n+" style=display:block;float:left;margin-left:5px;margin-right:5px></div>"+(parseInt(a)+1)+"<td class=r1 title='"+p.Time.toLocaleString()+"'>"+p.Time.toLocaleDateString("en",{year:"numeric",month:"2-digit",day:"numeric"})+"<br>"+p.Time.toLocaleTimeString("en",{hour:"2-digit",minute:"2-digit",second:"2-digit"})+"<td class=r1>"+p.EntityStr.replace("(r)","&reg;")+"<td class=r1>"+p.Desc}e+=TableEnd(0==d?"&nbsp;":"");QH(20,e+"<br>");processMessageLog0()}
954 +function processMessageLog1(b,c){eventmessages=c;var a,d=0,e;e="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px><tr><td width=80px><p><td><td><td><tr><td class=r1 style=width:90px><b>&nbsp;&nbsp;Event</b><td class=r1 style=width:110px><b>Time</b><td class=r1 style=width:160px><b>Source</b><td class=r1><b>Description</b>";for(a in c){d++;var q=1,k=c[a];8<=k.EventSeverity&&(q=2);16<=k.EventSeverity&&(q=3);e+="<tr id=xamtevent"+a+" class=r3 onclick=showEventDetails("+
955 +a+")><td class=r1><p><div class=icon"+q+" style=display:block;float:left;margin-left:5px;margin-right:5px></div>"+(parseInt(a)+1)+"<td class=r1 title='"+k.Time.toLocaleString()+"'>"+k.Time.toLocaleDateString("en",{year:"numeric",month:"2-digit",day:"numeric"})+"<br>"+k.Time.toLocaleTimeString("en",{hour:"2-digit",minute:"2-digit",second:"2-digit"})+"<td class=r1>"+k.EntityStr.replace("(r)","&reg;")+"<td class=r1>"+k.Desc}e+=TableEnd(0==d?"&nbsp;":"");QH(20,e+"<br>");processMessageLog0()}
956 function FreezeLog(b){xxdialogMode||amtstack.AMT_MessageLog_FreezeLog(b,function(){amtstack.Enum("AMT_MessageLog",processMessageLog0)})}function ClearLog(b){xxdialogMode||(QH(61,"Clear event log?"),setDialogMode(1,"Event Log",3,ClearLogEx))}function ClearLogEx(){amtstack.AMT_MessageLog_ClearLog(function(b,c,a,d){200!=d?messagebox("Event Log","Unable to clear, Error: "+d):PullEventLog()})}
957 function showEventDetails(b){if(!xxdialogMode){var c=eventmessages[b],a;a="<div style=text-align:left>"+addHtmlValue("Time",c.Time.toLocaleString());a+=addHtmlValue("Source",c.EntityStr.replace("(r)","&reg;"));a+=addHtmlValue("Description",c.Desc);a+=MoreStart();a+=addHtmlValue("Device Address",c.DeviceAddress);a+=addHtmlValue("Entity",c.Entity);a+=addHtmlValue("Entity Instance",c.EntityInstance);var d="",e;for(e in c.EventData)0<d.length&&(d+=","),d+=c.EventData[e];a+=addHtmlValue("Data",d);a+=addHtmlValue("Offset",
958 c.EventOffset);a+=addHtmlValue("Sensor Type",c.EventSensorType);a+=addHtmlValue("Severity",c.EventSeverity);a+=addHtmlValue("Source Type",c.EventSourceType);a+=addHtmlValue("Type",c.EventType);a+=addHtmlValue("Sensor Number",c.SensorNumber);a+=MoreEnd();messagebox("Event #"+(b+1)+" Details",a+"</div>")}}
@@ -924,8 +973,8 @@ function newSubscriptionButtonOk(){var b=0==Q("subuser").value.length?void 0:Q("
973 function PullAuditLog(b){1==b&&xxdialogMode||(amtFirstPull|=32,amtstack.Enum("AMT_AuditLog",processAuditLog0))}var auditLog=null,auditLogEnabledStates="Unknown;Other;Enabled;Disabled;Shutting Down;Not Applicable;Enabled but Offline;In Test;Deferred;Quiesce;Starting".split(";");
974 function processAuditLog0(b,c,a,d){200==d&&(QV("go15",!0),c=a[0].AuditState,b=c&1?"Disabled":"Enabled",c&2&&(b+=", Locked"),c&4&&(b+=", Almost Full"),c&8&&(b+=", Full"),c&16&&(b+=", NoKey"),c="<h1>Audit Log Settings</h1>"+TableStart(),c+=TableEntry("State",b),c+=TableEntry("Storage",a[0].CurrentNumberOfRecords+" record(s), "+a[0].PercentageFree+"% free"),c+=TableEntry("Overwrite policy",2==a[0].OverwritePolicy?"Wraps when full":"Never overwrites"),c+=TableEnd(),QH(50,c),amtstack.GetAuditLog(processAuditLog1))}
975 function processAuditLog1(b,c){auditLog=c;var a,d;d="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>"+(TableEnd("<div style=float:right><input id=auditFilter placeholder=Filter style=margin:4px onkeyup=auditFilter()>&nbsp;</div><div> "+AddRefreshButton("PullAuditLog(1)")+AddButton("Save...","SaveAuditLog()")+AddButton("Clear Log","ClearAuditLog()"))+"<br>");if(0==c.length)d="No audit log events found.";else{var e=0;d+="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px><tr><td width=80px><p><td><td><td><tr><td class=r1 style=width:110px>&nbsp;&nbsp;<b>Time</b><td class=r1 style=width:260px><b>Initiator</b><td class=r1><b>Action</b>";
927 -for(a in c){var n=c[a],p=n.AuditApp,r=n.Initiator;e++;var m="";0<n.NetAddress.length&&(m=n.NetAddress.replace("0000:0000:0000:0000:0000:0000:0000:0001","::1"));n.Event&&(p+=", "+n.Event);null!=n.ExStr&&(p+=", "+n.ExStr);""!=r&&""!=m&&(r+=", ");d+="<tr id=xamtaudit"+a+" class=r3 onclick=showAuditDetails("+a+")><td class=r1 title='"+n.Time.toLocaleString()+"'>&nbsp;&nbsp;"+n.Time.toLocaleDateString("en",{year:"numeric",month:"2-digit",day:"numeric"})+"<br>&nbsp;&nbsp;"+n.Time.toLocaleTimeString("en",
928 -{hour:"2-digit",minute:"2-digit",second:"2-digit"})+"<td class=r1>"+r+m+"<td class=r1>"+p}d+=TableEnd(0==e?"&nbsp;":"")+"<br>"}QH(51,d)}function auditFilter(){var b=Q("auditFilter").value.toLowerCase(),c;for(c in auditLog)QV("xamtaudit"+c,""==b||0<=JSON.stringify(auditLog[c]).toLowerCase().indexOf(b))}function SaveAuditLog(){xxdialogMode||null==auditLog||SaveJsonFile("IntelAmtAuditlog","auditevents","Intel AMT Audit Log",auditLog)}
976 +for(a in c){var q=c[a],k=q.AuditApp,v=q.Initiator;e++;var n="";0<q.NetAddress.length&&(n=q.NetAddress.replace("0000:0000:0000:0000:0000:0000:0000:0001","::1"));q.Event&&(k+=", "+q.Event);null!=q.ExStr&&(k+=", "+q.ExStr);""!=v&&""!=n&&(v+=", ");d+="<tr id=xamtaudit"+a+" class=r3 onclick=showAuditDetails("+a+")><td class=r1 title='"+q.Time.toLocaleString()+"'>&nbsp;&nbsp;"+q.Time.toLocaleDateString("en",{year:"numeric",month:"2-digit",day:"numeric"})+"<br>&nbsp;&nbsp;"+q.Time.toLocaleTimeString("en",
977 +{hour:"2-digit",minute:"2-digit",second:"2-digit"})+"<td class=r1>"+v+n+"<td class=r1>"+k}d+=TableEnd(0==e?"&nbsp;":"")+"<br>"}QH(51,d)}function auditFilter(){var b=Q("auditFilter").value.toLowerCase(),c;for(c in auditLog)QV("xamtaudit"+c,""==b||0<=JSON.stringify(auditLog[c]).toLowerCase().indexOf(b))}function SaveAuditLog(){xxdialogMode||null==auditLog||SaveJsonFile("IntelAmtAuditlog","auditevents","Intel AMT Audit Log",auditLog)}
978 function ClearAuditLog(b){QH(61,"Clear audit log?");setDialogMode(1,"Audit Log",3,ClearAuditLogEx)}function ClearAuditLogEx(){var b=amtstack.AMT_AuditLog_SetAuditLock(1,0,b,function(){amtstack.AMT_AuditLog_ClearLog(function(){amtstack.AMT_AuditLog_SetAuditLock(0,2,b,function(){setTimeout(PullAuditLog,1E3)})})})}function ShowAuditLogSettings(){xxdialogMode||amtstack.AMT_AuditLog_RequestStateChange(2,0,AuditLogSettingsCompleted)}
979 function AuditLogSettingsCompleted(b,c,a,d){200==d?PullAuditLog():messagebox("Audit Log","Error: "+d)}
980 function showAuditDetails(b){if(!xxdialogMode){var c,a=auditLog[b],d;d="<div style=text-align:left>"+addHtmlValue("Time",a.Time.toLocaleString());""!=a.Initiator&&(d+=addHtmlValue("Initiator",a.Initiator));""!=a.NetAddress&&(d+=addHtmlValue("Address",a.NetAddress));d+=addHtmlValue("Application",a.AuditApp);d+=addHtmlValue("Event",a.Event);if(null!=a.ExStr)d+=addHtmlValue("Extended Data",a.ExStr);else if(0<a.Ex.length){var e="";for(c in a.Ex)0<e.length&&(e+=","),e+=a.Ex.charCodeAt(c);""!=e&&(d+=addHtmlValue("Data Values",
@@ -952,8 +1001,8 @@ function issueCertButtonUpdate(){var b=getInputElement("certopen");QE("certopenp
1001 function issueCertButtonOk(){var b=getInputElement("certopen"),c=xxDragDropCertFiles;b&&(c=b.files);c&&1==c.length?(b=new FileReader,b.onload=issueCertButtonOk2,b.readAsBinaryString(c[0])):issueCertButtonOk3(null)}function issueCertButtonOk2(b){0==amtcert_loadP12File(b.target.result,Q("certopenpass").value,issueCertButtonOk3)&&messagebox("Issue Certificate","Unable to decrypt/decode certificate.")}
1002 function issueCertButtonOk3(b,c,a){xxCaPrivateKey=b;xxCaSubjectAttributes=c;amtstack.AMT_PublicKeyManagementService_GenerateKeyPair(0,2048,GenerateKeyPairResponse)}
1003 function GenerateKeyPairResponse(b,c,a,d){200!=d?messagebox("Issue Certificate","Failed to generate key pair. Status: "+d):0!=a.Body.ReturnValue?messagebox("Issue Certificate","Failed to generate key pair, "+a.Body.ReturnValueStr):amtstack.Enum("AMT_PublicPrivateKeyPair",GenerateKeyPairResponse2,a.Body.KeyPair.ReferenceParameters.SelectorSet.Selector.Value)}
955 -function GenerateKeyPairResponse2(b,c,a,d,e){if(200!=d)messagebox("Issue Certificate","Failed to generate key pair. Status: "+d);else{b=null;for(var n in a)a[n].InstanceID==e&&(b=a[n].DERKey);a={CN:getInputElement("certcn").value,O:getInputElement("certo").value,ST:getInputElement("certst").value,C:getInputElement("certc").value};e={CN:"Untrusted Root Certificate"};if(null!=xxCaPrivateKey&&xxCaSubjectAttributes)for(n in e={},xxCaSubjectAttributes)e[xxCaSubjectAttributes[n].shortName]=xxCaSubjectAttributes[n].value;
956 -n={name:"extKeyUsage"};Q("d11_cu4").checked&&(n.serverAuth=!0);Q("d11_cu5").checked&&(n.clientAuth=!0);Q("d11_cu6").checked&&(n.emailProtection=!0);Q("d11_cu7").checked&&(n.codeSigning=!0);Q("d11_cu8").checked&&(n.timeStamping=!0);n=amtcert_signWithCaKey(b,xxCaPrivateKey,a,e,n);null==n?messagebox("Issue Certificate","Unable to sign certificate."):(n=forge.pki.certificateToPem(n).replace(/(\r\n|\n|\r)/gm,""),amtstack.AMT_PublicKeyManagementService_AddCertificate(n.substring(27,n.length-25),GenerateKeyPairResponse4))}}
1004 +function GenerateKeyPairResponse2(b,c,a,d,e){if(200!=d)messagebox("Issue Certificate","Failed to generate key pair. Status: "+d);else{b=null;for(var q in a)a[q].InstanceID==e&&(b=a[q].DERKey);a={CN:getInputElement("certcn").value,O:getInputElement("certo").value,ST:getInputElement("certst").value,C:getInputElement("certc").value};e={CN:"Untrusted Root Certificate"};if(null!=xxCaPrivateKey&&xxCaSubjectAttributes)for(q in e={},xxCaSubjectAttributes)e[xxCaSubjectAttributes[q].shortName]=xxCaSubjectAttributes[q].value;
1005 +q={name:"extKeyUsage"};Q("d11_cu4").checked&&(q.serverAuth=!0);Q("d11_cu5").checked&&(q.clientAuth=!0);Q("d11_cu6").checked&&(q.emailProtection=!0);Q("d11_cu7").checked&&(q.codeSigning=!0);Q("d11_cu8").checked&&(q.timeStamping=!0);q=amtcert_signWithCaKey(b,xxCaPrivateKey,a,e,q);null==q?messagebox("Issue Certificate","Unable to sign certificate."):(q=forge.pki.certificateToPem(q).replace(/(\r\n|\n|\r)/gm,""),amtstack.AMT_PublicKeyManagementService_AddCertificate(q.substring(27,q.length-25),GenerateKeyPairResponse4))}}
1006 function GenerateKeyPairResponse4(b,c,a,d){200!=d?messagebox("Issue Certificate","Failed to generate key pair. Status: "+d):PullCertificates()}function certificateAdded(b,c,a,d){200!=d||0!=a.Body.ReturnValue?messagebox("Add Certificate","Unable to add certificate, error "+(200!=d?d:a.Body.ReturnValueStr)):PullCertificates()}function certificateRemoved(b,c,a,d){200!=d?messagebox("Remove Certificate","Unable to remove certificate, error "+d):PullCertificates()}
1007 function getInputElement(b){var c=document.getElementsByTagName("input");for(t=0;t<c.length;t++)if(c[t].id==b)return c[t]}function getSelectElement(b){var c=document.getElementsByTagName("select");for(t=0;t<c.length;t++)if(c[t].id==b)return c[t]}
1008 function showSetTlsSecurityDlg(b){if(!xxdialogMode){b="<div style=height:26px;margin-top:4px><select onchange=showSetTlsSecurityDlgUpdate() id=tlscert style=float:right;width:260px><option value=-1>No Certificate, TLS Disabled</option>";for(var c in xxCertificates)0!=xxCertificates[c].TrustedRootCertficate||!xxCertificates[c].XPrivateKey||null!=xxTlsCurrentCert&&xxTlsCurrentCert!=c||(b+="<option value="+c+">"+xxCertificates[c].XSubject.CN+"</option>");b+="</select><div style=padding-top:4px>Certificate</div></div><div style=height:26px;margin-top:4px><select id=tlsremote style=float:right;width:260px onchange=showSetTlsSecurityDlgUpdate()><option value=0>Server-auth TLS only</option><option value=1>Server-auth, non-TLS allowed</option>";
@@ -971,7 +1020,7 @@ function PullWatchdogResponse(b,c,a,d){if(200==d&&200==a.AMT_AgentPresenceCapabi
1020 "PolicyConditionName",a),b=getItem(xxWatchdog.AMT_AgentPresenceWatchdogAction.responses,"PolicyActionName",b),a.actions||(a.actions=[]),a.actions.push(b));updateWatchdog();QV("go19",!0)}}var watchdogEnabledStates="Unknown;Other;Enabled;Disabled;Shutting Down;Not Applicable;Enabled but Offline;In Test;Deferred;Quiesce;Starting".split(";"),watchdogMonitoredEntity="Unknown;Other;Operating System;Operating System Boot Process;Operating System Shutdown Process;Firmware Boot Process;BIOS Boot Process;Application;Service Processor".split(";");
1021 function updateWatchdog(){if(null!=xxWatchdog){var b;b=""+TableStart();b+=TableEntry("Maximum Watchdogs",xxWatchdog.AMT_AgentPresenceCapabilities.response.MaxTotalAgents+" watchdogs");b+=TableEntry("Maximum Total Actions",xxWatchdog.AMT_AgentPresenceCapabilities.response.MaxTotalActions+" actions");b+=TableEnd()+"<br>";b+=TableStart2();b+="<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT agent presence watchdogs.<br><br>";if(null==xxWatchdog.AMT_AgentPresenceWatchdog.responses||
1022 0==xxWatchdog.AMT_AgentPresenceWatchdog.responses.length)b+="<div style=padding-left:15px><i>No agent presence watchdog found.</i></div><br>";else for(var c in xxWatchdog.AMT_AgentPresenceWatchdog.responses){var a=xxWatchdog.AMT_AgentPresenceWatchdog.responses[c],d=guidToStr(rstr2hex(atob(a.DeviceID)));a.MonitoredEntityDescription&&""!=a.MonitoredEntityDescription&&(d=EscapeHtml(a.MonitoredEntityDescription));b+="<div class=itemBar onclick=showWatchdogDetails("+c+")><input type=button style=float:right value='Add Action...' onclick=addWatchdogAction(event,"+
974 -c+")>";a.transitions&&(b+="<input type=button style=float:right value='Delete Actions...' onclick=deleteWatchdogActions(event,"+c+")>");b+="<div style=padding-top:3px><b>"+d+"</b>, "+amtstack.WatchdogCurrentStates[a.CurrentState]+"</div>";var d="",e;for(e in a.transitions){var n=a.transitions[e];""!=d&&(d+="<br>");d+=getWatchdogTransitionStr(n.OldState)+" &rarr; "+getWatchdogTransitionStr(n.NewState);n.actions&&1==n.actions[0].EventOnTransition&&(d+=" : Event to log")}""!=d&&(b+="<div style=padding:12px>"+
1023 +c+")>";a.transitions&&(b+="<input type=button style=float:right value='Delete Actions...' onclick=deleteWatchdogActions(event,"+c+")>");b+="<div style=padding-top:3px><b>"+d+"</b>, "+amtstack.WatchdogCurrentStates[a.CurrentState]+"</div>";var d="",e;for(e in a.transitions){var q=a.transitions[e];""!=d&&(d+="<br>");d+=getWatchdogTransitionStr(q.OldState)+" &rarr; "+getWatchdogTransitionStr(q.NewState);q.actions&&1==q.actions[0].EventOnTransition&&(d+=" : Event to log")}""!=d&&(b+="<div style=padding:12px>"+
1024 d+"</div>");b+="</div>"}b=b+"<br>"+TableEnd(AddRefreshButton("PullWatchdog()")+AddButton("Add Watchdog...","AddWatchdog()"));b+="<br>";QH(55,b)}}function getWatchdogTransitionStr(b){if(31==b)return"Any State";var c="",a;for(a in amtstack.WatchdogCurrentStates)0!=(b&a)&&(c+=", "+amtstack.WatchdogCurrentStates[a]);return c.substring(2)}
1025 function showWatchdogDetails(b){b=xxWatchdog.AMT_AgentPresenceWatchdog.responses[b];var c="";b.MonitoredEntityDescription&&""!=b.MonitoredEntityDescription&&(c+=addHtmlValue("Description",EscapeHtml(b.MonitoredEntityDescription)));c+=addHtmlValue("Monitored Entity",watchdogMonitoredEntity[b.MonitoredEntity]);c+=addHtmlValue("Current State",amtstack.WatchdogCurrentStates[b.CurrentState]);c+=addHtmlValue("Enabled State",watchdogEnabledStates[b.EnabledState]);c+=addHtmlValue("Startup Interval",b.StartupInterval+
1026 " second(s)");c+=addHtmlValue("Timeout Interval",b.TimeoutInterval+" second(s)");setDialogMode(11,"Watchdog "+guidToStr(rstr2hex(atob(b.DeviceID))),5,showWatchdogDetailsOk,c,b)}function showWatchdogDetailsOk(b,c){2==b&&amtstack.Delete("AMT_AgentPresenceWatchdog",{DeviceID:c.DeviceID},PullWatchdog)}
@@ -992,11 +1041,11 @@ a}b+=TableStart();c="<i>None</i>";xxSystemDefenceLinkedPolicy[0]&&(c=xxSystemDef
1041 "<div style=padding-left:15px><i>No system defense policies found.</i></div><br>";else for(c in xxSystemDefense.AMT_SystemDefensePolicy.responses)a=xxSystemDefense.AMT_SystemDefensePolicy.responses[c],d="",a.FilterCreationHandles&&(a.FilterCreationHandles=MakeToArray(a.FilterCreationHandles),d=a.FilterCreationHandles.length,d=", "+d+" filter"+(1<d?"s":"")),b+="<div class=itemBar onclick=showPolicyDetails("+c+")><div style=padding-top:3px><b>"+EscapeHtml(a.PolicyName)+"</b>"+d+"</div></div>";b+="<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT system defense filters.<br><br>";
1042 if(0==xxSystemDefense.AMT_Hdr8021Filter.responses.length&&0==xxSystemDefense.AMT_IPHeadersFilter.responses.length)b+="<div style=padding-left:15px><i>No system defense filters found.</i></div><br>";else{for(c in xxSystemDefense.AMT_Hdr8021Filter.responses)a=xxSystemDefense.AMT_Hdr8021Filter.responses[c],(d=xxSystemDefenceFilterEthernetTypes[a.HdrProtocolID8021])||(d="All Ethernet Protocol "+a.HdrProtocolID8021),d+=", "+xxSystemDefenceFilterDesc[a.FilterProfile],2==a.FilterProfile&&(d+=" at "+a.FilterProfileData+
1043 " packet / sec"),1==a.ActionEventOnMatch&&(d+=", Event on match"),b+="<div class=itemBar onclick=showFilterDetails(0,"+c+")><div style=padding-top:3px><b>"+(0==a.FilterDirection?"&#8592; ":"&#8594; ")+EscapeHtml(a.Name)+"</b>, "+d+"</div></div>";for(c in xxSystemDefense.AMT_IPHeadersFilter.responses){a=xxSystemDefense.AMT_IPHeadersFilter.responses[c];(d=xxSystemDefenceFilterIPTypes[a.HdrIPVersion])||(d="All Ethernet Protocol "+a.HdrIPVersion);d+=", "+xxSystemDefenceFilterDesc[a.FilterProfile];2==
995 -a.FilterProfile&&(d+=" at "+a.FilterProfileData+" packet / sec");1==a.ActionEventOnMatch&&(d+=", Event on match");var n=0;for(e in xxSystemDefenceFilters)a[e]&&n++;0<n&&(d+=", "+n+" filter"+(1<n?"s":""));b+="<div class=itemBar onclick=showFilterDetails(1,"+c+")><div style=padding-top:3px><b>"+(0==a.FilterDirection?"&#8592; ":"&#8594; ")+EscapeHtml(a.Name)+"</b>, "+d+"</div></div>"}}b+="<br><td class=r1>"+TableEnd(AddRefreshButton("PullSystemDefense()")+AddButton("Add Filter...","AddDefenseFilter()")+
1044 +a.FilterProfile&&(d+=" at "+a.FilterProfileData+" packet / sec");1==a.ActionEventOnMatch&&(d+=", Event on match");var q=0;for(e in xxSystemDefenceFilters)a[e]&&q++;0<q&&(d+=", "+q+" filter"+(1<q?"s":""));b+="<div class=itemBar onclick=showFilterDetails(1,"+c+")><div style=padding-top:3px><b>"+(0==a.FilterDirection?"&#8592; ":"&#8594; ")+EscapeHtml(a.Name)+"</b>, "+d+"</div></div>"}}b+="<br><td class=r1>"+TableEnd(AddRefreshButton("PullSystemDefense()")+AddButton("Add Filter...","AddDefenseFilter()")+
1045 AddButton("Add Policy...","AddDefensePolicy()"));QH(54,b);null==xxFilterStatisticsTimer&&(UpdateDefenseStats(),xxFilterStatisticsTimerActive=!1,urlvars.norefresh||(xxFilterStatisticsTimer=setInterval(UpdateDefenseStats,5E3)))}}function StopDefenseStatsTimer(){null!=xxFilterStatisticsTimer&&(clearInterval(xxFilterStatisticsTimer),xxFilterStatisticsTimer=null);xxFilterStatisticsTimerActive=!1}
1046 function UpdateDefenseStats(b){if(b||1!=xxFilterStatisticsTimerActive)xxFilterStatisticsTimerActive=!0,b=b?b:0,xxSystemDefenceLinkedPolicy[b]?amtstack.AMT_SystemDefensePolicy_UpdateStatistics('<a:Address></a:Address><a:ReferenceParameters><w:ResourceURI>http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_EthernetPort</w:ResourceURI><w:SelectorSet><w:Selector Name="DeviceID">Intel(r) AMT Ethernet Port '+b+"</w:Selector></w:SelectorSet></a:ReferenceParameters>",!1,UpdateDefenseStats2,b,0,{InstanceID:xxSystemDefenceLinkedPolicy[b].InstanceID}):
1047 (xxFilterStatistics[b]={},updateSystemDefense(),StopDefenseStatsTimer())}function UpdateDefenseStats2(b,c,a,d,e){200==d?amtstack.Enum("AMT_ActiveFilterStatistics",UpdateDefenseStats3,e):StopDefenseStatsTimer()}
999 -function UpdateDefenseStats3(b,c,a,d,e){b=0;if(200==d){xxFilterStatistics[e]={};for(var n in a)d=a[n].ReadCount,c=getItem(a[n].Dependent.ReferenceParameters.SelectorSet.Selector[1].Value.EndpointReference.ReferenceParameters.SelectorSet.Selector,"@Name","Name").Value,xxFilterStatistics[e][c]=d,b++;updateSystemDefense()}xxFilterStatisticsTimerActive=!1;0==b&&StopDefenseStatsTimer()}
1048 +function UpdateDefenseStats3(b,c,a,d,e){b=0;if(200==d){xxFilterStatistics[e]={};for(var q in a)d=a[q].ReadCount,c=getItem(a[q].Dependent.ReferenceParameters.SelectorSet.Selector[1].Value.EndpointReference.ReferenceParameters.SelectorSet.Selector,"@Name","Name").Value,xxFilterStatistics[e][c]=d,b++;updateSystemDefense()}xxFilterStatisticsTimerActive=!1;0==b&&StopDefenseStatsTimer()}
1049 function changeDefaultPolicy(b){if(!xxdialogMode){var c;c="<div style=height:26px;margin-top:4px><select id=policySelection style=float:right;width:266px><option value=-1>None";for(var a in xxSystemDefense.AMT_SystemDefensePolicy.responses)c+="<option value="+a+(xxSystemDefenceLinkedPolicy[b]&&xxSystemDefense.AMT_SystemDefensePolicy.responses[a].InstanceID==xxSystemDefenceLinkedPolicy[b].InstanceID?" selected":"")+">"+xxSystemDefense.AMT_SystemDefensePolicy.responses[a].PolicyName;setDialogMode(11,
1050 "Default System Defense Policy",3,changeDefaultPolicyOk,c+"</select><div style=padding-top:4px>Default Policy</div></div>",b)}}
1051 function changeDefaultPolicyOk(b,c){var a=Q("policySelection").value,d=xxSystemDefenceLinkedPolicy[c];d&&amtstack.Delete("AMT_NetworkPortSystemDefensePolicy",'<w:SelectorSet><w:Selector Name="Antecedent"><a:EndpointReference xmlns:b="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:c="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address><a:ReferenceParameters><w:ResourceURI>http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_EthernetPort</w:ResourceURI><w:SelectorSet><w:Selector Name="CreationClassName">CIM_EthernetPort</w:Selector><w:Selector Name="DeviceID">Intel(r) AMT Ethernet Port '+c+
@@ -1009,12 +1058,12 @@ function AddDefenseFilter(){if(!xxdialogMode){var b;b="<div style=height:26px;ma
1058 b+="<div style=height:26px;margin-top:4px id=filterdatadiv><input id=filterdata style=float:right;width:260px maxlength=8 onkeyup=AddDefenseFilterUpdate()><div style=padding-top:4px>Packets / second</div></div>";b+="<div style=height:26px;margin-top:4px><select id=filteraction style=float:right;width:266px onchange=AddDefenseFilterUpdate()><option value=false>Do Nothing<option value=1>Event on match</select><div style=padding-top:4px>Event Log</div></div>";setDialogMode(11,"Add System Defense Filter",
1059 3,AddDefenseFilterOk,b);AddDefenseFilterUpdate()}}
1060 function AddDefenseFilterOk(){if(1>=Q("filtertype").value){var b=0==Q("filtertype").value?2048:2054,c={"InstanceID ":0,Name:Q("filtername").value,CreationClassName:0,SystemName:0,SystemCreationClassName:0,HdrProtocolID8021:b,FilterProfile:Q("filterprofile").value,FilterDirection:Q("filterdir").value,ActionEventOnMatch:Q("filteraction").value};2==Q("filterprofile").value&&(c.FilterProfileData=Q("filterdata").value);amtstack.Create("AMT_Hdr8021Filter",c,AddDefenseFilterOk2)}else{var b=2==Q("filtertype").value?
1012 -4:6,c={"InstanceID ":0,Name:Q("filtername").value,CreationClassName:0,SystemName:0,SystemCreationClassName:0,HdrIPVersion:b,FilterProfile:Q("filterprofile").value,FilterDirection:Q("filterdir").value,ActionEventOnMatch:Q("filteraction").value},a=Q("ipfilter").value.split(","),d;for(d in a){var e=a[d].indexOf("="),n=a[d].substring(0,e),e=a[d].substring(e+1),p=xxSystemDefenceFilters[n];p||(n="Hdr"+n,p=xxSystemDefenceFilters[n]);p&&(2==p&&4==b?(e=e.split("."),4==e.length&&(c[n]=rstr2hex(String.fromCharCode(parseInt(e[0]),
1013 -parseInt(e[1]),parseInt(e[2]),parseInt(e[3]))))):c[n]=e)}2==Q("filterprofile").value&&(c.FilterProfileData=Q("filterdata").value);amtstack.Create("AMT_IPHeadersFilter",c,AddDefenseFilterOk2)}}function AddDefenseFilterUpdate(){var b=0<Q("filtername").value.length;b&&2==Q("filterprofile").value&&(b=parseInt(Q("filterdata").value),b=0<b&&4294967295>b);QE("c48",b);QV("filterdatadiv",2==Q("filterprofile").value);QV("ipfilterdiv",2<=Q("filtertype").value)}
1061 +4:6,c={"InstanceID ":0,Name:Q("filtername").value,CreationClassName:0,SystemName:0,SystemCreationClassName:0,HdrIPVersion:b,FilterProfile:Q("filterprofile").value,FilterDirection:Q("filterdir").value,ActionEventOnMatch:Q("filteraction").value},a=Q("ipfilter").value.split(","),d;for(d in a){var e=a[d].indexOf("="),q=a[d].substring(0,e),e=a[d].substring(e+1),k=xxSystemDefenceFilters[q];k||(q="Hdr"+q,k=xxSystemDefenceFilters[q]);k&&(2==k&&4==b?(e=e.split("."),4==e.length&&(c[q]=rstr2hex(String.fromCharCode(parseInt(e[0]),
1062 +parseInt(e[1]),parseInt(e[2]),parseInt(e[3]))))):c[q]=e)}2==Q("filterprofile").value&&(c.FilterProfileData=Q("filterdata").value);amtstack.Create("AMT_IPHeadersFilter",c,AddDefenseFilterOk2)}}function AddDefenseFilterUpdate(){var b=0<Q("filtername").value.length;b&&2==Q("filterprofile").value&&(b=parseInt(Q("filterdata").value),b=0<b&&4294967295>b);QE("c48",b);QV("filterdatadiv",2==Q("filterprofile").value);QV("ipfilterdiv",2<=Q("filtertype").value)}
1063 function AddDefenseFilterOk2(b,c,a,d){200!=d?messagebox("Add System Defense Filter","Unable to add filter, error #"+d):PullSystemDefense()}
1015 -function showFilterDetails(b,c){if(!xxdialogMode){var a,d,e,n;0==b?(n="AMT_Hdr8021Filter",e="Ethernet Traffic",d=xxSystemDefense[n].responses[c],(a=xxSystemDefenceFilterEthernetTypes[d.HdrProtocolID8021])||(a="All Ethernet Protocol "+d.HdrProtocolID8021)):(n="AMT_IPHeadersFilter",e="IP Traffic",d=xxSystemDefense[n].responses[c],(a=xxSystemDefenceFilterIPTypes[d.HdrIPVersion])||(a="All IP Protocol "+d.HdrIPVersion));var p;p=""+addHtmlValue("Name",EscapeHtml(d.Name));p+=addHtmlValue("Type",e);p+=addHtmlValue("Matching Traffic",
1016 -a);p+=addHtmlValue("Direction",0==d.FilterDirection?"Outbound / Transmit":"Inbound / Receive");if(1==b)for(var r in xxSystemDefenceFilters)d[r]&&(a=r,e=d[r],b=xxSystemDefenceFilters[r],2==b&&4==e.length&&(e=hex2rstr(e),e=e.charCodeAt(0)+"."+e.charCodeAt(1)+"."+e.charCodeAt(2)+"."+e.charCodeAt(3)),a.startsWith("Hdr")&&(a=a.substring(3)),p+=addHtmlValue("Filter "+a,e));p+=addHtmlValue("Event on match",1==d.ActionEventOnMatch?"Yes":"No");setDialogMode(11,"Ethernet Filter #"+d.InstanceID,5,showFilterDetailsOk,
1017 -p,[n,d])}}function showFilterDetailsOk(b,c){2==b&&amtstack.Delete(c[0],c[1],deleteDefenseFilter)}function deleteDefenseFilter(b,c,a,d){200!=d?messagebox("Remove Filter","Unable to remove filter, make sure it's not in use."):PullSystemDefense()}var xxAddDefensePolicyFilters;
1064 +function showFilterDetails(b,c){if(!xxdialogMode){var a,d,e,q;0==b?(q="AMT_Hdr8021Filter",e="Ethernet Traffic",d=xxSystemDefense[q].responses[c],(a=xxSystemDefenceFilterEthernetTypes[d.HdrProtocolID8021])||(a="All Ethernet Protocol "+d.HdrProtocolID8021)):(q="AMT_IPHeadersFilter",e="IP Traffic",d=xxSystemDefense[q].responses[c],(a=xxSystemDefenceFilterIPTypes[d.HdrIPVersion])||(a="All IP Protocol "+d.HdrIPVersion));var k;k=""+addHtmlValue("Name",EscapeHtml(d.Name));k+=addHtmlValue("Type",e);k+=addHtmlValue("Matching Traffic",
1065 +a);k+=addHtmlValue("Direction",0==d.FilterDirection?"Outbound / Transmit":"Inbound / Receive");if(1==b)for(var v in xxSystemDefenceFilters)d[v]&&(a=v,e=d[v],b=xxSystemDefenceFilters[v],2==b&&4==e.length&&(e=hex2rstr(e),e=e.charCodeAt(0)+"."+e.charCodeAt(1)+"."+e.charCodeAt(2)+"."+e.charCodeAt(3)),a.startsWith("Hdr")&&(a=a.substring(3)),k+=addHtmlValue("Filter "+a,e));k+=addHtmlValue("Event on match",1==d.ActionEventOnMatch?"Yes":"No");setDialogMode(11,"Ethernet Filter #"+d.InstanceID,5,showFilterDetailsOk,
1066 +k,[q,d])}}function showFilterDetailsOk(b,c){2==b&&amtstack.Delete(c[0],c[1],deleteDefenseFilter)}function deleteDefenseFilter(b,c,a,d){200!=d?messagebox("Remove Filter","Unable to remove filter, make sure it's not in use."):PullSystemDefense()}var xxAddDefensePolicyFilters;
1067 function AddDefensePolicy(){if(!xxdialogMode){xxAddDefensePolicyFilters=[];var b;b="<div style=height:26px;margin-top:4px><input id=policyname title='<policy name>:<policy precedence number>' style=float:right;width:260px maxlength=16 onkeyup=AddDefensePolicyUpdate()><div style=padding-top:4px>Name</div></div><div style=height:26px;margin-top:4px><select id=policytx title='Default action to take for outbound traffic' style=float:right;width:133px><option value=0>Allow<option value=1>Drop<option value=2>Allow,Count<option value=3>Drop,Count<option value=4>Allow,Count,Event<option value=5>Drop,Count,Event</select><select id=policyrx style=float:right;width:133px title='Default action to take for inbound traffic'><option value=0>Allow<option value=1>Drop<option value=2>Allow,Count<option value=3>Drop,Count<option value=4>Allow,Count,Event<option value=5>Drop,Count,Event</select><div style=padding-top:4px>Default TX / RX</div></div>";b+=
1068 "<div id=policyFilters></div>";if(0<xxSystemDefense.AMT_Hdr8021Filter.responses.length||0<xxSystemDefense.AMT_IPHeadersFilter.responses.length){b+="<div style=height:26px;margin-top:4px><div style=float:right><select id=xfilter style=width:186px>";for(var c in xxSystemDefense.AMT_Hdr8021Filter.responses){var a=xxSystemDefense.AMT_Hdr8021Filter.responses[c];b+="<option value="+a.InstanceID+">"+a.Name}for(c in xxSystemDefense.AMT_IPHeadersFilter.responses)a=xxSystemDefense.AMT_IPHeadersFilter.responses[c],
1069 b+="<option value="+a.InstanceID+">"+a.Name;b+="</select><input id=addFilterButton type=button value=Add style=width:80px onclick=addFilterButton()></div><div style=padding-top:4px>Add Filter</div></div>"}setDialogMode(11,"Add System Defense Policy",3,AddDefensePolicyOk,b);AddDefensePolicyUpdate()}}function addFilterButton(){0<=xxAddDefensePolicyFilters.indexOf(Q("xfilter").value)||(xxAddDefensePolicyFilters.push(Q("xfilter").value),AddDefensePolicyUpdate())}
@@ -1041,8 +1090,8 @@ function updateWifiDialog(){var b=!0,c=c25.value,a=c26.value;QV(67,4>c);QV(66,3<
1090 c28.value)}function PullHardware(){amtstack.BatchEnum("","*CIM_ComputerSystemPackage CIM_SystemPackaging *CIM_Chassis CIM_Chip *CIM_Card *CIM_BIOSElement CIM_Processor CIM_PhysicalMemory CIM_MediaAccessDevice CIM_PhysicalPackage".split(" "),processHardware);amtFirstPull|=1}
1091 var DMTFCPUStatus="Unknown;Enabled;Disabled by User;Disabled By BIOS (POST Error);Idle;Other".split(";"),DMTFMemType="Unknown;Other;DRAM;Synchronous DRAM;Cache DRAM;EDO;EDRAM;VRAM;SRAM;RAM;ROM;Flash;EEPROM;FEPROM;EPROM;CDRAM;3DRAM;SDRAM;SGRAM;RDRAM;DDR;DDR-2;BRAM;FB-DIMM;DDR3;FBD2;DDR4;LPDDR;LPDDR2;LPDDR3;LPDDR4".split(";"),DMTFMemFormFactor=";Other;Unknown;SIMM;SIP;Chip;DIP;ZIP;Proprietary Card;DIMM;TSOP;Row of chips;RIMM;SODIMM;SRIMM;FB-DIM".split(";"),DMTFProcFamilly={191:"Intel&reg; Core&trade; 2 Duo Processor",
1092 192:"Intel&reg; Core&trade; 2 Solo processor",193:"Intel&reg; Core&trade; 2 Extreme processor",194:"Intel&reg; Core&trade; 2 Quad processor",195:"Intel&reg; Core&trade; 2 Extreme mobile processor",196:"Intel&reg; Core&trade; 2 Duo mobile processor",197:"Intel&reg; Core&trade; 2 Solo mobile processor",198:"Intel&reg; Core&trade; i7 processor",199:"Dual-Core Intel&reg; Celeron&reg; processor"},HardwareInventory;
1044 -function processHardware(b,c,a,d){if(200==d){var e;b="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>";HardwareInventory=a;QV("go2",!0);b+=TableEnd("<div>&nbsp;"+AddRefreshButton("PullHardware(1)")+AddButton("Save...","SaveHardwareLog()")+" Hardware information is gathered at system boot time.");c=a.CIM_Chassis.response;d=a.CIM_Card.response;var n=a.CIM_BIOSElement.response.SoftwareElementID;b=b+"<br><h2>Platform</h2>"+FullTable({"Computer model":c.Model,Manufacturer:c.Manufacturer,
1045 -Version:c.Version,"Serial number":c.SerialNumber,"System ID":guidToStr(a.CIM_SystemPackaging.responses[0].PlatformGUID).toLowerCase()},"");b+="<br><h2>Baseboard</h2>";b+=FullTable({Manufacturer:d.Manufacturer,"Product name":d.Model,Version:d.Version,"Serial number":d.SerialNumber,"Asset tag":d.Tag,"Replaceable?":1==d.CanBeFRUed?"Yes":"No"},"");b+="<br><h2>BIOS</h2>";b+=FullTable({Vendor:a.CIM_BIOSElement.response.Manufacturer,Version:n,"Release date":(new Date(a.CIM_BIOSElement.response.ReleaseDate.Datetime)).toLocaleDateString("en",
1093 +function processHardware(b,c,a,d){if(200==d){var e;b="<table class=log1 cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px>";HardwareInventory=a;QV("go2",!0);b+=TableEnd("<div>&nbsp;"+AddRefreshButton("PullHardware(1)")+AddButton("Save...","SaveHardwareLog()")+" Hardware information is gathered at system boot time.");c=a.CIM_Chassis.response;d=a.CIM_Card.response;var q=a.CIM_BIOSElement.response.SoftwareElementID;b=b+"<br><h2>Platform</h2>"+FullTable({"Computer model":c.Model,Manufacturer:c.Manufacturer,
1094 +Version:c.Version,"Serial number":c.SerialNumber,"System ID":guidToStr(a.CIM_SystemPackaging.responses[0].PlatformGUID).toLowerCase()},"");b+="<br><h2>Baseboard</h2>";b+=FullTable({Manufacturer:d.Manufacturer,"Product name":d.Model,Version:d.Version,"Serial number":d.SerialNumber,"Asset tag":d.Tag,"Replaceable?":1==d.CanBeFRUed?"Yes":"No"},"");b+="<br><h2>BIOS</h2>";b+=FullTable({Vendor:a.CIM_BIOSElement.response.Manufacturer,Version:q,"Release date":(new Date(a.CIM_BIOSElement.response.ReleaseDate.Datetime)).toLocaleDateString("en",
1095 {timeZone:"UTC"})},"");b+="<br>";for(e in a.CIM_Processor.responses)c=a.CIM_Processor.responses[e],d=a.CIM_Chip.responses[e],b+="<h2>Processor "+(parseInt(e)+1)+"</h2>",b+=FullTable({Manufacturer:trademarks(d.Manufacturer),Family:DMTFProcFamilly[c.Family],Version:trademarks(d.Version),"Maximum socket speed":c.MaxClockSpeed+" MHz",Status:DMTFCPUStatus[c.CPUStatus]},"");b+="<br>";for(e in a.CIM_PhysicalMemory.responses)c=a.CIM_PhysicalMemory.responses[e],b+="<h2>Memory Module "+(+e+1)+"</h2>",b+=FullTable({"Bank Label":c.BankLabel,
1096 Manufacturer:c.Manufacturer,"Serial Number":c.SerialNumber,Size:parseInt(c.Capacity/1048576)+" MB","Form factor":DMTFMemFormFactor[c.FormFactor],Type:DMTFMemType[c.MemoryType],"Asset tag":c.Tag,"Part number":c.PartNumber},"");b+="<br>";for(e in a.CIM_MediaAccessDevice.responses)c=a.CIM_MediaAccessDevice.responses[e],d=a.CIM_PhysicalPackage.responses[+e+1],b+="<h2>Storage Media "+(parseInt(e)+1)+"</h2>",b+=FullTable({Model:d.Model,"Serial number":""==d.SerialNumber?"Unknown":d.SerialNumber,Size:parseInt(Math.round(1E3*
1097 c.MaxMediaSize/1048576))+" MB"},"");b+="<br>";QH(18,b);updateSystemStatus()}}function SaveHardwareLog(){!xxdialogMode&&HardwareInventory&&SaveJsonFile("IntelAmtHardware","hardware","Intel AMT Hardware Information",HardwareInventory)}var AmtSystemPowerSchemes=null;function PullPowerPolicy(){amtstack.Enum("AMT_SystemPowerScheme",powerPolicyResponse)}function powerPolicyResponse(b,c,a,d){AmtSystemPowerSchemes=a;updateSystemStatus()}
@@ -1051,18 +1100,18 @@ function showPowerPolicyDlgOk(){for(var b=null,c=0,a=document.getElementsByTagNa
1100 function PullUserInfo(){xxAccountFetch=1;delete xxAccountAdminName;xxAccountRealmInfo={};amtstack.AMT_AuthorizationService_GetAdminAclEntry(getAdminAclEntryResponse);amtstack.AMT_AuthorizationService_EnumerateUserAclEntries(1,enumerateUserAclEntriesResponse)}function getAdminAclEntryResponse(b,c,a,d){200==d&&(xxAccountRealmInfo[-1]={AccessPermission:999,DigestUsername:a.Body.Username,Realms:null},xxAccountAdminName=a.Body.Username,updateAccounts())}
1101 function enumerateUserAclEntriesResponse(b,c,a,d){if(200==d){methodcheck(a);QV("go11",!0);xxAccountFetch=a.Body.Handles.length;for(var e in a.Body.Handles)b=a.Body.Handles[e],amtstack.AMT_AuthorizationService_GetAclEnabledState(b,getAclEnabledStateResponse,b),amtstack.AMT_AuthorizationService_GetUserAclEntryEx(b,getUserAclEntryExResponse,b);updateAccounts()}}
1102 function getUserAclEntryExResponse(b,c,a,d,e){xxAccountFetch--;200==d&&(a.Body.Handle=e,a.Body.Realms?Array.isArray(a.Body.Realms)||(a.Body.Realms=[a.Body.Realms]):a.Body.Realms=[],xxAccountRealmInfo[e]=a.Body,updateAccounts())}function getAclEnabledStateResponse(b,c,a,d,e){200==d&&(xxAccountEnabledInfo[e]=a.Body,updateAccounts())}function setAclEnabledStateResponse(b,c,a,d,e){errcheck(d,b)||(methodcheck(a),amtstack.AMT_AuthorizationService_GetAclEnabledState(e,getAclEnabledStateResponse,e))}
1054 -function updateAccounts(){if(!(0<xxAccountFetch)){var b=TableStart2(),b=b+"<tr><td class=r1 style=padding-left:15px><br>Manage the Intel&reg; AMT user accounts for this computer.<br><br>",c;for(c in xxAccountRealmInfo){var a=xxAccountRealmInfo[c],d,e=!1,n=0;a.DigestUsername?(d=a.DigestUsername,e="$"==d[0]&&"$"==d[1]):d=GetSidString(atob(a.KerberosUserSid));xxAccountEnabledInfo[c]&&"$$OsAdmin"!=d&&(n=1==xxAccountEnabledInfo[c].Enabled?1:2);if(showHiddenAccounts||!e){var p="";if(999!=a.AccessPermission){2==
1055 -n&&(p+="Disabled, ");var r=0;for(c in a.Realms)""!=amtstack.RealmNames[a.Realms[c]]&&r++;0<=a.Realms.indexOf(20)&&(p+="Auditor, ");p=0<=a.Realms.indexOf(3)?p+"Administrator":1==r?p+"1 realm":p+(r+" realms")}else p+="Administrator",a.Handle=-1;b+="<div class=itemBar onclick=showUserDetails("+a.Handle+")><div style=float:right>";0<n&&xxAccountAdminName&&(b+=" "+AddButton2(1==n?"Disable":"Enable","changeAccountStateButton(event,"+a.Handle+","+n+")"));!e&&xxAccountAdminName&&(b+=" "+AddButton2("Edit...",
1056 -"changeAccountButton(event,"+a.Handle+")"));b+="</div><div style=padding-top:3px;width:330px;float:left;overflow-x:hidden title='"+d+"'><b>"+d+"</b></div><div style=padding-top:3px>"+p+"</div></div>"}}c="<div style=float:right;margin-right:8px><a title='Toggle hidden accounts' style=color:gray;cursor:pointer onclick=toggleAccountButton()>"+(showHiddenAccounts?"&#x25B2;":"&#x25BC;")+"</a></div><div>&nbsp;"+AddRefreshButton("xxAccountFetch=999;PullUserInfo()");xxAccountAdminName&&(c+=AddButton("New Account",
1103 +function updateAccounts(){if(!(0<xxAccountFetch)){var b=TableStart2(),b=b+"<tr><td class=r1 style=padding-left:15px><br>Manage the Intel&reg; AMT user accounts for this computer.<br><br>",c;for(c in xxAccountRealmInfo){var a=xxAccountRealmInfo[c],d,e=!1,q=0;a.DigestUsername?(d=a.DigestUsername,e="$"==d[0]&&"$"==d[1]):d=GetSidString(atob(a.KerberosUserSid));xxAccountEnabledInfo[c]&&"$$OsAdmin"!=d&&(q=1==xxAccountEnabledInfo[c].Enabled?1:2);if(showHiddenAccounts||!e){var k="";if(999!=a.AccessPermission){2==
1104 +q&&(k+="Disabled, ");var v=0;for(c in a.Realms)""!=amtstack.RealmNames[a.Realms[c]]&&v++;0<=a.Realms.indexOf(20)&&(k+="Auditor, ");k=0<=a.Realms.indexOf(3)?k+"Administrator":1==v?k+"1 realm":k+(v+" realms")}else k+="Administrator",a.Handle=-1;b+="<div class=itemBar onclick=showUserDetails("+a.Handle+")><div style=float:right>";0<q&&xxAccountAdminName&&(b+=" "+AddButton2(1==q?"Disable":"Enable","changeAccountStateButton(event,"+a.Handle+","+q+")"));!e&&xxAccountAdminName&&(b+=" "+AddButton2("Edit...",
1105 +"changeAccountButton(event,"+a.Handle+")"));b+="</div><div style=padding-top:3px;width:330px;float:left;overflow-x:hidden title='"+d+"'><b>"+d+"</b></div><div style=padding-top:3px>"+k+"</div></div>"}}c="<div style=float:right;margin-right:8px><a title='Toggle hidden accounts' style=color:gray;cursor:pointer onclick=toggleAccountButton()>"+(showHiddenAccounts?"&#x25B2;":"&#x25BC;")+"</a></div><div>&nbsp;"+AddRefreshButton("xxAccountFetch=999;PullUserInfo()");xxAccountAdminName&&(c+=AddButton("New Account",
1106 "newAccountButton()"));b+="<br><td class=r1>"+TableEnd(c+"</div>");QH(23,b)}}function toggleAccountButton(){showHiddenAccounts=!showHiddenAccounts;updateAccounts()}function removeUserAclEntryResponse(b,c,a,d,e){methodcheck(a)||PullUserInfo()}function changeAccountStateButton(b,c,a){haltEvent(b);xxdialogMode||amtstack.AMT_AuthorizationService_SetAclEnabledState(c,1==a?!1:!0,setAclEnabledStateResponse,c)}
1107 function changeAccountButton(b,c){haltEvent(b);xxdialogMode||(updateRealms(xxAccountRealmInfo[c].Realms),d2username.value=xxAccountRealmInfo[c].DigestUsername?xxAccountRealmInfo[c].DigestUsername:GetSidString(atob(xxAccountRealmInfo[c].KerberosUserSid)),d2password1.value=d2password2.value="",d2permission.value=xxAccountRealmInfo[c].AccessPermission,setDialogMode(2,"Edit Account",-1==c?3:7,function(a){changeAccountButtonEx(c,a)}),updateAccountDialog())}
1108 function newAccountButton(){xxdialogMode||(updateRealms([]),d2username.value=d2password1.value=d2password2.value="",d2permission.value=2,setDialogMode(2,"New Account",3,function(){changeAccountButtonEx(null,1)}),updateAccountDialog())}
1060 -function changeAccountButtonEx(b,c){if(1==c){var a=[],d=d2username.value,e=d2permission.value,n=d2password1.value,p=GetSidByteArray(Q("d2username").value),r=null;if(0==d.length||n!=d2password2.value){messagebox("Account Error","Invalid Parameters");return}null==p?r=window.btoa(rstr_md5(d+":"+amtsysstate.AMT_GeneralSettings.response.DigestRealm+":"+n)):(d=null,p=btoa(p));if(-1!=b)for(var m in amtstack.RealmNames)(amtstack.RealmNames[m]||3==m)&&Q("rx"+m).checked&&a.push(m);null==b?amtstack.AMT_AuthorizationService_AddUserAclEntryEx(d,
1061 -r,p,e,a,userAclEntryExResponse):-1==b?amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(d,r,userAclEntryExResponse):amtstack.AMT_AuthorizationService_UpdateUserAclEntryEx(b,d,r,p,e,a,userAclEntryExResponse)}2==c&&amtstack.AMT_AuthorizationService_RemoveUserAclEntry(b,removeUserAclEntryResponse)}function userAclEntryExResponse(b,c,a,d,e){methodcheck(a)||PullUserInfo()}
1109 +function changeAccountButtonEx(b,c){if(1==c){var a=[],d=d2username.value,e=d2permission.value,q=d2password1.value,k=GetSidByteArray(Q("d2username").value),v=null;if(0==d.length||q!=d2password2.value){messagebox("Account Error","Invalid Parameters");return}null==k?v=window.btoa(rstr_md5(d+":"+amtsysstate.AMT_GeneralSettings.response.DigestRealm+":"+q)):(d=null,k=btoa(k));if(-1!=b)for(var n in amtstack.RealmNames)(amtstack.RealmNames[n]||3==n)&&Q("rx"+n).checked&&a.push(n);null==b?amtstack.AMT_AuthorizationService_AddUserAclEntryEx(d,
1110 +v,k,e,a,userAclEntryExResponse):-1==b?amtstack.AMT_AuthorizationService_SetAdminAclEntryEx(d,v,userAclEntryExResponse):amtstack.AMT_AuthorizationService_UpdateUserAclEntryEx(b,d,v,k,e,a,userAclEntryExResponse)}2==c&&amtstack.AMT_AuthorizationService_RemoveUserAclEntry(b,removeUserAclEntryResponse)}function userAclEntryExResponse(b,c,a,d,e){methodcheck(a)||PullUserInfo()}
1111 function updateRealms(b){QV(62,null!=b);if(null!=b){var c="<li><label><input type=checkbox onchange=updateAccountDialog() id=rx3"+(0<=b.indexOf(3)?" checked":"")+">Administrator</label></li><hr />",a;for(a in amtstack.RealmNames){var d="";0<=b.indexOf(parseInt(a))&&(d=" checked");amtstack.RealmNames[a]&&(c+="<li><label><input type=checkbox onchange=updateAccountDialog() id=rx"+a+d+">"+amtstack.RealmNames[a]+"</label></li>")}QH(63,c)}}
1112 function updateAccountDialog(){var b=!1,c;for(c in amtstack.RealmNames)(amtstack.RealmNames[c]||3==c)&&Q("rx"+c).checked&&(b=!0);b&=0<d2username.value.length&&passwordcheck(d2password1.value)&&d2password1.value==d2password2.value;QE("c48",b)}var xxUserPermissions=["Local only","Network only","All (Local & Network)"];
1064 -function showUserDetails(b){if(!xxdialogMode){var c=xxAccountRealmInfo[b],a="<div style=text-align:left>",d,e=c.DigestUsername;e||(e=GetSidString(atob(c.KerberosUserSid)));a+=addHtmlValue("Name",e);xxAccountEnabledInfo[b]&&(a+=addHtmlValue("State",1==xxAccountEnabledInfo[b].Enabled?"Enabled":"Disabled"));if(e==xxAccountAdminName)a+=addHtmlValue("Permission","Administrator");else{var a=a+addHtmlValue("Permission",xxUserPermissions[c.AccessPermission]),n="";if(0<=c.Realms.indexOf(3))n="Administrator",
1065 -0<=c.Realms.indexOf(20)&&(n+=", Auditor");else for(d in xxAccountRealmInfo[b].Realms)""!=amtstack.RealmNames[c.Realms[d]]&&(0<n.length&&(n+=", "),n+=amtstack.RealmNames[c.Realms[d]]);0==n.length&&(n="None");a+=addHtmlValue("Realms","")+"<b>"+n+"</b>"}messagebox("Account "+e,a+"</div>")}}
1113 +function showUserDetails(b){if(!xxdialogMode){var c=xxAccountRealmInfo[b],a="<div style=text-align:left>",d,e=c.DigestUsername;e||(e=GetSidString(atob(c.KerberosUserSid)));a+=addHtmlValue("Name",e);xxAccountEnabledInfo[b]&&(a+=addHtmlValue("State",1==xxAccountEnabledInfo[b].Enabled?"Enabled":"Disabled"));if(e==xxAccountAdminName)a+=addHtmlValue("Permission","Administrator");else{var a=a+addHtmlValue("Permission",xxUserPermissions[c.AccessPermission]),q="";if(0<=c.Realms.indexOf(3))q="Administrator",
1114 +0<=c.Realms.indexOf(20)&&(q+=", Auditor");else for(d in xxAccountRealmInfo[b].Realms)""!=amtstack.RealmNames[c.Realms[d]]&&(0<q.length&&(q+=", "),q+=amtstack.RealmNames[c.Realms[d]]);0==q.length&&(q="None");a+=addHtmlValue("Realms","")+"<b>"+q+"</b>"}messagebox("Account "+e,a+"</div>")}}
1115 function wsmanQuery(){QH(26,"");var b=getSelectedOptions(Q(24)),c=[],a;for(a in b)""==QS("WSB-"+b[a]).display&&c.push(b[a]);0!=c.length&&(QE(25,!1),c&&0<c.length&&amtstack.BatchEnum("Browser",c,browserResponse,null,!0))}
1116 function browserResponse(b,c,a,d){QE(25,!0);b="";for(var e in a)c=a[e],b+="<h2>"+e+"</h2><div style=margin-left:20px>",b=200==c.status?0==c.responses.length?b+"<br>(Empty)":b+ObjectToString(c.responses).replace(/Intel\(r\)/g,"Intel&reg"):b+("<br><div style=color:red>Error #"+c.status+"</div>"),b+="</div><br>";QH(26,b)}
1117 function wsmanFilter(){var b=c0.value.toLowerCase(),c;for(c in AllWsman)QV("WSB-"+AllWsman[c],""==b||0<=AllWsman[c].toLowerCase().indexOf(b))}function connectTerminal(){terminal&&(0==terminal.State?(terminal.tlsv1only=amtstack.wsman.comm.tlsv1only,terminal.Start(currentMeshNode._id,16994,"*","*",0)):terminal.Stop())}
@@ -1098,10 +1147,10 @@ function dmousemove(b){xxdialogMode||Q(49).checked||(null!=webRtcDesktop&&null!=
1147 function drotate(b){b=desktop.m.rotation+b;desktop.m.setRotation(b);null!=webRtcDesktop&&null!=webRtcDesktop.softdesktop&&null!=webRtcDesktop.softdesktop.m&&webRtcDesktop.softdesktop.m.setRotation(b);center()}var p24files=null,p24filetree=null,p24targetpath=null,p24filetreelocation=[];
1148 function onFilesControlData(b){if(0<b.length&&123!=b.charCodeAt(0))p24gotDownloadBinaryData(b);else if(b=JSON.parse(b),"download"==b.action)p24gotDownloadCommand(b);else if("upload"==b.action)p24gotUploadData(b);else if("pong"!=b.action)if(b.path=b.path.replace(/\//g,"\\"),null!=p24filetree&&b.path==p24filetree.path){var c=p24getCheckedNames();p24filetree=b;p24updateFiles(c)}else{for(var c=b.path.split("/").join("\\"),a=p24targetpath.split("/").join("\\");0<c.length&&"\\"==c[0];)c=c.substring(1);
1149 for(;0<a.length&&"\\"==a[0];)a=a.substring(1);if(c==a||"\\"==b.path&&""==p24targetpath)p24filetree=b,p24updateFiles()}}function p24getCheckedNames(){for(var b=[],c=document.getElementsByName("fd"),a=0;a<c.length;a++)c[a].checked&&b.push(p24filetree.dir[c[a].value].n);return b}
1101 -function p24updateFiles(b){var c="",a="",d="<a style=cursor:pointer onclick=p24folderup(0)>Root</a>",e=p24filetree.path.split("\\");p24filetreelocation=[];for(var n in e)""!=e[n]&&p24filetreelocation.push(e[n]);for(n in p24filetreelocation)d+=" / <a style=cursor:pointer onclick=p24folderup("+(parseInt(n)+1)+")>"+p24filetreelocation[n]+"</a>";var e=p24filetreelocation.join("/"),p=p24sort_files(p24filetree.dir);for(n in p){var r=p[n],m=r.n,g;g=70<m.length?'<span title="'+EscapeHtml(m)+'">'+EscapeHtml(m.substring(0,
1102 -70))+"...</span>":EscapeHtml(m);var m=EscapeHtml(m),w="";null!=r.d&&(w=new Date(r.d),w=w.getMonth()+1+"/"+w.getDate()+"/"+w.getFullYear()+" "+w.toLocaleTimeString()+"&nbsp;");var l="";null!=r.s&&(l=getFileSizeStr(r.s));var v="";3>r.t?v="<div class=filelist file=999><input file=999 style=float:left name=fd class=fcb type=checkbox onchange=p24setActions() value='"+r.nx+'\'>&nbsp;<span style=float:right title=""></span><span><div class=fileIcon'+r.t+'></div><a style=cursor:pointer onclick=p24folderset("'+
1103 -encodeURIComponent(r.nx)+'")>'+g+"</a></span></div>":(v=g,0<r.s&&(v='<a rel="noreferrer noopener" target="_blank" style=cursor:pointer onclick="p24downloadfile(\''+encodeURIComponent(e+"/"+m)+"','"+encodeURIComponent(m)+"',"+r.s+')">'+g+"</a>"),v="<div class=filelist file=3><input file=3 style=float:left name=fd class=fcb type=checkbox onchange=p24setActions() value='"+r.nx+"'>&nbsp;<span class=fsize>"+w+"</span><span style=float:right>"+l+"</span><span><div class=fileIcon"+r.t+"></div>"+v+"</span></div>");
1104 -3>r.t?c+=v:a+=v}QH("p24files",c+a);QH("p24currentpath",d);QE("p24FolderUp",0!=p24filetreelocation.length);if(null!=b)for(c=document.getElementsByName("fd"),n=0;n<c.length;n++)0<=b.indexOf(p24filetree.dir[c[n].value].n)&&(c[n].checked=!0);p24setActions()}function p24folderset(b){p24targetpath=joinPaths(p24filetree.path,p24filetree.dir[b].n).split("\\").join("/");p24files.sendCtrlMsg(JSON.stringify({action:"ls",reqid:1,path:p24targetpath}))}
1150 +function p24updateFiles(b){var c="",a="",d="<a style=cursor:pointer onclick=p24folderup(0)>Root</a>",e=p24filetree.path.split("\\");p24filetreelocation=[];for(var q in e)""!=e[q]&&p24filetreelocation.push(e[q]);for(q in p24filetreelocation)d+=" / <a style=cursor:pointer onclick=p24folderup("+(parseInt(q)+1)+")>"+p24filetreelocation[q]+"</a>";var e=p24filetreelocation.join("/"),k=p24sort_files(p24filetree.dir);for(q in k){var v=k[q],n=v.n,p;p=70<n.length?'<span title="'+EscapeHtml(n)+'">'+EscapeHtml(n.substring(0,
1151 +70))+"...</span>":EscapeHtml(n);var n=EscapeHtml(n),h="";null!=v.d&&(h=new Date(v.d),h=h.getMonth()+1+"/"+h.getDate()+"/"+h.getFullYear()+" "+h.toLocaleTimeString()+"&nbsp;");var m="";null!=v.s&&(m=getFileSizeStr(v.s));var w="";3>v.t?w="<div class=filelist file=999><input file=999 style=float:left name=fd class=fcb type=checkbox onchange=p24setActions() value='"+v.nx+'\'>&nbsp;<span style=float:right title=""></span><span><div class=fileIcon'+v.t+'></div><a style=cursor:pointer onclick=p24folderset("'+
1152 +encodeURIComponent(v.nx)+'")>'+p+"</a></span></div>":(w=p,0<v.s&&(w='<a rel="noreferrer noopener" target="_blank" style=cursor:pointer onclick="p24downloadfile(\''+encodeURIComponent(e+"/"+n)+"','"+encodeURIComponent(n)+"',"+v.s+')">'+p+"</a>"),w="<div class=filelist file=3><input file=3 style=float:left name=fd class=fcb type=checkbox onchange=p24setActions() value='"+v.nx+"'>&nbsp;<span class=fsize>"+h+"</span><span style=float:right>"+m+"</span><span><div class=fileIcon"+v.t+"></div>"+w+"</span></div>");
1153 +3>v.t?c+=w:a+=w}QH("p24files",c+a);QH("p24currentpath",d);QE("p24FolderUp",0!=p24filetreelocation.length);if(null!=b)for(c=document.getElementsByName("fd"),q=0;q<c.length;q++)0<=b.indexOf(p24filetree.dir[c[q].value].n)&&(c[q].checked=!0);p24setActions()}function p24folderset(b){p24targetpath=joinPaths(p24filetree.path,p24filetree.dir[b].n).split("\\").join("/");p24files.sendCtrlMsg(JSON.stringify({action:"ls",reqid:1,path:p24targetpath}))}
1154 function p24folderup(b){if(null==b)p24filetreelocation.pop();else for(;p24filetreelocation.length>b;)p24filetreelocation.pop();p24targetpath=p24filetreelocation.join("/");p24files.sendCtrlMsg(JSON.stringify({action:"ls",reqid:1,path:p24targetpath}))}var p24sortorder;function p24sort_filename(b,c){return b.ln>c.ln?1*p24sortorder:b.ln<c.ln?-1*p24sortorder:0}function p24sort_timestamp(b,c){return b.d>c.d?1*p24sortorder:b.d<c.d?-1*p24sortorder:0}
1155 function p24sort_bysize(b,c){return b.s==c.s?p24sort_filename(b,c):(b.s-c.s)*p24sortorder}function p24sort_files(b){var c=[],a=Q("p24sortdropdown").value,d;for(d in b)b[d].nx=d,null==b[d].s&&(b[d].s=0),null==b[d].n&&(b[d].n=d),b[d].ln=b[d].n.toLowerCase(),c.push(b[d]);p24sortorder=1;3<a&&(p24sortorder=-1,a-=3);1==a?c.sort(p24sort_filename):2==a?c.sort(p24sort_bysize):3==a&&c.sort(p24sort_timestamp);return c}
1156 function p24setActions(){if(null==p24filetree)QE("p24DeleteFileButton",!1),QE("p24NewFolderButton",!1),QE("p24UploadButton",!1),QE("p24RenameFileButton",!1),QE("p24SelectAllButton",!1),Q("p24SelectAllButton").value="Select All",QE("p24RefreshButton",!1),QE("p24CutButton",!1),QE("p24CopyButton",!1),QE("p24PasteButton",!1);else{var b=p24getFileSelCount(),c=p24getFileCount(),a=p24getFileSelCount(!1),d="win32"==webRtcDesktop.platform;QE("p24DeleteFileButton",0<b&&(0<p24filetreelocation.length||0==d));
@@ -1134,8 +1183,8 @@ function iderStart2(){if(1!=Q("floppyImageInput").files.length&&1!=Q("cdromImage
1183 null,c=null;1==Q("floppyImageInput").files.length&&(b=Q("floppyImageInput").files[0]);1==Q("cdromImageInput").files.length&&(c=Q("cdromImageInput").files[0]);iderStop();ider=CreateAmtRedirect(CreateAmtRemoteIder());ider.onStateChanged=onIderStateChange;ider.m.floppy=b;ider.m.cdrom=c;ider.m.iderStart=Q("iderStartType").value;ider.m.sectorStats=iderSectorStats;ider.tlsv1only=amtstack.wsman.comm.tlsv1only;ider.Start(currentMeshNode._id,16994,"*","*",0)}}
1184 function iderStop(){ider&&(ider.m.Stop(),ider.onStateChanged=null,ider.m.onDialogPrompt=null,delete ider);iderTimer&&(clearInterval(iderTimer),delete iderTimer);iderToggleDiskMap(!1)}function onIderStateChange(b,c){QE("c2",3!=c);QE("c8",3!=c);QV(9,3==c);center();3==c?(urlvars.norefresh||(iderTimer=setInterval(onIderTimer,500)),onIderTimer()):iderTimer&&(clearInterval(iderTimer),delete iderTimer)}
1185 function onIderTimer(){ider.m.Update&&ider.m.Update();-1==ider.m.bytesFromAmt?iderStop():QH(10,"<b>"+(ider.m.server?"Server ":"")+"IDE-R Session</b>, Connected, "+ider.m.bytesFromAmt+" in, "+ider.m.bytesToAmt+" out.")}var heatMapWidth=600,heatMapDividor={};
1137 -function iderSectorStats(b,c,a,d,e){var n=c?Q("cdromHeatMapCanvas"):Q("floppyHeatMapCanvas"),p=n.getContext("2d");if(0==b){heatMapDividor[c]=1;if(0<a)for(;8E3<a/heatMapDividor[c];)heatMapDividor[c]*=2;c?(QV("cdromHeatMap",a),QH("cdromHeatMapText","<b>CDROM</b>, blocks are "+2048*heatMapDividor[c]+" bytes.")):(QV("floppyHeatMap",a),QH("floppyHeatMapText","<b>Floppy</b>, blocks are "+512*heatMapDividor[c]+" bytes."))}c=heatMapDividor[c];a/=c;d/=c;e/=c;if(0==b)n.height=6*(Math.floor(a/(heatMapWidth/
1138 -6))+(a%heatMapWidth?1:0)),p.fillStyle="rgba(225,250,225,1)",p.fillRect(0,0,heatMapWidth,6*Math.floor(a/(heatMapWidth/6))),a%heatMapWidth&&p.fillRect(0,6*Math.floor(a/(heatMapWidth/6)),a%(heatMapWidth/6)*6,6),p.fillStyle="rgba(0,0,0,0.3)";else for(b=d;b<d+e;b++)sectorHeat(p,b,6,c)}function sectorHeat(b,c,a,d){b.fillRect(c%(heatMapWidth/a)*a,Math.floor(c/(heatMapWidth/a))*a,a,a)}
1186 +function iderSectorStats(b,c,a,d,e){var q=c?Q("cdromHeatMapCanvas"):Q("floppyHeatMapCanvas"),k=q.getContext("2d");if(0==b){heatMapDividor[c]=1;if(0<a)for(;8E3<a/heatMapDividor[c];)heatMapDividor[c]*=2;c?(QV("cdromHeatMap",a),QH("cdromHeatMapText","<b>CDROM</b>, blocks are "+2048*heatMapDividor[c]+" bytes.")):(QV("floppyHeatMap",a),QH("floppyHeatMapText","<b>Floppy</b>, blocks are "+512*heatMapDividor[c]+" bytes."))}c=heatMapDividor[c];a/=c;d/=c;e/=c;if(0==b)q.height=6*(Math.floor(a/(heatMapWidth/
1187 +6))+(a%heatMapWidth?1:0)),k.fillStyle="rgba(225,250,225,1)",k.fillRect(0,0,heatMapWidth,6*Math.floor(a/(heatMapWidth/6))),a%heatMapWidth&&k.fillRect(0,6*Math.floor(a/(heatMapWidth/6)),a%(heatMapWidth/6)*6,6),k.fillStyle="rgba(0,0,0,0.3)";else for(b=d;b<d+e;b++)sectorHeat(k,b,6,c)}function sectorHeat(b,c,a,d){b.fillRect(c%(heatMapWidth/a)*a,Math.floor(c/(heatMapWidth/a))*a,a,a)}
1188 function iderToggleDiskMap(b){var c="none"!=QS("iderHeatmap").display;null==b&&(b=!c);xxdialogMode&&(b=!1);QS("iderHeatmap").display=b?"":"none"}function onIderDialogPrompt(b,c,a){iderCodeBlock&&(document.body.removeChild(iderCodeBlock),delete iderCodeBlock);c.js&&(b=document.createElement("script"),b.text=c.js,iderCodeBlock=document.body.appendChild(b));setDialogMode(11,"Storage Redirection",a?a:3,onIderDialogPromptOk,c.html)}
1189 function onIderDialogPromptOk(b){1==b?window.iderServerCall?ider.m.dialogPrompt(window.iderServerCall()):ider.m.dialogPrompt():iderStop()}function iderServerStart(){iderStop();ider=CreateAmtRemoteServerIder();null!=ider&&(ider.onStateChanged=onIderStateChange,ider.m.sectorStats=iderSectorStats,ider.m.onDialogPrompt=onIderDialogPrompt,ider.tlsv1only=amtstack.wsman.comm.tlsv1only,ider.Start(currentMeshNode._id,16994,"*","*",0))}
1190 var xxRemoteAccess=null,xxEnvironementDetection=null,xxCiraServers=null,xxUserInitiatedCira=null,xxUserInitiatedEnabledState={32768:"Disabled",32769:"BIOS enabled",32770:"OS enable",32771:"BIOS & OS enabled"},xxRemoteAccessCredentiaLinks=null,xxMPSUserPass=null,xxPolicies=null;
@@ -1145,8 +1194,8 @@ a.AMT_RemoteAccessCredentialContext.responses;xxMPSUserPass=a.AMT_MPSUsernamePas
1194 xxPolicies[c].push(b);updateRemoteAccess()}}
1195 function updateRemoteAccess(){if(null!=xxEnvironementDetection){var b,c="Disabled",a=xxRemoteAccess.IPS_HTTPProxyService&&xxRemoteAccess.IPS_HTTPProxyAccessPoint;xxEnvironementDetection.DetectionStrings&&0<xxEnvironementDetection.DetectionStrings.length&&(c="Enabled, "+xxEnvironementDetection.DetectionStrings.length+" domain"+(1<xxEnvironementDetection.DetectionStrings.length?"s":""));b=""+TableStart();b+=TableEntry("Environment detection",addLink(c,"editEnvironmentDetection()"));b+=TableEntry("User initiation options",
1196 addLinkConditional(xxUserInitiatedEnabledState[xxUserInitiatedCira.EnabledState],"editUserInitiatedCira()",xxAccountAdminName));c="<i>None</i>";if(0<xxPolicies.User.length){var c="",d;for(d in xxPolicies.User)0<c.length&&(c+=", "),c+=xxPolicies.User[d].AccessInfo,1==xxPolicies.User[d].MpsType&&(c+=" (CILA)")}b+=TableEntry("User initiated connection",addLinkConditional(c,'editMpsPolicy("User")',xxAccountAdminName));c="<i>None</i>";if(0<xxPolicies.Alert.length)for(d in c="",xxPolicies.Alert)0<c.length&&
1148 -(c+=", "),c+=xxPolicies.Alert[d].AccessInfo,1==xxPolicies.Alert[d].MpsType&&(c+=" (CILA)");b+=TableEntry("Alert initiated connection",addLinkConditional(c,'editMpsPolicy("Alert")',xxAccountAdminName));c="<i>None</i>";if(0<xxPolicies.Periodic.length)for(d in c="",xxPolicies.Periodic)0<c.length&&(c+=", "),c+=xxPolicies.Periodic[d].AccessInfo,1==xxPolicies.Periodic[d].MpsType&&(c+=" (CILA)");var e=getItem(xxRemoteAccess.AMT_RemoteAccessPolicyRule.responses,"PolicyRuleName","Periodic");if(e){var n=atob(e.ExtendedData);
1149 -0==ReadInt(n,0)&&(c+=", each "+ReadInt(n,4)+" seconds");1==ReadInt(n,0)&&(e=ReadInt(n,4),n=ReadInt(n,8),10>n&&(n="0"+n),c+=", at "+e+":"+n+" daily")}b+=TableEntry("Periodic connection",addLinkConditional(c,'editMpsPolicy("Periodic")',xxAccountAdminName));b+=TableEnd();b=b+"<br>"+TableStart2();b+="<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT remote management servers.<br><br>";if(0==xxCiraServers.length)b+="<div style=padding-left:15px><br><i>No remote servers found.</i></div><br>";
1197 +(c+=", "),c+=xxPolicies.Alert[d].AccessInfo,1==xxPolicies.Alert[d].MpsType&&(c+=" (CILA)");b+=TableEntry("Alert initiated connection",addLinkConditional(c,'editMpsPolicy("Alert")',xxAccountAdminName));c="<i>None</i>";if(0<xxPolicies.Periodic.length)for(d in c="",xxPolicies.Periodic)0<c.length&&(c+=", "),c+=xxPolicies.Periodic[d].AccessInfo,1==xxPolicies.Periodic[d].MpsType&&(c+=" (CILA)");var e=getItem(xxRemoteAccess.AMT_RemoteAccessPolicyRule.responses,"PolicyRuleName","Periodic");if(e){var q=atob(e.ExtendedData);
1198 +0==ReadInt(q,0)&&(c+=", each "+ReadInt(q,4)+" seconds");1==ReadInt(q,0)&&(e=ReadInt(q,4),q=ReadInt(q,8),10>q&&(q="0"+q),c+=", at "+e+":"+q+" daily")}b+=TableEntry("Periodic connection",addLinkConditional(c,'editMpsPolicy("Periodic")',xxAccountAdminName));b+=TableEnd();b=b+"<br>"+TableStart2();b+="<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT remote management servers.<br><br>";if(0==xxCiraServers.length)b+="<div style=padding-left:15px><br><i>No remote servers found.</i></div><br>";
1199 else for(d in xxCiraServers)c=":"+xxCiraServers[d].Port,xxCiraServers[d].CN&&(c+=", "+xxCiraServers[d].CN),b+="<div class=itemBar onclick=showServerDetails("+d+")><div style=padding-top:3px><b>"+xxCiraServers[d].AccessInfo+"</b>"+EscapeHtml(c)+"</div></div>";if(a)if(b+="<br>Manage HTTP proxies used for management connections.<br><br>",c=xxRemoteAccess.IPS_HTTPProxyAccessPoint.responses,0==c.length)b+="<div style=padding-left:15px><br><i>No proxies configured.</i></div><br>";else for(d in c)b+="<div class=itemBar onclick=showProxyDetails("+
1200 d+")><div style=padding-top:3px><b>"+EscapeHtml(c[d].AccessInfo)+":"+c[d].Port+"</b> / "+EscapeHtml(c[d].NetworkDnsSuffix)+"</div></div>";d="";xxAccountAdminName&&(d=AddButton("Add Server...","AddRemoteAccessServer()"),a&&(d+=AddButton("Add Proxy...","AddRemoteAccessProxy()")));b+="<br><td class=r1>"+TableEnd(AddRefreshButton("PullRemoteAccess()")+d);QH(53,b)}}var xxEditMpsPolicyType;
1201 function editMpsPolicy(b){var c="",a=11<amtversion||11==amtversion&&6<=amtversion,d=xxEditMpsPolicyType=b;"User"==d&&(d="User Initiated");var d=getItem(xxRemoteAccess.AMT_RemoteAccessPolicyRule.responses,"PolicyRuleName",d),c=c+"<div style=height:26px><select id=d2server1 style=float:right;width:206px onchange=editMpsPolicyUpdate()><option value=-1>(None)",e;for(e in xxCiraServers)c+="<option value="+e+""+(xxPolicies[b][0]&&xxPolicies[b][0].Name==xxCiraServers[e].Name?" selected":"")+">"+xxCiraServers[e].AccessInfo;
@@ -1157,9 +1206,9 @@ for(e in xxCiraServers)c+="<option value="+e+""+(xxPolicies[b][1]&&xxPolicies[b]
1206 function editMpsPolicyUpdate(){var b=11<amtversion||11==amtversion&&6<=amtversion,c=1>=xxCiraServers.length||-1==Q("d2server1").value||Q("d2server1").value!=Q("d2server2").value;if(1==c&&"Periodic"==xxEditMpsPolicyType&&1==Q("d2ttype").value){var a=Q("d2timer").value.split(":");if(2!=a.length)c=!1;else{var d=parseInt(a[0]),a=parseInt(a[1]);if(0>d||23<d||0>a||59<a)c=!1}}QE("c48",c);1<xxCiraServers.length&&QE("d2server2",-1!=Q("d2server1").value);"Periodic"==xxEditMpsPolicyType&&(QE("d2timer",
1207 -1!=Q("d2server1").value),QH("ttypelabel",0==Q("d2ttype").value?"Trigger interval (Seconds)":"Time of day (HH:MM)"),QE("d2ttype",-1!=Q("d2server1").value));QE("d2lifetime",-1!=Q("d2server1").value);b&&(QE("d2server1cira",-1<Q("d2server1").value),1<xxCiraServers.length&&QE("d2server2cira",-1<Q("d2server1").value&&-1<Q("d2server2").value))}
1208 function editMpsPolicyOk(){var b=xxEditMpsPolicyType;"User"==b&&(b="User Initiated");getItem(xxRemoteAccess.AMT_RemoteAccessPolicyRule.responses,"PolicyRuleName",b)?amtstack.Delete("AMT_RemoteAccessPolicyRule",{PolicyRuleName:b},editMpsPolicyOk2):editMpsPolicyOk2()}
1160 -function editMpsPolicyOk2(b,c,a,d){b=11<amtversion||11==amtversion&&6<=amtversion;if(-1==Q("d2server1").value)PullRemoteAccess();else{c=0;"Alert"==xxEditMpsPolicyType&&(c=1);"Periodic"==xxEditMpsPolicyType&&(c=2);a=null;2==c&&(a=Q("d2ttype").value,d=IntToStr(Q("d2timer").value),1==a&&(d=Q("d2timer").value.split(":"),d=IntToStr(parseInt(d[0]))+IntToStr(parseInt(d[1]))),a=btoa(IntToStr(a)+d));var e,n;0<=Q("d2server1").value&&(e='<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://intel.com/wbem/wscim/1/amt-schema/1/AMT_ManagementPresenceRemoteSAP</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="Name">'+
1161 -xxCiraServers[Q("d2server1").value].Name+"</Selector></SelectorSet></ReferenceParameters>");0<=Q("d2server1").value&&1<xxCiraServers.length&&0<=Q("d2server2").value&&(n='<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://intel.com/wbem/wscim/1/amt-schema/1/AMT_ManagementPresenceRemoteSAP</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="Name">'+
1162 -xxCiraServers[Q("d2server2").value].Name+"</Selector></SelectorSet></ReferenceParameters>");d=[];var p=[];b?e&&(0==Q("d2server1cira").value?d.push(e):p.push(e),n&&(0==Q("d2server2cira").value?d.push(n):p.push(n))):e&&(d.push(e),n&&d.push(n));amtstack.AMT_RemoteAccessService_AddRemoteAccessPolicyRule(c,Q("d2lifetime").value,a,d,p,PullRemoteAccess)}}var editEnvironmentDetectionTmp;
1209 +function editMpsPolicyOk2(b,c,a,d){b=11<amtversion||11==amtversion&&6<=amtversion;if(-1==Q("d2server1").value)PullRemoteAccess();else{c=0;"Alert"==xxEditMpsPolicyType&&(c=1);"Periodic"==xxEditMpsPolicyType&&(c=2);a=null;2==c&&(a=Q("d2ttype").value,d=IntToStr(Q("d2timer").value),1==a&&(d=Q("d2timer").value.split(":"),d=IntToStr(parseInt(d[0]))+IntToStr(parseInt(d[1]))),a=btoa(IntToStr(a)+d));var e,q;0<=Q("d2server1").value&&(e='<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://intel.com/wbem/wscim/1/amt-schema/1/AMT_ManagementPresenceRemoteSAP</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="Name">'+
1210 +xxCiraServers[Q("d2server1").value].Name+"</Selector></SelectorSet></ReferenceParameters>");0<=Q("d2server1").value&&1<xxCiraServers.length&&0<=Q("d2server2").value&&(q='<Address xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing">http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</Address><ReferenceParameters xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"><ResourceURI xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd">http://intel.com/wbem/wscim/1/amt-schema/1/AMT_ManagementPresenceRemoteSAP</ResourceURI><SelectorSet xmlns="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd"><Selector Name="Name">'+
1211 +xxCiraServers[Q("d2server2").value].Name+"</Selector></SelectorSet></ReferenceParameters>");d=[];var k=[];b?e&&(0==Q("d2server1cira").value?d.push(e):k.push(e),q&&(0==Q("d2server2cira").value?d.push(q):k.push(q))):e&&(d.push(e),q&&d.push(q));amtstack.AMT_RemoteAccessService_AddRemoteAccessPolicyRule(c,Q("d2lifetime").value,a,d,k,PullRemoteAccess)}}var editEnvironmentDetectionTmp;
1212 function editEnvironmentDetection(b){1!=b&&(editEnvironmentDetectionTmp=xxEnvironementDetection.DetectionStrings?Clone(xxEnvironementDetection.DetectionStrings):[]);var c="";xxAccountAdminName&&(c+="Enter up to 4 intranet domain suffix. If the computer is outside these domains, Intel&reg; AMT local ports will be closed and remote server connections will be active.<br><br>");0==editEnvironmentDetectionTmp.length&&(c+="<i>No intranet domains, Environemnt detection disabled.</i><br>");for(var a in editEnvironmentDetectionTmp)c+=
1213 "<div class=itemBar style=margin-right:0><div style=float:right>"+AddButton2("Remove","editEnvironmentDetectionRemove("+a+")")+"</div><div style=padding-top:3px;max-width:260px;overflow:hidden title='"+editEnvironmentDetectionTmp[a]+"'><b>"+editEnvironmentDetectionTmp[a]+"</b></div></div>";xxAccountAdminName&&4>editEnvironmentDetectionTmp.length&&(c+="<br><input id=edInput placeholder=intranet.org style=width:276px onkeyup=edInputChg() maxlength=63><input type=button id=edAdd value=Add style=width:80px;margin-left:5px onclick=editEnvironmentDetectionAdd()>");
1214 1==b?QH(64,c):setDialogMode(11,"Environment Detection",xxAccountAdminName?3:1,editEnvironmentDetectionDlg,c);edInputChg()}function editEnvironmentDetectionDlg(){if(xxAccountAdminName){var b=Clone(xxEnvironementDetection);b.DetectionStrings=editEnvironmentDetectionTmp;amtstack.Put("AMT_EnvironmentDetectionSettingData",b,editEnvironmentDetectionDlg2,0,1)}}
@@ -1234,11 +1283,11 @@ function powerActionResponse3(b,c,a,d){console.log("powerActionResponse3("+c+","
1283 function checkConsentDisplay(){amtstack.Get("IPS_SecIOService",checkConsentDisplayResponse1)}var xxchangeConsentDisplay=!1;
1284 function checkConsentDisplayResponse1(b,c,a,d){200==d&&(a.Body.DefaultScreen&&(a.Body.DefaultScreen=parseInt(a.Body.DefaultScreen)),a.Body.NumberOfScreens&&(a.Body.NumberOfScreens=parseInt(a.Body.NumberOfScreens)),1==xxchangeConsentDisplay?(xxchangeConsentDisplay=!1,a.Body.DefaultScreen=d6Display.value,amtstack.Put("IPS_SecIOService",a.Body,checkConsentDisplayResponse1)):(d6Display.value=a.Body.DefaultScreen,QV("d6ThirdDisplay",2<a.Body.NumberOfScreens)))}
1285 var xxStorage=null,xxStorageVendors=[],xxStorageApplications=[];function PullStorage(){amtFirstPull|=8;wsstack.comm.PerformAjax("",PullStorageResponse,null,0,"/amt-storage/","GET")}
1237 -function PullStorageResponse(b,c,a){0==amtstack.PendingBatchOperations&&refreshButtons(!0);if(200==c){QV("go21",!0);for(c=0;32>c;c++){do a=b.length,b=b.replace(String.fromCharCode(c),"");while(a>b.length)}try{xxStorage=JSON.parse(b)}catch(v){return}xxStorageVendors=[];xxStorageApplications=[];b=xxStorage.content;if(Array.isArray(b)){a={};for(c in b){var d=b[c].vendor?b[c].vendor:"";a[d]||(a[d]={});var e=b[c].app?b[c].app:"";a[d][e]||(a[d][e]={});b[c].name&&(a[d][e][b[c].name]=b[c])}xxStorage.content=
1238 -b=a}else{if(b["index.htm"]||b["logon.htm"])b[""]={"":{}};b["index.htm"]&&(b[""][""]["index.htm"]=b["index.htm"],delete b["index.htm"]);b["logon.htm"]&&(b[""][""]["logon.htm"]=b["logon.htm"],delete b["logon.htm"])}a=0;var d=TableStart2()+"<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT storage for this computer.<br><br>",n,p,e="";for(c in b){var r=0,m;for(m in b[c]){r++;var g=0,w;for(w in b[c][m]){g++;if(c!=n||m!=p)""!=e&&(d+=e,e="<br>"),n=c,p=m,e=""!=c?e+EscapeHtml(c+" / "+m):e+
1239 -"Root";var l='"'+c+(""!=c?"/":"")+m+(""!=m?"/":"")+w+'"',e=e+('<div class=itemBar onclick=showStorageDetails("'+c+'","'+m+'","'+w+'",'+l+")><div style=float:right>"),e=e+(" "+AddButton2("Download","DownloadFromStorage("+l+',"'+w+'",event)')),e=e+("</div><div style=padding-top:3px><b>"+EscapeHtml(w)+"</b>, <i>"+b[c][m][w].size+" bytes</i></div></div>");a++;-1==xxStorageVendors.indexOf(c)&&xxStorageVendors.push(c);-1==xxStorageApplications.indexOf(m)&&xxStorageApplications.push(m)}0==g&&(wsstack.comm.PerformAjax("",
1240 -function(){},null,0,"/amt-storage/"+c+"/"+m,"DELETE"),wsstack.comm.PerformAjax("",function(){},null,0,"/amt-storage/"+c,"DELETE"))}0==r&&wsstack.comm.PerformAjax("",function(){},null,0,"/amt-storage/"+c,"DELETE")}""!=e&&(d+=e);0==a&&(d+="<div style=padding-left:15px><br><i>No files found.</i></div><br>");d+="<br><td class=r1>"+TableEnd(AddRefreshButton("PullStorage()")+AddButton("Upload...","UploadToStorage()"));QH(56,d)}else QH(56,"Unable to load storage data...<br/>"+
1241 -AddButton("Refresh","PullStorage()"))}function showStorageDetails(b,c,a,d){if(!xxdialogMode){var e="",n=xxStorage.content[b][c][a];""!=b&&(e+=addHtmlValue("Vendor",b));""!=c&&(e+=addHtmlValue("Application",c));e+=addHtmlValue("Name",a);e+=addHtmlValue("Size",n.size+" bytes");n.link&&(e+=addHtmlValue("Link",n.link));setDialogMode(11,"Storage Item",5,showStorageDetailsEx,e,d)}}
1286 +function PullStorageResponse(b,c,a){0==amtstack.PendingBatchOperations&&refreshButtons(!0);if(200==c){QV("go21",!0);for(c=0;32>c;c++){do a=b.length,b=b.replace(String.fromCharCode(c),"");while(a>b.length)}try{xxStorage=JSON.parse(b)}catch(w){return}xxStorageVendors=[];xxStorageApplications=[];b=xxStorage.content;if(Array.isArray(b)){a={};for(c in b){var d=b[c].vendor?b[c].vendor:"";a[d]||(a[d]={});var e=b[c].app?b[c].app:"";a[d][e]||(a[d][e]={});b[c].name&&(a[d][e][b[c].name]=b[c])}xxStorage.content=
1287 +b=a}else{if(b["index.htm"]||b["logon.htm"])b[""]={"":{}};b["index.htm"]&&(b[""][""]["index.htm"]=b["index.htm"],delete b["index.htm"]);b["logon.htm"]&&(b[""][""]["logon.htm"]=b["logon.htm"],delete b["logon.htm"])}a=0;var d=TableStart2()+"<tr><td class=r1 style=padding-left:15px><br>Manage Intel&reg; AMT storage for this computer.<br><br>",q,k,e="";for(c in b){var v=0,n;for(n in b[c]){v++;var p=0,h;for(h in b[c][n]){p++;if(c!=q||n!=k)""!=e&&(d+=e,e="<br>"),q=c,k=n,e=""!=c?e+EscapeHtml(c+" / "+n):e+
1288 +"Root";var m='"'+c+(""!=c?"/":"")+n+(""!=n?"/":"")+h+'"',e=e+('<div class=itemBar onclick=showStorageDetails("'+c+'","'+n+'","'+h+'",'+m+")><div style=float:right>"),e=e+(" "+AddButton2("Download","DownloadFromStorage("+m+',"'+h+'",event)')),e=e+("</div><div style=padding-top:3px><b>"+EscapeHtml(h)+"</b>, <i>"+b[c][n][h].size+" bytes</i></div></div>");a++;-1==xxStorageVendors.indexOf(c)&&xxStorageVendors.push(c);-1==xxStorageApplications.indexOf(n)&&xxStorageApplications.push(n)}0==p&&(wsstack.comm.PerformAjax("",
1289 +function(){},null,0,"/amt-storage/"+c+"/"+n,"DELETE"),wsstack.comm.PerformAjax("",function(){},null,0,"/amt-storage/"+c,"DELETE"))}0==v&&wsstack.comm.PerformAjax("",function(){},null,0,"/amt-storage/"+c,"DELETE")}""!=e&&(d+=e);0==a&&(d+="<div style=padding-left:15px><br><i>No files found.</i></div><br>");d+="<br><td class=r1>"+TableEnd(AddRefreshButton("PullStorage()")+AddButton("Upload...","UploadToStorage()"));QH(56,d)}else QH(56,"Unable to load storage data...<br/>"+
1290 +AddButton("Refresh","PullStorage()"))}function showStorageDetails(b,c,a,d){if(!xxdialogMode){var e="",q=xxStorage.content[b][c][a];""!=b&&(e+=addHtmlValue("Vendor",b));""!=c&&(e+=addHtmlValue("Application",c));e+=addHtmlValue("Name",a);e+=addHtmlValue("Size",q.size+" bytes");q.link&&(e+=addHtmlValue("Link",q.link));setDialogMode(11,"Storage Item",5,showStorageDetailsEx,e,d)}}
1291 function showStorageDetailsEx(b,c){2==b&&wsstack.comm.PerformAjax("",storageDeleteResponse,null,0,"/amt-storage/"+c,"DELETE")}function storageDeleteResponse(b,c){200!=c?messagebox("Storage","Unable to delete file (ERR"+c+"), check that the computer is powered on."):PullStorage()}function DownloadFromStorage(b,c,a){xxdialogMode||(haltEvent(a),wsstack.comm.PerformAjax("",DownloadFromStorageEx,c,0,"/amt-storage/"+b,"GET"))}
1292 function DownloadFromStorageEx(b,c,a){200!=c||null==b?console.log(c,"Data = null"):saveAs(data2blob(b),a)}function OpenFromStorage(b,c){if(!xxdialogMode){haltEvent(c);var a=window.open("http://"+wsstack.comm.host+":"+wsstack.comm.port+"/amt-storage/"+b,"_blank");a.opener=null;a.focus()}}function PushToStorage(b,c,a){var d=null;7E3<c.length&&(d=[b,c.substring(7E3)],c=c.substring(0,7E3));wsstack.comm.PerformAjax(c,PushToStorageResponse,d,0,"/amt-storage/"+b+(1==a?"?append=":""),"PUT")}
1293 function PushToStorageResponse(b,c,a){200!=c?messagebox("Storage","Unable to push file (ERR"+c+"), check that the computer is powered on."):null!=a?PushToStorage(a[0],a[1],!0):PullStorage()}
@@ -1248,22 +1297,22 @@ a+='<br><div style=height:16px><input id=mstoragelink style=float:right;width:24
1297 setDialogMode(11,"Storage Upload",3,UploadToStorageEx,a,b);b&&SetStorageName(c)}}function UploadToStorageEx(b,c){if(c)d=new FileReader,d.onload=UploadToStorageEx2,d.filename=Q("mstoragefile").value,d.readAsBinaryString(c);else{var a=Q("mstoragefile");if(1==a.files.length){var d=new FileReader;d.onload=UploadToStorageEx2;d.filename=a.files[0].name;d.readAsBinaryString(a.files[0])}}}
1298 function SetStorageName(b){b||(b=Q("mstoragefile"),b=1==b.files.length?b.files[0].name:"");b=b.split(" ").join("");var c=b.split("-");3==c.length&&12>c[0].length&&12>c[1].length&&(Q("mstoragevendor").value=c[0],Q("mstorageapplication").value=c[1],b=c[2]);b=b.split("-").join("");b.endsWith(".gz")&&(b=b.substring(0,b.length-3));b.endsWith(".htm")||b.endsWith(".html")?Q("mstoragetype").value="text/html":b.endsWith(".txt")&&(Q("mstoragetype").value="text/plain");11<b.length&&(b=b.substring(0,11));Q("mstoragefilename").value=
1299 b}
1251 -function UploadToStorageEx2(b){var c;c=Q("mstoragevendor").value;var a=Q("mstorageapplication").value,d=Q("mstoragefilename").value;""==d&&(d="Filename");var e=Q("mstoragetype").value;""==e&&(e="application/octet-stream");var n=Q("mstoragelink").value;""!=c||""!=a||"logon.htm"!=d.toLowerCase()&&"index.htm"!=d.toLowerCase()?(""==c&&(c="Vendor"),""==a&&(a="App"),c=c+"/"+a+"/"+d):c=d.toLowerCase();a="<metadata><headers>";d=b.target.filename;d||(d=Q("mstoragefile").files[0].name);d.endsWith(".gz")&&(a+=
1252 -"<h>Content-Encoding: gzip</h>");a+="<h>Content-Type: "+e+"</h></headers>";""!=n&&(a+="<link>"+n+"</link>");a+="</metadata>"+b.target.result;PushToStorage(c,a)}function _fmtdatetime(b){return b.replace("T"," ").replace("Z","")}
1300 +function UploadToStorageEx2(b){var c;c=Q("mstoragevendor").value;var a=Q("mstorageapplication").value,d=Q("mstoragefilename").value;""==d&&(d="Filename");var e=Q("mstoragetype").value;""==e&&(e="application/octet-stream");var q=Q("mstoragelink").value;""!=c||""!=a||"logon.htm"!=d.toLowerCase()&&"index.htm"!=d.toLowerCase()?(""==c&&(c="Vendor"),""==a&&(a="App"),c=c+"/"+a+"/"+d):c=d.toLowerCase();a="<metadata><headers>";d=b.target.filename;d||(d=Q("mstoragefile").files[0].name);d.endsWith(".gz")&&(a+=
1301 +"<h>Content-Encoding: gzip</h>");a+="<h>Content-Type: "+e+"</h></headers>";""!=q&&(a+="<link>"+q+"</link>");a+="</metadata>"+b.target.result;PushToStorage(c,a)}function _fmtdatetime(b){return b.replace("T"," ").replace("Z","")}
1302 function _fmtinterval(b){b=b.replace("T","").substring(b.indexOf("P")+1);b=" "+b.replace("D"," days ").replace("H"," hours ").replace("M"," minutes ");b=b.replace(" 1 days "," 1 day ").replace(" 1 hours "," 1 hour ").replace(" 1 minutes "," 1 minute ");return b.substring(0,b.length-1)}function _fmttimepad(b){for(b=""+b;2>b.length;)b="0"+b;return b}var xxAlarms=null;
1303 function PullAlarms(){var b=TableStart2()+"<tr><td class=r1 style=padding-left:15px><br>Manage wake alarms.<br><br>";amtstack.Enum("IPS_AlarmClockOccurrence",function(c,a,d,e){if(200==e){QV("go23",!0);if(0<d.length)for(xxAlarms=d,c=0;c<d.length;c++)a="<b>"+d[c].ElementName+"</b>, wake on "+(new Date(d[c].StartTime.Datetime)).toLocaleString().replace(", "," at "),void 0!=d[c].Interval&&(a+=" and each"+_fmtinterval(d[c].Interval.Interval)),1==d[c].DeleteOnCompletion&&(a+=", delete when done"),b+="<div class=itemBar onclick=showAlertDetails("+
1304 c+")><div style=float:right>",xxAccountAdminName&&(b+=" "+AddButton2("Edit...","showAddAlarm("+c+")")),b+="</div><div style=padding-top:3px;width:auto;float:left;overflow-x:hidden>"+a+"</div></div>";else xxAlarms=null,b+="<div style=padding-left:15px><br><i>No wake alarms registered.</i></div><br>";d="<div>&nbsp;"+AddRefreshButton("PullAlarms()");xxAccountAdminName&&(d+=AddButton("Remove all alarms","RemoveAllAlarms()")+AddButton("Add","showAddAlarm()"));b+="<br><td class=r1>"+TableEnd(d+"</div>");
1305 QH(58,b)}},null,!0)}
1306 function prepareAlarmOccurenceTemplate(b,c,a,d,e){return'<d:AlarmTemplate xmlns:d="http://intel.com/wbem/wscim/1/amt-schema/1/AMT_AlarmClockService" xmlns:s="http://intel.com/wbem/wscim/1/ips-schema/1/IPS_AlarmClockOccurrence"><s:InstanceID>'+b+'</s:InstanceID><s:StartTime><p:Datetime xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+a+'</p:Datetime></s:StartTime><s:Interval><p:Interval xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+d+"</p:Interval></s:Interval><s:DeleteOnCompletion>"+e+
1258 -"</s:DeleteOnCompletion></d:AlarmTemplate>"}function RemoveAllAlarms(){setDialogMode(1,"Remove all wake alarms",3,RemoveAllAlarmsEx,"Confirm removal of all wake alarms?")}function RemoveAllAlarmsEx(){var b=xxAlarms.length,c;for(c in xxAlarms)amtstack.Delete("IPS_AlarmClockOccurrence",xxAlarms[c],function(a,c,e,n){0==--b&&PullAlarms()})}
1307 +"</s:DeleteOnCompletion></d:AlarmTemplate>"}function RemoveAllAlarms(){setDialogMode(1,"Remove all wake alarms",3,RemoveAllAlarmsEx,"Confirm removal of all wake alarms?")}function RemoveAllAlarmsEx(){var b=xxAlarms.length,c;for(c in xxAlarms)amtstack.Delete("IPS_AlarmClockOccurrence",xxAlarms[c],function(a,c,e,q){0==--b&&PullAlarms()})}
1308 function showAddAlarm(b){if(!xxdialogMode){QE("d25alarm_name",!b);if(void 0!=b){var c=xxAlarms[b],a=new Date(c.StartTime.Datetime);Q("d25alarm_name").value=c.ElementName;Q("d25alarm_sdate").value=a.getFullYear()+"-"+_fmttimepad(a.getMonth()+1)+"-"+_fmttimepad(a.getDate());Q("d25alarm_stime").value=a.getHours()+":"+_fmttimepad(a.getMinutes())+":"+_fmttimepad(a.getSeconds());if(c.Interval){var a=c.Interval.Interval.replace("P","").replace("T","").replace("D","D,").replace("H","H,").replace("M","M,").split(","),
1260 -d=[0,0,0],e;for(e in a){var n=a[e].length-1;"D"==a[e][n]&&(d[0]=parseInt(a[e].substring(0,n)));"H"==a[e][n]&&(d[1]=parseInt(a[e].substring(0,n)));"M"==a[e][n]&&(d[2]=parseInt(a[e].substring(0,n)))}Q("d25alarm_interval").value=d.join("-")}else Q("d25alarm_interval").value="";Q("d25alarm_doc").value=1==c.DeleteOnCompletion?1:0}else c=new Date,c.setDate((new Date).getDate()+1),Q("d25alarm_name").value="",Q("d25alarm_sdate").value=c.getFullYear()+"-"+_fmttimepad(c.getMonth()+1)+"-"+_fmttimepad(c.getDate()),
1309 +d=[0,0,0],e;for(e in a){var q=a[e].length-1;"D"==a[e][q]&&(d[0]=parseInt(a[e].substring(0,q)));"H"==a[e][q]&&(d[1]=parseInt(a[e].substring(0,q)));"M"==a[e][q]&&(d[2]=parseInt(a[e].substring(0,q)))}Q("d25alarm_interval").value=d.join("-")}else Q("d25alarm_interval").value="";Q("d25alarm_doc").value=1==c.DeleteOnCompletion?1:0}else c=new Date,c.setDate((new Date).getDate()+1),Q("d25alarm_name").value="",Q("d25alarm_sdate").value=c.getFullYear()+"-"+_fmttimepad(c.getMonth()+1)+"-"+_fmttimepad(c.getDate()),
1310 Q("d25alarm_stime").value=c.getHours()+":"+_fmttimepad(c.getMinutes())+":00",Q("d25alarm_interval").value="",Q("d25alarm_doc").value=0;setDialogMode(25,"Add new alarm",void 0!=b?7:3,showAddAlarmOk,"",b);alertDialogUpdate()}}function alertDialogUpdate(){var b=Q("d25alarm_interval").value.split("-").length,b=0<Q("d25alarm_name").value.length&&3==Q("d25alarm_sdate").value.split("-").length&&3==Q("d25alarm_stime").value.split(":").length&&(1==b||3==b);QE("c48",b)}
1311 function showAddAlarmOk(b,c){if(2==b)showAlertDetailsDelete(b,c);else{var a=Q("d25alarm_name").value,d=Q("d25alarm_sdate").value.split("-"),e=Q("d25alarm_stime").value.split(":"),d=new Date(d[0],d[1]-1,d[2],e[0],e[1],e[2],0),d=_fmttimepad(d.getUTCFullYear())+"-"+_fmttimepad(d.getUTCMonth()+1)+"-"+_fmttimepad(d.getUTCDate())+"T"+_fmttimepad(d.getUTCHours())+":"+_fmttimepad(d.getUTCMinutes())+":"+_fmttimepad(d.getUTCSeconds())+"Z",e=Q("d25alarm_interval").value.split("-");3!=e.length&&(e=[0,0,0]);var e=
1263 -"P"+e[0]+"DT"+e[1]+"H"+e[2]+"M",n=1==Q("d25alarm_doc").value,a=prepareAlarmOccurenceTemplate(a,a,d,e,n);void 0==c?wsstack.ExecMethodXml(amtstack.CompleteName("AMT_AlarmClockService"),"AddAlarm",a,function(a,b,c,d){200!=d?messagebox("Add alarm","Failed to add alarm. Status: "+d+".<br/>Verify the alarm is for a future time."):0!=c.Body.ReturnValue?messagebox("Add alarm","Failed to add alarm, "+c.Body.ReturnValueStr+".<br/>Verify the alarm is for a future time."):PullAlarms()}):(a=Clone(xxAlarms[c]),
1264 -a.StartTime='<p:Datetime xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+d+"</p:Datetime>",a.Interval='<p:Interval xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+e+"</p:Interval>",a.DeleteOnCompletion=n,amtstack.Put("IPS_AlarmClockOccurrence",a,function(a,b,c,d){200!=d?messagebox("Edit alarm","Failed to change alarm. Status: "+d+".<br/>Verify the alarm for at a future time."):PullAlarms()},null,null,{InstanceID:a.InstanceID}))}}
1312 +"P"+e[0]+"DT"+e[1]+"H"+e[2]+"M",q=1==Q("d25alarm_doc").value,a=prepareAlarmOccurenceTemplate(a,a,d,e,q);void 0==c?wsstack.ExecMethodXml(amtstack.CompleteName("AMT_AlarmClockService"),"AddAlarm",a,function(a,b,c,d){200!=d?messagebox("Add alarm","Failed to add alarm. Status: "+d+".<br/>Verify the alarm is for a future time."):0!=c.Body.ReturnValue?messagebox("Add alarm","Failed to add alarm, "+c.Body.ReturnValueStr+".<br/>Verify the alarm is for a future time."):PullAlarms()}):(a=Clone(xxAlarms[c]),
1313 +a.StartTime='<p:Datetime xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+d+"</p:Datetime>",a.Interval='<p:Interval xmlns:p="http://schemas.dmtf.org/wbem/wscim/1/common">'+e+"</p:Interval>",a.DeleteOnCompletion=q,amtstack.Put("IPS_AlarmClockOccurrence",a,function(a,b,c,d){200!=d?messagebox("Edit alarm","Failed to change alarm. Status: "+d+".<br/>Verify the alarm for at a future time."):PullAlarms()},null,null,{InstanceID:a.InstanceID}))}}
1314 function showAlertDetails(b){if(!xxdialogMode){var c=xxAlarms[b],a=new Date(c.StartTime.Datetime),a="<div style=text-align:left>"+addHtmlValue("Name",c.ElementName)+addHtmlValue("Wake time",a.toLocaleString().replace(", "," at "));void 0!=c.Interval&&(a+=addHtmlValue("Internal",_fmtinterval(c.Interval.Interval)));a+=addHtmlValue("After wake",1==c.DeleteOnCompletion?"Delete Alarm":"Keep Alarm")+"</div>";messagebox("Alarm "+c.ElementName,a);setDialogMode(11,"Alarm "+c.ElementName,5,showAlertDetailsDelete,
1266 -a,b)}}function showAlertDetailsDelete(b,c){2==b&&amtstack.Delete("IPS_AlarmClockOccurrence",xxAlarms[c],function(a,b,c,n){PullAlarms()})}function script_runScriptDlg(){xxdialogMode||scriptstate||setDialogMode(11,"Run Script",3,script_runScriptDlgOk,"<br><input id=scriptopen type=file style=width:100% accept=.mescript>")}function script_runScriptDlgOk(b){if(1==b&&(b=Q("scriptopen"),1==b.files.length)){var c=new FileReader;c.onload=script_onScriptRead;c.readAsBinaryString(b.files[0])}}
1315 +a,b)}}function showAlertDetailsDelete(b,c){2==b&&amtstack.Delete("IPS_AlarmClockOccurrence",xxAlarms[c],function(a,b,c,q){PullAlarms()})}function script_runScriptDlg(){xxdialogMode||scriptstate||setDialogMode(11,"Run Script",3,script_runScriptDlgOk,"<br><input id=scriptopen type=file style=width:100% accept=.mescript>")}function script_runScriptDlgOk(b){if(1==b&&(b=Q("scriptopen"),1==b.files.length)){var c=new FileReader;c.onload=script_onScriptRead;c.readAsBinaryString(b.files[0])}}
1316 function script_onScriptRead(b){var c;try{c=JSON.parse(b.target.result)}catch(e){}if(20==currentView){c.scriptText&&(Q("scriptarea").value=c.scriptText);c.mescript&&(Q("compiledarea").value=rstr2hex(atob(c.mescript)));c.blocks?(script_setBuildBlocks(c.blocks),scriptViewButton(1)):(script_setBuildBlocks(),scriptViewButton(0));c.scriptBlocks?script_BlockScript=c.scriptBlocks:script_BuildingBlocks||(script_BlockScript=[]);for(var a in script_BlockScript)if(c=script_BlockScript[a],b=script_BuildingBlocks[c.xname]){b=
1317 Clone(b);b.id=c.id;b.xname=c.xname;for(var d in b.vars)c.vars[d]&&(b.vars[d].value=c.vars[d].value);script_BlockScript[a]=b}fupdatescript();delete scriptstate;resetScriptButton()}else a={_interactive:1,_certificates:1,_mode:"Firmware"},c&&c.mescript&&(scriptstate=script_setup(atob(c.mescript),a)),scriptstate?(scriptstate.wsstack=wsstack,scriptstate.amtstack=amtstack,scriptstate.onStep=script_updateScriptState,scriptstate.onConsole=script_console,scriptstate.start(100)):messagebox("Run Script","Invalid script file.")}
1318 function script_updateScriptState(){scriptstate&&(QV(11,0<scriptstate.state),center(),0==scriptstate.state&&(scriptstate=void 0))}function script_console(b){0==b.indexOf("INFO: ")&&(b=b.substring(6));0==b.indexOf("SUCCESS: ")&&(b=b.substring(9));0==b.indexOf("ERROR: ")&&(b=b.substring(7));QH(12,", "+b)}function script_Stop(){scriptstate&&(1==scriptstate.dialog&&setDialogMode(0),scriptstate.stop(),scriptstate.state=0,script_updateScriptState())}
@@ -1272,21 +1321,21 @@ function scriptLoadStartingBlocks(){var b=new XMLHttpRequest;b.onload=function()
1321 function scriptViewButton(b){script_BuilderView=b;QV("scripteditor",0==b);QV("scriptbuilder",1==b);QV("viewEditorButton",script_BuildingBlocks&&1==b);QV("viewBuilderButton",script_BuildingBlocks&&0==b)}
1322 function script_setBuildBlocks(b){script_BuildingBlocks=b;var c="";if(b)for(var a in b)95!=a.charCodeAt(0)&&(c+="<div id=sblock_"+a+' style=cursor:pointer;background-color:#ccc;width:auto;padding:5px;margin:2px ondblclick=script_faddblock("'+a+'") draggable=true ondragstart=script_fondragstart(event,this) ondragend=script_fondragend(event,this) title="'+b[a].desc+'"',c+=">"+b[a].name+"</div>");QH("blocks",c);script_fonfilterchanged();scriptViewButton(script_BuildingBlocks?1:0)}
1323 function script_faddblock(b){var c=Clone(script_BuildingBlocks[b]);c.id=Math.random();c.xname=b;script_BlockScript.push(c);script_BlockScriptSelectedId=script_BlockScript.length-1;fupdatescript()}function script_feditblock(b){xxdialogMode||setDialogMode(11,"Edit "+script_BuildingBlocks[b].name,3,script_feditblockEx,"Edit this block? This operation will reset the block editor and load the block code into the code editor.",b)}
1275 -function script_feditblockEx(b,c){script_newScriptDlgOk();scriptViewButton(0);var a,d=script_BuildingBlocks[c];a=""+("##!BLOCK!##\r\n#id="+c+"\r\n#name="+d.name+"\r\n#desc="+d.desc+"\r\n##!BLOCK!##\r\n");for(var e in d.vars){var n=d.vars[e];a+="##!VAR!##\r\n#id="+e+"\r\n#name="+n.name+"\r\n#desc="+n.desc+"\r\n#type="+n.type+"\r\n";n.maxlength&&(a+="#maxlength="+n.maxlength+"\r\n");if(n.values)for(var p in n.values)a+="#values-"+p+"="+n.values[p]+"\r\n";a+="#value="+n.value+"\r\n##SWAP %%%"+e+"%%% "+
1276 -n.value+"\r\n"}a+="##!VAR!##\r\n##SWAP %%%~%%% 0\r\n\r\n##!BLOCK!##\r\n"+d.code+"\r\n##!BLOCK!##\r\n";Q("scriptarea").value=a}
1277 -function script_fConvertScriptToJsonBlock(b){var c={};b=b.split("##!BLOCK!##\n");var a=b[1].split("\n"),d;for(d in a){var e=a[d].split("=");2==e.length&&(c[e[0].substring(1)]=e[1])}c.vars={};scriptvariables=b[2].split("##!VAR!##\n");for(d in scriptvariables){var a=scriptvariables[d].split("\n"),n={},p={},r=0,m;for(m in a)e=a[m].split("="),2==e.length&&e[1]&&e[0]&&0<e[0].length&&("#values-"==e[0].substring(0,8)?(p[e[0].substring(8)]=e[1],r++):n[e[0].substring(1)]=e[1]);n.id&&(0<r&&(n.values=p),a=n.id,
1278 -delete n.id,c.vars[a]=n)}c.code=b[3];a=c.id;delete c.id;d={};d[a]=c;return JSON.stringify(d,null," ")}function script_fonfilterchanged(){var b=Q("blockfilter").value.toLowerCase(),c;for(c in script_BuildingBlocks)95!=c.charCodeAt(0)&&QV("sblock_"+c,0<=script_BuildingBlocks[c].name.toLowerCase().indexOf(b)||0<=script_BuildingBlocks[c].desc.toLowerCase().indexOf(b))}var script_fonclickDblClickDetectIndex=null,script_fonclickDblClickDetectTime=null;
1324 +function script_feditblockEx(b,c){script_newScriptDlgOk();scriptViewButton(0);var a,d=script_BuildingBlocks[c];a=""+("##!BLOCK!##\r\n#id="+c+"\r\n#name="+d.name+"\r\n#desc="+d.desc+"\r\n##!BLOCK!##\r\n");for(var e in d.vars){var q=d.vars[e];a+="##!VAR!##\r\n#id="+e+"\r\n#name="+q.name+"\r\n#desc="+q.desc+"\r\n#type="+q.type+"\r\n";q.maxlength&&(a+="#maxlength="+q.maxlength+"\r\n");if(q.values)for(var k in q.values)a+="#values-"+k+"="+q.values[k]+"\r\n";a+="#value="+q.value+"\r\n##SWAP %%%"+e+"%%% "+
1325 +q.value+"\r\n"}a+="##!VAR!##\r\n##SWAP %%%~%%% 0\r\n\r\n##!BLOCK!##\r\n"+d.code+"\r\n##!BLOCK!##\r\n";Q("scriptarea").value=a}
1326 +function script_fConvertScriptToJsonBlock(b){var c={};b=b.split("##!BLOCK!##\n");var a=b[1].split("\n"),d;for(d in a){var e=a[d].split("=");2==e.length&&(c[e[0].substring(1)]=e[1])}c.vars={};scriptvariables=b[2].split("##!VAR!##\n");for(d in scriptvariables){var a=scriptvariables[d].split("\n"),q={},k={},v=0,n;for(n in a)e=a[n].split("="),2==e.length&&e[1]&&e[0]&&0<e[0].length&&("#values-"==e[0].substring(0,8)?(k[e[0].substring(8)]=e[1],v++):q[e[0].substring(1)]=e[1]);q.id&&(0<v&&(q.values=k),a=q.id,
1327 +delete q.id,c.vars[a]=q)}c.code=b[3];a=c.id;delete c.id;d={};d[a]=c;return JSON.stringify(d,null," ")}function script_fonfilterchanged(){var b=Q("blockfilter").value.toLowerCase(),c;for(c in script_BuildingBlocks)95!=c.charCodeAt(0)&&QV("sblock_"+c,0<=script_BuildingBlocks[c].name.toLowerCase().indexOf(b)||0<=script_BuildingBlocks[c].desc.toLowerCase().indexOf(b))}var script_fonclickDblClickDetectIndex=null,script_fonclickDblClickDetectTime=null;
1328 function script_fonclick(b,c){if(!xxdialogMode){script_BlockScriptSelectedId=null;c&&(c=fgetParentWithId(c),c.id.startsWith("xblock_")&&(script_BlockScriptSelectedId=c.id.substring(7)));fupdatescript();haltEvent(b);if(script_fonclickDblClickDetectIndex==script_BlockScriptSelectedId&&250>(new Date).getTime()-script_fonclickDblClickDetectTime)return script_foneditclick(script_BlockScriptSelectedId);script_fonclickDblClickDetectIndex=script_BlockScriptSelectedId;script_fonclickDblClickDetectTime=(new Date).getTime()}}
1329 function script_fondragstart(b,c){xxdialogMode||(c=fgetParentWithId(c),c.style.opacity="0.4",b.dataTransfer.effectAllowed="move",b.dataTransfer.setData("scriptbuilder/block",c.id))}function script_fondragend(b,c){xxdialogMode||(c=fgetParentWithId(c),c.style.opacity="1.0")}function script_fondragenter(b,c){xxdialogMode||(fgetParentWithId(c).style["border-top"]="solid 2px black")}
1330 function script_fondragleave(b,c){if(!xxdialogMode){b=b.originalEvent||b;var a=document.elementFromPoint(b.pageX,b.pageY);c.contains(a)||(fgetParentWithId(c).style["border-top"]="none")}}
1331 function script_fondrop(b,c){if(!xxdialogMode){c=fgetParentWithId(c);var a,d=b.dataTransfer.getData("scriptbuilder/block"),e=parseInt(c.id.substring(7));""==d?documentFileSelectHandler(b):(d.startsWith("sblock_")?(a=Clone(script_BuildingBlocks[d.substring(7)]),a.id=Math.random(),a.xname=d.substring(7)):(d=parseInt(d.substring(7)),a=script_BlockScript[d],script_BlockScript.splice(d,1),e>d&&e--),"scriptblocks"==c.id?(a&&script_BlockScript.push(a),script_BlockScriptSelectedId=script_BlockScript.length-
1332 1):(script_BlockScript.splice(e,0,a),script_BlockScriptSelectedId=e),fupdatescript(),haltEvent(b))}}
1284 -function script_foneditclick(b){if(!xxdialogMode){var c=script_BlockScript[b];script_BlockScriptSelectedId=b;fupdatescript();if(null!=c){var a=c.vars?7:5,d=c.desc+"<br><br>";if(c.vars)for(var e in c.vars){var n=c.vars[e].value,p="";c.vars[e].maxlength&&(p+=" maxlength="+c.vars[e].maxlength);2==c.vars[e].type&&(p+=" onkeypress='return numbersOnly(event)'");if(1==c.vars[e].type||2==c.vars[e].type)n="<input title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" value='"+c.vars[e].value+"' "+p+" style=width:100%></input>";
1285 -if(3==c.vars[e].type){var n="<select title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" style=width:100%;padding:0;margin:0>",r;for(r in c.vars[e].values)n+="<option value="+r+(r==c.vars[e].value?" selected":"")+">"+c.vars[e].values[r]+"</option>";n+="</select>"}4==c.vars[e].type&&(n="<input type=password autocomplete=off title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" value='"+c.vars[e].value+"' "+p+" style=width:100%></input>");5==c.vars[e].type&&(n="");6==c.vars[e].type&&(n="<input type=file title='"+
1286 -c.vars[e].desc+"' id=scriptXvalue_"+e+" "+p+" style=width:100%></input>");d+='<table style=width:100% title="'+c.vars[e].desc+'"><td style=width:120px>'+c.vars[e].name+"<td><b>"+n+"</b></table>";if(5==c.vars[e].type){var d=d+("<ul id=scriptXvalue_"+e+' style="list-style-type:none;height:100px;overflow:auto;width:100%;border:1px solid #000;background-color:white;overflow-x:hidden;margin:0;padding:0">'),m;for(m in c.vars[e].values)n="",0<=c.vars[e].value.indexOf(m)&&(n=" checked"),d+="<li><label><input type=checkbox id=scriptXvaluex_"+
1287 -e+"-"+m+""+n+">"+c.vars[e].values[m]+"</label></li>";d+="</ul>"}}}setDialogMode(11,c.name,a,script_foneditclickEx,d,b)}}
1288 -function script_foneditclickEx(b,c){if(!xxdialogMode){if(2==b)script_BlockScript.splice(c,1),script_BlockScriptSelectedId==c&&(script_BlockScriptSelectedId=null);else{var a=script_BlockScript[c];if(a.vars)for(var d in a.vars)if(5==a.vars[d].type){a.vars[d].value=[];for(var e in a.vars[d].values)Q("scriptXvaluex_"+d+"-"+e).checked&&a.vars[d].value.push(e)}else if(6==a.vars[d].type){var n=Q("scriptXvalue_"+d);if(1==n.files.length){var p=new FileReader;p.onload=function(b){a.vars[d].value=btoa(b.target.result);
1289 -fupdatescript()};p.readAsBinaryString(n.files[0])}}else a.vars[d].value=Q("scriptXvalue_"+d).value}fupdatescript()}}function fgetParentWithId(b){for(;!b.id;)b=b.parentElement;return b}
1333 +function script_foneditclick(b){if(!xxdialogMode){var c=script_BlockScript[b];script_BlockScriptSelectedId=b;fupdatescript();if(null!=c){var a=c.vars?7:5,d=c.desc+"<br><br>";if(c.vars)for(var e in c.vars){var q=c.vars[e].value,k="";c.vars[e].maxlength&&(k+=" maxlength="+c.vars[e].maxlength);2==c.vars[e].type&&(k+=" onkeypress='return numbersOnly(event)'");if(1==c.vars[e].type||2==c.vars[e].type)q="<input title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" value='"+c.vars[e].value+"' "+k+" style=width:100%></input>";
1334 +if(3==c.vars[e].type){var q="<select title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" style=width:100%;padding:0;margin:0>",v;for(v in c.vars[e].values)q+="<option value="+v+(v==c.vars[e].value?" selected":"")+">"+c.vars[e].values[v]+"</option>";q+="</select>"}4==c.vars[e].type&&(q="<input type=password autocomplete=off title='"+c.vars[e].desc+"' id=scriptXvalue_"+e+" value='"+c.vars[e].value+"' "+k+" style=width:100%></input>");5==c.vars[e].type&&(q="");6==c.vars[e].type&&(q="<input type=file title='"+
1335 +c.vars[e].desc+"' id=scriptXvalue_"+e+" "+k+" style=width:100%></input>");d+='<table style=width:100% title="'+c.vars[e].desc+'"><td style=width:120px>'+c.vars[e].name+"<td><b>"+q+"</b></table>";if(5==c.vars[e].type){var d=d+("<ul id=scriptXvalue_"+e+' style="list-style-type:none;height:100px;overflow:auto;width:100%;border:1px solid #000;background-color:white;overflow-x:hidden;margin:0;padding:0">'),n;for(n in c.vars[e].values)q="",0<=c.vars[e].value.indexOf(n)&&(q=" checked"),d+="<li><label><input type=checkbox id=scriptXvaluex_"+
1336 +e+"-"+n+""+q+">"+c.vars[e].values[n]+"</label></li>";d+="</ul>"}}}setDialogMode(11,c.name,a,script_foneditclickEx,d,b)}}
1337 +function script_foneditclickEx(b,c){if(!xxdialogMode){if(2==b)script_BlockScript.splice(c,1),script_BlockScriptSelectedId==c&&(script_BlockScriptSelectedId=null);else{var a=script_BlockScript[c];if(a.vars)for(var d in a.vars)if(5==a.vars[d].type){a.vars[d].value=[];for(var e in a.vars[d].values)Q("scriptXvaluex_"+d+"-"+e).checked&&a.vars[d].value.push(e)}else if(6==a.vars[d].type){var q=Q("scriptXvalue_"+d);if(1==q.files.length){var k=new FileReader;k.onload=function(b){a.vars[d].value=btoa(b.target.result);
1338 +fupdatescript()};k.readAsBinaryString(q.files[0])}}else a.vars[d].value=Q("scriptXvalue_"+d).value}fupdatescript()}}function fgetParentWithId(b){for(;!b.id;)b=b.parentElement;return b}
1339 function fupdatescript(){var b="",c;for(c in script_BlockScript){b+="<div id=xblock_"+c+" style=cursor:pointer;min-height:24px;background-color:#"+(script_BlockScriptSelectedId==c?"aaa":"ccc")+';width:auto;padding:5px;margin:2px draggable=true onclick=script_fonclick(event,this) ondragenter=script_fondragenter(event,this) ondragleave=script_fondragleave(event,this) ondragstart=script_fondragstart(event,this) ondragend=script_fondragend(event,this) ondrop=script_fondrop(event,this) title="'+script_BlockScript[c].desc+
1340 '"';b+="><input style=float:right type=button value=Edit... onclick=script_foneditclick("+c+")><div style=font-size:16px><b>"+script_BlockScript[c].name+"</b>";if(script_BlockScript[c].vars){var a=0,b=b+"<table class='scriptBlockVar us' cellpadding=0 cellspacing=0 style=width:100%;border-radius:5px;margin-top:8px>",d;for(d in script_BlockScript[c].vars){var e=script_BlockScript[c].vars[d].value;4==script_BlockScript[c].vars[d].type&&0<script_BlockScript[c].vars[d].value.length&&(e="*****");3==script_BlockScript[c].vars[d].type&&
1341 (e=script_BlockScript[c].vars[d].values[script_BlockScript[c].vars[d].value]);6==script_BlockScript[c].vars[d].type&&(e=script_BlockScript[c].vars[d].value?"Binary file, "+script_BlockScript[c].vars[d].value.length+" bytes":"Not set");b+="<tr title='"+script_BlockScript[c].vars[d].desc+"'><td width=200px style='"+(0<a?"border-top:1px solid #a810a8":"")+"'><p>"+script_BlockScript[c].vars[d].name+"<td style='"+(0<a?"border-top:1px solid #a810a8":"")+"'>"+e;a++}b+="<tr><td style=height:3px></table>"}b+=
@@ -1301,16 +1350,16 @@ function editscript_updateScriptState(b){var c="";if(b&&null!=b){var a=[],d;for(
1350 50)+"...");QH("EditScriptStatus",c)}function script_toString(b){return"object"==typeof b?JSON.stringify(b):b}
1351 function script_saveScript(b){xxdialogMode||scriptstate||(b&&1==b.shiftKey?(setDialogMode(11,"Script Block",1,null,"<br><textarea id=scriptSaveScriptJsonBlock style=width:100%;height:200px;resize:vertical />"),QH("scriptSaveScriptJsonBlock",script_fConvertScriptToJsonBlock(Q("scriptarea").value))):setDialogMode(11,"Save Script",3,script_saveScriptOk,"<br><input id=scriptsavename style=width:100% value=test.mescript >"))}
1352 function script_saveScriptOk(){if(!xxdialogMode){var b=JSON.stringify({scriptText:Q("scriptarea").value,mescript:btoa(script_compile(Q("scriptarea").value)),blocks:script_StartingBuildingBlocks,scriptBlocks:script_BlockScript},null," ");saveAs(data2blob(b),Q("scriptsavename").value)}}var xxdialogMode,xxdialogFunc,xxdialogButtons,xxdialogTag;
1304 -function setDialogMode(b,c,a,d,e,n){xxdialogMode=b;xxdialogFunc=d;xxdialogButtons=a;xxdialogTag=n;QE("c48",!0);QV("c48",a&1);QV("c47",a&2);QV(59,a&2);QV("c49",a&4);c&&QH(60,c);for(c=1;26>c;c++)QV("dialog"+c,c==b);QV("dialog",b);e&&(11==b?QH(64,e):QH(61,e));0!=xxdialogMode&&iderToggleDiskMap(!1)}
1353 +function setDialogMode(b,c,a,d,e,q){xxdialogMode=b;xxdialogFunc=d;xxdialogButtons=a;xxdialogTag=q;QE("c48",!0);QV("c48",a&1);QV("c47",a&2);QV(59,a&2);QV("c49",a&4);c&&QH(60,c);for(c=1;26>c;c++)QV("dialog"+c,c==b);QV("dialog",b);e&&(11==b?QH(64,e):QH(61,e));0!=xxdialogMode&&iderToggleDiskMap(!1)}
1354 function dialogclose(b){var c=xxdialogFunc,a=xxdialogButtons,d=xxdialogTag;setDialogMode();(a&8||b)&&c&&c(b,d)}
1355 function center(){QS("dialog").left=(getDocWidth()-400)/2+"px";var b=0,c=Q(8).offsetHeight-(0==fullscreen?126:53);""==QS(11).display&&(b+=32);""==QS(9).display&&(b+=32);QS(16).height=Q(8).offsetHeight-b-(0==fullscreen?16:0)+"px";QS("Desk")["max-height"]=c-b+"px";QS("Desk")["max-width"]=Q(8).offsetWidth-(0==fullscreen?32:0)+"px";0!=Q(43).offsetWidth&&(QS("Desk")["max-width"]=Q(43).offsetWidth);
1356 fullscreen?(QS(16)["overflow-y"]="hidden",b=(c-b-Q("Desk").offsetHeight)/2,QS("Desk")["margin-top"]=b+"px",QS("Desk")["margin-bottom"]=b+"px"):(QS(16)["overflow-y"]="scroll",QS("Desk")["margin-top"]="0",QS("Desk")["margin-bottom"]="0")}function messagebox(b,c){QH(61,c);setDialogMode(1,b,1)}function statusbox(b,c){QH(61,c);setDialogMode(1,b)}
1308 -function SaveJsonFile(b,c,a,d){var e="",n={},p=new Date;amtsysstate&&(e="-"+amtsysstate.AMT_GeneralSettings.response.HostName,n={webappversion:version,description:a,hostname:amtsysstate.AMT_GeneralSettings.response.HostName,localtime:Date(),utctime:(new Date).toUTCString(),isotime:(new Date).toISOString()},HardwareInventory&&(n.systemid=guidToStr(HardwareInventory.CIM_ComputerSystemPackage.response.PlatformGUID.toLowerCase())));e+="-"+p.getFullYear()+"-"+("0"+(p.getMonth()+1)).slice(-2)+"-"+("0"+
1309 -p.getDate()).slice(-2)+"-"+("0"+p.getHours()).slice(-2)+"-"+("0"+p.getMinutes()).slice(-2);n[c]=d;saveAs(data2blob(JSON.stringify(n,null," ").replace(/\n/g,"\r\n")),b+e+".json")}var httpErrorTable={200:"OK",401:"Authentication Error",408:"Timeout Error",601:"WSMAN Parsing Error",602:"Unable to parse HTTP response header",603:"Unexpected HTTP enum response",604:"Unexpected HTTP pull response"};
1357 +function SaveJsonFile(b,c,a,d){var e="",q={},k=new Date;amtsysstate&&(e="-"+amtsysstate.AMT_GeneralSettings.response.HostName,q={webappversion:version,description:a,hostname:amtsysstate.AMT_GeneralSettings.response.HostName,localtime:Date(),utctime:(new Date).toUTCString(),isotime:(new Date).toISOString()},HardwareInventory&&(q.systemid=guidToStr(HardwareInventory.CIM_ComputerSystemPackage.response.PlatformGUID.toLowerCase())));e+="-"+k.getFullYear()+"-"+("0"+(k.getMonth()+1)).slice(-2)+"-"+("0"+
1358 +k.getDate()).slice(-2)+"-"+("0"+k.getHours()).slice(-2)+"-"+("0"+k.getMinutes()).slice(-2);q[c]=d;saveAs(data2blob(JSON.stringify(q,null," ").replace(/\n/g,"\r\n")),b+e+".json")}var httpErrorTable={200:"OK",401:"Authentication Error",408:"Timeout Error",601:"WSMAN Parsing Error",602:"Unable to parse HTTP response header",603:"Unexpected HTTP enum response",604:"Unexpected HTTP pull response"};
1359 function errcheck(b,c){if(null==wsstack||amtstack!=c)return!0;200!=b&&9!=b&&(setDialogMode(),wsstack.comm.FailAllError=999,amtstack.CancelAllQueries(999),QH(5,httpErrorTable[b]?httpErrorTable[b]:"Error #"+b),401==b&&QH(5,'Authentication Error<br /><br /><input type=button value="Set new credentials" onclick=meshcentral2credCallback(true)></input>'),go(100),QS(3).width=0);return 200!=b}
1360 function goiFrame(b,c,a){if(!xxdialogMode){go(c);if(1==b.shiftKey||0==Q(15).src.endsWith(a))Q(15).src=a;QV(16,!1);QV(14,!0)}}function go(b,c){if(!xxdialogMode||1==c){QV(14,!1);QV(16,!0);QV(4,100==b);QV(6,100>b);for(var a=0;80>a;a++){QV("p"+a,a==b);var d=QS("go"+a);d&&(d["background-color"]=a==b?"#abcae1":"");d&&(d["background-color"]=a==b?"gray":"")}currentView=b;center()}}
1361 function portsFromHost(b,c){var a=decodeURIComponent(b).split(":"),d=0==c?16992:16993,e=0==c?16994:16995;1<a.length&&(d=parseInt(a[1]));2<a.length&&(e=parseInt(a[2]));return{host:a[0],http:d,redir:e}}function addLink(b,c){return"<a style=cursor:pointer;color:blue onclick='"+c+"'>&diams; "+b+"</a>"}function addLinkConditional(b,c,a){return a?addLink(b,c):b}function haltEvent(b){b.preventDefault&&b.preventDefault();b.stopPropagation&&b.stopPropagation();return!1}
1313 -function addOption(b,c,a){var d=document.createElement("option");d.text=c;d.value=a;Q(b).add(d)}function addDisabledOption(b,c,a){var d=document.createElement("option");d.text=c;d.value=a;d.disabled=1;Q(b).add(d)}function passwordcheck(b){if(8>b.length)return!1;var c=0,a=0,d=0,e=0,n;for(n in b){var p=b.charCodeAt(n);64<p&&91>p?c=1:96<p&&123>p?a=1:47<p&&58>p?d=1:e=1}return 4==c+a+d+e}
1362 +function addOption(b,c,a){var d=document.createElement("option");d.text=c;d.value=a;Q(b).add(d)}function addDisabledOption(b,c,a){var d=document.createElement("option");d.text=c;d.value=a;d.disabled=1;Q(b).add(d)}function passwordcheck(b){if(8>b.length)return!1;var c=0,a=0,d=0,e=0,q;for(q in b){var k=b.charCodeAt(q);64<k&&91>k?c=1:96<k&&123>k?a=1:47<k&&58>k?d=1:e=1}return 4==c+a+d+e}
1363 function methodcheck(b){return b&&null!=b&&b.Body&&0!=b.Body.ReturnValue?(messagebox("Call Error",b.Header.Method+": "+(b.Body.ReturnValueStr+"").replace("_"," ")),!0):!1}function TableStart(){return"<table class='log1 us' cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px><tr><td width=200px><p><td>"}function TableStart2(){return"<table class='log1 us' cellpadding=0 cellspacing=0 style=width:100%;border-radius:8px><tr><td><p><td>"}
1364 function TableEntry(b,c){return"<tr><td class=r1><p>"+b+"<td class=r1>"+c}function FullTable(b,c){var a=TableStart();for(i in b)i&&b[i]&&(a+=TableEntry(i,b[i]));return a+TableEnd(c)}function TableEnd(b){return"<tr><td colspan=2><p>"+(b?b:"")+"</table>"}function AddButton(b,c){return"<input type=button value='"+b+"' onclick='"+c+"' style=margin:4px>"}function AddButton2(b,c,a){return"<input type=button value='"+b+"' onclick='"+c+"' "+a+">"}
1365 function AddRefreshButton(b){return"<input type=button name=refreshbtn value=Refresh onclick='refreshButtons(false);"+b+"' style=margin:4px "+(0==refreshButtonsState?"disabled":"")+">"}function MoreStart(){return'<a style=cursor:pointer;color:blue id=morexxx1 onclick=QV("morexxx1",false);QV("morexxx2",true)>&#x25BC; More</a><div id=morexxx2 style=display:none><br><hr>'}
views/default.handlebars
+2
@@ -4156,6 +4156,7 @@
4156 y += "<option value=4>Windows (64bit)</option>";
4157 y += "<option value=5>Linux x86 (32bit)</option>";
4158 y += "<option value=6>Linux x86 (64bit)</option>";
4159 + y += "<option value=16>MacOS (64bit)</option>";
4160 y += "<option value=25>Linux ARM, Raspberry Pi (32bit)</option>";
4161 y += "</select>";
4162
@@ -4181,6 +4182,7 @@
4182 if (os == 4) { osn = 'MeshCmd (Win64 executable)'; }
4183 if (os == 5) { osn = 'MeshCmd (Linux x86, 32bit)'; }
4184 if (os == 6) { osn = 'MeshCmd (Linux x86, 64bit)'; }
4185 + if (os == 16) { osn = 'MeshCmd (MacOS, 64bit)'; }
4186 if (os == 25) { osn = 'MeshCmd (Linux ARM, 32bit)'; }
4187 QH('meshcmddownloadid', osn);
4188 }
webserver.js
+2
@@ -1910,6 +1910,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1910 // WS ---> AMT/TLS
1911 msg = msg.toString('binary');
1912 if (ws.interceptor) { msg = ws.interceptor.processBrowserData(msg); } // Run data thru interceptor
1913 + //console.log('WS --> AMT', Buffer.from(msg, 'binary').toString('hex'));
1914 if (ws.forwardclient.xtls == 1) { ws.forwardclient.write(Buffer.from(msg, 'binary')); } else { ws.forwardclient.write(msg); }
1915 });
1916
@@ -1934,6 +1935,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1935 ws.forwardclient.onData = function (ciraconn, data) {
1936 Debug(4, 'Relay CIRA data', data.length);
1937 if (ws.interceptor) { data = ws.interceptor.processAmtData(data); } // Run data thru interceptor
1938 + //console.log('AMT --> WS', Buffer.from(data, 'binary').toString('hex'));
1939 if (data.length > 0) { try { ws.send(Buffer.from(data, 'binary')); } catch (e) { } } // TODO: Add TLS support
1940 };
1941