diff --git a/js/dist/gotty-bundle.js b/js/dist/gotty-bundle.js index 78abfc0..7c8208d 100644 --- a/js/dist/gotty-bundle.js +++ b/js/dist/gotty-bundle.js @@ -1,2127 +1,9 @@ -/******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // identity function for calling harmony imports with the correct context -/******/ __webpack_require__.i = function(value) { return value; }; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { -/******/ configurable: false, -/******/ enumerable: true, -/******/ get: getter -/******/ }); -/******/ } -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = 15); -/******/ }) -/************************************************************************/ -/******/ ([ -/* 0 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var CompositionHelper_1 = __webpack_require__(16); -var EventEmitter_1 = __webpack_require__(1); -var Viewport_1 = __webpack_require__(23); -var Clipboard_1 = __webpack_require__(30); -var CircularList_1 = __webpack_require__(32); -var EscapeSequences_1 = __webpack_require__(2); -var InputHandler_1 = __webpack_require__(17); -var Parser_1 = __webpack_require__(19); -var Renderer_1 = __webpack_require__(20); -var Linkifier_1 = __webpack_require__(18); -var SelectionManager_1 = __webpack_require__(21); -var CharMeasure_1 = __webpack_require__(31); -var Browser = __webpack_require__(8); -var Mouse_1 = __webpack_require__(9); -var document = (typeof window != 'undefined') ? window.document : null; -var WRITE_BUFFER_PAUSE_THRESHOLD = 5; -var WRITE_BATCH_SIZE = 300; -var CURSOR_BLINK_INTERVAL = 600; -function Terminal(options) { - var self = this; - if (!(this instanceof Terminal)) { - return new Terminal(arguments[0], arguments[1], arguments[2]); - } - self.browser = Browser; - self.cancel = Terminal.cancel; - EventEmitter_1.EventEmitter.call(this); - if (typeof options === 'number') { - options = { - cols: arguments[0], - rows: arguments[1], - handler: arguments[2] - }; - } - options = options || {}; - Object.keys(Terminal.defaults).forEach(function (key) { - if (options[key] == null) { - options[key] = Terminal.options[key]; - if (Terminal[key] !== Terminal.defaults[key]) { - options[key] = Terminal[key]; - } - } - self[key] = options[key]; - }); - if (options.colors.length === 8) { - options.colors = options.colors.concat(Terminal._colors.slice(8)); - } - else if (options.colors.length === 16) { - options.colors = options.colors.concat(Terminal._colors.slice(16)); - } - else if (options.colors.length === 10) { - options.colors = options.colors.slice(0, -2).concat(Terminal._colors.slice(8, -2), options.colors.slice(-2)); - } - else if (options.colors.length === 18) { - options.colors = options.colors.concat(Terminal._colors.slice(16, -2), options.colors.slice(-2)); - } - this.colors = options.colors; - this.options = options; - this.parent = options.body || options.parent || (document ? document.getElementsByTagName('body')[0] : null); - this.cols = options.cols || options.geometry[0]; - this.rows = options.rows || options.geometry[1]; - this.geometry = [this.cols, this.rows]; - if (options.handler) { - this.on('data', options.handler); - } - this.ybase = 0; - this.ydisp = 0; - this.x = 0; - this.y = 0; - this.cursorState = 0; - this.cursorHidden = false; - this.convertEol; - this.queue = ''; - this.scrollTop = 0; - this.scrollBottom = this.rows - 1; - this.customKeyEventHandler = null; - this.cursorBlinkInterval = null; - this.applicationKeypad = false; - this.applicationCursor = false; - this.originMode = false; - this.insertMode = false; - this.wraparoundMode = true; - this.normal = null; - this.charset = null; - this.gcharset = null; - this.glevel = 0; - this.charsets = [null]; - this.decLocator; - this.x10Mouse; - this.vt200Mouse; - this.vt300Mouse; - this.normalMouse; - this.mouseEvents; - this.sendFocus; - this.utfMouse; - this.sgrMouse; - this.urxvtMouse; - this.element; - this.children; - this.refreshStart; - this.refreshEnd; - this.savedX; - this.savedY; - this.savedCols; - this.readable = true; - this.writable = true; - this.defAttr = (0 << 18) | (257 << 9) | (256 << 0); - this.curAttr = this.defAttr; - this.params = []; - this.currentParam = 0; - this.prefix = ''; - this.postfix = ''; - this.inputHandler = new InputHandler_1.InputHandler(this); - this.parser = new Parser_1.Parser(this.inputHandler, this); - this.renderer = this.renderer || null; - this.selectionManager = this.selectionManager || null; - this.linkifier = this.linkifier || new Linkifier_1.Linkifier(); - this.writeBuffer = []; - this.writeInProgress = false; - this.xoffSentToCatchUp = false; - this.writeStopped = false; - this.surrogate_high = ''; - this.lines = new CircularList_1.CircularList(this.scrollback); - var i = this.rows; - while (i--) { - this.lines.push(this.blankLine()); - } - if (this.selectionManager) { - this.selectionManager.setBuffer(this.lines); - } - this.tabs; - this.setupStops(); - this.userScrolling = false; -} -inherits(Terminal, EventEmitter_1.EventEmitter); -Terminal.prototype.eraseAttr = function () { - return (this.defAttr & ~0x1ff) | (this.curAttr & 0x1ff); -}; -Terminal.tangoColors = [ - '#2e3436', - '#cc0000', - '#4e9a06', - '#c4a000', - '#3465a4', - '#75507b', - '#06989a', - '#d3d7cf', - '#555753', - '#ef2929', - '#8ae234', - '#fce94f', - '#729fcf', - '#ad7fa8', - '#34e2e2', - '#eeeeec' -]; -Terminal.colors = (function () { - var colors = Terminal.tangoColors.slice(), r = [0x00, 0x5f, 0x87, 0xaf, 0xd7, 0xff], i; - i = 0; - for (; i < 216; i++) { - out(r[(i / 36) % 6 | 0], r[(i / 6) % 6 | 0], r[i % 6]); - } - i = 0; - for (; i < 24; i++) { - r = 8 + i * 10; - out(r, r, r); - } - function out(r, g, b) { - colors.push('#' + hex(r) + hex(g) + hex(b)); - } - function hex(c) { - c = c.toString(16); - return c.length < 2 ? '0' + c : c; - } - return colors; -})(); -Terminal._colors = Terminal.colors.slice(); -Terminal.vcolors = (function () { - var out = [], colors = Terminal.colors, i = 0, color; - for (; i < 256; i++) { - color = parseInt(colors[i].substring(1), 16); - out.push([ - (color >> 16) & 0xff, - (color >> 8) & 0xff, - color & 0xff - ]); - } - return out; -})(); -Terminal.defaults = { - colors: Terminal.colors, - theme: 'default', - convertEol: false, - termName: 'xterm', - geometry: [80, 24], - cursorBlink: false, - cursorStyle: 'block', - visualBell: false, - popOnBell: false, - scrollback: 1000, - screenKeys: false, - debug: false, - cancelEvents: false, - disableStdin: false, - useFlowControl: false, - tabStopWidth: 8 -}; -Terminal.options = {}; -Terminal.focus = null; -each(keys(Terminal.defaults), function (key) { - Terminal[key] = Terminal.defaults[key]; - Terminal.options[key] = Terminal.defaults[key]; -}); -Terminal.prototype.focus = function () { - return this.textarea.focus(); -}; -Terminal.prototype.getOption = function (key, value) { - if (!(key in Terminal.defaults)) { - throw new Error('No option with key "' + key + '"'); - } - if (typeof this.options[key] !== 'undefined') { - return this.options[key]; - } - return this[key]; -}; -Terminal.prototype.setOption = function (key, value) { - if (!(key in Terminal.defaults)) { - throw new Error('No option with key "' + key + '"'); - } - switch (key) { - case 'scrollback': - if (value < this.rows) { - var msg = 'Setting the scrollback value less than the number of rows '; - msg += "(" + this.rows + ") is not allowed."; - console.warn(msg); - return false; - } - if (this.options[key] !== value) { - if (this.lines.length > value) { - var amountToTrim = this.lines.length - value; - var needsRefresh = (this.ydisp - amountToTrim < 0); - this.lines.trimStart(amountToTrim); - this.ybase = Math.max(this.ybase - amountToTrim, 0); - this.ydisp = Math.max(this.ydisp - amountToTrim, 0); - if (needsRefresh) { - this.refresh(0, this.rows - 1); - } - } - this.lines.maxLength = value; - this.viewport.syncScrollArea(); - } - break; - } - this[key] = value; - this.options[key] = value; - switch (key) { - case 'cursorBlink': - this.setCursorBlinking(value); - break; - case 'cursorStyle': - this.element.classList.toggle("xterm-cursor-style-underline", value === 'underline'); - this.element.classList.toggle("xterm-cursor-style-bar", value === 'bar'); - break; - case 'tabStopWidth': - this.setupStops(); - break; - } -}; -Terminal.prototype.restartCursorBlinking = function () { - this.setCursorBlinking(this.options.cursorBlink); -}; -Terminal.prototype.setCursorBlinking = function (enabled) { - this.element.classList.toggle('xterm-cursor-blink', enabled); - this.clearCursorBlinkingInterval(); - if (enabled) { - var self = this; - this.cursorBlinkInterval = setInterval(function () { - self.element.classList.toggle('xterm-cursor-blink-on'); - }, CURSOR_BLINK_INTERVAL); - } -}; -Terminal.prototype.clearCursorBlinkingInterval = function () { - this.element.classList.remove('xterm-cursor-blink-on'); - if (this.cursorBlinkInterval) { - clearInterval(this.cursorBlinkInterval); - this.cursorBlinkInterval = null; - } -}; -Terminal.bindFocus = function (term) { - on(term.textarea, 'focus', function (ev) { - if (term.sendFocus) { - term.send(EscapeSequences_1.C0.ESC + '[I'); - } - term.element.classList.add('focus'); - term.showCursor(); - term.restartCursorBlinking.apply(term); - Terminal.focus = term; - term.emit('focus', { terminal: term }); - }); -}; -Terminal.prototype.blur = function () { - return this.textarea.blur(); -}; -Terminal.bindBlur = function (term) { - on(term.textarea, 'blur', function (ev) { - term.refresh(term.y, term.y); - if (term.sendFocus) { - term.send(EscapeSequences_1.C0.ESC + '[O'); - } - term.element.classList.remove('focus'); - term.clearCursorBlinkingInterval.apply(term); - Terminal.focus = null; - term.emit('blur', { terminal: term }); - }); -}; -Terminal.prototype.initGlobal = function () { - var _this = this; - var term = this; - Terminal.bindKeys(this); - Terminal.bindFocus(this); - Terminal.bindBlur(this); - on(this.element, 'copy', function (event) { - if (_this.mouseEvents) { - return; - } - Clipboard_1.copyHandler(event, term, _this.selectionManager); - }); - var pasteHandlerWrapper = function (event) { return Clipboard_1.pasteHandler(event, term); }; - on(this.textarea, 'paste', pasteHandlerWrapper); - on(this.element, 'paste', pasteHandlerWrapper); - if (term.browser.isFirefox) { - on(this.element, 'mousedown', function (event) { - if (event.button == 2) { - Clipboard_1.rightClickHandler(event, _this.textarea, _this.selectionManager); - } - }); - } - else { - on(this.element, 'contextmenu', function (event) { - Clipboard_1.rightClickHandler(event, _this.textarea, _this.selectionManager); - }); - } - if (term.browser.isLinux) { - on(this.element, 'auxclick', function (event) { - if (event.button === 1) { - Clipboard_1.moveTextAreaUnderMouseCursor(event, _this.textarea, _this.selectionManager); - } - }); - } -}; -Terminal.bindKeys = function (term) { - on(term.element, 'keydown', function (ev) { - if (document.activeElement != this) { - return; - } - term.keyDown(ev); - }, true); - on(term.element, 'keypress', function (ev) { - if (document.activeElement != this) { - return; - } - term.keyPress(ev); - }, true); - on(term.element, 'keyup', function (ev) { - if (!wasMondifierKeyOnlyEvent(ev)) { - term.focus(term); - } - }, true); - on(term.textarea, 'keydown', function (ev) { - term.keyDown(ev); - }, true); - on(term.textarea, 'keypress', function (ev) { - term.keyPress(ev); - this.value = ''; - }, true); - on(term.textarea, 'compositionstart', term.compositionHelper.compositionstart.bind(term.compositionHelper)); - on(term.textarea, 'compositionupdate', term.compositionHelper.compositionupdate.bind(term.compositionHelper)); - on(term.textarea, 'compositionend', term.compositionHelper.compositionend.bind(term.compositionHelper)); - term.on('refresh', term.compositionHelper.updateCompositionElements.bind(term.compositionHelper)); - term.on('refresh', function (data) { - term.queueLinkification(data.start, data.end); - }); -}; -Terminal.prototype.insertRow = function (row) { - if (typeof row != 'object') { - row = document.createElement('div'); - } - this.rowContainer.appendChild(row); - this.children.push(row); - return row; -}; -Terminal.prototype.open = function (parent, focus) { - var _this = this; - var self = this, i = 0, div; - this.parent = parent || this.parent; - if (!this.parent) { - throw new Error('Terminal requires a parent element.'); - } - this.context = this.parent.ownerDocument.defaultView; - this.document = this.parent.ownerDocument; - this.body = this.document.getElementsByTagName('body')[0]; - this.element = this.document.createElement('div'); - this.element.classList.add('terminal'); - this.element.classList.add('xterm'); - this.element.classList.add('xterm-theme-' + this.theme); - this.setCursorBlinking(this.options.cursorBlink); - this.element.setAttribute('tabindex', 0); - this.viewportElement = document.createElement('div'); - this.viewportElement.classList.add('xterm-viewport'); - this.element.appendChild(this.viewportElement); - this.viewportScrollArea = document.createElement('div'); - this.viewportScrollArea.classList.add('xterm-scroll-area'); - this.viewportElement.appendChild(this.viewportScrollArea); - this.selectionContainer = document.createElement('div'); - this.selectionContainer.classList.add('xterm-selection'); - this.element.appendChild(this.selectionContainer); - this.rowContainer = document.createElement('div'); - this.rowContainer.classList.add('xterm-rows'); - this.element.appendChild(this.rowContainer); - this.children = []; - this.linkifier.attachToDom(document, this.children); - this.helperContainer = document.createElement('div'); - this.helperContainer.classList.add('xterm-helpers'); - this.element.appendChild(this.helperContainer); - this.textarea = document.createElement('textarea'); - this.textarea.classList.add('xterm-helper-textarea'); - this.textarea.setAttribute('autocorrect', 'off'); - this.textarea.setAttribute('autocapitalize', 'off'); - this.textarea.setAttribute('spellcheck', 'false'); - this.textarea.tabIndex = 0; - this.textarea.addEventListener('focus', function () { - self.emit('focus', { terminal: self }); - }); - this.textarea.addEventListener('blur', function () { - self.emit('blur', { terminal: self }); - }); - this.helperContainer.appendChild(this.textarea); - this.compositionView = document.createElement('div'); - this.compositionView.classList.add('composition-view'); - this.compositionHelper = new CompositionHelper_1.CompositionHelper(this.textarea, this.compositionView, this); - this.helperContainer.appendChild(this.compositionView); - this.charSizeStyleElement = document.createElement('style'); - this.helperContainer.appendChild(this.charSizeStyleElement); - for (; i < this.rows; i++) { - this.insertRow(); - } - this.parent.appendChild(this.element); - this.charMeasure = new CharMeasure_1.CharMeasure(document, this.helperContainer); - this.charMeasure.on('charsizechanged', function () { - self.updateCharSizeStyles(); - }); - this.charMeasure.measure(); - this.viewport = new Viewport_1.Viewport(this, this.viewportElement, this.viewportScrollArea, this.charMeasure); - this.renderer = new Renderer_1.Renderer(this); - this.selectionManager = new SelectionManager_1.SelectionManager(this, this.lines, this.rowContainer, this.charMeasure); - this.selectionManager.on('refresh', function (data) { - _this.renderer.refreshSelection(data.start, data.end); - }); - this.selectionManager.on('newselection', function (text) { - _this.textarea.value = text; - _this.textarea.focus(); - _this.textarea.select(); - }); - this.on('scroll', function () { return _this.selectionManager.refresh(); }); - this.viewportElement.addEventListener('scroll', function () { return _this.selectionManager.refresh(); }); - this.refresh(0, this.rows - 1); - this.initGlobal(); - if (typeof focus == 'undefined') { - var message = 'You did not pass the `focus` argument in `Terminal.prototype.open()`.\n'; - message += 'The `focus` argument now defaults to `true` but starting with xterm.js 3.0 '; - message += 'it will default to `false`.'; - console.warn(message); - focus = true; - } - if (focus) { - this.focus(); - } - on(this.element, 'click', function () { - var selection = document.getSelection(), collapsed = selection.isCollapsed, isRange = typeof collapsed == 'boolean' ? !collapsed : selection.type == 'Range'; - if (!isRange) { - self.focus(); - } - }); - this.bindMouse(); - this.emit('open'); -}; -Terminal.loadAddon = function (addon, callback) { - if (true) { - return __webpack_require__(24)("./" + addon + '/' + addon); - } - else if (typeof define == 'function') { - return require(['./addons/' + addon + '/' + addon], callback); - } - else { - console.error('Cannot load a module without a CommonJS or RequireJS environment.'); - return false; - } -}; -Terminal.prototype.updateCharSizeStyles = function () { - this.charSizeStyleElement.textContent = - ".xterm-wide-char{width:" + this.charMeasure.width * 2 + "px;}" + - (".xterm-normal-char{width:" + this.charMeasure.width + "px;}") + - (".xterm-rows > div{height:" + this.charMeasure.height + "px;}"); -}; -Terminal.prototype.bindMouse = function () { - var el = this.element, self = this, pressed = 32; - function sendButton(ev) { - var button, pos; - button = getButton(ev); - pos = Mouse_1.getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows); - if (!pos) - return; - sendEvent(button, pos); - switch (ev.overrideType || ev.type) { - case 'mousedown': - pressed = button; - break; - case 'mouseup': - pressed = 32; - break; - case 'wheel': - break; - } - } - function sendMove(ev) { - var button = pressed, pos; - pos = Mouse_1.getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows); - if (!pos) - return; - button += 32; - sendEvent(button, pos); - } - function encode(data, ch) { - if (!self.utfMouse) { - if (ch === 255) - return data.push(0); - if (ch > 127) - ch = 127; - data.push(ch); - } - else { - if (ch === 2047) - return data.push(0); - if (ch < 127) { - data.push(ch); - } - else { - if (ch > 2047) - ch = 2047; - data.push(0xC0 | (ch >> 6)); - data.push(0x80 | (ch & 0x3F)); - } - } - } - function sendEvent(button, pos) { - if (self.vt300Mouse) { - button &= 3; - pos.x -= 32; - pos.y -= 32; - var data = EscapeSequences_1.C0.ESC + '[24'; - if (button === 0) - data += '1'; - else if (button === 1) - data += '3'; - else if (button === 2) - data += '5'; - else if (button === 3) - return; - else - data += '0'; - data += '~[' + pos.x + ',' + pos.y + ']\r'; - self.send(data); - return; - } - if (self.decLocator) { - button &= 3; - pos.x -= 32; - pos.y -= 32; - if (button === 0) - button = 2; - else if (button === 1) - button = 4; - else if (button === 2) - button = 6; - else if (button === 3) - button = 3; - self.send(EscapeSequences_1.C0.ESC + '[' - + button - + ';' - + (button === 3 ? 4 : 0) - + ';' - + pos.y - + ';' - + pos.x - + ';' - + (pos.page || 0) - + '&w'); - return; - } - if (self.urxvtMouse) { - pos.x -= 32; - pos.y -= 32; - pos.x++; - pos.y++; - self.send(EscapeSequences_1.C0.ESC + '[' + button + ';' + pos.x + ';' + pos.y + 'M'); - return; - } - if (self.sgrMouse) { - pos.x -= 32; - pos.y -= 32; - self.send(EscapeSequences_1.C0.ESC + '[<' - + (((button & 3) === 3 ? button & ~3 : button) - 32) - + ';' - + pos.x - + ';' - + pos.y - + ((button & 3) === 3 ? 'm' : 'M')); - return; - } - var data = []; - encode(data, button); - encode(data, pos.x); - encode(data, pos.y); - self.send(EscapeSequences_1.C0.ESC + '[M' + String.fromCharCode.apply(String, data)); - } - function getButton(ev) { - var button, shift, meta, ctrl, mod; - switch (ev.overrideType || ev.type) { - case 'mousedown': - button = ev.button != null - ? +ev.button - : ev.which != null - ? ev.which - 1 - : null; - if (self.browser.isMSIE) { - button = button === 1 ? 0 : button === 4 ? 1 : button; - } - break; - case 'mouseup': - button = 3; - break; - case 'DOMMouseScroll': - button = ev.detail < 0 - ? 64 - : 65; - break; - case 'wheel': - button = ev.wheelDeltaY > 0 - ? 64 - : 65; - break; - } - shift = ev.shiftKey ? 4 : 0; - meta = ev.metaKey ? 8 : 0; - ctrl = ev.ctrlKey ? 16 : 0; - mod = shift | meta | ctrl; - if (self.vt200Mouse) { - mod &= ctrl; - } - else if (!self.normalMouse) { - mod = 0; - } - button = (32 + (mod << 2)) + button; - return button; - } - on(el, 'mousedown', function (ev) { - if (!self.mouseEvents) - return; - sendButton(ev); - self.focus(); - if (self.vt200Mouse) { - ev.overrideType = 'mouseup'; - sendButton(ev); - return self.cancel(ev); - } - if (self.normalMouse) - on(self.document, 'mousemove', sendMove); - if (!self.x10Mouse) { - on(self.document, 'mouseup', function up(ev) { - sendButton(ev); - if (self.normalMouse) - off(self.document, 'mousemove', sendMove); - off(self.document, 'mouseup', up); - return self.cancel(ev); - }); - } - return self.cancel(ev); - }); - on(el, 'wheel', function (ev) { - if (!self.mouseEvents) - return; - if (self.x10Mouse - || self.vt300Mouse - || self.decLocator) - return; - sendButton(ev); - return self.cancel(ev); - }); - on(el, 'wheel', function (ev) { - if (self.mouseEvents) - return; - self.viewport.onWheel(ev); - return self.cancel(ev); - }); - on(el, 'touchstart', function (ev) { - if (self.mouseEvents) - return; - self.viewport.onTouchStart(ev); - return self.cancel(ev); - }); - on(el, 'touchmove', function (ev) { - if (self.mouseEvents) - return; - self.viewport.onTouchMove(ev); - return self.cancel(ev); - }); -}; -Terminal.prototype.destroy = function () { - this.readable = false; - this.writable = false; - this._events = {}; - this.handler = function () { }; - this.write = function () { }; - if (this.element && this.element.parentNode) { - this.element.parentNode.removeChild(this.element); - } -}; -Terminal.prototype.refresh = function (start, end) { - if (this.renderer) { - this.renderer.queueRefresh(start, end); - } -}; -Terminal.prototype.queueLinkification = function (start, end) { - if (this.linkifier) { - for (var i = start; i <= end; i++) { - this.linkifier.linkifyRow(i); - } - } -}; -Terminal.prototype.showCursor = function () { - if (!this.cursorState) { - this.cursorState = 1; - this.refresh(this.y, this.y); - } -}; -Terminal.prototype.scroll = function (isWrapped) { - var row; - if (this.lines.length === this.lines.maxLength) { - this.lines.trimStart(1); - this.ybase--; - if (this.ydisp !== 0) { - this.ydisp--; - } - } - this.ybase++; - if (!this.userScrolling) { - this.ydisp = this.ybase; - } - row = this.ybase + this.rows - 1; - row -= this.rows - 1 - this.scrollBottom; - if (row === this.lines.length) { - this.lines.push(this.blankLine(undefined, isWrapped)); - } - else { - this.lines.splice(row, 0, this.blankLine(undefined, isWrapped)); - } - if (this.scrollTop !== 0) { - if (this.ybase !== 0) { - this.ybase--; - if (!this.userScrolling) { - this.ydisp = this.ybase; - } - } - this.lines.splice(this.ybase + this.scrollTop, 1); - } - this.updateRange(this.scrollTop); - this.updateRange(this.scrollBottom); - this.emit('scroll', this.ydisp); -}; -Terminal.prototype.scrollDisp = function (disp, suppressScrollEvent) { - if (disp < 0) { - if (this.ydisp === 0) { - return; - } - this.userScrolling = true; - } - else if (disp + this.ydisp >= this.ybase) { - this.userScrolling = false; - } - this.ydisp += disp; - if (this.ydisp > this.ybase) { - this.ydisp = this.ybase; - } - else if (this.ydisp < 0) { - this.ydisp = 0; - } - if (!suppressScrollEvent) { - this.emit('scroll', this.ydisp); - } - this.refresh(0, this.rows - 1); -}; -Terminal.prototype.scrollPages = function (pageCount) { - this.scrollDisp(pageCount * (this.rows - 1)); -}; -Terminal.prototype.scrollToTop = function () { - this.scrollDisp(-this.ydisp); -}; -Terminal.prototype.scrollToBottom = function () { - this.scrollDisp(this.ybase - this.ydisp); -}; -Terminal.prototype.write = function (data) { - this.writeBuffer.push(data); - if (this.options.useFlowControl && !this.xoffSentToCatchUp && this.writeBuffer.length >= WRITE_BUFFER_PAUSE_THRESHOLD) { - this.send(EscapeSequences_1.C0.DC3); - this.xoffSentToCatchUp = true; - } - if (!this.writeInProgress && this.writeBuffer.length > 0) { - this.writeInProgress = true; - var self = this; - setTimeout(function () { - self.innerWrite(); - }); - } -}; -Terminal.prototype.innerWrite = function () { - var writeBatch = this.writeBuffer.splice(0, WRITE_BATCH_SIZE); - while (writeBatch.length > 0) { - var data = writeBatch.shift(); - var l = data.length, i = 0, j, cs, ch, code, low, ch_width, row; - if (this.xoffSentToCatchUp && writeBatch.length === 0 && this.writeBuffer.length === 0) { - this.send(EscapeSequences_1.C0.DC1); - this.xoffSentToCatchUp = false; - } - this.refreshStart = this.y; - this.refreshEnd = this.y; - var state = this.parser.parse(data); - this.parser.setState(state); - this.updateRange(this.y); - this.refresh(this.refreshStart, this.refreshEnd); - } - if (this.writeBuffer.length > 0) { - var self = this; - setTimeout(function () { - self.innerWrite(); - }, 0); - } - else { - this.writeInProgress = false; - } -}; -Terminal.prototype.writeln = function (data) { - this.write(data + '\r\n'); -}; -Terminal.prototype.attachCustomKeydownHandler = function (customKeydownHandler) { - var message = 'attachCustomKeydownHandler() is DEPRECATED and will be removed soon. Please use attachCustomKeyEventHandler() instead.'; - console.warn(message); - this.attachCustomKeyEventHandler(customKeydownHandler); -}; -Terminal.prototype.attachCustomKeyEventHandler = function (customKeyEventHandler) { - this.customKeyEventHandler = customKeyEventHandler; -}; -Terminal.prototype.setHypertextLinkHandler = function (handler) { - if (!this.linkifier) { - throw new Error('Cannot attach a hypertext link handler before Terminal.open is called'); - } - this.linkifier.setHypertextLinkHandler(handler); - this.refresh(0, this.rows - 1); -}; -Terminal.prototype.setHypertextValidationCallback = function (callback) { - if (!this.linkifier) { - throw new Error('Cannot attach a hypertext validation callback before Terminal.open is called'); - } - this.linkifier.setHypertextValidationCallback(callback); - this.refresh(0, this.rows - 1); -}; -Terminal.prototype.registerLinkMatcher = function (regex, handler, options) { - if (this.linkifier) { - var matcherId = this.linkifier.registerLinkMatcher(regex, handler, options); - this.refresh(0, this.rows - 1); - return matcherId; - } -}; -Terminal.prototype.deregisterLinkMatcher = function (matcherId) { - if (this.linkifier) { - if (this.linkifier.deregisterLinkMatcher(matcherId)) { - this.refresh(0, this.rows - 1); - } - } -}; -Terminal.prototype.hasSelection = function () { - return this.selectionManager.hasSelection; -}; -Terminal.prototype.getSelection = function () { - return this.selectionManager.selectionText; -}; -Terminal.prototype.clearSelection = function () { - this.selectionManager.clearSelection(); -}; -Terminal.prototype.selectAll = function () { - this.selectionManager.selectAll(); -}; -Terminal.prototype.keyDown = function (ev) { - if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) { - return false; - } - this.restartCursorBlinking(); - if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) { - if (this.ybase !== this.ydisp) { - this.scrollToBottom(); - } - return false; - } - var self = this; - var result = this.evaluateKeyEscapeSequence(ev); - if (result.key === EscapeSequences_1.C0.DC3) { - this.writeStopped = true; - } - else if (result.key === EscapeSequences_1.C0.DC1) { - this.writeStopped = false; - } - if (result.scrollDisp) { - this.scrollDisp(result.scrollDisp); - return this.cancel(ev, true); - } - if (isThirdLevelShift(this, ev)) { - return true; - } - if (result.cancel) { - this.cancel(ev, true); - } - if (!result.key) { - return true; - } - this.emit('keydown', ev); - this.emit('key', result.key, ev); - this.showCursor(); - this.handler(result.key); - return this.cancel(ev, true); -}; -Terminal.prototype.evaluateKeyEscapeSequence = function (ev) { - var result = { - cancel: false, - key: undefined, - scrollDisp: undefined - }; - var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3; - switch (ev.keyCode) { - case 8: - if (ev.shiftKey) { - result.key = EscapeSequences_1.C0.BS; - break; - } - result.key = EscapeSequences_1.C0.DEL; - break; - case 9: - if (ev.shiftKey) { - result.key = EscapeSequences_1.C0.ESC + '[Z'; - break; - } - result.key = EscapeSequences_1.C0.HT; - result.cancel = true; - break; - case 13: - result.key = EscapeSequences_1.C0.CR; - result.cancel = true; - break; - case 27: - result.key = EscapeSequences_1.C0.ESC; - result.cancel = true; - break; - case 37: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'D'; - if (result.key == EscapeSequences_1.C0.ESC + '[1;3D') { - result.key = (this.browser.isMac) ? EscapeSequences_1.C0.ESC + 'b' : EscapeSequences_1.C0.ESC + '[1;5D'; - } - } - else if (this.applicationCursor) { - result.key = EscapeSequences_1.C0.ESC + 'OD'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[D'; - } - break; - case 39: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'C'; - if (result.key == EscapeSequences_1.C0.ESC + '[1;3C') { - result.key = (this.browser.isMac) ? EscapeSequences_1.C0.ESC + 'f' : EscapeSequences_1.C0.ESC + '[1;5C'; - } - } - else if (this.applicationCursor) { - result.key = EscapeSequences_1.C0.ESC + 'OC'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[C'; - } - break; - case 38: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'A'; - if (result.key == EscapeSequences_1.C0.ESC + '[1;3A') { - result.key = EscapeSequences_1.C0.ESC + '[1;5A'; - } - } - else if (this.applicationCursor) { - result.key = EscapeSequences_1.C0.ESC + 'OA'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[A'; - } - break; - case 40: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'B'; - if (result.key == EscapeSequences_1.C0.ESC + '[1;3B') { - result.key = EscapeSequences_1.C0.ESC + '[1;5B'; - } - } - else if (this.applicationCursor) { - result.key = EscapeSequences_1.C0.ESC + 'OB'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[B'; - } - break; - case 45: - if (!ev.shiftKey && !ev.ctrlKey) { - result.key = EscapeSequences_1.C0.ESC + '[2~'; - } - break; - case 46: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[3;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[3~'; - } - break; - case 36: - if (modifiers) - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'H'; - else if (this.applicationCursor) - result.key = EscapeSequences_1.C0.ESC + 'OH'; - else - result.key = EscapeSequences_1.C0.ESC + '[H'; - break; - case 35: - if (modifiers) - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'F'; - else if (this.applicationCursor) - result.key = EscapeSequences_1.C0.ESC + 'OF'; - else - result.key = EscapeSequences_1.C0.ESC + '[F'; - break; - case 33: - if (ev.shiftKey) { - result.scrollDisp = -(this.rows - 1); - } - else { - result.key = EscapeSequences_1.C0.ESC + '[5~'; - } - break; - case 34: - if (ev.shiftKey) { - result.scrollDisp = this.rows - 1; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[6~'; - } - break; - case 112: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'P'; - } - else { - result.key = EscapeSequences_1.C0.ESC + 'OP'; - } - break; - case 113: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'Q'; - } - else { - result.key = EscapeSequences_1.C0.ESC + 'OQ'; - } - break; - case 114: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'R'; - } - else { - result.key = EscapeSequences_1.C0.ESC + 'OR'; - } - break; - case 115: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'S'; - } - else { - result.key = EscapeSequences_1.C0.ESC + 'OS'; - } - break; - case 116: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[15;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[15~'; - } - break; - case 117: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[17;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[17~'; - } - break; - case 118: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[18;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[18~'; - } - break; - case 119: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[19;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[19~'; - } - break; - case 120: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[20;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[20~'; - } - break; - case 121: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[21;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[21~'; - } - break; - case 122: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[23;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[23~'; - } - break; - case 123: - if (modifiers) { - result.key = EscapeSequences_1.C0.ESC + '[24;' + (modifiers + 1) + '~'; - } - else { - result.key = EscapeSequences_1.C0.ESC + '[24~'; - } - break; - default: - if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) { - if (ev.keyCode >= 65 && ev.keyCode <= 90) { - result.key = String.fromCharCode(ev.keyCode - 64); - } - else if (ev.keyCode === 32) { - result.key = String.fromCharCode(0); - } - else if (ev.keyCode >= 51 && ev.keyCode <= 55) { - result.key = String.fromCharCode(ev.keyCode - 51 + 27); - } - else if (ev.keyCode === 56) { - result.key = String.fromCharCode(127); - } - else if (ev.keyCode === 219) { - result.key = String.fromCharCode(27); - } - else if (ev.keyCode === 220) { - result.key = String.fromCharCode(28); - } - else if (ev.keyCode === 221) { - result.key = String.fromCharCode(29); - } - } - else if (!this.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) { - if (ev.keyCode >= 65 && ev.keyCode <= 90) { - result.key = EscapeSequences_1.C0.ESC + String.fromCharCode(ev.keyCode + 32); - } - else if (ev.keyCode === 192) { - result.key = EscapeSequences_1.C0.ESC + '`'; - } - else if (ev.keyCode >= 48 && ev.keyCode <= 57) { - result.key = EscapeSequences_1.C0.ESC + (ev.keyCode - 48); - } - } - else if (this.browser.isMac && !ev.altKey && !ev.ctrlKey && ev.metaKey) { - if (ev.keyCode === 65) { - this.selectAll(); - } - } - break; - } - return result; -}; -Terminal.prototype.setgLevel = function (g) { - this.glevel = g; - this.charset = this.charsets[g]; -}; -Terminal.prototype.setgCharset = function (g, charset) { - this.charsets[g] = charset; - if (this.glevel === g) { - this.charset = charset; - } -}; -Terminal.prototype.keyPress = function (ev) { - var key; - if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) { - return false; - } - this.cancel(ev); - if (ev.charCode) { - key = ev.charCode; - } - else if (ev.which == null) { - key = ev.keyCode; - } - else if (ev.which !== 0 && ev.charCode !== 0) { - key = ev.which; - } - else { - return false; - } - if (!key || ((ev.altKey || ev.ctrlKey || ev.metaKey) && !isThirdLevelShift(this, ev))) { - return false; - } - key = String.fromCharCode(key); - this.emit('keypress', key, ev); - this.emit('key', key, ev); - this.showCursor(); - this.handler(key); - return true; -}; -Terminal.prototype.send = function (data) { - var self = this; - if (!this.queue) { - setTimeout(function () { - self.handler(self.queue); - self.queue = ''; - }, 1); - } - this.queue += data; -}; -Terminal.prototype.bell = function () { - if (!this.visualBell) - return; - var self = this; - this.element.style.borderColor = 'white'; - setTimeout(function () { - self.element.style.borderColor = ''; - }, 10); - if (this.popOnBell) - this.focus(); -}; -Terminal.prototype.log = function () { - if (!this.debug) - return; - if (!this.context.console || !this.context.console.log) - return; - var args = Array.prototype.slice.call(arguments); - this.context.console.log.apply(this.context.console, args); -}; -Terminal.prototype.error = function () { - if (!this.debug) - return; - if (!this.context.console || !this.context.console.error) - return; - var args = Array.prototype.slice.call(arguments); - this.context.console.error.apply(this.context.console, args); -}; -Terminal.prototype.resize = function (x, y) { - if (isNaN(x) || isNaN(y)) { - return; - } - if (y > this.getOption('scrollback')) { - this.setOption('scrollback', y); - } - var line, el, i, j, ch, addToY; - if (x === this.cols && y === this.rows) { - return; - } - if (x < 1) - x = 1; - if (y < 1) - y = 1; - j = this.cols; - if (j < x) { - ch = [this.defAttr, ' ', 1]; - i = this.lines.length; - while (i--) { - while (this.lines.get(i).length < x) { - this.lines.get(i).push(ch); - } - } - } - this.cols = x; - this.setupStops(this.cols); - j = this.rows; - addToY = 0; - if (j < y) { - el = this.element; - while (j++ < y) { - if (this.lines.length < y + this.ybase) { - if (this.ybase > 0 && this.lines.length <= this.ybase + this.y + addToY + 1) { - this.ybase--; - addToY++; - if (this.ydisp > 0) { - this.ydisp--; - } - } - else { - this.lines.push(this.blankLine()); - } - } - if (this.children.length < y) { - this.insertRow(); - } - } - } - else { - while (j-- > y) { - if (this.lines.length > y + this.ybase) { - if (this.lines.length > this.ybase + this.y + 1) { - this.lines.pop(); - } - else { - this.ybase++; - this.ydisp++; - } - } - if (this.children.length > y) { - el = this.children.shift(); - if (!el) - continue; - el.parentNode.removeChild(el); - } - } - } - this.rows = y; - if (this.y >= y) { - this.y = y - 1; - } - if (addToY) { - this.y += addToY; - } - if (this.x >= x) { - this.x = x - 1; - } - this.scrollTop = 0; - this.scrollBottom = y - 1; - this.charMeasure.measure(); - this.refresh(0, this.rows - 1); - this.normal = null; - this.geometry = [this.cols, this.rows]; - this.emit('resize', { terminal: this, cols: x, rows: y }); -}; -Terminal.prototype.updateRange = function (y) { - if (y < this.refreshStart) - this.refreshStart = y; - if (y > this.refreshEnd) - this.refreshEnd = y; -}; -Terminal.prototype.maxRange = function () { - this.refreshStart = 0; - this.refreshEnd = this.rows - 1; -}; -Terminal.prototype.setupStops = function (i) { - if (i != null) { - if (!this.tabs[i]) { - i = this.prevStop(i); - } - } - else { - this.tabs = {}; - i = 0; - } - for (; i < this.cols; i += this.getOption('tabStopWidth')) { - this.tabs[i] = true; - } -}; -Terminal.prototype.prevStop = function (x) { - if (x == null) - x = this.x; - while (!this.tabs[--x] && x > 0) - ; - return x >= this.cols - ? this.cols - 1 - : x < 0 ? 0 : x; -}; -Terminal.prototype.nextStop = function (x) { - if (x == null) - x = this.x; - while (!this.tabs[++x] && x < this.cols) - ; - return x >= this.cols - ? this.cols - 1 - : x < 0 ? 0 : x; -}; -Terminal.prototype.eraseRight = function (x, y) { - var line = this.lines.get(this.ybase + y); - if (!line) { - return; - } - var ch = [this.eraseAttr(), ' ', 1]; - for (; x < this.cols; x++) { - line[x] = ch; - } - this.updateRange(y); -}; -Terminal.prototype.eraseLeft = function (x, y) { - var line = this.lines.get(this.ybase + y); - if (!line) { - return; - } - var ch = [this.eraseAttr(), ' ', 1]; - x++; - while (x--) { - line[x] = ch; - } - this.updateRange(y); -}; -Terminal.prototype.clear = function () { - if (this.ybase === 0 && this.y === 0) { - return; - } - this.lines.set(0, this.lines.get(this.ybase + this.y)); - this.lines.length = 1; - this.ydisp = 0; - this.ybase = 0; - this.y = 0; - for (var i = 1; i < this.rows; i++) { - this.lines.push(this.blankLine()); - } - this.refresh(0, this.rows - 1); - this.emit('scroll', this.ydisp); -}; -Terminal.prototype.eraseLine = function (y) { - this.eraseRight(0, y); -}; -Terminal.prototype.blankLine = function (cur, isWrapped) { - var attr = cur - ? this.eraseAttr() - : this.defAttr; - var ch = [attr, ' ', 1], line = [], i = 0; - if (isWrapped) { - line.isWrapped = isWrapped; - } - for (; i < this.cols; i++) { - line[i] = ch; - } - return line; -}; -Terminal.prototype.ch = function (cur) { - return cur - ? [this.eraseAttr(), ' ', 1] - : [this.defAttr, ' ', 1]; -}; -Terminal.prototype.is = function (term) { - var name = this.termName; - return (name + '').indexOf(term) === 0; -}; -Terminal.prototype.handler = function (data) { - if (this.options.disableStdin) { - return; - } - if (this.ybase !== this.ydisp) { - this.scrollToBottom(); - } - this.emit('data', data); -}; -Terminal.prototype.handleTitle = function (title) { - this.emit('title', title); -}; -Terminal.prototype.index = function () { - this.y++; - if (this.y > this.scrollBottom) { - this.y--; - this.scroll(); - } - if (this.x >= this.cols) { - this.x--; - } -}; -Terminal.prototype.reverseIndex = function () { - var j; - if (this.y === this.scrollTop) { - this.lines.shiftElements(this.y + this.ybase, this.rows - 1, 1); - this.lines.set(this.y + this.ybase, this.blankLine(true)); - this.updateRange(this.scrollTop); - this.updateRange(this.scrollBottom); - } - else { - this.y--; - } -}; -Terminal.prototype.reset = function () { - this.options.rows = this.rows; - this.options.cols = this.cols; - var customKeyEventHandler = this.customKeyEventHandler; - var cursorBlinkInterval = this.cursorBlinkInterval; - Terminal.call(this, this.options); - this.customKeyEventHandler = customKeyEventHandler; - this.cursorBlinkInterval = cursorBlinkInterval; - this.refresh(0, this.rows - 1); - this.viewport.syncScrollArea(); -}; -Terminal.prototype.tabSet = function () { - this.tabs[this.x] = true; -}; -function on(el, type, handler, capture) { - if (!Array.isArray(el)) { - el = [el]; - } - el.forEach(function (element) { - element.addEventListener(type, handler, capture || false); - }); -} -function off(el, type, handler, capture) { - el.removeEventListener(type, handler, capture || false); -} -function cancel(ev, force) { - if (!this.cancelEvents && !force) { - return; - } - ev.preventDefault(); - ev.stopPropagation(); - return false; -} -function inherits(child, parent) { - function f() { - this.constructor = child; - } - f.prototype = parent.prototype; - child.prototype = new f; -} -function indexOf(obj, el) { - var i = obj.length; - while (i--) { - if (obj[i] === el) - return i; - } - return -1; -} -function isThirdLevelShift(term, ev) { - var thirdLevelKey = (term.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) || - (term.browser.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey); - if (ev.type == 'keypress') { - return thirdLevelKey; - } - return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47); -} -Terminal.prototype.matchColor = matchColor; -function matchColor(r1, g1, b1) { - var hash = (r1 << 16) | (g1 << 8) | b1; - if (matchColor._cache[hash] != null) { - return matchColor._cache[hash]; - } - var ldiff = Infinity, li = -1, i = 0, c, r2, g2, b2, diff; - for (; i < Terminal.vcolors.length; i++) { - c = Terminal.vcolors[i]; - r2 = c[0]; - g2 = c[1]; - b2 = c[2]; - diff = matchColor.distance(r1, g1, b1, r2, g2, b2); - if (diff === 0) { - li = i; - break; - } - if (diff < ldiff) { - ldiff = diff; - li = i; - } - } - return matchColor._cache[hash] = li; -} -matchColor._cache = {}; -matchColor.distance = function (r1, g1, b1, r2, g2, b2) { - return Math.pow(30 * (r1 - r2), 2) - + Math.pow(59 * (g1 - g2), 2) - + Math.pow(11 * (b1 - b2), 2); -}; -function each(obj, iter, con) { - if (obj.forEach) - return obj.forEach(iter, con); - for (var i = 0; i < obj.length; i++) { - iter.call(con, obj[i], i, obj); - } -} -function wasMondifierKeyOnlyEvent(ev) { - return ev.keyCode === 16 || - ev.keyCode === 17 || - ev.keyCode === 18; -} -function keys(obj) { - if (Object.keys) - return Object.keys(obj); - var key, keys = []; - for (key in obj) { - if (Object.prototype.hasOwnProperty.call(obj, key)) { - keys.push(key); - } - } - return keys; -} -Terminal.EventEmitter = EventEmitter_1.EventEmitter; -Terminal.inherits = inherits; -Terminal.on = on; -Terminal.off = off; -Terminal.cancel = cancel; -module.exports = Terminal; - -//# sourceMappingURL=xterm.js.map - - -/***/ }), -/* 1 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -; -var EventEmitter = (function () { - function EventEmitter() { - this._events = this._events || {}; - } - EventEmitter.prototype.on = function (type, listener) { - this._events[type] = this._events[type] || []; - this._events[type].push(listener); - }; - EventEmitter.prototype.off = function (type, listener) { - if (!this._events[type]) { - return; - } - var obj = this._events[type]; - var i = obj.length; - while (i--) { - if (obj[i] === listener || obj[i].listener === listener) { - obj.splice(i, 1); - return; - } - } - }; - EventEmitter.prototype.removeAllListeners = function (type) { - if (this._events[type]) { - delete this._events[type]; - } - }; - EventEmitter.prototype.once = function (type, listener) { - function on() { - var args = Array.prototype.slice.call(arguments); - this.off(type, on); - return listener.apply(this, args); - } - on.listener = listener; - return this.on(type, on); - }; - EventEmitter.prototype.emit = function (type) { - var args = []; - for (var _i = 1; _i < arguments.length; _i++) { - args[_i - 1] = arguments[_i]; - } - if (!this._events[type]) { - return; - } - var obj = this._events[type]; - for (var i = 0; i < obj.length; i++) { - obj[i].apply(this, args); - } - }; - EventEmitter.prototype.listeners = function (type) { - return this._events[type] || []; - }; - return EventEmitter; -}()); -exports.EventEmitter = EventEmitter; - -//# sourceMappingURL=EventEmitter.js.map - - -/***/ }), -/* 2 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var C0; -(function (C0) { - C0.NUL = '\x00'; - C0.SOH = '\x01'; - C0.STX = '\x02'; - C0.ETX = '\x03'; - C0.EOT = '\x04'; - C0.ENQ = '\x05'; - C0.ACK = '\x06'; - C0.BEL = '\x07'; - C0.BS = '\x08'; - C0.HT = '\x09'; - C0.LF = '\x0a'; - C0.VT = '\x0b'; - C0.FF = '\x0c'; - C0.CR = '\x0d'; - C0.SO = '\x0e'; - C0.SI = '\x0f'; - C0.DLE = '\x10'; - C0.DC1 = '\x11'; - C0.DC2 = '\x12'; - C0.DC3 = '\x13'; - C0.DC4 = '\x14'; - C0.NAK = '\x15'; - C0.SYN = '\x16'; - C0.ETB = '\x17'; - C0.CAN = '\x18'; - C0.EM = '\x19'; - C0.SUB = '\x1a'; - C0.ESC = '\x1b'; - C0.FS = '\x1c'; - C0.GS = '\x1d'; - C0.RS = '\x1e'; - C0.US = '\x1f'; - C0.SP = '\x20'; - C0.DEL = '\x7f'; -})(C0 = exports.C0 || (exports.C0 = {})); -; - -//# sourceMappingURL=EscapeSequences.js.map - - -/***/ }), -/* 3 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.CHARSETS = {}; -exports.DEFAULT_CHARSET = exports.CHARSETS['B']; -exports.CHARSETS['0'] = { - '`': '\u25c6', - 'a': '\u2592', - 'b': '\u0009', - 'c': '\u000c', - 'd': '\u000d', - 'e': '\u000a', - 'f': '\u00b0', - 'g': '\u00b1', - 'h': '\u2424', - 'i': '\u000b', - 'j': '\u2518', - 'k': '\u2510', - 'l': '\u250c', - 'm': '\u2514', - 'n': '\u253c', - 'o': '\u23ba', - 'p': '\u23bb', - 'q': '\u2500', - 'r': '\u23bc', - 's': '\u23bd', - 't': '\u251c', - 'u': '\u2524', - 'v': '\u2534', - 'w': '\u252c', - 'x': '\u2502', - 'y': '\u2264', - 'z': '\u2265', - '{': '\u03c0', - '|': '\u2260', - '}': '\u00a3', - '~': '\u00b7' -}; -exports.CHARSETS['A'] = { - '#': '£' -}; -exports.CHARSETS['B'] = null; -exports.CHARSETS['4'] = { - '#': '£', - '@': '¾', - '[': 'ij', - '\\': '½', - ']': '|', - '{': '¨', - '|': 'f', - '}': '¼', - '~': '´' -}; -exports.CHARSETS['C'] = - exports.CHARSETS['5'] = { - '[': 'Ä', - '\\': 'Ö', - ']': 'Å', - '^': 'Ü', - '`': 'é', - '{': 'ä', - '|': 'ö', - '}': 'å', - '~': 'ü' - }; -exports.CHARSETS['R'] = { - '#': '£', - '@': 'à', - '[': '°', - '\\': 'ç', - ']': '§', - '{': 'é', - '|': 'ù', - '}': 'è', - '~': '¨' -}; -exports.CHARSETS['Q'] = { - '@': 'à', - '[': 'â', - '\\': 'ç', - ']': 'ê', - '^': 'î', - '`': 'ô', - '{': 'é', - '|': 'ù', - '}': 'è', - '~': 'û' -}; -exports.CHARSETS['K'] = { - '@': '§', - '[': 'Ä', - '\\': 'Ö', - ']': 'Ü', - '{': 'ä', - '|': 'ö', - '}': 'ü', - '~': 'ß' -}; -exports.CHARSETS['Y'] = { - '#': '£', - '@': '§', - '[': '°', - '\\': 'ç', - ']': 'é', - '`': 'ù', - '{': 'à', - '|': 'ò', - '}': 'è', - '~': 'ì' -}; -exports.CHARSETS['E'] = - exports.CHARSETS['6'] = { - '@': 'Ä', - '[': 'Æ', - '\\': 'Ø', - ']': 'Å', - '^': 'Ü', - '`': 'ä', - '{': 'æ', - '|': 'ø', - '}': 'å', - '~': 'ü' - }; -exports.CHARSETS['Z'] = { - '#': '£', - '@': '§', - '[': '¡', - '\\': 'Ñ', - ']': '¿', - '{': '°', - '|': 'ñ', - '}': 'ç' -}; -exports.CHARSETS['H'] = - exports.CHARSETS['7'] = { - '@': 'É', - '[': 'Ä', - '\\': 'Ö', - ']': 'Å', - '^': 'Ü', - '`': 'é', - '{': 'ä', - '|': 'ö', - '}': 'å', - '~': 'ü' - }; -exports.CHARSETS['='] = { - '#': 'ù', - '@': 'à', - '[': 'é', - '\\': 'ç', - ']': 'ê', - '^': 'î', - '_': 'è', - '`': 'ô', - '{': 'ä', - '|': 'ö', - '}': 'ü', - '~': 'û' -}; - -//# sourceMappingURL=Charsets.js.map - - -/***/ }), -/* 4 */ -/***/ (function(module, exports, __webpack_require__) { - -/** +!function(e){function t(i){if(r[i])return r[i].exports;var o=r[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var r={};t.m=e,t.c=r,t.i=function(e){return e},t.d=function(e,r,i){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=15)}([function(e,t,r){"use strict";function i(e){var t=this;if(!(this instanceof i))return new i(arguments[0],arguments[1],arguments[2]);t.browser=S,t.cancel=i.cancel,u.EventEmitter.call(this),"number"==typeof e&&(e={cols:arguments[0],rows:arguments[1],handler:arguments[2]}),e=e||{},Object.keys(i.defaults).forEach(function(r){null==e[r]&&(e[r]=i.options[r],i[r]!==i.defaults[r]&&(e[r]=i[r])),t[r]=e[r]}),8===e.colors.length?e.colors=e.colors.concat(i._colors.slice(8)):16===e.colors.length?e.colors=e.colors.concat(i._colors.slice(16)):10===e.colors.length?e.colors=e.colors.slice(0,-2).concat(i._colors.slice(8,-2),e.colors.slice(-2)):18===e.colors.length&&(e.colors=e.colors.concat(i._colors.slice(16,-2),e.colors.slice(-2))),this.colors=e.colors,this.options=e,this.parent=e.body||e.parent||(A?A.getElementsByTagName("body")[0]:null),this.cols=e.cols||e.geometry[0],this.rows=e.rows||e.geometry[1],this.geometry=[this.cols,this.rows],e.handler&&this.on("data",e.handler),this.ybase=0,this.ydisp=0,this.x=0,this.y=0,this.cursorState=0,this.cursorHidden=!1,this.convertEol,this.queue="",this.scrollTop=0,this.scrollBottom=this.rows-1,this.customKeyEventHandler=null,this.cursorBlinkInterval=null,this.applicationKeypad=!1,this.applicationCursor=!1,this.originMode=!1,this.insertMode=!1,this.wraparoundMode=!0,this.normal=null,this.charset=null,this.gcharset=null,this.glevel=0,this.charsets=[null],this.decLocator,this.x10Mouse,this.vt200Mouse,this.vt300Mouse,this.normalMouse,this.mouseEvents,this.sendFocus,this.utfMouse,this.sgrMouse,this.urxvtMouse,this.element,this.children,this.refreshStart,this.refreshEnd,this.savedX,this.savedY,this.savedCols,this.readable=!0,this.writable=!0,this.defAttr=131840,this.curAttr=this.defAttr,this.params=[],this.currentParam=0,this.prefix="",this.postfix="",this.inputHandler=new m.InputHandler(this),this.parser=new y.Parser(this.inputHandler,this),this.renderer=this.renderer||null,this.selectionManager=this.selectionManager||null,this.linkifier=this.linkifier||new _.Linkifier,this.writeBuffer=[],this.writeInProgress=!1,this.xoffSentToCatchUp=!1,this.writeStopped=!1,this.surrogate_high="",this.lines=new f.CircularList(this.scrollback);for(var r=this.rows;r--;)this.lines.push(this.blankLine());this.selectionManager&&this.selectionManager.setBuffer(this.lines),this.tabs,this.setupStops(),this.userScrolling=!1}function o(e,t,r,i){Array.isArray(e)||(e=[e]),e.forEach(function(e){e.addEventListener(t,r,i||!1)})}function s(e,t,r,i){e.removeEventListener(t,r,i||!1)}function n(e,t){function r(){this.constructor=e}r.prototype=t.prototype,e.prototype=new r}function a(e,t){var r=e.browser.isMac&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.browser.isMSWindows&&t.altKey&&t.ctrlKey&&!t.metaKey;return"keypress"==t.type?r:r&&(!t.keyCode||t.keyCode>47)}function l(e,t,r){var o=e<<16|t<<8|r;if(null!=l._cache[o])return l._cache[o];for(var s,n,a,h,c,u=1/0,p=-1,d=0;d>16&255,e>>8&255,255&e]);return t}(),i.defaults={colors:i.colors,theme:"default",convertEol:!1,termName:"xterm",geometry:[80,24],cursorBlink:!1,cursorStyle:"block",visualBell:!1,popOnBell:!1,scrollback:1e3,screenKeys:!1,debug:!1,cancelEvents:!1,disableStdin:!1,useFlowControl:!1,tabStopWidth:8},i.options={},i.focus=null,function(e,t,r){if(e.forEach)return e.forEach(t,r);for(var i=0;it){var o=this.lines.length-t,s=this.ydisp-o<0;this.lines.trimStart(o),this.ybase=Math.max(this.ybase-o,0),this.ydisp=Math.max(this.ydisp-o,0),s&&this.refresh(0,this.rows-1)}this.lines.maxLength=t,this.viewport.syncScrollArea()}}switch(this[e]=t,this.options[e]=t,e){case"cursorBlink":this.setCursorBlinking(t);break;case"cursorStyle":this.element.classList.toggle("xterm-cursor-style-underline","underline"===t),this.element.classList.toggle("xterm-cursor-style-bar","bar"===t);break;case"tabStopWidth":this.setupStops()}},i.prototype.restartCursorBlinking=function(){this.setCursorBlinking(this.options.cursorBlink)},i.prototype.setCursorBlinking=function(e){if(this.element.classList.toggle("xterm-cursor-blink",e),this.clearCursorBlinkingInterval(),e){var t=this;this.cursorBlinkInterval=setInterval(function(){t.element.classList.toggle("xterm-cursor-blink-on")},600)}},i.prototype.clearCursorBlinkingInterval=function(){this.element.classList.remove("xterm-cursor-blink-on"),this.cursorBlinkInterval&&(clearInterval(this.cursorBlinkInterval),this.cursorBlinkInterval=null)},i.bindFocus=function(e){o(e.textarea,"focus",function(t){e.sendFocus&&e.send(g.C0.ESC+"[I"),e.element.classList.add("focus"),e.showCursor(),e.restartCursorBlinking.apply(e),i.focus=e,e.emit("focus",{terminal:e})})},i.prototype.blur=function(){return this.textarea.blur()},i.bindBlur=function(e){o(e.textarea,"blur",function(t){e.refresh(e.y,e.y),e.sendFocus&&e.send(g.C0.ESC+"[O"),e.element.classList.remove("focus"),e.clearCursorBlinkingInterval.apply(e),i.focus=null,e.emit("blur",{terminal:e})})},i.prototype.initGlobal=function(){var e=this,t=this;i.bindKeys(this),i.bindFocus(this),i.bindBlur(this),o(this.element,"copy",function(r){e.mouseEvents||d.copyHandler(r,t,e.selectionManager)});var r=function(e){return d.pasteHandler(e,t)};o(this.textarea,"paste",r),o(this.element,"paste",r),t.browser.isFirefox?o(this.element,"mousedown",function(t){2==t.button&&d.rightClickHandler(t,e.textarea,e.selectionManager)}):o(this.element,"contextmenu",function(t){d.rightClickHandler(t,e.textarea,e.selectionManager)}),t.browser.isLinux&&o(this.element,"auxclick",function(t){1===t.button&&d.moveTextAreaUnderMouseCursor(t,e.textarea,e.selectionManager)})},i.bindKeys=function(e){o(e.element,"keydown",function(t){A.activeElement==this&&e.keyDown(t)},!0),o(e.element,"keypress",function(t){A.activeElement==this&&e.keyPress(t)},!0),o(e.element,"keyup",function(t){h(t)||e.focus(e)},!0),o(e.textarea,"keydown",function(t){e.keyDown(t)},!0),o(e.textarea,"keypress",function(t){e.keyPress(t),this.value=""},!0),o(e.textarea,"compositionstart",e.compositionHelper.compositionstart.bind(e.compositionHelper)),o(e.textarea,"compositionupdate",e.compositionHelper.compositionupdate.bind(e.compositionHelper)),o(e.textarea,"compositionend",e.compositionHelper.compositionend.bind(e.compositionHelper)),e.on("refresh",e.compositionHelper.updateCompositionElements.bind(e.compositionHelper)),e.on("refresh",function(t){e.queueLinkification(t.start,t.end)})},i.prototype.insertRow=function(e){return"object"!=typeof e&&(e=A.createElement("div")),this.rowContainer.appendChild(e),this.children.push(e),e},i.prototype.open=function(e,t){var r=this,i=this,s=0;if(this.parent=e||this.parent,!this.parent)throw new Error("Terminal requires a parent element.");for(this.context=this.parent.ownerDocument.defaultView,this.document=this.parent.ownerDocument,this.body=this.document.getElementsByTagName("body")[0],this.element=this.document.createElement("div"),this.element.classList.add("terminal"),this.element.classList.add("xterm"),this.element.classList.add("xterm-theme-"+this.theme),this.setCursorBlinking(this.options.cursorBlink),this.element.setAttribute("tabindex",0),this.viewportElement=A.createElement("div"),this.viewportElement.classList.add("xterm-viewport"),this.element.appendChild(this.viewportElement),this.viewportScrollArea=A.createElement("div"),this.viewportScrollArea.classList.add("xterm-scroll-area"),this.viewportElement.appendChild(this.viewportScrollArea),this.selectionContainer=A.createElement("div"),this.selectionContainer.classList.add("xterm-selection"),this.element.appendChild(this.selectionContainer),this.rowContainer=A.createElement("div"),this.rowContainer.classList.add("xterm-rows"),this.element.appendChild(this.rowContainer),this.children=[],this.linkifier.attachToDom(A,this.children),this.helperContainer=A.createElement("div"),this.helperContainer.classList.add("xterm-helpers"),this.element.appendChild(this.helperContainer),this.textarea=A.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this.textarea.addEventListener("focus",function(){i.emit("focus",{terminal:i})}),this.textarea.addEventListener("blur",function(){i.emit("blur",{terminal:i})}),this.helperContainer.appendChild(this.textarea),this.compositionView=A.createElement("div"),this.compositionView.classList.add("composition-view"),this.compositionHelper=new c.CompositionHelper(this.textarea,this.compositionView,this),this.helperContainer.appendChild(this.compositionView),this.charSizeStyleElement=A.createElement("style"),this.helperContainer.appendChild(this.charSizeStyleElement);s div{height:"+this.charMeasure.height+"px;}"},i.prototype.bindMouse=function(){function e(e){var t,r;if(t=n(e),r=v.getRawByteCoords(e,l.rowContainer,l.charMeasure,l.cols,l.rows))switch(i(t,r),e.overrideType||e.type){case"mousedown":h=t;break;case"mouseup":h=32}}function t(e){var t,r=h;(t=v.getRawByteCoords(e,l.rowContainer,l.charMeasure,l.cols,l.rows))&&i(r+=32,t)}function r(e,t){if(l.utfMouse){if(2047===t)return e.push(0);t<127?e.push(t):(t>2047&&(t=2047),e.push(192|t>>6),e.push(128|63&t))}else{if(255===t)return e.push(0);t>127&&(t=127),e.push(t)}}function i(e,t){if(l.vt300Mouse){e&=3,t.x-=32,t.y-=32;var i=g.C0.ESC+"[24";if(0===e)i+="1";else if(1===e)i+="3";else if(2===e)i+="5";else{if(3===e)return;i+="0"}return i+="~["+t.x+","+t.y+"]\r",void l.send(i)}return l.decLocator?(e&=3,t.x-=32,t.y-=32,0===e?e=2:1===e?e=4:2===e?e=6:3===e&&(e=3),void l.send(g.C0.ESC+"["+e+";"+(3===e?4:0)+";"+t.y+";"+t.x+";"+(t.page||0)+"&w")):l.urxvtMouse?(t.x-=32,t.y-=32,t.x++,t.y++,void l.send(g.C0.ESC+"["+e+";"+t.x+";"+t.y+"M")):l.sgrMouse?(t.x-=32,t.y-=32,void l.send(g.C0.ESC+"[<"+((3==(3&e)?-4&e:e)-32)+";"+t.x+";"+t.y+(3==(3&e)?"m":"M"))):(r(i=[],e),r(i,t.x),r(i,t.y),void l.send(g.C0.ESC+"[M"+String.fromCharCode.apply(String,i)))}function n(e){var t,r,i,o,s;switch(e.overrideType||e.type){case"mousedown":t=null!=e.button?+e.button:null!=e.which?e.which-1:null,l.browser.isMSIE&&(t=1===t?0:4===t?1:t);break;case"mouseup":t=3;break;case"DOMMouseScroll":t=e.detail<0?64:65;break;case"wheel":t=e.wheelDeltaY>0?64:65}return r=e.shiftKey?4:0,i=e.metaKey?8:0,o=e.ctrlKey?16:0,s=r|i|o,l.vt200Mouse?s&=o:l.normalMouse||(s=0),t=32+(s<<2)+t}var a=this.element,l=this,h=32;o(a,"mousedown",function(r){if(l.mouseEvents)return e(r),l.focus(),l.vt200Mouse?(r.overrideType="mouseup",e(r),l.cancel(r)):(l.normalMouse&&o(l.document,"mousemove",t),l.x10Mouse||o(l.document,"mouseup",function r(i){return e(i),l.normalMouse&&s(l.document,"mousemove",t),s(l.document,"mouseup",r),l.cancel(i)}),l.cancel(r))}),o(a,"wheel",function(t){if(l.mouseEvents&&!(l.x10Mouse||l.vt300Mouse||l.decLocator))return e(t),l.cancel(t)}),o(a,"wheel",function(e){if(!l.mouseEvents)return l.viewport.onWheel(e),l.cancel(e)}),o(a,"touchstart",function(e){if(!l.mouseEvents)return l.viewport.onTouchStart(e),l.cancel(e)}),o(a,"touchmove",function(e){if(!l.mouseEvents)return l.viewport.onTouchMove(e),l.cancel(e)})},i.prototype.destroy=function(){this.readable=!1,this.writable=!1,this._events={},this.handler=function(){},this.write=function(){},this.element&&this.element.parentNode&&this.element.parentNode.removeChild(this.element)},i.prototype.refresh=function(e,t){this.renderer&&this.renderer.queueRefresh(e,t)},i.prototype.queueLinkification=function(e,t){if(this.linkifier)for(var r=e;r<=t;r++)this.linkifier.linkifyRow(r)},i.prototype.showCursor=function(){this.cursorState||(this.cursorState=1,this.refresh(this.y,this.y))},i.prototype.scroll=function(e){var t;this.lines.length===this.lines.maxLength&&(this.lines.trimStart(1),this.ybase--,0!==this.ydisp&&this.ydisp--),this.ybase++,this.userScrolling||(this.ydisp=this.ybase),t=this.ybase+this.rows-1,(t-=this.rows-1-this.scrollBottom)===this.lines.length?this.lines.push(this.blankLine(void 0,e)):this.lines.splice(t,0,this.blankLine(void 0,e)),0!==this.scrollTop&&(0!==this.ybase&&(this.ybase--,this.userScrolling||(this.ydisp=this.ybase)),this.lines.splice(this.ybase+this.scrollTop,1)),this.updateRange(this.scrollTop),this.updateRange(this.scrollBottom),this.emit("scroll",this.ydisp)},i.prototype.scrollDisp=function(e,t){if(e<0){if(0===this.ydisp)return;this.userScrolling=!0}else e+this.ydisp>=this.ybase&&(this.userScrolling=!1);this.ydisp+=e,this.ydisp>this.ybase?this.ydisp=this.ybase:this.ydisp<0&&(this.ydisp=0),t||this.emit("scroll",this.ydisp),this.refresh(0,this.rows-1)},i.prototype.scrollPages=function(e){this.scrollDisp(e*(this.rows-1))},i.prototype.scrollToTop=function(){this.scrollDisp(-this.ydisp)},i.prototype.scrollToBottom=function(){this.scrollDisp(this.ybase-this.ydisp)},i.prototype.write=function(e){if(this.writeBuffer.push(e),this.options.useFlowControl&&!this.xoffSentToCatchUp&&this.writeBuffer.length>=5&&(this.send(g.C0.DC3),this.xoffSentToCatchUp=!0),!this.writeInProgress&&this.writeBuffer.length>0){this.writeInProgress=!0;var t=this;setTimeout(function(){t.innerWrite()})}},i.prototype.innerWrite=function(){for(var e=this.writeBuffer.splice(0,300);e.length>0;){var t=e.shift();t.length;this.xoffSentToCatchUp&&0===e.length&&0===this.writeBuffer.length&&(this.send(g.C0.DC1),this.xoffSentToCatchUp=!1),this.refreshStart=this.y,this.refreshEnd=this.y;var r=this.parser.parse(t);this.parser.setState(r),this.updateRange(this.y),this.refresh(this.refreshStart,this.refreshEnd)}if(this.writeBuffer.length>0){var i=this;setTimeout(function(){i.innerWrite()},0)}else this.writeInProgress=!1},i.prototype.writeln=function(e){this.write(e+"\r\n")},i.prototype.attachCustomKeydownHandler=function(e){console.warn("attachCustomKeydownHandler() is DEPRECATED and will be removed soon. Please use attachCustomKeyEventHandler() instead."),this.attachCustomKeyEventHandler(e)},i.prototype.attachCustomKeyEventHandler=function(e){this.customKeyEventHandler=e},i.prototype.setHypertextLinkHandler=function(e){if(!this.linkifier)throw new Error("Cannot attach a hypertext link handler before Terminal.open is called");this.linkifier.setHypertextLinkHandler(e),this.refresh(0,this.rows-1)},i.prototype.setHypertextValidationCallback=function(e){if(!this.linkifier)throw new Error("Cannot attach a hypertext validation callback before Terminal.open is called");this.linkifier.setHypertextValidationCallback(e),this.refresh(0,this.rows-1)},i.prototype.registerLinkMatcher=function(e,t,r){if(this.linkifier){var i=this.linkifier.registerLinkMatcher(e,t,r);return this.refresh(0,this.rows-1),i}},i.prototype.deregisterLinkMatcher=function(e){this.linkifier&&this.linkifier.deregisterLinkMatcher(e)&&this.refresh(0,this.rows-1)},i.prototype.hasSelection=function(){return this.selectionManager.hasSelection},i.prototype.getSelection=function(){return this.selectionManager.selectionText},i.prototype.clearSelection=function(){this.selectionManager.clearSelection()},i.prototype.selectAll=function(){this.selectionManager.selectAll()},i.prototype.keyDown=function(e){if(this.customKeyEventHandler&&!1===this.customKeyEventHandler(e))return!1;if(this.restartCursorBlinking(),!this.compositionHelper.keydown.bind(this.compositionHelper)(e))return this.ybase!==this.ydisp&&this.scrollToBottom(),!1;var t=this.evaluateKeyEscapeSequence(e);return t.key===g.C0.DC3?this.writeStopped=!0:t.key===g.C0.DC1&&(this.writeStopped=!1),t.scrollDisp?(this.scrollDisp(t.scrollDisp),this.cancel(e,!0)):!!a(this,e)||(t.cancel&&this.cancel(e,!0),!t.key||(this.emit("keydown",e),this.emit("key",t.key,e),this.showCursor(),this.handler(t.key),this.cancel(e,!0)))},i.prototype.evaluateKeyEscapeSequence=function(e){var t={cancel:!1,key:void 0,scrollDisp:void 0},r=e.shiftKey<<0|e.altKey<<1|e.ctrlKey<<2|e.metaKey<<3;switch(e.keyCode){case 8:if(e.shiftKey){t.key=g.C0.BS;break}t.key=g.C0.DEL;break;case 9:if(e.shiftKey){t.key=g.C0.ESC+"[Z";break}t.key=g.C0.HT,t.cancel=!0;break;case 13:t.key=g.C0.CR,t.cancel=!0;break;case 27:t.key=g.C0.ESC,t.cancel=!0;break;case 37:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"D",t.key==g.C0.ESC+"[1;3D"&&(t.key=this.browser.isMac?g.C0.ESC+"b":g.C0.ESC+"[1;5D")):this.applicationCursor?t.key=g.C0.ESC+"OD":t.key=g.C0.ESC+"[D";break;case 39:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"C",t.key==g.C0.ESC+"[1;3C"&&(t.key=this.browser.isMac?g.C0.ESC+"f":g.C0.ESC+"[1;5C")):this.applicationCursor?t.key=g.C0.ESC+"OC":t.key=g.C0.ESC+"[C";break;case 38:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"A",t.key==g.C0.ESC+"[1;3A"&&(t.key=g.C0.ESC+"[1;5A")):this.applicationCursor?t.key=g.C0.ESC+"OA":t.key=g.C0.ESC+"[A";break;case 40:r?(t.key=g.C0.ESC+"[1;"+(r+1)+"B",t.key==g.C0.ESC+"[1;3B"&&(t.key=g.C0.ESC+"[1;5B")):this.applicationCursor?t.key=g.C0.ESC+"OB":t.key=g.C0.ESC+"[B";break;case 45:e.shiftKey||e.ctrlKey||(t.key=g.C0.ESC+"[2~");break;case 46:t.key=r?g.C0.ESC+"[3;"+(r+1)+"~":g.C0.ESC+"[3~";break;case 36:r?t.key=g.C0.ESC+"[1;"+(r+1)+"H":this.applicationCursor?t.key=g.C0.ESC+"OH":t.key=g.C0.ESC+"[H";break;case 35:r?t.key=g.C0.ESC+"[1;"+(r+1)+"F":this.applicationCursor?t.key=g.C0.ESC+"OF":t.key=g.C0.ESC+"[F";break;case 33:e.shiftKey?t.scrollDisp=-(this.rows-1):t.key=g.C0.ESC+"[5~";break;case 34:e.shiftKey?t.scrollDisp=this.rows-1:t.key=g.C0.ESC+"[6~";break;case 112:t.key=r?g.C0.ESC+"[1;"+(r+1)+"P":g.C0.ESC+"OP";break;case 113:t.key=r?g.C0.ESC+"[1;"+(r+1)+"Q":g.C0.ESC+"OQ";break;case 114:t.key=r?g.C0.ESC+"[1;"+(r+1)+"R":g.C0.ESC+"OR";break;case 115:t.key=r?g.C0.ESC+"[1;"+(r+1)+"S":g.C0.ESC+"OS";break;case 116:t.key=r?g.C0.ESC+"[15;"+(r+1)+"~":g.C0.ESC+"[15~";break;case 117:t.key=r?g.C0.ESC+"[17;"+(r+1)+"~":g.C0.ESC+"[17~";break;case 118:t.key=r?g.C0.ESC+"[18;"+(r+1)+"~":g.C0.ESC+"[18~";break;case 119:t.key=r?g.C0.ESC+"[19;"+(r+1)+"~":g.C0.ESC+"[19~";break;case 120:t.key=r?g.C0.ESC+"[20;"+(r+1)+"~":g.C0.ESC+"[20~";break;case 121:t.key=r?g.C0.ESC+"[21;"+(r+1)+"~":g.C0.ESC+"[21~";break;case 122:t.key=r?g.C0.ESC+"[23;"+(r+1)+"~":g.C0.ESC+"[23~";break;case 123:t.key=r?g.C0.ESC+"[24;"+(r+1)+"~":g.C0.ESC+"[24~";break;default:!e.ctrlKey||e.shiftKey||e.altKey||e.metaKey?this.browser.isMac||!e.altKey||e.ctrlKey||e.metaKey?this.browser.isMac&&!e.altKey&&!e.ctrlKey&&e.metaKey&&65===e.keyCode&&this.selectAll():e.keyCode>=65&&e.keyCode<=90?t.key=g.C0.ESC+String.fromCharCode(e.keyCode+32):192===e.keyCode?t.key=g.C0.ESC+"`":e.keyCode>=48&&e.keyCode<=57&&(t.key=g.C0.ESC+(e.keyCode-48)):e.keyCode>=65&&e.keyCode<=90?t.key=String.fromCharCode(e.keyCode-64):32===e.keyCode?t.key=String.fromCharCode(0):e.keyCode>=51&&e.keyCode<=55?t.key=String.fromCharCode(e.keyCode-51+27):56===e.keyCode?t.key=String.fromCharCode(127):219===e.keyCode?t.key=String.fromCharCode(27):220===e.keyCode?t.key=String.fromCharCode(28):221===e.keyCode&&(t.key=String.fromCharCode(29))}return t},i.prototype.setgLevel=function(e){this.glevel=e,this.charset=this.charsets[e]},i.prototype.setgCharset=function(e,t){this.charsets[e]=t,this.glevel===e&&(this.charset=t)},i.prototype.keyPress=function(e){var t;if(this.customKeyEventHandler&&!1===this.customKeyEventHandler(e))return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(null==e.which)t=e.keyCode;else{if(0===e.which||0===e.charCode)return!1;t=e.which}return!(!t||(e.altKey||e.ctrlKey||e.metaKey)&&!a(this,e))&&(t=String.fromCharCode(t),this.emit("keypress",t,e),this.emit("key",t,e),this.showCursor(),this.handler(t),!0)},i.prototype.send=function(e){var t=this;this.queue||setTimeout(function(){t.handler(t.queue),t.queue=""},1),this.queue+=e},i.prototype.bell=function(){if(this.visualBell){var e=this;this.element.style.borderColor="white",setTimeout(function(){e.element.style.borderColor=""},10),this.popOnBell&&this.focus()}},i.prototype.log=function(){if(this.debug&&this.context.console&&this.context.console.log){var e=Array.prototype.slice.call(arguments);this.context.console.log.apply(this.context.console,e)}},i.prototype.error=function(){if(this.debug&&this.context.console&&this.context.console.error){var e=Array.prototype.slice.call(arguments);this.context.console.error.apply(this.context.console,e)}},i.prototype.resize=function(e,t){if(!isNaN(e)&&!isNaN(t)){t>this.getOption("scrollback")&&this.setOption("scrollback",t);var r,i,o,s,n;if(e!==this.cols||t!==this.rows){if(e<1&&(e=1),t<1&&(t=1),(o=this.cols)0&&this.lines.length<=this.ybase+this.y+n+1?(this.ybase--,n++,this.ydisp>0&&this.ydisp--):this.lines.push(this.blankLine())),this.children.lengtht;)if(this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++)),this.children.length>t){if(!(r=this.children.shift()))continue;r.parentNode.removeChild(r)}this.rows=t,this.y>=t&&(this.y=t-1),n&&(this.y+=n),this.x>=e&&(this.x=e-1),this.scrollTop=0,this.scrollBottom=t-1,this.charMeasure.measure(),this.refresh(0,this.rows-1),this.normal=null,this.geometry=[this.cols,this.rows],this.emit("resize",{terminal:this,cols:e,rows:t})}}},i.prototype.updateRange=function(e){ethis.refreshEnd&&(this.refreshEnd=e)},i.prototype.maxRange=function(){this.refreshStart=0,this.refreshEnd=this.rows-1},i.prototype.setupStops=function(e){for(null!=e?this.tabs[e]||(e=this.prevStop(e)):(this.tabs={},e=0);e0;);return e>=this.cols?this.cols-1:e<0?0:e},i.prototype.nextStop=function(e){for(null==e&&(e=this.x);!this.tabs[++e]&&e=this.cols?this.cols-1:e<0?0:e},i.prototype.eraseRight=function(e,t){var r=this.lines.get(this.ybase+t);if(r){for(var i=[this.eraseAttr()," ",1];ethis.scrollBottom&&(this.y--,this.scroll()),this.x>=this.cols&&this.x--},i.prototype.reverseIndex=function(){this.y===this.scrollTop?(this.lines.shiftElements(this.y+this.ybase,this.rows-1,1),this.lines.set(this.y+this.ybase,this.blankLine(!0)),this.updateRange(this.scrollTop),this.updateRange(this.scrollBottom)):this.y--},i.prototype.reset=function(){this.options.rows=this.rows,this.options.cols=this.cols;var e=this.customKeyEventHandler,t=this.cursorBlinkInterval;i.call(this,this.options),this.customKeyEventHandler=e,this.cursorBlinkInterval=t,this.refresh(0,this.rows-1),this.viewport.syncScrollArea()},i.prototype.tabSet=function(){this.tabs[this.x]=!0},i.prototype.matchColor=l,l._cache={},l.distance=function(e,t,r,i,o,s){return Math.pow(30*(e-i),2)+Math.pow(59*(t-o),2)+Math.pow(11*(r-s),2)},i.EventEmitter=u.EventEmitter,i.inherits=n,i.on=o,i.off=s,i.cancel=function(e,t){if(this.cancelEvents||t)return e.preventDefault(),e.stopPropagation(),!1},e.exports=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(){this._events=this._events||{}}return e.prototype.on=function(e,t){this._events[e]=this._events[e]||[],this._events[e].push(t)},e.prototype.off=function(e,t){if(this._events[e])for(var r=this._events[e],i=r.length;i--;)if(r[i]===t||r[i].listener===t)return void r.splice(i,1)},e.prototype.removeAllListeners=function(e){this._events[e]&&delete this._events[e]},e.prototype.once=function(e,t){function r(){var i=Array.prototype.slice.call(arguments);return this.off(e,r),t.apply(this,i)}return r.listener=t,this.on(e,r)},e.prototype.emit=function(e){for(var t=[],r=1;r= 0; - -//# sourceMappingURL=Browser.js.map - - -/***/ }), -/* 9 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -function getCoordsRelativeToElement(event, element) { - if (event.pageX == null) { - return null; - } - var x = event.pageX; - var y = event.pageY; - while (element && element !== self.document.documentElement) { - x -= element.offsetLeft; - y -= element.offsetTop; - element = 'offsetParent' in element ? element.offsetParent : element.parentElement; - } - return [x, y]; -} -exports.getCoordsRelativeToElement = getCoordsRelativeToElement; -function getCoords(event, rowContainer, charMeasure, colCount, rowCount, isSelection) { - var coords = getCoordsRelativeToElement(event, rowContainer); - coords[0] = Math.ceil((coords[0] + (isSelection ? charMeasure.width / 2 : 0)) / charMeasure.width); - coords[1] = Math.ceil(coords[1] / charMeasure.height); - coords[0] = Math.min(Math.max(coords[0], 1), colCount + 1); - coords[1] = Math.min(Math.max(coords[1], 1), rowCount + 1); - return coords; -} -exports.getCoords = getCoords; -function getRawByteCoords(event, rowContainer, charMeasure, colCount, rowCount) { - var coords = getCoords(event, rowContainer, charMeasure, colCount, rowCount); - var x = coords[0]; - var y = coords[1]; - x += 32; - y += 32; - return { x: x, y: y }; -} -exports.getRawByteCoords = getRawByteCoords; - -//# sourceMappingURL=Mouse.js.map - - -/***/ }), -/* 10 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var bare = __webpack_require__(14); -var Hterm = (function () { - function Hterm(elem) { - this.elem = elem; - bare.hterm.defaultStorage = new bare.lib.Storage.Memory(); - this.term = new bare.hterm.Terminal(); - this.term.getPrefs().set("send-encoding", "raw"); - this.term.decorate(this.elem); - this.io = this.term.io.push(); - this.term.installKeyboard(); - } - ; - Hterm.prototype.info = function () { - return { columns: this.columns, rows: this.rows }; - }; - ; - Hterm.prototype.output = function (data) { - if (this.term.io != null) { - this.term.io.writeUTF16(data); - } - }; - ; - Hterm.prototype.showMessage = function (message, timeout) { - this.message = message; - if (timeout > 0) { - this.term.io.showOverlay(message, timeout); - } - else { - this.term.io.showOverlay(message, null); - } - }; - ; - Hterm.prototype.removeMessage = function () { - // there is no hideOverlay(), so show the same message with 0 sec - this.term.io.showOverlay(this.message, 0); - }; - Hterm.prototype.setWindowTitle = function (title) { - this.term.setWindowTitle(title); - }; - ; - Hterm.prototype.setPreferences = function (value) { - var _this = this; - Object.keys(value).forEach(function (key) { - _this.term.getPrefs().set(key, value[key]); - }); - }; - ; - Hterm.prototype.onInput = function (callback) { - this.io.onVTKeystroke = function (data) { - callback(data); - }; - this.io.sendString = function (data) { - callback(data); - }; - }; - ; - Hterm.prototype.onResize = function (callback) { - var _this = this; - this.io.onTerminalResize = function (columns, rows) { - _this.columns = columns; - _this.rows = rows; - callback(columns, rows); - }; - }; - ; - Hterm.prototype.deactivate = function () { - this.io.onVTKeystroke = null; - this.io.sendString = null; - this.io.onTerminalResize = null; - this.term.uninstallKeyboard(); - }; - Hterm.prototype.reset = function () { - this.removeMessage(); - this.term.installKeyboard(); - }; - Hterm.prototype.close = function () { - this.term.uninstallKeyboard(); - }; - return Hterm; -}()); -exports.Hterm = Hterm; - - -/***/ }), -/* 11 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var ConnectionFactory = (function () { - function ConnectionFactory(url, protocols) { - this.url = url; - this.protocols = protocols; - } - ; - ConnectionFactory.prototype.create = function () { - return new Connection(this.url, this.protocols); - }; - ; - return ConnectionFactory; -}()); -exports.ConnectionFactory = ConnectionFactory; -var Connection = (function () { - function Connection(url, protocols) { - this.bare = new WebSocket(url, protocols); - } - Connection.prototype.open = function () { - // nothing todo for websocket - }; - ; - Connection.prototype.close = function () { - this.bare.close(); - }; - ; - Connection.prototype.send = function (data) { - this.bare.send(data); - }; - ; - Connection.prototype.isOpen = function () { - if (this.bare.readyState == WebSocket.CONNECTING || - this.bare.readyState == WebSocket.OPEN) { - return true; - } - return false; - }; - Connection.prototype.onOpen = function (callback) { - this.bare.onopen = function (event) { - callback(); - }; - }; - ; - Connection.prototype.onReceive = function (callback) { - this.bare.onmessage = function (event) { - callback(event.data); - }; - }; - ; - Connection.prototype.onClose = function (callback) { - this.bare.onclose = function (event) { - callback(); - }; - }; - ; - return Connection; -}()); -exports.Connection = Connection; - - -/***/ }), -/* 12 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.protocols = ["webtty"]; -exports.msgInputUnknown = '0'; -exports.msgInput = '1'; -exports.msgPing = '2'; -exports.msgResizeTerminal = '3'; -exports.msgUnknownOutput = '0'; -exports.msgOutput = '1'; -exports.msgPong = '2'; -exports.msgSetWindowTitle = '3'; -exports.msgSetPreferences = '4'; -exports.msgSetReconnect = '5'; -var WebTTY = (function () { - function WebTTY(term, connectionFactory, args, authToken) { - this.term = term; - this.connectionFactory = connectionFactory; - this.args = args; - this.authToken = authToken; - this.reconnect = -1; - } - ; - WebTTY.prototype.open = function () { - var _this = this; - var connection = this.connectionFactory.create(); - var pingTimer; - var reconnectTimeout; - var setup = function () { - connection.onOpen(function () { - var termInfo = _this.term.info(); - connection.send(JSON.stringify({ - Arguments: _this.args, - AuthToken: _this.authToken, - })); - var resizeHandler = function (colmuns, rows) { - connection.send(exports.msgResizeTerminal + JSON.stringify({ - columns: colmuns, - rows: rows - })); - }; - _this.term.onResize(resizeHandler); - resizeHandler(termInfo.columns, termInfo.rows); - _this.term.onInput(function (input) { - connection.send(exports.msgInput + input); - }); - pingTimer = setInterval(function () { - connection.send(exports.msgPing); - }, 30 * 1000); - }); - connection.onReceive(function (data) { - var payload = data.slice(1); - switch (data[0]) { - case exports.msgOutput: - _this.term.output(decodeURIComponent(Array.prototype.map.call(atob(payload), function (c) { - return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); - }).join(''))); - break; - case exports.msgPong: - break; - case exports.msgSetWindowTitle: - _this.term.setWindowTitle(payload); - break; - case exports.msgSetPreferences: - var preferences = JSON.parse(payload); - _this.term.setPreferences(preferences); - break; - case exports.msgSetReconnect: - var autoReconnect = JSON.parse(payload); - console.log("Enabling reconnect: " + autoReconnect + " seconds"); - _this.reconnect = autoReconnect; - break; - } - }); - connection.onClose(function () { - clearInterval(pingTimer); - _this.term.deactivate(); - _this.term.showMessage("Connection Closed", 0); - if (_this.reconnect > 0) { - reconnectTimeout = setTimeout(function () { - connection = _this.connectionFactory.create(); - _this.term.reset(); - setup(); - }, _this.reconnect * 1000); - } - }); - connection.open(); - }; - setup(); - return function () { - clearTimeout(reconnectTimeout); - connection.close(); - }; - }; - ; - return WebTTY; -}()); -exports.WebTTY = WebTTY; -; - - -/***/ }), -/* 13 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var bare = __webpack_require__(0); -bare.loadAddon("fit"); -var Xterm = (function () { - function Xterm(elem) { - var _this = this; - this.elem = elem; - this.term = new bare(); - this.message = elem.ownerDocument.createElement("div"); - this.message.className = "xterm-overlay"; - this.messageTimeout = 2000; - this.resizeListener = function () { - _this.term.fit(); - _this.term.scrollToBottom(); - _this.showMessage(String(_this.term.cols) + "x" + String(_this.term.rows), _this.messageTimeout); - }; - this.term.on("open", function () { - _this.resizeListener(); - window.addEventListener("resize", function () { _this.resizeListener(); }); - }); - this.term.open(elem, true); - } - ; - Xterm.prototype.info = function () { - return { columns: this.term.cols, rows: this.term.rows }; - }; - ; - Xterm.prototype.output = function (data) { - this.term.write(data); - }; - ; - Xterm.prototype.showMessage = function (message, timeout) { - var _this = this; - this.message.textContent = message; - this.elem.appendChild(this.message); - if (this.messageTimer) { - clearTimeout(this.messageTimer); - } - if (timeout > 0) { - this.messageTimer = setTimeout(function () { - _this.elem.removeChild(_this.message); - }, timeout); - } - }; - ; - Xterm.prototype.removeMessage = function () { - if (this.message.parentNode == this.elem) { - this.elem.removeChild(this.message); - } - }; - Xterm.prototype.setWindowTitle = function (title) { - document.title = title; - }; - ; - Xterm.prototype.setPreferences = function (value) { - }; - ; - Xterm.prototype.onInput = function (callback) { - this.term.on("data", function (data) { - callback(data); - }); - }; - ; - Xterm.prototype.onResize = function (callback) { - this.term.on("resize", function (data) { - callback(data.cols, data.rows); - }); - }; - ; - Xterm.prototype.deactivate = function () { - this.term.off("data"); - this.term.off("resize"); - this.term.blur(); - }; - Xterm.prototype.reset = function () { - this.removeMessage(); - this.term.clear(); - }; - Xterm.prototype.close = function () { - window.removeEventListener("resize", this.resizeListener); - this.term.destroy(); - }; - return Xterm; -}()); -exports.Xterm = Xterm; - - -/***/ }), -/* 14 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -// This file was generated by libdot/bin/concat.sh. -// It has been marked read-only for your safety. Rather -// than edit it directly, please modify one of these source -// files... -// -// libdot/js/lib.js -// libdot/js/lib_polyfill.js -// libdot/js/lib_colors.js -// libdot/js/lib_f.js -// libdot/js/lib_message_manager.js -// libdot/js/lib_preference_manager.js -// libdot/js/lib_resource.js -// libdot/js/lib_storage.js -// libdot/js/lib_storage_chrome.js -// libdot/js/lib_storage_local.js -// libdot/js/lib_storage_memory.js -// libdot/js/lib_test_manager.js -// libdot/js/lib_utf8.js -// libdot/third_party/wcwidth/lib_wc.js -// hterm/js/hterm.js -// hterm/js/hterm_frame.js -// hterm/js/hterm_keyboard.js -// hterm/js/hterm_keyboard_bindings.js -// hterm/js/hterm_keyboard_keymap.js -// hterm/js/hterm_keyboard_keypattern.js -// hterm/js/hterm_options.js -// hterm/js/hterm_parser.js -// hterm/js/hterm_parser_identifiers.js -// hterm/js/hterm_preference_manager.js -// hterm/js/hterm_pubsub.js -// hterm/js/hterm_screen.js -// hterm/js/hterm_scrollport.js -// hterm/js/hterm_terminal.js -// hterm/js/hterm_terminal_io.js -// hterm/js/hterm_text_attributes.js -// hterm/js/hterm_vt.js -// hterm/js/hterm_vt_character_map.js -// hterm/js/hterm_export.js -// - -// SOURCE FILE: libdot/js/lib.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - - - -if (typeof lib != 'undefined') - throw new Error('Global "lib" object already exists.'); - -var lib = {}; - -/** - * Map of "dependency" to ["source", ...]. - * - * Each dependency is a object name, like "lib.fs", "source" is the url that - * depends on the object. - */ -lib.runtimeDependencies_ = {}; - -/** - * List of functions that need to be invoked during library initialization. - * - * Each element in the initCallbacks_ array is itself a two-element array. - * Element 0 is a short string describing the owner of the init routine, useful - * for debugging. Element 1 is the callback function. - */ -lib.initCallbacks_ = []; - -/** - * Records a runtime dependency. - * - * This can be useful when you want to express a run-time dependency at - * compile time. It is not intended to be a full-fledged library system or - * dependency tracker. It's just there to make it possible to debug the - * deps without running all the code. - * - * Object names are specified as strings. For example... - * - * lib.rtdep('lib.colors', 'lib.PreferenceManager'); - * - * Object names need not be rooted by 'lib'. You may use this to declare a - * dependency on any object. - * - * The client program may call lib.ensureRuntimeDependencies() at startup in - * order to ensure that all runtime dependencies have been met. - * - * @param {string} var_args One or more objects specified as strings. - */ -lib.rtdep = function(var_args) { - var source; - - try { - throw new Error(); - } catch (ex) { - var stackArray = ex.stack.split('\n'); - // In Safari, the resulting stackArray will only have 2 elements and the - // individual strings are formatted differently. - if (stackArray.length >= 3) { - source = stackArray[2].replace(/^\s*at\s+/, ''); - } else { - source = stackArray[1].replace(/^\s*global code@/, ''); - } - } - - for (var i = 0; i < arguments.length; i++) { - var path = arguments[i]; - if (path instanceof Array) { - lib.rtdep.apply(lib, path); - } else { - var ary = this.runtimeDependencies_[path]; - if (!ary) - ary = this.runtimeDependencies_[path] = []; - ary.push(source); - } - } -}; - -/** - * Ensures that all runtime dependencies are met, or an exception is thrown. - * - * Every unmet runtime dependency will be logged to the JS console. If at - * least one dependency is unmet this will raise an exception. - */ -lib.ensureRuntimeDependencies_ = function() { - var passed = true; - - for (var path in lib.runtimeDependencies_) { - var sourceList = lib.runtimeDependencies_[path]; - var names = path.split('.'); - - // In a document context 'window' is the global object. In a worker it's - // called 'self'. - var obj = (window || self); - for (var i = 0; i < names.length; i++) { - if (!(names[i] in obj)) { - console.warn('Missing "' + path + '" is needed by', sourceList); - passed = false; - break; - } - - obj = obj[names[i]]; - } - } - - if (!passed) - throw new Error('Failed runtime dependency check'); -}; - -/** - * Register an initialization function. - * - * The initialization functions are invoked in registration order when - * lib.init() is invoked. Each function will receive a single parameter, which - * is a function to be invoked when it completes its part of the initialization. - * - * @param {string} name A short descriptive name of the init routine useful for - * debugging. - * @param {function(function)} callback The initialization function to register. - * @return {function} The callback parameter. - */ -lib.registerInit = function(name, callback) { - lib.initCallbacks_.push([name, callback]); - return callback; -}; - -/** - * Initialize the library. - * - * This will ensure that all registered runtime dependencies are met, and - * invoke any registered initialization functions. - * - * Initialization is asynchronous. The library is not ready for use until - * the onInit function is invoked. - * - * @param {function()} onInit The function to invoke when initialization is - * complete. - * @param {function(*)} opt_logFunction An optional function to send - * initialization related log messages to. - */ -lib.init = function(onInit, opt_logFunction) { - var ary = lib.initCallbacks_; - - var initNext = function() { - if (ary.length) { - var rec = ary.shift(); - if (opt_logFunction) - opt_logFunction('init: ' + rec[0]); - rec[1](lib.f.alarm(initNext)); - } else { - onInit(); - } - }; - - if (typeof onInit != 'function') - throw new Error('Missing or invalid argument: onInit'); - - lib.ensureRuntimeDependencies_(); - - setTimeout(initNext, 0); -}; -// SOURCE FILE: libdot/js/lib_polyfill.js -// Copyright 2017 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * @fileoverview Polyfills for ES2016+ features we want to use. - */ - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart -if (!String.prototype.padStart) { - String.prototype.padStart = function(targetLength, padString) { - // If the string is already long enough, nothing to do! - targetLength -= this.length; - if (targetLength <= 0) - return String(this); - - if (padString === undefined) - padString = ' '; - - // In case the pad is multiple chars long. - if (targetLength > padString.length) - padString = padString.repeat((targetLength / padString.length) + 1); - - return padString.slice(0, targetLength) + String(this); - }; -} - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd -if (!String.prototype.padEnd) { - String.prototype.padEnd = function(targetLength, padString) { - // If the string is already long enough, nothing to do! - targetLength -= this.length; - if (targetLength <= 0) - return String(this); - - if (padString === undefined) - padString = ' '; - - // In case the pad is multiple chars long. - if (targetLength > padString.length) - padString = padString.repeat((targetLength / padString.length) + 1); - - return String(this) + padString.slice(0, targetLength); - }; -} -// SOURCE FILE: libdot/js/lib_colors.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Namespace for color utilities. - */ -lib.colors = {}; - -/** - * First, some canned regular expressions we're going to use in this file. - * - * - * BRACE YOURSELF - * - * ,~~~~. - * |>_< ~~ - * 3`---'-/. - * 3:::::\v\ - * =o=:::::\,\ - * | :::::\,,\ - * - * THE REGULAR EXPRESSIONS - * ARE COMING. - * - * There's no way to break long RE literals in JavaScript. Fix that why don't - * you? Oh, and also there's no way to write a string that doesn't interpret - * escapes. - * - * Instead, we stoop to this .replace() trick. - */ -lib.colors.re_ = { - // CSS hex color, #RGB. - hex16: /#([a-f0-9])([a-f0-9])([a-f0-9])/i, - - // CSS hex color, #RRGGBB. - hex24: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i, - - // CSS rgb color, rgb(rrr,ggg,bbb). - rgb: new RegExp( - ('^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,' + - '/s*(/d{1,3})/s*/)/s*$' - ).replace(/\//g, '\\'), 'i'), - - // CSS rgb color, rgb(rrr,ggg,bbb,aaa). - rgba: new RegExp( - ('^/s*rgba/s*' + - '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' + - '(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$' - ).replace(/\//g, '\\'), 'i'), - - // Either RGB or RGBA. - rgbx: new RegExp( - ('^/s*rgba?/s*' + - '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' + - '(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$' - ).replace(/\//g, '\\'), 'i'), - - // An X11 "rgb:dddd/dddd/dddd" value. - x11rgb: /^\s*rgb:([a-f0-9]{1,4})\/([a-f0-9]{1,4})\/([a-f0-9]{1,4})\s*$/i, - - // English color name. - name: /[a-z][a-z0-9\s]+/, -}; - -/** - * Convert a CSS rgb(ddd,ddd,ddd) color value into an X11 color value. - * - * Other CSS color values are ignored to ensure sanitary data handling. - * - * Each 'ddd' component is a one byte value specified in decimal. - * - * @param {string} value The CSS color value to convert. - * @return {string} The X11 color value or null if the value could not be - * converted. - */ -lib.colors.rgbToX11 = function(value) { - function scale(v) { - v = (Math.min(v, 255) * 257).toString(16); - return lib.f.zpad(v, 4); - } - - var ary = value.match(lib.colors.re_.rgbx); - if (!ary) - return null; - - return 'rgb:' + scale(ary[1]) + '/' + scale(ary[2]) + '/' + scale(ary[3]); -}; - -/** - * Convert a legacy X11 colover value into an CSS rgb(...) color value. - * - * They take the form: - * 12 bit: #RGB -> #R000G000B000 - * 24 bit: #RRGGBB -> #RR00GG00BB00 - * 36 bit: #RRRGGGBBB -> #RRR0GGG0BBB0 - * 48 bit: #RRRRGGGGBBBB - * These are the most significant bits. - * - * Truncate values back down to 24 bit since that's all CSS supports. - */ -lib.colors.x11HexToCSS = function(v) { - if (!v.startsWith('#')) - return null; - // Strip the leading # off. - v = v.substr(1); - - // Reject unknown sizes. - if ([3, 6, 9, 12].indexOf(v.length) == -1) - return null; - - // Reject non-hex values. - if (v.match(/[^a-f0-9]/i)) - return null; - - // Split the colors out. - var size = v.length / 3; - var r = v.substr(0, size); - var g = v.substr(size, size); - var b = v.substr(size + size, size); - - // Normalize to 16 bits. - function norm16(v) { - v = parseInt(v, 16); - return size == 2 ? v : // 16 bit - size == 1 ? v << 4 : // 8 bit - v >> (4 * (size - 2)); // 24 or 32 bit - } - return lib.colors.arrayToRGBA([r, g, b].map(norm16)); -}; - -/** - * Convert an X11 color value into an CSS rgb(...) color value. - * - * The X11 value may be an X11 color name, or an RGB value of the form - * rgb:hhhh/hhhh/hhhh. If a component value is less than 4 digits it is - * padded out to 4, then scaled down to fit in a single byte. - * - * @param {string} value The X11 color value to convert. - * @return {string} The CSS color value or null if the value could not be - * converted. - */ -lib.colors.x11ToCSS = function(v) { - function scale(v) { - // Pad out values with less than four digits. This padding (probably) - // matches xterm. It's difficult to say for sure since xterm seems to - // arrive at a padded value and then perform some combination of - // gamma correction, color space transformation, and quantization. - - if (v.length == 1) { - // Single digits pad out to four by repeating the character. "f" becomes - // "ffff". Scaling down a hex value of this pattern by 257 is the same - // as cutting off one byte. We skip the middle step and just double - // the character. - return parseInt(v + v, 16); - } - - if (v.length == 2) { - // Similar deal here. X11 pads two digit values by repeating the - // byte (or scale up by 257). Since we're going to scale it back - // down anyway, we can just return the original value. - return parseInt(v, 16); - } - - if (v.length == 3) { - // Three digit values seem to be padded by repeating the final digit. - // e.g. 10f becomes 10ff. - v = v + v.substr(2); - } - - // Scale down the 2 byte value. - return Math.round(parseInt(v, 16) / 257); - } - - var ary = v.match(lib.colors.re_.x11rgb); - if (!ary) { - // Handle the legacy format. - if (v.startsWith('#')) - return lib.colors.x11HexToCSS(v); - else - return lib.colors.nameToRGB(v); - } - - ary.splice(0, 1); - return lib.colors.arrayToRGBA(ary.map(scale)); -}; - -/** - * Converts one or more CSS '#RRGGBB' color values into their rgb(...) - * form. - * - * Arrays are converted in place. If a value cannot be converted, it is - * replaced with null. - * - * @param {string|Array.} A single RGB value or array of RGB values to - * convert. - * @return {string|Array.} The converted value or values. - */ -lib.colors.hexToRGB = function(arg) { - var hex16 = lib.colors.re_.hex16; - var hex24 = lib.colors.re_.hex24; - - function convert(hex) { - if (hex.length == 4) { - hex = hex.replace(hex16, function(h, r, g, b) { - return "#" + r + r + g + g + b + b; - }); - } - var ary = hex.match(hex24); - if (!ary) - return null; - - return 'rgb(' + parseInt(ary[1], 16) + ', ' + - parseInt(ary[2], 16) + ', ' + - parseInt(ary[3], 16) + ')'; - } - - if (arg instanceof Array) { - for (var i = 0; i < arg.length; i++) { - arg[i] = convert(arg[i]); - } - } else { - arg = convert(arg); - } - - return arg; -}; - -/** - * Converts one or more CSS rgb(...) forms into their '#RRGGBB' color values. - * - * If given an rgba(...) form, the alpha field is thrown away. - * - * Arrays are converted in place. If a value cannot be converted, it is - * replaced with null. - * - * @param {string|Array.} A single rgb(...) value or array of rgb(...) - * values to convert. - * @return {string|Array.} The converted value or values. - */ -lib.colors.rgbToHex = function(arg) { - function convert(rgb) { - var ary = lib.colors.crackRGB(rgb); - if (!ary) - return null; - return '#' + lib.f.zpad(((parseInt(ary[0]) << 16) | - (parseInt(ary[1]) << 8) | - (parseInt(ary[2]) << 0)).toString(16), 6); - } - - if (arg instanceof Array) { - for (var i = 0; i < arg.length; i++) { - arg[i] = convert(arg[i]); - } - } else { - arg = convert(arg); - } - - return arg; -}; - -/** - * Take any valid css color definition and turn it into an rgb or rgba value. - * - * Returns null if the value could not be normalized. - */ -lib.colors.normalizeCSS = function(def) { - if (def.startsWith('#')) - return lib.colors.hexToRGB(def); - - if (lib.colors.re_.rgbx.test(def)) - return def; - - return lib.colors.nameToRGB(def); -}; - -/** - * Convert a 3 or 4 element array into an rgba(...) string. - */ -lib.colors.arrayToRGBA = function(ary) { - var alpha = (ary.length > 3) ? ary[3] : 1; - return 'rgba(' + ary[0] + ', ' + ary[1] + ', ' + ary[2] + ', ' + alpha + ')'; -}; - -/** - * Overwrite the alpha channel of an rgb/rgba color. - */ -lib.colors.setAlpha = function(rgb, alpha) { - var ary = lib.colors.crackRGB(rgb); - ary[3] = alpha; - return lib.colors.arrayToRGBA(ary); -}; - -/** - * Mix a percentage of a tint color into a base color. - */ -lib.colors.mix = function(base, tint, percent) { - var ary1 = lib.colors.crackRGB(base); - var ary2 = lib.colors.crackRGB(tint); - - for (var i = 0; i < 4; ++i) { - var diff = ary2[i] - ary1[i]; - ary1[i] = Math.round(parseInt(ary1[i]) + diff * percent); - } - - return lib.colors.arrayToRGBA(ary1); -}; - -/** - * Split an rgb/rgba color into an array of its components. - * - * On success, a 4 element array will be returned. For rgb values, the alpha - * will be set to 1. - */ -lib.colors.crackRGB = function(color) { - if (color.startsWith('rgba')) { - var ary = color.match(lib.colors.re_.rgba); - if (ary) { - ary.shift(); - return ary; - } - } else { - var ary = color.match(lib.colors.re_.rgb); - if (ary) { - ary.shift(); - ary.push(1); - return ary; - } - } - - console.error('Couldn\'t crack: ' + color); - return null; -}; - -/** - * Convert an X11 color name into a CSS rgb(...) value. - * - * Names are stripped of spaces and converted to lowercase. If the name is - * unknown, null is returned. - * - * This list of color name to RGB mapping is derived from the stock X11 - * rgb.txt file. - * - * @param {string} name The color name to convert. - * @return {string} The corresponding CSS rgb(...) value. - */ -lib.colors.nameToRGB = function(name) { - if (name in lib.colors.colorNames) - return lib.colors.colorNames[name]; - - name = name.toLowerCase(); - if (name in lib.colors.colorNames) - return lib.colors.colorNames[name]; - - name = name.replace(/\s+/g, ''); - if (name in lib.colors.colorNames) - return lib.colors.colorNames[name]; - - return null; -}; - -/** - * The stock color palette. - */ -lib.colors.stockColorPalette = lib.colors.hexToRGB - ([// The "ANSI 16"... - '#000000', '#CC0000', '#4E9A06', '#C4A000', - '#3465A4', '#75507B', '#06989A', '#D3D7CF', - '#555753', '#EF2929', '#00BA13', '#FCE94F', - '#729FCF', '#F200CB', '#00B5BD', '#EEEEEC', - - // The 6x6 color cubes... - '#000000', '#00005F', '#000087', '#0000AF', '#0000D7', '#0000FF', - '#005F00', '#005F5F', '#005F87', '#005FAF', '#005FD7', '#005FFF', - '#008700', '#00875F', '#008787', '#0087AF', '#0087D7', '#0087FF', - '#00AF00', '#00AF5F', '#00AF87', '#00AFAF', '#00AFD7', '#00AFFF', - '#00D700', '#00D75F', '#00D787', '#00D7AF', '#00D7D7', '#00D7FF', - '#00FF00', '#00FF5F', '#00FF87', '#00FFAF', '#00FFD7', '#00FFFF', - - '#5F0000', '#5F005F', '#5F0087', '#5F00AF', '#5F00D7', '#5F00FF', - '#5F5F00', '#5F5F5F', '#5F5F87', '#5F5FAF', '#5F5FD7', '#5F5FFF', - '#5F8700', '#5F875F', '#5F8787', '#5F87AF', '#5F87D7', '#5F87FF', - '#5FAF00', '#5FAF5F', '#5FAF87', '#5FAFAF', '#5FAFD7', '#5FAFFF', - '#5FD700', '#5FD75F', '#5FD787', '#5FD7AF', '#5FD7D7', '#5FD7FF', - '#5FFF00', '#5FFF5F', '#5FFF87', '#5FFFAF', '#5FFFD7', '#5FFFFF', - - '#870000', '#87005F', '#870087', '#8700AF', '#8700D7', '#8700FF', - '#875F00', '#875F5F', '#875F87', '#875FAF', '#875FD7', '#875FFF', - '#878700', '#87875F', '#878787', '#8787AF', '#8787D7', '#8787FF', - '#87AF00', '#87AF5F', '#87AF87', '#87AFAF', '#87AFD7', '#87AFFF', - '#87D700', '#87D75F', '#87D787', '#87D7AF', '#87D7D7', '#87D7FF', - '#87FF00', '#87FF5F', '#87FF87', '#87FFAF', '#87FFD7', '#87FFFF', - - '#AF0000', '#AF005F', '#AF0087', '#AF00AF', '#AF00D7', '#AF00FF', - '#AF5F00', '#AF5F5F', '#AF5F87', '#AF5FAF', '#AF5FD7', '#AF5FFF', - '#AF8700', '#AF875F', '#AF8787', '#AF87AF', '#AF87D7', '#AF87FF', - '#AFAF00', '#AFAF5F', '#AFAF87', '#AFAFAF', '#AFAFD7', '#AFAFFF', - '#AFD700', '#AFD75F', '#AFD787', '#AFD7AF', '#AFD7D7', '#AFD7FF', - '#AFFF00', '#AFFF5F', '#AFFF87', '#AFFFAF', '#AFFFD7', '#AFFFFF', - - '#D70000', '#D7005F', '#D70087', '#D700AF', '#D700D7', '#D700FF', - '#D75F00', '#D75F5F', '#D75F87', '#D75FAF', '#D75FD7', '#D75FFF', - '#D78700', '#D7875F', '#D78787', '#D787AF', '#D787D7', '#D787FF', - '#D7AF00', '#D7AF5F', '#D7AF87', '#D7AFAF', '#D7AFD7', '#D7AFFF', - '#D7D700', '#D7D75F', '#D7D787', '#D7D7AF', '#D7D7D7', '#D7D7FF', - '#D7FF00', '#D7FF5F', '#D7FF87', '#D7FFAF', '#D7FFD7', '#D7FFFF', - - '#FF0000', '#FF005F', '#FF0087', '#FF00AF', '#FF00D7', '#FF00FF', - '#FF5F00', '#FF5F5F', '#FF5F87', '#FF5FAF', '#FF5FD7', '#FF5FFF', - '#FF8700', '#FF875F', '#FF8787', '#FF87AF', '#FF87D7', '#FF87FF', - '#FFAF00', '#FFAF5F', '#FFAF87', '#FFAFAF', '#FFAFD7', '#FFAFFF', - '#FFD700', '#FFD75F', '#FFD787', '#FFD7AF', '#FFD7D7', '#FFD7FF', - '#FFFF00', '#FFFF5F', '#FFFF87', '#FFFFAF', '#FFFFD7', '#FFFFFF', - - // The greyscale ramp... - '#080808', '#121212', '#1C1C1C', '#262626', '#303030', '#3A3A3A', - '#444444', '#4E4E4E', '#585858', '#626262', '#6C6C6C', '#767676', - '#808080', '#8A8A8A', '#949494', '#9E9E9E', '#A8A8A8', '#B2B2B2', - '#BCBCBC', '#C6C6C6', '#D0D0D0', '#DADADA', '#E4E4E4', '#EEEEEE' - ]); - -/** - * The current color palette, possibly with user changes. - */ -lib.colors.colorPalette = lib.colors.stockColorPalette; - -/** - * Named colors according to the stock X11 rgb.txt file. - */ -lib.colors.colorNames = { - "aliceblue": "rgb(240, 248, 255)", - "antiquewhite": "rgb(250, 235, 215)", - "antiquewhite1": "rgb(255, 239, 219)", - "antiquewhite2": "rgb(238, 223, 204)", - "antiquewhite3": "rgb(205, 192, 176)", - "antiquewhite4": "rgb(139, 131, 120)", - "aquamarine": "rgb(127, 255, 212)", - "aquamarine1": "rgb(127, 255, 212)", - "aquamarine2": "rgb(118, 238, 198)", - "aquamarine3": "rgb(102, 205, 170)", - "aquamarine4": "rgb(69, 139, 116)", - "azure": "rgb(240, 255, 255)", - "azure1": "rgb(240, 255, 255)", - "azure2": "rgb(224, 238, 238)", - "azure3": "rgb(193, 205, 205)", - "azure4": "rgb(131, 139, 139)", - "beige": "rgb(245, 245, 220)", - "bisque": "rgb(255, 228, 196)", - "bisque1": "rgb(255, 228, 196)", - "bisque2": "rgb(238, 213, 183)", - "bisque3": "rgb(205, 183, 158)", - "bisque4": "rgb(139, 125, 107)", - "black": "rgb(0, 0, 0)", - "blanchedalmond": "rgb(255, 235, 205)", - "blue": "rgb(0, 0, 255)", - "blue1": "rgb(0, 0, 255)", - "blue2": "rgb(0, 0, 238)", - "blue3": "rgb(0, 0, 205)", - "blue4": "rgb(0, 0, 139)", - "blueviolet": "rgb(138, 43, 226)", - "brown": "rgb(165, 42, 42)", - "brown1": "rgb(255, 64, 64)", - "brown2": "rgb(238, 59, 59)", - "brown3": "rgb(205, 51, 51)", - "brown4": "rgb(139, 35, 35)", - "burlywood": "rgb(222, 184, 135)", - "burlywood1": "rgb(255, 211, 155)", - "burlywood2": "rgb(238, 197, 145)", - "burlywood3": "rgb(205, 170, 125)", - "burlywood4": "rgb(139, 115, 85)", - "cadetblue": "rgb(95, 158, 160)", - "cadetblue1": "rgb(152, 245, 255)", - "cadetblue2": "rgb(142, 229, 238)", - "cadetblue3": "rgb(122, 197, 205)", - "cadetblue4": "rgb(83, 134, 139)", - "chartreuse": "rgb(127, 255, 0)", - "chartreuse1": "rgb(127, 255, 0)", - "chartreuse2": "rgb(118, 238, 0)", - "chartreuse3": "rgb(102, 205, 0)", - "chartreuse4": "rgb(69, 139, 0)", - "chocolate": "rgb(210, 105, 30)", - "chocolate1": "rgb(255, 127, 36)", - "chocolate2": "rgb(238, 118, 33)", - "chocolate3": "rgb(205, 102, 29)", - "chocolate4": "rgb(139, 69, 19)", - "coral": "rgb(255, 127, 80)", - "coral1": "rgb(255, 114, 86)", - "coral2": "rgb(238, 106, 80)", - "coral3": "rgb(205, 91, 69)", - "coral4": "rgb(139, 62, 47)", - "cornflowerblue": "rgb(100, 149, 237)", - "cornsilk": "rgb(255, 248, 220)", - "cornsilk1": "rgb(255, 248, 220)", - "cornsilk2": "rgb(238, 232, 205)", - "cornsilk3": "rgb(205, 200, 177)", - "cornsilk4": "rgb(139, 136, 120)", - "cyan": "rgb(0, 255, 255)", - "cyan1": "rgb(0, 255, 255)", - "cyan2": "rgb(0, 238, 238)", - "cyan3": "rgb(0, 205, 205)", - "cyan4": "rgb(0, 139, 139)", - "darkblue": "rgb(0, 0, 139)", - "darkcyan": "rgb(0, 139, 139)", - "darkgoldenrod": "rgb(184, 134, 11)", - "darkgoldenrod1": "rgb(255, 185, 15)", - "darkgoldenrod2": "rgb(238, 173, 14)", - "darkgoldenrod3": "rgb(205, 149, 12)", - "darkgoldenrod4": "rgb(139, 101, 8)", - "darkgray": "rgb(169, 169, 169)", - "darkgreen": "rgb(0, 100, 0)", - "darkgrey": "rgb(169, 169, 169)", - "darkkhaki": "rgb(189, 183, 107)", - "darkmagenta": "rgb(139, 0, 139)", - "darkolivegreen": "rgb(85, 107, 47)", - "darkolivegreen1": "rgb(202, 255, 112)", - "darkolivegreen2": "rgb(188, 238, 104)", - "darkolivegreen3": "rgb(162, 205, 90)", - "darkolivegreen4": "rgb(110, 139, 61)", - "darkorange": "rgb(255, 140, 0)", - "darkorange1": "rgb(255, 127, 0)", - "darkorange2": "rgb(238, 118, 0)", - "darkorange3": "rgb(205, 102, 0)", - "darkorange4": "rgb(139, 69, 0)", - "darkorchid": "rgb(153, 50, 204)", - "darkorchid1": "rgb(191, 62, 255)", - "darkorchid2": "rgb(178, 58, 238)", - "darkorchid3": "rgb(154, 50, 205)", - "darkorchid4": "rgb(104, 34, 139)", - "darkred": "rgb(139, 0, 0)", - "darksalmon": "rgb(233, 150, 122)", - "darkseagreen": "rgb(143, 188, 143)", - "darkseagreen1": "rgb(193, 255, 193)", - "darkseagreen2": "rgb(180, 238, 180)", - "darkseagreen3": "rgb(155, 205, 155)", - "darkseagreen4": "rgb(105, 139, 105)", - "darkslateblue": "rgb(72, 61, 139)", - "darkslategray": "rgb(47, 79, 79)", - "darkslategray1": "rgb(151, 255, 255)", - "darkslategray2": "rgb(141, 238, 238)", - "darkslategray3": "rgb(121, 205, 205)", - "darkslategray4": "rgb(82, 139, 139)", - "darkslategrey": "rgb(47, 79, 79)", - "darkturquoise": "rgb(0, 206, 209)", - "darkviolet": "rgb(148, 0, 211)", - "debianred": "rgb(215, 7, 81)", - "deeppink": "rgb(255, 20, 147)", - "deeppink1": "rgb(255, 20, 147)", - "deeppink2": "rgb(238, 18, 137)", - "deeppink3": "rgb(205, 16, 118)", - "deeppink4": "rgb(139, 10, 80)", - "deepskyblue": "rgb(0, 191, 255)", - "deepskyblue1": "rgb(0, 191, 255)", - "deepskyblue2": "rgb(0, 178, 238)", - "deepskyblue3": "rgb(0, 154, 205)", - "deepskyblue4": "rgb(0, 104, 139)", - "dimgray": "rgb(105, 105, 105)", - "dimgrey": "rgb(105, 105, 105)", - "dodgerblue": "rgb(30, 144, 255)", - "dodgerblue1": "rgb(30, 144, 255)", - "dodgerblue2": "rgb(28, 134, 238)", - "dodgerblue3": "rgb(24, 116, 205)", - "dodgerblue4": "rgb(16, 78, 139)", - "firebrick": "rgb(178, 34, 34)", - "firebrick1": "rgb(255, 48, 48)", - "firebrick2": "rgb(238, 44, 44)", - "firebrick3": "rgb(205, 38, 38)", - "firebrick4": "rgb(139, 26, 26)", - "floralwhite": "rgb(255, 250, 240)", - "forestgreen": "rgb(34, 139, 34)", - "gainsboro": "rgb(220, 220, 220)", - "ghostwhite": "rgb(248, 248, 255)", - "gold": "rgb(255, 215, 0)", - "gold1": "rgb(255, 215, 0)", - "gold2": "rgb(238, 201, 0)", - "gold3": "rgb(205, 173, 0)", - "gold4": "rgb(139, 117, 0)", - "goldenrod": "rgb(218, 165, 32)", - "goldenrod1": "rgb(255, 193, 37)", - "goldenrod2": "rgb(238, 180, 34)", - "goldenrod3": "rgb(205, 155, 29)", - "goldenrod4": "rgb(139, 105, 20)", - "gray": "rgb(190, 190, 190)", - "gray0": "rgb(0, 0, 0)", - "gray1": "rgb(3, 3, 3)", - "gray10": "rgb(26, 26, 26)", - "gray100": "rgb(255, 255, 255)", - "gray11": "rgb(28, 28, 28)", - "gray12": "rgb(31, 31, 31)", - "gray13": "rgb(33, 33, 33)", - "gray14": "rgb(36, 36, 36)", - "gray15": "rgb(38, 38, 38)", - "gray16": "rgb(41, 41, 41)", - "gray17": "rgb(43, 43, 43)", - "gray18": "rgb(46, 46, 46)", - "gray19": "rgb(48, 48, 48)", - "gray2": "rgb(5, 5, 5)", - "gray20": "rgb(51, 51, 51)", - "gray21": "rgb(54, 54, 54)", - "gray22": "rgb(56, 56, 56)", - "gray23": "rgb(59, 59, 59)", - "gray24": "rgb(61, 61, 61)", - "gray25": "rgb(64, 64, 64)", - "gray26": "rgb(66, 66, 66)", - "gray27": "rgb(69, 69, 69)", - "gray28": "rgb(71, 71, 71)", - "gray29": "rgb(74, 74, 74)", - "gray3": "rgb(8, 8, 8)", - "gray30": "rgb(77, 77, 77)", - "gray31": "rgb(79, 79, 79)", - "gray32": "rgb(82, 82, 82)", - "gray33": "rgb(84, 84, 84)", - "gray34": "rgb(87, 87, 87)", - "gray35": "rgb(89, 89, 89)", - "gray36": "rgb(92, 92, 92)", - "gray37": "rgb(94, 94, 94)", - "gray38": "rgb(97, 97, 97)", - "gray39": "rgb(99, 99, 99)", - "gray4": "rgb(10, 10, 10)", - "gray40": "rgb(102, 102, 102)", - "gray41": "rgb(105, 105, 105)", - "gray42": "rgb(107, 107, 107)", - "gray43": "rgb(110, 110, 110)", - "gray44": "rgb(112, 112, 112)", - "gray45": "rgb(115, 115, 115)", - "gray46": "rgb(117, 117, 117)", - "gray47": "rgb(120, 120, 120)", - "gray48": "rgb(122, 122, 122)", - "gray49": "rgb(125, 125, 125)", - "gray5": "rgb(13, 13, 13)", - "gray50": "rgb(127, 127, 127)", - "gray51": "rgb(130, 130, 130)", - "gray52": "rgb(133, 133, 133)", - "gray53": "rgb(135, 135, 135)", - "gray54": "rgb(138, 138, 138)", - "gray55": "rgb(140, 140, 140)", - "gray56": "rgb(143, 143, 143)", - "gray57": "rgb(145, 145, 145)", - "gray58": "rgb(148, 148, 148)", - "gray59": "rgb(150, 150, 150)", - "gray6": "rgb(15, 15, 15)", - "gray60": "rgb(153, 153, 153)", - "gray61": "rgb(156, 156, 156)", - "gray62": "rgb(158, 158, 158)", - "gray63": "rgb(161, 161, 161)", - "gray64": "rgb(163, 163, 163)", - "gray65": "rgb(166, 166, 166)", - "gray66": "rgb(168, 168, 168)", - "gray67": "rgb(171, 171, 171)", - "gray68": "rgb(173, 173, 173)", - "gray69": "rgb(176, 176, 176)", - "gray7": "rgb(18, 18, 18)", - "gray70": "rgb(179, 179, 179)", - "gray71": "rgb(181, 181, 181)", - "gray72": "rgb(184, 184, 184)", - "gray73": "rgb(186, 186, 186)", - "gray74": "rgb(189, 189, 189)", - "gray75": "rgb(191, 191, 191)", - "gray76": "rgb(194, 194, 194)", - "gray77": "rgb(196, 196, 196)", - "gray78": "rgb(199, 199, 199)", - "gray79": "rgb(201, 201, 201)", - "gray8": "rgb(20, 20, 20)", - "gray80": "rgb(204, 204, 204)", - "gray81": "rgb(207, 207, 207)", - "gray82": "rgb(209, 209, 209)", - "gray83": "rgb(212, 212, 212)", - "gray84": "rgb(214, 214, 214)", - "gray85": "rgb(217, 217, 217)", - "gray86": "rgb(219, 219, 219)", - "gray87": "rgb(222, 222, 222)", - "gray88": "rgb(224, 224, 224)", - "gray89": "rgb(227, 227, 227)", - "gray9": "rgb(23, 23, 23)", - "gray90": "rgb(229, 229, 229)", - "gray91": "rgb(232, 232, 232)", - "gray92": "rgb(235, 235, 235)", - "gray93": "rgb(237, 237, 237)", - "gray94": "rgb(240, 240, 240)", - "gray95": "rgb(242, 242, 242)", - "gray96": "rgb(245, 245, 245)", - "gray97": "rgb(247, 247, 247)", - "gray98": "rgb(250, 250, 250)", - "gray99": "rgb(252, 252, 252)", - "green": "rgb(0, 255, 0)", - "green1": "rgb(0, 255, 0)", - "green2": "rgb(0, 238, 0)", - "green3": "rgb(0, 205, 0)", - "green4": "rgb(0, 139, 0)", - "greenyellow": "rgb(173, 255, 47)", - "grey": "rgb(190, 190, 190)", - "grey0": "rgb(0, 0, 0)", - "grey1": "rgb(3, 3, 3)", - "grey10": "rgb(26, 26, 26)", - "grey100": "rgb(255, 255, 255)", - "grey11": "rgb(28, 28, 28)", - "grey12": "rgb(31, 31, 31)", - "grey13": "rgb(33, 33, 33)", - "grey14": "rgb(36, 36, 36)", - "grey15": "rgb(38, 38, 38)", - "grey16": "rgb(41, 41, 41)", - "grey17": "rgb(43, 43, 43)", - "grey18": "rgb(46, 46, 46)", - "grey19": "rgb(48, 48, 48)", - "grey2": "rgb(5, 5, 5)", - "grey20": "rgb(51, 51, 51)", - "grey21": "rgb(54, 54, 54)", - "grey22": "rgb(56, 56, 56)", - "grey23": "rgb(59, 59, 59)", - "grey24": "rgb(61, 61, 61)", - "grey25": "rgb(64, 64, 64)", - "grey26": "rgb(66, 66, 66)", - "grey27": "rgb(69, 69, 69)", - "grey28": "rgb(71, 71, 71)", - "grey29": "rgb(74, 74, 74)", - "grey3": "rgb(8, 8, 8)", - "grey30": "rgb(77, 77, 77)", - "grey31": "rgb(79, 79, 79)", - "grey32": "rgb(82, 82, 82)", - "grey33": "rgb(84, 84, 84)", - "grey34": "rgb(87, 87, 87)", - "grey35": "rgb(89, 89, 89)", - "grey36": "rgb(92, 92, 92)", - "grey37": "rgb(94, 94, 94)", - "grey38": "rgb(97, 97, 97)", - "grey39": "rgb(99, 99, 99)", - "grey4": "rgb(10, 10, 10)", - "grey40": "rgb(102, 102, 102)", - "grey41": "rgb(105, 105, 105)", - "grey42": "rgb(107, 107, 107)", - "grey43": "rgb(110, 110, 110)", - "grey44": "rgb(112, 112, 112)", - "grey45": "rgb(115, 115, 115)", - "grey46": "rgb(117, 117, 117)", - "grey47": "rgb(120, 120, 120)", - "grey48": "rgb(122, 122, 122)", - "grey49": "rgb(125, 125, 125)", - "grey5": "rgb(13, 13, 13)", - "grey50": "rgb(127, 127, 127)", - "grey51": "rgb(130, 130, 130)", - "grey52": "rgb(133, 133, 133)", - "grey53": "rgb(135, 135, 135)", - "grey54": "rgb(138, 138, 138)", - "grey55": "rgb(140, 140, 140)", - "grey56": "rgb(143, 143, 143)", - "grey57": "rgb(145, 145, 145)", - "grey58": "rgb(148, 148, 148)", - "grey59": "rgb(150, 150, 150)", - "grey6": "rgb(15, 15, 15)", - "grey60": "rgb(153, 153, 153)", - "grey61": "rgb(156, 156, 156)", - "grey62": "rgb(158, 158, 158)", - "grey63": "rgb(161, 161, 161)", - "grey64": "rgb(163, 163, 163)", - "grey65": "rgb(166, 166, 166)", - "grey66": "rgb(168, 168, 168)", - "grey67": "rgb(171, 171, 171)", - "grey68": "rgb(173, 173, 173)", - "grey69": "rgb(176, 176, 176)", - "grey7": "rgb(18, 18, 18)", - "grey70": "rgb(179, 179, 179)", - "grey71": "rgb(181, 181, 181)", - "grey72": "rgb(184, 184, 184)", - "grey73": "rgb(186, 186, 186)", - "grey74": "rgb(189, 189, 189)", - "grey75": "rgb(191, 191, 191)", - "grey76": "rgb(194, 194, 194)", - "grey77": "rgb(196, 196, 196)", - "grey78": "rgb(199, 199, 199)", - "grey79": "rgb(201, 201, 201)", - "grey8": "rgb(20, 20, 20)", - "grey80": "rgb(204, 204, 204)", - "grey81": "rgb(207, 207, 207)", - "grey82": "rgb(209, 209, 209)", - "grey83": "rgb(212, 212, 212)", - "grey84": "rgb(214, 214, 214)", - "grey85": "rgb(217, 217, 217)", - "grey86": "rgb(219, 219, 219)", - "grey87": "rgb(222, 222, 222)", - "grey88": "rgb(224, 224, 224)", - "grey89": "rgb(227, 227, 227)", - "grey9": "rgb(23, 23, 23)", - "grey90": "rgb(229, 229, 229)", - "grey91": "rgb(232, 232, 232)", - "grey92": "rgb(235, 235, 235)", - "grey93": "rgb(237, 237, 237)", - "grey94": "rgb(240, 240, 240)", - "grey95": "rgb(242, 242, 242)", - "grey96": "rgb(245, 245, 245)", - "grey97": "rgb(247, 247, 247)", - "grey98": "rgb(250, 250, 250)", - "grey99": "rgb(252, 252, 252)", - "honeydew": "rgb(240, 255, 240)", - "honeydew1": "rgb(240, 255, 240)", - "honeydew2": "rgb(224, 238, 224)", - "honeydew3": "rgb(193, 205, 193)", - "honeydew4": "rgb(131, 139, 131)", - "hotpink": "rgb(255, 105, 180)", - "hotpink1": "rgb(255, 110, 180)", - "hotpink2": "rgb(238, 106, 167)", - "hotpink3": "rgb(205, 96, 144)", - "hotpink4": "rgb(139, 58, 98)", - "indianred": "rgb(205, 92, 92)", - "indianred1": "rgb(255, 106, 106)", - "indianred2": "rgb(238, 99, 99)", - "indianred3": "rgb(205, 85, 85)", - "indianred4": "rgb(139, 58, 58)", - "ivory": "rgb(255, 255, 240)", - "ivory1": "rgb(255, 255, 240)", - "ivory2": "rgb(238, 238, 224)", - "ivory3": "rgb(205, 205, 193)", - "ivory4": "rgb(139, 139, 131)", - "khaki": "rgb(240, 230, 140)", - "khaki1": "rgb(255, 246, 143)", - "khaki2": "rgb(238, 230, 133)", - "khaki3": "rgb(205, 198, 115)", - "khaki4": "rgb(139, 134, 78)", - "lavender": "rgb(230, 230, 250)", - "lavenderblush": "rgb(255, 240, 245)", - "lavenderblush1": "rgb(255, 240, 245)", - "lavenderblush2": "rgb(238, 224, 229)", - "lavenderblush3": "rgb(205, 193, 197)", - "lavenderblush4": "rgb(139, 131, 134)", - "lawngreen": "rgb(124, 252, 0)", - "lemonchiffon": "rgb(255, 250, 205)", - "lemonchiffon1": "rgb(255, 250, 205)", - "lemonchiffon2": "rgb(238, 233, 191)", - "lemonchiffon3": "rgb(205, 201, 165)", - "lemonchiffon4": "rgb(139, 137, 112)", - "lightblue": "rgb(173, 216, 230)", - "lightblue1": "rgb(191, 239, 255)", - "lightblue2": "rgb(178, 223, 238)", - "lightblue3": "rgb(154, 192, 205)", - "lightblue4": "rgb(104, 131, 139)", - "lightcoral": "rgb(240, 128, 128)", - "lightcyan": "rgb(224, 255, 255)", - "lightcyan1": "rgb(224, 255, 255)", - "lightcyan2": "rgb(209, 238, 238)", - "lightcyan3": "rgb(180, 205, 205)", - "lightcyan4": "rgb(122, 139, 139)", - "lightgoldenrod": "rgb(238, 221, 130)", - "lightgoldenrod1": "rgb(255, 236, 139)", - "lightgoldenrod2": "rgb(238, 220, 130)", - "lightgoldenrod3": "rgb(205, 190, 112)", - "lightgoldenrod4": "rgb(139, 129, 76)", - "lightgoldenrodyellow": "rgb(250, 250, 210)", - "lightgray": "rgb(211, 211, 211)", - "lightgreen": "rgb(144, 238, 144)", - "lightgrey": "rgb(211, 211, 211)", - "lightpink": "rgb(255, 182, 193)", - "lightpink1": "rgb(255, 174, 185)", - "lightpink2": "rgb(238, 162, 173)", - "lightpink3": "rgb(205, 140, 149)", - "lightpink4": "rgb(139, 95, 101)", - "lightsalmon": "rgb(255, 160, 122)", - "lightsalmon1": "rgb(255, 160, 122)", - "lightsalmon2": "rgb(238, 149, 114)", - "lightsalmon3": "rgb(205, 129, 98)", - "lightsalmon4": "rgb(139, 87, 66)", - "lightseagreen": "rgb(32, 178, 170)", - "lightskyblue": "rgb(135, 206, 250)", - "lightskyblue1": "rgb(176, 226, 255)", - "lightskyblue2": "rgb(164, 211, 238)", - "lightskyblue3": "rgb(141, 182, 205)", - "lightskyblue4": "rgb(96, 123, 139)", - "lightslateblue": "rgb(132, 112, 255)", - "lightslategray": "rgb(119, 136, 153)", - "lightslategrey": "rgb(119, 136, 153)", - "lightsteelblue": "rgb(176, 196, 222)", - "lightsteelblue1": "rgb(202, 225, 255)", - "lightsteelblue2": "rgb(188, 210, 238)", - "lightsteelblue3": "rgb(162, 181, 205)", - "lightsteelblue4": "rgb(110, 123, 139)", - "lightyellow": "rgb(255, 255, 224)", - "lightyellow1": "rgb(255, 255, 224)", - "lightyellow2": "rgb(238, 238, 209)", - "lightyellow3": "rgb(205, 205, 180)", - "lightyellow4": "rgb(139, 139, 122)", - "limegreen": "rgb(50, 205, 50)", - "linen": "rgb(250, 240, 230)", - "magenta": "rgb(255, 0, 255)", - "magenta1": "rgb(255, 0, 255)", - "magenta2": "rgb(238, 0, 238)", - "magenta3": "rgb(205, 0, 205)", - "magenta4": "rgb(139, 0, 139)", - "maroon": "rgb(176, 48, 96)", - "maroon1": "rgb(255, 52, 179)", - "maroon2": "rgb(238, 48, 167)", - "maroon3": "rgb(205, 41, 144)", - "maroon4": "rgb(139, 28, 98)", - "mediumaquamarine": "rgb(102, 205, 170)", - "mediumblue": "rgb(0, 0, 205)", - "mediumorchid": "rgb(186, 85, 211)", - "mediumorchid1": "rgb(224, 102, 255)", - "mediumorchid2": "rgb(209, 95, 238)", - "mediumorchid3": "rgb(180, 82, 205)", - "mediumorchid4": "rgb(122, 55, 139)", - "mediumpurple": "rgb(147, 112, 219)", - "mediumpurple1": "rgb(171, 130, 255)", - "mediumpurple2": "rgb(159, 121, 238)", - "mediumpurple3": "rgb(137, 104, 205)", - "mediumpurple4": "rgb(93, 71, 139)", - "mediumseagreen": "rgb(60, 179, 113)", - "mediumslateblue": "rgb(123, 104, 238)", - "mediumspringgreen": "rgb(0, 250, 154)", - "mediumturquoise": "rgb(72, 209, 204)", - "mediumvioletred": "rgb(199, 21, 133)", - "midnightblue": "rgb(25, 25, 112)", - "mintcream": "rgb(245, 255, 250)", - "mistyrose": "rgb(255, 228, 225)", - "mistyrose1": "rgb(255, 228, 225)", - "mistyrose2": "rgb(238, 213, 210)", - "mistyrose3": "rgb(205, 183, 181)", - "mistyrose4": "rgb(139, 125, 123)", - "moccasin": "rgb(255, 228, 181)", - "navajowhite": "rgb(255, 222, 173)", - "navajowhite1": "rgb(255, 222, 173)", - "navajowhite2": "rgb(238, 207, 161)", - "navajowhite3": "rgb(205, 179, 139)", - "navajowhite4": "rgb(139, 121, 94)", - "navy": "rgb(0, 0, 128)", - "navyblue": "rgb(0, 0, 128)", - "oldlace": "rgb(253, 245, 230)", - "olivedrab": "rgb(107, 142, 35)", - "olivedrab1": "rgb(192, 255, 62)", - "olivedrab2": "rgb(179, 238, 58)", - "olivedrab3": "rgb(154, 205, 50)", - "olivedrab4": "rgb(105, 139, 34)", - "orange": "rgb(255, 165, 0)", - "orange1": "rgb(255, 165, 0)", - "orange2": "rgb(238, 154, 0)", - "orange3": "rgb(205, 133, 0)", - "orange4": "rgb(139, 90, 0)", - "orangered": "rgb(255, 69, 0)", - "orangered1": "rgb(255, 69, 0)", - "orangered2": "rgb(238, 64, 0)", - "orangered3": "rgb(205, 55, 0)", - "orangered4": "rgb(139, 37, 0)", - "orchid": "rgb(218, 112, 214)", - "orchid1": "rgb(255, 131, 250)", - "orchid2": "rgb(238, 122, 233)", - "orchid3": "rgb(205, 105, 201)", - "orchid4": "rgb(139, 71, 137)", - "palegoldenrod": "rgb(238, 232, 170)", - "palegreen": "rgb(152, 251, 152)", - "palegreen1": "rgb(154, 255, 154)", - "palegreen2": "rgb(144, 238, 144)", - "palegreen3": "rgb(124, 205, 124)", - "palegreen4": "rgb(84, 139, 84)", - "paleturquoise": "rgb(175, 238, 238)", - "paleturquoise1": "rgb(187, 255, 255)", - "paleturquoise2": "rgb(174, 238, 238)", - "paleturquoise3": "rgb(150, 205, 205)", - "paleturquoise4": "rgb(102, 139, 139)", - "palevioletred": "rgb(219, 112, 147)", - "palevioletred1": "rgb(255, 130, 171)", - "palevioletred2": "rgb(238, 121, 159)", - "palevioletred3": "rgb(205, 104, 137)", - "palevioletred4": "rgb(139, 71, 93)", - "papayawhip": "rgb(255, 239, 213)", - "peachpuff": "rgb(255, 218, 185)", - "peachpuff1": "rgb(255, 218, 185)", - "peachpuff2": "rgb(238, 203, 173)", - "peachpuff3": "rgb(205, 175, 149)", - "peachpuff4": "rgb(139, 119, 101)", - "peru": "rgb(205, 133, 63)", - "pink": "rgb(255, 192, 203)", - "pink1": "rgb(255, 181, 197)", - "pink2": "rgb(238, 169, 184)", - "pink3": "rgb(205, 145, 158)", - "pink4": "rgb(139, 99, 108)", - "plum": "rgb(221, 160, 221)", - "plum1": "rgb(255, 187, 255)", - "plum2": "rgb(238, 174, 238)", - "plum3": "rgb(205, 150, 205)", - "plum4": "rgb(139, 102, 139)", - "powderblue": "rgb(176, 224, 230)", - "purple": "rgb(160, 32, 240)", - "purple1": "rgb(155, 48, 255)", - "purple2": "rgb(145, 44, 238)", - "purple3": "rgb(125, 38, 205)", - "purple4": "rgb(85, 26, 139)", - "red": "rgb(255, 0, 0)", - "red1": "rgb(255, 0, 0)", - "red2": "rgb(238, 0, 0)", - "red3": "rgb(205, 0, 0)", - "red4": "rgb(139, 0, 0)", - "rosybrown": "rgb(188, 143, 143)", - "rosybrown1": "rgb(255, 193, 193)", - "rosybrown2": "rgb(238, 180, 180)", - "rosybrown3": "rgb(205, 155, 155)", - "rosybrown4": "rgb(139, 105, 105)", - "royalblue": "rgb(65, 105, 225)", - "royalblue1": "rgb(72, 118, 255)", - "royalblue2": "rgb(67, 110, 238)", - "royalblue3": "rgb(58, 95, 205)", - "royalblue4": "rgb(39, 64, 139)", - "saddlebrown": "rgb(139, 69, 19)", - "salmon": "rgb(250, 128, 114)", - "salmon1": "rgb(255, 140, 105)", - "salmon2": "rgb(238, 130, 98)", - "salmon3": "rgb(205, 112, 84)", - "salmon4": "rgb(139, 76, 57)", - "sandybrown": "rgb(244, 164, 96)", - "seagreen": "rgb(46, 139, 87)", - "seagreen1": "rgb(84, 255, 159)", - "seagreen2": "rgb(78, 238, 148)", - "seagreen3": "rgb(67, 205, 128)", - "seagreen4": "rgb(46, 139, 87)", - "seashell": "rgb(255, 245, 238)", - "seashell1": "rgb(255, 245, 238)", - "seashell2": "rgb(238, 229, 222)", - "seashell3": "rgb(205, 197, 191)", - "seashell4": "rgb(139, 134, 130)", - "sienna": "rgb(160, 82, 45)", - "sienna1": "rgb(255, 130, 71)", - "sienna2": "rgb(238, 121, 66)", - "sienna3": "rgb(205, 104, 57)", - "sienna4": "rgb(139, 71, 38)", - "skyblue": "rgb(135, 206, 235)", - "skyblue1": "rgb(135, 206, 255)", - "skyblue2": "rgb(126, 192, 238)", - "skyblue3": "rgb(108, 166, 205)", - "skyblue4": "rgb(74, 112, 139)", - "slateblue": "rgb(106, 90, 205)", - "slateblue1": "rgb(131, 111, 255)", - "slateblue2": "rgb(122, 103, 238)", - "slateblue3": "rgb(105, 89, 205)", - "slateblue4": "rgb(71, 60, 139)", - "slategray": "rgb(112, 128, 144)", - "slategray1": "rgb(198, 226, 255)", - "slategray2": "rgb(185, 211, 238)", - "slategray3": "rgb(159, 182, 205)", - "slategray4": "rgb(108, 123, 139)", - "slategrey": "rgb(112, 128, 144)", - "snow": "rgb(255, 250, 250)", - "snow1": "rgb(255, 250, 250)", - "snow2": "rgb(238, 233, 233)", - "snow3": "rgb(205, 201, 201)", - "snow4": "rgb(139, 137, 137)", - "springgreen": "rgb(0, 255, 127)", - "springgreen1": "rgb(0, 255, 127)", - "springgreen2": "rgb(0, 238, 118)", - "springgreen3": "rgb(0, 205, 102)", - "springgreen4": "rgb(0, 139, 69)", - "steelblue": "rgb(70, 130, 180)", - "steelblue1": "rgb(99, 184, 255)", - "steelblue2": "rgb(92, 172, 238)", - "steelblue3": "rgb(79, 148, 205)", - "steelblue4": "rgb(54, 100, 139)", - "tan": "rgb(210, 180, 140)", - "tan1": "rgb(255, 165, 79)", - "tan2": "rgb(238, 154, 73)", - "tan3": "rgb(205, 133, 63)", - "tan4": "rgb(139, 90, 43)", - "thistle": "rgb(216, 191, 216)", - "thistle1": "rgb(255, 225, 255)", - "thistle2": "rgb(238, 210, 238)", - "thistle3": "rgb(205, 181, 205)", - "thistle4": "rgb(139, 123, 139)", - "tomato": "rgb(255, 99, 71)", - "tomato1": "rgb(255, 99, 71)", - "tomato2": "rgb(238, 92, 66)", - "tomato3": "rgb(205, 79, 57)", - "tomato4": "rgb(139, 54, 38)", - "turquoise": "rgb(64, 224, 208)", - "turquoise1": "rgb(0, 245, 255)", - "turquoise2": "rgb(0, 229, 238)", - "turquoise3": "rgb(0, 197, 205)", - "turquoise4": "rgb(0, 134, 139)", - "violet": "rgb(238, 130, 238)", - "violetred": "rgb(208, 32, 144)", - "violetred1": "rgb(255, 62, 150)", - "violetred2": "rgb(238, 58, 140)", - "violetred3": "rgb(205, 50, 120)", - "violetred4": "rgb(139, 34, 82)", - "wheat": "rgb(245, 222, 179)", - "wheat1": "rgb(255, 231, 186)", - "wheat2": "rgb(238, 216, 174)", - "wheat3": "rgb(205, 186, 150)", - "wheat4": "rgb(139, 126, 102)", - "white": "rgb(255, 255, 255)", - "whitesmoke": "rgb(245, 245, 245)", - "yellow": "rgb(255, 255, 0)", - "yellow1": "rgb(255, 255, 0)", - "yellow2": "rgb(238, 238, 0)", - "yellow3": "rgb(205, 205, 0)", - "yellow4": "rgb(139, 139, 0)", - "yellowgreen": "rgb(154, 205, 50)" -}; -// SOURCE FILE: libdot/js/lib_f.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Grab bag of utility functions. - */ -lib.f = {}; - -/** - * Create a unique enum value. - * - * @suppress {lintChecks} - * @param {string} name A human friendly name for debugging. - * @return {Object} A unique enum that won't compare equal to anything else. - */ -lib.f.createEnum = function(name) { - // We use a String object as nothing else should be using them -- we want to - // use string primitives normally. But debuggers will include our name. - return new String(name); -}; - -/** - * Replace variable references in a string. - * - * Variables are of the form %FUNCTION(VARNAME). FUNCTION is an optional - * escape function to apply to the value. - * - * For example - * lib.f.replaceVars("%(greeting), %encodeURIComponent(name)", - * { greeting: "Hello", - * name: "Google+" }); - * - * Will result in "Hello, Google%2B". - */ -lib.f.replaceVars = function(str, vars) { - return str.replace(/%([a-z]*)\(([^\)]+)\)/gi, function(match, fn, varname) { - if (typeof vars[varname] == 'undefined') - throw 'Unknown variable: ' + varname; - - var rv = vars[varname]; - - if (fn in lib.f.replaceVars.functions) { - rv = lib.f.replaceVars.functions[fn](rv); - } else if (fn) { - throw 'Unknown escape function: ' + fn; - } - - return rv; - }); -}; - -/** - * Functions that can be used with replaceVars. - * - * Clients can add to this list to extend lib.f.replaceVars(). - */ -lib.f.replaceVars.functions = { - encodeURI: encodeURI, - encodeURIComponent: encodeURIComponent, - escapeHTML: function(str) { - var map = { - '<': '<', - '>': '>', - '&': '&', - '"': '"', - "'": ''' - }; - - return str.replace(/[<>&\"\']/g, function(m) { return map[m] }); - } -}; - -/** - * Get the list of accepted UI languages. - * - * @param {function(Array)} callback Function to invoke with the results. The - * parameter is a list of locale names. - */ -lib.f.getAcceptLanguages = function(callback) { - if (lib.f.getAcceptLanguages.chromeSupported()) { - chrome.i18n.getAcceptLanguages(callback); - } else { - setTimeout(function() { - callback([navigator.language.replace(/-/g, '_')]); - }, 0); - } -}; - -lib.f.getAcceptLanguages.chromeSupported = function() { - return window.chrome && chrome.i18n; -}; - -/** - * Parse a query string into a hash. - * - * This takes a url query string in the form 'name1=value&name2=value' and - * converts it into an object of the form { name1: 'value', name2: 'value' }. - * If a given name appears multiple times in the query string, only the - * last value will appear in the result. - * - * Names and values are passed through decodeURIComponent before being added - * to the result object. - * - * @param {string} queryString The string to parse. If it starts with a - * leading '?', the '?' will be ignored. - */ -lib.f.parseQuery = function(queryString) { - if (queryString.startsWith('?')) - queryString = queryString.substr(1); - - var rv = {}; - - var pairs = queryString.split('&'); - for (var i = 0; i < pairs.length; i++) { - var pair = pairs[i].split('='); - rv[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]); - } - - return rv; -}; - -lib.f.getURL = function(path) { - if (lib.f.getURL.chromeSupported()) - return chrome.runtime.getURL(path); - - return path; -}; - -lib.f.getURL.chromeSupported = function() { - return window.chrome && chrome.runtime && chrome.runtime.getURL; -}; - -/** - * Clamp a given integer to a specified range. - * - * @param {integer} v The value to be clamped. - * @param {integer} min The minimum acceptable value. - * @param {integer} max The maximum acceptable value. - */ -lib.f.clamp = function(v, min, max) { - if (v < min) - return min; - if (v > max) - return max; - return v; -}; - -/** - * Left pad a number to a given length with leading zeros. - * - * @param {string|integer} number The number to pad. - * @param {integer} length The desired length. - * @return {string} The padded number as a string. - */ -lib.f.zpad = function(number, length) { - return String(number).padStart(length, '0'); -}; - -/** - * Return a string containing a given number of space characters. - * - * This method maintains a static cache of the largest amount of whitespace - * ever requested. It shouldn't be used to generate an insanely huge amount of - * whitespace. - * - * @param {integer} length The desired amount of whitespace. - * @param {string} A string of spaces of the requested length. - */ -lib.f.getWhitespace = function(length) { - if (length <= 0) - return ''; - - var f = this.getWhitespace; - if (!f.whitespace) - f.whitespace = ' '; - - while (length > f.whitespace.length) { - f.whitespace += f.whitespace; - } - - return f.whitespace.substr(0, length); -}; - - /** - * Ensure that a function is called within a certain time limit. - * - * Simple usage looks like this... - * - * lib.registerInit(lib.f.alarm(onInit)); - * - * This will log a warning to the console if onInit() is not invoked within - * 5 seconds. - * - * If you're performing some operation that may take longer than 5 seconds you - * can pass a duration in milliseconds as the optional second parameter. - * - * If you pass a string identifier instead of a callback function, you'll get a - * wrapper generator rather than a single wrapper. Each call to the - * generator will return a wrapped version of the callback wired to - * a shared timeout. This is for cases where you want to ensure that at least - * one of a set of callbacks is invoked before a timeout expires. - * - * var alarm = lib.f.alarm('fetch object'); - * lib.foo.fetchObject(alarm(onSuccess), alarm(onFailure)); - * - * @param {function(*)} callback The function to wrap in an alarm. - * @param {int} opt_ms Optional number of milliseconds to wait before raising - * an alarm. Default is 5000 (5 seconds). - * @return {function} If callback is a function then the return value will be - * the wrapped callback. If callback is a string then the return value will - * be a function that generates new wrapped callbacks. - */ -lib.f.alarm = function(callback, opt_ms) { - var ms = opt_ms || 5 * 1000; - var stack = lib.f.getStack(1); - - return (function() { - // This outer function is called immediately. It's here to capture a new - // scope for the timeout variable. - - // The 'timeout' variable is shared by this timeout function, and the - // callback wrapper. - var timeout = setTimeout(function() { - var name = (typeof callback == 'string') ? name : callback.name; - name = name ? (': ' + name) : ''; - console.warn('lib.f.alarm: timeout expired: ' + (ms / 1000) + 's' + name); - console.log(stack); - timeout = null; - }, ms); - - var wrapperGenerator = function(callback) { - return function() { - if (timeout) { - clearTimeout(timeout); - timeout = null; - } - - return callback.apply(null, arguments); - } - }; - - if (typeof callback == 'string') - return wrapperGenerator; - - return wrapperGenerator(callback); - })(); -}; - -/** - * Return the current call stack after skipping a given number of frames. - * - * This method is intended to be used for debugging only. It returns an - * Object instead of an Array, because the console stringifies arrays by - * default and that's not what we want. - * - * A typical call might look like... - * - * console.log('Something wicked this way came', lib.f.getStack()); - * // Notice the comma ^ - * - * This would print the message to the js console, followed by an object - * which can be clicked to reveal the stack. - * - * @param {number} opt_ignoreFrames The optional number of stack frames to - * ignore. The actual 'getStack' call is always ignored. - */ -lib.f.getStack = function(opt_ignoreFrames) { - var ignoreFrames = opt_ignoreFrames ? opt_ignoreFrames + 2 : 2; - - var stackArray; - - try { - throw new Error(); - } catch (ex) { - stackArray = ex.stack.split('\n'); - } - - var stackObject = {}; - for (var i = ignoreFrames; i < stackArray.length; i++) { - stackObject[i - ignoreFrames] = stackArray[i].replace(/^\s*at\s+/, ''); - } - - return stackObject; -}; - -/** - * Divides the two numbers and floors the results, unless the remainder is less - * than an incredibly small value, in which case it returns the ceiling. - * This is useful when the number are truncated approximations of longer - * values, and so doing division with these numbers yields a result incredibly - * close to a whole number. - * - * @param {number} numerator - * @param {number} denominator - * @return {number} - */ -lib.f.smartFloorDivide = function(numerator, denominator) { - var val = numerator / denominator; - var ceiling = Math.ceil(val); - if (ceiling - val < .0001) { - return ceiling; - } else { - return Math.floor(val); - } -}; - -/** - * Get a random integer in a range (inclusive). - * - * @param {number} min The lowest integer in the range. - * @param {number} max The highest integer in the range. - * @return {number} A random number between min & max. - */ -lib.f.randomInt = function(min, max) { - return Math.floor(Math.random() * (max - min + 1)) + min; -}; -// SOURCE FILE: libdot/js/lib_message_manager.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * MessageManager class handles internationalized strings. - * - * Note: chrome.i18n isn't sufficient because... - * 1. There's a bug in chrome that makes it unavailable in iframes: - * https://crbug.com/130200 - * 2. The client code may not be packaged in a Chrome extension. - * 3. The client code may be part of a library packaged in a third-party - * Chrome extension. - * - * @param {Array} languages List of languages to load, in the order they - * should be loaded. Newer messages replace older ones. 'en' is - * automatically added as the first language if it is not already present. - */ -lib.MessageManager = function(languages) { - this.languages_ = languages.map( - function(el) { return el.replace(/-/g, '_') }); - - if (this.languages_.indexOf('en') == -1) - this.languages_.unshift('en'); - - this.messages = {}; -}; - -/** - * Add message definitions to the message manager. - * - * This takes an object of the same format of a Chrome messages.json file. See - * . - */ -lib.MessageManager.prototype.addMessages = function(defs) { - for (var key in defs) { - var def = defs[key]; - - if (!def.placeholders) { - this.messages[key] = def.message; - } else { - // Replace "$NAME$" placeholders with "$1", etc. - this.messages[key] = def.message.replace( - /\$([a-z][^\s\$]+)\$/ig, - function(m, name) { - return defs[key].placeholders[name.toLowerCase()].content; - }); - } - } -}; - -/** - * Load the first available language message bundle. - * - * @param {string} pattern A url pattern containing a "$1" where the locale - * name should go. - * @param {function(Array,Array)} onComplete Function to be called when loading - * is complete. The two arrays are the list of successful and failed - * locale names. If the first parameter is length 0, no locales were - * loaded. - */ -lib.MessageManager.prototype.findAndLoadMessages = function( - pattern, onComplete) { - var languages = this.languages_.concat(); - var loaded = []; - var failed = []; - - function onLanguageComplete(state) { - if (state) { - loaded = languages.shift(); - } else { - failed = languages.shift(); - } - - if (languages.length) { - tryNextLanguage(); - } else { - onComplete(loaded, failed); - } - } - - var tryNextLanguage = function() { - this.loadMessages(this.replaceReferences(pattern, languages), - onLanguageComplete.bind(this, true), - onLanguageComplete.bind(this, false)); - }.bind(this); - - tryNextLanguage(); -}; - -/** - * Load messages from a messages.json file. - */ -lib.MessageManager.prototype.loadMessages = function( - url, onSuccess, opt_onError) { - var xhr = new XMLHttpRequest(); - - xhr.onloadend = function() { - if (xhr.status != 200) { - if (opt_onError) - opt_onError(xhr.status); - - return; - } - - this.addMessages(JSON.parse(xhr.responseText)); - onSuccess(); - }.bind(this); - - xhr.open('GET', url); - xhr.send(); -}; - -/** - * Replace $1...$n references with the elements of the args array. - * - * @param {string} msg String containing the message and argument references. - * @param {Array} args Array containing the argument values. - */ -lib.MessageManager.replaceReferences = function(msg, args) { - return msg.replace(/\$(\d+)/g, function (m, index) { - return args[index - 1]; - }); -}; - -/** - * Per-instance copy of replaceReferences. - */ -lib.MessageManager.prototype.replaceReferences = - lib.MessageManager.replaceReferences; - -/** - * Get a message by name, optionally replacing arguments too. - * - * @param {string} msgname String containing the name of the message to get. - * @param {Array} opt_args Optional array containing the argument values. - * @param {string} opt_default Optional value to return if the msgname is not - * found. Returns the message name by default. - */ -lib.MessageManager.prototype.get = function(msgname, opt_args, opt_default) { - var message; - - if (msgname in this.messages) { - message = this.messages[msgname]; - - } else { - if (window.chrome.i18n) - message = chrome.i18n.getMessage(msgname); - - if (!message) { - console.warn('Unknown message: ' + msgname); - return (typeof opt_default == 'undefined') ? msgname : opt_default; - } - } - - if (!opt_args) - return message; - - if (!(opt_args instanceof Array)) - opt_args = [opt_args]; - - return this.replaceReferences(message, opt_args); -}; - -/** - * Process all of the "i18n" html attributes found in a given dom fragment. - * - * The real work happens in processI18nAttribute. - */ -lib.MessageManager.prototype.processI18nAttributes = function(dom) { - var nodes = dom.querySelectorAll('[i18n]'); - - for (var i = 0; i < nodes.length; i++) - this.processI18nAttribute(nodes[i]); -}; - -/** - * Process the "i18n" attribute in the specified node. - * - * The i18n attribute should contain a JSON object. The keys are taken to - * be attribute names, and the values are message names. - * - * If the JSON object has a "_" (underscore) key, its value is used as the - * textContent of the element. - * - * Message names can refer to other attributes on the same element with by - * prefixing with a dollar sign. For example... - * - * - * - * The aria-label message name will be computed as "SEND_BUTTON_ARIA_LABEL". - * Notice that the "id" attribute was appended to the target attribute, and - * the result converted to UPPER_AND_UNDER style. - */ -lib.MessageManager.prototype.processI18nAttribute = function(node) { - // Convert the "lower-and-dashes" attribute names into - // "UPPER_AND_UNDER" style. - function thunk(str) { return str.replace(/-/g, '_').toUpperCase() } - - var i18n = node.getAttribute('i18n'); - if (!i18n) - return; - - try { - i18n = JSON.parse(i18n); - } catch (ex) { - console.error('Can\'t parse ' + node.tagName + '#' + node.id + ': ' + i18n); - throw ex; - } - - // Load all the messages specified in the i18n attributes. - for (var key in i18n) { - // The node attribute we'll be setting. - var attr = key; - - var msgname = i18n[key]; - // For "=foo", re-use the referenced message name. - if (msgname.startsWith('=')) { - key = msgname.substr(1); - msgname = i18n[key]; - } - - // For "$foo", calculate the message name. - if (msgname.startsWith('$')) - msgname = thunk(node.getAttribute(msgname.substr(1)) + '_' + key); - - // Finally load the message. - var msg = this.get(msgname); - if (attr == '_') - node.textContent = msg; - else - node.setAttribute(attr, msg); - } -}; -// SOURCE FILE: libdot/js/lib_preference_manager.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Constructor for lib.PreferenceManager objects. - * - * These objects deal with persisting changes to stable storage and notifying - * consumers when preferences change. - * - * It is intended that the backing store could be something other than HTML5 - * storage, but there aren't any use cases at the moment. In the future there - * may be a chrome api to store sync-able name/value pairs, and we'd want - * that. - * - * @param {lib.Storage.*} storage The storage object to use as a backing - * store. - * @param {string} opt_prefix The optional prefix to be used for all preference - * names. The '/' character should be used to separate levels of hierarchy, - * if you're going to have that kind of thing. If provided, the prefix - * should start with a '/'. If not provided, it defaults to '/'. - */ -lib.PreferenceManager = function(storage, opt_prefix) { - this.storage = storage; - this.storageObserver_ = this.onStorageChange_.bind(this); - - this.isActive_ = false; - this.activate(); - - this.trace = false; - - var prefix = opt_prefix || '/'; - if (!prefix.endsWith('/')) - prefix += '/'; - - this.prefix = prefix; - - this.prefRecords_ = {}; - this.globalObservers_ = []; - - this.childFactories_ = {}; - - // Map of list-name to {map of child pref managers} - // As in... - // - // this.childLists_ = { - // 'profile-ids': { - // 'one': PreferenceManager, - // 'two': PreferenceManager, - // ... - // }, - // - // 'frob-ids': { - // ... - // } - // } - this.childLists_ = {}; -}; - -/** - * Used internally to indicate that the current value of the preference should - * be taken from the default value defined with the preference. - * - * Equality tests against this value MUST use '===' or '!==' to be accurate. - */ -lib.PreferenceManager.prototype.DEFAULT_VALUE = lib.f.createEnum('DEFAULT'); - -/** - * An individual preference. - * - * These objects are managed by the PreferenceManager, you shouldn't need to - * handle them directly. - */ -lib.PreferenceManager.Record = function(name, defaultValue) { - this.name = name; - this.defaultValue = defaultValue; - this.currentValue = this.DEFAULT_VALUE; - this.observers = []; -}; - -/** - * A local copy of the DEFAULT_VALUE constant to make it less verbose. - */ -lib.PreferenceManager.Record.prototype.DEFAULT_VALUE = - lib.PreferenceManager.prototype.DEFAULT_VALUE; - -/** - * Register a callback to be invoked when this preference changes. - * - * @param {function(value, string, lib.PreferenceManager} observer The function - * to invoke. It will receive the new value, the name of the preference, - * and a reference to the PreferenceManager as parameters. - */ -lib.PreferenceManager.Record.prototype.addObserver = function(observer) { - this.observers.push(observer); -}; - -/** - * Unregister an observer callback. - * - * @param {function} observer A previously registered callback. - */ -lib.PreferenceManager.Record.prototype.removeObserver = function(observer) { - var i = this.observers.indexOf(observer); - if (i >= 0) - this.observers.splice(i, 1); -}; - -/** - * Fetch the value of this preference. - */ -lib.PreferenceManager.Record.prototype.get = function() { - if (this.currentValue === this.DEFAULT_VALUE) { - if (/^(string|number)$/.test(typeof this.defaultValue)) - return this.defaultValue; - - if (typeof this.defaultValue == 'object') { - // We want to return a COPY of the default value so that users can - // modify the array or object without changing the default value. - return JSON.parse(JSON.stringify(this.defaultValue)); - } - - return this.defaultValue; - } - - return this.currentValue; -}; - -/** - * Stop this preference manager from tracking storage changes. - * - * Call this if you're going to swap out one preference manager for another so - * that you don't get notified about irrelevant changes. - */ -lib.PreferenceManager.prototype.deactivate = function() { - if (!this.isActive_) - throw new Error('Not activated'); - - this.isActive_ = false; - this.storage.removeObserver(this.storageObserver_); -}; - -/** - * Start tracking storage changes. - * - * If you previously deactivated this preference manager, you can reactivate it - * with this method. You don't need to call this at initialization time, as - * it's automatically called as part of the constructor. - */ -lib.PreferenceManager.prototype.activate = function() { - if (this.isActive_) - throw new Error('Already activated'); - - this.isActive_ = true; - this.storage.addObserver(this.storageObserver_); -}; - -/** - * Read the backing storage for these preferences. - * - * You should do this once at initialization time to prime the local cache - * of preference values. The preference manager will monitor the backing - * storage for changes, so you should not need to call this more than once. - * - * This function recursively reads storage for all child preference managers as - * well. - * - * This function is asynchronous, if you need to read preference values, you - * *must* wait for the callback. - * - * @param {function()} opt_callback Optional function to invoke when the read - * has completed. - */ -lib.PreferenceManager.prototype.readStorage = function(opt_callback) { - var pendingChildren = 0; - - function onChildComplete() { - if (--pendingChildren == 0 && opt_callback) - opt_callback(); - } - - var keys = Object.keys(this.prefRecords_).map( - function(el) { return this.prefix + el }.bind(this)); - - if (this.trace) - console.log('Preferences read: ' + this.prefix); - - this.storage.getItems(keys, function(items) { - var prefixLength = this.prefix.length; - - for (var key in items) { - var value = items[key]; - var name = key.substr(prefixLength); - var needSync = (name in this.childLists_ && - (JSON.stringify(value) != - JSON.stringify(this.prefRecords_[name].currentValue))); - - this.prefRecords_[name].currentValue = value; - - if (needSync) { - pendingChildren++; - this.syncChildList(name, onChildComplete); - } - } - - if (pendingChildren == 0 && opt_callback) - setTimeout(opt_callback); - }.bind(this)); -}; - -/** - * Define a preference. - * - * This registers a name, default value, and onChange handler for a preference. - * - * @param {string} name The name of the preference. This will be prefixed by - * the prefix of this PreferenceManager before written to local storage. - * @param {string|number|boolean|Object|Array|null} value The default value of - * this preference. Anything that can be represented in JSON is a valid - * default value. - * @param {function(value, string, lib.PreferenceManager} opt_observer A - * function to invoke when the preference changes. It will receive the new - * value, the name of the preference, and a reference to the - * PreferenceManager as parameters. - */ -lib.PreferenceManager.prototype.definePreference = function( - name, value, opt_onChange) { - - var record = this.prefRecords_[name]; - if (record) { - this.changeDefault(name, value); - } else { - record = this.prefRecords_[name] = - new lib.PreferenceManager.Record(name, value); - } - - if (opt_onChange) - record.addObserver(opt_onChange); -}; - -/** - * Define multiple preferences with a single function call. - * - * @param {Array} defaults An array of 3-element arrays. Each three element - * array should contain the [key, value, onChange] parameters for a - * preference. - */ -lib.PreferenceManager.prototype.definePreferences = function(defaults) { - for (var i = 0; i < defaults.length; i++) { - this.definePreference(defaults[i][0], defaults[i][1], defaults[i][2]); - } -}; - -/** - * Define an ordered list of child preferences. - * - * Child preferences are different from just storing an array of JSON objects - * in that each child is an instance of a preference manager. This means you - * can observe changes to individual child preferences, and get some validation - * that you're not reading or writing to an undefined child preference value. - * - * @param {string} listName A name for the list of children. This must be - * unique in this preference manager. The listName will become a - * preference on this PreferenceManager used to store the ordered list of - * child ids. It is also used in get/add/remove operations to identify the - * list of children to operate on. - * @param {function} childFactory A function that will be used to generate - * instances of these children. The factory function will receive the - * parent lib.PreferenceManager object and a unique id for the new child - * preferences. - */ -lib.PreferenceManager.prototype.defineChildren = function( - listName, childFactory) { - - // Define a preference to hold the ordered list of child ids. - this.definePreference(listName, [], - this.onChildListChange_.bind(this, listName)); - this.childFactories_[listName] = childFactory; - this.childLists_[listName] = {}; -}; - -/** - * Register to observe preference changes. - * - * @param {Function} global A callback that will happen for every preference. - * Pass null if you don't need one. - * @param {Object} map A map of preference specific callbacks. Pass null if - * you don't need any. - */ -lib.PreferenceManager.prototype.addObservers = function(global, map) { - if (global && typeof global != 'function') - throw new Error('Invalid param: globals'); - - if (global) - this.globalObservers_.push(global); - - if (!map) - return; - - for (var name in map) { - if (!(name in this.prefRecords_)) - throw new Error('Unknown preference: ' + name); - - this.prefRecords_[name].addObserver(map[name]); - } -}; - -/** - * Dispatch the change observers for all known preferences. - * - * It may be useful to call this after readStorage completes, in order to - * get application state in sync with user preferences. - * - * This can be used if you've changed a preference manager out from under - * a live object, for example when switching to a different prefix. - */ -lib.PreferenceManager.prototype.notifyAll = function() { - for (var name in this.prefRecords_) { - this.notifyChange_(name); - } -}; - -/** - * Notify the change observers for a given preference. - * - * @param {string} name The name of the preference that changed. - */ -lib.PreferenceManager.prototype.notifyChange_ = function(name) { - var record = this.prefRecords_[name]; - if (!record) - throw new Error('Unknown preference: ' + name); - - var currentValue = record.get(); - - for (var i = 0; i < this.globalObservers_.length; i++) - this.globalObservers_[i](name, currentValue); - - for (var i = 0; i < record.observers.length; i++) { - record.observers[i](currentValue, name, this); - } -}; - -/** - * Create a new child PreferenceManager for the given child list. - * - * The optional hint parameter is an opaque prefix added to the auto-generated - * unique id for this child. Your child factory can parse out the prefix - * and use it. - * - * @param {string} listName The child list to create the new instance from. - * @param {string} opt_hint Optional hint to include in the child id. - * @param {string} opt_id Optional id to override the generated id. - */ -lib.PreferenceManager.prototype.createChild = function(listName, opt_hint, - opt_id) { - var ids = this.get(listName); - var id; - - if (opt_id) { - id = opt_id; - if (ids.indexOf(id) != -1) - throw new Error('Duplicate child: ' + listName + ': ' + id); - - } else { - // Pick a random, unique 4-digit hex identifier for the new profile. - while (!id || ids.indexOf(id) != -1) { - id = lib.f.randomInt(1, 0xffff).toString(16); - id = lib.f.zpad(id, 4); - if (opt_hint) - id = opt_hint + ':' + id; - } - } - - var childManager = this.childFactories_[listName](this, id); - childManager.trace = this.trace; - childManager.resetAll(); - - this.childLists_[listName][id] = childManager; - - ids.push(id); - this.set(listName, ids); - - return childManager; -}; - -/** - * Remove a child preferences instance. - * - * Removes a child preference manager and clears any preferences stored in it. - * - * @param {string} listName The name of the child list containing the child to - * remove. - * @param {string} id The child ID. - */ -lib.PreferenceManager.prototype.removeChild = function(listName, id) { - var prefs = this.getChild(listName, id); - prefs.resetAll(); - - var ids = this.get(listName); - var i = ids.indexOf(id); - if (i != -1) { - ids.splice(i, 1); - this.set(listName, ids); - } - - delete this.childLists_[listName][id]; -}; - -/** - * Return a child PreferenceManager instance for a given id. - * - * If the child list or child id is not known this will return the specified - * default value or throw an exception if no default value is provided. - * - * @param {string} listName The child list to look in. - * @param {string} id The child ID. - * @param {*} opt_default The optional default value to return if the child - * is not found. - */ -lib.PreferenceManager.prototype.getChild = function(listName, id, opt_default) { - if (!(listName in this.childLists_)) - throw new Error('Unknown child list: ' + listName); - - var childList = this.childLists_[listName]; - if (!(id in childList)) { - if (typeof opt_default == 'undefined') - throw new Error('Unknown "' + listName + '" child: ' + id); - - return opt_default; - } - - return childList[id]; -}; - -/** - * Calculate the difference between two lists of child ids. - * - * Given two arrays of child ids, this function will return an object - * with "added", "removed", and "common" properties. Each property is - * a map of child-id to `true`. For example, given... - * - * a = ['child-x', 'child-y'] - * b = ['child-y'] - * - * diffChildLists(a, b) => - * { added: { 'child-x': true }, removed: {}, common: { 'child-y': true } } - * - * The added/removed properties assume that `a` is the current list. - * - * @param {Array[string]} a The most recent list of child ids. - * @param {Array[string]} b An older list of child ids. - * @return {Object} An object with added/removed/common properties. - */ -lib.PreferenceManager.diffChildLists = function(a, b) { - var rv = { - added: {}, - removed: {}, - common: {}, - }; - - for (var i = 0; i < a.length; i++) { - if (b.indexOf(a[i]) != -1) { - rv.common[a[i]] = true; - } else { - rv.added[a[i]] = true; - } - } - - for (var i = 0; i < b.length; i++) { - if ((b[i] in rv.added) || (b[i] in rv.common)) - continue; - - rv.removed[b[i]] = true; - } - - return rv; -}; - -/** - * Synchronize a list of child PreferenceManagers instances with the current - * list stored in prefs. - * - * This will instantiate any missing managers and read current preference values - * from storage. Any active managers that no longer appear in preferences will - * be deleted. - * - * @param {string} listName The child list to synchronize. - * @param {function()} opt_callback Optional function to invoke when the sync - * is complete. - */ -lib.PreferenceManager.prototype.syncChildList = function( - listName, opt_callback) { - - var pendingChildren = 0; - function onChildStorage() { - if (--pendingChildren == 0 && opt_callback) - opt_callback(); - } - - // The list of child ids that we *should* have a manager for. - var currentIds = this.get(listName); - - // The known managers at the start of the sync. Any manager still in this - // list at the end should be discarded. - var oldIds = Object.keys(this.childLists_[listName]); - - var rv = lib.PreferenceManager.diffChildLists(currentIds, oldIds); - - for (var i = 0; i < currentIds.length; i++) { - var id = currentIds[i]; - - var managerIndex = oldIds.indexOf(id); - if (managerIndex >= 0) - oldIds.splice(managerIndex, 1); - - if (!this.childLists_[listName][id]) { - var childManager = this.childFactories_[listName](this, id); - if (!childManager) { - console.warn('Unable to restore child: ' + listName + ': ' + id); - continue; - } - - childManager.trace = this.trace; - this.childLists_[listName][id] = childManager; - pendingChildren++; - childManager.readStorage(onChildStorage); - } - } - - for (var i = 0; i < oldIds.length; i++) { - delete this.childLists_[listName][oldIds[i]]; - } - - if (!pendingChildren && opt_callback) - setTimeout(opt_callback); -}; - -/** - * Reset a preference to its default state. - * - * This will dispatch the onChange handler if the preference value actually - * changes. - * - * @param {string} name The preference to reset. - */ -lib.PreferenceManager.prototype.reset = function(name) { - var record = this.prefRecords_[name]; - if (!record) - throw new Error('Unknown preference: ' + name); - - this.storage.removeItem(this.prefix + name); - - if (record.currentValue !== this.DEFAULT_VALUE) { - record.currentValue = this.DEFAULT_VALUE; - this.notifyChange_(name); - } -}; - -/** - * Reset all preferences back to their default state. - */ -lib.PreferenceManager.prototype.resetAll = function() { - var changed = []; - - for (var listName in this.childLists_) { - var childList = this.childLists_[listName]; - for (var id in childList) { - childList[id].resetAll(); - } - } - - for (var name in this.prefRecords_) { - if (this.prefRecords_[name].currentValue !== this.DEFAULT_VALUE) { - this.prefRecords_[name].currentValue = this.DEFAULT_VALUE; - changed.push(name); - } - } - - var keys = Object.keys(this.prefRecords_).map(function(el) { - return this.prefix + el; - }.bind(this)); - - this.storage.removeItems(keys); - - changed.forEach(this.notifyChange_.bind(this)); -}; - -/** - * Return true if two values should be considered not-equal. - * - * If both values are the same scalar type and compare equal this function - * returns false (no difference), otherwise return true. - * - * This is used in places where we want to check if a preference has changed. - * Rather than take the time to compare complex values we just consider them - * to always be different. - * - * @param {*} a A value to compare. - * @param {*} b A value to compare. - */ -lib.PreferenceManager.prototype.diff = function(a, b) { - // If the types are different, or the type is not a simple primitive one. - if ((typeof a) !== (typeof b) || - !(/^(undefined|boolean|number|string)$/.test(typeof a))) { - return true; - } - - return a !== b; -}; - -/** - * Change the default value of a preference. - * - * This is useful when subclassing preference managers. - * - * The function does not alter the current value of the preference, unless - * it has the old default value. When that happens, the change observers - * will be notified. - * - * @param {string} name The name of the parameter to change. - * @param {*} newValue The new default value for the preference. - */ -lib.PreferenceManager.prototype.changeDefault = function(name, newValue) { - var record = this.prefRecords_[name]; - if (!record) - throw new Error('Unknown preference: ' + name); - - if (!this.diff(record.defaultValue, newValue)) { - // Default value hasn't changed. - return; - } - - if (record.currentValue !== this.DEFAULT_VALUE) { - // This pref has a specific value, just change the default and we're done. - record.defaultValue = newValue; - return; - } - - record.defaultValue = newValue; - - this.notifyChange_(name); -}; - -/** - * Change the default value of multiple preferences. - * - * @param {Object} map A map of name -> value pairs specifying the new default - * values. - */ -lib.PreferenceManager.prototype.changeDefaults = function(map) { - for (var key in map) { - this.changeDefault(key, map[key]); - } -}; - -/** - * Set a preference to a specific value. - * - * This will dispatch the onChange handler if the preference value actually - * changes. - * - * @param {string} key The preference to set. - * @param {*} value The value to set. Anything that can be represented in - * JSON is a valid value. - */ -lib.PreferenceManager.prototype.set = function(name, newValue) { - var record = this.prefRecords_[name]; - if (!record) - throw new Error('Unknown preference: ' + name); - - var oldValue = record.get(); - - if (!this.diff(oldValue, newValue)) - return; - - if (this.diff(record.defaultValue, newValue)) { - record.currentValue = newValue; - this.storage.setItem(this.prefix + name, newValue); - } else { - record.currentValue = this.DEFAULT_VALUE; - this.storage.removeItem(this.prefix + name); - } - - // We need to manually send out the notification on this instance. If we - // The storage event won't fire a notification because we've already changed - // the currentValue, so it won't see a difference. If we delayed changing - // currentValue until the storage event, a pref read immediately after a write - // would return the previous value. - // - // The notification is in a timeout so clients don't accidentally depend on - // a synchronous notification. - setTimeout(this.notifyChange_.bind(this, name), 0); -}; - -/** - * Get the value of a preference. - * - * @param {string} key The preference to get. - */ -lib.PreferenceManager.prototype.get = function(name) { - var record = this.prefRecords_[name]; - if (!record) - throw new Error('Unknown preference: ' + name); - - return record.get(); -}; - -/** - * Return all non-default preferences as a JSON object. - * - * This includes any nested preference managers as well. - */ -lib.PreferenceManager.prototype.exportAsJson = function() { - var rv = {}; - - for (var name in this.prefRecords_) { - if (name in this.childLists_) { - rv[name] = []; - var childIds = this.get(name); - for (var i = 0; i < childIds.length; i++) { - var id = childIds[i]; - rv[name].push({id: id, json: this.getChild(name, id).exportAsJson()}); - } - - } else { - var record = this.prefRecords_[name]; - if (record.currentValue != this.DEFAULT_VALUE) - rv[name] = record.currentValue; - } - } - - return rv; -}; - -/** - * Import a JSON blob of preferences previously generated with exportAsJson. - * - * This will create nested preference managers as well. - */ -lib.PreferenceManager.prototype.importFromJson = function(json) { - for (var name in json) { - if (name in this.childLists_) { - var childList = json[name]; - for (var i = 0; i < childList.length; i++) { - var id = childList[i].id; - - var childPrefManager = this.childLists_[name][id]; - if (!childPrefManager) - childPrefManager = this.createChild(name, null, id); - - childPrefManager.importFromJson(childList[i].json); - } - - } else { - this.set(name, json[name]); - } - } -}; - -/** - * Called when one of the child list preferences changes. - */ -lib.PreferenceManager.prototype.onChildListChange_ = function(listName) { - this.syncChildList(listName); -}; - -/** - * Called when a key in the storage changes. - */ -lib.PreferenceManager.prototype.onStorageChange_ = function(map) { - for (var key in map) { - if (this.prefix) { - if (key.lastIndexOf(this.prefix, 0) != 0) - continue; - } - - var name = key.substr(this.prefix.length); - - if (!(name in this.prefRecords_)) { - // Sometimes we'll get notified about prefs that are no longer defined. - continue; - } - - var record = this.prefRecords_[name]; - - var newValue = map[key].newValue; - var currentValue = record.currentValue; - if (currentValue === record.DEFAULT_VALUE) - currentValue = (void 0); - - if (this.diff(currentValue, newValue)) { - if (typeof newValue == 'undefined' || newValue === null) { - record.currentValue = record.DEFAULT_VALUE; - } else { - record.currentValue = newValue; - } - - this.notifyChange_(name); - } - } -}; -// SOURCE FILE: libdot/js/lib_resource.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Storage for canned resources. - * - * These are usually non-JavaScript things that are collected during a build - * step and converted into a series of 'lib.resource.add(...)' calls. See - * the "@resource" directive from libdot/bin/concat.sh for the canonical use - * case. - * - * This is global storage, so you should prefix your resource names to avoid - * collisions. - */ -lib.resource = { - resources_: {} -}; - -/** - * Add a resource. - * - * @param {string} name A name for the resource. You should prefix this to - * avoid collisions with resources from a shared library. - * @param {string} type A mime type for the resource, or "raw" if not - * applicable. - * @param {*} data The value of the resource. - */ -lib.resource.add = function(name, type, data) { - lib.resource.resources_[name] = { - type: type, - name: name, - data: data - }; -}; - -/** - * Retrieve a resource record. - * - * The resource data is stored on the "data" property of the returned object. - * - * @param {string} name The name of the resource to get. - * @param {*} opt_defaultValue The optional value to return if the resource is - * not defined. - * @return {object} An object with "type", "name", and "data" properties. - */ -lib.resource.get = function(name, opt_defaultValue) { - if (!(name in lib.resource.resources_)) { - if (typeof opt_defaultValue == 'undefined') - throw 'Unknown resource: ' + name; - - return opt_defaultValue; - } - - return lib.resource.resources_[name]; -}; - -/** - * Retrieve resource data. - * - * @param {string} name The name of the resource to get. - * @param {*} opt_defaultValue The optional value to return if the resource is - * not defined. - * @return {*} The resource data. - */ -lib.resource.getData = function(name, opt_defaultValue) { - if (!(name in lib.resource.resources_)) { - if (typeof opt_defaultValue == 'undefined') - throw 'Unknown resource: ' + name; - - return opt_defaultValue; - } - - return lib.resource.resources_[name].data; -}; - -/** - * Retrieve resource as a data: url. - * - * @param {string} name The name of the resource to get. - * @param {*} opt_defaultValue The optional value to return if the resource is - * not defined. - * @return {*} A data: url encoded version of the resource. - */ -lib.resource.getDataUrl = function(name, opt_defaultValue) { - var resource = lib.resource.get(name, opt_defaultValue); - return 'data:' + resource.type + ',' + resource.data; -}; -// SOURCE FILE: libdot/js/lib_storage.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Namespace for implementations of persistent, possibly cloud-backed - * storage. - */ -lib.Storage = new Object(); -// SOURCE FILE: libdot/js/lib_storage_chrome.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * chrome.storage based class with an async interface that is interchangeable - * with other lib.Storage.* implementations. - */ -lib.Storage.Chrome = function(storage) { - this.storage_ = storage; - this.observers_ = []; - - chrome.storage.onChanged.addListener(this.onChanged_.bind(this)); -}; - -/** - * Called by the storage implementation when the storage is modified. - */ -lib.Storage.Chrome.prototype.onChanged_ = function(changes, areaname) { - if (chrome.storage[areaname] != this.storage_) - return; - - for (var i = 0; i < this.observers_.length; i++) { - this.observers_[i](changes); - } -}; - -/** - * Register a function to observe storage changes. - * - * @param {function(map)} callback The function to invoke when the storage - * changes. - */ -lib.Storage.Chrome.prototype.addObserver = function(callback) { - this.observers_.push(callback); -}; - -/** - * Unregister a change observer. - * - * @param {function} observer A previously registered callback. - */ -lib.Storage.Chrome.prototype.removeObserver = function(callback) { - var i = this.observers_.indexOf(callback); - if (i != -1) - this.observers_.splice(i, 1); -}; - -/** - * Delete everything in this storage. - * - * @param {function(map)} callback The function to invoke when the delete - * has completed. - */ -lib.Storage.Chrome.prototype.clear = function(opt_callback) { - this.storage_.clear(); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Return the current value of a storage item. - * - * @param {string} key The key to look up. - * @param {function(value) callback The function to invoke when the value has - * been retrieved. - */ -lib.Storage.Chrome.prototype.getItem = function(key, callback) { - this.storage_.get(key, callback); -}; -/** - * Fetch the values of multiple storage items. - * - * @param {Array} keys The keys to look up. - * @param {function(map) callback The function to invoke when the values have - * been retrieved. - */ - -lib.Storage.Chrome.prototype.getItems = function(keys, callback) { - this.storage_.get(keys, callback); -}; - -/** - * Set a value in storage. - * - * @param {string} key The key for the value to be stored. - * @param {*} value The value to be stored. Anything that can be serialized - * with JSON is acceptable. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Chrome.prototype.setItem = function(key, value, opt_callback) { - var obj = {}; - obj[key] = value; - this.storage_.set(obj, opt_callback); -}; - -/** - * Set multiple values in storage. - * - * @param {Object} map A map of key/values to set in storage. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Chrome.prototype.setItems = function(obj, opt_callback) { - this.storage_.set(obj, opt_callback); -}; - -/** - * Remove an item from storage. - * - * @param {string} key The key to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Chrome.prototype.removeItem = function(key, opt_callback) { - this.storage_.remove(key, opt_callback); -}; - -/** - * Remove multiple items from storage. - * - * @param {Array} keys The keys to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Chrome.prototype.removeItems = function(keys, opt_callback) { - this.storage_.remove(keys, opt_callback); -}; -// SOURCE FILE: libdot/js/lib_storage_local.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * window.localStorage based class with an async interface that is - * interchangeable with other lib.Storage.* implementations. - */ -lib.Storage.Local = function() { - this.observers_ = []; - this.storage_ = window.localStorage; - window.addEventListener('storage', this.onStorage_.bind(this)); -}; - -/** - * Called by the storage implementation when the storage is modified. - */ -lib.Storage.Local.prototype.onStorage_ = function(e) { - if (e.storageArea != this.storage_) - return; - - // JS throws an exception if JSON.parse is given an empty string. So here we - // only parse if the value is truthy. This mean the empty string, undefined - // and null will not be parsed. - var prevValue = e.oldValue ? JSON.parse(e.oldValue) : e.oldValue; - var curValue = e.newValue ? JSON.parse(e.newValue) : e.newValue; - var o = {}; - o[e.key] = { - oldValue: prevValue, - newValue: curValue - }; - - for (var i = 0; i < this.observers_.length; i++) { - this.observers_[i](o); - } -}; - -/** - * Register a function to observe storage changes. - * - * @param {function(map)} callback The function to invoke when the storage - * changes. - */ -lib.Storage.Local.prototype.addObserver = function(callback) { - this.observers_.push(callback); -}; - -/** - * Unregister a change observer. - * - * @param {function} observer A previously registered callback. - */ -lib.Storage.Local.prototype.removeObserver = function(callback) { - var i = this.observers_.indexOf(callback); - if (i != -1) - this.observers_.splice(i, 1); -}; - -/** - * Delete everything in this storage. - * - * @param {function(map)} callback The function to invoke when the delete - * has completed. - */ -lib.Storage.Local.prototype.clear = function(opt_callback) { - this.storage_.clear(); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Return the current value of a storage item. - * - * @param {string} key The key to look up. - * @param {function(value) callback The function to invoke when the value has - * been retrieved. - */ -lib.Storage.Local.prototype.getItem = function(key, callback) { - var value = this.storage_.getItem(key); - - if (typeof value == 'string') { - try { - value = JSON.parse(value); - } catch (e) { - // If we can't parse the value, just return it unparsed. - } - } - - setTimeout(callback.bind(null, value), 0); -}; - -/** - * Fetch the values of multiple storage items. - * - * @param {Array} keys The keys to look up. - * @param {function(map) callback The function to invoke when the values have - * been retrieved. - */ -lib.Storage.Local.prototype.getItems = function(keys, callback) { - var rv = {}; - - for (var i = keys.length - 1; i >= 0; i--) { - var key = keys[i]; - var value = this.storage_.getItem(key); - if (typeof value == 'string') { - try { - rv[key] = JSON.parse(value); - } catch (e) { - // If we can't parse the value, just return it unparsed. - rv[key] = value; - } - } else { - keys.splice(i, 1); - } - } - - setTimeout(callback.bind(null, rv), 0); -}; - -/** - * Set a value in storage. - * - * @param {string} key The key for the value to be stored. - * @param {*} value The value to be stored. Anything that can be serialized - * with JSON is acceptable. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Local.prototype.setItem = function(key, value, opt_callback) { - this.storage_.setItem(key, JSON.stringify(value)); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Set multiple values in storage. - * - * @param {Object} map A map of key/values to set in storage. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Local.prototype.setItems = function(obj, opt_callback) { - for (var key in obj) { - this.storage_.setItem(key, JSON.stringify(obj[key])); - } - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Remove an item from storage. - * - * @param {string} key The key to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Local.prototype.removeItem = function(key, opt_callback) { - this.storage_.removeItem(key); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Remove multiple items from storage. - * - * @param {Array} keys The keys to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Local.prototype.removeItems = function(ary, opt_callback) { - for (var i = 0; i < ary.length; i++) { - this.storage_.removeItem(ary[i]); - } - - if (opt_callback) - setTimeout(opt_callback, 0); -}; -// SOURCE FILE: libdot/js/lib_storage_memory.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * In-memory storage class with an async interface that is interchangeable with - * other lib.Storage.* implementations. - */ -lib.Storage.Memory = function() { - this.observers_ = []; - this.storage_ = {}; -}; - -/** - * Register a function to observe storage changes. - * - * @param {function(map)} callback The function to invoke when the storage - * changes. - */ -lib.Storage.Memory.prototype.addObserver = function(callback) { - this.observers_.push(callback); -}; - -/** - * Unregister a change observer. - * - * @param {function} observer A previously registered callback. - */ -lib.Storage.Memory.prototype.removeObserver = function(callback) { - var i = this.observers_.indexOf(callback); - if (i != -1) - this.observers_.splice(i, 1); -}; - -/** - * Delete everything in this storage. - * - * @param {function(map)} callback The function to invoke when the delete - * has completed. - */ -lib.Storage.Memory.prototype.clear = function(opt_callback) { - var e = {}; - for (var key in this.storage_) { - e[key] = {oldValue: this.storage_[key], newValue: (void 0)}; - } - - this.storage_ = {}; - - setTimeout(function() { - for (var i = 0; i < this.observers_.length; i++) { - this.observers_[i](e); - } - }.bind(this), 0); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Return the current value of a storage item. - * - * @param {string} key The key to look up. - * @param {function(value) callback The function to invoke when the value has - * been retrieved. - */ -lib.Storage.Memory.prototype.getItem = function(key, callback) { - var value = this.storage_[key]; - - if (typeof value == 'string') { - try { - value = JSON.parse(value); - } catch (e) { - // If we can't parse the value, just return it unparsed. - } - } - - setTimeout(callback.bind(null, value), 0); -}; - -/** - * Fetch the values of multiple storage items. - * - * @param {Array} keys The keys to look up. - * @param {function(map) callback The function to invoke when the values have - * been retrieved. - */ -lib.Storage.Memory.prototype.getItems = function(keys, callback) { - var rv = {}; - - for (var i = keys.length - 1; i >= 0; i--) { - var key = keys[i]; - var value = this.storage_[key]; - if (typeof value == 'string') { - try { - rv[key] = JSON.parse(value); - } catch (e) { - // If we can't parse the value, just return it unparsed. - rv[key] = value; - } - } else { - keys.splice(i, 1); - } - } - - setTimeout(callback.bind(null, rv), 0); -}; - -/** - * Set a value in storage. - * - * @param {string} key The key for the value to be stored. - * @param {*} value The value to be stored. Anything that can be serialized - * with JSON is acceptable. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Memory.prototype.setItem = function(key, value, opt_callback) { - var oldValue = this.storage_[key]; - this.storage_[key] = JSON.stringify(value); - - var e = {}; - e[key] = {oldValue: oldValue, newValue: value}; - - setTimeout(function() { - for (var i = 0; i < this.observers_.length; i++) { - this.observers_[i](e); - } - }.bind(this), 0); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Set multiple values in storage. - * - * @param {Object} map A map of key/values to set in storage. - * @param {function()} opt_callback Optional function to invoke when the - * set is complete. You don't have to wait for the set to complete in order - * to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Memory.prototype.setItems = function(obj, opt_callback) { - var e = {}; - - for (var key in obj) { - e[key] = {oldValue: this.storage_[key], newValue: obj[key]}; - this.storage_[key] = JSON.stringify(obj[key]); - } - - setTimeout(function() { - for (var i = 0; i < this.observers_.length; i++) { - this.observers_[i](e); - } - }.bind(this)); - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Remove an item from storage. - * - * @param {string} key The key to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Memory.prototype.removeItem = function(key, opt_callback) { - delete this.storage_[key]; - - if (opt_callback) - setTimeout(opt_callback, 0); -}; - -/** - * Remove multiple items from storage. - * - * @param {Array} keys The keys to be removed. - * @param {function()} opt_callback Optional function to invoke when the - * remove is complete. You don't have to wait for the set to complete in - * order to read the value, since the local cache is updated synchronously. - */ -lib.Storage.Memory.prototype.removeItems = function(ary, opt_callback) { - for (var i = 0; i < ary.length; i++) { - delete this.storage_[ary[i]]; - } - - if (opt_callback) - setTimeout(opt_callback, 0); -}; -// SOURCE FILE: libdot/js/lib_test_manager.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * @fileoverview JavaScript unit testing framework for synchronous and - * asynchronous tests. - * - * This file contains the lib.TestManager and related classes. At the moment - * it's all collected in a single file since it's reasonably small - * (=~1k lines), and it's a lot easier to include one file into your test - * harness than it is to include seven. - * - * The following classes are defined... - * - * lib.TestManager - The root class and entrypoint for creating test runs. - * lib.TestManager.Log - Logging service. - * lib.TestManager.Suite - A collection of tests. - * lib.TestManager.Test - A single test. - * lib.TestManager.TestRun - Manages the execution of a set of tests. - * lib.TestManager.Result - A single test result. - */ - -/** - * Root object in the unit test hierarchy, and keeper of the log object. - * - * @param {lib.TestManager.Log} opt_log Optional lib.TestManager.Log object. - * Logs to the JavaScript console if omitted. - */ -lib.TestManager = function(opt_log) { - this.log = opt_log || new lib.TestManager.Log(); -} - -/** - * Create a new test run object for this test manager. - * - * @param {Object} opt_cx An object to be passed to test suite setup(), - * preamble(), and test cases during this test run. This object is opaque - * to lib.TestManager.* code. It's entirely up to the test suite what it's - * used for. - */ -lib.TestManager.prototype.createTestRun = function(opt_cx) { - return new lib.TestManager.TestRun(this, opt_cx); -}; - -/** - * Called when a test run associated with this test manager completes. - * - * Clients may override this to call an appropriate function. - */ -lib.TestManager.prototype.onTestRunComplete = function(testRun) {}; - -/** - * Called before a test associated with this test manager is run. - * - * @param {lib.TestManager.Result} result The result object for the upcoming - * test. - * @param {Object} cx The context object for a test run. - */ -lib.TestManager.prototype.testPreamble = function(result, cx) {}; - -/** - * Called after a test associated with this test manager finishes. - * - * @param {lib.TestManager.Result} result The result object for the finished - * test. - * @param {Object} cx The context object for a test run. - */ -lib.TestManager.prototype.testPostamble = function(result, cx) {}; - -/** - * Destination for test case output. - * - * Thw API will be the same as the console object. e.g. We support info(), - * warn(), error(), etc... just like console.info(), etc... - * - * @param {Object} opt_console The console object to route all logging through. - * Should provide saome API as the standard console API. - */ -lib.TestManager.Log = function(opt_console=console) { - this.save = false; - this.data = ''; - this.prefix_ = ''; - this.prefixStack_ = 0; - - // Capture all the console entry points in case code at runtime calls these - // directly. We want to be able to still see things. - // We also expose the direct API to our callers (e.g. we provide warn()). - this.console_ = opt_console; - ['log', 'debug', 'info', 'warn', 'error'].forEach((level) => { - let msgPrefix = ''; - switch (level) { - case 'debug': - case 'warn': - case 'error': - msgPrefix = level.toUpperCase() + ': '; - break; - } - - const oLog = this.console_[level]; - this[level] = this.console_[level] = (...args) => { - if (this.save) - this.data += this.prefix_ + msgPrefix + args.join(' ') + '\n'; - oLog.apply(this.console_, args); - }; - }); - - // Wrap/bind the group functions. - ['group', 'groupCollapsed'].forEach((group) => { - const oGroup = this.console_[group]; - this[group] = this.console_[group] = (label='') => { - oGroup(label); - if (this.save) - this.data += this.prefix_ + label + '\n'; - this.prefix_ = ' '.repeat(++this.prefixStack_); - }; - }); - - const oGroupEnd = this.console_.groupEnd; - this.groupEnd = this.console_.groupEnd = () => { - oGroupEnd(); - this.prefix_ = ' '.repeat(--this.prefixStack_); - }; -}; - -/** - * Returns a new constructor function that will inherit from - * lib.TestManager.Suite. - * - * Use this function to create a new test suite subclass. It will return a - * properly initialized constructor function for the subclass. You can then - * override the setup() and preamble() methods if necessary and add test cases - * to the subclass. - * - * var MyTests = new lib.TestManager.Suite('MyTests'); - * - * MyTests.prototype.setup = function(cx) { - * // Sets this.size to cx.size if it exists, or the default value of 10 - * // if not. - * this.setDefault(cx, {size: 10}); - * }; - * - * MyTests.prototype.preamble = function(result, cx) { - * // Some tests (even successful ones) may side-effect this list, so - * // recreate it before every test. - * this.list = []; - * for (var i = 0; i < this.size; i++) { - * this.list[i] = i; - * } - * }; - * - * // Basic synchronous test case. - * MyTests.addTest('pop-length', function(result, cx) { - * this.list.pop(); - * - * // If this assertion fails, the testcase will stop here. - * result.assertEQ(this.list.length, this.size - 1); - * - * // A test must indicate it has passed by calling this method. - * result.pass(); - * }); - * - * // Sample asynchronous test case. - * MyTests.addTest('async-pop-length', function(result, cx) { - * var self = this; - * - * var callback = function() { - * result.assertEQ(self.list.length, self.size - 1); - * result.pass(); - * }; - * - * // Wait 100ms to check the array length for the sake of this example. - * setTimeout(callback, 100); - * - * this.list.pop(); - * - * // Indicate that this test needs another 200ms to complete. - * // If the test does not report pass/fail by then, it is considered to - * // have timed out. - * result.requestTime(200); - * }); - * - * ... - * - * @param {string} suiteName The name of the test suite. - */ -lib.TestManager.Suite = function(suiteName) { - function ctor(testManager, cx) { - this.testManager_ = testManager; - this.suiteName = suiteName; - - this.setup(cx); - } - - ctor.suiteName = suiteName; - ctor.addTest = lib.TestManager.Suite.addTest; - ctor.disableTest = lib.TestManager.Suite.disableTest; - ctor.getTest = lib.TestManager.Suite.getTest; - ctor.getTestList = lib.TestManager.Suite.getTestList; - ctor.testList_ = []; - ctor.testMap_ = {}; - ctor.prototype = Object.create(lib.TestManager.Suite.prototype); - ctor.constructor = lib.TestManager.Suite; - - lib.TestManager.Suite.subclasses.push(ctor); - - return ctor; -}; - -/** - * List of lib.TestManager.Suite subclasses, in the order they were defined. - */ -lib.TestManager.Suite.subclasses = []; - -/** - * Add a test to a lib.TestManager.Suite. - * - * This method is copied to new subclasses when they are created. - */ -lib.TestManager.Suite.addTest = function(testName, testFunction) { - if (testName in this.testMap_) - throw 'Duplicate test name: ' + testName; - - var test = new lib.TestManager.Test(this, testName, testFunction); - this.testMap_[testName] = test; - this.testList_.push(test); -}; - -/** - * Defines a disabled test. - */ -lib.TestManager.Suite.disableTest = function(testName, testFunction) { - if (testName in this.testMap_) - throw 'Duplicate test name: ' + testName; - - var test = new lib.TestManager.Test(this, testName, testFunction); - console.log('Disabled test: ' + test.fullName); -}; - -/** - * Get a lib.TestManager.Test instance by name. - * - * This method is copied to new subclasses when they are created. - * - * @param {string} testName The name of the desired test. - * @return {lib.TestManager.Test} The requested test, or undefined if it was not - * found. - */ -lib.TestManager.Suite.getTest = function(testName) { - return this.testMap_[testName]; -}; - -/** - * Get an array of lib.TestManager.Tests associated with this Suite. - * - * This method is copied to new subclasses when they are created. - */ -lib.TestManager.Suite.getTestList = function() { - return this.testList_; -}; - -/** - * Set properties on a test suite instance, pulling the property value from - * the context if it exists and from the defaults dictionary if not. - * - * This is intended to be used in your test suite's setup() method to - * define parameters for the test suite which may be overridden through the - * context object. For example... - * - * MySuite.prototype.setup = function(cx) { - * this.setDefaults(cx, {size: 10}); - * }; - * - * If the context object has a 'size' property then this.size will be set to - * the value of cx.size, otherwise this.size will get a default value of 10. - * - * @param {Object} cx The context object for a test run. - * @param {Object} defaults An object containing name/value pairs to set on - * this test suite instance. The value listed here will be used if the - * name is not defined on the context object. - */ -lib.TestManager.Suite.prototype.setDefaults = function(cx, defaults) { - for (var k in defaults) { - this[k] = (k in cx) ? cx[k] : defaults[k]; - } -}; - -/** - * Subclassable method called to set up the test suite. - * - * The default implementation of this method is a no-op. If your test suite - * requires some kind of suite-wide setup, this is the place to do it. - * - * It's fine to store state on the test suite instance, that state will be - * accessible to all tests in the suite. If any test case fails, the entire - * test suite object will be discarded and a new one will be created for - * the remaining tests. - * - * Any side effects outside of this test suite instance must be idempotent. - * For example, if you're adding DOM nodes to a document, make sure to first - * test that they're not already there. If they are, remove them rather than - * reuse them. You should not count on their state, since they were probably - * left behind by a failed testcase. - * - * Any exception here will abort the remainder of the test run. - * - * @param {Object} cx The context object for a test run. - */ -lib.TestManager.Suite.prototype.setup = function(cx) {}; - -/** - * Subclassable method called to do pre-test set up. - * - * The default implementation of this method is a no-op. If your test suite - * requires some kind of pre-test setup, this is the place to do it. - * - * This can be used to avoid a bunch of boilerplate setup/teardown code in - * this suite's testcases. - * - * Any exception here will abort the remainder of the test run. - * - * @param {lib.TestManager.Result} result The result object for the upcoming - * test. - * @param {Object} cx The context object for a test run. - */ -lib.TestManager.Suite.prototype.preamble = function(result, cx) {}; - -/** - * Subclassable method called to do post-test tear-down. - * - * The default implementation of this method is a no-op. If your test suite - * requires some kind of pre-test setup, this is the place to do it. - * - * This can be used to avoid a bunch of boilerplate setup/teardown code in - * this suite's testcases. - * - * Any exception here will abort the remainder of the test run. - * - * @param {lib.TestManager.Result} result The result object for the finished - * test. - * @param {Object} cx The context object for a test run. - */ -lib.TestManager.Suite.prototype.postamble = function(result, cx) {}; - -/** - * Object representing a single test in a test suite. - * - * These are created as part of the lib.TestManager.Suite.addTest() method. - * You should never have to construct one by hand. - * - * @param {lib.TestManager.Suite} suiteClass The test suite class containing - * this test. - * @param {string} testName The local name of this test case, not including the - * test suite name. - * @param {function(lib.TestManager.Result, Object)} testFunction The function - * to invoke for this test case. This is passed a Result instance and the - * context object associated with the test run. - * - */ -lib.TestManager.Test = function(suiteClass, testName, testFunction) { - /** - * The test suite class containing this function. - */ - this.suiteClass = suiteClass; - - /** - * The local name of this test, not including the test suite name. - */ - this.testName = testName; - - /** - * The global name of this test, including the test suite name. - */ - this.fullName = suiteClass.suiteName + '[' + testName + ']'; - - // The function to call for this test. - this.testFunction_ = testFunction; -}; - -/** - * Execute this test. - * - * This is called by a lib.TestManager.Result instance, as part of a - * lib.TestManager.TestRun. You should not call it by hand. - * - * @param {lib.TestManager.Result} result The result object for the test. - */ -lib.TestManager.Test.prototype.run = function(result) { - try { - // Tests are applied to the parent lib.TestManager.Suite subclass. - this.testFunction_.apply(result.suite, - [result, result.testRun.cx]); - } catch (ex) { - if (ex instanceof lib.TestManager.Result.TestComplete) - return; - - result.println('Test raised an exception: ' + ex); - - if (ex.stack) { - if (ex.stack instanceof Array) { - result.println(ex.stack.join('\n')); - } else { - result.println(ex.stack); - } - } - - result.completeTest_(result.FAILED, false); - } -}; - -/** - * Used to choose a set of tests and run them. - * - * It's slightly more convenient to construct one of these from - * lib.TestManager.prototype.createTestRun(). - * - * @param {lib.TestManager} testManager The testManager associated with this - * TestRun. - * @param {Object} cx A context to be passed into the tests. This can be used - * to set parameters for the test suite or individual test cases. - */ -lib.TestManager.TestRun = function(testManager, cx) { - /** - * The associated lib.TestManager instance. - */ - this.testManager = testManager; - - /** - * Shortcut to the lib.TestManager's log. - */ - this.log = testManager.log; - - /** - * The test run context. It's entirely up to the test suite and test cases - * how this is used. It is opaque to lib.TestManager.* classes. - */ - this.cx = cx || {}; - - /** - * The list of test cases that encountered failures. - */ - this.failures = []; - - /** - * The list of test cases that passed. - */ - this.passes = []; - - /** - * The time the test run started, or null if it hasn't been started yet. - */ - this.startDate = null; - - /** - * The time in milliseconds that the test run took to complete, or null if - * it hasn't completed yet. - */ - this.duration = null; - - /** - * The most recent result object, or null if the test run hasn't started - * yet. In order to detect late failures, this is not cleared when the test - * completes. - */ - this.currentResult = null; - - /** - * Number of maximum failures. The test run will stop when this number is - * reached. If 0 or omitted, the entire set of selected tests is run, even - * if some fail. - */ - this.maxFailures = 0; - - /** - * True if this test run ended early because of an unexpected condition. - */ - this.panic = false; - - // List of pending test cases. - this.testQueue_ = []; - -}; - -/** - * This value can be passed to select() to indicate that all tests should - * be selected. - */ -lib.TestManager.TestRun.prototype.ALL_TESTS = lib.f.createEnum(''); - -/** - * Add a single test to the test run. - */ -lib.TestManager.TestRun.prototype.selectTest = function(test) { - this.testQueue_.push(test); -}; - -lib.TestManager.TestRun.prototype.selectSuite = function( - suiteClass, opt_pattern) { - var pattern = opt_pattern || this.ALL_TESTS; - var selectCount = 0; - var testList = suiteClass.getTestList(); - - for (var j = 0; j < testList.length; j++) { - var test = testList[j]; - // Note that we're using "!==" rather than "!=" so that we're matching - // the ALL_TESTS String object, rather than the contents of the string. - if (pattern !== this.ALL_TESTS) { - if (pattern instanceof RegExp) { - if (!pattern.test(test.testName)) - continue; - } else if (test.testName != pattern) { - continue; - } - } - - this.selectTest(test); - selectCount++; - } - - return selectCount; -}; - -/** - * Selects one or more tests to gather results for. - * - * Selecting the same test more than once is allowed. - * - * @param {string|RegExp} pattern Pattern used to select tests. - * If TestRun.prototype.ALL_TESTS, all tests are selected. - * If a string, only the test that exactly matches is selected. - * If a RegExp, only tests matching the RegExp are added. - * - * @return {int} The number of additional tests that have been selected into - * this TestRun. - */ -lib.TestManager.TestRun.prototype.selectPattern = function(pattern) { - var selectCount = 0; - - for (var i = 0; i < lib.TestManager.Suite.subclasses.length; i++) { - selectCount += this.selectSuite(lib.TestManager.Suite.subclasses[i], - pattern); - } - - if (!selectCount) { - this.log.warn('No tests matched selection criteria: ' + pattern); - } - - return selectCount; -}; - -/** - * Hooked up to window.onerror during a test run in order to catch exceptions - * that would otherwise go uncaught. - */ -lib.TestManager.TestRun.prototype.onUncaughtException_ = function( - message, file, line) { - - if (message.indexOf('Uncaught lib.TestManager.Result.TestComplete') == 0 || - message.indexOf('status: passed') != -1) { - // This is a result.pass() or result.fail() call from a callback. We're - // already going to deal with it as part of the completeTest_() call - // that raised it. We can safely squelch this error message. - return true; - } - - if (!this.currentResult) - return; - - if (message == 'Uncaught ' + this.currentResult.expectedErrorMessage_) { - // Test cases may need to raise an unhandled exception as part of the test. - return; - } - - var when = 'during'; - - if (this.currentResult.status != this.currentResult.PENDING) - when = 'after'; - - this.log.error('Uncaught exception ' + when + ' test case: ' + - this.currentResult.test.fullName); - this.log.error(message + ', ' + file + ':' + line); - - this.currentResult.completeTest_(this.currentResult.FAILED, false); - - return false; -}; - -/** - * Called to when this test run has completed. - * - * This method typically re-runs itself asynchronously, in order to let the - * DOM stabilize and short-term timeouts to complete before declaring the - * test run complete. - * - * @param {boolean} opt_skipTimeout If true, the timeout is skipped and the - * test run is completed immediately. This should only be used from within - * this function. - */ -lib.TestManager.TestRun.prototype.onTestRunComplete_ = function( - opt_skipTimeout) { - if (!opt_skipTimeout) { - // The final test may have left a lingering setTimeout(..., 0), or maybe - // poked at the DOM in a way that will trigger a event to fire at the end - // of this stack, so we give things a chance to settle down before our - // final cleanup... - setTimeout(this.onTestRunComplete_.bind(this), 0, true); - return; - } - - this.duration = (new Date()) - this.startDate; - - this.log.groupEnd(); - this.log.info(this.passes.length + ' passed, ' + - this.failures.length + ' failed, ' + - this.msToSeconds_(this.duration)); - - this.summarize(); - - window.onerror = null; - - this.testManager.onTestRunComplete(this); -}; - -/** - * Called by the lib.TestManager.Result object when a test completes. - * - * @param {lib.TestManager.Result} result The result object which has just - * completed. - */ -lib.TestManager.TestRun.prototype.onResultComplete = function(result) { - try { - this.testManager.testPostamble(result, this.cx); - result.suite.postamble(result, this.ctx); - } catch (ex) { - this.log.error('Unexpected exception in postamble: ' + - (ex.stack ? ex.stack : ex)); - this.panic = true; - } - - if (result.status != result.PASSED) - this.log.error(result.status); - else if (result.duration > 500) - this.log.warn('Slow test took ' + this.msToSeconds_(result.duration)); - this.log.groupEnd(); - - if (result.status == result.FAILED) { - this.failures.push(result); - this.currentSuite = null; - } else if (result.status == result.PASSED) { - this.passes.push(result); - } else { - this.log.error('Unknown result status: ' + result.test.fullName + ': ' + - result.status); - return this.panic = true; - } - - this.runNextTest_(); -}; - -/** - * Called by the lib.TestManager.Result object when a test which has already - * completed reports another completion. - * - * This is usually indicative of a buggy testcase. It is probably reporting a - * result on exit and then again from an asynchronous callback. - * - * It may also be the case that the last act of the testcase causes a DOM change - * which triggers some event to run after the test returns. If the event - * handler reports a failure or raises an uncaught exception, the test will - * fail even though it has already completed. - * - * In any case, re-completing a test ALWAYS moves it into the failure pile. - * - * @param {lib.TestManager.Result} result The result object which has just - * completed. - * @param {string} lateStatus The status that the test attempted to record this - * time around. - */ -lib.TestManager.TestRun.prototype.onResultReComplete = function( - result, lateStatus) { - this.log.error('Late complete for test: ' + result.test.fullName + ': ' + - lateStatus); - - // Consider any late completion a failure, even if it's a double-pass, since - // it's a misuse of the testing API. - var index = this.passes.indexOf(result); - if (index >= 0) { - this.passes.splice(index, 1); - this.failures.push(result); - } -}; - -/** - * Run the next test in the queue. - */ -lib.TestManager.TestRun.prototype.runNextTest_ = function() { - if (this.panic || !this.testQueue_.length) - return this.onTestRunComplete_(); - - if (this.maxFailures && this.failures.length >= this.maxFailures) { - this.log.error('Maximum failure count reached, aborting test run.'); - return this.onTestRunComplete_(); - } - - // Peek at the top test first. We remove it later just before it's about - // to run, so that we don't disturb the incomplete test count in the - // event that we fail before running it. - var test = this.testQueue_[0]; - var suite = this.currentResult ? this.currentResult.suite : null; - - try { - if (!suite || !(suite instanceof test.suiteClass)) { - if (suite) - this.log.groupEnd(); - this.log.group(test.suiteClass.suiteName); - suite = new test.suiteClass(this.testManager, this.cx); - } - } catch (ex) { - // If test suite setup fails we're not even going to try to run the tests. - this.log.error('Exception during setup: ' + (ex.stack ? ex.stack : ex)); - this.panic = true; - this.onTestRunComplete_(); - return; - } - - try { - this.log.group(test.testName); - - this.currentResult = new lib.TestManager.Result(this, suite, test); - this.testManager.testPreamble(this.currentResult, this.cx); - suite.preamble(this.currentResult, this.cx); - - this.testQueue_.shift(); - } catch (ex) { - this.log.error('Unexpected exception during test preamble: ' + - (ex.stack ? ex.stack : ex)); - this.log.groupEnd(); - - this.panic = true; - this.onTestRunComplete_(); - return; - } - - try { - this.currentResult.run(); - } catch (ex) { - // Result.run() should catch test exceptions and turn them into failures. - // If we got here, it means there is trouble in the testing framework. - this.log.error('Unexpected exception during test run: ' + - (ex.stack ? ex.stack : ex)); - this.panic = true; - } -}; - -/** - * Run the selected list of tests. - * - * Some tests may need to run asynchronously, so you cannot assume the run is - * complete when this function returns. Instead, pass in a function to be - * called back when the run has completed. - * - * This function will log the results of the test run as they happen into the - * log defined by the associated lib.TestManager. By default this is - * console.log, which can be viewed in the JavaScript console of most browsers. - * - * The browser state is determined by the last test to run. We intentionally - * don't do any cleanup so that you can inspect the state of a failed test, or - * leave the browser ready for manual testing. - * - * Any failures in lib.TestManager.* code or test suite setup or test case - * preamble will cause the test run to abort. - */ -lib.TestManager.TestRun.prototype.run = function() { - this.log.info('Running ' + this.testQueue_.length + ' test(s)'); - - window.onerror = this.onUncaughtException_.bind(this); - this.startDate = new Date(); - this.runNextTest_(); -}; - -/** - * Format milliseconds as fractional seconds. - */ -lib.TestManager.TestRun.prototype.msToSeconds_ = function(ms) { - var secs = (ms / 1000).toFixed(2); - return secs + 's'; -}; - -/** - * Log the current result summary. - */ -lib.TestManager.TestRun.prototype.summarize = function() { - if (this.failures.length) { - for (var i = 0; i < this.failures.length; i++) { - this.log.error('FAILED: ' + this.failures[i].test.fullName); - } - } - - if (this.testQueue_.length) { - this.log.warn('Test run incomplete: ' + this.testQueue_.length + - ' test(s) were not run.'); - } -}; - -/** - * Record of the result of a single test. - * - * These are constructed during a test run, you shouldn't have to make one - * on your own. - * - * An instance of this class is passed in to each test function. It can be - * used to add messages to the test log, to record a test pass/fail state, to - * test assertions, or to create exception-proof wrappers for callback - * functions. - * - * @param {lib.TestManager.TestRun} testRun The TestRun instance associated with - * this result. - * @param {lib.TestManager.Suit} suite The Suite containing the test we're - * collecting this result for. - * @param {lib.TestManager.Test} test The test we're collecting this result for. - */ -lib.TestManager.Result = function(testRun, suite, test) { - /** - * The TestRun instance associated with this result. - */ - this.testRun = testRun; - - /** - * The Suite containing the test we're collecting this result for. - */ - this.suite = suite; - - /** - * The test we're collecting this result for. - */ - this.test = test; - - /** - * The time we started to collect this result, or null if we haven't started. - */ - this.startDate = null; - - /** - * The time in milliseconds that the test took to complete, or null if - * it hasn't completed yet. - */ - this.duration = null; - - /** - * The current status of this test result. - */ - this.status = this.PENDING; - - // An error message that the test case is expected to generate. - this.expectedErrorMessage_ = null; -}; - -/** - * Possible values for this.status. - */ -lib.TestManager.Result.prototype.PENDING = 'pending'; -lib.TestManager.Result.prototype.FAILED = 'FAILED'; -lib.TestManager.Result.prototype.PASSED = 'passed'; - -/** - * Exception thrown when a test completes (pass or fail), to ensure no more of - * the test is run. - */ -lib.TestManager.Result.TestComplete = function(result) { - this.result = result; -}; - -lib.TestManager.Result.TestComplete.prototype.toString = function() { - return 'lib.TestManager.Result.TestComplete: ' + this.result.test.fullName + - ', status: ' + this.result.status; -} - -/** - * Start the test associated with this result. - */ -lib.TestManager.Result.prototype.run = function() { - var self = this; - - this.startDate = new Date(); - this.test.run(this); - - if (this.status == this.PENDING && !this.timeout_) { - this.println('Test did not return a value and did not request more time.'); - this.completeTest_(this.FAILED, false); - } -}; - -/** - * Unhandled error message this test expects to generate. - * - * This must be the exact string that would appear in the JavaScript console, - * minus the 'Uncaught ' prefix. - * - * The test case does *not* automatically fail if the error message is not - * encountered. - */ -lib.TestManager.Result.prototype.expectErrorMessage = function(str) { - this.expectedErrorMessage_ = str; -}; - -/** - * Function called when a test times out. - */ -lib.TestManager.Result.prototype.onTimeout_ = function() { - this.timeout_ = null; - - if (this.status != this.PENDING) - return; - - this.println('Test timed out.'); - this.completeTest_(this.FAILED, false); -}; - -/** - * Indicate that a test case needs more time to complete. - * - * Before a test case returns it must report a pass/fail result, or request more - * time to do so. - * - * If a test does not report pass/fail before the time expires it will - * be reported as a timeout failure. Any late pass/fails will be noted in the - * test log, but will not affect the final result of the test. - * - * Test cases may call requestTime more than once. If you have a few layers - * of asynchronous API to go through, you should call this once per layer with - * an estimate of how long each callback will take to complete. - * - * @param {int} ms Number of milliseconds requested. - */ -lib.TestManager.Result.prototype.requestTime = function(ms) { - if (this.timeout_) - clearTimeout(this.timeout_); - - this.timeout_ = setTimeout(this.onTimeout_.bind(this), ms); -}; - -/** - * Report the completion of a test. - * - * @param {string} status The status of the test case. - * @param {boolean} opt_throw Optional boolean indicating whether or not - * to throw the TestComplete exception. - */ -lib.TestManager.Result.prototype.completeTest_ = function(status, opt_throw) { - if (this.status == this.PENDING) { - this.duration = (new Date()) - this.startDate; - this.status = status; - - this.testRun.onResultComplete(this); - } else { - this.testRun.onResultReComplete(this, status); - } - - if (arguments.length < 2 || opt_throw) - throw new lib.TestManager.Result.TestComplete(this); -}; - -/** - * Check that two arrays are equal. - */ -lib.TestManager.Result.prototype.arrayEQ_ = function(actual, expected) { - if (!actual || !expected) - return (!actual && !expected); - - if (actual.length != expected.length) - return false; - - for (var i = 0; i < actual.length; ++i) - if (actual[i] != expected[i]) - return false; - - return true; -}; - -/** - * Assert that an actual value is exactly equal to the expected value. - * - * This uses the JavaScript '===' operator in order to avoid type coercion. - * - * If the assertion fails, the test is marked as a failure and a TestCompleted - * exception is thrown. - * - * @param {*} actual The actual measured value. - * @param {*} expected The value expected. - * @param {string} opt_name An optional name used to identify this - * assertion in the test log. If omitted it will be the file:line - * of the caller. - */ -lib.TestManager.Result.prototype.assertEQ = function( - actual, expected, opt_name) { - // Utility function to pretty up the log. - function format(value) { - if (typeof value == 'number') - return value; - - var str = String(value); - var ary = str.split('\n').map(function (e) { return JSON.stringify(e) }); - if (ary.length > 1) { - // If the string has newlines, start it off on its own line so that - // it's easier to compare against another string with newlines. - return '\n' + ary.join('\n'); - } else { - return ary.join('\n'); - } - } - - if (actual === expected) - return; - - // Deal with common object types since JavaScript can't. - if (expected instanceof Array) - if (this.arrayEQ_(actual, expected)) - return; - - var name = opt_name ? '[' + opt_name + ']' : ''; - - this.fail('assertEQ' + name + ': ' + this.getCallerLocation_(1) + ': ' + - format(actual) + ' !== ' + format(expected)); -}; - -/** - * Assert that a value is true. - * - * This uses the JavaScript '===' operator in order to avoid type coercion. - * The must be the boolean value `true`, not just some "truish" value. - * - * If the assertion fails, the test is marked as a failure and a TestCompleted - * exception is thrown. - * - * @param {boolean} actual The actual measured value. - * @param {string} opt_name An optional name used to identify this - * assertion in the test log. If omitted it will be the file:line - * of the caller. - */ -lib.TestManager.Result.prototype.assert = function(actual, opt_name) { - if (actual === true) - return; - - var name = opt_name ? '[' + opt_name + ']' : ''; - - this.fail('assert' + name + ': ' + this.getCallerLocation_(1) + ': ' + - String(actual)); -}; - -/** - * Return the filename:line of a calling stack frame. - * - * This uses a dirty hack. It throws an exception, catches it, and examines - * the stack property of the caught exception. - * - * @param {int} frameIndex The stack frame to return. 0 is the frame that - * called this method, 1 is its caller, and so on. - * @return {string} A string of the format "filename:linenumber". - */ -lib.TestManager.Result.prototype.getCallerLocation_ = function(frameIndex) { - try { - throw new Error(); - } catch (ex) { - var frame = ex.stack.split('\n')[frameIndex + 2]; - var ary = frame.match(/([^/]+:\d+):\d+\)?$/); - return ary ? ary[1] : '???'; - } -}; - -/** - * Write a message to the result log. - */ -lib.TestManager.Result.prototype.println = function(message) { - this.testRun.log.info(message); -}; - -/** - * Mark a failed test and exit out of the rest of the test. - * - * This will throw a TestCompleted exception, causing the current test to stop. - * - * @param {string} opt_message Optional message to add to the log. - */ -lib.TestManager.Result.prototype.fail = function(opt_message) { - if (arguments.length) - this.println(opt_message); - - this.completeTest_(this.FAILED, true); -}; - -/** - * Mark a passed test and exit out of the rest of the test. - * - * This will throw a TestCompleted exception, causing the current test to stop. - */ -lib.TestManager.Result.prototype.pass = function() { - this.completeTest_(this.PASSED, true); -}; -// SOURCE FILE: libdot/js/lib_utf8.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -// TODO(davidben): When the string encoding API is implemented, -// replace this with the native in-browser implementation. -// -// https://wiki.whatwg.org/wiki/StringEncoding -// https://encoding.spec.whatwg.org/ - -/** - * A stateful UTF-8 decoder. - */ -lib.UTF8Decoder = function() { - // The number of bytes left in the current sequence. - this.bytesLeft = 0; - // The in-progress code point being decoded, if bytesLeft > 0. - this.codePoint = 0; - // The lower bound on the final code point, if bytesLeft > 0. - this.lowerBound = 0; -}; - -/** - * Decodes a some UTF-8 data, taking into account state from previous - * data streamed through the encoder. - * - * @param {String} str data to decode, represented as a JavaScript - * String with each code unit representing a byte between 0x00 to - * 0xFF. - * @return {String} The data decoded into a JavaScript UTF-16 string. - */ -lib.UTF8Decoder.prototype.decode = function(str) { - var ret = ''; - for (var i = 0; i < str.length; i++) { - var c = str.charCodeAt(i); - if (this.bytesLeft == 0) { - if (c <= 0x7F) { - ret += str.charAt(i); - } else if (0xC0 <= c && c <= 0xDF) { - this.codePoint = c - 0xC0; - this.bytesLeft = 1; - this.lowerBound = 0x80; - } else if (0xE0 <= c && c <= 0xEF) { - this.codePoint = c - 0xE0; - this.bytesLeft = 2; - this.lowerBound = 0x800; - } else if (0xF0 <= c && c <= 0xF7) { - this.codePoint = c - 0xF0; - this.bytesLeft = 3; - this.lowerBound = 0x10000; - } else if (0xF8 <= c && c <= 0xFB) { - this.codePoint = c - 0xF8; - this.bytesLeft = 4; - this.lowerBound = 0x200000; - } else if (0xFC <= c && c <= 0xFD) { - this.codePoint = c - 0xFC; - this.bytesLeft = 5; - this.lowerBound = 0x4000000; - } else { - ret += '\ufffd'; - } - } else { - if (0x80 <= c && c <= 0xBF) { - this.bytesLeft--; - this.codePoint = (this.codePoint << 6) + (c - 0x80); - if (this.bytesLeft == 0) { - // Got a full sequence. Check if it's within bounds and - // filter out surrogate pairs. - var codePoint = this.codePoint; - if (codePoint < this.lowerBound - || (0xD800 <= codePoint && codePoint <= 0xDFFF) - || codePoint > 0x10FFFF) { - ret += '\ufffd'; - } else { - // Encode as UTF-16 in the output. - if (codePoint < 0x10000) { - ret += String.fromCharCode(codePoint); - } else { - // Surrogate pair. - codePoint -= 0x10000; - ret += String.fromCharCode( - 0xD800 + ((codePoint >>> 10) & 0x3FF), - 0xDC00 + (codePoint & 0x3FF)); - } - } - } - } else { - // Too few bytes in multi-byte sequence. Rewind stream so we - // don't lose the next byte. - ret += '\ufffd'; - this.bytesLeft = 0; - i--; - } - } - } - return ret; -}; - -/** - * Decodes UTF-8 data. This is a convenience function for when all the - * data is already known. - * - * @param {String} str data to decode, represented as a JavaScript - * String with each code unit representing a byte between 0x00 to - * 0xFF. - * @return {String} The data decoded into a JavaScript UTF-16 string. - */ -lib.decodeUTF8 = function(utf8) { - return (new lib.UTF8Decoder()).decode(utf8); -}; - -/** - * Encodes a UTF-16 string into UTF-8. - * - * TODO(davidben): Do we need a stateful version of this that can - * handle a surrogate pair split in two calls? What happens if a - * keypress event would have contained a character outside the BMP? - * - * @param {String} str The string to encode. - * @return {String} The string encoded as UTF-8, as a JavaScript - * string with bytes represented as code units from 0x00 to 0xFF. - */ -lib.encodeUTF8 = function(str) { - var ret = ''; - for (var i = 0; i < str.length; i++) { - // Get a unicode code point out of str. - var c = str.charCodeAt(i); - if (0xDC00 <= c && c <= 0xDFFF) { - c = 0xFFFD; - } else if (0xD800 <= c && c <= 0xDBFF) { - if (i+1 < str.length) { - var d = str.charCodeAt(i+1); - if (0xDC00 <= d && d <= 0xDFFF) { - // Swallow a surrogate pair. - c = 0x10000 + ((c & 0x3FF) << 10) + (d & 0x3FF); - i++; - } else { - c = 0xFFFD; - } - } else { - c = 0xFFFD; - } - } - - // Encode c in UTF-8. - var bytesLeft; - if (c <= 0x7F) { - ret += str.charAt(i); - continue; - } else if (c <= 0x7FF) { - ret += String.fromCharCode(0xC0 | (c >>> 6)); - bytesLeft = 1; - } else if (c <= 0xFFFF) { - ret += String.fromCharCode(0xE0 | (c >>> 12)); - bytesLeft = 2; - } else /* if (c <= 0x10FFFF) */ { - ret += String.fromCharCode(0xF0 | (c >>> 18)); - bytesLeft = 3; - } - - while (bytesLeft > 0) { - bytesLeft--; - ret += String.fromCharCode(0x80 | ((c >>> (6 * bytesLeft)) & 0x3F)); - } - } - return ret; -}; -// SOURCE FILE: libdot/third_party/wcwidth/lib_wc.js -// Copyright (c) 2014 The Chromium OS Authors. All rights reserved. -// Use of lib.wc source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * This JavaScript library is ported from the wcwidth.js module of node.js. - * The original implementation can be found at: - * https://npmjs.org/package/wcwidth.js - */ - -/** - * JavaScript porting of Markus Kuhn's wcwidth() implementation - * - * The following explanation comes from the original C implementation: - * - * This is an implementation of wcwidth() and wcswidth() (defined in - * IEEE Std 1002.1-2001) for Unicode. - * - * http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html - * http://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html - * - * In fixed-width output devices, Latin characters all occupy a single - * "cell" position of equal width, whereas ideographic CJK characters - * occupy two such cells. Interoperability between terminal-line - * applications and (teletype-style) character terminals using the - * UTF-8 encoding requires agreement on which character should advance - * the cursor by how many cell positions. No established formal - * standards exist at present on which Unicode character shall occupy - * how many cell positions on character terminals. These routines are - * a first attempt of defining such behavior based on simple rules - * applied to data provided by the Unicode Consortium. - * - * For some graphical characters, the Unicode standard explicitly - * defines a character-cell width via the definition of the East Asian - * FullWidth (F), Wide (W), Half-width (H), and Narrow (Na) classes. - * In all these cases, there is no ambiguity about which width a - * terminal shall use. For characters in the East Asian Ambiguous (A) - * class, the width choice depends purely on a preference of backward - * compatibility with either historic CJK or Western practice. - * Choosing single-width for these characters is easy to justify as - * the appropriate long-term solution, as the CJK practice of - * displaying these characters as double-width comes from historic - * implementation simplicity (8-bit encoded characters were displayed - * single-width and 16-bit ones double-width, even for Greek, - * Cyrillic, etc.) and not any typographic considerations. - * - * Much less clear is the choice of width for the Not East Asian - * (Neutral) class. Existing practice does not dictate a width for any - * of these characters. It would nevertheless make sense - * typographically to allocate two character cells to characters such - * as for instance EM SPACE or VOLUME INTEGRAL, which cannot be - * represented adequately with a single-width glyph. The following - * routines at present merely assign a single-cell width to all - * neutral characters, in the interest of simplicity. This is not - * entirely satisfactory and should be reconsidered before - * establishing a formal standard in lib.wc area. At the moment, the - * decision which Not East Asian (Neutral) characters should be - * represented by double-width glyphs cannot yet be answered by - * applying a simple rule from the Unicode database content. Setting - * up a proper standard for the behavior of UTF-8 character terminals - * will require a careful analysis not only of each Unicode character, - * but also of each presentation form, something the author of these - * routines has avoided to do so far. - * - * http://www.unicode.org/unicode/reports/tr11/ - * - * Markus Kuhn -- 2007-05-26 (Unicode 5.0) - * - * Permission to use, copy, modify, and distribute lib.wc software - * for any purpose and without fee is hereby granted. The author - * disclaims all warranties with regard to lib.wc software. - * - * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c - */ - -/** - * The following function defines the column width of an ISO 10646 character - * as follows: - * - * - The null character (U+0000) has a column width of 0. - * - Other C0/C1 control characters and DEL will lead to a return value of -1. - * - Non-spacing and enclosing combining characters (general category code Mn - * or Me in the Unicode database) have a column width of 0. - * - SOFT HYPHEN (U+00AD) has a column width of 1. - * - Other format characters (general category code Cf in the Unicode database) - * and ZERO WIDTH SPACE (U+200B) have a column width of 0. - * - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF) have a - * column width of 0. - * - Spacing characters in the East Asian Wide (W) or East Asian Full-width (F) - * category as defined in Unicode Technical Report #11 have a column width of - * 2. - * - East Asian Ambiguous characters are taken into account if - * regardCjkAmbiguous flag is enabled. They have a column width of 2. - * - All remaining characters (including all printable ISO 8859-1 and WGL4 - * characters, Unicode control characters, etc.) have a column width of 1. - * - * This implementation assumes that characters are encoded in ISO 10646. - */ - -lib.wc = {}; - -// Width of a nul character. -lib.wc.nulWidth = 0; - -// Width of a control character. -lib.wc.controlWidth = 0; - -// Flag whether to consider East Asian Ambiguous characters. -lib.wc.regardCjkAmbiguous = false; - -// Width of an East Asian Ambiguous character. -lib.wc.cjkAmbiguousWidth = 2; - -// Sorted list of non-overlapping intervals of non-spacing characters -// generated by "uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B c" -lib.wc.combining = [ - [ 0x0300, 0x036F ], [ 0x0483, 0x0486 ], [ 0x0488, 0x0489 ], - [ 0x0591, 0x05BD ], [ 0x05BF, 0x05BF ], [ 0x05C1, 0x05C2 ], - [ 0x05C4, 0x05C5 ], [ 0x05C7, 0x05C7 ], [ 0x0600, 0x0603 ], - [ 0x0610, 0x0615 ], [ 0x064B, 0x065E ], [ 0x0670, 0x0670 ], - [ 0x06D6, 0x06E4 ], [ 0x06E7, 0x06E8 ], [ 0x06EA, 0x06ED ], - [ 0x070F, 0x070F ], [ 0x0711, 0x0711 ], [ 0x0730, 0x074A ], - [ 0x07A6, 0x07B0 ], [ 0x07EB, 0x07F3 ], [ 0x0901, 0x0902 ], - [ 0x093C, 0x093C ], [ 0x0941, 0x0948 ], [ 0x094D, 0x094D ], - [ 0x0951, 0x0954 ], [ 0x0962, 0x0963 ], [ 0x0981, 0x0981 ], - [ 0x09BC, 0x09BC ], [ 0x09C1, 0x09C4 ], [ 0x09CD, 0x09CD ], - [ 0x09E2, 0x09E3 ], [ 0x0A01, 0x0A02 ], [ 0x0A3C, 0x0A3C ], - [ 0x0A41, 0x0A42 ], [ 0x0A47, 0x0A48 ], [ 0x0A4B, 0x0A4D ], - [ 0x0A70, 0x0A71 ], [ 0x0A81, 0x0A82 ], [ 0x0ABC, 0x0ABC ], - [ 0x0AC1, 0x0AC5 ], [ 0x0AC7, 0x0AC8 ], [ 0x0ACD, 0x0ACD ], - [ 0x0AE2, 0x0AE3 ], [ 0x0B01, 0x0B01 ], [ 0x0B3C, 0x0B3C ], - [ 0x0B3F, 0x0B3F ], [ 0x0B41, 0x0B43 ], [ 0x0B4D, 0x0B4D ], - [ 0x0B56, 0x0B56 ], [ 0x0B82, 0x0B82 ], [ 0x0BC0, 0x0BC0 ], - [ 0x0BCD, 0x0BCD ], [ 0x0C3E, 0x0C40 ], [ 0x0C46, 0x0C48 ], - [ 0x0C4A, 0x0C4D ], [ 0x0C55, 0x0C56 ], [ 0x0CBC, 0x0CBC ], - [ 0x0CBF, 0x0CBF ], [ 0x0CC6, 0x0CC6 ], [ 0x0CCC, 0x0CCD ], - [ 0x0CE2, 0x0CE3 ], [ 0x0D41, 0x0D43 ], [ 0x0D4D, 0x0D4D ], - [ 0x0DCA, 0x0DCA ], [ 0x0DD2, 0x0DD4 ], [ 0x0DD6, 0x0DD6 ], - [ 0x0E31, 0x0E31 ], [ 0x0E34, 0x0E3A ], [ 0x0E47, 0x0E4E ], - [ 0x0EB1, 0x0EB1 ], [ 0x0EB4, 0x0EB9 ], [ 0x0EBB, 0x0EBC ], - [ 0x0EC8, 0x0ECD ], [ 0x0F18, 0x0F19 ], [ 0x0F35, 0x0F35 ], - [ 0x0F37, 0x0F37 ], [ 0x0F39, 0x0F39 ], [ 0x0F71, 0x0F7E ], - [ 0x0F80, 0x0F84 ], [ 0x0F86, 0x0F87 ], [ 0x0F90, 0x0F97 ], - [ 0x0F99, 0x0FBC ], [ 0x0FC6, 0x0FC6 ], [ 0x102D, 0x1030 ], - [ 0x1032, 0x1032 ], [ 0x1036, 0x1037 ], [ 0x1039, 0x1039 ], - [ 0x1058, 0x1059 ], [ 0x1160, 0x11FF ], [ 0x135F, 0x135F ], - [ 0x1712, 0x1714 ], [ 0x1732, 0x1734 ], [ 0x1752, 0x1753 ], - [ 0x1772, 0x1773 ], [ 0x17B4, 0x17B5 ], [ 0x17B7, 0x17BD ], - [ 0x17C6, 0x17C6 ], [ 0x17C9, 0x17D3 ], [ 0x17DD, 0x17DD ], - [ 0x180B, 0x180D ], [ 0x18A9, 0x18A9 ], [ 0x1920, 0x1922 ], - [ 0x1927, 0x1928 ], [ 0x1932, 0x1932 ], [ 0x1939, 0x193B ], - [ 0x1A17, 0x1A18 ], [ 0x1B00, 0x1B03 ], [ 0x1B34, 0x1B34 ], - [ 0x1B36, 0x1B3A ], [ 0x1B3C, 0x1B3C ], [ 0x1B42, 0x1B42 ], - [ 0x1B6B, 0x1B73 ], [ 0x1DC0, 0x1DCA ], [ 0x1DFE, 0x1DFF ], - [ 0x200B, 0x200F ], [ 0x202A, 0x202E ], [ 0x2060, 0x2063 ], - [ 0x206A, 0x206F ], [ 0x20D0, 0x20EF ], [ 0x302A, 0x302F ], - [ 0x3099, 0x309A ], [ 0xA806, 0xA806 ], [ 0xA80B, 0xA80B ], - [ 0xA825, 0xA826 ], [ 0xFB1E, 0xFB1E ], [ 0xFE00, 0xFE0F ], - [ 0xFE20, 0xFE23 ], [ 0xFEFF, 0xFEFF ], [ 0xFFF9, 0xFFFB ], - [ 0x10A01, 0x10A03 ], [ 0x10A05, 0x10A06 ], [ 0x10A0C, 0x10A0F ], - [ 0x10A38, 0x10A3A ], [ 0x10A3F, 0x10A3F ], [ 0x1D167, 0x1D169 ], - [ 0x1D173, 0x1D182 ], [ 0x1D185, 0x1D18B ], [ 0x1D1AA, 0x1D1AD ], - [ 0x1D242, 0x1D244 ], [ 0xE0001, 0xE0001 ], [ 0xE0020, 0xE007F ], - [ 0xE0100, 0xE01EF ] -]; - -// Sorted list of non-overlapping intervals of East Asian Ambiguous characters -// generated by "uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c" -lib.wc.ambiguous = [ - [ 0x00A1, 0x00A1 ], [ 0x00A4, 0x00A4 ], [ 0x00A7, 0x00A8 ], - [ 0x00AA, 0x00AA ], [ 0x00AE, 0x00AE ], [ 0x00B0, 0x00B4 ], - [ 0x00B6, 0x00BA ], [ 0x00BC, 0x00BF ], [ 0x00C6, 0x00C6 ], - [ 0x00D0, 0x00D0 ], [ 0x00D7, 0x00D8 ], [ 0x00DE, 0x00E1 ], - [ 0x00E6, 0x00E6 ], [ 0x00E8, 0x00EA ], [ 0x00EC, 0x00ED ], - [ 0x00F0, 0x00F0 ], [ 0x00F2, 0x00F3 ], [ 0x00F7, 0x00FA ], - [ 0x00FC, 0x00FC ], [ 0x00FE, 0x00FE ], [ 0x0101, 0x0101 ], - [ 0x0111, 0x0111 ], [ 0x0113, 0x0113 ], [ 0x011B, 0x011B ], - [ 0x0126, 0x0127 ], [ 0x012B, 0x012B ], [ 0x0131, 0x0133 ], - [ 0x0138, 0x0138 ], [ 0x013F, 0x0142 ], [ 0x0144, 0x0144 ], - [ 0x0148, 0x014B ], [ 0x014D, 0x014D ], [ 0x0152, 0x0153 ], - [ 0x0166, 0x0167 ], [ 0x016B, 0x016B ], [ 0x01CE, 0x01CE ], - [ 0x01D0, 0x01D0 ], [ 0x01D2, 0x01D2 ], [ 0x01D4, 0x01D4 ], - [ 0x01D6, 0x01D6 ], [ 0x01D8, 0x01D8 ], [ 0x01DA, 0x01DA ], - [ 0x01DC, 0x01DC ], [ 0x0251, 0x0251 ], [ 0x0261, 0x0261 ], - [ 0x02C4, 0x02C4 ], [ 0x02C7, 0x02C7 ], [ 0x02C9, 0x02CB ], - [ 0x02CD, 0x02CD ], [ 0x02D0, 0x02D0 ], [ 0x02D8, 0x02DB ], - [ 0x02DD, 0x02DD ], [ 0x02DF, 0x02DF ], [ 0x0391, 0x03A1 ], - [ 0x03A3, 0x03A9 ], [ 0x03B1, 0x03C1 ], [ 0x03C3, 0x03C9 ], - [ 0x0401, 0x0401 ], [ 0x0410, 0x044F ], [ 0x0451, 0x0451 ], - [ 0x2010, 0x2010 ], [ 0x2013, 0x2016 ], [ 0x2018, 0x2019 ], - [ 0x201C, 0x201D ], [ 0x2020, 0x2022 ], [ 0x2024, 0x2027 ], - [ 0x2030, 0x2030 ], [ 0x2032, 0x2033 ], [ 0x2035, 0x2035 ], - [ 0x203B, 0x203B ], [ 0x203E, 0x203E ], [ 0x2074, 0x2074 ], - [ 0x207F, 0x207F ], [ 0x2081, 0x2084 ], [ 0x20AC, 0x20AC ], - [ 0x2103, 0x2103 ], [ 0x2105, 0x2105 ], [ 0x2109, 0x2109 ], - [ 0x2113, 0x2113 ], [ 0x2116, 0x2116 ], [ 0x2121, 0x2122 ], - [ 0x2126, 0x2126 ], [ 0x212B, 0x212B ], [ 0x2153, 0x2154 ], - [ 0x215B, 0x215E ], [ 0x2160, 0x216B ], [ 0x2170, 0x2179 ], - [ 0x2190, 0x2199 ], [ 0x21B8, 0x21B9 ], [ 0x21D2, 0x21D2 ], - [ 0x21D4, 0x21D4 ], [ 0x21E7, 0x21E7 ], [ 0x2200, 0x2200 ], - [ 0x2202, 0x2203 ], [ 0x2207, 0x2208 ], [ 0x220B, 0x220B ], - [ 0x220F, 0x220F ], [ 0x2211, 0x2211 ], [ 0x2215, 0x2215 ], - [ 0x221A, 0x221A ], [ 0x221D, 0x2220 ], [ 0x2223, 0x2223 ], - [ 0x2225, 0x2225 ], [ 0x2227, 0x222C ], [ 0x222E, 0x222E ], - [ 0x2234, 0x2237 ], [ 0x223C, 0x223D ], [ 0x2248, 0x2248 ], - [ 0x224C, 0x224C ], [ 0x2252, 0x2252 ], [ 0x2260, 0x2261 ], - [ 0x2264, 0x2267 ], [ 0x226A, 0x226B ], [ 0x226E, 0x226F ], - [ 0x2282, 0x2283 ], [ 0x2286, 0x2287 ], [ 0x2295, 0x2295 ], - [ 0x2299, 0x2299 ], [ 0x22A5, 0x22A5 ], [ 0x22BF, 0x22BF ], - [ 0x2312, 0x2312 ], [ 0x2460, 0x24E9 ], [ 0x24EB, 0x254B ], - [ 0x2550, 0x2573 ], [ 0x2580, 0x258F ], [ 0x2592, 0x2595 ], - [ 0x25A0, 0x25A1 ], [ 0x25A3, 0x25A9 ], [ 0x25B2, 0x25B3 ], - [ 0x25B6, 0x25B7 ], [ 0x25BC, 0x25BD ], [ 0x25C0, 0x25C1 ], - [ 0x25C6, 0x25C8 ], [ 0x25CB, 0x25CB ], [ 0x25CE, 0x25D1 ], - [ 0x25E2, 0x25E5 ], [ 0x25EF, 0x25EF ], [ 0x2605, 0x2606 ], - [ 0x2609, 0x2609 ], [ 0x260E, 0x260F ], [ 0x2614, 0x2615 ], - [ 0x261C, 0x261C ], [ 0x261E, 0x261E ], [ 0x2640, 0x2640 ], - [ 0x2642, 0x2642 ], [ 0x2660, 0x2661 ], [ 0x2663, 0x2665 ], - [ 0x2667, 0x266A ], [ 0x266C, 0x266D ], [ 0x266F, 0x266F ], - [ 0x273D, 0x273D ], [ 0x2776, 0x277F ], [ 0xE000, 0xF8FF ], - [ 0xFFFD, 0xFFFD ], [ 0xF0000, 0xFFFFD ], [ 0x100000, 0x10FFFD ] -]; - -/** - * Binary search to check if the given unicode character is a space character. - * - * @param {integer} ucs A unicode character code. - * - * @return {boolean} True if the given character is a space character; false - * otherwise. - */ -lib.wc.isSpace = function(ucs) { - // Auxiliary function for binary search in interval table. - var min = 0, max = lib.wc.combining.length - 1; - var mid; - - if (ucs < lib.wc.combining[0][0] || ucs > lib.wc.combining[max][1]) - return false; - while (max >= min) { - mid = Math.floor((min + max) / 2); - if (ucs > lib.wc.combining[mid][1]) { - min = mid + 1; - } else if (ucs < lib.wc.combining[mid][0]) { - max = mid - 1; - } else { - return true; - } - } - - return false; -}; - -/** - * Auxiliary function for checking if the given unicode character is a East - * Asian Ambiguous character. - * - * @param {integer} ucs A unicode character code. - * - * @return {boolean} True if the given character is a East Asian Ambiguous - * character. - */ -lib.wc.isCjkAmbiguous = function(ucs) { - var min = 0, max = lib.wc.ambiguous.length - 1; - var mid; - - if (ucs < lib.wc.ambiguous[0][0] || ucs > lib.wc.ambiguous[max][1]) - return false; - while (max >= min) { - mid = Math.floor((min + max) / 2); - if (ucs > lib.wc.ambiguous[mid][1]) { - min = mid + 1; - } else if (ucs < lib.wc.ambiguous[mid][0]) { - max = mid - 1; - } else { - return true; - } - } - - return false; -}; - -/** - * Determine the column width of the given character. - * - * @param {integer} ucs A unicode character code. - * - * @return {integer} The column width of the given character. - */ -lib.wc.charWidth = function(ucs) { - if (lib.wc.regardCjkAmbiguous) { - return lib.wc.charWidthRegardAmbiguous(ucs); - } else { - return lib.wc.charWidthDisregardAmbiguous(ucs); - } -}; - -/** - * Determine the column width of the given character without considering East - * Asian Ambiguous characters. - * - * @param {integer} ucs A unicode character code. - * - * @return {integer} The column width of the given character. - */ -lib.wc.charWidthDisregardAmbiguous = function(ucs) { - // Test for 8-bit control characters. - if (ucs === 0) - return lib.wc.nulWidth; - if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0)) - return lib.wc.controlWidth; - - // Optimize for ASCII characters. - if (ucs < 0x7f) - return 1; - - // Binary search in table of non-spacing characters. - if (lib.wc.isSpace(ucs)) - return 0; - - // If we arrive here, ucs is not a combining or C0/C1 control character. - return 1 + - (ucs >= 0x1100 && - (ucs <= 0x115f || // Hangul Jamo init. consonants - ucs == 0x2329 || ucs == 0x232a || - (ucs >= 0x2e80 && ucs <= 0xa4cf && - ucs != 0x303f) || // CJK ... Yi - (ucs >= 0xac00 && ucs <= 0xd7a3) || // Hangul Syllables - (ucs >= 0xf900 && ucs <= 0xfaff) || // CJK Compatibility Ideographs - (ucs >= 0xfe10 && ucs <= 0xfe19) || // Vertical forms - (ucs >= 0xfe30 && ucs <= 0xfe6f) || // CJK Compatibility Forms - (ucs >= 0xff00 && ucs <= 0xff60) || // Fullwidth Forms - (ucs >= 0xffe0 && ucs <= 0xffe6) || - (ucs >= 0x20000 && ucs <= 0x2fffd) || - (ucs >= 0x30000 && ucs <= 0x3fffd))); - // TODO: emoji characters usually require space for wide characters although - // East Asian width spec says nothing. Should we add special cases for them? -}; - -/** - * Determine the column width of the given character considering East Asian - * Ambiguous characters. - * - * @param {integer} ucs A unicode character code. - * - * @return {integer} The column width of the given character. - */ -lib.wc.charWidthRegardAmbiguous = function(ucs) { - if (lib.wc.isCjkAmbiguous(ucs)) - return lib.wc.cjkAmbiguousWidth; - - return lib.wc.charWidthDisregardAmbiguous(ucs); -}; - -/** - * Determine the column width of the given string. - * - * @param {string} str A string. - * - * @return {integer} The column width of the given string. - */ -lib.wc.strWidth = function(str) { - var width, rv = 0; - - for (var i = 0; i < str.length;) { - var codePoint = str.codePointAt(i); - width = lib.wc.charWidth(codePoint); - if (width < 0) - return -1; - rv += width; - i += (codePoint <= 0xffff) ? 1 : 2; - } - - return rv; -}; - -/** - * Get the substring at the given column offset of the given column width. - * - * @param {string} str The string to get substring from. - * @param {integer} start The starting column offset to get substring. - * @param {integer} opt_width The column width of the substring. - * - * @return {string} The substring. - */ -lib.wc.substr = function(str, start, opt_width) { - var startIndex, endIndex, width; - - for (startIndex = 0, width = 0; startIndex < str.length; startIndex++) { - width += lib.wc.charWidth(str.charCodeAt(startIndex)); - if (width > start) - break; - } - - if (opt_width != undefined) { - for (endIndex = startIndex, width = 0; - endIndex < str.length && width <= opt_width; - width += lib.wc.charWidth(str.charCodeAt(endIndex)), endIndex++); - if (width > opt_width) - endIndex--; - return str.substring(startIndex, endIndex); - } - - return str.substr(startIndex); -}; - -/** - * Get substring at the given start and end column offset. - * - * @param {string} str The string to get substring from. - * @param {integer} start The starting column offset. - * @param {integer} end The ending column offset. - * - * @return {string} The substring. - */ -lib.wc.substring = function(str, start, end) { - return lib.wc.substr(str, start, end - start); -}; -lib.resource.add('libdot/changelog/version', 'text/plain', -'1.16' + -'' -); - -lib.resource.add('libdot/changelog/date', 'text/plain', -'2017-08-16' + -'' -); - -// SOURCE FILE: hterm/js/hterm.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.Storage'); - -/** - * @fileoverview Declares the hterm.* namespace and some basic shared utilities - * that are too small to deserve dedicated files. - */ -var hterm = {}; - -/** - * The type of window hosting hterm. - * - * This is set as part of hterm.init(). The value is invalid until - * initialization completes. - */ -hterm.windowType = null; - -/** - * Warning message to display in the terminal when browser zoom is enabled. - * - * You can replace it with your own localized message. - */ -hterm.zoomWarningMessage = 'ZOOM != 100%'; - -/** - * Brief overlay message displayed when text is copied to the clipboard. - * - * By default it is the unicode BLACK SCISSORS character, but you can - * replace it with your own localized message. - * - * This is only displayed when the 'enable-clipboard-notice' preference - * is enabled. - */ -hterm.notifyCopyMessage = '\u2702'; - - -/** - * Text shown in a desktop notification for the terminal - * bell. \u226a is a unicode EIGHTH NOTE, %(title) will - * be replaced by the terminal title. - */ -hterm.desktopNotificationTitle = '\u266A %(title) \u266A'; - -/** - * List of known hterm test suites. - * - * A test harness should ensure that they all exist before running. - */ -hterm.testDeps = ['hterm.ScrollPort.Tests', 'hterm.Screen.Tests', - 'hterm.Terminal.Tests', 'hterm.VT.Tests', - 'hterm.VT.CannedTests']; - -/** - * The hterm init function, registered with lib.registerInit(). - * - * This is called during lib.init(). - * - * @param {function} onInit The function lib.init() wants us to invoke when - * initialization is complete. - */ -lib.registerInit('hterm', function(onInit) { - function onWindow(window) { - hterm.windowType = window.type; - setTimeout(onInit, 0); - } - - function onTab(tab) { - if (tab && window.chrome) { - chrome.windows.get(tab.windowId, null, onWindow); - } else { - // TODO(rginda): This is where we end up for a v1 app's background page. - // Maybe windowType = 'none' would be more appropriate, or something. - hterm.windowType = 'normal'; - setTimeout(onInit, 0); - } - } - - if (!hterm.defaultStorage) { - if (window.chrome && chrome.storage && chrome.storage.sync) { - hterm.defaultStorage = new lib.Storage.Chrome(chrome.storage.sync); - } else { - hterm.defaultStorage = new lib.Storage.Local(); - } - } - - // The chrome.tabs API is not supported in packaged apps, and detecting if - // you're a packaged app is a little awkward. - var isPackagedApp = false; - if (window.chrome && chrome.runtime && chrome.runtime.getManifest) { - var manifest = chrome.runtime.getManifest(); - isPackagedApp = manifest.app && manifest.app.background; - } - - if (isPackagedApp) { - // Packaged apps are never displayed in browser tabs. - setTimeout(onWindow.bind(null, {type: 'popup'}), 0); - } else { - if (window.chrome && chrome.tabs) { - // The getCurrent method gets the tab that is "currently running", not the - // topmost or focused tab. - chrome.tabs.getCurrent(onTab); - } else { - setTimeout(onWindow.bind(null, {type: 'normal'}), 0); - } - } -}); - -/** - * Return decimal { width, height } for a given dom node. - */ -hterm.getClientSize = function(dom) { - return dom.getBoundingClientRect(); -}; - -/** - * Return decimal width for a given dom node. - */ -hterm.getClientWidth = function(dom) { - return dom.getBoundingClientRect().width; -}; - -/** - * Return decimal height for a given dom node. - */ -hterm.getClientHeight = function(dom) { - return dom.getBoundingClientRect().height; -}; - -/** - * Copy the current selection to the system clipboard. - * - * @param {HTMLDocument} The document with the selection to copy. - */ -hterm.copySelectionToClipboard = function(document) { - try { - document.execCommand('copy'); - } catch (firefoxException) { - // Ignore this. FF throws an exception if there was an error, even though - // the spec says just return false. - } -}; - -/** - * Paste the system clipboard into the element with focus. - * - * Note: In Chrome/Firefox app/extension environments, you'll need the - * "clipboardRead" permission. In other environments, this might always - * fail as the browser frequently blocks access for security reasons. - * - * @param {HTMLDocument} The document to paste into. - * @return {boolean} True if the paste succeeded. - */ -hterm.pasteFromClipboard = function(document) { - try { - return document.execCommand('paste'); - } catch (firefoxException) { - // Ignore this. FF 40 and older would incorrectly throw an exception if - // there was an error instead of returning false. - return false; - } -}; - -/** - * Create a new notification. - * - * @param {Object} params Various parameters for the notification. - * @param {string} params.title The title (defaults to the window's title). - * @param {string} params.body The message body (main text). - */ -hterm.notify = function(params) { - var def = (curr, fallback) => curr !== undefined ? curr : fallback; - if (params === undefined || params === null) - params = {}; - - // Merge the user's choices with the default settings. We don't take it - // directly in case it was stuffed with excess junk. - var options = { - 'body': params.body, - 'icon': def(params.icon, lib.resource.getDataUrl('hterm/images/icon-96')), - } - - var title = def(params.title, window.document.title); - if (!title) - title = 'hterm'; - title = lib.f.replaceVars(hterm.desktopNotificationTitle, {'title': title}); - - var n = new Notification(title, options); - n.onclick = function() { - window.focus(); - this.close(); - }; - return n; -}; - -/** - * Constructor for a hterm.Size record. - * - * Instances of this class have public read/write members for width and height. - * - * @param {integer} width The width of this record. - * @param {integer} height The height of this record. - */ -hterm.Size = function(width, height) { - this.width = width; - this.height = height; -}; - -/** - * Adjust the width and height of this record. - * - * @param {integer} width The new width of this record. - * @param {integer} height The new height of this record. - */ -hterm.Size.prototype.resize = function(width, height) { - this.width = width; - this.height = height; -}; - -/** - * Return a copy of this record. - * - * @return {hterm.Size} A new hterm.Size instance with the same width and - * height. - */ -hterm.Size.prototype.clone = function() { - return new hterm.Size(this.width, this.height); -}; - -/** - * Set the height and width of this instance based on another hterm.Size. - * - * @param {hterm.Size} that The object to copy from. - */ -hterm.Size.prototype.setTo = function(that) { - this.width = that.width; - this.height = that.height; -}; - -/** - * Test if another hterm.Size instance is equal to this one. - * - * @param {hterm.Size} that The other hterm.Size instance. - * @return {boolean} True if both instances have the same width/height, false - * otherwise. - */ -hterm.Size.prototype.equals = function(that) { - return this.width == that.width && this.height == that.height; -}; - -/** - * Return a string representation of this instance. - * - * @return {string} A string that identifies the width and height of this - * instance. - */ -hterm.Size.prototype.toString = function() { - return '[hterm.Size: ' + this.width + ', ' + this.height + ']'; -}; - -/** - * Constructor for a hterm.RowCol record. - * - * Instances of this class have public read/write members for row and column. - * - * This class includes an 'overflow' bit which is use to indicate that an - * attempt has been made to move the cursor column passed the end of the - * screen. When this happens we leave the cursor column set to the last column - * of the screen but set the overflow bit. In this state cursor movement - * happens normally, but any attempt to print new characters causes a cr/lf - * first. - * - * @param {integer} row The row of this record. - * @param {integer} column The column of this record. - * @param {boolean} opt_overflow Optional boolean indicating that the RowCol - * has overflowed. - */ -hterm.RowCol = function(row, column, opt_overflow) { - this.row = row; - this.column = column; - this.overflow = !!opt_overflow; -}; - -/** - * Adjust the row and column of this record. - * - * @param {integer} row The new row of this record. - * @param {integer} column The new column of this record. - * @param {boolean} opt_overflow Optional boolean indicating that the RowCol - * has overflowed. - */ -hterm.RowCol.prototype.move = function(row, column, opt_overflow) { - this.row = row; - this.column = column; - this.overflow = !!opt_overflow; -}; - -/** - * Return a copy of this record. - * - * @return {hterm.RowCol} A new hterm.RowCol instance with the same row and - * column. - */ -hterm.RowCol.prototype.clone = function() { - return new hterm.RowCol(this.row, this.column, this.overflow); -}; - -/** - * Set the row and column of this instance based on another hterm.RowCol. - * - * @param {hterm.RowCol} that The object to copy from. - */ -hterm.RowCol.prototype.setTo = function(that) { - this.row = that.row; - this.column = that.column; - this.overflow = that.overflow; -}; - -/** - * Test if another hterm.RowCol instance is equal to this one. - * - * @param {hterm.RowCol} that The other hterm.RowCol instance. - * @return {boolean} True if both instances have the same row/column, false - * otherwise. - */ -hterm.RowCol.prototype.equals = function(that) { - return (this.row == that.row && this.column == that.column && - this.overflow == that.overflow); -}; - -/** - * Return a string representation of this instance. - * - * @return {string} A string that identifies the row and column of this - * instance. - */ -hterm.RowCol.prototype.toString = function() { - return ('[hterm.RowCol: ' + this.row + ', ' + this.column + ', ' + - this.overflow + ']'); -}; -// SOURCE FILE: hterm/js/hterm_frame.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.f'); - -/** - * First draft of the interface between the terminal and a third party dialog. - * - * This is rough. It's just the terminal->dialog layer. To complete things - * we'll also need a command->terminal layer. That will have to facilitate - * command->terminal->dialog or direct command->dialog communication. - * - * I imagine this class will change significantly when that happens. - */ - -/** - * Construct a new frame for the given terminal. - * - * @param terminal {hterm.Terminal} The parent terminal object. - * @param url {String} The url to load in the frame. - * @param opt_options {Object} Optional options for the frame. Not implemented. - */ -hterm.Frame = function(terminal, url, opt_options) { - this.terminal_ = terminal; - this.div_ = terminal.div_; - this.url = url; - this.options = opt_options || {}; - this.iframe_ = null; - this.container_ = null; - this.messageChannel_ = null; -}; - -/** - * Handle messages from the iframe. - */ -hterm.Frame.prototype.onMessage_ = function(e) { - switch (e.data.name) { - case 'ipc-init-ok': - // We get this response after we send them ipc-init and they finish. - this.sendTerminalInfo_(); - return; - case 'terminal-info-ok': - // We get this response after we send them terminal-info and they finish. - // Show the finished frame, and then rebind our message handler to the - // callback below. - this.container_.style.display = 'flex'; - this.messageChannel_.port1.onmessage = this.onMessage.bind(this); - this.onLoad(); - return; - default: - console.log('Unknown message from frame:', e.data); - return; - } -}; - -/** - * Clients could override this, I guess. - * - * It doesn't support multiple listeners, but I'm not sure that would make sense - * here. It's probably better to speak directly to our parents. - */ -hterm.Frame.prototype.onMessage = function() {}; - -/** - * Handle iframe onLoad event. - */ -hterm.Frame.prototype.onLoad_ = function() { - this.messageChannel_ = new MessageChannel(); - this.messageChannel_.port1.onmessage = this.onMessage_.bind(this); - this.messageChannel_.port1.start(); - this.iframe_.contentWindow.postMessage( - {name: 'ipc-init', argv: [{messagePort: this.messageChannel_.port2}]}, - this.url, [this.messageChannel_.port2]); -}; - -/** - * Clients may override this. - */ -hterm.Frame.prototype.onLoad = function() {}; - -/** - * Sends the terminal-info message to the iframe. - */ -hterm.Frame.prototype.sendTerminalInfo_ = function() { - lib.f.getAcceptLanguages(function(languages) { - this.postMessage('terminal-info', [{ - acceptLanguages: languages, - foregroundColor: this.terminal_.getForegroundColor(), - backgroundColor: this.terminal_.getBackgroundColor(), - cursorColor: this.terminal_.getCursorColor(), - fontSize: this.terminal_.getFontSize(), - fontFamily: this.terminal_.getFontFamily(), - baseURL: lib.f.getURL('/') - }] - ); - }.bind(this)); -}; - -/** - * User clicked the close button on the frame decoration. - */ -hterm.Frame.prototype.onCloseClicked_ = function() { - this.close(); -}; - -/** - * Close this frame. - */ -hterm.Frame.prototype.close = function() { - if (!this.container_ || !this.container_.parentNode) - return; - - this.container_.parentNode.removeChild(this.container_); - this.onClose(); -}; - - -/** - * Clients may override this. - */ -hterm.Frame.prototype.onClose = function() {}; - -/** - * Send a message to the iframe. - */ -hterm.Frame.prototype.postMessage = function(name, argv) { - if (!this.messageChannel_) - throw new Error('Message channel is not set up.'); - - this.messageChannel_.port1.postMessage({name: name, argv: argv}); -}; - -/** - * Show the UI for this frame. - * - * The iframe src is not loaded until this method is called. - */ -hterm.Frame.prototype.show = function() { - var self = this; - - function opt(name, defaultValue) { - if (name in self.options) - return self.options[name]; - - return defaultValue; - } - - var self = this; - - if (this.container_ && this.container_.parentNode) { - console.error('Frame already visible'); - return; - } - - var headerHeight = '16px'; - - var divSize = hterm.getClientSize(this.div_); - - var width = opt('width', 640); - var height = opt('height', 480); - var left = (divSize.width - width) / 2; - var top = (divSize.height - height) / 2; - - var document = this.terminal_.document_; - - var container = this.container_ = document.createElement('div'); - container.style.cssText = ( - 'position: absolute;' + - 'display: none;' + - 'flex-direction: column;' + - 'top: 10%;' + - 'left: 4%;' + - 'width: 90%;' + - 'height: 80%;' + - 'min-height: 20%;' + - 'max-height: 80%;' + - 'box-shadow: 0 0 2px ' + this.terminal_.getForegroundColor() + ';' + - 'border: 2px ' + this.terminal_.getForegroundColor() + ' solid;'); - - if (false) { - // No use for the close button, so no use for the window header either. - var header = document.createElement('div'); - header.style.cssText = ( - 'display: flex;' + - 'justify-content: flex-end;' + - 'height: ' + headerHeight + ';' + - 'background-color: ' + this.terminal_.getForegroundColor() + ';' + - 'color: ' + this.terminal_.getBackgroundColor() + ';' + - 'font-size: 16px;' + - 'font-family: ' + this.terminal_.getFontFamily()); - container.appendChild(header); - - var button = document.createElement('div'); - button.setAttribute('role', 'button'); - button.style.cssText = ( - 'margin-top: -3px;' + - 'margin-right: 3px;' + - 'cursor: pointer;'); - button.textContent = '\u2a2f'; - button.addEventListener('click', this.onCloseClicked_.bind(this)); - header.appendChild(button); - } - - var iframe = this.iframe_ = document.createElement('iframe'); - iframe.onload = this.onLoad_.bind(this); - iframe.style.cssText = ( - 'display: flex;' + - 'flex: 1;' + - 'width: 100%'); - iframe.setAttribute('src', this.url); - iframe.setAttribute('seamless', true); - container.appendChild(iframe); - - this.div_.appendChild(container); -}; -// SOURCE FILE: hterm/js/hterm_keyboard.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('hterm.Keyboard.KeyMap'); - -/** - * Keyboard handler. - * - * Consumes onKey* events and invokes onVTKeystroke on the associated - * hterm.Terminal object. - * - * See also: [XTERM] as referenced in vt.js. - * - * @param {hterm.Terminal} The Terminal object associated with this keyboard. - */ -hterm.Keyboard = function(terminal) { - // The parent vt interpreter. - this.terminal = terminal; - - // The element we're currently capturing keyboard events for. - this.keyboardElement_ = null; - - // The event handlers we are interested in, and their bound callbacks, saved - // so they can be uninstalled with removeEventListener, when required. - this.handlers_ = [ - ['focusout', this.onFocusOut_.bind(this)], - ['keydown', this.onKeyDown_.bind(this)], - ['keypress', this.onKeyPress_.bind(this)], - ['keyup', this.onKeyUp_.bind(this)], - ['textInput', this.onTextInput_.bind(this)] - ]; - - /** - * The current key map. - */ - this.keyMap = new hterm.Keyboard.KeyMap(this); - - this.bindings = new hterm.Keyboard.Bindings(this); - - /** - * none: Disable any AltGr related munging. - * ctrl-alt: Assume Ctrl+Alt means AltGr. - * left-alt: Assume left Alt means AltGr. - * right-alt: Assume right Alt means AltGr. - */ - this.altGrMode = 'none'; - - /** - * If true, Shift-Insert will fall through to the browser as a paste. - * If false, the keystroke will be sent to the host. - */ - this.shiftInsertPaste = true; - - /** - * If true, home/end will control the terminal scrollbar and shift home/end - * will send the VT keycodes. If false then home/end sends VT codes and - * shift home/end scrolls. - */ - this.homeKeysScroll = false; - - /** - * Same as above, except for page up/page down. - */ - this.pageKeysScroll = false; - - /** - * If true, Ctrl-Plus/Minus/Zero controls zoom. - * If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, - * Ctrl-Plus/Zero do nothing. - */ - this.ctrlPlusMinusZeroZoom = true; - - /** - * Ctrl+C copies if true, sends ^C to host if false. - * Ctrl+Shift+C sends ^C to host if true, copies if false. - */ - this.ctrlCCopy = false; - - /** - * Ctrl+V pastes if true, sends ^V to host if false. - * Ctrl+Shift+V sends ^V to host if true, pastes if false. - */ - this.ctrlVPaste = false; - - /** - * Enable/disable application keypad. - * - * This changes the way numeric keys are sent from the keyboard. - */ - this.applicationKeypad = false; - - /** - * Enable/disable the application cursor mode. - * - * This changes the way cursor keys are sent from the keyboard. - */ - this.applicationCursor = false; - - /** - * If true, the backspace should send BS ('\x08', aka ^H). Otherwise - * the backspace key should send '\x7f'. - */ - this.backspaceSendsBackspace = false; - - /** - * The encoding method for data sent to the host. - */ - this.characterEncoding = 'utf-8'; - - /** - * Set whether the meta key sends a leading escape or not. - */ - this.metaSendsEscape = true; - - /** - * Set whether meta-V gets passed to host. - */ - this.passMetaV = true; - - /** - * Controls how the alt key is handled. - * - * escape....... Send an ESC prefix. - * 8-bit........ Add 128 to the unshifted character as in xterm. - * browser-key.. Wait for the keypress event and see what the browser says. - * (This won't work well on platforms where the browser - * performs a default action for some alt sequences.) - * - * This setting only matters when alt is distinct from meta (altIsMeta is - * false.) - */ - this.altSendsWhat = 'escape'; - - /** - * Set whether the alt key acts as a meta key, instead of producing 8-bit - * characters. - * - * True to enable, false to disable, null to autodetect based on platform. - */ - this.altIsMeta = false; - - /** - * If true, tries to detect DEL key events that are from alt-backspace on - * Chrome OS vs from a true DEL key press. - * - * Background: At the time of writing, on Chrome OS, alt-backspace is mapped - * to DEL. Some users may be happy with this, but others may be frustrated - * that it's impossible to do meta-backspace. If the user enables this pref, - * we use a trick to tell a true DEL keypress from alt-backspace: on - * alt-backspace, we will see the alt key go down, then get a DEL keystroke - * that indicates that alt is not pressed. See https://crbug.com/174410 . - */ - this.altBackspaceIsMetaBackspace = false; - - /** - * Used to keep track of the current alt-key state, which is necessary for - * the altBackspaceIsMetaBackspace preference above and for the altGrMode - * preference. This is a bitmap with where bit positions correspond to the - * "location" property of the key event. - */ - this.altKeyPressed = 0; - - /** - * If true, Chrome OS media keys will be mapped to their F-key equivalent. - * E.g. "Back" will be mapped to F1. If false, Chrome will handle the keys. - */ - this.mediaKeysAreFKeys = false; - - /** - * Holds the previous setting of altSendsWhat when DECSET 1039 is used. When - * DECRST 1039 is used, altSendsWhat is changed back to this and this is - * nulled out. - */ - this.previousAltSendsWhat_ = null; -}; - -/** - * Special handling for keyCodes in a keyboard layout. - */ -hterm.Keyboard.KeyActions = { - /** - * Call preventDefault and stopPropagation for this key event and nothing - * else. - */ - CANCEL: lib.f.createEnum('CANCEL'), - - /** - * This performs the default terminal action for the key. If used in the - * 'normal' action and the the keystroke represents a printable key, the - * character will be sent to the host. If used in one of the modifier - * actions, the terminal will perform the normal action after (possibly) - * altering it. - * - * - If the normal sequence starts with CSI, the sequence will be adjusted - * to include the modifier parameter as described in [XTERM] in the final - * table of the "PC-Style Function Keys" section. - * - * - If the control key is down and the key represents a printable character, - * and the uppercase version of the unshifted keycap is between - * 64 (ASCII '@') and 95 (ASCII '_'), then the uppercase version of the - * unshifted keycap minus 64 is sent. This makes '^@' send '\x00' and - * '^_' send '\x1f'. (Note that one higher that 0x1f is 0x20, which is - * the first printable ASCII value.) - * - * - If the alt key is down and the key represents a printable character then - * the value of the character is shifted up by 128. - * - * - If meta is down and configured to send an escape, '\x1b' will be sent - * before the normal action is performed. - */ - DEFAULT: lib.f.createEnum('DEFAULT'), - - /** - * Causes the terminal to opt out of handling the key event, instead letting - * the browser deal with it. - */ - PASS: lib.f.createEnum('PASS'), - - /** - * Insert the first or second character of the keyCap, based on e.shiftKey. - * The key will be handled in onKeyDown, and e.preventDefault() will be - * called. - * - * It is useful for a modified key action, where it essentially strips the - * modifier while preventing the browser from reacting to the key. - */ - STRIP: lib.f.createEnum('STRIP') -}; - -/** - * Encode a string according to the 'send-encoding' preference. - */ -hterm.Keyboard.prototype.encode = function(str) { - if (this.characterEncoding == 'utf-8') - return this.terminal.vt.encodeUTF8(str); - - return str; -}; - -/** - * Capture keyboard events sent to the associated element. - * - * This enables the keyboard. Captured events are consumed by this class - * and will not perform their default action or bubble to other elements. - * - * Passing a null element will uninstall the keyboard handlers. - * - * @param {HTMLElement} element The element whose events should be captured, or - * null to disable the keyboard. - */ -hterm.Keyboard.prototype.installKeyboard = function(element) { - if (element == this.keyboardElement_) - return; - - if (element && this.keyboardElement_) - this.installKeyboard(null); - - for (var i = 0; i < this.handlers_.length; i++) { - var handler = this.handlers_[i]; - if (element) { - element.addEventListener(handler[0], handler[1]); - } else { - this.keyboardElement_.removeEventListener(handler[0], handler[1]); - } - } - - this.keyboardElement_ = element; -}; - -/** - * Disable keyboard event capture. - * - * This will allow the browser to process key events normally. - */ -hterm.Keyboard.prototype.uninstallKeyboard = function() { - this.installKeyboard(null); -}; - -/** - * Handle onTextInput events. - * - * We're not actually supposed to get these, but we do on the Mac in the case - * where a third party app sends synthetic keystrokes to Chrome. - */ -hterm.Keyboard.prototype.onTextInput_ = function(e) { - if (!e.data) - return; - - e.data.split('').forEach(this.terminal.onVTKeystroke.bind(this.terminal)); -}; - -/** - * Handle onKeyPress events. - */ -hterm.Keyboard.prototype.onKeyPress_ = function(e) { - var code; - - var key = String.fromCharCode(e.which); - var lowerKey = key.toLowerCase(); - if ((e.ctrlKey || e.metaKey) && (lowerKey == 'c' || lowerKey == 'v')) { - // On FF the key press (not key down) event gets fired for copy/paste. - // Let it fall through for the default browser behavior. - return; - } - - if (e.altKey && this.altSendsWhat == 'browser-key' && e.charCode == 0) { - // If we got here because we were expecting the browser to handle an - // alt sequence but it didn't do it, then we might be on an OS without - // an enabled IME system. In that case we fall back to xterm-like - // behavior. - // - // This happens here only as a fallback. Typically these platforms should - // set altSendsWhat to either 'escape' or '8-bit'. - var ch = String.fromCharCode(e.keyCode); - if (!e.shiftKey) - ch = ch.toLowerCase(); - code = ch.charCodeAt(0) + 128; - - } else if (e.charCode >= 32) { - ch = e.charCode; - } - - if (ch) - this.terminal.onVTKeystroke(String.fromCharCode(ch)); - - e.preventDefault(); - e.stopPropagation(); -}; - -/** - * Prevent default handling for non-ctrl-shifted event. - * - * When combined with Chrome permission 'app.window.fullscreen.overrideEsc', - * and called for both key down and key up events, - * the ESC key remains usable within fullscreen Chrome app windows. - */ -hterm.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_ = function(e) { - if (!window.chrome || !window.chrome.app || !window.chrome.app.window) - return; - if (!e.ctrlKey || !e.shiftKey) - e.preventDefault(); -}; - -hterm.Keyboard.prototype.onFocusOut_ = function(e) { - this.altKeyPressed = 0; -}; - -hterm.Keyboard.prototype.onKeyUp_ = function(e) { - if (e.keyCode == 18) - this.altKeyPressed = this.altKeyPressed & ~(1 << (e.location - 1)); - - if (e.keyCode == 27) - this.preventChromeAppNonCtrlShiftDefault_(e); -}; - -/** - * Handle onKeyDown events. - */ -hterm.Keyboard.prototype.onKeyDown_ = function(e) { - if (e.keyCode == 18) - this.altKeyPressed = this.altKeyPressed | (1 << (e.location - 1)); - - if (e.keyCode == 27) - this.preventChromeAppNonCtrlShiftDefault_(e); - - var keyDef = this.keyMap.keyDefs[e.keyCode]; - if (!keyDef) { - console.warn('No definition for keyCode: ' + e.keyCode); - return; - } - - // The type of action we're going to use. - var resolvedActionType = null; - - var self = this; - function getAction(name) { - // Get the key action for the given action name. If the action is a - // function, dispatch it. If the action defers to the normal action, - // resolve that instead. - - resolvedActionType = name; - - var action = keyDef[name]; - if (typeof action == 'function') - action = action.apply(self.keyMap, [e, keyDef]); - - if (action === DEFAULT && name != 'normal') - action = getAction('normal'); - - return action; - } - - // Note that we use the triple-equals ('===') operator to test equality for - // these constants, in order to distinguish usage of the constant from usage - // of a literal string that happens to contain the same bytes. - var CANCEL = hterm.Keyboard.KeyActions.CANCEL; - var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT; - var PASS = hterm.Keyboard.KeyActions.PASS; - var STRIP = hterm.Keyboard.KeyActions.STRIP; - - var control = e.ctrlKey; - var alt = this.altIsMeta ? false : e.altKey; - var meta = this.altIsMeta ? (e.altKey || e.metaKey) : e.metaKey; - - // In the key-map, we surround the keyCap for non-printables in "[...]" - var isPrintable = !(/^\[\w+\]$/.test(keyDef.keyCap)); - - switch (this.altGrMode) { - case 'ctrl-alt': - if (isPrintable && control && alt) { - // ctrl-alt-printable means altGr. We clear out the control and - // alt modifiers and wait to see the charCode in the keydown event. - control = false; - alt = false; - } - break; - - case 'right-alt': - if (isPrintable && (this.terminal.keyboard.altKeyPressed & 2)) { - control = false; - alt = false; - } - break; - - case 'left-alt': - if (isPrintable && (this.terminal.keyboard.altKeyPressed & 1)) { - control = false; - alt = false; - } - break; - } - - var action; - - if (control) { - action = getAction('control'); - } else if (alt) { - action = getAction('alt'); - } else if (meta) { - action = getAction('meta'); - } else { - action = getAction('normal'); - } - - // If e.maskShiftKey was set (during getAction) it means the shift key is - // already accounted for in the action, and we should not act on it any - // further. This is currently only used for Ctrl-Shift-Tab, which should send - // "CSI Z", not "CSI 1 ; 2 Z". - var shift = !e.maskShiftKey && e.shiftKey; - - var keyDown = { - keyCode: e.keyCode, - shift: e.shiftKey, // not `var shift` from above. - ctrl: control, - alt: alt, - meta: meta - }; - - var binding = this.bindings.getBinding(keyDown); - - if (binding) { - // Clear out the modifier bits so we don't try to munge the sequence - // further. - shift = control = alt = meta = false; - resolvedActionType = 'normal'; - action = binding.action; - - if (typeof action == 'function') - action = action.call(this, this.terminal, keyDown); - } - - if (alt && this.altSendsWhat == 'browser-key' && action == DEFAULT) { - // When altSendsWhat is 'browser-key', we wait for the keypress event. - // In keypress, the browser should have set the event.charCode to the - // appropriate character. - // TODO(rginda): Character compositions will need some black magic. - action = PASS; - } - - if (action === PASS || (action === DEFAULT && !(control || alt || meta))) { - // If this key is supposed to be handled by the browser, or it is an - // unmodified key with the default action, then exit this event handler. - // If it's an unmodified key, it'll be handled in onKeyPress where we - // can tell for sure which ASCII code to insert. - // - // This block needs to come before the STRIP test, otherwise we'll strip - // the modifier and think it's ok to let the browser handle the keypress. - // The browser won't know we're trying to ignore the modifiers and might - // perform some default action. - return; - } - - if (action === STRIP) { - alt = control = false; - action = keyDef.normal; - if (typeof action == 'function') - action = action.apply(this.keyMap, [e, keyDef]); - - if (action == DEFAULT && keyDef.keyCap.length == 2) - action = keyDef.keyCap.substr((shift ? 1 : 0), 1); - } - - e.preventDefault(); - e.stopPropagation(); - - if (action === CANCEL) - return; - - if (action !== DEFAULT && typeof action != 'string') { - console.warn('Invalid action: ' + JSON.stringify(action)); - return; - } - - // Strip the modifier that is associated with the action, since we assume that - // modifier has already been accounted for in the action. - if (resolvedActionType == 'control') { - control = false; - } else if (resolvedActionType == 'alt') { - alt = false; - } else if (resolvedActionType == 'meta') { - meta = false; - } - - if (action.substr(0, 2) == '\x1b[' && (alt || control || shift)) { - // The action is an escape sequence that and it was triggered in the - // presence of a keyboard modifier, we may need to alter the action to - // include the modifier before sending it. - - var mod; - - if (shift && !(alt || control)) { - mod = ';2'; - } else if (alt && !(shift || control)) { - mod = ';3'; - } else if (shift && alt && !control) { - mod = ';4'; - } else if (control && !(shift || alt)) { - mod = ';5'; - } else if (shift && control && !alt) { - mod = ';6'; - } else if (alt && control && !shift) { - mod = ';7'; - } else if (shift && alt && control) { - mod = ';8'; - } - - if (action.length == 3) { - // Some of the CSI sequences have zero parameters unless modified. - action = '\x1b[1' + mod + action.substr(2, 1); - } else { - // Others always have at least one parameter. - action = action.substr(0, action.length - 1) + mod + - action.substr(action.length - 1); - } - - } else { - if (action === DEFAULT) { - action = keyDef.keyCap.substr((shift ? 1 : 0), 1); - - if (control) { - var unshifted = keyDef.keyCap.substr(0, 1); - var code = unshifted.charCodeAt(0); - if (code >= 64 && code <= 95) { - action = String.fromCharCode(code - 64); - } - } - } - - if (alt && this.altSendsWhat == '8-bit' && action.length == 1) { - var code = action.charCodeAt(0) + 128; - action = String.fromCharCode(code); - } - - // We respect alt/metaSendsEscape even if the keymap action was a literal - // string. Otherwise, every overridden alt/meta action would have to - // check alt/metaSendsEscape. - if ((alt && this.altSendsWhat == 'escape') || - (meta && this.metaSendsEscape)) { - action = '\x1b' + action; - } - } - - this.terminal.onVTKeystroke(action); -}; -// SOURCE FILE: hterm/js/hterm_keyboard_bindings.js -// Copyright (c) 2015 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * A mapping from hterm.Keyboard.KeyPattern to an action. - * - * TODO(rginda): For now this bindings code is only used for user overrides. - * hterm.Keyboard.KeyMap still handles all of the built-in key mappings. - * It'd be nice if we migrated that over to be hterm.Keyboard.Bindings based. - */ -hterm.Keyboard.Bindings = function() { - this.bindings_ = {}; -}; - -/** - * Remove all bindings. - */ -hterm.Keyboard.Bindings.prototype.clear = function () { - this.bindings_ = {}; -}; - -/** - * Add a new binding. - * - * Internal API that assumes parsed objects as inputs. - * See the public addBinding for more details. - * - * @param {hterm.Keyboard.KeyPattern} keyPattern - * @param {string|function|hterm.Keyboard.KeyAction} action - */ -hterm.Keyboard.Bindings.prototype.addBinding_ = function(keyPattern, action) { - var binding = null; - var list = this.bindings_[keyPattern.keyCode]; - if (list) { - for (var i = 0; i < list.length; i++) { - if (list[i].keyPattern.matchKeyPattern(keyPattern)) { - binding = list[i]; - break; - } - } - } - - if (binding) { - binding.action = action; - } else { - binding = {keyPattern: keyPattern, action: action}; - - if (!list) { - this.bindings_[keyPattern.keyCode] = [binding]; - } else { - this.bindings_[keyPattern.keyCode].push(binding); - - list.sort(function(a, b) { - return hterm.Keyboard.KeyPattern.sortCompare( - a.keyPattern, b.keyPattern); - }); - } - } -}; - -/** - * Add a new binding. - * - * If a binding for the keyPattern already exists it will be overridden. - * - * More specific keyPatterns take precedence over those with wildcards. Given - * bindings for "Ctrl-A" and "Ctrl-*-A", and a "Ctrl-A" keydown, the "Ctrl-A" - * binding will match even if "Ctrl-*-A" was created last. - * - * If action is a string, it will be passed through hterm.Parser.parseKeyAction. - * - * For example: - * // Will replace Ctrl-P keystrokes with the string "hiya!". - * addBinding('Ctrl-P', "'hiya!'"); - * // Will cancel the keystroke entirely (make it do nothing). - * addBinding('Alt-D', hterm.Keyboard.KeyActions.CANCEL); - * // Will execute the code and return the action. - * addBinding('Ctrl-T', function() { - * console.log('Got a T!'); - * return hterm.Keyboard.KeyActions.PASS; - * }); - * - * @param {string|hterm.Keyboard.KeyPattern} keyPattern - * @param {string|function|hterm.Keyboard.KeyAction} action - */ -hterm.Keyboard.Bindings.prototype.addBinding = function(key, action) { - // If we're given a hterm.Keyboard.KeyPattern object, pass it down. - if (typeof key != 'string') { - this.addBinding_(key, action); - return; - } - - // Here we treat key as a string. - var p = new hterm.Parser(); - - p.reset(key); - var sequence; - - try { - sequence = p.parseKeySequence(); - } catch (ex) { - console.error(ex); - return; - } - - if (!p.isComplete()) { - console.error(p.error('Expected end of sequence: ' + sequence)); - return; - } - - // If action is a string, parse it. Otherwise assume it's callable. - if (typeof action == 'string') { - p.reset(action); - try { - action = p.parseKeyAction(); - } catch (ex) { - console.error(ex); - return; - } - } - - if (!p.isComplete()) { - console.error(p.error('Expected end of sequence: ' + sequence)); - return; - } - - this.addBinding_(new hterm.Keyboard.KeyPattern(sequence), action); -}; - -/** - * Add multiple bindings at a time using a map of {string: string, ...} - * - * This uses hterm.Parser to parse the maps key into KeyPatterns, and the - * map values into {string|function|KeyAction}. - * - * For example: - * { - * // Will replace Ctrl-P keystrokes with the string "hiya!". - * 'Ctrl-P': "'hiya!'", - * // Will cancel the keystroke entirely (make it do nothing). - * 'Alt-D': hterm.Keyboard.KeyActions.CANCEL, - * } - * - * @param {Object} map - */ -hterm.Keyboard.Bindings.prototype.addBindings = function(map) { - for (var key in map) { - this.addBinding(key, map[key]); - } -}; - -/** - * Return the binding that is the best match for the given keyDown record, - * or null if there is no match. - * - * @param {Object} keyDown An object with a keyCode property and zero or - * more boolean properties representing key modifiers. These property names - * must match those defined in hterm.Keyboard.KeyPattern.modifiers. - */ -hterm.Keyboard.Bindings.prototype.getBinding = function(keyDown) { - var list = this.bindings_[keyDown.keyCode]; - if (!list) - return null; - - for (var i = 0; i < list.length; i++) { - var binding = list[i]; - if (binding.keyPattern.matchKeyDown(keyDown)) - return binding; - } - - return null; -}; -// SOURCE FILE: hterm/js/hterm_keyboard_keymap.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('hterm.Keyboard.KeyActions'); - -/** - * The default key map for hterm. - * - * Contains a mapping of keyCodes to keyDefs (aka key definitions). The key - * definition tells the hterm.Keyboard class how to handle keycodes. - * - * This should work for most cases, as the printable characters get handled - * in the keypress event. In that case, even if the keycap is wrong in the - * key map, the correct character should be sent. - * - * Different layouts, such as Dvorak should work with this keymap, as those - * layouts typically move keycodes around on the keyboard without disturbing - * the actual keycaps. - * - * There may be issues with control keys on non-US keyboards or with keyboards - * that very significantly from the expectations here, in which case we may - * have to invent new key maps. - * - * The sequences defined in this key map come from [XTERM] as referenced in - * vt.js, starting with the section titled "Alt and Meta Keys". - */ -hterm.Keyboard.KeyMap = function(keyboard) { - this.keyboard = keyboard; - this.keyDefs = {}; - this.reset(); -}; - -/** - * Add a single key definition. - * - * The definition is a hash containing the following keys: 'keyCap', 'normal', - * 'control', and 'alt'. - * - * - keyCap is a string identifying the key. For printable - * keys, the key cap should be exactly two characters, starting with the - * unshifted version. For example, 'aA', 'bB', '1!' and '=+'. For - * non-printable the key cap should be surrounded in square braces, as in - * '[INS]', '[LEFT]'. By convention, non-printable keycaps are in uppercase - * but this is not a strict requirement. - * - * - Normal is the action that should be performed when they key is pressed - * in the absence of any modifier. See below for the supported actions. - * - * - Control is the action that should be performed when they key is pressed - * along with the control modifier. See below for the supported actions. - * - * - Alt is the action that should be performed when they key is pressed - * along with the alt modifier. See below for the supported actions. - * - * - Meta is the action that should be performed when they key is pressed - * along with the meta modifier. See below for the supported actions. - * - * Actions can be one of the hterm.Keyboard.KeyActions as documented below, - * a literal string, or an array. If the action is a literal string then - * the string is sent directly to the host. If the action is an array it - * is taken to be an escape sequence that may be altered by modifier keys. - * The second-to-last element of the array will be overwritten with the - * state of the modifier keys, as specified in the final table of "PC-Style - * Function Keys" from [XTERM]. - */ -hterm.Keyboard.KeyMap.prototype.addKeyDef = function(keyCode, def) { - if (keyCode in this.keyDefs) - console.warn('Duplicate keyCode: ' + keyCode); - - this.keyDefs[keyCode] = def; -}; - -/** - * Add multiple key definitions in a single call. - * - * This function takes the key definitions as variable argument list. Each - * argument is the key definition specified as an array. - * - * (If the function took everything as one big hash we couldn't detect - * duplicates, and there would be a lot more typing involved.) - * - * Each key definition should have 6 elements: (keyCode, keyCap, normal action, - * control action, alt action and meta action). See KeyMap.addKeyDef for the - * meaning of these elements. - */ -hterm.Keyboard.KeyMap.prototype.addKeyDefs = function(var_args) { - for (var i = 0; i < arguments.length; i++) { - this.addKeyDef(arguments[i][0], - { keyCap: arguments[i][1], - normal: arguments[i][2], - control: arguments[i][3], - alt: arguments[i][4], - meta: arguments[i][5] - }); - } -}; - -/** - * Set up the default state for this keymap. - */ -hterm.Keyboard.KeyMap.prototype.reset = function() { - this.keyDefs = {}; - - var self = this; - - // This function is used by the "macro" functions below. It makes it - // possible to use the call() macro as an argument to any other macro. - function resolve(action, e, k) { - if (typeof action == 'function') - return action.apply(self, [e, k]); - - return action; - } - - // If not application keypad a, else b. The keys that care about - // application keypad ignore it when the key is modified. - function ak(a, b) { - return function(e, k) { - var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey || - !self.keyboard.applicationKeypad) ? a : b; - return resolve(action, e, k); - }; - } - - // If mod or not application cursor a, else b. The keys that care about - // application cursor ignore it when the key is modified. - function ac(a, b) { - return function(e, k) { - var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey || - !self.keyboard.applicationCursor) ? a : b; - return resolve(action, e, k); - }; - } - - // If not backspace-sends-backspace keypad a, else b. - function bs(a, b) { - return function(e, k) { - var action = !self.keyboard.backspaceSendsBackspace ? a : b; - return resolve(action, e, k); - }; - } - - // If not e.shiftKey a, else b. - function sh(a, b) { - return function(e, k) { - var action = !e.shiftKey ? a : b; - e.maskShiftKey = true; - return resolve(action, e, k); - }; - } - - // If not e.altKey a, else b. - function alt(a, b) { - return function(e, k) { - var action = !e.altKey ? a : b; - return resolve(action, e, k); - }; - } - - // If no modifiers a, else b. - function mod(a, b) { - return function(e, k) { - var action = !(e.shiftKey || e.ctrlKey || e.altKey || e.metaKey) ? a : b; - return resolve(action, e, k); - }; - } - - // Compute a control character for a given character. - function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) } - - // Call a method on the keymap instance. - function c(m) { return function (e, k) { return this[m](e, k) } } - - // Ignore if not trapping media keys. - function med(fn) { - return function(e, k) { - if (!self.keyboard.mediaKeysAreFKeys) { - // Block Back, Forward, and Reload keys to avoid navigating away from - // the current page. - return (e.keyCode == 166 || e.keyCode == 167 || e.keyCode == 168) ? - hterm.Keyboard.KeyActions.CANCEL : - hterm.Keyboard.KeyActions.PASS; - } - return resolve(fn, e, k); - }; - } - - var ESC = '\x1b'; - var CSI = '\x1b['; - var SS3 = '\x1bO'; - - var CANCEL = hterm.Keyboard.KeyActions.CANCEL; - var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT; - var PASS = hterm.Keyboard.KeyActions.PASS; - var STRIP = hterm.Keyboard.KeyActions.STRIP; - - this.addKeyDefs( - // These fields are: [keycode, keycap, normal, control, alt, meta] - - // The browser sends the keycode 0 for some keys. We'll just assume it's - // going to do the right thing by default for those keys. - [0, '[UNKNOWN]', PASS, PASS, PASS, PASS], - - // First row. - [27, '[ESC]', ESC, DEFAULT, DEFAULT, DEFAULT], - [112, '[F1]', mod(SS3 + 'P', CSI + 'P'), DEFAULT, CSI + "23~", DEFAULT], - [113, '[F2]', mod(SS3 + 'Q', CSI + 'Q'), DEFAULT, CSI + "24~", DEFAULT], - [114, '[F3]', mod(SS3 + 'R', CSI + 'R'), DEFAULT, CSI + "25~", DEFAULT], - [115, '[F4]', mod(SS3 + 'S', CSI + 'S'), DEFAULT, CSI + "26~", DEFAULT], - [116, '[F5]', CSI + '15~', DEFAULT, CSI + "28~", DEFAULT], - [117, '[F6]', CSI + '17~', DEFAULT, CSI + "29~", DEFAULT], - [118, '[F7]', CSI + '18~', DEFAULT, CSI + "31~", DEFAULT], - [119, '[F8]', CSI + '19~', DEFAULT, CSI + "32~", DEFAULT], - [120, '[F9]', CSI + '20~', DEFAULT, CSI + "33~", DEFAULT], - [121, '[F10]', CSI + '21~', DEFAULT, CSI + "34~", DEFAULT], - [122, '[F11]', CSI + '23~', DEFAULT, CSI + "42~", DEFAULT], - [123, '[F12]', CSI + '24~', DEFAULT, CSI + "43~", DEFAULT], - - // Second row. - [192, '`~', DEFAULT, sh(ctl('@'), ctl('^')), DEFAULT, PASS], - [49, '1!', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [50, '2@', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [51, '3#', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [52, '4$', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [53, '5%', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [54, '6^', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [55, '7&', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [56, '8*', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [57, '9(', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')], - [48, '0)', DEFAULT, c('onPlusMinusZero_'),c('onAltNum_'),c('onPlusMinusZero_')], - [189, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - [187, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - // Firefox -_ and =+ - [173, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - [61, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - // Firefox Italian +* - [171, '+*', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - - [8, '[BKSP]', bs('\x7f', '\b'), bs('\b', '\x7f'), DEFAULT, DEFAULT], - - // Third row. - [9, '[TAB]', sh('\t', CSI + 'Z'), STRIP, PASS, DEFAULT], - [81, 'qQ', DEFAULT, ctl('Q'), DEFAULT, DEFAULT], - [87, 'wW', DEFAULT, ctl('W'), DEFAULT, DEFAULT], - [69, 'eE', DEFAULT, ctl('E'), DEFAULT, DEFAULT], - [82, 'rR', DEFAULT, ctl('R'), DEFAULT, DEFAULT], - [84, 'tT', DEFAULT, ctl('T'), DEFAULT, DEFAULT], - [89, 'yY', DEFAULT, ctl('Y'), DEFAULT, DEFAULT], - [85, 'uU', DEFAULT, ctl('U'), DEFAULT, DEFAULT], - [73, 'iI', DEFAULT, ctl('I'), DEFAULT, DEFAULT], - [79, 'oO', DEFAULT, ctl('O'), DEFAULT, DEFAULT], - [80, 'pP', DEFAULT, ctl('P'), DEFAULT, DEFAULT], - [219, '[{', DEFAULT, ctl('['), DEFAULT, DEFAULT], - [221, ']}', DEFAULT, ctl(']'), DEFAULT, DEFAULT], - [220, '\\|', DEFAULT, ctl('\\'), DEFAULT, DEFAULT], - - // Fourth row. (We let Ctrl-Shift-J pass for Chrome DevTools.) - [20, '[CAPS]', PASS, PASS, PASS, DEFAULT], - [65, 'aA', DEFAULT, ctl('A'), DEFAULT, DEFAULT], - [83, 'sS', DEFAULT, ctl('S'), DEFAULT, DEFAULT], - [68, 'dD', DEFAULT, ctl('D'), DEFAULT, DEFAULT], - [70, 'fF', DEFAULT, ctl('F'), DEFAULT, DEFAULT], - [71, 'gG', DEFAULT, ctl('G'), DEFAULT, DEFAULT], - [72, 'hH', DEFAULT, ctl('H'), DEFAULT, DEFAULT], - [74, 'jJ', DEFAULT, sh(ctl('J'), PASS), DEFAULT, DEFAULT], - [75, 'kK', DEFAULT, sh(ctl('K'), c('onClear_')), DEFAULT, DEFAULT], - [76, 'lL', DEFAULT, sh(ctl('L'), PASS), DEFAULT, DEFAULT], - [186, ';:', DEFAULT, STRIP, DEFAULT, DEFAULT], - [222, '\'"', DEFAULT, STRIP, DEFAULT, DEFAULT], - [13, '[ENTER]', '\r', CANCEL, CANCEL, DEFAULT], - - // Fifth row. This includes the copy/paste shortcuts. On some - // platforms it's Ctrl-C/V, on others it's Meta-C/V. We assume either - // Ctrl-C/Meta-C should pass to the browser when there is a selection, - // and Ctrl-Shift-V/Meta-*-V should always pass to the browser (since - // these seem to be recognized as paste too). - [16, '[SHIFT]', PASS, PASS, PASS, DEFAULT], - [90, 'zZ', DEFAULT, ctl('Z'), DEFAULT, DEFAULT], - [88, 'xX', DEFAULT, ctl('X'), DEFAULT, DEFAULT], - [67, 'cC', DEFAULT, c('onCtrlC_'), DEFAULT, c('onMetaC_')], - [86, 'vV', DEFAULT, c('onCtrlV_'), DEFAULT, c('onMetaV_')], - [66, 'bB', DEFAULT, sh(ctl('B'), PASS), DEFAULT, sh(DEFAULT, PASS)], - [78, 'nN', DEFAULT, c('onCtrlN_'), DEFAULT, c('onMetaN_')], - [77, 'mM', DEFAULT, ctl('M'), DEFAULT, DEFAULT], - [188, ',<', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT], - [190, '.>', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT], - [191, '/?', DEFAULT, sh(ctl('_'), ctl('?')), DEFAULT, DEFAULT], - - // Sixth and final row. - [17, '[CTRL]', PASS, PASS, PASS, PASS], - [18, '[ALT]', PASS, PASS, PASS, PASS], - [91, '[LAPL]', PASS, PASS, PASS, PASS], - [32, ' ', DEFAULT, ctl('@'), DEFAULT, DEFAULT], - [92, '[RAPL]', PASS, PASS, PASS, PASS], - [93, '[RMENU]', PASS, PASS, PASS, PASS], - - // These things. - [42, '[PRTSCR]', PASS, PASS, PASS, PASS], - [145, '[SCRLK]', PASS, PASS, PASS, PASS], - [19, '[BREAK]', PASS, PASS, PASS, PASS], - - // The block of six keys above the arrows. - [45, '[INSERT]', c('onKeyInsert_'), DEFAULT, DEFAULT, DEFAULT], - [36, '[HOME]', c('onKeyHome_'), DEFAULT, DEFAULT, DEFAULT], - [33, '[PGUP]', c('onKeyPageUp_'), DEFAULT, DEFAULT, DEFAULT], - [46, '[DEL]', c('onKeyDel_'), DEFAULT, DEFAULT, DEFAULT], - [35, '[END]', c('onKeyEnd_'), DEFAULT, DEFAULT, DEFAULT], - [34, '[PGDOWN]', c('onKeyPageDown_'), DEFAULT, DEFAULT, DEFAULT], - - // Arrow keys. When unmodified they respect the application cursor state, - // otherwise they always send the CSI codes. - [38, '[UP]', c('onKeyArrowUp_'), DEFAULT, DEFAULT, DEFAULT], - [40, '[DOWN]', c('onKeyArrowDown_'), DEFAULT, DEFAULT, DEFAULT], - [39, '[RIGHT]', ac(CSI + 'C', SS3 + 'C'), DEFAULT, DEFAULT, DEFAULT], - [37, '[LEFT]', ac(CSI + 'D', SS3 + 'D'), DEFAULT, DEFAULT, DEFAULT], - - [144, '[NUMLOCK]', PASS, PASS, PASS, PASS], - - // With numlock off, the keypad generates the same key codes as the arrows - // and 'block of six' for some keys, and null key codes for the rest. - - // Keypad with numlock on generates unique key codes... - [96, '[KP0]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [97, '[KP1]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [98, '[KP2]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [99, '[KP3]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [100, '[KP4]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [101, '[KP5]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [102, '[KP6]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [103, '[KP7]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [104, '[KP8]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [105, '[KP9]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [107, '[KP+]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - [109, '[KP-]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')], - [106, '[KP*]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [111, '[KP/]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - [110, '[KP.]', DEFAULT, DEFAULT, DEFAULT, DEFAULT], - - // Chrome OS keyboard top row. - [166, '[BACK]', med(mod(SS3+'P', CSI+'P')), DEFAULT, CSI+"23~", DEFAULT], - [167, '[FWD]', med(mod(SS3+'Q', CSI+'Q')), DEFAULT, CSI+"24~", DEFAULT], - [168, '[RELOAD]', med(mod(SS3+'R', CSI+'R')), DEFAULT, CSI+"25~", DEFAULT], - [183, '[FSCR]', med(mod(SS3+'S', CSI+'S')), DEFAULT, CSI+"26~", DEFAULT], - [182, '[WINS]', med(CSI + '15~'), DEFAULT, CSI+"28~", DEFAULT], - [216, '[BRIT-]', med(CSI + '17~'), DEFAULT, CSI+"29~", DEFAULT], - [217, '[BRIT+]', med(CSI + '18~'), DEFAULT, CSI+"31~", DEFAULT] - - // 173 [MUTE], 174 [VOL-] and 175 [VOL+] are trapped by the Chrome OS - // window manager, so we'll never see them. Note that 173 is also - // Firefox's -_ keycode. - ); -}; - -/** - * Either allow the paste or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyInsert_ = function(e) { - if (this.keyboard.shiftInsertPaste && e.shiftKey) - return hterm.Keyboard.KeyActions.PASS; - - return '\x1b[2~'; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyHome_ = function(e) { - if (!this.keyboard.homeKeysScroll ^ e.shiftKey) { - if ((e.altey || e.ctrlKey || e.shiftKey) || - !this.keyboard.applicationCursor) { - return '\x1b[H'; - } - - return '\x1bOH'; - } - - this.keyboard.terminal.scrollHome(); - return hterm.Keyboard.KeyActions.CANCEL; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyEnd_ = function(e) { - if (!this.keyboard.homeKeysScroll ^ e.shiftKey) { - if ((e.altKey || e.ctrlKey || e.shiftKey) || - !this.keyboard.applicationCursor) { - return '\x1b[F'; - } - - return '\x1bOF'; - } - - this.keyboard.terminal.scrollEnd(); - return hterm.Keyboard.KeyActions.CANCEL; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyPageUp_ = function(e) { - if (!this.keyboard.pageKeysScroll ^ e.shiftKey) - return '\x1b[5~'; - - this.keyboard.terminal.scrollPageUp(); - return hterm.Keyboard.KeyActions.CANCEL; -}; - -/** - * Either send a true DEL, or sub in meta-backspace. - * - * On Chrome OS, if we know the alt key is down, but we get a DEL event that - * claims that the alt key is not pressed, we know the DEL was a synthetic - * one from a user that hit alt-backspace. Based on a user pref, we can sub - * in meta-backspace in this case. - */ -hterm.Keyboard.KeyMap.prototype.onKeyDel_ = function(e) { - if (this.keyboard.altBackspaceIsMetaBackspace && - this.keyboard.altKeyPressed && !e.altKey) - return '\x1b\x7f'; - return '\x1b[3~'; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyPageDown_ = function(e) { - if (!this.keyboard.pageKeysScroll ^ e.shiftKey) - return '\x1b[6~'; - - this.keyboard.terminal.scrollPageDown(); - return hterm.Keyboard.KeyActions.CANCEL; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyArrowUp_ = function(e) { - if (!this.keyboard.applicationCursor && e.shiftKey) { - this.keyboard.terminal.scrollLineUp(); - return hterm.Keyboard.KeyActions.CANCEL; - } - - return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey || - !this.keyboard.applicationCursor) ? '\x1b[A' : '\x1bOA'; -}; - -/** - * Either scroll the scrollback buffer or send a key sequence. - */ -hterm.Keyboard.KeyMap.prototype.onKeyArrowDown_ = function(e) { - if (!this.keyboard.applicationCursor && e.shiftKey) { - this.keyboard.terminal.scrollLineDown(); - return hterm.Keyboard.KeyActions.CANCEL; - } - - return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey || - !this.keyboard.applicationCursor) ? '\x1b[B' : '\x1bOB'; -}; - -/** - * Clear the primary/alternate screens and the scrollback buffer. - */ -hterm.Keyboard.KeyMap.prototype.onClear_ = function(e, keyDef) { - this.keyboard.terminal.wipeContents(); - return hterm.Keyboard.KeyActions.CANCEL; -}; - -/** - * Either pass Ctrl-1..9 to the browser or send them to the host. - * - * Note that Ctrl-1 and Ctrl-9 don't actually have special sequences mapped - * to them in xterm or gnome-terminal. The range is really Ctrl-2..8, but - * we handle 1..9 since Chrome treats the whole range special. - */ -hterm.Keyboard.KeyMap.prototype.onCtrlNum_ = function(e, keyDef) { - // Compute a control character for a given character. - function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) } - - if (this.keyboard.terminal.passCtrlNumber && !e.shiftKey) - return hterm.Keyboard.KeyActions.PASS; - - switch (keyDef.keyCap.substr(0, 1)) { - case '1': return '1'; - case '2': return ctl('@'); - case '3': return ctl('['); - case '4': return ctl('\\'); - case '5': return ctl(']'); - case '6': return ctl('^'); - case '7': return ctl('_'); - case '8': return '\x7f'; - case '9': return '9'; - } -}; - -/** - * Either pass Alt-1..9 to the browser or send them to the host. - */ -hterm.Keyboard.KeyMap.prototype.onAltNum_ = function(e, keyDef) { - if (this.keyboard.terminal.passAltNumber && !e.shiftKey) - return hterm.Keyboard.KeyActions.PASS; - - return hterm.Keyboard.KeyActions.DEFAULT; -}; - -/** - * Either pass Meta-1..9 to the browser or send them to the host. - */ -hterm.Keyboard.KeyMap.prototype.onMetaNum_ = function(e, keyDef) { - if (this.keyboard.terminal.passMetaNumber && !e.shiftKey) - return hterm.Keyboard.KeyActions.PASS; - - return hterm.Keyboard.KeyActions.DEFAULT; -}; - -/** - * Either send a ^C or interpret the keystroke as a copy command. - */ -hterm.Keyboard.KeyMap.prototype.onCtrlC_ = function(e, keyDef) { - var selection = this.keyboard.terminal.getDocument().getSelection(); - - if (!selection.isCollapsed) { - if (this.keyboard.ctrlCCopy && !e.shiftKey) { - // Ctrl-C should copy if there is a selection, send ^C otherwise. - // Perform the copy by letting the browser handle Ctrl-C. On most - // browsers, this is the *only* way to place text on the clipboard from - // the 'drive-by' web. - if (this.keyboard.terminal.clearSelectionAfterCopy) { - setTimeout(selection.collapseToEnd.bind(selection), 50); - } - return hterm.Keyboard.KeyActions.PASS; - } - - if (!this.keyboard.ctrlCCopy && e.shiftKey) { - // Ctrl-Shift-C should copy if there is a selection, send ^C otherwise. - // Perform the copy manually. This only works in situations where - // document.execCommand('copy') is allowed. - if (this.keyboard.terminal.clearSelectionAfterCopy) { - setTimeout(selection.collapseToEnd.bind(selection), 50); - } - this.keyboard.terminal.copySelectionToClipboard(); - return hterm.Keyboard.KeyActions.CANCEL; - } - } - - return '\x03'; -}; - -/** - * Either send a ^N or open a new window to the same location. - */ -hterm.Keyboard.KeyMap.prototype.onCtrlN_ = function(e, keyDef) { - if (e.shiftKey) { - window.open(document.location.href, '', - 'chrome=no,close=yes,resize=yes,scrollbars=yes,' + - 'minimizable=yes,width=' + window.innerWidth + - ',height=' + window.innerHeight); - return hterm.Keyboard.KeyActions.CANCEL; - } - - return '\x0e'; -}; - -/** - * Either send a ^V or issue a paste command. - * - * The default behavior is to paste if the user presses Ctrl-Shift-V, and send - * a ^V if the user presses Ctrl-V. This can be flipped with the - * 'ctrl-v-paste' preference. - * - */ -hterm.Keyboard.KeyMap.prototype.onCtrlV_ = function(e, keyDef) { - if ((!e.shiftKey && this.keyboard.ctrlVPaste) || - (e.shiftKey && !this.keyboard.ctrlVPaste)) { - // We try to do the pasting ourselves as not all browsers/OSs bind Ctrl-V to - // pasting. Notably, on macOS, Ctrl-V/Ctrl-Shift-V do nothing. - // However, this might run into web restrictions, so if it fails, we still - // fallback to the letting the native behavior (hopefully) save us. - if (this.keyboard.terminal.paste()) - return hterm.Keyboard.KeyActions.CANCEL; - else - return hterm.Keyboard.KeyActions.PASS; - } - - return '\x16'; -}; - -/** - * Either the default action or open a new window to the same location. - */ -hterm.Keyboard.KeyMap.prototype.onMetaN_ = function(e, keyDef) { - if (e.shiftKey) { - window.open(document.location.href, '', - 'chrome=no,close=yes,resize=yes,scrollbars=yes,' + - 'minimizable=yes,width=' + window.outerWidth + - ',height=' + window.outerHeight); - return hterm.Keyboard.KeyActions.CANCEL; - } - - return hterm.Keyboard.KeyActions.DEFAULT; -}; - -/** - * Either send a Meta-C or allow the browser to interpret the keystroke as a - * copy command. - * - * If there is no selection, or if the user presses Meta-Shift-C, then we'll - * transmit an '\x1b' (if metaSendsEscape is on) followed by 'c' or 'C'. - * - * If there is a selection, we defer to the browser. In this case we clear out - * the selection so the user knows we heard them, and also to give them a - * chance to send a Meta-C by just hitting the key again. - */ -hterm.Keyboard.KeyMap.prototype.onMetaC_ = function(e, keyDef) { - var document = this.keyboard.terminal.getDocument(); - if (e.shiftKey || document.getSelection().isCollapsed) { - // If the shift key is being held, or there is no document selection, send - // a Meta-C. The keyboard code will add the ESC if metaSendsEscape is true, - // we just have to decide between 'c' and 'C'. - return keyDef.keyCap.substr(e.shiftKey ? 1 : 0, 1); - } - - // Otherwise let the browser handle it as a copy command. - if (this.keyboard.terminal.clearSelectionAfterCopy) { - setTimeout(function() { document.getSelection().collapseToEnd() }, 50); - } - return hterm.Keyboard.KeyActions.PASS; -}; - -/** - * Either PASS or DEFAULT Meta-V, depending on preference. - * - * Always PASS Meta-Shift-V to allow browser to interpret the keystroke as - * a paste command. - */ -hterm.Keyboard.KeyMap.prototype.onMetaV_ = function(e, keyDef) { - if (e.shiftKey) - return hterm.Keyboard.KeyActions.PASS; - - return this.keyboard.passMetaV ? - hterm.Keyboard.KeyActions.PASS : - hterm.Keyboard.KeyActions.DEFAULT; -}; - -/** - * Handle font zooming. - * - * The browser's built-in zoom has a bit of an issue at certain zoom levels. - * At some magnifications, the measured height of a row of text differs from - * the height that was explicitly set. - * - * We override the browser zoom keys to change the ScrollPort's font size to - * avoid the issue. - */ -hterm.Keyboard.KeyMap.prototype.onPlusMinusZero_ = function(e, keyDef) { - if (!(this.keyboard.ctrlPlusMinusZeroZoom ^ e.shiftKey)) { - // If ctrl-PMZ controls zoom and the shift key is pressed, or - // ctrl-shift-PMZ controls zoom and this shift key is not pressed, - // then we want to send the control code instead of affecting zoom. - if (keyDef.keyCap == '-_') - return '\x1f'; // ^_ - - // Only ^_ is valid, the other sequences have no meaning. - return hterm.Keyboard.KeyActions.CANCEL; - } - - if (this.keyboard.terminal.getZoomFactor() != 1) { - // If we're not at 1:1 zoom factor, let the Ctrl +/-/0 keys control the - // browser zoom, so it's easier to for the user to get back to 100%. - return hterm.Keyboard.KeyActions.PASS; - } - - var cap = keyDef.keyCap.substr(0, 1); - if (cap == '0') { - this.keyboard.terminal.setFontSize(0); - } else { - var size = this.keyboard.terminal.getFontSize(); - - if (cap == '-' || keyDef.keyCap == '[KP-]') { - size -= 1; - } else { - size += 1; - } - - this.keyboard.terminal.setFontSize(size); - } - - return hterm.Keyboard.KeyActions.CANCEL; -}; -// SOURCE FILE: hterm/js/hterm_keyboard_keypattern.js -// Copyright (c) 2015 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * A record of modifier bits and keycode used to define a key binding. - * - * The modifier names are enumerated in the static KeyPattern.modifiers - * property below. Each modifier can be true, false, or "*". True means - * the modifier key must be present, false means it must not, and "*" means - * it doesn't matter. - */ -hterm.Keyboard.KeyPattern = function(spec) { - this.wildcardCount = 0; - this.keyCode = spec.keyCode; - - hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) { - this[mod] = spec[mod] || false; - if (this[mod] == '*') - this.wildcardCount++; - }.bind(this)); -}; - -/** - * Valid modifier names. - */ -hterm.Keyboard.KeyPattern.modifiers = [ - 'shift', 'ctrl', 'alt', 'meta' -]; - -/** - * A compare callback for Array.prototype.sort(). - * - * The bindings code wants to be sure to search through the strictest key - * patterns first, so that loosely defined patterns have a lower priority than - * exact patterns. - * - * @param {hterm.Keyboard.KeyPattern} a - * @param {hterm.Keyboard.KeyPattern} b - */ -hterm.Keyboard.KeyPattern.sortCompare = function(a, b) { - if (a.wildcardCount < b.wildcardCount) - return -1; - - if (a.wildcardCount > b.wildcardCount) - return 1; - - return 0; -}; - -/** - * Private method used to match this key pattern against other key patterns - * or key down events. - * - * @param {Object} The object to match. - * @param {boolean} True if we should ignore wildcards. Useful when you want - * to perform and exact match against another key pattern. - */ -hterm.Keyboard.KeyPattern.prototype.match_ = function(obj, exactMatch) { - if (this.keyCode != obj.keyCode) - return false; - - var rv = true; - - hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) { - var modValue = (mod in obj) ? obj[mod] : false; - if (!rv || (!exactMatch && this[mod] == '*') || this[mod] == modValue) - return; - - rv = false; - }.bind(this)); - - return rv; -}; - -/** - * Return true if the given keyDown object is a match for this key pattern. - * - * @param {Object} keyDown An object with a keyCode property and zero or - * more boolean properties representing key modifiers. These property names - * must match those defined in hterm.Keyboard.KeyPattern.modifiers. - */ -hterm.Keyboard.KeyPattern.prototype.matchKeyDown = function(keyDown) { - return this.match_(keyDown, false); -}; - -/** - * Return true if the given hterm.Keyboard.KeyPattern is exactly the same as - * this one. - * - * @param {hterm.Keyboard.KeyPattern} - */ -hterm.Keyboard.KeyPattern.prototype.matchKeyPattern = function(keyPattern) { - return this.match_(keyPattern, true); -}; -// SOURCE FILE: hterm/js/hterm_options.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * @fileoverview This file implements the hterm.Options class, - * which stores current operating conditions for the terminal. This object is - * used instead of a series of parameters to allow saving/restoring of cursor - * conditions easily, and to provide an easy place for common configuration - * options. - * - * Original code by Cory Maccarrone. - */ - -/** - * Constructor for the hterm.Options class, optionally acting as a copy - * constructor. - * - * The defaults are as defined in http://www.vt100.net/docs/vt510-rm/DECSTR - * except that we enable autowrap (wraparound) by default since that seems to - * be what xterm does. - * - * @param {hterm.Options=} opt_copy Optional instance to copy. - * @constructor - */ -hterm.Options = function(opt_copy) { - // All attributes in this class are public to allow easy access by the - // terminal. - - this.wraparound = opt_copy ? opt_copy.wraparound : true; - this.reverseWraparound = opt_copy ? opt_copy.reverseWraparound : false; - this.originMode = opt_copy ? opt_copy.originMode : false; - this.autoCarriageReturn = opt_copy ? opt_copy.autoCarriageReturn : false; - this.cursorVisible = opt_copy ? opt_copy.cursorVisible : false; - this.cursorBlink = opt_copy ? opt_copy.cursorBlink : false; - this.insertMode = opt_copy ? opt_copy.insertMode : false; - this.reverseVideo = opt_copy ? opt_copy.reverseVideo : false; - this.bracketedPaste = opt_copy ? opt_copy.bracketedPaste : false; -}; -// SOURCE FILE: hterm/js/hterm_parser.js -// Copyright (c) 2015 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('hterm.Keyboard.KeyActions'); - -/** - * @constructor - * Parses the key definition syntax used for user keyboard customizations. - */ -hterm.Parser = function() { - /** - * @type {string} The source string. - */ - this.source = ''; - - /** - * @type {number} The current position. - */ - this.pos = 0; - - /** - * @type {string?} The character at the current position. - */ - this.ch = null; -}; - -hterm.Parser.prototype.error = function(message) { - return new Error('Parse error at ' + this.pos + ': ' + message); -}; - -hterm.Parser.prototype.isComplete = function() { - return this.pos == this.source.length; -}; - -hterm.Parser.prototype.reset = function(source, opt_pos) { - this.source = source; - this.pos = opt_pos || 0; - this.ch = source.substr(0, 1); -}; - -/** - * Parse a key sequence. - * - * A key sequence is zero or more of the key modifiers defined in - * hterm.Parser.identifiers.modifierKeys followed by a key code. Key - * codes can be an integer or an identifier from - * hterm.Parser.identifiers.keyCodes. Modifiers and keyCodes should be joined - * by the dash character. - * - * An asterisk "*" can be used to indicate that the unspecified modifiers - * are optional. - * - * For example: - * A: Matches only an unmodified "A" character. - * 65: Same as above. - * 0x41: Same as above. - * Ctrl-A: Matches only Ctrl-A. - * Ctrl-65: Same as above. - * Ctrl-0x41: Same as above. - * Ctrl-Shift-A: Matches only Ctrl-Shift-A. - * Ctrl-*-A: Matches Ctrl-A, as well as any other key sequence that includes - * at least the Ctrl and A keys. - * - * @return {Object} An object with shift, ctrl, alt, meta, keyCode - * properties. - */ -hterm.Parser.prototype.parseKeySequence = function() { - var rv = { - keyCode: null - }; - - for (var k in hterm.Parser.identifiers.modifierKeys) { - rv[hterm.Parser.identifiers.modifierKeys[k]] = false; - } - - while (this.pos < this.source.length) { - this.skipSpace(); - - var token = this.parseToken(); - if (token.type == 'integer') { - rv.keyCode = token.value; - - } else if (token.type == 'identifier') { - var ucValue = token.value.toUpperCase(); - if (ucValue in hterm.Parser.identifiers.modifierKeys && - hterm.Parser.identifiers.modifierKeys.hasOwnProperty(ucValue)) { - var mod = hterm.Parser.identifiers.modifierKeys[ucValue]; - if (rv[mod] && rv[mod] != '*') - throw this.error('Duplicate modifier: ' + token.value); - rv[mod] = true; - - } else if (ucValue in hterm.Parser.identifiers.keyCodes && - hterm.Parser.identifiers.keyCodes.hasOwnProperty(ucValue)) { - rv.keyCode = hterm.Parser.identifiers.keyCodes[ucValue]; - - } else { - throw this.error('Unknown key: ' + token.value); - } - - } else if (token.type == 'symbol') { - if (token.value == '*') { - for (var id in hterm.Parser.identifiers.modifierKeys) { - var p = hterm.Parser.identifiers.modifierKeys[id]; - if (!rv[p]) - rv[p] = '*'; - } - } else { - throw this.error('Unexpected symbol: ' + token.value); - } - } else { - throw this.error('Expected integer or identifier'); - } - - this.skipSpace(); - - if (this.ch != '-') - break; - - if (rv.keyCode != null) - throw this.error('Extra definition after target key'); - - this.advance(1); - } - - if (rv.keyCode == null) - throw this.error('Missing target key'); - - return rv; -}; - -hterm.Parser.prototype.parseKeyAction = function() { - this.skipSpace(); - - var token = this.parseToken(); - - if (token.type == 'string') - return token.value; - - if (token.type == 'identifier') { - if (token.value in hterm.Parser.identifiers.actions && - hterm.Parser.identifiers.actions.hasOwnProperty(token.value)) - return hterm.Parser.identifiers.actions[token.value]; - - throw this.error('Unknown key action: ' + token.value); - } - - throw this.error('Expected string or identifier'); - -}; - -hterm.Parser.prototype.peekString = function() { - return this.ch == '\'' || this.ch == '"'; -}; - -hterm.Parser.prototype.peekIdentifier = function() { - return this.ch.match(/[a-z_]/i); -}; - -hterm.Parser.prototype.peekInteger = function() { - return this.ch.match(/[0-9]/); -}; - -hterm.Parser.prototype.parseToken = function() { - if (this.ch == '*') { - var rv = {type: 'symbol', value: this.ch}; - this.advance(1); - return rv; - } - - if (this.peekIdentifier()) - return {type: 'identifier', value: this.parseIdentifier()}; - - if (this.peekString()) - return {type: 'string', value: this.parseString()}; - - if (this.peekInteger()) - return {type: 'integer', value: this.parseInteger()}; - - - throw this.error('Unexpected token'); -}; - -hterm.Parser.prototype.parseIdentifier = function() { - if (!this.peekIdentifier()) - throw this.error('Expected identifier'); - - return this.parsePattern(/[a-z0-9_]+/ig); -}; - -hterm.Parser.prototype.parseInteger = function() { - var base = 10; - - if (this.ch == '0' && this.pos < this.source.length - 1 && - this.source.substr(this.pos + 1, 1) == 'x') { - return parseInt(this.parsePattern(/0x[0-9a-f]+/gi)); - } - - return parseInt(this.parsePattern(/\d+/g)); -}; - -/** - * Parse a single or double quoted string. - * - * The current position should point at the initial quote character. Single - * quoted strings will be treated literally, double quoted will process escapes. - * - * TODO(rginda): Variable interpolation. - * - * @param {ParseState} parseState - * @param {string} quote A single or double-quote character. - * @return {string} - */ -hterm.Parser.prototype.parseString = function() { - var result = ''; - - var quote = this.ch; - if (quote != '"' && quote != '\'') - throw this.error('String expected'); - - this.advance(1); - - var re = new RegExp('[\\\\' + quote + ']', 'g'); - - while (this.pos < this.source.length) { - re.lastIndex = this.pos; - if (!re.exec(this.source)) - throw this.error('Unterminated string literal'); - - result += this.source.substring(this.pos, re.lastIndex - 1); - - this.advance(re.lastIndex - this.pos - 1); - - if (quote == '"' && this.ch == '\\') { - this.advance(1); - result += this.parseEscape(); - continue; - } - - if (quote == '\'' && this.ch == '\\') { - result += this.ch; - this.advance(1); - continue; - } - - if (this.ch == quote) { - this.advance(1); - return result; - } - } - - throw this.error('Unterminated string literal'); -}; - - -/** - * Parse an escape code from the current position (which should point to - * the first character AFTER the leading backslash.) - * - * @return {string} - */ -hterm.Parser.prototype.parseEscape = function() { - var map = { - '"': '"', - '\'': '\'', - '\\': '\\', - 'a': '\x07', - 'b': '\x08', - 'e': '\x1b', - 'f': '\x0c', - 'n': '\x0a', - 'r': '\x0d', - 't': '\x09', - 'v': '\x0b', - 'x': function() { - var value = this.parsePattern(/[a-z0-9]{2}/ig); - return String.fromCharCode(parseInt(value, 16)); - }, - 'u': function() { - var value = this.parsePattern(/[a-z0-9]{4}/ig); - return String.fromCharCode(parseInt(value, 16)); - } - }; - - if (!(this.ch in map && map.hasOwnProperty(this.ch))) - throw this.error('Unknown escape: ' + this.ch); - - var value = map[this.ch]; - this.advance(1); - - if (typeof value == 'function') - value = value.call(this); - - return value; -}; - -/** - * Parse the given pattern starting from the current position. - * - * @param {RegExp} pattern A pattern representing the characters to span. MUST - * include the "global" RegExp flag. - * @return {string} - */ -hterm.Parser.prototype.parsePattern = function(pattern) { - if (!pattern.global) - throw this.error('Internal error: Span patterns must be global'); - - pattern.lastIndex = this.pos; - var ary = pattern.exec(this.source); - - if (!ary || pattern.lastIndex - ary[0].length != this.pos) - throw this.error('Expected match for: ' + pattern); - - this.pos = pattern.lastIndex - 1; - this.advance(1); - - return ary[0]; -}; - - -/** - * Advance the current position. - * - * @param {number} count - */ -hterm.Parser.prototype.advance = function(count) { - this.pos += count; - this.ch = this.source.substr(this.pos, 1); -}; - -/** - * @param {string=} opt_expect A list of valid non-whitespace characters to - * terminate on. - * @return {void} - */ -hterm.Parser.prototype.skipSpace = function(opt_expect) { - if (!/\s/.test(this.ch)) - return; - - var re = /\s+/gm; - re.lastIndex = this.pos; - - var source = this.source; - if (re.exec(source)) - this.pos = re.lastIndex; - - this.ch = this.source.substr(this.pos, 1); - - if (opt_expect) { - if (this.ch.indexOf(opt_expect) == -1) { - throw this.error('Expected one of ' + opt_expect + ', found: ' + - this.ch); - } - } -}; -// SOURCE FILE: hterm/js/hterm_parser_identifiers.js -// Copyright (c) 2015 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Collections of identifier for hterm.Parser. - */ -hterm.Parser.identifiers = {}; - -/** - * Modifier key names used when defining key sequences. - * - * These are upper case so we can normalize the user input and be forgiving. - * "CTRL-A" and "Ctrl-A" and "ctrl-a" are all accepted. - * - * Note: Names here cannot overlap with hterm.Parser.identifiers.keyCodes. - */ -hterm.Parser.identifiers.modifierKeys = { - SHIFT: 'shift', - CTRL: 'ctrl', - // Common alias. - CONTROL: 'ctrl', - ALT: 'alt', - META: 'meta' -}; - -/** - * Key codes useful when defining key sequences. - * - * Punctuation is mostly left out of this list because they can move around - * based on keyboard locale and browser. - * - * In a key sequence like "Ctrl-ESC", the ESC comes from this list of - * identifiers. It is equivalent to "Ctrl-27" and "Ctrl-0x1b". - * - * These are upper case so we can normalize the user input and be forgiving. - * "Ctrl-ESC" and "Ctrl-Esc" an "Ctrl-esc" are all accepted. - * - * We also include common aliases for the same key. "Esc" and "Escape" are the - * same key. - * - * Note: Names here cannot overlap with hterm.Parser.identifiers.modifierKeys. - */ -hterm.Parser.identifiers.keyCodes = { - // Top row. - ESCAPE: 27, - ESC: 27, - F1: 112, - F2: 113, - F3: 114, - F4: 115, - F5: 116, - F6: 117, - F7: 118, - F8: 119, - F9: 120, - F10: 121, - F11: 122, - F12: 123, - - // Row two. - ONE: 49, - TWO: 50, - THREE: 51, - FOUR: 52, - FIVE: 53, - SIX: 54, - SEVEN: 55, - EIGHT: 56, - NINE: 57, - ZERO: 48, - BACKSPACE: 8, - BKSP: 8, - BS: 8, - - // Row three. - TAB: 9, - Q: 81, - W: 87, - E: 69, - R: 82, - T: 84, - Y: 89, - U: 85, - I: 73, - O: 79, - P: 80, - - // Row four. - CAPS_LOCK: 20, - CAPSLOCK: 20, - CAPS: 20, - A: 65, - S: 83, - D: 68, - F: 70, - G: 71, - H: 72, - J: 74, - K: 75, - L: 76, - // We map enter and return together even though enter should really be 10 - // because most people don't know or care about the history here. Plus, - // most keyboards/programs map them together already. If they really want - // to bind them differently, they can also use the numeric value. - ENTER: 13, - ENT: 13, - RETURN: 13, - RET: 13, - - // Row five. - Z: 90, - X: 88, - C: 67, - V: 86, - B: 66, - N: 78, - M: 77, - - // Etc. - SPACE: 32, - SP: 32, - PRINT_SCREEN: 42, - PRTSC: 42, - SCROLL_LOCK: 145, - SCRLK: 145, - BREAK: 19, - BRK: 19, - INSERT: 45, - INS: 45, - HOME: 36, - PAGE_UP: 33, - PGUP: 33, - DELETE: 46, - DEL: 46, - END: 35, - PAGE_DOWN: 34, - PGDOWN: 34, - PGDN: 34, - UP: 38, - DOWN: 40, - RIGHT: 39, - LEFT: 37, - NUMLOCK: 144, - - // Keypad - KP0: 96, - KP1: 97, - KP2: 98, - KP3: 99, - KP4: 100, - KP5: 101, - KP6: 102, - KP7: 103, - KP8: 104, - KP9: 105, - KP_PLUS: 107, - KP_ADD: 107, - KP_MINUS: 109, - KP_SUBTRACT: 109, - KP_STAR: 106, - KP_MULTIPLY: 106, - KP_DIVIDE: 111, - KP_DECIMAL: 110, - KP_PERIOD: 110, - - // Chrome OS media keys - NAVIGATE_BACK: 166, - NAVIGATE_FORWARD: 167, - RELOAD: 168, - FULL_SCREEN: 183, - WINDOW_OVERVIEW: 182, - BRIGHTNESS_UP: 216, - BRIGHTNESS_DOWN: 217 -}; - -/** - * Identifiers for use in key actions. - */ -hterm.Parser.identifiers.actions = { - /** - * Prevent the browser and operating system from handling the event. - */ - CANCEL: hterm.Keyboard.KeyActions.CANCEL, - - /** - * Wait for a "keypress" event, send the keypress charCode to the host. - */ - DEFAULT: hterm.Keyboard.KeyActions.DEFAULT, - - /** - * Let the browser or operating system handle the key. - */ - PASS: hterm.Keyboard.KeyActions.PASS, - - /** - * Scroll the terminal one page up. - */ - scrollPageUp: function(terminal) { - terminal.scrollPageUp(); - return hterm.Keyboard.KeyActions.CANCEL; - }, - - /** - * Scroll the terminal one page down. - */ - scrollPageDown: function(terminal) { - terminal.scrollPageDown(); - return hterm.Keyboard.KeyActions.CANCEL; - }, - - /** - * Scroll the terminal to the top. - */ - scrollToTop: function(terminal) { - terminal.scrollEnd(); - return hterm.Keyboard.KeyActions.CANCEL; - }, - - /** - * Scroll the terminal to the bottom. - */ - scrollToBottom: function(terminal) { - terminal.scrollEnd(); - return hterm.Keyboard.KeyActions.CANCEL; - }, - - /** - * Clear the terminal and scrollback buffer. - */ - clearScrollback: function(terminal) { - terminal.wipeContents(); - return hterm.Keyboard.KeyActions.CANCEL; - } -}; -// SOURCE FILE: hterm/js/hterm_preference_manager.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.f', 'lib.Storage'); - -/** - * PreferenceManager subclass managing global NaSSH preferences. - * - * This is currently just an ordered list of known connection profiles. - */ -hterm.PreferenceManager = function(profileId) { - lib.PreferenceManager.call(this, hterm.defaultStorage, - '/hterm/profiles/' + profileId); - var defs = hterm.PreferenceManager.defaultPreferences; - Object.keys(defs).forEach(function(key) { - this.definePreference(key, defs[key][1]); - }.bind(this)); -}; - -hterm.PreferenceManager.categories = {}; -hterm.PreferenceManager.categories.Keyboard = 'Keyboard'; -hterm.PreferenceManager.categories.Appearance = 'Appearance'; -hterm.PreferenceManager.categories.CopyPaste = 'CopyPaste'; -hterm.PreferenceManager.categories.Sounds = 'Sounds'; -hterm.PreferenceManager.categories.Scrolling = 'Scrolling'; -hterm.PreferenceManager.categories.Encoding = 'Encoding'; -hterm.PreferenceManager.categories.Miscellaneous = 'Miscellaneous'; - -/** - * List of categories, ordered by display order (top to bottom) - */ -hterm.PreferenceManager.categoryDefinitions = [ - { id: hterm.PreferenceManager.categories.Appearance, - text: 'Appearance (fonts, colors, images)'}, - { id: hterm.PreferenceManager.categories.CopyPaste, - text: 'Copy & Paste'}, - { id: hterm.PreferenceManager.categories.Encoding, - text: 'Encoding'}, - { id: hterm.PreferenceManager.categories.Keyboard, - text: 'Keyboard'}, - { id: hterm.PreferenceManager.categories.Scrolling, - text: 'Scrolling'}, - { id: hterm.PreferenceManager.categories.Sounds, - text: 'Sounds'}, - { id: hterm.PreferenceManager.categories.Miscellaneous, - text: 'Misc.'} -]; - - -hterm.PreferenceManager.defaultPreferences = { - 'alt-gr-mode': - [hterm.PreferenceManager.categories.Keyboard, null, - [null, 'none', 'ctrl-alt', 'left-alt', 'right-alt'], - 'Select an AltGr detection hack^Wheuristic.\n' + - '\n' + - '\'null\': Autodetect based on navigator.language:\n' + - ' \'en-us\' => \'none\', else => \'right-alt\'\n' + - '\'none\': Disable any AltGr related munging.\n' + - '\'ctrl-alt\': Assume Ctrl+Alt means AltGr.\n' + - '\'left-alt\': Assume left Alt means AltGr.\n' + - '\'right-alt\': Assume right Alt means AltGr.\n'], - - 'alt-backspace-is-meta-backspace': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that ' + - 'alt-backspace indeed is alt-backspace.'], - - 'alt-is-meta': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'Set whether the alt key acts as a meta key or as a distinct alt key.'], - - 'alt-sends-what': - [hterm.PreferenceManager.categories.Keyboard, 'escape', - ['escape', '8-bit', 'browser-key'], - 'Controls how the alt key is handled.\n' + - '\n' + - ' escape....... Send an ESC prefix.\n' + - ' 8-bit........ Add 128 to the unshifted character as in xterm.\n' + - ' browser-key.. Wait for the keypress event and see what the browser \n' + - ' says. (This won\'t work well on platforms where the \n' + - ' browser performs a default action for some alt sequences.)' - ], - - 'audible-bell-sound': - [hterm.PreferenceManager.categories.Sounds, 'lib-resource:hterm/audio/bell', - 'url', - 'URL of the terminal bell sound. Empty string for no audible bell.'], - - 'desktop-notification-bell': - [hterm.PreferenceManager.categories.Sounds, false, 'bool', - 'If true, terminal bells in the background will create a Web ' + - 'Notification. https://www.w3.org/TR/notifications/\n' + - '\n'+ - 'Displaying notifications requires permission from the user. When this ' + - 'option is set to true, hterm will attempt to ask the user for permission ' + - 'if necessary. Note browsers may not show this permission request if it ' + - 'did not originate from a user action.\n' + - '\n' + - 'Chrome extensions with the "notifications" permission have permission to ' + - 'display notifications.'], - - 'background-color': - [hterm.PreferenceManager.categories.Appearance, 'rgb(16, 16, 16)', 'color', - 'The background color for text with no other color attributes.'], - - 'background-image': - [hterm.PreferenceManager.categories.Appearance, '', 'string', - 'CSS value of the background image. Empty string for no image.\n' + - '\n' + - 'For example:\n' + - ' url(https://goo.gl/anedTK)\n' + - ' linear-gradient(top bottom, blue, red)'], - - 'background-size': - [hterm.PreferenceManager.categories.Appearance, '', 'string', - 'CSS value of the background image size. Defaults to none.'], - - 'background-position': - [hterm.PreferenceManager.categories.Appearance, '', 'string', - 'CSS value of the background image position.\n' + - '\n' + - 'For example:\n' + - ' 10% 10%\n' + - ' center'], - - 'backspace-sends-backspace': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'If true, the backspace should send BS (\'\\x08\', aka ^H). Otherwise ' + - 'the backspace key should send \'\\x7f\'.'], - - 'character-map-overrides': - [hterm.PreferenceManager.categories.Appearance, null, 'value', - 'This is specified as an object. It is a sparse array, where each ' + - 'property is the character set code and the value is an object that is ' + - 'a sparse array itself. In that sparse array, each property is the ' + - 'received character and the value is the displayed character.\n' + - '\n' + - 'For example:\n' + - ' {"0":{"+":"\\u2192",",":"\\u2190","-":"\\u2191",".":"\\u2193", ' + - '"0":"\\u2588"}}' - ], - - 'close-on-exit': - [hterm.PreferenceManager.categories.Miscellaneous, true, 'bool', - 'Whether or not to close the window when the command exits.'], - - 'cursor-blink': - [hterm.PreferenceManager.categories.Appearance, false, 'bool', - 'Whether or not to blink the cursor by default.'], - - 'cursor-blink-cycle': - [hterm.PreferenceManager.categories.Appearance, [1000, 500], 'value', - 'The cursor blink rate in milliseconds.\n' + - '\n' + - 'A two element array, the first of which is how long the cursor should be ' + - 'on, second is how long it should be off.'], - - 'cursor-color': - [hterm.PreferenceManager.categories.Appearance, 'rgba(255, 0, 0, 0.5)', - 'color', - 'The color of the visible cursor.'], - - 'color-palette-overrides': - [hterm.PreferenceManager.categories.Appearance, null, 'value', - 'Override colors in the default palette.\n' + - '\n' + - 'This can be specified as an array or an object. If specified as an ' + - 'object it is assumed to be a sparse array, where each property ' + - 'is a numeric index into the color palette.\n' + - '\n' + - 'Values can be specified as almost any css color value. This ' + - 'includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names ' + - 'that are also part of the stock X11 rgb.txt file.\n' + - '\n' + - 'You can use \'null\' to specify that the default value should be not ' + - 'be changed. This is useful for skipping a small number of indices ' + - 'when the value is specified as an array.'], - - 'copy-on-select': - [hterm.PreferenceManager.categories.CopyPaste, true, 'bool', - 'Automatically copy mouse selection to the clipboard.'], - - 'use-default-window-copy': - [hterm.PreferenceManager.categories.CopyPaste, false, 'bool', - 'Whether to use the default window copy behavior'], - - 'clear-selection-after-copy': - [hterm.PreferenceManager.categories.CopyPaste, true, 'bool', - 'Whether to clear the selection after copying.'], - - 'ctrl-plus-minus-zero-zoom': - [hterm.PreferenceManager.categories.Keyboard, true, 'bool', - 'If true, Ctrl-Plus/Minus/Zero controls zoom.\n' + - 'If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, ' + - 'Ctrl-Plus/Zero do nothing.'], - - 'ctrl-c-copy': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'Ctrl+C copies if true, send ^C to host if false.\n' + - 'Ctrl+Shift+C sends ^C to host if true, copies if false.'], - - 'ctrl-v-paste': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'Ctrl+V pastes if true, send ^V to host if false.\n' + - 'Ctrl+Shift+V sends ^V to host if true, pastes if false.'], - - 'east-asian-ambiguous-as-two-column': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'Set whether East Asian Ambiguous characters have two column width.'], - - 'enable-8-bit-control': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'True to enable 8-bit control characters, false to ignore them.\n' + - '\n' + - 'We\'ll respect the two-byte versions of these control characters ' + - 'regardless of this setting.'], - - 'enable-bold': - [hterm.PreferenceManager.categories.Appearance, null, 'tristate', - 'True if we should use bold weight font for text with the bold/bright ' + - 'attribute. False to use the normal weight font. Null to autodetect.'], - - 'enable-bold-as-bright': - [hterm.PreferenceManager.categories.Appearance, true, 'bool', - 'True if we should use bright colors (8-15 on a 16 color palette) ' + - 'for any text with the bold attribute. False otherwise.'], - - 'enable-blink': - [hterm.PreferenceManager.categories.Appearance, true, 'bool', - 'True if we should respect the blink attribute. False to ignore it. '], - - 'enable-clipboard-notice': - [hterm.PreferenceManager.categories.CopyPaste, true, 'bool', - 'Show a message in the terminal when the host writes to the clipboard.'], - - 'enable-clipboard-write': - [hterm.PreferenceManager.categories.CopyPaste, true, 'bool', - 'Allow the host to write directly to the system clipboard.'], - - 'enable-dec12': - [hterm.PreferenceManager.categories.Miscellaneous, false, 'bool', - 'Respect the host\'s attempt to change the cursor blink status using ' + - 'DEC Private Mode 12.'], - - 'environment': - [hterm.PreferenceManager.categories.Miscellaneous, {'TERM': 'xterm-256color'}, - 'value', - 'The default environment variables, as an object.'], - - 'font-family': - [hterm.PreferenceManager.categories.Appearance, - '"DejaVu Sans Mono", "Everson Mono", FreeMono, "Menlo", "Terminal", ' + - 'monospace', 'string', - 'Default font family for the terminal text.'], - - 'font-size': - [hterm.PreferenceManager.categories.Appearance, 15, 'int', - 'The default font size in pixels.'], - - 'font-smoothing': - [hterm.PreferenceManager.categories.Appearance, 'antialiased', 'string', - 'CSS font-smoothing property.'], - - 'foreground-color': - [hterm.PreferenceManager.categories.Appearance, 'rgb(240, 240, 240)', 'color', - 'The foreground color for text with no other color attributes.'], - - 'home-keys-scroll': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'If true, home/end will control the terminal scrollbar and shift home/end ' + - 'will send the VT keycodes. If false then home/end sends VT codes and ' + - 'shift home/end scrolls.'], - - 'keybindings': - [hterm.PreferenceManager.categories.Keyboard, null, 'value', - 'A map of key sequence to key actions. Key sequences include zero or ' + - 'more modifier keys followed by a key code. Key codes can be decimal or ' + - 'hexadecimal numbers, or a key identifier. Key actions can be specified ' + - 'a string to send to the host, or an action identifier. For a full ' + - 'explanation of the format, see https://goo.gl/LWRndr.\n' + - '\n' + - 'Sample keybindings:\n' + - '{\n' + - ' "Ctrl-Alt-K": "clearScrollback",\n' + - ' "Ctrl-Shift-L": "PASS",\n' + - ' "Ctrl-H": "\'HELLO\\n\'"\n' + - '}'], - - 'max-string-sequence': - [hterm.PreferenceManager.categories.Encoding, 100000, 'int', - 'Max length of a DCS, OSC, PM, or APS sequence before we give up and ' + - 'ignore the code.'], - - 'media-keys-are-fkeys': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'If true, convert media keys to their Fkey equivalent. If false, let ' + - 'the browser handle the keys.'], - - 'meta-sends-escape': - [hterm.PreferenceManager.categories.Keyboard, true, 'bool', - 'Set whether the meta key sends a leading escape or not.'], - - 'mouse-right-click-paste': - [hterm.PreferenceManager.categories.CopyPaste, true, 'bool', - 'Paste on right mouse button clicks.\n' + - '\n' + - 'This option is activate independent of the "mouse-paste-button" ' + - 'setting.\n' + - '\n' + - 'Note: This will handle left & right handed mice correctly.'], - - 'mouse-paste-button': - [hterm.PreferenceManager.categories.CopyPaste, null, - [null, 0, 1, 2, 3, 4, 5, 6], - 'Mouse paste button, or null to autodetect.\n' + - '\n' + - 'For autodetect, we\'ll use the middle mouse button for non-X11 ' + - 'platforms (including Chrome OS). On X11, we\'ll use the right mouse ' + - 'button (since the native window manager should paste via the middle ' + - 'mouse button).\n' + - '\n' + - '0 == left (primary) button.\n' + - '1 == middle (auxiliary) button.\n' + - '2 == right (secondary) button.\n' + - '\n' + - 'This option is activate independent of the "mouse-right-click-paste" ' + - 'setting.\n' + - '\n' + - 'Note: This will handle left & right handed mice correctly.'], - - 'word-break-match-left': - [hterm.PreferenceManager.categories.CopyPaste, - '[^\\s\\[\\](){}<>"\'\\^!@#$%&*,;:`]', 'string', - 'Regular expression to halt matching to the left (start) of a selection.\n' + - '\n' + - 'Normally this is a character class to reject specific characters.\n' + - 'We allow "~" and "." by default as paths frequently start with those.'], - - 'word-break-match-right': - [hterm.PreferenceManager.categories.CopyPaste, - '[^\\s\\[\\](){}<>"\'\\^!@#$%&*,;:~.`]', 'string', - 'Regular expression to halt matching to the right (end) of a selection.\n' + - '\n' + - 'Normally this is a character class to reject specific characters.'], - - 'word-break-match-middle': - [hterm.PreferenceManager.categories.CopyPaste, - '[^\\s\\[\\](){}<>"\'\\^]*', 'string', - 'Regular expression to match all the characters in the middle.\n' + - '\n' + - 'Normally this is a character class to reject specific characters.\n' + - '\n' + - 'Used to expand the selection surrounding the starting point.'], - - 'page-keys-scroll': - [hterm.PreferenceManager.categories.Keyboard, false, 'bool', - 'If true, page up/down will control the terminal scrollbar and shift ' + - 'page up/down will send the VT keycodes. If false then page up/down ' + - 'sends VT codes and shift page up/down scrolls.'], - - 'pass-alt-number': - [hterm.PreferenceManager.categories.Keyboard, null, 'tristate', - 'Set whether we should pass Alt-1..9 to the browser.\n' + - '\n' + - 'This is handy when running hterm in a browser tab, so that you don\'t ' + - 'lose Chrome\'s "switch to tab" keyboard accelerators. When not running ' + - 'in a tab it\'s better to send these keys to the host so they can be ' + - 'used in vim or emacs.\n' + - '\n' + - 'If true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 ' + - 'will be sent to the host. If null, autodetect based on browser platform ' + - 'and window type.'], - - 'pass-ctrl-number': - [hterm.PreferenceManager.categories.Keyboard, null, 'tristate', - 'Set whether we should pass Ctrl-1..9 to the browser.\n' + - '\n' + - 'This is handy when running hterm in a browser tab, so that you don\'t ' + - 'lose Chrome\'s "switch to tab" keyboard accelerators. When not running ' + - 'in a tab it\'s better to send these keys to the host so they can be ' + - 'used in vim or emacs.\n' + - '\n' + - 'If true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 ' + - 'will be sent to the host. If null, autodetect based on browser platform ' + - 'and window type.'], - - 'pass-meta-number': - [hterm.PreferenceManager.categories.Keyboard, null, 'tristate', - 'Set whether we should pass Meta-1..9 to the browser.\n' + - '\n' + - 'This is handy when running hterm in a browser tab, so that you don\'t ' + - 'lose Chrome\'s "switch to tab" keyboard accelerators. When not running ' + - 'in a tab it\'s better to send these keys to the host so they can be ' + - 'used in vim or emacs.\n' + - '\n' + - 'If true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 ' + - 'will be sent to the host. If null, autodetect based on browser platform ' + - 'and window type.'], - - 'pass-meta-v': - [hterm.PreferenceManager.categories.Keyboard, true, 'bool', - 'Set whether meta-V gets passed to host.'], - - 'receive-encoding': - [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'], - 'Set the expected encoding for data received from the host.\n' + - '\n' + - 'Valid values are \'utf-8\' and \'raw\'.'], - - 'scroll-on-keystroke': - [hterm.PreferenceManager.categories.Scrolling, true, 'bool', - 'If true, scroll to the bottom on any keystroke.'], - - 'scroll-on-output': - [hterm.PreferenceManager.categories.Scrolling, false, 'bool', - 'If true, scroll to the bottom on terminal output.'], - - 'scrollbar-visible': - [hterm.PreferenceManager.categories.Scrolling, true, 'bool', - 'The vertical scrollbar mode.'], - - 'scroll-wheel-may-send-arrow-keys': - [hterm.PreferenceManager.categories.Scrolling, false, 'bool', - 'When using the alternative screen buffer, and DECCKM (Application Cursor ' + - 'Keys) is active, mouse wheel scroll events will emulate arrow keys.\n' + - '\n' + - 'It can be temporarily disabled by holding the shift key.\n' + - '\n' + - 'This frequently comes up when using pagers (less) or reading man pages ' + - 'or text editors (vi/nano) or using screen/tmux.'], - - 'scroll-wheel-move-multiplier': - [hterm.PreferenceManager.categories.Scrolling, 1, 'int', - 'The multiplier for the pixel delta in wheel events caused by the ' + - 'scroll wheel. Alters how fast the page scrolls.'], - - 'send-encoding': - [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'], - 'Set the encoding for data sent to host.'], - - 'terminal-encoding': - [hterm.PreferenceManager.categories.Encoding, 'iso-2022', - ['iso-2022', 'utf-8', 'utf-8-locked'], - 'The default terminal encoding (DOCS).\n' + - '\n' + - 'ISO-2022 enables character map translations (like graphics maps).\n' + - 'UTF-8 disables support for those.\n' + - '\n' + - 'The locked variant means the encoding cannot be changed at runtime ' + - 'via terminal escape sequences.\n' + - '\n' + - 'You should stick with UTF-8 unless you notice broken rendering with ' + - 'legacy applications.'], - - 'shift-insert-paste': - [hterm.PreferenceManager.categories.Keyboard, true, 'bool', - 'Shift + Insert pastes if true, sent to host if false.'], - - 'user-css': - [hterm.PreferenceManager.categories.Appearance, '', 'url', - 'URL of user stylesheet to include in the terminal document.'], - - 'user-css-text': - [hterm.PreferenceManager.categories.Appearance, '', 'multiline-string', - 'Custom CSS text for styling the terminal.'], -}; - -hterm.PreferenceManager.prototype = - Object.create(lib.PreferenceManager.prototype); -hterm.PreferenceManager.constructor = hterm.PreferenceManager; -// SOURCE FILE: hterm/js/hterm_pubsub.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -/** - * Utility class used to add publish/subscribe/unsubscribe functionality to - * an existing object. - */ -hterm.PubSub = function() { - this.observers_ = {}; -}; - -/** - * Add publish, subscribe, and unsubscribe methods to an existing object. - * - * No other properties of the object are touched, so there is no need to - * worry about clashing private properties. - * - * @param {Object} obj The object to add this behavior to. - */ -hterm.PubSub.addBehavior = function(obj) { - var pubsub = new hterm.PubSub(); - for (var m in hterm.PubSub.prototype) { - obj[m] = hterm.PubSub.prototype[m].bind(pubsub); - } -}; - -/** - * Subscribe to be notified of messages about a subject. - * - * @param {string} subject The subject to subscribe to. - * @param {function(Object)} callback The function to invoke for notifications. - */ -hterm.PubSub.prototype.subscribe = function(subject, callback) { - if (!(subject in this.observers_)) - this.observers_[subject] = []; - - this.observers_[subject].push(callback); -}; - -/** - * Unsubscribe from a subject. - * - * @param {string} subject The subject to unsubscribe from. - * @param {function(Object)} callback A callback previously registered via - * subscribe(). - */ -hterm.PubSub.prototype.unsubscribe = function(subject, callback) { - var list = this.observers_[subject]; - if (!list) - throw 'Invalid subject: ' + subject; - - var i = list.indexOf(callback); - if (i < 0) - throw 'Not subscribed: ' + subject; - - list.splice(i, 1); -}; - -/** - * Publish a message about a subject. - * - * Subscribers (and the optional final callback) are invoked asynchronously. - * This method will return before anyone is actually notified. - * - * @param {string} subject The subject to publish about. - * @param {Object} e An arbitrary object associated with this notification. - * @param {function(Object)} opt_lastCallback An optional function to call after - * all subscribers have been notified. - */ -hterm.PubSub.prototype.publish = function(subject, e, opt_lastCallback) { - function notifyList(i) { - // Set this timeout before invoking the callback, so we don't have to - // concern ourselves with exceptions. - if (i < list.length - 1) - setTimeout(notifyList, 0, i + 1); - - list[i](e); - } - - var list = this.observers_[subject]; - if (list) { - // Copy the list, in case it changes while we're notifying. - list = [].concat(list); - } - - if (opt_lastCallback) { - if (list) { - list.push(opt_lastCallback); - } else { - list = [opt_lastCallback]; - } - } - - if (list) - setTimeout(notifyList, 0, 0); -}; -// SOURCE FILE: hterm/js/hterm_screen.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.f', 'lib.wc', - 'hterm.RowCol', 'hterm.Size', 'hterm.TextAttributes'); - -/** - * @fileoverview This class represents a single terminal screen full of text. - * - * It maintains the current cursor position and has basic methods for text - * insert and overwrite, and adding or removing rows from the screen. - * - * This class has no knowledge of the scrollback buffer. - * - * The number of rows on the screen is determined only by the number of rows - * that the caller inserts into the screen. If a caller wants to ensure a - * constant number of rows on the screen, it's their responsibility to remove a - * row for each row inserted. - * - * The screen width, in contrast, is enforced locally. - * - * - * In practice... - * - The hterm.Terminal class holds two hterm.Screen instances. One for the - * primary screen and one for the alternate screen. - * - * - The html.Screen class only cares that rows are HTMLElements. In the - * larger context of hterm, however, the rows happen to be displayed by an - * hterm.ScrollPort and have to follow a few rules as a result. Each - * row must be rooted by the custom HTML tag 'x-row', and each must have a - * rowIndex property that corresponds to the index of the row in the context - * of the scrollback buffer. These invariants are enforced by hterm.Terminal - * because that is the class using the hterm.Screen in the context of an - * hterm.ScrollPort. - */ - -/** - * Create a new screen instance. - * - * The screen initially has no rows and a maximum column count of 0. - * - * @param {integer} opt_columnCount The maximum number of columns for this - * screen. See insertString() and overwriteString() for information about - * what happens when too many characters are added too a row. Defaults to - * 0 if not provided. - */ -hterm.Screen = function(opt_columnCount) { - /** - * Public, read-only access to the rows in this screen. - */ - this.rowsArray = []; - - // The max column width for this screen. - this.columnCount_ = opt_columnCount || 80; - - // The current color, bold, underline and blink attributes. - this.textAttributes = new hterm.TextAttributes(window.document); - - // Current zero-based cursor coordinates. - this.cursorPosition = new hterm.RowCol(0, 0); - - // The node containing the row that the cursor is positioned on. - this.cursorRowNode_ = null; - - // The node containing the span of text that the cursor is positioned on. - this.cursorNode_ = null; - - // The offset in column width into cursorNode_ where the cursor is positioned. - this.cursorOffset_ = null; - - // Regexes for expanding word selections. - this.wordBreakMatchLeft = null; - this.wordBreakMatchRight = null; - this.wordBreakMatchMiddle = null; -}; - -/** - * Return the screen size as an hterm.Size object. - * - * @return {hterm.Size} hterm.Size object representing the current number - * of rows and columns in this screen. - */ -hterm.Screen.prototype.getSize = function() { - return new hterm.Size(this.columnCount_, this.rowsArray.length); -}; - -/** - * Return the current number of rows in this screen. - * - * @return {integer} The number of rows in this screen. - */ -hterm.Screen.prototype.getHeight = function() { - return this.rowsArray.length; -}; - -/** - * Return the current number of columns in this screen. - * - * @return {integer} The number of columns in this screen. - */ -hterm.Screen.prototype.getWidth = function() { - return this.columnCount_; -}; - -/** - * Set the maximum number of columns per row. - * - * @param {integer} count The maximum number of columns per row. - */ -hterm.Screen.prototype.setColumnCount = function(count) { - this.columnCount_ = count; - - if (this.cursorPosition.column >= count) - this.setCursorPosition(this.cursorPosition.row, count - 1); -}; - -/** - * Remove the first row from the screen and return it. - * - * @return {HTMLElement} The first row in this screen. - */ -hterm.Screen.prototype.shiftRow = function() { - return this.shiftRows(1)[0]; -}; - -/** - * Remove rows from the top of the screen and return them as an array. - * - * @param {integer} count The number of rows to remove. - * @return {Array.} The selected rows. - */ -hterm.Screen.prototype.shiftRows = function(count) { - return this.rowsArray.splice(0, count); -}; - -/** - * Insert a row at the top of the screen. - * - * @param {HTMLElement} row The row to insert. - */ -hterm.Screen.prototype.unshiftRow = function(row) { - this.rowsArray.splice(0, 0, row); -}; - -/** - * Insert rows at the top of the screen. - * - * @param {Array.} rows The rows to insert. - */ -hterm.Screen.prototype.unshiftRows = function(rows) { - this.rowsArray.unshift.apply(this.rowsArray, rows); -}; - -/** - * Remove the last row from the screen and return it. - * - * @return {HTMLElement} The last row in this screen. - */ -hterm.Screen.prototype.popRow = function() { - return this.popRows(1)[0]; -}; - -/** - * Remove rows from the bottom of the screen and return them as an array. - * - * @param {integer} count The number of rows to remove. - * @return {Array.} The selected rows. - */ -hterm.Screen.prototype.popRows = function(count) { - return this.rowsArray.splice(this.rowsArray.length - count, count); -}; - -/** - * Insert a row at the bottom of the screen. - * - * @param {HTMLElement} row The row to insert. - */ -hterm.Screen.prototype.pushRow = function(row) { - this.rowsArray.push(row); -}; - -/** - * Insert rows at the bottom of the screen. - * - * @param {Array.} rows The rows to insert. - */ -hterm.Screen.prototype.pushRows = function(rows) { - rows.push.apply(this.rowsArray, rows); -}; - -/** - * Insert a row at the specified row of the screen. - * - * @param {integer} index The index to insert the row. - * @param {HTMLElement} row The row to insert. - */ -hterm.Screen.prototype.insertRow = function(index, row) { - this.rowsArray.splice(index, 0, row); -}; - -/** - * Insert rows at the specified row of the screen. - * - * @param {integer} index The index to insert the rows. - * @param {Array.} rows The rows to insert. - */ -hterm.Screen.prototype.insertRows = function(index, rows) { - for (var i = 0; i < rows.length; i++) { - this.rowsArray.splice(index + i, 0, rows[i]); - } -}; - -/** - * Remove a row from the screen and return it. - * - * @param {integer} index The index of the row to remove. - * @return {HTMLElement} The selected row. - */ -hterm.Screen.prototype.removeRow = function(index) { - return this.rowsArray.splice(index, 1)[0]; -}; - -/** - * Remove rows from the bottom of the screen and return them as an array. - * - * @param {integer} index The index to start removing rows. - * @param {integer} count The number of rows to remove. - * @return {Array.} The selected rows. - */ -hterm.Screen.prototype.removeRows = function(index, count) { - return this.rowsArray.splice(index, count); -}; - -/** - * Invalidate the current cursor position. - * - * This sets this.cursorPosition to (0, 0) and clears out some internal - * data. - * - * Attempting to insert or overwrite text while the cursor position is invalid - * will raise an obscure exception. - */ -hterm.Screen.prototype.invalidateCursorPosition = function() { - this.cursorPosition.move(0, 0); - this.cursorRowNode_ = null; - this.cursorNode_ = null; - this.cursorOffset_ = null; -}; - -/** - * Clear the contents of the cursor row. - */ -hterm.Screen.prototype.clearCursorRow = function() { - this.cursorRowNode_.innerHTML = ''; - this.cursorRowNode_.removeAttribute('line-overflow'); - this.cursorOffset_ = 0; - this.cursorPosition.column = 0; - this.cursorPosition.overflow = false; - - var text; - if (this.textAttributes.isDefault()) { - text = ''; - } else { - text = lib.f.getWhitespace(this.columnCount_); - } - - // We shouldn't honor inverse colors when clearing an area, to match - // xterm's back color erase behavior. - var inverse = this.textAttributes.inverse; - this.textAttributes.inverse = false; - this.textAttributes.syncColors(); - - var node = this.textAttributes.createContainer(text); - this.cursorRowNode_.appendChild(node); - this.cursorNode_ = node; - - this.textAttributes.inverse = inverse; - this.textAttributes.syncColors(); -}; - -/** - * Mark the current row as having overflowed to the next line. - * - * The line overflow state is used when converting a range of rows into text. - * It makes it possible to recombine two or more overflow terminal rows into - * a single line. - * - * This is distinct from the cursor being in the overflow state. Cursor - * overflow indicates that printing at the cursor position will commit a - * line overflow, unless it is preceded by a repositioning of the cursor - * to a non-overflow state. - */ -hterm.Screen.prototype.commitLineOverflow = function() { - this.cursorRowNode_.setAttribute('line-overflow', true); -}; - -/** - * Relocate the cursor to a give row and column. - * - * @param {integer} row The zero based row. - * @param {integer} column The zero based column. - */ -hterm.Screen.prototype.setCursorPosition = function(row, column) { - if (!this.rowsArray.length) { - console.warn('Attempt to set cursor position on empty screen.'); - return; - } - - if (row >= this.rowsArray.length) { - console.error('Row out of bounds: ' + row); - row = this.rowsArray.length - 1; - } else if (row < 0) { - console.error('Row out of bounds: ' + row); - row = 0; - } - - if (column >= this.columnCount_) { - console.error('Column out of bounds: ' + column); - column = this.columnCount_ - 1; - } else if (column < 0) { - console.error('Column out of bounds: ' + column); - column = 0; - } - - this.cursorPosition.overflow = false; - - var rowNode = this.rowsArray[row]; - var node = rowNode.firstChild; - - if (!node) { - node = rowNode.ownerDocument.createTextNode(''); - rowNode.appendChild(node); - } - - var currentColumn = 0; - - if (rowNode == this.cursorRowNode_) { - if (column >= this.cursorPosition.column - this.cursorOffset_) { - node = this.cursorNode_; - currentColumn = this.cursorPosition.column - this.cursorOffset_; - } - } else { - this.cursorRowNode_ = rowNode; - } - - this.cursorPosition.move(row, column); - - while (node) { - var offset = column - currentColumn; - var width = hterm.TextAttributes.nodeWidth(node); - if (!node.nextSibling || width > offset) { - this.cursorNode_ = node; - this.cursorOffset_ = offset; - return; - } - - currentColumn += width; - node = node.nextSibling; - } -}; - -/** - * Set the provided selection object to be a caret selection at the current - * cursor position. - */ -hterm.Screen.prototype.syncSelectionCaret = function(selection) { - try { - selection.collapse(this.cursorNode_, this.cursorOffset_); - } catch (firefoxIgnoredException) { - // FF can throw an exception if the range is off, rather than just not - // performing the collapse. - } -}; - -/** - * Split a single node into two nodes at the given offset. - * - * For example: - * Given the DOM fragment '
Hello World
', call splitNode_ - * passing the span and an offset of 6. This would modify the fragment to - * become: '
Hello World
'. If the span - * had any attributes they would have been copied to the new span as well. - * - * The to-be-split node must have a container, so that the new node can be - * placed next to it. - * - * @param {HTMLNode} node The node to split. - * @param {integer} offset The offset into the node where the split should - * occur. - */ -hterm.Screen.prototype.splitNode_ = function(node, offset) { - var afterNode = node.cloneNode(false); - - var textContent = node.textContent; - node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset); - afterNode.textContent = lib.wc.substr(textContent, offset); - - if (afterNode.textContent) - node.parentNode.insertBefore(afterNode, node.nextSibling); - if (!node.textContent) - node.parentNode.removeChild(node); -}; - -/** - * Ensure that text is clipped and the cursor is clamped to the column count. - */ -hterm.Screen.prototype.maybeClipCurrentRow = function() { - var width = hterm.TextAttributes.nodeWidth(this.cursorRowNode_); - - if (width <= this.columnCount_) { - // Current row does not need clipping, but may need clamping. - if (this.cursorPosition.column >= this.columnCount_) { - this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1); - this.cursorPosition.overflow = true; - } - - return; - } - - // Save off the current column so we can maybe restore it later. - var currentColumn = this.cursorPosition.column; - - // Move the cursor to the final column. - this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1); - - // Remove any text that partially overflows. - width = hterm.TextAttributes.nodeWidth(this.cursorNode_); - - if (this.cursorOffset_ < width - 1) { - this.cursorNode_.textContent = hterm.TextAttributes.nodeSubstr( - this.cursorNode_, 0, this.cursorOffset_ + 1); - } - - // Remove all nodes after the cursor. - var rowNode = this.cursorRowNode_; - var node = this.cursorNode_.nextSibling; - - while (node) { - rowNode.removeChild(node); - node = this.cursorNode_.nextSibling; - } - - if (currentColumn < this.columnCount_) { - // If the cursor was within the screen before we started then restore its - // position. - this.setCursorPosition(this.cursorPosition.row, currentColumn); - } else { - // Otherwise leave it at the the last column in the overflow state. - this.cursorPosition.overflow = true; - } -}; - -/** - * Insert a string at the current character position using the current - * text attributes. - * - * You must call maybeClipCurrentRow() after in order to clip overflowed - * text and clamp the cursor. - * - * It is also up to the caller to properly maintain the line overflow state - * using hterm.Screen..commitLineOverflow(). - */ -hterm.Screen.prototype.insertString = function(str) { - var cursorNode = this.cursorNode_; - var cursorNodeText = cursorNode.textContent; - - this.cursorRowNode_.removeAttribute('line-overflow'); - - // We may alter the width of the string by prepending some missing - // whitespaces, so we need to record the string width ahead of time. - var strWidth = lib.wc.strWidth(str); - - // No matter what, before this function exits the cursor column will have - // moved this much. - this.cursorPosition.column += strWidth; - - // Local cache of the cursor offset. - var offset = this.cursorOffset_; - - // Reverse offset is the offset measured from the end of the string. - // Zero implies that the cursor is at the end of the cursor node. - var reverseOffset = hterm.TextAttributes.nodeWidth(cursorNode) - offset; - - if (reverseOffset < 0) { - // A negative reverse offset means the cursor is positioned past the end - // of the characters on this line. We'll need to insert the missing - // whitespace. - var ws = lib.f.getWhitespace(-reverseOffset); - - // This whitespace should be completely unstyled. Underline, background - // color, and strikethrough would be visible on whitespace, so we can't use - // one of those spans to hold the text. - if (!(this.textAttributes.underline || - this.textAttributes.strikethrough || - this.textAttributes.background || - this.textAttributes.wcNode || - !this.textAttributes.asciiNode || - this.textAttributes.tileData != null)) { - // Best case scenario, we can just pretend the spaces were part of the - // original string. - str = ws + str; - } else if (cursorNode.nodeType == 3 || - !(cursorNode.wcNode || - !cursorNode.asciiNode || - cursorNode.tileNode || - cursorNode.style.textDecoration || - cursorNode.style.backgroundColor)) { - // Second best case, the current node is able to hold the whitespace. - cursorNode.textContent = (cursorNodeText += ws); - } else { - // Worst case, we have to create a new node to hold the whitespace. - var wsNode = cursorNode.ownerDocument.createTextNode(ws); - this.cursorRowNode_.insertBefore(wsNode, cursorNode.nextSibling); - this.cursorNode_ = cursorNode = wsNode; - this.cursorOffset_ = offset = -reverseOffset; - cursorNodeText = ws; - } - - // We now know for sure that we're at the last character of the cursor node. - reverseOffset = 0; - } - - if (this.textAttributes.matchesContainer(cursorNode)) { - // The new text can be placed directly in the cursor node. - if (reverseOffset == 0) { - cursorNode.textContent = cursorNodeText + str; - } else if (offset == 0) { - cursorNode.textContent = str + cursorNodeText; - } else { - cursorNode.textContent = - hterm.TextAttributes.nodeSubstr(cursorNode, 0, offset) + - str + hterm.TextAttributes.nodeSubstr(cursorNode, offset); - } - - this.cursorOffset_ += strWidth; - return; - } - - // The cursor node is the wrong style for the new text. If we're at the - // beginning or end of the cursor node, then the adjacent node is also a - // potential candidate. - - if (offset == 0) { - // At the beginning of the cursor node, the check the previous sibling. - var previousSibling = cursorNode.previousSibling; - if (previousSibling && - this.textAttributes.matchesContainer(previousSibling)) { - previousSibling.textContent += str; - this.cursorNode_ = previousSibling; - this.cursorOffset_ = lib.wc.strWidth(previousSibling.textContent); - return; - } - - var newNode = this.textAttributes.createContainer(str); - this.cursorRowNode_.insertBefore(newNode, cursorNode); - this.cursorNode_ = newNode; - this.cursorOffset_ = strWidth; - return; - } - - if (reverseOffset == 0) { - // At the end of the cursor node, the check the next sibling. - var nextSibling = cursorNode.nextSibling; - if (nextSibling && - this.textAttributes.matchesContainer(nextSibling)) { - nextSibling.textContent = str + nextSibling.textContent; - this.cursorNode_ = nextSibling; - this.cursorOffset_ = lib.wc.strWidth(str); - return; - } - - var newNode = this.textAttributes.createContainer(str); - this.cursorRowNode_.insertBefore(newNode, nextSibling); - this.cursorNode_ = newNode; - // We specifically need to include any missing whitespace here, since it's - // going in a new node. - this.cursorOffset_ = hterm.TextAttributes.nodeWidth(newNode); - return; - } - - // Worst case, we're somewhere in the middle of the cursor node. We'll - // have to split it into two nodes and insert our new container in between. - this.splitNode_(cursorNode, offset); - var newNode = this.textAttributes.createContainer(str); - this.cursorRowNode_.insertBefore(newNode, cursorNode.nextSibling); - this.cursorNode_ = newNode; - this.cursorOffset_ = strWidth; -}; - -/** - * Overwrite the text at the current cursor position. - * - * You must call maybeClipCurrentRow() after in order to clip overflowed - * text and clamp the cursor. - * - * It is also up to the caller to properly maintain the line overflow state - * using hterm.Screen..commitLineOverflow(). - */ -hterm.Screen.prototype.overwriteString = function(str) { - var maxLength = this.columnCount_ - this.cursorPosition.column; - if (!maxLength) - return [str]; - - var width = lib.wc.strWidth(str); - if (this.textAttributes.matchesContainer(this.cursorNode_) && - this.cursorNode_.textContent.substr(this.cursorOffset_) == str) { - // This overwrite would be a no-op, just move the cursor and return. - this.cursorOffset_ += width; - this.cursorPosition.column += width; - return; - } - - this.deleteChars(Math.min(width, maxLength)); - this.insertString(str); -}; - -/** - * Forward-delete one or more characters at the current cursor position. - * - * Text to the right of the deleted characters is shifted left. Only affects - * characters on the same row as the cursor. - * - * @param {integer} count The column width of characters to delete. This is - * clamped to the column width minus the cursor column. - * @return {integer} The column width of the characters actually deleted. - */ -hterm.Screen.prototype.deleteChars = function(count) { - var node = this.cursorNode_; - var offset = this.cursorOffset_; - - var currentCursorColumn = this.cursorPosition.column; - count = Math.min(count, this.columnCount_ - currentCursorColumn); - if (!count) - return 0; - - var rv = count; - var startLength, endLength; - - while (node && count) { - startLength = hterm.TextAttributes.nodeWidth(node); - node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset) + - hterm.TextAttributes.nodeSubstr(node, offset + count); - endLength = hterm.TextAttributes.nodeWidth(node); - count -= startLength - endLength; - if (offset < startLength && endLength && startLength == endLength) { - // No characters were deleted when there should be. We're probably trying - // to delete one column width from a wide character node. We remove the - // wide character node here and replace it with a single space. - var spaceNode = this.textAttributes.createContainer(' '); - node.parentNode.insertBefore(spaceNode, node.nextSibling); - node.textContent = ''; - endLength = 0; - count -= 1; - } - - var nextNode = node.nextSibling; - if (endLength == 0 && node != this.cursorNode_) { - node.parentNode.removeChild(node); - } - node = nextNode; - offset = 0; - } - - // Remove this.cursorNode_ if it is an empty non-text node. - if (this.cursorNode_.nodeType != 3 && !this.cursorNode_.textContent) { - var cursorNode = this.cursorNode_; - if (cursorNode.previousSibling) { - this.cursorNode_ = cursorNode.previousSibling; - this.cursorOffset_ = hterm.TextAttributes.nodeWidth( - cursorNode.previousSibling); - } else if (cursorNode.nextSibling) { - this.cursorNode_ = cursorNode.nextSibling; - this.cursorOffset_ = 0; - } else { - var emptyNode = this.cursorRowNode_.ownerDocument.createTextNode(''); - this.cursorRowNode_.appendChild(emptyNode); - this.cursorNode_ = emptyNode; - this.cursorOffset_ = 0; - } - this.cursorRowNode_.removeChild(cursorNode); - } - - return rv; -}; - -/** - * Finds first X-ROW of a line containing specified X-ROW. - * Used to support line overflow. - * - * @param {Node} row X-ROW to begin search for first row of line. - * @return {Node} The X-ROW that is at the beginning of the line. - **/ -hterm.Screen.prototype.getLineStartRow_ = function(row) { - while (row.previousSibling && - row.previousSibling.hasAttribute('line-overflow')) { - row = row.previousSibling; - } - return row; -}; - -/** - * Gets text of a line beginning with row. - * Supports line overflow. - * - * @param {Node} row First X-ROW of line. - * @return {string} Text content of line. - **/ -hterm.Screen.prototype.getLineText_ = function(row) { - var rowText = ""; - while (row) { - rowText += row.textContent; - if (row.hasAttribute('line-overflow')) { - row = row.nextSibling; - } else { - break; - } - } - return rowText; -}; - -/** - * Returns X-ROW that is ancestor of the node. - * - * @param {Node} node Node to get X-ROW ancestor for. - * @return {Node} X-ROW ancestor of node, or null if not found. - **/ -hterm.Screen.prototype.getXRowAncestor_ = function(node) { - while (node) { - if (node.nodeName === 'X-ROW') - break; - node = node.parentNode; - } - return node; -}; - -/** - * Returns position within line of character at offset within node. - * Supports line overflow. - * - * @param {Node} row X-ROW at beginning of line. - * @param {Node} node Node to get position of. - * @param {integer} offset Offset into node. - * - * @return {integer} Position within line of character at offset within node. - **/ -hterm.Screen.prototype.getPositionWithOverflow_ = function(row, node, offset) { - if (!node) - return -1; - var ancestorRow = this.getXRowAncestor_(node); - if (!ancestorRow) - return -1; - var position = 0; - while (ancestorRow != row) { - position += hterm.TextAttributes.nodeWidth(row); - if (row.hasAttribute('line-overflow') && row.nextSibling) { - row = row.nextSibling; - } else { - return -1; - } - } - return position + this.getPositionWithinRow_(row, node, offset); -}; - -/** - * Returns position within row of character at offset within node. - * Does not support line overflow. - * - * @param {Node} row X-ROW to get position within. - * @param {Node} node Node to get position for. - * @param {integer} offset Offset within node to get position for. - * @return {integer} Position within row of character at offset within node. - **/ -hterm.Screen.prototype.getPositionWithinRow_ = function(row, node, offset) { - if (node.parentNode != row) { - // If we traversed to the top node, then there's nothing to find here. - if (node.parentNode == null) - return -1; - - return this.getPositionWithinRow_(node.parentNode, node, offset) + - this.getPositionWithinRow_(row, node.parentNode, 0); - } - var position = 0; - for (var i = 0; i < row.childNodes.length; i++) { - var currentNode = row.childNodes[i]; - if (currentNode == node) - return position + offset; - position += hterm.TextAttributes.nodeWidth(currentNode); - } - return -1; -}; - -/** - * Returns the node and offset corresponding to position within line. - * Supports line overflow. - * - * @param {Node} row X-ROW at beginning of line. - * @param {integer} position Position within line to retrieve node and offset. - * @return {Array} Two element array containing node and offset respectively. - **/ -hterm.Screen.prototype.getNodeAndOffsetWithOverflow_ = function(row, position) { - while (row && position > hterm.TextAttributes.nodeWidth(row)) { - if (row.hasAttribute('line-overflow') && row.nextSibling) { - position -= hterm.TextAttributes.nodeWidth(row); - row = row.nextSibling; - } else { - return -1; - } - } - return this.getNodeAndOffsetWithinRow_(row, position); -}; - -/** - * Returns the node and offset corresponding to position within row. - * Does not support line overflow. - * - * @param {Node} row X-ROW to get position within. - * @param {integer} position Position within row to retrieve node and offset. - * @return {Array} Two element array containing node and offset respectively. - **/ -hterm.Screen.prototype.getNodeAndOffsetWithinRow_ = function(row, position) { - for (var i = 0; i < row.childNodes.length; i++) { - var node = row.childNodes[i]; - var nodeTextWidth = hterm.TextAttributes.nodeWidth(node); - if (position <= nodeTextWidth) { - if (node.nodeName === 'SPAN') { - /** Drill down to node contained by SPAN. **/ - return this.getNodeAndOffsetWithinRow_(node, position); - } else { - return [node, position]; - } - } - position -= nodeTextWidth; - } - return null; -}; - -/** - * Returns the node and offset corresponding to position within line. - * Supports line overflow. - * - * @param {Node} row X-ROW at beginning of line. - * @param {integer} start Start position of range within line. - * @param {integer} end End position of range within line. - * @param {Range} range Range to modify. - **/ -hterm.Screen.prototype.setRange_ = function(row, start, end, range) { - var startNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, start); - if (startNodeAndOffset == null) - return; - var endNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, end); - if (endNodeAndOffset == null) - return; - range.setStart(startNodeAndOffset[0], startNodeAndOffset[1]); - range.setEnd(endNodeAndOffset[0], endNodeAndOffset[1]); -}; - -/** - * Expands selection to surround URLs. - * - * @param {Selection} selection Selection to expand. - **/ -hterm.Screen.prototype.expandSelection = function(selection) { - if (!selection) - return; - - var range = selection.getRangeAt(0); - if (!range || range.toString().match(/\s/)) - return; - - var row = this.getLineStartRow_(this.getXRowAncestor_(range.startContainer)); - if (!row) - return; - - var startPosition = this.getPositionWithOverflow_(row, - range.startContainer, - range.startOffset); - if (startPosition == -1) - return; - var endPosition = this.getPositionWithOverflow_(row, - range.endContainer, - range.endOffset); - if (endPosition == -1) - return; - - // Use the user configurable match settings. - var leftMatch = this.wordBreakMatchLeft; - var rightMatch = this.wordBreakMatchRight; - var insideMatch = this.wordBreakMatchMiddle; - - //Move start to the left. - var rowText = this.getLineText_(row); - var lineUpToRange = lib.wc.substring(rowText, 0, endPosition); - var leftRegularExpression = new RegExp(leftMatch + insideMatch + "$"); - var expandedStart = lineUpToRange.search(leftRegularExpression); - if (expandedStart == -1 || expandedStart > startPosition) - return; - - //Move end to the right. - var lineFromRange = lib.wc.substring(rowText, startPosition, - lib.wc.strWidth(rowText)); - var rightRegularExpression = new RegExp("^" + insideMatch + rightMatch); - var found = lineFromRange.match(rightRegularExpression); - if (!found) - return; - var expandedEnd = startPosition + lib.wc.strWidth(found[0]); - if (expandedEnd == -1 || expandedEnd < endPosition) - return; - - this.setRange_(row, expandedStart, expandedEnd, range); - selection.addRange(range); -}; -// SOURCE FILE: hterm/js/hterm_scrollport.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.f', 'hterm.PubSub', 'hterm.Size'); - -/** - * A 'viewport' view of fixed-height rows with support for selection and - * copy-to-clipboard. - * - * 'Viewport' in this case means that only the visible rows are in the DOM. - * If the rowProvider has 100,000 rows, but the ScrollPort is only 25 rows - * tall, then only 25 dom nodes are created. The ScrollPort will ask the - * RowProvider to create new visible rows on demand as they are scrolled in - * to the visible area. - * - * This viewport is designed so that select and copy-to-clipboard still works, - * even when all or part of the selection is scrolled off screen. - * - * Note that the X11 mouse clipboard does not work properly when all or part - * of the selection is off screen. It would be difficult to fix this without - * adding significant overhead to pathologically large selection cases. - * - * The RowProvider should return rows rooted by the custom tag name 'x-row'. - * This ensures that we can quickly assign the correct display height - * to the rows with css. - * - * @param {RowProvider} rowProvider An object capable of providing rows as - * raw text or row nodes. - */ -hterm.ScrollPort = function(rowProvider) { - hterm.PubSub.addBehavior(this); - - this.rowProvider_ = rowProvider; - - // SWAG the character size until we can measure it. - this.characterSize = new hterm.Size(10, 10); - - // DOM node used for character measurement. - this.ruler_ = null; - - this.selection = new hterm.ScrollPort.Selection(this); - - // A map of rowIndex => rowNode for each row that is drawn as part of a - // pending redraw_() call. Null if there is no pending redraw_ call. - this.currentRowNodeCache_ = null; - - // A map of rowIndex => rowNode for each row that was drawn as part of the - // previous redraw_() call. - this.previousRowNodeCache_ = {}; - - // Used during scroll events to detect when the underlying cause is a resize. - this.lastScreenWidth_ = null; - this.lastScreenHeight_ = null; - - // True if the user should be allowed to select text in the terminal. - // This is disabled when the host requests mouse drag events so that we don't - // end up with two notions of selection. - this.selectionEnabled_ = true; - - // The last row count returned by the row provider, re-populated during - // syncScrollHeight(). - this.lastRowCount_ = 0; - - // The scroll wheel pixel delta multiplier to increase/decrease - // the scroll speed of mouse wheel events. See: https://goo.gl/sXelnq - this.scrollWheelMultiplier_ = 1; - - // The last touch events we saw to support touch based scrolling. Indexed - // by touch identifier since we can have more than one touch active. - this.lastTouch_ = {}; - - /** - * True if the last scroll caused the scrollport to show the final row. - */ - this.isScrolledEnd = true; - - /** - * A guess at the current scrollbar width, fixed in resize(). - */ - this.currentScrollbarWidthPx = 16; - - /** - * Whether the ctrl-v key on the screen should paste. - */ - this.ctrlVPaste = false; - - this.div_ = null; - this.document_ = null; - - // Collection of active timeout handles. - this.timeouts_ = {}; - - this.observers_ = {}; - - this.DEBUG_ = false; -} - -/** - * Proxy for the native selection object which understands how to walk up the - * DOM to find the containing row node and sort out which comes first. - * - * @param {hterm.ScrollPort} scrollPort The parent hterm.ScrollPort instance. - */ -hterm.ScrollPort.Selection = function(scrollPort) { - this.scrollPort_ = scrollPort; - - /** - * The row containing the start of the selection. - * - * This may be partially or fully selected. It may be the selection anchor - * or the focus, but its rowIndex is guaranteed to be less-than-or-equal-to - * that of the endRow. - * - * If only one row is selected then startRow == endRow. If there is no - * selection or the selection is collapsed then startRow == null. - */ - this.startRow = null; - - /** - * The row containing the end of the selection. - * - * This may be partially or fully selected. It may be the selection anchor - * or the focus, but its rowIndex is guaranteed to be greater-than-or-equal-to - * that of the startRow. - * - * If only one row is selected then startRow == endRow. If there is no - * selection or the selection is collapsed then startRow == null. - */ - this.endRow = null; - - /** - * True if startRow != endRow. - */ - this.isMultiline = null; - - /** - * True if the selection is just a point rather than a range. - */ - this.isCollapsed = null; -}; - -/** - * Given a list of DOM nodes and a container, return the DOM node that - * is first according to a depth-first search. - * - * Returns null if none of the children are found. - */ -hterm.ScrollPort.Selection.prototype.findFirstChild = function( - parent, childAry) { - var node = parent.firstChild; - - while (node) { - if (childAry.indexOf(node) != -1) - return node; - - if (node.childNodes.length) { - var rv = this.findFirstChild(node, childAry); - if (rv) - return rv; - } - - node = node.nextSibling; - } - - return null; -}; - -/** - * Synchronize this object with the current DOM selection. - * - * This is a one-way synchronization, the DOM selection is copied to this - * object, not the other way around. - */ -hterm.ScrollPort.Selection.prototype.sync = function() { - var self = this; - - // The dom selection object has no way to tell which nodes come first in - // the document, so we have to figure that out. - // - // This function is used when we detect that the "anchor" node is first. - function anchorFirst() { - self.startRow = anchorRow; - self.startNode = selection.anchorNode; - self.startOffset = selection.anchorOffset; - self.endRow = focusRow; - self.endNode = selection.focusNode; - self.endOffset = selection.focusOffset; - } - - // This function is used when we detect that the "focus" node is first. - function focusFirst() { - self.startRow = focusRow; - self.startNode = selection.focusNode; - self.startOffset = selection.focusOffset; - self.endRow = anchorRow; - self.endNode = selection.anchorNode; - self.endOffset = selection.anchorOffset; - } - - var selection = this.scrollPort_.getDocument().getSelection(); - - this.startRow = null; - this.endRow = null; - this.isMultiline = null; - this.isCollapsed = !selection || selection.isCollapsed; - - if (this.isCollapsed) - return; - - var anchorRow = selection.anchorNode; - while (anchorRow && !('rowIndex' in anchorRow)) { - anchorRow = anchorRow.parentNode; - } - - if (!anchorRow) { - console.error('Selection anchor is not rooted in a row node: ' + - selection.anchorNode.nodeName); - return; - } - - var focusRow = selection.focusNode; - while (focusRow && !('rowIndex' in focusRow)) { - focusRow = focusRow.parentNode; - } - - if (!focusRow) { - console.error('Selection focus is not rooted in a row node: ' + - selection.focusNode.nodeName); - return; - } - - if (anchorRow.rowIndex < focusRow.rowIndex) { - anchorFirst(); - - } else if (anchorRow.rowIndex > focusRow.rowIndex) { - focusFirst(); - - } else if (selection.focusNode == selection.anchorNode) { - if (selection.anchorOffset < selection.focusOffset) { - anchorFirst(); - } else { - focusFirst(); - } - - } else { - // The selection starts and ends in the same row, but isn't contained all - // in a single node. - var firstNode = this.findFirstChild( - anchorRow, [selection.anchorNode, selection.focusNode]); - - if (!firstNode) - throw new Error('Unexpected error syncing selection.'); - - if (firstNode == selection.anchorNode) { - anchorFirst(); - } else { - focusFirst(); - } - } - - this.isMultiline = anchorRow.rowIndex != focusRow.rowIndex; -}; - - -/** - * Turn a div into this hterm.ScrollPort. - */ -hterm.ScrollPort.prototype.decorate = function(div) { - this.div_ = div; - - this.iframe_ = div.ownerDocument.createElement('iframe'); - this.iframe_.style.cssText = ( - 'border: 0;' + - 'height: 100%;' + - 'position: absolute;' + - 'width: 100%'); - - // Set the iframe src to # in FF. Otherwise when the frame's - // load event fires in FF it clears out the content of the iframe. - if ('mozInnerScreenX' in window) // detect a FF only property - this.iframe_.src = '#'; - - div.appendChild(this.iframe_); - - this.iframe_.contentWindow.addEventListener('resize', - this.onResize_.bind(this)); - - var doc = this.document_ = this.iframe_.contentDocument; - doc.body.style.cssText = ( - 'margin: 0px;' + - 'padding: 0px;' + - 'height: 100%;' + - 'width: 100%;' + - 'overflow: hidden;' + - 'cursor: var(--hterm-mouse-cursor-style);' + - '-webkit-user-select: none;' + - '-moz-user-select: none;'); - - if (this.DEBUG_) { - // When we're debugging we add padding to the body so that the offscreen - // elements are visible. - this.document_.body.style.paddingTop = - this.document_.body.style.paddingBottom = - 'calc(var(--hterm-charsize-height) * 3)'; - } - - var style = doc.createElement('style'); - style.textContent = ( - 'x-row {' + - ' display: block;' + - ' height: var(--hterm-charsize-height);' + - ' line-height: var(--hterm-charsize-height);' + - '}'); - doc.head.appendChild(style); - - this.userCssLink_ = doc.createElement('link'); - this.userCssLink_.setAttribute('rel', 'stylesheet'); - - this.userCssText_ = doc.createElement('style'); - doc.head.appendChild(this.userCssText_); - - // TODO(rginda): Sorry, this 'screen_' isn't the same thing as hterm.Screen - // from screen.js. I need to pick a better name for one of them to avoid - // the collision. - // We make this field editable even though we don't actually allow anything - // to be edited here so that Chrome will do the right thing with virtual - // keyboards and IMEs. But make sure we turn off all the input helper logic - // that doesn't make sense here, and might inadvertently mung or save input. - // Some of these attributes are standard while others are browser specific, - // but should be safely ignored by other browsers. - this.screen_ = doc.createElement('x-screen'); - this.screen_.setAttribute('contenteditable', 'true'); - this.screen_.setAttribute('spellcheck', 'false'); - this.screen_.setAttribute('autocomplete', 'off'); - this.screen_.setAttribute('autocorrect', 'off'); - this.screen_.setAttribute('autocaptalize', 'none'); - this.screen_.setAttribute('role', 'textbox'); - this.screen_.setAttribute('tabindex', '-1'); - this.screen_.style.cssText = ( - 'caret-color: transparent;' + - 'display: block;' + - 'font-family: monospace;' + - 'font-size: 15px;' + - 'font-variant-ligatures: none;' + - 'height: 100%;' + - 'overflow-y: scroll; overflow-x: hidden;' + - 'white-space: pre;' + - 'width: 100%;' + - 'outline: none !important'); - - doc.body.appendChild(this.screen_); - - this.screen_.addEventListener('scroll', this.onScroll_.bind(this)); - this.screen_.addEventListener('wheel', this.onScrollWheel_.bind(this)); - this.screen_.addEventListener('touchstart', this.onTouch_.bind(this)); - this.screen_.addEventListener('touchmove', this.onTouch_.bind(this)); - this.screen_.addEventListener('touchend', this.onTouch_.bind(this)); - this.screen_.addEventListener('touchcancel', this.onTouch_.bind(this)); - this.screen_.addEventListener('copy', this.onCopy_.bind(this)); - this.screen_.addEventListener('paste', this.onPaste_.bind(this)); - // Disable drag & drop of text/content. We don't handle it at all (yet?), - // and the default behavior just confuses hterm. - this.screen_.addEventListener('drop', function(e) { - e.preventDefault(); - return false; - }); - - doc.body.addEventListener('keydown', this.onBodyKeyDown_.bind(this)); - - // This is the main container for the fixed rows. - this.rowNodes_ = doc.createElement('div'); - this.rowNodes_.id = 'hterm:row-nodes'; - this.rowNodes_.style.cssText = ( - 'display: block;' + - 'position: fixed;' + - 'overflow: hidden;' + - '-webkit-user-select: text;' + - '-moz-user-select: text;'); - this.screen_.appendChild(this.rowNodes_); - - // Two nodes to hold offscreen text during the copy event. - this.topSelectBag_ = doc.createElement('x-select-bag'); - this.topSelectBag_.style.cssText = ( - 'display: block;' + - 'overflow: hidden;' + - 'height: var(--hterm-charsize-height);' + - 'white-space: pre;'); - - this.bottomSelectBag_ = this.topSelectBag_.cloneNode(); - - // Nodes above the top fold and below the bottom fold are hidden. They are - // only used to hold rows that are part of the selection but are currently - // scrolled off the top or bottom of the visible range. - this.topFold_ = doc.createElement('x-fold'); - this.topFold_.id = 'hterm:top-fold-for-row-selection'; - this.topFold_.style.cssText = 'display: block;'; - this.rowNodes_.appendChild(this.topFold_); - - this.bottomFold_ = this.topFold_.cloneNode(); - this.bottomFold_.id = 'hterm:bottom-fold-for-row-selection'; - this.rowNodes_.appendChild(this.bottomFold_); - - // This hidden div accounts for the vertical space that would be consumed by - // all the rows in the buffer if they were visible. It's what causes the - // scrollbar to appear on the 'x-screen', and it moves within the screen when - // the scrollbar is moved. - // - // It is set 'visibility: hidden' to keep the browser from trying to include - // it in the selection when a user 'drag selects' upwards (drag the mouse to - // select and scroll at the same time). Without this, the selection gets - // out of whack. - this.scrollArea_ = doc.createElement('div'); - this.scrollArea_.id = 'hterm:scrollarea'; - this.scrollArea_.style.cssText = 'visibility: hidden'; - this.screen_.appendChild(this.scrollArea_); - - // This svg element is used to detect when the browser is zoomed. It must be - // placed in the outermost document for currentScale to be correct. - // TODO(rginda): This means that hterm nested in an iframe will not correctly - // detect browser zoom level. We should come up with a better solution. - // Note: This must be http:// else Chrome cannot create the element correctly. - var xmlns = 'http://www.w3.org/2000/svg'; - this.svg_ = this.div_.ownerDocument.createElementNS(xmlns, 'svg'); - this.svg_.id = 'hterm:zoom-detector'; - this.svg_.setAttribute('xmlns', xmlns); - this.svg_.setAttribute('version', '1.1'); - this.svg_.style.cssText = ( - 'position: absolute;' + - 'top: 0;' + - 'left: 0;' + - 'visibility: hidden'); - - - // We send focus to this element just before a paste happens, so we can - // capture the pasted text and forward it on to someone who cares. - this.pasteTarget_ = doc.createElement('textarea'); - this.pasteTarget_.id = 'hterm:ctrl-v-paste-target'; - this.pasteTarget_.setAttribute('tabindex', '-1'); - this.pasteTarget_.style.cssText = ( - 'position: absolute;' + - 'height: 1px;' + - 'width: 1px;' + - 'left: 0px; ' + - 'bottom: 0px;' + - 'opacity: 0'); - this.pasteTarget_.contentEditable = true; - - this.screen_.appendChild(this.pasteTarget_); - this.pasteTarget_.addEventListener( - 'textInput', this.handlePasteTargetTextInput_.bind(this)); - - this.resize(); -}; - -/** - * Select the font-family and font-smoothing for this scrollport. - * - * @param {string} fontFamily Value of the CSS 'font-family' to use for this - * scrollport. Should be a monospace font. - * @param {string} opt_smoothing Optional value for '-webkit-font-smoothing'. - * Defaults to an empty string if not specified. - */ -hterm.ScrollPort.prototype.setFontFamily = function(fontFamily, opt_smoothing) { - this.screen_.style.fontFamily = fontFamily; - if (opt_smoothing) { - this.screen_.style.webkitFontSmoothing = opt_smoothing; - } else { - this.screen_.style.webkitFontSmoothing = ''; - } - - this.syncCharacterSize(); -}; - -hterm.ScrollPort.prototype.getFontFamily = function() { - return this.screen_.style.fontFamily; -}; - -/** - * Set a custom stylesheet to include in the scrollport. - * - * Defaults to null, meaning no custom css is loaded. Set it back to null or - * the empty string to remove a previously applied custom css. - */ -hterm.ScrollPort.prototype.setUserCssUrl = function(url) { - if (url) { - this.userCssLink_.setAttribute('href', url); - - if (!this.userCssLink_.parentNode) - this.document_.head.appendChild(this.userCssLink_); - } else if (this.userCssLink_.parentNode) { - this.document_.head.removeChild(this.userCssLink_); - } -}; - -hterm.ScrollPort.prototype.setUserCssText = function(text) { - this.userCssText_.textContent = text; -}; - -hterm.ScrollPort.prototype.focus = function() { - this.iframe_.focus(); - this.screen_.focus(); -}; - -hterm.ScrollPort.prototype.getForegroundColor = function() { - return this.screen_.style.color; -}; - -hterm.ScrollPort.prototype.setForegroundColor = function(color) { - this.screen_.style.color = color; -}; - -hterm.ScrollPort.prototype.getBackgroundColor = function() { - return this.screen_.style.backgroundColor; -}; - -hterm.ScrollPort.prototype.setBackgroundColor = function(color) { - this.screen_.style.backgroundColor = color; -}; - -hterm.ScrollPort.prototype.setBackgroundImage = function(image) { - this.screen_.style.backgroundImage = image; -}; - -hterm.ScrollPort.prototype.setBackgroundSize = function(size) { - this.screen_.style.backgroundSize = size; -}; - -hterm.ScrollPort.prototype.setBackgroundPosition = function(position) { - this.screen_.style.backgroundPosition = position; -}; - -hterm.ScrollPort.prototype.setCtrlVPaste = function(ctrlVPaste) { - this.ctrlVPaste = ctrlVPaste; -}; - -/** - * Get the usable size of the scrollport screen. - * - * The width will not include the scrollbar width. - */ -hterm.ScrollPort.prototype.getScreenSize = function() { - var size = hterm.getClientSize(this.screen_); - return { - height: size.height, - width: size.width - this.currentScrollbarWidthPx - }; -}; - -/** - * Get the usable width of the scrollport screen. - * - * This the widget width minus scrollbar width. - */ -hterm.ScrollPort.prototype.getScreenWidth = function() { - return this.getScreenSize().width ; -}; - -/** - * Get the usable height of the scrollport screen. - */ -hterm.ScrollPort.prototype.getScreenHeight = function() { - return this.getScreenSize().height; -}; - -/** - * Return the document that holds the visible rows of this hterm.ScrollPort. - */ -hterm.ScrollPort.prototype.getDocument = function() { - return this.document_; -}; - -/** - * Returns the x-screen element that holds the rows of this hterm.ScrollPort. - */ -hterm.ScrollPort.prototype.getScreenNode = function() { - return this.screen_; -}; - -/** - * Clear out any cached rowNodes. - */ -hterm.ScrollPort.prototype.resetCache = function() { - this.currentRowNodeCache_ = null; - this.previousRowNodeCache_ = {}; -}; - -/** - * Change the current rowProvider. - * - * This will clear the row cache and cause a redraw. - * - * @param {Object} rowProvider An object capable of providing the rows - * in this hterm.ScrollPort. - */ -hterm.ScrollPort.prototype.setRowProvider = function(rowProvider) { - this.resetCache(); - this.rowProvider_ = rowProvider; - this.scheduleRedraw(); -}; - -/** - * Inform the ScrollPort that the root DOM nodes for some or all of the visible - * rows are no longer valid. - * - * Specifically, this should be called if this.rowProvider_.getRowNode() now - * returns an entirely different node than it did before. It does not - * need to be called if the content of a row node is the only thing that - * changed. - * - * This skips some of the overhead of a full redraw, but should not be used - * in cases where the scrollport has been scrolled, or when the row count has - * changed. - */ -hterm.ScrollPort.prototype.invalidate = function() { - var node = this.topFold_.nextSibling; - while (node != this.bottomFold_) { - var nextSibling = node.nextSibling; - node.parentElement.removeChild(node); - node = nextSibling; - } - - this.previousRowNodeCache_ = null; - var topRowIndex = this.getTopRowIndex(); - var bottomRowIndex = this.getBottomRowIndex(topRowIndex); - - this.drawVisibleRows_(topRowIndex, bottomRowIndex); -}; - -hterm.ScrollPort.prototype.scheduleInvalidate = function() { - if (this.timeouts_.invalidate) - return; - - var self = this; - this.timeouts_.invalidate = setTimeout(function () { - delete self.timeouts_.invalidate; - self.invalidate(); - }, 0); -}; - -/** - * Set the font size of the ScrollPort. - */ -hterm.ScrollPort.prototype.setFontSize = function(px) { - this.screen_.style.fontSize = px + 'px'; - this.syncCharacterSize(); -}; - -/** - * Return the current font size of the ScrollPort. - */ -hterm.ScrollPort.prototype.getFontSize = function() { - return parseInt(this.screen_.style.fontSize); -}; - -/** - * Measure the size of a single character in pixels. - * - * @param {string} opt_weight The font weight to measure, or 'normal' if - * omitted. - * @return {hterm.Size} A new hterm.Size object. - */ -hterm.ScrollPort.prototype.measureCharacterSize = function(opt_weight) { - // Number of lines used to average the height of a single character. - var numberOfLines = 100; - // Number of chars per line used to average the width of a single character. - var lineLength = 100; - - if (!this.ruler_) { - this.ruler_ = this.document_.createElement('div'); - this.ruler_.id = 'hterm:ruler-character-size'; - this.ruler_.style.cssText = ( - 'position: absolute;' + - 'top: 0;' + - 'left: 0;' + - 'visibility: hidden;' + - 'height: auto !important;' + - 'width: auto !important;'); - - // We need to put the text in a span to make the size calculation - // work properly in Firefox - this.rulerSpan_ = this.document_.createElement('span'); - this.rulerSpan_.id = 'hterm:ruler-span-workaround'; - this.rulerSpan_.innerHTML = - ('X'.repeat(lineLength) + '\r').repeat(numberOfLines); - this.ruler_.appendChild(this.rulerSpan_); - - this.rulerBaseline_ = this.document_.createElement('span'); - this.rulerSpan_.id = 'hterm:ruler-baseline'; - // We want to collapse it on the baseline - this.rulerBaseline_.style.fontSize = '0px'; - this.rulerBaseline_.textContent = 'X'; - } - - this.rulerSpan_.style.fontWeight = opt_weight || ''; - - this.rowNodes_.appendChild(this.ruler_); - var rulerSize = hterm.getClientSize(this.rulerSpan_); - - var size = new hterm.Size(rulerSize.width / lineLength, - rulerSize.height / numberOfLines); - - this.ruler_.appendChild(this.rulerBaseline_); - size.baseline = this.rulerBaseline_.offsetTop; - this.ruler_.removeChild(this.rulerBaseline_); - - this.rowNodes_.removeChild(this.ruler_); - - this.div_.ownerDocument.body.appendChild(this.svg_); - size.zoomFactor = this.svg_.currentScale; - this.div_.ownerDocument.body.removeChild(this.svg_); - - return size; -}; - -/** - * Synchronize the character size. - * - * This will re-measure the current character size and adjust the height - * of an x-row to match. - */ -hterm.ScrollPort.prototype.syncCharacterSize = function() { - this.characterSize = this.measureCharacterSize(); - - this.resize(); -}; - -/** - * Reset dimensions and visible row count to account for a change in the - * dimensions of the 'x-screen'. - */ -hterm.ScrollPort.prototype.resize = function() { - this.currentScrollbarWidthPx = hterm.getClientWidth(this.screen_) - - this.screen_.clientWidth; - - this.syncScrollHeight(); - this.syncRowNodesDimensions_(); - - var self = this; - this.publish( - 'resize', { scrollPort: this }, - function() { - self.scrollRowToBottom(self.rowProvider_.getRowCount()); - self.scheduleRedraw(); - }); -}; - -/** - * Set the position and size of the row nodes element. - */ -hterm.ScrollPort.prototype.syncRowNodesDimensions_ = function() { - var screenSize = this.getScreenSize(); - - this.lastScreenWidth_ = screenSize.width; - this.lastScreenHeight_ = screenSize.height; - - // We don't want to show a partial row because it would be distracting - // in a terminal, so we floor any fractional row count. - this.visibleRowCount = lib.f.smartFloorDivide( - screenSize.height, this.characterSize.height); - - // Then compute the height of our integral number of rows. - var visibleRowsHeight = this.visibleRowCount * this.characterSize.height; - - // Then the difference between the screen height and total row height needs to - // be made up for as top margin. We need to record this value so it - // can be used later to determine the topRowIndex. - this.visibleRowTopMargin = 0; - this.visibleRowBottomMargin = screenSize.height - visibleRowsHeight; - - this.topFold_.style.marginBottom = this.visibleRowTopMargin + 'px'; - - - var topFoldOffset = 0; - var node = this.topFold_.previousSibling; - while (node) { - topFoldOffset += hterm.getClientHeight(node); - node = node.previousSibling; - } - - // Set the dimensions of the visible rows container. - this.rowNodes_.style.width = screenSize.width + 'px'; - this.rowNodes_.style.height = visibleRowsHeight + topFoldOffset + 'px'; - this.rowNodes_.style.left = this.screen_.offsetLeft + 'px'; - this.rowNodes_.style.top = this.screen_.offsetTop - topFoldOffset + 'px'; -}; - -hterm.ScrollPort.prototype.syncScrollHeight = function() { - // Resize the scroll area to appear as though it contains every row. - this.lastRowCount_ = this.rowProvider_.getRowCount(); - this.scrollArea_.style.height = (this.characterSize.height * - this.lastRowCount_ + - this.visibleRowTopMargin + - this.visibleRowBottomMargin + - 'px'); -}; - -/** - * Schedule a redraw to happen asynchronously. - * - * If this method is called multiple times before the redraw has a chance to - * run only one redraw occurs. - */ -hterm.ScrollPort.prototype.scheduleRedraw = function() { - if (this.timeouts_.redraw) - return; - - var self = this; - this.timeouts_.redraw = setTimeout(function () { - delete self.timeouts_.redraw; - self.redraw_(); - }, 0); -}; - -/** - * Redraw the current hterm.ScrollPort based on the current scrollbar position. - * - * When redrawing, we are careful to make sure that the rows that start or end - * the current selection are not touched in any way. Doing so would disturb - * the selection, and cleaning up after that would cause flashes at best and - * incorrect selection at worst. Instead, we modify the DOM around these nodes. - * We even stash the selection start/end outside of the visible area if - * they are not supposed to be visible in the hterm.ScrollPort. - */ -hterm.ScrollPort.prototype.redraw_ = function() { - this.resetSelectBags_(); - this.selection.sync(); - - this.syncScrollHeight(); - - this.currentRowNodeCache_ = {}; - - var topRowIndex = this.getTopRowIndex(); - var bottomRowIndex = this.getBottomRowIndex(topRowIndex); - - this.drawTopFold_(topRowIndex); - this.drawBottomFold_(bottomRowIndex); - this.drawVisibleRows_(topRowIndex, bottomRowIndex); - - this.syncRowNodesDimensions_(); - - this.previousRowNodeCache_ = this.currentRowNodeCache_; - this.currentRowNodeCache_ = null; - - this.isScrolledEnd = ( - this.getTopRowIndex() + this.visibleRowCount >= this.lastRowCount_); -}; - -/** - * Ensure that the nodes above the top fold are as they should be. - * - * If the selection start and/or end nodes are above the visible range - * of this hterm.ScrollPort then the dom will be adjusted so that they appear - * before the top fold (the first x-fold element, aka this.topFold). - * - * If not, the top fold will be the first element. - * - * It is critical that this method does not move the selection nodes. Doing - * so would clear the current selection. Instead, the rest of the DOM is - * adjusted around them. - */ -hterm.ScrollPort.prototype.drawTopFold_ = function(topRowIndex) { - if (!this.selection.startRow || - this.selection.startRow.rowIndex >= topRowIndex) { - // Selection is entirely below the top fold, just make sure the fold is - // the first child. - if (this.rowNodes_.firstChild != this.topFold_) - this.rowNodes_.insertBefore(this.topFold_, this.rowNodes_.firstChild); - - return; - } - - if (!this.selection.isMultiline || - this.selection.endRow.rowIndex >= topRowIndex) { - // Only the startRow is above the fold. - if (this.selection.startRow.nextSibling != this.topFold_) - this.rowNodes_.insertBefore(this.topFold_, - this.selection.startRow.nextSibling); - } else { - // Both rows are above the fold. - if (this.selection.endRow.nextSibling != this.topFold_) { - this.rowNodes_.insertBefore(this.topFold_, - this.selection.endRow.nextSibling); - } - - // Trim any intermediate lines. - while (this.selection.startRow.nextSibling != - this.selection.endRow) { - this.rowNodes_.removeChild(this.selection.startRow.nextSibling); - } - } - - while(this.rowNodes_.firstChild != this.selection.startRow) { - this.rowNodes_.removeChild(this.rowNodes_.firstChild); - } -}; - -/** - * Ensure that the nodes below the bottom fold are as they should be. - * - * If the selection start and/or end nodes are below the visible range - * of this hterm.ScrollPort then the dom will be adjusted so that they appear - * after the bottom fold (the second x-fold element, aka this.bottomFold). - * - * If not, the bottom fold will be the last element. - * - * It is critical that this method does not move the selection nodes. Doing - * so would clear the current selection. Instead, the rest of the DOM is - * adjusted around them. - */ -hterm.ScrollPort.prototype.drawBottomFold_ = function(bottomRowIndex) { - if (!this.selection.endRow || - this.selection.endRow.rowIndex <= bottomRowIndex) { - // Selection is entirely above the bottom fold, just make sure the fold is - // the last child. - if (this.rowNodes_.lastChild != this.bottomFold_) - this.rowNodes_.appendChild(this.bottomFold_); - - return; - } - - if (!this.selection.isMultiline || - this.selection.startRow.rowIndex <= bottomRowIndex) { - // Only the endRow is below the fold. - if (this.bottomFold_.nextSibling != this.selection.endRow) - this.rowNodes_.insertBefore(this.bottomFold_, - this.selection.endRow); - } else { - // Both rows are below the fold. - if (this.bottomFold_.nextSibling != this.selection.startRow) { - this.rowNodes_.insertBefore(this.bottomFold_, - this.selection.startRow); - } - - // Trim any intermediate lines. - while (this.selection.startRow.nextSibling != - this.selection.endRow) { - this.rowNodes_.removeChild(this.selection.startRow.nextSibling); - } - } - - while(this.rowNodes_.lastChild != this.selection.endRow) { - this.rowNodes_.removeChild(this.rowNodes_.lastChild); - } -}; - -/** - * Ensure that the rows between the top and bottom folds are as they should be. - * - * This method assumes that drawTopFold_() and drawBottomFold_() have already - * run, and that they have left any visible selection row (selection start - * or selection end) between the folds. - * - * It recycles DOM nodes from the previous redraw where possible, but will ask - * the rowSource to make new nodes if necessary. - * - * It is critical that this method does not move the selection nodes. Doing - * so would clear the current selection. Instead, the rest of the DOM is - * adjusted around them. - */ -hterm.ScrollPort.prototype.drawVisibleRows_ = function( - topRowIndex, bottomRowIndex) { - var self = this; - - // Keep removing nodes, starting with currentNode, until we encounter - // targetNode. Throws on failure. - function removeUntilNode(currentNode, targetNode) { - while (currentNode != targetNode) { - if (!currentNode) - throw 'Did not encounter target node'; - - if (currentNode == self.bottomFold_) - throw 'Encountered bottom fold before target node'; - - var deadNode = currentNode; - currentNode = currentNode.nextSibling; - deadNode.parentNode.removeChild(deadNode); - } - } - - // Shorthand for things we're going to use a lot. - var selectionStartRow = this.selection.startRow; - var selectionEndRow = this.selection.endRow; - var bottomFold = this.bottomFold_; - - // The node we're examining during the current iteration. - var node = this.topFold_.nextSibling; - - var targetDrawCount = Math.min(this.visibleRowCount, - this.rowProvider_.getRowCount()); - - for (var drawCount = 0; drawCount < targetDrawCount; drawCount++) { - var rowIndex = topRowIndex + drawCount; - - if (node == bottomFold) { - // We've hit the bottom fold, we need to insert a new row. - var newNode = this.fetchRowNode_(rowIndex); - if (!newNode) { - console.log("Couldn't fetch row index: " + rowIndex); - break; - } - - this.rowNodes_.insertBefore(newNode, node); - continue; - } - - if (node.rowIndex == rowIndex) { - // This node is in the right place, move along. - node = node.nextSibling; - continue; - } - - if (selectionStartRow && selectionStartRow.rowIndex == rowIndex) { - // The selection start row is supposed to be here, remove nodes until - // we find it. - removeUntilNode(node, selectionStartRow); - node = selectionStartRow.nextSibling; - continue; - } - - if (selectionEndRow && selectionEndRow.rowIndex == rowIndex) { - // The selection end row is supposed to be here, remove nodes until - // we find it. - removeUntilNode(node, selectionEndRow); - node = selectionEndRow.nextSibling; - continue; - } - - if (node == selectionStartRow || node == selectionEndRow) { - // We encountered the start/end of the selection, but we don't want it - // yet. Insert a new row instead. - var newNode = this.fetchRowNode_(rowIndex); - if (!newNode) { - console.log("Couldn't fetch row index: " + rowIndex); - break; - } - - this.rowNodes_.insertBefore(newNode, node); - continue; - } - - // There is nothing special about this node, but it's in our way. Replace - // it with the node that should be here. - var newNode = this.fetchRowNode_(rowIndex); - if (!newNode) { - console.log("Couldn't fetch row index: " + rowIndex); - break; - } - - if (node == newNode) { - node = node.nextSibling; - continue; - } - - this.rowNodes_.insertBefore(newNode, node); - if (!newNode.nextSibling) - debugger; - this.rowNodes_.removeChild(node); - node = newNode.nextSibling; - } - - if (node != this.bottomFold_) - removeUntilNode(node, bottomFold); -}; - -/** - * Empty out both select bags and remove them from the document. - * - * These nodes hold the text between the start and end of the selection - * when that text is otherwise off screen. They are filled out in the - * onCopy_ event. - */ -hterm.ScrollPort.prototype.resetSelectBags_ = function() { - if (this.topSelectBag_.parentNode) { - this.topSelectBag_.textContent = ''; - this.topSelectBag_.parentNode.removeChild(this.topSelectBag_); - } - - if (this.bottomSelectBag_.parentNode) { - this.bottomSelectBag_.textContent = ''; - this.bottomSelectBag_.parentNode.removeChild(this.bottomSelectBag_); - } -}; - -/** - * Place a row node in the cache of visible nodes. - * - * This method may only be used during a redraw_. - */ -hterm.ScrollPort.prototype.cacheRowNode_ = function(rowNode) { - this.currentRowNodeCache_[rowNode.rowIndex] = rowNode; -}; - -/** - * Fetch the row node for the given index. - * - * This will return a node from the cache if possible, or will request one - * from the RowProvider if not. - * - * If a redraw_ is in progress the row will be added to the current cache. - */ -hterm.ScrollPort.prototype.fetchRowNode_ = function(rowIndex) { - var node; - - if (this.previousRowNodeCache_ && rowIndex in this.previousRowNodeCache_) { - node = this.previousRowNodeCache_[rowIndex]; - } else { - node = this.rowProvider_.getRowNode(rowIndex); - } - - if (this.currentRowNodeCache_) - this.cacheRowNode_(node); - - return node; -}; - -/** - * Select all rows in the viewport. - */ -hterm.ScrollPort.prototype.selectAll = function() { - var firstRow; - - if (this.topFold_.nextSibling.rowIndex != 0) { - while (this.topFold_.previousSibling) { - this.rowNodes_.removeChild(this.topFold_.previousSibling); - } - - firstRow = this.fetchRowNode_(0); - this.rowNodes_.insertBefore(firstRow, this.topFold_); - this.syncRowNodesDimensions_(); - } else { - firstRow = this.topFold_.nextSibling; - } - - var lastRowIndex = this.rowProvider_.getRowCount() - 1; - var lastRow; - - if (this.bottomFold_.previousSibling.rowIndex != lastRowIndex) { - while (this.bottomFold_.nextSibling) { - this.rowNodes_.removeChild(this.bottomFold_.nextSibling); - } - - lastRow = this.fetchRowNode_(lastRowIndex); - this.rowNodes_.appendChild(lastRow); - } else { - lastRow = this.bottomFold_.previousSibling.rowIndex; - } - - var selection = this.document_.getSelection(); - selection.collapse(firstRow, 0); - selection.extend(lastRow, lastRow.childNodes.length); - - this.selection.sync(); -}; - -/** - * Return the maximum scroll position in pixels. - */ -hterm.ScrollPort.prototype.getScrollMax_ = function(e) { - return (hterm.getClientHeight(this.scrollArea_) + - this.visibleRowTopMargin + this.visibleRowBottomMargin - - hterm.getClientHeight(this.screen_)); -}; - -/** - * Scroll the given rowIndex to the top of the hterm.ScrollPort. - * - * @param {integer} rowIndex Index of the target row. - */ -hterm.ScrollPort.prototype.scrollRowToTop = function(rowIndex) { - this.syncScrollHeight(); - - this.isScrolledEnd = ( - rowIndex + this.visibleRowCount >= this.lastRowCount_); - - var scrollTop = rowIndex * this.characterSize.height + - this.visibleRowTopMargin; - - var scrollMax = this.getScrollMax_(); - if (scrollTop > scrollMax) - scrollTop = scrollMax; - - if (this.screen_.scrollTop == scrollTop) - return; - - this.screen_.scrollTop = scrollTop; - this.scheduleRedraw(); -}; - -/** - * Scroll the given rowIndex to the bottom of the hterm.ScrollPort. - * - * @param {integer} rowIndex Index of the target row. - */ -hterm.ScrollPort.prototype.scrollRowToBottom = function(rowIndex) { - this.syncScrollHeight(); - - this.isScrolledEnd = ( - rowIndex + this.visibleRowCount >= this.lastRowCount_); - - var scrollTop = rowIndex * this.characterSize.height + - this.visibleRowTopMargin + this.visibleRowBottomMargin; - scrollTop -= this.visibleRowCount * this.characterSize.height; - - if (scrollTop < 0) - scrollTop = 0; - - if (this.screen_.scrollTop == scrollTop) - return; - - this.screen_.scrollTop = scrollTop; -}; - -/** - * Return the row index of the first visible row. - * - * This is based on the scroll position. If a redraw_ is in progress this - * returns the row that *should* be at the top. - */ -hterm.ScrollPort.prototype.getTopRowIndex = function() { - return Math.round(this.screen_.scrollTop / this.characterSize.height); -}; - -/** - * Return the row index of the last visible row. - * - * This is based on the scroll position. If a redraw_ is in progress this - * returns the row that *should* be at the bottom. - */ -hterm.ScrollPort.prototype.getBottomRowIndex = function(topRowIndex) { - return topRowIndex + this.visibleRowCount - 1; -}; - -/** - * Handler for scroll events. - * - * The onScroll event fires when scrollArea's scrollTop property changes. This - * may be due to the user manually move the scrollbar, or a programmatic change. - */ -hterm.ScrollPort.prototype.onScroll_ = function(e) { - var screenSize = this.getScreenSize(); - if (screenSize.width != this.lastScreenWidth_ || - screenSize.height != this.lastScreenHeight_) { - // This event may also fire during a resize (but before the resize event!). - // This happens when the browser moves the scrollbar as part of the resize. - // In these cases, we want to ignore the scroll event and let onResize - // handle things. If we don't, then we end up scrolling to the wrong - // position after a resize. - this.resize(); - return; - } - - this.redraw_(); - this.publish('scroll', { scrollPort: this }); -}; - -/** - * Clients can override this if they want to hear scrollwheel events. - * - * Clients may call event.preventDefault() if they want to keep the scrollport - * from also handling the events. - */ -hterm.ScrollPort.prototype.onScrollWheel = function(e) {}; - -/** - * Handler for scroll-wheel events. - * - * The onScrollWheel event fires when the user moves their scrollwheel over this - * hterm.ScrollPort. Because the frontmost element in the hterm.ScrollPort is - * a fixed position DIV, the scroll wheel does nothing by default. Instead, we - * have to handle it manually. - */ -hterm.ScrollPort.prototype.onScrollWheel_ = function(e) { - this.onScrollWheel(e); - - if (e.defaultPrevented) - return; - - // Figure out how far this event wants us to scroll. - var delta = this.scrollWheelDelta(e); - - var top = this.screen_.scrollTop - delta; - if (top < 0) - top = 0; - - var scrollMax = this.getScrollMax_(); - if (top > scrollMax) - top = scrollMax; - - if (top != this.screen_.scrollTop) { - // Moving scrollTop causes a scroll event, which triggers the redraw. - this.screen_.scrollTop = top; - - // Only preventDefault when we've actually scrolled. If there's nothing - // to scroll we want to pass the event through so Chrome can detect the - // overscroll. - e.preventDefault(); - } -}; - -/** - * Calculate how far a wheel event should scroll. - * - * @param {WheelEvent} e The mouse wheel event to process. - * @return {number} How far (in pixels) to scroll. - */ -hterm.ScrollPort.prototype.scrollWheelDelta = function(e) { - var delta; - - switch (e.deltaMode) { - case WheelEvent.DOM_DELTA_PIXEL: - delta = e.deltaY * this.scrollWheelMultiplier_; - break; - case WheelEvent.DOM_DELTA_LINE: - delta = e.deltaY * this.characterSize.height; - break; - case WheelEvent.DOM_DELTA_PAGE: - delta = e.deltaY * this.characterSize.height * this.screen_.getHeight(); - break; - } - - // The sign is inverted from what we would expect. - return delta * -1; -}; - - -/** - * Clients can override this if they want to hear touch events. - * - * Clients may call event.preventDefault() if they want to keep the scrollport - * from also handling the events. - */ -hterm.ScrollPort.prototype.onTouch = function(e) {}; - -/** - * Handler for touch events. - */ -hterm.ScrollPort.prototype.onTouch_ = function(e) { - this.onTouch(e); - - if (e.defaultPrevented) - return; - - // Extract the fields from the Touch event that we need. If we saved the - // event directly, it has references to other objects (like x-row) that - // might stick around for a long time. This way we only have small objects - // in our lastTouch_ state. - var scrubTouch = function(t) { - return { - id: t.identifier, - y: t.clientY, - x: t.clientX, - }; - }; - - var i, touch; - switch (e.type) { - case 'touchstart': - // Save the current set of touches. - for (i = 0; i < e.changedTouches.length; ++i) { - touch = scrubTouch(e.changedTouches[i]); - this.lastTouch_[touch.id] = touch; - } - break; - - case 'touchcancel': - case 'touchend': - // Throw away existing touches that we're finished with. - for (i = 0; i < e.changedTouches.length; ++i) - delete this.lastTouch_[e.changedTouches[i].identifier]; - break; - - case 'touchmove': - // Walk all of the touches in this one event and merge all of their - // changes into one delta. This lets multiple fingers scroll faster. - var delta = 0; - for (i = 0; i < e.changedTouches.length; ++i) { - touch = scrubTouch(e.changedTouches[i]); - delta += (this.lastTouch_[touch.id].y - touch.y); - this.lastTouch_[touch.id] = touch; - } - - // Invert to match the touchscreen scrolling direction of browser windows. - delta *= -1; - - var top = this.screen_.scrollTop - delta; - if (top < 0) - top = 0; - - var scrollMax = this.getScrollMax_(); - if (top > scrollMax) - top = scrollMax; - - if (top != this.screen_.scrollTop) { - // Moving scrollTop causes a scroll event, which triggers the redraw. - this.screen_.scrollTop = top; - } - break; - } - - // To disable gestures or anything else interfering with our scrolling. - e.preventDefault(); -}; - -/** - * Handler for resize events. - * - * The browser will resize us such that the top row stays at the top, but we - * prefer to the bottom row to stay at the bottom. - */ -hterm.ScrollPort.prototype.onResize_ = function(e) { - // Re-measure, since onResize also happens for browser zoom changes. - this.syncCharacterSize(); - this.resize(); -}; - -/** - * Clients can override this if they want to hear copy events. - * - * Clients may call event.preventDefault() if they want to keep the scrollport - * from also handling the events. - */ -hterm.ScrollPort.prototype.onCopy = function(e) { }; - -/** - * Handler for copy-to-clipboard events. - * - * If some or all of the selected rows are off screen we may need to fill in - * the rows between selection start and selection end. This handler determines - * if we're missing some of the selected text, and if so populates one or both - * of the "select bags" with the missing text. - */ -hterm.ScrollPort.prototype.onCopy_ = function(e) { - this.onCopy(e); - - if (e.defaultPrevented) - return; - - this.resetSelectBags_(); - this.selection.sync(); - - if (!this.selection.startRow || - this.selection.endRow.rowIndex - this.selection.startRow.rowIndex < 2) { - return; - } - - var topRowIndex = this.getTopRowIndex(); - var bottomRowIndex = this.getBottomRowIndex(topRowIndex); - - if (this.selection.startRow.rowIndex < topRowIndex) { - // Start of selection is above the top fold. - var endBackfillIndex; - - if (this.selection.endRow.rowIndex < topRowIndex) { - // Entire selection is above the top fold. - endBackfillIndex = this.selection.endRow.rowIndex; - } else { - // Selection extends below the top fold. - endBackfillIndex = this.topFold_.nextSibling.rowIndex; - } - - this.topSelectBag_.textContent = this.rowProvider_.getRowsText( - this.selection.startRow.rowIndex + 1, endBackfillIndex); - this.rowNodes_.insertBefore(this.topSelectBag_, - this.selection.startRow.nextSibling); - this.syncRowNodesDimensions_(); - } - - if (this.selection.endRow.rowIndex > bottomRowIndex) { - // Selection ends below the bottom fold. - var startBackfillIndex; - - if (this.selection.startRow.rowIndex > bottomRowIndex) { - // Entire selection is below the bottom fold. - startBackfillIndex = this.selection.startRow.rowIndex + 1; - } else { - // Selection starts above the bottom fold. - startBackfillIndex = this.bottomFold_.previousSibling.rowIndex + 1; - } - - this.bottomSelectBag_.textContent = this.rowProvider_.getRowsText( - startBackfillIndex, this.selection.endRow.rowIndex); - this.rowNodes_.insertBefore(this.bottomSelectBag_, this.selection.endRow); - } -}; - -/** - * Focuses on the paste target on a ctrl-v keydown event, as in - * FF a content editable element must be focused before the paste event. - */ -hterm.ScrollPort.prototype.onBodyKeyDown_ = function(e) { - if (!this.ctrlVPaste) - return; - - var key = String.fromCharCode(e.which); - var lowerKey = key.toLowerCase(); - if ((e.ctrlKey || e.metaKey) && lowerKey == "v") - this.pasteTarget_.focus(); -}; - -/** - * Handle a paste event on the the ScrollPort's screen element. - */ -hterm.ScrollPort.prototype.onPaste_ = function(e) { - this.pasteTarget_.focus(); - - var self = this; - setTimeout(function() { - self.publish('paste', { text: self.pasteTarget_.value }); - self.pasteTarget_.value = ''; - self.screen_.focus(); - }, 0); -}; - -/** - * Handles a textInput event on the paste target. Stops this from - * propagating as we want this to be handled in the onPaste_ method. - */ -hterm.ScrollPort.prototype.handlePasteTargetTextInput_ = function(e) { - e.stopPropagation(); -}; - -/** - * Set the vertical scrollbar mode of the ScrollPort. - */ -hterm.ScrollPort.prototype.setScrollbarVisible = function(state) { - this.screen_.style.overflowY = state ? 'scroll' : 'hidden'; -}; - -/** - * Set scroll wheel multiplier. This alters how much the screen scrolls on - * mouse wheel events. - */ -hterm.ScrollPort.prototype.setScrollWheelMoveMultipler = function(multiplier) { - this.scrollWheelMultiplier_ = multiplier; -}; -// SOURCE FILE: hterm/js/hterm_terminal.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.colors', 'lib.PreferenceManager', 'lib.resource', 'lib.wc', - 'lib.f', 'hterm.Keyboard', 'hterm.Options', 'hterm.PreferenceManager', - 'hterm.Screen', 'hterm.ScrollPort', 'hterm.Size', - 'hterm.TextAttributes', 'hterm.VT'); - -/** - * Constructor for the Terminal class. - * - * A Terminal pulls together the hterm.ScrollPort, hterm.Screen and hterm.VT100 - * classes to provide the complete terminal functionality. - * - * There are a number of lower-level Terminal methods that can be called - * directly to manipulate the cursor, text, scroll region, and other terminal - * attributes. However, the primary method is interpret(), which parses VT - * escape sequences and invokes the appropriate Terminal methods. - * - * This class was heavily influenced by Cory Maccarrone's Framebuffer class. - * - * TODO(rginda): Eventually we're going to need to support characters which are - * displayed twice as wide as standard latin characters. This is to support - * CJK (and possibly other character sets). - * - * @param {string} opt_profileId Optional preference profile name. If not - * provided, defaults to 'default'. - */ -hterm.Terminal = function(opt_profileId) { - this.profileId_ = null; - - // Two screen instances. - this.primaryScreen_ = new hterm.Screen(); - this.alternateScreen_ = new hterm.Screen(); - - // The "current" screen. - this.screen_ = this.primaryScreen_; - - // The local notion of the screen size. ScreenBuffers also have a size which - // indicates their present size. During size changes, the two may disagree. - // Also, the inactive screen's size is not altered until it is made the active - // screen. - this.screenSize = new hterm.Size(0, 0); - - // The scroll port we'll be using to display the visible rows. - this.scrollPort_ = new hterm.ScrollPort(this); - this.scrollPort_.subscribe('resize', this.onResize_.bind(this)); - this.scrollPort_.subscribe('scroll', this.onScroll_.bind(this)); - this.scrollPort_.subscribe('paste', this.onPaste_.bind(this)); - this.scrollPort_.onCopy = this.onCopy_.bind(this); - - // The div that contains this terminal. - this.div_ = null; - - // The document that contains the scrollPort. Defaulted to the global - // document here so that the terminal is functional even if it hasn't been - // inserted into a document yet, but re-set in decorate(). - this.document_ = window.document; - - // The rows that have scrolled off screen and are no longer addressable. - this.scrollbackRows_ = []; - - // Saved tab stops. - this.tabStops_ = []; - - // Keep track of whether default tab stops have been erased; after a TBC - // clears all tab stops, defaults aren't restored on resize until a reset. - this.defaultTabStops = true; - - // The VT's notion of the top and bottom rows. Used during some VT - // cursor positioning and scrolling commands. - this.vtScrollTop_ = null; - this.vtScrollBottom_ = null; - - // The DIV element for the visible cursor. - this.cursorNode_ = null; - - // The current cursor shape of the terminal. - this.cursorShape_ = hterm.Terminal.cursorShape.BLOCK; - - // The current color of the cursor. - this.cursorColor_ = null; - - // Cursor blink on/off cycle in ms, overwritten by prefs once they're loaded. - this.cursorBlinkCycle_ = [100, 100]; - - // Pre-bound onCursorBlink_ handler, so we don't have to do this for each - // cursor on/off servicing. - this.myOnCursorBlink_ = this.onCursorBlink_.bind(this); - - // These prefs are cached so we don't have to read from local storage with - // each output and keystroke. They are initialized by the preference manager. - this.backgroundColor_ = null; - this.foregroundColor_ = null; - this.scrollOnOutput_ = null; - this.scrollOnKeystroke_ = null; - this.scrollWheelArrowKeys_ = null; - - // True if we should override mouse event reporting to allow local selection. - this.defeatMouseReports_ = false; - - // Terminal bell sound. - this.bellAudio_ = this.document_.createElement('audio'); - this.bellAudio_.id = 'hterm:bell-audio'; - this.bellAudio_.setAttribute('preload', 'auto'); - - // All terminal bell notifications that have been generated (not necessarily - // shown). - this.bellNotificationList_ = []; - - // Whether we have permission to display notifications. - this.desktopNotificationBell_ = false; - - // Cursor position and attributes saved with DECSC. - this.savedOptions_ = {}; - - // The current mode bits for the terminal. - this.options_ = new hterm.Options(); - - // Timeouts we might need to clear. - this.timeouts_ = {}; - - // The VT escape sequence interpreter. - this.vt = new hterm.VT(this); - - // The keyboard handler. - this.keyboard = new hterm.Keyboard(this); - - // General IO interface that can be given to third parties without exposing - // the entire terminal object. - this.io = new hterm.Terminal.IO(this); - - // True if mouse-click-drag should scroll the terminal. - this.enableMouseDragScroll = true; - - this.copyOnSelect = null; - this.mouseRightClickPaste = null; - this.mousePasteButton = null; - - // Whether to use the default window copy behavior. - this.useDefaultWindowCopy = false; - - this.clearSelectionAfterCopy = true; - - this.realizeSize_(80, 24); - this.setDefaultTabStops(); - - this.setProfile(opt_profileId || 'default', - function() { this.onTerminalReady(); }.bind(this)); -}; - -/** - * Possible cursor shapes. - */ -hterm.Terminal.cursorShape = { - BLOCK: 'BLOCK', - BEAM: 'BEAM', - UNDERLINE: 'UNDERLINE' -}; - -/** - * Clients should override this to be notified when the terminal is ready - * for use. - * - * The terminal initialization is asynchronous, and shouldn't be used before - * this method is called. - */ -hterm.Terminal.prototype.onTerminalReady = function() { }; - -/** - * Default tab with of 8 to match xterm. - */ -hterm.Terminal.prototype.tabWidth = 8; - -/** - * Select a preference profile. - * - * This will load the terminal preferences for the given profile name and - * associate subsequent preference changes with the new preference profile. - * - * @param {string} profileId The name of the preference profile. Forward slash - * characters will be removed from the name. - * @param {function} opt_callback Optional callback to invoke when the profile - * transition is complete. - */ -hterm.Terminal.prototype.setProfile = function(profileId, opt_callback) { - this.profileId_ = profileId.replace(/\//g, ''); - - var terminal = this; - - if (this.prefs_) - this.prefs_.deactivate(); - - this.prefs_ = new hterm.PreferenceManager(this.profileId_); - this.prefs_.addObservers(null, { - 'alt-gr-mode': function(v) { - if (v == null) { - if (navigator.language.toLowerCase() == 'en-us') { - v = 'none'; - } else { - v = 'right-alt'; - } - } else if (typeof v == 'string') { - v = v.toLowerCase(); - } else { - v = 'none'; - } - - if (!/^(none|ctrl-alt|left-alt|right-alt)$/.test(v)) - v = 'none'; - - terminal.keyboard.altGrMode = v; - }, - - 'alt-backspace-is-meta-backspace': function(v) { - terminal.keyboard.altBackspaceIsMetaBackspace = v; - }, - - 'alt-is-meta': function(v) { - terminal.keyboard.altIsMeta = v; - }, - - 'alt-sends-what': function(v) { - if (!/^(escape|8-bit|browser-key)$/.test(v)) - v = 'escape'; - - terminal.keyboard.altSendsWhat = v; - }, - - 'audible-bell-sound': function(v) { - var ary = v.match(/^lib-resource:(\S+)/); - if (ary) { - terminal.bellAudio_.setAttribute('src', - lib.resource.getDataUrl(ary[1])); - } else { - terminal.bellAudio_.setAttribute('src', v); - } - }, - - 'desktop-notification-bell': function(v) { - if (v && Notification) { - terminal.desktopNotificationBell_ = - Notification.permission === 'granted'; - if (!terminal.desktopNotificationBell_) { - // Note: We don't call Notification.requestPermission here because - // Chrome requires the call be the result of a user action (such as an - // onclick handler), and pref listeners are run asynchronously. - // - // A way of working around this would be to display a dialog in the - // terminal with a "click-to-request-permission" button. - console.warn('desktop-notification-bell is true but we do not have ' + - 'permission to display notifications.'); - } - } else { - terminal.desktopNotificationBell_ = false; - } - }, - - 'background-color': function(v) { - terminal.setBackgroundColor(v); - }, - - 'background-image': function(v) { - terminal.scrollPort_.setBackgroundImage(v); - }, - - 'background-size': function(v) { - terminal.scrollPort_.setBackgroundSize(v); - }, - - 'background-position': function(v) { - terminal.scrollPort_.setBackgroundPosition(v); - }, - - 'backspace-sends-backspace': function(v) { - terminal.keyboard.backspaceSendsBackspace = v; - }, - - 'character-map-overrides': function(v) { - if (!(v == null || v instanceof Object)) { - console.warn('Preference character-map-modifications is not an ' + - 'object: ' + v); - return; - } - - terminal.vt.characterMaps.reset(); - terminal.vt.characterMaps.setOverrides(v); - }, - - 'cursor-blink': function(v) { - terminal.setCursorBlink(!!v); - }, - - 'cursor-blink-cycle': function(v) { - if (v instanceof Array && - typeof v[0] == 'number' && - typeof v[1] == 'number') { - terminal.cursorBlinkCycle_ = v; - } else if (typeof v == 'number') { - terminal.cursorBlinkCycle_ = [v, v]; - } else { - // Fast blink indicates an error. - terminal.cursorBlinkCycle_ = [100, 100]; - } - }, - - 'cursor-color': function(v) { - terminal.setCursorColor(v); - }, - - 'color-palette-overrides': function(v) { - if (!(v == null || v instanceof Object || v instanceof Array)) { - console.warn('Preference color-palette-overrides is not an array or ' + - 'object: ' + v); - return; - } - - lib.colors.colorPalette = lib.colors.stockColorPalette.concat(); - - if (v) { - for (var key in v) { - var i = parseInt(key); - if (isNaN(i) || i < 0 || i > 255) { - console.log('Invalid value in palette: ' + key + ': ' + v[key]); - continue; - } - - if (v[i]) { - var rgb = lib.colors.normalizeCSS(v[i]); - if (rgb) - lib.colors.colorPalette[i] = rgb; - } - } - } - - terminal.primaryScreen_.textAttributes.resetColorPalette(); - terminal.alternateScreen_.textAttributes.resetColorPalette(); - }, - - 'copy-on-select': function(v) { - terminal.copyOnSelect = !!v; - }, - - 'use-default-window-copy': function(v) { - terminal.useDefaultWindowCopy = !!v; - }, - - 'clear-selection-after-copy': function(v) { - terminal.clearSelectionAfterCopy = !!v; - }, - - 'ctrl-plus-minus-zero-zoom': function(v) { - terminal.keyboard.ctrlPlusMinusZeroZoom = v; - }, - - 'ctrl-c-copy': function(v) { - terminal.keyboard.ctrlCCopy = v; - }, - - 'ctrl-v-paste': function(v) { - terminal.keyboard.ctrlVPaste = v; - terminal.scrollPort_.setCtrlVPaste(v); - }, - - 'east-asian-ambiguous-as-two-column': function(v) { - lib.wc.regardCjkAmbiguous = v; - }, - - 'enable-8-bit-control': function(v) { - terminal.vt.enable8BitControl = !!v; - }, - - 'enable-bold': function(v) { - terminal.syncBoldSafeState(); - }, - - 'enable-bold-as-bright': function(v) { - terminal.primaryScreen_.textAttributes.enableBoldAsBright = !!v; - terminal.alternateScreen_.textAttributes.enableBoldAsBright = !!v; - }, - - 'enable-blink': function(v) { - terminal.syncBlinkState(); - }, - - 'enable-clipboard-write': function(v) { - terminal.vt.enableClipboardWrite = !!v; - }, - - 'enable-dec12': function(v) { - terminal.vt.enableDec12 = !!v; - }, - - 'font-family': function(v) { - terminal.syncFontFamily(); - }, - - 'font-size': function(v) { - terminal.setFontSize(v); - }, - - 'font-smoothing': function(v) { - terminal.syncFontFamily(); - }, - - 'foreground-color': function(v) { - terminal.setForegroundColor(v); - }, - - 'home-keys-scroll': function(v) { - terminal.keyboard.homeKeysScroll = v; - }, - - 'keybindings': function(v) { - terminal.keyboard.bindings.clear(); - - if (!v) - return; - - if (!(v instanceof Object)) { - console.error('Error in keybindings preference: Expected object'); - return; - } - - try { - terminal.keyboard.bindings.addBindings(v); - } catch (ex) { - console.error('Error in keybindings preference: ' + ex); - } - }, - - 'max-string-sequence': function(v) { - terminal.vt.maxStringSequence = v; - }, - - 'media-keys-are-fkeys': function(v) { - terminal.keyboard.mediaKeysAreFKeys = v; - }, - - 'meta-sends-escape': function(v) { - terminal.keyboard.metaSendsEscape = v; - }, - - 'mouse-right-click-paste': function(v) { - terminal.mouseRightClickPaste = v; - }, - - 'mouse-paste-button': function(v) { - terminal.syncMousePasteButton(); - }, - - 'page-keys-scroll': function(v) { - terminal.keyboard.pageKeysScroll = v; - }, - - 'pass-alt-number': function(v) { - if (v == null) { - var osx = window.navigator.userAgent.match(/Mac OS X/); - - // Let Alt-1..9 pass to the browser (to control tab switching) on - // non-OS X systems, or if hterm is not opened in an app window. - v = (!osx && hterm.windowType != 'popup'); - } - - terminal.passAltNumber = v; - }, - - 'pass-ctrl-number': function(v) { - if (v == null) { - var osx = window.navigator.userAgent.match(/Mac OS X/); - - // Let Ctrl-1..9 pass to the browser (to control tab switching) on - // non-OS X systems, or if hterm is not opened in an app window. - v = (!osx && hterm.windowType != 'popup'); - } - - terminal.passCtrlNumber = v; - }, - - 'pass-meta-number': function(v) { - if (v == null) { - var osx = window.navigator.userAgent.match(/Mac OS X/); - - // Let Meta-1..9 pass to the browser (to control tab switching) on - // OS X systems, or if hterm is not opened in an app window. - v = (osx && hterm.windowType != 'popup'); - } - - terminal.passMetaNumber = v; - }, - - 'pass-meta-v': function(v) { - terminal.keyboard.passMetaV = v; - }, - - 'receive-encoding': function(v) { - if (!(/^(utf-8|raw)$/).test(v)) { - console.warn('Invalid value for "receive-encoding": ' + v); - v = 'utf-8'; - } - - terminal.vt.characterEncoding = v; - }, - - 'scroll-on-keystroke': function(v) { - terminal.scrollOnKeystroke_ = v; - }, - - 'scroll-on-output': function(v) { - terminal.scrollOnOutput_ = v; - }, - - 'scrollbar-visible': function(v) { - terminal.setScrollbarVisible(v); - }, - - 'scroll-wheel-may-send-arrow-keys': function(v) { - terminal.scrollWheelArrowKeys_ = v; - }, - - 'scroll-wheel-move-multiplier': function(v) { - terminal.setScrollWheelMoveMultipler(v); - }, - - 'send-encoding': function(v) { - if (!(/^(utf-8|raw)$/).test(v)) { - console.warn('Invalid value for "send-encoding": ' + v); - v = 'utf-8'; - } - - terminal.keyboard.characterEncoding = v; - }, - - 'shift-insert-paste': function(v) { - terminal.keyboard.shiftInsertPaste = v; - }, - - 'terminal-encoding': function(v) { - terminal.vt.setEncoding(v); - }, - - 'user-css': function(v) { - terminal.scrollPort_.setUserCssUrl(v); - }, - - 'user-css-text': function(v) { - terminal.scrollPort_.setUserCssText(v); - }, - - 'word-break-match-left': function(v) { - terminal.primaryScreen_.wordBreakMatchLeft = v; - terminal.alternateScreen_.wordBreakMatchLeft = v; - }, - - 'word-break-match-right': function(v) { - terminal.primaryScreen_.wordBreakMatchRight = v; - terminal.alternateScreen_.wordBreakMatchRight = v; - }, - - 'word-break-match-middle': function(v) { - terminal.primaryScreen_.wordBreakMatchMiddle = v; - terminal.alternateScreen_.wordBreakMatchMiddle = v; - }, - }); - - this.prefs_.readStorage(function() { - this.prefs_.notifyAll(); - - if (opt_callback) - opt_callback(); - }.bind(this)); -}; - - -/** - * Returns the preferences manager used for configuring this terminal. - * - * @return {hterm.PreferenceManager} - */ -hterm.Terminal.prototype.getPrefs = function() { - return this.prefs_; -}; - -/** - * Enable or disable bracketed paste mode. - * - * @param {boolean} state The value to set. - */ -hterm.Terminal.prototype.setBracketedPaste = function(state) { - this.options_.bracketedPaste = state; -}; - -/** - * Set the color for the cursor. - * - * If you want this setting to persist, set it through prefs_, rather than - * with this method. - * - * @param {string} color The color to set. - */ -hterm.Terminal.prototype.setCursorColor = function(color) { - this.cursorColor_ = color; - this.cursorNode_.style.backgroundColor = color; - this.cursorNode_.style.borderColor = color; -}; - -/** - * Return the current cursor color as a string. - * @return {string} - */ -hterm.Terminal.prototype.getCursorColor = function() { - return this.cursorColor_; -}; - -/** - * Enable or disable mouse based text selection in the terminal. - * - * @param {boolean} state The value to set. - */ -hterm.Terminal.prototype.setSelectionEnabled = function(state) { - this.enableMouseDragScroll = state; -}; - -/** - * Set the background color. - * - * If you want this setting to persist, set it through prefs_, rather than - * with this method. - * - * @param {string} color The color to set. - */ -hterm.Terminal.prototype.setBackgroundColor = function(color) { - this.backgroundColor_ = lib.colors.normalizeCSS(color); - this.primaryScreen_.textAttributes.setDefaults( - this.foregroundColor_, this.backgroundColor_); - this.alternateScreen_.textAttributes.setDefaults( - this.foregroundColor_, this.backgroundColor_); - this.scrollPort_.setBackgroundColor(color); -}; - -/** - * Return the current terminal background color. - * - * Intended for use by other classes, so we don't have to expose the entire - * prefs_ object. - * - * @return {string} - */ -hterm.Terminal.prototype.getBackgroundColor = function() { - return this.backgroundColor_; -}; - -/** - * Set the foreground color. - * - * If you want this setting to persist, set it through prefs_, rather than - * with this method. - * - * @param {string} color The color to set. - */ -hterm.Terminal.prototype.setForegroundColor = function(color) { - this.foregroundColor_ = lib.colors.normalizeCSS(color); - this.primaryScreen_.textAttributes.setDefaults( - this.foregroundColor_, this.backgroundColor_); - this.alternateScreen_.textAttributes.setDefaults( - this.foregroundColor_, this.backgroundColor_); - this.scrollPort_.setForegroundColor(color); -}; - -/** - * Return the current terminal foreground color. - * - * Intended for use by other classes, so we don't have to expose the entire - * prefs_ object. - * - * @return {string} - */ -hterm.Terminal.prototype.getForegroundColor = function() { - return this.foregroundColor_; -}; - -/** - * Create a new instance of a terminal command and run it with a given - * argument string. - * - * @param {function} commandClass The constructor for a terminal command. - * @param {string} argString The argument string to pass to the command. - */ -hterm.Terminal.prototype.runCommandClass = function(commandClass, argString) { - var environment = this.prefs_.get('environment'); - if (typeof environment != 'object' || environment == null) - environment = {}; - - var self = this; - this.command = new commandClass( - { argString: argString || '', - io: this.io.push(), - environment: environment, - onExit: function(code) { - self.io.pop(); - self.uninstallKeyboard(); - if (self.prefs_.get('close-on-exit')) - window.close(); - } - }); - - this.installKeyboard(); - this.command.run(); -}; - -/** - * Returns true if the current screen is the primary screen, false otherwise. - * - * @return {boolean} - */ -hterm.Terminal.prototype.isPrimaryScreen = function() { - return this.screen_ == this.primaryScreen_; -}; - -/** - * Install the keyboard handler for this terminal. - * - * This will prevent the browser from seeing any keystrokes sent to the - * terminal. - */ -hterm.Terminal.prototype.installKeyboard = function() { - this.keyboard.installKeyboard(this.scrollPort_.getDocument().body); -} - -/** - * Uninstall the keyboard handler for this terminal. - */ -hterm.Terminal.prototype.uninstallKeyboard = function() { - this.keyboard.installKeyboard(null); -} - -/** - * Set a CSS variable. - * - * Normally this is used to set variables in the hterm namespace. - * - * @param {string} name The variable to set. - * @param {string} value The value to assign to the variable. - * @param {string?} opt_prefix The variable namespace/prefix to use. - */ -hterm.Terminal.prototype.setCssVar = function(name, value, - opt_prefix='--hterm-') { - this.document_.documentElement.style.setProperty( - `${opt_prefix}${name}`, value); -}; - -/** - * Set the font size for this terminal. - * - * Call setFontSize(0) to reset to the default font size. - * - * This function does not modify the font-size preference. - * - * @param {number} px The desired font size, in pixels. - */ -hterm.Terminal.prototype.setFontSize = function(px) { - if (px === 0) - px = this.prefs_.get('font-size'); - - this.scrollPort_.setFontSize(px); - this.setCssVar('charsize-width', this.scrollPort_.characterSize.width + 'px'); - this.setCssVar('charsize-height', - this.scrollPort_.characterSize.height + 'px'); -}; - -/** - * Get the current font size. - * - * @return {number} - */ -hterm.Terminal.prototype.getFontSize = function() { - return this.scrollPort_.getFontSize(); -}; - -/** - * Get the current font family. - * - * @return {string} - */ -hterm.Terminal.prototype.getFontFamily = function() { - return this.scrollPort_.getFontFamily(); -}; - -/** - * Set the CSS "font-family" for this terminal. - */ -hterm.Terminal.prototype.syncFontFamily = function() { - this.scrollPort_.setFontFamily(this.prefs_.get('font-family'), - this.prefs_.get('font-smoothing')); - this.syncBoldSafeState(); -}; - -/** - * Set this.mousePasteButton based on the mouse-paste-button pref, - * autodetecting if necessary. - */ -hterm.Terminal.prototype.syncMousePasteButton = function() { - var button = this.prefs_.get('mouse-paste-button'); - if (typeof button == 'number') { - this.mousePasteButton = button; - return; - } - - var ary = navigator.userAgent.match(/\(X11;\s+(\S+)/); - if (!ary || ary[1] == 'CrOS') { - this.mousePasteButton = 1; // Middle mouse button. - } else { - this.mousePasteButton = 2; // Right mouse button. - } -}; - -/** - * Enable or disable bold based on the enable-bold pref, autodetecting if - * necessary. - */ -hterm.Terminal.prototype.syncBoldSafeState = function() { - var enableBold = this.prefs_.get('enable-bold'); - if (enableBold !== null) { - this.primaryScreen_.textAttributes.enableBold = enableBold; - this.alternateScreen_.textAttributes.enableBold = enableBold; - return; - } - - var normalSize = this.scrollPort_.measureCharacterSize(); - var boldSize = this.scrollPort_.measureCharacterSize('bold'); - - var isBoldSafe = normalSize.equals(boldSize); - if (!isBoldSafe) { - console.warn('Bold characters disabled: Size of bold weight differs ' + - 'from normal. Font family is: ' + - this.scrollPort_.getFontFamily()); - } - - this.primaryScreen_.textAttributes.enableBold = isBoldSafe; - this.alternateScreen_.textAttributes.enableBold = isBoldSafe; -}; - -/** - * Enable or disable blink based on the enable-blink pref. - */ -hterm.Terminal.prototype.syncBlinkState = function() { - this.setCssVar('node-duration', - this.prefs_.get('enable-blink') ? '0.7s' : '0'); -}; - -/** - * Set the mouse cursor style based on the current terminal mode. - */ -hterm.Terminal.prototype.syncMouseStyle = function() { - this.setCssVar('mouse-cursor-style', - this.vt.mouseReport == this.vt.MOUSE_REPORT_DISABLED ? - 'var(--hterm-mouse-cursor-text)' : - 'var(--hterm-mouse-cursor-pointer)'); -}; - -/** - * Return a copy of the current cursor position. - * - * @return {hterm.RowCol} The RowCol object representing the current position. - */ -hterm.Terminal.prototype.saveCursor = function() { - return this.screen_.cursorPosition.clone(); -}; - -/** - * Return the current text attributes. - * - * @return {string} - */ -hterm.Terminal.prototype.getTextAttributes = function() { - return this.screen_.textAttributes; -}; - -/** - * Set the text attributes. - * - * @param {string} textAttributes The attributes to set. - */ -hterm.Terminal.prototype.setTextAttributes = function(textAttributes) { - this.screen_.textAttributes = textAttributes; -}; - -/** - * Return the current browser zoom factor applied to the terminal. - * - * @return {number} The current browser zoom factor. - */ -hterm.Terminal.prototype.getZoomFactor = function() { - return this.scrollPort_.characterSize.zoomFactor; -}; - -/** - * Change the title of this terminal's window. - * - * @param {string} title The title to set. - */ -hterm.Terminal.prototype.setWindowTitle = function(title) { - window.document.title = title; -}; - -/** - * Restore a previously saved cursor position. - * - * @param {hterm.RowCol} cursor The position to restore. - */ -hterm.Terminal.prototype.restoreCursor = function(cursor) { - var row = lib.f.clamp(cursor.row, 0, this.screenSize.height - 1); - var column = lib.f.clamp(cursor.column, 0, this.screenSize.width - 1); - this.screen_.setCursorPosition(row, column); - if (cursor.column > column || - cursor.column == column && cursor.overflow) { - this.screen_.cursorPosition.overflow = true; - } -}; - -/** - * Clear the cursor's overflow flag. - */ -hterm.Terminal.prototype.clearCursorOverflow = function() { - this.screen_.cursorPosition.overflow = false; -}; - -/** - * Sets the cursor shape - * - * @param {string} shape The shape to set. - */ -hterm.Terminal.prototype.setCursorShape = function(shape) { - this.cursorShape_ = shape; - this.restyleCursor_(); -} - -/** - * Get the cursor shape - * - * @return {string} - */ -hterm.Terminal.prototype.getCursorShape = function() { - return this.cursorShape_; -} - -/** - * Set the width of the terminal, resizing the UI to match. - * - * @param {number} columnCount - */ -hterm.Terminal.prototype.setWidth = function(columnCount) { - if (columnCount == null) { - this.div_.style.width = '100%'; - return; - } - - this.div_.style.width = Math.ceil( - this.scrollPort_.characterSize.width * - columnCount + this.scrollPort_.currentScrollbarWidthPx) + 'px'; - this.realizeSize_(columnCount, this.screenSize.height); - this.scheduleSyncCursorPosition_(); -}; - -/** - * Set the height of the terminal, resizing the UI to match. - * - * @param {number} rowCount The height in rows. - */ -hterm.Terminal.prototype.setHeight = function(rowCount) { - if (rowCount == null) { - this.div_.style.height = '100%'; - return; - } - - this.div_.style.height = - this.scrollPort_.characterSize.height * rowCount + 'px'; - this.realizeSize_(this.screenSize.width, rowCount); - this.scheduleSyncCursorPosition_(); -}; - -/** - * Deal with terminal size changes. - * - * @param {number} columnCount The number of columns. - * @param {number} rowCount The number of rows. - */ -hterm.Terminal.prototype.realizeSize_ = function(columnCount, rowCount) { - if (columnCount != this.screenSize.width) - this.realizeWidth_(columnCount); - - if (rowCount != this.screenSize.height) - this.realizeHeight_(rowCount); - - // Send new terminal size to plugin. - this.io.onTerminalResize_(columnCount, rowCount); -}; - -/** - * Deal with terminal width changes. - * - * This function does what needs to be done when the terminal width changes - * out from under us. It happens here rather than in onResize_() because this - * code may need to run synchronously to handle programmatic changes of - * terminal width. - * - * Relying on the browser to send us an async resize event means we may not be - * in the correct state yet when the next escape sequence hits. - * - * @param {number} columnCount The number of columns. - */ -hterm.Terminal.prototype.realizeWidth_ = function(columnCount) { - if (columnCount <= 0) - throw new Error('Attempt to realize bad width: ' + columnCount); - - var deltaColumns = columnCount - this.screen_.getWidth(); - - this.screenSize.width = columnCount; - this.screen_.setColumnCount(columnCount); - - if (deltaColumns > 0) { - if (this.defaultTabStops) - this.setDefaultTabStops(this.screenSize.width - deltaColumns); - } else { - for (var i = this.tabStops_.length - 1; i >= 0; i--) { - if (this.tabStops_[i] < columnCount) - break; - - this.tabStops_.pop(); - } - } - - this.screen_.setColumnCount(this.screenSize.width); -}; - -/** - * Deal with terminal height changes. - * - * This function does what needs to be done when the terminal height changes - * out from under us. It happens here rather than in onResize_() because this - * code may need to run synchronously to handle programmatic changes of - * terminal height. - * - * Relying on the browser to send us an async resize event means we may not be - * in the correct state yet when the next escape sequence hits. - * - * @param {number} rowCount The number of rows. - */ -hterm.Terminal.prototype.realizeHeight_ = function(rowCount) { - if (rowCount <= 0) - throw new Error('Attempt to realize bad height: ' + rowCount); - - var deltaRows = rowCount - this.screen_.getHeight(); - - this.screenSize.height = rowCount; - - var cursor = this.saveCursor(); - - if (deltaRows < 0) { - // Screen got smaller. - deltaRows *= -1; - while (deltaRows) { - var lastRow = this.getRowCount() - 1; - if (lastRow - this.scrollbackRows_.length == cursor.row) - break; - - if (this.getRowText(lastRow)) - break; - - this.screen_.popRow(); - deltaRows--; - } - - var ary = this.screen_.shiftRows(deltaRows); - this.scrollbackRows_.push.apply(this.scrollbackRows_, ary); - - // We just removed rows from the top of the screen, we need to update - // the cursor to match. - cursor.row = Math.max(cursor.row - deltaRows, 0); - } else if (deltaRows > 0) { - // Screen got larger. - - if (deltaRows <= this.scrollbackRows_.length) { - var scrollbackCount = Math.min(deltaRows, this.scrollbackRows_.length); - var rows = this.scrollbackRows_.splice( - this.scrollbackRows_.length - scrollbackCount, scrollbackCount); - this.screen_.unshiftRows(rows); - deltaRows -= scrollbackCount; - cursor.row += scrollbackCount; - } - - if (deltaRows) - this.appendRows_(deltaRows); - } - - this.setVTScrollRegion(null, null); - this.restoreCursor(cursor); -}; - -/** - * Scroll the terminal to the top of the scrollback buffer. - */ -hterm.Terminal.prototype.scrollHome = function() { - this.scrollPort_.scrollRowToTop(0); -}; - -/** - * Scroll the terminal to the end. - */ -hterm.Terminal.prototype.scrollEnd = function() { - this.scrollPort_.scrollRowToBottom(this.getRowCount()); -}; - -/** - * Scroll the terminal one page up (minus one line) relative to the current - * position. - */ -hterm.Terminal.prototype.scrollPageUp = function() { - var i = this.scrollPort_.getTopRowIndex(); - this.scrollPort_.scrollRowToTop(i - this.screenSize.height + 1); -}; - -/** - * Scroll the terminal one page down (minus one line) relative to the current - * position. - */ -hterm.Terminal.prototype.scrollPageDown = function() { - var i = this.scrollPort_.getTopRowIndex(); - this.scrollPort_.scrollRowToTop(i + this.screenSize.height - 1); -}; - -/** - * Scroll the terminal one line up relative to the current position. - */ -hterm.Terminal.prototype.scrollLineUp = function() { - var i = this.scrollPort_.getTopRowIndex(); - this.scrollPort_.scrollRowToTop(i - 1); -}; - -/** - * Scroll the terminal one line down relative to the current position. - */ -hterm.Terminal.prototype.scrollLineDown = function() { - var i = this.scrollPort_.getTopRowIndex(); - this.scrollPort_.scrollRowToTop(i + 1); -}; - -/** - * Clear primary screen, secondary screen, and the scrollback buffer. - */ -hterm.Terminal.prototype.wipeContents = function() { - this.scrollbackRows_.length = 0; - this.scrollPort_.resetCache(); - - [this.primaryScreen_, this.alternateScreen_].forEach(function(screen) { - var bottom = screen.getHeight(); - if (bottom > 0) { - this.renumberRows_(0, bottom); - this.clearHome(screen); - } - }.bind(this)); - - this.syncCursorPosition_(); - this.scrollPort_.invalidate(); -}; - -/** - * Full terminal reset. - */ -hterm.Terminal.prototype.reset = function() { - this.clearAllTabStops(); - this.setDefaultTabStops(); - - this.clearHome(this.primaryScreen_); - this.primaryScreen_.textAttributes.reset(); - - this.clearHome(this.alternateScreen_); - this.alternateScreen_.textAttributes.reset(); - - this.setCursorBlink(!!this.prefs_.get('cursor-blink')); - - this.vt.reset(); - - this.softReset(); -}; - -/** - * Soft terminal reset. - * - * Perform a soft reset to the default values listed in - * http://www.vt100.net/docs/vt510-rm/DECSTR#T5-9 - */ -hterm.Terminal.prototype.softReset = function() { - // Reset terminal options to their default values. - this.options_ = new hterm.Options(); - - // We show the cursor on soft reset but do not alter the blink state. - this.options_.cursorBlink = !!this.timeouts_.cursorBlink; - - // Xterm also resets the color palette on soft reset, even though it doesn't - // seem to be documented anywhere. - this.primaryScreen_.textAttributes.resetColorPalette(); - this.alternateScreen_.textAttributes.resetColorPalette(); - - // The xterm man page explicitly says this will happen on soft reset. - this.setVTScrollRegion(null, null); - - // Xterm also shows the cursor on soft reset, but does not alter the blink - // state. - this.setCursorVisible(true); -}; - -/** - * Move the cursor forward to the next tab stop, or to the last column - * if no more tab stops are set. - */ -hterm.Terminal.prototype.forwardTabStop = function() { - var column = this.screen_.cursorPosition.column; - - for (var i = 0; i < this.tabStops_.length; i++) { - if (this.tabStops_[i] > column) { - this.setCursorColumn(this.tabStops_[i]); - return; - } - } - - // xterm does not clear the overflow flag on HT or CHT. - var overflow = this.screen_.cursorPosition.overflow; - this.setCursorColumn(this.screenSize.width - 1); - this.screen_.cursorPosition.overflow = overflow; -}; - -/** - * Move the cursor backward to the previous tab stop, or to the first column - * if no previous tab stops are set. - */ -hterm.Terminal.prototype.backwardTabStop = function() { - var column = this.screen_.cursorPosition.column; - - for (var i = this.tabStops_.length - 1; i >= 0; i--) { - if (this.tabStops_[i] < column) { - this.setCursorColumn(this.tabStops_[i]); - return; - } - } - - this.setCursorColumn(1); -}; - -/** - * Set a tab stop at the given column. - * - * @param {integer} column Zero based column. - */ -hterm.Terminal.prototype.setTabStop = function(column) { - for (var i = this.tabStops_.length - 1; i >= 0; i--) { - if (this.tabStops_[i] == column) - return; - - if (this.tabStops_[i] < column) { - this.tabStops_.splice(i + 1, 0, column); - return; - } - } - - this.tabStops_.splice(0, 0, column); -}; - -/** - * Clear the tab stop at the current cursor position. - * - * No effect if there is no tab stop at the current cursor position. - */ -hterm.Terminal.prototype.clearTabStopAtCursor = function() { - var column = this.screen_.cursorPosition.column; - - var i = this.tabStops_.indexOf(column); - if (i == -1) - return; - - this.tabStops_.splice(i, 1); -}; - -/** - * Clear all tab stops. - */ -hterm.Terminal.prototype.clearAllTabStops = function() { - this.tabStops_.length = 0; - this.defaultTabStops = false; -}; - -/** - * Set up the default tab stops, starting from a given column. - * - * This sets a tabstop every (column % this.tabWidth) column, starting - * from the specified column, or 0 if no column is provided. It also flags - * future resizes to set them up. - * - * This does not clear the existing tab stops first, use clearAllTabStops - * for that. - * - * @param {integer} opt_start Optional starting zero based starting column, useful - * for filling out missing tab stops when the terminal is resized. - */ -hterm.Terminal.prototype.setDefaultTabStops = function(opt_start) { - var start = opt_start || 0; - var w = this.tabWidth; - // Round start up to a default tab stop. - start = start - 1 - ((start - 1) % w) + w; - for (var i = start; i < this.screenSize.width; i += w) { - this.setTabStop(i); - } - - this.defaultTabStops = true; -}; - -/** - * Interpret a sequence of characters. - * - * Incomplete escape sequences are buffered until the next call. - * - * @param {string} str Sequence of characters to interpret or pass through. - */ -hterm.Terminal.prototype.interpret = function(str) { - this.vt.interpret(str); - this.scheduleSyncCursorPosition_(); -}; - -/** - * Take over the given DIV for use as the terminal display. - * - * @param {HTMLDivElement} div The div to use as the terminal display. - */ -hterm.Terminal.prototype.decorate = function(div) { - this.div_ = div; - - this.scrollPort_.decorate(div); - this.scrollPort_.setBackgroundImage(this.prefs_.get('background-image')); - this.scrollPort_.setBackgroundSize(this.prefs_.get('background-size')); - this.scrollPort_.setBackgroundPosition( - this.prefs_.get('background-position')); - this.scrollPort_.setUserCssUrl(this.prefs_.get('user-css')); - this.scrollPort_.setUserCssText(this.prefs_.get('user-css-text')); - - this.div_.focus = this.focus.bind(this); - - this.setFontSize(this.prefs_.get('font-size')); - this.syncFontFamily(); - - this.setScrollbarVisible(this.prefs_.get('scrollbar-visible')); - this.setScrollWheelMoveMultipler( - this.prefs_.get('scroll-wheel-move-multiplier')); - - this.document_ = this.scrollPort_.getDocument(); - - this.document_.body.oncontextmenu = function() { return false; }; - - var onMouse = this.onMouse_.bind(this); - var screenNode = this.scrollPort_.getScreenNode(); - screenNode.addEventListener('mousedown', onMouse); - screenNode.addEventListener('mouseup', onMouse); - screenNode.addEventListener('mousemove', onMouse); - this.scrollPort_.onScrollWheel = onMouse; - - screenNode.addEventListener( - 'focus', this.onFocusChange_.bind(this, true)); - // Listen for mousedown events on the screenNode as in FF the focus - // events don't bubble. - screenNode.addEventListener('mousedown', function() { - setTimeout(this.onFocusChange_.bind(this, true)); - }.bind(this)); - - screenNode.addEventListener( - 'blur', this.onFocusChange_.bind(this, false)); - - var style = this.document_.createElement('style'); - style.textContent = - ('.cursor-node[focus="false"] {' + - ' box-sizing: border-box;' + - ' background-color: transparent !important;' + - ' border-width: 2px;' + - ' border-style: solid;' + - '}' + - '.wc-node {' + - ' display: inline-block;' + - ' text-align: center;' + - ' width: calc(var(--hterm-charsize-width) * 2);' + - ' line-height: var(--hterm-charsize-height);' + - '}' + - ':root {' + - ' --hterm-charsize-width: ' + this.scrollPort_.characterSize.width + 'px;' + - ' --hterm-charsize-height: ' + this.scrollPort_.characterSize.height + 'px;' + - ' --hterm-cursor-offset-col: 0;' + - ' --hterm-cursor-offset-row: 0;' + - ' --hterm-blink-node-duration: 0.7s;' + - ' --hterm-mouse-cursor-text: text;' + - ' --hterm-mouse-cursor-pointer: default;' + - ' --hterm-mouse-cursor-style: var(--hterm-mouse-cursor-text);' + - '}' + - '@keyframes blink {' + - ' from { opacity: 1.0; }' + - ' to { opacity: 0.0; }' + - '}' + - '.blink-node {' + - ' animation-name: blink;' + - ' animation-duration: var(--hterm-blink-node-duration);' + - ' animation-iteration-count: infinite;' + - ' animation-timing-function: ease-in-out;' + - ' animation-direction: alternate;' + - '}'); - this.document_.head.appendChild(style); - - this.cursorNode_ = this.document_.createElement('div'); - this.cursorNode_.id = 'hterm:terminal-cursor'; - this.cursorNode_.className = 'cursor-node'; - this.cursorNode_.style.cssText = - ('position: absolute;' + - 'left: calc(var(--hterm-charsize-width) * var(--hterm-cursor-offset-col));' + - 'top: calc(var(--hterm-charsize-height) * var(--hterm-cursor-offset-row));' + - 'display: block;' + - 'width: var(--hterm-charsize-width);' + - 'height: var(--hterm-charsize-height);' + - '-webkit-transition: opacity, background-color 100ms linear;' + - '-moz-transition: opacity, background-color 100ms linear;'); - - this.setCursorColor(this.prefs_.get('cursor-color')); - this.setCursorBlink(!!this.prefs_.get('cursor-blink')); - this.restyleCursor_(); - - this.document_.body.appendChild(this.cursorNode_); - - // When 'enableMouseDragScroll' is off we reposition this element directly - // under the mouse cursor after a click. This makes Chrome associate - // subsequent mousemove events with the scroll-blocker. Since the - // scroll-blocker is a peer (not a child) of the scrollport, the mousemove - // events do not cause the scrollport to scroll. - // - // It's a hack, but it's the cleanest way I could find. - this.scrollBlockerNode_ = this.document_.createElement('div'); - this.scrollBlockerNode_.id = 'hterm:mouse-drag-scroll-blocker'; - this.scrollBlockerNode_.style.cssText = - ('position: absolute;' + - 'top: -99px;' + - 'display: block;' + - 'width: 10px;' + - 'height: 10px;'); - this.document_.body.appendChild(this.scrollBlockerNode_); - - this.scrollPort_.onScrollWheel = onMouse; - ['mousedown', 'mouseup', 'mousemove', 'click', 'dblclick', - ].forEach(function(event) { - this.scrollBlockerNode_.addEventListener(event, onMouse); - this.cursorNode_.addEventListener(event, onMouse); - this.document_.addEventListener(event, onMouse); - }.bind(this)); - - this.cursorNode_.addEventListener('mousedown', function() { - setTimeout(this.focus.bind(this)); - }.bind(this)); - - this.setReverseVideo(false); - - this.scrollPort_.focus(); - this.scrollPort_.scheduleRedraw(); -}; - -/** - * Return the HTML document that contains the terminal DOM nodes. - * - * @return {HTMLDocument} - */ -hterm.Terminal.prototype.getDocument = function() { - return this.document_; -}; - -/** - * Focus the terminal. - */ -hterm.Terminal.prototype.focus = function() { - this.scrollPort_.focus(); -}; - -/** - * Return the HTML Element for a given row index. - * - * This is a method from the RowProvider interface. The ScrollPort uses - * it to fetch rows on demand as they are scrolled into view. - * - * TODO(rginda): Consider saving scrollback rows as (HTML source, text content) - * pairs to conserve memory. - * - * @param {integer} index The zero-based row index, measured relative to the - * start of the scrollback buffer. On-screen rows will always have the - * largest indices. - * @return {HTMLElement} The 'x-row' element containing for the requested row. - */ -hterm.Terminal.prototype.getRowNode = function(index) { - if (index < this.scrollbackRows_.length) - return this.scrollbackRows_[index]; - - var screenIndex = index - this.scrollbackRows_.length; - return this.screen_.rowsArray[screenIndex]; -}; - -/** - * Return the text content for a given range of rows. - * - * This is a method from the RowProvider interface. The ScrollPort uses - * it to fetch text content on demand when the user attempts to copy their - * selection to the clipboard. - * - * @param {integer} start The zero-based row index to start from, measured - * relative to the start of the scrollback buffer. On-screen rows will - * always have the largest indices. - * @param {integer} end The zero-based row index to end on, measured - * relative to the start of the scrollback buffer. - * @return {string} A single string containing the text value of the range of - * rows. Lines will be newline delimited, with no trailing newline. - */ -hterm.Terminal.prototype.getRowsText = function(start, end) { - var ary = []; - for (var i = start; i < end; i++) { - var node = this.getRowNode(i); - ary.push(node.textContent); - if (i < end - 1 && !node.getAttribute('line-overflow')) - ary.push('\n'); - } - - return ary.join(''); -}; - -/** - * Return the text content for a given row. - * - * This is a method from the RowProvider interface. The ScrollPort uses - * it to fetch text content on demand when the user attempts to copy their - * selection to the clipboard. - * - * @param {integer} index The zero-based row index to return, measured - * relative to the start of the scrollback buffer. On-screen rows will - * always have the largest indices. - * @return {string} A string containing the text value of the selected row. - */ -hterm.Terminal.prototype.getRowText = function(index) { - var node = this.getRowNode(index); - return node.textContent; -}; - -/** - * Return the total number of rows in the addressable screen and in the - * scrollback buffer of this terminal. - * - * This is a method from the RowProvider interface. The ScrollPort uses - * it to compute the size of the scrollbar. - * - * @return {integer} The number of rows in this terminal. - */ -hterm.Terminal.prototype.getRowCount = function() { - return this.scrollbackRows_.length + this.screen_.rowsArray.length; -}; - -/** - * Create DOM nodes for new rows and append them to the end of the terminal. - * - * This is the only correct way to add a new DOM node for a row. Notice that - * the new row is appended to the bottom of the list of rows, and does not - * require renumbering (of the rowIndex property) of previous rows. - * - * If you think you want a new blank row somewhere in the middle of the - * terminal, look into moveRows_(). - * - * This method does not pay attention to vtScrollTop/Bottom, since you should - * be using moveRows() in cases where they would matter. - * - * The cursor will be positioned at column 0 of the first inserted line. - * - * @param {number} count The number of rows to created. - */ -hterm.Terminal.prototype.appendRows_ = function(count) { - var cursorRow = this.screen_.rowsArray.length; - var offset = this.scrollbackRows_.length + cursorRow; - for (var i = 0; i < count; i++) { - var row = this.document_.createElement('x-row'); - row.appendChild(this.document_.createTextNode('')); - row.rowIndex = offset + i; - this.screen_.pushRow(row); - } - - var extraRows = this.screen_.rowsArray.length - this.screenSize.height; - if (extraRows > 0) { - var ary = this.screen_.shiftRows(extraRows); - Array.prototype.push.apply(this.scrollbackRows_, ary); - if (this.scrollPort_.isScrolledEnd) - this.scheduleScrollDown_(); - } - - if (cursorRow >= this.screen_.rowsArray.length) - cursorRow = this.screen_.rowsArray.length - 1; - - this.setAbsoluteCursorPosition(cursorRow, 0); -}; - -/** - * Relocate rows from one part of the addressable screen to another. - * - * This is used to recycle rows during VT scrolls (those which are driven - * by VT commands, rather than by the user manipulating the scrollbar.) - * - * In this case, the blank lines scrolled into the scroll region are made of - * the nodes we scrolled off. These have their rowIndex properties carefully - * renumbered so as not to confuse the ScrollPort. - * - * @param {number} fromIndex The start index. - * @param {number} count The number of rows to move. - * @param {number} toIndex The destination index. - */ -hterm.Terminal.prototype.moveRows_ = function(fromIndex, count, toIndex) { - var ary = this.screen_.removeRows(fromIndex, count); - this.screen_.insertRows(toIndex, ary); - - var start, end; - if (fromIndex < toIndex) { - start = fromIndex; - end = toIndex + count; - } else { - start = toIndex; - end = fromIndex + count; - } - - this.renumberRows_(start, end); - this.scrollPort_.scheduleInvalidate(); -}; - -/** - * Renumber the rowIndex property of the given range of rows. - * - * The start and end indices are relative to the screen, not the scrollback. - * Rows in the scrollback buffer cannot be renumbered. Since they are not - * addressable (you can't delete them, scroll them, etc), you should have - * no need to renumber scrollback rows. - * - * @param {number} start The start index. - * @param {number} end The end index. - * @param {hterm.Screen} opt_screen The screen to renumber. - */ -hterm.Terminal.prototype.renumberRows_ = function(start, end, opt_screen) { - var screen = opt_screen || this.screen_; - - var offset = this.scrollbackRows_.length; - for (var i = start; i < end; i++) { - screen.rowsArray[i].rowIndex = offset + i; - } -}; - -/** - * Print a string to the terminal. - * - * This respects the current insert and wraparound modes. It will add new lines - * to the end of the terminal, scrolling off the top into the scrollback buffer - * if necessary. - * - * The string is *not* parsed for escape codes. Use the interpret() method if - * that's what you're after. - * - * @param{string} str The string to print. - */ -hterm.Terminal.prototype.print = function(str) { - var startOffset = 0; - - var strWidth = lib.wc.strWidth(str); - - while (startOffset < strWidth) { - if (this.options_.wraparound && this.screen_.cursorPosition.overflow) { - this.screen_.commitLineOverflow(); - this.newLine(); - } - - var count = strWidth - startOffset; - var didOverflow = false; - var substr; - - if (this.screen_.cursorPosition.column + count >= this.screenSize.width) { - didOverflow = true; - count = this.screenSize.width - this.screen_.cursorPosition.column; - } - - if (didOverflow && !this.options_.wraparound) { - // If the string overflowed the line but wraparound is off, then the - // last printed character should be the last of the string. - // TODO: This will add to our problems with multibyte UTF-16 characters. - substr = lib.wc.substr(str, startOffset, count - 1) + - lib.wc.substr(str, strWidth - 1); - count = strWidth; - } else { - substr = lib.wc.substr(str, startOffset, count); - } - - var tokens = hterm.TextAttributes.splitWidecharString(substr); - for (var i = 0; i < tokens.length; i++) { - this.screen_.textAttributes.wcNode = tokens[i].wcNode; - this.screen_.textAttributes.asciiNode = tokens[i].asciiNode; - - if (this.options_.insertMode) { - this.screen_.insertString(tokens[i].str); - } else { - this.screen_.overwriteString(tokens[i].str); - } - this.screen_.textAttributes.wcNode = false; - this.screen_.textAttributes.asciiNode = true; - } - - this.screen_.maybeClipCurrentRow(); - startOffset += count; - } - - this.scheduleSyncCursorPosition_(); - - if (this.scrollOnOutput_) - this.scrollPort_.scrollRowToBottom(this.getRowCount()); -}; - -/** - * Set the VT scroll region. - * - * This also resets the cursor position to the absolute (0, 0) position, since - * that's what xterm appears to do. - * - * Setting the scroll region to the full height of the terminal will clear - * the scroll region. This is *NOT* what most terminals do. We're explicitly - * going "off-spec" here because it makes `screen` and `tmux` overflow into the - * local scrollback buffer, which means the scrollbars and shift-pgup/pgdn - * continue to work as most users would expect. - * - * @param {integer} scrollTop The zero-based top of the scroll region. - * @param {integer} scrollBottom The zero-based bottom of the scroll region, - * inclusive. - */ -hterm.Terminal.prototype.setVTScrollRegion = function(scrollTop, scrollBottom) { - if (scrollTop == 0 && scrollBottom == this.screenSize.height - 1) { - this.vtScrollTop_ = null; - this.vtScrollBottom_ = null; - } else { - this.vtScrollTop_ = scrollTop; - this.vtScrollBottom_ = scrollBottom; - } -}; - -/** - * Return the top row index according to the VT. - * - * This will return 0 unless the terminal has been told to restrict scrolling - * to some lower row. It is used for some VT cursor positioning and scrolling - * commands. - * - * @return {integer} The topmost row in the terminal's scroll region. - */ -hterm.Terminal.prototype.getVTScrollTop = function() { - if (this.vtScrollTop_ != null) - return this.vtScrollTop_; - - return 0; -}; - -/** - * Return the bottom row index according to the VT. - * - * This will return the height of the terminal unless the it has been told to - * restrict scrolling to some higher row. It is used for some VT cursor - * positioning and scrolling commands. - * - * @return {integer} The bottom most row in the terminal's scroll region. - */ -hterm.Terminal.prototype.getVTScrollBottom = function() { - if (this.vtScrollBottom_ != null) - return this.vtScrollBottom_; - - return this.screenSize.height - 1; -} - -/** - * Process a '\n' character. - * - * If the cursor is on the final row of the terminal this will append a new - * blank row to the screen and scroll the topmost row into the scrollback - * buffer. - * - * Otherwise, this moves the cursor to column zero of the next row. - */ -hterm.Terminal.prototype.newLine = function() { - var cursorAtEndOfScreen = (this.screen_.cursorPosition.row == - this.screen_.rowsArray.length - 1); - - if (this.vtScrollBottom_ != null) { - // A VT Scroll region is active, we never append new rows. - if (this.screen_.cursorPosition.row == this.vtScrollBottom_) { - // We're at the end of the VT Scroll Region, perform a VT scroll. - this.vtScrollUp(1); - this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0); - } else if (cursorAtEndOfScreen) { - // We're at the end of the screen, the only thing to do is put the - // cursor to column 0. - this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0); - } else { - // Anywhere else, advance the cursor row, and reset the column. - this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0); - } - } else if (cursorAtEndOfScreen) { - // We're at the end of the screen. Append a new row to the terminal, - // shifting the top row into the scrollback. - this.appendRows_(1); - } else { - // Anywhere else in the screen just moves the cursor. - this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0); - } -}; - -/** - * Like newLine(), except maintain the cursor column. - */ -hterm.Terminal.prototype.lineFeed = function() { - var column = this.screen_.cursorPosition.column; - this.newLine(); - this.setCursorColumn(column); -}; - -/** - * If autoCarriageReturn is set then newLine(), else lineFeed(). - */ -hterm.Terminal.prototype.formFeed = function() { - if (this.options_.autoCarriageReturn) { - this.newLine(); - } else { - this.lineFeed(); - } -}; - -/** - * Move the cursor up one row, possibly inserting a blank line. - * - * The cursor column is not changed. - */ -hterm.Terminal.prototype.reverseLineFeed = function() { - var scrollTop = this.getVTScrollTop(); - var currentRow = this.screen_.cursorPosition.row; - - if (currentRow == scrollTop) { - this.insertLines(1); - } else { - this.setAbsoluteCursorRow(currentRow - 1); - } -}; - -/** - * Replace all characters to the left of the current cursor with the space - * character. - * - * TODO(rginda): This should probably *remove* the characters (not just replace - * with a space) if there are no characters at or beyond the current cursor - * position. - */ -hterm.Terminal.prototype.eraseToLeft = function() { - var cursor = this.saveCursor(); - this.setCursorColumn(0); - this.screen_.overwriteString(lib.f.getWhitespace(cursor.column + 1)); - this.restoreCursor(cursor); -}; - -/** - * Erase a given number of characters to the right of the cursor. - * - * The cursor position is unchanged. - * - * If the current background color is not the default background color this - * will insert spaces rather than delete. This is unfortunate because the - * trailing space will affect text selection, but it's difficult to come up - * with a way to style empty space that wouldn't trip up the hterm.Screen - * code. - * - * eraseToRight is ignored in the presence of a cursor overflow. This deviates - * from xterm, but agrees with gnome-terminal and konsole, xfce4-terminal. See - * crbug.com/232390 for details. - * - * @param {number} opt_count The number of characters to erase. - */ -hterm.Terminal.prototype.eraseToRight = function(opt_count) { - if (this.screen_.cursorPosition.overflow) - return; - - var maxCount = this.screenSize.width - this.screen_.cursorPosition.column; - var count = opt_count ? Math.min(opt_count, maxCount) : maxCount; - - if (this.screen_.textAttributes.background === - this.screen_.textAttributes.DEFAULT_COLOR) { - var cursorRow = this.screen_.rowsArray[this.screen_.cursorPosition.row]; - if (hterm.TextAttributes.nodeWidth(cursorRow) <= - this.screen_.cursorPosition.column + count) { - this.screen_.deleteChars(count); - this.clearCursorOverflow(); - return; - } - } - - var cursor = this.saveCursor(); - this.screen_.overwriteString(lib.f.getWhitespace(count)); - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Erase the current line. - * - * The cursor position is unchanged. - */ -hterm.Terminal.prototype.eraseLine = function() { - var cursor = this.saveCursor(); - this.screen_.clearCursorRow(); - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Erase all characters from the start of the screen to the current cursor - * position, regardless of scroll region. - * - * The cursor position is unchanged. - */ -hterm.Terminal.prototype.eraseAbove = function() { - var cursor = this.saveCursor(); - - this.eraseToLeft(); - - for (var i = 0; i < cursor.row; i++) { - this.setAbsoluteCursorPosition(i, 0); - this.screen_.clearCursorRow(); - } - - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Erase all characters from the current cursor position to the end of the - * screen, regardless of scroll region. - * - * The cursor position is unchanged. - */ -hterm.Terminal.prototype.eraseBelow = function() { - var cursor = this.saveCursor(); - - this.eraseToRight(); - - var bottom = this.screenSize.height - 1; - for (var i = cursor.row + 1; i <= bottom; i++) { - this.setAbsoluteCursorPosition(i, 0); - this.screen_.clearCursorRow(); - } - - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Fill the terminal with a given character. - * - * This methods does not respect the VT scroll region. - * - * @param {string} ch The character to use for the fill. - */ -hterm.Terminal.prototype.fill = function(ch) { - var cursor = this.saveCursor(); - - this.setAbsoluteCursorPosition(0, 0); - for (var row = 0; row < this.screenSize.height; row++) { - for (var col = 0; col < this.screenSize.width; col++) { - this.setAbsoluteCursorPosition(row, col); - this.screen_.overwriteString(ch); - } - } - - this.restoreCursor(cursor); -}; - -/** - * Erase the entire display and leave the cursor at (0, 0). - * - * This does not respect the scroll region. - * - * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults - * to the current screen. - */ -hterm.Terminal.prototype.clearHome = function(opt_screen) { - var screen = opt_screen || this.screen_; - var bottom = screen.getHeight(); - - if (bottom == 0) { - // Empty screen, nothing to do. - return; - } - - for (var i = 0; i < bottom; i++) { - screen.setCursorPosition(i, 0); - screen.clearCursorRow(); - } - - screen.setCursorPosition(0, 0); -}; - -/** - * Erase the entire display without changing the cursor position. - * - * The cursor position is unchanged. This does not respect the scroll - * region. - * - * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults - * to the current screen. - */ -hterm.Terminal.prototype.clear = function(opt_screen) { - var screen = opt_screen || this.screen_; - var cursor = screen.cursorPosition.clone(); - this.clearHome(screen); - screen.setCursorPosition(cursor.row, cursor.column); -}; - -/** - * VT command to insert lines at the current cursor row. - * - * This respects the current scroll region. Rows pushed off the bottom are - * lost (they won't show up in the scrollback buffer). - * - * @param {integer} count The number of lines to insert. - */ -hterm.Terminal.prototype.insertLines = function(count) { - var cursorRow = this.screen_.cursorPosition.row; - - var bottom = this.getVTScrollBottom(); - count = Math.min(count, bottom - cursorRow); - - // The moveCount is the number of rows we need to relocate to make room for - // the new row(s). The count is the distance to move them. - var moveCount = bottom - cursorRow - count + 1; - if (moveCount) - this.moveRows_(cursorRow, moveCount, cursorRow + count); - - for (var i = count - 1; i >= 0; i--) { - this.setAbsoluteCursorPosition(cursorRow + i, 0); - this.screen_.clearCursorRow(); - } -}; - -/** - * VT command to delete lines at the current cursor row. - * - * New rows are added to the bottom of scroll region to take their place. New - * rows are strictly there to take up space and have no content or style. - * - * @param {number} count The number of lines to delete. - */ -hterm.Terminal.prototype.deleteLines = function(count) { - var cursor = this.saveCursor(); - - var top = cursor.row; - var bottom = this.getVTScrollBottom(); - - var maxCount = bottom - top + 1; - count = Math.min(count, maxCount); - - var moveStart = bottom - count + 1; - if (count != maxCount) - this.moveRows_(top, count, moveStart); - - for (var i = 0; i < count; i++) { - this.setAbsoluteCursorPosition(moveStart + i, 0); - this.screen_.clearCursorRow(); - } - - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Inserts the given number of spaces at the current cursor position. - * - * The cursor position is not changed. - * - * @param {number} count The number of spaces to insert. - */ -hterm.Terminal.prototype.insertSpace = function(count) { - var cursor = this.saveCursor(); - - var ws = lib.f.getWhitespace(count || 1); - this.screen_.insertString(ws); - this.screen_.maybeClipCurrentRow(); - - this.restoreCursor(cursor); - this.clearCursorOverflow(); -}; - -/** - * Forward-delete the specified number of characters starting at the cursor - * position. - * - * @param {integer} count The number of characters to delete. - */ -hterm.Terminal.prototype.deleteChars = function(count) { - var deleted = this.screen_.deleteChars(count); - if (deleted && !this.screen_.textAttributes.isDefault()) { - var cursor = this.saveCursor(); - this.setCursorColumn(this.screenSize.width - deleted); - this.screen_.insertString(lib.f.getWhitespace(deleted)); - this.restoreCursor(cursor); - } - - this.clearCursorOverflow(); -}; - -/** - * Shift rows in the scroll region upwards by a given number of lines. - * - * New rows are inserted at the bottom of the scroll region to fill the - * vacated rows. The new rows not filled out with the current text attributes. - * - * This function does not affect the scrollback rows at all. Rows shifted - * off the top are lost. - * - * The cursor position is not altered. - * - * @param {integer} count The number of rows to scroll. - */ -hterm.Terminal.prototype.vtScrollUp = function(count) { - var cursor = this.saveCursor(); - - this.setAbsoluteCursorRow(this.getVTScrollTop()); - this.deleteLines(count); - - this.restoreCursor(cursor); -}; - -/** - * Shift rows below the cursor down by a given number of lines. - * - * This function respects the current scroll region. - * - * New rows are inserted at the top of the scroll region to fill the - * vacated rows. The new rows not filled out with the current text attributes. - * - * This function does not affect the scrollback rows at all. Rows shifted - * off the bottom are lost. - * - * @param {integer} count The number of rows to scroll. - */ -hterm.Terminal.prototype.vtScrollDown = function(opt_count) { - var cursor = this.saveCursor(); - - this.setAbsoluteCursorPosition(this.getVTScrollTop(), 0); - this.insertLines(opt_count); - - this.restoreCursor(cursor); -}; - - -/** - * Set the cursor position. - * - * The cursor row is relative to the scroll region if the terminal has - * 'origin mode' enabled, or relative to the addressable screen otherwise. - * - * @param {integer} row The new zero-based cursor row. - * @param {integer} row The new zero-based cursor column. - */ -hterm.Terminal.prototype.setCursorPosition = function(row, column) { - if (this.options_.originMode) { - this.setRelativeCursorPosition(row, column); - } else { - this.setAbsoluteCursorPosition(row, column); - } -}; - -/** - * Move the cursor relative to its current position. - * - * @param {number} row - * @param {number} column - */ -hterm.Terminal.prototype.setRelativeCursorPosition = function(row, column) { - var scrollTop = this.getVTScrollTop(); - row = lib.f.clamp(row + scrollTop, scrollTop, this.getVTScrollBottom()); - column = lib.f.clamp(column, 0, this.screenSize.width - 1); - this.screen_.setCursorPosition(row, column); -}; - -/** - * Move the cursor to the specified position. - * - * @param {number} row - * @param {number} column - */ -hterm.Terminal.prototype.setAbsoluteCursorPosition = function(row, column) { - row = lib.f.clamp(row, 0, this.screenSize.height - 1); - column = lib.f.clamp(column, 0, this.screenSize.width - 1); - this.screen_.setCursorPosition(row, column); -}; - -/** - * Set the cursor column. - * - * @param {integer} column The new zero-based cursor column. - */ -hterm.Terminal.prototype.setCursorColumn = function(column) { - this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, column); -}; - -/** - * Return the cursor column. - * - * @return {integer} The zero-based cursor column. - */ -hterm.Terminal.prototype.getCursorColumn = function() { - return this.screen_.cursorPosition.column; -}; - -/** - * Set the cursor row. - * - * The cursor row is relative to the scroll region if the terminal has - * 'origin mode' enabled, or relative to the addressable screen otherwise. - * - * @param {integer} row The new cursor row. - */ -hterm.Terminal.prototype.setAbsoluteCursorRow = function(row) { - this.setAbsoluteCursorPosition(row, this.screen_.cursorPosition.column); -}; - -/** - * Return the cursor row. - * - * @return {integer} The zero-based cursor row. - */ -hterm.Terminal.prototype.getCursorRow = function() { - return this.screen_.cursorPosition.row; -}; - -/** - * Request that the ScrollPort redraw itself soon. - * - * The redraw will happen asynchronously, soon after the call stack winds down. - * Multiple calls will be coalesced into a single redraw. - */ -hterm.Terminal.prototype.scheduleRedraw_ = function() { - if (this.timeouts_.redraw) - return; - - var self = this; - this.timeouts_.redraw = setTimeout(function() { - delete self.timeouts_.redraw; - self.scrollPort_.redraw_(); - }, 0); -}; - -/** - * Request that the ScrollPort be scrolled to the bottom. - * - * The scroll will happen asynchronously, soon after the call stack winds down. - * Multiple calls will be coalesced into a single scroll. - * - * This affects the scrollbar position of the ScrollPort, and has nothing to - * do with the VT scroll commands. - */ -hterm.Terminal.prototype.scheduleScrollDown_ = function() { - if (this.timeouts_.scrollDown) - return; - - var self = this; - this.timeouts_.scrollDown = setTimeout(function() { - delete self.timeouts_.scrollDown; - self.scrollPort_.scrollRowToBottom(self.getRowCount()); - }, 10); -}; - -/** - * Move the cursor up a specified number of rows. - * - * @param {integer} count The number of rows to move the cursor. - */ -hterm.Terminal.prototype.cursorUp = function(count) { - return this.cursorDown(-(count || 1)); -}; - -/** - * Move the cursor down a specified number of rows. - * - * @param {integer} count The number of rows to move the cursor. - */ -hterm.Terminal.prototype.cursorDown = function(count) { - count = count || 1; - var minHeight = (this.options_.originMode ? this.getVTScrollTop() : 0); - var maxHeight = (this.options_.originMode ? this.getVTScrollBottom() : - this.screenSize.height - 1); - - var row = lib.f.clamp(this.screen_.cursorPosition.row + count, - minHeight, maxHeight); - this.setAbsoluteCursorRow(row); -}; - -/** - * Move the cursor left a specified number of columns. - * - * If reverse wraparound mode is enabled and the previous row wrapped into - * the current row then we back up through the wraparound as well. - * - * @param {integer} count The number of columns to move the cursor. - */ -hterm.Terminal.prototype.cursorLeft = function(count) { - count = count || 1; - - if (count < 1) - return; - - var currentColumn = this.screen_.cursorPosition.column; - if (this.options_.reverseWraparound) { - if (this.screen_.cursorPosition.overflow) { - // If this cursor is in the right margin, consume one count to get it - // back to the last column. This only applies when we're in reverse - // wraparound mode. - count--; - this.clearCursorOverflow(); - - if (!count) - return; - } - - var newRow = this.screen_.cursorPosition.row; - var newColumn = currentColumn - count; - if (newColumn < 0) { - newRow = newRow - Math.floor(count / this.screenSize.width) - 1; - if (newRow < 0) { - // xterm also wraps from row 0 to the last row. - newRow = this.screenSize.height + newRow % this.screenSize.height; - } - newColumn = this.screenSize.width + newColumn % this.screenSize.width; - } - - this.setCursorPosition(Math.max(newRow, 0), newColumn); - - } else { - var newColumn = Math.max(currentColumn - count, 0); - this.setCursorColumn(newColumn); - } -}; - -/** - * Move the cursor right a specified number of columns. - * - * @param {integer} count The number of columns to move the cursor. - */ -hterm.Terminal.prototype.cursorRight = function(count) { - count = count || 1; - - if (count < 1) - return; - - var column = lib.f.clamp(this.screen_.cursorPosition.column + count, - 0, this.screenSize.width - 1); - this.setCursorColumn(column); -}; - -/** - * Reverse the foreground and background colors of the terminal. - * - * This only affects text that was drawn with no attributes. - * - * TODO(rginda): Test xterm to see if reverse is respected for text that has - * been drawn with attributes that happen to coincide with the default - * 'no-attribute' colors. My guess is probably not. - * - * @param {boolean} state The state to set. - */ -hterm.Terminal.prototype.setReverseVideo = function(state) { - this.options_.reverseVideo = state; - if (state) { - this.scrollPort_.setForegroundColor(this.prefs_.get('background-color')); - this.scrollPort_.setBackgroundColor(this.prefs_.get('foreground-color')); - } else { - this.scrollPort_.setForegroundColor(this.prefs_.get('foreground-color')); - this.scrollPort_.setBackgroundColor(this.prefs_.get('background-color')); - } -}; - -/** - * Ring the terminal bell. - * - * This will not play the bell audio more than once per second. - */ -hterm.Terminal.prototype.ringBell = function() { - this.cursorNode_.style.backgroundColor = - this.scrollPort_.getForegroundColor(); - - var self = this; - setTimeout(function() { - self.cursorNode_.style.backgroundColor = self.prefs_.get('cursor-color'); - }, 200); - - // bellSquelchTimeout_ affects both audio and notification bells. - if (this.bellSquelchTimeout_) - return; - - if (this.bellAudio_.getAttribute('src')) { - this.bellAudio_.play(); - this.bellSequelchTimeout_ = setTimeout(function() { - delete this.bellSquelchTimeout_; - }.bind(this), 500); - } else { - delete this.bellSquelchTimeout_; - } - - if (this.desktopNotificationBell_ && !this.document_.hasFocus()) { - var n = hterm.notify(); - this.bellNotificationList_.push(n); - // TODO: Should we try to raise the window here? - n.onclick = function() { self.closeBellNotifications_(); }; - } -}; - -/** - * Set the origin mode bit. - * - * If origin mode is on, certain VT cursor and scrolling commands measure their - * row parameter relative to the VT scroll region. Otherwise, row 0 corresponds - * to the top of the addressable screen. - * - * Defaults to off. - * - * @param {boolean} state True to set origin mode, false to unset. - */ -hterm.Terminal.prototype.setOriginMode = function(state) { - this.options_.originMode = state; - this.setCursorPosition(0, 0); -}; - -/** - * Set the insert mode bit. - * - * If insert mode is on, existing text beyond the cursor position will be - * shifted right to make room for new text. Otherwise, new text overwrites - * any existing text. - * - * Defaults to off. - * - * @param {boolean} state True to set insert mode, false to unset. - */ -hterm.Terminal.prototype.setInsertMode = function(state) { - this.options_.insertMode = state; -}; - -/** - * Set the auto carriage return bit. - * - * If auto carriage return is on then a formfeed character is interpreted - * as a newline, otherwise it's the same as a linefeed. The difference boils - * down to whether or not the cursor column is reset. - * - * @param {boolean} state The state to set. - */ -hterm.Terminal.prototype.setAutoCarriageReturn = function(state) { - this.options_.autoCarriageReturn = state; -}; - -/** - * Set the wraparound mode bit. - * - * If wraparound mode is on, certain VT commands will allow the cursor to wrap - * to the start of the following row. Otherwise, the cursor is clamped to the - * end of the screen and attempts to write past it are ignored. - * - * Defaults to on. - * - * @param {boolean} state True to set wraparound mode, false to unset. - */ -hterm.Terminal.prototype.setWraparound = function(state) { - this.options_.wraparound = state; -}; - -/** - * Set the reverse-wraparound mode bit. - * - * If wraparound mode is off, certain VT commands will allow the cursor to wrap - * to the end of the previous row. Otherwise, the cursor is clamped to column - * 0. - * - * Defaults to off. - * - * @param {boolean} state True to set reverse-wraparound mode, false to unset. - */ -hterm.Terminal.prototype.setReverseWraparound = function(state) { - this.options_.reverseWraparound = state; -}; - -/** - * Selects between the primary and alternate screens. - * - * If alternate mode is on, the alternate screen is active. Otherwise the - * primary screen is active. - * - * Swapping screens has no effect on the scrollback buffer. - * - * Each screen maintains its own cursor position. - * - * Defaults to off. - * - * @param {boolean} state True to set alternate mode, false to unset. - */ -hterm.Terminal.prototype.setAlternateMode = function(state) { - var cursor = this.saveCursor(); - this.screen_ = state ? this.alternateScreen_ : this.primaryScreen_; - - if (this.screen_.rowsArray.length && - this.screen_.rowsArray[0].rowIndex != this.scrollbackRows_.length) { - // If the screen changed sizes while we were away, our rowIndexes may - // be incorrect. - var offset = this.scrollbackRows_.length; - var ary = this.screen_.rowsArray; - for (var i = 0; i < ary.length; i++) { - ary[i].rowIndex = offset + i; - } - } - - this.realizeWidth_(this.screenSize.width); - this.realizeHeight_(this.screenSize.height); - this.scrollPort_.syncScrollHeight(); - this.scrollPort_.invalidate(); - - this.restoreCursor(cursor); - this.scrollPort_.resize(); -}; - -/** - * Set the cursor-blink mode bit. - * - * If cursor-blink is on, the cursor will blink when it is visible. Otherwise - * a visible cursor does not blink. - * - * You should make sure to turn blinking off if you're going to dispose of a - * terminal, otherwise you'll leak a timeout. - * - * Defaults to on. - * - * @param {boolean} state True to set cursor-blink mode, false to unset. - */ -hterm.Terminal.prototype.setCursorBlink = function(state) { - this.options_.cursorBlink = state; - - if (!state && this.timeouts_.cursorBlink) { - clearTimeout(this.timeouts_.cursorBlink); - delete this.timeouts_.cursorBlink; - } - - if (this.options_.cursorVisible) - this.setCursorVisible(true); -}; - -/** - * Set the cursor-visible mode bit. - * - * If cursor-visible is on, the cursor will be visible. Otherwise it will not. - * - * Defaults to on. - * - * @param {boolean} state True to set cursor-visible mode, false to unset. - */ -hterm.Terminal.prototype.setCursorVisible = function(state) { - this.options_.cursorVisible = state; - - if (!state) { - if (this.timeouts_.cursorBlink) { - clearTimeout(this.timeouts_.cursorBlink); - delete this.timeouts_.cursorBlink; - } - this.cursorNode_.style.opacity = '0'; - return; - } - - this.syncCursorPosition_(); - - this.cursorNode_.style.opacity = '1'; - - if (this.options_.cursorBlink) { - if (this.timeouts_.cursorBlink) - return; - - this.onCursorBlink_(); - } else { - if (this.timeouts_.cursorBlink) { - clearTimeout(this.timeouts_.cursorBlink); - delete this.timeouts_.cursorBlink; - } - } -}; - -/** - * Synchronizes the visible cursor and document selection with the current - * cursor coordinates. - */ -hterm.Terminal.prototype.syncCursorPosition_ = function() { - var topRowIndex = this.scrollPort_.getTopRowIndex(); - var bottomRowIndex = this.scrollPort_.getBottomRowIndex(topRowIndex); - var cursorRowIndex = this.scrollbackRows_.length + - this.screen_.cursorPosition.row; - - if (cursorRowIndex > bottomRowIndex) { - // Cursor is scrolled off screen, move it outside of the visible area. - this.setCssVar('cursor-offset-row', '-1'); - return; - } - - if (this.options_.cursorVisible && - this.cursorNode_.style.display == 'none') { - // Re-display the terminal cursor if it was hidden by the mouse cursor. - this.cursorNode_.style.display = ''; - } - - // Position the cursor using CSS variable math. If we do the math in JS, - // the float math will end up being more precise than the CSS which will - // cause the cursor tracking to be off. - this.setCssVar( - 'cursor-offset-row', - `${cursorRowIndex - topRowIndex} + ` + - `${this.scrollPort_.visibleRowTopMargin}px`); - this.setCssVar('cursor-offset-col', this.screen_.cursorPosition.column); - - this.cursorNode_.setAttribute('title', - '(' + this.screen_.cursorPosition.column + - ', ' + this.screen_.cursorPosition.row + - ')'); - - // Update the caret for a11y purposes. - var selection = this.document_.getSelection(); - if (selection && selection.isCollapsed) - this.screen_.syncSelectionCaret(selection); -}; - -/** - * Adjusts the style of this.cursorNode_ according to the current cursor shape - * and character cell dimensions. - */ -hterm.Terminal.prototype.restyleCursor_ = function() { - var shape = this.cursorShape_; - - if (this.cursorNode_.getAttribute('focus') == 'false') { - // Always show a block cursor when unfocused. - shape = hterm.Terminal.cursorShape.BLOCK; - } - - var style = this.cursorNode_.style; - - switch (shape) { - case hterm.Terminal.cursorShape.BEAM: - style.height = 'var(--hterm-charsize-height)'; - style.backgroundColor = 'transparent'; - style.borderBottomStyle = null; - style.borderLeftStyle = 'solid'; - break; - - case hterm.Terminal.cursorShape.UNDERLINE: - style.height = this.scrollPort_.characterSize.baseline + 'px'; - style.backgroundColor = 'transparent'; - style.borderBottomStyle = 'solid'; - // correct the size to put it exactly at the baseline - style.borderLeftStyle = null; - break; - - default: - style.height = 'var(--hterm-charsize-height)'; - style.backgroundColor = this.cursorColor_; - style.borderBottomStyle = null; - style.borderLeftStyle = null; - break; - } -}; - -/** - * Synchronizes the visible cursor with the current cursor coordinates. - * - * The sync will happen asynchronously, soon after the call stack winds down. - * Multiple calls will be coalesced into a single sync. - */ -hterm.Terminal.prototype.scheduleSyncCursorPosition_ = function() { - if (this.timeouts_.syncCursor) - return; - - var self = this; - this.timeouts_.syncCursor = setTimeout(function() { - self.syncCursorPosition_(); - delete self.timeouts_.syncCursor; - }, 0); -}; - -/** - * Show or hide the zoom warning. - * - * The zoom warning is a message warning the user that their browser zoom must - * be set to 100% in order for hterm to function properly. - * - * @param {boolean} state True to show the message, false to hide it. - */ -hterm.Terminal.prototype.showZoomWarning_ = function(state) { - if (!this.zoomWarningNode_) { - if (!state) - return; - - this.zoomWarningNode_ = this.document_.createElement('div'); - this.zoomWarningNode_.id = 'hterm:zoom-warning'; - this.zoomWarningNode_.style.cssText = ( - 'color: black;' + - 'background-color: #ff2222;' + - 'font-size: large;' + - 'border-radius: 8px;' + - 'opacity: 0.75;' + - 'padding: 0.2em 0.5em 0.2em 0.5em;' + - 'top: 0.5em;' + - 'right: 1.2em;' + - 'position: absolute;' + - '-webkit-text-size-adjust: none;' + - '-webkit-user-select: none;' + - '-moz-text-size-adjust: none;' + - '-moz-user-select: none;'); - - this.zoomWarningNode_.addEventListener('click', function(e) { - this.parentNode.removeChild(this); - }); - } - - this.zoomWarningNode_.textContent = lib.MessageManager.replaceReferences( - hterm.zoomWarningMessage, - [parseInt(this.scrollPort_.characterSize.zoomFactor * 100)]); - - this.zoomWarningNode_.style.fontFamily = this.prefs_.get('font-family'); - - if (state) { - if (!this.zoomWarningNode_.parentNode) - this.div_.parentNode.appendChild(this.zoomWarningNode_); - } else if (this.zoomWarningNode_.parentNode) { - this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_); - } -}; - -/** - * Show the terminal overlay for a given amount of time. - * - * The terminal overlay appears in inverse video in a large font, centered - * over the terminal. You should probably keep the overlay message brief, - * since it's in a large font and you probably aren't going to check the size - * of the terminal first. - * - * @param {string} msg The text (not HTML) message to display in the overlay. - * @param {number} opt_timeout The amount of time to wait before fading out - * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay - * stay up forever (or until the next overlay). - */ -hterm.Terminal.prototype.showOverlay = function(msg, opt_timeout) { - if (!this.overlayNode_) { - if (!this.div_) - return; - - this.overlayNode_ = this.document_.createElement('div'); - this.overlayNode_.style.cssText = ( - 'border-radius: 15px;' + - 'font-size: xx-large;' + - 'opacity: 0.75;' + - 'padding: 0.2em 0.5em 0.2em 0.5em;' + - 'position: absolute;' + - '-webkit-user-select: none;' + - '-webkit-transition: opacity 180ms ease-in;' + - '-moz-user-select: none;' + - '-moz-transition: opacity 180ms ease-in;'); - - this.overlayNode_.addEventListener('mousedown', function(e) { - e.preventDefault(); - e.stopPropagation(); - }, true); - } - - this.overlayNode_.style.color = this.prefs_.get('background-color'); - this.overlayNode_.style.backgroundColor = this.prefs_.get('foreground-color'); - this.overlayNode_.style.fontFamily = this.prefs_.get('font-family'); - - this.overlayNode_.textContent = msg; - this.overlayNode_.style.opacity = '0.75'; - - if (!this.overlayNode_.parentNode) - this.div_.appendChild(this.overlayNode_); - - var divSize = hterm.getClientSize(this.div_); - var overlaySize = hterm.getClientSize(this.overlayNode_); - - this.overlayNode_.style.top = - (divSize.height - overlaySize.height) / 2 + 'px'; - this.overlayNode_.style.left = (divSize.width - overlaySize.width - - this.scrollPort_.currentScrollbarWidthPx) / 2 + 'px'; - - var self = this; - - if (this.overlayTimeout_) - clearTimeout(this.overlayTimeout_); - - if (opt_timeout === null) - return; - - this.overlayTimeout_ = setTimeout(function() { - self.overlayNode_.style.opacity = '0'; - self.overlayTimeout_ = setTimeout(function() { - if (self.overlayNode_.parentNode) - self.overlayNode_.parentNode.removeChild(self.overlayNode_); - self.overlayTimeout_ = null; - self.overlayNode_.style.opacity = '0.75'; - }, 200); - }, opt_timeout || 1500); -}; - -/** - * Paste from the system clipboard to the terminal. - */ -hterm.Terminal.prototype.paste = function() { - return hterm.pasteFromClipboard(this.document_); -}; - -/** - * Copy a string to the system clipboard. - * - * Note: If there is a selected range in the terminal, it'll be cleared. - * - * @param {string} str The string to copy. - */ -hterm.Terminal.prototype.copyStringToClipboard = function(str) { - if (this.prefs_.get('enable-clipboard-notice')) - setTimeout(this.showOverlay.bind(this, hterm.notifyCopyMessage, 500), 200); - - var copySource = this.document_.createElement('pre'); - copySource.id = 'hterm:copy-to-clipboard-source'; - copySource.textContent = str; - copySource.style.cssText = ( - '-webkit-user-select: text;' + - '-moz-user-select: text;' + - 'position: absolute;' + - 'top: -99px'); - - this.document_.body.appendChild(copySource); - - var selection = this.document_.getSelection(); - var anchorNode = selection.anchorNode; - var anchorOffset = selection.anchorOffset; - var focusNode = selection.focusNode; - var focusOffset = selection.focusOffset; - - selection.selectAllChildren(copySource); - - hterm.copySelectionToClipboard(this.document_); - - // IE doesn't support selection.extend. This means that the selection - // won't return on IE. - if (selection.extend) { - selection.collapse(anchorNode, anchorOffset); - selection.extend(focusNode, focusOffset); - } - - copySource.parentNode.removeChild(copySource); -}; - -/** - * Returns the selected text, or null if no text is selected. - * - * @return {string|null} - */ -hterm.Terminal.prototype.getSelectionText = function() { - var selection = this.scrollPort_.selection; - selection.sync(); - - if (selection.isCollapsed) - return null; - - - // Start offset measures from the beginning of the line. - var startOffset = selection.startOffset; - var node = selection.startNode; - - if (node.nodeName != 'X-ROW') { - // If the selection doesn't start on an x-row node, then it must be - // somewhere inside the x-row. Add any characters from previous siblings - // into the start offset. - - if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') { - // If node is the text node in a styled span, move up to the span node. - node = node.parentNode; - } - - while (node.previousSibling) { - node = node.previousSibling; - startOffset += hterm.TextAttributes.nodeWidth(node); - } - } - - // End offset measures from the end of the line. - var endOffset = (hterm.TextAttributes.nodeWidth(selection.endNode) - - selection.endOffset); - node = selection.endNode; - - if (node.nodeName != 'X-ROW') { - // If the selection doesn't end on an x-row node, then it must be - // somewhere inside the x-row. Add any characters from following siblings - // into the end offset. - - if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') { - // If node is the text node in a styled span, move up to the span node. - node = node.parentNode; - } - - while (node.nextSibling) { - node = node.nextSibling; - endOffset += hterm.TextAttributes.nodeWidth(node); - } - } - - var rv = this.getRowsText(selection.startRow.rowIndex, - selection.endRow.rowIndex + 1); - return lib.wc.substring(rv, startOffset, lib.wc.strWidth(rv) - endOffset); -}; - -/** - * Copy the current selection to the system clipboard, then clear it after a - * short delay. - */ -hterm.Terminal.prototype.copySelectionToClipboard = function() { - var text = this.getSelectionText(); - if (text != null) - this.copyStringToClipboard(text); -}; - -hterm.Terminal.prototype.overlaySize = function() { - this.showOverlay(this.screenSize.width + 'x' + this.screenSize.height); -}; - -/** - * Invoked by hterm.Terminal.Keyboard when a VT keystroke is detected. - * - * @param {string} string The VT string representing the keystroke, in UTF-16. - */ -hterm.Terminal.prototype.onVTKeystroke = function(string) { - if (this.scrollOnKeystroke_) - this.scrollPort_.scrollRowToBottom(this.getRowCount()); - - this.io.onVTKeystroke(this.keyboard.encode(string)); -}; - -/** - * Launches url in a new tab. - * - * @param {string} url URL to launch in a new tab. - */ -hterm.Terminal.prototype.openUrl = function(url) { - if (window.chrome && window.chrome.browser) { - // For Chrome v2 apps, we need to use this API to properly open windows. - chrome.browser.openTab({'url': url}); - } else { - var win = window.open(url, '_blank'); - win.focus(); - } -} - -/** - * Open the selected url. - */ -hterm.Terminal.prototype.openSelectedUrl_ = function() { - var str = this.getSelectionText(); - - // If there is no selection, try and expand wherever they clicked. - if (str == null) { - this.screen_.expandSelection(this.document_.getSelection()); - str = this.getSelectionText(); - - // If clicking in empty space, return. - if (str == null) - return; - } - - // Make sure URL is valid before opening. - if (str.length > 2048 || str.search(/[\s\[\](){}<>"'\\^`]/) >= 0) - return; - - // If the URI isn't anchored, it'll open relative to the extension. - // We have no way of knowing the correct schema, so assume http. - if (str.search('^[a-zA-Z][a-zA-Z0-9+.-]*://') < 0) { - // We have to whitelist a few protocols that lack authorities and thus - // never use the //. Like mailto. - switch (str.split(':', 1)[0]) { - case 'mailto': - break; - default: - str = 'http://' + str; - break; - } - } - - this.openUrl(str); -} - - -/** - * Add the terminalRow and terminalColumn properties to mouse events and - * then forward on to onMouse(). - * - * The terminalRow and terminalColumn properties contain the (row, column) - * coordinates for the mouse event. - * - * @param {Event} e The mouse event to handle. - */ -hterm.Terminal.prototype.onMouse_ = function(e) { - if (e.processedByTerminalHandler_) { - // We register our event handlers on the document, as well as the cursor - // and the scroll blocker. Mouse events that occur on the cursor or - // scroll blocker will also appear on the document, but we don't want to - // process them twice. - // - // We can't just prevent bubbling because that has other side effects, so - // we decorate the event object with this property instead. - return; - } - - var reportMouseEvents = (!this.defeatMouseReports_ && - this.vt.mouseReport != this.vt.MOUSE_REPORT_DISABLED); - - e.processedByTerminalHandler_ = true; - - // One based row/column stored on the mouse event. - e.terminalRow = parseInt((e.clientY - this.scrollPort_.visibleRowTopMargin) / - this.scrollPort_.characterSize.height) + 1; - e.terminalColumn = parseInt(e.clientX / - this.scrollPort_.characterSize.width) + 1; - - if (e.type == 'mousedown' && e.terminalColumn > this.screenSize.width) { - // Mousedown in the scrollbar area. - return; - } - - if (this.options_.cursorVisible && !reportMouseEvents) { - // If the cursor is visible and we're not sending mouse events to the - // host app, then we want to hide the terminal cursor when the mouse - // cursor is over top. This keeps the terminal cursor from interfering - // with local text selection. - if (e.terminalRow - 1 == this.screen_.cursorPosition.row && - e.terminalColumn - 1 == this.screen_.cursorPosition.column) { - this.cursorNode_.style.display = 'none'; - } else if (this.cursorNode_.style.display == 'none') { - this.cursorNode_.style.display = ''; - } - } - - if (e.type == 'mousedown') { - if (e.altKey || !reportMouseEvents) { - // If VT mouse reporting is disabled, or has been defeated with - // alt-mousedown, then the mouse will act on the local selection. - this.defeatMouseReports_ = true; - this.setSelectionEnabled(true); - } else { - // Otherwise we defer ownership of the mouse to the VT. - this.defeatMouseReports_ = false; - this.document_.getSelection().collapseToEnd(); - this.setSelectionEnabled(false); - e.preventDefault(); - } - } - - if (!reportMouseEvents) { - if (e.type == 'dblclick' && this.copyOnSelect) { - this.screen_.expandSelection(this.document_.getSelection()); - this.copySelectionToClipboard(this.document_); - } - - if (e.type == 'click' && !e.shiftKey && (e.ctrlKey || e.metaKey)) { - // Debounce this event with the dblclick event. If you try to doubleclick - // a URL to open it, Chrome will fire click then dblclick, but we won't - // have expanded the selection text at the first click event. - clearTimeout(this.timeouts_.openUrl); - this.timeouts_.openUrl = setTimeout(this.openSelectedUrl_.bind(this), - 500); - return; - } - - if (e.type == 'mousedown') { - if ((this.mouseRightClickPaste && e.button == 2 /* right button */) || - e.button == this.mousePasteButton) { - if (!this.paste()) - console.warning('Could not paste manually due to web restrictions');; - } - } - - if (e.type == 'mouseup' && e.button == 0 && this.copyOnSelect && - !this.document_.getSelection().isCollapsed) { - this.copySelectionToClipboard(this.document_); - } - - if ((e.type == 'mousemove' || e.type == 'mouseup') && - this.scrollBlockerNode_.engaged) { - // Disengage the scroll-blocker after one of these events. - this.scrollBlockerNode_.engaged = false; - this.scrollBlockerNode_.style.top = '-99px'; - } - - // Emulate arrow key presses via scroll wheel events. - if (this.scrollWheelArrowKeys_ && !e.shiftKey && - this.keyboard.applicationCursor && !this.isPrimaryScreen()) { - if (e.type == 'wheel') { - var delta = this.scrollPort_.scrollWheelDelta(e); - var lines = lib.f.smartFloorDivide( - Math.abs(delta), this.scrollPort_.characterSize.height); - - var data = '\x1bO' + (delta < 0 ? 'B' : 'A'); - this.io.sendString(data.repeat(lines)); - - e.preventDefault(); - } - } - } else /* if (this.reportMouseEvents) */ { - if (!this.scrollBlockerNode_.engaged) { - if (e.type == 'mousedown') { - // Move the scroll-blocker into place if we want to keep the scrollport - // from scrolling. - this.scrollBlockerNode_.engaged = true; - this.scrollBlockerNode_.style.top = (e.clientY - 5) + 'px'; - this.scrollBlockerNode_.style.left = (e.clientX - 5) + 'px'; - } else if (e.type == 'mousemove') { - // Oh. This means that drag-scroll was disabled AFTER the mouse down, - // in which case it's too late to engage the scroll-blocker. - this.document_.getSelection().collapseToEnd(); - e.preventDefault(); - } - } - - this.onMouse(e); - } - - if (e.type == 'mouseup' && this.document_.getSelection().isCollapsed) { - // Restore this on mouseup in case it was temporarily defeated with a - // alt-mousedown. Only do this when the selection is empty so that - // we don't immediately kill the users selection. - this.defeatMouseReports_ = false; - } -}; - -/** - * Clients should override this if they care to know about mouse events. - * - * The event parameter will be a normal DOM mouse click event with additional - * 'terminalRow' and 'terminalColumn' properties. - * - * @param {Event} e The mouse event to handle. - */ -hterm.Terminal.prototype.onMouse = function(e) { }; - -/** - * React when focus changes. - * - * @param {boolean} focused True if focused, false otherwise. - */ -hterm.Terminal.prototype.onFocusChange_ = function(focused) { - this.cursorNode_.setAttribute('focus', focused); - this.restyleCursor_(); - if (focused === true) - this.closeBellNotifications_(); -}; - -/** - * React when the ScrollPort is scrolled. - */ -hterm.Terminal.prototype.onScroll_ = function() { - this.scheduleSyncCursorPosition_(); -}; - -/** - * React when text is pasted into the scrollPort. - * - * @param {Event} e The DOM paste event to handle. - */ -hterm.Terminal.prototype.onPaste_ = function(e) { - var data = e.text.replace(/\n/mg, '\r'); - data = this.keyboard.encode(data); - if (this.options_.bracketedPaste) - data = '\x1b[200~' + data + '\x1b[201~'; - - this.io.sendString(data); -}; - -/** - * React when the user tries to copy from the scrollPort. - * - * @param {Event} e The DOM copy event. - */ -hterm.Terminal.prototype.onCopy_ = function(e) { - if (!this.useDefaultWindowCopy) { - e.preventDefault(); - setTimeout(this.copySelectionToClipboard.bind(this), 0); - } -}; - -/** - * React when the ScrollPort is resized. - * - * Note: This function should not directly contain code that alters the internal - * state of the terminal. That kind of code belongs in realizeWidth or - * realizeHeight, so that it can be executed synchronously in the case of a - * programmatic width change. - */ -hterm.Terminal.prototype.onResize_ = function() { - var columnCount = Math.floor(this.scrollPort_.getScreenWidth() / - this.scrollPort_.characterSize.width) || 0; - var rowCount = lib.f.smartFloorDivide(this.scrollPort_.getScreenHeight(), - this.scrollPort_.characterSize.height) || 0; - - if (columnCount <= 0 || rowCount <= 0) { - // We avoid these situations since they happen sometimes when the terminal - // gets removed from the document or during the initial load, and we can't - // deal with that. - // This can also happen if called before the scrollPort calculates the - // character size, meaning we dived by 0 above and default to 0 values. - return; - } - - var isNewSize = (columnCount != this.screenSize.width || - rowCount != this.screenSize.height); - - // We do this even if the size didn't change, just to be sure everything is - // in sync. - this.realizeSize_(columnCount, rowCount); - this.showZoomWarning_(this.scrollPort_.characterSize.zoomFactor != 1); - - if (isNewSize) - this.overlaySize(); - - this.restyleCursor_(); - this.scheduleSyncCursorPosition_(); -}; - -/** - * Service the cursor blink timeout. - */ -hterm.Terminal.prototype.onCursorBlink_ = function() { - if (!this.options_.cursorBlink) { - delete this.timeouts_.cursorBlink; - return; - } - - if (this.cursorNode_.getAttribute('focus') == 'false' || - this.cursorNode_.style.opacity == '0') { - this.cursorNode_.style.opacity = '1'; - this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_, - this.cursorBlinkCycle_[0]); - } else { - this.cursorNode_.style.opacity = '0'; - this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_, - this.cursorBlinkCycle_[1]); - } -}; - -/** - * Set the scrollbar-visible mode bit. - * - * If scrollbar-visible is on, the vertical scrollbar will be visible. - * Otherwise it will not. - * - * Defaults to on. - * - * @param {boolean} state True to set scrollbar-visible mode, false to unset. - */ -hterm.Terminal.prototype.setScrollbarVisible = function(state) { - this.scrollPort_.setScrollbarVisible(state); -}; - -/** - * Set the scroll wheel move multiplier. This will affect how fast the page - * scrolls on wheel events. - * - * Defaults to 1. - * - * @param {number} multiplier The multiplier to set. - */ -hterm.Terminal.prototype.setScrollWheelMoveMultipler = function(multiplier) { - this.scrollPort_.setScrollWheelMoveMultipler(multiplier); -}; - -/** - * Close all web notifications created by terminal bells. - */ -hterm.Terminal.prototype.closeBellNotifications_ = function() { - this.bellNotificationList_.forEach(function(n) { - n.close(); - }); - this.bellNotificationList_.length = 0; -}; -// SOURCE FILE: hterm/js/hterm_terminal_io.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.encodeUTF8'); - -/** - * Input/Output interface used by commands to communicate with the terminal. - * - * Commands like `nassh` and `crosh` receive an instance of this class as - * part of their argv object. This allows them to write to and read from the - * terminal without exposing them to an entire hterm.Terminal instance. - * - * The active command must override the onVTKeystroke() and sendString() methods - * of this class in order to receive keystrokes and send output to the correct - * destination. - * - * Isolating commands from the terminal provides the following benefits: - * - Provides a mechanism to save and restore onVTKeystroke and sendString - * handlers when invoking subcommands (see the push() and pop() methods). - * - The isolation makes it easier to make changes in Terminal and supporting - * classes without affecting commands. - * - In The Future commands may run in web workers where they would only be able - * to talk to a Terminal instance through an IPC mechanism. - * - * @param {hterm.Terminal} - */ -hterm.Terminal.IO = function(terminal) { - this.terminal_ = terminal; - - // The IO object to restore on IO.pop(). - this.previousIO_ = null; -}; - -/** - * Show the terminal overlay for a given amount of time. - * - * The terminal overlay appears in inverse video in a large font, centered - * over the terminal. You should probably keep the overlay message brief, - * since it's in a large font and you probably aren't going to check the size - * of the terminal first. - * - * @param {string} msg The text (not HTML) message to display in the overlay. - * @param {number} opt_timeout The amount of time to wait before fading out - * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay - * stay up forever (or until the next overlay). - */ -hterm.Terminal.IO.prototype.showOverlay = function(message, opt_timeout) { - this.terminal_.showOverlay(message, opt_timeout); -}; - -/** - * Open an frame in the current terminal window, pointed to the specified - * url. - * - * Eventually we'll probably need size/position/decoration options. - * The user should also be able to move/resize the frame. - * - * @param {string} url The URL to load in the frame. - * @param {Object} opt_options Optional frame options. Not implemented. - */ -hterm.Terminal.IO.prototype.createFrame = function(url, opt_options) { - return new hterm.Frame(this.terminal_, url, opt_options); -}; - -/** - * Change the preference profile for the terminal. - * - * @param profileName {string} The name of the preference profile to activate. - */ -hterm.Terminal.IO.prototype.setTerminalProfile = function(profileName) { - this.terminal_.setProfile(profileName); -}; - -/** - * Create a new hterm.Terminal.IO instance and make it active on the Terminal - * object associated with this instance. - * - * This is used to pass control of the terminal IO off to a subcommand. The - * IO.pop() method can be used to restore control when the subcommand completes. - */ -hterm.Terminal.IO.prototype.push = function() { - var io = new hterm.Terminal.IO(this.terminal_); - io.keyboardCaptured_ = this.keyboardCaptured_; - - io.columnCount = this.columnCount; - io.rowCount = this.rowCount; - - io.previousIO_ = this.terminal_.io; - this.terminal_.io = io; - - return io; -}; - -/** - * Restore the Terminal's previous IO object. - */ -hterm.Terminal.IO.prototype.pop = function() { - this.terminal_.io = this.previousIO_; -}; - -/** - * Called when data needs to be sent to the current command. - * - * Clients should override this to receive notification of pending data. - * - * @param {string} string The data to send. - */ -hterm.Terminal.IO.prototype.sendString = function(string) { - // Override this. - console.log('Unhandled sendString: ' + string); -}; - -/** - * Called when a terminal keystroke is detected. - * - * Clients should override this to receive notification of keystrokes. - * - * The keystroke data will be encoded according to the 'send-encoding' - * preference. - * - * @param {string} string The VT key sequence. - */ -hterm.Terminal.IO.prototype.onVTKeystroke = function(string) { - // Override this. - console.log('Unobserverd VT keystroke: ' + JSON.stringify(string)); -}; - -hterm.Terminal.IO.prototype.onTerminalResize_ = function(width, height) { - var obj = this; - while (obj) { - obj.columnCount = width; - obj.rowCount = height; - obj = obj.previousIO_; - } - - this.onTerminalResize(width, height); -}; - -/** - * Called when terminal size is changed. - * - * Clients should override this to receive notification of resize. - * - * @param {string|integer} terminal width. - * @param {string|integer} terminal height. - */ -hterm.Terminal.IO.prototype.onTerminalResize = function(width, height) { - // Override this. -}; - -/** - * Write a UTF-8 encoded byte string to the terminal. - * - * @param {string} string The UTF-8 encoded string to print. - */ -hterm.Terminal.IO.prototype.writeUTF8 = function(string) { - if (this.terminal_.io != this) - throw 'Attempt to print from inactive IO object.'; - - this.terminal_.interpret(string); -}; - -/** - * Write a UTF-8 encoded byte string to the terminal followed by crlf. - * - * @param {string} string The UTF-8 encoded string to print. - */ -hterm.Terminal.IO.prototype.writelnUTF8 = function(string) { - if (this.terminal_.io != this) - throw 'Attempt to print from inactive IO object.'; - - this.terminal_.interpret(string + '\r\n'); -}; - -/** - * Write a UTF-16 JavaScript string to the terminal. - * - * @param {string} string The string to print. - */ -hterm.Terminal.IO.prototype.print = -hterm.Terminal.IO.prototype.writeUTF16 = function(string) { - this.writeUTF8(lib.encodeUTF8(string)); -}; - -/** - * Print a UTF-16 JavaScript string to the terminal followed by a newline. - * - * @param {string} string The string to print. - */ -hterm.Terminal.IO.prototype.println = -hterm.Terminal.IO.prototype.writelnUTF16 = function(string) { - this.writelnUTF8(lib.encodeUTF8(string)); -}; -// SOURCE FILE: hterm/js/hterm_text_attributes.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.colors'); - -/** - * Constructor for TextAttribute objects. - * - * These objects manage a set of text attributes such as foreground/ - * background color, bold, faint, italic, blink, underline, and strikethrough. - * - * TextAttribute instances can be used to construct a DOM container implementing - * the current attributes, or to test an existing DOM container for - * compatibility with the current attributes. - * - * @constructor - * @param {HTMLDocument} document The parent document to use when creating - * new DOM containers. - */ -hterm.TextAttributes = function(document) { - this.document_ = document; - // These variables contain the source of the color as either: - // SRC_DEFAULT (use context default) - // SRC_RGB (specified in 'rgb( r, g, b)' form) - // number (representing the index from color palette to use) - this.foregroundSource = this.SRC_DEFAULT; - this.backgroundSource = this.SRC_DEFAULT; - - // These properties cache the value in the color table, but foregroundSource - // and backgroundSource contain the canonical values. - this.foreground = this.DEFAULT_COLOR; - this.background = this.DEFAULT_COLOR; - - this.defaultForeground = 'rgb(255, 255, 255)'; - this.defaultBackground = 'rgb(0, 0, 0)'; - - this.bold = false; - this.faint = false; - this.italic = false; - this.blink = false; - this.underline = false; - this.strikethrough = false; - this.inverse = false; - this.invisible = false; - this.wcNode = false; - this.asciiNode = true; - this.tileData = null; - - this.colorPalette = null; - this.resetColorPalette(); -}; - -/** - * If false, we ignore the bold attribute. - * - * This is used for fonts that have a bold version that is a different size - * than the normal weight version. - */ -hterm.TextAttributes.prototype.enableBold = true; - -/** - * If true, use bright colors (if available) for bold text. - * - * This setting is independent of the enableBold setting. - */ -hterm.TextAttributes.prototype.enableBoldAsBright = true; - -/** - * A sentinel constant meaning "whatever the default color is in this context". - */ -hterm.TextAttributes.prototype.DEFAULT_COLOR = lib.f.createEnum(''); - -/** - * A constant string used to specify that source color is context default. - */ -hterm.TextAttributes.prototype.SRC_DEFAULT = 'default'; - - -/** - * A constant string used to specify that the source of a color is a valid - * rgb( r, g, b) specifier. - */ -hterm.TextAttributes.prototype.SRC_RGB = 'rgb'; - -/** - * The document object which should own the DOM nodes created by this instance. - * - * @param {HTMLDocument} document The parent document. - */ -hterm.TextAttributes.prototype.setDocument = function(document) { - this.document_ = document; -}; - -/** - * Create a deep copy of this object. - * - * @return {hterm.TextAttributes} A deep copy of this object. - */ -hterm.TextAttributes.prototype.clone = function() { - var rv = new hterm.TextAttributes(null); - - for (var key in this) { - rv[key] = this[key]; - } - - rv.colorPalette = this.colorPalette.concat(); - return rv; -}; - -/** - * Reset the current set of attributes. - * - * This does not affect the palette. Use resetColorPalette() for that. - * It also doesn't affect the tile data, it's not meant to. - */ -hterm.TextAttributes.prototype.reset = function() { - this.foregroundSource = this.SRC_DEFAULT; - this.backgroundSource = this.SRC_DEFAULT; - this.foreground = this.DEFAULT_COLOR; - this.background = this.DEFAULT_COLOR; - this.bold = false; - this.faint = false; - this.italic = false; - this.blink = false; - this.underline = false; - this.strikethrough = false; - this.inverse = false; - this.invisible = false; - this.wcNode = false; - this.asciiNode = true; -}; - -/** - * Reset the color palette to the default state. - */ -hterm.TextAttributes.prototype.resetColorPalette = function() { - this.colorPalette = lib.colors.colorPalette.concat(); - this.syncColors(); -}; - -/** - * Test if the current attributes describe unstyled text. - * - * @return {boolean} True if the current attributes describe unstyled text. - */ -hterm.TextAttributes.prototype.isDefault = function() { - return (this.foregroundSource == this.SRC_DEFAULT && - this.backgroundSource == this.SRC_DEFAULT && - !this.bold && - !this.faint && - !this.italic && - !this.blink && - !this.underline && - !this.strikethrough && - !this.inverse && - !this.invisible && - !this.wcNode && - this.asciiNode && - this.tileData == null); -}; - -/** - * Create a DOM container (a span or a text node) with a style to match the - * current set of attributes. - * - * This method will create a plain text node if the text is unstyled, or - * an HTML span if the text is styled. Due to lack of monospace wide character - * fonts on certain systems (e.g. Chrome OS), we need to put each wide character - * in a span of CSS class '.wc-node' which has double column width. - * Each vt_tiledata tile is also represented by a span with a single - * character, with CSS classes '.tile' and '.tile_'. - * - * @param {string} opt_textContent Optional text content for the new container. - * @return {HTMLNode} An HTML span or text nodes styled to match the current - * attributes. - */ -hterm.TextAttributes.prototype.createContainer = function(opt_textContent) { - if (this.isDefault()) - return this.document_.createTextNode(opt_textContent); - - var span = this.document_.createElement('span'); - var style = span.style; - var classes = []; - - if (this.foreground != this.DEFAULT_COLOR) - style.color = this.foreground; - - if (this.background != this.DEFAULT_COLOR) - style.backgroundColor = this.background; - - if (this.enableBold && this.bold) - style.fontWeight = 'bold'; - - if (this.faint) - span.faint = true; - - if (this.italic) - style.fontStyle = 'italic'; - - if (this.blink) { - classes.push('blink-node'); - span.blinkNode = true; - } - - var textDecoration = ''; - if (this.underline) { - textDecoration += ' underline'; - span.underline = true; - } - if (this.strikethrough) { - textDecoration += ' line-through'; - span.strikethrough = true; - } - if (textDecoration) { - style.textDecoration = textDecoration; - } - - if (this.wcNode) { - classes.push('wc-node'); - span.wcNode = true; - span.asciiNode = false; - } - - if (this.tileData != null) { - classes.push('tile'); - classes.push('tile_' + this.tileData); - span.tileNode = true; - } - - if (opt_textContent) - span.textContent = opt_textContent; - - if (classes.length) - span.className = classes.join(' '); - - return span; -}; - -/** - * Tests if the provided object (string, span or text node) has the same - * style as this TextAttributes instance. - * - * This indicates that text with these attributes could be inserted directly - * into the target DOM node. - * - * For the purposes of this method, a string is considered a text node. - * - * @param {string|HTMLNode} obj The object to test. - * @return {boolean} True if the provided container has the same style as - * this attributes instance. - */ -hterm.TextAttributes.prototype.matchesContainer = function(obj) { - if (typeof obj == 'string' || obj.nodeType == 3) - return this.isDefault(); - - var style = obj.style; - - // We don't want to put multiple characters in a wcNode or a tile. - // See the comments in createContainer. - return (!(this.wcNode || obj.wcNode) && - this.asciiNode == this.asciiNode && - !(this.tileData != null || obj.tileNode) && - this.foreground == style.color && - this.background == style.backgroundColor && - (this.enableBold && this.bold) == !!style.fontWeight && - this.blink == obj.blinkNode && - this.italic == !!style.fontStyle && - !!this.underline == !!obj.underline && - !!this.strikethrough == !!obj.strikethrough); -}; - -hterm.TextAttributes.prototype.setDefaults = function(foreground, background) { - this.defaultForeground = foreground; - this.defaultBackground = background; - - this.syncColors(); -}; - -/** - * Updates foreground and background properties based on current indices and - * other state. - * - * @param {string} terminalForeground The terminal foreground color for use as - * inverse text background. - * @param {string} terminalBackground The terminal background color for use as - * inverse text foreground. - * - */ -hterm.TextAttributes.prototype.syncColors = function() { - function getBrightIndex(i) { - if (i < 8) { - // If the color is from the lower half of the ANSI 16, add 8. - return i + 8; - } - - // If it's not from the 16 color palette, ignore bold requests. This - // matches the behavior of gnome-terminal. - return i; - } - - var foregroundSource = this.foregroundSource; - var backgroundSource = this.backgroundSource; - var defaultForeground = this.DEFAULT_COLOR; - var defaultBackground = this.DEFAULT_COLOR; - - if (this.inverse) { - foregroundSource = this.backgroundSource; - backgroundSource = this.foregroundSource; - // We can't inherit the container's color anymore. - defaultForeground = this.defaultBackground; - defaultBackground = this.defaultForeground; - } - - if (this.enableBoldAsBright && this.bold) { - if (foregroundSource != this.SRC_DEFAULT && - foregroundSource != this.SRC_RGB) { - foregroundSource = getBrightIndex(foregroundSource); - } - } - - if (this.invisible) { - foregroundSource = backgroundSource; - defaultForeground = this.defaultBackground; - } - - // Set fore/background colors unless already specified in rgb(r, g, b) form. - if (foregroundSource != this.SRC_RGB) { - this.foreground = ((foregroundSource == this.SRC_DEFAULT) ? - defaultForeground : this.colorPalette[foregroundSource]); - } - - if (this.faint && !this.invisible) { - var colorToMakeFaint = ((this.foreground == this.DEFAULT_COLOR) ? - this.defaultForeground : this.foreground); - this.foreground = lib.colors.mix(colorToMakeFaint, 'rgb(0, 0, 0)', 0.3333); - } - - if (backgroundSource != this.SRC_RGB) { - this.background = ((backgroundSource == this.SRC_DEFAULT) ? - defaultBackground : this.colorPalette[backgroundSource]); - } -}; - -/** - * Static method used to test if the provided objects (strings, spans or - * text nodes) have the same style. - * - * For the purposes of this method, a string is considered a text node. - * - * @param {string|HTMLNode} obj1 An object to test. - * @param {string|HTMLNode} obj2 Another object to test. - * @return {boolean} True if the containers have the same style. - */ -hterm.TextAttributes.containersMatch = function(obj1, obj2) { - if (typeof obj1 == 'string') - return hterm.TextAttributes.containerIsDefault(obj2); - - if (obj1.nodeType != obj2.nodeType) - return false; - - if (obj1.nodeType == 3) - return true; - - var style1 = obj1.style; - var style2 = obj2.style; - - return (style1.color == style2.color && - style1.backgroundColor == style2.backgroundColor && - style1.fontWeight == style2.fontWeight && - style1.fontStyle == style2.fontStyle && - style1.textDecoration == style2.textDecoration); -}; - -/** - * Static method to test if a given DOM container represents unstyled text. - * - * For the purposes of this method, a string is considered a text node. - * - * @param {string|HTMLNode} obj1 An object to test. - * @return {boolean} True if the object is unstyled. - */ -hterm.TextAttributes.containerIsDefault = function(obj) { - return typeof obj == 'string' || obj.nodeType == 3; -}; - -/** - * Static method to get the column width of a node's textContent. - * - * @param {HTMLElement} node The HTML element to get the width of textContent - * from. - * @return {integer} The column width of the node's textContent. - */ -hterm.TextAttributes.nodeWidth = function(node) { - if (!node.asciiNode) { - return lib.wc.strWidth(node.textContent); - } else { - return node.textContent.length; - } -} - -/** - * Static method to get the substr of a node's textContent. The start index - * and substr width are computed in column width. - * - * @param {HTMLElement} node The HTML element to get the substr of textContent - * from. - * @param {integer} start The starting offset in column width. - * @param {integer} width The width to capture in column width. - * @return {integer} The extracted substr of the node's textContent. - */ -hterm.TextAttributes.nodeSubstr = function(node, start, width) { - if (!node.asciiNode) { - return lib.wc.substr(node.textContent, start, width); - } else { - return node.textContent.substr(start, width); - } -} - -/** - * Static method to get the substring based of a node's textContent. The - * start index of end index are computed in column width. - * - * @param {HTMLElement} node The HTML element to get the substr of textContent - * from. - * @param {integer} start The starting offset in column width. - * @param {integer} end The ending offset in column width. - * @return {integer} The extracted substring of the node's textContent. - */ -hterm.TextAttributes.nodeSubstring = function(node, start, end) { - if (!node.asciiNode) { - return lib.wc.substring(node.textContent, start, end); - } else { - return node.textContent.substring(start, end); - } -}; - -/** - * Static method to split a string into contiguous runs of single-width - * characters and runs of double-width characters. - * - * @param {string} str The string to split. - * @return {Array} An array of objects that contain substrings of str, where - * each substring is either a contiguous runs of single-width characters - * or a double-width character. For objects that contain a double-width - * character, its wcNode property is set to true. For objects that contain - * only ASCII content, its asciiNode property is set to true. - */ -hterm.TextAttributes.splitWidecharString = function(str) { - var rv = []; - var base = 0, length = 0; - var asciiNode = true; - - for (var i = 0; i < str.length;) { - var c = str.codePointAt(i); - var increment = (c <= 0xffff) ? 1 : 2; - if (c < 128) { - length += increment; - } else if (lib.wc.charWidth(c) <= 1) { - length += increment; - asciiNode = false; - } else { - if (length) { - rv.push({ - str: str.substr(base, length), - asciiNode: asciiNode, - }); - asciiNode = true; - } - rv.push({ - str: str.substr(i, increment), - wcNode: true, - asciiNode: false, - }); - base = i + increment; - length = 0; - } - i += increment; - } - - if (length) { - rv.push({ - str: str.substr(base, length), - asciiNode: asciiNode, - }); - } - - return rv; -}; -// SOURCE FILE: hterm/js/hterm_vt.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.colors', 'lib.f', 'lib.UTF8Decoder', - 'hterm.VT.CharacterMap'); - -/** - * Constructor for the VT escape sequence interpreter. - * - * The interpreter operates on a terminal object capable of performing cursor - * move operations, painting characters, etc. - * - * This interpreter is intended to be compatible with xterm, though it - * ignores some of the more esoteric escape sequences. - * - * Control sequences are documented in hterm/doc/ControlSequences.md. - * - * @param {hterm.Terminal} terminal Terminal to use with the interpreter. - */ -hterm.VT = function(terminal) { - /** - * The display terminal object associated with this virtual terminal. - */ - this.terminal = terminal; - - terminal.onMouse = this.onTerminalMouse_.bind(this); - this.mouseReport = this.MOUSE_REPORT_DISABLED; - - // Parse state left over from the last parse. You should use the parseState - // instance passed into your parse routine, rather than reading - // this.parseState_ directly. - this.parseState_ = new hterm.VT.ParseState(this.parseUnknown_); - - // Any "leading modifiers" for the escape sequence, such as '?', ' ', or the - // other modifiers handled in this.parseCSI_. - this.leadingModifier_ = ''; - - // Any "trailing modifiers". Same character set as a leading modifier, - // except these are found after the numeric arguments. - this.trailingModifier_ = ''; - - // Whether or not to respect the escape codes for setting terminal width. - this.allowColumnWidthChanges_ = false; - - // The amount of time we're willing to wait for the end of an OSC sequence. - this.oscTimeLimit_ = 20000; - - // Decoder to maintain UTF-8 decode state. - this.utf8Decoder_ = new lib.UTF8Decoder(); - - /** - * Whether to accept the 8-bit control characters. - * - * An 8-bit control character is one with the eighth bit set. These - * didn't work on 7-bit terminals so they all have two byte equivalents. - * Most hosts still only use the two-byte versions. - * - * We ignore 8-bit control codes by default. This is in order to avoid - * issues with "accidental" usage of codes that need to be terminated. - * The "accident" usually involves cat'ing binary data. - */ - this.enable8BitControl = false; - - /** - * Whether to allow the OSC 52 sequence to write to the system clipboard. - */ - this.enableClipboardWrite = true; - - /** - * Respect the host's attempt to change the cursor blink status using - * the DEC Private mode 12. - */ - this.enableDec12 = false; - - /** - * The expected encoding method for data received from the host. - */ - this.characterEncoding = 'utf-8'; - - /** - * Max length of an unterminated DCS, OSC, PM or APC sequence before we give - * up and ignore the code. - * - * These all end with a String Terminator (ST, '\x9c', ESC '\\') or - * (BEL, '\x07') character, hence the "string sequence" moniker. - */ - this.maxStringSequence = 1024; - - /** - * If true, emit warnings when we encounter a control character or escape - * sequence that we don't recognize or explicitly ignore. - */ - this.warnUnimplemented = true; - - /** - * The set of available character maps (used by G0...G3 below). - */ - this.characterMaps = new hterm.VT.CharacterMaps(); - - /** - * The default G0...G3 character maps. - * We default to the US/ASCII map everywhere as that aligns with other - * terminals, and it makes it harder to accidentally switch to the graphics - * character map (Ctrl-N). Any program that wants to use the graphics map - * will usually select it anyways since there's no guarantee what state any - * of the maps are in at any particular time. - */ - this.G0 = this.G1 = this.G2 = this.G3 = - this.characterMaps.getMap('B'); - - /** - * The 7-bit visible character set. - * - * This is a mapping from inbound data to display glyph. The GL set - * contains the 94 bytes from 0x21 to 0x7e. - * - * The default GL set is 'B', US ASCII. - */ - this.GL = 'G0'; - - /** - * The 8-bit visible character set. - * - * This is a mapping from inbound data to display glyph. The GR set - * contains the 94 bytes from 0xa1 to 0xfe. - */ - this.GR = 'G0'; - - /** - * The current encoding of the terminal. - * - * We only support ECMA-35 and UTF-8, so go with a boolean here. - * The encoding can be locked too. - */ - this.codingSystemUtf8_ = false; - this.codingSystemLocked_ = false; - - // Construct a regular expression to match the known one-byte control chars. - // This is used in parseUnknown_ to quickly scan a string for the next - // control character. - this.cc1Pattern_ = null; - this.updateEncodingState_(); - - // Saved state used in DECSC. - // - // This is a place to store a copy VT state, it is *not* the active state. - this.savedState_ = new hterm.VT.CursorState(this); -}; - -/** - * No mouse events. - */ -hterm.VT.prototype.MOUSE_REPORT_DISABLED = 0; - -/** - * DECSET mode 1000. - * - * Report mouse down/up events only. - */ -hterm.VT.prototype.MOUSE_REPORT_CLICK = 1; - -/** - * DECSET mode 1002. - * - * Report mouse down/up and movement while a button is down. - */ -hterm.VT.prototype.MOUSE_REPORT_DRAG = 3; - -/** - * ParseState constructor. - * - * This object tracks the current state of the parse. It has fields for the - * current buffer, position in the buffer, and the parse function. - * - * @param {function} defaultFunc The default parser function. - * @param {string} opt_buf Optional string to use as the current buffer. - */ -hterm.VT.ParseState = function(defaultFunction, opt_buf) { - this.defaultFunction = defaultFunction; - this.buf = opt_buf || null; - this.pos = 0; - this.func = defaultFunction; - this.args = []; -}; - -/** - * Reset the parser function, buffer, and position. - */ -hterm.VT.ParseState.prototype.reset = function(opt_buf) { - this.resetParseFunction(); - this.resetBuf(opt_buf || ''); - this.resetArguments(); -}; - -/** - * Reset the parser function only. - */ -hterm.VT.ParseState.prototype.resetParseFunction = function() { - this.func = this.defaultFunction; -}; - -/** - * Reset the buffer and position only. - * - * @param {string} buf Optional new value for buf, defaults to null. - */ -hterm.VT.ParseState.prototype.resetBuf = function(opt_buf) { - this.buf = (typeof opt_buf == 'string') ? opt_buf : null; - this.pos = 0; -}; - -/** - * Reset the arguments list only. - * - * @param {string} opt_arg_zero Optional initial value for args[0]. - */ -hterm.VT.ParseState.prototype.resetArguments = function(opt_arg_zero) { - this.args.length = 0; - if (typeof opt_arg_zero != 'undefined') - this.args[0] = opt_arg_zero; -}; - -/** - * Get an argument as an integer. - * - * @param {number} argnum The argument number to retrieve. - */ -hterm.VT.ParseState.prototype.iarg = function(argnum, defaultValue) { - var str = this.args[argnum]; - if (str) { - var ret = parseInt(str, 10); - // An argument of zero is treated as the default value. - if (ret == 0) - ret = defaultValue; - return ret; - } - return defaultValue; -}; - -/** - * Advance the parse position. - * - * @param {integer} count The number of bytes to advance. - */ -hterm.VT.ParseState.prototype.advance = function(count) { - this.pos += count; -}; - -/** - * Return the remaining portion of the buffer without affecting the parse - * position. - * - * @return {string} The remaining portion of the buffer. - */ -hterm.VT.ParseState.prototype.peekRemainingBuf = function() { - return this.buf.substr(this.pos); -}; - -/** - * Return the next single character in the buffer without affecting the parse - * position. - * - * @return {string} The next character in the buffer. - */ -hterm.VT.ParseState.prototype.peekChar = function() { - return this.buf.substr(this.pos, 1); -}; - -/** - * Return the next single character in the buffer and advance the parse - * position one byte. - * - * @return {string} The next character in the buffer. - */ -hterm.VT.ParseState.prototype.consumeChar = function() { - return this.buf.substr(this.pos++, 1); -}; - -/** - * Return true if the buffer is empty, or the position is past the end. - */ -hterm.VT.ParseState.prototype.isComplete = function() { - return this.buf == null || this.buf.length <= this.pos; -}; - -hterm.VT.CursorState = function(vt) { - this.vt_ = vt; - this.save(); -}; - -hterm.VT.CursorState.prototype.save = function() { - this.cursor = this.vt_.terminal.saveCursor(); - - this.textAttributes = this.vt_.terminal.getTextAttributes().clone(); - - this.GL = this.vt_.GL; - this.GR = this.vt_.GR; - - this.G0 = this.vt_.G0; - this.G1 = this.vt_.G1; - this.G2 = this.vt_.G2; - this.G3 = this.vt_.G3; -}; - -hterm.VT.CursorState.prototype.restore = function() { - this.vt_.terminal.restoreCursor(this.cursor); - - this.vt_.terminal.setTextAttributes(this.textAttributes.clone()); - - this.vt_.GL = this.GL; - this.vt_.GR = this.GR; - - this.vt_.G0 = this.G0; - this.vt_.G1 = this.G1; - this.vt_.G2 = this.G2; - this.vt_.G3 = this.G3; -}; - -hterm.VT.prototype.reset = function() { - this.G0 = this.characterMaps.getMap('B'); - this.G1 = this.characterMaps.getMap('0'); - this.G2 = this.characterMaps.getMap('B'); - this.G3 = this.characterMaps.getMap('B'); - - this.GL = 'G0'; - this.GR = 'G0'; - - this.savedState_ = new hterm.VT.CursorState(this); - - this.mouseReport = this.MOUSE_REPORT_DISABLED; -}; - -/** - * Handle terminal mouse events. - * - * See the "Mouse Tracking" section of [xterm]. - */ -hterm.VT.prototype.onTerminalMouse_ = function(e) { - if (this.mouseReport == this.MOUSE_REPORT_DISABLED) - return; - - // Temporary storage for our response. - var response; - - // Modifier key state. - var mod = 0; - if (e.shiftKey) - mod |= 4; - if (e.metaKey || (this.terminal.keyboard.altIsMeta && e.altKey)) - mod |= 8; - if (e.ctrlKey) - mod |= 16; - - // TODO(rginda): We should also support mode 1005 and/or 1006 to extend the - // coordinate space. Though, after poking around just a little, I wasn't - // able to get vi or emacs to use either of these modes. - var x = String.fromCharCode(lib.f.clamp(e.terminalColumn + 32, 32, 255)); - var y = String.fromCharCode(lib.f.clamp(e.terminalRow + 32, 32, 255)); - - switch (e.type) { - case 'wheel': - // Mouse wheel is treated as button 1 or 2 plus an additional 64. - b = (((e.deltaY * -1) > 0) ? 0 : 1) + 96; - b |= mod; - response = '\x1b[M' + String.fromCharCode(b) + x + y; - - // Keep the terminal from scrolling. - e.preventDefault(); - break; - - case 'mousedown': - // Buttons are encoded as button number plus 32. - var b = Math.min(e.button, 2) + 32; - - // And mix in the modifier keys. - b |= mod; - - response = '\x1b[M' + String.fromCharCode(b) + x + y; - break; - - case 'mouseup': - // Mouse up has no indication of which button was released. - response = '\x1b[M\x23' + x + y; - break; - - case 'mousemove': - if (this.mouseReport == this.MOUSE_REPORT_DRAG && e.buttons) { - // Standard button bits. The XTerm protocol only reports the first - // button press (e.g. if left & right are pressed, right is ignored), - // and it only supports the first three buttons. If none of them are - // pressed, then XTerm flags it as a release. We'll do the same. - b = 32; - - // Priority here matches XTerm: left, middle, right. - if (e.buttons & 0x1) { - // Report left button. - b += 0; - } else if (e.buttons & 0x4) { - // Report middle button. - b += 1; - } else if (e.buttons & 0x2) { - // Report right button. - b += 2; - } else { - // Release higher buttons. - b += 3; - } - - // Add 32 to indicate mouse motion. - b += 32; - - // And mix in the modifier keys. - b |= mod; - - response = '\x1b[M' + String.fromCharCode(b) + x + y; - } - - break; - - case 'click': - case 'dblclick': - break; - - default: - console.error('Unknown mouse event: ' + e.type, e); - break; - } - - if (response) - this.terminal.io.sendString(response); -}; - -/** - * Interpret a string of characters, displaying the results on the associated - * terminal object. - * - * The buffer will be decoded according to the 'receive-encoding' preference. - */ -hterm.VT.prototype.interpret = function(buf) { - this.parseState_.resetBuf(this.decode(buf)); - - while (!this.parseState_.isComplete()) { - var func = this.parseState_.func; - var pos = this.parseState_.pos; - var buf = this.parseState_.buf; - - this.parseState_.func.call(this, this.parseState_); - - if (this.parseState_.func == func && this.parseState_.pos == pos && - this.parseState_.buf == buf) { - throw 'Parser did not alter the state!'; - } - } -}; - -/** - * Decode a string according to the 'receive-encoding' preference. - */ -hterm.VT.prototype.decode = function(str) { - if (this.characterEncoding == 'utf-8') - return this.decodeUTF8(str); - - return str; -}; - -/** - * Encode a UTF-16 string as UTF-8. - * - * See also: https://en.wikipedia.org/wiki/UTF-16 - */ -hterm.VT.prototype.encodeUTF8 = function(str) { - return lib.encodeUTF8(str); -}; - -/** - * Decode a UTF-8 string into UTF-16. - */ -hterm.VT.prototype.decodeUTF8 = function(str) { - return this.utf8Decoder_.decode(str); -}; - -/** - * Set the encoding of the terminal. - * - * @param {string} encoding The name of the encoding to set. - */ -hterm.VT.prototype.setEncoding = function(encoding) { - switch (encoding) { - default: - console.warn('Invalid value for "terminal-encoding": ' + encoding); - // Fall through. - case 'iso-2022': - this.codingSystemUtf8_ = false; - this.codingSystemLocked_ = false; - break; - case 'utf-8-locked': - this.codingSystemUtf8_ = true; - this.codingSystemLocked_ = true; - break; - case 'utf-8': - this.codingSystemUtf8_ = true; - this.codingSystemLocked_ = false; - break; - } - - this.updateEncodingState_(); -}; - -/** - * Refresh internal state when the encoding changes. - */ -hterm.VT.prototype.updateEncodingState_ = function() { - // If we're in UTF8 mode, don't suport 8-bit escape sequences as we'll never - // see those -- everything should be UTF8! - var cc1 = Object.keys(hterm.VT.CC1) - .filter((e) => !this.codingSystemUtf8_ || e.charCodeAt() < 0x80) - .map((e) => '\\x' + lib.f.zpad(e.charCodeAt().toString(16), 2)) - .join(''); - this.cc1Pattern_ = new RegExp(`[${cc1}]`); -}; - -/** - * The default parse function. - * - * This will scan the string for the first 1-byte control character (C0/C1 - * characters from [CTRL]). Any plain text coming before the code will be - * printed to the terminal, then the control character will be dispatched. - */ -hterm.VT.prototype.parseUnknown_ = function(parseState) { - var self = this; - - function print(str) { - if (!self.codingSystemUtf8_ && self[self.GL].GL) - str = self[self.GL].GL(str); - - self.terminal.print(str); - }; - - // Search for the next contiguous block of plain text. - var buf = parseState.peekRemainingBuf(); - var nextControl = buf.search(this.cc1Pattern_); - - if (nextControl == 0) { - // We've stumbled right into a control character. - this.dispatch('CC1', buf.substr(0, 1), parseState); - parseState.advance(1); - return; - } - - if (nextControl == -1) { - // There are no control characters in this string. - print(buf); - parseState.reset(); - return; - } - - print(buf.substr(0, nextControl)); - this.dispatch('CC1', buf.substr(nextControl, 1), parseState); - parseState.advance(nextControl + 1); -}; - -/** - * Parse a Control Sequence Introducer code and dispatch it. - * - * See [CSI] for some useful information about these codes. - */ -hterm.VT.prototype.parseCSI_ = function(parseState) { - var ch = parseState.peekChar(); - var args = parseState.args; - - if (ch >= '@' && ch <= '~') { - // This is the final character. - this.dispatch('CSI', this.leadingModifier_ + this.trailingModifier_ + ch, - parseState); - parseState.resetParseFunction(); - - } else if (ch == ';') { - // Parameter delimiter. - if (this.trailingModifier_) { - // Parameter delimiter after the trailing modifier. That's a paddlin'. - parseState.resetParseFunction(); - - } else { - if (!args.length) { - // They omitted the first param, we need to supply it. - args.push(''); - } - - args.push(''); - } - - } else if (ch >= '0' && ch <= '9') { - // Next byte in the current parameter. - - if (this.trailingModifier_) { - // Numeric parameter after the trailing modifier. That's a paddlin'. - parseState.resetParseFunction(); - } else { - if (!args.length) { - args[0] = ch; - } else { - args[args.length - 1] += ch; - } - } - - } else if (ch >= ' ' && ch <= '?' && ch != ':') { - // Modifier character. - if (!args.length) { - this.leadingModifier_ += ch; - } else { - this.trailingModifier_ += ch; - } - - } else if (this.cc1Pattern_.test(ch)) { - // Control character. - this.dispatch('CC1', ch, parseState); - - } else { - // Unexpected character in sequence, bail out. - parseState.resetParseFunction(); - } - - parseState.advance(1); -}; - -/** - * Skip over the string until the next String Terminator (ST, 'ESC \') or - * Bell (BEL, '\x07'). - * - * The string is accumulated in parseState.args[0]. Make sure to reset the - * arguments (with parseState.resetArguments) before starting the parse. - * - * You can detect that parsing in complete by checking that the parse - * function has changed back to the default parse function. - * - * If we encounter more than maxStringSequence characters, we send back - * the unterminated sequence to be re-parsed with the default parser function. - * - * @return {boolean} If true, parsing is ongoing or complete. If false, we've - * exceeded the max string sequence. - */ -hterm.VT.prototype.parseUntilStringTerminator_ = function(parseState) { - var buf = parseState.peekRemainingBuf(); - var nextTerminator = buf.search(/(\x1b\\|\x07)/); - var args = parseState.args; - - if (!args.length) { - args[0] = ''; - args[1] = new Date(); - } - - if (nextTerminator == -1) { - // No terminator here, have to wait for the next string. - - args[0] += buf; - - var abortReason; - - if (args[0].length > this.maxStringSequence) - abortReason = 'too long: ' + args[0].length; - - if (args[0].indexOf('\x1b') != -1) - abortReason = 'embedded escape: ' + args[0].indexOf('\x1b'); - - if (new Date() - args[1] > this.oscTimeLimit_) - abortReason = 'timeout expired: ' + new Date() - args[1]; - - if (abortReason) { - console.log('parseUntilStringTerminator_: aborting: ' + abortReason, - args[0]); - parseState.reset(args[0]); - return false; - } - - parseState.advance(buf.length); - return true; - } - - if (args[0].length + nextTerminator > this.maxStringSequence) { - // We found the end of the sequence, but we still think it's too long. - parseState.reset(args[0] + buf); - return false; - } - - args[0] += buf.substr(0, nextTerminator); - - parseState.resetParseFunction(); - parseState.advance(nextTerminator + - (buf.substr(nextTerminator, 1) == '\x1b' ? 2 : 1)); - - return true; -}; - -/** - * Dispatch to the function that handles a given CC1, ESC, or CSI or VT52 code. - */ -hterm.VT.prototype.dispatch = function(type, code, parseState) { - var handler = hterm.VT[type][code]; - if (!handler) { - if (this.warnUnimplemented) - console.warn('Unknown ' + type + ' code: ' + JSON.stringify(code)); - return; - } - - if (handler == hterm.VT.ignore) { - if (this.warnUnimplemented) - console.warn('Ignored ' + type + ' code: ' + JSON.stringify(code)); - return; - } - - if (type == 'CC1' && code > '\x7f' && !this.enable8BitControl) { - // It's kind of a hack to put this here, but... - // - // If we're dispatching a 'CC1' code, and it's got the eighth bit set, - // but we're not supposed to handle 8-bit codes? Just ignore it. - // - // This prevents an errant (DCS, '\x90'), (OSC, '\x9d'), (PM, '\x9e') or - // (APC, '\x9f') from locking up the terminal waiting for its expected - // (ST, '\x9c') or (BEL, '\x07'). - console.warn('Ignoring 8-bit control code: 0x' + - code.charCodeAt(0).toString(16)); - return; - } - - handler.apply(this, [parseState, code]); -}; - -/** - * Set one of the ANSI defined terminal mode bits. - * - * Invoked in response to SM/RM. - * - * Unexpected and unimplemented values are silently ignored. - */ -hterm.VT.prototype.setANSIMode = function(code, state) { - if (code == 4) { // Insert Mode (IRM) - this.terminal.setInsertMode(state); - } else if (code == 20) { // Automatic Newline (LNM) - this.terminal.setAutoCarriageReturn(state); - } else if (this.warnUnimplemented) { - console.warn('Unimplemented ANSI Mode: ' + code); - } -}; - -/** - * Set or reset one of the DEC Private modes. - * - * Invoked in response to DECSET/DECRST. - */ -hterm.VT.prototype.setDECMode = function(code, state) { - switch (parseInt(code, 10)) { - case 1: // DECCKM - this.terminal.keyboard.applicationCursor = state; - break; - - case 3: // DECCOLM - if (this.allowColumnWidthChanges_) { - this.terminal.setWidth(state ? 132 : 80); - - this.terminal.clearHome(); - this.terminal.setVTScrollRegion(null, null); - } - break; - - case 5: // DECSCNM - this.terminal.setReverseVideo(state); - break; - - case 6: // DECOM - this.terminal.setOriginMode(state); - break; - - case 7: // DECAWM - this.terminal.setWraparound(state); - break; - - case 12: // Start blinking cursor - if (this.enableDec12) - this.terminal.setCursorBlink(state); - break; - - case 25: // DECTCEM - this.terminal.setCursorVisible(state); - break; - - case 30: // Show scrollbar - this.terminal.setScrollbarVisible(state); - break; - - case 40: // Allow 80 - 132 (DECCOLM) Mode - this.terminal.allowColumnWidthChanges_ = state; - break; - - case 45: // Reverse-wraparound Mode - this.terminal.setReverseWraparound(state); - break; - - case 67: // Backarrow key sends backspace (DECBKM) - this.terminal.keyboard.backspaceSendsBackspace = state; - break; - - case 1000: // Report on mouse clicks only. - this.mouseReport = ( - state ? this.MOUSE_REPORT_CLICK : this.MOUSE_REPORT_DISABLED); - this.terminal.syncMouseStyle(); - break; - - case 1002: // Report on mouse clicks and drags - this.mouseReport = ( - state ? this.MOUSE_REPORT_DRAG : this.MOUSE_REPORT_DISABLED); - this.terminal.syncMouseStyle(); - break; - - case 1010: // Scroll to bottom on tty output - this.terminal.scrollOnOutput = state; - break; - - case 1011: // Scroll to bottom on key press - this.terminal.scrollOnKeystroke = state; - break; - - case 1036: // Send ESC when Meta modifies a key - this.terminal.keyboard.metaSendsEscape = state; - break; - - case 1039: // Send ESC when Alt modifies a key - if (state) { - if (!this.terminal.keyboard.previousAltSendsWhat_) { - this.terminal.keyboard.previousAltSendsWhat_ = - this.terminal.keyboard.altSendsWhat; - this.terminal.keyboard.altSendsWhat = 'escape'; - } - } else if (this.terminal.keyboard.previousAltSendsWhat_) { - this.terminal.keyboard.altSendsWhat = - this.terminal.keyboard.previousAltSendsWhat_; - this.terminal.keyboard.previousAltSendsWhat_ = null; - } - break; - - case 47: // Use Alternate Screen Buffer - case 1047: - this.terminal.setAlternateMode(state); - break; - - case 1048: // Save cursor as in DECSC. - this.savedState_.save(); - - case 1049: // 1047 + 1048 + clear. - if (state) { - this.savedState_.save(); - this.terminal.setAlternateMode(state); - this.terminal.clear(); - } else { - this.terminal.setAlternateMode(state); - this.savedState_.restore(); - } - - break; - - case 2004: // Bracketed paste mode. - this.terminal.setBracketedPaste(state); - break; - - default: - if (this.warnUnimplemented) - console.warn('Unimplemented DEC Private Mode: ' + code); - break; - } -}; - -/** - * Function shared by control characters and escape sequences that are - * ignored. - */ -hterm.VT.ignore = function() {}; - -/** - * Collection of control characters expressed in a single byte. - * - * This includes the characters from the C0 and C1 sets (see [CTRL]) that we - * care about. Two byte versions of the C1 codes are defined in the - * hterm.VT.ESC collection. - * - * The 'CC1' mnemonic here refers to the fact that these are one-byte Control - * Codes. It's only used in this source file and not defined in any of the - * referenced documents. - */ -hterm.VT.CC1 = {}; - -/** - * Collection of two-byte and three-byte sequences starting with ESC. - */ -hterm.VT.ESC = {}; - -/** - * Collection of CSI (Control Sequence Introducer) sequences. - * - * These sequences begin with 'ESC [', and may take zero or more arguments. - */ -hterm.VT.CSI = {}; - -/** - * Collection of OSC (Operating System Control) sequences. - * - * These sequences begin with 'ESC ]', followed by a function number and a - * string terminated by either ST or BEL. - */ -hterm.VT.OSC = {}; - -/** - * Collection of VT52 sequences. - * - * When in VT52 mode, other sequences are disabled. - */ -hterm.VT.VT52 = {}; - -/** - * Null (NUL). - * - * Silently ignored. - */ -hterm.VT.CC1['\x00'] = hterm.VT.ignore; - -/** - * Enquiry (ENQ). - * - * Transmit answerback message. - * - * The default answerback message in xterm is an empty string, so we just - * ignore this. - */ -hterm.VT.CC1['\x05'] = hterm.VT.ignore; - -/** - * Ring Bell (BEL). - */ -hterm.VT.CC1['\x07'] = function() { - this.terminal.ringBell(); -}; - -/** - * Backspace (BS). - * - * Move the cursor to the left one character position, unless it is at the - * left margin, in which case no action occurs. - */ -hterm.VT.CC1['\x08'] = function() { - this.terminal.cursorLeft(1); -}; - -/** - * Horizontal Tab (HT). - * - * Move the cursor to the next tab stop, or to the right margin if no further - * tab stops are present on the line. - */ -hterm.VT.CC1['\x09'] = function() { - this.terminal.forwardTabStop(); -}; - -/** - * Line Feed (LF). - * - * This code causes a line feed or a new line operation. See Automatic - * Newline (LNM). - */ -hterm.VT.CC1['\x0a'] = function() { - this.terminal.formFeed(); -}; - -/** - * Vertical Tab (VT). - * - * Interpreted as LF. - */ -hterm.VT.CC1['\x0b'] = hterm.VT.CC1['\x0a']; - -/** - * Form Feed (FF). - * - * Interpreted as LF. - */ -hterm.VT.CC1['\x0c'] = hterm.VT.CC1['\x0a']; - -/** - * Carriage Return (CR). - * - * Move cursor to the left margin on the current line. - */ -hterm.VT.CC1['\x0d'] = function() { - this.terminal.setCursorColumn(0); -}; - -/** - * Shift Out (SO), aka Lock Shift 0 (LS1). - * - * Invoke G1 character set in GL. - */ -hterm.VT.CC1['\x0e'] = function() { - this.GL = 'G1'; -}; - -/** - * Shift In (SI), aka Lock Shift 0 (LS0). - * - * Invoke G0 character set in GL. - */ -hterm.VT.CC1['\x0f'] = function() { - this.GL = 'G0'; -}; - -/** - * Transmit On (XON). - * - * Not currently implemented. - * - * TODO(rginda): Implement? - */ -hterm.VT.CC1['\x11'] = hterm.VT.ignore; - -/** - * Transmit Off (XOFF). - * - * Not currently implemented. - * - * TODO(rginda): Implement? - */ -hterm.VT.CC1['\x13'] = hterm.VT.ignore; - -/** - * Cancel (CAN). - * - * If sent during a control sequence, the sequence is immediately terminated - * and not executed. - * - * It also causes the error character to be displayed. - */ -hterm.VT.CC1['\x18'] = function(parseState) { - // If we've shifted in the G1 character set, shift it back out to - // the default character set. - if (this.GL == 'G1') { - this.GL = 'G0'; - } - parseState.resetParseFunction(); - this.terminal.print('?'); -}; - -/** - * Substitute (SUB). - * - * Interpreted as CAN. - */ -hterm.VT.CC1['\x1a'] = hterm.VT.CC1['\x18']; - -/** - * Escape (ESC). - */ -hterm.VT.CC1['\x1b'] = function(parseState) { - function parseESC(parseState) { - var ch = parseState.consumeChar(); - - if (ch == '\x1b') - return; - - this.dispatch('ESC', ch, parseState); - - if (parseState.func == parseESC) - parseState.resetParseFunction(); - }; - - parseState.func = parseESC; -}; - -/** - * Delete (DEL). - */ -hterm.VT.CC1['\x7f'] = hterm.VT.ignore; - -// 8 bit control characters and their two byte equivalents, below... - -/** - * Index (IND). - * - * Like newline, only keep the X position - */ -hterm.VT.CC1['\x84'] = -hterm.VT.ESC['D'] = function() { - this.terminal.lineFeed(); -}; - -/** - * Next Line (NEL). - * - * Like newline, but doesn't add lines. - */ -hterm.VT.CC1['\x85'] = -hterm.VT.ESC['E'] = function() { - this.terminal.setCursorColumn(0); - this.terminal.cursorDown(1); -}; - -/** - * Horizontal Tabulation Set (HTS). - */ -hterm.VT.CC1['\x88'] = -hterm.VT.ESC['H'] = function() { - this.terminal.setTabStop(this.terminal.getCursorColumn()); -}; - -/** - * Reverse Index (RI). - * - * Move up one line. - */ -hterm.VT.CC1['\x8d'] = -hterm.VT.ESC['M'] = function() { - this.terminal.reverseLineFeed(); -}; - -/** - * Single Shift 2 (SS2). - * - * Select of G2 Character Set for the next character only. - * - * Not currently implemented. - */ -hterm.VT.CC1['\x8e'] = -hterm.VT.ESC['N'] = hterm.VT.ignore; - -/** - * Single Shift 3 (SS3). - * - * Select of G3 Character Set for the next character only. - * - * Not currently implemented. - */ -hterm.VT.CC1['\x8f'] = -hterm.VT.ESC['O'] = hterm.VT.ignore; - -/** - * Device Control String (DCS). - * - * Indicate a DCS sequence. See Device-Control functions in [XTERM]. - * Not currently implemented. - * - * TODO(rginda): Consider implementing DECRQSS, the rest don't seem applicable. - */ -hterm.VT.CC1['\x90'] = -hterm.VT.ESC['P'] = function(parseState) { - parseState.resetArguments(); - parseState.func = this.parseUntilStringTerminator_; -}; - -/** - * Start of Guarded Area (SPA). - * - * Will not implement. - */ -hterm.VT.CC1['\x96'] = -hterm.VT.ESC['V'] = hterm.VT.ignore; - -/** - * End of Guarded Area (EPA). - * - * Will not implement. - */ -hterm.VT.CC1['\x97'] = -hterm.VT.ESC['W'] = hterm.VT.ignore; - -/** - * Start of String (SOS). - * - * Will not implement. - */ -hterm.VT.CC1['\x98'] = -hterm.VT.ESC['X'] = hterm.VT.ignore; - -/** - * Single Character Introducer (SCI, also DECID). - * - * Return Terminal ID. Obsolete form of 'ESC [ c' (DA). - */ -hterm.VT.CC1['\x9a'] = -hterm.VT.ESC['Z'] = function() { - this.terminal.io.sendString('\x1b[?1;2c'); -}; - -/** - * Control Sequence Introducer (CSI). - * - * The lead into most escape sequences. See [CSI]. - */ -hterm.VT.CC1['\x9b'] = -hterm.VT.ESC['['] = function(parseState) { - parseState.resetArguments(); - this.leadingModifier_ = ''; - this.trailingModifier_ = ''; - parseState.func = this.parseCSI_; -}; - -/** - * String Terminator (ST). - * - * Used to terminate DCS/OSC/PM/APC commands which may take string arguments. - * - * We don't directly handle it here, as it's only used to terminate other - * sequences. See the 'parseUntilStringTerminator_' method. - */ -hterm.VT.CC1['\x9c'] = -hterm.VT.ESC['\\'] = hterm.VT.ignore; - -/** - * Operating System Command (OSC). - * - * Commands relating to the operating system. - */ -hterm.VT.CC1['\x9d'] = -hterm.VT.ESC[']'] = function(parseState) { - parseState.resetArguments(); - - function parseOSC(parseState) { - if (!this.parseUntilStringTerminator_(parseState)) { - // The string sequence was too long. - return; - } - - if (parseState.func == parseOSC) { - // We're not done parsing the string yet. - return; - } - - // We're done. - var ary = parseState.args[0].match(/^(\d+);(.*)$/); - if (ary) { - parseState.args[0] = ary[2]; - this.dispatch('OSC', ary[1], parseState); - } else { - console.warn('Invalid OSC: ' + JSON.stringify(parseState.args[0])); - } - }; - - parseState.func = parseOSC; -}; - -/** - * Privacy Message (PM). - * - * Will not implement. - */ -hterm.VT.CC1['\x9e'] = -hterm.VT.ESC['^'] = function(parseState) { - parseState.resetArguments(); - parseState.func = this.parseUntilStringTerminator_; -}; - -/** - * Application Program Control (APC). - * - * Will not implement. - */ -hterm.VT.CC1['\x9f'] = -hterm.VT.ESC['_'] = function(parseState) { - parseState.resetArguments(); - parseState.func = this.parseUntilStringTerminator_; -}; - -/** - * ESC \x20 - Unclear to me where these originated, possibly in xterm. - * - * Not currently implemented: - * ESC \x20 F - Select 7 bit escape codes in responses (S7C1T). - * ESC \x20 G - Select 8 bit escape codes in responses (S8C1T). - * NB: We currently assume S7C1T always. - * - * Will not implement: - * ESC \x20 L - Set ANSI conformance level 1. - * ESC \x20 M - Set ANSI conformance level 2. - * ESC \x20 N - Set ANSI conformance level 3. - */ -hterm.VT.ESC['\x20'] = function(parseState) { - parseState.func = function(parseState) { - var ch = parseState.consumeChar(); - if (this.warnUnimplemented) - console.warn('Unimplemented sequence: ESC 0x20 ' + ch); - parseState.resetParseFunction(); - }; -}; - -/** - * DEC 'ESC #' sequences. - */ -hterm.VT.ESC['#'] = function(parseState) { - parseState.func = function(parseState) { - var ch = parseState.consumeChar(); - if (ch == '8') // DEC Screen Alignment Test (DECALN) - this.terminal.fill('E'); - - parseState.resetParseFunction(); - }; -}; - -/** - * Designate Other Coding System (DOCS). - */ -hterm.VT.ESC['%'] = function(parseState) { - parseState.func = function(parseState) { - var ch = parseState.consumeChar(); - - // If we've locked the encoding, then just eat the bytes and return. - if (this.codingSystemLocked_) { - if (ch == '/') - parseState.consumeChar(); - parseState.resetParseFunction(); - return; - } - - // Process the encoding requests. - switch (ch) { - case '@': - // Switch to ECMA 35. - this.setEncoding('iso-2022'); - break; - - case 'G': - // Switch to UTF-8. - this.setEncoding('utf-8'); - break; - - case '/': - // One way transition to something else. - ch = parseState.consumeChar(); - switch (ch) { - case 'G': // UTF-8 Level 1. - case 'H': // UTF-8 Level 2. - case 'I': // UTF-8 Level 3. - // We treat all UTF-8 levels the same. - this.setEncoding('utf-8-locked'); - break; - - default: - if (this.warnUnimplemented) - console.warn('Unknown ESC % / argument: ' + JSON.stringify(ch)); - break; - } - break; - - default: - if (this.warnUnimplemented) - console.warn('Unknown ESC % argument: ' + JSON.stringify(ch)); - break; - } - - parseState.resetParseFunction(); - }; -}; - -/** - * Character Set Selection (SCS). - * - * ESC ( Ps - Set G0 character set (VT100). - * ESC ) Ps - Set G1 character set (VT220). - * ESC * Ps - Set G2 character set (VT220). - * ESC + Ps - Set G3 character set (VT220). - * ESC - Ps - Set G1 character set (VT300). - * ESC . Ps - Set G2 character set (VT300). - * ESC / Ps - Set G3 character set (VT300). - * - * All other sequences are echoed to the terminal. - */ -hterm.VT.ESC['('] = -hterm.VT.ESC[')'] = -hterm.VT.ESC['*'] = -hterm.VT.ESC['+'] = -hterm.VT.ESC['-'] = -hterm.VT.ESC['.'] = -hterm.VT.ESC['/'] = function(parseState, code) { - parseState.func = function(parseState) { - var ch = parseState.consumeChar(); - if (ch == '\x1b') { - parseState.resetParseFunction(); - parseState.func(); - return; - } - - var map = this.characterMaps.getMap(ch); - if (map !== undefined) { - if (code == '(') { - this.G0 = map; - } else if (code == ')' || code == '-') { - this.G1 = map; - } else if (code == '*' || code == '.') { - this.G2 = map; - } else if (code == '+' || code == '/') { - this.G3 = map; - } - } else if (this.warnUnimplemented) { - console.log('Invalid character set for "' + code + '": ' + ch); - } - - parseState.resetParseFunction(); - }; -}; - -/** - * Back Index (DECBI). - * - * VT420 and up. Not currently implemented. - */ -hterm.VT.ESC['6'] = hterm.VT.ignore; - -/** - * Save Cursor (DECSC). - */ -hterm.VT.ESC['7'] = function() { - this.savedState_.save(); -}; - -/** - * Restore Cursor (DECRC). - */ -hterm.VT.ESC['8'] = function() { - this.savedState_.restore(); -}; - -/** - * Forward Index (DECFI). - * - * VT210 and up. Not currently implemented. - */ -hterm.VT.ESC['9'] = hterm.VT.ignore; - -/** - * Application keypad (DECKPAM). - */ -hterm.VT.ESC['='] = function() { - this.terminal.keyboard.applicationKeypad = true; -}; - -/** - * Normal keypad (DECKPNM). - */ -hterm.VT.ESC['>'] = function() { - this.terminal.keyboard.applicationKeypad = false; -}; - -/** - * Cursor to lower left corner of screen. - * - * Will not implement. - * - * This is only recognized by xterm when the hpLowerleftBugCompat resource is - * set. - */ -hterm.VT.ESC['F'] = hterm.VT.ignore; - -/** - * Full Reset (RIS). - */ -hterm.VT.ESC['c'] = function() { - this.reset(); - this.terminal.reset(); -}; - -/** - * Memory lock/unlock. - * - * Will not implement. - */ -hterm.VT.ESC['l'] = -hterm.VT.ESC['m'] = hterm.VT.ignore; - -/** - * Lock Shift 2 (LS2) - * - * Invoke the G2 Character Set as GL. - */ -hterm.VT.ESC['n'] = function() { - this.GL = 'G2'; -}; - -/** - * Lock Shift 3 (LS3) - * - * Invoke the G3 Character Set as GL. - */ -hterm.VT.ESC['o'] = function() { - this.GL = 'G3'; -}; - -/** - * Lock Shift 2, Right (LS3R) - * - * Invoke the G3 Character Set as GR. - */ -hterm.VT.ESC['|'] = function() { - this.GR = 'G3'; -}; - -/** - * Lock Shift 2, Right (LS2R) - * - * Invoke the G2 Character Set as GR. - */ -hterm.VT.ESC['}'] = function() { - this.GR = 'G2'; -}; - -/** - * Lock Shift 1, Right (LS1R) - * - * Invoke the G1 Character Set as GR. - */ -hterm.VT.ESC['~'] = function() { - this.GR = 'G1'; -}; - -/** - * Change icon name and window title. - * - * We only change the window title. - */ -hterm.VT.OSC['0'] = function(parseState) { - this.terminal.setWindowTitle(parseState.args[0]); -}; - -/** - * Change window title. - */ -hterm.VT.OSC['2'] = hterm.VT.OSC['0']; - -/** - * Set/read color palette. - */ -hterm.VT.OSC['4'] = function(parseState) { - // Args come in as a single 'index1;rgb1 ... ;indexN;rgbN' string. - // We split on the semicolon and iterate through the pairs. - var args = parseState.args[0].split(';'); - - var pairCount = parseInt(args.length / 2); - var colorPalette = this.terminal.getTextAttributes().colorPalette; - var responseArray = []; - - for (var pairNumber = 0; pairNumber < pairCount; ++pairNumber) { - var colorIndex = parseInt(args[pairNumber * 2]); - var colorValue = args[pairNumber * 2 + 1]; - - if (colorIndex >= colorPalette.length) - continue; - - if (colorValue == '?') { - // '?' means we should report back the current color value. - colorValue = lib.colors.rgbToX11(colorPalette[colorIndex]); - if (colorValue) - responseArray.push(colorIndex + ';' + colorValue); - - continue; - } - - colorValue = lib.colors.x11ToCSS(colorValue); - if (colorValue) - colorPalette[colorIndex] = colorValue; - } - - if (responseArray.length) - this.terminal.io.sendString('\x1b]4;' + responseArray.join(';') + '\x07'); -}; - -/** - * iTerm2 growl notifications. - */ -hterm.VT.OSC['9'] = function(parseState) { - // This just dumps the entire string as the message. - hterm.notify({'body': parseState.args[0]}); -}; - -/** - * Change VT100 text foreground color. - */ -hterm.VT.OSC['10'] = function(parseState) { - // Args come in as a single string, but extra args will chain to the following - // OSC sequences. - var args = parseState.args[0].split(';'); - if (!args) - return; - - var colorArg; - var colorX11 = lib.colors.x11ToCSS(args.shift()); - if (colorX11) - this.terminal.setForegroundColor(colorX11); - - if (args.length > 0) { - parseState.args[0] = args.join(';'); - hterm.VT.OSC['11'].apply(this, [parseState]); - } -}; - -/** - * Change VT100 text background color. - */ -hterm.VT.OSC['11'] = function(parseState) { - // Args come in as a single string, but extra args will chain to the following - // OSC sequences. - var args = parseState.args[0].split(';'); - if (!args) - return; - - var colorArg; - var colorX11 = lib.colors.x11ToCSS(args.shift()); - if (colorX11) - this.terminal.setBackgroundColor(colorX11); - - /* Note: If we support OSC 12+, we'd chain it here. - if (args.length > 0) { - parseState.args[0] = args.join(';'); - hterm.VT.OSC['12'].apply(this, [parseState]); - } - */ -}; - -/** - * Set the cursor shape. - * - * Parameter is expected to be in the form "CursorShape=number", where number is - * one of: - * - * 0 - Block - * 1 - I-Beam - * 2 - Underline - * - * This is a bit of a de-facto standard supported by iTerm 2 and Konsole. See - * also: DECSCUSR. - * - * Invalid numbers will restore the cursor to the block shape. - */ -hterm.VT.OSC['50'] = function(parseState) { - var args = parseState.args[0].match(/CursorShape=(.)/i); - if (!args) { - console.warn('Could not parse OSC 50 args: ' + parseState.args[0]); - return; - } - - switch (args[1]) { - case '1': // CursorShape=1: I-Beam. - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM); - break; - - case '2': // CursorShape=2: Underline. - this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE); - break; - - default: // CursorShape=0: Block. - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK); - } -}; - -/** - * Set/read system clipboard. - * - * Read is not implemented due to security considerations. A remote app - * that is able to both write and read to the clipboard could essentially - * take over your session. - * - * The clipboard data will be decoded according to the 'receive-encoding' - * preference. - */ -hterm.VT.OSC['52'] = function(parseState) { - // Args come in as a single 'clipboard;b64-data' string. The clipboard - // parameter is used to select which of the X clipboards to address. Since - // we're not integrating with X, we treat them all the same. - var args = parseState.args[0].match(/^[cps01234567]*;(.*)/); - if (!args) - return; - - var data = window.atob(args[1]); - if (data) - this.terminal.copyStringToClipboard(this.decode(data)); -}; - -/** - * URxvt perl modules. - * - * This is the escape system used by rxvt-unicode and its perl modules. - * Obviously we don't support perl or custom modules, so we list a few common - * ones that we find useful. - * - * Technically there is no format here, but most modules obey: - * ; - */ -hterm.VT.OSC['777'] = function(parseState) { - var ary; - var urxvtMod = parseState.args[0].split(';', 1)[0]; - - switch (urxvtMod) { - case 'notify': - // Format: - // notify;title;message - var title, message; - ary = parseState.args[0].match(/^[^;]+;([^;]*)(;([\s\S]*))?$/); - if (ary) { - title = ary[1]; - message = ary[3]; - } - hterm.notify({'title': title, 'body': message}); - break; - - default: - console.warn('Unknown urxvt module: ' + parseState.args[0]); - break; - } -}; - -/** - * Insert (blank) characters (ICH). - */ -hterm.VT.CSI['@'] = function(parseState) { - this.terminal.insertSpace(parseState.iarg(0, 1)); -}; - -/** - * Cursor Up (CUU). - */ -hterm.VT.CSI['A'] = function(parseState) { - this.terminal.cursorUp(parseState.iarg(0, 1)); -}; - -/** - * Cursor Down (CUD). - */ -hterm.VT.CSI['B'] = function(parseState) { - this.terminal.cursorDown(parseState.iarg(0, 1)); -}; - -/** - * Cursor Forward (CUF). - */ -hterm.VT.CSI['C'] = function(parseState) { - this.terminal.cursorRight(parseState.iarg(0, 1)); -}; - -/** - * Cursor Backward (CUB). - */ -hterm.VT.CSI['D'] = function(parseState) { - this.terminal.cursorLeft(parseState.iarg(0, 1)); -}; - -/** - * Cursor Next Line (CNL). - * - * This is like Cursor Down, except the cursor moves to the beginning of the - * line as well. - */ -hterm.VT.CSI['E'] = function(parseState) { - this.terminal.cursorDown(parseState.iarg(0, 1)); - this.terminal.setCursorColumn(0); -}; - -/** - * Cursor Preceding Line (CPL). - * - * This is like Cursor Up, except the cursor moves to the beginning of the - * line as well. - */ -hterm.VT.CSI['F'] = function(parseState) { - this.terminal.cursorUp(parseState.iarg(0, 1)); - this.terminal.setCursorColumn(0); -}; - -/** - * Cursor Character Absolute (CHA). - */ -hterm.VT.CSI['G'] = function(parseState) { - this.terminal.setCursorColumn(parseState.iarg(0, 1) - 1); -}; - -/** - * Cursor Position (CUP). - */ -hterm.VT.CSI['H'] = function(parseState) { - this.terminal.setCursorPosition(parseState.iarg(0, 1) - 1, - parseState.iarg(1, 1) - 1); -}; - -/** - * Cursor Forward Tabulation (CHT). - */ -hterm.VT.CSI['I'] = function(parseState) { - var count = parseState.iarg(0, 1); - count = lib.f.clamp(count, 1, this.terminal.screenSize.width); - for (var i = 0; i < count; i++) { - this.terminal.forwardTabStop(); - } -}; - -/** - * Erase in Display (ED, DECSED). - */ -hterm.VT.CSI['J'] = -hterm.VT.CSI['?J'] = function(parseState, code) { - var arg = parseState.args[0]; - - if (!arg || arg == 0) { - this.terminal.eraseBelow(); - } else if (arg == 1) { - this.terminal.eraseAbove(); - } else if (arg == 2) { - this.terminal.clear(); - } else if (arg == 3) { - // The xterm docs say this means "Erase saved lines", but we'll just clear - // the display since killing the scrollback seems rude. - this.terminal.clear(); - } -}; - -/** - * Erase in line (EL, DECSEL). - */ -hterm.VT.CSI['K'] = -hterm.VT.CSI['?K'] = function(parseState, code) { - var arg = parseState.args[0]; - - if (!arg || arg == 0) { - this.terminal.eraseToRight(); - } else if (arg == 1) { - this.terminal.eraseToLeft(); - } else if (arg == 2) { - this.terminal.eraseLine(); - } -}; - -/** - * Insert Lines (IL). - */ -hterm.VT.CSI['L'] = function(parseState) { - this.terminal.insertLines(parseState.iarg(0, 1)); -}; - -/** - * Delete Lines (DL). - */ -hterm.VT.CSI['M'] = function(parseState) { - this.terminal.deleteLines(parseState.iarg(0, 1)); -}; - -/** - * Delete Characters (DCH). - * - * This command shifts the line contents left, starting at the cursor position. - */ -hterm.VT.CSI['P'] = function(parseState) { - this.terminal.deleteChars(parseState.iarg(0, 1)); -}; - -/** - * Scroll Up (SU). - */ -hterm.VT.CSI['S'] = function(parseState) { - this.terminal.vtScrollUp(parseState.iarg(0, 1)); -}; - -/** - * Scroll Down (SD). - * Also 'Initiate highlight mouse tracking'. Will not implement this part. - */ -hterm.VT.CSI['T'] = function(parseState) { - if (parseState.args.length <= 1) - this.terminal.vtScrollDown(parseState.iarg(0, 1)); -}; - -/** - * Reset one or more features of the title modes to the default value. - * - * ESC [ > Ps T - * - * Normally, "reset" disables the feature. It is possible to disable the - * ability to reset features by compiling a different default for the title - * modes into xterm. - * - * Ps values: - * 0 - Do not set window/icon labels using hexadecimal. - * 1 - Do not query window/icon labels using hexadecimal. - * 2 - Do not set window/icon labels using UTF-8. - * 3 - Do not query window/icon labels using UTF-8. - * - * Will not implement. - */ -hterm.VT.CSI['>T'] = hterm.VT.ignore; - -/** - * Erase Characters (ECH). - */ -hterm.VT.CSI['X'] = function(parseState) { - this.terminal.eraseToRight(parseState.iarg(0, 1)); -}; - -/** - * Cursor Backward Tabulation (CBT). - */ -hterm.VT.CSI['Z'] = function(parseState) { - var count = parseState.iarg(0, 1); - count = lib.f.clamp(count, 1, this.terminal.screenSize.width); - for (var i = 0; i < count; i++) { - this.terminal.backwardTabStop(); - } -}; - -/** - * Character Position Absolute (HPA). - * - * Same as Cursor Character Absolute (CHA). - */ -hterm.VT.CSI['`'] = hterm.VT.CSI['G']; - -/** - * Character Position Relative (HPR). - */ -hterm.VT.CSI['a'] = function(parseState) { - this.terminal.setCursorColumn(this.terminal.getCursorColumn() + - parseState.iarg(0, 1)); -}; - -/** - * Repeat the preceding graphic character. - * - * Not currently implemented. - */ -hterm.VT.CSI['b'] = hterm.VT.ignore; - -/** - * Send Device Attributes (Primary DA). - * - * TODO(rginda): This is hardcoded to send back 'VT100 with Advanced Video - * Option', but it may be more correct to send a VT220 response once - * we fill out the 'Not currently implemented' parts. - */ -hterm.VT.CSI['c'] = function(parseState) { - if (!parseState.args[0] || parseState.args[0] == 0) { - this.terminal.io.sendString('\x1b[?1;2c'); - } -}; - -/** - * Send Device Attributes (Secondary DA). - * - * TODO(rginda): This is hardcoded to send back 'VT100' but it may be more - * correct to send a VT220 response once we fill out more 'Not currently - * implemented' parts. - */ -hterm.VT.CSI['>c'] = function(parseState) { - this.terminal.io.sendString('\x1b[>0;256;0c'); -}; - -/** - * Line Position Absolute (VPA). - */ -hterm.VT.CSI['d'] = function(parseState) { - this.terminal.setAbsoluteCursorRow(parseState.iarg(0, 1) - 1); -}; - -/** - * Horizontal and Vertical Position (HVP). - * - * Same as Cursor Position (CUP). - */ -hterm.VT.CSI['f'] = hterm.VT.CSI['H']; - -/** - * Tab Clear (TBC). - */ -hterm.VT.CSI['g'] = function(parseState) { - if (!parseState.args[0] || parseState.args[0] == 0) { - // Clear tab stop at cursor. - this.terminal.clearTabStopAtCursor(false); - } else if (parseState.args[0] == 3) { - // Clear all tab stops. - this.terminal.clearAllTabStops(); - } -}; - -/** - * Set Mode (SM). - */ -hterm.VT.CSI['h'] = function(parseState) { - for (var i = 0; i < parseState.args.length; i++) { - this.setANSIMode(parseState.args[i], true); - } -}; - -/** - * DEC Private Mode Set (DECSET). - */ -hterm.VT.CSI['?h'] = function(parseState) { - for (var i = 0; i < parseState.args.length; i++) { - this.setDECMode(parseState.args[i], true); - } -}; - -/** - * Media Copy (MC). - * Media Copy (MC, DEC Specific). - * - * These commands control the printer. Will not implement. - */ -hterm.VT.CSI['i'] = -hterm.VT.CSI['?i'] = hterm.VT.ignore; - -/** - * Reset Mode (RM). - */ -hterm.VT.CSI['l'] = function(parseState) { - for (var i = 0; i < parseState.args.length; i++) { - this.setANSIMode(parseState.args[i], false); - } -}; - -/** - * DEC Private Mode Reset (DECRST). - */ -hterm.VT.CSI['?l'] = function(parseState) { - for (var i = 0; i < parseState.args.length; i++) { - this.setDECMode(parseState.args[i], false); - } -}; - -/** - * Character Attributes (SGR). - * - * Iterate through the list of arguments, applying the attribute changes based - * on the argument value... - */ -hterm.VT.CSI['m'] = function(parseState) { - function get256(i) { - if (parseState.args.length < i + 2 || parseState.args[i + 1] != 5) - return null; - - return parseState.iarg(i + 2, 0); - } - - function getTrueColor(i) { - if (parseState.args.length < i + 5 || parseState.args[i + 1] != 2) - return null; - var r = parseState.iarg(i + 2, 0); - var g = parseState.iarg(i + 3, 0); - var b = parseState.iarg(i + 4, 0); - - return 'rgb(' + r + ' ,' + g + ' ,' + b + ')'; - } - - var attrs = this.terminal.getTextAttributes(); - - if (!parseState.args.length) { - attrs.reset(); - return; - } - - for (var i = 0; i < parseState.args.length; i++) { - var arg = parseState.iarg(i, 0); - - if (arg < 30) { - if (arg == 0) { // Normal (default). - attrs.reset(); - } else if (arg == 1) { // Bold. - attrs.bold = true; - } else if (arg == 2) { // Faint. - attrs.faint = true; - } else if (arg == 3) { // Italic. - attrs.italic = true; - } else if (arg == 4) { // Underline. - attrs.underline = true; - } else if (arg == 5) { // Blink. - attrs.blink = true; - } else if (arg == 7) { // Inverse. - attrs.inverse = true; - } else if (arg == 8) { // Invisible. - attrs.invisible = true; - } else if (arg == 9) { // Crossed out. - attrs.strikethrough = true; - } else if (arg == 22) { // Not bold & not faint. - attrs.bold = false; - attrs.faint = false; - } else if (arg == 23) { // Not italic. - attrs.italic = false; - } else if (arg == 24) { // Not underlined. - attrs.underline = false; - } else if (arg == 25) { // Not blink. - attrs.blink = false; - } else if (arg == 27) { // Steady. - attrs.inverse = false; - } else if (arg == 28) { // Visible. - attrs.invisible = false; - } else if (arg == 29) { // Not crossed out. - attrs.strikethrough = false; - } - - } else if (arg < 50) { - // Select fore/background color from bottom half of 16 color palette - // or from the 256 color palette or alternative specify color in fully - // qualified rgb(r, g, b) form. - if (arg < 38) { - attrs.foregroundSource = arg - 30; - - } else if (arg == 38) { - // First check for true color definition - var trueColor = getTrueColor(i); - if (trueColor != null) { - attrs.foregroundSource = attrs.SRC_RGB; - attrs.foreground = trueColor; - - i += 5; - } else { - // Check for 256 color - var c = get256(i); - if (c == null) - break; - - i += 2; - - if (c >= attrs.colorPalette.length) - continue; - - attrs.foregroundSource = c; - } - - } else if (arg == 39) { - attrs.foregroundSource = attrs.SRC_DEFAULT; - - } else if (arg < 48) { - attrs.backgroundSource = arg - 40; - - } else if (arg == 48) { - // First check for true color definition - var trueColor = getTrueColor(i); - if (trueColor != null) { - attrs.backgroundSource = attrs.SRC_RGB; - attrs.background = trueColor; - - i += 5; - } else { - // Check for 256 color - var c = get256(i); - if (c == null) - break; - - i += 2; - - if (c >= attrs.colorPalette.length) - continue; - - attrs.backgroundSource = c; - } - } else { - attrs.backgroundSource = attrs.SRC_DEFAULT; - } - - } else if (arg >= 90 && arg <= 97) { - attrs.foregroundSource = arg - 90 + 8; - - } else if (arg >= 100 && arg <= 107) { - attrs.backgroundSource = arg - 100 + 8; - } - } - - attrs.setDefaults(this.terminal.getForegroundColor(), - this.terminal.getBackgroundColor()); -}; - -/** - * Set xterm-specific keyboard modes. - * - * Will not implement. - */ -hterm.VT.CSI['>m'] = hterm.VT.ignore; - -/** - * Device Status Report (DSR, DEC Specific). - * - * 5 - Status Report. Result (OK) is CSI 0 n - * 6 - Report Cursor Position (CPR) [row;column]. Result is CSI r ; c R - */ -hterm.VT.CSI['n'] = function(parseState) { - if (parseState.args[0] == 5) { - this.terminal.io.sendString('\x1b0n'); - } else if (parseState.args[0] == 6) { - var row = this.terminal.getCursorRow() + 1; - var col = this.terminal.getCursorColumn() + 1; - this.terminal.io.sendString('\x1b[' + row + ';' + col + 'R'); - } -}; - -/** - * Disable modifiers which may be enabled via CSI['>m']. - * - * Will not implement. - */ -hterm.VT.CSI['>n'] = hterm.VT.ignore; - -/** - * Device Status Report (DSR, DEC Specific). - * - * 6 - Report Cursor Position (CPR) [row;column] as CSI ? r ; c R - * 15 - Report Printer status as CSI ? 1 0 n (ready) or - * CSI ? 1 1 n (not ready). - * 25 - Report UDK status as CSI ? 2 0 n (unlocked) or CSI ? 2 1 n (locked). - * 26 - Report Keyboard status as CSI ? 2 7 ; 1 ; 0 ; 0 n (North American). - * The last two parameters apply to VT400 & up, and denote keyboard ready - * and LK01 respectively. - * 53 - Report Locator status as CSI ? 5 3 n Locator available, if compiled-in, - * or CSI ? 5 0 n No Locator, if not. - */ -hterm.VT.CSI['?n'] = function(parseState) { - if (parseState.args[0] == 6) { - var row = this.terminal.getCursorRow() + 1; - var col = this.terminal.getCursorColumn() + 1; - this.terminal.io.sendString('\x1b[' + row + ';' + col + 'R'); - } else if (parseState.args[0] == 15) { - this.terminal.io.sendString('\x1b[?11n'); - } else if (parseState.args[0] == 25) { - this.terminal.io.sendString('\x1b[?21n'); - } else if (parseState.args[0] == 26) { - this.terminal.io.sendString('\x1b[?12;1;0;0n'); - } else if (parseState.args[0] == 53) { - this.terminal.io.sendString('\x1b[?50n'); - } -}; - -/** - * This is used by xterm to decide whether to hide the pointer cursor as the - * user types. - * - * Valid values for the parameter: - * 0 - Never hide the pointer. - * 1 - Hide if the mouse tracking mode is not enabled. - * 2 - Always hide the pointer. - * - * If no parameter is given, xterm uses the default, which is 1. - * - * Not currently implemented. - */ -hterm.VT.CSI['>p'] = hterm.VT.ignore; - -/** - * Soft terminal reset (DECSTR). - */ -hterm.VT.CSI['!p'] = function() { - this.reset(); - this.terminal.softReset(); -}; - -/** - * Request ANSI Mode (DECRQM). - * - * Not currently implemented. - */ -hterm.VT.CSI['$p'] = hterm.VT.ignore; -hterm.VT.CSI['?$p'] = hterm.VT.ignore; - -/** - * Set conformance level (DECSCL). - * - * Not currently implemented. - */ -hterm.VT.CSI['"p'] = hterm.VT.ignore; - -/** - * Load LEDs (DECLL). - * - * Not currently implemented. Could be implemented as virtual LEDs overlaying - * the terminal if anyone cares. - */ -hterm.VT.CSI['q'] = hterm.VT.ignore; - -/** - * Set cursor style (DECSCUSR, VT520). - */ -hterm.VT.CSI[' q'] = function(parseState) { - var arg = parseState.args[0]; - - if (arg == 0 || arg == 1) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK); - this.terminal.setCursorBlink(true); - } else if (arg == 2) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK); - this.terminal.setCursorBlink(false); - } else if (arg == 3) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE); - this.terminal.setCursorBlink(true); - } else if (arg == 4) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE); - this.terminal.setCursorBlink(false); - } else if (arg == 5) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM); - this.terminal.setCursorBlink(true); - } else if (arg == 6) { - this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM); - this.terminal.setCursorBlink(false); - } else { - console.warn('Unknown cursor style: ' + arg); - } -}; - -/** - * Select character protection attribute (DECSCA). - * - * Will not implement. - */ -hterm.VT.CSI['"q'] = hterm.VT.ignore; - -/** - * Set Scrolling Region (DECSTBM). - */ -hterm.VT.CSI['r'] = function(parseState) { - var args = parseState.args; - var scrollTop = args[0] ? parseInt(args[0], 10) -1 : null; - var scrollBottom = args[1] ? parseInt(args[1], 10) - 1 : null; - this.terminal.setVTScrollRegion(scrollTop, scrollBottom); - this.terminal.setCursorPosition(0, 0); -}; - -/** - * Restore DEC Private Mode Values. - * - * Will not implement. - */ -hterm.VT.CSI['?r'] = hterm.VT.ignore; - -/** - * Change Attributes in Rectangular Area (DECCARA) - * - * Will not implement. - */ -hterm.VT.CSI['$r'] = hterm.VT.ignore; - -/** - * Save cursor (ANSI.SYS) - */ -hterm.VT.CSI['s'] = function() { - this.savedState_.save(); -}; - -/** - * Save DEC Private Mode Values. - * - * Will not implement. - */ -hterm.VT.CSI['?s'] = hterm.VT.ignore; - -/** - * Window manipulation (from dtterm, as well as extensions). - * - * Will not implement. - */ -hterm.VT.CSI['t'] = hterm.VT.ignore; - -/** - * Reverse Attributes in Rectangular Area (DECRARA). - * - * Will not implement. - */ -hterm.VT.CSI['$t'] = hterm.VT.ignore; - -/** - * Set one or more features of the title modes. - * - * Will not implement. - */ -hterm.VT.CSI['>t'] = hterm.VT.ignore; - -/** - * Set warning-bell volume (DECSWBV, VT520). - * - * Will not implement. - */ -hterm.VT.CSI[' t'] = hterm.VT.ignore; - -/** - * Restore cursor (ANSI.SYS). - */ -hterm.VT.CSI['u'] = function() { - this.savedState_.restore(); -}; - -/** - * Set margin-bell volume (DECSMBV, VT520). - * - * Will not implement. - */ -hterm.VT.CSI[' u'] = hterm.VT.ignore; - -/** - * Copy Rectangular Area (DECCRA, VT400 and up). - * - * Will not implement. - */ -hterm.VT.CSI['$v'] = hterm.VT.ignore; - -/** - * Enable Filter Rectangle (DECEFR). - * - * Will not implement. - */ -hterm.VT.CSI['\'w'] = hterm.VT.ignore; - -/** - * Request Terminal Parameters (DECREQTPARM). - * - * Not currently implemented. - */ -hterm.VT.CSI['x'] = hterm.VT.ignore; - -/** - * Select Attribute Change Extent (DECSACE). - * - * Will not implement. - */ -hterm.VT.CSI['*x'] = hterm.VT.ignore; - -/** - * Fill Rectangular Area (DECFRA), VT420 and up. - * - * Will not implement. - */ -hterm.VT.CSI['$x'] = hterm.VT.ignore; - -/** - * vt_tiledata (as used by NAOhack and UnNetHack) - * (see https://nethackwiki.com/wiki/Vt_tiledata for more info) - * - * Implemented as far as we care (start a glyph and end a glyph). - */ -hterm.VT.CSI['z'] = function(parseState) { - if (parseState.args.length < 1) - return; - var arg = parseState.args[0]; - if (arg == 0) { - // Start a glyph (one parameter, the glyph number). - if (parseState.args.length < 2) - return; - this.terminal.getTextAttributes().tileData = parseState.args[1]; - } else if (arg == 1) { - // End a glyph. - this.terminal.getTextAttributes().tileData = null; - } -}; - -/** - * Enable Locator Reporting (DECELR). - * - * Not currently implemented. - */ -hterm.VT.CSI['\'z'] = hterm.VT.ignore; - -/** - * Erase Rectangular Area (DECERA), VT400 and up. - * - * Will not implement. - */ -hterm.VT.CSI['$z'] = hterm.VT.ignore; - -/** - * Select Locator Events (DECSLE). - * - * Not currently implemented. - */ -hterm.VT.CSI['\'{'] = hterm.VT.ignore; - -/** - * Request Locator Position (DECRQLP). - * - * Not currently implemented. - */ -hterm.VT.CSI['\'|'] = hterm.VT.ignore; - -/** - * Insert Columns (DECIC), VT420 and up. - * - * Will not implement. - */ -hterm.VT.CSI['\'}'] = hterm.VT.ignore; - -/** - * Delete P s Columns (DECDC), VT420 and up. - * - * Will not implement. - */ -hterm.VT.CSI['\'~'] = hterm.VT.ignore; -// SOURCE FILE: hterm/js/hterm_vt_character_map.js -// Copyright (c) 2012 The Chromium OS Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -'use strict'; - -lib.rtdep('lib.f'); - -/** - * Character map object. - * - * Mapping from received to display character, used depending on the active - * VT character set. - * - * GR maps are not currently supported. - * - * @param {string} description A human readable description of this map. - * @param {Object} glmap The GL mapping from input to output characters. - */ -hterm.VT.CharacterMap = function(description, glmap) { - /** - * Short description for this character set, useful for debugging. - */ - this.description = description; - - /** - * The function to call to when this map is installed in GL. - */ - this.GL = null; - - // Always keep an unmodified reference to the map. - // This allows us to sanely reset back to the original state. - this.glmapBase_ = glmap; - - // Now sync the internal state as needed. - this.sync_(); -}; - -/** - * Internal helper for resyncing internal state. - * - * Used when the mappings change. - * - * @param {Object?} opt_glmap Additional mappings to overlay on top of the - * base mapping. - */ -hterm.VT.CharacterMap.prototype.sync_ = function(opt_glmap) { - // If there are no maps, then reset the state back. - if (!this.glmapBase_ && !opt_glmap) { - this.GL = null; - delete this.glmap_; - delete this.glre_; - return; - } - - // Set the the GL mapping. If we're given a custom mapping, then create a - // new object to hold the merged map. This way we can cleanly reset back. - if (opt_glmap) - this.glmap_ = Object.assign({}, this.glmapBase_, opt_glmap); - else - this.glmap_ = this.glmapBase_; - - var glchars = Object.keys(this.glmap_).map((key) => - '\\x' + lib.f.zpad(key.charCodeAt(0).toString(16))); - this.glre_ = new RegExp('[' + glchars.join('') + ']', 'g'); - - this.GL = (str) => str.replace(this.glre_, (ch) => this.glmap_[ch]); -}; - -/** - * Reset map back to original mappings (discarding runtime updates). - * - * Specifically, any calls to setOverrides will be discarded. - */ -hterm.VT.CharacterMap.prototype.reset = function() { - // If we haven't been given a custom mapping, then there's nothing to reset. - if (this.glmap_ !== this.glmapBase_) - this.sync_(); -}; - -/** - * Merge custom changes to this map. - * - * The input map need not duplicate the existing mappings as it is merged with - * the existing base map (what was created with). Subsequent calls to this - * will throw away previous override settings. - * - * @param {Object} glmap The custom map to override existing mappings. - */ -hterm.VT.CharacterMap.prototype.setOverrides = function(glmap) { - this.sync_(glmap); -}; - -/** - * Return a copy of this mapping. - * - * @return {hterm.VT.CharacterMap} A new hterm.VT.CharacterMap instance. - */ -hterm.VT.CharacterMap.prototype.clone = function() { - var map = new hterm.VT.CharacterMap(this.description, this.glmapBase_); - if (this.glmap_ !== this.glmapBase_) - map.setOverrides(this.glmap_); - return map; -}; - -/** - * Table of character maps. - */ -hterm.VT.CharacterMaps = function() { - this.maps_ = hterm.VT.CharacterMaps.DefaultMaps; - - // Always keep an unmodified reference to the map. - // This allows us to sanely reset back to the original state. - this.mapsBase_ = this.maps_; -}; - -/** - * Look up a previously registered map. - * - * @param {String} name The name of the map to lookup. - * @return {hterm.VT.CharacterMap} The map, if it's been registered. - */ -hterm.VT.CharacterMaps.prototype.getMap = function(name) { - if (this.maps_.hasOwnProperty(name)) - return this.maps_[name]; - else - return undefined; -}; - -/** - * Register a new map. - * - * Any previously registered maps by this name will be discarded. - * - * @param {String} name The name of the map. - * @param {hterm.VT.CharacterMap} map The map to register. - */ -hterm.VT.CharacterMaps.prototype.addMap = function(name, map) { - if (this.maps_ === this.mapsBase_) - this.maps_ = Object.assign({}, this.mapsBase_); - this.maps_[name] = map; -}; - -/** - * Reset the table and all its maps back to original state. - */ -hterm.VT.CharacterMaps.prototype.reset = function() { - if (this.maps_ !== hterm.VT.CharacterMaps.DefaultMaps) - this.maps_ = hterm.VT.CharacterMaps.DefaultMaps; -}; - -/** - * Merge custom changes to this table. - * - * @param {Object} maps A set of hterm.VT.CharacterMap objects. - */ -hterm.VT.CharacterMaps.prototype.setOverrides = function(maps) { - if (this.maps_ === this.mapsBase_) - this.maps_ = Object.assign({}, this.mapsBase_); - - for (var name in maps) { - var map = this.getMap(name); - if (map !== undefined) { - this.maps_[name] = map.clone(); - this.maps_[name].setOverrides(maps[name]); - } else - this.addMap(name, new hterm.VT.CharacterMap('user ' + name, maps[name])); - } -}; - -/** - * The default set of supported character maps. - */ -hterm.VT.CharacterMaps.DefaultMaps = {}; - -/** - * VT100 Graphic character map. - * http://vt100.net/docs/vt220-rm/table2-4.html - */ -hterm.VT.CharacterMaps.DefaultMaps['0'] = new hterm.VT.CharacterMap( - 'graphic', { - '\x60':'\u25c6', // ` -> diamond - '\x61':'\u2592', // a -> grey-box - '\x62':'\u2409', // b -> h/t - '\x63':'\u240c', // c -> f/f - '\x64':'\u240d', // d -> c/r - '\x65':'\u240a', // e -> l/f - '\x66':'\u00b0', // f -> degree - '\x67':'\u00b1', // g -> +/- - '\x68':'\u2424', // h -> n/l - '\x69':'\u240b', // i -> v/t - '\x6a':'\u2518', // j -> bottom-right - '\x6b':'\u2510', // k -> top-right - '\x6c':'\u250c', // l -> top-left - '\x6d':'\u2514', // m -> bottom-left - '\x6e':'\u253c', // n -> line-cross - '\x6f':'\u23ba', // o -> scan1 - '\x70':'\u23bb', // p -> scan3 - '\x71':'\u2500', // q -> scan5 - '\x72':'\u23bc', // r -> scan7 - '\x73':'\u23bd', // s -> scan9 - '\x74':'\u251c', // t -> left-tee - '\x75':'\u2524', // u -> right-tee - '\x76':'\u2534', // v -> bottom-tee - '\x77':'\u252c', // w -> top-tee - '\x78':'\u2502', // x -> vertical-line - '\x79':'\u2264', // y -> less-equal - '\x7a':'\u2265', // z -> greater-equal - '\x7b':'\u03c0', // { -> pi - '\x7c':'\u2260', // | -> not-equal - '\x7d':'\u00a3', // } -> british-pound - '\x7e':'\u00b7', // ~ -> dot - }); - -/** - * British character map. - * http://vt100.net/docs/vt220-rm/table2-5.html - */ -hterm.VT.CharacterMaps.DefaultMaps['A'] = new hterm.VT.CharacterMap( - 'british', { - '\x23': '\u00a3', // # -> british-pound - }); - -/** - * US ASCII map, no changes. - */ -hterm.VT.CharacterMaps.DefaultMaps['B'] = new hterm.VT.CharacterMap( - 'us', null); - -/** - * Dutch character map. - * http://vt100.net/docs/vt220-rm/table2-6.html - */ -hterm.VT.CharacterMaps.DefaultMaps['4'] = new hterm.VT.CharacterMap( - 'dutch', { - '\x23': '\u00a3', // # -> british-pound - - '\x40': '\u00be', // @ -> 3/4 - - '\x5b': '\u0132', // [ -> 'ij' ligature (xterm goes with \u00ff?) - '\x5c': '\u00bd', // \ -> 1/2 - '\x5d': '\u007c', // ] -> vertical bar - - '\x7b': '\u00a8', // { -> two dots - '\x7c': '\u0066', // | -> f - '\x7d': '\u00bc', // } -> 1/4 - '\x7e': '\u00b4', // ~ -> acute - }); - -/** - * Finnish character map. - * http://vt100.net/docs/vt220-rm/table2-7.html - */ -hterm.VT.CharacterMaps.DefaultMaps['C'] = -hterm.VT.CharacterMaps.DefaultMaps['5'] = new hterm.VT.CharacterMap( - 'finnish', { - '\x5b': '\u00c4', // [ -> 'A' umlaut - '\x5c': '\u00d6', // \ -> 'O' umlaut - '\x5d': '\u00c5', // ] -> 'A' ring - '\x5e': '\u00dc', // ~ -> 'u' umlaut - - '\x60': '\u00e9', // ` -> 'e' acute - - '\x7b': '\u00e4', // { -> 'a' umlaut - '\x7c': '\u00f6', // | -> 'o' umlaut - '\x7d': '\u00e5', // } -> 'a' ring - '\x7e': '\u00fc', // ~ -> 'u' umlaut - }); - -/** - * French character map. - * http://vt100.net/docs/vt220-rm/table2-8.html - */ -hterm.VT.CharacterMaps.DefaultMaps['R'] = new hterm.VT.CharacterMap( - 'french', { - '\x23': '\u00a3', // # -> british-pound - - '\x40': '\u00e0', // @ -> 'a' grave - - '\x5b': '\u00b0', // [ -> ring - '\x5c': '\u00e7', // \ -> 'c' cedilla - '\x5d': '\u00a7', // ] -> section symbol (double s) - - '\x7b': '\u00e9', // { -> 'e' acute - '\x7c': '\u00f9', // | -> 'u' grave - '\x7d': '\u00e8', // } -> 'e' grave - '\x7e': '\u00a8', // ~ -> umlaut - }); - -/** - * French Canadian character map. - * http://vt100.net/docs/vt220-rm/table2-9.html - */ -hterm.VT.CharacterMaps.DefaultMaps['Q'] = new hterm.VT.CharacterMap( - 'french canadian', { - '\x40': '\u00e0', // @ -> 'a' grave - - '\x5b': '\u00e2', // [ -> 'a' circumflex - '\x5c': '\u00e7', // \ -> 'c' cedilla - '\x5d': '\u00ea', // ] -> 'e' circumflex - '\x5e': '\u00ee', // ^ -> 'i' circumflex - - '\x60': '\u00f4', // ` -> 'o' circumflex - - '\x7b': '\u00e9', // { -> 'e' acute - '\x7c': '\u00f9', // | -> 'u' grave - '\x7d': '\u00e8', // } -> 'e' grave - '\x7e': '\u00fb', // ~ -> 'u' circumflex - }); - -/** - * German character map. - * http://vt100.net/docs/vt220-rm/table2-10.html - */ -hterm.VT.CharacterMaps.DefaultMaps['K'] = new hterm.VT.CharacterMap( - 'german', { - '\x40': '\u00a7', // @ -> section symbol (double s) - - '\x5b': '\u00c4', // [ -> 'A' umlaut - '\x5c': '\u00d6', // \ -> 'O' umlaut - '\x5d': '\u00dc', // ] -> 'U' umlaut - - '\x7b': '\u00e4', // { -> 'a' umlaut - '\x7c': '\u00f6', // | -> 'o' umlaut - '\x7d': '\u00fc', // } -> 'u' umlaut - '\x7e': '\u00df', // ~ -> eszett - }); - -/** - * Italian character map. - * http://vt100.net/docs/vt220-rm/table2-11.html - */ -hterm.VT.CharacterMaps.DefaultMaps['Y'] = new hterm.VT.CharacterMap( - 'italian', { - '\x23': '\u00a3', // # -> british-pound - - '\x40': '\u00a7', // @ -> section symbol (double s) - - '\x5b': '\u00b0', // [ -> ring - '\x5c': '\u00e7', // \ -> 'c' cedilla - '\x5d': '\u00e9', // ] -> 'e' acute - - '\x60': '\u00f9', // ` -> 'u' grave - - '\x7b': '\u00e0', // { -> 'a' grave - '\x7c': '\u00f2', // | -> 'o' grave - '\x7d': '\u00e8', // } -> 'e' grave - '\x7e': '\u00ec', // ~ -> 'i' grave - }); - -/** - * Norwegian/Danish character map. - * http://vt100.net/docs/vt220-rm/table2-12.html - */ -hterm.VT.CharacterMaps.DefaultMaps['E'] = -hterm.VT.CharacterMaps.DefaultMaps['6'] = new hterm.VT.CharacterMap( - 'norwegian/danish', { - '\x40': '\u00c4', // @ -> 'A' umlaut - - '\x5b': '\u00c6', // [ -> 'AE' ligature - '\x5c': '\u00d8', // \ -> 'O' stroke - '\x5d': '\u00c5', // ] -> 'A' ring - '\x5e': '\u00dc', // ^ -> 'U' umlaut - - '\x60': '\u00e4', // ` -> 'a' umlaut - - '\x7b': '\u00e6', // { -> 'ae' ligature - '\x7c': '\u00f8', // | -> 'o' stroke - '\x7d': '\u00e5', // } -> 'a' ring - '\x7e': '\u00fc', // ~ -> 'u' umlaut - }); - -/** - * Spanish character map. - * http://vt100.net/docs/vt220-rm/table2-13.html - */ -hterm.VT.CharacterMaps.DefaultMaps['Z'] = new hterm.VT.CharacterMap( - 'spanish', { - '\x23': '\u00a3', // # -> british-pound - - '\x40': '\u00a7', // @ -> section symbol (double s) - - '\x5b': '\u00a1', // [ -> '!' inverted - '\x5c': '\u00d1', // \ -> 'N' tilde - '\x5d': '\u00bf', // ] -> '?' inverted - - '\x7b': '\u00b0', // { -> ring - '\x7c': '\u00f1', // | -> 'n' tilde - '\x7d': '\u00e7', // } -> 'c' cedilla - }); - -/** - * Swedish character map. - * http://vt100.net/docs/vt220-rm/table2-14.html - */ -hterm.VT.CharacterMaps.DefaultMaps['7'] = -hterm.VT.CharacterMaps.DefaultMaps['H'] = new hterm.VT.CharacterMap( - 'swedish', { - '\x40': '\u00c9', // @ -> 'E' acute - - '\x5b': '\u00c4', // [ -> 'A' umlaut - '\x5c': '\u00d6', // \ -> 'O' umlaut - '\x5d': '\u00c5', // ] -> 'A' ring - '\x5e': '\u00dc', // ^ -> 'U' umlaut - - '\x60': '\u00e9', // ` -> 'e' acute - - '\x7b': '\u00e4', // { -> 'a' umlaut - '\x7c': '\u00f6', // | -> 'o' umlaut - '\x7d': '\u00e5', // } -> 'a' ring - '\x7e': '\u00fc', // ~ -> 'u' umlaut - }); - -/** - * Swiss character map. - * http://vt100.net/docs/vt220-rm/table2-15.html - */ -hterm.VT.CharacterMaps.DefaultMaps['='] = new hterm.VT.CharacterMap( - 'swiss', { - '\x23': '\u00f9', // # -> 'u' grave - - '\x40': '\u00e0', // @ -> 'a' grave - - '\x5b': '\u00e9', // [ -> 'e' acute - '\x5c': '\u00e7', // \ -> 'c' cedilla - '\x5d': '\u00ea', // ] -> 'e' circumflex - '\x5e': '\u00ee', // ^ -> 'i' circumflex - '\x5f': '\u00e8', // _ -> 'e' grave - - '\x60': '\u00f4', // ` -> 'o' circumflex - - '\x7b': '\u00e4', // { -> 'a' umlaut - '\x7c': '\u00f6', // | -> 'o' umlaut - '\x7d': '\u00fc', // } -> 'u' umlaut - '\x7e': '\u00fb', // ~ -> 'u' circumflex - }); -lib.resource.add('hterm/audio/bell', 'audio/ogg;base64', -'T2dnUwACAAAAAAAAAADhqW5KAAAAAMFvEjYBHgF2b3JiaXMAAAAAAYC7AAAAAAAAAHcBAAAAAAC4' + -'AU9nZ1MAAAAAAAAAAAAA4aluSgEAAAAAesI3EC3//////////////////8kDdm9yYmlzHQAAAFhp' + -'cGguT3JnIGxpYlZvcmJpcyBJIDIwMDkwNzA5AAAAAAEFdm9yYmlzKUJDVgEACAAAADFMIMWA0JBV' + -'AAAQAABgJCkOk2ZJKaWUoSh5mJRISSmllMUwiZiUicUYY4wxxhhjjDHGGGOMIDRkFQAABACAKAmO' + -'o+ZJas45ZxgnjnKgOWlOOKcgB4pR4DkJwvUmY26mtKZrbs4pJQgNWQUAAAIAQEghhRRSSCGFFGKI' + -'IYYYYoghhxxyyCGnnHIKKqigggoyyCCDTDLppJNOOumoo4466ii00EILLbTSSkwx1VZjrr0GXXxz' + -'zjnnnHPOOeecc84JQkNWAQAgAAAEQgYZZBBCCCGFFFKIKaaYcgoyyIDQkFUAACAAgAAAAABHkRRJ' + -'sRTLsRzN0SRP8ixREzXRM0VTVE1VVVVVdV1XdmXXdnXXdn1ZmIVbuH1ZuIVb2IVd94VhGIZhGIZh' + -'GIZh+H3f933f930gNGQVACABAKAjOZbjKaIiGqLiOaIDhIasAgBkAAAEACAJkiIpkqNJpmZqrmmb' + -'tmirtm3LsizLsgyEhqwCAAABAAQAAAAAAKBpmqZpmqZpmqZpmqZpmqZpmqZpmmZZlmVZlmVZlmVZ' + -'lmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZQGjIKgBAAgBAx3Ecx3EkRVIkx3IsBwgNWQUAyAAA' + -'CABAUizFcjRHczTHczzHczxHdETJlEzN9EwPCA1ZBQAAAgAIAAAAAABAMRzFcRzJ0SRPUi3TcjVX' + -'cz3Xc03XdV1XVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVYHQkFUAAAQAACGdZpZq' + -'gAgzkGEgNGQVAIAAAAAYoQhDDAgNWQUAAAQAAIih5CCa0JrzzTkOmuWgqRSb08GJVJsnuamYm3PO' + -'OeecbM4Z45xzzinKmcWgmdCac85JDJqloJnQmnPOeRKbB62p0ppzzhnnnA7GGWGcc85p0poHqdlY' + -'m3POWdCa5qi5FJtzzomUmye1uVSbc84555xzzjnnnHPOqV6czsE54Zxzzonam2u5CV2cc875ZJzu' + -'zQnhnHPOOeecc84555xzzglCQ1YBAEAAAARh2BjGnYIgfY4GYhQhpiGTHnSPDpOgMcgppB6NjkZK' + -'qYNQUhknpXSC0JBVAAAgAACEEFJIIYUUUkghhRRSSCGGGGKIIaeccgoqqKSSiirKKLPMMssss8wy' + -'y6zDzjrrsMMQQwwxtNJKLDXVVmONteaec645SGultdZaK6WUUkoppSA0ZBUAAAIAQCBkkEEGGYUU' + -'UkghhphyyimnoIIKCA1ZBQAAAgAIAAAA8CTPER3RER3RER3RER3RER3P8RxREiVREiXRMi1TMz1V' + -'VFVXdm1Zl3Xbt4Vd2HXf133f141fF4ZlWZZlWZZlWZZlWZZlWZZlCUJDVgEAIAAAAEIIIYQUUkgh' + -'hZRijDHHnINOQgmB0JBVAAAgAIAAAAAAR3EUx5EcyZEkS7IkTdIszfI0T/M00RNFUTRNUxVd0RV1' + -'0xZlUzZd0zVl01Vl1XZl2bZlW7d9WbZ93/d93/d93/d93/d939d1IDRkFQAgAQCgIzmSIimSIjmO' + -'40iSBISGrAIAZAAABACgKI7iOI4jSZIkWZImeZZniZqpmZ7pqaIKhIasAgAAAQAEAAAAAACgaIqn' + -'mIqniIrniI4oiZZpiZqquaJsyq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7rukBo' + -'yCoAQAIAQEdyJEdyJEVSJEVyJAcIDVkFAMgAAAgAwDEcQ1Ikx7IsTfM0T/M00RM90TM9VXRFFwgN' + -'WQUAAAIACAAAAAAAwJAMS7EczdEkUVIt1VI11VItVVQ9VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV' + -'VVVVVVVVVVVV1TRN0zSB0JCVAAAZAAAjQQYZhBCKcpBCbj1YCDHmJAWhOQahxBiEpxAzDDkNInSQ' + -'QSc9uJI5wwzz4FIoFURMg40lN44gDcKmXEnlOAhCQ1YEAFEAAIAxyDHEGHLOScmgRM4xCZ2UyDkn' + -'pZPSSSktlhgzKSWmEmPjnKPSScmklBhLip2kEmOJrQAAgAAHAIAAC6HQkBUBQBQAAGIMUgophZRS' + -'zinmkFLKMeUcUko5p5xTzjkIHYTKMQadgxAppRxTzinHHITMQeWcg9BBKAAAIMABACDAQig0ZEUA' + -'ECcA4HAkz5M0SxQlSxNFzxRl1xNN15U0zTQ1UVRVyxNV1VRV2xZNVbYlTRNNTfRUVRNFVRVV05ZN' + -'VbVtzzRl2VRV3RZV1bZl2xZ+V5Z13zNNWRZV1dZNVbV115Z9X9ZtXZg0zTQ1UVRVTRRV1VRV2zZV' + -'17Y1UXRVUVVlWVRVWXZlWfdVV9Z9SxRV1VNN2RVVVbZV2fVtVZZ94XRVXVdl2fdVWRZ+W9eF4fZ9' + -'4RhV1dZN19V1VZZ9YdZlYbd13yhpmmlqoqiqmiiqqqmqtm2qrq1bouiqoqrKsmeqrqzKsq+rrmzr' + -'miiqrqiqsiyqqiyrsqz7qizrtqiquq3KsrCbrqvrtu8LwyzrunCqrq6rsuz7qizruq3rxnHrujB8' + -'pinLpqvquqm6um7runHMtm0co6rqvirLwrDKsu/rui+0dSFRVXXdlF3jV2VZ921fd55b94WybTu/' + -'rfvKceu60vg5z28cubZtHLNuG7+t+8bzKz9hOI6lZ5q2baqqrZuqq+uybivDrOtCUVV9XZVl3zdd' + -'WRdu3zeOW9eNoqrquirLvrDKsjHcxm8cuzAcXds2jlvXnbKtC31jyPcJz2vbxnH7OuP2daOvDAnH' + -'jwAAgAEHAIAAE8pAoSErAoA4AQAGIecUUxAqxSB0EFLqIKRUMQYhc05KxRyUUEpqIZTUKsYgVI5J' + -'yJyTEkpoKZTSUgehpVBKa6GU1lJrsabUYu0gpBZKaS2U0lpqqcbUWowRYxAy56RkzkkJpbQWSmkt' + -'c05K56CkDkJKpaQUS0otVsxJyaCj0kFIqaQSU0mptVBKa6WkFktKMbYUW24x1hxKaS2kEltJKcYU' + -'U20txpojxiBkzknJnJMSSmktlNJa5ZiUDkJKmYOSSkqtlZJSzJyT0kFIqYOOSkkptpJKTKGU1kpK' + -'sYVSWmwx1pxSbDWU0lpJKcaSSmwtxlpbTLV1EFoLpbQWSmmttVZraq3GUEprJaUYS0qxtRZrbjHm' + -'GkppraQSW0mpxRZbji3GmlNrNabWam4x5hpbbT3WmnNKrdbUUo0txppjbb3VmnvvIKQWSmktlNJi' + -'ai3G1mKtoZTWSiqxlZJabDHm2lqMOZTSYkmpxZJSjC3GmltsuaaWamwx5ppSi7Xm2nNsNfbUWqwt' + -'xppTS7XWWnOPufVWAADAgAMAQIAJZaDQkJUAQBQAAEGIUs5JaRByzDkqCULMOSepckxCKSlVzEEI' + -'JbXOOSkpxdY5CCWlFksqLcVWaykptRZrLQAAoMABACDABk2JxQEKDVkJAEQBACDGIMQYhAYZpRiD' + -'0BikFGMQIqUYc05KpRRjzknJGHMOQioZY85BKCmEUEoqKYUQSkklpQIAAAocAAACbNCUWByg0JAV' + -'AUAUAABgDGIMMYYgdFQyKhGETEonqYEQWgutddZSa6XFzFpqrbTYQAithdYySyXG1FpmrcSYWisA' + -'AOzAAQDswEIoNGQlAJAHAEAYoxRjzjlnEGLMOegcNAgx5hyEDirGnIMOQggVY85BCCGEzDkIIYQQ' + -'QuYchBBCCKGDEEIIpZTSQQghhFJK6SCEEEIppXQQQgihlFIKAAAqcAAACLBRZHOCkaBCQ1YCAHkA' + -'AIAxSjkHoZRGKcYglJJSoxRjEEpJqXIMQikpxVY5B6GUlFrsIJTSWmw1dhBKaS3GWkNKrcVYa64h' + -'pdZirDXX1FqMteaaa0otxlprzbkAANwFBwCwAxtFNicYCSo0ZCUAkAcAgCCkFGOMMYYUYoox55xD' + -'CCnFmHPOKaYYc84555RijDnnnHOMMeecc845xphzzjnnHHPOOeecc44555xzzjnnnHPOOeecc845' + -'55xzzgkAACpwAAAIsFFkc4KRoEJDVgIAqQAAABFWYowxxhgbCDHGGGOMMUYSYowxxhhjbDHGGGOM' + -'McaYYowxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHG' + -'GFtrrbXWWmuttdZaa6211lprrQBAvwoHAP8HG1ZHOCkaCyw0ZCUAEA4AABjDmHOOOQYdhIYp6KSE' + -'DkIIoUNKOSglhFBKKSlzTkpKpaSUWkqZc1JSKiWlllLqIKTUWkottdZaByWl1lJqrbXWOgiltNRa' + -'a6212EFIKaXWWostxlBKSq212GKMNYZSUmqtxdhirDGk0lJsLcYYY6yhlNZaazHGGGstKbXWYoy1' + -'xlprSam11mKLNdZaCwDgbnAAgEiwcYaVpLPC0eBCQ1YCACEBAARCjDnnnHMQQgghUoox56CDEEII' + -'IURKMeYcdBBCCCGEjDHnoIMQQgghhJAx5hx0EEIIIYQQOucchBBCCKGEUkrnHHQQQgghlFBC6SCE' + -'EEIIoYRSSikdhBBCKKGEUkopJYQQQgmllFJKKaWEEEIIoYQSSimllBBCCKWUUkoppZQSQgghlFJK' + -'KaWUUkIIoZRQSimllFJKCCGEUkoppZRSSgkhhFBKKaWUUkopIYQSSimllFJKKaUAAIADBwCAACPo' + -'JKPKImw04cIDUGjISgCADAAAcdhq6ynWyCDFnISWS4SQchBiLhFSijlHsWVIGcUY1ZQxpRRTUmvo' + -'nGKMUU+dY0oxw6yUVkookYLScqy1dswBAAAgCAAwECEzgUABFBjIAIADhAQpAKCwwNAxXAQE5BIy' + -'CgwKx4Rz0mkDABCEyAyRiFgMEhOqgaJiOgBYXGDIB4AMjY20iwvoMsAFXdx1IIQgBCGIxQEUkICD' + -'E2544g1PuMEJOkWlDgIAAAAA4AAAHgAAkg0gIiKaOY4Ojw+QEJERkhKTE5QAAAAAALABgA8AgCQF' + -'iIiIZo6jw+MDJERkhKTE5AQlAAAAAAAAAAAACAgIAAAAAAAEAAAACAhPZ2dTAAQYOwAAAAAAAOGp' + -'bkoCAAAAmc74DRgyNjM69TAzOTk74dnLubewsbagmZiNp4d0KbsExSY/I3XUTwJgkeZdn1HY4zoj' + -'33/q9DFtv3Ui1/jmx7lCUtPt18/sYf9MkgAsAGRBd3gMGP4sU+qCPYBy9VrA3YqJosW3W2/ef1iO' + -'/u3cg8ZG/57jU+pPmbGEJUgkfnaI39DbPqxddZphbMRmCc5rKlkUMkyx8iIoug5dJv1OYH9a59c+' + -'3Gevqc7Z2XFdDjL/qHztRfjWEWxJ/aiGezjohu9HsCZdQBKbiH0VtU/3m85lDG2T/+xkZcYnX+E+' + -'aqzv/xTgOoTFG+x7SNqQ4N+oAABSxuVXw77Jd5bmmTmuJakX7509HH0kGYKvARPpwfOSAPySPAc2' + -'EkneDwB2HwAAJlQDYK5586N79GJCjx4+p6aDUd27XSvRyXLJkIC5YZ1jLv5lpOhZTz0s+DmnF1di' + -'ptrnM6UDgIW11Xh8cHTd0/SmbgOAdxcyWwMAAGIrZ3fNSfZbzKiYrK4+tPqtnMVLOeWOG2kVvUY+' + -'p2PJ/hkCl5aFRO4TLGYPZcIU3vYM1hohS4jHFlnyW/2T5J7kGsShXWT8N05V+3C/GPqJ1QdWisGP' + -'xEzHqXISBPIinWDUt7IeJv/f5OtzBxpTzZZQ+CYEhHXfqG4aABQli72GJhN4oJv+hXcApAJSErAW' + -'8G2raAX4NUcABnVt77CzZAB+LsHcVe+Q4h+QB1wh/ZrJTPxSBdI8mgTeAdTsQOoFUEng9BHcVPhx' + -'SRRYkKWZJXOFYP6V4AEripJoEjXgA2wJRZHSExmJDm8F0A6gEXsg5a4ZsALItrMB7+fh7UKLvYWS' + -'dtsDwFf1mzYzS1F82N1h2Oyt2e76B1QdS0SAsQigLPMOgJS9JRC7hFXA6kUsLFNKD5cA5cTRvgSq' + -'Pc3Fl99xW3QTi/MHR8DEm6WnvaVQATwRqRKjywQ9BrrhugR2AKTsPQeQckrAOgDOhbTESyrXQ50C' + -'kNpXdtWjW7W2/3UjeX3U95gIdalfRAoAmqUEiwp53hCdcCwlg47fcbfzlmQMAgaBkh7c+fcDgF+i' + -'fwDXfzegLPcLYJsAAJQArTXjnh/uXGy3v1Hk3pV6/3t5ruW81f6prfbM2Q3WNVy98BwUtbCwhFhA' + -'WuPev6Oe/4ZaFQUcgKrVs4defzh1TADA1DEh5b3VlDaECw5b+bPfkKos3tIAue3vJZOih3ga3l6O' + -'3PSfIkrLv0PAS86PPdL7g8oc2KteNFKKzKRehOv2gJoFLBPXmaXvPBQILgJon0bbWBszrYZYYwE7' + -'jl2j+vTdU7Vpk21LiU0QajPkywAAHqbUC0/YsYOdb4e6BOp7E0cCi04Ao/TgD8ZVAMid6h/A8IeB' + -'Nkp6/xsAACZELEYIk+yvI6Qz1NN6lIftB/6IMWjWJNOqPTMedAmyaj6Es0QBklJpiSWWHnQ2CoYb' + -'GWAmt+0gLQBFKCBnp2QUUQZ/1thtZDBJUpFWY82z34ocorB62oX7qB5y0oPAv/foxH25wVmgIHf2' + -'xFOr8leZcBq1Kx3ZvCq9Bga639AxuHuPNL/71YCF4EywJpqHFAX6XF0sjVbuANnvvdLcrufYwOM/' + -'iDa6iA468AYAAB6mNBMXcgTD8HSRqJ4vw8CjAlCEPACASlX/APwPOJKl9xQAAAPmnev2eWp33Xgy' + -'w3Dvfz6myGk3oyP8YTKsCOvzAgALQi0o1c6Nzs2O2Pg2h4ACIJAgAGP0aNn5x0BDgVfH7u2TtyfD' + -'cRIuYAyQhBF/lvSRAttgA6TPbWZA9gaUrZWAUEAA+Dx47Q3/r87HxUUqZmB0BmUuMlojFjHt1gDu' + -'nnvuX8MImsjSq5WkzSzGS62OEIlOufWWezxWpv6FBgDgJVltfXFYtNAAnqU0xQoD0YLiXo5cF5QV' + -'4CnY1tBLAkZCOABAhbk/AM+/AwSCCdlWAAAMcFjS7owb8GVDzveDiZvznbt2tF4bL5odN1YKl88T' + -'AEABCZvufq9YCTBtMwVAQUEAwGtNltzSaHvADYC3TxLVjqiRA+OZAMhzcqEgRcAOwoCgvdTxsTHL' + -'QEF6+oOb2+PAI8ciPQcXg7pOY+LjxQSv2fjmFuj34gGwz310/bGK6z3xgT887eomWULEaDd04wHe' + -'tYxdjcgV2SxvSwn0VoZXJRqkRC5ASQ/muVoAUsX7AgAQMBNaVwAAlABRxT/1PmfqLqSRNDbhXb07' + -'berpB3b94jpuWEZjBCD2OcdXFpCKEgCDfcFPMw8AAADUwT4lnUm50lmwrpMMhPQIKj6u0E8fr2vG' + -'BngMNdIlrZsigjahljud6AFVg+tzXwUnXL3TJLpajaWKA4VAAAAMiFfqJgKAZ08XrtS3dxtQNYcp' + -'PvYEG8ClvrQRJgBephwnNWJjtGqmp6VEPSvBe7EBiU3qgJbQAwD4Le8LAMDMhHbNAAAlgK+tFs5O' + -'+YyJc9yCnJa3rxLPulGnxwsXV9Fsk2k4PisCAHC8FkwbGE9gJQAAoMnyksj0CdFMZLLgoz8M+Fxz' + -'iwYBgIx+zHiCBAKAlBKNpF1sO9JpVcyEi9ar15YlHgrut5fPJnkdJ6vEwZPyAHQBIEDUrlMcBAAd' + -'2KAS0Qq+JwRsE4AJZtMnAD6GnOYwYlOIZvtzUNdjreB7fiMkWI0CmBB6AIAKc38A9osEFlTSGECB' + -'+cbeRDC0aRpLHqNPplcK/76Lxn2rpmqyXsYJWRi/FQAAAKBQk9MCAOibrQBQADCDsqpooPutd+05' + -'Ce9g6iEdiYXgVmQAI4+4wskEBEiBloNQ6Ki0/KTQ0QjWfjxzi+AeuXKoMjEVfQOZzr0y941qLgM2' + -'AExvbZOqcxZ6J6krlrj4y2j9AdgKDx6GnJsVLhbc42uq584+ouSdNBpoCiCVHrz+WzUA/DDtD8AT' + -'gA3h0lMCAAzcFv+S+fSSNkeYWlTpb34mf2RfmqqJeMeklhHAfu7VoAEACgAApKRktL+KkQDWMwYC' + -'UAAAAHCKsp80xhp91UjqQBw3x45cetqkjQEyu3G9B6N+R650Uq8OVig7wOm6Wun0ea4lKDPoabJs' + -'6aLqgbhPzpv4KR4iODilw88ZpY7q1IOMcbASAOAVtmcCnobcrkG4KGS7/ZnskVWRNF9J0RUHKOnB' + -'yy9WA8Dv6L4AAARMCQUA4GritfVM2lcZfH3Q3T/vZ47J2YHhcmBazjfdyuV25gLAzrc0cwAAAAAY' + -'Ch6PdwAAAGyWjFW4yScjaWa2mGcofHxWxewKALglWBpLUvwwk+UOh5eNGyUOs1/EF+pZr+ud5Ozo' + -'GwYdAABg2p52LiSgAY/ZVlOmilEgHn6G3OcwYjzI7vOj1t6xsx4S3lBY96EUQBF6AIBAmPYH4PoG' + -'YCoJAADWe+OZJZi7/x76/yH7Lzf9M5XzRKnFPmveMsilQHwVAAAAAKB3LQD8PCIAAADga0QujBLy' + -'wzeJ4a6Z/ERVBAUlAEDqvoM7BQBAuAguzFqILtmjH3Kd4wfKobnOhA3z85qWoRPm9hwoOHoDAAlC' + -'bwDAA56FHAuXflHo3fe2ttG9XUDeA9YmYCBQ0oPr/1QC8IvuCwAAApbUAQCK22MmE3O78VAbHQT9' + -'PIPNoT9zNc3l2Oe7TAVLANBufT8MAQAAAGzT4PS8AQAAoELGHb2uaCwwEv1EWhFriUkbAaAZ27/f' + -'VZnTZXbWz3BwWpjUaMZKRj7dZ0J//gUeTdpVEwAAZOFsNxKAjQSgA+ABPoY8Jj5y2wje81jsXc/1' + -'TOQWTDYZBmAkNDiqVwuA2NJ9AQAAEBKAt9Vrsfs/2N19MO91S9rd8EHTZHnzC5MYmfQEACy/FBcA' + -'AADA5c4gi4z8RANs/m6FNXVo9DV46JG1BBDukqlw/Va5G7QbuGVSI+2aZaoLXJrdVj2zlC9Z5QEA' + -'EFz/5QzgVZwAAAAA/oXcxyC6WfTu+09Ve/c766J4VTAGUFmA51+VANKi/QPoPwYgYAkA715OH4S0' + -'s5KDHvj99MMq8TPFc3roKZnGOoT1bmIhVgc7XAMBAAAAAMAW1VbQw3gapzOpJd+Kd2fc4iSO62fJ' + -'v9+movui1wUNPAj059N3OVxzk4gV73PmE8FIA2F5mRq37Evc76vLXfF4rD5UJJAw46hW6LZCb5sN' + -'Ldx+kzMCAAB+hfy95+965ZCLP7B3/VlTHCvDEKtQhTm4KiCgAEAbrfbWTPssAAAAXpee1tVrozYY' + -'n41wD1aeYtkKfswN5/SXPO0JDnhO/4laUortv/s412fybe/nONdncoCHnBVliu0CQGBWlPY/5Kwo' + -'m2L/kruPM6Q7oz4tvDQy+bZ3HzOi+gNHA4DZEgA=' + -'' -); - -lib.resource.add('hterm/images/icon-96', 'image/png;base64', -'iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABGdBTUEAALGPC/xhBQAAAAFzUkdC' + -'AK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dE' + -'AP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAFKhJREFUeNrtXXlsXMd5/30z8649uDzE' + -'mxRFibIsOXZ8VInTJFYSW3actE1ctWkctEF6I0VRFEWAoihQoAjQFmiBogWaIEADFCmQXklto04T' + -'O0ndWI4bxZalWHJinTYtkRJFkctzl9zd977+8c49+UjuipbCD1y+9+ae75vvmJlv3gO2YRu2YRu2' + -'YRu2YUuAtroBN3nfeKsaSXWurarvRvUrTnlccV/5a3lDReRKFdc4Za6nzvW2b7OIpwZh7N37iHYi' + -'Pztyvy4iqA00Tng/WXH1f3GQsFki0Qbz+cAV12jeRkTwwUd2yfsVI89OjbLrwnoJILw8EoAOIAFg' + -'LwDTCxcAJBEJIiIAgoiICAIgIgIBJGpdPRCRq3sPCBAJAii8QgAk/PIFkSBBQvh3QRkQXtECBKpx' + -'H9br5hMikhcg4QV4dYkgARFBSkmlUmnp7LmLX8rl8q95OPKJ0DQCkPeTEcQrAD179+7+7LsP3vtJ' + -'w9A1ZvbwFfQM/r1/AyD64KLBv5JHIaIwIpI5GIbevd82r0I3OMjvJfOo5ffCqw1EhIRlQQi3a37p' + -'0atfTVB22PhIuHt95tnnBr75zHN/AGASoYjyxVVTCOCPfOWN9sGfue+df/L4r3z8MSGUOv3aWYDI' + -'q43BEXXEQRPCQK5qFleFMdduOwMV3WKUBXFVyVXhtm3jrjtvw13vuL1uPXGAAUghkGlLPXJ9ZvZz' + -'L738oz8HsOhFF2u3aH0E8JEvAWhe+n2PHD70Z7/xmccfLBSK9M1nX0AqnYFSKiB7fIiOzg3k21Be' + -'YHW1gMkr1/DBB+6HkGLTxmRfbxf9+qc/8WszM9lzF99468twxZCAq5wbQiMCREWPBkDXde3eI489' + -'+he/+1u/et/c3AK+/uSzyLTvgK7rm+tBE4CZA1HRaFT7oqNQKCCdsqBp61GD9eHBD77XunJ16o/+' + -'6q+/cLJYLP2fhzfGGkRYiwBRK2fnL/3iRz7/uT/8nfuuz2Txla8+hXRbJ6QUKBaLuJmgVLJRKuSh' + -'lIBpatiEFApACIFHH/lA//NHj33qe0ePvQJXEa/JnHEIoABYd925/zOPf+JjBxMJC//yxX+GYaZg' + -'GAZse00ue1uByyWMQrGEldVVKCWbQgAA6OnegQP7997zvaPH2gGsIpQidWuoRwA/o2/bDz70off+' + -'nFIa/fczz2Pq2hzSbRksLCxsNT43BI7jYCW/ihd/cBKWZTZhQcFV9qMjQ0gmEwm4hkqsOVEjDogq' + -'37bOjvaElBKLizmYVgKWZW01HjeOLGaAbUipoJTWHAKwa4KYpmHCJUB0lQCoU0scK0gCMJRSqqOj' + -'Hel0EqZpIpFIbDUeNwwOM2y7gO4dnWhrSzVFBDEzMpkULNM04BIgFsS1ggxNUzKVSiCRsEBEUEoF' + -'iRq2v5HNXjMd18pSHVeZnuuniZaopIIQBAIhnUqgvb1tU3OBKFiWCdMydABWBH+bIoCvA3RNU9Ky' + -'DOiahG2XAAAzszO4NHkZINcKALuddRHi3VWFReLcWy8dhxO5aFpvkhamD5HFwQQuStgwLPpsOza4' + -'5GD/yD4MDw2jVCrCMHSkUwmws3kCMADD0GCZpialMG3bia4trVsJ+xkJAKSUStM0oWsSQrgTGdu2' + -'MXllEmezF/HRhz+C4b6hyEgrnyjVLLzhcho1iFsDiGomOzt+Ds/8z7PIzmfR39eP1dVVSOEijR0n' + -'RsFrg1ISpmkoQ9cTufxKrBbHmoUoJZWmlPDXRZgdMDNsx8HuXbtx3zvvhRQKTdFmLQACoT2dwY9e' + -'fRWlvA1m1xJy2IEggkPrnUvXB9M0lGkaiVx+xR/ADQuPRQAppaY0JfzOBB0joFAs4Oyb59E0Y7pF' + -'4DDDdmw47LgygQHbbs7Ij4JpGMIwjGRFcF0xFJcDdE0pUb3YQ1hYWsDFSxff7vgHMyO3kkMGiaAP' + -'zScAwzB0YVlmAuHo3zQHkKaUppTHAUQBLQnAYm4J41feCldAGeHe2FaCq9fdXQMP8qt5sB6OlGbP' + -'4pkBwzBgGHoKMdcIG82Ew0RK6UqTxHAJEHSBCLmVHCavXwUcwGpXMJIS2YnVhrq01cAOQxkC7YMG' + -'5i6vwi65LV4trIK10GJyHLvpTTR0DZZlJtEEMxR+IVJJTSlFAFdZL47joFgswrEZ3X06Dv3eAH78' + -'7Vm8/t0s8nMld9PjBhHCN1G7dlm490g3rIzCt/5yHIWiA5dxGQ5HOcBpatuYGZquwTSNTXMAogVo' + -'SukuAXwlzFUpSRCyl1cx+VoOBz/Zi93vyeDE16bx1iuLsIsOSLSWCuwwEh0a9h/uxDs+2gWnxDj+' + -'79dQKjhlg4bZl/vkiaDmtkvXNFimmURMJ4VYOkBpSldSug91TDYiIDdXwtEvTeDNlxZw3y/34PDn' + -'duLCi/M4+eQ0Zt5cCdI1G/FKFxg5mME9R7rRMWTi/AtzOPnENLKXV2tyrA+lFqzkKk3BNI0k3BWE' + -'5swDXA7wlm0bFEkEODbjzWPzmDqTw4HDnbjz57swdHcKp56+jte/k0VurtRUInSPJXD3Y90YfXcb' + -'Zt7I49t/M45LJ5ZgF7lMAbsN9BfiXE5uthXEzFBK+TpAhrVunAAEeEp4DQ4oyyQI+fkSjn/tGsZf' + -'WcA9j3Xjvk/0Yte72vD8FyZw/Y2VauRsAA483ImDn+oF28DL/zqFn3wni/xcESSoTvkExxdBBNil' + -'FnCAlLBMM+Hhdk3HtThoIE1TulTuDlscAgAuNxCA6XN5HP+Pa8heWsHAgSQyA0ZzFr8IGHhHCuke' + -'HedfmMOpb8wgly021jXkTsjYm9C0YjNJSgFvHuAP7qbMA3TpcwAo1ooDOwwjKTH2QDvu/lg3lCnw' + -'g69cxcSpJc8dZJPgACeeuAYhgf0Pd6JjyMArX5/GlZ8sg23U5TCf+ESt0QFCCFiWYcF131kT4lhB' + -'pDSXAMy+Eq1PAXYAIYHBu9O490g3evclMf7yAk785zSuX8i7Y68ZOoCA6xdW8N2/u4TRd2dw75Fu' + -'PPqnu3Dmu7N49RszWLiyGvgGRfM47HjNdzmg6U6kRLAs02wGAXwieBwgggoaMUD7oI67fmEHbjvU' + -'gfmrBTz395fw5ksLKK26pmgzO0wCsFcZ576XxeTpZdzxaCfu+HAXRg624eST0zh/dB6FXDjK3TUg' + -'VwQREUot0AFCEEx3U8ZoBgEAVwdoUnheFnWGLztA1y4Tj/zxCIyUwI+emsaPn5nF8qyvFFs0D/C8' + -'05Zni3jpq1MY/+EC7jnSg/f+5gB69yXw/BcnYBfDIeMrYaLW6ACAYFmmjpi7YqpmCRWMq2maLgIO' + -'qFcUQ7MErp5ZxqmnZ0Jx0+IJWNBIr5qpszl852/fwp73ZNC3PwmhKCQAUWCGAu5MuNlriEQEy6za' + -'FauLhHg6QClNejte9YQICcL1i3k8/4UJd/bZZHETGwGCYK8yzjw3h4vHFmAXym19dxfNE0Etcqkx' + -'TVPTdd0qFApRPNaEtcxQAiA0TelCeKvRDTSoXWTYJb5ho75Rq0kApbwDrphrOREd0Ip5AOBuyhiG' + -'HsttpB4BohiUmqZpgel4Mx1qournYCbcUg4wpLccUasVZVCLAJUZhKaUTp5hvTWCpXnAcEIOsG00' + -'fxuVYRq6MA3dX5JuCGt5xhEAqWkq4IC4M+GYbV0/bLJ6h92dmlaJIG9ThkyzbE9gQ0rYB6lpSgUc' + -'0CT8C0nQzPUvCDk2o7iysUU0gmsFcSCCnJZspeq6BtPUk3HSxrGChKZpmu/U2gwKsMPo2Z/E+397' + -'AELFL48EMHFqGd//x0k49gYwR+VWUGvmAQxD12GZZgox1tpiuSa6HOCJIJ8umxo5hELOxvSFPEiu' + -'IxcR5idXNzVqqwnQXBZghr8r5m/KbHgxzs+oNE1T/sBvhggiAcyOr+B//+FyUzsfD0ERM7RFIkjT' + -'gj2BNTmgnhUUXcd2N4SpBUp4C6DVHABmaEr5+8L+rtiGlTADUK4I8kJ8XeDDes/KAw37zPUSrYUn' + -'5tpJOJqE4ThOSACn+RzAAKSU/p7AmgI2phWkyeB4ZqQiAsFZtkFOZI+Ao7SgytVgeJoQVBkf+HRG' + -'rxVhVBFGqHj24imSP3psFUAylYCSEsWSDdu2y86WNQukuytmIdwVq3tSJo5zrtI0JUMjiAJzbrB/' + -'AA8YRnCWNnLON3JuFyEiIj8AZen9Vc0wL0JkRtMgGlfjDHBwDSLKzwp7dRZL+aYivZwAApZlWnAP' + -'t0TxuSYBKocCA1BKUxIgMBy0taUAOCiVikilUkin0/FbFnEz3xxQLGMg6rpemX9paQm37x2DlLLM' + -'U6IZIITwOUCraEAVERotR4ccoDQJAI7DGBrsx8MP3o+nv/V9dHf3BAc1IjguO00d+OpHffYrw5ir' + -'09WMi5wd4PC8QLDHXHGmIHr1G8dgsOOgoyOJB973LjR/KSLYFYtuymxYCZOUUtM8z2i/w48cPgTT' + -'MPDD46eQX1mG768Smqq+qAFEROwIQSASZVdBAiQIQggI8q7+c/AjSCEgZBgm/TgZ3stovKy4Rsqz' + -'LBMjOweRSiXhNOFwRi0CmJbhE2BTm/KspNQ0pcrMVaUkDj/0fnzg0P0olkqhs+4a71xoeA0LKCur' + -'Irhmf2rJzca9cl0Um3U0qZoAqNwV25AS9pEdnA2IguM4kFLC95bYLPiiJYIjtEI83BggWKapCSEs' + -'x3E2txinlPJOx9z8k7AbBUTBSRkrl8tv+GUdDIClksphFsvL+ZacKLn1gL3V0DICrOuQXvSohUNE' + -'2rnz41QqcdPNtVsRGEBbOgnbdkjTVKUZWgWqRn4fHABOoVBcNE2ztHPnoL7NAfHANHS8dPzE0sxM' + -'dsILqvsGrXocEGRYXFx67fUz5y729e7Yw4ADjumb2AJoWq2xCtrwdh0TQRz74YmLpZI9HitHjTCC' + -'a0KZANKGoX88lUo+pCmlhBASYMmAjE76Ea4CoNyerDYuUZHRXwiq2Pan8r/yNkcMAiqvv+pwFFWm' + -'pQqbl6isaqoVVtajsJfB0piXwCEidhyHp6/PHpudnfs8gDm4b07xX+xXBnEW43jv2Ojo73/20x+e' + -'zc47Fy6MN/IOXZ+ZxBvIE6eeCovbn0FXzjXqt4urEsVlGsPQ8NFHP0RP/dez4sv/9G8ZuK8wq2uK' + -'xtkRs+44cNs7e3t61NEXXwVIVUye1o+f+nnXsT1ZlrwiH9dKjLp+TZVhoRNy/Jb5PrPjlyfAzDiw' + -'f28vgD4AV+AuS5dq5au3FuS/I0IB6B3bM7L7wsW3IJSBjvb2ls0gb3YgIiym0hi/NImB/p5Mpi09' + -'Or+weBqu+CliHYtx/ruCpGWZu3cOD/Sceu08ioUiFhcX12rHTy0QEXTdwKVLV7B/326tt3fHnvmF' + -'RQMu8v03aAERIjTyC5IAtJGdg/s7OjLmbHYBXV29TVt6uFVB13VMXZtFwrIwMNA3dvbcGxaAFYQb' + -'9LE5QAFI7Nk9cgdAyOeL2CFlS8XPrbDUoZTC4lIexVIJw0P9IwDScBVxzVOT9QggvbiuvWOjY9ns' + -'PBxmLC0tbc+G1wApJWyHMTObxcjwYB+ALgBTCN8+WTYpa0QAQUTDu0eH+ycmp5BOtyGVSm0r4Big' + -'6wYmJqYwNNTfIaXss237DEIRVMYFUQIEnnDwOGBwoG9ff19P+tXT52BZiVtCRLS6D8wM0zRx6fJV' + -'/Oz991jdOzp3Xp2a9iVKlTlayQFR89PYPTp8wLJMys4tItNuYH5+fqvx97YHIQQ0XcfUtRmkUgnq' + -'7+8duTo1raGOj1AlB0TnAOm9Y6O35XJ5MAskk8lt8bMOmMzOwHEYw0P9IydOnjYR6oC6BADK5wD9' + -'e8d2DV65Og3dMKGUuuUUcCvFkcPA/PwCRnYODAJoA3AdNRy1anGABCA7O9vHRnYOdrx84sdgBubm' + -'5rY5ICa4m/8Sk1enMTQ00A2gG8BbKOcCBmpzgASgj44M7+/oaJfXpmfR3t5xy07AWsUFhUIRlyem' + -'cOcde9OpVHJgaWn5FawhgqLfhkmOje26nZmRyxXQtePmfU3xVoFpmbg2PYtMW1rr6+3eeX5pOaqE' + -'gyWJShHkJ9px297RXddnsiiWbCwuLv5UiJ9aX/bYSBlE7nV5OYe2dAqDA727zl94s5IAZSIoKv9F' + -'ImHt2rN7pDs7N4/l5WVIOesRwH8Tbs2qgwvXi6uKr9PB+u8ujomSeKlonZG0RmRl6AcPHcTAQC8G' + -'B/uGEb5RPToh46j3bhCxc3hg39Bgn9nbswPpVBK53ErZR2tqOV358eVx4X2wzRRx2K103q12yEXo' + -'5Bvcry99I4ewuI5kYdsj6SIOxV5omXOwphS6ujoghMDw0EAvXEvoSgTfAKrfaUMA9F0jQ7d3d3ch' + -'k0njoQ+9b83NiK0VTnHendOqdnLdIIY7K3YJ0N8ppeixbecMYixFpHaNDI+mU0n3pdl8a9n+NxJ8' + -'7ujv7030dO8YvHL1mr8zWsYBlZrZymTSKaUlQNLAVo/vmxsIxCV0tLeJzs72bo8AboSH71qroStL' + -'S8u567PzyK86G9ox32yjW1lU6/sTrYFhmQqWZSGdSmZqpVZlqV3IzcxkZ6evTWFpebWmT2+tj6MF' + -'76OtdbSL61gyzDXTlZ0hKE9Q9rEGrrK8uELec1Vc+bcJIvfRwyM1wpiry2sU5opvRqYtCcuUKBSK' + -'JYQf/QzcFX0CRN0Rc8dPnD5qJZ7okVKCHYd8V27/RRcM9gAAewc/2bsLH+GnCf+Xp/PmFsFtEBum' + -'Lqss8oTIX9lzUFCQJ9rAijRV92VtjTxHyquqpKzLjn+Fu+xsKyULzLzyxhuXnkSNL66WnYRB+KnC' + -'DNydHP/dZzpCU7WWUuAGzxwjvlYZ9cLWm4cbxMUpD2vkqQzzkVwEUIC7Gb/iXQvez3fSYlWR0YZL' + -'uUUvkYHw453+JGK9EKdTrdT0Db2TW9CO6DeGSyhHetWXVqOfvXAq7m0vY9xvBW+28RvJ3ygP4ca3' + -'KcpJUU7wER/VAQBqK2H/DRZ+hspDe81EYKsQsZV1Vg7oKNKjyGegsXNuFOE302Ywr/G8Fe2pq4fq' + -'IfZmQvjbHbZ6AGzDNmzDNmzD2xT+H+5UT7Tyxc2HAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA2' + -'LTMwVDExOjUwOjAyLTA0OjAwOaSkCgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxMy0xMS0wMVQxMDoz' + -'ODoyNC0wNDowMNba8BsAAAAASUVORK5CYII=' + -'' -); - -lib.resource.add('hterm/concat/date', 'text/plain', -'Tue, 22 Aug 2017 06:42:31 +0000' + -'' -); - -lib.resource.add('hterm/changelog/version', 'text/plain', -'1.70' + -'' -); - -lib.resource.add('hterm/changelog/date', 'text/plain', -'2017-08-16' + -'' -); - -lib.resource.add('hterm/git/HEAD', 'text/plain', -'git rev-parse HEAD' + -'' -); - -// SOURCE FILE: hterm/js/hterm_export.js -module.exports = { - hterm: hterm, - lib: lib -}; - - - -/***/ }), -/* 15 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var hterm_1 = __webpack_require__(10); -var xterm_1 = __webpack_require__(13); -var webtty_1 = __webpack_require__(12); -var websocket_1 = __webpack_require__(11); -var elem = document.getElementById("terminal"); -if (elem !== null) { - var term; - if (gotty_term == "hterm") { - term = new hterm_1.Hterm(elem); - } - else { - term = new xterm_1.Xterm(elem); - } - var httpsEnabled = window.location.protocol == "https:"; - var url = (httpsEnabled ? 'wss://' : 'ws://') + window.location.host + window.location.pathname + 'ws'; - var args = window.location.search; - var factory = new websocket_1.ConnectionFactory(url, webtty_1.protocols); - var wt = new webtty_1.WebTTY(term, factory, args, gotty_auth_token); - var closer_1 = wt.open(); - window.addEventListener("unload", function () { - closer_1(); - term.close(); - }); -} -; - - -/***/ }), -/* 16 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var CompositionHelper = (function () { - function CompositionHelper(textarea, compositionView, terminal) { - this.textarea = textarea; - this.compositionView = compositionView; - this.terminal = terminal; - this.isComposing = false; - this.isSendingComposition = false; - this.compositionPosition = { start: null, end: null }; - } - CompositionHelper.prototype.compositionstart = function () { - this.isComposing = true; - this.compositionPosition.start = this.textarea.value.length; - this.compositionView.textContent = ''; - this.compositionView.classList.add('active'); - }; - CompositionHelper.prototype.compositionupdate = function (ev) { - var _this = this; - this.compositionView.textContent = ev.data; - this.updateCompositionElements(); - setTimeout(function () { - _this.compositionPosition.end = _this.textarea.value.length; - }, 0); - }; - CompositionHelper.prototype.compositionend = function () { - this.finalizeComposition(true); - }; - CompositionHelper.prototype.keydown = function (ev) { - if (this.isComposing || this.isSendingComposition) { - if (ev.keyCode === 229) { - return false; - } - else if (ev.keyCode === 16 || ev.keyCode === 17 || ev.keyCode === 18) { - return false; - } - else { - this.finalizeComposition(false); - } - } - if (ev.keyCode === 229) { - this.handleAnyTextareaChanges(); - return false; - } - return true; - }; - CompositionHelper.prototype.finalizeComposition = function (waitForPropogation) { - var _this = this; - this.compositionView.classList.remove('active'); - this.isComposing = false; - this.clearTextareaPosition(); - if (!waitForPropogation) { - this.isSendingComposition = false; - var input = this.textarea.value.substring(this.compositionPosition.start, this.compositionPosition.end); - this.terminal.handler(input); - } - else { - var currentCompositionPosition_1 = { - start: this.compositionPosition.start, - end: this.compositionPosition.end, - }; - this.isSendingComposition = true; - setTimeout(function () { - if (_this.isSendingComposition) { - _this.isSendingComposition = false; - var input = void 0; - if (_this.isComposing) { - input = _this.textarea.value.substring(currentCompositionPosition_1.start, currentCompositionPosition_1.end); - } - else { - input = _this.textarea.value.substring(currentCompositionPosition_1.start); - } - _this.terminal.handler(input); - } - }, 0); - } - }; - CompositionHelper.prototype.handleAnyTextareaChanges = function () { - var _this = this; - var oldValue = this.textarea.value; - setTimeout(function () { - if (!_this.isComposing) { - var newValue = _this.textarea.value; - var diff = newValue.replace(oldValue, ''); - if (diff.length > 0) { - _this.terminal.handler(diff); - } - } - }, 0); - }; - CompositionHelper.prototype.updateCompositionElements = function (dontRecurse) { - var _this = this; - if (!this.isComposing) { - return; - } - var cursor = this.terminal.element.querySelector('.terminal-cursor'); - if (cursor) { - var xtermRows = this.terminal.element.querySelector('.xterm-rows'); - var cursorTop = xtermRows.offsetTop + cursor.offsetTop; - this.compositionView.style.left = cursor.offsetLeft + 'px'; - this.compositionView.style.top = cursorTop + 'px'; - this.compositionView.style.height = cursor.offsetHeight + 'px'; - this.compositionView.style.lineHeight = cursor.offsetHeight + 'px'; - var compositionViewBounds = this.compositionView.getBoundingClientRect(); - this.textarea.style.left = cursor.offsetLeft + 'px'; - this.textarea.style.top = cursorTop + 'px'; - this.textarea.style.width = compositionViewBounds.width + 'px'; - this.textarea.style.height = compositionViewBounds.height + 'px'; - this.textarea.style.lineHeight = compositionViewBounds.height + 'px'; - } - if (!dontRecurse) { - setTimeout(function () { return _this.updateCompositionElements(true); }, 0); - } - }; - ; - CompositionHelper.prototype.clearTextareaPosition = function () { - this.textarea.style.left = ''; - this.textarea.style.top = ''; - }; - ; - return CompositionHelper; -}()); -exports.CompositionHelper = CompositionHelper; - -//# sourceMappingURL=CompositionHelper.js.map - - -/***/ }), -/* 17 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var EscapeSequences_1 = __webpack_require__(2); -var Charsets_1 = __webpack_require__(3); -var InputHandler = (function () { - function InputHandler(_terminal) { - this._terminal = _terminal; - } - InputHandler.prototype.addChar = function (char, code) { - if (char >= ' ') { - var ch_width = wcwidth(code); - if (this._terminal.charset && this._terminal.charset[char]) { - char = this._terminal.charset[char]; - } - var row = this._terminal.y + this._terminal.ybase; - if (!ch_width && this._terminal.x) { - if (this._terminal.lines.get(row)[this._terminal.x - 1]) { - if (!this._terminal.lines.get(row)[this._terminal.x - 1][2]) { - if (this._terminal.lines.get(row)[this._terminal.x - 2]) - this._terminal.lines.get(row)[this._terminal.x - 2][1] += char; - } - else { - this._terminal.lines.get(row)[this._terminal.x - 1][1] += char; - } - this._terminal.updateRange(this._terminal.y); - } - return; - } - if (this._terminal.x + ch_width - 1 >= this._terminal.cols) { - if (this._terminal.wraparoundMode) { - this._terminal.x = 0; - this._terminal.y++; - if (this._terminal.y > this._terminal.scrollBottom) { - this._terminal.y--; - this._terminal.scroll(true); - } - else { - this._terminal.lines.get(this._terminal.y).isWrapped = true; - } - } - else { - if (ch_width === 2) - return; - } - } - row = this._terminal.y + this._terminal.ybase; - if (this._terminal.insertMode) { - for (var moves = 0; moves < ch_width; ++moves) { - var removed = this._terminal.lines.get(this._terminal.y + this._terminal.ybase).pop(); - if (removed[2] === 0 - && this._terminal.lines.get(row)[this._terminal.cols - 2] - && this._terminal.lines.get(row)[this._terminal.cols - 2][2] === 2) { - this._terminal.lines.get(row)[this._terminal.cols - 2] = [this._terminal.curAttr, ' ', 1]; - } - this._terminal.lines.get(row).splice(this._terminal.x, 0, [this._terminal.curAttr, ' ', 1]); - } - } - this._terminal.lines.get(row)[this._terminal.x] = [this._terminal.curAttr, char, ch_width]; - this._terminal.x++; - this._terminal.updateRange(this._terminal.y); - if (ch_width === 2) { - this._terminal.lines.get(row)[this._terminal.x] = [this._terminal.curAttr, '', 0]; - this._terminal.x++; - } - } - }; - InputHandler.prototype.bell = function () { - var _this = this; - if (!this._terminal.visualBell) { - return; - } - this._terminal.element.style.borderColor = 'white'; - setTimeout(function () { return _this._terminal.element.style.borderColor = ''; }, 10); - if (this._terminal.popOnBell) { - this._terminal.focus(); - } - }; - InputHandler.prototype.lineFeed = function () { - if (this._terminal.convertEol) { - this._terminal.x = 0; - } - this._terminal.y++; - if (this._terminal.y > this._terminal.scrollBottom) { - this._terminal.y--; - this._terminal.scroll(); - } - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x--; - } - }; - InputHandler.prototype.carriageReturn = function () { - this._terminal.x = 0; - }; - InputHandler.prototype.backspace = function () { - if (this._terminal.x > 0) { - this._terminal.x--; - } - }; - InputHandler.prototype.tab = function () { - this._terminal.x = this._terminal.nextStop(); - }; - InputHandler.prototype.shiftOut = function () { - this._terminal.setgLevel(1); - }; - InputHandler.prototype.shiftIn = function () { - this._terminal.setgLevel(0); - }; - InputHandler.prototype.insertChars = function (params) { - var param, row, j, ch; - param = params[0]; - if (param < 1) - param = 1; - row = this._terminal.y + this._terminal.ybase; - j = this._terminal.x; - ch = [this._terminal.eraseAttr(), ' ', 1]; - while (param-- && j < this._terminal.cols) { - this._terminal.lines.get(row).splice(j++, 0, ch); - this._terminal.lines.get(row).pop(); - } - }; - InputHandler.prototype.cursorUp = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y -= param; - if (this._terminal.y < 0) { - this._terminal.y = 0; - } - }; - InputHandler.prototype.cursorDown = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y += param; - if (this._terminal.y >= this._terminal.rows) { - this._terminal.y = this._terminal.rows - 1; - } - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x--; - } - }; - InputHandler.prototype.cursorForward = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.x += param; - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x = this._terminal.cols - 1; - } - }; - InputHandler.prototype.cursorBackward = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x--; - } - this._terminal.x -= param; - if (this._terminal.x < 0) { - this._terminal.x = 0; - } - }; - InputHandler.prototype.cursorNextLine = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y += param; - if (this._terminal.y >= this._terminal.rows) { - this._terminal.y = this._terminal.rows - 1; - } - this._terminal.x = 0; - }; - ; - InputHandler.prototype.cursorPrecedingLine = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y -= param; - if (this._terminal.y < 0) { - this._terminal.y = 0; - } - this._terminal.x = 0; - }; - ; - InputHandler.prototype.cursorCharAbsolute = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.x = param - 1; - }; - InputHandler.prototype.cursorPosition = function (params) { - var row, col; - row = params[0] - 1; - if (params.length >= 2) { - col = params[1] - 1; - } - else { - col = 0; - } - if (row < 0) { - row = 0; - } - else if (row >= this._terminal.rows) { - row = this._terminal.rows - 1; - } - if (col < 0) { - col = 0; - } - else if (col >= this._terminal.cols) { - col = this._terminal.cols - 1; - } - this._terminal.x = col; - this._terminal.y = row; - }; - InputHandler.prototype.cursorForwardTab = function (params) { - var param = params[0] || 1; - while (param--) { - this._terminal.x = this._terminal.nextStop(); - } - }; - InputHandler.prototype.eraseInDisplay = function (params) { - var j; - switch (params[0]) { - case 0: - this._terminal.eraseRight(this._terminal.x, this._terminal.y); - j = this._terminal.y + 1; - for (; j < this._terminal.rows; j++) { - this._terminal.eraseLine(j); - } - break; - case 1: - this._terminal.eraseLeft(this._terminal.x, this._terminal.y); - j = this._terminal.y; - while (j--) { - this._terminal.eraseLine(j); - } - break; - case 2: - j = this._terminal.rows; - while (j--) - this._terminal.eraseLine(j); - break; - case 3: - var scrollBackSize = this._terminal.lines.length - this._terminal.rows; - if (scrollBackSize > 0) { - this._terminal.lines.trimStart(scrollBackSize); - this._terminal.ybase = Math.max(this._terminal.ybase - scrollBackSize, 0); - this._terminal.ydisp = Math.max(this._terminal.ydisp - scrollBackSize, 0); - } - break; - } - }; - InputHandler.prototype.eraseInLine = function (params) { - switch (params[0]) { - case 0: - this._terminal.eraseRight(this._terminal.x, this._terminal.y); - break; - case 1: - this._terminal.eraseLeft(this._terminal.x, this._terminal.y); - break; - case 2: - this._terminal.eraseLine(this._terminal.y); - break; - } - }; - InputHandler.prototype.insertLines = function (params) { - var param, row, j; - param = params[0]; - if (param < 1) { - param = 1; - } - row = this._terminal.y + this._terminal.ybase; - j = this._terminal.rows - 1 - this._terminal.scrollBottom; - j = this._terminal.rows - 1 + this._terminal.ybase - j + 1; - while (param--) { - if (this._terminal.lines.length === this._terminal.lines.maxLength) { - this._terminal.lines.trimStart(1); - this._terminal.ybase--; - this._terminal.ydisp--; - row--; - j--; - } - this._terminal.lines.splice(row, 0, this._terminal.blankLine(true)); - this._terminal.lines.splice(j, 1); - } - this._terminal.updateRange(this._terminal.y); - this._terminal.updateRange(this._terminal.scrollBottom); - }; - InputHandler.prototype.deleteLines = function (params) { - var param, row, j; - param = params[0]; - if (param < 1) { - param = 1; - } - row = this._terminal.y + this._terminal.ybase; - j = this._terminal.rows - 1 - this._terminal.scrollBottom; - j = this._terminal.rows - 1 + this._terminal.ybase - j; - while (param--) { - if (this._terminal.lines.length === this._terminal.lines.maxLength) { - this._terminal.lines.trimStart(1); - this._terminal.ybase -= 1; - this._terminal.ydisp -= 1; - } - this._terminal.lines.splice(j + 1, 0, this._terminal.blankLine(true)); - this._terminal.lines.splice(row, 1); - } - this._terminal.updateRange(this._terminal.y); - this._terminal.updateRange(this._terminal.scrollBottom); - }; - InputHandler.prototype.deleteChars = function (params) { - var param, row, ch; - param = params[0]; - if (param < 1) { - param = 1; - } - row = this._terminal.y + this._terminal.ybase; - ch = [this._terminal.eraseAttr(), ' ', 1]; - while (param--) { - this._terminal.lines.get(row).splice(this._terminal.x, 1); - this._terminal.lines.get(row).push(ch); - } - }; - InputHandler.prototype.scrollUp = function (params) { - var param = params[0] || 1; - while (param--) { - this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollTop, 1); - this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollBottom, 0, this._terminal.blankLine()); - } - this._terminal.updateRange(this._terminal.scrollTop); - this._terminal.updateRange(this._terminal.scrollBottom); - }; - InputHandler.prototype.scrollDown = function (params) { - var param = params[0] || 1; - while (param--) { - this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollBottom, 1); - this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollTop, 0, this._terminal.blankLine()); - } - this._terminal.updateRange(this._terminal.scrollTop); - this._terminal.updateRange(this._terminal.scrollBottom); - }; - InputHandler.prototype.eraseChars = function (params) { - var param, row, j, ch; - param = params[0]; - if (param < 1) { - param = 1; - } - row = this._terminal.y + this._terminal.ybase; - j = this._terminal.x; - ch = [this._terminal.eraseAttr(), ' ', 1]; - while (param-- && j < this._terminal.cols) { - this._terminal.lines.get(row)[j++] = ch; - } - }; - InputHandler.prototype.cursorBackwardTab = function (params) { - var param = params[0] || 1; - while (param--) { - this._terminal.x = this._terminal.prevStop(); - } - }; - InputHandler.prototype.charPosAbsolute = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.x = param - 1; - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x = this._terminal.cols - 1; - } - }; - InputHandler.prototype.HPositionRelative = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.x += param; - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x = this._terminal.cols - 1; - } - }; - InputHandler.prototype.repeatPrecedingCharacter = function (params) { - var param = params[0] || 1, line = this._terminal.lines.get(this._terminal.ybase + this._terminal.y), ch = line[this._terminal.x - 1] || [this._terminal.defAttr, ' ', 1]; - while (param--) { - line[this._terminal.x++] = ch; - } - }; - InputHandler.prototype.sendDeviceAttributes = function (params) { - if (params[0] > 0) { - return; - } - if (!this._terminal.prefix) { - if (this._terminal.is('xterm') || this._terminal.is('rxvt-unicode') || this._terminal.is('screen')) { - this._terminal.send(EscapeSequences_1.C0.ESC + '[?1;2c'); - } - else if (this._terminal.is('linux')) { - this._terminal.send(EscapeSequences_1.C0.ESC + '[?6c'); - } - } - else if (this._terminal.prefix === '>') { - if (this._terminal.is('xterm')) { - this._terminal.send(EscapeSequences_1.C0.ESC + '[>0;276;0c'); - } - else if (this._terminal.is('rxvt-unicode')) { - this._terminal.send(EscapeSequences_1.C0.ESC + '[>85;95;0c'); - } - else if (this._terminal.is('linux')) { - this._terminal.send(params[0] + 'c'); - } - else if (this._terminal.is('screen')) { - this._terminal.send(EscapeSequences_1.C0.ESC + '[>83;40003;0c'); - } - } - }; - InputHandler.prototype.linePosAbsolute = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y = param - 1; - if (this._terminal.y >= this._terminal.rows) { - this._terminal.y = this._terminal.rows - 1; - } - }; - InputHandler.prototype.VPositionRelative = function (params) { - var param = params[0]; - if (param < 1) { - param = 1; - } - this._terminal.y += param; - if (this._terminal.y >= this._terminal.rows) { - this._terminal.y = this._terminal.rows - 1; - } - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x--; - } - }; - InputHandler.prototype.HVPosition = function (params) { - if (params[0] < 1) - params[0] = 1; - if (params[1] < 1) - params[1] = 1; - this._terminal.y = params[0] - 1; - if (this._terminal.y >= this._terminal.rows) { - this._terminal.y = this._terminal.rows - 1; - } - this._terminal.x = params[1] - 1; - if (this._terminal.x >= this._terminal.cols) { - this._terminal.x = this._terminal.cols - 1; - } - }; - InputHandler.prototype.tabClear = function (params) { - var param = params[0]; - if (param <= 0) { - delete this._terminal.tabs[this._terminal.x]; - } - else if (param === 3) { - this._terminal.tabs = {}; - } - }; - InputHandler.prototype.setMode = function (params) { - if (params.length > 1) { - for (var i = 0; i < params.length; i++) { - this.setMode([params[i]]); - } - return; - } - if (!this._terminal.prefix) { - switch (params[0]) { - case 4: - this._terminal.insertMode = true; - break; - case 20: - break; - } - } - else if (this._terminal.prefix === '?') { - switch (params[0]) { - case 1: - this._terminal.applicationCursor = true; - break; - case 2: - this._terminal.setgCharset(0, Charsets_1.DEFAULT_CHARSET); - this._terminal.setgCharset(1, Charsets_1.DEFAULT_CHARSET); - this._terminal.setgCharset(2, Charsets_1.DEFAULT_CHARSET); - this._terminal.setgCharset(3, Charsets_1.DEFAULT_CHARSET); - break; - case 3: - this._terminal.savedCols = this._terminal.cols; - this._terminal.resize(132, this._terminal.rows); - break; - case 6: - this._terminal.originMode = true; - break; - case 7: - this._terminal.wraparoundMode = true; - break; - case 12: - break; - case 66: - this._terminal.log('Serial port requested application keypad.'); - this._terminal.applicationKeypad = true; - this._terminal.viewport.syncScrollArea(); - break; - case 9: - case 1000: - case 1002: - case 1003: - this._terminal.x10Mouse = params[0] === 9; - this._terminal.vt200Mouse = params[0] === 1000; - this._terminal.normalMouse = params[0] > 1000; - this._terminal.mouseEvents = true; - this._terminal.element.classList.add('enable-mouse-events'); - this._terminal.selectionManager.disable(); - this._terminal.log('Binding to mouse events.'); - break; - case 1004: - this._terminal.sendFocus = true; - break; - case 1005: - this._terminal.utfMouse = true; - break; - case 1006: - this._terminal.sgrMouse = true; - break; - case 1015: - this._terminal.urxvtMouse = true; - break; - case 25: - this._terminal.cursorHidden = false; - break; - case 1049: - ; - case 47: - case 1047: - if (!this._terminal.normal) { - var normal = { - lines: this._terminal.lines, - ybase: this._terminal.ybase, - ydisp: this._terminal.ydisp, - x: this._terminal.x, - y: this._terminal.y, - scrollTop: this._terminal.scrollTop, - scrollBottom: this._terminal.scrollBottom, - tabs: this._terminal.tabs - }; - this._terminal.reset(); - this._terminal.viewport.syncScrollArea(); - this._terminal.normal = normal; - this._terminal.showCursor(); - } - break; - } - } - }; - InputHandler.prototype.resetMode = function (params) { - if (params.length > 1) { - for (var i = 0; i < params.length; i++) { - this.resetMode([params[i]]); - } - return; - } - if (!this._terminal.prefix) { - switch (params[0]) { - case 4: - this._terminal.insertMode = false; - break; - case 20: - break; - } - } - else if (this._terminal.prefix === '?') { - switch (params[0]) { - case 1: - this._terminal.applicationCursor = false; - break; - case 3: - if (this._terminal.cols === 132 && this._terminal.savedCols) { - this._terminal.resize(this._terminal.savedCols, this._terminal.rows); - } - delete this._terminal.savedCols; - break; - case 6: - this._terminal.originMode = false; - break; - case 7: - this._terminal.wraparoundMode = false; - break; - case 12: - break; - case 66: - this._terminal.log('Switching back to normal keypad.'); - this._terminal.applicationKeypad = false; - this._terminal.viewport.syncScrollArea(); - break; - case 9: - case 1000: - case 1002: - case 1003: - this._terminal.x10Mouse = false; - this._terminal.vt200Mouse = false; - this._terminal.normalMouse = false; - this._terminal.mouseEvents = false; - this._terminal.element.classList.remove('enable-mouse-events'); - this._terminal.selectionManager.enable(); - break; - case 1004: - this._terminal.sendFocus = false; - break; - case 1005: - this._terminal.utfMouse = false; - break; - case 1006: - this._terminal.sgrMouse = false; - break; - case 1015: - this._terminal.urxvtMouse = false; - break; - case 25: - this._terminal.cursorHidden = true; - break; - case 1049: - ; - case 47: - case 1047: - if (this._terminal.normal) { - this._terminal.lines = this._terminal.normal.lines; - this._terminal.ybase = this._terminal.normal.ybase; - this._terminal.ydisp = this._terminal.normal.ydisp; - this._terminal.x = this._terminal.normal.x; - this._terminal.y = this._terminal.normal.y; - this._terminal.scrollTop = this._terminal.normal.scrollTop; - this._terminal.scrollBottom = this._terminal.normal.scrollBottom; - this._terminal.tabs = this._terminal.normal.tabs; - this._terminal.normal = null; - this._terminal.selectionManager.setBuffer(this._terminal.lines); - this._terminal.refresh(0, this._terminal.rows - 1); - this._terminal.viewport.syncScrollArea(); - this._terminal.showCursor(); - } - break; - } - } - }; - InputHandler.prototype.charAttributes = function (params) { - if (params.length === 1 && params[0] === 0) { - this._terminal.curAttr = this._terminal.defAttr; - return; - } - var l = params.length, i = 0, flags = this._terminal.curAttr >> 18, fg = (this._terminal.curAttr >> 9) & 0x1ff, bg = this._terminal.curAttr & 0x1ff, p; - for (; i < l; i++) { - p = params[i]; - if (p >= 30 && p <= 37) { - fg = p - 30; - } - else if (p >= 40 && p <= 47) { - bg = p - 40; - } - else if (p >= 90 && p <= 97) { - p += 8; - fg = p - 90; - } - else if (p >= 100 && p <= 107) { - p += 8; - bg = p - 100; - } - else if (p === 0) { - flags = this._terminal.defAttr >> 18; - fg = (this._terminal.defAttr >> 9) & 0x1ff; - bg = this._terminal.defAttr & 0x1ff; - } - else if (p === 1) { - flags |= 1; - } - else if (p === 4) { - flags |= 2; - } - else if (p === 5) { - flags |= 4; - } - else if (p === 7) { - flags |= 8; - } - else if (p === 8) { - flags |= 16; - } - else if (p === 22) { - flags &= ~1; - } - else if (p === 24) { - flags &= ~2; - } - else if (p === 25) { - flags &= ~4; - } - else if (p === 27) { - flags &= ~8; - } - else if (p === 28) { - flags &= ~16; - } - else if (p === 39) { - fg = (this._terminal.defAttr >> 9) & 0x1ff; - } - else if (p === 49) { - bg = this._terminal.defAttr & 0x1ff; - } - else if (p === 38) { - if (params[i + 1] === 2) { - i += 2; - fg = this._terminal.matchColor(params[i] & 0xff, params[i + 1] & 0xff, params[i + 2] & 0xff); - if (fg === -1) - fg = 0x1ff; - i += 2; - } - else if (params[i + 1] === 5) { - i += 2; - p = params[i] & 0xff; - fg = p; - } - } - else if (p === 48) { - if (params[i + 1] === 2) { - i += 2; - bg = this._terminal.matchColor(params[i] & 0xff, params[i + 1] & 0xff, params[i + 2] & 0xff); - if (bg === -1) - bg = 0x1ff; - i += 2; - } - else if (params[i + 1] === 5) { - i += 2; - p = params[i] & 0xff; - bg = p; - } - } - else if (p === 100) { - fg = (this._terminal.defAttr >> 9) & 0x1ff; - bg = this._terminal.defAttr & 0x1ff; - } - else { - this._terminal.error('Unknown SGR attribute: %d.', p); - } - } - this._terminal.curAttr = (flags << 18) | (fg << 9) | bg; - }; - InputHandler.prototype.deviceStatus = function (params) { - if (!this._terminal.prefix) { - switch (params[0]) { - case 5: - this._terminal.send(EscapeSequences_1.C0.ESC + '[0n'); - break; - case 6: - this._terminal.send(EscapeSequences_1.C0.ESC + '[' - + (this._terminal.y + 1) - + ';' - + (this._terminal.x + 1) - + 'R'); - break; - } - } - else if (this._terminal.prefix === '?') { - switch (params[0]) { - case 6: - this._terminal.send(EscapeSequences_1.C0.ESC + '[?' - + (this._terminal.y + 1) - + ';' - + (this._terminal.x + 1) - + 'R'); - break; - case 15: - break; - case 25: - break; - case 26: - break; - case 53: - break; - } - } - }; - InputHandler.prototype.softReset = function (params) { - this._terminal.cursorHidden = false; - this._terminal.insertMode = false; - this._terminal.originMode = false; - this._terminal.wraparoundMode = true; - this._terminal.applicationKeypad = false; - this._terminal.viewport.syncScrollArea(); - this._terminal.applicationCursor = false; - this._terminal.scrollTop = 0; - this._terminal.scrollBottom = this._terminal.rows - 1; - this._terminal.curAttr = this._terminal.defAttr; - this._terminal.x = this._terminal.y = 0; - this._terminal.charset = null; - this._terminal.glevel = 0; - this._terminal.charsets = [null]; - }; - InputHandler.prototype.setCursorStyle = function (params) { - var param = params[0] < 1 ? 1 : params[0]; - switch (param) { - case 1: - case 2: - this._terminal.setOption('cursorStyle', 'block'); - break; - case 3: - case 4: - this._terminal.setOption('cursorStyle', 'underline'); - break; - case 5: - case 6: - this._terminal.setOption('cursorStyle', 'bar'); - break; - } - var isBlinking = param % 2 === 1; - this._terminal.setOption('cursorBlink', isBlinking); - }; - InputHandler.prototype.setScrollRegion = function (params) { - if (this._terminal.prefix) - return; - this._terminal.scrollTop = (params[0] || 1) - 1; - this._terminal.scrollBottom = (params[1] && params[1] <= this._terminal.rows ? params[1] : this._terminal.rows) - 1; - this._terminal.x = 0; - this._terminal.y = 0; - }; - InputHandler.prototype.saveCursor = function (params) { - this._terminal.savedX = this._terminal.x; - this._terminal.savedY = this._terminal.y; - }; - InputHandler.prototype.restoreCursor = function (params) { - this._terminal.x = this._terminal.savedX || 0; - this._terminal.y = this._terminal.savedY || 0; - }; - return InputHandler; -}()); -exports.InputHandler = InputHandler; -var wcwidth = (function (opts) { - var COMBINING = [ - [0x0300, 0x036F], [0x0483, 0x0486], [0x0488, 0x0489], - [0x0591, 0x05BD], [0x05BF, 0x05BF], [0x05C1, 0x05C2], - [0x05C4, 0x05C5], [0x05C7, 0x05C7], [0x0600, 0x0603], - [0x0610, 0x0615], [0x064B, 0x065E], [0x0670, 0x0670], - [0x06D6, 0x06E4], [0x06E7, 0x06E8], [0x06EA, 0x06ED], - [0x070F, 0x070F], [0x0711, 0x0711], [0x0730, 0x074A], - [0x07A6, 0x07B0], [0x07EB, 0x07F3], [0x0901, 0x0902], - [0x093C, 0x093C], [0x0941, 0x0948], [0x094D, 0x094D], - [0x0951, 0x0954], [0x0962, 0x0963], [0x0981, 0x0981], - [0x09BC, 0x09BC], [0x09C1, 0x09C4], [0x09CD, 0x09CD], - [0x09E2, 0x09E3], [0x0A01, 0x0A02], [0x0A3C, 0x0A3C], - [0x0A41, 0x0A42], [0x0A47, 0x0A48], [0x0A4B, 0x0A4D], - [0x0A70, 0x0A71], [0x0A81, 0x0A82], [0x0ABC, 0x0ABC], - [0x0AC1, 0x0AC5], [0x0AC7, 0x0AC8], [0x0ACD, 0x0ACD], - [0x0AE2, 0x0AE3], [0x0B01, 0x0B01], [0x0B3C, 0x0B3C], - [0x0B3F, 0x0B3F], [0x0B41, 0x0B43], [0x0B4D, 0x0B4D], - [0x0B56, 0x0B56], [0x0B82, 0x0B82], [0x0BC0, 0x0BC0], - [0x0BCD, 0x0BCD], [0x0C3E, 0x0C40], [0x0C46, 0x0C48], - [0x0C4A, 0x0C4D], [0x0C55, 0x0C56], [0x0CBC, 0x0CBC], - [0x0CBF, 0x0CBF], [0x0CC6, 0x0CC6], [0x0CCC, 0x0CCD], - [0x0CE2, 0x0CE3], [0x0D41, 0x0D43], [0x0D4D, 0x0D4D], - [0x0DCA, 0x0DCA], [0x0DD2, 0x0DD4], [0x0DD6, 0x0DD6], - [0x0E31, 0x0E31], [0x0E34, 0x0E3A], [0x0E47, 0x0E4E], - [0x0EB1, 0x0EB1], [0x0EB4, 0x0EB9], [0x0EBB, 0x0EBC], - [0x0EC8, 0x0ECD], [0x0F18, 0x0F19], [0x0F35, 0x0F35], - [0x0F37, 0x0F37], [0x0F39, 0x0F39], [0x0F71, 0x0F7E], - [0x0F80, 0x0F84], [0x0F86, 0x0F87], [0x0F90, 0x0F97], - [0x0F99, 0x0FBC], [0x0FC6, 0x0FC6], [0x102D, 0x1030], - [0x1032, 0x1032], [0x1036, 0x1037], [0x1039, 0x1039], - [0x1058, 0x1059], [0x1160, 0x11FF], [0x135F, 0x135F], - [0x1712, 0x1714], [0x1732, 0x1734], [0x1752, 0x1753], - [0x1772, 0x1773], [0x17B4, 0x17B5], [0x17B7, 0x17BD], - [0x17C6, 0x17C6], [0x17C9, 0x17D3], [0x17DD, 0x17DD], - [0x180B, 0x180D], [0x18A9, 0x18A9], [0x1920, 0x1922], - [0x1927, 0x1928], [0x1932, 0x1932], [0x1939, 0x193B], - [0x1A17, 0x1A18], [0x1B00, 0x1B03], [0x1B34, 0x1B34], - [0x1B36, 0x1B3A], [0x1B3C, 0x1B3C], [0x1B42, 0x1B42], - [0x1B6B, 0x1B73], [0x1DC0, 0x1DCA], [0x1DFE, 0x1DFF], - [0x200B, 0x200F], [0x202A, 0x202E], [0x2060, 0x2063], - [0x206A, 0x206F], [0x20D0, 0x20EF], [0x302A, 0x302F], - [0x3099, 0x309A], [0xA806, 0xA806], [0xA80B, 0xA80B], - [0xA825, 0xA826], [0xFB1E, 0xFB1E], [0xFE00, 0xFE0F], - [0xFE20, 0xFE23], [0xFEFF, 0xFEFF], [0xFFF9, 0xFFFB], - [0x10A01, 0x10A03], [0x10A05, 0x10A06], [0x10A0C, 0x10A0F], - [0x10A38, 0x10A3A], [0x10A3F, 0x10A3F], [0x1D167, 0x1D169], - [0x1D173, 0x1D182], [0x1D185, 0x1D18B], [0x1D1AA, 0x1D1AD], - [0x1D242, 0x1D244], [0xE0001, 0xE0001], [0xE0020, 0xE007F], - [0xE0100, 0xE01EF] - ]; - function bisearch(ucs) { - var min = 0; - var max = COMBINING.length - 1; - var mid; - if (ucs < COMBINING[0][0] || ucs > COMBINING[max][1]) - return false; - while (max >= min) { - mid = Math.floor((min + max) / 2); - if (ucs > COMBINING[mid][1]) - min = mid + 1; - else if (ucs < COMBINING[mid][0]) - max = mid - 1; - else - return true; - } - return false; - } - function wcwidth(ucs) { - if (ucs === 0) - return opts.nul; - if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0)) - return opts.control; - if (bisearch(ucs)) - return 0; - if (isWide(ucs)) { - return 2; - } - return 1; - } - function isWide(ucs) { - return (ucs >= 0x1100 && (ucs <= 0x115f || - ucs === 0x2329 || - ucs === 0x232a || - (ucs >= 0x2e80 && ucs <= 0xa4cf && ucs !== 0x303f) || - (ucs >= 0xac00 && ucs <= 0xd7a3) || - (ucs >= 0xf900 && ucs <= 0xfaff) || - (ucs >= 0xfe10 && ucs <= 0xfe19) || - (ucs >= 0xfe30 && ucs <= 0xfe6f) || - (ucs >= 0xff00 && ucs <= 0xff60) || - (ucs >= 0xffe0 && ucs <= 0xffe6) || - (ucs >= 0x20000 && ucs <= 0x2fffd) || - (ucs >= 0x30000 && ucs <= 0x3fffd))); - } - return wcwidth; -})({ nul: 0, control: 0 }); - -//# sourceMappingURL=InputHandler.js.map - - -/***/ }), -/* 18 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var INVALID_LINK_CLASS = 'xterm-invalid-link'; -var protocolClause = '(https?:\\/\\/)'; -var domainCharacterSet = '[\\da-z\\.-]+'; -var negatedDomainCharacterSet = '[^\\da-z\\.-]+'; -var domainBodyClause = '(' + domainCharacterSet + ')'; -var tldClause = '([a-z\\.]{2,6})'; -var ipClause = '((\\d{1,3}\\.){3}\\d{1,3})'; -var localHostClause = '(localhost)'; -var portClause = '(:\\d{1,5})'; -var hostClause = '((' + domainBodyClause + '\\.' + tldClause + ')|' + ipClause + '|' + localHostClause + ')' + portClause + '?'; -var pathClause = '(\\/[\\/\\w\\.\\-%~]*)*'; -var queryStringHashFragmentCharacterSet = '[0-9\\w\\[\\]\\(\\)\\/\\?\\!#@$%&\'*+,:;~\\=\\.\\-]*'; -var queryStringClause = '(\\?' + queryStringHashFragmentCharacterSet + ')?'; -var hashFragmentClause = '(#' + queryStringHashFragmentCharacterSet + ')?'; -var negatedPathCharacterSet = '[^\\/\\w\\.\\-%]+'; -var bodyClause = hostClause + pathClause + queryStringClause + hashFragmentClause; -var start = '(?:^|' + negatedDomainCharacterSet + ')('; -var end = ')($|' + negatedPathCharacterSet + ')'; -var strictUrlRegex = new RegExp(start + protocolClause + bodyClause + end); -var HYPERTEXT_LINK_MATCHER_ID = 0; -var Linkifier = (function () { - function Linkifier() { - this._nextLinkMatcherId = HYPERTEXT_LINK_MATCHER_ID; - this._rowTimeoutIds = []; - this._linkMatchers = []; - this.registerLinkMatcher(strictUrlRegex, null, { matchIndex: 1 }); - } - Linkifier.prototype.attachToDom = function (document, rows) { - this._document = document; - this._rows = rows; - }; - Linkifier.prototype.linkifyRow = function (rowIndex) { - if (!this._document) { - return; - } - var timeoutId = this._rowTimeoutIds[rowIndex]; - if (timeoutId) { - clearTimeout(timeoutId); - } - this._rowTimeoutIds[rowIndex] = setTimeout(this._linkifyRow.bind(this, rowIndex), Linkifier.TIME_BEFORE_LINKIFY); - }; - Linkifier.prototype.setHypertextLinkHandler = function (handler) { - this._linkMatchers[HYPERTEXT_LINK_MATCHER_ID].handler = handler; - }; - Linkifier.prototype.setHypertextValidationCallback = function (callback) { - this._linkMatchers[HYPERTEXT_LINK_MATCHER_ID].validationCallback = callback; - }; - Linkifier.prototype.registerLinkMatcher = function (regex, handler, options) { - if (options === void 0) { options = {}; } - if (this._nextLinkMatcherId !== HYPERTEXT_LINK_MATCHER_ID && !handler) { - throw new Error('handler must be defined'); - } - var matcher = { - id: this._nextLinkMatcherId++, - regex: regex, - handler: handler, - matchIndex: options.matchIndex, - validationCallback: options.validationCallback, - priority: options.priority || 0 - }; - this._addLinkMatcherToList(matcher); - return matcher.id; - }; - Linkifier.prototype._addLinkMatcherToList = function (matcher) { - if (this._linkMatchers.length === 0) { - this._linkMatchers.push(matcher); - return; - } - for (var i = this._linkMatchers.length - 1; i >= 0; i--) { - if (matcher.priority <= this._linkMatchers[i].priority) { - this._linkMatchers.splice(i + 1, 0, matcher); - return; - } - } - this._linkMatchers.splice(0, 0, matcher); - }; - Linkifier.prototype.deregisterLinkMatcher = function (matcherId) { - for (var i = 1; i < this._linkMatchers.length; i++) { - if (this._linkMatchers[i].id === matcherId) { - this._linkMatchers.splice(i, 1); - return true; - } - } - return false; - }; - Linkifier.prototype._linkifyRow = function (rowIndex) { - var row = this._rows[rowIndex]; - if (!row) { - return; - } - var text = row.textContent; - for (var i = 0; i < this._linkMatchers.length; i++) { - var matcher = this._linkMatchers[i]; - var linkElements = this._doLinkifyRow(row, matcher); - if (linkElements.length > 0) { - if (matcher.validationCallback) { - var _loop_1 = function (j) { - var element = linkElements[j]; - matcher.validationCallback(element.textContent, element, function (isValid) { - if (!isValid) { - element.classList.add(INVALID_LINK_CLASS); - } - }); - }; - for (var j = 0; j < linkElements.length; j++) { - _loop_1(j); - } - } - return; - } - } - }; - Linkifier.prototype._doLinkifyRow = function (row, matcher) { - var result = []; - var isHttpLinkMatcher = matcher.id === HYPERTEXT_LINK_MATCHER_ID; - var nodes = row.childNodes; - var match = row.textContent.match(matcher.regex); - if (!match || match.length === 0) { - return result; - } - var uri = match[typeof matcher.matchIndex !== 'number' ? 0 : matcher.matchIndex]; - var rowStartIndex = match.index + uri.length; - for (var i = 0; i < nodes.length; i++) { - var node = nodes[i]; - var searchIndex = node.textContent.indexOf(uri); - if (searchIndex >= 0) { - var linkElement = this._createAnchorElement(uri, matcher.handler, isHttpLinkMatcher); - if (node.textContent.length === uri.length) { - if (node.nodeType === 3) { - this._replaceNode(node, linkElement); - } - else { - var element = node; - if (element.nodeName === 'A') { - return result; - } - element.innerHTML = ''; - element.appendChild(linkElement); - } - } - else if (node.childNodes.length > 1) { - for (var j = 0; j < node.childNodes.length; j++) { - var childNode = node.childNodes[j]; - var childSearchIndex = childNode.textContent.indexOf(uri); - if (childSearchIndex !== -1) { - this._replaceNodeSubstringWithNode(childNode, linkElement, uri, childSearchIndex); - break; - } - } - } - else { - var nodesAdded = this._replaceNodeSubstringWithNode(node, linkElement, uri, searchIndex); - i += nodesAdded; - } - result.push(linkElement); - match = row.textContent.substring(rowStartIndex).match(matcher.regex); - if (!match || match.length === 0) { - return result; - } - uri = match[typeof matcher.matchIndex !== 'number' ? 0 : matcher.matchIndex]; - rowStartIndex += match.index + uri.length; - } - } - return result; - }; - Linkifier.prototype._createAnchorElement = function (uri, handler, isHypertextLinkHandler) { - var element = this._document.createElement('a'); - element.textContent = uri; - element.draggable = false; - if (isHypertextLinkHandler) { - element.href = uri; - element.target = '_blank'; - element.addEventListener('click', function (event) { - if (handler) { - return handler(event, uri); - } - }); - } - else { - element.addEventListener('click', function (event) { - if (element.classList.contains(INVALID_LINK_CLASS)) { - return; - } - return handler(event, uri); - }); - } - return element; - }; - Linkifier.prototype._replaceNode = function (oldNode) { - var newNodes = []; - for (var _i = 1; _i < arguments.length; _i++) { - newNodes[_i - 1] = arguments[_i]; - } - var parent = oldNode.parentNode; - for (var i = 0; i < newNodes.length; i++) { - parent.insertBefore(newNodes[i], oldNode); - } - parent.removeChild(oldNode); - }; - Linkifier.prototype._replaceNodeSubstringWithNode = function (targetNode, newNode, substring, substringIndex) { - if (targetNode.childNodes.length === 1) { - targetNode = targetNode.childNodes[0]; - } - if (targetNode.nodeType !== 3) { - throw new Error('targetNode must be a text node or only contain a single text node'); - } - var fullText = targetNode.textContent; - if (substringIndex === 0) { - var rightText_1 = fullText.substring(substring.length); - var rightTextNode_1 = this._document.createTextNode(rightText_1); - this._replaceNode(targetNode, newNode, rightTextNode_1); - return 0; - } - if (substringIndex === targetNode.textContent.length - substring.length) { - var leftText_1 = fullText.substring(0, substringIndex); - var leftTextNode_1 = this._document.createTextNode(leftText_1); - this._replaceNode(targetNode, leftTextNode_1, newNode); - return 0; - } - var leftText = fullText.substring(0, substringIndex); - var leftTextNode = this._document.createTextNode(leftText); - var rightText = fullText.substring(substringIndex + substring.length); - var rightTextNode = this._document.createTextNode(rightText); - this._replaceNode(targetNode, leftTextNode, newNode, rightTextNode); - return 1; - }; - return Linkifier; -}()); -Linkifier.TIME_BEFORE_LINKIFY = 200; -exports.Linkifier = Linkifier; - -//# sourceMappingURL=Linkifier.js.map - - -/***/ }), -/* 19 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var EscapeSequences_1 = __webpack_require__(2); -var Charsets_1 = __webpack_require__(3); -var normalStateHandler = {}; -normalStateHandler[EscapeSequences_1.C0.BEL] = function (parser, handler) { return handler.bell(); }; -normalStateHandler[EscapeSequences_1.C0.LF] = function (parser, handler) { return handler.lineFeed(); }; -normalStateHandler[EscapeSequences_1.C0.VT] = normalStateHandler[EscapeSequences_1.C0.LF]; -normalStateHandler[EscapeSequences_1.C0.FF] = normalStateHandler[EscapeSequences_1.C0.LF]; -normalStateHandler[EscapeSequences_1.C0.CR] = function (parser, handler) { return handler.carriageReturn(); }; -normalStateHandler[EscapeSequences_1.C0.BS] = function (parser, handler) { return handler.backspace(); }; -normalStateHandler[EscapeSequences_1.C0.HT] = function (parser, handler) { return handler.tab(); }; -normalStateHandler[EscapeSequences_1.C0.SO] = function (parser, handler) { return handler.shiftOut(); }; -normalStateHandler[EscapeSequences_1.C0.SI] = function (parser, handler) { return handler.shiftIn(); }; -normalStateHandler[EscapeSequences_1.C0.ESC] = function (parser, handler) { return parser.setState(ParserState.ESCAPED); }; -var escapedStateHandler = {}; -escapedStateHandler['['] = function (parser, terminal) { - terminal.params = []; - terminal.currentParam = 0; - parser.setState(ParserState.CSI_PARAM); -}; -escapedStateHandler[']'] = function (parser, terminal) { - terminal.params = []; - terminal.currentParam = 0; - parser.setState(ParserState.OSC); -}; -escapedStateHandler['P'] = function (parser, terminal) { - terminal.params = []; - terminal.currentParam = 0; - parser.setState(ParserState.DCS); -}; -escapedStateHandler['_'] = function (parser, terminal) { - parser.setState(ParserState.IGNORE); -}; -escapedStateHandler['^'] = function (parser, terminal) { - parser.setState(ParserState.IGNORE); -}; -escapedStateHandler['c'] = function (parser, terminal) { - terminal.reset(); -}; -escapedStateHandler['E'] = function (parser, terminal) { - terminal.x = 0; - terminal.index(); - parser.setState(ParserState.NORMAL); -}; -escapedStateHandler['D'] = function (parser, terminal) { - terminal.index(); - parser.setState(ParserState.NORMAL); -}; -escapedStateHandler['M'] = function (parser, terminal) { - terminal.reverseIndex(); - parser.setState(ParserState.NORMAL); -}; -escapedStateHandler['%'] = function (parser, terminal) { - terminal.setgLevel(0); - terminal.setgCharset(0, Charsets_1.DEFAULT_CHARSET); - parser.setState(ParserState.NORMAL); - parser.skipNextChar(); -}; -escapedStateHandler[EscapeSequences_1.C0.CAN] = function (parser) { return parser.setState(ParserState.NORMAL); }; -var csiParamStateHandler = {}; -csiParamStateHandler['?'] = function (parser) { return parser.setPrefix('?'); }; -csiParamStateHandler['>'] = function (parser) { return parser.setPrefix('>'); }; -csiParamStateHandler['!'] = function (parser) { return parser.setPrefix('!'); }; -csiParamStateHandler['0'] = function (parser) { return parser.setParam(parser.getParam() * 10); }; -csiParamStateHandler['1'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 1); }; -csiParamStateHandler['2'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 2); }; -csiParamStateHandler['3'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 3); }; -csiParamStateHandler['4'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 4); }; -csiParamStateHandler['5'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 5); }; -csiParamStateHandler['6'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 6); }; -csiParamStateHandler['7'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 7); }; -csiParamStateHandler['8'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 8); }; -csiParamStateHandler['9'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 9); }; -csiParamStateHandler['$'] = function (parser) { return parser.setPostfix('$'); }; -csiParamStateHandler['"'] = function (parser) { return parser.setPostfix('"'); }; -csiParamStateHandler[' '] = function (parser) { return parser.setPostfix(' '); }; -csiParamStateHandler['\''] = function (parser) { return parser.setPostfix('\''); }; -csiParamStateHandler[';'] = function (parser) { return parser.finalizeParam(); }; -csiParamStateHandler[EscapeSequences_1.C0.CAN] = function (parser) { return parser.setState(ParserState.NORMAL); }; -var csiStateHandler = {}; -csiStateHandler['@'] = function (handler, params, prefix) { return handler.insertChars(params); }; -csiStateHandler['A'] = function (handler, params, prefix) { return handler.cursorUp(params); }; -csiStateHandler['B'] = function (handler, params, prefix) { return handler.cursorDown(params); }; -csiStateHandler['C'] = function (handler, params, prefix) { return handler.cursorForward(params); }; -csiStateHandler['D'] = function (handler, params, prefix) { return handler.cursorBackward(params); }; -csiStateHandler['E'] = function (handler, params, prefix) { return handler.cursorNextLine(params); }; -csiStateHandler['F'] = function (handler, params, prefix) { return handler.cursorPrecedingLine(params); }; -csiStateHandler['G'] = function (handler, params, prefix) { return handler.cursorCharAbsolute(params); }; -csiStateHandler['H'] = function (handler, params, prefix) { return handler.cursorPosition(params); }; -csiStateHandler['I'] = function (handler, params, prefix) { return handler.cursorForwardTab(params); }; -csiStateHandler['J'] = function (handler, params, prefix) { return handler.eraseInDisplay(params); }; -csiStateHandler['K'] = function (handler, params, prefix) { return handler.eraseInLine(params); }; -csiStateHandler['L'] = function (handler, params, prefix) { return handler.insertLines(params); }; -csiStateHandler['M'] = function (handler, params, prefix) { return handler.deleteLines(params); }; -csiStateHandler['P'] = function (handler, params, prefix) { return handler.deleteChars(params); }; -csiStateHandler['S'] = function (handler, params, prefix) { return handler.scrollUp(params); }; -csiStateHandler['T'] = function (handler, params, prefix) { - if (params.length < 2 && !prefix) { - handler.scrollDown(params); - } -}; -csiStateHandler['X'] = function (handler, params, prefix) { return handler.eraseChars(params); }; -csiStateHandler['Z'] = function (handler, params, prefix) { return handler.cursorBackwardTab(params); }; -csiStateHandler['`'] = function (handler, params, prefix) { return handler.charPosAbsolute(params); }; -csiStateHandler['a'] = function (handler, params, prefix) { return handler.HPositionRelative(params); }; -csiStateHandler['b'] = function (handler, params, prefix) { return handler.repeatPrecedingCharacter(params); }; -csiStateHandler['c'] = function (handler, params, prefix) { return handler.sendDeviceAttributes(params); }; -csiStateHandler['d'] = function (handler, params, prefix) { return handler.linePosAbsolute(params); }; -csiStateHandler['e'] = function (handler, params, prefix) { return handler.VPositionRelative(params); }; -csiStateHandler['f'] = function (handler, params, prefix) { return handler.HVPosition(params); }; -csiStateHandler['g'] = function (handler, params, prefix) { return handler.tabClear(params); }; -csiStateHandler['h'] = function (handler, params, prefix) { return handler.setMode(params); }; -csiStateHandler['l'] = function (handler, params, prefix) { return handler.resetMode(params); }; -csiStateHandler['m'] = function (handler, params, prefix) { return handler.charAttributes(params); }; -csiStateHandler['n'] = function (handler, params, prefix) { return handler.deviceStatus(params); }; -csiStateHandler['p'] = function (handler, params, prefix) { - switch (prefix) { - case '!': - handler.softReset(params); - break; - } -}; -csiStateHandler['q'] = function (handler, params, prefix, postfix) { - if (postfix === ' ') { - handler.setCursorStyle(params); - } -}; -csiStateHandler['r'] = function (handler, params) { return handler.setScrollRegion(params); }; -csiStateHandler['s'] = function (handler, params) { return handler.saveCursor(params); }; -csiStateHandler['u'] = function (handler, params) { return handler.restoreCursor(params); }; -csiStateHandler[EscapeSequences_1.C0.CAN] = function (handler, params, prefix, postfix, parser) { return parser.setState(ParserState.NORMAL); }; -var ParserState; -(function (ParserState) { - ParserState[ParserState["NORMAL"] = 0] = "NORMAL"; - ParserState[ParserState["ESCAPED"] = 1] = "ESCAPED"; - ParserState[ParserState["CSI_PARAM"] = 2] = "CSI_PARAM"; - ParserState[ParserState["CSI"] = 3] = "CSI"; - ParserState[ParserState["OSC"] = 4] = "OSC"; - ParserState[ParserState["CHARSET"] = 5] = "CHARSET"; - ParserState[ParserState["DCS"] = 6] = "DCS"; - ParserState[ParserState["IGNORE"] = 7] = "IGNORE"; -})(ParserState || (ParserState = {})); -var Parser = (function () { - function Parser(_inputHandler, _terminal) { - this._inputHandler = _inputHandler; - this._terminal = _terminal; - this._state = ParserState.NORMAL; - } - Parser.prototype.parse = function (data) { - var l = data.length, j, cs, ch, code, low; - this._position = 0; - if (this._terminal.surrogate_high) { - data = this._terminal.surrogate_high + data; - this._terminal.surrogate_high = ''; - } - for (; this._position < l; this._position++) { - ch = data[this._position]; - code = data.charCodeAt(this._position); - if (0xD800 <= code && code <= 0xDBFF) { - low = data.charCodeAt(this._position + 1); - if (isNaN(low)) { - this._terminal.surrogate_high = ch; - continue; - } - code = ((code - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000; - ch += data.charAt(this._position + 1); - } - if (0xDC00 <= code && code <= 0xDFFF) - continue; - switch (this._state) { - case ParserState.NORMAL: - if (ch in normalStateHandler) { - normalStateHandler[ch](this, this._inputHandler); - } - else { - this._inputHandler.addChar(ch, code); - } - break; - case ParserState.ESCAPED: - if (ch in escapedStateHandler) { - escapedStateHandler[ch](this, this._terminal); - break; - } - switch (ch) { - case '(': - case ')': - case '*': - case '+': - case '-': - case '.': - switch (ch) { - case '(': - this._terminal.gcharset = 0; - break; - case ')': - this._terminal.gcharset = 1; - break; - case '*': - this._terminal.gcharset = 2; - break; - case '+': - this._terminal.gcharset = 3; - break; - case '-': - this._terminal.gcharset = 1; - break; - case '.': - this._terminal.gcharset = 2; - break; - } - this._state = ParserState.CHARSET; - break; - case '/': - this._terminal.gcharset = 3; - this._state = ParserState.CHARSET; - this._position--; - break; - case 'N': - break; - case 'O': - break; - case 'n': - this._terminal.setgLevel(2); - break; - case 'o': - this._terminal.setgLevel(3); - break; - case '|': - this._terminal.setgLevel(3); - break; - case '}': - this._terminal.setgLevel(2); - break; - case '~': - this._terminal.setgLevel(1); - break; - case '7': - this._inputHandler.saveCursor(); - this._state = ParserState.NORMAL; - break; - case '8': - this._inputHandler.restoreCursor(); - this._state = ParserState.NORMAL; - break; - case '#': - this._state = ParserState.NORMAL; - this._position++; - break; - case 'H': - this._terminal.tabSet(); - this._state = ParserState.NORMAL; - break; - case '=': - this._terminal.log('Serial port requested application keypad.'); - this._terminal.applicationKeypad = true; - this._terminal.viewport.syncScrollArea(); - this._state = ParserState.NORMAL; - break; - case '>': - this._terminal.log('Switching back to normal keypad.'); - this._terminal.applicationKeypad = false; - this._terminal.viewport.syncScrollArea(); - this._state = ParserState.NORMAL; - break; - default: - this._state = ParserState.NORMAL; - this._terminal.error('Unknown ESC control: %s.', ch); - break; - } - break; - case ParserState.CHARSET: - if (ch in Charsets_1.CHARSETS) { - cs = Charsets_1.CHARSETS[ch]; - if (ch === '/') { - this.skipNextChar(); - } - } - else { - cs = Charsets_1.DEFAULT_CHARSET; - } - this._terminal.setgCharset(this._terminal.gcharset, cs); - this._terminal.gcharset = null; - this._state = ParserState.NORMAL; - break; - case ParserState.OSC: - if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) { - if (ch === EscapeSequences_1.C0.ESC) - this._position++; - this._terminal.params.push(this._terminal.currentParam); - switch (this._terminal.params[0]) { - case 0: - case 1: - case 2: - if (this._terminal.params[1]) { - this._terminal.title = this._terminal.params[1]; - this._terminal.handleTitle(this._terminal.title); - } - break; - case 3: - break; - case 4: - case 5: - break; - case 10: - case 11: - case 12: - case 13: - case 14: - case 15: - case 16: - case 17: - case 18: - case 19: - break; - case 46: - break; - case 50: - break; - case 51: - break; - case 52: - break; - case 104: - case 105: - case 110: - case 111: - case 112: - case 113: - case 114: - case 115: - case 116: - case 117: - case 118: - break; - } - this._terminal.params = []; - this._terminal.currentParam = 0; - this._state = ParserState.NORMAL; - } - else { - if (!this._terminal.params.length) { - if (ch >= '0' && ch <= '9') { - this._terminal.currentParam = - this._terminal.currentParam * 10 + ch.charCodeAt(0) - 48; - } - else if (ch === ';') { - this._terminal.params.push(this._terminal.currentParam); - this._terminal.currentParam = ''; - } - } - else { - this._terminal.currentParam += ch; - } - } - break; - case ParserState.CSI_PARAM: - if (ch in csiParamStateHandler) { - csiParamStateHandler[ch](this); - break; - } - this.finalizeParam(); - this._state = ParserState.CSI; - case ParserState.CSI: - if (ch in csiStateHandler) { - csiStateHandler[ch](this._inputHandler, this._terminal.params, this._terminal.prefix, this._terminal.postfix, this); - } - else { - this._terminal.error('Unknown CSI code: %s.', ch); - } - this._state = ParserState.NORMAL; - this._terminal.prefix = ''; - this._terminal.postfix = ''; - break; - case ParserState.DCS: - if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) { - if (ch === EscapeSequences_1.C0.ESC) - this._position++; - var pt = void 0; - var valid = void 0; - switch (this._terminal.prefix) { - case '': - break; - case '$q': - pt = this._terminal.currentParam; - valid = false; - switch (pt) { - case '"q': - pt = '0"q'; - break; - case '"p': - pt = '61"p'; - break; - case 'r': - pt = '' - + (this._terminal.scrollTop + 1) - + ';' - + (this._terminal.scrollBottom + 1) - + 'r'; - break; - case 'm': - pt = '0m'; - break; - default: - this._terminal.error('Unknown DCS Pt: %s.', pt); - pt = ''; - break; - } - this._terminal.send(EscapeSequences_1.C0.ESC + 'P' + +valid + '$r' + pt + EscapeSequences_1.C0.ESC + '\\'); - break; - case '+p': - break; - case '+q': - pt = this._terminal.currentParam; - valid = false; - this._terminal.send(EscapeSequences_1.C0.ESC + 'P' + +valid + '+r' + pt + EscapeSequences_1.C0.ESC + '\\'); - break; - default: - this._terminal.error('Unknown DCS prefix: %s.', this._terminal.prefix); - break; - } - this._terminal.currentParam = 0; - this._terminal.prefix = ''; - this._state = ParserState.NORMAL; - } - else if (!this._terminal.currentParam) { - if (!this._terminal.prefix && ch !== '$' && ch !== '+') { - this._terminal.currentParam = ch; - } - else if (this._terminal.prefix.length === 2) { - this._terminal.currentParam = ch; - } - else { - this._terminal.prefix += ch; - } - } - else { - this._terminal.currentParam += ch; - } - break; - case ParserState.IGNORE: - if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) { - if (ch === EscapeSequences_1.C0.ESC) - this._position++; - this._state = ParserState.NORMAL; - } - break; - } - } - return this._state; - }; - Parser.prototype.setState = function (state) { - this._state = state; - }; - Parser.prototype.setPrefix = function (prefix) { - this._terminal.prefix = prefix; - }; - Parser.prototype.setPostfix = function (postfix) { - this._terminal.postfix = postfix; - }; - Parser.prototype.setParam = function (param) { - this._terminal.currentParam = param; - }; - Parser.prototype.getParam = function () { - return this._terminal.currentParam; - }; - Parser.prototype.finalizeParam = function () { - this._terminal.params.push(this._terminal.currentParam); - this._terminal.currentParam = 0; - }; - Parser.prototype.skipNextChar = function () { - this._position++; - }; - return Parser; -}()); -exports.Parser = Parser; - -//# sourceMappingURL=Parser.js.map - - -/***/ }), -/* 20 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var DomElementObjectPool_1 = __webpack_require__(33); -var MAX_REFRESH_FRAME_SKIP = 5; -var FLAGS; -(function (FLAGS) { - FLAGS[FLAGS["BOLD"] = 1] = "BOLD"; - FLAGS[FLAGS["UNDERLINE"] = 2] = "UNDERLINE"; - FLAGS[FLAGS["BLINK"] = 4] = "BLINK"; - FLAGS[FLAGS["INVERSE"] = 8] = "INVERSE"; - FLAGS[FLAGS["INVISIBLE"] = 16] = "INVISIBLE"; -})(FLAGS || (FLAGS = {})); -; -var brokenBold = null; -var Renderer = (function () { - function Renderer(_terminal) { - this._terminal = _terminal; - this._refreshRowsQueue = []; - this._refreshFramesSkipped = 0; - this._refreshAnimationFrame = null; - this._spanElementObjectPool = new DomElementObjectPool_1.DomElementObjectPool('span'); - if (brokenBold === null) { - brokenBold = checkBoldBroken(this._terminal.element); - } - this._spanElementObjectPool = new DomElementObjectPool_1.DomElementObjectPool('span'); - } - Renderer.prototype.queueRefresh = function (start, end) { - this._refreshRowsQueue.push({ start: start, end: end }); - if (!this._refreshAnimationFrame) { - this._refreshAnimationFrame = window.requestAnimationFrame(this._refreshLoop.bind(this)); - } - }; - Renderer.prototype._refreshLoop = function () { - var skipFrame = this._terminal.writeBuffer.length > 0 && this._refreshFramesSkipped++ <= MAX_REFRESH_FRAME_SKIP; - if (skipFrame) { - this._refreshAnimationFrame = window.requestAnimationFrame(this._refreshLoop.bind(this)); - return; - } - this._refreshFramesSkipped = 0; - var start; - var end; - if (this._refreshRowsQueue.length > 4) { - start = 0; - end = this._terminal.rows - 1; - } - else { - start = this._refreshRowsQueue[0].start; - end = this._refreshRowsQueue[0].end; - for (var i = 1; i < this._refreshRowsQueue.length; i++) { - if (this._refreshRowsQueue[i].start < start) { - start = this._refreshRowsQueue[i].start; - } - if (this._refreshRowsQueue[i].end > end) { - end = this._refreshRowsQueue[i].end; - } - } - } - this._refreshRowsQueue = []; - this._refreshAnimationFrame = null; - this._refresh(start, end); - }; - Renderer.prototype._refresh = function (start, end) { - var parent; - if (end - start >= this._terminal.rows / 2) { - parent = this._terminal.element.parentNode; - if (parent) { - this._terminal.element.removeChild(this._terminal.rowContainer); - } - } - var width = this._terminal.cols; - var y = start; - if (end >= this._terminal.rows) { - this._terminal.log('`end` is too large. Most likely a bad CSR.'); - end = this._terminal.rows - 1; - } - for (; y <= end; y++) { - var row = y + this._terminal.ydisp; - var line = this._terminal.lines.get(row); - var x = void 0; - if (this._terminal.y === y - (this._terminal.ybase - this._terminal.ydisp) && - this._terminal.cursorState && - !this._terminal.cursorHidden) { - x = this._terminal.x; - } - else { - x = -1; - } - var attr = this._terminal.defAttr; - var documentFragment = document.createDocumentFragment(); - var innerHTML = ''; - var currentElement = void 0; - while (this._terminal.children[y].children.length) { - var child = this._terminal.children[y].children[0]; - this._terminal.children[y].removeChild(child); - this._spanElementObjectPool.release(child); - } - for (var i = 0; i < width; i++) { - var data = line[i][0]; - var ch = line[i][1]; - var ch_width = line[i][2]; - if (!ch_width) { - continue; - } - if (i === x) { - data = -1; - } - if (data !== attr) { - if (attr !== this._terminal.defAttr) { - if (innerHTML) { - currentElement.innerHTML = innerHTML; - innerHTML = ''; - } - documentFragment.appendChild(currentElement); - currentElement = null; - } - if (data !== this._terminal.defAttr) { - if (innerHTML && !currentElement) { - currentElement = this._spanElementObjectPool.acquire(); - } - if (currentElement) { - if (innerHTML) { - currentElement.innerHTML = innerHTML; - innerHTML = ''; - } - documentFragment.appendChild(currentElement); - } - currentElement = this._spanElementObjectPool.acquire(); - if (data === -1) { - currentElement.classList.add('reverse-video'); - currentElement.classList.add('terminal-cursor'); - } - else { - var bg = data & 0x1ff; - var fg = (data >> 9) & 0x1ff; - var flags = data >> 18; - if (flags & FLAGS.BOLD) { - if (!brokenBold) { - currentElement.classList.add('xterm-bold'); - } - if (fg < 8) { - fg += 8; - } - } - if (flags & FLAGS.UNDERLINE) { - currentElement.classList.add('xterm-underline'); - } - if (flags & FLAGS.BLINK) { - currentElement.classList.add('xterm-blink'); - } - if (flags & FLAGS.INVERSE) { - var temp = bg; - bg = fg; - fg = temp; - if ((flags & 1) && fg < 8) { - fg += 8; - } - } - if (flags & FLAGS.INVISIBLE) { - currentElement.classList.add('xterm-hidden'); - } - if (flags & FLAGS.INVERSE) { - if (bg === 257) { - bg = 15; - } - if (fg === 256) { - fg = 0; - } - } - if (bg < 256) { - currentElement.classList.add("xterm-bg-color-" + bg); - } - if (fg < 256) { - currentElement.classList.add("xterm-color-" + fg); - } - } - } - } - if (ch_width === 2) { - innerHTML += "" + ch + ""; - } - else if (ch.charCodeAt(0) > 255) { - innerHTML += "" + ch + ""; - } - else { - switch (ch) { - case '&': - innerHTML += '&'; - break; - case '<': - innerHTML += '<'; - break; - case '>': - innerHTML += '>'; - break; - default: - if (ch <= ' ') { - innerHTML += ' '; - } - else { - innerHTML += ch; - } - break; - } - } - attr = data; - } - if (innerHTML && !currentElement) { - currentElement = this._spanElementObjectPool.acquire(); - } - if (currentElement) { - if (innerHTML) { - currentElement.innerHTML = innerHTML; - innerHTML = ''; - } - documentFragment.appendChild(currentElement); - currentElement = null; - } - this._terminal.children[y].appendChild(documentFragment); - } - if (parent) { - this._terminal.element.appendChild(this._terminal.rowContainer); - } - this._terminal.emit('refresh', { element: this._terminal.element, start: start, end: end }); - }; - ; - Renderer.prototype.refreshSelection = function (start, end) { - while (this._terminal.selectionContainer.children.length) { - this._terminal.selectionContainer.removeChild(this._terminal.selectionContainer.children[0]); - } - if (!start || !end) { - return; - } - var viewportStartRow = start[1] - this._terminal.ydisp; - var viewportEndRow = end[1] - this._terminal.ydisp; - var viewportCappedStartRow = Math.max(viewportStartRow, 0); - var viewportCappedEndRow = Math.min(viewportEndRow, this._terminal.rows - 1); - if (viewportCappedStartRow >= this._terminal.rows || viewportCappedEndRow < 0) { - return; - } - var documentFragment = document.createDocumentFragment(); - var startCol = viewportStartRow === viewportCappedStartRow ? start[0] : 0; - var endCol = viewportCappedStartRow === viewportCappedEndRow ? end[0] : this._terminal.cols; - documentFragment.appendChild(this._createSelectionElement(viewportCappedStartRow, startCol, endCol)); - var middleRowsCount = viewportCappedEndRow - viewportCappedStartRow - 1; - documentFragment.appendChild(this._createSelectionElement(viewportCappedStartRow + 1, 0, this._terminal.cols, middleRowsCount)); - if (viewportCappedStartRow !== viewportCappedEndRow) { - var endCol_1 = viewportEndRow === viewportCappedEndRow ? end[0] : this._terminal.cols; - documentFragment.appendChild(this._createSelectionElement(viewportCappedEndRow, 0, endCol_1)); - } - this._terminal.selectionContainer.appendChild(documentFragment); - }; - Renderer.prototype._createSelectionElement = function (row, colStart, colEnd, rowCount) { - if (rowCount === void 0) { rowCount = 1; } - var element = document.createElement('div'); - element.style.height = rowCount * this._terminal.charMeasure.height + "px"; - element.style.top = row * this._terminal.charMeasure.height + "px"; - element.style.left = colStart * this._terminal.charMeasure.width + "px"; - element.style.width = this._terminal.charMeasure.width * (colEnd - colStart) + "px"; - return element; - }; - return Renderer; -}()); -exports.Renderer = Renderer; -function checkBoldBroken(terminal) { - var document = terminal.ownerDocument; - var el = document.createElement('span'); - el.innerHTML = 'hello world'; - terminal.appendChild(el); - var w1 = el.offsetWidth; - var h1 = el.offsetHeight; - el.style.fontWeight = 'bold'; - var w2 = el.offsetWidth; - var h2 = el.offsetHeight; - terminal.removeChild(el); - return w1 !== w2 || h1 !== h2; -} - -//# sourceMappingURL=Renderer.js.map - - -/***/ }), -/* 21 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __extends = (this && this.__extends) || (function () { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; - return function (d, b) { - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -Object.defineProperty(exports, "__esModule", { value: true }); -var Mouse = __webpack_require__(9); -var Browser = __webpack_require__(8); -var EventEmitter_1 = __webpack_require__(1); -var SelectionModel_1 = __webpack_require__(22); -var DRAG_SCROLL_MAX_THRESHOLD = 50; -var DRAG_SCROLL_MAX_SPEED = 15; -var DRAG_SCROLL_INTERVAL = 50; -var CLEAR_MOUSE_DOWN_TIME = 400; -var CLEAR_MOUSE_DISTANCE = 10; -var WORD_SEPARATORS = ' ()[]{}\'"'; -var LINE_DATA_CHAR_INDEX = 1; -var LINE_DATA_WIDTH_INDEX = 2; -var NON_BREAKING_SPACE_CHAR = String.fromCharCode(160); -var ALL_NON_BREAKING_SPACE_REGEX = new RegExp(NON_BREAKING_SPACE_CHAR, 'g'); -var SelectionMode; -(function (SelectionMode) { - SelectionMode[SelectionMode["NORMAL"] = 0] = "NORMAL"; - SelectionMode[SelectionMode["WORD"] = 1] = "WORD"; - SelectionMode[SelectionMode["LINE"] = 2] = "LINE"; -})(SelectionMode || (SelectionMode = {})); -var SelectionManager = (function (_super) { - __extends(SelectionManager, _super); - function SelectionManager(_terminal, _buffer, _rowContainer, _charMeasure) { - var _this = _super.call(this) || this; - _this._terminal = _terminal; - _this._buffer = _buffer; - _this._rowContainer = _rowContainer; - _this._charMeasure = _charMeasure; - _this._initListeners(); - _this.enable(); - _this._model = new SelectionModel_1.SelectionModel(_terminal); - _this._lastMouseDownTime = 0; - _this._activeSelectionMode = SelectionMode.NORMAL; - return _this; - } - SelectionManager.prototype._initListeners = function () { - var _this = this; - this._bufferTrimListener = function (amount) { return _this._onTrim(amount); }; - this._mouseMoveListener = function (event) { return _this._onMouseMove(event); }; - this._mouseDownListener = function (event) { return _this._onMouseDown(event); }; - this._mouseUpListener = function (event) { return _this._onMouseUp(event); }; - }; - SelectionManager.prototype.disable = function () { - this.clearSelection(); - this._buffer.off('trim', this._bufferTrimListener); - this._rowContainer.removeEventListener('mousedown', this._mouseDownListener); - }; - SelectionManager.prototype.enable = function () { - this._buffer.on('trim', this._bufferTrimListener); - this._rowContainer.addEventListener('mousedown', this._mouseDownListener); - }; - SelectionManager.prototype.setBuffer = function (buffer) { - this._buffer = buffer; - this.clearSelection(); - }; - Object.defineProperty(SelectionManager.prototype, "hasSelection", { - get: function () { - var start = this._model.finalSelectionStart; - var end = this._model.finalSelectionEnd; - if (!start || !end) { - return false; - } - return start[0] !== end[0] || start[1] !== end[1]; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(SelectionManager.prototype, "selectionText", { - get: function () { - var start = this._model.finalSelectionStart; - var end = this._model.finalSelectionEnd; - if (!start || !end) { - return ''; - } - var startRowEndCol = start[1] === end[1] ? end[0] : null; - var result = []; - result.push(this._translateBufferLineToString(this._buffer.get(start[1]), true, start[0], startRowEndCol)); - for (var i = start[1] + 1; i <= end[1] - 1; i++) { - var bufferLine = this._buffer.get(i); - var lineText = this._translateBufferLineToString(bufferLine, true); - if (bufferLine.isWrapped) { - result[result.length - 1] += lineText; - } - else { - result.push(lineText); - } - } - if (start[1] !== end[1]) { - var bufferLine = this._buffer.get(end[1]); - var lineText = this._translateBufferLineToString(bufferLine, true, 0, end[0]); - if (bufferLine.isWrapped) { - result[result.length - 1] += lineText; - } - else { - result.push(lineText); - } - } - var formattedResult = result.map(function (line) { - return line.replace(ALL_NON_BREAKING_SPACE_REGEX, ' '); - }).join(Browser.isMSWindows ? '\r\n' : '\n'); - return formattedResult; - }, - enumerable: true, - configurable: true - }); - SelectionManager.prototype.clearSelection = function () { - this._model.clearSelection(); - this._removeMouseDownListeners(); - this.refresh(); - }; - SelectionManager.prototype._translateBufferLineToString = function (line, trimRight, startCol, endCol) { - if (startCol === void 0) { startCol = 0; } - if (endCol === void 0) { endCol = null; } - var lineString = ''; - var widthAdjustedStartCol = startCol; - var widthAdjustedEndCol = endCol; - for (var i = 0; i < line.length; i++) { - var char = line[i]; - lineString += char[LINE_DATA_CHAR_INDEX]; - if (char[LINE_DATA_WIDTH_INDEX] === 0) { - if (startCol >= i) { - widthAdjustedStartCol--; - } - if (endCol >= i) { - widthAdjustedEndCol--; - } - } - } - var finalEndCol = widthAdjustedEndCol || line.length; - if (trimRight) { - var rightWhitespaceIndex = lineString.search(/\s+$/); - if (rightWhitespaceIndex !== -1) { - finalEndCol = Math.min(finalEndCol, rightWhitespaceIndex); - } - if (finalEndCol <= widthAdjustedStartCol) { - return ''; - } - } - return lineString.substring(widthAdjustedStartCol, finalEndCol); - }; - SelectionManager.prototype.refresh = function (isNewSelection) { - var _this = this; - if (!this._refreshAnimationFrame) { - this._refreshAnimationFrame = window.requestAnimationFrame(function () { return _this._refresh(); }); - } - if (Browser.isLinux && isNewSelection) { - var selectionText = this.selectionText; - if (selectionText.length) { - this.emit('newselection', this.selectionText); - } - } - }; - SelectionManager.prototype._refresh = function () { - this._refreshAnimationFrame = null; - this.emit('refresh', { start: this._model.finalSelectionStart, end: this._model.finalSelectionEnd }); - }; - SelectionManager.prototype.selectAll = function () { - this._model.isSelectAllActive = true; - this.refresh(); - }; - SelectionManager.prototype._onTrim = function (amount) { - var needsRefresh = this._model.onTrim(amount); - if (needsRefresh) { - this.refresh(); - } - }; - SelectionManager.prototype._getMouseBufferCoords = function (event) { - var coords = Mouse.getCoords(event, this._rowContainer, this._charMeasure, this._terminal.cols, this._terminal.rows, true); - coords[0]--; - coords[1]--; - coords[1] += this._terminal.ydisp; - return coords; - }; - SelectionManager.prototype._getMouseEventScrollAmount = function (event) { - var offset = Mouse.getCoordsRelativeToElement(event, this._rowContainer)[1]; - var terminalHeight = this._terminal.rows * this._charMeasure.height; - if (offset >= 0 && offset <= terminalHeight) { - return 0; - } - if (offset > terminalHeight) { - offset -= terminalHeight; - } - offset = Math.min(Math.max(offset, -DRAG_SCROLL_MAX_THRESHOLD), DRAG_SCROLL_MAX_THRESHOLD); - offset /= DRAG_SCROLL_MAX_THRESHOLD; - return (offset / Math.abs(offset)) + Math.round(offset * (DRAG_SCROLL_MAX_SPEED - 1)); - }; - SelectionManager.prototype._onMouseDown = function (event) { - if (event.button !== 0) { - return; - } - event.preventDefault(); - this._dragScrollAmount = 0; - this._setMouseClickCount(event); - if (event.shiftKey) { - this._onShiftClick(event); - } - else { - if (this._clickCount === 1) { - this._onSingleClick(event); - } - else if (this._clickCount === 2) { - this._onDoubleClick(event); - } - else if (this._clickCount === 3) { - this._onTripleClick(event); - } - } - this._addMouseDownListeners(); - this.refresh(true); - }; - SelectionManager.prototype._addMouseDownListeners = function () { - var _this = this; - this._rowContainer.ownerDocument.addEventListener('mousemove', this._mouseMoveListener); - this._rowContainer.ownerDocument.addEventListener('mouseup', this._mouseUpListener); - this._dragScrollIntervalTimer = setInterval(function () { return _this._dragScroll(); }, DRAG_SCROLL_INTERVAL); - }; - SelectionManager.prototype._removeMouseDownListeners = function () { - this._rowContainer.ownerDocument.removeEventListener('mousemove', this._mouseMoveListener); - this._rowContainer.ownerDocument.removeEventListener('mouseup', this._mouseUpListener); - clearInterval(this._dragScrollIntervalTimer); - this._dragScrollIntervalTimer = null; - }; - SelectionManager.prototype._onShiftClick = function (event) { - if (this._model.selectionStart) { - this._model.selectionEnd = this._getMouseBufferCoords(event); - } - }; - SelectionManager.prototype._onSingleClick = function (event) { - this._model.selectionStartLength = 0; - this._model.isSelectAllActive = false; - this._activeSelectionMode = SelectionMode.NORMAL; - this._model.selectionStart = this._getMouseBufferCoords(event); - if (this._model.selectionStart) { - this._model.selectionEnd = null; - var char = this._buffer.get(this._model.selectionStart[1])[this._model.selectionStart[0]]; - if (char[LINE_DATA_WIDTH_INDEX] === 0) { - this._model.selectionStart[0]++; - } - } - }; - SelectionManager.prototype._onDoubleClick = function (event) { - var coords = this._getMouseBufferCoords(event); - if (coords) { - this._activeSelectionMode = SelectionMode.WORD; - this._selectWordAt(coords); - } - }; - SelectionManager.prototype._onTripleClick = function (event) { - var coords = this._getMouseBufferCoords(event); - if (coords) { - this._activeSelectionMode = SelectionMode.LINE; - this._selectLineAt(coords[1]); - } - }; - SelectionManager.prototype._setMouseClickCount = function (event) { - var currentTime = (new Date()).getTime(); - if (currentTime - this._lastMouseDownTime > CLEAR_MOUSE_DOWN_TIME || this._distanceFromLastMousePosition(event) > CLEAR_MOUSE_DISTANCE) { - this._clickCount = 0; - } - this._lastMouseDownTime = currentTime; - this._lastMousePosition = [event.pageX, event.pageY]; - this._clickCount++; - }; - SelectionManager.prototype._distanceFromLastMousePosition = function (event) { - var result = Math.max(Math.abs(this._lastMousePosition[0] - event.pageX), Math.abs(this._lastMousePosition[1] - event.pageY)); - return result; - }; - SelectionManager.prototype._onMouseMove = function (event) { - var previousSelectionEnd = this._model.selectionEnd ? [this._model.selectionEnd[0], this._model.selectionEnd[1]] : null; - this._model.selectionEnd = this._getMouseBufferCoords(event); - if (this._activeSelectionMode === SelectionMode.LINE) { - if (this._model.selectionEnd[1] < this._model.selectionStart[1]) { - this._model.selectionEnd[0] = 0; - } - else { - this._model.selectionEnd[0] = this._terminal.cols; - } - } - else if (this._activeSelectionMode === SelectionMode.WORD) { - this._selectToWordAt(this._model.selectionEnd); - } - this._dragScrollAmount = this._getMouseEventScrollAmount(event); - if (this._dragScrollAmount > 0) { - this._model.selectionEnd[0] = this._terminal.cols - 1; - } - else if (this._dragScrollAmount < 0) { - this._model.selectionEnd[0] = 0; - } - if (this._model.selectionEnd[1] < this._buffer.length) { - var char = this._buffer.get(this._model.selectionEnd[1])[this._model.selectionEnd[0]]; - if (char && char[2] === 0) { - this._model.selectionEnd[0]++; - } - } - if (!previousSelectionEnd || - previousSelectionEnd[0] !== this._model.selectionEnd[0] || - previousSelectionEnd[1] !== this._model.selectionEnd[1]) { - this.refresh(true); - } - }; - SelectionManager.prototype._dragScroll = function () { - if (this._dragScrollAmount) { - this._terminal.scrollDisp(this._dragScrollAmount, false); - if (this._dragScrollAmount > 0) { - this._model.selectionEnd = [this._terminal.cols - 1, this._terminal.ydisp + this._terminal.rows]; - } - else { - this._model.selectionEnd = [0, this._terminal.ydisp]; - } - this.refresh(); - } - }; - SelectionManager.prototype._onMouseUp = function (event) { - this._removeMouseDownListeners(); - }; - SelectionManager.prototype._convertViewportColToCharacterIndex = function (bufferLine, coords) { - var charIndex = coords[0]; - for (var i = 0; coords[0] >= i; i++) { - var char = bufferLine[i]; - if (char[LINE_DATA_WIDTH_INDEX] === 0) { - charIndex--; - } - } - return charIndex; - }; - SelectionManager.prototype._getWordAt = function (coords) { - var bufferLine = this._buffer.get(coords[1]); - var line = this._translateBufferLineToString(bufferLine, false); - var endIndex = this._convertViewportColToCharacterIndex(bufferLine, coords); - var startIndex = endIndex; - var charOffset = coords[0] - startIndex; - var leftWideCharCount = 0; - var rightWideCharCount = 0; - if (line.charAt(startIndex) === ' ') { - while (startIndex > 0 && line.charAt(startIndex - 1) === ' ') { - startIndex--; - } - while (endIndex < line.length && line.charAt(endIndex + 1) === ' ') { - endIndex++; - } - } - else { - var startCol = coords[0]; - var endCol = coords[0]; - if (bufferLine[startCol][LINE_DATA_WIDTH_INDEX] === 0) { - leftWideCharCount++; - startCol--; - } - if (bufferLine[endCol][LINE_DATA_WIDTH_INDEX] === 2) { - rightWideCharCount++; - endCol++; - } - while (startIndex > 0 && !this._isCharWordSeparator(line.charAt(startIndex - 1))) { - if (bufferLine[startCol - 1][LINE_DATA_WIDTH_INDEX] === 0) { - leftWideCharCount++; - startCol--; - } - startIndex--; - startCol--; - } - while (endIndex + 1 < line.length && !this._isCharWordSeparator(line.charAt(endIndex + 1))) { - if (bufferLine[endCol + 1][LINE_DATA_WIDTH_INDEX] === 2) { - rightWideCharCount++; - endCol++; - } - endIndex++; - endCol++; - } - } - var start = startIndex + charOffset - leftWideCharCount; - var length = Math.min(endIndex - startIndex + leftWideCharCount + rightWideCharCount + 1, this._terminal.cols); - return { start: start, length: length }; - }; - SelectionManager.prototype._selectWordAt = function (coords) { - var wordPosition = this._getWordAt(coords); - this._model.selectionStart = [wordPosition.start, coords[1]]; - this._model.selectionStartLength = wordPosition.length; - }; - SelectionManager.prototype._selectToWordAt = function (coords) { - var wordPosition = this._getWordAt(coords); - this._model.selectionEnd = [this._model.areSelectionValuesReversed() ? wordPosition.start : (wordPosition.start + wordPosition.length), coords[1]]; - }; - SelectionManager.prototype._isCharWordSeparator = function (char) { - return WORD_SEPARATORS.indexOf(char) >= 0; - }; - SelectionManager.prototype._selectLineAt = function (line) { - this._model.selectionStart = [0, line]; - this._model.selectionStartLength = this._terminal.cols; - }; - return SelectionManager; -}(EventEmitter_1.EventEmitter)); -exports.SelectionManager = SelectionManager; - -//# sourceMappingURL=SelectionManager.js.map - - -/***/ }), -/* 22 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var SelectionModel = (function () { - function SelectionModel(_terminal) { - this._terminal = _terminal; - this.clearSelection(); - } - SelectionModel.prototype.clearSelection = function () { - this.selectionStart = null; - this.selectionEnd = null; - this.isSelectAllActive = false; - this.selectionStartLength = 0; - }; - Object.defineProperty(SelectionModel.prototype, "finalSelectionStart", { - get: function () { - if (this.isSelectAllActive) { - return [0, 0]; - } - if (!this.selectionEnd || !this.selectionStart) { - return this.selectionStart; - } - return this.areSelectionValuesReversed() ? this.selectionEnd : this.selectionStart; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(SelectionModel.prototype, "finalSelectionEnd", { - get: function () { - if (this.isSelectAllActive) { - return [this._terminal.cols, this._terminal.ybase + this._terminal.rows - 1]; - } - if (!this.selectionStart) { - return null; - } - if (!this.selectionEnd || this.areSelectionValuesReversed()) { - return [this.selectionStart[0] + this.selectionStartLength, this.selectionStart[1]]; - } - if (this.selectionStartLength) { - if (this.selectionEnd[1] === this.selectionStart[1]) { - return [Math.max(this.selectionStart[0] + this.selectionStartLength, this.selectionEnd[0]), this.selectionEnd[1]]; - } - } - return this.selectionEnd; - }, - enumerable: true, - configurable: true - }); - SelectionModel.prototype.areSelectionValuesReversed = function () { - var start = this.selectionStart; - var end = this.selectionEnd; - return start[1] > end[1] || (start[1] === end[1] && start[0] > end[0]); - }; - SelectionModel.prototype.onTrim = function (amount) { - if (this.selectionStart) { - this.selectionStart[1] -= amount; - } - if (this.selectionEnd) { - this.selectionEnd[1] -= amount; - } - if (this.selectionEnd && this.selectionEnd[1] < 0) { - this.clearSelection(); - return true; - } - if (this.selectionStart && this.selectionStart[1] < 0) { - this.selectionStart[1] = 0; - } - return false; - }; - return SelectionModel; -}()); -exports.SelectionModel = SelectionModel; - -//# sourceMappingURL=SelectionModel.js.map - - -/***/ }), -/* 23 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var Viewport = (function () { - function Viewport(terminal, viewportElement, scrollArea, charMeasure) { - var _this = this; - this.terminal = terminal; - this.viewportElement = viewportElement; - this.scrollArea = scrollArea; - this.charMeasure = charMeasure; - this.currentRowHeight = 0; - this.lastRecordedBufferLength = 0; - this.lastRecordedViewportHeight = 0; - this.terminal.on('scroll', this.syncScrollArea.bind(this)); - this.terminal.on('resize', this.syncScrollArea.bind(this)); - this.viewportElement.addEventListener('scroll', this.onScroll.bind(this)); - setTimeout(function () { return _this.syncScrollArea(); }, 0); - } - Viewport.prototype.refresh = function () { - if (this.charMeasure.height > 0) { - var rowHeightChanged = this.charMeasure.height !== this.currentRowHeight; - if (rowHeightChanged) { - this.currentRowHeight = this.charMeasure.height; - this.viewportElement.style.lineHeight = this.charMeasure.height + 'px'; - this.terminal.rowContainer.style.lineHeight = this.charMeasure.height + 'px'; - } - var viewportHeightChanged = this.lastRecordedViewportHeight !== this.terminal.rows; - if (rowHeightChanged || viewportHeightChanged) { - this.lastRecordedViewportHeight = this.terminal.rows; - this.viewportElement.style.height = this.charMeasure.height * this.terminal.rows + 'px'; - this.terminal.selectionContainer.style.height = this.viewportElement.style.height; - } - this.scrollArea.style.height = (this.charMeasure.height * this.lastRecordedBufferLength) + 'px'; - } - }; - Viewport.prototype.syncScrollArea = function () { - if (this.lastRecordedBufferLength !== this.terminal.lines.length) { - this.lastRecordedBufferLength = this.terminal.lines.length; - this.refresh(); - } - else if (this.lastRecordedViewportHeight !== this.terminal.rows) { - this.refresh(); - } - else { - if (this.charMeasure.height !== this.currentRowHeight) { - this.refresh(); - } - } - var scrollTop = this.terminal.ydisp * this.currentRowHeight; - if (this.viewportElement.scrollTop !== scrollTop) { - this.viewportElement.scrollTop = scrollTop; - } - }; - Viewport.prototype.onScroll = function (ev) { - var newRow = Math.round(this.viewportElement.scrollTop / this.currentRowHeight); - var diff = newRow - this.terminal.ydisp; - this.terminal.scrollDisp(diff, true); - }; - Viewport.prototype.onWheel = function (ev) { - if (ev.deltaY === 0) { - return; - } - var multiplier = 1; - if (ev.deltaMode === WheelEvent.DOM_DELTA_LINE) { - multiplier = this.currentRowHeight; - } - else if (ev.deltaMode === WheelEvent.DOM_DELTA_PAGE) { - multiplier = this.currentRowHeight * this.terminal.rows; - } - this.viewportElement.scrollTop += ev.deltaY * multiplier; - ev.preventDefault(); - }; - ; - Viewport.prototype.onTouchStart = function (ev) { - this.lastTouchY = ev.touches[0].pageY; - }; - ; - Viewport.prototype.onTouchMove = function (ev) { - var deltaY = this.lastTouchY - ev.touches[0].pageY; - this.lastTouchY = ev.touches[0].pageY; - if (deltaY === 0) { - return; - } - this.viewportElement.scrollTop += deltaY; - ev.preventDefault(); - }; - ; - return Viewport; -}()); -exports.Viewport = Viewport; - -//# sourceMappingURL=Viewport.js.map - - -/***/ }), -/* 24 */ -/***/ (function(module, exports, __webpack_require__) { - -var map = { - "./attach/attach": 4, - "./attach/attach.js": 4, - "./attach/package.json": 25, - "./fit/fit": 5, - "./fit/fit.js": 5, - "./fit/package.json": 26, - "./fullscreen/fullscreen": 6, - "./fullscreen/fullscreen.css": 27, - "./fullscreen/fullscreen.js": 6, - "./fullscreen/package.json": 28, - "./terminado/package.json": 29, - "./terminado/terminado": 7, - "./terminado/terminado.js": 7 -}; -function webpackContext(req) { - return __webpack_require__(webpackContextResolve(req)); -}; -function webpackContextResolve(req) { - var id = map[req]; - if(!(id + 1)) // check for number or string - throw new Error("Cannot find module '" + req + "'."); - return id; -}; -webpackContext.keys = function webpackContextKeys() { - return Object.keys(map); -}; -webpackContext.resolve = webpackContextResolve; -module.exports = webpackContext; -webpackContext.id = 24; - -/***/ }), -/* 25 */ -/***/ (function(module, exports) { - -module.exports = {"name":"xterm.attach","main":"attach.js","private":true} - -/***/ }), -/* 26 */ -/***/ (function(module, exports) { - -module.exports = {"name":"xterm.fit","main":"fit.js","private":true} - -/***/ }), -/* 27 */ -/***/ (function(module, exports) { - -throw new Error("Module parse failed: /home/yudai/archive/products/2015/gotty/src/github.com/yudai/gotty/js/node_modules/xterm/lib/addons/fullscreen/fullscreen.css Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n| .xterm.fullscreen {\n| position: fixed;\n| top: 0;"); - -/***/ }), -/* 28 */ -/***/ (function(module, exports) { - -module.exports = {"name":"xterm.fullscreen","main":"fullscreen.js","private":true} - -/***/ }), -/* 29 */ -/***/ (function(module, exports) { - -module.exports = {"name":"xterm.terminado","main":"terminado.js","private":true} - -/***/ }), -/* 30 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -function prepareTextForTerminal(text, isMSWindows) { - if (isMSWindows) { - return text.replace(/\r?\n/g, '\r'); - } - return text; -} -exports.prepareTextForTerminal = prepareTextForTerminal; -function copyHandler(ev, term, selectionManager) { - if (term.browser.isMSIE) { - window.clipboardData.setData('Text', selectionManager.selectionText); - } - else { - ev.clipboardData.setData('text/plain', selectionManager.selectionText); - } - ev.preventDefault(); -} -exports.copyHandler = copyHandler; -function pasteHandler(ev, term) { - ev.stopPropagation(); - var text; - var dispatchPaste = function (text) { - text = prepareTextForTerminal(text, term.browser.isMSWindows); - term.handler(text); - term.textarea.value = ''; - term.emit('paste', text); - return term.cancel(ev); - }; - if (term.browser.isMSIE) { - if (window.clipboardData) { - text = window.clipboardData.getData('Text'); - dispatchPaste(text); - } - } - else { - if (ev.clipboardData) { - text = ev.clipboardData.getData('text/plain'); - dispatchPaste(text); - } - } -} -exports.pasteHandler = pasteHandler; -function moveTextAreaUnderMouseCursor(ev, textarea) { - textarea.style.position = 'fixed'; - textarea.style.width = '20px'; - textarea.style.height = '20px'; - textarea.style.left = (ev.clientX - 10) + 'px'; - textarea.style.top = (ev.clientY - 10) + 'px'; - textarea.style.zIndex = '1000'; - textarea.focus(); - setTimeout(function () { - textarea.style.position = null; - textarea.style.width = null; - textarea.style.height = null; - textarea.style.left = null; - textarea.style.top = null; - textarea.style.zIndex = null; - }, 4); -} -exports.moveTextAreaUnderMouseCursor = moveTextAreaUnderMouseCursor; -function rightClickHandler(ev, textarea, selectionManager) { - moveTextAreaUnderMouseCursor(ev, textarea); - textarea.value = selectionManager.selectionText; - textarea.select(); -} -exports.rightClickHandler = rightClickHandler; - -//# sourceMappingURL=Clipboard.js.map - - -/***/ }), -/* 31 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __extends = (this && this.__extends) || (function () { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; - return function (d, b) { - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -Object.defineProperty(exports, "__esModule", { value: true }); -var EventEmitter_js_1 = __webpack_require__(1); -var CharMeasure = (function (_super) { - __extends(CharMeasure, _super); - function CharMeasure(document, parentElement) { - var _this = _super.call(this) || this; - _this._document = document; - _this._parentElement = parentElement; - return _this; - } - Object.defineProperty(CharMeasure.prototype, "width", { - get: function () { - return this._width; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CharMeasure.prototype, "height", { - get: function () { - return this._height; - }, - enumerable: true, - configurable: true - }); - CharMeasure.prototype.measure = function () { - var _this = this; - if (!this._measureElement) { - this._measureElement = this._document.createElement('span'); - this._measureElement.style.position = 'absolute'; - this._measureElement.style.top = '0'; - this._measureElement.style.left = '-9999em'; - this._measureElement.textContent = 'W'; - this._measureElement.setAttribute('aria-hidden', 'true'); - this._parentElement.appendChild(this._measureElement); - setTimeout(function () { return _this._doMeasure(); }, 0); - } - else { - this._doMeasure(); - } - }; - CharMeasure.prototype._doMeasure = function () { - var geometry = this._measureElement.getBoundingClientRect(); - if (geometry.width === 0 || geometry.height === 0) { - return; - } - if (this._width !== geometry.width || this._height !== geometry.height) { - this._width = geometry.width; - this._height = geometry.height; - this.emit('charsizechanged'); - } - }; - return CharMeasure; -}(EventEmitter_js_1.EventEmitter)); -exports.CharMeasure = CharMeasure; - -//# sourceMappingURL=CharMeasure.js.map - - -/***/ }), -/* 32 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __extends = (this && this.__extends) || (function () { - var extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; - return function (d, b) { - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -Object.defineProperty(exports, "__esModule", { value: true }); -var EventEmitter_1 = __webpack_require__(1); -var CircularList = (function (_super) { - __extends(CircularList, _super); - function CircularList(maxLength) { - var _this = _super.call(this) || this; - _this._array = new Array(maxLength); - _this._startIndex = 0; - _this._length = 0; - return _this; - } - Object.defineProperty(CircularList.prototype, "maxLength", { - get: function () { - return this._array.length; - }, - set: function (newMaxLength) { - var newArray = new Array(newMaxLength); - for (var i = 0; i < Math.min(newMaxLength, this.length); i++) { - newArray[i] = this._array[this._getCyclicIndex(i)]; - } - this._array = newArray; - this._startIndex = 0; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CircularList.prototype, "length", { - get: function () { - return this._length; - }, - set: function (newLength) { - if (newLength > this._length) { - for (var i = this._length; i < newLength; i++) { - this._array[i] = undefined; - } - } - this._length = newLength; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CircularList.prototype, "forEach", { - get: function () { - var _this = this; - return function (callbackfn) { - var i = 0; - var length = _this.length; - for (var i_1 = 0; i_1 < length; i_1++) { - callbackfn(_this.get(i_1), i_1); - } - }; - }, - enumerable: true, - configurable: true - }); - CircularList.prototype.get = function (index) { - return this._array[this._getCyclicIndex(index)]; - }; - CircularList.prototype.set = function (index, value) { - this._array[this._getCyclicIndex(index)] = value; - }; - CircularList.prototype.push = function (value) { - this._array[this._getCyclicIndex(this._length)] = value; - if (this._length === this.maxLength) { - this._startIndex++; - if (this._startIndex === this.maxLength) { - this._startIndex = 0; - } - this.emit('trim', 1); - } - else { - this._length++; - } - }; - CircularList.prototype.pop = function () { - return this._array[this._getCyclicIndex(this._length-- - 1)]; - }; - CircularList.prototype.splice = function (start, deleteCount) { - var items = []; - for (var _i = 2; _i < arguments.length; _i++) { - items[_i - 2] = arguments[_i]; - } - if (deleteCount) { - for (var i = start; i < this._length - deleteCount; i++) { - this._array[this._getCyclicIndex(i)] = this._array[this._getCyclicIndex(i + deleteCount)]; - } - this._length -= deleteCount; - } - if (items && items.length) { - for (var i = this._length - 1; i >= start; i--) { - this._array[this._getCyclicIndex(i + items.length)] = this._array[this._getCyclicIndex(i)]; - } - for (var i = 0; i < items.length; i++) { - this._array[this._getCyclicIndex(start + i)] = items[i]; - } - if (this._length + items.length > this.maxLength) { - var countToTrim = (this._length + items.length) - this.maxLength; - this._startIndex += countToTrim; - this._length = this.maxLength; - this.emit('trim', countToTrim); - } - else { - this._length += items.length; - } - } - }; - CircularList.prototype.trimStart = function (count) { - if (count > this._length) { - count = this._length; - } - this._startIndex += count; - this._length -= count; - this.emit('trim', count); - }; - CircularList.prototype.shiftElements = function (start, count, offset) { - if (count <= 0) { - return; - } - if (start < 0 || start >= this._length) { - throw new Error('start argument out of range'); - } - if (start + offset < 0) { - throw new Error('Cannot shift elements in list beyond index 0'); - } - if (offset > 0) { - for (var i = count - 1; i >= 0; i--) { - this.set(start + i + offset, this.get(start + i)); - } - var expandListBy = (start + count + offset) - this._length; - if (expandListBy > 0) { - this._length += expandListBy; - while (this._length > this.maxLength) { - this._length--; - this._startIndex++; - this.emit('trim', 1); - } - } - } - else { - for (var i = 0; i < count; i++) { - this.set(start + i + offset, this.get(start + i)); - } - } - }; - CircularList.prototype._getCyclicIndex = function (index) { - return (this._startIndex + index) % this.maxLength; - }; - return CircularList; -}(EventEmitter_1.EventEmitter)); -exports.CircularList = CircularList; - -//# sourceMappingURL=CircularList.js.map - - -/***/ }), -/* 33 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var DomElementObjectPool = (function () { - function DomElementObjectPool(type) { - this.type = type; - this._type = type; - this._pool = []; - this._inUse = {}; - } - DomElementObjectPool.prototype.acquire = function () { - var element; - if (this._pool.length === 0) { - element = this._createNew(); - } - else { - element = this._pool.pop(); - } - this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)] = element; - return element; - }; - DomElementObjectPool.prototype.release = function (element) { - if (!this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)]) { - throw new Error('Could not release an element not yet acquired'); - } - delete this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)]; - this._cleanElement(element); - this._pool.push(element); - }; - DomElementObjectPool.prototype._createNew = function () { - var element = document.createElement(this._type); - var id = DomElementObjectPool._objectCount++; - element.setAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE, id.toString(10)); - return element; - }; - DomElementObjectPool.prototype._cleanElement = function (element) { - element.className = ''; - element.innerHTML = ''; - }; - return DomElementObjectPool; -}()); -DomElementObjectPool.OBJECT_ID_ATTRIBUTE = 'data-obj-id'; -DomElementObjectPool._objectCount = 0; -exports.DomElementObjectPool = DomElementObjectPool; - -//# sourceMappingURL=DomElementObjectPool.js.map - - -/***/ }), -/* 34 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -function contains(arr, el) { - return arr.indexOf(el) >= 0; -} -exports.contains = contains; -; - -//# sourceMappingURL=Generic.js.map - - -/***/ }) -/******/ ]); -//# sourceMappingURL=gotty-bundle.js.map \ No newline at end of file +!function(t){e.exports=t(r(0))}(function(e){"use strict";var t={};return t.terminadoAttach=function(e,t,r,i){r=void 0===r||r,e.socket=t,e._flushBuffer=function(){e.write(e._attachSocketBuffer),e._attachSocketBuffer=null,clearTimeout(e._attachSocketBufferTimer),e._attachSocketBufferTimer=null},e._pushToBuffer=function(t){e._attachSocketBuffer?e._attachSocketBuffer+=t:(e._attachSocketBuffer=t,setTimeout(e._flushBuffer,10))},e._getMessage=function(t){var r=JSON.parse(t.data);"stdout"==r[0]&&(i?e._pushToBuffer(r[1]):e.write(r[1]))},e._sendData=function(e){t.send(JSON.stringify(["stdin",e]))},e._setSize=function(e){t.send(JSON.stringify(["set_size",e.rows,e.cols]))},t.addEventListener("message",e._getMessage),r&&e.on("data",e._sendData),e.on("resize",e._setSize),t.addEventListener("close",e.terminadoDetach.bind(e,t)),t.addEventListener("error",e.terminadoDetach.bind(e,t))},t.terminadoDetach=function(e,t){e.off("data",e._sendData),(t=void 0===t?e.socket:t)&&t.removeEventListener("message",e._getMessage),delete e.socket},e.prototype.terminadoAttach=function(e,r,i){return t.terminadoAttach(this,e,r,i)},e.prototype.terminadoDetach=function(e){return t.terminadoDetach(this,e)},t})},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(34),o="undefined"==typeof navigator,s=o?"node":navigator.userAgent,n=o?"node":navigator.platform;t.isFirefox=!!~s.indexOf("Firefox"),t.isMSIE=!!~s.indexOf("MSIE")||!!~s.indexOf("Trident"),t.isMac=i.contains(["Macintosh","MacIntel","MacPPC","Mac68K"],n),t.isIpad="iPad"===n,t.isIphone="iPhone"===n,t.isMSWindows=i.contains(["Windows","Win16","Win32","WinCE"],n),t.isLinux=n.indexOf("Linux")>=0},function(e,t,r){"use strict";function i(e,t){if(null==e.pageX)return null;for(var r=e.pageX,i=e.pageY;t&&t!==self.document.documentElement;)r-=t.offsetLeft,i-=t.offsetTop,t="offsetParent"in t?t.offsetParent:t.parentElement;return[r,i]}function o(e,t,r,o,s,n){var a=i(e,t);return a[0]=Math.ceil((a[0]+(n?r.width/2:0))/r.width),a[1]=Math.ceil(a[1]/r.height),a[0]=Math.min(Math.max(a[0],1),o+1),a[1]=Math.min(Math.max(a[1],1),s+1),a}Object.defineProperty(t,"__esModule",{value:!0}),t.getCoordsRelativeToElement=i,t.getCoords=o,t.getRawByteCoords=function(e,t,r,i,s){var n=o(e,t,r,i,s),a=n[0],l=n[1];return a+=32,l+=32,{x:a,y:l}}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(14),o=function(){function e(e){this.elem=e,i.hterm.defaultStorage=new i.lib.Storage.Memory,this.term=new i.hterm.Terminal,this.term.getPrefs().set("send-encoding","raw"),this.term.decorate(this.elem),this.io=this.term.io.push(),this.term.installKeyboard()}return e.prototype.info=function(){return{columns:this.columns,rows:this.rows}},e.prototype.output=function(e){null!=this.term.io&&this.term.io.writeUTF16(e)},e.prototype.showMessage=function(e,t){this.message=e,t>0?this.term.io.showOverlay(e,t):this.term.io.showOverlay(e,null)},e.prototype.removeMessage=function(){this.term.io.showOverlay(this.message,0)},e.prototype.setWindowTitle=function(e){this.term.setWindowTitle(e)},e.prototype.setPreferences=function(e){var t=this;Object.keys(e).forEach(function(r){t.term.getPrefs().set(r,e[r])})},e.prototype.onInput=function(e){this.io.onVTKeystroke=function(t){e(t)},this.io.sendString=function(t){e(t)}},e.prototype.onResize=function(e){var t=this;this.io.onTerminalResize=function(r,i){t.columns=r,t.rows=i,e(r,i)}},e.prototype.deactivate=function(){this.io.onVTKeystroke=null,this.io.sendString=null,this.io.onTerminalResize=null,this.term.uninstallKeyboard()},e.prototype.reset=function(){this.removeMessage(),this.term.installKeyboard()},e.prototype.close=function(){this.term.uninstallKeyboard()},e}();t.Hterm=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){this.url=e,this.protocols=t}return e.prototype.create=function(){return new o(this.url,this.protocols)},e}();t.ConnectionFactory=i;var o=function(){function e(e,t){this.bare=new WebSocket(e,t)}return e.prototype.open=function(){},e.prototype.close=function(){this.bare.close()},e.prototype.send=function(e){this.bare.send(e)},e.prototype.isOpen=function(){return this.bare.readyState==WebSocket.CONNECTING||this.bare.readyState==WebSocket.OPEN},e.prototype.onOpen=function(e){this.bare.onopen=function(t){e()}},e.prototype.onReceive=function(e){this.bare.onmessage=function(t){e(t.data)}},e.prototype.onClose=function(e){this.bare.onclose=function(t){e()}},e}();t.Connection=o},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.protocols=["webtty"],t.msgInputUnknown="0",t.msgInput="1",t.msgPing="2",t.msgResizeTerminal="3",t.msgUnknownOutput="0",t.msgOutput="1",t.msgPong="2",t.msgSetWindowTitle="3",t.msgSetPreferences="4",t.msgSetReconnect="5";var i=function(){function e(e,t,r,i){this.term=e,this.connectionFactory=t,this.args=r,this.authToken=i,this.reconnect=-1}return e.prototype.open=function(){var e,r,i=this,o=this.connectionFactory.create(),s=function(){o.onOpen(function(){var r=i.term.info();o.send(JSON.stringify({Arguments:i.args,AuthToken:i.authToken}));var s=function(e,r){o.send(t.msgResizeTerminal+JSON.stringify({columns:e,rows:r}))};i.term.onResize(s),s(r.columns,r.rows),i.term.onInput(function(e){o.send(t.msgInput+e)}),e=setInterval(function(){o.send(t.msgPing)},3e4)}),o.onReceive(function(e){var r=e.slice(1);switch(e[0]){case t.msgOutput:i.term.output(decodeURIComponent(Array.prototype.map.call(atob(r),function(e){return"%"+("00"+e.charCodeAt(0).toString(16)).slice(-2)}).join("")));break;case t.msgPong:break;case t.msgSetWindowTitle:i.term.setWindowTitle(r);break;case t.msgSetPreferences:var o=JSON.parse(r);i.term.setPreferences(o);break;case t.msgSetReconnect:var s=JSON.parse(r);console.log("Enabling reconnect: "+s+" seconds"),i.reconnect=s}}),o.onClose(function(){clearInterval(e),i.term.deactivate(),i.term.showMessage("Connection Closed",0),i.reconnect>0&&(r=setTimeout(function(){o=i.connectionFactory.create(),i.term.reset(),s()},1e3*i.reconnect))}),o.open()};return s(),function(){clearTimeout(r),o.close()}},e}();t.WebTTY=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(0);i.loadAddon("fit");var o=function(){function e(e){var t=this;this.elem=e,this.term=new i,this.message=e.ownerDocument.createElement("div"),this.message.className="xterm-overlay",this.messageTimeout=2e3,this.resizeListener=function(){t.term.fit(),t.term.scrollToBottom(),t.showMessage(String(t.term.cols)+"x"+String(t.term.rows),t.messageTimeout)},this.term.on("open",function(){t.resizeListener(),window.addEventListener("resize",function(){t.resizeListener()})}),this.term.open(e,!0)}return e.prototype.info=function(){return{columns:this.term.cols,rows:this.term.rows}},e.prototype.output=function(e){this.term.write(e)},e.prototype.showMessage=function(e,t){var r=this;this.message.textContent=e,this.elem.appendChild(this.message),this.messageTimer&&clearTimeout(this.messageTimer),t>0&&(this.messageTimer=setTimeout(function(){r.elem.removeChild(r.message)},t))},e.prototype.removeMessage=function(){this.message.parentNode==this.elem&&this.elem.removeChild(this.message)},e.prototype.setWindowTitle=function(e){document.title=e},e.prototype.setPreferences=function(e){},e.prototype.onInput=function(e){this.term.on("data",function(t){e(t)})},e.prototype.onResize=function(e){this.term.on("resize",function(t){e(t.cols,t.rows)})},e.prototype.deactivate=function(){this.term.off("data"),this.term.off("resize"),this.term.blur()},e.prototype.reset=function(){this.removeMessage(),this.term.clear()},e.prototype.close=function(){window.removeEventListener("resize",this.resizeListener),this.term.destroy()},e}();t.Xterm=o},function(e,t,r){"use strict";if(void 0!==i)throw new Error('Global "lib" object already exists.');var i={};i.runtimeDependencies_={},i.initCallbacks_=[],i.rtdep=function(e){var t;try{throw new Error}catch(e){var r=e.stack.split("\n");t=r.length>=3?r[2].replace(/^\s*at\s+/,""):r[1].replace(/^\s*global code@/,"")}for(var o=0;ot.length&&(t=t.repeat(e/t.length+1)),t.slice(0,e)+String(this))}),String.prototype.padEnd||(String.prototype.padEnd=function(e,t){return(e-=this.length)<=0?String(this):(void 0===t&&(t=" "),e>t.length&&(t=t.repeat(e/t.length+1)),String(this)+t.slice(0,e))}),i.colors={},i.colors.re_={hex16:/#([a-f0-9])([a-f0-9])([a-f0-9])/i,hex24:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i,rgb:new RegExp("^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*/)/s*$".replace(/\//g,"\\"),"i"),rgba:new RegExp("^/s*rgba/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$".replace(/\//g,"\\"),"i"),rgbx:new RegExp("^/s*rgba?/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$".replace(/\//g,"\\"),"i"),x11rgb:/^\s*rgb:([a-f0-9]{1,4})\/([a-f0-9]{1,4})\/([a-f0-9]{1,4})\s*$/i,name:/[a-z][a-z0-9\s]+/},i.colors.rgbToX11=function(e){function t(e){return e=(257*Math.min(e,255)).toString(16),i.f.zpad(e,4)}var r=e.match(i.colors.re_.rgbx);return r?"rgb:"+t(r[1])+"/"+t(r[2])+"/"+t(r[3]):null},i.colors.x11HexToCSS=function(e){if(!e.startsWith("#"))return null;if(e=e.substr(1),-1==[3,6,9,12].indexOf(e.length))return null;if(e.match(/[^a-f0-9]/i))return null;var t=e.length/3,r=e.substr(0,t),o=e.substr(t,t),s=e.substr(t+t,t);return i.colors.arrayToRGBA([r,o,s].map(function(e){return e=parseInt(e,16),2==t?e:1==t?e<<4:e>>4*(t-2)}))},i.colors.x11ToCSS=function(e){var t=e.match(i.colors.re_.x11rgb);return t?(t.splice(0,1),i.colors.arrayToRGBA(t.map(function(e){return 1==e.length?parseInt(e+e,16):2==e.length?parseInt(e,16):(3==e.length&&(e+=e.substr(2)),Math.round(parseInt(e,16)/257))}))):e.startsWith("#")?i.colors.x11HexToCSS(e):i.colors.nameToRGB(e)},i.colors.hexToRGB=function(e){function t(e){4==e.length&&(e=e.replace(r,function(e,t,r,i){return"#"+t+t+r+r+i+i}));var t=e.match(o);return t?"rgb("+parseInt(t[1],16)+", "+parseInt(t[2],16)+", "+parseInt(t[3],16)+")":null}var r=i.colors.re_.hex16,o=i.colors.re_.hex24;if(e instanceof Array)for(var s=0;s3?e[3]:1;return"rgba("+e[0]+", "+e[1]+", "+e[2]+", "+t+")"},i.colors.setAlpha=function(e,t){var r=i.colors.crackRGB(e);return r[3]=t,i.colors.arrayToRGBA(r)},i.colors.mix=function(e,t,r){for(var o=i.colors.crackRGB(e),s=i.colors.crackRGB(t),n=0;n<4;++n){var a=s[n]-o[n];o[n]=Math.round(parseInt(o[n])+a*r)}return i.colors.arrayToRGBA(o)},i.colors.crackRGB=function(e){if(e.startsWith("rgba")){if(t=e.match(i.colors.re_.rgba))return t.shift(),t}else{var t=e.match(i.colors.re_.rgb);if(t)return t.shift(),t.push(1),t}return console.error("Couldn't crack: "+e),null},i.colors.nameToRGB=function(e){return e in i.colors.colorNames?i.colors.colorNames[e]:(e=e.toLowerCase())in i.colors.colorNames?i.colors.colorNames[e]:(e=e.replace(/\s+/g,""))in i.colors.colorNames?i.colors.colorNames[e]:null},i.colors.stockColorPalette=i.colors.hexToRGB(["#000000","#CC0000","#4E9A06","#C4A000","#3465A4","#75507B","#06989A","#D3D7CF","#555753","#EF2929","#00BA13","#FCE94F","#729FCF","#F200CB","#00B5BD","#EEEEEC","#000000","#00005F","#000087","#0000AF","#0000D7","#0000FF","#005F00","#005F5F","#005F87","#005FAF","#005FD7","#005FFF","#008700","#00875F","#008787","#0087AF","#0087D7","#0087FF","#00AF00","#00AF5F","#00AF87","#00AFAF","#00AFD7","#00AFFF","#00D700","#00D75F","#00D787","#00D7AF","#00D7D7","#00D7FF","#00FF00","#00FF5F","#00FF87","#00FFAF","#00FFD7","#00FFFF","#5F0000","#5F005F","#5F0087","#5F00AF","#5F00D7","#5F00FF","#5F5F00","#5F5F5F","#5F5F87","#5F5FAF","#5F5FD7","#5F5FFF","#5F8700","#5F875F","#5F8787","#5F87AF","#5F87D7","#5F87FF","#5FAF00","#5FAF5F","#5FAF87","#5FAFAF","#5FAFD7","#5FAFFF","#5FD700","#5FD75F","#5FD787","#5FD7AF","#5FD7D7","#5FD7FF","#5FFF00","#5FFF5F","#5FFF87","#5FFFAF","#5FFFD7","#5FFFFF","#870000","#87005F","#870087","#8700AF","#8700D7","#8700FF","#875F00","#875F5F","#875F87","#875FAF","#875FD7","#875FFF","#878700","#87875F","#878787","#8787AF","#8787D7","#8787FF","#87AF00","#87AF5F","#87AF87","#87AFAF","#87AFD7","#87AFFF","#87D700","#87D75F","#87D787","#87D7AF","#87D7D7","#87D7FF","#87FF00","#87FF5F","#87FF87","#87FFAF","#87FFD7","#87FFFF","#AF0000","#AF005F","#AF0087","#AF00AF","#AF00D7","#AF00FF","#AF5F00","#AF5F5F","#AF5F87","#AF5FAF","#AF5FD7","#AF5FFF","#AF8700","#AF875F","#AF8787","#AF87AF","#AF87D7","#AF87FF","#AFAF00","#AFAF5F","#AFAF87","#AFAFAF","#AFAFD7","#AFAFFF","#AFD700","#AFD75F","#AFD787","#AFD7AF","#AFD7D7","#AFD7FF","#AFFF00","#AFFF5F","#AFFF87","#AFFFAF","#AFFFD7","#AFFFFF","#D70000","#D7005F","#D70087","#D700AF","#D700D7","#D700FF","#D75F00","#D75F5F","#D75F87","#D75FAF","#D75FD7","#D75FFF","#D78700","#D7875F","#D78787","#D787AF","#D787D7","#D787FF","#D7AF00","#D7AF5F","#D7AF87","#D7AFAF","#D7AFD7","#D7AFFF","#D7D700","#D7D75F","#D7D787","#D7D7AF","#D7D7D7","#D7D7FF","#D7FF00","#D7FF5F","#D7FF87","#D7FFAF","#D7FFD7","#D7FFFF","#FF0000","#FF005F","#FF0087","#FF00AF","#FF00D7","#FF00FF","#FF5F00","#FF5F5F","#FF5F87","#FF5FAF","#FF5FD7","#FF5FFF","#FF8700","#FF875F","#FF8787","#FF87AF","#FF87D7","#FF87FF","#FFAF00","#FFAF5F","#FFAF87","#FFAFAF","#FFAFD7","#FFAFFF","#FFD700","#FFD75F","#FFD787","#FFD7AF","#FFD7D7","#FFD7FF","#FFFF00","#FFFF5F","#FFFF87","#FFFFAF","#FFFFD7","#FFFFFF","#080808","#121212","#1C1C1C","#262626","#303030","#3A3A3A","#444444","#4E4E4E","#585858","#626262","#6C6C6C","#767676","#808080","#8A8A8A","#949494","#9E9E9E","#A8A8A8","#B2B2B2","#BCBCBC","#C6C6C6","#D0D0D0","#DADADA","#E4E4E4","#EEEEEE"]),i.colors.colorPalette=i.colors.stockColorPalette,i.colors.colorNames={aliceblue:"rgb(240, 248, 255)",antiquewhite:"rgb(250, 235, 215)",antiquewhite1:"rgb(255, 239, 219)",antiquewhite2:"rgb(238, 223, 204)",antiquewhite3:"rgb(205, 192, 176)",antiquewhite4:"rgb(139, 131, 120)",aquamarine:"rgb(127, 255, 212)",aquamarine1:"rgb(127, 255, 212)",aquamarine2:"rgb(118, 238, 198)",aquamarine3:"rgb(102, 205, 170)",aquamarine4:"rgb(69, 139, 116)",azure:"rgb(240, 255, 255)",azure1:"rgb(240, 255, 255)",azure2:"rgb(224, 238, 238)",azure3:"rgb(193, 205, 205)",azure4:"rgb(131, 139, 139)",beige:"rgb(245, 245, 220)",bisque:"rgb(255, 228, 196)",bisque1:"rgb(255, 228, 196)",bisque2:"rgb(238, 213, 183)",bisque3:"rgb(205, 183, 158)",bisque4:"rgb(139, 125, 107)",black:"rgb(0, 0, 0)",blanchedalmond:"rgb(255, 235, 205)",blue:"rgb(0, 0, 255)",blue1:"rgb(0, 0, 255)",blue2:"rgb(0, 0, 238)",blue3:"rgb(0, 0, 205)",blue4:"rgb(0, 0, 139)",blueviolet:"rgb(138, 43, 226)",brown:"rgb(165, 42, 42)",brown1:"rgb(255, 64, 64)",brown2:"rgb(238, 59, 59)",brown3:"rgb(205, 51, 51)",brown4:"rgb(139, 35, 35)",burlywood:"rgb(222, 184, 135)",burlywood1:"rgb(255, 211, 155)",burlywood2:"rgb(238, 197, 145)",burlywood3:"rgb(205, 170, 125)",burlywood4:"rgb(139, 115, 85)",cadetblue:"rgb(95, 158, 160)",cadetblue1:"rgb(152, 245, 255)",cadetblue2:"rgb(142, 229, 238)",cadetblue3:"rgb(122, 197, 205)",cadetblue4:"rgb(83, 134, 139)",chartreuse:"rgb(127, 255, 0)",chartreuse1:"rgb(127, 255, 0)",chartreuse2:"rgb(118, 238, 0)",chartreuse3:"rgb(102, 205, 0)",chartreuse4:"rgb(69, 139, 0)",chocolate:"rgb(210, 105, 30)",chocolate1:"rgb(255, 127, 36)",chocolate2:"rgb(238, 118, 33)",chocolate3:"rgb(205, 102, 29)",chocolate4:"rgb(139, 69, 19)",coral:"rgb(255, 127, 80)",coral1:"rgb(255, 114, 86)",coral2:"rgb(238, 106, 80)",coral3:"rgb(205, 91, 69)",coral4:"rgb(139, 62, 47)",cornflowerblue:"rgb(100, 149, 237)",cornsilk:"rgb(255, 248, 220)",cornsilk1:"rgb(255, 248, 220)",cornsilk2:"rgb(238, 232, 205)",cornsilk3:"rgb(205, 200, 177)",cornsilk4:"rgb(139, 136, 120)",cyan:"rgb(0, 255, 255)",cyan1:"rgb(0, 255, 255)",cyan2:"rgb(0, 238, 238)",cyan3:"rgb(0, 205, 205)",cyan4:"rgb(0, 139, 139)",darkblue:"rgb(0, 0, 139)",darkcyan:"rgb(0, 139, 139)",darkgoldenrod:"rgb(184, 134, 11)",darkgoldenrod1:"rgb(255, 185, 15)",darkgoldenrod2:"rgb(238, 173, 14)",darkgoldenrod3:"rgb(205, 149, 12)",darkgoldenrod4:"rgb(139, 101, 8)",darkgray:"rgb(169, 169, 169)",darkgreen:"rgb(0, 100, 0)",darkgrey:"rgb(169, 169, 169)",darkkhaki:"rgb(189, 183, 107)",darkmagenta:"rgb(139, 0, 139)",darkolivegreen:"rgb(85, 107, 47)",darkolivegreen1:"rgb(202, 255, 112)",darkolivegreen2:"rgb(188, 238, 104)",darkolivegreen3:"rgb(162, 205, 90)",darkolivegreen4:"rgb(110, 139, 61)",darkorange:"rgb(255, 140, 0)",darkorange1:"rgb(255, 127, 0)",darkorange2:"rgb(238, 118, 0)",darkorange3:"rgb(205, 102, 0)",darkorange4:"rgb(139, 69, 0)",darkorchid:"rgb(153, 50, 204)",darkorchid1:"rgb(191, 62, 255)",darkorchid2:"rgb(178, 58, 238)",darkorchid3:"rgb(154, 50, 205)",darkorchid4:"rgb(104, 34, 139)",darkred:"rgb(139, 0, 0)",darksalmon:"rgb(233, 150, 122)",darkseagreen:"rgb(143, 188, 143)",darkseagreen1:"rgb(193, 255, 193)",darkseagreen2:"rgb(180, 238, 180)",darkseagreen3:"rgb(155, 205, 155)",darkseagreen4:"rgb(105, 139, 105)",darkslateblue:"rgb(72, 61, 139)",darkslategray:"rgb(47, 79, 79)",darkslategray1:"rgb(151, 255, 255)",darkslategray2:"rgb(141, 238, 238)",darkslategray3:"rgb(121, 205, 205)",darkslategray4:"rgb(82, 139, 139)",darkslategrey:"rgb(47, 79, 79)",darkturquoise:"rgb(0, 206, 209)",darkviolet:"rgb(148, 0, 211)",debianred:"rgb(215, 7, 81)",deeppink:"rgb(255, 20, 147)",deeppink1:"rgb(255, 20, 147)",deeppink2:"rgb(238, 18, 137)",deeppink3:"rgb(205, 16, 118)",deeppink4:"rgb(139, 10, 80)",deepskyblue:"rgb(0, 191, 255)",deepskyblue1:"rgb(0, 191, 255)",deepskyblue2:"rgb(0, 178, 238)",deepskyblue3:"rgb(0, 154, 205)",deepskyblue4:"rgb(0, 104, 139)",dimgray:"rgb(105, 105, 105)",dimgrey:"rgb(105, 105, 105)",dodgerblue:"rgb(30, 144, 255)",dodgerblue1:"rgb(30, 144, 255)",dodgerblue2:"rgb(28, 134, 238)",dodgerblue3:"rgb(24, 116, 205)",dodgerblue4:"rgb(16, 78, 139)",firebrick:"rgb(178, 34, 34)",firebrick1:"rgb(255, 48, 48)",firebrick2:"rgb(238, 44, 44)",firebrick3:"rgb(205, 38, 38)",firebrick4:"rgb(139, 26, 26)",floralwhite:"rgb(255, 250, 240)",forestgreen:"rgb(34, 139, 34)",gainsboro:"rgb(220, 220, 220)",ghostwhite:"rgb(248, 248, 255)",gold:"rgb(255, 215, 0)",gold1:"rgb(255, 215, 0)",gold2:"rgb(238, 201, 0)",gold3:"rgb(205, 173, 0)",gold4:"rgb(139, 117, 0)",goldenrod:"rgb(218, 165, 32)",goldenrod1:"rgb(255, 193, 37)",goldenrod2:"rgb(238, 180, 34)",goldenrod3:"rgb(205, 155, 29)",goldenrod4:"rgb(139, 105, 20)",gray:"rgb(190, 190, 190)",gray0:"rgb(0, 0, 0)",gray1:"rgb(3, 3, 3)",gray10:"rgb(26, 26, 26)",gray100:"rgb(255, 255, 255)",gray11:"rgb(28, 28, 28)",gray12:"rgb(31, 31, 31)",gray13:"rgb(33, 33, 33)",gray14:"rgb(36, 36, 36)",gray15:"rgb(38, 38, 38)",gray16:"rgb(41, 41, 41)",gray17:"rgb(43, 43, 43)",gray18:"rgb(46, 46, 46)",gray19:"rgb(48, 48, 48)",gray2:"rgb(5, 5, 5)",gray20:"rgb(51, 51, 51)",gray21:"rgb(54, 54, 54)",gray22:"rgb(56, 56, 56)",gray23:"rgb(59, 59, 59)",gray24:"rgb(61, 61, 61)",gray25:"rgb(64, 64, 64)",gray26:"rgb(66, 66, 66)",gray27:"rgb(69, 69, 69)",gray28:"rgb(71, 71, 71)",gray29:"rgb(74, 74, 74)",gray3:"rgb(8, 8, 8)",gray30:"rgb(77, 77, 77)",gray31:"rgb(79, 79, 79)",gray32:"rgb(82, 82, 82)",gray33:"rgb(84, 84, 84)",gray34:"rgb(87, 87, 87)",gray35:"rgb(89, 89, 89)",gray36:"rgb(92, 92, 92)",gray37:"rgb(94, 94, 94)",gray38:"rgb(97, 97, 97)",gray39:"rgb(99, 99, 99)",gray4:"rgb(10, 10, 10)",gray40:"rgb(102, 102, 102)",gray41:"rgb(105, 105, 105)",gray42:"rgb(107, 107, 107)",gray43:"rgb(110, 110, 110)",gray44:"rgb(112, 112, 112)",gray45:"rgb(115, 115, 115)",gray46:"rgb(117, 117, 117)",gray47:"rgb(120, 120, 120)",gray48:"rgb(122, 122, 122)",gray49:"rgb(125, 125, 125)",gray5:"rgb(13, 13, 13)",gray50:"rgb(127, 127, 127)",gray51:"rgb(130, 130, 130)",gray52:"rgb(133, 133, 133)",gray53:"rgb(135, 135, 135)",gray54:"rgb(138, 138, 138)",gray55:"rgb(140, 140, 140)",gray56:"rgb(143, 143, 143)",gray57:"rgb(145, 145, 145)",gray58:"rgb(148, 148, 148)",gray59:"rgb(150, 150, 150)",gray6:"rgb(15, 15, 15)",gray60:"rgb(153, 153, 153)",gray61:"rgb(156, 156, 156)",gray62:"rgb(158, 158, 158)",gray63:"rgb(161, 161, 161)",gray64:"rgb(163, 163, 163)",gray65:"rgb(166, 166, 166)",gray66:"rgb(168, 168, 168)",gray67:"rgb(171, 171, 171)",gray68:"rgb(173, 173, 173)",gray69:"rgb(176, 176, 176)",gray7:"rgb(18, 18, 18)",gray70:"rgb(179, 179, 179)",gray71:"rgb(181, 181, 181)",gray72:"rgb(184, 184, 184)",gray73:"rgb(186, 186, 186)",gray74:"rgb(189, 189, 189)",gray75:"rgb(191, 191, 191)",gray76:"rgb(194, 194, 194)",gray77:"rgb(196, 196, 196)",gray78:"rgb(199, 199, 199)",gray79:"rgb(201, 201, 201)",gray8:"rgb(20, 20, 20)",gray80:"rgb(204, 204, 204)",gray81:"rgb(207, 207, 207)",gray82:"rgb(209, 209, 209)",gray83:"rgb(212, 212, 212)",gray84:"rgb(214, 214, 214)",gray85:"rgb(217, 217, 217)",gray86:"rgb(219, 219, 219)",gray87:"rgb(222, 222, 222)",gray88:"rgb(224, 224, 224)",gray89:"rgb(227, 227, 227)",gray9:"rgb(23, 23, 23)",gray90:"rgb(229, 229, 229)",gray91:"rgb(232, 232, 232)",gray92:"rgb(235, 235, 235)",gray93:"rgb(237, 237, 237)",gray94:"rgb(240, 240, 240)",gray95:"rgb(242, 242, 242)",gray96:"rgb(245, 245, 245)",gray97:"rgb(247, 247, 247)",gray98:"rgb(250, 250, 250)",gray99:"rgb(252, 252, 252)",green:"rgb(0, 255, 0)",green1:"rgb(0, 255, 0)",green2:"rgb(0, 238, 0)",green3:"rgb(0, 205, 0)",green4:"rgb(0, 139, 0)",greenyellow:"rgb(173, 255, 47)",grey:"rgb(190, 190, 190)",grey0:"rgb(0, 0, 0)",grey1:"rgb(3, 3, 3)",grey10:"rgb(26, 26, 26)",grey100:"rgb(255, 255, 255)",grey11:"rgb(28, 28, 28)",grey12:"rgb(31, 31, 31)",grey13:"rgb(33, 33, 33)",grey14:"rgb(36, 36, 36)",grey15:"rgb(38, 38, 38)",grey16:"rgb(41, 41, 41)",grey17:"rgb(43, 43, 43)",grey18:"rgb(46, 46, 46)",grey19:"rgb(48, 48, 48)",grey2:"rgb(5, 5, 5)",grey20:"rgb(51, 51, 51)",grey21:"rgb(54, 54, 54)",grey22:"rgb(56, 56, 56)",grey23:"rgb(59, 59, 59)",grey24:"rgb(61, 61, 61)",grey25:"rgb(64, 64, 64)",grey26:"rgb(66, 66, 66)",grey27:"rgb(69, 69, 69)",grey28:"rgb(71, 71, 71)",grey29:"rgb(74, 74, 74)",grey3:"rgb(8, 8, 8)",grey30:"rgb(77, 77, 77)",grey31:"rgb(79, 79, 79)",grey32:"rgb(82, 82, 82)",grey33:"rgb(84, 84, 84)",grey34:"rgb(87, 87, 87)",grey35:"rgb(89, 89, 89)",grey36:"rgb(92, 92, 92)",grey37:"rgb(94, 94, 94)",grey38:"rgb(97, 97, 97)",grey39:"rgb(99, 99, 99)",grey4:"rgb(10, 10, 10)",grey40:"rgb(102, 102, 102)",grey41:"rgb(105, 105, 105)",grey42:"rgb(107, 107, 107)",grey43:"rgb(110, 110, 110)",grey44:"rgb(112, 112, 112)",grey45:"rgb(115, 115, 115)",grey46:"rgb(117, 117, 117)",grey47:"rgb(120, 120, 120)",grey48:"rgb(122, 122, 122)",grey49:"rgb(125, 125, 125)",grey5:"rgb(13, 13, 13)",grey50:"rgb(127, 127, 127)",grey51:"rgb(130, 130, 130)",grey52:"rgb(133, 133, 133)",grey53:"rgb(135, 135, 135)",grey54:"rgb(138, 138, 138)",grey55:"rgb(140, 140, 140)",grey56:"rgb(143, 143, 143)",grey57:"rgb(145, 145, 145)",grey58:"rgb(148, 148, 148)",grey59:"rgb(150, 150, 150)",grey6:"rgb(15, 15, 15)",grey60:"rgb(153, 153, 153)",grey61:"rgb(156, 156, 156)",grey62:"rgb(158, 158, 158)",grey63:"rgb(161, 161, 161)",grey64:"rgb(163, 163, 163)",grey65:"rgb(166, 166, 166)",grey66:"rgb(168, 168, 168)",grey67:"rgb(171, 171, 171)",grey68:"rgb(173, 173, 173)",grey69:"rgb(176, 176, 176)",grey7:"rgb(18, 18, 18)",grey70:"rgb(179, 179, 179)",grey71:"rgb(181, 181, 181)",grey72:"rgb(184, 184, 184)",grey73:"rgb(186, 186, 186)",grey74:"rgb(189, 189, 189)",grey75:"rgb(191, 191, 191)",grey76:"rgb(194, 194, 194)",grey77:"rgb(196, 196, 196)",grey78:"rgb(199, 199, 199)",grey79:"rgb(201, 201, 201)",grey8:"rgb(20, 20, 20)",grey80:"rgb(204, 204, 204)",grey81:"rgb(207, 207, 207)",grey82:"rgb(209, 209, 209)",grey83:"rgb(212, 212, 212)",grey84:"rgb(214, 214, 214)",grey85:"rgb(217, 217, 217)",grey86:"rgb(219, 219, 219)",grey87:"rgb(222, 222, 222)",grey88:"rgb(224, 224, 224)",grey89:"rgb(227, 227, 227)",grey9:"rgb(23, 23, 23)",grey90:"rgb(229, 229, 229)",grey91:"rgb(232, 232, 232)",grey92:"rgb(235, 235, 235)",grey93:"rgb(237, 237, 237)",grey94:"rgb(240, 240, 240)",grey95:"rgb(242, 242, 242)",grey96:"rgb(245, 245, 245)",grey97:"rgb(247, 247, 247)",grey98:"rgb(250, 250, 250)",grey99:"rgb(252, 252, 252)",honeydew:"rgb(240, 255, 240)",honeydew1:"rgb(240, 255, 240)",honeydew2:"rgb(224, 238, 224)",honeydew3:"rgb(193, 205, 193)",honeydew4:"rgb(131, 139, 131)",hotpink:"rgb(255, 105, 180)",hotpink1:"rgb(255, 110, 180)",hotpink2:"rgb(238, 106, 167)",hotpink3:"rgb(205, 96, 144)",hotpink4:"rgb(139, 58, 98)",indianred:"rgb(205, 92, 92)",indianred1:"rgb(255, 106, 106)",indianred2:"rgb(238, 99, 99)",indianred3:"rgb(205, 85, 85)",indianred4:"rgb(139, 58, 58)",ivory:"rgb(255, 255, 240)",ivory1:"rgb(255, 255, 240)",ivory2:"rgb(238, 238, 224)",ivory3:"rgb(205, 205, 193)",ivory4:"rgb(139, 139, 131)",khaki:"rgb(240, 230, 140)",khaki1:"rgb(255, 246, 143)",khaki2:"rgb(238, 230, 133)",khaki3:"rgb(205, 198, 115)",khaki4:"rgb(139, 134, 78)",lavender:"rgb(230, 230, 250)",lavenderblush:"rgb(255, 240, 245)",lavenderblush1:"rgb(255, 240, 245)",lavenderblush2:"rgb(238, 224, 229)",lavenderblush3:"rgb(205, 193, 197)",lavenderblush4:"rgb(139, 131, 134)",lawngreen:"rgb(124, 252, 0)",lemonchiffon:"rgb(255, 250, 205)",lemonchiffon1:"rgb(255, 250, 205)",lemonchiffon2:"rgb(238, 233, 191)",lemonchiffon3:"rgb(205, 201, 165)",lemonchiffon4:"rgb(139, 137, 112)",lightblue:"rgb(173, 216, 230)",lightblue1:"rgb(191, 239, 255)",lightblue2:"rgb(178, 223, 238)",lightblue3:"rgb(154, 192, 205)",lightblue4:"rgb(104, 131, 139)",lightcoral:"rgb(240, 128, 128)",lightcyan:"rgb(224, 255, 255)",lightcyan1:"rgb(224, 255, 255)",lightcyan2:"rgb(209, 238, 238)",lightcyan3:"rgb(180, 205, 205)",lightcyan4:"rgb(122, 139, 139)",lightgoldenrod:"rgb(238, 221, 130)",lightgoldenrod1:"rgb(255, 236, 139)",lightgoldenrod2:"rgb(238, 220, 130)",lightgoldenrod3:"rgb(205, 190, 112)",lightgoldenrod4:"rgb(139, 129, 76)",lightgoldenrodyellow:"rgb(250, 250, 210)",lightgray:"rgb(211, 211, 211)",lightgreen:"rgb(144, 238, 144)",lightgrey:"rgb(211, 211, 211)",lightpink:"rgb(255, 182, 193)",lightpink1:"rgb(255, 174, 185)",lightpink2:"rgb(238, 162, 173)",lightpink3:"rgb(205, 140, 149)",lightpink4:"rgb(139, 95, 101)",lightsalmon:"rgb(255, 160, 122)",lightsalmon1:"rgb(255, 160, 122)",lightsalmon2:"rgb(238, 149, 114)",lightsalmon3:"rgb(205, 129, 98)",lightsalmon4:"rgb(139, 87, 66)",lightseagreen:"rgb(32, 178, 170)",lightskyblue:"rgb(135, 206, 250)",lightskyblue1:"rgb(176, 226, 255)",lightskyblue2:"rgb(164, 211, 238)",lightskyblue3:"rgb(141, 182, 205)",lightskyblue4:"rgb(96, 123, 139)",lightslateblue:"rgb(132, 112, 255)",lightslategray:"rgb(119, 136, 153)",lightslategrey:"rgb(119, 136, 153)",lightsteelblue:"rgb(176, 196, 222)",lightsteelblue1:"rgb(202, 225, 255)",lightsteelblue2:"rgb(188, 210, 238)",lightsteelblue3:"rgb(162, 181, 205)",lightsteelblue4:"rgb(110, 123, 139)",lightyellow:"rgb(255, 255, 224)",lightyellow1:"rgb(255, 255, 224)",lightyellow2:"rgb(238, 238, 209)",lightyellow3:"rgb(205, 205, 180)",lightyellow4:"rgb(139, 139, 122)",limegreen:"rgb(50, 205, 50)",linen:"rgb(250, 240, 230)",magenta:"rgb(255, 0, 255)",magenta1:"rgb(255, 0, 255)",magenta2:"rgb(238, 0, 238)",magenta3:"rgb(205, 0, 205)",magenta4:"rgb(139, 0, 139)",maroon:"rgb(176, 48, 96)",maroon1:"rgb(255, 52, 179)",maroon2:"rgb(238, 48, 167)",maroon3:"rgb(205, 41, 144)",maroon4:"rgb(139, 28, 98)",mediumaquamarine:"rgb(102, 205, 170)",mediumblue:"rgb(0, 0, 205)",mediumorchid:"rgb(186, 85, 211)",mediumorchid1:"rgb(224, 102, 255)",mediumorchid2:"rgb(209, 95, 238)",mediumorchid3:"rgb(180, 82, 205)",mediumorchid4:"rgb(122, 55, 139)",mediumpurple:"rgb(147, 112, 219)",mediumpurple1:"rgb(171, 130, 255)",mediumpurple2:"rgb(159, 121, 238)",mediumpurple3:"rgb(137, 104, 205)",mediumpurple4:"rgb(93, 71, 139)",mediumseagreen:"rgb(60, 179, 113)",mediumslateblue:"rgb(123, 104, 238)",mediumspringgreen:"rgb(0, 250, 154)",mediumturquoise:"rgb(72, 209, 204)",mediumvioletred:"rgb(199, 21, 133)",midnightblue:"rgb(25, 25, 112)",mintcream:"rgb(245, 255, 250)",mistyrose:"rgb(255, 228, 225)",mistyrose1:"rgb(255, 228, 225)",mistyrose2:"rgb(238, 213, 210)",mistyrose3:"rgb(205, 183, 181)",mistyrose4:"rgb(139, 125, 123)",moccasin:"rgb(255, 228, 181)",navajowhite:"rgb(255, 222, 173)",navajowhite1:"rgb(255, 222, 173)",navajowhite2:"rgb(238, 207, 161)",navajowhite3:"rgb(205, 179, 139)",navajowhite4:"rgb(139, 121, 94)",navy:"rgb(0, 0, 128)",navyblue:"rgb(0, 0, 128)",oldlace:"rgb(253, 245, 230)",olivedrab:"rgb(107, 142, 35)",olivedrab1:"rgb(192, 255, 62)",olivedrab2:"rgb(179, 238, 58)",olivedrab3:"rgb(154, 205, 50)",olivedrab4:"rgb(105, 139, 34)",orange:"rgb(255, 165, 0)",orange1:"rgb(255, 165, 0)",orange2:"rgb(238, 154, 0)",orange3:"rgb(205, 133, 0)",orange4:"rgb(139, 90, 0)",orangered:"rgb(255, 69, 0)",orangered1:"rgb(255, 69, 0)",orangered2:"rgb(238, 64, 0)",orangered3:"rgb(205, 55, 0)",orangered4:"rgb(139, 37, 0)",orchid:"rgb(218, 112, 214)",orchid1:"rgb(255, 131, 250)",orchid2:"rgb(238, 122, 233)",orchid3:"rgb(205, 105, 201)",orchid4:"rgb(139, 71, 137)",palegoldenrod:"rgb(238, 232, 170)",palegreen:"rgb(152, 251, 152)",palegreen1:"rgb(154, 255, 154)",palegreen2:"rgb(144, 238, 144)",palegreen3:"rgb(124, 205, 124)",palegreen4:"rgb(84, 139, 84)",paleturquoise:"rgb(175, 238, 238)",paleturquoise1:"rgb(187, 255, 255)",paleturquoise2:"rgb(174, 238, 238)",paleturquoise3:"rgb(150, 205, 205)",paleturquoise4:"rgb(102, 139, 139)",palevioletred:"rgb(219, 112, 147)",palevioletred1:"rgb(255, 130, 171)",palevioletred2:"rgb(238, 121, 159)",palevioletred3:"rgb(205, 104, 137)",palevioletred4:"rgb(139, 71, 93)",papayawhip:"rgb(255, 239, 213)",peachpuff:"rgb(255, 218, 185)",peachpuff1:"rgb(255, 218, 185)",peachpuff2:"rgb(238, 203, 173)",peachpuff3:"rgb(205, 175, 149)",peachpuff4:"rgb(139, 119, 101)",peru:"rgb(205, 133, 63)",pink:"rgb(255, 192, 203)",pink1:"rgb(255, 181, 197)",pink2:"rgb(238, 169, 184)",pink3:"rgb(205, 145, 158)",pink4:"rgb(139, 99, 108)",plum:"rgb(221, 160, 221)",plum1:"rgb(255, 187, 255)",plum2:"rgb(238, 174, 238)",plum3:"rgb(205, 150, 205)",plum4:"rgb(139, 102, 139)",powderblue:"rgb(176, 224, 230)",purple:"rgb(160, 32, 240)",purple1:"rgb(155, 48, 255)",purple2:"rgb(145, 44, 238)",purple3:"rgb(125, 38, 205)",purple4:"rgb(85, 26, 139)",red:"rgb(255, 0, 0)",red1:"rgb(255, 0, 0)",red2:"rgb(238, 0, 0)",red3:"rgb(205, 0, 0)",red4:"rgb(139, 0, 0)",rosybrown:"rgb(188, 143, 143)",rosybrown1:"rgb(255, 193, 193)",rosybrown2:"rgb(238, 180, 180)",rosybrown3:"rgb(205, 155, 155)",rosybrown4:"rgb(139, 105, 105)",royalblue:"rgb(65, 105, 225)",royalblue1:"rgb(72, 118, 255)",royalblue2:"rgb(67, 110, 238)",royalblue3:"rgb(58, 95, 205)",royalblue4:"rgb(39, 64, 139)",saddlebrown:"rgb(139, 69, 19)",salmon:"rgb(250, 128, 114)",salmon1:"rgb(255, 140, 105)",salmon2:"rgb(238, 130, 98)",salmon3:"rgb(205, 112, 84)",salmon4:"rgb(139, 76, 57)",sandybrown:"rgb(244, 164, 96)",seagreen:"rgb(46, 139, 87)",seagreen1:"rgb(84, 255, 159)",seagreen2:"rgb(78, 238, 148)",seagreen3:"rgb(67, 205, 128)",seagreen4:"rgb(46, 139, 87)",seashell:"rgb(255, 245, 238)",seashell1:"rgb(255, 245, 238)",seashell2:"rgb(238, 229, 222)",seashell3:"rgb(205, 197, 191)",seashell4:"rgb(139, 134, 130)",sienna:"rgb(160, 82, 45)",sienna1:"rgb(255, 130, 71)",sienna2:"rgb(238, 121, 66)",sienna3:"rgb(205, 104, 57)",sienna4:"rgb(139, 71, 38)",skyblue:"rgb(135, 206, 235)",skyblue1:"rgb(135, 206, 255)",skyblue2:"rgb(126, 192, 238)",skyblue3:"rgb(108, 166, 205)",skyblue4:"rgb(74, 112, 139)",slateblue:"rgb(106, 90, 205)",slateblue1:"rgb(131, 111, 255)",slateblue2:"rgb(122, 103, 238)",slateblue3:"rgb(105, 89, 205)",slateblue4:"rgb(71, 60, 139)",slategray:"rgb(112, 128, 144)",slategray1:"rgb(198, 226, 255)",slategray2:"rgb(185, 211, 238)",slategray3:"rgb(159, 182, 205)",slategray4:"rgb(108, 123, 139)",slategrey:"rgb(112, 128, 144)",snow:"rgb(255, 250, 250)",snow1:"rgb(255, 250, 250)",snow2:"rgb(238, 233, 233)",snow3:"rgb(205, 201, 201)",snow4:"rgb(139, 137, 137)",springgreen:"rgb(0, 255, 127)",springgreen1:"rgb(0, 255, 127)",springgreen2:"rgb(0, 238, 118)",springgreen3:"rgb(0, 205, 102)",springgreen4:"rgb(0, 139, 69)",steelblue:"rgb(70, 130, 180)",steelblue1:"rgb(99, 184, 255)",steelblue2:"rgb(92, 172, 238)",steelblue3:"rgb(79, 148, 205)",steelblue4:"rgb(54, 100, 139)",tan:"rgb(210, 180, 140)",tan1:"rgb(255, 165, 79)",tan2:"rgb(238, 154, 73)",tan3:"rgb(205, 133, 63)",tan4:"rgb(139, 90, 43)",thistle:"rgb(216, 191, 216)",thistle1:"rgb(255, 225, 255)",thistle2:"rgb(238, 210, 238)",thistle3:"rgb(205, 181, 205)",thistle4:"rgb(139, 123, 139)",tomato:"rgb(255, 99, 71)",tomato1:"rgb(255, 99, 71)",tomato2:"rgb(238, 92, 66)",tomato3:"rgb(205, 79, 57)",tomato4:"rgb(139, 54, 38)",turquoise:"rgb(64, 224, 208)",turquoise1:"rgb(0, 245, 255)",turquoise2:"rgb(0, 229, 238)",turquoise3:"rgb(0, 197, 205)",turquoise4:"rgb(0, 134, 139)",violet:"rgb(238, 130, 238)",violetred:"rgb(208, 32, 144)",violetred1:"rgb(255, 62, 150)",violetred2:"rgb(238, 58, 140)",violetred3:"rgb(205, 50, 120)",violetred4:"rgb(139, 34, 82)",wheat:"rgb(245, 222, 179)",wheat1:"rgb(255, 231, 186)",wheat2:"rgb(238, 216, 174)",wheat3:"rgb(205, 186, 150)",wheat4:"rgb(139, 126, 102)",white:"rgb(255, 255, 255)",whitesmoke:"rgb(245, 245, 245)",yellow:"rgb(255, 255, 0)",yellow1:"rgb(255, 255, 0)",yellow2:"rgb(238, 238, 0)",yellow3:"rgb(205, 205, 0)",yellow4:"rgb(139, 139, 0)",yellowgreen:"rgb(154, 205, 50)"},i.f={},i.f.createEnum=function(e){return new String(e)},i.f.replaceVars=function(e,t){return e.replace(/%([a-z]*)\(([^\)]+)\)/gi,function(e,r,o){if(void 0===t[o])throw"Unknown variable: "+o;var s=t[o];if(r in i.f.replaceVars.functions)s=i.f.replaceVars.functions[r](s);else if(r)throw"Unknown escape function: "+r;return s})},i.f.replaceVars.functions={encodeURI:encodeURI,encodeURIComponent:encodeURIComponent,escapeHTML:function(e){var t={"<":"<",">":">","&":"&",'"':""","'":"'"};return e.replace(/[<>&\"\']/g,function(e){return t[e]})}},i.f.getAcceptLanguages=function(e){i.f.getAcceptLanguages.chromeSupported()?chrome.i18n.getAcceptLanguages(e):setTimeout(function(){e([navigator.language.replace(/-/g,"_")])},0)},i.f.getAcceptLanguages.chromeSupported=function(){return window.chrome&&chrome.i18n},i.f.parseQuery=function(e){e.startsWith("?")&&(e=e.substr(1));for(var t={},r=e.split("&"),i=0;ir?r:e},i.f.zpad=function(e,t){return String(e).padStart(t,"0")},i.f.getWhitespace=function(e){if(e<=0)return"";var t=this.getWhitespace;for(t.whitespace||(t.whitespace=" ");e>t.whitespace.length;)t.whitespace+=t.whitespace;return t.whitespace.substr(0,e)},i.f.alarm=function(e,t){var r=t||5e3,o=i.f.getStack(1);return function(){var t=setTimeout(function(){var i="string"==typeof e?i:e.name;i=i?": "+i:"",console.warn("lib.f.alarm: timeout expired: "+r/1e3+"s"+i),console.log(o),t=null},r),i=function(e){return function(){return t&&(clearTimeout(t),t=null),e.apply(null,arguments)}};return"string"==typeof e?i:i(e)}()},i.f.getStack=function(e){var t,r=e?e+2:2;try{throw new Error}catch(e){t=e.stack.split("\n")}for(var i={},o=r;o=0&&this.observers.splice(t,1)},i.PreferenceManager.Record.prototype.get=function(){return this.currentValue===this.DEFAULT_VALUE?/^(string|number)$/.test(typeof this.defaultValue)?this.defaultValue:"object"==typeof this.defaultValue?JSON.parse(JSON.stringify(this.defaultValue)):this.defaultValue:this.currentValue},i.PreferenceManager.prototype.deactivate=function(){if(!this.isActive_)throw new Error("Not activated");this.isActive_=!1,this.storage.removeObserver(this.storageObserver_)},i.PreferenceManager.prototype.activate=function(){if(this.isActive_)throw new Error("Already activated");this.isActive_=!0,this.storage.addObserver(this.storageObserver_)},i.PreferenceManager.prototype.readStorage=function(e){function t(){0==--r&&e&&e()}var r=0,i=Object.keys(this.prefRecords_).map(function(e){return this.prefix+e}.bind(this));this.trace&&console.log("Preferences read: "+this.prefix),this.storage.getItems(i,function(i){var o=this.prefix.length;for(var s in i){var n=i[s],a=s.substr(o),l=a in this.childLists_&&JSON.stringify(n)!=JSON.stringify(this.prefRecords_[a].currentValue);this.prefRecords_[a].currentValue=n,l&&(r++,this.syncChildList(a,t))}0==r&&e&&setTimeout(e)}.bind(this))},i.PreferenceManager.prototype.definePreference=function(e,t,r){var o=this.prefRecords_[e];o?this.changeDefault(e,t):o=this.prefRecords_[e]=new i.PreferenceManager.Record(e,t),r&&o.addObserver(r)},i.PreferenceManager.prototype.definePreferences=function(e){for(var t=0;t=0&&s.splice(l,1),!this.childLists_[e][a]){var h=this.childFactories_[e](this,a);if(!h){console.warn("Unable to restore child: "+e+": "+a);continue}h.trace=this.trace,this.childLists_[e][a]=h,r++,h.readStorage(function(){0==--r&&t&&t()})}}for(n=0;n=0;i--){var o=e[i],s=this.storage_.getItem(o);if("string"==typeof s)try{r[o]=JSON.parse(s)}catch(e){r[o]=s}else e.splice(i,1)}setTimeout(t.bind(null,r),0)},i.Storage.Local.prototype.setItem=function(e,t,r){this.storage_.setItem(e,JSON.stringify(t)),r&&setTimeout(r,0)},i.Storage.Local.prototype.setItems=function(e,t){for(var r in e)this.storage_.setItem(r,JSON.stringify(e[r]));t&&setTimeout(t,0)},i.Storage.Local.prototype.removeItem=function(e,t){this.storage_.removeItem(e),t&&setTimeout(t,0)},i.Storage.Local.prototype.removeItems=function(e,t){for(var r=0;r=0;i--){var o=e[i],s=this.storage_[o];if("string"==typeof s)try{r[o]=JSON.parse(s)}catch(e){r[o]=s}else e.splice(i,1)}setTimeout(t.bind(null,r),0)},i.Storage.Memory.prototype.setItem=function(e,t,r){var i=this.storage_[e];this.storage_[e]=JSON.stringify(t);var o={};o[e]={oldValue:i,newValue:t},setTimeout(function(){for(var e=0;e{let t="";switch(e){case"debug":case"warn":case"error":t=e.toUpperCase()+": "}const r=this.console_[e];this[e]=this.console_[e]=((...e)=>{this.save&&(this.data+=this.prefix_+t+e.join(" ")+"\n"),r.apply(this.console_,e)})}),["group","groupCollapsed"].forEach(e=>{const t=this.console_[e];this[e]=this.console_[e]=((e="")=>{t(e),this.save&&(this.data+=this.prefix_+e+"\n"),this.prefix_=" ".repeat(++this.prefixStack_)})});const t=this.console_.groupEnd;this.groupEnd=this.console_.groupEnd=(()=>{t(),this.prefix_=" ".repeat(--this.prefixStack_)})},i.TestManager.Suite=function(e){function t(t,r){this.testManager_=t,this.suiteName=e,this.setup(r)}return t.suiteName=e,t.addTest=i.TestManager.Suite.addTest,t.disableTest=i.TestManager.Suite.disableTest,t.getTest=i.TestManager.Suite.getTest,t.getTestList=i.TestManager.Suite.getTestList,t.testList_=[],t.testMap_={},t.prototype=Object.create(i.TestManager.Suite.prototype),t.constructor=i.TestManager.Suite,i.TestManager.Suite.subclasses.push(t),t},i.TestManager.Suite.subclasses=[],i.TestManager.Suite.addTest=function(e,t){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new i.TestManager.Test(this,e,t);this.testMap_[e]=r,this.testList_.push(r)},i.TestManager.Suite.disableTest=function(e,t){if(e in this.testMap_)throw"Duplicate test name: "+e;var r=new i.TestManager.Test(this,e,t);console.log("Disabled test: "+r.fullName)},i.TestManager.Suite.getTest=function(e){return this.testMap_[e]},i.TestManager.Suite.getTestList=function(){return this.testList_},i.TestManager.Suite.prototype.setDefaults=function(e,t){for(var r in t)this[r]=r in e?e[r]:t[r]},i.TestManager.Suite.prototype.setup=function(e){},i.TestManager.Suite.prototype.preamble=function(e,t){},i.TestManager.Suite.prototype.postamble=function(e,t){},i.TestManager.Test=function(e,t,r){this.suiteClass=e,this.testName=t,this.fullName=e.suiteName+"["+t+"]",this.testFunction_=r},i.TestManager.Test.prototype.run=function(e){try{this.testFunction_.apply(e.suite,[e,e.testRun.cx])}catch(t){if(t instanceof i.TestManager.Result.TestComplete)return;e.println("Test raised an exception: "+t),t.stack&&(t.stack instanceof Array?e.println(t.stack.join("\n")):e.println(t.stack)),e.completeTest_(e.FAILED,!1)}},i.TestManager.TestRun=function(e,t){this.testManager=e,this.log=e.log,this.cx=t||{},this.failures=[],this.passes=[],this.startDate=null,this.duration=null,this.currentResult=null,this.maxFailures=0,this.panic=!1,this.testQueue_=[]},i.TestManager.TestRun.prototype.ALL_TESTS=i.f.createEnum(""),i.TestManager.TestRun.prototype.selectTest=function(e){this.testQueue_.push(e)},i.TestManager.TestRun.prototype.selectSuite=function(e,t){for(var r=t||this.ALL_TESTS,i=0,o=e.getTestList(),s=0;s500&&this.log.warn("Slow test took "+this.msToSeconds_(e.duration)),this.log.groupEnd(),e.status==e.FAILED)this.failures.push(e),this.currentSuite=null;else{if(e.status!=e.PASSED)return this.log.error("Unknown result status: "+e.test.fullName+": "+e.status),this.panic=!0;this.passes.push(e)}this.runNextTest_()},i.TestManager.TestRun.prototype.onResultReComplete=function(e,t){this.log.error("Late complete for test: "+e.test.fullName+": "+t);var r=this.passes.indexOf(e);r>=0&&(this.passes.splice(r,1),this.failures.push(e))},i.TestManager.TestRun.prototype.runNextTest_=function(){if(this.panic||!this.testQueue_.length)return this.onTestRunComplete_();if(this.maxFailures&&this.failures.length>=this.maxFailures)return this.log.error("Maximum failure count reached, aborting test run."),this.onTestRunComplete_();var e=this.testQueue_[0],t=this.currentResult?this.currentResult.suite:null;try{t&&t instanceof e.suiteClass||(t&&this.log.groupEnd(),this.log.group(e.suiteClass.suiteName),t=new e.suiteClass(this.testManager,this.cx))}catch(e){return this.log.error("Exception during setup: "+(e.stack?e.stack:e)),this.panic=!0,void this.onTestRunComplete_()}try{this.log.group(e.testName),this.currentResult=new i.TestManager.Result(this,t,e),this.testManager.testPreamble(this.currentResult,this.cx),t.preamble(this.currentResult,this.cx),this.testQueue_.shift()}catch(e){return this.log.error("Unexpected exception during test preamble: "+(e.stack?e.stack:e)),this.log.groupEnd(),this.panic=!0,void this.onTestRunComplete_()}try{this.currentResult.run()}catch(e){this.log.error("Unexpected exception during test run: "+(e.stack?e.stack:e)),this.panic=!0}},i.TestManager.TestRun.prototype.run=function(){this.log.info("Running "+this.testQueue_.length+" test(s)"),window.onerror=this.onUncaughtException_.bind(this),this.startDate=new Date,this.runNextTest_()},i.TestManager.TestRun.prototype.msToSeconds_=function(e){return(e/1e3).toFixed(2)+"s"},i.TestManager.TestRun.prototype.summarize=function(){if(this.failures.length)for(var e=0;e1?"\n"+t.join("\n"):t.join("\n")}if(e!==t&&!(t instanceof Array&&this.arrayEQ_(e,t))){var o=r?"["+r+"]":"";this.fail("assertEQ"+o+": "+this.getCallerLocation_(1)+": "+i(e)+" !== "+i(t))}},i.TestManager.Result.prototype.assert=function(e,t){if(!0!==e){var r=t?"["+t+"]":"";this.fail("assert"+r+": "+this.getCallerLocation_(1)+": "+String(e))}},i.TestManager.Result.prototype.getCallerLocation_=function(e){try{throw new Error}catch(r){var t=r.stack.split("\n")[e+2].match(/([^/]+:\d+):\d+\)?$/);return t?t[1]:"???"}},i.TestManager.Result.prototype.println=function(e){this.testRun.log.info(e)},i.TestManager.Result.prototype.fail=function(e){arguments.length&&this.println(e),this.completeTest_(this.FAILED,!0)},i.TestManager.Result.prototype.pass=function(){this.completeTest_(this.PASSED,!0)},i.UTF8Decoder=function(){this.bytesLeft=0,this.codePoint=0,this.lowerBound=0},i.UTF8Decoder.prototype.decode=function(e){for(var t="",r=0;r1114111?t+="�":o<65536?t+=String.fromCharCode(o):(o-=65536,t+=String.fromCharCode(55296+(o>>>10&1023),56320+(1023&o)))}}else t+="�",this.bytesLeft=0,r--}return t},i.decodeUTF8=function(e){return(new i.UTF8Decoder).decode(e)},i.encodeUTF8=function(e){for(var t="",r=0;r>>6),s=1):i<=65535?(t+=String.fromCharCode(224|i>>>12),s=2):(t+=String.fromCharCode(240|i>>>18),s=3);s>0;)s--,t+=String.fromCharCode(128|i>>>6*s&63)}return t},i.wc={},i.wc.nulWidth=0,i.wc.controlWidth=0,i.wc.regardCjkAmbiguous=!1,i.wc.cjkAmbiguousWidth=2,i.wc.combining=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]],i.wc.ambiguous=[[161,161],[164,164],[167,168],[170,170],[174,174],[176,180],[182,186],[188,191],[198,198],[208,208],[215,216],[222,225],[230,230],[232,234],[236,237],[240,240],[242,243],[247,250],[252,252],[254,254],[257,257],[273,273],[275,275],[283,283],[294,295],[299,299],[305,307],[312,312],[319,322],[324,324],[328,331],[333,333],[338,339],[358,359],[363,363],[462,462],[464,464],[466,466],[468,468],[470,470],[472,472],[474,474],[476,476],[593,593],[609,609],[708,708],[711,711],[713,715],[717,717],[720,720],[728,731],[733,733],[735,735],[913,929],[931,937],[945,961],[963,969],[1025,1025],[1040,1103],[1105,1105],[8208,8208],[8211,8214],[8216,8217],[8220,8221],[8224,8226],[8228,8231],[8240,8240],[8242,8243],[8245,8245],[8251,8251],[8254,8254],[8308,8308],[8319,8319],[8321,8324],[8364,8364],[8451,8451],[8453,8453],[8457,8457],[8467,8467],[8470,8470],[8481,8482],[8486,8486],[8491,8491],[8531,8532],[8539,8542],[8544,8555],[8560,8569],[8592,8601],[8632,8633],[8658,8658],[8660,8660],[8679,8679],[8704,8704],[8706,8707],[8711,8712],[8715,8715],[8719,8719],[8721,8721],[8725,8725],[8730,8730],[8733,8736],[8739,8739],[8741,8741],[8743,8748],[8750,8750],[8756,8759],[8764,8765],[8776,8776],[8780,8780],[8786,8786],[8800,8801],[8804,8807],[8810,8811],[8814,8815],[8834,8835],[8838,8839],[8853,8853],[8857,8857],[8869,8869],[8895,8895],[8978,8978],[9312,9449],[9451,9547],[9552,9587],[9600,9615],[9618,9621],[9632,9633],[9635,9641],[9650,9651],[9654,9655],[9660,9661],[9664,9665],[9670,9672],[9675,9675],[9678,9681],[9698,9701],[9711,9711],[9733,9734],[9737,9737],[9742,9743],[9748,9749],[9756,9756],[9758,9758],[9792,9792],[9794,9794],[9824,9825],[9827,9829],[9831,9834],[9836,9837],[9839,9839],[10045,10045],[10102,10111],[57344,63743],[65533,65533],[983040,1048573],[1048576,1114109]],i.wc.isSpace=function(e){var t,r=0,o=i.wc.combining.length-1;if(ei.wc.combining[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i.wc.combining[t][1])r=t+1;else{if(!(ei.wc.ambiguous[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i.wc.ambiguous[t][1])r=t+1;else{if(!(e=127&&e<160?i.wc.controlWidth:e<127?1:i.wc.isSpace(e)?0:1+(e>=4352&&(e<=4447||9001==e||9002==e||e>=11904&&e<=42191&&12351!=e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141))},i.wc.charWidthRegardAmbiguous=function(e){return i.wc.isCjkAmbiguous(e)?i.wc.cjkAmbiguousWidth:i.wc.charWidthDisregardAmbiguous(e)},i.wc.strWidth=function(e){for(var t,r=0,o=0;ot);o++);if(void 0!=r){for(s=o,n=0;sr&&s--,e.substring(o,s)}return e.substr(o)},i.wc.substring=function(e,t,r){return i.wc.substr(e,t,r-t)},i.resource.add("libdot/changelog/version","text/plain","1.16"),i.resource.add("libdot/changelog/date","text/plain","2017-08-16"),i.rtdep("lib.Storage");var o={};o.windowType=null,o.zoomWarningMessage="ZOOM != 100%",o.notifyCopyMessage="✂",o.desktopNotificationTitle="♪ %(title) ♪",o.testDeps=["hterm.ScrollPort.Tests","hterm.Screen.Tests","hterm.Terminal.Tests","hterm.VT.Tests","hterm.VT.CannedTests"],i.registerInit("hterm",function(e){function t(t){o.windowType=t.type,setTimeout(e,0)}o.defaultStorage||(window.chrome&&chrome.storage&&chrome.storage.sync?o.defaultStorage=new i.Storage.Chrome(chrome.storage.sync):o.defaultStorage=new i.Storage.Local);var r=!1;if(window.chrome&&chrome.runtime&&chrome.runtime.getManifest){var s=chrome.runtime.getManifest();r=s.app&&s.app.background}r?setTimeout(t.bind(null,{type:"popup"}),0):window.chrome&&chrome.tabs?chrome.tabs.getCurrent(function(r){r&&window.chrome?chrome.windows.get(r.windowId,null,t):(o.windowType="normal",setTimeout(e,0))}):setTimeout(t.bind(null,{type:"normal"}),0)}),o.getClientSize=function(e){return e.getBoundingClientRect()},o.getClientWidth=function(e){return e.getBoundingClientRect().width},o.getClientHeight=function(e){return e.getBoundingClientRect().height},o.copySelectionToClipboard=function(e){try{e.execCommand("copy")}catch(e){}},o.pasteFromClipboard=function(e){try{return e.execCommand("paste")}catch(e){return!1}},o.notify=function(e){var t=(e,t)=>void 0!==e?e:t;void 0!==e&&null!==e||(e={});var r={body:e.body,icon:t(e.icon,i.resource.getDataUrl("hterm/images/icon-96"))},s=t(e.title,window.document.title);s||(s="hterm"),s=i.f.replaceVars(o.desktopNotificationTitle,{title:s});var n=new Notification(s,r);return n.onclick=function(){window.focus(),this.close()},n},o.Size=function(e,t){this.width=e,this.height=t},o.Size.prototype.resize=function(e,t){this.width=e,this.height=t},o.Size.prototype.clone=function(){return new o.Size(this.width,this.height)},o.Size.prototype.setTo=function(e){this.width=e.width,this.height=e.height},o.Size.prototype.equals=function(e){return this.width==e.width&&this.height==e.height},o.Size.prototype.toString=function(){return"[hterm.Size: "+this.width+", "+this.height+"]"},o.RowCol=function(e,t,r){this.row=e,this.column=t,this.overflow=!!r},o.RowCol.prototype.move=function(e,t,r){this.row=e,this.column=t,this.overflow=!!r},o.RowCol.prototype.clone=function(){return new o.RowCol(this.row,this.column,this.overflow)},o.RowCol.prototype.setTo=function(e){this.row=e.row,this.column=e.column,this.overflow=e.overflow},o.RowCol.prototype.equals=function(e){return this.row==e.row&&this.column==e.column&&this.overflow==e.overflow},o.RowCol.prototype.toString=function(){return"[hterm.RowCol: "+this.row+", "+this.column+", "+this.overflow+"]"},i.rtdep("lib.f"),o.Frame=function(e,t,r){this.terminal_=e,this.div_=e.div_,this.url=t,this.options=r||{},this.iframe_=null,this.container_=null,this.messageChannel_=null},o.Frame.prototype.onMessage_=function(e){switch(e.data.name){case"ipc-init-ok":return void this.sendTerminalInfo_();case"terminal-info-ok":return this.container_.style.display="flex",this.messageChannel_.port1.onmessage=this.onMessage.bind(this),void this.onLoad();default:return void console.log("Unknown message from frame:",e.data)}},o.Frame.prototype.onMessage=function(){},o.Frame.prototype.onLoad_=function(){this.messageChannel_=new MessageChannel,this.messageChannel_.port1.onmessage=this.onMessage_.bind(this),this.messageChannel_.port1.start(),this.iframe_.contentWindow.postMessage({name:"ipc-init",argv:[{messagePort:this.messageChannel_.port2}]},this.url,[this.messageChannel_.port2])},o.Frame.prototype.onLoad=function(){},o.Frame.prototype.sendTerminalInfo_=function(){i.f.getAcceptLanguages(function(e){this.postMessage("terminal-info",[{acceptLanguages:e,foregroundColor:this.terminal_.getForegroundColor(),backgroundColor:this.terminal_.getBackgroundColor(),cursorColor:this.terminal_.getCursorColor(),fontSize:this.terminal_.getFontSize(),fontFamily:this.terminal_.getFontFamily(),baseURL:i.f.getURL("/")}])}.bind(this))},o.Frame.prototype.onCloseClicked_=function(){this.close()},o.Frame.prototype.close=function(){this.container_&&this.container_.parentNode&&(this.container_.parentNode.removeChild(this.container_),this.onClose())},o.Frame.prototype.onClose=function(){},o.Frame.prototype.postMessage=function(e,t){if(!this.messageChannel_)throw new Error("Message channel is not set up.");this.messageChannel_.port1.postMessage({name:e,argv:t})},o.Frame.prototype.show=function(){function e(e,r){return e in t.options?t.options[e]:r}var t=this,t=this;if(this.container_&&this.container_.parentNode)console.error("Frame already visible");else{var r=o.getClientSize(this.div_),i=e("width",640),s=e("height",480),n=(r.width,r.height,this.terminal_.document_),a=this.container_=n.createElement("div");a.style.cssText="position: absolute;display: none;flex-direction: column;top: 10%;left: 4%;width: 90%;height: 80%;min-height: 20%;max-height: 80%;box-shadow: 0 0 2px "+this.terminal_.getForegroundColor()+";border: 2px "+this.terminal_.getForegroundColor()+" solid;";var l=this.iframe_=n.createElement("iframe");l.onload=this.onLoad_.bind(this),l.style.cssText="display: flex;flex: 1;width: 100%",l.setAttribute("src",this.url),l.setAttribute("seamless",!0),a.appendChild(l),this.div_.appendChild(a)}},i.rtdep("hterm.Keyboard.KeyMap"),o.Keyboard=function(e){this.terminal=e,this.keyboardElement_=null,this.handlers_=[["focusout",this.onFocusOut_.bind(this)],["keydown",this.onKeyDown_.bind(this)],["keypress",this.onKeyPress_.bind(this)],["keyup",this.onKeyUp_.bind(this)],["textInput",this.onTextInput_.bind(this)]],this.keyMap=new o.Keyboard.KeyMap(this),this.bindings=new o.Keyboard.Bindings(this),this.altGrMode="none",this.shiftInsertPaste=!0,this.homeKeysScroll=!1,this.pageKeysScroll=!1,this.ctrlPlusMinusZeroZoom=!0,this.ctrlCCopy=!1,this.ctrlVPaste=!1,this.applicationKeypad=!1,this.applicationCursor=!1,this.backspaceSendsBackspace=!1,this.characterEncoding="utf-8",this.metaSendsEscape=!0,this.passMetaV=!0,this.altSendsWhat="escape",this.altIsMeta=!1,this.altBackspaceIsMetaBackspace=!1,this.altKeyPressed=0,this.mediaKeysAreFKeys=!1,this.previousAltSendsWhat_=null},o.Keyboard.KeyActions={CANCEL:i.f.createEnum("CANCEL"),DEFAULT:i.f.createEnum("DEFAULT"),PASS:i.f.createEnum("PASS"),STRIP:i.f.createEnum("STRIP")},o.Keyboard.prototype.encode=function(e){return"utf-8"==this.characterEncoding?this.terminal.vt.encodeUTF8(e):e},o.Keyboard.prototype.installKeyboard=function(e){if(e!=this.keyboardElement_){e&&this.keyboardElement_&&this.installKeyboard(null);for(var t=0;t=32&&(r=e.charCode);r&&this.terminal.onVTKeystroke(String.fromCharCode(r)),e.preventDefault(),e.stopPropagation()}},o.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_=function(e){window.chrome&&window.chrome.app&&window.chrome.app.window&&(e.ctrlKey&&e.shiftKey||e.preventDefault())},o.Keyboard.prototype.onFocusOut_=function(e){this.altKeyPressed=0},o.Keyboard.prototype.onKeyUp_=function(e){18==e.keyCode&&(this.altKeyPressed=this.altKeyPressed&~(1<=64&&_<=95&&(f=String.fromCharCode(_-64))),u&&"8-bit"==this.altSendsWhat&&1==f.length){var _=f.charCodeAt(0)+128;f=String.fromCharCode(_)}(u&&"escape"==this.altSendsWhat||p&&this.metaSendsEscape)&&(f=""+f)}this.terminal.onVTKeystroke(f)}else console.warn("Invalid action: "+JSON.stringify(f))}else console.warn("No definition for keyCode: "+e.keyCode)},o.Keyboard.Bindings=function(){this.bindings_={}},o.Keyboard.Bindings.prototype.clear=function(){this.bindings_={}},o.Keyboard.Bindings.prototype.addBinding_=function(e,t){var r=null,i=this.bindings_[e.keyCode];if(i)for(var s=0;s",p,s(f,d),p,p],[191,"/?",p,i(a("_"),a("?")),p,p],[17,"[CTRL]",d,d,d,d],[18,"[ALT]",d,d,d,d],[91,"[LAPL]",d,d,d,d],[32," ",p,a("@"),p,p],[92,"[RAPL]",d,d,d,d],[93,"[RMENU]",d,d,d,d],[42,"[PRTSCR]",d,d,d,d],[145,"[SCRLK]",d,d,d,d],[19,"[BREAK]",d,d,d,d],[45,"[INSERT]",l("onKeyInsert_"),p,p,p],[36,"[HOME]",l("onKeyHome_"),p,p,p],[33,"[PGUP]",l("onKeyPageUp_"),p,p,p],[46,"[DEL]",l("onKeyDel_"),p,p,p],[35,"[END]",l("onKeyEnd_"),p,p,p],[34,"[PGDOWN]",l("onKeyPageDown_"),p,p,p],[38,"[UP]",l("onKeyArrowUp_"),p,p,p],[40,"[DOWN]",l("onKeyArrowDown_"),p,p,p],[39,"[RIGHT]",t("","OC"),p,p,p],[37,"[LEFT]",t("","OD"),p,p,p],[144,"[NUMLOCK]",d,d,d,d],[96,"[KP0]",p,p,p,p],[97,"[KP1]",p,p,p,p],[98,"[KP2]",p,p,p,p],[99,"[KP3]",p,p,p,p],[100,"[KP4]",p,p,p,p],[101,"[KP5]",p,p,p,p],[102,"[KP6]",p,p,p,p],[103,"[KP7]",p,p,p,p],[104,"[KP8]",p,p,p,p],[105,"[KP9]",p,p,p,p],[107,"[KP+]",p,l("onPlusMinusZero_"),p,l("onPlusMinusZero_")],[109,"[KP-]",p,l("onPlusMinusZero_"),p,l("onPlusMinusZero_")],[106,"[KP*]",p,p,p,p],[111,"[KP/]",p,p,p,p],[110,"[KP.]",p,p,p,p],[166,"[BACK]",h(n("OP","")),p,"[23~",p],[167,"[FWD]",h(n("OQ","")),p,"[24~",p],[168,"[RELOAD]",h(n("OR","")),p,"[25~",p],[183,"[FSCR]",h(n("OS","")),p,"[26~",p],[182,"[WINS]",h("[15~"),p,"[28~",p],[216,"[BRIT-]",h("[17~"),p,"[29~",p],[217,"[BRIT+]",h("[18~"),p,"[31~",p])},o.Keyboard.KeyMap.prototype.onKeyInsert_=function(e){return this.keyboard.shiftInsertPaste&&e.shiftKey?o.Keyboard.KeyActions.PASS:"[2~"},o.Keyboard.KeyMap.prototype.onKeyHome_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OH":(this.keyboard.terminal.scrollHome(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyEnd_=function(e){return!this.keyboard.homeKeysScroll^e.shiftKey?e.altKey||e.ctrlKey||e.shiftKey||!this.keyboard.applicationCursor?"":"OF":(this.keyboard.terminal.scrollEnd(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyPageUp_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[5~":(this.keyboard.terminal.scrollPageUp(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyDel_=function(e){return this.keyboard.altBackspaceIsMetaBackspace&&this.keyboard.altKeyPressed&&!e.altKey?"":"[3~"},o.Keyboard.KeyMap.prototype.onKeyPageDown_=function(e){return!this.keyboard.pageKeysScroll^e.shiftKey?"[6~":(this.keyboard.terminal.scrollPageDown(),o.Keyboard.KeyActions.CANCEL)},o.Keyboard.KeyMap.prototype.onKeyArrowUp_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineUp(),o.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OA"},o.Keyboard.KeyMap.prototype.onKeyArrowDown_=function(e){return!this.keyboard.applicationCursor&&e.shiftKey?(this.keyboard.terminal.scrollLineDown(),o.Keyboard.KeyActions.CANCEL):e.shiftKey||e.ctrlKey||e.altKey||e.metaKey||!this.keyboard.applicationCursor?"":"OB"},o.Keyboard.KeyMap.prototype.onClear_=function(e,t){return this.keyboard.terminal.wipeContents(),o.Keyboard.KeyActions.CANCEL},o.Keyboard.KeyMap.prototype.onCtrlNum_=function(e,t){function r(e){return String.fromCharCode(e.charCodeAt(0)-64)}if(this.keyboard.terminal.passCtrlNumber&&!e.shiftKey)return o.Keyboard.KeyActions.PASS;switch(t.keyCap.substr(0,1)){case"1":return"1";case"2":return r("@");case"3":return r("[");case"4":return r("\\");case"5":return r("]");case"6":return r("^");case"7":return r("_");case"8":return"";case"9":return"9"}},o.Keyboard.KeyMap.prototype.onAltNum_=function(e,t){return this.keyboard.terminal.passAltNumber&&!e.shiftKey?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onMetaNum_=function(e,t){return this.keyboard.terminal.passMetaNumber&&!e.shiftKey?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onCtrlC_=function(e,t){var r=this.keyboard.terminal.getDocument().getSelection();if(!r.isCollapsed){if(this.keyboard.ctrlCCopy&&!e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),o.Keyboard.KeyActions.PASS;if(!this.keyboard.ctrlCCopy&&e.shiftKey)return this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(r.collapseToEnd.bind(r),50),this.keyboard.terminal.copySelectionToClipboard(),o.Keyboard.KeyActions.CANCEL}return""},o.Keyboard.KeyMap.prototype.onCtrlN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.innerWidth+",height="+window.innerHeight),o.Keyboard.KeyActions.CANCEL):""},o.Keyboard.KeyMap.prototype.onCtrlV_=function(e,t){return!e.shiftKey&&this.keyboard.ctrlVPaste||e.shiftKey&&!this.keyboard.ctrlVPaste?this.keyboard.terminal.paste()?o.Keyboard.KeyActions.CANCEL:o.Keyboard.KeyActions.PASS:""},o.Keyboard.KeyMap.prototype.onMetaN_=function(e,t){return e.shiftKey?(window.open(document.location.href,"","chrome=no,close=yes,resize=yes,scrollbars=yes,minimizable=yes,width="+window.outerWidth+",height="+window.outerHeight),o.Keyboard.KeyActions.CANCEL):o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onMetaC_=function(e,t){var r=this.keyboard.terminal.getDocument();return e.shiftKey||r.getSelection().isCollapsed?t.keyCap.substr(e.shiftKey?1:0,1):(this.keyboard.terminal.clearSelectionAfterCopy&&setTimeout(function(){r.getSelection().collapseToEnd()},50),o.Keyboard.KeyActions.PASS)},o.Keyboard.KeyMap.prototype.onMetaV_=function(e,t){return e.shiftKey?o.Keyboard.KeyActions.PASS:this.keyboard.passMetaV?o.Keyboard.KeyActions.PASS:o.Keyboard.KeyActions.DEFAULT},o.Keyboard.KeyMap.prototype.onPlusMinusZero_=function(e,t){if(!(this.keyboard.ctrlPlusMinusZeroZoom^e.shiftKey))return"-_"==t.keyCap?"":o.Keyboard.KeyActions.CANCEL;if(1!=this.keyboard.terminal.getZoomFactor())return o.Keyboard.KeyActions.PASS;var r=t.keyCap.substr(0,1);if("0"==r)this.keyboard.terminal.setFontSize(0);else{var i=this.keyboard.terminal.getFontSize();"-"==r||"[KP-]"==t.keyCap?i-=1:i+=1,this.keyboard.terminal.setFontSize(i)}return o.Keyboard.KeyActions.CANCEL},o.Keyboard.KeyPattern=function(e){this.wildcardCount=0,this.keyCode=e.keyCode,o.Keyboard.KeyPattern.modifiers.forEach(function(t){this[t]=e[t]||!1,"*"==this[t]&&this.wildcardCount++}.bind(this))},o.Keyboard.KeyPattern.modifiers=["shift","ctrl","alt","meta"],o.Keyboard.KeyPattern.sortCompare=function(e,t){return e.wildcardCountt.wildcardCount?1:0},o.Keyboard.KeyPattern.prototype.match_=function(e,t){if(this.keyCode!=e.keyCode)return!1;var r=!0;return o.Keyboard.KeyPattern.modifiers.forEach(function(i){var o=i in e&&e[i];r&&(t||"*"!=this[i])&&this[i]!=o&&(r=!1)}.bind(this)),r},o.Keyboard.KeyPattern.prototype.matchKeyDown=function(e){return this.match_(e,!1)},o.Keyboard.KeyPattern.prototype.matchKeyPattern=function(e){return this.match_(e,!0)},o.Options=function(e){this.wraparound=!e||e.wraparound,this.reverseWraparound=!!e&&e.reverseWraparound,this.originMode=!!e&&e.originMode,this.autoCarriageReturn=!!e&&e.autoCarriageReturn,this.cursorVisible=!!e&&e.cursorVisible,this.cursorBlink=!!e&&e.cursorBlink,this.insertMode=!!e&&e.insertMode,this.reverseVideo=!!e&&e.reverseVideo,this.bracketedPaste=!!e&&e.bracketedPaste},i.rtdep("hterm.Keyboard.KeyActions"),o.Parser=function(){this.source="",this.pos=0,this.ch=null},o.Parser.prototype.error=function(e){return new Error("Parse error at "+this.pos+": "+e)},o.Parser.prototype.isComplete=function(){return this.pos==this.source.length},o.Parser.prototype.reset=function(e,t){this.source=e,this.pos=t||0,this.ch=e.substr(0,1)},o.Parser.prototype.parseKeySequence=function(){var e={keyCode:null};for(var t in o.Parser.identifiers.modifierKeys)e[o.Parser.identifiers.modifierKeys[t]]=!1;for(;this.pos 'none', else => 'right-alt'\n'none': Disable any AltGr related munging.\n'ctrl-alt': Assume Ctrl+Alt means AltGr.\n'left-alt': Assume left Alt means AltGr.\n'right-alt': Assume right Alt means AltGr.\n"],"alt-backspace-is-meta-backspace":[o.PreferenceManager.categories.Keyboard,!1,"bool","If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that alt-backspace indeed is alt-backspace."],"alt-is-meta":[o.PreferenceManager.categories.Keyboard,!1,"bool","Set whether the alt key acts as a meta key or as a distinct alt key."],"alt-sends-what":[o.PreferenceManager.categories.Keyboard,"escape",["escape","8-bit","browser-key"],"Controls how the alt key is handled.\n\n escape....... Send an ESC prefix.\n 8-bit........ Add 128 to the unshifted character as in xterm.\n browser-key.. Wait for the keypress event and see what the browser \n says. (This won't work well on platforms where the \n browser performs a default action for some alt sequences.)"],"audible-bell-sound":[o.PreferenceManager.categories.Sounds,"lib-resource:hterm/audio/bell","url","URL of the terminal bell sound. Empty string for no audible bell."],"desktop-notification-bell":[o.PreferenceManager.categories.Sounds,!1,"bool",'If true, terminal bells in the background will create a Web Notification. https://www.w3.org/TR/notifications/\n\nDisplaying notifications requires permission from the user. When this option is set to true, hterm will attempt to ask the user for permission if necessary. Note browsers may not show this permission request if it did not originate from a user action.\n\nChrome extensions with the "notifications" permission have permission to display notifications.'],"background-color":[o.PreferenceManager.categories.Appearance,"rgb(16, 16, 16)","color","The background color for text with no other color attributes."],"background-image":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image. Empty string for no image.\n\nFor example:\n url(https://goo.gl/anedTK)\n linear-gradient(top bottom, blue, red)"],"background-size":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image size. Defaults to none."],"background-position":[o.PreferenceManager.categories.Appearance,"","string","CSS value of the background image position.\n\nFor example:\n 10% 10%\n center"],"backspace-sends-backspace":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, the backspace should send BS ('\\x08', aka ^H). Otherwise the backspace key should send '\\x7f'."],"character-map-overrides":[o.PreferenceManager.categories.Appearance,null,"value",'This is specified as an object. It is a sparse array, where each property is the character set code and the value is an object that is a sparse array itself. In that sparse array, each property is the received character and the value is the displayed character.\n\nFor example:\n {"0":{"+":"\\u2192",",":"\\u2190","-":"\\u2191",".":"\\u2193", "0":"\\u2588"}}'],"close-on-exit":[o.PreferenceManager.categories.Miscellaneous,!0,"bool","Whether or not to close the window when the command exits."],"cursor-blink":[o.PreferenceManager.categories.Appearance,!1,"bool","Whether or not to blink the cursor by default."],"cursor-blink-cycle":[o.PreferenceManager.categories.Appearance,[1e3,500],"value","The cursor blink rate in milliseconds.\n\nA two element array, the first of which is how long the cursor should be on, second is how long it should be off."],"cursor-color":[o.PreferenceManager.categories.Appearance,"rgba(255, 0, 0, 0.5)","color","The color of the visible cursor."],"color-palette-overrides":[o.PreferenceManager.categories.Appearance,null,"value","Override colors in the default palette.\n\nThis can be specified as an array or an object. If specified as an object it is assumed to be a sparse array, where each property is a numeric index into the color palette.\n\nValues can be specified as almost any css color value. This includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names that are also part of the stock X11 rgb.txt file.\n\nYou can use 'null' to specify that the default value should be not be changed. This is useful for skipping a small number of indices when the value is specified as an array."],"copy-on-select":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Automatically copy mouse selection to the clipboard."],"use-default-window-copy":[o.PreferenceManager.categories.CopyPaste,!1,"bool","Whether to use the default window copy behavior"],"clear-selection-after-copy":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Whether to clear the selection after copying."],"ctrl-plus-minus-zero-zoom":[o.PreferenceManager.categories.Keyboard,!0,"bool","If true, Ctrl-Plus/Minus/Zero controls zoom.\nIf false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, Ctrl-Plus/Zero do nothing."],"ctrl-c-copy":[o.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+C copies if true, send ^C to host if false.\nCtrl+Shift+C sends ^C to host if true, copies if false."],"ctrl-v-paste":[o.PreferenceManager.categories.Keyboard,!1,"bool","Ctrl+V pastes if true, send ^V to host if false.\nCtrl+Shift+V sends ^V to host if true, pastes if false."],"east-asian-ambiguous-as-two-column":[o.PreferenceManager.categories.Keyboard,!1,"bool","Set whether East Asian Ambiguous characters have two column width."],"enable-8-bit-control":[o.PreferenceManager.categories.Keyboard,!1,"bool","True to enable 8-bit control characters, false to ignore them.\n\nWe'll respect the two-byte versions of these control characters regardless of this setting."],"enable-bold":[o.PreferenceManager.categories.Appearance,null,"tristate","True if we should use bold weight font for text with the bold/bright attribute. False to use the normal weight font. Null to autodetect."],"enable-bold-as-bright":[o.PreferenceManager.categories.Appearance,!0,"bool","True if we should use bright colors (8-15 on a 16 color palette) for any text with the bold attribute. False otherwise."],"enable-blink":[o.PreferenceManager.categories.Appearance,!0,"bool","True if we should respect the blink attribute. False to ignore it. "],"enable-clipboard-notice":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Show a message in the terminal when the host writes to the clipboard."],"enable-clipboard-write":[o.PreferenceManager.categories.CopyPaste,!0,"bool","Allow the host to write directly to the system clipboard."],"enable-dec12":[o.PreferenceManager.categories.Miscellaneous,!1,"bool","Respect the host's attempt to change the cursor blink status using DEC Private Mode 12."],environment:[o.PreferenceManager.categories.Miscellaneous,{TERM:"xterm-256color"},"value","The default environment variables, as an object."],"font-family":[o.PreferenceManager.categories.Appearance,'"DejaVu Sans Mono", "Everson Mono", FreeMono, "Menlo", "Terminal", monospace',"string","Default font family for the terminal text."],"font-size":[o.PreferenceManager.categories.Appearance,15,"int","The default font size in pixels."],"font-smoothing":[o.PreferenceManager.categories.Appearance,"antialiased","string","CSS font-smoothing property."],"foreground-color":[o.PreferenceManager.categories.Appearance,"rgb(240, 240, 240)","color","The foreground color for text with no other color attributes."],"home-keys-scroll":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, home/end will control the terminal scrollbar and shift home/end will send the VT keycodes. If false then home/end sends VT codes and shift home/end scrolls."],keybindings:[o.PreferenceManager.categories.Keyboard,null,"value",'A map of key sequence to key actions. Key sequences include zero or more modifier keys followed by a key code. Key codes can be decimal or hexadecimal numbers, or a key identifier. Key actions can be specified a string to send to the host, or an action identifier. For a full explanation of the format, see https://goo.gl/LWRndr.\n\nSample keybindings:\n{\n "Ctrl-Alt-K": "clearScrollback",\n "Ctrl-Shift-L": "PASS",\n "Ctrl-H": "\'HELLO\\n\'"\n}'],"max-string-sequence":[o.PreferenceManager.categories.Encoding,1e5,"int","Max length of a DCS, OSC, PM, or APS sequence before we give up and ignore the code."],"media-keys-are-fkeys":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, convert media keys to their Fkey equivalent. If false, let the browser handle the keys."],"meta-sends-escape":[o.PreferenceManager.categories.Keyboard,!0,"bool","Set whether the meta key sends a leading escape or not."],"mouse-right-click-paste":[o.PreferenceManager.categories.CopyPaste,!0,"bool",'Paste on right mouse button clicks.\n\nThis option is activate independent of the "mouse-paste-button" setting.\n\nNote: This will handle left & right handed mice correctly.'],"mouse-paste-button":[o.PreferenceManager.categories.CopyPaste,null,[null,0,1,2,3,4,5,6],"Mouse paste button, or null to autodetect.\n\nFor autodetect, we'll use the middle mouse button for non-X11 platforms (including Chrome OS). On X11, we'll use the right mouse button (since the native window manager should paste via the middle mouse button).\n\n0 == left (primary) button.\n1 == middle (auxiliary) button.\n2 == right (secondary) button.\n\nThis option is activate independent of the \"mouse-right-click-paste\" setting.\n\nNote: This will handle left & right handed mice correctly."],"word-break-match-left":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:`]","string",'Regular expression to halt matching to the left (start) of a selection.\n\nNormally this is a character class to reject specific characters.\nWe allow "~" and "." by default as paths frequently start with those.'],"word-break-match-right":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^!@#$%&*,;:~.`]","string","Regular expression to halt matching to the right (end) of a selection.\n\nNormally this is a character class to reject specific characters."],"word-break-match-middle":[o.PreferenceManager.categories.CopyPaste,"[^\\s\\[\\](){}<>\"'\\^]*","string","Regular expression to match all the characters in the middle.\n\nNormally this is a character class to reject specific characters.\n\nUsed to expand the selection surrounding the starting point."],"page-keys-scroll":[o.PreferenceManager.categories.Keyboard,!1,"bool","If true, page up/down will control the terminal scrollbar and shift page up/down will send the VT keycodes. If false then page up/down sends VT codes and shift page up/down scrolls."],"pass-alt-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Alt-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-ctrl-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Ctrl-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-number":[o.PreferenceManager.categories.Keyboard,null,"tristate","Set whether we should pass Meta-1..9 to the browser.\n\nThis is handy when running hterm in a browser tab, so that you don't lose Chrome's \"switch to tab\" keyboard accelerators. When not running in a tab it's better to send these keys to the host so they can be used in vim or emacs.\n\nIf true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 will be sent to the host. If null, autodetect based on browser platform and window type."],"pass-meta-v":[o.PreferenceManager.categories.Keyboard,!0,"bool","Set whether meta-V gets passed to host."],"receive-encoding":[o.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the expected encoding for data received from the host.\n\nValid values are 'utf-8' and 'raw'."],"scroll-on-keystroke":[o.PreferenceManager.categories.Scrolling,!0,"bool","If true, scroll to the bottom on any keystroke."],"scroll-on-output":[o.PreferenceManager.categories.Scrolling,!1,"bool","If true, scroll to the bottom on terminal output."],"scrollbar-visible":[o.PreferenceManager.categories.Scrolling,!0,"bool","The vertical scrollbar mode."],"scroll-wheel-may-send-arrow-keys":[o.PreferenceManager.categories.Scrolling,!1,"bool","When using the alternative screen buffer, and DECCKM (Application Cursor Keys) is active, mouse wheel scroll events will emulate arrow keys.\n\nIt can be temporarily disabled by holding the shift key.\n\nThis frequently comes up when using pagers (less) or reading man pages or text editors (vi/nano) or using screen/tmux."],"scroll-wheel-move-multiplier":[o.PreferenceManager.categories.Scrolling,1,"int","The multiplier for the pixel delta in wheel events caused by the scroll wheel. Alters how fast the page scrolls."],"send-encoding":[o.PreferenceManager.categories.Encoding,"utf-8",["utf-8","raw"],"Set the encoding for data sent to host."],"terminal-encoding":[o.PreferenceManager.categories.Encoding,"iso-2022",["iso-2022","utf-8","utf-8-locked"],"The default terminal encoding (DOCS).\n\nISO-2022 enables character map translations (like graphics maps).\nUTF-8 disables support for those.\n\nThe locked variant means the encoding cannot be changed at runtime via terminal escape sequences.\n\nYou should stick with UTF-8 unless you notice broken rendering with legacy applications."],"shift-insert-paste":[o.PreferenceManager.categories.Keyboard,!0,"bool","Shift + Insert pastes if true, sent to host if false."],"user-css":[o.PreferenceManager.categories.Appearance,"","url","URL of user stylesheet to include in the terminal document."],"user-css-text":[o.PreferenceManager.categories.Appearance,"","multiline-string","Custom CSS text for styling the terminal."]},o.PreferenceManager.prototype=Object.create(i.PreferenceManager.prototype),o.PreferenceManager.constructor=o.PreferenceManager,o.PubSub=function(){this.observers_={}},o.PubSub.addBehavior=function(e){var t=new o.PubSub;for(var r in o.PubSub.prototype)e[r]=o.PubSub.prototype[r].bind(t)},o.PubSub.prototype.subscribe=function(e,t){e in this.observers_||(this.observers_[e]=[]),this.observers_[e].push(t)},o.PubSub.prototype.unsubscribe=function(e,t){var r=this.observers_[e];if(!r)throw"Invalid subject: "+e;var i=r.indexOf(t);if(i<0)throw"Not subscribed: "+e;r.splice(i,1)},o.PubSub.prototype.publish=function(e,t,r){function i(e){e=e&&this.setCursorPosition(this.cursorPosition.row,e-1)},o.Screen.prototype.shiftRow=function(){return this.shiftRows(1)[0]},o.Screen.prototype.shiftRows=function(e){return this.rowsArray.splice(0,e)},o.Screen.prototype.unshiftRow=function(e){this.rowsArray.splice(0,0,e)},o.Screen.prototype.unshiftRows=function(e){this.rowsArray.unshift.apply(this.rowsArray,e)},o.Screen.prototype.popRow=function(){return this.popRows(1)[0]},o.Screen.prototype.popRows=function(e){return this.rowsArray.splice(this.rowsArray.length-e,e)},o.Screen.prototype.pushRow=function(e){this.rowsArray.push(e)},o.Screen.prototype.pushRows=function(e){e.push.apply(this.rowsArray,e)},o.Screen.prototype.insertRow=function(e,t){this.rowsArray.splice(e,0,t)},o.Screen.prototype.insertRows=function(e,t){for(var r=0;r=this.rowsArray.length?(console.error("Row out of bounds: "+e),e=this.rowsArray.length-1):e<0&&(console.error("Row out of bounds: "+e),e=0),t>=this.columnCount_?(console.error("Column out of bounds: "+t),t=this.columnCount_-1):t<0&&(console.error("Column out of bounds: "+t),t=0),this.cursorPosition.overflow=!1;var r=this.rowsArray[e],i=r.firstChild;i||(i=r.ownerDocument.createTextNode(""),r.appendChild(i));var s=0;for(r==this.cursorRowNode_?t>=this.cursorPosition.column-this.cursorOffset_&&(i=this.cursorNode_,s=this.cursorPosition.column-this.cursorOffset_):this.cursorRowNode_=r,this.cursorPosition.move(e,t);i;){var n=t-s,a=o.TextAttributes.nodeWidth(i);if(!i.nextSibling||a>n)return this.cursorNode_=i,void(this.cursorOffset_=n);s+=a,i=i.nextSibling}}else console.warn("Attempt to set cursor position on empty screen.")},o.Screen.prototype.syncSelectionCaret=function(e){try{e.collapse(this.cursorNode_,this.cursorOffset_)}catch(e){}},o.Screen.prototype.splitNode_=function(e,t){var r=e.cloneNode(!1),s=e.textContent;e.textContent=o.TextAttributes.nodeSubstr(e,0,t),r.textContent=i.wc.substr(s,t),r.textContent&&e.parentNode.insertBefore(r,e.nextSibling),e.textContent||e.parentNode.removeChild(e)},o.Screen.prototype.maybeClipCurrentRow=function(){var e=o.TextAttributes.nodeWidth(this.cursorRowNode_);if(e<=this.columnCount_)this.cursorPosition.column>=this.columnCount_&&(this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),this.cursorPosition.overflow=!0);else{var t=this.cursorPosition.column;this.setCursorPosition(this.cursorPosition.row,this.columnCount_-1),e=o.TextAttributes.nodeWidth(this.cursorNode_),this.cursorOffset_o.TextAttributes.nodeWidth(e);){if(!e.hasAttribute("line-overflow")||!e.nextSibling)return-1;t-=o.TextAttributes.nodeWidth(e),e=e.nextSibling}return this.getNodeAndOffsetWithinRow_(e,t)},o.Screen.prototype.getNodeAndOffsetWithinRow_=function(e,t){for(var r=0;ro)){var d=i.wc.substring(h,o,i.wc.strWidth(h)),f=new RegExp("^"+l+a),g=d.match(f);if(g){var m=o+i.wc.strWidth(g[0]);-1==m||ms.rowIndex)t();else if(i.focusNode==i.anchorNode)i.anchorOffset=this.lastRowCount_},o.ScrollPort.prototype.drawTopFold_=function(e){if(!this.selection.startRow||this.selection.startRow.rowIndex>=e)this.rowNodes_.firstChild!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.rowNodes_.firstChild);else{if(!this.selection.isMultiline||this.selection.endRow.rowIndex>=e)this.selection.startRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.startRow.nextSibling);else for(this.selection.endRow.nextSibling!=this.topFold_&&this.rowNodes_.insertBefore(this.topFold_,this.selection.endRow.nextSibling);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.firstChild!=this.selection.startRow;)this.rowNodes_.removeChild(this.rowNodes_.firstChild)}},o.ScrollPort.prototype.drawBottomFold_=function(e){if(!this.selection.endRow||this.selection.endRow.rowIndex<=e)this.rowNodes_.lastChild!=this.bottomFold_&&this.rowNodes_.appendChild(this.bottomFold_);else{if(!this.selection.isMultiline||this.selection.startRow.rowIndex<=e)this.bottomFold_.nextSibling!=this.selection.endRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.endRow);else for(this.bottomFold_.nextSibling!=this.selection.startRow&&this.rowNodes_.insertBefore(this.bottomFold_,this.selection.startRow);this.selection.startRow.nextSibling!=this.selection.endRow;)this.rowNodes_.removeChild(this.selection.startRow.nextSibling);for(;this.rowNodes_.lastChild!=this.selection.endRow;)this.rowNodes_.removeChild(this.rowNodes_.lastChild)}},o.ScrollPort.prototype.drawVisibleRows_=function(e,t){function r(e,t){for(;e!=t;){if(!e)throw"Did not encounter target node";if(e==i.bottomFold_)throw"Encountered bottom fold before target node";var r=e;e=e.nextSibling,r.parentNode.removeChild(r)}}for(var i=this,o=this.selection.startRow,s=this.selection.endRow,n=this.bottomFold_,a=this.topFold_.nextSibling,l=Math.min(this.visibleRowCount,this.rowProvider_.getRowCount()),h=0;h=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin,r=this.getScrollMax_();t>r&&(t=r),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t,this.scheduleRedraw())},o.ScrollPort.prototype.scrollRowToBottom=function(e){this.syncScrollHeight(),this.isScrolledEnd=e+this.visibleRowCount>=this.lastRowCount_;var t=e*this.characterSize.height+this.visibleRowTopMargin+this.visibleRowBottomMargin;(t-=this.visibleRowCount*this.characterSize.height)<0&&(t=0),this.screen_.scrollTop!=t&&(this.screen_.scrollTop=t)},o.ScrollPort.prototype.getTopRowIndex=function(){return Math.round(this.screen_.scrollTop/this.characterSize.height)},o.ScrollPort.prototype.getBottomRowIndex=function(e){return e+this.visibleRowCount-1},o.ScrollPort.prototype.onScroll_=function(e){var t=this.getScreenSize();t.width==this.lastScreenWidth_&&t.height==this.lastScreenHeight_?(this.redraw_(),this.publish("scroll",{scrollPort:this})):this.resize()},o.ScrollPort.prototype.onScrollWheel=function(e){},o.ScrollPort.prototype.onScrollWheel_=function(e){if(this.onScrollWheel(e),!e.defaultPrevented){var t=this.scrollWheelDelta(e),r=this.screen_.scrollTop-t;r<0&&(r=0);var i=this.getScrollMax_();r>i&&(r=i),r!=this.screen_.scrollTop&&(this.screen_.scrollTop=r,e.preventDefault())}},o.ScrollPort.prototype.scrollWheelDelta=function(e){var t;switch(e.deltaMode){case WheelEvent.DOM_DELTA_PIXEL:t=e.deltaY*this.scrollWheelMultiplier_;break;case WheelEvent.DOM_DELTA_LINE:t=e.deltaY*this.characterSize.height;break;case WheelEvent.DOM_DELTA_PAGE:t=e.deltaY*this.characterSize.height*this.screen_.getHeight()}return-1*t},o.ScrollPort.prototype.onTouch=function(e){},o.ScrollPort.prototype.onTouch_=function(e){if(this.onTouch(e),!e.defaultPrevented){var t,r,i=function(e){return{id:e.identifier,y:e.clientY,x:e.clientX}};switch(e.type){case"touchstart":for(t=0;tn&&(s=n),s!=this.screen_.scrollTop&&(this.screen_.scrollTop=s)}e.preventDefault()}},o.ScrollPort.prototype.onResize_=function(e){this.syncCharacterSize(),this.resize()},o.ScrollPort.prototype.onCopy=function(e){},o.ScrollPort.prototype.onCopy_=function(e){if(this.onCopy(e),!e.defaultPrevented&&(this.resetSelectBags_(),this.selection.sync(),this.selection.startRow&&!(this.selection.endRow.rowIndex-this.selection.startRow.rowIndex<2))){var t=this.getTopRowIndex(),r=this.getBottomRowIndex(t);if(this.selection.startRow.rowIndexr){var o;o=this.selection.startRow.rowIndex>r?this.selection.startRow.rowIndex+1:this.bottomFold_.previousSibling.rowIndex+1,this.bottomSelectBag_.textContent=this.rowProvider_.getRowsText(o,this.selection.endRow.rowIndex),this.rowNodes_.insertBefore(this.bottomSelectBag_,this.selection.endRow)}}},o.ScrollPort.prototype.onBodyKeyDown_=function(e){if(this.ctrlVPaste){var t=String.fromCharCode(e.which).toLowerCase();(e.ctrlKey||e.metaKey)&&"v"==t&&this.pasteTarget_.focus()}},o.ScrollPort.prototype.onPaste_=function(e){this.pasteTarget_.focus();var t=this;setTimeout(function(){t.publish("paste",{text:t.pasteTarget_.value}),t.pasteTarget_.value="",t.screen_.focus()},0)},o.ScrollPort.prototype.handlePasteTargetTextInput_=function(e){e.stopPropagation()},o.ScrollPort.prototype.setScrollbarVisible=function(e){this.screen_.style.overflowY=e?"scroll":"hidden"},o.ScrollPort.prototype.setScrollWheelMoveMultipler=function(e){this.scrollWheelMultiplier_=e},i.rtdep("lib.colors","lib.PreferenceManager","lib.resource","lib.wc","lib.f","hterm.Keyboard","hterm.Options","hterm.PreferenceManager","hterm.Screen","hterm.ScrollPort","hterm.Size","hterm.TextAttributes","hterm.VT"),o.Terminal=function(e){this.profileId_=null,this.primaryScreen_=new o.Screen,this.alternateScreen_=new o.Screen,this.screen_=this.primaryScreen_,this.screenSize=new o.Size(0,0),this.scrollPort_=new o.ScrollPort(this),this.scrollPort_.subscribe("resize",this.onResize_.bind(this)),this.scrollPort_.subscribe("scroll",this.onScroll_.bind(this)),this.scrollPort_.subscribe("paste",this.onPaste_.bind(this)),this.scrollPort_.onCopy=this.onCopy_.bind(this),this.div_=null,this.document_=window.document,this.scrollbackRows_=[],this.tabStops_=[],this.defaultTabStops=!0,this.vtScrollTop_=null,this.vtScrollBottom_=null,this.cursorNode_=null,this.cursorShape_=o.Terminal.cursorShape.BLOCK,this.cursorColor_=null,this.cursorBlinkCycle_=[100,100],this.myOnCursorBlink_=this.onCursorBlink_.bind(this),this.backgroundColor_=null,this.foregroundColor_=null,this.scrollOnOutput_=null,this.scrollOnKeystroke_=null,this.scrollWheelArrowKeys_=null,this.defeatMouseReports_=!1,this.bellAudio_=this.document_.createElement("audio"),this.bellAudio_.id="hterm:bell-audio",this.bellAudio_.setAttribute("preload","auto"),this.bellNotificationList_=[],this.desktopNotificationBell_=!1,this.savedOptions_={},this.options_=new o.Options,this.timeouts_={},this.vt=new o.VT(this),this.keyboard=new o.Keyboard(this),this.io=new o.Terminal.IO(this),this.enableMouseDragScroll=!0,this.copyOnSelect=null,this.mouseRightClickPaste=null,this.mousePasteButton=null,this.useDefaultWindowCopy=!1,this.clearSelectionAfterCopy=!0,this.realizeSize_(80,24),this.setDefaultTabStops(),this.setProfile(e||"default",function(){this.onTerminalReady()}.bind(this))},o.Terminal.cursorShape={BLOCK:"BLOCK",BEAM:"BEAM",UNDERLINE:"UNDERLINE"},o.Terminal.prototype.onTerminalReady=function(){},o.Terminal.prototype.tabWidth=8,o.Terminal.prototype.setProfile=function(e,t){this.profileId_=e.replace(/\//g,"");var r=this;this.prefs_&&this.prefs_.deactivate(),this.prefs_=new o.PreferenceManager(this.profileId_),this.prefs_.addObservers(null,{"alt-gr-mode":function(e){e=null==e?"en-us"==navigator.language.toLowerCase()?"none":"right-alt":"string"==typeof e?e.toLowerCase():"none",/^(none|ctrl-alt|left-alt|right-alt)$/.test(e)||(e="none"),r.keyboard.altGrMode=e},"alt-backspace-is-meta-backspace":function(e){r.keyboard.altBackspaceIsMetaBackspace=e},"alt-is-meta":function(e){r.keyboard.altIsMeta=e},"alt-sends-what":function(e){/^(escape|8-bit|browser-key)$/.test(e)||(e="escape"),r.keyboard.altSendsWhat=e},"audible-bell-sound":function(e){var t=e.match(/^lib-resource:(\S+)/);t?r.bellAudio_.setAttribute("src",i.resource.getDataUrl(t[1])):r.bellAudio_.setAttribute("src",e)},"desktop-notification-bell":function(e){e&&Notification?(r.desktopNotificationBell_="granted"===Notification.permission,r.desktopNotificationBell_||console.warn("desktop-notification-bell is true but we do not have permission to display notifications.")):r.desktopNotificationBell_=!1},"background-color":function(e){r.setBackgroundColor(e)},"background-image":function(e){r.scrollPort_.setBackgroundImage(e)},"background-size":function(e){r.scrollPort_.setBackgroundSize(e)},"background-position":function(e){r.scrollPort_.setBackgroundPosition(e)},"backspace-sends-backspace":function(e){r.keyboard.backspaceSendsBackspace=e},"character-map-overrides":function(e){null==e||e instanceof Object?(r.vt.characterMaps.reset(),r.vt.characterMaps.setOverrides(e)):console.warn("Preference character-map-modifications is not an object: "+e)},"cursor-blink":function(e){r.setCursorBlink(!!e)},"cursor-blink-cycle":function(e){e instanceof Array&&"number"==typeof e[0]&&"number"==typeof e[1]?r.cursorBlinkCycle_=e:r.cursorBlinkCycle_="number"==typeof e?[e,e]:[100,100]},"cursor-color":function(e){r.setCursorColor(e)},"color-palette-overrides":function(e){if(null==e||e instanceof Object||e instanceof Array){if(i.colors.colorPalette=i.colors.stockColorPalette.concat(),e)for(var t in e){var o=parseInt(t);if(isNaN(o)||o<0||o>255)console.log("Invalid value in palette: "+t+": "+e[t]);else if(e[o]){var s=i.colors.normalizeCSS(e[o]);s&&(i.colors.colorPalette[o]=s)}}r.primaryScreen_.textAttributes.resetColorPalette(),r.alternateScreen_.textAttributes.resetColorPalette()}else console.warn("Preference color-palette-overrides is not an array or object: "+e)},"copy-on-select":function(e){r.copyOnSelect=!!e},"use-default-window-copy":function(e){r.useDefaultWindowCopy=!!e},"clear-selection-after-copy":function(e){r.clearSelectionAfterCopy=!!e},"ctrl-plus-minus-zero-zoom":function(e){r.keyboard.ctrlPlusMinusZeroZoom=e},"ctrl-c-copy":function(e){r.keyboard.ctrlCCopy=e},"ctrl-v-paste":function(e){r.keyboard.ctrlVPaste=e,r.scrollPort_.setCtrlVPaste(e)},"east-asian-ambiguous-as-two-column":function(e){i.wc.regardCjkAmbiguous=e},"enable-8-bit-control":function(e){r.vt.enable8BitControl=!!e},"enable-bold":function(e){r.syncBoldSafeState()},"enable-bold-as-bright":function(e){r.primaryScreen_.textAttributes.enableBoldAsBright=!!e,r.alternateScreen_.textAttributes.enableBoldAsBright=!!e},"enable-blink":function(e){r.syncBlinkState()},"enable-clipboard-write":function(e){r.vt.enableClipboardWrite=!!e},"enable-dec12":function(e){r.vt.enableDec12=!!e},"font-family":function(e){r.syncFontFamily()},"font-size":function(e){r.setFontSize(e)},"font-smoothing":function(e){r.syncFontFamily()},"foreground-color":function(e){r.setForegroundColor(e)},"home-keys-scroll":function(e){r.keyboard.homeKeysScroll=e},keybindings:function(e){if(r.keyboard.bindings.clear(),e)if(e instanceof Object)try{r.keyboard.bindings.addBindings(e)}catch(e){console.error("Error in keybindings preference: "+e)}else console.error("Error in keybindings preference: Expected object")},"max-string-sequence":function(e){r.vt.maxStringSequence=e},"media-keys-are-fkeys":function(e){r.keyboard.mediaKeysAreFKeys=e},"meta-sends-escape":function(e){r.keyboard.metaSendsEscape=e},"mouse-right-click-paste":function(e){r.mouseRightClickPaste=e},"mouse-paste-button":function(e){r.syncMousePasteButton()},"page-keys-scroll":function(e){r.keyboard.pageKeysScroll=e},"pass-alt-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passAltNumber=e},"pass-ctrl-number":function(e){null==e&&(e=!window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passCtrlNumber=e},"pass-meta-number":function(e){null==e&&(e=window.navigator.userAgent.match(/Mac OS X/)&&"popup"!=o.windowType),r.passMetaNumber=e},"pass-meta-v":function(e){r.keyboard.passMetaV=e},"receive-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "receive-encoding": '+e),e="utf-8"),r.vt.characterEncoding=e},"scroll-on-keystroke":function(e){r.scrollOnKeystroke_=e},"scroll-on-output":function(e){r.scrollOnOutput_=e},"scrollbar-visible":function(e){r.setScrollbarVisible(e)},"scroll-wheel-may-send-arrow-keys":function(e){r.scrollWheelArrowKeys_=e},"scroll-wheel-move-multiplier":function(e){r.setScrollWheelMoveMultipler(e)},"send-encoding":function(e){/^(utf-8|raw)$/.test(e)||(console.warn('Invalid value for "send-encoding": '+e),e="utf-8"),r.keyboard.characterEncoding=e},"shift-insert-paste":function(e){r.keyboard.shiftInsertPaste=e},"terminal-encoding":function(e){r.vt.setEncoding(e)},"user-css":function(e){r.scrollPort_.setUserCssUrl(e)},"user-css-text":function(e){r.scrollPort_.setUserCssText(e)},"word-break-match-left":function(e){r.primaryScreen_.wordBreakMatchLeft=e,r.alternateScreen_.wordBreakMatchLeft=e},"word-break-match-right":function(e){r.primaryScreen_.wordBreakMatchRight=e,r.alternateScreen_.wordBreakMatchRight=e},"word-break-match-middle":function(e){r.primaryScreen_.wordBreakMatchMiddle=e,r.alternateScreen_.wordBreakMatchMiddle=e}}),this.prefs_.readStorage(function(){this.prefs_.notifyAll(),t&&t()}.bind(this))},o.Terminal.prototype.getPrefs=function(){return this.prefs_},o.Terminal.prototype.setBracketedPaste=function(e){this.options_.bracketedPaste=e},o.Terminal.prototype.setCursorColor=function(e){this.cursorColor_=e,this.cursorNode_.style.backgroundColor=e,this.cursorNode_.style.borderColor=e},o.Terminal.prototype.getCursorColor=function(){return this.cursorColor_},o.Terminal.prototype.setSelectionEnabled=function(e){this.enableMouseDragScroll=e},o.Terminal.prototype.setBackgroundColor=function(e){this.backgroundColor_=i.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setBackgroundColor(e)},o.Terminal.prototype.getBackgroundColor=function(){return this.backgroundColor_},o.Terminal.prototype.setForegroundColor=function(e){this.foregroundColor_=i.colors.normalizeCSS(e),this.primaryScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.alternateScreen_.textAttributes.setDefaults(this.foregroundColor_,this.backgroundColor_),this.scrollPort_.setForegroundColor(e)},o.Terminal.prototype.getForegroundColor=function(){return this.foregroundColor_},o.Terminal.prototype.runCommandClass=function(e,t){var r=this.prefs_.get("environment");"object"==typeof r&&null!=r||(r={});var i=this;this.command=new e({argString:t||"",io:this.io.push(),environment:r,onExit:function(e){i.io.pop(),i.uninstallKeyboard(),i.prefs_.get("close-on-exit")&&window.close()}}),this.installKeyboard(),this.command.run()},o.Terminal.prototype.isPrimaryScreen=function(){return this.screen_==this.primaryScreen_},o.Terminal.prototype.installKeyboard=function(){this.keyboard.installKeyboard(this.scrollPort_.getDocument().body)},o.Terminal.prototype.uninstallKeyboard=function(){this.keyboard.installKeyboard(null)},o.Terminal.prototype.setCssVar=function(e,t,r="--hterm-"){this.document_.documentElement.style.setProperty(`${r}${e}`,t)},o.Terminal.prototype.setFontSize=function(e){0===e&&(e=this.prefs_.get("font-size")),this.scrollPort_.setFontSize(e),this.setCssVar("charsize-width",this.scrollPort_.characterSize.width+"px"),this.setCssVar("charsize-height",this.scrollPort_.characterSize.height+"px")},o.Terminal.prototype.getFontSize=function(){return this.scrollPort_.getFontSize()},o.Terminal.prototype.getFontFamily=function(){return this.scrollPort_.getFontFamily()},o.Terminal.prototype.syncFontFamily=function(){this.scrollPort_.setFontFamily(this.prefs_.get("font-family"),this.prefs_.get("font-smoothing")),this.syncBoldSafeState()},o.Terminal.prototype.syncMousePasteButton=function(){var e=this.prefs_.get("mouse-paste-button");if("number"!=typeof e){var t=navigator.userAgent.match(/\(X11;\s+(\S+)/);t&&"CrOS"!=t[1]?this.mousePasteButton=2:this.mousePasteButton=1}else this.mousePasteButton=e},o.Terminal.prototype.syncBoldSafeState=function(){var e=this.prefs_.get("enable-bold");if(null!==e)return this.primaryScreen_.textAttributes.enableBold=e,void(this.alternateScreen_.textAttributes.enableBold=e);var t=this.scrollPort_.measureCharacterSize(),r=this.scrollPort_.measureCharacterSize("bold"),i=t.equals(r);i||console.warn("Bold characters disabled: Size of bold weight differs from normal. Font family is: "+this.scrollPort_.getFontFamily()),this.primaryScreen_.textAttributes.enableBold=i,this.alternateScreen_.textAttributes.enableBold=i},o.Terminal.prototype.syncBlinkState=function(){this.setCssVar("node-duration",this.prefs_.get("enable-blink")?"0.7s":"0")},o.Terminal.prototype.syncMouseStyle=function(){this.setCssVar("mouse-cursor-style",this.vt.mouseReport==this.vt.MOUSE_REPORT_DISABLED?"var(--hterm-mouse-cursor-text)":"var(--hterm-mouse-cursor-pointer)")},o.Terminal.prototype.saveCursor=function(){return this.screen_.cursorPosition.clone()},o.Terminal.prototype.getTextAttributes=function(){return this.screen_.textAttributes},o.Terminal.prototype.setTextAttributes=function(e){this.screen_.textAttributes=e},o.Terminal.prototype.getZoomFactor=function(){return this.scrollPort_.characterSize.zoomFactor},o.Terminal.prototype.setWindowTitle=function(e){window.document.title=e},o.Terminal.prototype.restoreCursor=function(e){var t=i.f.clamp(e.row,0,this.screenSize.height-1),r=i.f.clamp(e.column,0,this.screenSize.width-1);this.screen_.setCursorPosition(t,r),(e.column>r||e.column==r&&e.overflow)&&(this.screen_.cursorPosition.overflow=!0)},o.Terminal.prototype.clearCursorOverflow=function(){this.screen_.cursorPosition.overflow=!1},o.Terminal.prototype.setCursorShape=function(e){this.cursorShape_=e,this.restyleCursor_()},o.Terminal.prototype.getCursorShape=function(){return this.cursorShape_},o.Terminal.prototype.setWidth=function(e){null!=e?(this.div_.style.width=Math.ceil(this.scrollPort_.characterSize.width*e+this.scrollPort_.currentScrollbarWidthPx)+"px",this.realizeSize_(e,this.screenSize.height),this.scheduleSyncCursorPosition_()):this.div_.style.width="100%"},o.Terminal.prototype.setHeight=function(e){null!=e?(this.div_.style.height=this.scrollPort_.characterSize.height*e+"px",this.realizeSize_(this.screenSize.width,e),this.scheduleSyncCursorPosition_()):this.div_.style.height="100%"},o.Terminal.prototype.realizeSize_=function(e,t){e!=this.screenSize.width&&this.realizeWidth_(e),t!=this.screenSize.height&&this.realizeHeight_(t),this.io.onTerminalResize_(e,t)},o.Terminal.prototype.realizeWidth_=function(e){if(e<=0)throw new Error("Attempt to realize bad width: "+e);var t=e-this.screen_.getWidth();if(this.screenSize.width=e,this.screen_.setColumnCount(e),t>0)this.defaultTabStops&&this.setDefaultTabStops(this.screenSize.width-t);else for(var r=this.tabStops_.length-1;r>=0&&!(this.tabStops_[r]0){if(t<=this.scrollbackRows_.length){var s=Math.min(t,this.scrollbackRows_.length),n=this.scrollbackRows_.splice(this.scrollbackRows_.length-s,s);this.screen_.unshiftRows(n),t-=s,r.row+=s}t&&this.appendRows_(t)}this.setVTScrollRegion(null,null),this.restoreCursor(r)},o.Terminal.prototype.scrollHome=function(){this.scrollPort_.scrollRowToTop(0)},o.Terminal.prototype.scrollEnd=function(){this.scrollPort_.scrollRowToBottom(this.getRowCount())},o.Terminal.prototype.scrollPageUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-this.screenSize.height+1)},o.Terminal.prototype.scrollPageDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+this.screenSize.height-1)},o.Terminal.prototype.scrollLineUp=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e-1)},o.Terminal.prototype.scrollLineDown=function(){var e=this.scrollPort_.getTopRowIndex();this.scrollPort_.scrollRowToTop(e+1)},o.Terminal.prototype.wipeContents=function(){this.scrollbackRows_.length=0,this.scrollPort_.resetCache(),[this.primaryScreen_,this.alternateScreen_].forEach(function(e){var t=e.getHeight();t>0&&(this.renumberRows_(0,t),this.clearHome(e))}.bind(this)),this.syncCursorPosition_(),this.scrollPort_.invalidate()},o.Terminal.prototype.reset=function(){this.clearAllTabStops(),this.setDefaultTabStops(),this.clearHome(this.primaryScreen_),this.primaryScreen_.textAttributes.reset(),this.clearHome(this.alternateScreen_),this.alternateScreen_.textAttributes.reset(),this.setCursorBlink(!!this.prefs_.get("cursor-blink")),this.vt.reset(),this.softReset()},o.Terminal.prototype.softReset=function(){this.options_=new o.Options,this.options_.cursorBlink=!!this.timeouts_.cursorBlink,this.primaryScreen_.textAttributes.resetColorPalette(),this.alternateScreen_.textAttributes.resetColorPalette(),this.setVTScrollRegion(null,null),this.setCursorVisible(!0)},o.Terminal.prototype.forwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=0;te)return void this.setCursorColumn(this.tabStops_[t]);var r=this.screen_.cursorPosition.overflow;this.setCursorColumn(this.screenSize.width-1),this.screen_.cursorPosition.overflow=r},o.Terminal.prototype.backwardTabStop=function(){for(var e=this.screen_.cursorPosition.column,t=this.tabStops_.length-1;t>=0;t--)if(this.tabStops_[t]=0;t--){if(this.tabStops_[t]==e)return;if(this.tabStops_[t]0){var n=this.screen_.shiftRows(s);Array.prototype.push.apply(this.scrollbackRows_,n),this.scrollPort_.isScrolledEnd&&this.scheduleScrollDown_()}t>=this.screen_.rowsArray.length&&(t=this.screen_.rowsArray.length-1),this.setAbsoluteCursorPosition(t,0)},o.Terminal.prototype.moveRows_=function(e,t,r){var i=this.screen_.removeRows(e,t);this.screen_.insertRows(r,i);var o,s;e=this.screenSize.width&&(a=!0,n=this.screenSize.width-this.screen_.cursorPosition.column),a&&!this.options_.wraparound?(s=i.wc.substr(e,t,n-1)+i.wc.substr(e,r-1),n=r):s=i.wc.substr(e,t,n);for(var l=o.TextAttributes.splitWidecharString(s),h=0;h=0;o--)this.setAbsoluteCursorPosition(t+o,0),this.screen_.clearCursorRow()},o.Terminal.prototype.deleteLines=function(e){var t=this.saveCursor(),r=t.row,i=this.getVTScrollBottom(),o=i-r+1,s=i-(e=Math.min(e,o))+1;e!=o&&this.moveRows_(r,e,s);for(var n=0;nt)this.setCssVar("cursor-offset-row","-1");else{this.options_.cursorVisible&&"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display=""),this.setCssVar("cursor-offset-row",`${r-e} + `+`${this.scrollPort_.visibleRowTopMargin}px`),this.setCssVar("cursor-offset-col",this.screen_.cursorPosition.column),this.cursorNode_.setAttribute("title","("+this.screen_.cursorPosition.column+", "+this.screen_.cursorPosition.row+")");var i=this.document_.getSelection();i&&i.isCollapsed&&this.screen_.syncSelectionCaret(i)}},o.Terminal.prototype.restyleCursor_=function(){var e=this.cursorShape_;"false"==this.cursorNode_.getAttribute("focus")&&(e=o.Terminal.cursorShape.BLOCK);var t=this.cursorNode_.style;switch(e){case o.Terminal.cursorShape.BEAM:t.height="var(--hterm-charsize-height)",t.backgroundColor="transparent",t.borderBottomStyle=null,t.borderLeftStyle="solid";break;case o.Terminal.cursorShape.UNDERLINE:t.height=this.scrollPort_.characterSize.baseline+"px",t.backgroundColor="transparent",t.borderBottomStyle="solid",t.borderLeftStyle=null;break;default:t.height="var(--hterm-charsize-height)",t.backgroundColor=this.cursorColor_,t.borderBottomStyle=null,t.borderLeftStyle=null}},o.Terminal.prototype.scheduleSyncCursorPosition_=function(){if(!this.timeouts_.syncCursor){var e=this;this.timeouts_.syncCursor=setTimeout(function(){e.syncCursorPosition_(),delete e.timeouts_.syncCursor},0)}},o.Terminal.prototype.showZoomWarning_=function(e){if(!this.zoomWarningNode_){if(!e)return;this.zoomWarningNode_=this.document_.createElement("div"),this.zoomWarningNode_.id="hterm:zoom-warning",this.zoomWarningNode_.style.cssText="color: black;background-color: #ff2222;font-size: large;border-radius: 8px;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;top: 0.5em;right: 1.2em;position: absolute;-webkit-text-size-adjust: none;-webkit-user-select: none;-moz-text-size-adjust: none;-moz-user-select: none;",this.zoomWarningNode_.addEventListener("click",function(e){this.parentNode.removeChild(this)})}this.zoomWarningNode_.textContent=i.MessageManager.replaceReferences(o.zoomWarningMessage,[parseInt(100*this.scrollPort_.characterSize.zoomFactor)]),this.zoomWarningNode_.style.fontFamily=this.prefs_.get("font-family"),e?this.zoomWarningNode_.parentNode||this.div_.parentNode.appendChild(this.zoomWarningNode_):this.zoomWarningNode_.parentNode&&this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_)},o.Terminal.prototype.showOverlay=function(e,t){if(!this.overlayNode_){if(!this.div_)return;this.overlayNode_=this.document_.createElement("div"),this.overlayNode_.style.cssText="border-radius: 15px;font-size: xx-large;opacity: 0.75;padding: 0.2em 0.5em 0.2em 0.5em;position: absolute;-webkit-user-select: none;-webkit-transition: opacity 180ms ease-in;-moz-user-select: none;-moz-transition: opacity 180ms ease-in;",this.overlayNode_.addEventListener("mousedown",function(e){e.preventDefault(),e.stopPropagation()},!0)}this.overlayNode_.style.color=this.prefs_.get("background-color"),this.overlayNode_.style.backgroundColor=this.prefs_.get("foreground-color"),this.overlayNode_.style.fontFamily=this.prefs_.get("font-family"),this.overlayNode_.textContent=e,this.overlayNode_.style.opacity="0.75",this.overlayNode_.parentNode||this.div_.appendChild(this.overlayNode_);var r=o.getClientSize(this.div_),i=o.getClientSize(this.overlayNode_);this.overlayNode_.style.top=(r.height-i.height)/2+"px",this.overlayNode_.style.left=(r.width-i.width-this.scrollPort_.currentScrollbarWidthPx)/2+"px";var s=this;this.overlayTimeout_&&clearTimeout(this.overlayTimeout_),null!==t&&(this.overlayTimeout_=setTimeout(function(){s.overlayNode_.style.opacity="0",s.overlayTimeout_=setTimeout(function(){s.overlayNode_.parentNode&&s.overlayNode_.parentNode.removeChild(s.overlayNode_),s.overlayTimeout_=null,s.overlayNode_.style.opacity="0.75"},200)},t||1500))},o.Terminal.prototype.paste=function(){return o.pasteFromClipboard(this.document_)},o.Terminal.prototype.copyStringToClipboard=function(e){this.prefs_.get("enable-clipboard-notice")&&setTimeout(this.showOverlay.bind(this,o.notifyCopyMessage,500),200);var t=this.document_.createElement("pre");t.id="hterm:copy-to-clipboard-source",t.textContent=e,t.style.cssText="-webkit-user-select: text;-moz-user-select: text;position: absolute;top: -99px",this.document_.body.appendChild(t);var r=this.document_.getSelection(),i=r.anchorNode,s=r.anchorOffset,n=r.focusNode,a=r.focusOffset;r.selectAllChildren(t),o.copySelectionToClipboard(this.document_),r.extend&&(r.collapse(i,s),r.extend(n,a)),t.parentNode.removeChild(t)},o.Terminal.prototype.getSelectionText=function(){var e=this.scrollPort_.selection;if(e.sync(),e.isCollapsed)return null;var t=e.startOffset,r=e.startNode;if("X-ROW"!=r.nodeName)for("#text"==r.nodeName&&"SPAN"==r.parentNode.nodeName&&(r=r.parentNode);r.previousSibling;)r=r.previousSibling,t+=o.TextAttributes.nodeWidth(r);var s=o.TextAttributes.nodeWidth(e.endNode)-e.endOffset;if("X-ROW"!=(r=e.endNode).nodeName)for("#text"==r.nodeName&&"SPAN"==r.parentNode.nodeName&&(r=r.parentNode);r.nextSibling;)r=r.nextSibling,s+=o.TextAttributes.nodeWidth(r);var n=this.getRowsText(e.startRow.rowIndex,e.endRow.rowIndex+1);return i.wc.substring(n,t,i.wc.strWidth(n)-s)},o.Terminal.prototype.copySelectionToClipboard=function(){var e=this.getSelectionText();null!=e&&this.copyStringToClipboard(e)},o.Terminal.prototype.overlaySize=function(){this.showOverlay(this.screenSize.width+"x"+this.screenSize.height)},o.Terminal.prototype.onVTKeystroke=function(e){this.scrollOnKeystroke_&&this.scrollPort_.scrollRowToBottom(this.getRowCount()),this.io.onVTKeystroke(this.keyboard.encode(e))},o.Terminal.prototype.openUrl=function(e){window.chrome&&window.chrome.browser?chrome.browser.openTab({url:e}):window.open(e,"_blank").focus()},o.Terminal.prototype.openSelectedUrl_=function(){var e=this.getSelectionText();if((null!=e||(this.screen_.expandSelection(this.document_.getSelection()),null!=(e=this.getSelectionText())))&&!(e.length>2048||e.search(/[\s\[\](){}<>"'\\^`]/)>=0)){if(e.search("^[a-zA-Z][a-zA-Z0-9+.-]*://")<0)switch(e.split(":",1)[0]){case"mailto":break;default:e="http://"+e}this.openUrl(e)}},o.Terminal.prototype.onMouse_=function(e){if(!e.processedByTerminalHandler_){var t=!this.defeatMouseReports_&&this.vt.mouseReport!=this.vt.MOUSE_REPORT_DISABLED;if(e.processedByTerminalHandler_=!0,e.terminalRow=parseInt((e.clientY-this.scrollPort_.visibleRowTopMargin)/this.scrollPort_.characterSize.height)+1,e.terminalColumn=parseInt(e.clientX/this.scrollPort_.characterSize.width)+1,!("mousedown"==e.type&&e.terminalColumn>this.screenSize.width)){if(this.options_.cursorVisible&&!t&&(e.terminalRow-1==this.screen_.cursorPosition.row&&e.terminalColumn-1==this.screen_.cursorPosition.column?this.cursorNode_.style.display="none":"none"==this.cursorNode_.style.display&&(this.cursorNode_.style.display="")),"mousedown"==e.type&&(e.altKey||!t?(this.defeatMouseReports_=!0,this.setSelectionEnabled(!0)):(this.defeatMouseReports_=!1,this.document_.getSelection().collapseToEnd(),this.setSelectionEnabled(!1),e.preventDefault())),t)this.scrollBlockerNode_.engaged||("mousedown"==e.type?(this.scrollBlockerNode_.engaged=!0,this.scrollBlockerNode_.style.top=e.clientY-5+"px",this.scrollBlockerNode_.style.left=e.clientX-5+"px"):"mousemove"==e.type&&(this.document_.getSelection().collapseToEnd(),e.preventDefault())),this.onMouse(e);else{if("dblclick"==e.type&&this.copyOnSelect&&(this.screen_.expandSelection(this.document_.getSelection()),this.copySelectionToClipboard(this.document_)),"click"==e.type&&!e.shiftKey&&(e.ctrlKey||e.metaKey))return clearTimeout(this.timeouts_.openUrl),void(this.timeouts_.openUrl=setTimeout(this.openSelectedUrl_.bind(this),500));if("mousedown"==e.type&&(this.mouseRightClickPaste&&2==e.button||e.button==this.mousePasteButton)&&(this.paste()||console.warning("Could not paste manually due to web restrictions")),"mouseup"==e.type&&0==e.button&&this.copyOnSelect&&!this.document_.getSelection().isCollapsed&&this.copySelectionToClipboard(this.document_),"mousemove"!=e.type&&"mouseup"!=e.type||!this.scrollBlockerNode_.engaged||(this.scrollBlockerNode_.engaged=!1,this.scrollBlockerNode_.style.top="-99px"),this.scrollWheelArrowKeys_&&!e.shiftKey&&this.keyboard.applicationCursor&&!this.isPrimaryScreen()&&"wheel"==e.type){var r=this.scrollPort_.scrollWheelDelta(e),o=i.f.smartFloorDivide(Math.abs(r),this.scrollPort_.characterSize.height),s="O"+(r<0?"B":"A");this.io.sendString(s.repeat(o)),e.preventDefault()}}"mouseup"==e.type&&this.document_.getSelection().isCollapsed&&(this.defeatMouseReports_=!1)}}},o.Terminal.prototype.onMouse=function(e){},o.Terminal.prototype.onFocusChange_=function(e){this.cursorNode_.setAttribute("focus",e),this.restyleCursor_(),!0===e&&this.closeBellNotifications_()},o.Terminal.prototype.onScroll_=function(){this.scheduleSyncCursorPosition_()},o.Terminal.prototype.onPaste_=function(e){var t=e.text.replace(/\n/gm,"\r");t=this.keyboard.encode(t),this.options_.bracketedPaste&&(t="[200~"+t+"[201~"),this.io.sendString(t)},o.Terminal.prototype.onCopy_=function(e){this.useDefaultWindowCopy||(e.preventDefault(),setTimeout(this.copySelectionToClipboard.bind(this),0))},o.Terminal.prototype.onResize_=function(){var e=Math.floor(this.scrollPort_.getScreenWidth()/this.scrollPort_.characterSize.width)||0,t=i.f.smartFloorDivide(this.scrollPort_.getScreenHeight(),this.scrollPort_.characterSize.height)||0;if(!(e<=0||t<=0)){var r=e!=this.screenSize.width||t!=this.screenSize.height;this.realizeSize_(e,t),this.showZoomWarning_(1!=this.scrollPort_.characterSize.zoomFactor),r&&this.overlaySize(),this.restyleCursor_(),this.scheduleSyncCursorPosition_()}},o.Terminal.prototype.onCursorBlink_=function(){this.options_.cursorBlink?"false"==this.cursorNode_.getAttribute("focus")||"0"==this.cursorNode_.style.opacity?(this.cursorNode_.style.opacity="1",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[0])):(this.cursorNode_.style.opacity="0",this.timeouts_.cursorBlink=setTimeout(this.myOnCursorBlink_,this.cursorBlinkCycle_[1])):delete this.timeouts_.cursorBlink},o.Terminal.prototype.setScrollbarVisible=function(e){this.scrollPort_.setScrollbarVisible(e)},o.Terminal.prototype.setScrollWheelMoveMultipler=function(e){this.scrollPort_.setScrollWheelMoveMultipler(e)},o.Terminal.prototype.closeBellNotifications_=function(){this.bellNotificationList_.forEach(function(e){e.close()}),this.bellNotificationList_.length=0},i.rtdep("lib.encodeUTF8"),o.Terminal.IO=function(e){this.terminal_=e,this.previousIO_=null},o.Terminal.IO.prototype.showOverlay=function(e,t){this.terminal_.showOverlay(e,t)},o.Terminal.IO.prototype.createFrame=function(e,t){return new o.Frame(this.terminal_,e,t)},o.Terminal.IO.prototype.setTerminalProfile=function(e){this.terminal_.setProfile(e)},o.Terminal.IO.prototype.push=function(){var e=new o.Terminal.IO(this.terminal_);return e.keyboardCaptured_=this.keyboardCaptured_,e.columnCount=this.columnCount,e.rowCount=this.rowCount,e.previousIO_=this.terminal_.io,this.terminal_.io=e,e},o.Terminal.IO.prototype.pop=function(){this.terminal_.io=this.previousIO_},o.Terminal.IO.prototype.sendString=function(e){console.log("Unhandled sendString: "+e)},o.Terminal.IO.prototype.onVTKeystroke=function(e){console.log("Unobserverd VT keystroke: "+JSON.stringify(e))},o.Terminal.IO.prototype.onTerminalResize_=function(e,t){for(var r=this;r;)r.columnCount=e,r.rowCount=t,r=r.previousIO_;this.onTerminalResize(e,t)},o.Terminal.IO.prototype.onTerminalResize=function(e,t){},o.Terminal.IO.prototype.writeUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e)},o.Terminal.IO.prototype.writelnUTF8=function(e){if(this.terminal_.io!=this)throw"Attempt to print from inactive IO object.";this.terminal_.interpret(e+"\r\n")},o.Terminal.IO.prototype.print=o.Terminal.IO.prototype.writeUTF16=function(e){this.writeUTF8(i.encodeUTF8(e))},o.Terminal.IO.prototype.println=o.Terminal.IO.prototype.writelnUTF16=function(e){this.writelnUTF8(i.encodeUTF8(e))},i.rtdep("lib.colors"),o.TextAttributes=function(e){this.document_=e,this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.defaultForeground="rgb(255, 255, 255)",this.defaultBackground="rgb(0, 0, 0)",this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0,this.tileData=null,this.colorPalette=null,this.resetColorPalette()},o.TextAttributes.prototype.enableBold=!0,o.TextAttributes.prototype.enableBoldAsBright=!0,o.TextAttributes.prototype.DEFAULT_COLOR=i.f.createEnum(""),o.TextAttributes.prototype.SRC_DEFAULT="default",o.TextAttributes.prototype.SRC_RGB="rgb",o.TextAttributes.prototype.setDocument=function(e){this.document_=e},o.TextAttributes.prototype.clone=function(){var e=new o.TextAttributes(null);for(var t in this)e[t]=this[t];return e.colorPalette=this.colorPalette.concat(),e},o.TextAttributes.prototype.reset=function(){this.foregroundSource=this.SRC_DEFAULT,this.backgroundSource=this.SRC_DEFAULT,this.foreground=this.DEFAULT_COLOR,this.background=this.DEFAULT_COLOR,this.bold=!1,this.faint=!1,this.italic=!1,this.blink=!1,this.underline=!1,this.strikethrough=!1,this.inverse=!1,this.invisible=!1,this.wcNode=!1,this.asciiNode=!0},o.TextAttributes.prototype.resetColorPalette=function(){this.colorPalette=i.colors.colorPalette.concat(),this.syncColors()},o.TextAttributes.prototype.isDefault=function(){return this.foregroundSource==this.SRC_DEFAULT&&this.backgroundSource==this.SRC_DEFAULT&&!this.bold&&!this.faint&&!this.italic&&!this.blink&&!this.underline&&!this.strikethrough&&!this.inverse&&!this.invisible&&!this.wcNode&&this.asciiNode&&null==this.tileData},o.TextAttributes.prototype.createContainer=function(e){if(this.isDefault())return this.document_.createTextNode(e);var t=this.document_.createElement("span"),r=t.style,i=[];this.foreground!=this.DEFAULT_COLOR&&(r.color=this.foreground),this.background!=this.DEFAULT_COLOR&&(r.backgroundColor=this.background),this.enableBold&&this.bold&&(r.fontWeight="bold"),this.faint&&(t.faint=!0),this.italic&&(r.fontStyle="italic"),this.blink&&(i.push("blink-node"),t.blinkNode=!0);var o="";return this.underline&&(o+=" underline",t.underline=!0),this.strikethrough&&(o+=" line-through",t.strikethrough=!0),o&&(r.textDecoration=o),this.wcNode&&(i.push("wc-node"),t.wcNode=!0,t.asciiNode=!1),null!=this.tileData&&(i.push("tile"),i.push("tile_"+this.tileData),t.tileNode=!0),e&&(t.textContent=e),i.length&&(t.className=i.join(" ")),t},o.TextAttributes.prototype.matchesContainer=function(e){if("string"==typeof e||3==e.nodeType)return this.isDefault();var t=e.style;return!(this.wcNode||e.wcNode||this.asciiNode!=this.asciiNode||null!=this.tileData||e.tileNode||this.foreground!=t.color||this.background!=t.backgroundColor||(this.enableBold&&this.bold)!=!!t.fontWeight||this.blink!=e.blinkNode||this.italic!=!!t.fontStyle||!!this.underline!=!!e.underline||!!this.strikethrough!=!!e.strikethrough)},o.TextAttributes.prototype.setDefaults=function(e,t){this.defaultForeground=e,this.defaultBackground=t,this.syncColors()},o.TextAttributes.prototype.syncColors=function(){var e=this.foregroundSource,t=this.backgroundSource,r=this.DEFAULT_COLOR,o=this.DEFAULT_COLOR;if(this.inverse&&(e=this.backgroundSource,t=this.foregroundSource,r=this.defaultBackground,o=this.defaultForeground),this.enableBoldAsBright&&this.bold&&e!=this.SRC_DEFAULT&&e!=this.SRC_RGB&&(e=function(e){return e<8?e+8:e}(e)),this.invisible&&(e=t,r=this.defaultBackground),e!=this.SRC_RGB&&(this.foreground=e==this.SRC_DEFAULT?r:this.colorPalette[e]),this.faint&&!this.invisible){var s=this.foreground==this.DEFAULT_COLOR?this.defaultForeground:this.foreground;this.foreground=i.colors.mix(s,"rgb(0, 0, 0)",.3333)}t!=this.SRC_RGB&&(this.background=t==this.SRC_DEFAULT?o:this.colorPalette[t])},o.TextAttributes.containersMatch=function(e,t){if("string"==typeof e)return o.TextAttributes.containerIsDefault(t);if(e.nodeType!=t.nodeType)return!1;if(3==e.nodeType)return!0;var r=e.style,i=t.style;return r.color==i.color&&r.backgroundColor==i.backgroundColor&&r.fontWeight==i.fontWeight&&r.fontStyle==i.fontStyle&&r.textDecoration==i.textDecoration},o.TextAttributes.containerIsDefault=function(e){return"string"==typeof e||3==e.nodeType},o.TextAttributes.nodeWidth=function(e){return e.asciiNode?e.textContent.length:i.wc.strWidth(e.textContent)},o.TextAttributes.nodeSubstr=function(e,t,r){return e.asciiNode?e.textContent.substr(t,r):i.wc.substr(e.textContent,t,r)},o.TextAttributes.nodeSubstring=function(e,t,r){return e.asciiNode?e.textContent.substring(t,r):i.wc.substring(e.textContent,t,r)},o.TextAttributes.splitWidecharString=function(e){for(var t=[],r=0,o=0,s=!0,n=0;n0?0:1),n|=r,t=""+String.fromCharCode(n)+o+s,e.preventDefault();break;case"mousedown":var n=Math.min(e.button,2)+32;n|=r,t=""+String.fromCharCode(n)+o+s;break;case"mouseup":t="#"+o+s;break;case"mousemove":this.mouseReport==this.MOUSE_REPORT_DRAG&&e.buttons&&(n=32,1&e.buttons?n+=0:4&e.buttons?n+=1:2&e.buttons?n+=2:n+=3,n+=32,n|=r,t=""+String.fromCharCode(n)+o+s);break;case"click":case"dblclick":break;default:console.error("Unknown mouse event: "+e.type,e)}t&&this.terminal.io.sendString(t)}},o.VT.prototype.interpret=function(e){for(this.parseState_.resetBuf(this.decode(e));!this.parseState_.isComplete();){var t=this.parseState_.func,r=this.parseState_.pos,e=this.parseState_.buf;if(this.parseState_.func.call(this,this.parseState_),this.parseState_.func==t&&this.parseState_.pos==r&&this.parseState_.buf==e)throw"Parser did not alter the state!"}},o.VT.prototype.decode=function(e){return"utf-8"==this.characterEncoding?this.decodeUTF8(e):e},o.VT.prototype.encodeUTF8=function(e){return i.encodeUTF8(e)},o.VT.prototype.decodeUTF8=function(e){return this.utf8Decoder_.decode(e)},o.VT.prototype.setEncoding=function(e){switch(e){default:console.warn('Invalid value for "terminal-encoding": '+e);case"iso-2022":this.codingSystemUtf8_=!1,this.codingSystemLocked_=!1;break;case"utf-8-locked":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!0;break;case"utf-8":this.codingSystemUtf8_=!0,this.codingSystemLocked_=!1}this.updateEncodingState_()},o.VT.prototype.updateEncodingState_=function(){var e=Object.keys(o.VT.CC1).filter(e=>!this.codingSystemUtf8_||e.charCodeAt()<128).map(e=>"\\x"+i.f.zpad(e.charCodeAt().toString(16),2)).join("");this.cc1Pattern_=new RegExp(`[${e}]`)},o.VT.prototype.parseUnknown_=function(e){function t(e){!r.codingSystemUtf8_&&r[r.GL].GL&&(e=r[r.GL].GL(e)),r.terminal.print(e)}var r=this,i=e.peekRemainingBuf(),o=i.search(this.cc1Pattern_);return 0==o?(this.dispatch("CC1",i.substr(0,1),e),void e.advance(1)):-1==o?(t(i),void e.reset()):(t(i.substr(0,o)),this.dispatch("CC1",i.substr(o,1),e),void e.advance(o+1))},o.VT.prototype.parseCSI_=function(e){var t=e.peekChar(),r=e.args;t>="@"&&t<="~"?(this.dispatch("CSI",this.leadingModifier_+this.trailingModifier_+t,e),e.resetParseFunction()):";"==t?this.trailingModifier_?e.resetParseFunction():(r.length||r.push(""),r.push("")):t>="0"&&t<="9"?this.trailingModifier_?e.resetParseFunction():r.length?r[r.length-1]+=t:r[0]=t:t>=" "&&t<="?"&&":"!=t?r.length?this.trailingModifier_+=t:this.leadingModifier_+=t:this.cc1Pattern_.test(t)?this.dispatch("CC1",t,e):e.resetParseFunction(),e.advance(1)},o.VT.prototype.parseUntilStringTerminator_=function(e){var t=e.peekRemainingBuf(),r=t.search(/(\x1b\\|\x07)/),i=e.args;if(i.length||(i[0]="",i[1]=new Date),-1==r){i[0]+=t;var o;return i[0].length>this.maxStringSequence&&(o="too long: "+i[0].length),-1!=i[0].indexOf("")&&(o="embedded escape: "+i[0].indexOf("")),new Date-i[1]>this.oscTimeLimit_&&(o="timeout expired: "+new Date-i[1]),o?(console.log("parseUntilStringTerminator_: aborting: "+o,i[0]),e.reset(i[0]),!1):(e.advance(t.length),!0)}return i[0].length+r>this.maxStringSequence?(e.reset(i[0]+t),!1):(i[0]+=t.substr(0,r),e.resetParseFunction(),e.advance(r+(""==t.substr(r,1)?2:1)),!0)},o.VT.prototype.dispatch=function(e,t,r){var i=o.VT[e][t];i?i!=o.VT.ignore?"CC1"==e&&t>""&&!this.enable8BitControl?console.warn("Ignoring 8-bit control code: 0x"+t.charCodeAt(0).toString(16)):i.apply(this,[r,t]):this.warnUnimplemented&&console.warn("Ignored "+e+" code: "+JSON.stringify(t)):this.warnUnimplemented&&console.warn("Unknown "+e+" code: "+JSON.stringify(t))},o.VT.prototype.setANSIMode=function(e,t){4==e?this.terminal.setInsertMode(t):20==e?this.terminal.setAutoCarriageReturn(t):this.warnUnimplemented&&console.warn("Unimplemented ANSI Mode: "+e)},o.VT.prototype.setDECMode=function(e,t){switch(parseInt(e,10)){case 1:this.terminal.keyboard.applicationCursor=t;break;case 3:this.allowColumnWidthChanges_&&(this.terminal.setWidth(t?132:80),this.terminal.clearHome(),this.terminal.setVTScrollRegion(null,null));break;case 5:this.terminal.setReverseVideo(t);break;case 6:this.terminal.setOriginMode(t);break;case 7:this.terminal.setWraparound(t);break;case 12:this.enableDec12&&this.terminal.setCursorBlink(t);break;case 25:this.terminal.setCursorVisible(t);break;case 30:this.terminal.setScrollbarVisible(t);break;case 40:this.terminal.allowColumnWidthChanges_=t;break;case 45:this.terminal.setReverseWraparound(t);break;case 67:this.terminal.keyboard.backspaceSendsBackspace=t;break;case 1e3:this.mouseReport=t?this.MOUSE_REPORT_CLICK:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1002:this.mouseReport=t?this.MOUSE_REPORT_DRAG:this.MOUSE_REPORT_DISABLED,this.terminal.syncMouseStyle();break;case 1010:this.terminal.scrollOnOutput=t;break;case 1011:this.terminal.scrollOnKeystroke=t;break;case 1036:this.terminal.keyboard.metaSendsEscape=t;break;case 1039:t?this.terminal.keyboard.previousAltSendsWhat_||(this.terminal.keyboard.previousAltSendsWhat_=this.terminal.keyboard.altSendsWhat,this.terminal.keyboard.altSendsWhat="escape"):this.terminal.keyboard.previousAltSendsWhat_&&(this.terminal.keyboard.altSendsWhat=this.terminal.keyboard.previousAltSendsWhat_,this.terminal.keyboard.previousAltSendsWhat_=null);break;case 47:case 1047:this.terminal.setAlternateMode(t);break;case 1048:this.savedState_.save();case 1049:t?(this.savedState_.save(),this.terminal.setAlternateMode(t),this.terminal.clear()):(this.terminal.setAlternateMode(t),this.savedState_.restore());break;case 2004:this.terminal.setBracketedPaste(t);break;default:this.warnUnimplemented&&console.warn("Unimplemented DEC Private Mode: "+e)}},o.VT.ignore=function(){},o.VT.CC1={},o.VT.ESC={},o.VT.CSI={},o.VT.OSC={},o.VT.VT52={},o.VT.CC1["\0"]=o.VT.ignore,o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=function(){this.terminal.ringBell()},o.VT.CC1["\b"]=function(){this.terminal.cursorLeft(1)},o.VT.CC1["\t"]=function(){this.terminal.forwardTabStop()},o.VT.CC1["\n"]=function(){this.terminal.formFeed()},o.VT.CC1["\v"]=o.VT.CC1["\n"],o.VT.CC1["\f"]=o.VT.CC1["\n"],o.VT.CC1["\r"]=function(){this.terminal.setCursorColumn(0)},o.VT.CC1[""]=function(){this.GL="G1"},o.VT.CC1[""]=function(){this.GL="G0"},o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=o.VT.ignore,o.VT.CC1[""]=function(e){"G1"==this.GL&&(this.GL="G0"),e.resetParseFunction(),this.terminal.print("?")},o.VT.CC1[""]=o.VT.CC1[""],o.VT.CC1[""]=function(e){function t(e){var r=e.consumeChar();""!=r&&(this.dispatch("ESC",r,e),e.func==t&&e.resetParseFunction())}e.func=t},o.VT.CC1[""]=o.VT.ignore,o.VT.CC1["„"]=o.VT.ESC.D=function(){this.terminal.lineFeed()},o.VT.CC1["…"]=o.VT.ESC.E=function(){this.terminal.setCursorColumn(0),this.terminal.cursorDown(1)},o.VT.CC1["ˆ"]=o.VT.ESC.H=function(){this.terminal.setTabStop(this.terminal.getCursorColumn())},o.VT.CC1[""]=o.VT.ESC.M=function(){this.terminal.reverseLineFeed()},o.VT.CC1["Ž"]=o.VT.ESC.N=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC.O=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC.P=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.CC1["–"]=o.VT.ESC.V=o.VT.ignore,o.VT.CC1["—"]=o.VT.ESC.W=o.VT.ignore,o.VT.CC1["˜"]=o.VT.ESC.X=o.VT.ignore,o.VT.CC1["š"]=o.VT.ESC.Z=function(){this.terminal.io.sendString("[?1;2c")},o.VT.CC1["›"]=o.VT.ESC["["]=function(e){e.resetArguments(),this.leadingModifier_="",this.trailingModifier_="",e.func=this.parseCSI_},o.VT.CC1["œ"]=o.VT.ESC["\\"]=o.VT.ignore,o.VT.CC1[""]=o.VT.ESC["]"]=function(e){function t(e){if(this.parseUntilStringTerminator_(e)&&e.func!=t){var r=e.args[0].match(/^(\d+);(.*)$/);r?(e.args[0]=r[2],this.dispatch("OSC",r[1],e)):console.warn("Invalid OSC: "+JSON.stringify(e.args[0]))}}e.resetArguments(),e.func=t},o.VT.CC1["ž"]=o.VT.ESC["^"]=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.CC1["Ÿ"]=o.VT.ESC._=function(e){e.resetArguments(),e.func=this.parseUntilStringTerminator_},o.VT.ESC[" "]=function(e){e.func=function(e){var t=e.consumeChar();this.warnUnimplemented&&console.warn("Unimplemented sequence: ESC 0x20 "+t),e.resetParseFunction()}},o.VT.ESC["#"]=function(e){e.func=function(e){"8"==e.consumeChar()&&this.terminal.fill("E"),e.resetParseFunction()}},o.VT.ESC["%"]=function(e){e.func=function(e){var t=e.consumeChar();if(this.codingSystemLocked_)return"/"==t&&e.consumeChar(),void e.resetParseFunction();switch(t){case"@":this.setEncoding("iso-2022");break;case"G":this.setEncoding("utf-8");break;case"/":switch(t=e.consumeChar()){case"G":case"H":case"I":this.setEncoding("utf-8-locked");break;default:this.warnUnimplemented&&console.warn("Unknown ESC % / argument: "+JSON.stringify(t))}break;default:this.warnUnimplemented&&console.warn("Unknown ESC % argument: "+JSON.stringify(t))}e.resetParseFunction()}},o.VT.ESC["("]=o.VT.ESC[")"]=o.VT.ESC["*"]=o.VT.ESC["+"]=o.VT.ESC["-"]=o.VT.ESC["."]=o.VT.ESC["/"]=function(e,t){e.func=function(e){var r=e.consumeChar();if(""==r)return e.resetParseFunction(),void e.func();var i=this.characterMaps.getMap(r);void 0!==i?"("==t?this.G0=i:")"==t||"-"==t?this.G1=i:"*"==t||"."==t?this.G2=i:"+"!=t&&"/"!=t||(this.G3=i):this.warnUnimplemented&&console.log('Invalid character set for "'+t+'": '+r),e.resetParseFunction()}},o.VT.ESC[6]=o.VT.ignore,o.VT.ESC[7]=function(){this.savedState_.save()},o.VT.ESC[8]=function(){this.savedState_.restore()},o.VT.ESC[9]=o.VT.ignore,o.VT.ESC["="]=function(){this.terminal.keyboard.applicationKeypad=!0},o.VT.ESC[">"]=function(){this.terminal.keyboard.applicationKeypad=!1},o.VT.ESC.F=o.VT.ignore,o.VT.ESC.c=function(){this.reset(),this.terminal.reset()},o.VT.ESC.l=o.VT.ESC.m=o.VT.ignore,o.VT.ESC.n=function(){this.GL="G2"},o.VT.ESC.o=function(){this.GL="G3"},o.VT.ESC["|"]=function(){this.GR="G3"},o.VT.ESC["}"]=function(){this.GR="G2"},o.VT.ESC["~"]=function(){this.GR="G1"},o.VT.OSC[0]=function(e){this.terminal.setWindowTitle(e.args[0])},o.VT.OSC[2]=o.VT.OSC[0],o.VT.OSC[4]=function(e){for(var t=e.args[0].split(";"),r=parseInt(t.length/2),o=this.terminal.getTextAttributes().colorPalette,s=[],n=0;n=o.length||("?"!=l?(l=i.colors.x11ToCSS(l))&&(o[a]=l):(l=i.colors.rgbToX11(o[a]))&&s.push(a+";"+l))}s.length&&this.terminal.io.sendString("]4;"+s.join(";")+"")},o.VT.OSC[9]=function(e){o.notify({body:e.args[0]})},o.VT.OSC[10]=function(e){var t=e.args[0].split(";");if(t){var r=i.colors.x11ToCSS(t.shift());r&&this.terminal.setForegroundColor(r),t.length>0&&(e.args[0]=t.join(";"),o.VT.OSC[11].apply(this,[e]))}},o.VT.OSC[11]=function(e){var t=e.args[0].split(";");if(t){var r=i.colors.x11ToCSS(t.shift());r&&this.terminal.setBackgroundColor(r)}},o.VT.OSC[50]=function(e){var t=e.args[0].match(/CursorShape=(.)/i);if(t)switch(t[1]){case"1":this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM);break;case"2":this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE);break;default:this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK)}else console.warn("Could not parse OSC 50 args: "+e.args[0])},o.VT.OSC[52]=function(e){var t=e.args[0].match(/^[cps01234567]*;(.*)/);if(t){var r=window.atob(t[1]);r&&this.terminal.copyStringToClipboard(this.decode(r))}},o.VT.OSC[777]=function(e){var t;switch(e.args[0].split(";",1)[0]){case"notify":var r,i;(t=e.args[0].match(/^[^;]+;([^;]*)(;([\s\S]*))?$/))&&(r=t[1],i=t[3]),o.notify({title:r,body:i});break;default:console.warn("Unknown urxvt module: "+e.args[0])}},o.VT.CSI["@"]=function(e){this.terminal.insertSpace(e.iarg(0,1))},o.VT.CSI.A=function(e){this.terminal.cursorUp(e.iarg(0,1))},o.VT.CSI.B=function(e){this.terminal.cursorDown(e.iarg(0,1))},o.VT.CSI.C=function(e){this.terminal.cursorRight(e.iarg(0,1))},o.VT.CSI.D=function(e){this.terminal.cursorLeft(e.iarg(0,1))},o.VT.CSI.E=function(e){this.terminal.cursorDown(e.iarg(0,1)),this.terminal.setCursorColumn(0)},o.VT.CSI.F=function(e){this.terminal.cursorUp(e.iarg(0,1)),this.terminal.setCursorColumn(0)},o.VT.CSI.G=function(e){this.terminal.setCursorColumn(e.iarg(0,1)-1)},o.VT.CSI.H=function(e){this.terminal.setCursorPosition(e.iarg(0,1)-1,e.iarg(1,1)-1)},o.VT.CSI.I=function(e){var t=e.iarg(0,1);t=i.f.clamp(t,1,this.terminal.screenSize.width);for(var r=0;rT"]=o.VT.ignore,o.VT.CSI.X=function(e){this.terminal.eraseToRight(e.iarg(0,1))},o.VT.CSI.Z=function(e){var t=e.iarg(0,1);t=i.f.clamp(t,1,this.terminal.screenSize.width);for(var r=0;rc"]=function(e){this.terminal.io.sendString("[>0;256;0c")},o.VT.CSI.d=function(e){this.terminal.setAbsoluteCursorRow(e.iarg(0,1)-1)},o.VT.CSI.f=o.VT.CSI.H,o.VT.CSI.g=function(e){e.args[0]&&0!=e.args[0]?3==e.args[0]&&this.terminal.clearAllTabStops():this.terminal.clearTabStopAtCursor(!1)},o.VT.CSI.h=function(e){for(var t=0;t=i.colorPalette.length)continue;i.foregroundSource=a}else if(39==s)i.foregroundSource=i.SRC_DEFAULT;else if(s<48)i.backgroundSource=s-40;else if(48==s){var n=r(o);if(null!=n)i.backgroundSource=i.SRC_RGB,i.background=n,o+=5;else{var a=t(o);if(null==a)break;if(o+=2,a>=i.colorPalette.length)continue;i.backgroundSource=a}}else i.backgroundSource=i.SRC_DEFAULT;else s>=90&&s<=97?i.foregroundSource=s-90+8:s>=100&&s<=107&&(i.backgroundSource=s-100+8)}i.setDefaults(this.terminal.getForegroundColor(),this.terminal.getBackgroundColor())}else i.reset()},o.VT.CSI[">m"]=o.VT.ignore,o.VT.CSI.n=function(e){if(5==e.args[0])this.terminal.io.sendString("0n");else if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,r=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+r+"R")}},o.VT.CSI[">n"]=o.VT.ignore,o.VT.CSI["?n"]=function(e){if(6==e.args[0]){var t=this.terminal.getCursorRow()+1,r=this.terminal.getCursorColumn()+1;this.terminal.io.sendString("["+t+";"+r+"R")}else 15==e.args[0]?this.terminal.io.sendString("[?11n"):25==e.args[0]?this.terminal.io.sendString("[?21n"):26==e.args[0]?this.terminal.io.sendString("[?12;1;0;0n"):53==e.args[0]&&this.terminal.io.sendString("[?50n")},o.VT.CSI[">p"]=o.VT.ignore,o.VT.CSI["!p"]=function(){this.reset(),this.terminal.softReset()},o.VT.CSI.$p=o.VT.ignore,o.VT.CSI["?$p"]=o.VT.ignore,o.VT.CSI['"p']=o.VT.ignore,o.VT.CSI.q=o.VT.ignore,o.VT.CSI[" q"]=function(e){var t=e.args[0];0==t||1==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!0)):2==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BLOCK),this.terminal.setCursorBlink(!1)):3==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!0)):4==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.UNDERLINE),this.terminal.setCursorBlink(!1)):5==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!0)):6==t?(this.terminal.setCursorShape(o.Terminal.cursorShape.BEAM),this.terminal.setCursorBlink(!1)):console.warn("Unknown cursor style: "+t)},o.VT.CSI['"q']=o.VT.ignore,o.VT.CSI.r=function(e){var t=e.args,r=t[0]?parseInt(t[0],10)-1:null,i=t[1]?parseInt(t[1],10)-1:null;this.terminal.setVTScrollRegion(r,i),this.terminal.setCursorPosition(0,0)},o.VT.CSI["?r"]=o.VT.ignore,o.VT.CSI.$r=o.VT.ignore,o.VT.CSI.s=function(){this.savedState_.save()},o.VT.CSI["?s"]=o.VT.ignore,o.VT.CSI.t=o.VT.ignore,o.VT.CSI.$t=o.VT.ignore,o.VT.CSI[">t"]=o.VT.ignore,o.VT.CSI[" t"]=o.VT.ignore,o.VT.CSI.u=function(){this.savedState_.restore()},o.VT.CSI[" u"]=o.VT.ignore,o.VT.CSI.$v=o.VT.ignore,o.VT.CSI["'w"]=o.VT.ignore,o.VT.CSI.x=o.VT.ignore,o.VT.CSI["*x"]=o.VT.ignore,o.VT.CSI.$x=o.VT.ignore,o.VT.CSI.z=function(e){if(!(e.args.length<1)){var t=e.args[0];if(0==t){if(e.args.length<2)return;this.terminal.getTextAttributes().tileData=e.args[1]}else 1==t&&(this.terminal.getTextAttributes().tileData=null)}},o.VT.CSI["'z"]=o.VT.ignore,o.VT.CSI.$z=o.VT.ignore,o.VT.CSI["'{"]=o.VT.ignore,o.VT.CSI["'|"]=o.VT.ignore,o.VT.CSI["'}"]=o.VT.ignore,o.VT.CSI["'~"]=o.VT.ignore,i.rtdep("lib.f"),o.VT.CharacterMap=function(e,t){this.description=e,this.GL=null,this.glmapBase_=t,this.sync_()},o.VT.CharacterMap.prototype.sync_=function(e){if(!this.glmapBase_&&!e)return this.GL=null,delete this.glmap_,void delete this.glre_;this.glmap_=e?Object.assign({},this.glmapBase_,e):this.glmapBase_;var t=Object.keys(this.glmap_).map(e=>"\\x"+i.f.zpad(e.charCodeAt(0).toString(16)));this.glre_=new RegExp("["+t.join("")+"]","g"),this.GL=(e=>e.replace(this.glre_,e=>this.glmap_[e]))},o.VT.CharacterMap.prototype.reset=function(){this.glmap_!==this.glmapBase_&&this.sync_()},o.VT.CharacterMap.prototype.setOverrides=function(e){this.sync_(e)},o.VT.CharacterMap.prototype.clone=function(){var e=new o.VT.CharacterMap(this.description,this.glmapBase_);return this.glmap_!==this.glmapBase_&&e.setOverrides(this.glmap_),e},o.VT.CharacterMaps=function(){this.maps_=o.VT.CharacterMaps.DefaultMaps,this.mapsBase_=this.maps_},o.VT.CharacterMaps.prototype.getMap=function(e){return this.maps_.hasOwnProperty(e)?this.maps_[e]:void 0},o.VT.CharacterMaps.prototype.addMap=function(e,t){this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_)),this.maps_[e]=t},o.VT.CharacterMaps.prototype.reset=function(){this.maps_!==o.VT.CharacterMaps.DefaultMaps&&(this.maps_=o.VT.CharacterMaps.DefaultMaps)},o.VT.CharacterMaps.prototype.setOverrides=function(e){this.maps_===this.mapsBase_&&(this.maps_=Object.assign({},this.mapsBase_));for(var t in e){var r=this.getMap(t);void 0!==r?(this.maps_[t]=r.clone(),this.maps_[t].setOverrides(e[t])):this.addMap(t,new o.VT.CharacterMap("user "+t,e[t]))}},o.VT.CharacterMaps.DefaultMaps={},o.VT.CharacterMaps.DefaultMaps[0]=new o.VT.CharacterMap("graphic",{"`":"◆",a:"▒",b:"␉",c:"␌",d:"␍",e:"␊",f:"°",g:"±",h:"␤",i:"␋",j:"┘",k:"┐",l:"┌",m:"└",n:"┼",o:"⎺",p:"⎻",q:"─",r:"⎼",s:"⎽",t:"├",u:"┤",v:"┴",w:"┬",x:"│",y:"≤",z:"≥","{":"π","|":"≠","}":"£","~":"·"}),o.VT.CharacterMaps.DefaultMaps.A=new o.VT.CharacterMap("british",{"#":"£"}),o.VT.CharacterMaps.DefaultMaps.B=new o.VT.CharacterMap("us",null),o.VT.CharacterMaps.DefaultMaps[4]=new o.VT.CharacterMap("dutch",{"#":"£","@":"¾","[":"IJ","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"}),o.VT.CharacterMaps.DefaultMaps.C=o.VT.CharacterMaps.DefaultMaps[5]=new o.VT.CharacterMap("finnish",{"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps.R=new o.VT.CharacterMap("french",{"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"}),o.VT.CharacterMaps.DefaultMaps.Q=new o.VT.CharacterMap("french canadian",{"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"}),o.VT.CharacterMaps.DefaultMaps.K=new o.VT.CharacterMap("german",{"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"}),o.VT.CharacterMaps.DefaultMaps.Y=new o.VT.CharacterMap("italian",{"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"}),o.VT.CharacterMaps.DefaultMaps.E=o.VT.CharacterMaps.DefaultMaps[6]=new o.VT.CharacterMap("norwegian/danish",{"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps.Z=new o.VT.CharacterMap("spanish",{"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"}),o.VT.CharacterMaps.DefaultMaps[7]=o.VT.CharacterMaps.DefaultMaps.H=new o.VT.CharacterMap("swedish",{"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"}),o.VT.CharacterMaps.DefaultMaps["="]=new o.VT.CharacterMap("swiss",{"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}),i.resource.add("hterm/audio/bell","audio/ogg;base64","T2dnUwACAAAAAAAAAADhqW5KAAAAAMFvEjYBHgF2b3JiaXMAAAAAAYC7AAAAAAAAAHcBAAAAAAC4AU9nZ1MAAAAAAAAAAAAA4aluSgEAAAAAesI3EC3//////////////////8kDdm9yYmlzHQAAAFhpcGguT3JnIGxpYlZvcmJpcyBJIDIwMDkwNzA5AAAAAAEFdm9yYmlzKUJDVgEACAAAADFMIMWA0JBVAAAQAABgJCkOk2ZJKaWUoSh5mJRISSmllMUwiZiUicUYY4wxxhhjjDHGGGOMIDRkFQAABACAKAmOo+ZJas45ZxgnjnKgOWlOOKcgB4pR4DkJwvUmY26mtKZrbs4pJQgNWQUAAAIAQEghhRRSSCGFFGKIIYYYYoghhxxyyCGnnHIKKqigggoyyCCDTDLppJNOOumoo4466ii00EILLbTSSkwx1VZjrr0GXXxzzjnnnHPOOeecc84JQkNWAQAgAAAEQgYZZBBCCCGFFFKIKaaYcgoyyIDQkFUAACAAgAAAAABHkRRJsRTLsRzN0SRP8ixREzXRM0VTVE1VVVVVdV1XdmXXdnXXdn1ZmIVbuH1ZuIVb2IVd94VhGIZhGIZhGIZh+H3f933f930gNGQVACABAKAjOZbjKaIiGqLiOaIDhIasAgBkAAAEACAJkiIpkqNJpmZqrmmbtmirtm3LsizLsgyEhqwCAAABAAQAAAAAAKBpmqZpmqZpmqZpmqZpmqZpmqZpmmZZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZQGjIKgBAAgBAx3Ecx3EkRVIkx3IsBwgNWQUAyAAACABAUizFcjRHczTHczzHczxHdETJlEzN9EwPCA1ZBQAAAgAIAAAAAABAMRzFcRzJ0SRPUi3TcjVXcz3Xc03XdV1XVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVYHQkFUAAAQAACGdZpZqgAgzkGEgNGQVAIAAAAAYoQhDDAgNWQUAAAQAAIih5CCa0JrzzTkOmuWgqRSb08GJVJsnuamYm3POOeecbM4Z45xzzinKmcWgmdCac85JDJqloJnQmnPOeRKbB62p0ppzzhnnnA7GGWGcc85p0poHqdlYm3POWdCa5qi5FJtzzomUmye1uVSbc84555xzzjnnnHPOqV6czsE54Zxzzonam2u5CV2cc875ZJzuzQnhnHPOOeecc84555xzzglCQ1YBAEAAAARh2BjGnYIgfY4GYhQhpiGTHnSPDpOgMcgppB6NjkZKqYNQUhknpXSC0JBVAAAgAACEEFJIIYUUUkghhRRSSCGGGGKIIaeccgoqqKSSiirKKLPMMssss8wyy6zDzjrrsMMQQwwxtNJKLDXVVmONteaec645SGultdZaK6WUUkoppSA0ZBUAAAIAQCBkkEEGGYUUUkghhphyyimnoIIKCA1ZBQAAAgAIAAAA8CTPER3RER3RER3RER3RER3P8RxREiVREiXRMi1TMz1VVFVXdm1Zl3Xbt4Vd2HXf133f141fF4ZlWZZlWZZlWZZlWZZlWZZlCUJDVgEAIAAAAEIIIYQUUkghhZRijDHHnINOQgmB0JBVAAAgAIAAAAAAR3EUx5EcyZEkS7IkTdIszfI0T/M00RNFUTRNUxVd0RV10xZlUzZd0zVl01Vl1XZl2bZlW7d9WbZ93/d93/d93/d93/d939d1IDRkFQAgAQCgIzmSIimSIjmO40iSBISGrAIAZAAABACgKI7iOI4jSZIkWZImeZZniZqpmZ7pqaIKhIasAgAAAQAEAAAAAACgaIqnmIqniIrniI4oiZZpiZqquaJsyq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7rukBoyCoAQAIAQEdyJEdyJEVSJEVyJAcIDVkFAMgAAAgAwDEcQ1Ikx7IsTfM0T/M00RM90TM9VXRFFwgNWQUAAAIACAAAAAAAwJAMS7EczdEkUVIt1VI11VItVVQ9VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV1TRN0zSB0JCVAAAZAAAjQQYZhBCKcpBCbj1YCDHmJAWhOQahxBiEpxAzDDkNInSQQSc9uJI5wwzz4FIoFURMg40lN44gDcKmXEnlOAhCQ1YEAFEAAIAxyDHEGHLOScmgRM4xCZ2UyDknpZPSSSktlhgzKSWmEmPjnKPSScmklBhLip2kEmOJrQAAgAAHAIAAC6HQkBUBQBQAAGIMUgophZRSzinmkFLKMeUcUko5p5xTzjkIHYTKMQadgxAppRxTzinHHITMQeWcg9BBKAAAIMABACDAQig0ZEUAECcA4HAkz5M0SxQlSxNFzxRl1xNN15U0zTQ1UVRVyxNV1VRV2xZNVbYlTRNNTfRUVRNFVRVV05ZNVbVtzzRl2VRV3RZV1bZl2xZ+V5Z13zNNWRZV1dZNVbV115Z9X9ZtXZg0zTQ1UVRVTRRV1VRV2zZV17Y1UXRVUVVlWVRVWXZlWfdVV9Z9SxRV1VNN2RVVVbZV2fVtVZZ94XRVXVdl2fdVWRZ+W9eF4fZ94RhV1dZN19V1VZZ9YdZlYbd13yhpmmlqoqiqmiiqqqmqtm2qrq1bouiqoqrKsmeqrqzKsq+rrmzrmiiqrqiqsiyqqiyrsqz7qizrtqiquq3KsrCbrqvrtu8LwyzrunCqrq6rsuz7qizruq3rxnHrujB8pinLpqvquqm6um7runHMtm0co6rqvirLwrDKsu/rui+0dSFRVXXdlF3jV2VZ921fd55b94WybTu/rfvKceu60vg5z28cubZtHLNuG7+t+8bzKz9hOI6lZ5q2baqqrZuqq+uybivDrOtCUVV9XZVl3zddWRdu3zeOW9eNoqrquirLvrDKsjHcxm8cuzAcXds2jlvXnbKtC31jyPcJz2vbxnH7OuP2daOvDAnHjwAAgAEHAIAAE8pAoSErAoA4AQAGIecUUxAqxSB0EFLqIKRUMQYhc05KxRyUUEpqIZTUKsYgVI5JyJyTEkpoKZTSUgehpVBKa6GU1lJrsabUYu0gpBZKaS2U0lpqqcbUWowRYxAy56RkzkkJpbQWSmktc05K56CkDkJKpaQUS0otVsxJyaCj0kFIqaQSU0mptVBKa6WkFktKMbYUW24x1hxKaS2kEltJKcYUU20txpojxiBkzknJnJMSSmktlNJa5ZiUDkJKmYOSSkqtlZJSzJyT0kFIqYOOSkkptpJKTKGU1kpKsYVSWmwx1pxSbDWU0lpJKcaSSmwtxlpbTLV1EFoLpbQWSmmttVZraq3GUEprJaUYS0qxtRZrbjHmGkppraQSW0mpxRZbji3GmlNrNabWam4x5hpbbT3WmnNKrdbUUo0txppjbb3VmnvvIKQWSmktlNJiai3G1mKtoZTWSiqxlZJabDHm2lqMOZTSYkmpxZJSjC3GmltsuaaWamwx5ppSi7Xm2nNsNfbUWqwtxppTS7XWWnOPufVWAADAgAMAQIAJZaDQkJUAQBQAAEGIUs5JaRByzDkqCULMOSepckxCKSlVzEEIJbXOOSkpxdY5CCWlFksqLcVWaykptRZrLQAAoMABACDABk2JxQEKDVkJAEQBACDGIMQYhAYZpRiD0BikFGMQIqUYc05KpRRjzknJGHMOQioZY85BKCmEUEoqKYUQSkklpQIAAAocAAACbNCUWByg0JAVAUAUAABgDGIMMYYgdFQyKhGETEonqYEQWgutddZSa6XFzFpqrbTYQAithdYySyXG1FpmrcSYWisAAOzAAQDswEIoNGQlAJAHAEAYoxRjzjlnEGLMOegcNAgx5hyEDirGnIMOQggVY85BCCGEzDkIIYQQQuYchBBCCKGDEEIIpZTSQQghhFJK6SCEEEIppXQQQgihlFIKAAAqcAAACLBRZHOCkaBCQ1YCAHkAAIAxSjkHoZRGKcYglJJSoxRjEEpJqXIMQikpxVY5B6GUlFrsIJTSWmw1dhBKaS3GWkNKrcVYa64hpdZirDXX1FqMteaaa0otxlprzbkAANwFBwCwAxtFNicYCSo0ZCUAkAcAgCCkFGOMMYYUYoox55xDCCnFmHPOKaYYc84555RijDnnnHOMMeecc845xphzzjnnHHPOOeecc44555xzzjnnnHPOOeecc84555xzzgkAACpwAAAIsFFkc4KRoEJDVgIAqQAAABFWYowxxhgbCDHGGGOMMUYSYowxxhhjbDHGGGOMMcaYYowxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGFtrrbXWWmuttdZaa6211lprrQBAvwoHAP8HG1ZHOCkaCyw0ZCUAEA4AABjDmHOOOQYdhIYp6KSEDkIIoUNKOSglhFBKKSlzTkpKpaSUWkqZc1JSKiWlllLqIKTUWkottdZaByWl1lJqrbXWOgiltNRaa6212EFIKaXWWostxlBKSq212GKMNYZSUmqtxdhirDGk0lJsLcYYY6yhlNZaazHGGGstKbXWYoy1xlprSam11mKLNdZaCwDgbnAAgEiwcYaVpLPC0eBCQ1YCACEBAARCjDnnnHMQQgghUoox56CDEEIIIURKMeYcdBBCCCGEjDHnoIMQQgghhJAx5hx0EEIIIYQQOucchBBCCKGEUkrnHHQQQgghlFBC6SCEEEIIoYRSSikdhBBCKKGEUkopJYQQQgmllFJKKaWEEEIIoYQSSimllBBCCKWUUkoppZQSQgghlFJKKaWUUkIIoZRQSimllFJKCCGEUkoppZRSSgkhhFBKKaWUUkopIYQSSimllFJKKaUAAIADBwCAACPoJKPKImw04cIDUGjISgCADAAAcdhq6ynWyCDFnISWS4SQchBiLhFSijlHsWVIGcUY1ZQxpRRTUmvonGKMUU+dY0oxw6yUVkookYLScqy1dswBAAAgCAAwECEzgUABFBjIAIADhAQpAKCwwNAxXAQE5BIyCgwKx4Rz0mkDABCEyAyRiFgMEhOqgaJiOgBYXGDIB4AMjY20iwvoMsAFXdx1IIQgBCGIxQEUkICDE2544g1PuMEJOkWlDgIAAAAA4AAAHgAAkg0gIiKaOY4Ojw+QEJERkhKTE5QAAAAAALABgA8AgCQFiIiIZo6jw+MDJERkhKTE5AQlAAAAAAAAAAAACAgIAAAAAAAEAAAACAhPZ2dTAAQYOwAAAAAAAOGpbkoCAAAAmc74DRgyNjM69TAzOTk74dnLubewsbagmZiNp4d0KbsExSY/I3XUTwJgkeZdn1HY4zoj33/q9DFtv3Ui1/jmx7lCUtPt18/sYf9MkgAsAGRBd3gMGP4sU+qCPYBy9VrA3YqJosW3W2/ef1iO/u3cg8ZG/57jU+pPmbGEJUgkfnaI39DbPqxddZphbMRmCc5rKlkUMkyx8iIoug5dJv1OYH9a59c+3Gevqc7Z2XFdDjL/qHztRfjWEWxJ/aiGezjohu9HsCZdQBKbiH0VtU/3m85lDG2T/+xkZcYnX+E+aqzv/xTgOoTFG+x7SNqQ4N+oAABSxuVXw77Jd5bmmTmuJakX7509HH0kGYKvARPpwfOSAPySPAc2EkneDwB2HwAAJlQDYK5586N79GJCjx4+p6aDUd27XSvRyXLJkIC5YZ1jLv5lpOhZTz0s+DmnF1diptrnM6UDgIW11Xh8cHTd0/SmbgOAdxcyWwMAAGIrZ3fNSfZbzKiYrK4+tPqtnMVLOeWOG2kVvUY+p2PJ/hkCl5aFRO4TLGYPZcIU3vYM1hohS4jHFlnyW/2T5J7kGsShXWT8N05V+3C/GPqJ1QdWisGPxEzHqXISBPIinWDUt7IeJv/f5OtzBxpTzZZQ+CYEhHXfqG4aABQli72GJhN4oJv+hXcApAJSErAW8G2raAX4NUcABnVt77CzZAB+LsHcVe+Q4h+QB1wh/ZrJTPxSBdI8mgTeAdTsQOoFUEng9BHcVPhxSRRYkKWZJXOFYP6V4AEripJoEjXgA2wJRZHSExmJDm8F0A6gEXsg5a4ZsALItrMB7+fh7UKLvYWSdtsDwFf1mzYzS1F82N1h2Oyt2e76B1QdS0SAsQigLPMOgJS9JRC7hFXA6kUsLFNKD5cA5cTRvgSqPc3Fl99xW3QTi/MHR8DEm6WnvaVQATwRqRKjywQ9BrrhugR2AKTsPQeQckrAOgDOhbTESyrXQ50CkNpXdtWjW7W2/3UjeX3U95gIdalfRAoAmqUEiwp53hCdcCwlg47fcbfzlmQMAgaBkh7c+fcDgF+ifwDXfzegLPcLYJsAAJQArTXjnh/uXGy3v1Hk3pV6/3t5ruW81f6prfbM2Q3WNVy98BwUtbCwhFhAWuPev6Oe/4ZaFQUcgKrVs4defzh1TADA1DEh5b3VlDaECw5b+bPfkKos3tIAue3vJZOih3ga3l6O3PSfIkrLv0PAS86PPdL7g8oc2KteNFKKzKRehOv2gJoFLBPXmaXvPBQILgJon0bbWBszrYZYYwE7jl2j+vTdU7Vpk21LiU0QajPkywAAHqbUC0/YsYOdb4e6BOp7E0cCi04Ao/TgD8ZVAMid6h/A8IeBNkp6/xsAACZELEYIk+yvI6Qz1NN6lIftB/6IMWjWJNOqPTMedAmyaj6Es0QBklJpiSWWHnQ2CoYbGWAmt+0gLQBFKCBnp2QUUQZ/1thtZDBJUpFWY82z34ocorB62oX7qB5y0oPAv/foxH25wVmgIHf2xFOr8leZcBq1Kx3ZvCq9Bga639AxuHuPNL/71YCF4EywJpqHFAX6XF0sjVbuANnvvdLcrufYwOM/iDa6iA468AYAAB6mNBMXcgTD8HSRqJ4vw8CjAlCEPACASlX/APwPOJKl9xQAAAPmnev2eWp33Xgyw3Dvfz6myGk3oyP8YTKsCOvzAgALQi0o1c6Nzs2O2Pg2h4ACIJAgAGP0aNn5x0BDgVfH7u2TtyfDcRIuYAyQhBF/lvSRAttgA6TPbWZA9gaUrZWAUEAA+Dx47Q3/r87HxUUqZmB0BmUuMlojFjHt1gDunnvuX8MImsjSq5WkzSzGS62OEIlOufWWezxWpv6FBgDgJVltfXFYtNAAnqU0xQoD0YLiXo5cF5QV4CnY1tBLAkZCOABAhbk/AM+/AwSCCdlWAAAMcFjS7owb8GVDzveDiZvznbt2tF4bL5odN1YKl88TAEABCZvufq9YCTBtMwVAQUEAwGtNltzSaHvADYC3TxLVjqiRA+OZAMhzcqEgRcAOwoCgvdTxsTHLQEF6+oOb2+PAI8ciPQcXg7pOY+LjxQSv2fjmFuj34gGwz310/bGK6z3xgT887eomWULEaDd04wHetYxdjcgV2SxvSwn0VoZXJRqkRC5ASQ/muVoAUsX7AgAQMBNaVwAAlABRxT/1PmfqLqSRNDbhXb07berpB3b94jpuWEZjBCD2OcdXFpCKEgCDfcFPMw8AAADUwT4lnUm50lmwrpMMhPQIKj6u0E8fr2vGBngMNdIlrZsigjahljud6AFVg+tzXwUnXL3TJLpajaWKA4VAAAAMiFfqJgKAZ08XrtS3dxtQNYcpPvYEG8ClvrQRJgBephwnNWJjtGqmp6VEPSvBe7EBiU3qgJbQAwD4Le8LAMDMhHbNAAAlgK+tFs5O+YyJc9yCnJa3rxLPulGnxwsXV9Fsk2k4PisCAHC8FkwbGE9gJQAAoMnyksj0CdFMZLLgoz8M+FxziwYBgIx+zHiCBAKAlBKNpF1sO9JpVcyEi9ar15YlHgrut5fPJnkdJ6vEwZPyAHQBIEDUrlMcBAAd2KAS0Qq+JwRsE4AJZtMnAD6GnOYwYlOIZvtzUNdjreB7fiMkWI0CmBB6AIAKc38A9osEFlTSGECB+cbeRDC0aRpLHqNPplcK/76Lxn2rpmqyXsYJWRi/FQAAAKBQk9MCAOibrQBQADCDsqpooPutd+05Ce9g6iEdiYXgVmQAI4+4wskEBEiBloNQ6Ki0/KTQ0QjWfjxzi+AeuXKoMjEVfQOZzr0y941qLgM2AExvbZOqcxZ6J6krlrj4y2j9AdgKDx6GnJsVLhbc42uq584+ouSdNBpoCiCVHrz+WzUA/DDtD8ATgA3h0lMCAAzcFv+S+fSSNkeYWlTpb34mf2RfmqqJeMeklhHAfu7VoAEACgAApKRktL+KkQDWMwYCUAAAAHCKsp80xhp91UjqQBw3x45cetqkjQEyu3G9B6N+R650Uq8OVig7wOm6Wun0ea4lKDPoabJs6aLqgbhPzpv4KR4iODilw88ZpY7q1IOMcbASAOAVtmcCnobcrkG4KGS7/ZnskVWRNF9J0RUHKOnByy9WA8Dv6L4AAARMCQUA4GritfVM2lcZfH3Q3T/vZ47J2YHhcmBazjfdyuV25gLAzrc0cwAAAAAYCh6PdwAAAGyWjFW4yScjaWa2mGcofHxWxewKALglWBpLUvwwk+UOh5eNGyUOs1/EF+pZr+ud5OzoGwYdAABg2p52LiSgAY/ZVlOmilEgHn6G3OcwYjzI7vOj1t6xsx4S3lBY96EUQBF6AIBAmPYH4PoGYCoJAADWe+OZJZi7/x76/yH7Lzf9M5XzRKnFPmveMsilQHwVAAAAAKB3LQD8PCIAAADga0QujBLywzeJ4a6Z/ERVBAUlAEDqvoM7BQBAuAguzFqILtmjH3Kd4wfKobnOhA3z85qWoRPm9hwoOHoDAAlCbwDAA56FHAuXflHo3fe2ttG9XUDeA9YmYCBQ0oPr/1QC8IvuCwAAApbUAQCK22MmE3O78VAbHQT9PIPNoT9zNc3l2Oe7TAVLANBufT8MAQAAAGzT4PS8AQAAoELGHb2uaCwwEv1EWhFriUkbAaAZ27/fVZnTZXbWz3BwWpjUaMZKRj7dZ0J//gUeTdpVEwAAZOFsNxKAjQSgA+ABPoY8Jj5y2wje81jsXc/1TOQWTDYZBmAkNDiqVwuA2NJ9AQAAEBKAt9Vrsfs/2N19MO91S9rd8EHTZHnzC5MYmfQEACy/FBcAAADA5c4gi4z8RANs/m6FNXVo9DV46JG1BBDukqlw/Va5G7QbuGVSI+2aZaoLXJrdVj2zlC9Z5QEAEFz/5QzgVZwAAAAA/oXcxyC6WfTu+09Ve/c766J4VTAGUFmA51+VANKi/QPoPwYgYAkA715OH4S0s5KDHvj99MMq8TPFc3roKZnGOoT1bmIhVgc7XAMBAAAAAMAW1VbQw3gapzOpJd+Kd2fc4iSO62fJv9+movui1wUNPAj059N3OVxzk4gV73PmE8FIA2F5mRq37Evc76vLXfF4rD5UJJAw46hW6LZCb5sNLdx+kzMCAAB+hfy95+965ZCLP7B3/VlTHCvDEKtQhTm4KiCgAEAbrfbWTPssAAAAXpee1tVrozYYn41wD1aeYtkKfswN5/SXPO0JDnhO/4laUortv/s412fybe/nONdncoCHnBVliu0CQGBWlPY/5Kwom2L/kruPM6Q7oz4tvDQy+bZ3HzOi+gNHA4DZEgA="),i.resource.add("hterm/images/icon-96","image/png;base64","iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAFKhJREFUeNrtXXlsXMd5/30z8649uDzEmxRFibIsOXZ8VInTJFYSW3actE1ctWkctEF6I0VRFEWAoihQoAjQFmiBogWaIEADFCmQXklto04TO0ndWI4bxZalWHJinTYtkRJFkctzl9zd977+8c49+UjuipbCD1y+9+ae75vvmJlv3gO2YRu2YRu2YRu2YUuAtroBN3nfeKsaSXWurarvRvUrTnlccV/5a3lDReRKFdc4Za6nzvW2b7OIpwZh7N37iHYiPztyvy4iqA00Tng/WXH1f3GQsFki0Qbz+cAV12jeRkTwwUd2yfsVI89OjbLrwnoJILw8EoAOIAFgLwDTCxcAJBEJIiIAgoiICAIgIgIBJGpdPRCRq3sPCBAJAii8QgAk/PIFkSBBQvh3QRkQXtECBKpxH9br5hMikhcg4QV4dYkgARFBSkmlUmnp7LmLX8rl8q95OPKJ0DQCkPeTEcQrAD179+7+7LsP3vtJw9A1ZvbwFfQM/r1/AyD64KLBv5JHIaIwIpI5GIbevd82r0I3OMjvJfOo5ffCqw1EhIRlQQi3a37p0atfTVB22PhIuHt95tnnBr75zHN/AGASoYjyxVVTCOCPfOWN9sGfue+df/L4r3z8MSGUOv3aWYDIq43BEXXEQRPCQK5qFleFMdduOwMV3WKUBXFVyVXhtm3jrjtvw13vuL1uPXGAAUghkGlLPXJ9ZvZzL738oz8HsOhFF2u3aH0E8JEvAWhe+n2PHD70Z7/xmccfLBSK9M1nX0AqnYFSKiB7fIiOzg3k21BeYHW1gMkr1/DBB+6HkGLTxmRfbxf9+qc/8WszM9lzF99468twxZCAq5wbQiMCREWPBkDXde3eI489+he/+1u/et/c3AK+/uSzyLTvgK7rm+tBE4CZA1HRaFT7oqNQKCCdsqBp61GD9eHBD77XunJ16o/+6q+/cLJYLP2fhzfGGkRYiwBRK2fnL/3iRz7/uT/8nfuuz2Txla8+hXRbJ6QUKBaLuJmgVLJRKuShlIBpatiEFApACIFHH/lA//NHj33qe0ePvQJXEa/JnHEIoABYd925/zOPf+JjBxMJC//yxX+GYaZgGAZse00ue1uByyWMQrGEldVVKCWbQgAA6OnegQP7997zvaPH2gGsIpQidWuoRwA/o2/bDz70off+nFIa/fczz2Pq2hzSbRksLCxsNT43BI7jYCW/ihd/cBKWZTZhQcFV9qMjQ0gmEwm4hkqsOVEjDogq37bOjvaElBKLizmYVgKWZW01HjeOLGaAbUipoJTWHAKwa4KYpmHCJUB0lQCoU0scK0gCMJRSqqOjHel0EqZpIpFIbDUeNwwOM2y7gO4dnWhrSzVFBDEzMpkULNM04BIgFsS1ggxNUzKVSiCRsEBEUEoFiRq2v5HNXjMd18pSHVeZnuuniZaopIIQBAIhnUqgvb1tU3OBKFiWCdMydABWBH+bIoCvA3RNU9KyDOiahG2XAAAzszO4NHkZINcKALuddRHi3VWFReLcWy8dhxO5aFpvkhamD5HFwQQuStgwLPpsOza45GD/yD4MDw2jVCrCMHSkUwmws3kCMADD0GCZpialMG3bia4trVsJ+xkJAKSUStM0oWsSQrgTGdu2MXllEmezF/HRhz+C4b6hyEgrnyjVLLzhcho1iFsDiGomOzt+Ds/8z7PIzmfR39eP1dVVSOEijR0nRsFrg1ISpmkoQ9cTufxKrBbHmoUoJZWmlPDXRZgdMDNsx8HuXbtx3zvvhRQKTdFmLQACoT2dwY9efRWlvA1m1xJy2IEggkPrnUvXB9M0lGkaiVx+xR/ADQuPRQAppaY0JfzOBB0joFAs4Oyb59E0Y7pF4DDDdmw47LgygQHbbs7Ij4JpGMIwjGRFcF0xFJcDdE0pUb3YQ1hYWsDFSxff7vgHMyO3kkMGiaAPzScAwzB0YVlmAuHo3zQHkKaUppTHAUQBLQnAYm4J41feCldAGeHe2FaCq9fdXQMP8qt5sB6OlGbP4pkBwzBgGHoKMdcIG82Ew0RK6UqTxHAJEHSBCLmVHCavXwUcwGpXMJIS2YnVhrq01cAOQxkC7YMG5i6vwi65LV4trIK10GJyHLvpTTR0DZZlJtEEMxR+IVJJTSlFAFdZL47joFgswrEZ3X06Dv3eAH787Vm8/t0s8nMld9PjBhHCN1G7dlm490g3rIzCt/5yHIWiA5dxGQ5HOcBpatuYGZquwTSNTXMAogVoSukuAXwlzFUpSRCyl1cx+VoOBz/Zi93vyeDE16bx1iuLsIsOSLSWCuwwEh0a9h/uxDs+2gWnxDj+79dQKjhlg4bZl/vkiaDmtkvXNFimmURMJ4VYOkBpSldSug91TDYiIDdXwtEvTeDNlxZw3y/34PDnduLCi/M4+eQ0Zt5cCdI1G/FKFxg5mME9R7rRMWTi/AtzOPnENLKXV2tyrA+lFqzkKk3BNI0k3BWE5swDXA7wlm0bFEkEODbjzWPzmDqTw4HDnbjz57swdHcKp56+jte/k0VurtRUInSPJXD3Y90YfXcbZt7I49t/M45LJ5ZgF7lMAbsN9BfiXE5uthXEzFBK+TpAhrVunAAEeEp4DQ4oyyQI+fkSjn/tGsZfWcA9j3Xjvk/0Yte72vD8FyZw/Y2VauRsAA483ImDn+oF28DL/zqFn3wni/xcESSoTvkExxdBBNilFnCAlLBMM+Hhdk3HtThoIE1TulTuDlscAgAuNxCA6XN5HP+Pa8heWsHAgSQyA0ZzFr8IGHhHCukeHedfmMOpb8wgly021jXkTsjYm9C0YjNJSgFvHuAP7qbMA3TpcwAo1ooDOwwjKTH2QDvu/lg3lCnwg69cxcSpJc8dZJPgACeeuAYhgf0Pd6JjyMArX5/GlZ8sg23U5TCf+ESt0QFCCFiWYcF131kT4lhBpDSXAMy+Eq1PAXYAIYHBu9O490g3evclMf7yAk785zSuX8i7Y68ZOoCA6xdW8N2/u4TRd2dw75FuPPqnu3Dmu7N49RszWLiyGvgGRfM47HjNdzmg6U6kRLAs02wGAXwieBwgggoaMUD7oI67fmEHbjvUgfmrBTz395fw5ksLKK26pmgzO0wCsFcZ576XxeTpZdzxaCfu+HAXRg624eST0zh/dB6FXDjK3TUgVwQREUot0AFCEEx3U8ZoBgEAVwdoUnheFnWGLztA1y4Tj/zxCIyUwI+emsaPn5nF8qyvFFs0D/C805Zni3jpq1MY/+EC7jnSg/f+5gB69yXw/BcnYBfDIeMrYaLW6ACAYFmmjpi7YqpmCRWMq2maLgIOqFcUQ7MErp5ZxqmnZ0Jx0+IJWNBIr5qpszl852/fwp73ZNC3PwmhKCQAUWCGAu5MuNlriEQEy6zaFauLhHg6QClNejte9YQICcL1i3k8/4UJd/bZZHETGwGCYK8yzjw3h4vHFmAXym19dxfNE0EtcqkxTVPTdd0qFApRPNaEtcxQAiA0TelCeKvRDTSoXWTYJb5ho75Rq0kApbwDrphrOREd0Ip5AOBuyhiGHsttpB4BohiUmqZpgel4Mx1qournYCbcUg4wpLccUasVZVCLAJUZhKaUTp5hvTWCpXnAcEIOsG00fxuVYRq6MA3dX5JuCGt5xhEAqWkq4IC4M+GYbV0/bLJ6h92dmlaJIG9ThkyzbE9gQ0rYB6lpSgUc0CT8C0nQzPUvCDk2o7iysUU0gmsFcSCCnJZspeq6BtPUk3HSxrGChKZpmu/U2gwKsMPo2Z/E+397AELFL48EMHFqGd//x0k49gYwR+VWUGvmAQxD12GZZgox1tpiuSa6HOCJIJ8umxo5hELOxvSFPEiuIxcR5idXNzVqqwnQXBZghr8r5m/KbHgxzs+oNE1T/sBvhggiAcyOr+B//+FyUzsfD0ERM7RFIkjTgj2BNTmgnhUUXcd2N4SpBUp4C6DVHABmaEr5+8L+rtiGlTADUK4I8kJ8XeDDes/KAw37zPUSrYUn5tpJOJqE4ThOSACn+RzAAKSU/p7AmgI2phWkyeB4ZqQiAsFZtkFOZI+Ao7SgytVgeJoQVBkf+HRGrxVhVBFGqHj24imSP3psFUAylYCSEsWSDdu2y86WNQukuytmIdwVq3tSJo5zrtI0JUMjiAJzbrB/AA8YRnCWNnLON3JuFyEiIj8AZen9Vc0wL0JkRtMgGlfjDHBwDSLKzwp7dRZL+aYivZwAApZlWnAPt0TxuSYBKocCA1BKUxIgMBy0taUAOCiVikilUkin0/FbFnEz3xxQLGMg6rpemX9paQm37x2DlLLMU6IZIITwOUCraEAVERotR4ccoDQJAI7DGBrsx8MP3o+nv/V9dHf3BAc1IjguO00d+OpHffYrw5ir09WMi5wd4PC8QLDHXHGmIHr1G8dgsOOgoyOJB973LjR/KSLYFYtuymxYCZOUUtM8z2i/w48cPgTTMPDD46eQX1mG768Smqq+qAFEROwIQSASZVdBAiQIQggI8q7+c/AjSCEgZBgm/TgZ3stovKy4RsqzLBMjOweRSiXhNOFwRi0CmJbhE2BTm/KspNQ0pcrMVaUkDj/0fnzg0P0olkqhs+4a71xoeA0LKCurIrhmf2rJzca9cl0Um3U0qZoAqNwV25AS9pEdnA2IguM4kFLC95bYLPiiJYIjtEI83BggWKapCSEsx3E2txinlPJOx9z8k7AbBUTBSRkrl8tv+GUdDIClksphFsvL+ZacKLn1gL3V0DICrOuQXvSohUNE2rnz41QqcdPNtVsRGEBbOgnbdkjTVKUZWgWqRn4fHABOoVBcNE2ztHPnoL7NAfHANHS8dPzE0sxMdsILqvsGrXocEGRYXFx67fUz5y729e7Yw4ADjumb2AJoWq2xCtrwdh0TQRz74YmLpZI9HitHjTCCa0KZANKGoX88lUo+pCmlhBASYMmAjE76Ea4CoNyerDYuUZHRXwiq2Pan8r/yNkcMAiqvv+pwFFWmpQqbl6isaqoVVtajsJfB0piXwCEidhyHp6/PHpudnfs8gDm4b07xX+xXBnEW43jv2Ojo73/20x+ezc47Fy6MN/IOXZ+ZxBvIE6eeCovbn0FXzjXqt4urEsVlGsPQ8NFHP0RP/dez4sv/9G8ZuK8wq2uKxtkRs+44cNs7e3t61NEXXwVIVUye1o+f+nnXsT1ZlrwiH9dKjLp+TZVhoRNy/Jb5PrPjlyfAzDiwf28vgD4AV+AuS5dq5au3FuS/I0IB6B3bM7L7wsW3IJSBjvb2ls0gb3YgIiym0hi/NImB/p5Mpi09Or+weBqu+CliHYtx/ruCpGWZu3cOD/Sceu08ioUiFhcX12rHTy0QEXTdwKVLV7B/326tt3fHnvmFRQMu8v03aAERIjTyC5IAtJGdg/s7OjLmbHYBXV29TVt6uFVB13VMXZtFwrIwMNA3dvbcGxaAFYQb9LE5QAFI7Nk9cgdAyOeL2CFlS8XPrbDUoZTC4lIexVIJw0P9IwDScBVxzVOT9QggvbiuvWOjY9nsPBxmLC0tbc+G1wApJWyHMTObxcjwYB+ALgBTCN8+WTYpa0QAQUTDu0eH+ycmp5BOtyGVSm0r4Big6wYmJqYwNNTfIaXss237DEIRVMYFUQIEnnDwOGBwoG9ff19P+tXT52BZiVtCRLS6D8wM0zRx6fJV/Oz991jdOzp3Xp2a9iVKlTlayQFR89PYPTp8wLJMys4tItNuYH5+fqvx97YHIQQ0XcfUtRmkUgnq7+8duTo1raGOj1AlB0TnAOm9Y6O35XJ5MAskk8lt8bMOmMzOwHEYw0P9IydOnjYR6oC6BADK5wD9e8d2DV65Og3dMKGUuuUUcCvFkcPA/PwCRnYODAJoA3AdNRy1anGABCA7O9vHRnYOdrx84sdgBubm5rY5ICa4m/8Sk1enMTQ00A2gG8BbKOcCBmpzgASgj44M7+/oaJfXpmfR3t5xy07AWsUFhUIRlyemcOcde9OpVHJgaWn5FawhgqLfhkmOje26nZmRyxXQtePmfU3xVoFpmbg2PYtMW1rr6+3eeX5pOaqEgyWJShHkJ9px297RXddnsiiWbCwuLv5UiJ9aX/bYSBlE7nV5OYe2dAqDA727zl94s5IAZSIoKv9FImHt2rN7pDs7N4/l5WVIOesRwH8Tbs2qgwvXi6uKr9PB+u8ujomSeKlonZG0RmRl6AcPHcTAQC8GB/uGEb5RPToh46j3bhCxc3hg39Bgn9nbswPpVBK53ErZR2tqOV358eVx4X2wzRRx2K103q12yEXo5Bvcry99I4ewuI5kYdsj6SIOxV5omXOwphS6ujoghMDw0EAvXEvoSgTfAKrfaUMA9F0jQ7d3d3chk0njoQ+9b83NiK0VTnHendOqdnLdIIY7K3YJ0N8ppeixbecMYixFpHaNDI+mU0n3pdl8a9n+NxJ87ujv7030dO8YvHL1mr8zWsYBlZrZymTSKaUlQNLAVo/vmxsIxCV0tLeJzs72bo8AboSH71qroStLS8u567PzyK86G9ox32yjW1lU6/sTrYFhmQqWZSGdSmZqpVZlqV3IzcxkZ6evTWFpebWmT2+tj6MF76OtdbSL61gyzDXTlZ0hKE9Q9rEGrrK8uELec1Vc+bcJIvfRwyM1wpiry2sU5opvRqYtCcuUKBSKJYQf/QzcFX0CRN0Rc8dPnD5qJZ7okVKCHYd8V27/RRcM9gAAewc/2bsLH+GnCf+Xp/PmFsFtEBumLqss8oTIX9lzUFCQJ9rAijRV92VtjTxHyquqpKzLjn+Fu+xsKyULzLzyxhuXnkSNL66WnYRB+KnCDNydHP/dZzpCU7WWUuAGzxwjvlYZ9cLWm4cbxMUpD2vkqQzzkVwEUIC7Gb/iXQvez3fSYlWR0YZLuUUvkYHw453+JGK9EKdTrdT0Db2TW9CO6DeGSyhHetWXVqOfvXAq7m0vY9xvBW+28RvJ3ygP4ca3KcpJUU7wER/VAQBqK2H/DRZ+hspDe81EYKsQsZV1Vg7oKNKjyGegsXNuFOE302Ywr/G8Fe2pq4fqIfZmQvjbHbZ6AGzDNmzDNmzD2xT+H+5UT7Tyxc2HAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA2LTMwVDExOjUwOjAyLTA0OjAwOaSkCgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxMy0xMS0wMVQxMDozODoyNC0wNDowMNba8BsAAAAASUVORK5CYII="),i.resource.add("hterm/concat/date","text/plain","Tue, 22 Aug 2017 06:42:31 +0000"),i.resource.add("hterm/changelog/version","text/plain","1.70"),i.resource.add("hterm/changelog/date","text/plain","2017-08-16"),i.resource.add("hterm/git/HEAD","text/plain","git rev-parse HEAD"),e.exports={hterm:o,lib:i}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(10),o=r(13),s=r(12),n=r(11),a=document.getElementById("terminal");if(null!==a){var l;l="hterm"==gotty_term?new i.Hterm(a):new o.Xterm(a);var h=("https:"==window.location.protocol?"wss://":"ws://")+window.location.host+window.location.pathname+"ws",c=window.location.search,u=new n.ConnectionFactory(h,s.protocols),p=new s.WebTTY(l,u,c,gotty_auth_token).open();window.addEventListener("unload",function(){p(),l.close()})}},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t,r){this.textarea=e,this.compositionView=t,this.terminal=r,this.isComposing=!1,this.isSendingComposition=!1,this.compositionPosition={start:null,end:null}}return e.prototype.compositionstart=function(){this.isComposing=!0,this.compositionPosition.start=this.textarea.value.length,this.compositionView.textContent="",this.compositionView.classList.add("active")},e.prototype.compositionupdate=function(e){var t=this;this.compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout(function(){t.compositionPosition.end=t.textarea.value.length},0)},e.prototype.compositionend=function(){this.finalizeComposition(!0)},e.prototype.keydown=function(e){if(this.isComposing||this.isSendingComposition){if(229===e.keyCode)return!1;if(16===e.keyCode||17===e.keyCode||18===e.keyCode)return!1;this.finalizeComposition(!1)}return 229!==e.keyCode||(this.handleAnyTextareaChanges(),!1)},e.prototype.finalizeComposition=function(e){var t=this;if(this.compositionView.classList.remove("active"),this.isComposing=!1,this.clearTextareaPosition(),e){var r={start:this.compositionPosition.start,end:this.compositionPosition.end};this.isSendingComposition=!0,setTimeout(function(){if(t.isSendingComposition){t.isSendingComposition=!1;var e=void 0;e=t.isComposing?t.textarea.value.substring(r.start,r.end):t.textarea.value.substring(r.start),t.terminal.handler(e)}},0)}else{this.isSendingComposition=!1;var i=this.textarea.value.substring(this.compositionPosition.start,this.compositionPosition.end);this.terminal.handler(i)}},e.prototype.handleAnyTextareaChanges=function(){var e=this,t=this.textarea.value;setTimeout(function(){if(!e.isComposing){var r=e.textarea.value.replace(t,"");r.length>0&&e.terminal.handler(r)}},0)},e.prototype.updateCompositionElements=function(e){var t=this;if(this.isComposing){var r=this.terminal.element.querySelector(".terminal-cursor");if(r){var i=this.terminal.element.querySelector(".xterm-rows").offsetTop+r.offsetTop;this.compositionView.style.left=r.offsetLeft+"px",this.compositionView.style.top=i+"px",this.compositionView.style.height=r.offsetHeight+"px",this.compositionView.style.lineHeight=r.offsetHeight+"px";var o=this.compositionView.getBoundingClientRect();this.textarea.style.left=r.offsetLeft+"px",this.textarea.style.top=i+"px",this.textarea.style.width=o.width+"px",this.textarea.style.height=o.height+"px",this.textarea.style.lineHeight=o.height+"px"}e||setTimeout(function(){return t.updateCompositionElements(!0)},0)}},e.prototype.clearTextareaPosition=function(){this.textarea.style.left="",this.textarea.style.top=""},e}();t.CompositionHelper=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=r(2),o=r(3),s=function(){function e(e){this._terminal=e}return e.prototype.addChar=function(e,t){if(e>=" "){var r=n(t);this._terminal.charset&&this._terminal.charset[e]&&(e=this._terminal.charset[e]);var i=this._terminal.y+this._terminal.ybase;if(!r&&this._terminal.x)return void(this._terminal.lines.get(i)[this._terminal.x-1]&&(this._terminal.lines.get(i)[this._terminal.x-1][2]?this._terminal.lines.get(i)[this._terminal.x-1][1]+=e:this._terminal.lines.get(i)[this._terminal.x-2]&&(this._terminal.lines.get(i)[this._terminal.x-2][1]+=e),this._terminal.updateRange(this._terminal.y)));if(this._terminal.x+r-1>=this._terminal.cols)if(this._terminal.wraparoundMode)this._terminal.x=0,++this._terminal.y>this._terminal.scrollBottom?(this._terminal.y--,this._terminal.scroll(!0)):this._terminal.lines.get(this._terminal.y).isWrapped=!0;else if(2===r)return;if(i=this._terminal.y+this._terminal.ybase,this._terminal.insertMode)for(var o=0;othis._terminal.scrollBottom&&(this._terminal.y--,this._terminal.scroll()),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.carriageReturn=function(){this._terminal.x=0},e.prototype.backspace=function(){this._terminal.x>0&&this._terminal.x--},e.prototype.tab=function(){this._terminal.x=this._terminal.nextStop()},e.prototype.shiftOut=function(){this._terminal.setgLevel(1)},e.prototype.shiftIn=function(){this._terminal.setgLevel(0)},e.prototype.insertChars=function(e){var t,r,i,o;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.x,o=[this._terminal.eraseAttr()," ",1];t--&&i=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.cursorForward=function(e){var t=e[0];t<1&&(t=1),this._terminal.x+=t,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.cursorBackward=function(e){var t=e[0];t<1&&(t=1),this._terminal.x>=this._terminal.cols&&this._terminal.x--,this._terminal.x-=t,this._terminal.x<0&&(this._terminal.x=0)},e.prototype.cursorNextLine=function(e){var t=e[0];t<1&&(t=1),this._terminal.y+=t,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x=0},e.prototype.cursorPrecedingLine=function(e){var t=e[0];t<1&&(t=1),this._terminal.y-=t,this._terminal.y<0&&(this._terminal.y=0),this._terminal.x=0},e.prototype.cursorCharAbsolute=function(e){var t=e[0];t<1&&(t=1),this._terminal.x=t-1},e.prototype.cursorPosition=function(e){var t,r;t=e[0]-1,r=e.length>=2?e[1]-1:0,t<0?t=0:t>=this._terminal.rows&&(t=this._terminal.rows-1),r<0?r=0:r>=this._terminal.cols&&(r=this._terminal.cols-1),this._terminal.x=r,this._terminal.y=t},e.prototype.cursorForwardTab=function(e){for(var t=e[0]||1;t--;)this._terminal.x=this._terminal.nextStop()},e.prototype.eraseInDisplay=function(e){var t;switch(e[0]){case 0:for(this._terminal.eraseRight(this._terminal.x,this._terminal.y),t=this._terminal.y+1;t0&&(this._terminal.lines.trimStart(r),this._terminal.ybase=Math.max(this._terminal.ybase-r,0),this._terminal.ydisp=Math.max(this._terminal.ydisp-r,0))}},e.prototype.eraseInLine=function(e){switch(e[0]){case 0:this._terminal.eraseRight(this._terminal.x,this._terminal.y);break;case 1:this._terminal.eraseLeft(this._terminal.x,this._terminal.y);break;case 2:this._terminal.eraseLine(this._terminal.y)}},e.prototype.insertLines=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.rows-1-this._terminal.scrollBottom,i=this._terminal.rows-1+this._terminal.ybase-i+1;t--;)this._terminal.lines.length===this._terminal.lines.maxLength&&(this._terminal.lines.trimStart(1),this._terminal.ybase--,this._terminal.ydisp--,r--,i--),this._terminal.lines.splice(r,0,this._terminal.blankLine(!0)),this._terminal.lines.splice(i,1);this._terminal.updateRange(this._terminal.y),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.deleteLines=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.rows-1-this._terminal.scrollBottom,i=this._terminal.rows-1+this._terminal.ybase-i;t--;)this._terminal.lines.length===this._terminal.lines.maxLength&&(this._terminal.lines.trimStart(1),this._terminal.ybase-=1,this._terminal.ydisp-=1),this._terminal.lines.splice(i+1,0,this._terminal.blankLine(!0)),this._terminal.lines.splice(r,1);this._terminal.updateRange(this._terminal.y),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.deleteChars=function(e){var t,r,i;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=[this._terminal.eraseAttr()," ",1];t--;)this._terminal.lines.get(r).splice(this._terminal.x,1),this._terminal.lines.get(r).push(i)},e.prototype.scrollUp=function(e){for(var t=e[0]||1;t--;)this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollTop,1),this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollBottom,0,this._terminal.blankLine());this._terminal.updateRange(this._terminal.scrollTop),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.scrollDown=function(e){for(var t=e[0]||1;t--;)this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollBottom,1),this._terminal.lines.splice(this._terminal.ybase+this._terminal.scrollTop,0,this._terminal.blankLine());this._terminal.updateRange(this._terminal.scrollTop),this._terminal.updateRange(this._terminal.scrollBottom)},e.prototype.eraseChars=function(e){var t,r,i,o;for((t=e[0])<1&&(t=1),r=this._terminal.y+this._terminal.ybase,i=this._terminal.x,o=[this._terminal.eraseAttr()," ",1];t--&&i=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.HPositionRelative=function(e){var t=e[0];t<1&&(t=1),this._terminal.x+=t,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.repeatPrecedingCharacter=function(e){for(var t=e[0]||1,r=this._terminal.lines.get(this._terminal.ybase+this._terminal.y),i=r[this._terminal.x-1]||[this._terminal.defAttr," ",1];t--;)r[this._terminal.x++]=i},e.prototype.sendDeviceAttributes=function(e){e[0]>0||(this._terminal.prefix?">"===this._terminal.prefix&&(this._terminal.is("xterm")?this._terminal.send(i.C0.ESC+"[>0;276;0c"):this._terminal.is("rxvt-unicode")?this._terminal.send(i.C0.ESC+"[>85;95;0c"):this._terminal.is("linux")?this._terminal.send(e[0]+"c"):this._terminal.is("screen")&&this._terminal.send(i.C0.ESC+"[>83;40003;0c")):this._terminal.is("xterm")||this._terminal.is("rxvt-unicode")||this._terminal.is("screen")?this._terminal.send(i.C0.ESC+"[?1;2c"):this._terminal.is("linux")&&this._terminal.send(i.C0.ESC+"[?6c"))},e.prototype.linePosAbsolute=function(e){var t=e[0];t<1&&(t=1),this._terminal.y=t-1,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1)},e.prototype.VPositionRelative=function(e){var t=e[0];t<1&&(t=1),this._terminal.y+=t,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x>=this._terminal.cols&&this._terminal.x--},e.prototype.HVPosition=function(e){e[0]<1&&(e[0]=1),e[1]<1&&(e[1]=1),this._terminal.y=e[0]-1,this._terminal.y>=this._terminal.rows&&(this._terminal.y=this._terminal.rows-1),this._terminal.x=e[1]-1,this._terminal.x>=this._terminal.cols&&(this._terminal.x=this._terminal.cols-1)},e.prototype.tabClear=function(e){var t=e[0];t<=0?delete this._terminal.tabs[this._terminal.x]:3===t&&(this._terminal.tabs={})},e.prototype.setMode=function(e){if(e.length>1)for(var t=0;t1e3,this._terminal.mouseEvents=!0,this._terminal.element.classList.add("enable-mouse-events"),this._terminal.selectionManager.disable(),this._terminal.log("Binding to mouse events.");break;case 1004:this._terminal.sendFocus=!0;break;case 1005:this._terminal.utfMouse=!0;break;case 1006:this._terminal.sgrMouse=!0;break;case 1015:this._terminal.urxvtMouse=!0;break;case 25:this._terminal.cursorHidden=!1;break;case 1049:case 47:case 1047:if(!this._terminal.normal){var r={lines:this._terminal.lines,ybase:this._terminal.ybase,ydisp:this._terminal.ydisp,x:this._terminal.x,y:this._terminal.y,scrollTop:this._terminal.scrollTop,scrollBottom:this._terminal.scrollBottom,tabs:this._terminal.tabs};this._terminal.reset(),this._terminal.viewport.syncScrollArea(),this._terminal.normal=r,this._terminal.showCursor()}}}else switch(e[0]){case 4:this._terminal.insertMode=!0}},e.prototype.resetMode=function(e){if(e.length>1)for(var t=0;t>18,s=this._terminal.curAttr>>9&511,n=511&this._terminal.curAttr;i=30&&t<=37?s=t-30:t>=40&&t<=47?n=t-40:t>=90&&t<=97?s=(t+=8)-90:t>=100&&t<=107?n=(t+=8)-100:0===t?(o=this._terminal.defAttr>>18,s=this._terminal.defAttr>>9&511,n=511&this._terminal.defAttr):1===t?o|=1:4===t?o|=2:5===t?o|=4:7===t?o|=8:8===t?o|=16:22===t?o&=-2:24===t?o&=-3:25===t?o&=-5:27===t?o&=-9:28===t?o&=-17:39===t?s=this._terminal.defAttr>>9&511:49===t?n=511&this._terminal.defAttr:38===t?2===e[i+1]?(i+=2,-1===(s=this._terminal.matchColor(255&e[i],255&e[i+1],255&e[i+2]))&&(s=511),i+=2):5===e[i+1]&&(s=t=255&e[i+=2]):48===t?2===e[i+1]?(i+=2,-1===(n=this._terminal.matchColor(255&e[i],255&e[i+1],255&e[i+2]))&&(n=511),i+=2):5===e[i+1]&&(n=t=255&e[i+=2]):100===t?(s=this._terminal.defAttr>>9&511,n=511&this._terminal.defAttr):this._terminal.error("Unknown SGR attribute: %d.",t);this._terminal.curAttr=o<<18|s<<9|n}else this._terminal.curAttr=this._terminal.defAttr},e.prototype.deviceStatus=function(e){if(this._terminal.prefix){if("?"===this._terminal.prefix)switch(e[0]){case 6:this._terminal.send(i.C0.ESC+"[?"+(this._terminal.y+1)+";"+(this._terminal.x+1)+"R")}}else switch(e[0]){case 5:this._terminal.send(i.C0.ESC+"[0n");break;case 6:this._terminal.send(i.C0.ESC+"["+(this._terminal.y+1)+";"+(this._terminal.x+1)+"R")}},e.prototype.softReset=function(e){this._terminal.cursorHidden=!1,this._terminal.insertMode=!1,this._terminal.originMode=!1,this._terminal.wraparoundMode=!0,this._terminal.applicationKeypad=!1,this._terminal.viewport.syncScrollArea(),this._terminal.applicationCursor=!1,this._terminal.scrollTop=0,this._terminal.scrollBottom=this._terminal.rows-1,this._terminal.curAttr=this._terminal.defAttr,this._terminal.x=this._terminal.y=0,this._terminal.charset=null,this._terminal.glevel=0,this._terminal.charsets=[null]},e.prototype.setCursorStyle=function(e){var t=e[0]<1?1:e[0];switch(t){case 1:case 2:this._terminal.setOption("cursorStyle","block");break;case 3:case 4:this._terminal.setOption("cursorStyle","underline");break;case 5:case 6:this._terminal.setOption("cursorStyle","bar")}var r=t%2==1;this._terminal.setOption("cursorBlink",r)},e.prototype.setScrollRegion=function(e){this._terminal.prefix||(this._terminal.scrollTop=(e[0]||1)-1,this._terminal.scrollBottom=(e[1]&&e[1]<=this._terminal.rows?e[1]:this._terminal.rows)-1,this._terminal.x=0,this._terminal.y=0)},e.prototype.saveCursor=function(e){this._terminal.savedX=this._terminal.x,this._terminal.savedY=this._terminal.y},e.prototype.restoreCursor=function(e){this._terminal.x=this._terminal.savedX||0,this._terminal.y=this._terminal.savedY||0},e}();t.InputHandler=s;var n=function(e){function t(e){var t,r=0,o=i.length-1;if(ei[o][1])return!1;for(;o>=r;)if(t=Math.floor((r+o)/2),e>i[t][1])r=t+1;else{if(!(e=4352&&(e<=4447||9001===e||9002===e||e>=11904&&e<=42191&&12351!==e||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141)}var i=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]];return function(i){return 0===i?e.nul:i<32||i>=127&&i<160?e.control:t(i)?0:r(i)?2:1}}({nul:0,control:0})},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=new RegExp("(?:^|[^\\da-z\\.-]+)((https?:\\/\\/)((([\\da-z\\.-]+)\\.([a-z\\.]{2,6}))|((\\d{1,3}\\.){3}\\d{1,3})|(localhost))(:\\d{1,5})?(\\/[\\/\\w\\.\\-%~]*)*(\\?[0-9\\w\\[\\]\\(\\)\\/\\?\\!#@$%&'*+,:;~\\=\\.\\-]*)?(#[0-9\\w\\[\\]\\(\\)\\/\\?\\!#@$%&'*+,:;~\\=\\.\\-]*)?)($|[^\\/\\w\\.\\-%]+)"),o=0,s=function(){function e(){this._nextLinkMatcherId=o,this._rowTimeoutIds=[],this._linkMatchers=[],this.registerLinkMatcher(i,null,{matchIndex:1})}return e.prototype.attachToDom=function(e,t){this._document=e,this._rows=t},e.prototype.linkifyRow=function(t){if(this._document){var r=this._rowTimeoutIds[t];r&&clearTimeout(r),this._rowTimeoutIds[t]=setTimeout(this._linkifyRow.bind(this,t),e.TIME_BEFORE_LINKIFY)}},e.prototype.setHypertextLinkHandler=function(e){this._linkMatchers[o].handler=e},e.prototype.setHypertextValidationCallback=function(e){this._linkMatchers[o].validationCallback=e},e.prototype.registerLinkMatcher=function(e,t,r){if(void 0===r&&(r={}),this._nextLinkMatcherId!==o&&!t)throw new Error("handler must be defined");var i={id:this._nextLinkMatcherId++,regex:e,handler:t,matchIndex:r.matchIndex,validationCallback:r.validationCallback,priority:r.priority||0};return this._addLinkMatcherToList(i),i.id},e.prototype._addLinkMatcherToList=function(e){if(0!==this._linkMatchers.length){for(var t=this._linkMatchers.length-1;t>=0;t--)if(e.priority<=this._linkMatchers[t].priority)return void this._linkMatchers.splice(t+1,0,e);this._linkMatchers.splice(0,0,e)}else this._linkMatchers.push(e)},e.prototype.deregisterLinkMatcher=function(e){for(var t=1;t0){if(i.validationCallback)for(var s=function(e){var t=o[e];i.validationCallback(t.textContent,t,function(e){e||t.classList.add("xterm-invalid-link")})},n=0;n=0){var p=this._createAnchorElement(a,t.handler,i);if(c.textContent.length===a.length)if(3===c.nodeType)this._replaceNode(c,p);else{var d=c;if("A"===d.nodeName)return r;d.innerHTML="",d.appendChild(p)}else if(c.childNodes.length>1)for(var f=0;f"]=function(e){return e.setPrefix(">")},a["!"]=function(e){return e.setPrefix("!")},a[0]=function(e){return e.setParam(10*e.getParam())},a[1]=function(e){return e.setParam(10*e.getParam()+1)},a[2]=function(e){return e.setParam(10*e.getParam()+2)},a[3]=function(e){return e.setParam(10*e.getParam()+3)},a[4]=function(e){return e.setParam(10*e.getParam()+4)},a[5]=function(e){return e.setParam(10*e.getParam()+5)},a[6]=function(e){return e.setParam(10*e.getParam()+6)},a[7]=function(e){return e.setParam(10*e.getParam()+7)},a[8]=function(e){return e.setParam(10*e.getParam()+8)},a[9]=function(e){return e.setParam(10*e.getParam()+9)},a.$=function(e){return e.setPostfix("$")},a['"']=function(e){return e.setPostfix('"')},a[" "]=function(e){return e.setPostfix(" ")},a["'"]=function(e){return e.setPostfix("'")},a[";"]=function(e){return e.finalizeParam()},a[i.C0.CAN]=function(e){return e.setState(h.NORMAL)};var l={};l["@"]=function(e,t,r){return e.insertChars(t)},l.A=function(e,t,r){return e.cursorUp(t)},l.B=function(e,t,r){return e.cursorDown(t)},l.C=function(e,t,r){return e.cursorForward(t)},l.D=function(e,t,r){return e.cursorBackward(t)},l.E=function(e,t,r){return e.cursorNextLine(t)},l.F=function(e,t,r){return e.cursorPrecedingLine(t)},l.G=function(e,t,r){return e.cursorCharAbsolute(t)},l.H=function(e,t,r){return e.cursorPosition(t)},l.I=function(e,t,r){return e.cursorForwardTab(t)},l.J=function(e,t,r){return e.eraseInDisplay(t)},l.K=function(e,t,r){return e.eraseInLine(t)},l.L=function(e,t,r){return e.insertLines(t)},l.M=function(e,t,r){return e.deleteLines(t)},l.P=function(e,t,r){return e.deleteChars(t)},l.S=function(e,t,r){return e.scrollUp(t)},l.T=function(e,t,r){t.length<2&&!r&&e.scrollDown(t)},l.X=function(e,t,r){return e.eraseChars(t)},l.Z=function(e,t,r){return e.cursorBackwardTab(t)},l["`"]=function(e,t,r){return e.charPosAbsolute(t)},l.a=function(e,t,r){return e.HPositionRelative(t)},l.b=function(e,t,r){return e.repeatPrecedingCharacter(t)},l.c=function(e,t,r){return e.sendDeviceAttributes(t)},l.d=function(e,t,r){return e.linePosAbsolute(t)},l.e=function(e,t,r){return e.VPositionRelative(t)},l.f=function(e,t,r){return e.HVPosition(t)},l.g=function(e,t,r){return e.tabClear(t)},l.h=function(e,t,r){return e.setMode(t)},l.l=function(e,t,r){return e.resetMode(t)},l.m=function(e,t,r){return e.charAttributes(t)},l.n=function(e,t,r){return e.deviceStatus(t)},l.p=function(e,t,r){switch(r){case"!":e.softReset(t)}},l.q=function(e,t,r,i){" "===i&&e.setCursorStyle(t)},l.r=function(e,t){return e.setScrollRegion(t)},l.s=function(e,t){return e.saveCursor(t)},l.u=function(e,t){return e.restoreCursor(t)},l[i.C0.CAN]=function(e,t,r,i,o){return o.setState(h.NORMAL)};var h;!function(e){e[e.NORMAL=0]="NORMAL",e[e.ESCAPED=1]="ESCAPED",e[e.CSI_PARAM=2]="CSI_PARAM",e[e.CSI=3]="CSI",e[e.OSC=4]="OSC",e[e.CHARSET=5]="CHARSET",e[e.DCS=6]="DCS",e[e.IGNORE=7]="IGNORE"}(h||(h={}));var c=function(){function e(e,t){this._inputHandler=e,this._terminal=t,this._state=h.NORMAL}return e.prototype.parse=function(e){var t,r,c,u,p=e.length;for(this._position=0,this._terminal.surrogate_high&&(e=this._terminal.surrogate_high+e,this._terminal.surrogate_high="");this._position":this._terminal.log("Switching back to normal keypad."),this._terminal.applicationKeypad=!1,this._terminal.viewport.syncScrollArea(),this._state=h.NORMAL;break;default:this._state=h.NORMAL,this._terminal.error("Unknown ESC control: %s.",r)}break;case h.CHARSET:r in o.CHARSETS?(t=o.CHARSETS[r],"/"===r&&this.skipNextChar()):t=o.DEFAULT_CHARSET,this._terminal.setgCharset(this._terminal.gcharset,t),this._terminal.gcharset=null,this._state=h.NORMAL;break;case h.OSC:if(r===i.C0.ESC||r===i.C0.BEL){switch(r===i.C0.ESC&&this._position++,this._terminal.params.push(this._terminal.currentParam),this._terminal.params[0]){case 0:case 1:case 2:this._terminal.params[1]&&(this._terminal.title=this._terminal.params[1],this._terminal.handleTitle(this._terminal.title))}this._terminal.params=[],this._terminal.currentParam=0,this._state=h.NORMAL}else this._terminal.params.length?this._terminal.currentParam+=r:r>="0"&&r<="9"?this._terminal.currentParam=10*this._terminal.currentParam+r.charCodeAt(0)-48:";"===r&&(this._terminal.params.push(this._terminal.currentParam),this._terminal.currentParam="");break;case h.CSI_PARAM:if(r in a){a[r](this);break}this.finalizeParam(),this._state=h.CSI;case h.CSI:r in l?l[r](this._inputHandler,this._terminal.params,this._terminal.prefix,this._terminal.postfix,this):this._terminal.error("Unknown CSI code: %s.",r),this._state=h.NORMAL,this._terminal.prefix="",this._terminal.postfix="";break;case h.DCS:if(r===i.C0.ESC||r===i.C0.BEL){r===i.C0.ESC&&this._position++;var d=void 0,f=void 0;switch(this._terminal.prefix){case"":break;case"$q":switch(d=this._terminal.currentParam,f=!1,d){case'"q':d='0"q';break;case'"p':d='61"p';break;case"r":d=this._terminal.scrollTop+1+";"+(this._terminal.scrollBottom+1)+"r";break;case"m":d="0m";break;default:this._terminal.error("Unknown DCS Pt: %s.",d),d=""}this._terminal.send(i.C0.ESC+"P"+ +f+"$r"+d+i.C0.ESC+"\\");break;case"+p":break;case"+q":d=this._terminal.currentParam,f=!1,this._terminal.send(i.C0.ESC+"P"+ +f+"+r"+d+i.C0.ESC+"\\");break;default:this._terminal.error("Unknown DCS prefix: %s.",this._terminal.prefix)}this._terminal.currentParam=0,this._terminal.prefix="",this._state=h.NORMAL}else this._terminal.currentParam?this._terminal.currentParam+=r:this._terminal.prefix||"$"===r||"+"===r?2===this._terminal.prefix.length?this._terminal.currentParam=r:this._terminal.prefix+=r:this._terminal.currentParam=r;break;case h.IGNORE:r!==i.C0.ESC&&r!==i.C0.BEL||(r===i.C0.ESC&&this._position++,this._state=h.NORMAL)}}return this._state},e.prototype.setState=function(e){this._state=e},e.prototype.setPrefix=function(e){this._terminal.prefix=e},e.prototype.setPostfix=function(e){this._terminal.postfix=e},e.prototype.setParam=function(e){this._terminal.currentParam=e},e.prototype.getParam=function(){return this._terminal.currentParam},e.prototype.finalizeParam=function(){this._terminal.params.push(this._terminal.currentParam),this._terminal.currentParam=0},e.prototype.skipNextChar=function(){this._position++},e}();t.Parser=c},function(e,t,r){"use strict";function i(e){var t=e.ownerDocument.createElement("span");t.innerHTML="hello world",e.appendChild(t);var r=t.offsetWidth,i=t.offsetHeight;t.style.fontWeight="bold";var o=t.offsetWidth,s=t.offsetHeight;return e.removeChild(t),r!==o||i!==s}Object.defineProperty(t,"__esModule",{value:!0});var o,s=r(33);!function(e){e[e.BOLD=1]="BOLD",e[e.UNDERLINE=2]="UNDERLINE",e[e.BLINK=4]="BLINK",e[e.INVERSE=8]="INVERSE",e[e.INVISIBLE=16]="INVISIBLE"}(o||(o={}));var n=null,a=function(){function e(e){this._terminal=e,this._refreshRowsQueue=[],this._refreshFramesSkipped=0,this._refreshAnimationFrame=null,this._spanElementObjectPool=new s.DomElementObjectPool("span"),null===n&&(n=i(this._terminal.element)),this._spanElementObjectPool=new s.DomElementObjectPool("span")}return e.prototype.queueRefresh=function(e,t){this._refreshRowsQueue.push({start:e,end:t}),this._refreshAnimationFrame||(this._refreshAnimationFrame=window.requestAnimationFrame(this._refreshLoop.bind(this)))},e.prototype._refreshLoop=function(){if(this._terminal.writeBuffer.length>0&&this._refreshFramesSkipped++<=5)this._refreshAnimationFrame=window.requestAnimationFrame(this._refreshLoop.bind(this));else{this._refreshFramesSkipped=0;var e,t;if(this._refreshRowsQueue.length>4)e=0,t=this._terminal.rows-1;else{e=this._refreshRowsQueue[0].start,t=this._refreshRowsQueue[0].end;for(var r=1;rt&&(t=this._refreshRowsQueue[r].end)}this._refreshRowsQueue=[],this._refreshAnimationFrame=null,this._refresh(e,t)}},e.prototype._refresh=function(e,t){var r;t-e>=this._terminal.rows/2&&(r=this._terminal.element.parentNode)&&this._terminal.element.removeChild(this._terminal.rowContainer);var i=this._terminal.cols,s=e;for(t>=this._terminal.rows&&(this._terminal.log("`end` is too large. Most likely a bad CSR."),t=this._terminal.rows-1);s<=t;s++){var a=s+this._terminal.ydisp,l=this._terminal.lines.get(a),h=void 0;h=this._terminal.y===s-(this._terminal.ybase-this._terminal.ydisp)&&this._terminal.cursorState&&!this._terminal.cursorHidden?this._terminal.x:-1;for(var c=this._terminal.defAttr,u=document.createDocumentFragment(),p="",d=void 0;this._terminal.children[s].children.length;){var f=this._terminal.children[s].children[0];this._terminal.children[s].removeChild(f),this._spanElementObjectPool.release(f)}for(var g=0;g>9&511,w=m>>18;if(w&o.BOLD&&(n||d.classList.add("xterm-bold"),C<8&&(C+=8)),w&o.UNDERLINE&&d.classList.add("xterm-underline"),w&o.BLINK&&d.classList.add("xterm-blink"),w&o.INVERSE){var S=_;_=C,C=S,1&w&&C<8&&(C+=8)}w&o.INVISIBLE&&d.classList.add("xterm-hidden"),w&o.INVERSE&&(257===_&&(_=15),256===C&&(C=0)),_<256&&d.classList.add("xterm-bg-color-"+_),C<256&&d.classList.add("xterm-color-"+C)}if(2===b)p+=''+y+"";else if(y.charCodeAt(0)>255)p+=''+y+"";else switch(y){case"&":p+="&";break;case"<":p+="<";break;case">":p+=">";break;default:p+=y<=" "?" ":y}c=m}}p&&!d&&(d=this._spanElementObjectPool.acquire()),d&&(p&&(d.innerHTML=p,p=""),u.appendChild(d),d=null),this._terminal.children[s].appendChild(u)}r&&this._terminal.element.appendChild(this._terminal.rowContainer),this._terminal.emit("refresh",{element:this._terminal.element,start:e,end:t})},e.prototype.refreshSelection=function(e,t){for(;this._terminal.selectionContainer.children.length;)this._terminal.selectionContainer.removeChild(this._terminal.selectionContainer.children[0]);if(e&&t){var r=e[1]-this._terminal.ydisp,i=t[1]-this._terminal.ydisp,o=Math.max(r,0),s=Math.min(i,this._terminal.rows-1);if(!(o>=this._terminal.rows||s<0)){var n=document.createDocumentFragment(),a=r===o?e[0]:0,l=o===s?t[0]:this._terminal.cols;n.appendChild(this._createSelectionElement(o,a,l));var h=s-o-1;if(n.appendChild(this._createSelectionElement(o+1,0,this._terminal.cols,h)),o!==s){var c=i===s?t[0]:this._terminal.cols;n.appendChild(this._createSelectionElement(s,0,c))}this._terminal.selectionContainer.appendChild(n)}}},e.prototype._createSelectionElement=function(e,t,r,i){void 0===i&&(i=1);var o=document.createElement("div");return o.style.height=i*this._terminal.charMeasure.height+"px",o.style.top=e*this._terminal.charMeasure.height+"px",o.style.left=t*this._terminal.charMeasure.width+"px",o.style.width=this._terminal.charMeasure.width*(r-t)+"px",o},e}();t.Renderer=a},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o,s=r(9),n=r(8),a=r(1),l=r(22),h=String.fromCharCode(160),c=new RegExp(h,"g");!function(e){e[e.NORMAL=0]="NORMAL",e[e.WORD=1]="WORD",e[e.LINE=2]="LINE"}(o||(o={}));var u=function(e){function t(t,r,i,s){var n=e.call(this)||this;return n._terminal=t,n._buffer=r,n._rowContainer=i,n._charMeasure=s,n._initListeners(),n.enable(),n._model=new l.SelectionModel(t),n._lastMouseDownTime=0,n._activeSelectionMode=o.NORMAL,n}return i(t,e),t.prototype._initListeners=function(){var e=this;this._bufferTrimListener=function(t){return e._onTrim(t)},this._mouseMoveListener=function(t){return e._onMouseMove(t)},this._mouseDownListener=function(t){return e._onMouseDown(t)},this._mouseUpListener=function(t){return e._onMouseUp(t)}},t.prototype.disable=function(){this.clearSelection(),this._buffer.off("trim",this._bufferTrimListener),this._rowContainer.removeEventListener("mousedown",this._mouseDownListener)},t.prototype.enable=function(){this._buffer.on("trim",this._bufferTrimListener),this._rowContainer.addEventListener("mousedown",this._mouseDownListener)},t.prototype.setBuffer=function(e){this._buffer=e,this.clearSelection()},Object.defineProperty(t.prototype,"hasSelection",{get:function(){var e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!(!e||!t)&&(e[0]!==t[0]||e[1]!==t[1])},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"selectionText",{get:function(){var e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return"";var r=e[1]===t[1]?t[0]:null,i=[];i.push(this._translateBufferLineToString(this._buffer.get(e[1]),!0,e[0],r));for(var o=e[1]+1;o<=t[1]-1;o++){var s=this._buffer.get(o),a=this._translateBufferLineToString(s,!0);s.isWrapped?i[i.length-1]+=a:i.push(a)}if(e[1]!==t[1]){var s=this._buffer.get(t[1]),a=this._translateBufferLineToString(s,!0,0,t[0]);s.isWrapped?i[i.length-1]+=a:i.push(a)}return i.map(function(e){return e.replace(c," ")}).join(n.isMSWindows?"\r\n":"\n")},enumerable:!0,configurable:!0}),t.prototype.clearSelection=function(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh()},t.prototype._translateBufferLineToString=function(e,t,r,i){void 0===r&&(r=0),void 0===i&&(i=null);for(var o="",s=r,n=i,a=0;a=a&&s--,i>=a&&n--)}var h=n||e.length;if(t){var c=o.search(/\s+$/);if(-1!==c&&(h=Math.min(h,c)),h<=s)return""}return o.substring(s,h)},t.prototype.refresh=function(e){var t=this;this._refreshAnimationFrame||(this._refreshAnimationFrame=window.requestAnimationFrame(function(){return t._refresh()})),n.isLinux&&e&&this.selectionText.length&&this.emit("newselection",this.selectionText)},t.prototype._refresh=function(){this._refreshAnimationFrame=null,this.emit("refresh",{start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd})},t.prototype.selectAll=function(){this._model.isSelectAllActive=!0,this.refresh()},t.prototype._onTrim=function(e){this._model.onTrim(e)&&this.refresh()},t.prototype._getMouseBufferCoords=function(e){var t=s.getCoords(e,this._rowContainer,this._charMeasure,this._terminal.cols,this._terminal.rows,!0);return t[0]--,t[1]--,t[1]+=this._terminal.ydisp,t},t.prototype._getMouseEventScrollAmount=function(e){var t=s.getCoordsRelativeToElement(e,this._rowContainer)[1],r=this._terminal.rows*this._charMeasure.height;return t>=0&&t<=r?0:(t>r&&(t-=r),t=Math.min(Math.max(t,-50),50),(t/=50)/Math.abs(t)+Math.round(14*t))},t.prototype._onMouseDown=function(e){0===e.button&&(e.preventDefault(),this._dragScrollAmount=0,this._setMouseClickCount(e),e.shiftKey?this._onShiftClick(e):1===this._clickCount?this._onSingleClick(e):2===this._clickCount?this._onDoubleClick(e):3===this._clickCount&&this._onTripleClick(e),this._addMouseDownListeners(),this.refresh(!0))},t.prototype._addMouseDownListeners=function(){var e=this;this._rowContainer.ownerDocument.addEventListener("mousemove",this._mouseMoveListener),this._rowContainer.ownerDocument.addEventListener("mouseup",this._mouseUpListener),this._dragScrollIntervalTimer=setInterval(function(){return e._dragScroll()},50)},t.prototype._removeMouseDownListeners=function(){this._rowContainer.ownerDocument.removeEventListener("mousemove",this._mouseMoveListener),this._rowContainer.ownerDocument.removeEventListener("mouseup",this._mouseUpListener),clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=null},t.prototype._onShiftClick=function(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))},t.prototype._onSingleClick=function(e){this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=o.NORMAL,this._model.selectionStart=this._getMouseBufferCoords(e),this._model.selectionStart&&(this._model.selectionEnd=null,0===this._buffer.get(this._model.selectionStart[1])[this._model.selectionStart[0]][2]&&this._model.selectionStart[0]++)},t.prototype._onDoubleClick=function(e){var t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=o.WORD,this._selectWordAt(t))},t.prototype._onTripleClick=function(e){var t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=o.LINE,this._selectLineAt(t[1]))},t.prototype._setMouseClickCount=function(e){var t=(new Date).getTime();(t-this._lastMouseDownTime>400||this._distanceFromLastMousePosition(e)>10)&&(this._clickCount=0),this._lastMouseDownTime=t,this._lastMousePosition=[e.pageX,e.pageY],this._clickCount++},t.prototype._distanceFromLastMousePosition=function(e){return Math.max(Math.abs(this._lastMousePosition[0]-e.pageX),Math.abs(this._lastMousePosition[1]-e.pageY))},t.prototype._onMouseMove=function(e){var t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),this._activeSelectionMode===o.LINE?this._model.selectionEnd[1]0?this._model.selectionEnd[0]=this._terminal.cols-1:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]0?this._model.selectionEnd=[this._terminal.cols-1,this._terminal.ydisp+this._terminal.rows]:this._model.selectionEnd=[0,this._terminal.ydisp],this.refresh())},t.prototype._onMouseUp=function(e){this._removeMouseDownListeners()},t.prototype._convertViewportColToCharacterIndex=function(e,t){for(var r=t[0],i=0;t[0]>=i;i++)0===e[i][2]&&r--;return r},t.prototype._getWordAt=function(e){var t=this._buffer.get(e[1]),r=this._translateBufferLineToString(t,!1),i=this._convertViewportColToCharacterIndex(t,e),o=i,s=e[0]-o,n=0,a=0;if(" "===r.charAt(o)){for(;o>0&&" "===r.charAt(o-1);)o--;for(;i0&&!this._isCharWordSeparator(r.charAt(o-1));)0===t[l-1][2]&&(n++,l--),o--,l--;for(;i+1=0},t.prototype._selectLineAt=function(e){this._model.selectionStart=[0,e],this._model.selectionStartLength=this._terminal.cols},t}(a.EventEmitter);t.SelectionManager=u},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e){this._terminal=e,this.clearSelection()}return e.prototype.clearSelection=function(){this.selectionStart=null,this.selectionEnd=null,this.isSelectAllActive=!1,this.selectionStartLength=0},Object.defineProperty(e.prototype,"finalSelectionStart",{get:function(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"finalSelectionEnd",{get:function(){return this.isSelectAllActive?[this._terminal.cols,this._terminal.ybase+this._terminal.rows-1]:this.selectionStart?!this.selectionEnd||this.areSelectionValuesReversed()?[this.selectionStart[0]+this.selectionStartLength,this.selectionStart[1]]:this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]?[Math.max(this.selectionStart[0]+this.selectionStartLength,this.selectionEnd[0]),this.selectionEnd[1]]:this.selectionEnd:null},enumerable:!0,configurable:!0}),e.prototype.areSelectionValuesReversed=function(){var e=this.selectionStart,t=this.selectionEnd;return e[1]>t[1]||e[1]===t[1]&&e[0]>t[0]},e.prototype.onTrim=function(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)},e}();t.SelectionModel=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t,r,i){var o=this;this.terminal=e,this.viewportElement=t,this.scrollArea=r,this.charMeasure=i,this.currentRowHeight=0,this.lastRecordedBufferLength=0,this.lastRecordedViewportHeight=0,this.terminal.on("scroll",this.syncScrollArea.bind(this)),this.terminal.on("resize",this.syncScrollArea.bind(this)),this.viewportElement.addEventListener("scroll",this.onScroll.bind(this)),setTimeout(function(){return o.syncScrollArea()},0)}return e.prototype.refresh=function(){if(this.charMeasure.height>0){var e=this.charMeasure.height!==this.currentRowHeight;e&&(this.currentRowHeight=this.charMeasure.height,this.viewportElement.style.lineHeight=this.charMeasure.height+"px",this.terminal.rowContainer.style.lineHeight=this.charMeasure.height+"px");var t=this.lastRecordedViewportHeight!==this.terminal.rows;(e||t)&&(this.lastRecordedViewportHeight=this.terminal.rows,this.viewportElement.style.height=this.charMeasure.height*this.terminal.rows+"px",this.terminal.selectionContainer.style.height=this.viewportElement.style.height),this.scrollArea.style.height=this.charMeasure.height*this.lastRecordedBufferLength+"px"}},e.prototype.syncScrollArea=function(){this.lastRecordedBufferLength!==this.terminal.lines.length?(this.lastRecordedBufferLength=this.terminal.lines.length,this.refresh()):this.lastRecordedViewportHeight!==this.terminal.rows?this.refresh():this.charMeasure.height!==this.currentRowHeight&&this.refresh();var e=this.terminal.ydisp*this.currentRowHeight;this.viewportElement.scrollTop!==e&&(this.viewportElement.scrollTop=e)},e.prototype.onScroll=function(e){var t=Math.round(this.viewportElement.scrollTop/this.currentRowHeight)-this.terminal.ydisp;this.terminal.scrollDisp(t,!0)},e.prototype.onWheel=function(e){if(0!==e.deltaY){var t=1;e.deltaMode===WheelEvent.DOM_DELTA_LINE?t=this.currentRowHeight:e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(t=this.currentRowHeight*this.terminal.rows),this.viewportElement.scrollTop+=e.deltaY*t,e.preventDefault()}},e.prototype.onTouchStart=function(e){this.lastTouchY=e.touches[0].pageY},e.prototype.onTouchMove=function(e){var t=this.lastTouchY-e.touches[0].pageY;this.lastTouchY=e.touches[0].pageY,0!==t&&(this.viewportElement.scrollTop+=t,e.preventDefault())},e}();t.Viewport=i},function(e,t,r){function i(e){return r(o(e))}function o(e){var t=s[e];if(!(t+1))throw new Error("Cannot find module '"+e+"'.");return t}var s={"./attach/attach":4,"./attach/attach.js":4,"./attach/package.json":25,"./fit/fit":5,"./fit/fit.js":5,"./fit/package.json":26,"./fullscreen/fullscreen":6,"./fullscreen/fullscreen.css":27,"./fullscreen/fullscreen.js":6,"./fullscreen/package.json":28,"./terminado/package.json":29,"./terminado/terminado":7,"./terminado/terminado.js":7};i.keys=function(){return Object.keys(s)},i.resolve=o,e.exports=i,i.id=24},function(e,t){e.exports={name:"xterm.attach",main:"attach.js",private:!0}},function(e,t){e.exports={name:"xterm.fit",main:"fit.js",private:!0}},function(e,t){throw new Error("Module parse failed: /home/yudai/archive/products/2015/gotty/src/github.com/yudai/gotty/js/node_modules/xterm/lib/addons/fullscreen/fullscreen.css Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n| .xterm.fullscreen {\n| position: fixed;\n| top: 0;")},function(e,t){e.exports={name:"xterm.fullscreen",main:"fullscreen.js",private:!0}},function(e,t){e.exports={name:"xterm.terminado",main:"terminado.js",private:!0}},function(e,t,r){"use strict";function i(e,t){return t?e.replace(/\r?\n/g,"\r"):e}function o(e,t){t.style.position="fixed",t.style.width="20px",t.style.height="20px",t.style.left=e.clientX-10+"px",t.style.top=e.clientY-10+"px",t.style.zIndex="1000",t.focus(),setTimeout(function(){t.style.position=null,t.style.width=null,t.style.height=null,t.style.left=null,t.style.top=null,t.style.zIndex=null},4)}Object.defineProperty(t,"__esModule",{value:!0}),t.prepareTextForTerminal=i,t.copyHandler=function(e,t,r){t.browser.isMSIE?window.clipboardData.setData("Text",r.selectionText):e.clipboardData.setData("text/plain",r.selectionText),e.preventDefault()},t.pasteHandler=function(e,t){e.stopPropagation();var r=function(r){return r=i(r,t.browser.isMSWindows),t.handler(r),t.textarea.value="",t.emit("paste",r),t.cancel(e)};t.browser.isMSIE?window.clipboardData&&r(window.clipboardData.getData("Text")):e.clipboardData&&r(e.clipboardData.getData("text/plain"))},t.moveTextAreaUnderMouseCursor=o,t.rightClickHandler=function(e,t,r){o(e,t),t.value=r.selectionText,t.select()}},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t,r){var i=e.call(this)||this;return i._document=t,i._parentElement=r,i}return i(t,e),Object.defineProperty(t.prototype,"width",{get:function(){return this._width},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._height},enumerable:!0,configurable:!0}),t.prototype.measure=function(){var e=this;this._measureElement?this._doMeasure():(this._measureElement=this._document.createElement("span"),this._measureElement.style.position="absolute",this._measureElement.style.top="0",this._measureElement.style.left="-9999em",this._measureElement.textContent="W",this._measureElement.setAttribute("aria-hidden","true"),this._parentElement.appendChild(this._measureElement),setTimeout(function(){return e._doMeasure()},0))},t.prototype._doMeasure=function(){var e=this._measureElement.getBoundingClientRect();0!==e.width&&0!==e.height&&(this._width===e.width&&this._height===e.height||(this._width=e.width,this._height=e.height,this.emit("charsizechanged")))},t}(r(1).EventEmitter);t.CharMeasure=o},function(e,t,r){"use strict";var i=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function i(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(i.prototype=r.prototype,new i)}}();Object.defineProperty(t,"__esModule",{value:!0});var o=function(e){function t(t){var r=e.call(this)||this;return r._array=new Array(t),r._startIndex=0,r._length=0,r}return i(t,e),Object.defineProperty(t.prototype,"maxLength",{get:function(){return this._array.length},set:function(e){for(var t=new Array(e),r=0;rthis._length)for(var t=this._length;t=e;o--)this._array[this._getCyclicIndex(o+r.length)]=this._array[this._getCyclicIndex(o)];for(var o=0;othis.maxLength){var s=this._length+r.length-this.maxLength;this._startIndex+=s,this._length=this.maxLength,this.emit("trim",s)}else this._length+=r.length}},t.prototype.trimStart=function(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.emit("trim",e)},t.prototype.shiftElements=function(e,t,r){if(!(t<=0)){if(e<0||e>=this._length)throw new Error("start argument out of range");if(e+r<0)throw new Error("Cannot shift elements in list beyond index 0");if(r>0){for(o=t-1;o>=0;o--)this.set(e+o+r,this.get(e+o));var i=e+t+r-this._length;if(i>0)for(this._length+=i;this._length>this.maxLength;)this._length--,this._startIndex++,this.emit("trim",1)}else for(var o=0;o=0}}]); \ No newline at end of file diff --git a/js/dist/gotty-bundle.js.map b/js/dist/gotty-bundle.js.map deleted file mode 100644 index f208c91..0000000 --- a/js/dist/gotty-bundle.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap d69371b1ba8b46cfaccb","webpack:///./~/xterm/lib/xterm.js","webpack:///./~/xterm/lib/EventEmitter.js","webpack:///./~/xterm/lib/EscapeSequences.js","webpack:///./~/xterm/lib/Charsets.js","webpack:///./~/xterm/lib/addons/attach/attach.js","webpack:///./~/xterm/lib/addons/fit/fit.js","webpack:///./~/xterm/lib/addons/fullscreen/fullscreen.js","webpack:///./~/xterm/lib/addons/terminado/terminado.js","webpack:///./~/xterm/lib/utils/Browser.js","webpack:///./~/xterm/lib/utils/Mouse.js","webpack:///./src/hterm.ts","webpack:///./src/websocket.ts","webpack:///./src/webtty.ts","webpack:///./src/xterm.ts","webpack:///./~/libapps/hterm/dist/js/hterm_module.js","webpack:///./src/main.ts","webpack:///./~/xterm/lib/CompositionHelper.js","webpack:///./~/xterm/lib/InputHandler.js","webpack:///./~/xterm/lib/Linkifier.js","webpack:///./~/xterm/lib/Parser.js","webpack:///./~/xterm/lib/Renderer.js","webpack:///./~/xterm/lib/SelectionManager.js","webpack:///./~/xterm/lib/SelectionModel.js","webpack:///./~/xterm/lib/Viewport.js","webpack:///./~/xterm/lib/addons ^\\.\\/.*$","webpack:///./~/xterm/lib/addons/attach/package.json","webpack:///./~/xterm/lib/addons/fit/package.json","webpack:///./~/xterm/lib/addons/fullscreen/package.json","webpack:///./~/xterm/lib/addons/terminado/package.json","webpack:///./~/xterm/lib/handlers/Clipboard.js","webpack:///./~/xterm/lib/utils/CharMeasure.js","webpack:///./~/xterm/lib/utils/CircularList.js","webpack:///./~/xterm/lib/utils/DomElementObjectPool.js","webpack:///./~/xterm/lib/utils/Generic.js"],"names":[],"mappings":";AAAA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA,mDAA2C,cAAc;;AAEzD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAK;AACL;AACA;;AAEA;AACA;AACA;AACA,mCAA2B,0BAA0B,EAAE;AACvD,yCAAiC,eAAe;AAChD;AACA;AACA;;AAEA;AACA,8DAAsD,+DAA+D;;AAErH;AACA;;AAEA;AACA;;;;;;;;AChEA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,SAAS;AACnB;AACA;AACA;AACA,UAAU,QAAQ;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA,UAAU,SAAS;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,iBAAiB;AAC7C,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,iBAAiB;AAC5C,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,gDAAgD,8CAA8C;AAC9F;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,iBAAiB;AAC7C,KAAK;AACL;AACA,2BAA2B,iBAAiB;AAC5C,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,KAAK;AACL,mCAAmC,yCAAyC,EAAE;AAC9E,iEAAiE,yCAAyC,EAAE;AAC5G;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B,4CAA4C;AACtE,iCAAiC,wCAAwC;AACzE,gCAAgC,0CAA0C;AAC1E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kEAAkE,cAAc;AAChF;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,UAAU;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D,iEAAiE;AACjE,wHAAwH;AACxH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D,iEAAiE;AACjE,wHAAwH;AACxH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D,iEAAiE;AACjE,gEAAgE;AAChE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D,iEAAiE;AACjE,gEAAgE;AAChE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4DAA4D;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA6D;AAC7D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,mCAAmC;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,eAAe;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,eAAe;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,6BAA6B;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,gBAAgB;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;AC5lDA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB,uBAAuB;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;AC1DA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,qCAAqC;AACtC;;AAEA;;;;;;;;ACzCA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA,UAAU;AACV;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA,UAAU;AACV;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU;AACV;AACA,UAAU;AACV;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,MAAM;AACN;AACA;;AAEA;;;;;;;AChKA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;AAEA;AACA;AACA;AACA,aAAa,MAAM;AACnB,aAAa,UAAU;AACvB,aAAa,QAAQ;AACrB;AACA,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,MAAM;AACnB,aAAa,UAAU;AACvB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,aAAa,UAAU;AACvB,aAAa,QAAQ;AACrB;AACA,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,UAAU;AACvB;AACA;AACA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;AC7HD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,+BAA+B;AAC/B;AACA,kCAAkC;AAClC;AACA;;AAEA;AACA;;AAEA,gBAAgB;AAChB;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;ACrFD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;AACA;AACA,aAAa,MAAM;AACnB,aAAa,QAAQ;AACrB;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;ACjDD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;AAEA;AACA;AACA;AACA,aAAa,MAAM;AACnB,aAAa,UAAU;AACvB,aAAa,QAAQ;AACrB;AACA,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,MAAM;AACnB,aAAa,UAAU;AACvB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,aAAa,UAAU;AACvB,aAAa,QAAQ;AACrB;AACA,aAAa,QAAQ;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,UAAU;AACvB;AACA;AACA;AACA;AACA;;AAEA;AACA,CAAC;;;;;;;;ACtID;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACdA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;;AAEA;;;;;;;;;;ACnCA,mCAAgC;AAEhC;IAYI,eAAY,IAAiB;QACzB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,CAAC,cAAc,GAAG,IAAI,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;QAC1D,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;QACtC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;QACjD,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAE9B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC;QAC9B,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC;IAChC,CAAC;IAAA,CAAC;IAEF,oBAAI,GAAJ;QACI,MAAM,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC;IACtD,CAAC;IAAA,CAAC;IAEF,sBAAM,GAAN,UAAO,IAAY;QACf,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,CAAC,CAAC;YACvB,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAClC,CAAC;IACL,CAAC;IAAA,CAAC;IAEF,2BAAW,GAAX,UAAY,OAAe,EAAE,OAAe;QACxC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,EAAE,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YACd,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC/C,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC5C,CAAC;IACL,CAAC;IAAA,CAAC;IAEF,6BAAa,GAAb;QACI,iEAAiE;QACjE,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;IAC9C,CAAC;IAED,8BAAc,GAAd,UAAe,KAAa;QACxB,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;IACpC,CAAC;IAAA,CAAC;IAEF,8BAAc,GAAd,UAAe,KAAa;QAA5B,iBAIC;QAHG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;YAC3B,KAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;IACP,CAAC;IAAA,CAAC;IAEF,uBAAO,GAAP,UAAQ,QAAiC;QACrC,IAAI,CAAC,EAAE,CAAC,aAAa,GAAG,UAAC,IAAI;YACzB,QAAQ,CAAC,IAAI,CAAC,CAAC;QACnB,CAAC,CAAC;QACF,IAAI,CAAC,EAAE,CAAC,UAAU,GAAG,UAAC,IAAI;YACtB,QAAQ,CAAC,IAAI,CAAC,CAAC;QACnB,CAAC,CAAC;IACN,CAAC;IAAA,CAAC;IAEF,wBAAQ,GAAR,UAAS,QAAiD;QAA1D,iBAMC;QALG,IAAI,CAAC,EAAE,CAAC,gBAAgB,GAAG,UAAC,OAAe,EAAE,IAAY;YACrD,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,KAAI,CAAC,IAAI,GAAG,IAAI,CAAC;YACjB,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC5B,CAAC,CAAC;IACN,CAAC;IAAA,CAAC;IAEF,0BAAU,GAAV;QACI,IAAI,CAAC,EAAE,CAAC,aAAa,GAAG,IAAI,CAAC;QAC7B,IAAI,CAAC,EAAE,CAAC,UAAU,GAAG,IAAI;QACzB,IAAI,CAAC,EAAE,CAAC,gBAAgB,GAAG,IAAI,CAAC;QAChC,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAE,CAAC;IAClC,CAAC;IAED,qBAAK,GAAL;QACI,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE,CAAC;IAChC,CAAC;IAED,qBAAK,GAAL;QACI,IAAI,CAAC,IAAI,CAAC,iBAAiB,EAAE,CAAC;IAClC,CAAC;IACL,YAAC;AAAD,CAAC;AAzFY,sBAAK;;;;;;;;;;ACFlB;IAII,2BAAY,GAAW,EAAE,SAAmB;QACxC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;IAC/B,CAAC;IAAA,CAAC;IAEF,kCAAM,GAAN;QACI,MAAM,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACpD,CAAC;IAAA,CAAC;IACN,wBAAC;AAAD,CAAC;AAZY,8CAAiB;AAc9B;IAII,oBAAY,GAAW,EAAE,SAAmB;QACxC,IAAI,CAAC,IAAI,GAAG,IAAI,SAAS,CAAC,GAAG,EAAE,SAAS,CAAC,CAAC;IAC9C,CAAC;IAED,yBAAI,GAAJ;QACI,6BAA6B;IACjC,CAAC;IAAA,CAAC;IAEF,0BAAK,GAAL;QACI,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;IACtB,CAAC;IAAA,CAAC;IAEF,yBAAI,GAAJ,UAAK,IAAY;QACb,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACzB,CAAC;IAAA,CAAC;IAEF,2BAAM,GAAN;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,SAAS,CAAC,UAAU;YAC5C,IAAI,CAAC,IAAI,CAAC,UAAU,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;YACzC,MAAM,CAAC,IAAI;QACf,CAAC;QACD,MAAM,CAAC,KAAK;IAChB,CAAC;IAED,2BAAM,GAAN,UAAO,QAAoB;QACvB,IAAI,CAAC,IAAI,CAAC,MAAM,GAAG,UAAC,KAAK;YACrB,QAAQ,EAAE,CAAC;QACf,CAAC;IACL,CAAC;IAAA,CAAC;IAEF,8BAAS,GAAT,UAAU,QAAgC;QACtC,IAAI,CAAC,IAAI,CAAC,SAAS,GAAG,UAAC,KAAK;YACxB,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QACzB,CAAC;IACL,CAAC;IAAA,CAAC;IAEF,4BAAO,GAAP,UAAQ,QAAoB;QACxB,IAAI,CAAC,IAAI,CAAC,OAAO,GAAG,UAAC,KAAK;YACtB,QAAQ,EAAE,CAAC;QACf,CAAC,CAAC;IACN,CAAC;IAAA,CAAC;IACN,iBAAC;AAAD,CAAC;AA7CY,gCAAU;;;;;;;;;;ACdV,iBAAS,GAAG,CAAC,QAAQ,CAAC,CAAC;AAEvB,uBAAe,GAAG,GAAG,CAAC;AACtB,gBAAQ,GAAG,GAAG,CAAC;AACf,eAAO,GAAG,GAAG,CAAC;AACd,yBAAiB,GAAG,GAAG,CAAC;AAExB,wBAAgB,GAAG,GAAG,CAAC;AACvB,iBAAS,GAAG,GAAG,CAAC;AAChB,eAAO,GAAG,GAAG,CAAC;AACd,yBAAiB,GAAG,GAAG,CAAC;AACxB,yBAAiB,GAAG,GAAG,CAAC;AACxB,uBAAe,GAAG,GAAG,CAAC;AAgCnC;IAOI,gBAAY,IAAc,EAAE,iBAAoC,EAAE,IAAY,EAAE,SAAiB;QAC7F,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;QAC3C,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC;IACxB,CAAC;IAAA,CAAC;IAEF,qBAAI,GAAJ;QAAA,iBA2FC;QA1FG,IAAI,UAAU,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC;QACjD,IAAI,SAAiB,CAAC;QACtB,IAAI,gBAAwB,CAAC;QAE7B,IAAM,KAAK,GAAG;YACV,UAAU,CAAC,MAAM,CAAC;gBACd,IAAM,QAAQ,GAAG,KAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;gBAElC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAC1B;oBACI,SAAS,EAAE,KAAI,CAAC,IAAI;oBACpB,SAAS,EAAE,KAAI,CAAC,SAAS;iBAC5B,CACJ,CAAC,CAAC;gBAGH,IAAM,aAAa,GAAG,UAAC,OAAe,EAAE,IAAY;oBAChD,UAAU,CAAC,IAAI,CACX,yBAAiB,GAAG,IAAI,CAAC,SAAS,CAC9B;wBACI,OAAO,EAAE,OAAO;wBAChB,IAAI,EAAE,IAAI;qBACb,CACJ,CACJ,CAAC;gBACN,CAAC,CAAC;gBAEF,KAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC;gBAClC,aAAa,CAAC,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;gBAE/C,KAAI,CAAC,IAAI,CAAC,OAAO,CACb,UAAC,KAAa;oBACV,UAAU,CAAC,IAAI,CAAC,gBAAQ,GAAG,KAAK,CAAC,CAAC;gBACtC,CAAC,CACJ,CAAC;gBAEF,SAAS,GAAG,WAAW,CAAC;oBACpB,UAAU,CAAC,IAAI,CAAC,eAAO,CAAC;gBAC5B,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC,CAAC;YAElB,CAAC,CAAC,CAAC;YAEH,UAAU,CAAC,SAAS,CAAC,UAAC,IAAI;gBACtB,IAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBAC9B,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACd,KAAK,iBAAS;wBACV,KAAI,CAAC,IAAI,CAAC,MAAM,CACZ,kBAAkB,CAAC,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,UAAS,CAAC;4BACjE,MAAM,CAAC,GAAG,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;wBACjE,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CACf,CAAC;wBACF,KAAK,CAAC;oBACV,KAAK,eAAO;wBACR,KAAK,CAAC;oBACV,KAAK,yBAAiB;wBAClB,KAAI,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;wBAClC,KAAK,CAAC;oBACV,KAAK,yBAAiB;wBAClB,IAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBACxC,KAAI,CAAC,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,CAAC;wBACtC,KAAK,CAAC;oBACV,KAAK,uBAAe;wBAChB,IAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;wBAC1C,OAAO,CAAC,GAAG,CAAC,sBAAsB,GAAG,aAAa,GAAG,UAAU,CAAC;wBAChE,KAAI,CAAC,SAAS,GAAG,aAAa,CAAC;wBAC/B,KAAK,CAAC;gBACd,CAAC;YACL,CAAC,CAAC,CAAC;YAEH,UAAU,CAAC,OAAO,CAAC;gBACf,aAAa,CAAC,SAAS,CAAC,CAAC;gBACzB,KAAI,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC;gBACvB,KAAI,CAAC,IAAI,CAAC,WAAW,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAC;gBAC9C,EAAE,CAAC,CAAC,KAAI,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC;oBACrB,gBAAgB,GAAG,UAAU,CAAC;wBAC1B,UAAU,GAAG,KAAI,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC;wBAC7C,KAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;wBAClB,KAAK,EAAE,CAAC;oBACZ,CAAC,EAAE,KAAI,CAAC,SAAS,GAAG,IAAI,CAAC,CAAC;gBAC9B,CAAC;YACL,CAAC,CAAC,CAAC;YAEH,UAAU,CAAC,IAAI,EAAE,CAAC;QACtB,CAAC;QAED,KAAK,EAAE,CAAC;QACR,MAAM,CAAC;YACH,YAAY,CAAC,gBAAgB,CAAC,CAAC;YAC/B,UAAU,CAAC,KAAK,EAAE,CAAC;QACvB,CAAC;IACL,CAAC;IAAA,CAAC;IACN,aAAC;AAAD,CAAC;AA3GY,wBAAM;AA2GlB,CAAC;;;;;;;;;;ACvJF,kCAA8B;AAE9B,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;AAEtB;IAUI,eAAY,IAAiB;QAA7B,iBAqBC;QApBG,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAEvB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QACvD,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,eAAe,CAAC;QACzC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAG3B,IAAI,CAAC,cAAc,GAAG;YAClB,KAAI,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;YAChB,KAAI,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;YAC3B,KAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAI,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,MAAM,CAAC,KAAI,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,KAAI,CAAC,cAAc,CAAC,CAAC;QACjG,CAAC,CAAC;QAEF,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE;YACjB,KAAI,CAAC,cAAc,EAAE,CAAC;YACtB,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE,cAAQ,KAAI,CAAC,cAAc,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;QACxE,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC/B,CAAC;IAAA,CAAC;IAEF,oBAAI,GAAJ;QACI,MAAM,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;IAC7D,CAAC;IAAA,CAAC;IAEF,sBAAM,GAAN,UAAO,IAAY;QACf,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC1B,CAAC;IAAA,CAAC;IAEF,2BAAW,GAAX,UAAY,OAAe,EAAE,OAAe;QAA5C,iBAYC;QAXG,IAAI,CAAC,OAAO,CAAC,WAAW,GAAG,OAAO,CAAC;QACnC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAEpC,EAAE,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;YACpB,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACpC,CAAC;QACD,EAAE,CAAC,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YACd,IAAI,CAAC,YAAY,GAAG,UAAU,CAAC;gBAC3B,KAAI,CAAC,IAAI,CAAC,WAAW,CAAC,KAAI,CAAC,OAAO,CAAC,CAAC;YACxC,CAAC,EAAE,OAAO,CAAC,CAAC;QAChB,CAAC;IACL,CAAC;IAAA,CAAC;IAEF,6BAAa,GAAb;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,IAAI,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;YACvC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;IACL,CAAC;IAED,8BAAc,GAAd,UAAe,KAAa;QACxB,QAAQ,CAAC,KAAK,GAAG,KAAK,CAAC;IAC3B,CAAC;IAAA,CAAC;IAEF,8BAAc,GAAd,UAAe,KAAa;IAC5B,CAAC;IAAA,CAAC;IAEF,uBAAO,GAAP,UAAQ,QAAiC;QACrC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,UAAC,IAAI;YACtB,QAAQ,CAAC,IAAI,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;IAEP,CAAC;IAAA,CAAC;IAEF,wBAAQ,GAAR,UAAS,QAAiD;QACtD,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE,UAAC,IAAI;YACxB,QAAQ,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QACnC,CAAC,CAAC,CAAC;IACP,CAAC;IAAA,CAAC;IAEF,0BAAU,GAAV;QACI,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QACtB,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACxB,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;IACrB,CAAC;IAED,qBAAK,GAAL;QACI,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;IACtB,CAAC;IAED,qBAAK,GAAL;QACI,MAAM,CAAC,mBAAmB,CAAC,QAAQ,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAC1D,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxB,CAAC;IACL,YAAC;AAAD,CAAC;AAhGY,sBAAK;;;;;;;;ACJlB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,iBAAiB,sBAAsB;AACvC;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,mBAAmB,kBAAkB;AACrC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,mBAAmB;AAC9B,YAAY,SAAS;AACrB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB;AACA,WAAW,YAAY;AACvB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,qBAAqB,EAAE,WAAW,EAAE,WAAW,EAAE;;AAEjD;AACA;AACA,2BAA2B,IAAI,YAAY,IAAI;AAC/C,eAAe,IAAI;AACnB;;AAEA;AACA;AACA;AACA,iBAAiB,IAAI,YAAY,IAAI,YAAY,IAAI;AACrD;AACA;;AAEA;AACA;AACA;AACA,iBAAiB,IAAI,YAAY,IAAI,YAAY,IAAI;AACrD;AACA;;AAEA;AACA,6BAA6B,IAAI,aAAa,IAAI,aAAa,IAAI;;AAEnE;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iCAAiC;AACjC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,sBAAsB;AACjC;AACA,YAAY,sBAAsB;AAClC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,mBAAmB,gBAAgB;AACnC;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,sBAAsB;AACjC;AACA,YAAY,sBAAsB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,mBAAmB,gBAAgB;AACnC;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,OAAO;AACxB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAc;AACd,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB,0CAA0C;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB,gBAAgB;AAChB,iBAAiB;AACjB,kBAAkB;AAClB,iBAAiB;AACjB;;AAEA,kDAAkD,gBAAgB;AAClE;AACA;;AAEA;AACA;AACA;AACA,WAAW,gBAAgB;AAC3B;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,2CAA2C,iCAAiC;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,iBAAiB,kBAAkB;AACnC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,eAAe;AAC1B,WAAW,QAAQ;AACnB,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,YAAY;AACvB,WAAW,IAAI;AACf;AACA,YAAY,SAAS;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA,4BAA4B,uBAAuB;AACnD;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;AACA,oBAAoB,+BAA+B;;AAEnD;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,sBAAsB;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,MAAM;AACjB,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,kBAAkB;AACnC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB,8CAA8C;AAClE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB;;AAEvB;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;;AAEA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,8CAA8C;AACzD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,oBAAoB,0BAA0B;;AAE9C;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,wCAAwC;AACnD;AACA;AACA,WAAW,8CAA8C;AACzD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA,iBAAiB,qBAAqB;AACtC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;;AAEA,iBAAiB,kCAAkC;AACnD;;AAEA,iBAAiB,6BAA6B;AAC9C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS,SAAS,kBAAkB,aAAa,WAAW,kBAAkB;AAC9E;AACA;AACA;AACA,WAAW,cAAc;AACzB,WAAW,cAAc;AACzB,YAAY,OAAO;AACnB;AACA;AACA;AACA,aAAa;AACb,eAAe;AACf,cAAc;AACd;;AAEA,iBAAiB,cAAc;AAC/B;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA,iBAAiB,cAAc;AAC/B;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA,iBAAiB,uBAAuB;AACxC;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,mBAAmB;AACpC;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,WAAW,EAAE;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,qBAAqB,qBAAqB;AAC1C;AACA,uBAAuB,qDAAqD;AAC5E;;AAEA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,sBAAsB;AAC3C;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,OAAO;AAClB;AACA,WAAW,EAAE;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,YAAY,EAAE;AACd;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,YAAY,EAAE;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW;AACX;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW;AACX;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW;AACX;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW;AACX;AACA;AACA;AACA;;AAEA,+BAA+B,QAAQ;AACvC;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;AACA;AACA,cAAc;AACd;;AAEA;;AAEA;AACA,mBAAmB,4BAA4B;AAC/C;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW;AACX;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW;AACX;AACA;AACA;AACA;;AAEA,+BAA+B,QAAQ;AACvC;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,EAAE;AACb;AACA,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,YAAY;;AAEZ;AACA,mBAAmB,4BAA4B;AAC/C;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;;AAEA;AACA,cAAc;AACd;AACA;;AAEA;AACA,mBAAmB,4BAA4B;AAC/C;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,oBAAoB;AAC/B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA,WAAW,OAAO;AAClB;AACA;;AAEA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA,WAAW,OAAO;AAClB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B,SAAS;AACrC;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB,eAAe;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ;AACR;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,qBAAqB;AACjC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,SAAS;AACtC;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA,WAAW,OAAO;AAClB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA,WAAW,OAAO;AAClB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,sBAAsB;AACjC;AACA,WAAW,OAAO;AAClB;AACA,WAAW,yCAAyC;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,gBAAgB;AAC3B;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,qBAAqB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,cAAc;AACzB;AACA;AACA;AACA;AACA,YAAY,IAAI;AAChB;AACA;AACA;AACA;;AAEA,iBAAiB,6CAA6C;AAC9D;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,uBAAuB;AAClC;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,0BAA0B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,wBAAwB;AACnC;AACA,WAAW,qBAAqB;AAChC;AACA,WAAW,qBAAqB;AAChC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,iBAAiB,mBAAmB;AACpC;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,EAAE;AACb,WAAW,EAAE;AACb,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,gDAAgD,2BAA2B;AAC3E;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,IAAI;AACf;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ,kDAAkD;AACtE;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;;AAEA,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA,YAAY,OAAO;AACnB;AACA;AACA;;AAEA,iCAAiC,yBAAyB;AAC1D;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,oCAAoC,cAAc;AAClD,GAAG;AACH;AACA;AACA;AACA;AACA,KAAK;AACL,sCAAsC,eAAe;AACrD;AACA;AACA,CAAC;;AAED;AACA,mBAAmB,gBAAgB;AACnC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,6DAA6D,eAAe;;AAE5E;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,WAAW;AACvB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,WAAW;AACtB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,WAAW;AACtB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,aAAa;AACzB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,aAAa;AACxB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,oBAAoB,eAAe;AACnC,eAAe,OAAO;AACtB,uBAAuB,OAAO;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,0BAA0B,wCAAwC,EAAE;AAC3E;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,0CAA0C,uBAAuB;AACjE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,0BAA0B;AAC1B,qBAAqB;AACrB,8BAA8B;AAC9B,gBAAgB;AAChB,gBAAgB;AAChB,kBAAkB;AAClB,mBAAmB;AACnB,uBAAuB;AACvB,uBAAuB;AACvB,uEAAuE;AACvE,qEAAqE;;AAErE;AACA;AACA;AACA;AACA,uBAAuB;AACvB,mCAAmC;AACnC,sCAAsC;AACtC,uEAAuE;AACvE,4DAA4D;AAC5D,yBAAyB;AACzB;AACA;;AAEA;AACA;AACA;AACA,0BAA0B;AAC1B,2BAA2B;AAC3B,yBAAyB;AACzB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,qBAAqB;AACrB,eAAe;AACf;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,eAAe;AAC1B;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,iBAAiB,2BAA2B;AAC5C;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA,0BAA0B;AAC1B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,cAAc;AACd,KAAK;AACL,cAAc;AACd,KAAK;AACL,cAAc;AACd,KAAK;AACL,cAAc;AACd,KAAK;AACL,cAAc;AACd,KAAK;AACL,cAAc;AACd,KAAK;AACL,cAAc;AACd;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,0BAA0B;AACrC,WAAW,yCAAyC;AACpD;AACA;AACA;AACA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH,eAAe;;AAEf;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA,WAAW,iCAAiC;AAC5C,WAAW,yCAAyC;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,mDAAmD;AACnD;AACA;AACA,oBAAoB,0BAA0B;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,iBAAiB;AAClC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,sBAAsB;AACvC;AACA,oBAAoB;AACpB;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,oBAAoB;;AAEpB;AACA,iBAAiB,yBAAyB,uBAAuB;;AAEjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb,aAAa;AACb;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BAA2B,0CAA0C;AACrE;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;;AAEpB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,0BAA0B;AACrC,WAAW,0BAA0B;AACrC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,eAAe;AAC1B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;;AAEA;AACA,YAAY,OAAO;AACnB;AACA;;AAEA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,OAAO;AACP;AACA;;AAEA,OAAO;AACP;AACA;;AAEA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,cAAc;AACd;AACA;AACA;;AAEA;AACA,YAAY;;AAEZ;AACA,YAAY;;AAEZ;AACA,YAAY;;;AAGZ;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,WAAW;AACtB,WAAW,OAAO;AAClB,YAAY;AACZ;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,EAAE;AAChD;AACA,KAAK;AACL;AACA,8CAA8C,EAAE;AAChD;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH,+CAA+C;AAC/C,GAAG;AACH,yBAAyB;AACzB,GAAG;AACH,qBAAqB;AACrB,GAAG;AACH,qBAAqB;AACrB,GAAG;AACH,sBAAsB;AACtB,GAAG;AACH,mBAAmB;AACnB,GAAG;AACH;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,KAAK;AACb,oBAAoB;AACpB;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,sDAAsD,yBAAyB;AAC/E;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;;AAEA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,iBAAiB;AAC5B;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,iBAAiB;AAC5B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,iBAAiB;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,WAAW;AACvB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,YAAY,oBAAoB;AAChC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,oBAAoB;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,YAAY,oBAAoB;AAChC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,oBAAoB;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,YAAY;AACvB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,oBAAoB;AAC/B;AACA;AACA,iBAAiB,iBAAiB;AAClC;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,YAAY,YAAY;AACxB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,YAAY,oBAAoB;AAChC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,YAAY,KAAK;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,KAAK;AAChB,YAAY,KAAK;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,WAAW,KAAK;AAChB,WAAW,QAAQ;AACnB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,WAAW,KAAK;AAChB,WAAW,QAAQ;AACnB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,2BAA2B;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,WAAW,QAAQ;AACnB,YAAY,MAAM;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,WAAW,QAAQ;AACnB,YAAY,MAAM;AAClB;AACA;AACA,iBAAiB,2BAA2B;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,KAAK;AAChB,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,UAAU;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,iBAAiB;AAC5B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,GAAG;AACH;;AAEA,GAAG;AACH;AACA;AACA,KAAK;AACL;AACA;;AAEA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,iBAAiB;AACjB,oBAAoB;AACpB,0BAA0B;AAC1B;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA,mBAAmB;AACnB,oBAAoB;AACpB,oBAAoB;AACpB,mBAAmB;AACnB,wBAAwB;AACxB,+CAA+C;AAC/C,iCAAiC;AACjC,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,cAAc;AACd,wBAAwB;AACxB,8CAA8C;AAC9C,mDAAmD;AACnD,QAAQ;AACR;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC;AAChC,sBAAsB;AACtB,8BAA8B;AAC9B,uBAAuB;AACvB,oCAAoC;AACpC,oBAAoB;AACpB,0BAA0B,oBAAoB;AAC9C,wBAAwB;AACxB,mBAAmB;AACnB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;;AAEA;AACA;AACA;AACA;AACA,sBAAsB;AACtB,uBAAuB;AACvB,wBAAwB;AACxB,iCAAiC;AACjC,8BAA8B;AAC9B;;AAEA;AACA;AACA;AACA,sBAAsB;AACtB,wBAAwB;AACxB,4CAA4C;AAC5C,wBAAwB;;AAExB;;AAEA;AACA;AACA;AACA;AACA;AACA,gDAAgD;AAChD;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B;AAC1B,cAAc;AACd,eAAe;AACf;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB,iBAAiB;AACjB,gBAAgB;AAChB,eAAe;AACf,iBAAiB;AACjB;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,YAAY,WAAW;AACvB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B,gBAAgB;AAChB,iBAAiB;AACjB,4BAA4B;AAC5B,iCAAiC;AACjC,gCAAgC;;AAEhC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,iBAAiB,mBAAmB;AACpC;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;;AAGA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA,yBAAyB,6BAA6B;AACtD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,0BAA0B,mBAAmB;AAC7C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,WAAW;AACtB,YAAY,OAAO;AACnB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,6BAA6B;AAC9C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,iBAAiB,6BAA6B;AAC9C;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,6BAA6B;AAC9C;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iDAAiD;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,6BAA6B,gCAAgC;AAC7D;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA,8DAA8D;AAC9D;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA,8BAA8B,wBAAwB,EAAE;AACxD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uDAAuD;;AAEvD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA;;AAEA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;;AAEA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA,KAAK;AACL,GAAG;;AAEH;AACA;;AAEA;AACA;AACA,GAAG;AACH;;;AAGA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA,SAAS,WAAW,EAAE,KAAK;AAC3B;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,6CAA6C;AAC7C;AACA,8BAA8B;AAC9B,GAAG;AACH,8BAA8B;AAC9B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,aAAa;AACzB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH,2CAA2C,QAAQ;AACnD;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,2BAA2B;AAC5C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,yCAAyC,QAAQ;AACjD;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA,yCAAyC,QAAQ;AACjD;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,2BAA2B;AAChD;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,eAAe;AAC1B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA,kDAAkD,cAAc;;AAEhE;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA,qCAAqC;AACrC,iCAAiC;AACjC,mDAAmD;AACnD,4BAA4B;AAC5B,8BAA8B;AAC9B,SAAS;AACT,kBAAkB;AAClB,gCAAgC;AAChC,6BAA6B;AAC7B,uDAAuD;AACvD,oDAAoD;AACpD,SAAS;AACT,eAAe;AACf,iFAAiF;AACjF,mFAAmF;AACnF,uCAAuC;AACvC,uCAAuC;AACvC,4CAA4C;AAC5C,0CAA0C;AAC1C,gDAAgD;AAChD,qEAAqE;AACrE,SAAS;AACT,0BAA0B;AAC1B,gBAAgB,cAAc,EAAE;AAChC,cAAc,cAAc,EAAE;AAC9B,SAAS;AACT,qBAAqB;AACrB,gCAAgC;AAChC,+DAA+D;AAC/D,8CAA8C;AAC9C,iDAAiD;AACjD,yCAAyC;AACzC,SAAS;AACT;;AAEA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B,iFAAiF;AACjF,iFAAiF;AACjF,uBAAuB;AACvB,2CAA2C;AAC3C,6CAA6C;AAC7C,mEAAmE;AACnE,gEAAgE;;AAEhE;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B,mBAAmB;AACnB,uBAAuB;AACvB,oBAAoB;AACpB,qBAAqB;AACrB;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;;AAEN;AACA;AACA,KAAK;;AAEL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA,WAAW,QAAQ;AACnB;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA,qBAAqB,SAAS;AAC9B;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA,iBAAiB,WAAW;AAC5B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB,WAAW,aAAa;AACxB;AACA;AACA;;AAEA;AACA,qBAAqB,SAAS;AAC9B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,OAAO;AACjB;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA,mBAAmB,mBAAmB;AACtC;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA,iBAAiB,gBAAgB;AACjC;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,8BAA8B,aAAa;AAC3C;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;;AAEA;AACA,mBAAmB,8BAA8B;AACjD,qBAAqB,6BAA6B;AAClD;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA,iBAAiB,YAAY;AAC7B;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,yBAAyB,QAAQ;AACjC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA,iBAAiB,WAAW;AAC5B;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP,GAAG;AACH;AACA;;AAEA;AACA;AACA;AACA;AACA,4BAA4B,gCAAgC;AAC5D;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,gBAAgB;AACnC;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAAS,6BAA6B;AACtC,SAAS,qCAAqC;AAC9C;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,sBAAsB;AACtB,mCAAmC;AACnC,0BAA0B;AAC1B,4BAA4B;AAC5B,uBAAuB;AACvB,0CAA0C;AAC1C,oBAAoB;AACpB,sBAAsB;AACtB,4BAA4B;AAC5B,wCAAwC;AACxC,mCAAmC;AACnC,qCAAqC;AACrC,gCAAgC;;AAEhC;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,6BAA6B;AAC7B,6BAA6B;AAC7B,uBAAuB;AACvB,0CAA0C;AAC1C,4BAA4B;AAC5B,mCAAmC;AACnC,mDAAmD;AACnD,gCAAgC;AAChC,gDAAgD;;AAEhD;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iCAAiC;AACjC,8BAA8B;AAC9B,0BAA0B;AAC1B;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA,4BAA4B,WAAW;AACvC,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,kDAAkD;AAClD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA,gDAAgD;;AAEhD;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,MAAM;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,OAAO;AAC9B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,eAAe;AAC1B,WAAW,eAAe;AAC1B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,aAAa;AACxB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,qBAAqB;AACjC;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,SAAS;AACrB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,gBAAgB;AAC3B,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,gBAAgB;AAC3B,WAAW,gBAAgB;AAC3B,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,gBAAgB;AAC3B,YAAY,QAAQ;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,YAAY;AACvB;AACA,WAAW,QAAQ;AACnB,WAAW,QAAQ;AACnB,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,MAAM;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,eAAe;AAC1B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,SAAS;AACpB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAY,OAAO;AACnB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA,SAAS;AACT;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,IAAI;AACxC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,GAAG,kBAAkB;AACrB;AACA;AACA;AACA;;AAEA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;;AAEA,GAAG;AACH;;AAEA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA,GAAG;AACH;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA,GAAG;AACH;AACA;;AAEA,GAAG;AACH;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,QAAQ;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB;AAClB;AACA,GAAG,uBAAuB;AAC1B;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC;AACvC;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,+CAA+C;AAC/C;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,sCAAsC,UAAU,OAAO;AACvD;AACA,wCAAwC;;AAExC;AACA;AACA;;AAEA,0BAA0B,wBAAwB;AAClD;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,0CAA0C;;AAE1C;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,wCAAwC,yBAAyB;AACjE;;AAEA;AACA;AACA;AACA;AACA;AACA,gBAAgB,2BAA2B;AAC3C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC;AACxC;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;AACA,uDAAuD;AACvD;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,uBAAuB;AACxC;AACA;AACA;AACA,4CAA4C;;AAE5C;AACA;AACA;AACA,gBAAgB,MAAM;AACtB;AACA,0CAA0C,GAAG,IAAI,KAAK;AACtD;AACA;AACA;AACA;AACA,oBAAoB,gCAAgC;AACpD;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,WAAW;AAC5B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,WAAW;AAC5B;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uCAAuC,IAAI;AAC3C;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,4BAA4B;AAC7C;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA,iBAAiB,4BAA4B;AAC7C;;AAEA;AACA,qBAAqB;AACrB;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,qBAAqB;AAC5B;AACA,OAAO,sBAAsB;AAC7B;AACA;AACA,OAAO,sBAAsB;AAC7B;AACA,OAAO,sBAAsB;AAC7B;AACA,OAAO,sBAAsB;AAC7B;AACA,OAAO,sBAAsB;AAC7B;AACA,OAAO,sBAAsB;AAC7B;AACA,OAAO,sBAAsB;AAC7B;AACA;;AAEA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA,SAAS;AACT;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA,OAAO;AACP;;AAEA,OAAO;AACP;;AAEA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA,SAAS;AACT;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;;AAEA,KAAK;AACL;;AAEA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,0BAA0B;AACnE;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,kDAAkD;AAClD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,0CAA0C,oBAAoB;AAC9D;AACA;AACA;AACA,6CAA6C,IAAI,IAAI;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kDAAkD;AAClD,GAAG;AACH;AACA,GAAG;AACH;AACA,GAAG;AACH,0CAA0C,EAAE,EAAE;AAC9C,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iBAAiB;;AAEjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAY,sBAAsB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB,YAAY,sBAAsB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,WAAW,OAAO;AAClB,WAAW,sBAAsB;AACjC;AACA;AACA;AACA,iCAAiC;AACjC;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW,OAAO;AAClB;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA,4BAA4B;AAC5B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA,6BAA6B;AAC7B;AACA,6BAA6B;AAC7B;AACA,KAAK;AACL,gDAAgD;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oDAAoD;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;;;;;;;;;AC9jjBA,sCAAgC;AAChC,sCAAgC;AAChC,uCAAuD;AACvD,0CAAgD;AAMhD,IAAM,IAAI,GAAG,QAAQ,CAAC,cAAc,CAAC,UAAU,CAAC;AAEhD,EAAE,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,CAAC,CAAC;IAChB,IAAI,IAAc,CAAC;IACnB,EAAE,CAAC,CAAC,UAAU,IAAI,OAAO,CAAC,CAAC,CAAC;QACxB,IAAI,GAAG,IAAI,aAAK,CAAC,IAAI,CAAC,CAAC;IAC3B,CAAC;IAAC,IAAI,CAAC,CAAC;QACJ,IAAI,GAAG,IAAI,aAAK,CAAC,IAAI,CAAC,CAAC;IAC3B,CAAC;IACD,IAAM,YAAY,GAAG,MAAM,CAAC,QAAQ,CAAC,QAAQ,IAAI,QAAQ,CAAC;IAC1D,IAAM,GAAG,GAAG,CAAC,YAAY,GAAG,QAAQ,GAAG,OAAO,CAAC,GAAG,MAAM,CAAC,QAAQ,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,CAAC,QAAQ,GAAG,IAAI,CAAC;IACzG,IAAM,IAAI,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC;IACpC,IAAM,OAAO,GAAG,IAAI,6BAAiB,CAAC,GAAG,EAAE,kBAAS,CAAC,CAAC;IACtD,IAAM,EAAE,GAAG,IAAI,eAAM,CAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAC,CAAC;IAC7D,IAAM,QAAM,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC;IAEzB,MAAM,CAAC,gBAAgB,CAAC,QAAQ,EAAE;QAC9B,QAAM,EAAE,CAAC;QACT,IAAI,CAAC,KAAK,EAAE,CAAC;IACjB,CAAC,CAAC,CAAC;AACP,CAAC;AAAA,CAAC;;;;;;;;AC7BF;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,8CAA8C,EAAE;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;AC5HA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC,kBAAkB;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,uDAAuD,EAAE;AACzF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB,yBAAyB;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oEAAoE;AACpE;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oEAAoE,IAAI;AACxE;AACA;AACA,qEAAqE,GAAG;AACxE;AACA;AACA;AACA;AACA;AACA,qEAAqE,MAAM;AAC3E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,mBAAmB;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,mBAAmB;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,OAAO;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,GAAG,qBAAqB;;AAEzB;;;;;;;;ACx6BA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA,2BAA2B,IAAI;AAC/B,sBAAsB,IAAI,KAAK,EAAE,IAAI,IAAI;AACzC;AACA,wBAAwB,IAAI;AAC5B;AACA;AACA,mFAAmF;AACnF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wDAAwD,gBAAgB;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC,cAAc;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mDAAmD,QAAQ;AAC3D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,+BAA+B;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,+BAA+B;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA,mCAAmC,yBAAyB;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,kBAAkB;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC,4BAA4B;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;AACA;AACA;AACA,wBAAwB,uBAAuB;AAC/C;AACA;AACA;AACA,uBAAuB,qBAAqB;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;;AAEA;;;;;;;;ACzOA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA,2EAA2E,uBAAuB;AAClG,0EAA0E,2BAA2B;AACrG;AACA;AACA,0EAA0E,iCAAiC;AAC3G,0EAA0E,4BAA4B;AACtG,0EAA0E,sBAAsB;AAChG,0EAA0E,2BAA2B;AACrG,0EAA0E,0BAA0B;AACpG,2EAA2E,6CAA6C;AACxH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mEAAmE,4CAA4C;AAC/G;AACA,+CAA+C,8BAA8B;AAC7E,+CAA+C,8BAA8B;AAC7E,+CAA+C,8BAA8B;AAC7E,+CAA+C,gDAAgD;AAC/F,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,oDAAoD;AACnG,+CAA+C,+BAA+B;AAC9E,+CAA+C,+BAA+B;AAC9E,+CAA+C,+BAA+B;AAC9E,gDAAgD,gCAAgC;AAChF,uBAAuB,wBAAwB,+BAA+B;AAC9E,oEAAoE,4CAA4C;AAChH;AACA,2DAA2D,oCAAoC;AAC/F,2DAA2D,iCAAiC;AAC5F,2DAA2D,mCAAmC;AAC9F,2DAA2D,sCAAsC;AACjG,2DAA2D,uCAAuC;AAClG,2DAA2D,uCAAuC;AAClG,2DAA2D,4CAA4C;AACvG,2DAA2D,2CAA2C;AACtG,2DAA2D,uCAAuC;AAClG,2DAA2D,yCAAyC;AACpG,2DAA2D,uCAAuC;AAClG,2DAA2D,oCAAoC;AAC/F,2DAA2D,oCAAoC;AAC/F,2DAA2D,oCAAoC;AAC/F,2DAA2D,oCAAoC;AAC/F,2DAA2D,iCAAiC;AAC5F;AACA;AACA;AACA;AACA;AACA,2DAA2D,mCAAmC;AAC9F,2DAA2D,0CAA0C;AACrG,2DAA2D,wCAAwC;AACnG,2DAA2D,0CAA0C;AACrG,2DAA2D,iDAAiD;AAC5G,2DAA2D,6CAA6C;AACxG,2DAA2D,wCAAwC;AACnG,2DAA2D,0CAA0C;AACrG,2DAA2D,mCAAmC;AAC9F,2DAA2D,iCAAiC;AAC5F,2DAA2D,gCAAgC;AAC3F,2DAA2D,kCAAkC;AAC7F,2DAA2D,uCAAuC;AAClG,2DAA2D,qCAAqC;AAChG;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mDAAmD,wCAAwC;AAC3F,mDAAmD,mCAAmC;AACtF,mDAAmD,sCAAsC;AACzF,iGAAiG,4CAA4C;AAC7I;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,kCAAkC;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,oBAAoB;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gDAAgD;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;AC7dA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,sBAAsB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC,yBAAyB;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,mCAAmC;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,UAAU;AACxB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,WAAW;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+CAA+C;AAC/C;AACA;AACA,8CAA8C;AAC9C;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA,oDAAoD;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC,0DAA0D;AAClG;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC,cAAc;AAChD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACrRA;AACA;AACA;AACA,UAAU,gBAAgB,sCAAsC,iBAAiB,EAAE;AACnF,yBAAyB,uDAAuD;AAChF;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA,CAAC;AACD,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC,sCAAsC;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sDAAsD,8BAA8B;AACpF,oDAAoD,kCAAkC;AACtF,oDAAoD,kCAAkC;AACtF,kDAAkD,gCAAgC;AAClF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,iBAAiB;AACvD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC,cAAc;AAChD,gCAAgC,eAAe;AAC/C;AACA;AACA;AACA,uBAAuB,iBAAiB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oFAAoF,yBAAyB,EAAE;AAC/G;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,6EAA6E;AAC3G;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iEAAiE,4BAA4B,EAAE;AAC/F;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;ACrZA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;ACxEA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gCAAgC,+BAA+B,EAAE;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;AC1FA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uB;;;;;;AC7BA,kBAAkB,wD;;;;;;ACAlB,kBAAkB,kD;;;;;;;;;;;;ACAlB,kBAAkB,gE;;;;;;ACAlB,kBAAkB,8D;;;;;;;ACAlB;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACpEA;AACA;AACA;AACA,UAAU,gBAAgB,sCAAsC,iBAAiB,EAAE;AACnF,yBAAyB,uDAAuD;AAChF;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA,CAAC;AACD,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC,2BAA2B,EAAE;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;AClEA;AACA;AACA;AACA,UAAU,gBAAgB,sCAAsC,iBAAiB,EAAE;AACnF,yBAAyB,uDAAuD;AAChF;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA,CAAC;AACD,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,2BAA2B,yCAAyC;AACpE;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,0CAA0C,eAAe;AACzD;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC,cAAc;AAC/C;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB,uBAAuB;AAC/C;AACA;AACA;AACA,+BAA+B,gCAAgC;AAC/D;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA,2BAA2B,kBAAkB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mCAAmC,QAAQ;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,WAAW;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;;AAEA;;;;;;;;AClKA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;;AAEA;;;;;;;;AC5CA;AACA,8CAA8C,cAAc;AAC5D;AACA;AACA;AACA;AACA;;AAEA","file":"./dist/gotty-bundle.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// identity function for calling harmony imports with the correct context\n \t__webpack_require__.i = function(value) { return value; };\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 15);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap d69371b1ba8b46cfaccb","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar CompositionHelper_1 = require(\"./CompositionHelper\");\nvar EventEmitter_1 = require(\"./EventEmitter\");\nvar Viewport_1 = require(\"./Viewport\");\nvar Clipboard_1 = require(\"./handlers/Clipboard\");\nvar CircularList_1 = require(\"./utils/CircularList\");\nvar EscapeSequences_1 = require(\"./EscapeSequences\");\nvar InputHandler_1 = require(\"./InputHandler\");\nvar Parser_1 = require(\"./Parser\");\nvar Renderer_1 = require(\"./Renderer\");\nvar Linkifier_1 = require(\"./Linkifier\");\nvar SelectionManager_1 = require(\"./SelectionManager\");\nvar CharMeasure_1 = require(\"./utils/CharMeasure\");\nvar Browser = require(\"./utils/Browser\");\nvar Mouse_1 = require(\"./utils/Mouse\");\nvar document = (typeof window != 'undefined') ? window.document : null;\nvar WRITE_BUFFER_PAUSE_THRESHOLD = 5;\nvar WRITE_BATCH_SIZE = 300;\nvar CURSOR_BLINK_INTERVAL = 600;\nfunction Terminal(options) {\n var self = this;\n if (!(this instanceof Terminal)) {\n return new Terminal(arguments[0], arguments[1], arguments[2]);\n }\n self.browser = Browser;\n self.cancel = Terminal.cancel;\n EventEmitter_1.EventEmitter.call(this);\n if (typeof options === 'number') {\n options = {\n cols: arguments[0],\n rows: arguments[1],\n handler: arguments[2]\n };\n }\n options = options || {};\n Object.keys(Terminal.defaults).forEach(function (key) {\n if (options[key] == null) {\n options[key] = Terminal.options[key];\n if (Terminal[key] !== Terminal.defaults[key]) {\n options[key] = Terminal[key];\n }\n }\n self[key] = options[key];\n });\n if (options.colors.length === 8) {\n options.colors = options.colors.concat(Terminal._colors.slice(8));\n }\n else if (options.colors.length === 16) {\n options.colors = options.colors.concat(Terminal._colors.slice(16));\n }\n else if (options.colors.length === 10) {\n options.colors = options.colors.slice(0, -2).concat(Terminal._colors.slice(8, -2), options.colors.slice(-2));\n }\n else if (options.colors.length === 18) {\n options.colors = options.colors.concat(Terminal._colors.slice(16, -2), options.colors.slice(-2));\n }\n this.colors = options.colors;\n this.options = options;\n this.parent = options.body || options.parent || (document ? document.getElementsByTagName('body')[0] : null);\n this.cols = options.cols || options.geometry[0];\n this.rows = options.rows || options.geometry[1];\n this.geometry = [this.cols, this.rows];\n if (options.handler) {\n this.on('data', options.handler);\n }\n this.ybase = 0;\n this.ydisp = 0;\n this.x = 0;\n this.y = 0;\n this.cursorState = 0;\n this.cursorHidden = false;\n this.convertEol;\n this.queue = '';\n this.scrollTop = 0;\n this.scrollBottom = this.rows - 1;\n this.customKeyEventHandler = null;\n this.cursorBlinkInterval = null;\n this.applicationKeypad = false;\n this.applicationCursor = false;\n this.originMode = false;\n this.insertMode = false;\n this.wraparoundMode = true;\n this.normal = null;\n this.charset = null;\n this.gcharset = null;\n this.glevel = 0;\n this.charsets = [null];\n this.decLocator;\n this.x10Mouse;\n this.vt200Mouse;\n this.vt300Mouse;\n this.normalMouse;\n this.mouseEvents;\n this.sendFocus;\n this.utfMouse;\n this.sgrMouse;\n this.urxvtMouse;\n this.element;\n this.children;\n this.refreshStart;\n this.refreshEnd;\n this.savedX;\n this.savedY;\n this.savedCols;\n this.readable = true;\n this.writable = true;\n this.defAttr = (0 << 18) | (257 << 9) | (256 << 0);\n this.curAttr = this.defAttr;\n this.params = [];\n this.currentParam = 0;\n this.prefix = '';\n this.postfix = '';\n this.inputHandler = new InputHandler_1.InputHandler(this);\n this.parser = new Parser_1.Parser(this.inputHandler, this);\n this.renderer = this.renderer || null;\n this.selectionManager = this.selectionManager || null;\n this.linkifier = this.linkifier || new Linkifier_1.Linkifier();\n this.writeBuffer = [];\n this.writeInProgress = false;\n this.xoffSentToCatchUp = false;\n this.writeStopped = false;\n this.surrogate_high = '';\n this.lines = new CircularList_1.CircularList(this.scrollback);\n var i = this.rows;\n while (i--) {\n this.lines.push(this.blankLine());\n }\n if (this.selectionManager) {\n this.selectionManager.setBuffer(this.lines);\n }\n this.tabs;\n this.setupStops();\n this.userScrolling = false;\n}\ninherits(Terminal, EventEmitter_1.EventEmitter);\nTerminal.prototype.eraseAttr = function () {\n return (this.defAttr & ~0x1ff) | (this.curAttr & 0x1ff);\n};\nTerminal.tangoColors = [\n '#2e3436',\n '#cc0000',\n '#4e9a06',\n '#c4a000',\n '#3465a4',\n '#75507b',\n '#06989a',\n '#d3d7cf',\n '#555753',\n '#ef2929',\n '#8ae234',\n '#fce94f',\n '#729fcf',\n '#ad7fa8',\n '#34e2e2',\n '#eeeeec'\n];\nTerminal.colors = (function () {\n var colors = Terminal.tangoColors.slice(), r = [0x00, 0x5f, 0x87, 0xaf, 0xd7, 0xff], i;\n i = 0;\n for (; i < 216; i++) {\n out(r[(i / 36) % 6 | 0], r[(i / 6) % 6 | 0], r[i % 6]);\n }\n i = 0;\n for (; i < 24; i++) {\n r = 8 + i * 10;\n out(r, r, r);\n }\n function out(r, g, b) {\n colors.push('#' + hex(r) + hex(g) + hex(b));\n }\n function hex(c) {\n c = c.toString(16);\n return c.length < 2 ? '0' + c : c;\n }\n return colors;\n})();\nTerminal._colors = Terminal.colors.slice();\nTerminal.vcolors = (function () {\n var out = [], colors = Terminal.colors, i = 0, color;\n for (; i < 256; i++) {\n color = parseInt(colors[i].substring(1), 16);\n out.push([\n (color >> 16) & 0xff,\n (color >> 8) & 0xff,\n color & 0xff\n ]);\n }\n return out;\n})();\nTerminal.defaults = {\n colors: Terminal.colors,\n theme: 'default',\n convertEol: false,\n termName: 'xterm',\n geometry: [80, 24],\n cursorBlink: false,\n cursorStyle: 'block',\n visualBell: false,\n popOnBell: false,\n scrollback: 1000,\n screenKeys: false,\n debug: false,\n cancelEvents: false,\n disableStdin: false,\n useFlowControl: false,\n tabStopWidth: 8\n};\nTerminal.options = {};\nTerminal.focus = null;\neach(keys(Terminal.defaults), function (key) {\n Terminal[key] = Terminal.defaults[key];\n Terminal.options[key] = Terminal.defaults[key];\n});\nTerminal.prototype.focus = function () {\n return this.textarea.focus();\n};\nTerminal.prototype.getOption = function (key, value) {\n if (!(key in Terminal.defaults)) {\n throw new Error('No option with key \"' + key + '\"');\n }\n if (typeof this.options[key] !== 'undefined') {\n return this.options[key];\n }\n return this[key];\n};\nTerminal.prototype.setOption = function (key, value) {\n if (!(key in Terminal.defaults)) {\n throw new Error('No option with key \"' + key + '\"');\n }\n switch (key) {\n case 'scrollback':\n if (value < this.rows) {\n var msg = 'Setting the scrollback value less than the number of rows ';\n msg += \"(\" + this.rows + \") is not allowed.\";\n console.warn(msg);\n return false;\n }\n if (this.options[key] !== value) {\n if (this.lines.length > value) {\n var amountToTrim = this.lines.length - value;\n var needsRefresh = (this.ydisp - amountToTrim < 0);\n this.lines.trimStart(amountToTrim);\n this.ybase = Math.max(this.ybase - amountToTrim, 0);\n this.ydisp = Math.max(this.ydisp - amountToTrim, 0);\n if (needsRefresh) {\n this.refresh(0, this.rows - 1);\n }\n }\n this.lines.maxLength = value;\n this.viewport.syncScrollArea();\n }\n break;\n }\n this[key] = value;\n this.options[key] = value;\n switch (key) {\n case 'cursorBlink':\n this.setCursorBlinking(value);\n break;\n case 'cursorStyle':\n this.element.classList.toggle(\"xterm-cursor-style-underline\", value === 'underline');\n this.element.classList.toggle(\"xterm-cursor-style-bar\", value === 'bar');\n break;\n case 'tabStopWidth':\n this.setupStops();\n break;\n }\n};\nTerminal.prototype.restartCursorBlinking = function () {\n this.setCursorBlinking(this.options.cursorBlink);\n};\nTerminal.prototype.setCursorBlinking = function (enabled) {\n this.element.classList.toggle('xterm-cursor-blink', enabled);\n this.clearCursorBlinkingInterval();\n if (enabled) {\n var self = this;\n this.cursorBlinkInterval = setInterval(function () {\n self.element.classList.toggle('xterm-cursor-blink-on');\n }, CURSOR_BLINK_INTERVAL);\n }\n};\nTerminal.prototype.clearCursorBlinkingInterval = function () {\n this.element.classList.remove('xterm-cursor-blink-on');\n if (this.cursorBlinkInterval) {\n clearInterval(this.cursorBlinkInterval);\n this.cursorBlinkInterval = null;\n }\n};\nTerminal.bindFocus = function (term) {\n on(term.textarea, 'focus', function (ev) {\n if (term.sendFocus) {\n term.send(EscapeSequences_1.C0.ESC + '[I');\n }\n term.element.classList.add('focus');\n term.showCursor();\n term.restartCursorBlinking.apply(term);\n Terminal.focus = term;\n term.emit('focus', { terminal: term });\n });\n};\nTerminal.prototype.blur = function () {\n return this.textarea.blur();\n};\nTerminal.bindBlur = function (term) {\n on(term.textarea, 'blur', function (ev) {\n term.refresh(term.y, term.y);\n if (term.sendFocus) {\n term.send(EscapeSequences_1.C0.ESC + '[O');\n }\n term.element.classList.remove('focus');\n term.clearCursorBlinkingInterval.apply(term);\n Terminal.focus = null;\n term.emit('blur', { terminal: term });\n });\n};\nTerminal.prototype.initGlobal = function () {\n var _this = this;\n var term = this;\n Terminal.bindKeys(this);\n Terminal.bindFocus(this);\n Terminal.bindBlur(this);\n on(this.element, 'copy', function (event) {\n if (_this.mouseEvents) {\n return;\n }\n Clipboard_1.copyHandler(event, term, _this.selectionManager);\n });\n var pasteHandlerWrapper = function (event) { return Clipboard_1.pasteHandler(event, term); };\n on(this.textarea, 'paste', pasteHandlerWrapper);\n on(this.element, 'paste', pasteHandlerWrapper);\n if (term.browser.isFirefox) {\n on(this.element, 'mousedown', function (event) {\n if (event.button == 2) {\n Clipboard_1.rightClickHandler(event, _this.textarea, _this.selectionManager);\n }\n });\n }\n else {\n on(this.element, 'contextmenu', function (event) {\n Clipboard_1.rightClickHandler(event, _this.textarea, _this.selectionManager);\n });\n }\n if (term.browser.isLinux) {\n on(this.element, 'auxclick', function (event) {\n if (event.button === 1) {\n Clipboard_1.moveTextAreaUnderMouseCursor(event, _this.textarea, _this.selectionManager);\n }\n });\n }\n};\nTerminal.bindKeys = function (term) {\n on(term.element, 'keydown', function (ev) {\n if (document.activeElement != this) {\n return;\n }\n term.keyDown(ev);\n }, true);\n on(term.element, 'keypress', function (ev) {\n if (document.activeElement != this) {\n return;\n }\n term.keyPress(ev);\n }, true);\n on(term.element, 'keyup', function (ev) {\n if (!wasMondifierKeyOnlyEvent(ev)) {\n term.focus(term);\n }\n }, true);\n on(term.textarea, 'keydown', function (ev) {\n term.keyDown(ev);\n }, true);\n on(term.textarea, 'keypress', function (ev) {\n term.keyPress(ev);\n this.value = '';\n }, true);\n on(term.textarea, 'compositionstart', term.compositionHelper.compositionstart.bind(term.compositionHelper));\n on(term.textarea, 'compositionupdate', term.compositionHelper.compositionupdate.bind(term.compositionHelper));\n on(term.textarea, 'compositionend', term.compositionHelper.compositionend.bind(term.compositionHelper));\n term.on('refresh', term.compositionHelper.updateCompositionElements.bind(term.compositionHelper));\n term.on('refresh', function (data) {\n term.queueLinkification(data.start, data.end);\n });\n};\nTerminal.prototype.insertRow = function (row) {\n if (typeof row != 'object') {\n row = document.createElement('div');\n }\n this.rowContainer.appendChild(row);\n this.children.push(row);\n return row;\n};\nTerminal.prototype.open = function (parent, focus) {\n var _this = this;\n var self = this, i = 0, div;\n this.parent = parent || this.parent;\n if (!this.parent) {\n throw new Error('Terminal requires a parent element.');\n }\n this.context = this.parent.ownerDocument.defaultView;\n this.document = this.parent.ownerDocument;\n this.body = this.document.getElementsByTagName('body')[0];\n this.element = this.document.createElement('div');\n this.element.classList.add('terminal');\n this.element.classList.add('xterm');\n this.element.classList.add('xterm-theme-' + this.theme);\n this.setCursorBlinking(this.options.cursorBlink);\n this.element.setAttribute('tabindex', 0);\n this.viewportElement = document.createElement('div');\n this.viewportElement.classList.add('xterm-viewport');\n this.element.appendChild(this.viewportElement);\n this.viewportScrollArea = document.createElement('div');\n this.viewportScrollArea.classList.add('xterm-scroll-area');\n this.viewportElement.appendChild(this.viewportScrollArea);\n this.selectionContainer = document.createElement('div');\n this.selectionContainer.classList.add('xterm-selection');\n this.element.appendChild(this.selectionContainer);\n this.rowContainer = document.createElement('div');\n this.rowContainer.classList.add('xterm-rows');\n this.element.appendChild(this.rowContainer);\n this.children = [];\n this.linkifier.attachToDom(document, this.children);\n this.helperContainer = document.createElement('div');\n this.helperContainer.classList.add('xterm-helpers');\n this.element.appendChild(this.helperContainer);\n this.textarea = document.createElement('textarea');\n this.textarea.classList.add('xterm-helper-textarea');\n this.textarea.setAttribute('autocorrect', 'off');\n this.textarea.setAttribute('autocapitalize', 'off');\n this.textarea.setAttribute('spellcheck', 'false');\n this.textarea.tabIndex = 0;\n this.textarea.addEventListener('focus', function () {\n self.emit('focus', { terminal: self });\n });\n this.textarea.addEventListener('blur', function () {\n self.emit('blur', { terminal: self });\n });\n this.helperContainer.appendChild(this.textarea);\n this.compositionView = document.createElement('div');\n this.compositionView.classList.add('composition-view');\n this.compositionHelper = new CompositionHelper_1.CompositionHelper(this.textarea, this.compositionView, this);\n this.helperContainer.appendChild(this.compositionView);\n this.charSizeStyleElement = document.createElement('style');\n this.helperContainer.appendChild(this.charSizeStyleElement);\n for (; i < this.rows; i++) {\n this.insertRow();\n }\n this.parent.appendChild(this.element);\n this.charMeasure = new CharMeasure_1.CharMeasure(document, this.helperContainer);\n this.charMeasure.on('charsizechanged', function () {\n self.updateCharSizeStyles();\n });\n this.charMeasure.measure();\n this.viewport = new Viewport_1.Viewport(this, this.viewportElement, this.viewportScrollArea, this.charMeasure);\n this.renderer = new Renderer_1.Renderer(this);\n this.selectionManager = new SelectionManager_1.SelectionManager(this, this.lines, this.rowContainer, this.charMeasure);\n this.selectionManager.on('refresh', function (data) {\n _this.renderer.refreshSelection(data.start, data.end);\n });\n this.selectionManager.on('newselection', function (text) {\n _this.textarea.value = text;\n _this.textarea.focus();\n _this.textarea.select();\n });\n this.on('scroll', function () { return _this.selectionManager.refresh(); });\n this.viewportElement.addEventListener('scroll', function () { return _this.selectionManager.refresh(); });\n this.refresh(0, this.rows - 1);\n this.initGlobal();\n if (typeof focus == 'undefined') {\n var message = 'You did not pass the `focus` argument in `Terminal.prototype.open()`.\\n';\n message += 'The `focus` argument now defaults to `true` but starting with xterm.js 3.0 ';\n message += 'it will default to `false`.';\n console.warn(message);\n focus = true;\n }\n if (focus) {\n this.focus();\n }\n on(this.element, 'click', function () {\n var selection = document.getSelection(), collapsed = selection.isCollapsed, isRange = typeof collapsed == 'boolean' ? !collapsed : selection.type == 'Range';\n if (!isRange) {\n self.focus();\n }\n });\n this.bindMouse();\n this.emit('open');\n};\nTerminal.loadAddon = function (addon, callback) {\n if (typeof exports === 'object' && typeof module === 'object') {\n return require('./addons/' + addon + '/' + addon);\n }\n else if (typeof define == 'function') {\n return require(['./addons/' + addon + '/' + addon], callback);\n }\n else {\n console.error('Cannot load a module without a CommonJS or RequireJS environment.');\n return false;\n }\n};\nTerminal.prototype.updateCharSizeStyles = function () {\n this.charSizeStyleElement.textContent =\n \".xterm-wide-char{width:\" + this.charMeasure.width * 2 + \"px;}\" +\n (\".xterm-normal-char{width:\" + this.charMeasure.width + \"px;}\") +\n (\".xterm-rows > div{height:\" + this.charMeasure.height + \"px;}\");\n};\nTerminal.prototype.bindMouse = function () {\n var el = this.element, self = this, pressed = 32;\n function sendButton(ev) {\n var button, pos;\n button = getButton(ev);\n pos = Mouse_1.getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows);\n if (!pos)\n return;\n sendEvent(button, pos);\n switch (ev.overrideType || ev.type) {\n case 'mousedown':\n pressed = button;\n break;\n case 'mouseup':\n pressed = 32;\n break;\n case 'wheel':\n break;\n }\n }\n function sendMove(ev) {\n var button = pressed, pos;\n pos = Mouse_1.getRawByteCoords(ev, self.rowContainer, self.charMeasure, self.cols, self.rows);\n if (!pos)\n return;\n button += 32;\n sendEvent(button, pos);\n }\n function encode(data, ch) {\n if (!self.utfMouse) {\n if (ch === 255)\n return data.push(0);\n if (ch > 127)\n ch = 127;\n data.push(ch);\n }\n else {\n if (ch === 2047)\n return data.push(0);\n if (ch < 127) {\n data.push(ch);\n }\n else {\n if (ch > 2047)\n ch = 2047;\n data.push(0xC0 | (ch >> 6));\n data.push(0x80 | (ch & 0x3F));\n }\n }\n }\n function sendEvent(button, pos) {\n if (self.vt300Mouse) {\n button &= 3;\n pos.x -= 32;\n pos.y -= 32;\n var data = EscapeSequences_1.C0.ESC + '[24';\n if (button === 0)\n data += '1';\n else if (button === 1)\n data += '3';\n else if (button === 2)\n data += '5';\n else if (button === 3)\n return;\n else\n data += '0';\n data += '~[' + pos.x + ',' + pos.y + ']\\r';\n self.send(data);\n return;\n }\n if (self.decLocator) {\n button &= 3;\n pos.x -= 32;\n pos.y -= 32;\n if (button === 0)\n button = 2;\n else if (button === 1)\n button = 4;\n else if (button === 2)\n button = 6;\n else if (button === 3)\n button = 3;\n self.send(EscapeSequences_1.C0.ESC + '['\n + button\n + ';'\n + (button === 3 ? 4 : 0)\n + ';'\n + pos.y\n + ';'\n + pos.x\n + ';'\n + (pos.page || 0)\n + '&w');\n return;\n }\n if (self.urxvtMouse) {\n pos.x -= 32;\n pos.y -= 32;\n pos.x++;\n pos.y++;\n self.send(EscapeSequences_1.C0.ESC + '[' + button + ';' + pos.x + ';' + pos.y + 'M');\n return;\n }\n if (self.sgrMouse) {\n pos.x -= 32;\n pos.y -= 32;\n self.send(EscapeSequences_1.C0.ESC + '[<'\n + (((button & 3) === 3 ? button & ~3 : button) - 32)\n + ';'\n + pos.x\n + ';'\n + pos.y\n + ((button & 3) === 3 ? 'm' : 'M'));\n return;\n }\n var data = [];\n encode(data, button);\n encode(data, pos.x);\n encode(data, pos.y);\n self.send(EscapeSequences_1.C0.ESC + '[M' + String.fromCharCode.apply(String, data));\n }\n function getButton(ev) {\n var button, shift, meta, ctrl, mod;\n switch (ev.overrideType || ev.type) {\n case 'mousedown':\n button = ev.button != null\n ? +ev.button\n : ev.which != null\n ? ev.which - 1\n : null;\n if (self.browser.isMSIE) {\n button = button === 1 ? 0 : button === 4 ? 1 : button;\n }\n break;\n case 'mouseup':\n button = 3;\n break;\n case 'DOMMouseScroll':\n button = ev.detail < 0\n ? 64\n : 65;\n break;\n case 'wheel':\n button = ev.wheelDeltaY > 0\n ? 64\n : 65;\n break;\n }\n shift = ev.shiftKey ? 4 : 0;\n meta = ev.metaKey ? 8 : 0;\n ctrl = ev.ctrlKey ? 16 : 0;\n mod = shift | meta | ctrl;\n if (self.vt200Mouse) {\n mod &= ctrl;\n }\n else if (!self.normalMouse) {\n mod = 0;\n }\n button = (32 + (mod << 2)) + button;\n return button;\n }\n on(el, 'mousedown', function (ev) {\n if (!self.mouseEvents)\n return;\n sendButton(ev);\n self.focus();\n if (self.vt200Mouse) {\n ev.overrideType = 'mouseup';\n sendButton(ev);\n return self.cancel(ev);\n }\n if (self.normalMouse)\n on(self.document, 'mousemove', sendMove);\n if (!self.x10Mouse) {\n on(self.document, 'mouseup', function up(ev) {\n sendButton(ev);\n if (self.normalMouse)\n off(self.document, 'mousemove', sendMove);\n off(self.document, 'mouseup', up);\n return self.cancel(ev);\n });\n }\n return self.cancel(ev);\n });\n on(el, 'wheel', function (ev) {\n if (!self.mouseEvents)\n return;\n if (self.x10Mouse\n || self.vt300Mouse\n || self.decLocator)\n return;\n sendButton(ev);\n return self.cancel(ev);\n });\n on(el, 'wheel', function (ev) {\n if (self.mouseEvents)\n return;\n self.viewport.onWheel(ev);\n return self.cancel(ev);\n });\n on(el, 'touchstart', function (ev) {\n if (self.mouseEvents)\n return;\n self.viewport.onTouchStart(ev);\n return self.cancel(ev);\n });\n on(el, 'touchmove', function (ev) {\n if (self.mouseEvents)\n return;\n self.viewport.onTouchMove(ev);\n return self.cancel(ev);\n });\n};\nTerminal.prototype.destroy = function () {\n this.readable = false;\n this.writable = false;\n this._events = {};\n this.handler = function () { };\n this.write = function () { };\n if (this.element && this.element.parentNode) {\n this.element.parentNode.removeChild(this.element);\n }\n};\nTerminal.prototype.refresh = function (start, end) {\n if (this.renderer) {\n this.renderer.queueRefresh(start, end);\n }\n};\nTerminal.prototype.queueLinkification = function (start, end) {\n if (this.linkifier) {\n for (var i = start; i <= end; i++) {\n this.linkifier.linkifyRow(i);\n }\n }\n};\nTerminal.prototype.showCursor = function () {\n if (!this.cursorState) {\n this.cursorState = 1;\n this.refresh(this.y, this.y);\n }\n};\nTerminal.prototype.scroll = function (isWrapped) {\n var row;\n if (this.lines.length === this.lines.maxLength) {\n this.lines.trimStart(1);\n this.ybase--;\n if (this.ydisp !== 0) {\n this.ydisp--;\n }\n }\n this.ybase++;\n if (!this.userScrolling) {\n this.ydisp = this.ybase;\n }\n row = this.ybase + this.rows - 1;\n row -= this.rows - 1 - this.scrollBottom;\n if (row === this.lines.length) {\n this.lines.push(this.blankLine(undefined, isWrapped));\n }\n else {\n this.lines.splice(row, 0, this.blankLine(undefined, isWrapped));\n }\n if (this.scrollTop !== 0) {\n if (this.ybase !== 0) {\n this.ybase--;\n if (!this.userScrolling) {\n this.ydisp = this.ybase;\n }\n }\n this.lines.splice(this.ybase + this.scrollTop, 1);\n }\n this.updateRange(this.scrollTop);\n this.updateRange(this.scrollBottom);\n this.emit('scroll', this.ydisp);\n};\nTerminal.prototype.scrollDisp = function (disp, suppressScrollEvent) {\n if (disp < 0) {\n if (this.ydisp === 0) {\n return;\n }\n this.userScrolling = true;\n }\n else if (disp + this.ydisp >= this.ybase) {\n this.userScrolling = false;\n }\n this.ydisp += disp;\n if (this.ydisp > this.ybase) {\n this.ydisp = this.ybase;\n }\n else if (this.ydisp < 0) {\n this.ydisp = 0;\n }\n if (!suppressScrollEvent) {\n this.emit('scroll', this.ydisp);\n }\n this.refresh(0, this.rows - 1);\n};\nTerminal.prototype.scrollPages = function (pageCount) {\n this.scrollDisp(pageCount * (this.rows - 1));\n};\nTerminal.prototype.scrollToTop = function () {\n this.scrollDisp(-this.ydisp);\n};\nTerminal.prototype.scrollToBottom = function () {\n this.scrollDisp(this.ybase - this.ydisp);\n};\nTerminal.prototype.write = function (data) {\n this.writeBuffer.push(data);\n if (this.options.useFlowControl && !this.xoffSentToCatchUp && this.writeBuffer.length >= WRITE_BUFFER_PAUSE_THRESHOLD) {\n this.send(EscapeSequences_1.C0.DC3);\n this.xoffSentToCatchUp = true;\n }\n if (!this.writeInProgress && this.writeBuffer.length > 0) {\n this.writeInProgress = true;\n var self = this;\n setTimeout(function () {\n self.innerWrite();\n });\n }\n};\nTerminal.prototype.innerWrite = function () {\n var writeBatch = this.writeBuffer.splice(0, WRITE_BATCH_SIZE);\n while (writeBatch.length > 0) {\n var data = writeBatch.shift();\n var l = data.length, i = 0, j, cs, ch, code, low, ch_width, row;\n if (this.xoffSentToCatchUp && writeBatch.length === 0 && this.writeBuffer.length === 0) {\n this.send(EscapeSequences_1.C0.DC1);\n this.xoffSentToCatchUp = false;\n }\n this.refreshStart = this.y;\n this.refreshEnd = this.y;\n var state = this.parser.parse(data);\n this.parser.setState(state);\n this.updateRange(this.y);\n this.refresh(this.refreshStart, this.refreshEnd);\n }\n if (this.writeBuffer.length > 0) {\n var self = this;\n setTimeout(function () {\n self.innerWrite();\n }, 0);\n }\n else {\n this.writeInProgress = false;\n }\n};\nTerminal.prototype.writeln = function (data) {\n this.write(data + '\\r\\n');\n};\nTerminal.prototype.attachCustomKeydownHandler = function (customKeydownHandler) {\n var message = 'attachCustomKeydownHandler() is DEPRECATED and will be removed soon. Please use attachCustomKeyEventHandler() instead.';\n console.warn(message);\n this.attachCustomKeyEventHandler(customKeydownHandler);\n};\nTerminal.prototype.attachCustomKeyEventHandler = function (customKeyEventHandler) {\n this.customKeyEventHandler = customKeyEventHandler;\n};\nTerminal.prototype.setHypertextLinkHandler = function (handler) {\n if (!this.linkifier) {\n throw new Error('Cannot attach a hypertext link handler before Terminal.open is called');\n }\n this.linkifier.setHypertextLinkHandler(handler);\n this.refresh(0, this.rows - 1);\n};\nTerminal.prototype.setHypertextValidationCallback = function (callback) {\n if (!this.linkifier) {\n throw new Error('Cannot attach a hypertext validation callback before Terminal.open is called');\n }\n this.linkifier.setHypertextValidationCallback(callback);\n this.refresh(0, this.rows - 1);\n};\nTerminal.prototype.registerLinkMatcher = function (regex, handler, options) {\n if (this.linkifier) {\n var matcherId = this.linkifier.registerLinkMatcher(regex, handler, options);\n this.refresh(0, this.rows - 1);\n return matcherId;\n }\n};\nTerminal.prototype.deregisterLinkMatcher = function (matcherId) {\n if (this.linkifier) {\n if (this.linkifier.deregisterLinkMatcher(matcherId)) {\n this.refresh(0, this.rows - 1);\n }\n }\n};\nTerminal.prototype.hasSelection = function () {\n return this.selectionManager.hasSelection;\n};\nTerminal.prototype.getSelection = function () {\n return this.selectionManager.selectionText;\n};\nTerminal.prototype.clearSelection = function () {\n this.selectionManager.clearSelection();\n};\nTerminal.prototype.selectAll = function () {\n this.selectionManager.selectAll();\n};\nTerminal.prototype.keyDown = function (ev) {\n if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) {\n return false;\n }\n this.restartCursorBlinking();\n if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) {\n if (this.ybase !== this.ydisp) {\n this.scrollToBottom();\n }\n return false;\n }\n var self = this;\n var result = this.evaluateKeyEscapeSequence(ev);\n if (result.key === EscapeSequences_1.C0.DC3) {\n this.writeStopped = true;\n }\n else if (result.key === EscapeSequences_1.C0.DC1) {\n this.writeStopped = false;\n }\n if (result.scrollDisp) {\n this.scrollDisp(result.scrollDisp);\n return this.cancel(ev, true);\n }\n if (isThirdLevelShift(this, ev)) {\n return true;\n }\n if (result.cancel) {\n this.cancel(ev, true);\n }\n if (!result.key) {\n return true;\n }\n this.emit('keydown', ev);\n this.emit('key', result.key, ev);\n this.showCursor();\n this.handler(result.key);\n return this.cancel(ev, true);\n};\nTerminal.prototype.evaluateKeyEscapeSequence = function (ev) {\n var result = {\n cancel: false,\n key: undefined,\n scrollDisp: undefined\n };\n var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3;\n switch (ev.keyCode) {\n case 8:\n if (ev.shiftKey) {\n result.key = EscapeSequences_1.C0.BS;\n break;\n }\n result.key = EscapeSequences_1.C0.DEL;\n break;\n case 9:\n if (ev.shiftKey) {\n result.key = EscapeSequences_1.C0.ESC + '[Z';\n break;\n }\n result.key = EscapeSequences_1.C0.HT;\n result.cancel = true;\n break;\n case 13:\n result.key = EscapeSequences_1.C0.CR;\n result.cancel = true;\n break;\n case 27:\n result.key = EscapeSequences_1.C0.ESC;\n result.cancel = true;\n break;\n case 37:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'D';\n if (result.key == EscapeSequences_1.C0.ESC + '[1;3D') {\n result.key = (this.browser.isMac) ? EscapeSequences_1.C0.ESC + 'b' : EscapeSequences_1.C0.ESC + '[1;5D';\n }\n }\n else if (this.applicationCursor) {\n result.key = EscapeSequences_1.C0.ESC + 'OD';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[D';\n }\n break;\n case 39:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'C';\n if (result.key == EscapeSequences_1.C0.ESC + '[1;3C') {\n result.key = (this.browser.isMac) ? EscapeSequences_1.C0.ESC + 'f' : EscapeSequences_1.C0.ESC + '[1;5C';\n }\n }\n else if (this.applicationCursor) {\n result.key = EscapeSequences_1.C0.ESC + 'OC';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[C';\n }\n break;\n case 38:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'A';\n if (result.key == EscapeSequences_1.C0.ESC + '[1;3A') {\n result.key = EscapeSequences_1.C0.ESC + '[1;5A';\n }\n }\n else if (this.applicationCursor) {\n result.key = EscapeSequences_1.C0.ESC + 'OA';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[A';\n }\n break;\n case 40:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'B';\n if (result.key == EscapeSequences_1.C0.ESC + '[1;3B') {\n result.key = EscapeSequences_1.C0.ESC + '[1;5B';\n }\n }\n else if (this.applicationCursor) {\n result.key = EscapeSequences_1.C0.ESC + 'OB';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[B';\n }\n break;\n case 45:\n if (!ev.shiftKey && !ev.ctrlKey) {\n result.key = EscapeSequences_1.C0.ESC + '[2~';\n }\n break;\n case 46:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[3;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[3~';\n }\n break;\n case 36:\n if (modifiers)\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'H';\n else if (this.applicationCursor)\n result.key = EscapeSequences_1.C0.ESC + 'OH';\n else\n result.key = EscapeSequences_1.C0.ESC + '[H';\n break;\n case 35:\n if (modifiers)\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'F';\n else if (this.applicationCursor)\n result.key = EscapeSequences_1.C0.ESC + 'OF';\n else\n result.key = EscapeSequences_1.C0.ESC + '[F';\n break;\n case 33:\n if (ev.shiftKey) {\n result.scrollDisp = -(this.rows - 1);\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[5~';\n }\n break;\n case 34:\n if (ev.shiftKey) {\n result.scrollDisp = this.rows - 1;\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[6~';\n }\n break;\n case 112:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'P';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + 'OP';\n }\n break;\n case 113:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'Q';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + 'OQ';\n }\n break;\n case 114:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'R';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + 'OR';\n }\n break;\n case 115:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[1;' + (modifiers + 1) + 'S';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + 'OS';\n }\n break;\n case 116:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[15;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[15~';\n }\n break;\n case 117:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[17;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[17~';\n }\n break;\n case 118:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[18;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[18~';\n }\n break;\n case 119:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[19;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[19~';\n }\n break;\n case 120:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[20;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[20~';\n }\n break;\n case 121:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[21;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[21~';\n }\n break;\n case 122:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[23;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[23~';\n }\n break;\n case 123:\n if (modifiers) {\n result.key = EscapeSequences_1.C0.ESC + '[24;' + (modifiers + 1) + '~';\n }\n else {\n result.key = EscapeSequences_1.C0.ESC + '[24~';\n }\n break;\n default:\n if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) {\n if (ev.keyCode >= 65 && ev.keyCode <= 90) {\n result.key = String.fromCharCode(ev.keyCode - 64);\n }\n else if (ev.keyCode === 32) {\n result.key = String.fromCharCode(0);\n }\n else if (ev.keyCode >= 51 && ev.keyCode <= 55) {\n result.key = String.fromCharCode(ev.keyCode - 51 + 27);\n }\n else if (ev.keyCode === 56) {\n result.key = String.fromCharCode(127);\n }\n else if (ev.keyCode === 219) {\n result.key = String.fromCharCode(27);\n }\n else if (ev.keyCode === 220) {\n result.key = String.fromCharCode(28);\n }\n else if (ev.keyCode === 221) {\n result.key = String.fromCharCode(29);\n }\n }\n else if (!this.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) {\n if (ev.keyCode >= 65 && ev.keyCode <= 90) {\n result.key = EscapeSequences_1.C0.ESC + String.fromCharCode(ev.keyCode + 32);\n }\n else if (ev.keyCode === 192) {\n result.key = EscapeSequences_1.C0.ESC + '`';\n }\n else if (ev.keyCode >= 48 && ev.keyCode <= 57) {\n result.key = EscapeSequences_1.C0.ESC + (ev.keyCode - 48);\n }\n }\n else if (this.browser.isMac && !ev.altKey && !ev.ctrlKey && ev.metaKey) {\n if (ev.keyCode === 65) {\n this.selectAll();\n }\n }\n break;\n }\n return result;\n};\nTerminal.prototype.setgLevel = function (g) {\n this.glevel = g;\n this.charset = this.charsets[g];\n};\nTerminal.prototype.setgCharset = function (g, charset) {\n this.charsets[g] = charset;\n if (this.glevel === g) {\n this.charset = charset;\n }\n};\nTerminal.prototype.keyPress = function (ev) {\n var key;\n if (this.customKeyEventHandler && this.customKeyEventHandler(ev) === false) {\n return false;\n }\n this.cancel(ev);\n if (ev.charCode) {\n key = ev.charCode;\n }\n else if (ev.which == null) {\n key = ev.keyCode;\n }\n else if (ev.which !== 0 && ev.charCode !== 0) {\n key = ev.which;\n }\n else {\n return false;\n }\n if (!key || ((ev.altKey || ev.ctrlKey || ev.metaKey) && !isThirdLevelShift(this, ev))) {\n return false;\n }\n key = String.fromCharCode(key);\n this.emit('keypress', key, ev);\n this.emit('key', key, ev);\n this.showCursor();\n this.handler(key);\n return true;\n};\nTerminal.prototype.send = function (data) {\n var self = this;\n if (!this.queue) {\n setTimeout(function () {\n self.handler(self.queue);\n self.queue = '';\n }, 1);\n }\n this.queue += data;\n};\nTerminal.prototype.bell = function () {\n if (!this.visualBell)\n return;\n var self = this;\n this.element.style.borderColor = 'white';\n setTimeout(function () {\n self.element.style.borderColor = '';\n }, 10);\n if (this.popOnBell)\n this.focus();\n};\nTerminal.prototype.log = function () {\n if (!this.debug)\n return;\n if (!this.context.console || !this.context.console.log)\n return;\n var args = Array.prototype.slice.call(arguments);\n this.context.console.log.apply(this.context.console, args);\n};\nTerminal.prototype.error = function () {\n if (!this.debug)\n return;\n if (!this.context.console || !this.context.console.error)\n return;\n var args = Array.prototype.slice.call(arguments);\n this.context.console.error.apply(this.context.console, args);\n};\nTerminal.prototype.resize = function (x, y) {\n if (isNaN(x) || isNaN(y)) {\n return;\n }\n if (y > this.getOption('scrollback')) {\n this.setOption('scrollback', y);\n }\n var line, el, i, j, ch, addToY;\n if (x === this.cols && y === this.rows) {\n return;\n }\n if (x < 1)\n x = 1;\n if (y < 1)\n y = 1;\n j = this.cols;\n if (j < x) {\n ch = [this.defAttr, ' ', 1];\n i = this.lines.length;\n while (i--) {\n while (this.lines.get(i).length < x) {\n this.lines.get(i).push(ch);\n }\n }\n }\n this.cols = x;\n this.setupStops(this.cols);\n j = this.rows;\n addToY = 0;\n if (j < y) {\n el = this.element;\n while (j++ < y) {\n if (this.lines.length < y + this.ybase) {\n if (this.ybase > 0 && this.lines.length <= this.ybase + this.y + addToY + 1) {\n this.ybase--;\n addToY++;\n if (this.ydisp > 0) {\n this.ydisp--;\n }\n }\n else {\n this.lines.push(this.blankLine());\n }\n }\n if (this.children.length < y) {\n this.insertRow();\n }\n }\n }\n else {\n while (j-- > y) {\n if (this.lines.length > y + this.ybase) {\n if (this.lines.length > this.ybase + this.y + 1) {\n this.lines.pop();\n }\n else {\n this.ybase++;\n this.ydisp++;\n }\n }\n if (this.children.length > y) {\n el = this.children.shift();\n if (!el)\n continue;\n el.parentNode.removeChild(el);\n }\n }\n }\n this.rows = y;\n if (this.y >= y) {\n this.y = y - 1;\n }\n if (addToY) {\n this.y += addToY;\n }\n if (this.x >= x) {\n this.x = x - 1;\n }\n this.scrollTop = 0;\n this.scrollBottom = y - 1;\n this.charMeasure.measure();\n this.refresh(0, this.rows - 1);\n this.normal = null;\n this.geometry = [this.cols, this.rows];\n this.emit('resize', { terminal: this, cols: x, rows: y });\n};\nTerminal.prototype.updateRange = function (y) {\n if (y < this.refreshStart)\n this.refreshStart = y;\n if (y > this.refreshEnd)\n this.refreshEnd = y;\n};\nTerminal.prototype.maxRange = function () {\n this.refreshStart = 0;\n this.refreshEnd = this.rows - 1;\n};\nTerminal.prototype.setupStops = function (i) {\n if (i != null) {\n if (!this.tabs[i]) {\n i = this.prevStop(i);\n }\n }\n else {\n this.tabs = {};\n i = 0;\n }\n for (; i < this.cols; i += this.getOption('tabStopWidth')) {\n this.tabs[i] = true;\n }\n};\nTerminal.prototype.prevStop = function (x) {\n if (x == null)\n x = this.x;\n while (!this.tabs[--x] && x > 0)\n ;\n return x >= this.cols\n ? this.cols - 1\n : x < 0 ? 0 : x;\n};\nTerminal.prototype.nextStop = function (x) {\n if (x == null)\n x = this.x;\n while (!this.tabs[++x] && x < this.cols)\n ;\n return x >= this.cols\n ? this.cols - 1\n : x < 0 ? 0 : x;\n};\nTerminal.prototype.eraseRight = function (x, y) {\n var line = this.lines.get(this.ybase + y);\n if (!line) {\n return;\n }\n var ch = [this.eraseAttr(), ' ', 1];\n for (; x < this.cols; x++) {\n line[x] = ch;\n }\n this.updateRange(y);\n};\nTerminal.prototype.eraseLeft = function (x, y) {\n var line = this.lines.get(this.ybase + y);\n if (!line) {\n return;\n }\n var ch = [this.eraseAttr(), ' ', 1];\n x++;\n while (x--) {\n line[x] = ch;\n }\n this.updateRange(y);\n};\nTerminal.prototype.clear = function () {\n if (this.ybase === 0 && this.y === 0) {\n return;\n }\n this.lines.set(0, this.lines.get(this.ybase + this.y));\n this.lines.length = 1;\n this.ydisp = 0;\n this.ybase = 0;\n this.y = 0;\n for (var i = 1; i < this.rows; i++) {\n this.lines.push(this.blankLine());\n }\n this.refresh(0, this.rows - 1);\n this.emit('scroll', this.ydisp);\n};\nTerminal.prototype.eraseLine = function (y) {\n this.eraseRight(0, y);\n};\nTerminal.prototype.blankLine = function (cur, isWrapped) {\n var attr = cur\n ? this.eraseAttr()\n : this.defAttr;\n var ch = [attr, ' ', 1], line = [], i = 0;\n if (isWrapped) {\n line.isWrapped = isWrapped;\n }\n for (; i < this.cols; i++) {\n line[i] = ch;\n }\n return line;\n};\nTerminal.prototype.ch = function (cur) {\n return cur\n ? [this.eraseAttr(), ' ', 1]\n : [this.defAttr, ' ', 1];\n};\nTerminal.prototype.is = function (term) {\n var name = this.termName;\n return (name + '').indexOf(term) === 0;\n};\nTerminal.prototype.handler = function (data) {\n if (this.options.disableStdin) {\n return;\n }\n if (this.ybase !== this.ydisp) {\n this.scrollToBottom();\n }\n this.emit('data', data);\n};\nTerminal.prototype.handleTitle = function (title) {\n this.emit('title', title);\n};\nTerminal.prototype.index = function () {\n this.y++;\n if (this.y > this.scrollBottom) {\n this.y--;\n this.scroll();\n }\n if (this.x >= this.cols) {\n this.x--;\n }\n};\nTerminal.prototype.reverseIndex = function () {\n var j;\n if (this.y === this.scrollTop) {\n this.lines.shiftElements(this.y + this.ybase, this.rows - 1, 1);\n this.lines.set(this.y + this.ybase, this.blankLine(true));\n this.updateRange(this.scrollTop);\n this.updateRange(this.scrollBottom);\n }\n else {\n this.y--;\n }\n};\nTerminal.prototype.reset = function () {\n this.options.rows = this.rows;\n this.options.cols = this.cols;\n var customKeyEventHandler = this.customKeyEventHandler;\n var cursorBlinkInterval = this.cursorBlinkInterval;\n Terminal.call(this, this.options);\n this.customKeyEventHandler = customKeyEventHandler;\n this.cursorBlinkInterval = cursorBlinkInterval;\n this.refresh(0, this.rows - 1);\n this.viewport.syncScrollArea();\n};\nTerminal.prototype.tabSet = function () {\n this.tabs[this.x] = true;\n};\nfunction on(el, type, handler, capture) {\n if (!Array.isArray(el)) {\n el = [el];\n }\n el.forEach(function (element) {\n element.addEventListener(type, handler, capture || false);\n });\n}\nfunction off(el, type, handler, capture) {\n el.removeEventListener(type, handler, capture || false);\n}\nfunction cancel(ev, force) {\n if (!this.cancelEvents && !force) {\n return;\n }\n ev.preventDefault();\n ev.stopPropagation();\n return false;\n}\nfunction inherits(child, parent) {\n function f() {\n this.constructor = child;\n }\n f.prototype = parent.prototype;\n child.prototype = new f;\n}\nfunction indexOf(obj, el) {\n var i = obj.length;\n while (i--) {\n if (obj[i] === el)\n return i;\n }\n return -1;\n}\nfunction isThirdLevelShift(term, ev) {\n var thirdLevelKey = (term.browser.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) ||\n (term.browser.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);\n if (ev.type == 'keypress') {\n return thirdLevelKey;\n }\n return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47);\n}\nTerminal.prototype.matchColor = matchColor;\nfunction matchColor(r1, g1, b1) {\n var hash = (r1 << 16) | (g1 << 8) | b1;\n if (matchColor._cache[hash] != null) {\n return matchColor._cache[hash];\n }\n var ldiff = Infinity, li = -1, i = 0, c, r2, g2, b2, diff;\n for (; i < Terminal.vcolors.length; i++) {\n c = Terminal.vcolors[i];\n r2 = c[0];\n g2 = c[1];\n b2 = c[2];\n diff = matchColor.distance(r1, g1, b1, r2, g2, b2);\n if (diff === 0) {\n li = i;\n break;\n }\n if (diff < ldiff) {\n ldiff = diff;\n li = i;\n }\n }\n return matchColor._cache[hash] = li;\n}\nmatchColor._cache = {};\nmatchColor.distance = function (r1, g1, b1, r2, g2, b2) {\n return Math.pow(30 * (r1 - r2), 2)\n + Math.pow(59 * (g1 - g2), 2)\n + Math.pow(11 * (b1 - b2), 2);\n};\nfunction each(obj, iter, con) {\n if (obj.forEach)\n return obj.forEach(iter, con);\n for (var i = 0; i < obj.length; i++) {\n iter.call(con, obj[i], i, obj);\n }\n}\nfunction wasMondifierKeyOnlyEvent(ev) {\n return ev.keyCode === 16 ||\n ev.keyCode === 17 ||\n ev.keyCode === 18;\n}\nfunction keys(obj) {\n if (Object.keys)\n return Object.keys(obj);\n var key, keys = [];\n for (key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n keys.push(key);\n }\n }\n return keys;\n}\nTerminal.EventEmitter = EventEmitter_1.EventEmitter;\nTerminal.inherits = inherits;\nTerminal.on = on;\nTerminal.off = off;\nTerminal.cancel = cancel;\nmodule.exports = Terminal;\n\n//# sourceMappingURL=xterm.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/xterm.js\n// module id = 0\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\n;\nvar EventEmitter = (function () {\n function EventEmitter() {\n this._events = this._events || {};\n }\n EventEmitter.prototype.on = function (type, listener) {\n this._events[type] = this._events[type] || [];\n this._events[type].push(listener);\n };\n EventEmitter.prototype.off = function (type, listener) {\n if (!this._events[type]) {\n return;\n }\n var obj = this._events[type];\n var i = obj.length;\n while (i--) {\n if (obj[i] === listener || obj[i].listener === listener) {\n obj.splice(i, 1);\n return;\n }\n }\n };\n EventEmitter.prototype.removeAllListeners = function (type) {\n if (this._events[type]) {\n delete this._events[type];\n }\n };\n EventEmitter.prototype.once = function (type, listener) {\n function on() {\n var args = Array.prototype.slice.call(arguments);\n this.off(type, on);\n return listener.apply(this, args);\n }\n on.listener = listener;\n return this.on(type, on);\n };\n EventEmitter.prototype.emit = function (type) {\n var args = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n args[_i - 1] = arguments[_i];\n }\n if (!this._events[type]) {\n return;\n }\n var obj = this._events[type];\n for (var i = 0; i < obj.length; i++) {\n obj[i].apply(this, args);\n }\n };\n EventEmitter.prototype.listeners = function (type) {\n return this._events[type] || [];\n };\n return EventEmitter;\n}());\nexports.EventEmitter = EventEmitter;\n\n//# sourceMappingURL=EventEmitter.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/EventEmitter.js\n// module id = 1\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar C0;\n(function (C0) {\n C0.NUL = '\\x00';\n C0.SOH = '\\x01';\n C0.STX = '\\x02';\n C0.ETX = '\\x03';\n C0.EOT = '\\x04';\n C0.ENQ = '\\x05';\n C0.ACK = '\\x06';\n C0.BEL = '\\x07';\n C0.BS = '\\x08';\n C0.HT = '\\x09';\n C0.LF = '\\x0a';\n C0.VT = '\\x0b';\n C0.FF = '\\x0c';\n C0.CR = '\\x0d';\n C0.SO = '\\x0e';\n C0.SI = '\\x0f';\n C0.DLE = '\\x10';\n C0.DC1 = '\\x11';\n C0.DC2 = '\\x12';\n C0.DC3 = '\\x13';\n C0.DC4 = '\\x14';\n C0.NAK = '\\x15';\n C0.SYN = '\\x16';\n C0.ETB = '\\x17';\n C0.CAN = '\\x18';\n C0.EM = '\\x19';\n C0.SUB = '\\x1a';\n C0.ESC = '\\x1b';\n C0.FS = '\\x1c';\n C0.GS = '\\x1d';\n C0.RS = '\\x1e';\n C0.US = '\\x1f';\n C0.SP = '\\x20';\n C0.DEL = '\\x7f';\n})(C0 = exports.C0 || (exports.C0 = {}));\n;\n\n//# sourceMappingURL=EscapeSequences.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/EscapeSequences.js\n// module id = 2\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.CHARSETS = {};\nexports.DEFAULT_CHARSET = exports.CHARSETS['B'];\nexports.CHARSETS['0'] = {\n '`': '\\u25c6',\n 'a': '\\u2592',\n 'b': '\\u0009',\n 'c': '\\u000c',\n 'd': '\\u000d',\n 'e': '\\u000a',\n 'f': '\\u00b0',\n 'g': '\\u00b1',\n 'h': '\\u2424',\n 'i': '\\u000b',\n 'j': '\\u2518',\n 'k': '\\u2510',\n 'l': '\\u250c',\n 'm': '\\u2514',\n 'n': '\\u253c',\n 'o': '\\u23ba',\n 'p': '\\u23bb',\n 'q': '\\u2500',\n 'r': '\\u23bc',\n 's': '\\u23bd',\n 't': '\\u251c',\n 'u': '\\u2524',\n 'v': '\\u2534',\n 'w': '\\u252c',\n 'x': '\\u2502',\n 'y': '\\u2264',\n 'z': '\\u2265',\n '{': '\\u03c0',\n '|': '\\u2260',\n '}': '\\u00a3',\n '~': '\\u00b7'\n};\nexports.CHARSETS['A'] = {\n '#': '£'\n};\nexports.CHARSETS['B'] = null;\nexports.CHARSETS['4'] = {\n '#': '£',\n '@': '¾',\n '[': 'ij',\n '\\\\': '½',\n ']': '|',\n '{': '¨',\n '|': 'f',\n '}': '¼',\n '~': '´'\n};\nexports.CHARSETS['C'] =\n exports.CHARSETS['5'] = {\n '[': 'Ä',\n '\\\\': 'Ö',\n ']': 'Å',\n '^': 'Ü',\n '`': 'é',\n '{': 'ä',\n '|': 'ö',\n '}': 'å',\n '~': 'ü'\n };\nexports.CHARSETS['R'] = {\n '#': '£',\n '@': 'à',\n '[': '°',\n '\\\\': 'ç',\n ']': '§',\n '{': 'é',\n '|': 'ù',\n '}': 'è',\n '~': '¨'\n};\nexports.CHARSETS['Q'] = {\n '@': 'à',\n '[': 'â',\n '\\\\': 'ç',\n ']': 'ê',\n '^': 'î',\n '`': 'ô',\n '{': 'é',\n '|': 'ù',\n '}': 'è',\n '~': 'û'\n};\nexports.CHARSETS['K'] = {\n '@': '§',\n '[': 'Ä',\n '\\\\': 'Ö',\n ']': 'Ü',\n '{': 'ä',\n '|': 'ö',\n '}': 'ü',\n '~': 'ß'\n};\nexports.CHARSETS['Y'] = {\n '#': '£',\n '@': '§',\n '[': '°',\n '\\\\': 'ç',\n ']': 'é',\n '`': 'ù',\n '{': 'à',\n '|': 'ò',\n '}': 'è',\n '~': 'ì'\n};\nexports.CHARSETS['E'] =\n exports.CHARSETS['6'] = {\n '@': 'Ä',\n '[': 'Æ',\n '\\\\': 'Ø',\n ']': 'Å',\n '^': 'Ü',\n '`': 'ä',\n '{': 'æ',\n '|': 'ø',\n '}': 'å',\n '~': 'ü'\n };\nexports.CHARSETS['Z'] = {\n '#': '£',\n '@': '§',\n '[': '¡',\n '\\\\': 'Ñ',\n ']': '¿',\n '{': '°',\n '|': 'ñ',\n '}': 'ç'\n};\nexports.CHARSETS['H'] =\n exports.CHARSETS['7'] = {\n '@': 'É',\n '[': 'Ä',\n '\\\\': 'Ö',\n ']': 'Å',\n '^': 'Ü',\n '`': 'é',\n '{': 'ä',\n '|': 'ö',\n '}': 'å',\n '~': 'ü'\n };\nexports.CHARSETS['='] = {\n '#': 'ù',\n '@': 'à',\n '[': 'é',\n '\\\\': 'ç',\n ']': 'ê',\n '^': 'î',\n '_': 'è',\n '`': 'ô',\n '{': 'ä',\n '|': 'ö',\n '}': 'ü',\n '~': 'û'\n};\n\n//# sourceMappingURL=Charsets.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/Charsets.js\n// module id = 3\n// module chunks = 0","/**\n * Implements the attach method, that attaches the terminal to a WebSocket stream.\n * @module xterm/addons/attach/attach\n * @license MIT\n */\n\n(function (attach) {\n if (typeof exports === 'object' && typeof module === 'object') {\n /*\n * CommonJS environment\n */\n module.exports = attach(require('../../xterm'));\n } else if (typeof define == 'function') {\n /*\n * Require.js is available\n */\n define(['../../xterm'], attach);\n } else {\n /*\n * Plain browser environment\n */\n attach(window.Terminal);\n }\n})(function (Xterm) {\n 'use strict';\n\n var exports = {};\n\n /**\n * Attaches the given terminal to the given socket.\n *\n * @param {Xterm} term - The terminal to be attached to the given socket.\n * @param {WebSocket} socket - The socket to attach the current terminal.\n * @param {boolean} bidirectional - Whether the terminal should send data\n * to the socket as well.\n * @param {boolean} buffered - Whether the rendering of incoming data\n * should happen instantly or at a maximum\n * frequency of 1 rendering per 10ms.\n */\n exports.attach = function (term, socket, bidirectional, buffered) {\n bidirectional = (typeof bidirectional == 'undefined') ? true : bidirectional;\n term.socket = socket;\n\n term._flushBuffer = function () {\n term.write(term._attachSocketBuffer);\n term._attachSocketBuffer = null;\n clearTimeout(term._attachSocketBufferTimer);\n term._attachSocketBufferTimer = null;\n };\n\n term._pushToBuffer = function (data) {\n if (term._attachSocketBuffer) {\n term._attachSocketBuffer += data;\n } else {\n term._attachSocketBuffer = data;\n setTimeout(term._flushBuffer, 10);\n }\n };\n\n term._getMessage = function (ev) {\n if (buffered) {\n term._pushToBuffer(ev.data);\n } else {\n term.write(ev.data);\n }\n };\n\n term._sendData = function (data) {\n socket.send(data);\n };\n\n socket.addEventListener('message', term._getMessage);\n\n if (bidirectional) {\n term.on('data', term._sendData);\n }\n\n socket.addEventListener('close', term.detach.bind(term, socket));\n socket.addEventListener('error', term.detach.bind(term, socket));\n };\n\n /**\n * Detaches the given terminal from the given socket\n *\n * @param {Xterm} term - The terminal to be detached from the given socket.\n * @param {WebSocket} socket - The socket from which to detach the current\n * terminal.\n */\n exports.detach = function (term, socket) {\n term.off('data', term._sendData);\n\n socket = (typeof socket == 'undefined') ? term.socket : socket;\n\n if (socket) {\n socket.removeEventListener('message', term._getMessage);\n }\n\n delete term.socket;\n };\n\n /**\n * Attaches the current terminal to the given socket\n *\n * @param {WebSocket} socket - The socket to attach the current terminal.\n * @param {boolean} bidirectional - Whether the terminal should send data\n * to the socket as well.\n * @param {boolean} buffered - Whether the rendering of incoming data\n * should happen instantly or at a maximum\n * frequency of 1 rendering per 10ms.\n */\n Xterm.prototype.attach = function (socket, bidirectional, buffered) {\n return exports.attach(this, socket, bidirectional, buffered);\n };\n\n /**\n * Detaches the current terminal from the given socket.\n *\n * @param {WebSocket} socket - The socket from which to detach the current\n * terminal.\n */\n Xterm.prototype.detach = function (socket) {\n return exports.detach(this, socket);\n };\n\n return exports;\n});\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/attach/attach.js\n// module id = 4\n// module chunks = 0","/**\n * Fit terminal columns and rows to the dimensions of its DOM element.\n *\n * ## Approach\n * - Rows: Truncate the division of the terminal parent element height by the terminal row height.\n *\n * - Columns: Truncate the division of the terminal parent element width by the terminal character\n * width (apply display: inline at the terminal row and truncate its width with the current\n * number of columns).\n * @module xterm/addons/fit/fit\n * @license MIT\n */\n\n(function (fit) {\n if (typeof exports === 'object' && typeof module === 'object') {\n /*\n * CommonJS environment\n */\n module.exports = fit(require('../../xterm'));\n } else if (typeof define == 'function') {\n /*\n * Require.js is available\n */\n define(['../../xterm'], fit);\n } else {\n /*\n * Plain browser environment\n */\n fit(window.Terminal);\n }\n})(function (Xterm) {\n var exports = {};\n\n exports.proposeGeometry = function (term) {\n if (!term.element.parentElement) {\n return null;\n }\n var parentElementStyle = window.getComputedStyle(term.element.parentElement),\n parentElementHeight = parseInt(parentElementStyle.getPropertyValue('height')),\n parentElementWidth = Math.max(0, parseInt(parentElementStyle.getPropertyValue('width')) - 17),\n elementStyle = window.getComputedStyle(term.element),\n elementPaddingVer = parseInt(elementStyle.getPropertyValue('padding-top')) + parseInt(elementStyle.getPropertyValue('padding-bottom')),\n elementPaddingHor = parseInt(elementStyle.getPropertyValue('padding-right')) + parseInt(elementStyle.getPropertyValue('padding-left')),\n availableHeight = parentElementHeight - elementPaddingVer,\n availableWidth = parentElementWidth - elementPaddingHor,\n container = term.rowContainer,\n subjectRow = term.rowContainer.firstElementChild,\n contentBuffer = subjectRow.innerHTML,\n characterHeight,\n rows,\n characterWidth,\n cols,\n geometry;\n\n subjectRow.style.display = 'inline';\n subjectRow.innerHTML = 'W'; // Common character for measuring width, although on monospace\n characterWidth = subjectRow.getBoundingClientRect().width;\n subjectRow.style.display = ''; // Revert style before calculating height, since they differ.\n characterHeight = subjectRow.getBoundingClientRect().height;\n subjectRow.innerHTML = contentBuffer;\n\n rows = parseInt(availableHeight / characterHeight);\n cols = parseInt(availableWidth / characterWidth);\n\n geometry = {cols: cols, rows: rows};\n return geometry;\n };\n\n exports.fit = function (term) {\n var geometry = exports.proposeGeometry(term);\n\n if (geometry) {\n term.resize(geometry.cols, geometry.rows);\n }\n };\n\n Xterm.prototype.proposeGeometry = function () {\n return exports.proposeGeometry(this);\n };\n\n Xterm.prototype.fit = function () {\n return exports.fit(this);\n };\n\n return exports;\n});\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/fit/fit.js\n// module id = 5\n// module chunks = 0","/**\n * Fullscreen addon for xterm.js\n * @module xterm/addons/fullscreen/fullscreen\n * @license MIT\n */\n(function (fullscreen) {\n if (typeof exports === 'object' && typeof module === 'object') {\n /*\n * CommonJS environment\n */\n module.exports = fullscreen(require('../../xterm'));\n } else if (typeof define == 'function') {\n /*\n * Require.js is available\n */\n define(['../../xterm'], fullscreen);\n } else {\n /*\n * Plain browser environment\n */\n fullscreen(window.Terminal);\n }\n})(function (Xterm) {\n var exports = {};\n\n /**\n * Toggle the given terminal's fullscreen mode.\n * @param {Xterm} term - The terminal to toggle full screen mode\n * @param {boolean} fullscreen - Toggle fullscreen on (true) or off (false)\n */\n exports.toggleFullScreen = function (term, fullscreen) {\n var fn;\n\n if (typeof fullscreen == 'undefined') {\n fn = (term.element.classList.contains('fullscreen')) ? 'remove' : 'add';\n } else if (!fullscreen) {\n fn = 'remove';\n } else {\n fn = 'add';\n }\n\n term.element.classList[fn]('fullscreen');\n };\n\n Xterm.prototype.toggleFullscreen = function (fullscreen) {\n exports.toggleFullScreen(this, fullscreen);\n };\n\n return exports;\n});\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/fullscreen/fullscreen.js\n// module id = 6\n// module chunks = 0","/**\n * This module provides methods for attaching a terminal to a terminado WebSocket stream.\n *\n * @module xterm/addons/terminado/terminado\n * @license MIT\n */\n\n(function (attach) {\n if (typeof exports === 'object' && typeof module === 'object') {\n /*\n * CommonJS environment\n */\n module.exports = attach(require('../../xterm'));\n } else if (typeof define == 'function') {\n /*\n * Require.js is available\n */\n define(['../../xterm'], attach);\n } else {\n /*\n * Plain browser environment\n */\n attach(window.Terminal);\n }\n})(function (Xterm) {\n 'use strict';\n\n var exports = {};\n\n /**\n * Attaches the given terminal to the given socket.\n *\n * @param {Xterm} term - The terminal to be attached to the given socket.\n * @param {WebSocket} socket - The socket to attach the current terminal.\n * @param {boolean} bidirectional - Whether the terminal should send data\n * to the socket as well.\n * @param {boolean} buffered - Whether the rendering of incoming data\n * should happen instantly or at a maximum\n * frequency of 1 rendering per 10ms.\n */\n exports.terminadoAttach = function (term, socket, bidirectional, buffered) {\n bidirectional = (typeof bidirectional == 'undefined') ? true : bidirectional;\n term.socket = socket;\n\n term._flushBuffer = function () {\n term.write(term._attachSocketBuffer);\n term._attachSocketBuffer = null;\n clearTimeout(term._attachSocketBufferTimer);\n term._attachSocketBufferTimer = null;\n };\n\n term._pushToBuffer = function (data) {\n if (term._attachSocketBuffer) {\n term._attachSocketBuffer += data;\n } else {\n term._attachSocketBuffer = data;\n setTimeout(term._flushBuffer, 10);\n }\n };\n\n term._getMessage = function (ev) {\n var data = JSON.parse(ev.data)\n if( data[0] == \"stdout\" ) {\n if (buffered) {\n term._pushToBuffer(data[1]);\n } else {\n term.write(data[1]);\n }\n }\n };\n\n term._sendData = function (data) {\n socket.send(JSON.stringify(['stdin', data]));\n };\n\n term._setSize = function (size) {\n socket.send(JSON.stringify(['set_size', size.rows, size.cols]));\n };\n\n socket.addEventListener('message', term._getMessage);\n\n if (bidirectional) {\n term.on('data', term._sendData);\n }\n term.on('resize', term._setSize);\n\n socket.addEventListener('close', term.terminadoDetach.bind(term, socket));\n socket.addEventListener('error', term.terminadoDetach.bind(term, socket));\n };\n\n /**\n * Detaches the given terminal from the given socket\n *\n * @param {Xterm} term - The terminal to be detached from the given socket.\n * @param {WebSocket} socket - The socket from which to detach the current\n * terminal.\n */\n exports.terminadoDetach = function (term, socket) {\n term.off('data', term._sendData);\n\n socket = (typeof socket == 'undefined') ? term.socket : socket;\n\n if (socket) {\n socket.removeEventListener('message', term._getMessage);\n }\n\n delete term.socket;\n };\n\n /**\n * Attaches the current terminal to the given socket\n *\n * @param {WebSocket} socket - The socket to attach the current terminal.\n * @param {boolean} bidirectional - Whether the terminal should send data\n * to the socket as well.\n * @param {boolean} buffered - Whether the rendering of incoming data\n * should happen instantly or at a maximum\n * frequency of 1 rendering per 10ms.\n */\n Xterm.prototype.terminadoAttach = function (socket, bidirectional, buffered) {\n return exports.terminadoAttach(this, socket, bidirectional, buffered);\n };\n\n /**\n * Detaches the current terminal from the given socket.\n *\n * @param {WebSocket} socket - The socket from which to detach the current\n * terminal.\n */\n Xterm.prototype.terminadoDetach = function (socket) {\n return exports.terminadoDetach(this, socket);\n };\n\n return exports;\n});\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/terminado/terminado.js\n// module id = 7\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar Generic_1 = require(\"./Generic\");\nvar isNode = (typeof navigator === 'undefined') ? true : false;\nvar userAgent = (isNode) ? 'node' : navigator.userAgent;\nvar platform = (isNode) ? 'node' : navigator.platform;\nexports.isFirefox = !!~userAgent.indexOf('Firefox');\nexports.isMSIE = !!~userAgent.indexOf('MSIE') || !!~userAgent.indexOf('Trident');\nexports.isMac = Generic_1.contains(['Macintosh', 'MacIntel', 'MacPPC', 'Mac68K'], platform);\nexports.isIpad = platform === 'iPad';\nexports.isIphone = platform === 'iPhone';\nexports.isMSWindows = Generic_1.contains(['Windows', 'Win16', 'Win32', 'WinCE'], platform);\nexports.isLinux = platform.indexOf('Linux') >= 0;\n\n//# sourceMappingURL=Browser.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/Browser.js\n// module id = 8\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nfunction getCoordsRelativeToElement(event, element) {\n if (event.pageX == null) {\n return null;\n }\n var x = event.pageX;\n var y = event.pageY;\n while (element && element !== self.document.documentElement) {\n x -= element.offsetLeft;\n y -= element.offsetTop;\n element = 'offsetParent' in element ? element.offsetParent : element.parentElement;\n }\n return [x, y];\n}\nexports.getCoordsRelativeToElement = getCoordsRelativeToElement;\nfunction getCoords(event, rowContainer, charMeasure, colCount, rowCount, isSelection) {\n var coords = getCoordsRelativeToElement(event, rowContainer);\n coords[0] = Math.ceil((coords[0] + (isSelection ? charMeasure.width / 2 : 0)) / charMeasure.width);\n coords[1] = Math.ceil(coords[1] / charMeasure.height);\n coords[0] = Math.min(Math.max(coords[0], 1), colCount + 1);\n coords[1] = Math.min(Math.max(coords[1], 1), rowCount + 1);\n return coords;\n}\nexports.getCoords = getCoords;\nfunction getRawByteCoords(event, rowContainer, charMeasure, colCount, rowCount) {\n var coords = getCoords(event, rowContainer, charMeasure, colCount, rowCount);\n var x = coords[0];\n var y = coords[1];\n x += 32;\n y += 32;\n return { x: x, y: y };\n}\nexports.getRawByteCoords = getRawByteCoords;\n\n//# sourceMappingURL=Mouse.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/Mouse.js\n// module id = 9\n// module chunks = 0","import * as bare from \"libapps\";\n\nexport class Hterm {\n elem: HTMLElement;\n\n term: bare.hterm.Terminal;\n io: bare.hterm.IO;\n\n columns: number;\n rows: number;\n\n // to \"show\" the current message when removeMessage() is called\n message: string;\n\n constructor(elem: HTMLElement) {\n this.elem = elem;\n bare.hterm.defaultStorage = new bare.lib.Storage.Memory();\n this.term = new bare.hterm.Terminal();\n this.term.getPrefs().set(\"send-encoding\", \"raw\");\n this.term.decorate(this.elem);\n\n this.io = this.term.io.push();\n this.term.installKeyboard();\n };\n\n info(): { columns: number, rows: number } {\n return { columns: this.columns, rows: this.rows };\n };\n\n output(data: string) {\n if (this.term.io != null) {\n this.term.io.writeUTF16(data);\n }\n };\n\n showMessage(message: string, timeout: number) {\n this.message = message;\n if (timeout > 0) {\n this.term.io.showOverlay(message, timeout);\n } else {\n this.term.io.showOverlay(message, null);\n }\n };\n\n removeMessage(): void {\n // there is no hideOverlay(), so show the same message with 0 sec\n this.term.io.showOverlay(this.message, 0);\n }\n\n setWindowTitle(title: string) {\n this.term.setWindowTitle(title);\n };\n\n setPreferences(value: object) {\n Object.keys(value).forEach((key) => {\n this.term.getPrefs().set(key, value[key]);\n });\n };\n\n onInput(callback: (input: string) => void) {\n this.io.onVTKeystroke = (data) => {\n callback(data);\n };\n this.io.sendString = (data) => {\n callback(data);\n };\n };\n\n onResize(callback: (colmuns: number, rows: number) => void) {\n this.io.onTerminalResize = (columns: number, rows: number) => {\n this.columns = columns;\n this.rows = rows;\n callback(columns, rows);\n };\n };\n\n deactivate(): void {\n this.io.onVTKeystroke = null;\n this.io.sendString = null\n this.io.onTerminalResize = null;\n this.term.uninstallKeyboard();\n }\n\n reset(): void {\n this.removeMessage();\n this.term.installKeyboard();\n }\n\n close(): void {\n this.term.uninstallKeyboard();\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/hterm.ts","export class ConnectionFactory {\n url: string;\n protocols: string[];\n\n constructor(url: string, protocols: string[]) {\n this.url = url;\n this.protocols = protocols;\n };\n\n create(): Connection {\n return new Connection(this.url, this.protocols);\n };\n}\n\nexport class Connection {\n bare: WebSocket;\n\n\n constructor(url: string, protocols: string[]) {\n this.bare = new WebSocket(url, protocols);\n }\n\n open() {\n // nothing todo for websocket\n };\n\n close() {\n this.bare.close();\n };\n\n send(data: string) {\n this.bare.send(data);\n };\n\n isOpen(): boolean {\n if (this.bare.readyState == WebSocket.CONNECTING ||\n this.bare.readyState == WebSocket.OPEN) {\n return true\n }\n return false\n }\n\n onOpen(callback: () => void) {\n this.bare.onopen = (event) => {\n callback();\n }\n };\n\n onReceive(callback: (data: string) => void) {\n this.bare.onmessage = (event) => {\n callback(event.data);\n }\n };\n\n onClose(callback: () => void) {\n this.bare.onclose = (event) => {\n callback();\n };\n };\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/websocket.ts","export const protocols = [\"webtty\"];\n\nexport const msgInputUnknown = '0';\nexport const msgInput = '1';\nexport const msgPing = '2';\nexport const msgResizeTerminal = '3';\n\nexport const msgUnknownOutput = '0';\nexport const msgOutput = '1';\nexport const msgPong = '2';\nexport const msgSetWindowTitle = '3';\nexport const msgSetPreferences = '4';\nexport const msgSetReconnect = '5';\n\n\nexport interface Terminal {\n info(): { columns: number, rows: number };\n output(data: string): void;\n showMessage(message: string, timeout: number): void;\n removeMessage(): void;\n setWindowTitle(title: string): void;\n setPreferences(value: object): void;\n onInput(callback: (input: string) => void): void;\n onResize(callback: (colmuns: number, rows: number) => void): void;\n reset(): void;\n deactivate(): void;\n close(): void;\n}\n\nexport interface Connection {\n open(): void;\n close(): void;\n send(data: string): void;\n isOpen(): boolean;\n onOpen(callback: () => void): void;\n onReceive(callback: (data: string) => void): void;\n onClose(callback: () => void): void;\n}\n\nexport interface ConnectionFactory {\n create(): Connection;\n}\n\n\nexport class WebTTY {\n term: Terminal;\n connectionFactory: ConnectionFactory;\n args: string;\n authToken: string;\n reconnect: number;\n\n constructor(term: Terminal, connectionFactory: ConnectionFactory, args: string, authToken: string) {\n this.term = term;\n this.connectionFactory = connectionFactory;\n this.args = args;\n this.authToken = authToken;\n this.reconnect = -1;\n };\n\n open() {\n let connection = this.connectionFactory.create();\n let pingTimer: number;\n let reconnectTimeout: number;\n\n const setup = () => {\n connection.onOpen(() => {\n const termInfo = this.term.info();\n\n connection.send(JSON.stringify(\n {\n Arguments: this.args,\n AuthToken: this.authToken,\n }\n ));\n\n\n const resizeHandler = (colmuns: number, rows: number) => {\n connection.send(\n msgResizeTerminal + JSON.stringify(\n {\n columns: colmuns,\n rows: rows\n }\n )\n );\n };\n\n this.term.onResize(resizeHandler);\n resizeHandler(termInfo.columns, termInfo.rows);\n\n this.term.onInput(\n (input: string) => {\n connection.send(msgInput + input);\n }\n );\n\n pingTimer = setInterval(() => {\n connection.send(msgPing)\n }, 30 * 1000);\n\n });\n\n connection.onReceive((data) => {\n const payload = data.slice(1);\n switch (data[0]) {\n case msgOutput:\n this.term.output(\n decodeURIComponent(Array.prototype.map.call(atob(payload), function(c) {\n return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);\n }).join(''))\n );\n break;\n case msgPong:\n break;\n case msgSetWindowTitle:\n this.term.setWindowTitle(payload);\n break;\n case msgSetPreferences:\n const preferences = JSON.parse(payload);\n this.term.setPreferences(preferences);\n break;\n case msgSetReconnect:\n const autoReconnect = JSON.parse(payload);\n console.log(\"Enabling reconnect: \" + autoReconnect + \" seconds\")\n this.reconnect = autoReconnect;\n break;\n }\n });\n\n connection.onClose(() => {\n clearInterval(pingTimer);\n this.term.deactivate();\n this.term.showMessage(\"Connection Closed\", 0);\n if (this.reconnect > 0) {\n reconnectTimeout = setTimeout(() => {\n connection = this.connectionFactory.create();\n this.term.reset();\n setup();\n }, this.reconnect * 1000);\n }\n });\n\n connection.open();\n }\n\n setup();\n return () => {\n clearTimeout(reconnectTimeout);\n connection.close();\n }\n };\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/webtty.ts","import * as bare from \"xterm\";\n\nbare.loadAddon(\"fit\");\n\nexport class Xterm {\n elem: HTMLElement;\n\n message: HTMLElement;\n messageTimeout: number;\n messageTimer: number;\n\n term: bare;\n resizeListener: () => void;\n\n constructor(elem: HTMLElement) {\n this.elem = elem;\n this.term = new bare();\n\n this.message = elem.ownerDocument.createElement(\"div\");\n this.message.className = \"xterm-overlay\";\n this.messageTimeout = 2000;\n\n\n this.resizeListener = () => {\n this.term.fit();\n this.term.scrollToBottom();\n this.showMessage(String(this.term.cols) + \"x\" + String(this.term.rows), this.messageTimeout);\n };\n\n this.term.on(\"open\", () => {\n this.resizeListener();\n window.addEventListener(\"resize\", () => { this.resizeListener(); });\n });\n\n this.term.open(elem, true);\n };\n\n info(): { columns: number, rows: number } {\n return { columns: this.term.cols, rows: this.term.rows };\n };\n\n output(data: string) {\n this.term.write(data);\n };\n\n showMessage(message: string, timeout: number) {\n this.message.textContent = message;\n this.elem.appendChild(this.message);\n\n if (this.messageTimer) {\n clearTimeout(this.messageTimer);\n }\n if (timeout > 0) {\n this.messageTimer = setTimeout(() => {\n this.elem.removeChild(this.message);\n }, timeout);\n }\n };\n\n removeMessage(): void {\n if (this.message.parentNode == this.elem) {\n this.elem.removeChild(this.message);\n }\n }\n\n setWindowTitle(title: string) {\n document.title = title;\n };\n\n setPreferences(value: object) {\n };\n\n onInput(callback: (input: string) => void) {\n this.term.on(\"data\", (data) => {\n callback(data);\n });\n\n };\n\n onResize(callback: (colmuns: number, rows: number) => void) {\n this.term.on(\"resize\", (data) => {\n callback(data.cols, data.rows);\n });\n };\n\n deactivate(): void {\n this.term.off(\"data\");\n this.term.off(\"resize\");\n this.term.blur();\n }\n\n reset(): void {\n this.removeMessage();\n this.term.clear();\n }\n\n close(): void {\n window.removeEventListener(\"resize\", this.resizeListener);\n this.term.destroy();\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/xterm.ts","// This file was generated by libdot/bin/concat.sh.\n// It has been marked read-only for your safety. Rather\n// than edit it directly, please modify one of these source\n// files...\n//\n// libdot/js/lib.js\n// libdot/js/lib_polyfill.js\n// libdot/js/lib_colors.js\n// libdot/js/lib_f.js\n// libdot/js/lib_message_manager.js\n// libdot/js/lib_preference_manager.js\n// libdot/js/lib_resource.js\n// libdot/js/lib_storage.js\n// libdot/js/lib_storage_chrome.js\n// libdot/js/lib_storage_local.js\n// libdot/js/lib_storage_memory.js\n// libdot/js/lib_test_manager.js\n// libdot/js/lib_utf8.js\n// libdot/third_party/wcwidth/lib_wc.js\n// hterm/js/hterm.js\n// hterm/js/hterm_frame.js\n// hterm/js/hterm_keyboard.js\n// hterm/js/hterm_keyboard_bindings.js\n// hterm/js/hterm_keyboard_keymap.js\n// hterm/js/hterm_keyboard_keypattern.js\n// hterm/js/hterm_options.js\n// hterm/js/hterm_parser.js\n// hterm/js/hterm_parser_identifiers.js\n// hterm/js/hterm_preference_manager.js\n// hterm/js/hterm_pubsub.js\n// hterm/js/hterm_screen.js\n// hterm/js/hterm_scrollport.js\n// hterm/js/hterm_terminal.js\n// hterm/js/hterm_terminal_io.js\n// hterm/js/hterm_text_attributes.js\n// hterm/js/hterm_vt.js\n// hterm/js/hterm_vt_character_map.js\n// hterm/js/hterm_export.js\n//\n\n// SOURCE FILE: libdot/js/lib.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nif (typeof lib != 'undefined')\n throw new Error('Global \"lib\" object already exists.');\n\nvar lib = {};\n\n/**\n * Map of \"dependency\" to [\"source\", ...].\n *\n * Each dependency is a object name, like \"lib.fs\", \"source\" is the url that\n * depends on the object.\n */\nlib.runtimeDependencies_ = {};\n\n/**\n * List of functions that need to be invoked during library initialization.\n *\n * Each element in the initCallbacks_ array is itself a two-element array.\n * Element 0 is a short string describing the owner of the init routine, useful\n * for debugging. Element 1 is the callback function.\n */\nlib.initCallbacks_ = [];\n\n/**\n * Records a runtime dependency.\n *\n * This can be useful when you want to express a run-time dependency at\n * compile time. It is not intended to be a full-fledged library system or\n * dependency tracker. It's just there to make it possible to debug the\n * deps without running all the code.\n *\n * Object names are specified as strings. For example...\n *\n * lib.rtdep('lib.colors', 'lib.PreferenceManager');\n *\n * Object names need not be rooted by 'lib'. You may use this to declare a\n * dependency on any object.\n *\n * The client program may call lib.ensureRuntimeDependencies() at startup in\n * order to ensure that all runtime dependencies have been met.\n *\n * @param {string} var_args One or more objects specified as strings.\n */\nlib.rtdep = function(var_args) {\n var source;\n\n try {\n throw new Error();\n } catch (ex) {\n var stackArray = ex.stack.split('\\n');\n // In Safari, the resulting stackArray will only have 2 elements and the\n // individual strings are formatted differently.\n if (stackArray.length >= 3) {\n source = stackArray[2].replace(/^\\s*at\\s+/, '');\n } else {\n source = stackArray[1].replace(/^\\s*global code@/, '');\n }\n }\n\n for (var i = 0; i < arguments.length; i++) {\n var path = arguments[i];\n if (path instanceof Array) {\n lib.rtdep.apply(lib, path);\n } else {\n var ary = this.runtimeDependencies_[path];\n if (!ary)\n ary = this.runtimeDependencies_[path] = [];\n ary.push(source);\n }\n }\n};\n\n/**\n * Ensures that all runtime dependencies are met, or an exception is thrown.\n *\n * Every unmet runtime dependency will be logged to the JS console. If at\n * least one dependency is unmet this will raise an exception.\n */\nlib.ensureRuntimeDependencies_ = function() {\n var passed = true;\n\n for (var path in lib.runtimeDependencies_) {\n var sourceList = lib.runtimeDependencies_[path];\n var names = path.split('.');\n\n // In a document context 'window' is the global object. In a worker it's\n // called 'self'.\n var obj = (window || self);\n for (var i = 0; i < names.length; i++) {\n if (!(names[i] in obj)) {\n console.warn('Missing \"' + path + '\" is needed by', sourceList);\n passed = false;\n break;\n }\n\n obj = obj[names[i]];\n }\n }\n\n if (!passed)\n throw new Error('Failed runtime dependency check');\n};\n\n/**\n * Register an initialization function.\n *\n * The initialization functions are invoked in registration order when\n * lib.init() is invoked. Each function will receive a single parameter, which\n * is a function to be invoked when it completes its part of the initialization.\n *\n * @param {string} name A short descriptive name of the init routine useful for\n * debugging.\n * @param {function(function)} callback The initialization function to register.\n * @return {function} The callback parameter.\n */\nlib.registerInit = function(name, callback) {\n lib.initCallbacks_.push([name, callback]);\n return callback;\n};\n\n/**\n * Initialize the library.\n *\n * This will ensure that all registered runtime dependencies are met, and\n * invoke any registered initialization functions.\n *\n * Initialization is asynchronous. The library is not ready for use until\n * the onInit function is invoked.\n *\n * @param {function()} onInit The function to invoke when initialization is\n * complete.\n * @param {function(*)} opt_logFunction An optional function to send\n * initialization related log messages to.\n */\nlib.init = function(onInit, opt_logFunction) {\n var ary = lib.initCallbacks_;\n\n var initNext = function() {\n if (ary.length) {\n var rec = ary.shift();\n if (opt_logFunction)\n opt_logFunction('init: ' + rec[0]);\n rec[1](lib.f.alarm(initNext));\n } else {\n onInit();\n }\n };\n\n if (typeof onInit != 'function')\n throw new Error('Missing or invalid argument: onInit');\n\n lib.ensureRuntimeDependencies_();\n\n setTimeout(initNext, 0);\n};\n// SOURCE FILE: libdot/js/lib_polyfill.js\n// Copyright 2017 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview Polyfills for ES2016+ features we want to use.\n */\n\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart\nif (!String.prototype.padStart) {\n String.prototype.padStart = function(targetLength, padString) {\n // If the string is already long enough, nothing to do!\n targetLength -= this.length;\n if (targetLength <= 0)\n return String(this);\n\n if (padString === undefined)\n padString = ' ';\n\n // In case the pad is multiple chars long.\n if (targetLength > padString.length)\n padString = padString.repeat((targetLength / padString.length) + 1);\n\n return padString.slice(0, targetLength) + String(this);\n };\n}\n\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd\nif (!String.prototype.padEnd) {\n String.prototype.padEnd = function(targetLength, padString) {\n // If the string is already long enough, nothing to do!\n targetLength -= this.length;\n if (targetLength <= 0)\n return String(this);\n\n if (padString === undefined)\n padString = ' ';\n\n // In case the pad is multiple chars long.\n if (targetLength > padString.length)\n padString = padString.repeat((targetLength / padString.length) + 1);\n\n return String(this) + padString.slice(0, targetLength);\n };\n}\n// SOURCE FILE: libdot/js/lib_colors.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Namespace for color utilities.\n */\nlib.colors = {};\n\n/**\n * First, some canned regular expressions we're going to use in this file.\n *\n *\n * BRACE YOURSELF\n *\n * ,~~~~.\n * |>_< ~~\n * 3`---'-/.\n * 3:::::\\v\\\n * =o=:::::\\,\\\n * | :::::\\,,\\\n *\n * THE REGULAR EXPRESSIONS\n * ARE COMING.\n *\n * There's no way to break long RE literals in JavaScript. Fix that why don't\n * you? Oh, and also there's no way to write a string that doesn't interpret\n * escapes.\n *\n * Instead, we stoop to this .replace() trick.\n */\nlib.colors.re_ = {\n // CSS hex color, #RGB.\n hex16: /#([a-f0-9])([a-f0-9])([a-f0-9])/i,\n\n // CSS hex color, #RRGGBB.\n hex24: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/i,\n\n // CSS rgb color, rgb(rrr,ggg,bbb).\n rgb: new RegExp(\n ('^/s*rgb/s*/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,' +\n '/s*(/d{1,3})/s*/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // CSS rgb color, rgb(rrr,ggg,bbb,aaa).\n rgba: new RegExp(\n ('^/s*rgba/s*' +\n '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' +\n '(?:,/s*(/d+(?:/./d+)?)/s*)/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // Either RGB or RGBA.\n rgbx: new RegExp(\n ('^/s*rgba?/s*' +\n '/(/s*(/d{1,3})/s*,/s*(/d{1,3})/s*,/s*(/d{1,3})/s*' +\n '(?:,/s*(/d+(?:/./d+)?)/s*)?/)/s*$'\n ).replace(/\\//g, '\\\\'), 'i'),\n\n // An X11 \"rgb:dddd/dddd/dddd\" value.\n x11rgb: /^\\s*rgb:([a-f0-9]{1,4})\\/([a-f0-9]{1,4})\\/([a-f0-9]{1,4})\\s*$/i,\n\n // English color name.\n name: /[a-z][a-z0-9\\s]+/,\n};\n\n/**\n * Convert a CSS rgb(ddd,ddd,ddd) color value into an X11 color value.\n *\n * Other CSS color values are ignored to ensure sanitary data handling.\n *\n * Each 'ddd' component is a one byte value specified in decimal.\n *\n * @param {string} value The CSS color value to convert.\n * @return {string} The X11 color value or null if the value could not be\n * converted.\n */\nlib.colors.rgbToX11 = function(value) {\n function scale(v) {\n v = (Math.min(v, 255) * 257).toString(16);\n return lib.f.zpad(v, 4);\n }\n\n var ary = value.match(lib.colors.re_.rgbx);\n if (!ary)\n return null;\n\n return 'rgb:' + scale(ary[1]) + '/' + scale(ary[2]) + '/' + scale(ary[3]);\n};\n\n/**\n * Convert a legacy X11 colover value into an CSS rgb(...) color value.\n *\n * They take the form:\n * 12 bit: #RGB -> #R000G000B000\n * 24 bit: #RRGGBB -> #RR00GG00BB00\n * 36 bit: #RRRGGGBBB -> #RRR0GGG0BBB0\n * 48 bit: #RRRRGGGGBBBB\n * These are the most significant bits.\n *\n * Truncate values back down to 24 bit since that's all CSS supports.\n */\nlib.colors.x11HexToCSS = function(v) {\n if (!v.startsWith('#'))\n return null;\n // Strip the leading # off.\n v = v.substr(1);\n\n // Reject unknown sizes.\n if ([3, 6, 9, 12].indexOf(v.length) == -1)\n return null;\n\n // Reject non-hex values.\n if (v.match(/[^a-f0-9]/i))\n return null;\n\n // Split the colors out.\n var size = v.length / 3;\n var r = v.substr(0, size);\n var g = v.substr(size, size);\n var b = v.substr(size + size, size);\n\n // Normalize to 16 bits.\n function norm16(v) {\n v = parseInt(v, 16);\n return size == 2 ? v : // 16 bit\n size == 1 ? v << 4 : // 8 bit\n v >> (4 * (size - 2)); // 24 or 32 bit\n }\n return lib.colors.arrayToRGBA([r, g, b].map(norm16));\n};\n\n/**\n * Convert an X11 color value into an CSS rgb(...) color value.\n *\n * The X11 value may be an X11 color name, or an RGB value of the form\n * rgb:hhhh/hhhh/hhhh. If a component value is less than 4 digits it is\n * padded out to 4, then scaled down to fit in a single byte.\n *\n * @param {string} value The X11 color value to convert.\n * @return {string} The CSS color value or null if the value could not be\n * converted.\n */\nlib.colors.x11ToCSS = function(v) {\n function scale(v) {\n // Pad out values with less than four digits. This padding (probably)\n // matches xterm. It's difficult to say for sure since xterm seems to\n // arrive at a padded value and then perform some combination of\n // gamma correction, color space transformation, and quantization.\n\n if (v.length == 1) {\n // Single digits pad out to four by repeating the character. \"f\" becomes\n // \"ffff\". Scaling down a hex value of this pattern by 257 is the same\n // as cutting off one byte. We skip the middle step and just double\n // the character.\n return parseInt(v + v, 16);\n }\n\n if (v.length == 2) {\n // Similar deal here. X11 pads two digit values by repeating the\n // byte (or scale up by 257). Since we're going to scale it back\n // down anyway, we can just return the original value.\n return parseInt(v, 16);\n }\n\n if (v.length == 3) {\n // Three digit values seem to be padded by repeating the final digit.\n // e.g. 10f becomes 10ff.\n v = v + v.substr(2);\n }\n\n // Scale down the 2 byte value.\n return Math.round(parseInt(v, 16) / 257);\n }\n\n var ary = v.match(lib.colors.re_.x11rgb);\n if (!ary) {\n // Handle the legacy format.\n if (v.startsWith('#'))\n return lib.colors.x11HexToCSS(v);\n else\n return lib.colors.nameToRGB(v);\n }\n\n ary.splice(0, 1);\n return lib.colors.arrayToRGBA(ary.map(scale));\n};\n\n/**\n * Converts one or more CSS '#RRGGBB' color values into their rgb(...)\n * form.\n *\n * Arrays are converted in place. If a value cannot be converted, it is\n * replaced with null.\n *\n * @param {string|Array.} A single RGB value or array of RGB values to\n * convert.\n * @return {string|Array.} The converted value or values.\n */\nlib.colors.hexToRGB = function(arg) {\n var hex16 = lib.colors.re_.hex16;\n var hex24 = lib.colors.re_.hex24;\n\n function convert(hex) {\n if (hex.length == 4) {\n hex = hex.replace(hex16, function(h, r, g, b) {\n return \"#\" + r + r + g + g + b + b;\n });\n }\n var ary = hex.match(hex24);\n if (!ary)\n return null;\n\n return 'rgb(' + parseInt(ary[1], 16) + ', ' +\n parseInt(ary[2], 16) + ', ' +\n parseInt(ary[3], 16) + ')';\n }\n\n if (arg instanceof Array) {\n for (var i = 0; i < arg.length; i++) {\n arg[i] = convert(arg[i]);\n }\n } else {\n arg = convert(arg);\n }\n\n return arg;\n};\n\n/**\n * Converts one or more CSS rgb(...) forms into their '#RRGGBB' color values.\n *\n * If given an rgba(...) form, the alpha field is thrown away.\n *\n * Arrays are converted in place. If a value cannot be converted, it is\n * replaced with null.\n *\n * @param {string|Array.} A single rgb(...) value or array of rgb(...)\n * values to convert.\n * @return {string|Array.} The converted value or values.\n */\nlib.colors.rgbToHex = function(arg) {\n function convert(rgb) {\n var ary = lib.colors.crackRGB(rgb);\n if (!ary)\n return null;\n return '#' + lib.f.zpad(((parseInt(ary[0]) << 16) |\n (parseInt(ary[1]) << 8) |\n (parseInt(ary[2]) << 0)).toString(16), 6);\n }\n\n if (arg instanceof Array) {\n for (var i = 0; i < arg.length; i++) {\n arg[i] = convert(arg[i]);\n }\n } else {\n arg = convert(arg);\n }\n\n return arg;\n};\n\n/**\n * Take any valid css color definition and turn it into an rgb or rgba value.\n *\n * Returns null if the value could not be normalized.\n */\nlib.colors.normalizeCSS = function(def) {\n if (def.startsWith('#'))\n return lib.colors.hexToRGB(def);\n\n if (lib.colors.re_.rgbx.test(def))\n return def;\n\n return lib.colors.nameToRGB(def);\n};\n\n/**\n * Convert a 3 or 4 element array into an rgba(...) string.\n */\nlib.colors.arrayToRGBA = function(ary) {\n var alpha = (ary.length > 3) ? ary[3] : 1;\n return 'rgba(' + ary[0] + ', ' + ary[1] + ', ' + ary[2] + ', ' + alpha + ')';\n};\n\n/**\n * Overwrite the alpha channel of an rgb/rgba color.\n */\nlib.colors.setAlpha = function(rgb, alpha) {\n var ary = lib.colors.crackRGB(rgb);\n ary[3] = alpha;\n return lib.colors.arrayToRGBA(ary);\n};\n\n/**\n * Mix a percentage of a tint color into a base color.\n */\nlib.colors.mix = function(base, tint, percent) {\n var ary1 = lib.colors.crackRGB(base);\n var ary2 = lib.colors.crackRGB(tint);\n\n for (var i = 0; i < 4; ++i) {\n var diff = ary2[i] - ary1[i];\n ary1[i] = Math.round(parseInt(ary1[i]) + diff * percent);\n }\n\n return lib.colors.arrayToRGBA(ary1);\n};\n\n/**\n * Split an rgb/rgba color into an array of its components.\n *\n * On success, a 4 element array will be returned. For rgb values, the alpha\n * will be set to 1.\n */\nlib.colors.crackRGB = function(color) {\n if (color.startsWith('rgba')) {\n var ary = color.match(lib.colors.re_.rgba);\n if (ary) {\n ary.shift();\n return ary;\n }\n } else {\n var ary = color.match(lib.colors.re_.rgb);\n if (ary) {\n ary.shift();\n ary.push(1);\n return ary;\n }\n }\n\n console.error('Couldn\\'t crack: ' + color);\n return null;\n};\n\n/**\n * Convert an X11 color name into a CSS rgb(...) value.\n *\n * Names are stripped of spaces and converted to lowercase. If the name is\n * unknown, null is returned.\n *\n * This list of color name to RGB mapping is derived from the stock X11\n * rgb.txt file.\n *\n * @param {string} name The color name to convert.\n * @return {string} The corresponding CSS rgb(...) value.\n */\nlib.colors.nameToRGB = function(name) {\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n name = name.toLowerCase();\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n name = name.replace(/\\s+/g, '');\n if (name in lib.colors.colorNames)\n return lib.colors.colorNames[name];\n\n return null;\n};\n\n/**\n * The stock color palette.\n */\nlib.colors.stockColorPalette = lib.colors.hexToRGB\n ([// The \"ANSI 16\"...\n '#000000', '#CC0000', '#4E9A06', '#C4A000',\n '#3465A4', '#75507B', '#06989A', '#D3D7CF',\n '#555753', '#EF2929', '#00BA13', '#FCE94F',\n '#729FCF', '#F200CB', '#00B5BD', '#EEEEEC',\n\n // The 6x6 color cubes...\n '#000000', '#00005F', '#000087', '#0000AF', '#0000D7', '#0000FF',\n '#005F00', '#005F5F', '#005F87', '#005FAF', '#005FD7', '#005FFF',\n '#008700', '#00875F', '#008787', '#0087AF', '#0087D7', '#0087FF',\n '#00AF00', '#00AF5F', '#00AF87', '#00AFAF', '#00AFD7', '#00AFFF',\n '#00D700', '#00D75F', '#00D787', '#00D7AF', '#00D7D7', '#00D7FF',\n '#00FF00', '#00FF5F', '#00FF87', '#00FFAF', '#00FFD7', '#00FFFF',\n\n '#5F0000', '#5F005F', '#5F0087', '#5F00AF', '#5F00D7', '#5F00FF',\n '#5F5F00', '#5F5F5F', '#5F5F87', '#5F5FAF', '#5F5FD7', '#5F5FFF',\n '#5F8700', '#5F875F', '#5F8787', '#5F87AF', '#5F87D7', '#5F87FF',\n '#5FAF00', '#5FAF5F', '#5FAF87', '#5FAFAF', '#5FAFD7', '#5FAFFF',\n '#5FD700', '#5FD75F', '#5FD787', '#5FD7AF', '#5FD7D7', '#5FD7FF',\n '#5FFF00', '#5FFF5F', '#5FFF87', '#5FFFAF', '#5FFFD7', '#5FFFFF',\n\n '#870000', '#87005F', '#870087', '#8700AF', '#8700D7', '#8700FF',\n '#875F00', '#875F5F', '#875F87', '#875FAF', '#875FD7', '#875FFF',\n '#878700', '#87875F', '#878787', '#8787AF', '#8787D7', '#8787FF',\n '#87AF00', '#87AF5F', '#87AF87', '#87AFAF', '#87AFD7', '#87AFFF',\n '#87D700', '#87D75F', '#87D787', '#87D7AF', '#87D7D7', '#87D7FF',\n '#87FF00', '#87FF5F', '#87FF87', '#87FFAF', '#87FFD7', '#87FFFF',\n\n '#AF0000', '#AF005F', '#AF0087', '#AF00AF', '#AF00D7', '#AF00FF',\n '#AF5F00', '#AF5F5F', '#AF5F87', '#AF5FAF', '#AF5FD7', '#AF5FFF',\n '#AF8700', '#AF875F', '#AF8787', '#AF87AF', '#AF87D7', '#AF87FF',\n '#AFAF00', '#AFAF5F', '#AFAF87', '#AFAFAF', '#AFAFD7', '#AFAFFF',\n '#AFD700', '#AFD75F', '#AFD787', '#AFD7AF', '#AFD7D7', '#AFD7FF',\n '#AFFF00', '#AFFF5F', '#AFFF87', '#AFFFAF', '#AFFFD7', '#AFFFFF',\n\n '#D70000', '#D7005F', '#D70087', '#D700AF', '#D700D7', '#D700FF',\n '#D75F00', '#D75F5F', '#D75F87', '#D75FAF', '#D75FD7', '#D75FFF',\n '#D78700', '#D7875F', '#D78787', '#D787AF', '#D787D7', '#D787FF',\n '#D7AF00', '#D7AF5F', '#D7AF87', '#D7AFAF', '#D7AFD7', '#D7AFFF',\n '#D7D700', '#D7D75F', '#D7D787', '#D7D7AF', '#D7D7D7', '#D7D7FF',\n '#D7FF00', '#D7FF5F', '#D7FF87', '#D7FFAF', '#D7FFD7', '#D7FFFF',\n\n '#FF0000', '#FF005F', '#FF0087', '#FF00AF', '#FF00D7', '#FF00FF',\n '#FF5F00', '#FF5F5F', '#FF5F87', '#FF5FAF', '#FF5FD7', '#FF5FFF',\n '#FF8700', '#FF875F', '#FF8787', '#FF87AF', '#FF87D7', '#FF87FF',\n '#FFAF00', '#FFAF5F', '#FFAF87', '#FFAFAF', '#FFAFD7', '#FFAFFF',\n '#FFD700', '#FFD75F', '#FFD787', '#FFD7AF', '#FFD7D7', '#FFD7FF',\n '#FFFF00', '#FFFF5F', '#FFFF87', '#FFFFAF', '#FFFFD7', '#FFFFFF',\n\n // The greyscale ramp...\n '#080808', '#121212', '#1C1C1C', '#262626', '#303030', '#3A3A3A',\n '#444444', '#4E4E4E', '#585858', '#626262', '#6C6C6C', '#767676',\n '#808080', '#8A8A8A', '#949494', '#9E9E9E', '#A8A8A8', '#B2B2B2',\n '#BCBCBC', '#C6C6C6', '#D0D0D0', '#DADADA', '#E4E4E4', '#EEEEEE'\n ]);\n\n/**\n * The current color palette, possibly with user changes.\n */\nlib.colors.colorPalette = lib.colors.stockColorPalette;\n\n/**\n * Named colors according to the stock X11 rgb.txt file.\n */\nlib.colors.colorNames = {\n \"aliceblue\": \"rgb(240, 248, 255)\",\n \"antiquewhite\": \"rgb(250, 235, 215)\",\n \"antiquewhite1\": \"rgb(255, 239, 219)\",\n \"antiquewhite2\": \"rgb(238, 223, 204)\",\n \"antiquewhite3\": \"rgb(205, 192, 176)\",\n \"antiquewhite4\": \"rgb(139, 131, 120)\",\n \"aquamarine\": \"rgb(127, 255, 212)\",\n \"aquamarine1\": \"rgb(127, 255, 212)\",\n \"aquamarine2\": \"rgb(118, 238, 198)\",\n \"aquamarine3\": \"rgb(102, 205, 170)\",\n \"aquamarine4\": \"rgb(69, 139, 116)\",\n \"azure\": \"rgb(240, 255, 255)\",\n \"azure1\": \"rgb(240, 255, 255)\",\n \"azure2\": \"rgb(224, 238, 238)\",\n \"azure3\": \"rgb(193, 205, 205)\",\n \"azure4\": \"rgb(131, 139, 139)\",\n \"beige\": \"rgb(245, 245, 220)\",\n \"bisque\": \"rgb(255, 228, 196)\",\n \"bisque1\": \"rgb(255, 228, 196)\",\n \"bisque2\": \"rgb(238, 213, 183)\",\n \"bisque3\": \"rgb(205, 183, 158)\",\n \"bisque4\": \"rgb(139, 125, 107)\",\n \"black\": \"rgb(0, 0, 0)\",\n \"blanchedalmond\": \"rgb(255, 235, 205)\",\n \"blue\": \"rgb(0, 0, 255)\",\n \"blue1\": \"rgb(0, 0, 255)\",\n \"blue2\": \"rgb(0, 0, 238)\",\n \"blue3\": \"rgb(0, 0, 205)\",\n \"blue4\": \"rgb(0, 0, 139)\",\n \"blueviolet\": \"rgb(138, 43, 226)\",\n \"brown\": \"rgb(165, 42, 42)\",\n \"brown1\": \"rgb(255, 64, 64)\",\n \"brown2\": \"rgb(238, 59, 59)\",\n \"brown3\": \"rgb(205, 51, 51)\",\n \"brown4\": \"rgb(139, 35, 35)\",\n \"burlywood\": \"rgb(222, 184, 135)\",\n \"burlywood1\": \"rgb(255, 211, 155)\",\n \"burlywood2\": \"rgb(238, 197, 145)\",\n \"burlywood3\": \"rgb(205, 170, 125)\",\n \"burlywood4\": \"rgb(139, 115, 85)\",\n \"cadetblue\": \"rgb(95, 158, 160)\",\n \"cadetblue1\": \"rgb(152, 245, 255)\",\n \"cadetblue2\": \"rgb(142, 229, 238)\",\n \"cadetblue3\": \"rgb(122, 197, 205)\",\n \"cadetblue4\": \"rgb(83, 134, 139)\",\n \"chartreuse\": \"rgb(127, 255, 0)\",\n \"chartreuse1\": \"rgb(127, 255, 0)\",\n \"chartreuse2\": \"rgb(118, 238, 0)\",\n \"chartreuse3\": \"rgb(102, 205, 0)\",\n \"chartreuse4\": \"rgb(69, 139, 0)\",\n \"chocolate\": \"rgb(210, 105, 30)\",\n \"chocolate1\": \"rgb(255, 127, 36)\",\n \"chocolate2\": \"rgb(238, 118, 33)\",\n \"chocolate3\": \"rgb(205, 102, 29)\",\n \"chocolate4\": \"rgb(139, 69, 19)\",\n \"coral\": \"rgb(255, 127, 80)\",\n \"coral1\": \"rgb(255, 114, 86)\",\n \"coral2\": \"rgb(238, 106, 80)\",\n \"coral3\": \"rgb(205, 91, 69)\",\n \"coral4\": \"rgb(139, 62, 47)\",\n \"cornflowerblue\": \"rgb(100, 149, 237)\",\n \"cornsilk\": \"rgb(255, 248, 220)\",\n \"cornsilk1\": \"rgb(255, 248, 220)\",\n \"cornsilk2\": \"rgb(238, 232, 205)\",\n \"cornsilk3\": \"rgb(205, 200, 177)\",\n \"cornsilk4\": \"rgb(139, 136, 120)\",\n \"cyan\": \"rgb(0, 255, 255)\",\n \"cyan1\": \"rgb(0, 255, 255)\",\n \"cyan2\": \"rgb(0, 238, 238)\",\n \"cyan3\": \"rgb(0, 205, 205)\",\n \"cyan4\": \"rgb(0, 139, 139)\",\n \"darkblue\": \"rgb(0, 0, 139)\",\n \"darkcyan\": \"rgb(0, 139, 139)\",\n \"darkgoldenrod\": \"rgb(184, 134, 11)\",\n \"darkgoldenrod1\": \"rgb(255, 185, 15)\",\n \"darkgoldenrod2\": \"rgb(238, 173, 14)\",\n \"darkgoldenrod3\": \"rgb(205, 149, 12)\",\n \"darkgoldenrod4\": \"rgb(139, 101, 8)\",\n \"darkgray\": \"rgb(169, 169, 169)\",\n \"darkgreen\": \"rgb(0, 100, 0)\",\n \"darkgrey\": \"rgb(169, 169, 169)\",\n \"darkkhaki\": \"rgb(189, 183, 107)\",\n \"darkmagenta\": \"rgb(139, 0, 139)\",\n \"darkolivegreen\": \"rgb(85, 107, 47)\",\n \"darkolivegreen1\": \"rgb(202, 255, 112)\",\n \"darkolivegreen2\": \"rgb(188, 238, 104)\",\n \"darkolivegreen3\": \"rgb(162, 205, 90)\",\n \"darkolivegreen4\": \"rgb(110, 139, 61)\",\n \"darkorange\": \"rgb(255, 140, 0)\",\n \"darkorange1\": \"rgb(255, 127, 0)\",\n \"darkorange2\": \"rgb(238, 118, 0)\",\n \"darkorange3\": \"rgb(205, 102, 0)\",\n \"darkorange4\": \"rgb(139, 69, 0)\",\n \"darkorchid\": \"rgb(153, 50, 204)\",\n \"darkorchid1\": \"rgb(191, 62, 255)\",\n \"darkorchid2\": \"rgb(178, 58, 238)\",\n \"darkorchid3\": \"rgb(154, 50, 205)\",\n \"darkorchid4\": \"rgb(104, 34, 139)\",\n \"darkred\": \"rgb(139, 0, 0)\",\n \"darksalmon\": \"rgb(233, 150, 122)\",\n \"darkseagreen\": \"rgb(143, 188, 143)\",\n \"darkseagreen1\": \"rgb(193, 255, 193)\",\n \"darkseagreen2\": \"rgb(180, 238, 180)\",\n \"darkseagreen3\": \"rgb(155, 205, 155)\",\n \"darkseagreen4\": \"rgb(105, 139, 105)\",\n \"darkslateblue\": \"rgb(72, 61, 139)\",\n \"darkslategray\": \"rgb(47, 79, 79)\",\n \"darkslategray1\": \"rgb(151, 255, 255)\",\n \"darkslategray2\": \"rgb(141, 238, 238)\",\n \"darkslategray3\": \"rgb(121, 205, 205)\",\n \"darkslategray4\": \"rgb(82, 139, 139)\",\n \"darkslategrey\": \"rgb(47, 79, 79)\",\n \"darkturquoise\": \"rgb(0, 206, 209)\",\n \"darkviolet\": \"rgb(148, 0, 211)\",\n \"debianred\": \"rgb(215, 7, 81)\",\n \"deeppink\": \"rgb(255, 20, 147)\",\n \"deeppink1\": \"rgb(255, 20, 147)\",\n \"deeppink2\": \"rgb(238, 18, 137)\",\n \"deeppink3\": \"rgb(205, 16, 118)\",\n \"deeppink4\": \"rgb(139, 10, 80)\",\n \"deepskyblue\": \"rgb(0, 191, 255)\",\n \"deepskyblue1\": \"rgb(0, 191, 255)\",\n \"deepskyblue2\": \"rgb(0, 178, 238)\",\n \"deepskyblue3\": \"rgb(0, 154, 205)\",\n \"deepskyblue4\": \"rgb(0, 104, 139)\",\n \"dimgray\": \"rgb(105, 105, 105)\",\n \"dimgrey\": \"rgb(105, 105, 105)\",\n \"dodgerblue\": \"rgb(30, 144, 255)\",\n \"dodgerblue1\": \"rgb(30, 144, 255)\",\n \"dodgerblue2\": \"rgb(28, 134, 238)\",\n \"dodgerblue3\": \"rgb(24, 116, 205)\",\n \"dodgerblue4\": \"rgb(16, 78, 139)\",\n \"firebrick\": \"rgb(178, 34, 34)\",\n \"firebrick1\": \"rgb(255, 48, 48)\",\n \"firebrick2\": \"rgb(238, 44, 44)\",\n \"firebrick3\": \"rgb(205, 38, 38)\",\n \"firebrick4\": \"rgb(139, 26, 26)\",\n \"floralwhite\": \"rgb(255, 250, 240)\",\n \"forestgreen\": \"rgb(34, 139, 34)\",\n \"gainsboro\": \"rgb(220, 220, 220)\",\n \"ghostwhite\": \"rgb(248, 248, 255)\",\n \"gold\": \"rgb(255, 215, 0)\",\n \"gold1\": \"rgb(255, 215, 0)\",\n \"gold2\": \"rgb(238, 201, 0)\",\n \"gold3\": \"rgb(205, 173, 0)\",\n \"gold4\": \"rgb(139, 117, 0)\",\n \"goldenrod\": \"rgb(218, 165, 32)\",\n \"goldenrod1\": \"rgb(255, 193, 37)\",\n \"goldenrod2\": \"rgb(238, 180, 34)\",\n \"goldenrod3\": \"rgb(205, 155, 29)\",\n \"goldenrod4\": \"rgb(139, 105, 20)\",\n \"gray\": \"rgb(190, 190, 190)\",\n \"gray0\": \"rgb(0, 0, 0)\",\n \"gray1\": \"rgb(3, 3, 3)\",\n \"gray10\": \"rgb(26, 26, 26)\",\n \"gray100\": \"rgb(255, 255, 255)\",\n \"gray11\": \"rgb(28, 28, 28)\",\n \"gray12\": \"rgb(31, 31, 31)\",\n \"gray13\": \"rgb(33, 33, 33)\",\n \"gray14\": \"rgb(36, 36, 36)\",\n \"gray15\": \"rgb(38, 38, 38)\",\n \"gray16\": \"rgb(41, 41, 41)\",\n \"gray17\": \"rgb(43, 43, 43)\",\n \"gray18\": \"rgb(46, 46, 46)\",\n \"gray19\": \"rgb(48, 48, 48)\",\n \"gray2\": \"rgb(5, 5, 5)\",\n \"gray20\": \"rgb(51, 51, 51)\",\n \"gray21\": \"rgb(54, 54, 54)\",\n \"gray22\": \"rgb(56, 56, 56)\",\n \"gray23\": \"rgb(59, 59, 59)\",\n \"gray24\": \"rgb(61, 61, 61)\",\n \"gray25\": \"rgb(64, 64, 64)\",\n \"gray26\": \"rgb(66, 66, 66)\",\n \"gray27\": \"rgb(69, 69, 69)\",\n \"gray28\": \"rgb(71, 71, 71)\",\n \"gray29\": \"rgb(74, 74, 74)\",\n \"gray3\": \"rgb(8, 8, 8)\",\n \"gray30\": \"rgb(77, 77, 77)\",\n \"gray31\": \"rgb(79, 79, 79)\",\n \"gray32\": \"rgb(82, 82, 82)\",\n \"gray33\": \"rgb(84, 84, 84)\",\n \"gray34\": \"rgb(87, 87, 87)\",\n \"gray35\": \"rgb(89, 89, 89)\",\n \"gray36\": \"rgb(92, 92, 92)\",\n \"gray37\": \"rgb(94, 94, 94)\",\n \"gray38\": \"rgb(97, 97, 97)\",\n \"gray39\": \"rgb(99, 99, 99)\",\n \"gray4\": \"rgb(10, 10, 10)\",\n \"gray40\": \"rgb(102, 102, 102)\",\n \"gray41\": \"rgb(105, 105, 105)\",\n \"gray42\": \"rgb(107, 107, 107)\",\n \"gray43\": \"rgb(110, 110, 110)\",\n \"gray44\": \"rgb(112, 112, 112)\",\n \"gray45\": \"rgb(115, 115, 115)\",\n \"gray46\": \"rgb(117, 117, 117)\",\n \"gray47\": \"rgb(120, 120, 120)\",\n \"gray48\": \"rgb(122, 122, 122)\",\n \"gray49\": \"rgb(125, 125, 125)\",\n \"gray5\": \"rgb(13, 13, 13)\",\n \"gray50\": \"rgb(127, 127, 127)\",\n \"gray51\": \"rgb(130, 130, 130)\",\n \"gray52\": \"rgb(133, 133, 133)\",\n \"gray53\": \"rgb(135, 135, 135)\",\n \"gray54\": \"rgb(138, 138, 138)\",\n \"gray55\": \"rgb(140, 140, 140)\",\n \"gray56\": \"rgb(143, 143, 143)\",\n \"gray57\": \"rgb(145, 145, 145)\",\n \"gray58\": \"rgb(148, 148, 148)\",\n \"gray59\": \"rgb(150, 150, 150)\",\n \"gray6\": \"rgb(15, 15, 15)\",\n \"gray60\": \"rgb(153, 153, 153)\",\n \"gray61\": \"rgb(156, 156, 156)\",\n \"gray62\": \"rgb(158, 158, 158)\",\n \"gray63\": \"rgb(161, 161, 161)\",\n \"gray64\": \"rgb(163, 163, 163)\",\n \"gray65\": \"rgb(166, 166, 166)\",\n \"gray66\": \"rgb(168, 168, 168)\",\n \"gray67\": \"rgb(171, 171, 171)\",\n \"gray68\": \"rgb(173, 173, 173)\",\n \"gray69\": \"rgb(176, 176, 176)\",\n \"gray7\": \"rgb(18, 18, 18)\",\n \"gray70\": \"rgb(179, 179, 179)\",\n \"gray71\": \"rgb(181, 181, 181)\",\n \"gray72\": \"rgb(184, 184, 184)\",\n \"gray73\": \"rgb(186, 186, 186)\",\n \"gray74\": \"rgb(189, 189, 189)\",\n \"gray75\": \"rgb(191, 191, 191)\",\n \"gray76\": \"rgb(194, 194, 194)\",\n \"gray77\": \"rgb(196, 196, 196)\",\n \"gray78\": \"rgb(199, 199, 199)\",\n \"gray79\": \"rgb(201, 201, 201)\",\n \"gray8\": \"rgb(20, 20, 20)\",\n \"gray80\": \"rgb(204, 204, 204)\",\n \"gray81\": \"rgb(207, 207, 207)\",\n \"gray82\": \"rgb(209, 209, 209)\",\n \"gray83\": \"rgb(212, 212, 212)\",\n \"gray84\": \"rgb(214, 214, 214)\",\n \"gray85\": \"rgb(217, 217, 217)\",\n \"gray86\": \"rgb(219, 219, 219)\",\n \"gray87\": \"rgb(222, 222, 222)\",\n \"gray88\": \"rgb(224, 224, 224)\",\n \"gray89\": \"rgb(227, 227, 227)\",\n \"gray9\": \"rgb(23, 23, 23)\",\n \"gray90\": \"rgb(229, 229, 229)\",\n \"gray91\": \"rgb(232, 232, 232)\",\n \"gray92\": \"rgb(235, 235, 235)\",\n \"gray93\": \"rgb(237, 237, 237)\",\n \"gray94\": \"rgb(240, 240, 240)\",\n \"gray95\": \"rgb(242, 242, 242)\",\n \"gray96\": \"rgb(245, 245, 245)\",\n \"gray97\": \"rgb(247, 247, 247)\",\n \"gray98\": \"rgb(250, 250, 250)\",\n \"gray99\": \"rgb(252, 252, 252)\",\n \"green\": \"rgb(0, 255, 0)\",\n \"green1\": \"rgb(0, 255, 0)\",\n \"green2\": \"rgb(0, 238, 0)\",\n \"green3\": \"rgb(0, 205, 0)\",\n \"green4\": \"rgb(0, 139, 0)\",\n \"greenyellow\": \"rgb(173, 255, 47)\",\n \"grey\": \"rgb(190, 190, 190)\",\n \"grey0\": \"rgb(0, 0, 0)\",\n \"grey1\": \"rgb(3, 3, 3)\",\n \"grey10\": \"rgb(26, 26, 26)\",\n \"grey100\": \"rgb(255, 255, 255)\",\n \"grey11\": \"rgb(28, 28, 28)\",\n \"grey12\": \"rgb(31, 31, 31)\",\n \"grey13\": \"rgb(33, 33, 33)\",\n \"grey14\": \"rgb(36, 36, 36)\",\n \"grey15\": \"rgb(38, 38, 38)\",\n \"grey16\": \"rgb(41, 41, 41)\",\n \"grey17\": \"rgb(43, 43, 43)\",\n \"grey18\": \"rgb(46, 46, 46)\",\n \"grey19\": \"rgb(48, 48, 48)\",\n \"grey2\": \"rgb(5, 5, 5)\",\n \"grey20\": \"rgb(51, 51, 51)\",\n \"grey21\": \"rgb(54, 54, 54)\",\n \"grey22\": \"rgb(56, 56, 56)\",\n \"grey23\": \"rgb(59, 59, 59)\",\n \"grey24\": \"rgb(61, 61, 61)\",\n \"grey25\": \"rgb(64, 64, 64)\",\n \"grey26\": \"rgb(66, 66, 66)\",\n \"grey27\": \"rgb(69, 69, 69)\",\n \"grey28\": \"rgb(71, 71, 71)\",\n \"grey29\": \"rgb(74, 74, 74)\",\n \"grey3\": \"rgb(8, 8, 8)\",\n \"grey30\": \"rgb(77, 77, 77)\",\n \"grey31\": \"rgb(79, 79, 79)\",\n \"grey32\": \"rgb(82, 82, 82)\",\n \"grey33\": \"rgb(84, 84, 84)\",\n \"grey34\": \"rgb(87, 87, 87)\",\n \"grey35\": \"rgb(89, 89, 89)\",\n \"grey36\": \"rgb(92, 92, 92)\",\n \"grey37\": \"rgb(94, 94, 94)\",\n \"grey38\": \"rgb(97, 97, 97)\",\n \"grey39\": \"rgb(99, 99, 99)\",\n \"grey4\": \"rgb(10, 10, 10)\",\n \"grey40\": \"rgb(102, 102, 102)\",\n \"grey41\": \"rgb(105, 105, 105)\",\n \"grey42\": \"rgb(107, 107, 107)\",\n \"grey43\": \"rgb(110, 110, 110)\",\n \"grey44\": \"rgb(112, 112, 112)\",\n \"grey45\": \"rgb(115, 115, 115)\",\n \"grey46\": \"rgb(117, 117, 117)\",\n \"grey47\": \"rgb(120, 120, 120)\",\n \"grey48\": \"rgb(122, 122, 122)\",\n \"grey49\": \"rgb(125, 125, 125)\",\n \"grey5\": \"rgb(13, 13, 13)\",\n \"grey50\": \"rgb(127, 127, 127)\",\n \"grey51\": \"rgb(130, 130, 130)\",\n \"grey52\": \"rgb(133, 133, 133)\",\n \"grey53\": \"rgb(135, 135, 135)\",\n \"grey54\": \"rgb(138, 138, 138)\",\n \"grey55\": \"rgb(140, 140, 140)\",\n \"grey56\": \"rgb(143, 143, 143)\",\n \"grey57\": \"rgb(145, 145, 145)\",\n \"grey58\": \"rgb(148, 148, 148)\",\n \"grey59\": \"rgb(150, 150, 150)\",\n \"grey6\": \"rgb(15, 15, 15)\",\n \"grey60\": \"rgb(153, 153, 153)\",\n \"grey61\": \"rgb(156, 156, 156)\",\n \"grey62\": \"rgb(158, 158, 158)\",\n \"grey63\": \"rgb(161, 161, 161)\",\n \"grey64\": \"rgb(163, 163, 163)\",\n \"grey65\": \"rgb(166, 166, 166)\",\n \"grey66\": \"rgb(168, 168, 168)\",\n \"grey67\": \"rgb(171, 171, 171)\",\n \"grey68\": \"rgb(173, 173, 173)\",\n \"grey69\": \"rgb(176, 176, 176)\",\n \"grey7\": \"rgb(18, 18, 18)\",\n \"grey70\": \"rgb(179, 179, 179)\",\n \"grey71\": \"rgb(181, 181, 181)\",\n \"grey72\": \"rgb(184, 184, 184)\",\n \"grey73\": \"rgb(186, 186, 186)\",\n \"grey74\": \"rgb(189, 189, 189)\",\n \"grey75\": \"rgb(191, 191, 191)\",\n \"grey76\": \"rgb(194, 194, 194)\",\n \"grey77\": \"rgb(196, 196, 196)\",\n \"grey78\": \"rgb(199, 199, 199)\",\n \"grey79\": \"rgb(201, 201, 201)\",\n \"grey8\": \"rgb(20, 20, 20)\",\n \"grey80\": \"rgb(204, 204, 204)\",\n \"grey81\": \"rgb(207, 207, 207)\",\n \"grey82\": \"rgb(209, 209, 209)\",\n \"grey83\": \"rgb(212, 212, 212)\",\n \"grey84\": \"rgb(214, 214, 214)\",\n \"grey85\": \"rgb(217, 217, 217)\",\n \"grey86\": \"rgb(219, 219, 219)\",\n \"grey87\": \"rgb(222, 222, 222)\",\n \"grey88\": \"rgb(224, 224, 224)\",\n \"grey89\": \"rgb(227, 227, 227)\",\n \"grey9\": \"rgb(23, 23, 23)\",\n \"grey90\": \"rgb(229, 229, 229)\",\n \"grey91\": \"rgb(232, 232, 232)\",\n \"grey92\": \"rgb(235, 235, 235)\",\n \"grey93\": \"rgb(237, 237, 237)\",\n \"grey94\": \"rgb(240, 240, 240)\",\n \"grey95\": \"rgb(242, 242, 242)\",\n \"grey96\": \"rgb(245, 245, 245)\",\n \"grey97\": \"rgb(247, 247, 247)\",\n \"grey98\": \"rgb(250, 250, 250)\",\n \"grey99\": \"rgb(252, 252, 252)\",\n \"honeydew\": \"rgb(240, 255, 240)\",\n \"honeydew1\": \"rgb(240, 255, 240)\",\n \"honeydew2\": \"rgb(224, 238, 224)\",\n \"honeydew3\": \"rgb(193, 205, 193)\",\n \"honeydew4\": \"rgb(131, 139, 131)\",\n \"hotpink\": \"rgb(255, 105, 180)\",\n \"hotpink1\": \"rgb(255, 110, 180)\",\n \"hotpink2\": \"rgb(238, 106, 167)\",\n \"hotpink3\": \"rgb(205, 96, 144)\",\n \"hotpink4\": \"rgb(139, 58, 98)\",\n \"indianred\": \"rgb(205, 92, 92)\",\n \"indianred1\": \"rgb(255, 106, 106)\",\n \"indianred2\": \"rgb(238, 99, 99)\",\n \"indianred3\": \"rgb(205, 85, 85)\",\n \"indianred4\": \"rgb(139, 58, 58)\",\n \"ivory\": \"rgb(255, 255, 240)\",\n \"ivory1\": \"rgb(255, 255, 240)\",\n \"ivory2\": \"rgb(238, 238, 224)\",\n \"ivory3\": \"rgb(205, 205, 193)\",\n \"ivory4\": \"rgb(139, 139, 131)\",\n \"khaki\": \"rgb(240, 230, 140)\",\n \"khaki1\": \"rgb(255, 246, 143)\",\n \"khaki2\": \"rgb(238, 230, 133)\",\n \"khaki3\": \"rgb(205, 198, 115)\",\n \"khaki4\": \"rgb(139, 134, 78)\",\n \"lavender\": \"rgb(230, 230, 250)\",\n \"lavenderblush\": \"rgb(255, 240, 245)\",\n \"lavenderblush1\": \"rgb(255, 240, 245)\",\n \"lavenderblush2\": \"rgb(238, 224, 229)\",\n \"lavenderblush3\": \"rgb(205, 193, 197)\",\n \"lavenderblush4\": \"rgb(139, 131, 134)\",\n \"lawngreen\": \"rgb(124, 252, 0)\",\n \"lemonchiffon\": \"rgb(255, 250, 205)\",\n \"lemonchiffon1\": \"rgb(255, 250, 205)\",\n \"lemonchiffon2\": \"rgb(238, 233, 191)\",\n \"lemonchiffon3\": \"rgb(205, 201, 165)\",\n \"lemonchiffon4\": \"rgb(139, 137, 112)\",\n \"lightblue\": \"rgb(173, 216, 230)\",\n \"lightblue1\": \"rgb(191, 239, 255)\",\n \"lightblue2\": \"rgb(178, 223, 238)\",\n \"lightblue3\": \"rgb(154, 192, 205)\",\n \"lightblue4\": \"rgb(104, 131, 139)\",\n \"lightcoral\": \"rgb(240, 128, 128)\",\n \"lightcyan\": \"rgb(224, 255, 255)\",\n \"lightcyan1\": \"rgb(224, 255, 255)\",\n \"lightcyan2\": \"rgb(209, 238, 238)\",\n \"lightcyan3\": \"rgb(180, 205, 205)\",\n \"lightcyan4\": \"rgb(122, 139, 139)\",\n \"lightgoldenrod\": \"rgb(238, 221, 130)\",\n \"lightgoldenrod1\": \"rgb(255, 236, 139)\",\n \"lightgoldenrod2\": \"rgb(238, 220, 130)\",\n \"lightgoldenrod3\": \"rgb(205, 190, 112)\",\n \"lightgoldenrod4\": \"rgb(139, 129, 76)\",\n \"lightgoldenrodyellow\": \"rgb(250, 250, 210)\",\n \"lightgray\": \"rgb(211, 211, 211)\",\n \"lightgreen\": \"rgb(144, 238, 144)\",\n \"lightgrey\": \"rgb(211, 211, 211)\",\n \"lightpink\": \"rgb(255, 182, 193)\",\n \"lightpink1\": \"rgb(255, 174, 185)\",\n \"lightpink2\": \"rgb(238, 162, 173)\",\n \"lightpink3\": \"rgb(205, 140, 149)\",\n \"lightpink4\": \"rgb(139, 95, 101)\",\n \"lightsalmon\": \"rgb(255, 160, 122)\",\n \"lightsalmon1\": \"rgb(255, 160, 122)\",\n \"lightsalmon2\": \"rgb(238, 149, 114)\",\n \"lightsalmon3\": \"rgb(205, 129, 98)\",\n \"lightsalmon4\": \"rgb(139, 87, 66)\",\n \"lightseagreen\": \"rgb(32, 178, 170)\",\n \"lightskyblue\": \"rgb(135, 206, 250)\",\n \"lightskyblue1\": \"rgb(176, 226, 255)\",\n \"lightskyblue2\": \"rgb(164, 211, 238)\",\n \"lightskyblue3\": \"rgb(141, 182, 205)\",\n \"lightskyblue4\": \"rgb(96, 123, 139)\",\n \"lightslateblue\": \"rgb(132, 112, 255)\",\n \"lightslategray\": \"rgb(119, 136, 153)\",\n \"lightslategrey\": \"rgb(119, 136, 153)\",\n \"lightsteelblue\": \"rgb(176, 196, 222)\",\n \"lightsteelblue1\": \"rgb(202, 225, 255)\",\n \"lightsteelblue2\": \"rgb(188, 210, 238)\",\n \"lightsteelblue3\": \"rgb(162, 181, 205)\",\n \"lightsteelblue4\": \"rgb(110, 123, 139)\",\n \"lightyellow\": \"rgb(255, 255, 224)\",\n \"lightyellow1\": \"rgb(255, 255, 224)\",\n \"lightyellow2\": \"rgb(238, 238, 209)\",\n \"lightyellow3\": \"rgb(205, 205, 180)\",\n \"lightyellow4\": \"rgb(139, 139, 122)\",\n \"limegreen\": \"rgb(50, 205, 50)\",\n \"linen\": \"rgb(250, 240, 230)\",\n \"magenta\": \"rgb(255, 0, 255)\",\n \"magenta1\": \"rgb(255, 0, 255)\",\n \"magenta2\": \"rgb(238, 0, 238)\",\n \"magenta3\": \"rgb(205, 0, 205)\",\n \"magenta4\": \"rgb(139, 0, 139)\",\n \"maroon\": \"rgb(176, 48, 96)\",\n \"maroon1\": \"rgb(255, 52, 179)\",\n \"maroon2\": \"rgb(238, 48, 167)\",\n \"maroon3\": \"rgb(205, 41, 144)\",\n \"maroon4\": \"rgb(139, 28, 98)\",\n \"mediumaquamarine\": \"rgb(102, 205, 170)\",\n \"mediumblue\": \"rgb(0, 0, 205)\",\n \"mediumorchid\": \"rgb(186, 85, 211)\",\n \"mediumorchid1\": \"rgb(224, 102, 255)\",\n \"mediumorchid2\": \"rgb(209, 95, 238)\",\n \"mediumorchid3\": \"rgb(180, 82, 205)\",\n \"mediumorchid4\": \"rgb(122, 55, 139)\",\n \"mediumpurple\": \"rgb(147, 112, 219)\",\n \"mediumpurple1\": \"rgb(171, 130, 255)\",\n \"mediumpurple2\": \"rgb(159, 121, 238)\",\n \"mediumpurple3\": \"rgb(137, 104, 205)\",\n \"mediumpurple4\": \"rgb(93, 71, 139)\",\n \"mediumseagreen\": \"rgb(60, 179, 113)\",\n \"mediumslateblue\": \"rgb(123, 104, 238)\",\n \"mediumspringgreen\": \"rgb(0, 250, 154)\",\n \"mediumturquoise\": \"rgb(72, 209, 204)\",\n \"mediumvioletred\": \"rgb(199, 21, 133)\",\n \"midnightblue\": \"rgb(25, 25, 112)\",\n \"mintcream\": \"rgb(245, 255, 250)\",\n \"mistyrose\": \"rgb(255, 228, 225)\",\n \"mistyrose1\": \"rgb(255, 228, 225)\",\n \"mistyrose2\": \"rgb(238, 213, 210)\",\n \"mistyrose3\": \"rgb(205, 183, 181)\",\n \"mistyrose4\": \"rgb(139, 125, 123)\",\n \"moccasin\": \"rgb(255, 228, 181)\",\n \"navajowhite\": \"rgb(255, 222, 173)\",\n \"navajowhite1\": \"rgb(255, 222, 173)\",\n \"navajowhite2\": \"rgb(238, 207, 161)\",\n \"navajowhite3\": \"rgb(205, 179, 139)\",\n \"navajowhite4\": \"rgb(139, 121, 94)\",\n \"navy\": \"rgb(0, 0, 128)\",\n \"navyblue\": \"rgb(0, 0, 128)\",\n \"oldlace\": \"rgb(253, 245, 230)\",\n \"olivedrab\": \"rgb(107, 142, 35)\",\n \"olivedrab1\": \"rgb(192, 255, 62)\",\n \"olivedrab2\": \"rgb(179, 238, 58)\",\n \"olivedrab3\": \"rgb(154, 205, 50)\",\n \"olivedrab4\": \"rgb(105, 139, 34)\",\n \"orange\": \"rgb(255, 165, 0)\",\n \"orange1\": \"rgb(255, 165, 0)\",\n \"orange2\": \"rgb(238, 154, 0)\",\n \"orange3\": \"rgb(205, 133, 0)\",\n \"orange4\": \"rgb(139, 90, 0)\",\n \"orangered\": \"rgb(255, 69, 0)\",\n \"orangered1\": \"rgb(255, 69, 0)\",\n \"orangered2\": \"rgb(238, 64, 0)\",\n \"orangered3\": \"rgb(205, 55, 0)\",\n \"orangered4\": \"rgb(139, 37, 0)\",\n \"orchid\": \"rgb(218, 112, 214)\",\n \"orchid1\": \"rgb(255, 131, 250)\",\n \"orchid2\": \"rgb(238, 122, 233)\",\n \"orchid3\": \"rgb(205, 105, 201)\",\n \"orchid4\": \"rgb(139, 71, 137)\",\n \"palegoldenrod\": \"rgb(238, 232, 170)\",\n \"palegreen\": \"rgb(152, 251, 152)\",\n \"palegreen1\": \"rgb(154, 255, 154)\",\n \"palegreen2\": \"rgb(144, 238, 144)\",\n \"palegreen3\": \"rgb(124, 205, 124)\",\n \"palegreen4\": \"rgb(84, 139, 84)\",\n \"paleturquoise\": \"rgb(175, 238, 238)\",\n \"paleturquoise1\": \"rgb(187, 255, 255)\",\n \"paleturquoise2\": \"rgb(174, 238, 238)\",\n \"paleturquoise3\": \"rgb(150, 205, 205)\",\n \"paleturquoise4\": \"rgb(102, 139, 139)\",\n \"palevioletred\": \"rgb(219, 112, 147)\",\n \"palevioletred1\": \"rgb(255, 130, 171)\",\n \"palevioletred2\": \"rgb(238, 121, 159)\",\n \"palevioletred3\": \"rgb(205, 104, 137)\",\n \"palevioletred4\": \"rgb(139, 71, 93)\",\n \"papayawhip\": \"rgb(255, 239, 213)\",\n \"peachpuff\": \"rgb(255, 218, 185)\",\n \"peachpuff1\": \"rgb(255, 218, 185)\",\n \"peachpuff2\": \"rgb(238, 203, 173)\",\n \"peachpuff3\": \"rgb(205, 175, 149)\",\n \"peachpuff4\": \"rgb(139, 119, 101)\",\n \"peru\": \"rgb(205, 133, 63)\",\n \"pink\": \"rgb(255, 192, 203)\",\n \"pink1\": \"rgb(255, 181, 197)\",\n \"pink2\": \"rgb(238, 169, 184)\",\n \"pink3\": \"rgb(205, 145, 158)\",\n \"pink4\": \"rgb(139, 99, 108)\",\n \"plum\": \"rgb(221, 160, 221)\",\n \"plum1\": \"rgb(255, 187, 255)\",\n \"plum2\": \"rgb(238, 174, 238)\",\n \"plum3\": \"rgb(205, 150, 205)\",\n \"plum4\": \"rgb(139, 102, 139)\",\n \"powderblue\": \"rgb(176, 224, 230)\",\n \"purple\": \"rgb(160, 32, 240)\",\n \"purple1\": \"rgb(155, 48, 255)\",\n \"purple2\": \"rgb(145, 44, 238)\",\n \"purple3\": \"rgb(125, 38, 205)\",\n \"purple4\": \"rgb(85, 26, 139)\",\n \"red\": \"rgb(255, 0, 0)\",\n \"red1\": \"rgb(255, 0, 0)\",\n \"red2\": \"rgb(238, 0, 0)\",\n \"red3\": \"rgb(205, 0, 0)\",\n \"red4\": \"rgb(139, 0, 0)\",\n \"rosybrown\": \"rgb(188, 143, 143)\",\n \"rosybrown1\": \"rgb(255, 193, 193)\",\n \"rosybrown2\": \"rgb(238, 180, 180)\",\n \"rosybrown3\": \"rgb(205, 155, 155)\",\n \"rosybrown4\": \"rgb(139, 105, 105)\",\n \"royalblue\": \"rgb(65, 105, 225)\",\n \"royalblue1\": \"rgb(72, 118, 255)\",\n \"royalblue2\": \"rgb(67, 110, 238)\",\n \"royalblue3\": \"rgb(58, 95, 205)\",\n \"royalblue4\": \"rgb(39, 64, 139)\",\n \"saddlebrown\": \"rgb(139, 69, 19)\",\n \"salmon\": \"rgb(250, 128, 114)\",\n \"salmon1\": \"rgb(255, 140, 105)\",\n \"salmon2\": \"rgb(238, 130, 98)\",\n \"salmon3\": \"rgb(205, 112, 84)\",\n \"salmon4\": \"rgb(139, 76, 57)\",\n \"sandybrown\": \"rgb(244, 164, 96)\",\n \"seagreen\": \"rgb(46, 139, 87)\",\n \"seagreen1\": \"rgb(84, 255, 159)\",\n \"seagreen2\": \"rgb(78, 238, 148)\",\n \"seagreen3\": \"rgb(67, 205, 128)\",\n \"seagreen4\": \"rgb(46, 139, 87)\",\n \"seashell\": \"rgb(255, 245, 238)\",\n \"seashell1\": \"rgb(255, 245, 238)\",\n \"seashell2\": \"rgb(238, 229, 222)\",\n \"seashell3\": \"rgb(205, 197, 191)\",\n \"seashell4\": \"rgb(139, 134, 130)\",\n \"sienna\": \"rgb(160, 82, 45)\",\n \"sienna1\": \"rgb(255, 130, 71)\",\n \"sienna2\": \"rgb(238, 121, 66)\",\n \"sienna3\": \"rgb(205, 104, 57)\",\n \"sienna4\": \"rgb(139, 71, 38)\",\n \"skyblue\": \"rgb(135, 206, 235)\",\n \"skyblue1\": \"rgb(135, 206, 255)\",\n \"skyblue2\": \"rgb(126, 192, 238)\",\n \"skyblue3\": \"rgb(108, 166, 205)\",\n \"skyblue4\": \"rgb(74, 112, 139)\",\n \"slateblue\": \"rgb(106, 90, 205)\",\n \"slateblue1\": \"rgb(131, 111, 255)\",\n \"slateblue2\": \"rgb(122, 103, 238)\",\n \"slateblue3\": \"rgb(105, 89, 205)\",\n \"slateblue4\": \"rgb(71, 60, 139)\",\n \"slategray\": \"rgb(112, 128, 144)\",\n \"slategray1\": \"rgb(198, 226, 255)\",\n \"slategray2\": \"rgb(185, 211, 238)\",\n \"slategray3\": \"rgb(159, 182, 205)\",\n \"slategray4\": \"rgb(108, 123, 139)\",\n \"slategrey\": \"rgb(112, 128, 144)\",\n \"snow\": \"rgb(255, 250, 250)\",\n \"snow1\": \"rgb(255, 250, 250)\",\n \"snow2\": \"rgb(238, 233, 233)\",\n \"snow3\": \"rgb(205, 201, 201)\",\n \"snow4\": \"rgb(139, 137, 137)\",\n \"springgreen\": \"rgb(0, 255, 127)\",\n \"springgreen1\": \"rgb(0, 255, 127)\",\n \"springgreen2\": \"rgb(0, 238, 118)\",\n \"springgreen3\": \"rgb(0, 205, 102)\",\n \"springgreen4\": \"rgb(0, 139, 69)\",\n \"steelblue\": \"rgb(70, 130, 180)\",\n \"steelblue1\": \"rgb(99, 184, 255)\",\n \"steelblue2\": \"rgb(92, 172, 238)\",\n \"steelblue3\": \"rgb(79, 148, 205)\",\n \"steelblue4\": \"rgb(54, 100, 139)\",\n \"tan\": \"rgb(210, 180, 140)\",\n \"tan1\": \"rgb(255, 165, 79)\",\n \"tan2\": \"rgb(238, 154, 73)\",\n \"tan3\": \"rgb(205, 133, 63)\",\n \"tan4\": \"rgb(139, 90, 43)\",\n \"thistle\": \"rgb(216, 191, 216)\",\n \"thistle1\": \"rgb(255, 225, 255)\",\n \"thistle2\": \"rgb(238, 210, 238)\",\n \"thistle3\": \"rgb(205, 181, 205)\",\n \"thistle4\": \"rgb(139, 123, 139)\",\n \"tomato\": \"rgb(255, 99, 71)\",\n \"tomato1\": \"rgb(255, 99, 71)\",\n \"tomato2\": \"rgb(238, 92, 66)\",\n \"tomato3\": \"rgb(205, 79, 57)\",\n \"tomato4\": \"rgb(139, 54, 38)\",\n \"turquoise\": \"rgb(64, 224, 208)\",\n \"turquoise1\": \"rgb(0, 245, 255)\",\n \"turquoise2\": \"rgb(0, 229, 238)\",\n \"turquoise3\": \"rgb(0, 197, 205)\",\n \"turquoise4\": \"rgb(0, 134, 139)\",\n \"violet\": \"rgb(238, 130, 238)\",\n \"violetred\": \"rgb(208, 32, 144)\",\n \"violetred1\": \"rgb(255, 62, 150)\",\n \"violetred2\": \"rgb(238, 58, 140)\",\n \"violetred3\": \"rgb(205, 50, 120)\",\n \"violetred4\": \"rgb(139, 34, 82)\",\n \"wheat\": \"rgb(245, 222, 179)\",\n \"wheat1\": \"rgb(255, 231, 186)\",\n \"wheat2\": \"rgb(238, 216, 174)\",\n \"wheat3\": \"rgb(205, 186, 150)\",\n \"wheat4\": \"rgb(139, 126, 102)\",\n \"white\": \"rgb(255, 255, 255)\",\n \"whitesmoke\": \"rgb(245, 245, 245)\",\n \"yellow\": \"rgb(255, 255, 0)\",\n \"yellow1\": \"rgb(255, 255, 0)\",\n \"yellow2\": \"rgb(238, 238, 0)\",\n \"yellow3\": \"rgb(205, 205, 0)\",\n \"yellow4\": \"rgb(139, 139, 0)\",\n \"yellowgreen\": \"rgb(154, 205, 50)\"\n};\n// SOURCE FILE: libdot/js/lib_f.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Grab bag of utility functions.\n */\nlib.f = {};\n\n/**\n * Create a unique enum value.\n *\n * @suppress {lintChecks}\n * @param {string} name A human friendly name for debugging.\n * @return {Object} A unique enum that won't compare equal to anything else.\n */\nlib.f.createEnum = function(name) {\n // We use a String object as nothing else should be using them -- we want to\n // use string primitives normally. But debuggers will include our name.\n return new String(name);\n};\n\n/**\n * Replace variable references in a string.\n *\n * Variables are of the form %FUNCTION(VARNAME). FUNCTION is an optional\n * escape function to apply to the value.\n *\n * For example\n * lib.f.replaceVars(\"%(greeting), %encodeURIComponent(name)\",\n * { greeting: \"Hello\",\n * name: \"Google+\" });\n *\n * Will result in \"Hello, Google%2B\".\n */\nlib.f.replaceVars = function(str, vars) {\n return str.replace(/%([a-z]*)\\(([^\\)]+)\\)/gi, function(match, fn, varname) {\n if (typeof vars[varname] == 'undefined')\n throw 'Unknown variable: ' + varname;\n\n var rv = vars[varname];\n\n if (fn in lib.f.replaceVars.functions) {\n rv = lib.f.replaceVars.functions[fn](rv);\n } else if (fn) {\n throw 'Unknown escape function: ' + fn;\n }\n\n return rv;\n });\n};\n\n/**\n * Functions that can be used with replaceVars.\n *\n * Clients can add to this list to extend lib.f.replaceVars().\n */\nlib.f.replaceVars.functions = {\n encodeURI: encodeURI,\n encodeURIComponent: encodeURIComponent,\n escapeHTML: function(str) {\n var map = {\n '<': '<',\n '>': '>',\n '&': '&',\n '\"': '"',\n \"'\": '''\n };\n\n return str.replace(/[<>&\\\"\\']/g, function(m) { return map[m] });\n }\n};\n\n/**\n * Get the list of accepted UI languages.\n *\n * @param {function(Array)} callback Function to invoke with the results. The\n * parameter is a list of locale names.\n */\nlib.f.getAcceptLanguages = function(callback) {\n if (lib.f.getAcceptLanguages.chromeSupported()) {\n chrome.i18n.getAcceptLanguages(callback);\n } else {\n setTimeout(function() {\n callback([navigator.language.replace(/-/g, '_')]);\n }, 0);\n }\n};\n\nlib.f.getAcceptLanguages.chromeSupported = function() {\n return window.chrome && chrome.i18n;\n};\n\n/**\n * Parse a query string into a hash.\n *\n * This takes a url query string in the form 'name1=value&name2=value' and\n * converts it into an object of the form { name1: 'value', name2: 'value' }.\n * If a given name appears multiple times in the query string, only the\n * last value will appear in the result.\n *\n * Names and values are passed through decodeURIComponent before being added\n * to the result object.\n *\n * @param {string} queryString The string to parse. If it starts with a\n * leading '?', the '?' will be ignored.\n */\nlib.f.parseQuery = function(queryString) {\n if (queryString.startsWith('?'))\n queryString = queryString.substr(1);\n\n var rv = {};\n\n var pairs = queryString.split('&');\n for (var i = 0; i < pairs.length; i++) {\n var pair = pairs[i].split('=');\n rv[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]);\n }\n\n return rv;\n};\n\nlib.f.getURL = function(path) {\n if (lib.f.getURL.chromeSupported())\n return chrome.runtime.getURL(path);\n\n return path;\n};\n\nlib.f.getURL.chromeSupported = function() {\n return window.chrome && chrome.runtime && chrome.runtime.getURL;\n};\n\n/**\n * Clamp a given integer to a specified range.\n *\n * @param {integer} v The value to be clamped.\n * @param {integer} min The minimum acceptable value.\n * @param {integer} max The maximum acceptable value.\n */\nlib.f.clamp = function(v, min, max) {\n if (v < min)\n return min;\n if (v > max)\n return max;\n return v;\n};\n\n/**\n * Left pad a number to a given length with leading zeros.\n *\n * @param {string|integer} number The number to pad.\n * @param {integer} length The desired length.\n * @return {string} The padded number as a string.\n */\nlib.f.zpad = function(number, length) {\n return String(number).padStart(length, '0');\n};\n\n/**\n * Return a string containing a given number of space characters.\n *\n * This method maintains a static cache of the largest amount of whitespace\n * ever requested. It shouldn't be used to generate an insanely huge amount of\n * whitespace.\n *\n * @param {integer} length The desired amount of whitespace.\n * @param {string} A string of spaces of the requested length.\n */\nlib.f.getWhitespace = function(length) {\n if (length <= 0)\n return '';\n\n var f = this.getWhitespace;\n if (!f.whitespace)\n f.whitespace = ' ';\n\n while (length > f.whitespace.length) {\n f.whitespace += f.whitespace;\n }\n\n return f.whitespace.substr(0, length);\n};\n\n /**\n * Ensure that a function is called within a certain time limit.\n *\n * Simple usage looks like this...\n *\n * lib.registerInit(lib.f.alarm(onInit));\n *\n * This will log a warning to the console if onInit() is not invoked within\n * 5 seconds.\n *\n * If you're performing some operation that may take longer than 5 seconds you\n * can pass a duration in milliseconds as the optional second parameter.\n *\n * If you pass a string identifier instead of a callback function, you'll get a\n * wrapper generator rather than a single wrapper. Each call to the\n * generator will return a wrapped version of the callback wired to\n * a shared timeout. This is for cases where you want to ensure that at least\n * one of a set of callbacks is invoked before a timeout expires.\n *\n * var alarm = lib.f.alarm('fetch object');\n * lib.foo.fetchObject(alarm(onSuccess), alarm(onFailure));\n *\n * @param {function(*)} callback The function to wrap in an alarm.\n * @param {int} opt_ms Optional number of milliseconds to wait before raising\n * an alarm. Default is 5000 (5 seconds).\n * @return {function} If callback is a function then the return value will be\n * the wrapped callback. If callback is a string then the return value will\n * be a function that generates new wrapped callbacks.\n */\nlib.f.alarm = function(callback, opt_ms) {\n var ms = opt_ms || 5 * 1000;\n var stack = lib.f.getStack(1);\n\n return (function() {\n // This outer function is called immediately. It's here to capture a new\n // scope for the timeout variable.\n\n // The 'timeout' variable is shared by this timeout function, and the\n // callback wrapper.\n var timeout = setTimeout(function() {\n var name = (typeof callback == 'string') ? name : callback.name;\n name = name ? (': ' + name) : '';\n console.warn('lib.f.alarm: timeout expired: ' + (ms / 1000) + 's' + name);\n console.log(stack);\n timeout = null;\n }, ms);\n\n var wrapperGenerator = function(callback) {\n return function() {\n if (timeout) {\n clearTimeout(timeout);\n timeout = null;\n }\n\n return callback.apply(null, arguments);\n }\n };\n\n if (typeof callback == 'string')\n return wrapperGenerator;\n\n return wrapperGenerator(callback);\n })();\n};\n\n/**\n * Return the current call stack after skipping a given number of frames.\n *\n * This method is intended to be used for debugging only. It returns an\n * Object instead of an Array, because the console stringifies arrays by\n * default and that's not what we want.\n *\n * A typical call might look like...\n *\n * console.log('Something wicked this way came', lib.f.getStack());\n * // Notice the comma ^\n *\n * This would print the message to the js console, followed by an object\n * which can be clicked to reveal the stack.\n *\n * @param {number} opt_ignoreFrames The optional number of stack frames to\n * ignore. The actual 'getStack' call is always ignored.\n */\nlib.f.getStack = function(opt_ignoreFrames) {\n var ignoreFrames = opt_ignoreFrames ? opt_ignoreFrames + 2 : 2;\n\n var stackArray;\n\n try {\n throw new Error();\n } catch (ex) {\n stackArray = ex.stack.split('\\n');\n }\n\n var stackObject = {};\n for (var i = ignoreFrames; i < stackArray.length; i++) {\n stackObject[i - ignoreFrames] = stackArray[i].replace(/^\\s*at\\s+/, '');\n }\n\n return stackObject;\n};\n\n/**\n * Divides the two numbers and floors the results, unless the remainder is less\n * than an incredibly small value, in which case it returns the ceiling.\n * This is useful when the number are truncated approximations of longer\n * values, and so doing division with these numbers yields a result incredibly\n * close to a whole number.\n *\n * @param {number} numerator\n * @param {number} denominator\n * @return {number}\n */\nlib.f.smartFloorDivide = function(numerator, denominator) {\n var val = numerator / denominator;\n var ceiling = Math.ceil(val);\n if (ceiling - val < .0001) {\n return ceiling;\n } else {\n return Math.floor(val);\n }\n};\n\n/**\n * Get a random integer in a range (inclusive).\n *\n * @param {number} min The lowest integer in the range.\n * @param {number} max The highest integer in the range.\n * @return {number} A random number between min & max.\n */\nlib.f.randomInt = function(min, max) {\n return Math.floor(Math.random() * (max - min + 1)) + min;\n};\n// SOURCE FILE: libdot/js/lib_message_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * MessageManager class handles internationalized strings.\n *\n * Note: chrome.i18n isn't sufficient because...\n * 1. There's a bug in chrome that makes it unavailable in iframes:\n * https://crbug.com/130200\n * 2. The client code may not be packaged in a Chrome extension.\n * 3. The client code may be part of a library packaged in a third-party\n * Chrome extension.\n *\n * @param {Array} languages List of languages to load, in the order they\n * should be loaded. Newer messages replace older ones. 'en' is\n * automatically added as the first language if it is not already present.\n */\nlib.MessageManager = function(languages) {\n this.languages_ = languages.map(\n function(el) { return el.replace(/-/g, '_') });\n\n if (this.languages_.indexOf('en') == -1)\n this.languages_.unshift('en');\n\n this.messages = {};\n};\n\n/**\n * Add message definitions to the message manager.\n *\n * This takes an object of the same format of a Chrome messages.json file. See\n * .\n */\nlib.MessageManager.prototype.addMessages = function(defs) {\n for (var key in defs) {\n var def = defs[key];\n\n if (!def.placeholders) {\n this.messages[key] = def.message;\n } else {\n // Replace \"$NAME$\" placeholders with \"$1\", etc.\n this.messages[key] = def.message.replace(\n /\\$([a-z][^\\s\\$]+)\\$/ig,\n function(m, name) {\n return defs[key].placeholders[name.toLowerCase()].content;\n });\n }\n }\n};\n\n/**\n * Load the first available language message bundle.\n *\n * @param {string} pattern A url pattern containing a \"$1\" where the locale\n * name should go.\n * @param {function(Array,Array)} onComplete Function to be called when loading\n * is complete. The two arrays are the list of successful and failed\n * locale names. If the first parameter is length 0, no locales were\n * loaded.\n */\nlib.MessageManager.prototype.findAndLoadMessages = function(\n pattern, onComplete) {\n var languages = this.languages_.concat();\n var loaded = [];\n var failed = [];\n\n function onLanguageComplete(state) {\n if (state) {\n loaded = languages.shift();\n } else {\n failed = languages.shift();\n }\n\n if (languages.length) {\n tryNextLanguage();\n } else {\n onComplete(loaded, failed);\n }\n }\n\n var tryNextLanguage = function() {\n this.loadMessages(this.replaceReferences(pattern, languages),\n onLanguageComplete.bind(this, true),\n onLanguageComplete.bind(this, false));\n }.bind(this);\n\n tryNextLanguage();\n};\n\n/**\n * Load messages from a messages.json file.\n */\nlib.MessageManager.prototype.loadMessages = function(\n url, onSuccess, opt_onError) {\n var xhr = new XMLHttpRequest();\n\n xhr.onloadend = function() {\n if (xhr.status != 200) {\n if (opt_onError)\n opt_onError(xhr.status);\n\n return;\n }\n\n this.addMessages(JSON.parse(xhr.responseText));\n onSuccess();\n }.bind(this);\n\n xhr.open('GET', url);\n xhr.send();\n};\n\n/**\n * Replace $1...$n references with the elements of the args array.\n *\n * @param {string} msg String containing the message and argument references.\n * @param {Array} args Array containing the argument values.\n */\nlib.MessageManager.replaceReferences = function(msg, args) {\n return msg.replace(/\\$(\\d+)/g, function (m, index) {\n return args[index - 1];\n });\n};\n\n/**\n * Per-instance copy of replaceReferences.\n */\nlib.MessageManager.prototype.replaceReferences =\n lib.MessageManager.replaceReferences;\n\n/**\n * Get a message by name, optionally replacing arguments too.\n *\n * @param {string} msgname String containing the name of the message to get.\n * @param {Array} opt_args Optional array containing the argument values.\n * @param {string} opt_default Optional value to return if the msgname is not\n * found. Returns the message name by default.\n */\nlib.MessageManager.prototype.get = function(msgname, opt_args, opt_default) {\n var message;\n\n if (msgname in this.messages) {\n message = this.messages[msgname];\n\n } else {\n if (window.chrome.i18n)\n message = chrome.i18n.getMessage(msgname);\n\n if (!message) {\n console.warn('Unknown message: ' + msgname);\n return (typeof opt_default == 'undefined') ? msgname : opt_default;\n }\n }\n\n if (!opt_args)\n return message;\n\n if (!(opt_args instanceof Array))\n opt_args = [opt_args];\n\n return this.replaceReferences(message, opt_args);\n};\n\n/**\n * Process all of the \"i18n\" html attributes found in a given dom fragment.\n *\n * The real work happens in processI18nAttribute.\n */\nlib.MessageManager.prototype.processI18nAttributes = function(dom) {\n var nodes = dom.querySelectorAll('[i18n]');\n\n for (var i = 0; i < nodes.length; i++)\n this.processI18nAttribute(nodes[i]);\n};\n\n/**\n * Process the \"i18n\" attribute in the specified node.\n *\n * The i18n attribute should contain a JSON object. The keys are taken to\n * be attribute names, and the values are message names.\n *\n * If the JSON object has a \"_\" (underscore) key, its value is used as the\n * textContent of the element.\n *\n * Message names can refer to other attributes on the same element with by\n * prefixing with a dollar sign. For example...\n *\n * \n *\n * The aria-label message name will be computed as \"SEND_BUTTON_ARIA_LABEL\".\n * Notice that the \"id\" attribute was appended to the target attribute, and\n * the result converted to UPPER_AND_UNDER style.\n */\nlib.MessageManager.prototype.processI18nAttribute = function(node) {\n // Convert the \"lower-and-dashes\" attribute names into\n // \"UPPER_AND_UNDER\" style.\n function thunk(str) { return str.replace(/-/g, '_').toUpperCase() }\n\n var i18n = node.getAttribute('i18n');\n if (!i18n)\n return;\n\n try {\n i18n = JSON.parse(i18n);\n } catch (ex) {\n console.error('Can\\'t parse ' + node.tagName + '#' + node.id + ': ' + i18n);\n throw ex;\n }\n\n // Load all the messages specified in the i18n attributes.\n for (var key in i18n) {\n // The node attribute we'll be setting.\n var attr = key;\n\n var msgname = i18n[key];\n // For \"=foo\", re-use the referenced message name.\n if (msgname.startsWith('=')) {\n key = msgname.substr(1);\n msgname = i18n[key];\n }\n\n // For \"$foo\", calculate the message name.\n if (msgname.startsWith('$'))\n msgname = thunk(node.getAttribute(msgname.substr(1)) + '_' + key);\n\n // Finally load the message.\n var msg = this.get(msgname);\n if (attr == '_')\n node.textContent = msg;\n else\n node.setAttribute(attr, msg);\n }\n};\n// SOURCE FILE: libdot/js/lib_preference_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Constructor for lib.PreferenceManager objects.\n *\n * These objects deal with persisting changes to stable storage and notifying\n * consumers when preferences change.\n *\n * It is intended that the backing store could be something other than HTML5\n * storage, but there aren't any use cases at the moment. In the future there\n * may be a chrome api to store sync-able name/value pairs, and we'd want\n * that.\n *\n * @param {lib.Storage.*} storage The storage object to use as a backing\n * store.\n * @param {string} opt_prefix The optional prefix to be used for all preference\n * names. The '/' character should be used to separate levels of hierarchy,\n * if you're going to have that kind of thing. If provided, the prefix\n * should start with a '/'. If not provided, it defaults to '/'.\n */\nlib.PreferenceManager = function(storage, opt_prefix) {\n this.storage = storage;\n this.storageObserver_ = this.onStorageChange_.bind(this);\n\n this.isActive_ = false;\n this.activate();\n\n this.trace = false;\n\n var prefix = opt_prefix || '/';\n if (!prefix.endsWith('/'))\n prefix += '/';\n\n this.prefix = prefix;\n\n this.prefRecords_ = {};\n this.globalObservers_ = [];\n\n this.childFactories_ = {};\n\n // Map of list-name to {map of child pref managers}\n // As in...\n //\n // this.childLists_ = {\n // 'profile-ids': {\n // 'one': PreferenceManager,\n // 'two': PreferenceManager,\n // ...\n // },\n //\n // 'frob-ids': {\n // ...\n // }\n // }\n this.childLists_ = {};\n};\n\n/**\n * Used internally to indicate that the current value of the preference should\n * be taken from the default value defined with the preference.\n *\n * Equality tests against this value MUST use '===' or '!==' to be accurate.\n */\nlib.PreferenceManager.prototype.DEFAULT_VALUE = lib.f.createEnum('DEFAULT');\n\n/**\n * An individual preference.\n *\n * These objects are managed by the PreferenceManager, you shouldn't need to\n * handle them directly.\n */\nlib.PreferenceManager.Record = function(name, defaultValue) {\n this.name = name;\n this.defaultValue = defaultValue;\n this.currentValue = this.DEFAULT_VALUE;\n this.observers = [];\n};\n\n/**\n * A local copy of the DEFAULT_VALUE constant to make it less verbose.\n */\nlib.PreferenceManager.Record.prototype.DEFAULT_VALUE =\n lib.PreferenceManager.prototype.DEFAULT_VALUE;\n\n/**\n * Register a callback to be invoked when this preference changes.\n *\n * @param {function(value, string, lib.PreferenceManager} observer The function\n * to invoke. It will receive the new value, the name of the preference,\n * and a reference to the PreferenceManager as parameters.\n */\nlib.PreferenceManager.Record.prototype.addObserver = function(observer) {\n this.observers.push(observer);\n};\n\n/**\n * Unregister an observer callback.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.PreferenceManager.Record.prototype.removeObserver = function(observer) {\n var i = this.observers.indexOf(observer);\n if (i >= 0)\n this.observers.splice(i, 1);\n};\n\n/**\n * Fetch the value of this preference.\n */\nlib.PreferenceManager.Record.prototype.get = function() {\n if (this.currentValue === this.DEFAULT_VALUE) {\n if (/^(string|number)$/.test(typeof this.defaultValue))\n return this.defaultValue;\n\n if (typeof this.defaultValue == 'object') {\n // We want to return a COPY of the default value so that users can\n // modify the array or object without changing the default value.\n return JSON.parse(JSON.stringify(this.defaultValue));\n }\n\n return this.defaultValue;\n }\n\n return this.currentValue;\n};\n\n/**\n * Stop this preference manager from tracking storage changes.\n *\n * Call this if you're going to swap out one preference manager for another so\n * that you don't get notified about irrelevant changes.\n */\nlib.PreferenceManager.prototype.deactivate = function() {\n if (!this.isActive_)\n throw new Error('Not activated');\n\n this.isActive_ = false;\n this.storage.removeObserver(this.storageObserver_);\n};\n\n/**\n * Start tracking storage changes.\n *\n * If you previously deactivated this preference manager, you can reactivate it\n * with this method. You don't need to call this at initialization time, as\n * it's automatically called as part of the constructor.\n */\nlib.PreferenceManager.prototype.activate = function() {\n if (this.isActive_)\n throw new Error('Already activated');\n\n this.isActive_ = true;\n this.storage.addObserver(this.storageObserver_);\n};\n\n/**\n * Read the backing storage for these preferences.\n *\n * You should do this once at initialization time to prime the local cache\n * of preference values. The preference manager will monitor the backing\n * storage for changes, so you should not need to call this more than once.\n *\n * This function recursively reads storage for all child preference managers as\n * well.\n *\n * This function is asynchronous, if you need to read preference values, you\n * *must* wait for the callback.\n *\n * @param {function()} opt_callback Optional function to invoke when the read\n * has completed.\n */\nlib.PreferenceManager.prototype.readStorage = function(opt_callback) {\n var pendingChildren = 0;\n\n function onChildComplete() {\n if (--pendingChildren == 0 && opt_callback)\n opt_callback();\n }\n\n var keys = Object.keys(this.prefRecords_).map(\n function(el) { return this.prefix + el }.bind(this));\n\n if (this.trace)\n console.log('Preferences read: ' + this.prefix);\n\n this.storage.getItems(keys, function(items) {\n var prefixLength = this.prefix.length;\n\n for (var key in items) {\n var value = items[key];\n var name = key.substr(prefixLength);\n var needSync = (name in this.childLists_ &&\n (JSON.stringify(value) !=\n JSON.stringify(this.prefRecords_[name].currentValue)));\n\n this.prefRecords_[name].currentValue = value;\n\n if (needSync) {\n pendingChildren++;\n this.syncChildList(name, onChildComplete);\n }\n }\n\n if (pendingChildren == 0 && opt_callback)\n setTimeout(opt_callback);\n }.bind(this));\n};\n\n/**\n * Define a preference.\n *\n * This registers a name, default value, and onChange handler for a preference.\n *\n * @param {string} name The name of the preference. This will be prefixed by\n * the prefix of this PreferenceManager before written to local storage.\n * @param {string|number|boolean|Object|Array|null} value The default value of\n * this preference. Anything that can be represented in JSON is a valid\n * default value.\n * @param {function(value, string, lib.PreferenceManager} opt_observer A\n * function to invoke when the preference changes. It will receive the new\n * value, the name of the preference, and a reference to the\n * PreferenceManager as parameters.\n */\nlib.PreferenceManager.prototype.definePreference = function(\n name, value, opt_onChange) {\n\n var record = this.prefRecords_[name];\n if (record) {\n this.changeDefault(name, value);\n } else {\n record = this.prefRecords_[name] =\n new lib.PreferenceManager.Record(name, value);\n }\n\n if (opt_onChange)\n record.addObserver(opt_onChange);\n};\n\n/**\n * Define multiple preferences with a single function call.\n *\n * @param {Array} defaults An array of 3-element arrays. Each three element\n * array should contain the [key, value, onChange] parameters for a\n * preference.\n */\nlib.PreferenceManager.prototype.definePreferences = function(defaults) {\n for (var i = 0; i < defaults.length; i++) {\n this.definePreference(defaults[i][0], defaults[i][1], defaults[i][2]);\n }\n};\n\n/**\n * Define an ordered list of child preferences.\n *\n * Child preferences are different from just storing an array of JSON objects\n * in that each child is an instance of a preference manager. This means you\n * can observe changes to individual child preferences, and get some validation\n * that you're not reading or writing to an undefined child preference value.\n *\n * @param {string} listName A name for the list of children. This must be\n * unique in this preference manager. The listName will become a\n * preference on this PreferenceManager used to store the ordered list of\n * child ids. It is also used in get/add/remove operations to identify the\n * list of children to operate on.\n * @param {function} childFactory A function that will be used to generate\n * instances of these children. The factory function will receive the\n * parent lib.PreferenceManager object and a unique id for the new child\n * preferences.\n */\nlib.PreferenceManager.prototype.defineChildren = function(\n listName, childFactory) {\n\n // Define a preference to hold the ordered list of child ids.\n this.definePreference(listName, [],\n this.onChildListChange_.bind(this, listName));\n this.childFactories_[listName] = childFactory;\n this.childLists_[listName] = {};\n};\n\n/**\n * Register to observe preference changes.\n *\n * @param {Function} global A callback that will happen for every preference.\n * Pass null if you don't need one.\n * @param {Object} map A map of preference specific callbacks. Pass null if\n * you don't need any.\n */\nlib.PreferenceManager.prototype.addObservers = function(global, map) {\n if (global && typeof global != 'function')\n throw new Error('Invalid param: globals');\n\n if (global)\n this.globalObservers_.push(global);\n\n if (!map)\n return;\n\n for (var name in map) {\n if (!(name in this.prefRecords_))\n throw new Error('Unknown preference: ' + name);\n\n this.prefRecords_[name].addObserver(map[name]);\n }\n};\n\n/**\n * Dispatch the change observers for all known preferences.\n *\n * It may be useful to call this after readStorage completes, in order to\n * get application state in sync with user preferences.\n *\n * This can be used if you've changed a preference manager out from under\n * a live object, for example when switching to a different prefix.\n */\nlib.PreferenceManager.prototype.notifyAll = function() {\n for (var name in this.prefRecords_) {\n this.notifyChange_(name);\n }\n};\n\n/**\n * Notify the change observers for a given preference.\n *\n * @param {string} name The name of the preference that changed.\n */\nlib.PreferenceManager.prototype.notifyChange_ = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n var currentValue = record.get();\n\n for (var i = 0; i < this.globalObservers_.length; i++)\n this.globalObservers_[i](name, currentValue);\n\n for (var i = 0; i < record.observers.length; i++) {\n record.observers[i](currentValue, name, this);\n }\n};\n\n/**\n * Create a new child PreferenceManager for the given child list.\n *\n * The optional hint parameter is an opaque prefix added to the auto-generated\n * unique id for this child. Your child factory can parse out the prefix\n * and use it.\n *\n * @param {string} listName The child list to create the new instance from.\n * @param {string} opt_hint Optional hint to include in the child id.\n * @param {string} opt_id Optional id to override the generated id.\n */\nlib.PreferenceManager.prototype.createChild = function(listName, opt_hint,\n opt_id) {\n var ids = this.get(listName);\n var id;\n\n if (opt_id) {\n id = opt_id;\n if (ids.indexOf(id) != -1)\n throw new Error('Duplicate child: ' + listName + ': ' + id);\n\n } else {\n // Pick a random, unique 4-digit hex identifier for the new profile.\n while (!id || ids.indexOf(id) != -1) {\n id = lib.f.randomInt(1, 0xffff).toString(16);\n id = lib.f.zpad(id, 4);\n if (opt_hint)\n id = opt_hint + ':' + id;\n }\n }\n\n var childManager = this.childFactories_[listName](this, id);\n childManager.trace = this.trace;\n childManager.resetAll();\n\n this.childLists_[listName][id] = childManager;\n\n ids.push(id);\n this.set(listName, ids);\n\n return childManager;\n};\n\n/**\n * Remove a child preferences instance.\n *\n * Removes a child preference manager and clears any preferences stored in it.\n *\n * @param {string} listName The name of the child list containing the child to\n * remove.\n * @param {string} id The child ID.\n */\nlib.PreferenceManager.prototype.removeChild = function(listName, id) {\n var prefs = this.getChild(listName, id);\n prefs.resetAll();\n\n var ids = this.get(listName);\n var i = ids.indexOf(id);\n if (i != -1) {\n ids.splice(i, 1);\n this.set(listName, ids);\n }\n\n delete this.childLists_[listName][id];\n};\n\n/**\n * Return a child PreferenceManager instance for a given id.\n *\n * If the child list or child id is not known this will return the specified\n * default value or throw an exception if no default value is provided.\n *\n * @param {string} listName The child list to look in.\n * @param {string} id The child ID.\n * @param {*} opt_default The optional default value to return if the child\n * is not found.\n */\nlib.PreferenceManager.prototype.getChild = function(listName, id, opt_default) {\n if (!(listName in this.childLists_))\n throw new Error('Unknown child list: ' + listName);\n\n var childList = this.childLists_[listName];\n if (!(id in childList)) {\n if (typeof opt_default == 'undefined')\n throw new Error('Unknown \"' + listName + '\" child: ' + id);\n\n return opt_default;\n }\n\n return childList[id];\n};\n\n/**\n * Calculate the difference between two lists of child ids.\n *\n * Given two arrays of child ids, this function will return an object\n * with \"added\", \"removed\", and \"common\" properties. Each property is\n * a map of child-id to `true`. For example, given...\n *\n * a = ['child-x', 'child-y']\n * b = ['child-y']\n *\n * diffChildLists(a, b) =>\n * { added: { 'child-x': true }, removed: {}, common: { 'child-y': true } }\n *\n * The added/removed properties assume that `a` is the current list.\n *\n * @param {Array[string]} a The most recent list of child ids.\n * @param {Array[string]} b An older list of child ids.\n * @return {Object} An object with added/removed/common properties.\n */\nlib.PreferenceManager.diffChildLists = function(a, b) {\n var rv = {\n added: {},\n removed: {},\n common: {},\n };\n\n for (var i = 0; i < a.length; i++) {\n if (b.indexOf(a[i]) != -1) {\n rv.common[a[i]] = true;\n } else {\n rv.added[a[i]] = true;\n }\n }\n\n for (var i = 0; i < b.length; i++) {\n if ((b[i] in rv.added) || (b[i] in rv.common))\n continue;\n\n rv.removed[b[i]] = true;\n }\n\n return rv;\n};\n\n/**\n * Synchronize a list of child PreferenceManagers instances with the current\n * list stored in prefs.\n *\n * This will instantiate any missing managers and read current preference values\n * from storage. Any active managers that no longer appear in preferences will\n * be deleted.\n *\n * @param {string} listName The child list to synchronize.\n * @param {function()} opt_callback Optional function to invoke when the sync\n * is complete.\n */\nlib.PreferenceManager.prototype.syncChildList = function(\n listName, opt_callback) {\n\n var pendingChildren = 0;\n function onChildStorage() {\n if (--pendingChildren == 0 && opt_callback)\n opt_callback();\n }\n\n // The list of child ids that we *should* have a manager for.\n var currentIds = this.get(listName);\n\n // The known managers at the start of the sync. Any manager still in this\n // list at the end should be discarded.\n var oldIds = Object.keys(this.childLists_[listName]);\n\n var rv = lib.PreferenceManager.diffChildLists(currentIds, oldIds);\n\n for (var i = 0; i < currentIds.length; i++) {\n var id = currentIds[i];\n\n var managerIndex = oldIds.indexOf(id);\n if (managerIndex >= 0)\n oldIds.splice(managerIndex, 1);\n\n if (!this.childLists_[listName][id]) {\n var childManager = this.childFactories_[listName](this, id);\n if (!childManager) {\n console.warn('Unable to restore child: ' + listName + ': ' + id);\n continue;\n }\n\n childManager.trace = this.trace;\n this.childLists_[listName][id] = childManager;\n pendingChildren++;\n childManager.readStorage(onChildStorage);\n }\n }\n\n for (var i = 0; i < oldIds.length; i++) {\n delete this.childLists_[listName][oldIds[i]];\n }\n\n if (!pendingChildren && opt_callback)\n setTimeout(opt_callback);\n};\n\n/**\n * Reset a preference to its default state.\n *\n * This will dispatch the onChange handler if the preference value actually\n * changes.\n *\n * @param {string} name The preference to reset.\n */\nlib.PreferenceManager.prototype.reset = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n this.storage.removeItem(this.prefix + name);\n\n if (record.currentValue !== this.DEFAULT_VALUE) {\n record.currentValue = this.DEFAULT_VALUE;\n this.notifyChange_(name);\n }\n};\n\n/**\n * Reset all preferences back to their default state.\n */\nlib.PreferenceManager.prototype.resetAll = function() {\n var changed = [];\n\n for (var listName in this.childLists_) {\n var childList = this.childLists_[listName];\n for (var id in childList) {\n childList[id].resetAll();\n }\n }\n\n for (var name in this.prefRecords_) {\n if (this.prefRecords_[name].currentValue !== this.DEFAULT_VALUE) {\n this.prefRecords_[name].currentValue = this.DEFAULT_VALUE;\n changed.push(name);\n }\n }\n\n var keys = Object.keys(this.prefRecords_).map(function(el) {\n return this.prefix + el;\n }.bind(this));\n\n this.storage.removeItems(keys);\n\n changed.forEach(this.notifyChange_.bind(this));\n};\n\n/**\n * Return true if two values should be considered not-equal.\n *\n * If both values are the same scalar type and compare equal this function\n * returns false (no difference), otherwise return true.\n *\n * This is used in places where we want to check if a preference has changed.\n * Rather than take the time to compare complex values we just consider them\n * to always be different.\n *\n * @param {*} a A value to compare.\n * @param {*} b A value to compare.\n */\nlib.PreferenceManager.prototype.diff = function(a, b) {\n // If the types are different, or the type is not a simple primitive one.\n if ((typeof a) !== (typeof b) ||\n !(/^(undefined|boolean|number|string)$/.test(typeof a))) {\n return true;\n }\n\n return a !== b;\n};\n\n/**\n * Change the default value of a preference.\n *\n * This is useful when subclassing preference managers.\n *\n * The function does not alter the current value of the preference, unless\n * it has the old default value. When that happens, the change observers\n * will be notified.\n *\n * @param {string} name The name of the parameter to change.\n * @param {*} newValue The new default value for the preference.\n */\nlib.PreferenceManager.prototype.changeDefault = function(name, newValue) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n if (!this.diff(record.defaultValue, newValue)) {\n // Default value hasn't changed.\n return;\n }\n\n if (record.currentValue !== this.DEFAULT_VALUE) {\n // This pref has a specific value, just change the default and we're done.\n record.defaultValue = newValue;\n return;\n }\n\n record.defaultValue = newValue;\n\n this.notifyChange_(name);\n};\n\n/**\n * Change the default value of multiple preferences.\n *\n * @param {Object} map A map of name -> value pairs specifying the new default\n * values.\n */\nlib.PreferenceManager.prototype.changeDefaults = function(map) {\n for (var key in map) {\n this.changeDefault(key, map[key]);\n }\n};\n\n/**\n * Set a preference to a specific value.\n *\n * This will dispatch the onChange handler if the preference value actually\n * changes.\n *\n * @param {string} key The preference to set.\n * @param {*} value The value to set. Anything that can be represented in\n * JSON is a valid value.\n */\nlib.PreferenceManager.prototype.set = function(name, newValue) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n var oldValue = record.get();\n\n if (!this.diff(oldValue, newValue))\n return;\n\n if (this.diff(record.defaultValue, newValue)) {\n record.currentValue = newValue;\n this.storage.setItem(this.prefix + name, newValue);\n } else {\n record.currentValue = this.DEFAULT_VALUE;\n this.storage.removeItem(this.prefix + name);\n }\n\n // We need to manually send out the notification on this instance. If we\n // The storage event won't fire a notification because we've already changed\n // the currentValue, so it won't see a difference. If we delayed changing\n // currentValue until the storage event, a pref read immediately after a write\n // would return the previous value.\n //\n // The notification is in a timeout so clients don't accidentally depend on\n // a synchronous notification.\n setTimeout(this.notifyChange_.bind(this, name), 0);\n};\n\n/**\n * Get the value of a preference.\n *\n * @param {string} key The preference to get.\n */\nlib.PreferenceManager.prototype.get = function(name) {\n var record = this.prefRecords_[name];\n if (!record)\n throw new Error('Unknown preference: ' + name);\n\n return record.get();\n};\n\n/**\n * Return all non-default preferences as a JSON object.\n *\n * This includes any nested preference managers as well.\n */\nlib.PreferenceManager.prototype.exportAsJson = function() {\n var rv = {};\n\n for (var name in this.prefRecords_) {\n if (name in this.childLists_) {\n rv[name] = [];\n var childIds = this.get(name);\n for (var i = 0; i < childIds.length; i++) {\n var id = childIds[i];\n rv[name].push({id: id, json: this.getChild(name, id).exportAsJson()});\n }\n\n } else {\n var record = this.prefRecords_[name];\n if (record.currentValue != this.DEFAULT_VALUE)\n rv[name] = record.currentValue;\n }\n }\n\n return rv;\n};\n\n/**\n * Import a JSON blob of preferences previously generated with exportAsJson.\n *\n * This will create nested preference managers as well.\n */\nlib.PreferenceManager.prototype.importFromJson = function(json) {\n for (var name in json) {\n if (name in this.childLists_) {\n var childList = json[name];\n for (var i = 0; i < childList.length; i++) {\n var id = childList[i].id;\n\n var childPrefManager = this.childLists_[name][id];\n if (!childPrefManager)\n childPrefManager = this.createChild(name, null, id);\n\n childPrefManager.importFromJson(childList[i].json);\n }\n\n } else {\n this.set(name, json[name]);\n }\n }\n};\n\n/**\n * Called when one of the child list preferences changes.\n */\nlib.PreferenceManager.prototype.onChildListChange_ = function(listName) {\n this.syncChildList(listName);\n};\n\n/**\n * Called when a key in the storage changes.\n */\nlib.PreferenceManager.prototype.onStorageChange_ = function(map) {\n for (var key in map) {\n if (this.prefix) {\n if (key.lastIndexOf(this.prefix, 0) != 0)\n continue;\n }\n\n var name = key.substr(this.prefix.length);\n\n if (!(name in this.prefRecords_)) {\n // Sometimes we'll get notified about prefs that are no longer defined.\n continue;\n }\n\n var record = this.prefRecords_[name];\n\n var newValue = map[key].newValue;\n var currentValue = record.currentValue;\n if (currentValue === record.DEFAULT_VALUE)\n currentValue = (void 0);\n\n if (this.diff(currentValue, newValue)) {\n if (typeof newValue == 'undefined' || newValue === null) {\n record.currentValue = record.DEFAULT_VALUE;\n } else {\n record.currentValue = newValue;\n }\n\n this.notifyChange_(name);\n }\n }\n};\n// SOURCE FILE: libdot/js/lib_resource.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Storage for canned resources.\n *\n * These are usually non-JavaScript things that are collected during a build\n * step and converted into a series of 'lib.resource.add(...)' calls. See\n * the \"@resource\" directive from libdot/bin/concat.sh for the canonical use\n * case.\n *\n * This is global storage, so you should prefix your resource names to avoid\n * collisions.\n */\nlib.resource = {\n resources_: {}\n};\n\n/**\n * Add a resource.\n *\n * @param {string} name A name for the resource. You should prefix this to\n * avoid collisions with resources from a shared library.\n * @param {string} type A mime type for the resource, or \"raw\" if not\n * applicable.\n * @param {*} data The value of the resource.\n */\nlib.resource.add = function(name, type, data) {\n lib.resource.resources_[name] = {\n type: type,\n name: name,\n data: data\n };\n};\n\n/**\n * Retrieve a resource record.\n *\n * The resource data is stored on the \"data\" property of the returned object.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {object} An object with \"type\", \"name\", and \"data\" properties.\n */\nlib.resource.get = function(name, opt_defaultValue) {\n if (!(name in lib.resource.resources_)) {\n if (typeof opt_defaultValue == 'undefined')\n throw 'Unknown resource: ' + name;\n\n return opt_defaultValue;\n }\n\n return lib.resource.resources_[name];\n};\n\n/**\n * Retrieve resource data.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {*} The resource data.\n */\nlib.resource.getData = function(name, opt_defaultValue) {\n if (!(name in lib.resource.resources_)) {\n if (typeof opt_defaultValue == 'undefined')\n throw 'Unknown resource: ' + name;\n\n return opt_defaultValue;\n }\n\n return lib.resource.resources_[name].data;\n};\n\n/**\n * Retrieve resource as a data: url.\n *\n * @param {string} name The name of the resource to get.\n * @param {*} opt_defaultValue The optional value to return if the resource is\n * not defined.\n * @return {*} A data: url encoded version of the resource.\n */\nlib.resource.getDataUrl = function(name, opt_defaultValue) {\n var resource = lib.resource.get(name, opt_defaultValue);\n return 'data:' + resource.type + ',' + resource.data;\n};\n// SOURCE FILE: libdot/js/lib_storage.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Namespace for implementations of persistent, possibly cloud-backed\n * storage.\n */\nlib.Storage = new Object();\n// SOURCE FILE: libdot/js/lib_storage_chrome.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * chrome.storage based class with an async interface that is interchangeable\n * with other lib.Storage.* implementations.\n */\nlib.Storage.Chrome = function(storage) {\n this.storage_ = storage;\n this.observers_ = [];\n\n chrome.storage.onChanged.addListener(this.onChanged_.bind(this));\n};\n\n/**\n * Called by the storage implementation when the storage is modified.\n */\nlib.Storage.Chrome.prototype.onChanged_ = function(changes, areaname) {\n if (chrome.storage[areaname] != this.storage_)\n return;\n\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](changes);\n }\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Chrome.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Chrome.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Chrome.prototype.clear = function(opt_callback) {\n this.storage_.clear();\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Chrome.prototype.getItem = function(key, callback) {\n this.storage_.get(key, callback);\n};\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\n\nlib.Storage.Chrome.prototype.getItems = function(keys, callback) {\n this.storage_.get(keys, callback);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.setItem = function(key, value, opt_callback) {\n var obj = {};\n obj[key] = value;\n this.storage_.set(obj, opt_callback);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.setItems = function(obj, opt_callback) {\n this.storage_.set(obj, opt_callback);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.removeItem = function(key, opt_callback) {\n this.storage_.remove(key, opt_callback);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Chrome.prototype.removeItems = function(keys, opt_callback) {\n this.storage_.remove(keys, opt_callback);\n};\n// SOURCE FILE: libdot/js/lib_storage_local.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * window.localStorage based class with an async interface that is\n * interchangeable with other lib.Storage.* implementations.\n */\nlib.Storage.Local = function() {\n this.observers_ = [];\n this.storage_ = window.localStorage;\n window.addEventListener('storage', this.onStorage_.bind(this));\n};\n\n/**\n * Called by the storage implementation when the storage is modified.\n */\nlib.Storage.Local.prototype.onStorage_ = function(e) {\n if (e.storageArea != this.storage_)\n return;\n\n // JS throws an exception if JSON.parse is given an empty string. So here we\n // only parse if the value is truthy. This mean the empty string, undefined\n // and null will not be parsed.\n var prevValue = e.oldValue ? JSON.parse(e.oldValue) : e.oldValue;\n var curValue = e.newValue ? JSON.parse(e.newValue) : e.newValue;\n var o = {};\n o[e.key] = {\n oldValue: prevValue,\n newValue: curValue\n };\n\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](o);\n }\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Local.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Local.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Local.prototype.clear = function(opt_callback) {\n this.storage_.clear();\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Local.prototype.getItem = function(key, callback) {\n var value = this.storage_.getItem(key);\n\n if (typeof value == 'string') {\n try {\n value = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n }\n }\n\n setTimeout(callback.bind(null, value), 0);\n};\n\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\nlib.Storage.Local.prototype.getItems = function(keys, callback) {\n var rv = {};\n\n for (var i = keys.length - 1; i >= 0; i--) {\n var key = keys[i];\n var value = this.storage_.getItem(key);\n if (typeof value == 'string') {\n try {\n rv[key] = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n rv[key] = value;\n }\n } else {\n keys.splice(i, 1);\n }\n }\n\n setTimeout(callback.bind(null, rv), 0);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.setItem = function(key, value, opt_callback) {\n this.storage_.setItem(key, JSON.stringify(value));\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.setItems = function(obj, opt_callback) {\n for (var key in obj) {\n this.storage_.setItem(key, JSON.stringify(obj[key]));\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.removeItem = function(key, opt_callback) {\n this.storage_.removeItem(key);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Local.prototype.removeItems = function(ary, opt_callback) {\n for (var i = 0; i < ary.length; i++) {\n this.storage_.removeItem(ary[i]);\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n// SOURCE FILE: libdot/js/lib_storage_memory.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * In-memory storage class with an async interface that is interchangeable with\n * other lib.Storage.* implementations.\n */\nlib.Storage.Memory = function() {\n this.observers_ = [];\n this.storage_ = {};\n};\n\n/**\n * Register a function to observe storage changes.\n *\n * @param {function(map)} callback The function to invoke when the storage\n * changes.\n */\nlib.Storage.Memory.prototype.addObserver = function(callback) {\n this.observers_.push(callback);\n};\n\n/**\n * Unregister a change observer.\n *\n * @param {function} observer A previously registered callback.\n */\nlib.Storage.Memory.prototype.removeObserver = function(callback) {\n var i = this.observers_.indexOf(callback);\n if (i != -1)\n this.observers_.splice(i, 1);\n};\n\n/**\n * Delete everything in this storage.\n *\n * @param {function(map)} callback The function to invoke when the delete\n * has completed.\n */\nlib.Storage.Memory.prototype.clear = function(opt_callback) {\n var e = {};\n for (var key in this.storage_) {\n e[key] = {oldValue: this.storage_[key], newValue: (void 0)};\n }\n\n this.storage_ = {};\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this), 0);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Return the current value of a storage item.\n *\n * @param {string} key The key to look up.\n * @param {function(value) callback The function to invoke when the value has\n * been retrieved.\n */\nlib.Storage.Memory.prototype.getItem = function(key, callback) {\n var value = this.storage_[key];\n\n if (typeof value == 'string') {\n try {\n value = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n }\n }\n\n setTimeout(callback.bind(null, value), 0);\n};\n\n/**\n * Fetch the values of multiple storage items.\n *\n * @param {Array} keys The keys to look up.\n * @param {function(map) callback The function to invoke when the values have\n * been retrieved.\n */\nlib.Storage.Memory.prototype.getItems = function(keys, callback) {\n var rv = {};\n\n for (var i = keys.length - 1; i >= 0; i--) {\n var key = keys[i];\n var value = this.storage_[key];\n if (typeof value == 'string') {\n try {\n rv[key] = JSON.parse(value);\n } catch (e) {\n // If we can't parse the value, just return it unparsed.\n rv[key] = value;\n }\n } else {\n keys.splice(i, 1);\n }\n }\n\n setTimeout(callback.bind(null, rv), 0);\n};\n\n/**\n * Set a value in storage.\n *\n * @param {string} key The key for the value to be stored.\n * @param {*} value The value to be stored. Anything that can be serialized\n * with JSON is acceptable.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.setItem = function(key, value, opt_callback) {\n var oldValue = this.storage_[key];\n this.storage_[key] = JSON.stringify(value);\n\n var e = {};\n e[key] = {oldValue: oldValue, newValue: value};\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this), 0);\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Set multiple values in storage.\n *\n * @param {Object} map A map of key/values to set in storage.\n * @param {function()} opt_callback Optional function to invoke when the\n * set is complete. You don't have to wait for the set to complete in order\n * to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.setItems = function(obj, opt_callback) {\n var e = {};\n\n for (var key in obj) {\n e[key] = {oldValue: this.storage_[key], newValue: obj[key]};\n this.storage_[key] = JSON.stringify(obj[key]);\n }\n\n setTimeout(function() {\n for (var i = 0; i < this.observers_.length; i++) {\n this.observers_[i](e);\n }\n }.bind(this));\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove an item from storage.\n *\n * @param {string} key The key to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.removeItem = function(key, opt_callback) {\n delete this.storage_[key];\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n\n/**\n * Remove multiple items from storage.\n *\n * @param {Array} keys The keys to be removed.\n * @param {function()} opt_callback Optional function to invoke when the\n * remove is complete. You don't have to wait for the set to complete in\n * order to read the value, since the local cache is updated synchronously.\n */\nlib.Storage.Memory.prototype.removeItems = function(ary, opt_callback) {\n for (var i = 0; i < ary.length; i++) {\n delete this.storage_[ary[i]];\n }\n\n if (opt_callback)\n setTimeout(opt_callback, 0);\n};\n// SOURCE FILE: libdot/js/lib_test_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview JavaScript unit testing framework for synchronous and\n * asynchronous tests.\n *\n * This file contains the lib.TestManager and related classes. At the moment\n * it's all collected in a single file since it's reasonably small\n * (=~1k lines), and it's a lot easier to include one file into your test\n * harness than it is to include seven.\n *\n * The following classes are defined...\n *\n * lib.TestManager - The root class and entrypoint for creating test runs.\n * lib.TestManager.Log - Logging service.\n * lib.TestManager.Suite - A collection of tests.\n * lib.TestManager.Test - A single test.\n * lib.TestManager.TestRun - Manages the execution of a set of tests.\n * lib.TestManager.Result - A single test result.\n */\n\n/**\n * Root object in the unit test hierarchy, and keeper of the log object.\n *\n * @param {lib.TestManager.Log} opt_log Optional lib.TestManager.Log object.\n * Logs to the JavaScript console if omitted.\n */\nlib.TestManager = function(opt_log) {\n this.log = opt_log || new lib.TestManager.Log();\n}\n\n/**\n * Create a new test run object for this test manager.\n *\n * @param {Object} opt_cx An object to be passed to test suite setup(),\n * preamble(), and test cases during this test run. This object is opaque\n * to lib.TestManager.* code. It's entirely up to the test suite what it's\n * used for.\n */\nlib.TestManager.prototype.createTestRun = function(opt_cx) {\n return new lib.TestManager.TestRun(this, opt_cx);\n};\n\n/**\n * Called when a test run associated with this test manager completes.\n *\n * Clients may override this to call an appropriate function.\n */\nlib.TestManager.prototype.onTestRunComplete = function(testRun) {};\n\n/**\n * Called before a test associated with this test manager is run.\n *\n * @param {lib.TestManager.Result} result The result object for the upcoming\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.prototype.testPreamble = function(result, cx) {};\n\n/**\n * Called after a test associated with this test manager finishes.\n *\n * @param {lib.TestManager.Result} result The result object for the finished\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.prototype.testPostamble = function(result, cx) {};\n\n/**\n * Destination for test case output.\n *\n * Thw API will be the same as the console object. e.g. We support info(),\n * warn(), error(), etc... just like console.info(), etc...\n *\n * @param {Object} opt_console The console object to route all logging through.\n * Should provide saome API as the standard console API.\n */\nlib.TestManager.Log = function(opt_console=console) {\n this.save = false;\n this.data = '';\n this.prefix_ = '';\n this.prefixStack_ = 0;\n\n // Capture all the console entry points in case code at runtime calls these\n // directly. We want to be able to still see things.\n // We also expose the direct API to our callers (e.g. we provide warn()).\n this.console_ = opt_console;\n ['log', 'debug', 'info', 'warn', 'error'].forEach((level) => {\n let msgPrefix = '';\n switch (level) {\n case 'debug':\n case 'warn':\n case 'error':\n msgPrefix = level.toUpperCase() + ': ';\n break;\n }\n\n const oLog = this.console_[level];\n this[level] = this.console_[level] = (...args) => {\n if (this.save)\n this.data += this.prefix_ + msgPrefix + args.join(' ') + '\\n';\n oLog.apply(this.console_, args);\n };\n });\n\n // Wrap/bind the group functions.\n ['group', 'groupCollapsed'].forEach((group) => {\n const oGroup = this.console_[group];\n this[group] = this.console_[group] = (label='') => {\n oGroup(label);\n if (this.save)\n this.data += this.prefix_ + label + '\\n';\n this.prefix_ = ' '.repeat(++this.prefixStack_);\n };\n });\n\n const oGroupEnd = this.console_.groupEnd;\n this.groupEnd = this.console_.groupEnd = () => {\n oGroupEnd();\n this.prefix_ = ' '.repeat(--this.prefixStack_);\n };\n};\n\n/**\n * Returns a new constructor function that will inherit from\n * lib.TestManager.Suite.\n *\n * Use this function to create a new test suite subclass. It will return a\n * properly initialized constructor function for the subclass. You can then\n * override the setup() and preamble() methods if necessary and add test cases\n * to the subclass.\n *\n * var MyTests = new lib.TestManager.Suite('MyTests');\n *\n * MyTests.prototype.setup = function(cx) {\n * // Sets this.size to cx.size if it exists, or the default value of 10\n * // if not.\n * this.setDefault(cx, {size: 10});\n * };\n *\n * MyTests.prototype.preamble = function(result, cx) {\n * // Some tests (even successful ones) may side-effect this list, so\n * // recreate it before every test.\n * this.list = [];\n * for (var i = 0; i < this.size; i++) {\n * this.list[i] = i;\n * }\n * };\n *\n * // Basic synchronous test case.\n * MyTests.addTest('pop-length', function(result, cx) {\n * this.list.pop();\n *\n * // If this assertion fails, the testcase will stop here.\n * result.assertEQ(this.list.length, this.size - 1);\n *\n * // A test must indicate it has passed by calling this method.\n * result.pass();\n * });\n *\n * // Sample asynchronous test case.\n * MyTests.addTest('async-pop-length', function(result, cx) {\n * var self = this;\n *\n * var callback = function() {\n * result.assertEQ(self.list.length, self.size - 1);\n * result.pass();\n * };\n *\n * // Wait 100ms to check the array length for the sake of this example.\n * setTimeout(callback, 100);\n *\n * this.list.pop();\n *\n * // Indicate that this test needs another 200ms to complete.\n * // If the test does not report pass/fail by then, it is considered to\n * // have timed out.\n * result.requestTime(200);\n * });\n *\n * ...\n *\n * @param {string} suiteName The name of the test suite.\n */\nlib.TestManager.Suite = function(suiteName) {\n function ctor(testManager, cx) {\n this.testManager_ = testManager;\n this.suiteName = suiteName;\n\n this.setup(cx);\n }\n\n ctor.suiteName = suiteName;\n ctor.addTest = lib.TestManager.Suite.addTest;\n ctor.disableTest = lib.TestManager.Suite.disableTest;\n ctor.getTest = lib.TestManager.Suite.getTest;\n ctor.getTestList = lib.TestManager.Suite.getTestList;\n ctor.testList_ = [];\n ctor.testMap_ = {};\n ctor.prototype = Object.create(lib.TestManager.Suite.prototype);\n ctor.constructor = lib.TestManager.Suite;\n\n lib.TestManager.Suite.subclasses.push(ctor);\n\n return ctor;\n};\n\n/**\n * List of lib.TestManager.Suite subclasses, in the order they were defined.\n */\nlib.TestManager.Suite.subclasses = [];\n\n/**\n * Add a test to a lib.TestManager.Suite.\n *\n * This method is copied to new subclasses when they are created.\n */\nlib.TestManager.Suite.addTest = function(testName, testFunction) {\n if (testName in this.testMap_)\n throw 'Duplicate test name: ' + testName;\n\n var test = new lib.TestManager.Test(this, testName, testFunction);\n this.testMap_[testName] = test;\n this.testList_.push(test);\n};\n\n/**\n * Defines a disabled test.\n */\nlib.TestManager.Suite.disableTest = function(testName, testFunction) {\n if (testName in this.testMap_)\n throw 'Duplicate test name: ' + testName;\n\n var test = new lib.TestManager.Test(this, testName, testFunction);\n console.log('Disabled test: ' + test.fullName);\n};\n\n/**\n * Get a lib.TestManager.Test instance by name.\n *\n * This method is copied to new subclasses when they are created.\n *\n * @param {string} testName The name of the desired test.\n * @return {lib.TestManager.Test} The requested test, or undefined if it was not\n * found.\n */\nlib.TestManager.Suite.getTest = function(testName) {\n return this.testMap_[testName];\n};\n\n/**\n * Get an array of lib.TestManager.Tests associated with this Suite.\n *\n * This method is copied to new subclasses when they are created.\n */\nlib.TestManager.Suite.getTestList = function() {\n return this.testList_;\n};\n\n/**\n * Set properties on a test suite instance, pulling the property value from\n * the context if it exists and from the defaults dictionary if not.\n *\n * This is intended to be used in your test suite's setup() method to\n * define parameters for the test suite which may be overridden through the\n * context object. For example...\n *\n * MySuite.prototype.setup = function(cx) {\n * this.setDefaults(cx, {size: 10});\n * };\n *\n * If the context object has a 'size' property then this.size will be set to\n * the value of cx.size, otherwise this.size will get a default value of 10.\n *\n * @param {Object} cx The context object for a test run.\n * @param {Object} defaults An object containing name/value pairs to set on\n * this test suite instance. The value listed here will be used if the\n * name is not defined on the context object.\n */\nlib.TestManager.Suite.prototype.setDefaults = function(cx, defaults) {\n for (var k in defaults) {\n this[k] = (k in cx) ? cx[k] : defaults[k];\n }\n};\n\n/**\n * Subclassable method called to set up the test suite.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of suite-wide setup, this is the place to do it.\n *\n * It's fine to store state on the test suite instance, that state will be\n * accessible to all tests in the suite. If any test case fails, the entire\n * test suite object will be discarded and a new one will be created for\n * the remaining tests.\n *\n * Any side effects outside of this test suite instance must be idempotent.\n * For example, if you're adding DOM nodes to a document, make sure to first\n * test that they're not already there. If they are, remove them rather than\n * reuse them. You should not count on their state, since they were probably\n * left behind by a failed testcase.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.setup = function(cx) {};\n\n/**\n * Subclassable method called to do pre-test set up.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of pre-test setup, this is the place to do it.\n *\n * This can be used to avoid a bunch of boilerplate setup/teardown code in\n * this suite's testcases.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {lib.TestManager.Result} result The result object for the upcoming\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.preamble = function(result, cx) {};\n\n/**\n * Subclassable method called to do post-test tear-down.\n *\n * The default implementation of this method is a no-op. If your test suite\n * requires some kind of pre-test setup, this is the place to do it.\n *\n * This can be used to avoid a bunch of boilerplate setup/teardown code in\n * this suite's testcases.\n *\n * Any exception here will abort the remainder of the test run.\n *\n * @param {lib.TestManager.Result} result The result object for the finished\n * test.\n * @param {Object} cx The context object for a test run.\n */\nlib.TestManager.Suite.prototype.postamble = function(result, cx) {};\n\n/**\n * Object representing a single test in a test suite.\n *\n * These are created as part of the lib.TestManager.Suite.addTest() method.\n * You should never have to construct one by hand.\n *\n * @param {lib.TestManager.Suite} suiteClass The test suite class containing\n * this test.\n * @param {string} testName The local name of this test case, not including the\n * test suite name.\n * @param {function(lib.TestManager.Result, Object)} testFunction The function\n * to invoke for this test case. This is passed a Result instance and the\n * context object associated with the test run.\n *\n */\nlib.TestManager.Test = function(suiteClass, testName, testFunction) {\n /**\n * The test suite class containing this function.\n */\n this.suiteClass = suiteClass;\n\n /**\n * The local name of this test, not including the test suite name.\n */\n this.testName = testName;\n\n /**\n * The global name of this test, including the test suite name.\n */\n this.fullName = suiteClass.suiteName + '[' + testName + ']';\n\n // The function to call for this test.\n this.testFunction_ = testFunction;\n};\n\n/**\n * Execute this test.\n *\n * This is called by a lib.TestManager.Result instance, as part of a\n * lib.TestManager.TestRun. You should not call it by hand.\n *\n * @param {lib.TestManager.Result} result The result object for the test.\n */\nlib.TestManager.Test.prototype.run = function(result) {\n try {\n // Tests are applied to the parent lib.TestManager.Suite subclass.\n this.testFunction_.apply(result.suite,\n [result, result.testRun.cx]);\n } catch (ex) {\n if (ex instanceof lib.TestManager.Result.TestComplete)\n return;\n\n result.println('Test raised an exception: ' + ex);\n\n if (ex.stack) {\n if (ex.stack instanceof Array) {\n result.println(ex.stack.join('\\n'));\n } else {\n result.println(ex.stack);\n }\n }\n\n result.completeTest_(result.FAILED, false);\n }\n};\n\n/**\n * Used to choose a set of tests and run them.\n *\n * It's slightly more convenient to construct one of these from\n * lib.TestManager.prototype.createTestRun().\n *\n * @param {lib.TestManager} testManager The testManager associated with this\n * TestRun.\n * @param {Object} cx A context to be passed into the tests. This can be used\n * to set parameters for the test suite or individual test cases.\n */\nlib.TestManager.TestRun = function(testManager, cx) {\n /**\n * The associated lib.TestManager instance.\n */\n this.testManager = testManager;\n\n /**\n * Shortcut to the lib.TestManager's log.\n */\n this.log = testManager.log;\n\n /**\n * The test run context. It's entirely up to the test suite and test cases\n * how this is used. It is opaque to lib.TestManager.* classes.\n */\n this.cx = cx || {};\n\n /**\n * The list of test cases that encountered failures.\n */\n this.failures = [];\n\n /**\n * The list of test cases that passed.\n */\n this.passes = [];\n\n /**\n * The time the test run started, or null if it hasn't been started yet.\n */\n this.startDate = null;\n\n /**\n * The time in milliseconds that the test run took to complete, or null if\n * it hasn't completed yet.\n */\n this.duration = null;\n\n /**\n * The most recent result object, or null if the test run hasn't started\n * yet. In order to detect late failures, this is not cleared when the test\n * completes.\n */\n this.currentResult = null;\n\n /**\n * Number of maximum failures. The test run will stop when this number is\n * reached. If 0 or omitted, the entire set of selected tests is run, even\n * if some fail.\n */\n this.maxFailures = 0;\n\n /**\n * True if this test run ended early because of an unexpected condition.\n */\n this.panic = false;\n\n // List of pending test cases.\n this.testQueue_ = [];\n\n};\n\n/**\n * This value can be passed to select() to indicate that all tests should\n * be selected.\n */\nlib.TestManager.TestRun.prototype.ALL_TESTS = lib.f.createEnum('');\n\n/**\n * Add a single test to the test run.\n */\nlib.TestManager.TestRun.prototype.selectTest = function(test) {\n this.testQueue_.push(test);\n};\n\nlib.TestManager.TestRun.prototype.selectSuite = function(\n suiteClass, opt_pattern) {\n var pattern = opt_pattern || this.ALL_TESTS;\n var selectCount = 0;\n var testList = suiteClass.getTestList();\n\n for (var j = 0; j < testList.length; j++) {\n var test = testList[j];\n // Note that we're using \"!==\" rather than \"!=\" so that we're matching\n // the ALL_TESTS String object, rather than the contents of the string.\n if (pattern !== this.ALL_TESTS) {\n if (pattern instanceof RegExp) {\n if (!pattern.test(test.testName))\n continue;\n } else if (test.testName != pattern) {\n continue;\n }\n }\n\n this.selectTest(test);\n selectCount++;\n }\n\n return selectCount;\n};\n\n/**\n * Selects one or more tests to gather results for.\n *\n * Selecting the same test more than once is allowed.\n *\n * @param {string|RegExp} pattern Pattern used to select tests.\n * If TestRun.prototype.ALL_TESTS, all tests are selected.\n * If a string, only the test that exactly matches is selected.\n * If a RegExp, only tests matching the RegExp are added.\n *\n * @return {int} The number of additional tests that have been selected into\n * this TestRun.\n */\nlib.TestManager.TestRun.prototype.selectPattern = function(pattern) {\n var selectCount = 0;\n\n for (var i = 0; i < lib.TestManager.Suite.subclasses.length; i++) {\n selectCount += this.selectSuite(lib.TestManager.Suite.subclasses[i],\n pattern);\n }\n\n if (!selectCount) {\n this.log.warn('No tests matched selection criteria: ' + pattern);\n }\n\n return selectCount;\n};\n\n/**\n * Hooked up to window.onerror during a test run in order to catch exceptions\n * that would otherwise go uncaught.\n */\nlib.TestManager.TestRun.prototype.onUncaughtException_ = function(\n message, file, line) {\n\n if (message.indexOf('Uncaught lib.TestManager.Result.TestComplete') == 0 ||\n message.indexOf('status: passed') != -1) {\n // This is a result.pass() or result.fail() call from a callback. We're\n // already going to deal with it as part of the completeTest_() call\n // that raised it. We can safely squelch this error message.\n return true;\n }\n\n if (!this.currentResult)\n return;\n\n if (message == 'Uncaught ' + this.currentResult.expectedErrorMessage_) {\n // Test cases may need to raise an unhandled exception as part of the test.\n return;\n }\n\n var when = 'during';\n\n if (this.currentResult.status != this.currentResult.PENDING)\n when = 'after';\n\n this.log.error('Uncaught exception ' + when + ' test case: ' +\n this.currentResult.test.fullName);\n this.log.error(message + ', ' + file + ':' + line);\n\n this.currentResult.completeTest_(this.currentResult.FAILED, false);\n\n return false;\n};\n\n/**\n * Called to when this test run has completed.\n *\n * This method typically re-runs itself asynchronously, in order to let the\n * DOM stabilize and short-term timeouts to complete before declaring the\n * test run complete.\n *\n * @param {boolean} opt_skipTimeout If true, the timeout is skipped and the\n * test run is completed immediately. This should only be used from within\n * this function.\n */\nlib.TestManager.TestRun.prototype.onTestRunComplete_ = function(\n opt_skipTimeout) {\n if (!opt_skipTimeout) {\n // The final test may have left a lingering setTimeout(..., 0), or maybe\n // poked at the DOM in a way that will trigger a event to fire at the end\n // of this stack, so we give things a chance to settle down before our\n // final cleanup...\n setTimeout(this.onTestRunComplete_.bind(this), 0, true);\n return;\n }\n\n this.duration = (new Date()) - this.startDate;\n\n this.log.groupEnd();\n this.log.info(this.passes.length + ' passed, ' +\n this.failures.length + ' failed, ' +\n this.msToSeconds_(this.duration));\n\n this.summarize();\n\n window.onerror = null;\n\n this.testManager.onTestRunComplete(this);\n};\n\n/**\n * Called by the lib.TestManager.Result object when a test completes.\n *\n * @param {lib.TestManager.Result} result The result object which has just\n * completed.\n */\nlib.TestManager.TestRun.prototype.onResultComplete = function(result) {\n try {\n this.testManager.testPostamble(result, this.cx);\n result.suite.postamble(result, this.ctx);\n } catch (ex) {\n this.log.error('Unexpected exception in postamble: ' +\n (ex.stack ? ex.stack : ex));\n this.panic = true;\n }\n\n if (result.status != result.PASSED)\n this.log.error(result.status);\n else if (result.duration > 500)\n this.log.warn('Slow test took ' + this.msToSeconds_(result.duration));\n this.log.groupEnd();\n\n if (result.status == result.FAILED) {\n this.failures.push(result);\n this.currentSuite = null;\n } else if (result.status == result.PASSED) {\n this.passes.push(result);\n } else {\n this.log.error('Unknown result status: ' + result.test.fullName + ': ' +\n result.status);\n return this.panic = true;\n }\n\n this.runNextTest_();\n};\n\n/**\n * Called by the lib.TestManager.Result object when a test which has already\n * completed reports another completion.\n *\n * This is usually indicative of a buggy testcase. It is probably reporting a\n * result on exit and then again from an asynchronous callback.\n *\n * It may also be the case that the last act of the testcase causes a DOM change\n * which triggers some event to run after the test returns. If the event\n * handler reports a failure or raises an uncaught exception, the test will\n * fail even though it has already completed.\n *\n * In any case, re-completing a test ALWAYS moves it into the failure pile.\n *\n * @param {lib.TestManager.Result} result The result object which has just\n * completed.\n * @param {string} lateStatus The status that the test attempted to record this\n * time around.\n */\nlib.TestManager.TestRun.prototype.onResultReComplete = function(\n result, lateStatus) {\n this.log.error('Late complete for test: ' + result.test.fullName + ': ' +\n lateStatus);\n\n // Consider any late completion a failure, even if it's a double-pass, since\n // it's a misuse of the testing API.\n var index = this.passes.indexOf(result);\n if (index >= 0) {\n this.passes.splice(index, 1);\n this.failures.push(result);\n }\n};\n\n/**\n * Run the next test in the queue.\n */\nlib.TestManager.TestRun.prototype.runNextTest_ = function() {\n if (this.panic || !this.testQueue_.length)\n return this.onTestRunComplete_();\n\n if (this.maxFailures && this.failures.length >= this.maxFailures) {\n this.log.error('Maximum failure count reached, aborting test run.');\n return this.onTestRunComplete_();\n }\n\n // Peek at the top test first. We remove it later just before it's about\n // to run, so that we don't disturb the incomplete test count in the\n // event that we fail before running it.\n var test = this.testQueue_[0];\n var suite = this.currentResult ? this.currentResult.suite : null;\n\n try {\n if (!suite || !(suite instanceof test.suiteClass)) {\n if (suite)\n this.log.groupEnd();\n this.log.group(test.suiteClass.suiteName);\n suite = new test.suiteClass(this.testManager, this.cx);\n }\n } catch (ex) {\n // If test suite setup fails we're not even going to try to run the tests.\n this.log.error('Exception during setup: ' + (ex.stack ? ex.stack : ex));\n this.panic = true;\n this.onTestRunComplete_();\n return;\n }\n\n try {\n this.log.group(test.testName);\n\n this.currentResult = new lib.TestManager.Result(this, suite, test);\n this.testManager.testPreamble(this.currentResult, this.cx);\n suite.preamble(this.currentResult, this.cx);\n\n this.testQueue_.shift();\n } catch (ex) {\n this.log.error('Unexpected exception during test preamble: ' +\n (ex.stack ? ex.stack : ex));\n this.log.groupEnd();\n\n this.panic = true;\n this.onTestRunComplete_();\n return;\n }\n\n try {\n this.currentResult.run();\n } catch (ex) {\n // Result.run() should catch test exceptions and turn them into failures.\n // If we got here, it means there is trouble in the testing framework.\n this.log.error('Unexpected exception during test run: ' +\n (ex.stack ? ex.stack : ex));\n this.panic = true;\n }\n};\n\n/**\n * Run the selected list of tests.\n *\n * Some tests may need to run asynchronously, so you cannot assume the run is\n * complete when this function returns. Instead, pass in a function to be\n * called back when the run has completed.\n *\n * This function will log the results of the test run as they happen into the\n * log defined by the associated lib.TestManager. By default this is\n * console.log, which can be viewed in the JavaScript console of most browsers.\n *\n * The browser state is determined by the last test to run. We intentionally\n * don't do any cleanup so that you can inspect the state of a failed test, or\n * leave the browser ready for manual testing.\n *\n * Any failures in lib.TestManager.* code or test suite setup or test case\n * preamble will cause the test run to abort.\n */\nlib.TestManager.TestRun.prototype.run = function() {\n this.log.info('Running ' + this.testQueue_.length + ' test(s)');\n\n window.onerror = this.onUncaughtException_.bind(this);\n this.startDate = new Date();\n this.runNextTest_();\n};\n\n/**\n * Format milliseconds as fractional seconds.\n */\nlib.TestManager.TestRun.prototype.msToSeconds_ = function(ms) {\n var secs = (ms / 1000).toFixed(2);\n return secs + 's';\n};\n\n/**\n * Log the current result summary.\n */\nlib.TestManager.TestRun.prototype.summarize = function() {\n if (this.failures.length) {\n for (var i = 0; i < this.failures.length; i++) {\n this.log.error('FAILED: ' + this.failures[i].test.fullName);\n }\n }\n\n if (this.testQueue_.length) {\n this.log.warn('Test run incomplete: ' + this.testQueue_.length +\n ' test(s) were not run.');\n }\n};\n\n/**\n * Record of the result of a single test.\n *\n * These are constructed during a test run, you shouldn't have to make one\n * on your own.\n *\n * An instance of this class is passed in to each test function. It can be\n * used to add messages to the test log, to record a test pass/fail state, to\n * test assertions, or to create exception-proof wrappers for callback\n * functions.\n *\n * @param {lib.TestManager.TestRun} testRun The TestRun instance associated with\n * this result.\n * @param {lib.TestManager.Suit} suite The Suite containing the test we're\n * collecting this result for.\n * @param {lib.TestManager.Test} test The test we're collecting this result for.\n */\nlib.TestManager.Result = function(testRun, suite, test) {\n /**\n * The TestRun instance associated with this result.\n */\n this.testRun = testRun;\n\n /**\n * The Suite containing the test we're collecting this result for.\n */\n this.suite = suite;\n\n /**\n * The test we're collecting this result for.\n */\n this.test = test;\n\n /**\n * The time we started to collect this result, or null if we haven't started.\n */\n this.startDate = null;\n\n /**\n * The time in milliseconds that the test took to complete, or null if\n * it hasn't completed yet.\n */\n this.duration = null;\n\n /**\n * The current status of this test result.\n */\n this.status = this.PENDING;\n\n // An error message that the test case is expected to generate.\n this.expectedErrorMessage_ = null;\n};\n\n/**\n * Possible values for this.status.\n */\nlib.TestManager.Result.prototype.PENDING = 'pending';\nlib.TestManager.Result.prototype.FAILED = 'FAILED';\nlib.TestManager.Result.prototype.PASSED = 'passed';\n\n/**\n * Exception thrown when a test completes (pass or fail), to ensure no more of\n * the test is run.\n */\nlib.TestManager.Result.TestComplete = function(result) {\n this.result = result;\n};\n\nlib.TestManager.Result.TestComplete.prototype.toString = function() {\n return 'lib.TestManager.Result.TestComplete: ' + this.result.test.fullName +\n ', status: ' + this.result.status;\n}\n\n/**\n * Start the test associated with this result.\n */\nlib.TestManager.Result.prototype.run = function() {\n var self = this;\n\n this.startDate = new Date();\n this.test.run(this);\n\n if (this.status == this.PENDING && !this.timeout_) {\n this.println('Test did not return a value and did not request more time.');\n this.completeTest_(this.FAILED, false);\n }\n};\n\n/**\n * Unhandled error message this test expects to generate.\n *\n * This must be the exact string that would appear in the JavaScript console,\n * minus the 'Uncaught ' prefix.\n *\n * The test case does *not* automatically fail if the error message is not\n * encountered.\n */\nlib.TestManager.Result.prototype.expectErrorMessage = function(str) {\n this.expectedErrorMessage_ = str;\n};\n\n/**\n * Function called when a test times out.\n */\nlib.TestManager.Result.prototype.onTimeout_ = function() {\n this.timeout_ = null;\n\n if (this.status != this.PENDING)\n return;\n\n this.println('Test timed out.');\n this.completeTest_(this.FAILED, false);\n};\n\n/**\n * Indicate that a test case needs more time to complete.\n *\n * Before a test case returns it must report a pass/fail result, or request more\n * time to do so.\n *\n * If a test does not report pass/fail before the time expires it will\n * be reported as a timeout failure. Any late pass/fails will be noted in the\n * test log, but will not affect the final result of the test.\n *\n * Test cases may call requestTime more than once. If you have a few layers\n * of asynchronous API to go through, you should call this once per layer with\n * an estimate of how long each callback will take to complete.\n *\n * @param {int} ms Number of milliseconds requested.\n */\nlib.TestManager.Result.prototype.requestTime = function(ms) {\n if (this.timeout_)\n clearTimeout(this.timeout_);\n\n this.timeout_ = setTimeout(this.onTimeout_.bind(this), ms);\n};\n\n/**\n * Report the completion of a test.\n *\n * @param {string} status The status of the test case.\n * @param {boolean} opt_throw Optional boolean indicating whether or not\n * to throw the TestComplete exception.\n */\nlib.TestManager.Result.prototype.completeTest_ = function(status, opt_throw) {\n if (this.status == this.PENDING) {\n this.duration = (new Date()) - this.startDate;\n this.status = status;\n\n this.testRun.onResultComplete(this);\n } else {\n this.testRun.onResultReComplete(this, status);\n }\n\n if (arguments.length < 2 || opt_throw)\n throw new lib.TestManager.Result.TestComplete(this);\n};\n\n/**\n * Check that two arrays are equal.\n */\nlib.TestManager.Result.prototype.arrayEQ_ = function(actual, expected) {\n if (!actual || !expected)\n return (!actual && !expected);\n\n if (actual.length != expected.length)\n return false;\n\n for (var i = 0; i < actual.length; ++i)\n if (actual[i] != expected[i])\n return false;\n\n return true;\n};\n\n/**\n * Assert that an actual value is exactly equal to the expected value.\n *\n * This uses the JavaScript '===' operator in order to avoid type coercion.\n *\n * If the assertion fails, the test is marked as a failure and a TestCompleted\n * exception is thrown.\n *\n * @param {*} actual The actual measured value.\n * @param {*} expected The value expected.\n * @param {string} opt_name An optional name used to identify this\n * assertion in the test log. If omitted it will be the file:line\n * of the caller.\n */\nlib.TestManager.Result.prototype.assertEQ = function(\n actual, expected, opt_name) {\n // Utility function to pretty up the log.\n function format(value) {\n if (typeof value == 'number')\n return value;\n\n var str = String(value);\n var ary = str.split('\\n').map(function (e) { return JSON.stringify(e) });\n if (ary.length > 1) {\n // If the string has newlines, start it off on its own line so that\n // it's easier to compare against another string with newlines.\n return '\\n' + ary.join('\\n');\n } else {\n return ary.join('\\n');\n }\n }\n\n if (actual === expected)\n return;\n\n // Deal with common object types since JavaScript can't.\n if (expected instanceof Array)\n if (this.arrayEQ_(actual, expected))\n return;\n\n var name = opt_name ? '[' + opt_name + ']' : '';\n\n this.fail('assertEQ' + name + ': ' + this.getCallerLocation_(1) + ': ' +\n format(actual) + ' !== ' + format(expected));\n};\n\n/**\n * Assert that a value is true.\n *\n * This uses the JavaScript '===' operator in order to avoid type coercion.\n * The must be the boolean value `true`, not just some \"truish\" value.\n *\n * If the assertion fails, the test is marked as a failure and a TestCompleted\n * exception is thrown.\n *\n * @param {boolean} actual The actual measured value.\n * @param {string} opt_name An optional name used to identify this\n * assertion in the test log. If omitted it will be the file:line\n * of the caller.\n */\nlib.TestManager.Result.prototype.assert = function(actual, opt_name) {\n if (actual === true)\n return;\n\n var name = opt_name ? '[' + opt_name + ']' : '';\n\n this.fail('assert' + name + ': ' + this.getCallerLocation_(1) + ': ' +\n String(actual));\n};\n\n/**\n * Return the filename:line of a calling stack frame.\n *\n * This uses a dirty hack. It throws an exception, catches it, and examines\n * the stack property of the caught exception.\n *\n * @param {int} frameIndex The stack frame to return. 0 is the frame that\n * called this method, 1 is its caller, and so on.\n * @return {string} A string of the format \"filename:linenumber\".\n */\nlib.TestManager.Result.prototype.getCallerLocation_ = function(frameIndex) {\n try {\n throw new Error();\n } catch (ex) {\n var frame = ex.stack.split('\\n')[frameIndex + 2];\n var ary = frame.match(/([^/]+:\\d+):\\d+\\)?$/);\n return ary ? ary[1] : '???';\n }\n};\n\n/**\n * Write a message to the result log.\n */\nlib.TestManager.Result.prototype.println = function(message) {\n this.testRun.log.info(message);\n};\n\n/**\n * Mark a failed test and exit out of the rest of the test.\n *\n * This will throw a TestCompleted exception, causing the current test to stop.\n *\n * @param {string} opt_message Optional message to add to the log.\n */\nlib.TestManager.Result.prototype.fail = function(opt_message) {\n if (arguments.length)\n this.println(opt_message);\n\n this.completeTest_(this.FAILED, true);\n};\n\n/**\n * Mark a passed test and exit out of the rest of the test.\n *\n * This will throw a TestCompleted exception, causing the current test to stop.\n */\nlib.TestManager.Result.prototype.pass = function() {\n this.completeTest_(this.PASSED, true);\n};\n// SOURCE FILE: libdot/js/lib_utf8.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n// TODO(davidben): When the string encoding API is implemented,\n// replace this with the native in-browser implementation.\n//\n// https://wiki.whatwg.org/wiki/StringEncoding\n// https://encoding.spec.whatwg.org/\n\n/**\n * A stateful UTF-8 decoder.\n */\nlib.UTF8Decoder = function() {\n // The number of bytes left in the current sequence.\n this.bytesLeft = 0;\n // The in-progress code point being decoded, if bytesLeft > 0.\n this.codePoint = 0;\n // The lower bound on the final code point, if bytesLeft > 0.\n this.lowerBound = 0;\n};\n\n/**\n * Decodes a some UTF-8 data, taking into account state from previous\n * data streamed through the encoder.\n *\n * @param {String} str data to decode, represented as a JavaScript\n * String with each code unit representing a byte between 0x00 to\n * 0xFF.\n * @return {String} The data decoded into a JavaScript UTF-16 string.\n */\nlib.UTF8Decoder.prototype.decode = function(str) {\n var ret = '';\n for (var i = 0; i < str.length; i++) {\n var c = str.charCodeAt(i);\n if (this.bytesLeft == 0) {\n if (c <= 0x7F) {\n ret += str.charAt(i);\n } else if (0xC0 <= c && c <= 0xDF) {\n this.codePoint = c - 0xC0;\n this.bytesLeft = 1;\n this.lowerBound = 0x80;\n } else if (0xE0 <= c && c <= 0xEF) {\n this.codePoint = c - 0xE0;\n this.bytesLeft = 2;\n this.lowerBound = 0x800;\n } else if (0xF0 <= c && c <= 0xF7) {\n this.codePoint = c - 0xF0;\n this.bytesLeft = 3;\n this.lowerBound = 0x10000;\n } else if (0xF8 <= c && c <= 0xFB) {\n this.codePoint = c - 0xF8;\n this.bytesLeft = 4;\n this.lowerBound = 0x200000;\n } else if (0xFC <= c && c <= 0xFD) {\n this.codePoint = c - 0xFC;\n this.bytesLeft = 5;\n this.lowerBound = 0x4000000;\n } else {\n ret += '\\ufffd';\n }\n } else {\n if (0x80 <= c && c <= 0xBF) {\n this.bytesLeft--;\n this.codePoint = (this.codePoint << 6) + (c - 0x80);\n if (this.bytesLeft == 0) {\n // Got a full sequence. Check if it's within bounds and\n // filter out surrogate pairs.\n var codePoint = this.codePoint;\n if (codePoint < this.lowerBound\n || (0xD800 <= codePoint && codePoint <= 0xDFFF)\n || codePoint > 0x10FFFF) {\n ret += '\\ufffd';\n } else {\n // Encode as UTF-16 in the output.\n if (codePoint < 0x10000) {\n ret += String.fromCharCode(codePoint);\n } else {\n // Surrogate pair.\n codePoint -= 0x10000;\n ret += String.fromCharCode(\n 0xD800 + ((codePoint >>> 10) & 0x3FF),\n 0xDC00 + (codePoint & 0x3FF));\n }\n }\n }\n } else {\n // Too few bytes in multi-byte sequence. Rewind stream so we\n // don't lose the next byte.\n ret += '\\ufffd';\n this.bytesLeft = 0;\n i--;\n }\n }\n }\n return ret;\n};\n\n/**\n * Decodes UTF-8 data. This is a convenience function for when all the\n * data is already known.\n *\n * @param {String} str data to decode, represented as a JavaScript\n * String with each code unit representing a byte between 0x00 to\n * 0xFF.\n * @return {String} The data decoded into a JavaScript UTF-16 string.\n */\nlib.decodeUTF8 = function(utf8) {\n return (new lib.UTF8Decoder()).decode(utf8);\n};\n\n/**\n * Encodes a UTF-16 string into UTF-8.\n *\n * TODO(davidben): Do we need a stateful version of this that can\n * handle a surrogate pair split in two calls? What happens if a\n * keypress event would have contained a character outside the BMP?\n *\n * @param {String} str The string to encode.\n * @return {String} The string encoded as UTF-8, as a JavaScript\n * string with bytes represented as code units from 0x00 to 0xFF.\n */\nlib.encodeUTF8 = function(str) {\n var ret = '';\n for (var i = 0; i < str.length; i++) {\n // Get a unicode code point out of str.\n var c = str.charCodeAt(i);\n if (0xDC00 <= c && c <= 0xDFFF) {\n c = 0xFFFD;\n } else if (0xD800 <= c && c <= 0xDBFF) {\n if (i+1 < str.length) {\n var d = str.charCodeAt(i+1);\n if (0xDC00 <= d && d <= 0xDFFF) {\n // Swallow a surrogate pair.\n c = 0x10000 + ((c & 0x3FF) << 10) + (d & 0x3FF);\n i++;\n } else {\n c = 0xFFFD;\n }\n } else {\n c = 0xFFFD;\n }\n }\n\n // Encode c in UTF-8.\n var bytesLeft;\n if (c <= 0x7F) {\n ret += str.charAt(i);\n continue;\n } else if (c <= 0x7FF) {\n ret += String.fromCharCode(0xC0 | (c >>> 6));\n bytesLeft = 1;\n } else if (c <= 0xFFFF) {\n ret += String.fromCharCode(0xE0 | (c >>> 12));\n bytesLeft = 2;\n } else /* if (c <= 0x10FFFF) */ {\n ret += String.fromCharCode(0xF0 | (c >>> 18));\n bytesLeft = 3;\n }\n\n while (bytesLeft > 0) {\n bytesLeft--;\n ret += String.fromCharCode(0x80 | ((c >>> (6 * bytesLeft)) & 0x3F));\n }\n }\n return ret;\n};\n// SOURCE FILE: libdot/third_party/wcwidth/lib_wc.js\n// Copyright (c) 2014 The Chromium OS Authors. All rights reserved.\n// Use of lib.wc source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * This JavaScript library is ported from the wcwidth.js module of node.js.\n * The original implementation can be found at:\n * https://npmjs.org/package/wcwidth.js\n */\n\n/**\n * JavaScript porting of Markus Kuhn's wcwidth() implementation\n *\n * The following explanation comes from the original C implementation:\n *\n * This is an implementation of wcwidth() and wcswidth() (defined in\n * IEEE Std 1002.1-2001) for Unicode.\n *\n * http://www.opengroup.org/onlinepubs/007904975/functions/wcwidth.html\n * http://www.opengroup.org/onlinepubs/007904975/functions/wcswidth.html\n *\n * In fixed-width output devices, Latin characters all occupy a single\n * \"cell\" position of equal width, whereas ideographic CJK characters\n * occupy two such cells. Interoperability between terminal-line\n * applications and (teletype-style) character terminals using the\n * UTF-8 encoding requires agreement on which character should advance\n * the cursor by how many cell positions. No established formal\n * standards exist at present on which Unicode character shall occupy\n * how many cell positions on character terminals. These routines are\n * a first attempt of defining such behavior based on simple rules\n * applied to data provided by the Unicode Consortium.\n *\n * For some graphical characters, the Unicode standard explicitly\n * defines a character-cell width via the definition of the East Asian\n * FullWidth (F), Wide (W), Half-width (H), and Narrow (Na) classes.\n * In all these cases, there is no ambiguity about which width a\n * terminal shall use. For characters in the East Asian Ambiguous (A)\n * class, the width choice depends purely on a preference of backward\n * compatibility with either historic CJK or Western practice.\n * Choosing single-width for these characters is easy to justify as\n * the appropriate long-term solution, as the CJK practice of\n * displaying these characters as double-width comes from historic\n * implementation simplicity (8-bit encoded characters were displayed\n * single-width and 16-bit ones double-width, even for Greek,\n * Cyrillic, etc.) and not any typographic considerations.\n *\n * Much less clear is the choice of width for the Not East Asian\n * (Neutral) class. Existing practice does not dictate a width for any\n * of these characters. It would nevertheless make sense\n * typographically to allocate two character cells to characters such\n * as for instance EM SPACE or VOLUME INTEGRAL, which cannot be\n * represented adequately with a single-width glyph. The following\n * routines at present merely assign a single-cell width to all\n * neutral characters, in the interest of simplicity. This is not\n * entirely satisfactory and should be reconsidered before\n * establishing a formal standard in lib.wc area. At the moment, the\n * decision which Not East Asian (Neutral) characters should be\n * represented by double-width glyphs cannot yet be answered by\n * applying a simple rule from the Unicode database content. Setting\n * up a proper standard for the behavior of UTF-8 character terminals\n * will require a careful analysis not only of each Unicode character,\n * but also of each presentation form, something the author of these\n * routines has avoided to do so far.\n *\n * http://www.unicode.org/unicode/reports/tr11/\n *\n * Markus Kuhn -- 2007-05-26 (Unicode 5.0)\n *\n * Permission to use, copy, modify, and distribute lib.wc software\n * for any purpose and without fee is hereby granted. The author\n * disclaims all warranties with regard to lib.wc software.\n *\n * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c\n */\n\n/**\n * The following function defines the column width of an ISO 10646 character\n * as follows:\n *\n * - The null character (U+0000) has a column width of 0.\n * - Other C0/C1 control characters and DEL will lead to a return value of -1.\n * - Non-spacing and enclosing combining characters (general category code Mn\n * or Me in the Unicode database) have a column width of 0.\n * - SOFT HYPHEN (U+00AD) has a column width of 1.\n * - Other format characters (general category code Cf in the Unicode database)\n * and ZERO WIDTH SPACE (U+200B) have a column width of 0.\n * - Hangul Jamo medial vowels and final consonants (U+1160-U+11FF) have a\n * column width of 0.\n * - Spacing characters in the East Asian Wide (W) or East Asian Full-width (F)\n * category as defined in Unicode Technical Report #11 have a column width of\n * 2.\n * - East Asian Ambiguous characters are taken into account if\n * regardCjkAmbiguous flag is enabled. They have a column width of 2.\n * - All remaining characters (including all printable ISO 8859-1 and WGL4\n * characters, Unicode control characters, etc.) have a column width of 1.\n *\n * This implementation assumes that characters are encoded in ISO 10646.\n */\n\nlib.wc = {};\n\n// Width of a nul character.\nlib.wc.nulWidth = 0;\n\n// Width of a control character.\nlib.wc.controlWidth = 0;\n\n// Flag whether to consider East Asian Ambiguous characters.\nlib.wc.regardCjkAmbiguous = false;\n\n// Width of an East Asian Ambiguous character.\nlib.wc.cjkAmbiguousWidth = 2;\n\n// Sorted list of non-overlapping intervals of non-spacing characters\n// generated by \"uniset +cat=Me +cat=Mn +cat=Cf -00AD +1160-11FF +200B c\"\nlib.wc.combining = [\n [ 0x0300, 0x036F ], [ 0x0483, 0x0486 ], [ 0x0488, 0x0489 ],\n [ 0x0591, 0x05BD ], [ 0x05BF, 0x05BF ], [ 0x05C1, 0x05C2 ],\n [ 0x05C4, 0x05C5 ], [ 0x05C7, 0x05C7 ], [ 0x0600, 0x0603 ],\n [ 0x0610, 0x0615 ], [ 0x064B, 0x065E ], [ 0x0670, 0x0670 ],\n [ 0x06D6, 0x06E4 ], [ 0x06E7, 0x06E8 ], [ 0x06EA, 0x06ED ],\n [ 0x070F, 0x070F ], [ 0x0711, 0x0711 ], [ 0x0730, 0x074A ],\n [ 0x07A6, 0x07B0 ], [ 0x07EB, 0x07F3 ], [ 0x0901, 0x0902 ],\n [ 0x093C, 0x093C ], [ 0x0941, 0x0948 ], [ 0x094D, 0x094D ],\n [ 0x0951, 0x0954 ], [ 0x0962, 0x0963 ], [ 0x0981, 0x0981 ],\n [ 0x09BC, 0x09BC ], [ 0x09C1, 0x09C4 ], [ 0x09CD, 0x09CD ],\n [ 0x09E2, 0x09E3 ], [ 0x0A01, 0x0A02 ], [ 0x0A3C, 0x0A3C ],\n [ 0x0A41, 0x0A42 ], [ 0x0A47, 0x0A48 ], [ 0x0A4B, 0x0A4D ],\n [ 0x0A70, 0x0A71 ], [ 0x0A81, 0x0A82 ], [ 0x0ABC, 0x0ABC ],\n [ 0x0AC1, 0x0AC5 ], [ 0x0AC7, 0x0AC8 ], [ 0x0ACD, 0x0ACD ],\n [ 0x0AE2, 0x0AE3 ], [ 0x0B01, 0x0B01 ], [ 0x0B3C, 0x0B3C ],\n [ 0x0B3F, 0x0B3F ], [ 0x0B41, 0x0B43 ], [ 0x0B4D, 0x0B4D ],\n [ 0x0B56, 0x0B56 ], [ 0x0B82, 0x0B82 ], [ 0x0BC0, 0x0BC0 ],\n [ 0x0BCD, 0x0BCD ], [ 0x0C3E, 0x0C40 ], [ 0x0C46, 0x0C48 ],\n [ 0x0C4A, 0x0C4D ], [ 0x0C55, 0x0C56 ], [ 0x0CBC, 0x0CBC ],\n [ 0x0CBF, 0x0CBF ], [ 0x0CC6, 0x0CC6 ], [ 0x0CCC, 0x0CCD ],\n [ 0x0CE2, 0x0CE3 ], [ 0x0D41, 0x0D43 ], [ 0x0D4D, 0x0D4D ],\n [ 0x0DCA, 0x0DCA ], [ 0x0DD2, 0x0DD4 ], [ 0x0DD6, 0x0DD6 ],\n [ 0x0E31, 0x0E31 ], [ 0x0E34, 0x0E3A ], [ 0x0E47, 0x0E4E ],\n [ 0x0EB1, 0x0EB1 ], [ 0x0EB4, 0x0EB9 ], [ 0x0EBB, 0x0EBC ],\n [ 0x0EC8, 0x0ECD ], [ 0x0F18, 0x0F19 ], [ 0x0F35, 0x0F35 ],\n [ 0x0F37, 0x0F37 ], [ 0x0F39, 0x0F39 ], [ 0x0F71, 0x0F7E ],\n [ 0x0F80, 0x0F84 ], [ 0x0F86, 0x0F87 ], [ 0x0F90, 0x0F97 ],\n [ 0x0F99, 0x0FBC ], [ 0x0FC6, 0x0FC6 ], [ 0x102D, 0x1030 ],\n [ 0x1032, 0x1032 ], [ 0x1036, 0x1037 ], [ 0x1039, 0x1039 ],\n [ 0x1058, 0x1059 ], [ 0x1160, 0x11FF ], [ 0x135F, 0x135F ],\n [ 0x1712, 0x1714 ], [ 0x1732, 0x1734 ], [ 0x1752, 0x1753 ],\n [ 0x1772, 0x1773 ], [ 0x17B4, 0x17B5 ], [ 0x17B7, 0x17BD ],\n [ 0x17C6, 0x17C6 ], [ 0x17C9, 0x17D3 ], [ 0x17DD, 0x17DD ],\n [ 0x180B, 0x180D ], [ 0x18A9, 0x18A9 ], [ 0x1920, 0x1922 ],\n [ 0x1927, 0x1928 ], [ 0x1932, 0x1932 ], [ 0x1939, 0x193B ],\n [ 0x1A17, 0x1A18 ], [ 0x1B00, 0x1B03 ], [ 0x1B34, 0x1B34 ],\n [ 0x1B36, 0x1B3A ], [ 0x1B3C, 0x1B3C ], [ 0x1B42, 0x1B42 ],\n [ 0x1B6B, 0x1B73 ], [ 0x1DC0, 0x1DCA ], [ 0x1DFE, 0x1DFF ],\n [ 0x200B, 0x200F ], [ 0x202A, 0x202E ], [ 0x2060, 0x2063 ],\n [ 0x206A, 0x206F ], [ 0x20D0, 0x20EF ], [ 0x302A, 0x302F ],\n [ 0x3099, 0x309A ], [ 0xA806, 0xA806 ], [ 0xA80B, 0xA80B ],\n [ 0xA825, 0xA826 ], [ 0xFB1E, 0xFB1E ], [ 0xFE00, 0xFE0F ],\n [ 0xFE20, 0xFE23 ], [ 0xFEFF, 0xFEFF ], [ 0xFFF9, 0xFFFB ],\n [ 0x10A01, 0x10A03 ], [ 0x10A05, 0x10A06 ], [ 0x10A0C, 0x10A0F ],\n [ 0x10A38, 0x10A3A ], [ 0x10A3F, 0x10A3F ], [ 0x1D167, 0x1D169 ],\n [ 0x1D173, 0x1D182 ], [ 0x1D185, 0x1D18B ], [ 0x1D1AA, 0x1D1AD ],\n [ 0x1D242, 0x1D244 ], [ 0xE0001, 0xE0001 ], [ 0xE0020, 0xE007F ],\n [ 0xE0100, 0xE01EF ]\n];\n\n// Sorted list of non-overlapping intervals of East Asian Ambiguous characters\n// generated by \"uniset +WIDTH-A -cat=Me -cat=Mn -cat=Cf c\"\nlib.wc.ambiguous = [\n [ 0x00A1, 0x00A1 ], [ 0x00A4, 0x00A4 ], [ 0x00A7, 0x00A8 ],\n [ 0x00AA, 0x00AA ], [ 0x00AE, 0x00AE ], [ 0x00B0, 0x00B4 ],\n [ 0x00B6, 0x00BA ], [ 0x00BC, 0x00BF ], [ 0x00C6, 0x00C6 ],\n [ 0x00D0, 0x00D0 ], [ 0x00D7, 0x00D8 ], [ 0x00DE, 0x00E1 ],\n [ 0x00E6, 0x00E6 ], [ 0x00E8, 0x00EA ], [ 0x00EC, 0x00ED ],\n [ 0x00F0, 0x00F0 ], [ 0x00F2, 0x00F3 ], [ 0x00F7, 0x00FA ],\n [ 0x00FC, 0x00FC ], [ 0x00FE, 0x00FE ], [ 0x0101, 0x0101 ],\n [ 0x0111, 0x0111 ], [ 0x0113, 0x0113 ], [ 0x011B, 0x011B ],\n [ 0x0126, 0x0127 ], [ 0x012B, 0x012B ], [ 0x0131, 0x0133 ],\n [ 0x0138, 0x0138 ], [ 0x013F, 0x0142 ], [ 0x0144, 0x0144 ],\n [ 0x0148, 0x014B ], [ 0x014D, 0x014D ], [ 0x0152, 0x0153 ],\n [ 0x0166, 0x0167 ], [ 0x016B, 0x016B ], [ 0x01CE, 0x01CE ],\n [ 0x01D0, 0x01D0 ], [ 0x01D2, 0x01D2 ], [ 0x01D4, 0x01D4 ],\n [ 0x01D6, 0x01D6 ], [ 0x01D8, 0x01D8 ], [ 0x01DA, 0x01DA ],\n [ 0x01DC, 0x01DC ], [ 0x0251, 0x0251 ], [ 0x0261, 0x0261 ],\n [ 0x02C4, 0x02C4 ], [ 0x02C7, 0x02C7 ], [ 0x02C9, 0x02CB ],\n [ 0x02CD, 0x02CD ], [ 0x02D0, 0x02D0 ], [ 0x02D8, 0x02DB ],\n [ 0x02DD, 0x02DD ], [ 0x02DF, 0x02DF ], [ 0x0391, 0x03A1 ],\n [ 0x03A3, 0x03A9 ], [ 0x03B1, 0x03C1 ], [ 0x03C3, 0x03C9 ],\n [ 0x0401, 0x0401 ], [ 0x0410, 0x044F ], [ 0x0451, 0x0451 ],\n [ 0x2010, 0x2010 ], [ 0x2013, 0x2016 ], [ 0x2018, 0x2019 ],\n [ 0x201C, 0x201D ], [ 0x2020, 0x2022 ], [ 0x2024, 0x2027 ],\n [ 0x2030, 0x2030 ], [ 0x2032, 0x2033 ], [ 0x2035, 0x2035 ],\n [ 0x203B, 0x203B ], [ 0x203E, 0x203E ], [ 0x2074, 0x2074 ],\n [ 0x207F, 0x207F ], [ 0x2081, 0x2084 ], [ 0x20AC, 0x20AC ],\n [ 0x2103, 0x2103 ], [ 0x2105, 0x2105 ], [ 0x2109, 0x2109 ],\n [ 0x2113, 0x2113 ], [ 0x2116, 0x2116 ], [ 0x2121, 0x2122 ],\n [ 0x2126, 0x2126 ], [ 0x212B, 0x212B ], [ 0x2153, 0x2154 ],\n [ 0x215B, 0x215E ], [ 0x2160, 0x216B ], [ 0x2170, 0x2179 ],\n [ 0x2190, 0x2199 ], [ 0x21B8, 0x21B9 ], [ 0x21D2, 0x21D2 ],\n [ 0x21D4, 0x21D4 ], [ 0x21E7, 0x21E7 ], [ 0x2200, 0x2200 ],\n [ 0x2202, 0x2203 ], [ 0x2207, 0x2208 ], [ 0x220B, 0x220B ],\n [ 0x220F, 0x220F ], [ 0x2211, 0x2211 ], [ 0x2215, 0x2215 ],\n [ 0x221A, 0x221A ], [ 0x221D, 0x2220 ], [ 0x2223, 0x2223 ],\n [ 0x2225, 0x2225 ], [ 0x2227, 0x222C ], [ 0x222E, 0x222E ],\n [ 0x2234, 0x2237 ], [ 0x223C, 0x223D ], [ 0x2248, 0x2248 ],\n [ 0x224C, 0x224C ], [ 0x2252, 0x2252 ], [ 0x2260, 0x2261 ],\n [ 0x2264, 0x2267 ], [ 0x226A, 0x226B ], [ 0x226E, 0x226F ],\n [ 0x2282, 0x2283 ], [ 0x2286, 0x2287 ], [ 0x2295, 0x2295 ],\n [ 0x2299, 0x2299 ], [ 0x22A5, 0x22A5 ], [ 0x22BF, 0x22BF ],\n [ 0x2312, 0x2312 ], [ 0x2460, 0x24E9 ], [ 0x24EB, 0x254B ],\n [ 0x2550, 0x2573 ], [ 0x2580, 0x258F ], [ 0x2592, 0x2595 ],\n [ 0x25A0, 0x25A1 ], [ 0x25A3, 0x25A9 ], [ 0x25B2, 0x25B3 ],\n [ 0x25B6, 0x25B7 ], [ 0x25BC, 0x25BD ], [ 0x25C0, 0x25C1 ],\n [ 0x25C6, 0x25C8 ], [ 0x25CB, 0x25CB ], [ 0x25CE, 0x25D1 ],\n [ 0x25E2, 0x25E5 ], [ 0x25EF, 0x25EF ], [ 0x2605, 0x2606 ],\n [ 0x2609, 0x2609 ], [ 0x260E, 0x260F ], [ 0x2614, 0x2615 ],\n [ 0x261C, 0x261C ], [ 0x261E, 0x261E ], [ 0x2640, 0x2640 ],\n [ 0x2642, 0x2642 ], [ 0x2660, 0x2661 ], [ 0x2663, 0x2665 ],\n [ 0x2667, 0x266A ], [ 0x266C, 0x266D ], [ 0x266F, 0x266F ],\n [ 0x273D, 0x273D ], [ 0x2776, 0x277F ], [ 0xE000, 0xF8FF ],\n [ 0xFFFD, 0xFFFD ], [ 0xF0000, 0xFFFFD ], [ 0x100000, 0x10FFFD ]\n];\n\n/**\n * Binary search to check if the given unicode character is a space character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {boolean} True if the given character is a space character; false\n * otherwise.\n */\nlib.wc.isSpace = function(ucs) {\n // Auxiliary function for binary search in interval table.\n var min = 0, max = lib.wc.combining.length - 1;\n var mid;\n\n if (ucs < lib.wc.combining[0][0] || ucs > lib.wc.combining[max][1])\n return false;\n while (max >= min) {\n mid = Math.floor((min + max) / 2);\n if (ucs > lib.wc.combining[mid][1]) {\n min = mid + 1;\n } else if (ucs < lib.wc.combining[mid][0]) {\n max = mid - 1;\n } else {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Auxiliary function for checking if the given unicode character is a East\n * Asian Ambiguous character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {boolean} True if the given character is a East Asian Ambiguous\n * character.\n */\nlib.wc.isCjkAmbiguous = function(ucs) {\n var min = 0, max = lib.wc.ambiguous.length - 1;\n var mid;\n\n if (ucs < lib.wc.ambiguous[0][0] || ucs > lib.wc.ambiguous[max][1])\n return false;\n while (max >= min) {\n mid = Math.floor((min + max) / 2);\n if (ucs > lib.wc.ambiguous[mid][1]) {\n min = mid + 1;\n } else if (ucs < lib.wc.ambiguous[mid][0]) {\n max = mid - 1;\n } else {\n return true;\n }\n }\n\n return false;\n};\n\n/**\n * Determine the column width of the given character.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidth = function(ucs) {\n if (lib.wc.regardCjkAmbiguous) {\n return lib.wc.charWidthRegardAmbiguous(ucs);\n } else {\n return lib.wc.charWidthDisregardAmbiguous(ucs);\n }\n};\n\n/**\n * Determine the column width of the given character without considering East\n * Asian Ambiguous characters.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidthDisregardAmbiguous = function(ucs) {\n // Test for 8-bit control characters.\n if (ucs === 0)\n return lib.wc.nulWidth;\n if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0))\n return lib.wc.controlWidth;\n\n // Optimize for ASCII characters.\n if (ucs < 0x7f)\n return 1;\n\n // Binary search in table of non-spacing characters.\n if (lib.wc.isSpace(ucs))\n return 0;\n\n // If we arrive here, ucs is not a combining or C0/C1 control character.\n return 1 +\n (ucs >= 0x1100 &&\n (ucs <= 0x115f || // Hangul Jamo init. consonants\n ucs == 0x2329 || ucs == 0x232a ||\n (ucs >= 0x2e80 && ucs <= 0xa4cf &&\n ucs != 0x303f) || // CJK ... Yi\n (ucs >= 0xac00 && ucs <= 0xd7a3) || // Hangul Syllables\n (ucs >= 0xf900 && ucs <= 0xfaff) || // CJK Compatibility Ideographs\n (ucs >= 0xfe10 && ucs <= 0xfe19) || // Vertical forms\n (ucs >= 0xfe30 && ucs <= 0xfe6f) || // CJK Compatibility Forms\n (ucs >= 0xff00 && ucs <= 0xff60) || // Fullwidth Forms\n (ucs >= 0xffe0 && ucs <= 0xffe6) ||\n (ucs >= 0x20000 && ucs <= 0x2fffd) ||\n (ucs >= 0x30000 && ucs <= 0x3fffd)));\n // TODO: emoji characters usually require space for wide characters although\n // East Asian width spec says nothing. Should we add special cases for them?\n};\n\n/**\n * Determine the column width of the given character considering East Asian\n * Ambiguous characters.\n *\n * @param {integer} ucs A unicode character code.\n *\n * @return {integer} The column width of the given character.\n */\nlib.wc.charWidthRegardAmbiguous = function(ucs) {\n if (lib.wc.isCjkAmbiguous(ucs))\n return lib.wc.cjkAmbiguousWidth;\n\n return lib.wc.charWidthDisregardAmbiguous(ucs);\n};\n\n/**\n * Determine the column width of the given string.\n *\n * @param {string} str A string.\n *\n * @return {integer} The column width of the given string.\n */\nlib.wc.strWidth = function(str) {\n var width, rv = 0;\n\n for (var i = 0; i < str.length;) {\n var codePoint = str.codePointAt(i);\n width = lib.wc.charWidth(codePoint);\n if (width < 0)\n return -1;\n rv += width;\n i += (codePoint <= 0xffff) ? 1 : 2;\n }\n\n return rv;\n};\n\n/**\n * Get the substring at the given column offset of the given column width.\n *\n * @param {string} str The string to get substring from.\n * @param {integer} start The starting column offset to get substring.\n * @param {integer} opt_width The column width of the substring.\n *\n * @return {string} The substring.\n */\nlib.wc.substr = function(str, start, opt_width) {\n var startIndex, endIndex, width;\n\n for (startIndex = 0, width = 0; startIndex < str.length; startIndex++) {\n width += lib.wc.charWidth(str.charCodeAt(startIndex));\n if (width > start)\n break;\n }\n\n if (opt_width != undefined) {\n for (endIndex = startIndex, width = 0;\n endIndex < str.length && width <= opt_width;\n width += lib.wc.charWidth(str.charCodeAt(endIndex)), endIndex++);\n if (width > opt_width)\n endIndex--;\n return str.substring(startIndex, endIndex);\n }\n\n return str.substr(startIndex);\n};\n\n/**\n * Get substring at the given start and end column offset.\n *\n * @param {string} str The string to get substring from.\n * @param {integer} start The starting column offset.\n * @param {integer} end The ending column offset.\n *\n * @return {string} The substring.\n */\nlib.wc.substring = function(str, start, end) {\n return lib.wc.substr(str, start, end - start);\n};\nlib.resource.add('libdot/changelog/version', 'text/plain',\n'1.16' +\n''\n);\n\nlib.resource.add('libdot/changelog/date', 'text/plain',\n'2017-08-16' +\n''\n);\n\n// SOURCE FILE: hterm/js/hterm.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.Storage');\n\n/**\n * @fileoverview Declares the hterm.* namespace and some basic shared utilities\n * that are too small to deserve dedicated files.\n */\nvar hterm = {};\n\n/**\n * The type of window hosting hterm.\n *\n * This is set as part of hterm.init(). The value is invalid until\n * initialization completes.\n */\nhterm.windowType = null;\n\n/**\n * Warning message to display in the terminal when browser zoom is enabled.\n *\n * You can replace it with your own localized message.\n */\nhterm.zoomWarningMessage = 'ZOOM != 100%';\n\n/**\n * Brief overlay message displayed when text is copied to the clipboard.\n *\n * By default it is the unicode BLACK SCISSORS character, but you can\n * replace it with your own localized message.\n *\n * This is only displayed when the 'enable-clipboard-notice' preference\n * is enabled.\n */\nhterm.notifyCopyMessage = '\\u2702';\n\n\n/**\n * Text shown in a desktop notification for the terminal\n * bell. \\u226a is a unicode EIGHTH NOTE, %(title) will\n * be replaced by the terminal title.\n */\nhterm.desktopNotificationTitle = '\\u266A %(title) \\u266A';\n\n/**\n * List of known hterm test suites.\n *\n * A test harness should ensure that they all exist before running.\n */\nhterm.testDeps = ['hterm.ScrollPort.Tests', 'hterm.Screen.Tests',\n 'hterm.Terminal.Tests', 'hterm.VT.Tests',\n 'hterm.VT.CannedTests'];\n\n/**\n * The hterm init function, registered with lib.registerInit().\n *\n * This is called during lib.init().\n *\n * @param {function} onInit The function lib.init() wants us to invoke when\n * initialization is complete.\n */\nlib.registerInit('hterm', function(onInit) {\n function onWindow(window) {\n hterm.windowType = window.type;\n setTimeout(onInit, 0);\n }\n\n function onTab(tab) {\n if (tab && window.chrome) {\n chrome.windows.get(tab.windowId, null, onWindow);\n } else {\n // TODO(rginda): This is where we end up for a v1 app's background page.\n // Maybe windowType = 'none' would be more appropriate, or something.\n hterm.windowType = 'normal';\n setTimeout(onInit, 0);\n }\n }\n\n if (!hterm.defaultStorage) {\n if (window.chrome && chrome.storage && chrome.storage.sync) {\n hterm.defaultStorage = new lib.Storage.Chrome(chrome.storage.sync);\n } else {\n hterm.defaultStorage = new lib.Storage.Local();\n }\n }\n\n // The chrome.tabs API is not supported in packaged apps, and detecting if\n // you're a packaged app is a little awkward.\n var isPackagedApp = false;\n if (window.chrome && chrome.runtime && chrome.runtime.getManifest) {\n var manifest = chrome.runtime.getManifest();\n isPackagedApp = manifest.app && manifest.app.background;\n }\n\n if (isPackagedApp) {\n // Packaged apps are never displayed in browser tabs.\n setTimeout(onWindow.bind(null, {type: 'popup'}), 0);\n } else {\n if (window.chrome && chrome.tabs) {\n // The getCurrent method gets the tab that is \"currently running\", not the\n // topmost or focused tab.\n chrome.tabs.getCurrent(onTab);\n } else {\n setTimeout(onWindow.bind(null, {type: 'normal'}), 0);\n }\n }\n});\n\n/**\n * Return decimal { width, height } for a given dom node.\n */\nhterm.getClientSize = function(dom) {\n return dom.getBoundingClientRect();\n};\n\n/**\n * Return decimal width for a given dom node.\n */\nhterm.getClientWidth = function(dom) {\n return dom.getBoundingClientRect().width;\n};\n\n/**\n * Return decimal height for a given dom node.\n */\nhterm.getClientHeight = function(dom) {\n return dom.getBoundingClientRect().height;\n};\n\n/**\n * Copy the current selection to the system clipboard.\n *\n * @param {HTMLDocument} The document with the selection to copy.\n */\nhterm.copySelectionToClipboard = function(document) {\n try {\n document.execCommand('copy');\n } catch (firefoxException) {\n // Ignore this. FF throws an exception if there was an error, even though\n // the spec says just return false.\n }\n};\n\n/**\n * Paste the system clipboard into the element with focus.\n *\n * Note: In Chrome/Firefox app/extension environments, you'll need the\n * \"clipboardRead\" permission. In other environments, this might always\n * fail as the browser frequently blocks access for security reasons.\n *\n * @param {HTMLDocument} The document to paste into.\n * @return {boolean} True if the paste succeeded.\n */\nhterm.pasteFromClipboard = function(document) {\n try {\n return document.execCommand('paste');\n } catch (firefoxException) {\n // Ignore this. FF 40 and older would incorrectly throw an exception if\n // there was an error instead of returning false.\n return false;\n }\n};\n\n/**\n * Create a new notification.\n *\n * @param {Object} params Various parameters for the notification.\n * @param {string} params.title The title (defaults to the window's title).\n * @param {string} params.body The message body (main text).\n */\nhterm.notify = function(params) {\n var def = (curr, fallback) => curr !== undefined ? curr : fallback;\n if (params === undefined || params === null)\n params = {};\n\n // Merge the user's choices with the default settings. We don't take it\n // directly in case it was stuffed with excess junk.\n var options = {\n 'body': params.body,\n 'icon': def(params.icon, lib.resource.getDataUrl('hterm/images/icon-96')),\n }\n\n var title = def(params.title, window.document.title);\n if (!title)\n title = 'hterm';\n title = lib.f.replaceVars(hterm.desktopNotificationTitle, {'title': title});\n\n var n = new Notification(title, options);\n n.onclick = function() {\n window.focus();\n this.close();\n };\n return n;\n};\n\n/**\n * Constructor for a hterm.Size record.\n *\n * Instances of this class have public read/write members for width and height.\n *\n * @param {integer} width The width of this record.\n * @param {integer} height The height of this record.\n */\nhterm.Size = function(width, height) {\n this.width = width;\n this.height = height;\n};\n\n/**\n * Adjust the width and height of this record.\n *\n * @param {integer} width The new width of this record.\n * @param {integer} height The new height of this record.\n */\nhterm.Size.prototype.resize = function(width, height) {\n this.width = width;\n this.height = height;\n};\n\n/**\n * Return a copy of this record.\n *\n * @return {hterm.Size} A new hterm.Size instance with the same width and\n * height.\n */\nhterm.Size.prototype.clone = function() {\n return new hterm.Size(this.width, this.height);\n};\n\n/**\n * Set the height and width of this instance based on another hterm.Size.\n *\n * @param {hterm.Size} that The object to copy from.\n */\nhterm.Size.prototype.setTo = function(that) {\n this.width = that.width;\n this.height = that.height;\n};\n\n/**\n * Test if another hterm.Size instance is equal to this one.\n *\n * @param {hterm.Size} that The other hterm.Size instance.\n * @return {boolean} True if both instances have the same width/height, false\n * otherwise.\n */\nhterm.Size.prototype.equals = function(that) {\n return this.width == that.width && this.height == that.height;\n};\n\n/**\n * Return a string representation of this instance.\n *\n * @return {string} A string that identifies the width and height of this\n * instance.\n */\nhterm.Size.prototype.toString = function() {\n return '[hterm.Size: ' + this.width + ', ' + this.height + ']';\n};\n\n/**\n * Constructor for a hterm.RowCol record.\n *\n * Instances of this class have public read/write members for row and column.\n *\n * This class includes an 'overflow' bit which is use to indicate that an\n * attempt has been made to move the cursor column passed the end of the\n * screen. When this happens we leave the cursor column set to the last column\n * of the screen but set the overflow bit. In this state cursor movement\n * happens normally, but any attempt to print new characters causes a cr/lf\n * first.\n *\n * @param {integer} row The row of this record.\n * @param {integer} column The column of this record.\n * @param {boolean} opt_overflow Optional boolean indicating that the RowCol\n * has overflowed.\n */\nhterm.RowCol = function(row, column, opt_overflow) {\n this.row = row;\n this.column = column;\n this.overflow = !!opt_overflow;\n};\n\n/**\n * Adjust the row and column of this record.\n *\n * @param {integer} row The new row of this record.\n * @param {integer} column The new column of this record.\n * @param {boolean} opt_overflow Optional boolean indicating that the RowCol\n * has overflowed.\n */\nhterm.RowCol.prototype.move = function(row, column, opt_overflow) {\n this.row = row;\n this.column = column;\n this.overflow = !!opt_overflow;\n};\n\n/**\n * Return a copy of this record.\n *\n * @return {hterm.RowCol} A new hterm.RowCol instance with the same row and\n * column.\n */\nhterm.RowCol.prototype.clone = function() {\n return new hterm.RowCol(this.row, this.column, this.overflow);\n};\n\n/**\n * Set the row and column of this instance based on another hterm.RowCol.\n *\n * @param {hterm.RowCol} that The object to copy from.\n */\nhterm.RowCol.prototype.setTo = function(that) {\n this.row = that.row;\n this.column = that.column;\n this.overflow = that.overflow;\n};\n\n/**\n * Test if another hterm.RowCol instance is equal to this one.\n *\n * @param {hterm.RowCol} that The other hterm.RowCol instance.\n * @return {boolean} True if both instances have the same row/column, false\n * otherwise.\n */\nhterm.RowCol.prototype.equals = function(that) {\n return (this.row == that.row && this.column == that.column &&\n this.overflow == that.overflow);\n};\n\n/**\n * Return a string representation of this instance.\n *\n * @return {string} A string that identifies the row and column of this\n * instance.\n */\nhterm.RowCol.prototype.toString = function() {\n return ('[hterm.RowCol: ' + this.row + ', ' + this.column + ', ' +\n this.overflow + ']');\n};\n// SOURCE FILE: hterm/js/hterm_frame.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f');\n\n/**\n * First draft of the interface between the terminal and a third party dialog.\n *\n * This is rough. It's just the terminal->dialog layer. To complete things\n * we'll also need a command->terminal layer. That will have to facilitate\n * command->terminal->dialog or direct command->dialog communication.\n *\n * I imagine this class will change significantly when that happens.\n */\n\n/**\n * Construct a new frame for the given terminal.\n *\n * @param terminal {hterm.Terminal} The parent terminal object.\n * @param url {String} The url to load in the frame.\n * @param opt_options {Object} Optional options for the frame. Not implemented.\n */\nhterm.Frame = function(terminal, url, opt_options) {\n this.terminal_ = terminal;\n this.div_ = terminal.div_;\n this.url = url;\n this.options = opt_options || {};\n this.iframe_ = null;\n this.container_ = null;\n this.messageChannel_ = null;\n};\n\n/**\n * Handle messages from the iframe.\n */\nhterm.Frame.prototype.onMessage_ = function(e) {\n switch (e.data.name) {\n case 'ipc-init-ok':\n // We get this response after we send them ipc-init and they finish.\n this.sendTerminalInfo_();\n return;\n case 'terminal-info-ok':\n // We get this response after we send them terminal-info and they finish.\n // Show the finished frame, and then rebind our message handler to the\n // callback below.\n this.container_.style.display = 'flex';\n this.messageChannel_.port1.onmessage = this.onMessage.bind(this);\n this.onLoad();\n return;\n default:\n console.log('Unknown message from frame:', e.data);\n return;\n }\n};\n\n/**\n * Clients could override this, I guess.\n *\n * It doesn't support multiple listeners, but I'm not sure that would make sense\n * here. It's probably better to speak directly to our parents.\n */\nhterm.Frame.prototype.onMessage = function() {};\n\n/**\n * Handle iframe onLoad event.\n */\nhterm.Frame.prototype.onLoad_ = function() {\n this.messageChannel_ = new MessageChannel();\n this.messageChannel_.port1.onmessage = this.onMessage_.bind(this);\n this.messageChannel_.port1.start();\n this.iframe_.contentWindow.postMessage(\n {name: 'ipc-init', argv: [{messagePort: this.messageChannel_.port2}]},\n this.url, [this.messageChannel_.port2]);\n};\n\n/**\n * Clients may override this.\n */\nhterm.Frame.prototype.onLoad = function() {};\n\n/**\n * Sends the terminal-info message to the iframe.\n */\nhterm.Frame.prototype.sendTerminalInfo_ = function() {\n lib.f.getAcceptLanguages(function(languages) {\n this.postMessage('terminal-info', [{\n acceptLanguages: languages,\n foregroundColor: this.terminal_.getForegroundColor(),\n backgroundColor: this.terminal_.getBackgroundColor(),\n cursorColor: this.terminal_.getCursorColor(),\n fontSize: this.terminal_.getFontSize(),\n fontFamily: this.terminal_.getFontFamily(),\n baseURL: lib.f.getURL('/')\n }]\n );\n }.bind(this));\n};\n\n/**\n * User clicked the close button on the frame decoration.\n */\nhterm.Frame.prototype.onCloseClicked_ = function() {\n this.close();\n};\n\n/**\n * Close this frame.\n */\nhterm.Frame.prototype.close = function() {\n if (!this.container_ || !this.container_.parentNode)\n return;\n\n this.container_.parentNode.removeChild(this.container_);\n this.onClose();\n};\n\n\n/**\n * Clients may override this.\n */\nhterm.Frame.prototype.onClose = function() {};\n\n/**\n * Send a message to the iframe.\n */\nhterm.Frame.prototype.postMessage = function(name, argv) {\n if (!this.messageChannel_)\n throw new Error('Message channel is not set up.');\n\n this.messageChannel_.port1.postMessage({name: name, argv: argv});\n};\n\n/**\n * Show the UI for this frame.\n *\n * The iframe src is not loaded until this method is called.\n */\nhterm.Frame.prototype.show = function() {\n var self = this;\n\n function opt(name, defaultValue) {\n if (name in self.options)\n return self.options[name];\n\n return defaultValue;\n }\n\n var self = this;\n\n if (this.container_ && this.container_.parentNode) {\n console.error('Frame already visible');\n return;\n }\n\n var headerHeight = '16px';\n\n var divSize = hterm.getClientSize(this.div_);\n\n var width = opt('width', 640);\n var height = opt('height', 480);\n var left = (divSize.width - width) / 2;\n var top = (divSize.height - height) / 2;\n\n var document = this.terminal_.document_;\n\n var container = this.container_ = document.createElement('div');\n container.style.cssText = (\n 'position: absolute;' +\n 'display: none;' +\n 'flex-direction: column;' +\n 'top: 10%;' +\n 'left: 4%;' +\n 'width: 90%;' +\n 'height: 80%;' +\n 'min-height: 20%;' +\n 'max-height: 80%;' +\n 'box-shadow: 0 0 2px ' + this.terminal_.getForegroundColor() + ';' +\n 'border: 2px ' + this.terminal_.getForegroundColor() + ' solid;');\n\n if (false) {\n // No use for the close button, so no use for the window header either.\n var header = document.createElement('div');\n header.style.cssText = (\n 'display: flex;' +\n 'justify-content: flex-end;' +\n 'height: ' + headerHeight + ';' +\n 'background-color: ' + this.terminal_.getForegroundColor() + ';' +\n 'color: ' + this.terminal_.getBackgroundColor() + ';' +\n 'font-size: 16px;' +\n 'font-family: ' + this.terminal_.getFontFamily());\n container.appendChild(header);\n\n var button = document.createElement('div');\n button.setAttribute('role', 'button');\n button.style.cssText = (\n 'margin-top: -3px;' +\n 'margin-right: 3px;' +\n 'cursor: pointer;');\n button.textContent = '\\u2a2f';\n button.addEventListener('click', this.onCloseClicked_.bind(this));\n header.appendChild(button);\n }\n\n var iframe = this.iframe_ = document.createElement('iframe');\n iframe.onload = this.onLoad_.bind(this);\n iframe.style.cssText = (\n 'display: flex;' +\n 'flex: 1;' +\n 'width: 100%');\n iframe.setAttribute('src', this.url);\n iframe.setAttribute('seamless', true);\n container.appendChild(iframe);\n\n this.div_.appendChild(container);\n};\n// SOURCE FILE: hterm/js/hterm_keyboard.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyMap');\n\n/**\n * Keyboard handler.\n *\n * Consumes onKey* events and invokes onVTKeystroke on the associated\n * hterm.Terminal object.\n *\n * See also: [XTERM] as referenced in vt.js.\n *\n * @param {hterm.Terminal} The Terminal object associated with this keyboard.\n */\nhterm.Keyboard = function(terminal) {\n // The parent vt interpreter.\n this.terminal = terminal;\n\n // The element we're currently capturing keyboard events for.\n this.keyboardElement_ = null;\n\n // The event handlers we are interested in, and their bound callbacks, saved\n // so they can be uninstalled with removeEventListener, when required.\n this.handlers_ = [\n ['focusout', this.onFocusOut_.bind(this)],\n ['keydown', this.onKeyDown_.bind(this)],\n ['keypress', this.onKeyPress_.bind(this)],\n ['keyup', this.onKeyUp_.bind(this)],\n ['textInput', this.onTextInput_.bind(this)]\n ];\n\n /**\n * The current key map.\n */\n this.keyMap = new hterm.Keyboard.KeyMap(this);\n\n this.bindings = new hterm.Keyboard.Bindings(this);\n\n /**\n * none: Disable any AltGr related munging.\n * ctrl-alt: Assume Ctrl+Alt means AltGr.\n * left-alt: Assume left Alt means AltGr.\n * right-alt: Assume right Alt means AltGr.\n */\n this.altGrMode = 'none';\n\n /**\n * If true, Shift-Insert will fall through to the browser as a paste.\n * If false, the keystroke will be sent to the host.\n */\n this.shiftInsertPaste = true;\n\n /**\n * If true, home/end will control the terminal scrollbar and shift home/end\n * will send the VT keycodes. If false then home/end sends VT codes and\n * shift home/end scrolls.\n */\n this.homeKeysScroll = false;\n\n /**\n * Same as above, except for page up/page down.\n */\n this.pageKeysScroll = false;\n\n /**\n * If true, Ctrl-Plus/Minus/Zero controls zoom.\n * If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_,\n * Ctrl-Plus/Zero do nothing.\n */\n this.ctrlPlusMinusZeroZoom = true;\n\n /**\n * Ctrl+C copies if true, sends ^C to host if false.\n * Ctrl+Shift+C sends ^C to host if true, copies if false.\n */\n this.ctrlCCopy = false;\n\n /**\n * Ctrl+V pastes if true, sends ^V to host if false.\n * Ctrl+Shift+V sends ^V to host if true, pastes if false.\n */\n this.ctrlVPaste = false;\n\n /**\n * Enable/disable application keypad.\n *\n * This changes the way numeric keys are sent from the keyboard.\n */\n this.applicationKeypad = false;\n\n /**\n * Enable/disable the application cursor mode.\n *\n * This changes the way cursor keys are sent from the keyboard.\n */\n this.applicationCursor = false;\n\n /**\n * If true, the backspace should send BS ('\\x08', aka ^H). Otherwise\n * the backspace key should send '\\x7f'.\n */\n this.backspaceSendsBackspace = false;\n\n /**\n * The encoding method for data sent to the host.\n */\n this.characterEncoding = 'utf-8';\n\n /**\n * Set whether the meta key sends a leading escape or not.\n */\n this.metaSendsEscape = true;\n\n /**\n * Set whether meta-V gets passed to host.\n */\n this.passMetaV = true;\n\n /**\n * Controls how the alt key is handled.\n *\n * escape....... Send an ESC prefix.\n * 8-bit........ Add 128 to the unshifted character as in xterm.\n * browser-key.. Wait for the keypress event and see what the browser says.\n * (This won't work well on platforms where the browser\n * performs a default action for some alt sequences.)\n *\n * This setting only matters when alt is distinct from meta (altIsMeta is\n * false.)\n */\n this.altSendsWhat = 'escape';\n\n /**\n * Set whether the alt key acts as a meta key, instead of producing 8-bit\n * characters.\n *\n * True to enable, false to disable, null to autodetect based on platform.\n */\n this.altIsMeta = false;\n\n /**\n * If true, tries to detect DEL key events that are from alt-backspace on\n * Chrome OS vs from a true DEL key press.\n *\n * Background: At the time of writing, on Chrome OS, alt-backspace is mapped\n * to DEL. Some users may be happy with this, but others may be frustrated\n * that it's impossible to do meta-backspace. If the user enables this pref,\n * we use a trick to tell a true DEL keypress from alt-backspace: on\n * alt-backspace, we will see the alt key go down, then get a DEL keystroke\n * that indicates that alt is not pressed. See https://crbug.com/174410 .\n */\n this.altBackspaceIsMetaBackspace = false;\n\n /**\n * Used to keep track of the current alt-key state, which is necessary for\n * the altBackspaceIsMetaBackspace preference above and for the altGrMode\n * preference. This is a bitmap with where bit positions correspond to the\n * \"location\" property of the key event.\n */\n this.altKeyPressed = 0;\n\n /**\n * If true, Chrome OS media keys will be mapped to their F-key equivalent.\n * E.g. \"Back\" will be mapped to F1. If false, Chrome will handle the keys.\n */\n this.mediaKeysAreFKeys = false;\n\n /**\n * Holds the previous setting of altSendsWhat when DECSET 1039 is used. When\n * DECRST 1039 is used, altSendsWhat is changed back to this and this is\n * nulled out.\n */\n this.previousAltSendsWhat_ = null;\n};\n\n/**\n * Special handling for keyCodes in a keyboard layout.\n */\nhterm.Keyboard.KeyActions = {\n /**\n * Call preventDefault and stopPropagation for this key event and nothing\n * else.\n */\n CANCEL: lib.f.createEnum('CANCEL'),\n\n /**\n * This performs the default terminal action for the key. If used in the\n * 'normal' action and the the keystroke represents a printable key, the\n * character will be sent to the host. If used in one of the modifier\n * actions, the terminal will perform the normal action after (possibly)\n * altering it.\n *\n * - If the normal sequence starts with CSI, the sequence will be adjusted\n * to include the modifier parameter as described in [XTERM] in the final\n * table of the \"PC-Style Function Keys\" section.\n *\n * - If the control key is down and the key represents a printable character,\n * and the uppercase version of the unshifted keycap is between\n * 64 (ASCII '@') and 95 (ASCII '_'), then the uppercase version of the\n * unshifted keycap minus 64 is sent. This makes '^@' send '\\x00' and\n * '^_' send '\\x1f'. (Note that one higher that 0x1f is 0x20, which is\n * the first printable ASCII value.)\n *\n * - If the alt key is down and the key represents a printable character then\n * the value of the character is shifted up by 128.\n *\n * - If meta is down and configured to send an escape, '\\x1b' will be sent\n * before the normal action is performed.\n */\n DEFAULT: lib.f.createEnum('DEFAULT'),\n\n /**\n * Causes the terminal to opt out of handling the key event, instead letting\n * the browser deal with it.\n */\n PASS: lib.f.createEnum('PASS'),\n\n /**\n * Insert the first or second character of the keyCap, based on e.shiftKey.\n * The key will be handled in onKeyDown, and e.preventDefault() will be\n * called.\n *\n * It is useful for a modified key action, where it essentially strips the\n * modifier while preventing the browser from reacting to the key.\n */\n STRIP: lib.f.createEnum('STRIP')\n};\n\n/**\n * Encode a string according to the 'send-encoding' preference.\n */\nhterm.Keyboard.prototype.encode = function(str) {\n if (this.characterEncoding == 'utf-8')\n return this.terminal.vt.encodeUTF8(str);\n\n return str;\n};\n\n/**\n * Capture keyboard events sent to the associated element.\n *\n * This enables the keyboard. Captured events are consumed by this class\n * and will not perform their default action or bubble to other elements.\n *\n * Passing a null element will uninstall the keyboard handlers.\n *\n * @param {HTMLElement} element The element whose events should be captured, or\n * null to disable the keyboard.\n */\nhterm.Keyboard.prototype.installKeyboard = function(element) {\n if (element == this.keyboardElement_)\n return;\n\n if (element && this.keyboardElement_)\n this.installKeyboard(null);\n\n for (var i = 0; i < this.handlers_.length; i++) {\n var handler = this.handlers_[i];\n if (element) {\n element.addEventListener(handler[0], handler[1]);\n } else {\n this.keyboardElement_.removeEventListener(handler[0], handler[1]);\n }\n }\n\n this.keyboardElement_ = element;\n};\n\n/**\n * Disable keyboard event capture.\n *\n * This will allow the browser to process key events normally.\n */\nhterm.Keyboard.prototype.uninstallKeyboard = function() {\n this.installKeyboard(null);\n};\n\n/**\n * Handle onTextInput events.\n *\n * We're not actually supposed to get these, but we do on the Mac in the case\n * where a third party app sends synthetic keystrokes to Chrome.\n */\nhterm.Keyboard.prototype.onTextInput_ = function(e) {\n if (!e.data)\n return;\n\n e.data.split('').forEach(this.terminal.onVTKeystroke.bind(this.terminal));\n};\n\n/**\n * Handle onKeyPress events.\n */\nhterm.Keyboard.prototype.onKeyPress_ = function(e) {\n var code;\n\n var key = String.fromCharCode(e.which);\n var lowerKey = key.toLowerCase();\n if ((e.ctrlKey || e.metaKey) && (lowerKey == 'c' || lowerKey == 'v')) {\n // On FF the key press (not key down) event gets fired for copy/paste.\n // Let it fall through for the default browser behavior.\n return;\n }\n\n if (e.altKey && this.altSendsWhat == 'browser-key' && e.charCode == 0) {\n // If we got here because we were expecting the browser to handle an\n // alt sequence but it didn't do it, then we might be on an OS without\n // an enabled IME system. In that case we fall back to xterm-like\n // behavior.\n //\n // This happens here only as a fallback. Typically these platforms should\n // set altSendsWhat to either 'escape' or '8-bit'.\n var ch = String.fromCharCode(e.keyCode);\n if (!e.shiftKey)\n ch = ch.toLowerCase();\n code = ch.charCodeAt(0) + 128;\n\n } else if (e.charCode >= 32) {\n ch = e.charCode;\n }\n\n if (ch)\n this.terminal.onVTKeystroke(String.fromCharCode(ch));\n\n e.preventDefault();\n e.stopPropagation();\n};\n\n/**\n * Prevent default handling for non-ctrl-shifted event.\n *\n * When combined with Chrome permission 'app.window.fullscreen.overrideEsc',\n * and called for both key down and key up events,\n * the ESC key remains usable within fullscreen Chrome app windows.\n */\nhterm.Keyboard.prototype.preventChromeAppNonCtrlShiftDefault_ = function(e) {\n if (!window.chrome || !window.chrome.app || !window.chrome.app.window)\n return;\n if (!e.ctrlKey || !e.shiftKey)\n e.preventDefault();\n};\n\nhterm.Keyboard.prototype.onFocusOut_ = function(e) {\n this.altKeyPressed = 0;\n};\n\nhterm.Keyboard.prototype.onKeyUp_ = function(e) {\n if (e.keyCode == 18)\n this.altKeyPressed = this.altKeyPressed & ~(1 << (e.location - 1));\n\n if (e.keyCode == 27)\n this.preventChromeAppNonCtrlShiftDefault_(e);\n};\n\n/**\n * Handle onKeyDown events.\n */\nhterm.Keyboard.prototype.onKeyDown_ = function(e) {\n if (e.keyCode == 18)\n this.altKeyPressed = this.altKeyPressed | (1 << (e.location - 1));\n\n if (e.keyCode == 27)\n this.preventChromeAppNonCtrlShiftDefault_(e);\n\n var keyDef = this.keyMap.keyDefs[e.keyCode];\n if (!keyDef) {\n console.warn('No definition for keyCode: ' + e.keyCode);\n return;\n }\n\n // The type of action we're going to use.\n var resolvedActionType = null;\n\n var self = this;\n function getAction(name) {\n // Get the key action for the given action name. If the action is a\n // function, dispatch it. If the action defers to the normal action,\n // resolve that instead.\n\n resolvedActionType = name;\n\n var action = keyDef[name];\n if (typeof action == 'function')\n action = action.apply(self.keyMap, [e, keyDef]);\n\n if (action === DEFAULT && name != 'normal')\n action = getAction('normal');\n\n return action;\n }\n\n // Note that we use the triple-equals ('===') operator to test equality for\n // these constants, in order to distinguish usage of the constant from usage\n // of a literal string that happens to contain the same bytes.\n var CANCEL = hterm.Keyboard.KeyActions.CANCEL;\n var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT;\n var PASS = hterm.Keyboard.KeyActions.PASS;\n var STRIP = hterm.Keyboard.KeyActions.STRIP;\n\n var control = e.ctrlKey;\n var alt = this.altIsMeta ? false : e.altKey;\n var meta = this.altIsMeta ? (e.altKey || e.metaKey) : e.metaKey;\n\n // In the key-map, we surround the keyCap for non-printables in \"[...]\"\n var isPrintable = !(/^\\[\\w+\\]$/.test(keyDef.keyCap));\n\n switch (this.altGrMode) {\n case 'ctrl-alt':\n if (isPrintable && control && alt) {\n // ctrl-alt-printable means altGr. We clear out the control and\n // alt modifiers and wait to see the charCode in the keydown event.\n control = false;\n alt = false;\n }\n break;\n\n case 'right-alt':\n if (isPrintable && (this.terminal.keyboard.altKeyPressed & 2)) {\n control = false;\n alt = false;\n }\n break;\n\n case 'left-alt':\n if (isPrintable && (this.terminal.keyboard.altKeyPressed & 1)) {\n control = false;\n alt = false;\n }\n break;\n }\n\n var action;\n\n if (control) {\n action = getAction('control');\n } else if (alt) {\n action = getAction('alt');\n } else if (meta) {\n action = getAction('meta');\n } else {\n action = getAction('normal');\n }\n\n // If e.maskShiftKey was set (during getAction) it means the shift key is\n // already accounted for in the action, and we should not act on it any\n // further. This is currently only used for Ctrl-Shift-Tab, which should send\n // \"CSI Z\", not \"CSI 1 ; 2 Z\".\n var shift = !e.maskShiftKey && e.shiftKey;\n\n var keyDown = {\n keyCode: e.keyCode,\n shift: e.shiftKey, // not `var shift` from above.\n ctrl: control,\n alt: alt,\n meta: meta\n };\n\n var binding = this.bindings.getBinding(keyDown);\n\n if (binding) {\n // Clear out the modifier bits so we don't try to munge the sequence\n // further.\n shift = control = alt = meta = false;\n resolvedActionType = 'normal';\n action = binding.action;\n\n if (typeof action == 'function')\n action = action.call(this, this.terminal, keyDown);\n }\n\n if (alt && this.altSendsWhat == 'browser-key' && action == DEFAULT) {\n // When altSendsWhat is 'browser-key', we wait for the keypress event.\n // In keypress, the browser should have set the event.charCode to the\n // appropriate character.\n // TODO(rginda): Character compositions will need some black magic.\n action = PASS;\n }\n\n if (action === PASS || (action === DEFAULT && !(control || alt || meta))) {\n // If this key is supposed to be handled by the browser, or it is an\n // unmodified key with the default action, then exit this event handler.\n // If it's an unmodified key, it'll be handled in onKeyPress where we\n // can tell for sure which ASCII code to insert.\n //\n // This block needs to come before the STRIP test, otherwise we'll strip\n // the modifier and think it's ok to let the browser handle the keypress.\n // The browser won't know we're trying to ignore the modifiers and might\n // perform some default action.\n return;\n }\n\n if (action === STRIP) {\n alt = control = false;\n action = keyDef.normal;\n if (typeof action == 'function')\n action = action.apply(this.keyMap, [e, keyDef]);\n\n if (action == DEFAULT && keyDef.keyCap.length == 2)\n action = keyDef.keyCap.substr((shift ? 1 : 0), 1);\n }\n\n e.preventDefault();\n e.stopPropagation();\n\n if (action === CANCEL)\n return;\n\n if (action !== DEFAULT && typeof action != 'string') {\n console.warn('Invalid action: ' + JSON.stringify(action));\n return;\n }\n\n // Strip the modifier that is associated with the action, since we assume that\n // modifier has already been accounted for in the action.\n if (resolvedActionType == 'control') {\n control = false;\n } else if (resolvedActionType == 'alt') {\n alt = false;\n } else if (resolvedActionType == 'meta') {\n meta = false;\n }\n\n if (action.substr(0, 2) == '\\x1b[' && (alt || control || shift)) {\n // The action is an escape sequence that and it was triggered in the\n // presence of a keyboard modifier, we may need to alter the action to\n // include the modifier before sending it.\n\n var mod;\n\n if (shift && !(alt || control)) {\n mod = ';2';\n } else if (alt && !(shift || control)) {\n mod = ';3';\n } else if (shift && alt && !control) {\n mod = ';4';\n } else if (control && !(shift || alt)) {\n mod = ';5';\n } else if (shift && control && !alt) {\n mod = ';6';\n } else if (alt && control && !shift) {\n mod = ';7';\n } else if (shift && alt && control) {\n mod = ';8';\n }\n\n if (action.length == 3) {\n // Some of the CSI sequences have zero parameters unless modified.\n action = '\\x1b[1' + mod + action.substr(2, 1);\n } else {\n // Others always have at least one parameter.\n action = action.substr(0, action.length - 1) + mod +\n action.substr(action.length - 1);\n }\n\n } else {\n if (action === DEFAULT) {\n action = keyDef.keyCap.substr((shift ? 1 : 0), 1);\n\n if (control) {\n var unshifted = keyDef.keyCap.substr(0, 1);\n var code = unshifted.charCodeAt(0);\n if (code >= 64 && code <= 95) {\n action = String.fromCharCode(code - 64);\n }\n }\n }\n\n if (alt && this.altSendsWhat == '8-bit' && action.length == 1) {\n var code = action.charCodeAt(0) + 128;\n action = String.fromCharCode(code);\n }\n\n // We respect alt/metaSendsEscape even if the keymap action was a literal\n // string. Otherwise, every overridden alt/meta action would have to\n // check alt/metaSendsEscape.\n if ((alt && this.altSendsWhat == 'escape') ||\n (meta && this.metaSendsEscape)) {\n action = '\\x1b' + action;\n }\n }\n\n this.terminal.onVTKeystroke(action);\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_bindings.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * A mapping from hterm.Keyboard.KeyPattern to an action.\n *\n * TODO(rginda): For now this bindings code is only used for user overrides.\n * hterm.Keyboard.KeyMap still handles all of the built-in key mappings.\n * It'd be nice if we migrated that over to be hterm.Keyboard.Bindings based.\n */\nhterm.Keyboard.Bindings = function() {\n this.bindings_ = {};\n};\n\n/**\n * Remove all bindings.\n */\nhterm.Keyboard.Bindings.prototype.clear = function () {\n this.bindings_ = {};\n};\n\n/**\n * Add a new binding.\n *\n * Internal API that assumes parsed objects as inputs.\n * See the public addBinding for more details.\n *\n * @param {hterm.Keyboard.KeyPattern} keyPattern\n * @param {string|function|hterm.Keyboard.KeyAction} action\n */\nhterm.Keyboard.Bindings.prototype.addBinding_ = function(keyPattern, action) {\n var binding = null;\n var list = this.bindings_[keyPattern.keyCode];\n if (list) {\n for (var i = 0; i < list.length; i++) {\n if (list[i].keyPattern.matchKeyPattern(keyPattern)) {\n binding = list[i];\n break;\n }\n }\n }\n\n if (binding) {\n binding.action = action;\n } else {\n binding = {keyPattern: keyPattern, action: action};\n\n if (!list) {\n this.bindings_[keyPattern.keyCode] = [binding];\n } else {\n this.bindings_[keyPattern.keyCode].push(binding);\n\n list.sort(function(a, b) {\n return hterm.Keyboard.KeyPattern.sortCompare(\n a.keyPattern, b.keyPattern);\n });\n }\n }\n};\n\n/**\n * Add a new binding.\n *\n * If a binding for the keyPattern already exists it will be overridden.\n *\n * More specific keyPatterns take precedence over those with wildcards. Given\n * bindings for \"Ctrl-A\" and \"Ctrl-*-A\", and a \"Ctrl-A\" keydown, the \"Ctrl-A\"\n * binding will match even if \"Ctrl-*-A\" was created last.\n *\n * If action is a string, it will be passed through hterm.Parser.parseKeyAction.\n *\n * For example:\n * // Will replace Ctrl-P keystrokes with the string \"hiya!\".\n * addBinding('Ctrl-P', \"'hiya!'\");\n * // Will cancel the keystroke entirely (make it do nothing).\n * addBinding('Alt-D', hterm.Keyboard.KeyActions.CANCEL);\n * // Will execute the code and return the action.\n * addBinding('Ctrl-T', function() {\n * console.log('Got a T!');\n * return hterm.Keyboard.KeyActions.PASS;\n * });\n *\n * @param {string|hterm.Keyboard.KeyPattern} keyPattern\n * @param {string|function|hterm.Keyboard.KeyAction} action\n */\nhterm.Keyboard.Bindings.prototype.addBinding = function(key, action) {\n // If we're given a hterm.Keyboard.KeyPattern object, pass it down.\n if (typeof key != 'string') {\n this.addBinding_(key, action);\n return;\n }\n\n // Here we treat key as a string.\n var p = new hterm.Parser();\n\n p.reset(key);\n var sequence;\n\n try {\n sequence = p.parseKeySequence();\n } catch (ex) {\n console.error(ex);\n return;\n }\n\n if (!p.isComplete()) {\n console.error(p.error('Expected end of sequence: ' + sequence));\n return;\n }\n\n // If action is a string, parse it. Otherwise assume it's callable.\n if (typeof action == 'string') {\n p.reset(action);\n try {\n action = p.parseKeyAction();\n } catch (ex) {\n console.error(ex);\n return;\n }\n }\n\n if (!p.isComplete()) {\n console.error(p.error('Expected end of sequence: ' + sequence));\n return;\n }\n\n this.addBinding_(new hterm.Keyboard.KeyPattern(sequence), action);\n};\n\n/**\n * Add multiple bindings at a time using a map of {string: string, ...}\n *\n * This uses hterm.Parser to parse the maps key into KeyPatterns, and the\n * map values into {string|function|KeyAction}.\n *\n * For example:\n * {\n * // Will replace Ctrl-P keystrokes with the string \"hiya!\".\n * 'Ctrl-P': \"'hiya!'\",\n * // Will cancel the keystroke entirely (make it do nothing).\n * 'Alt-D': hterm.Keyboard.KeyActions.CANCEL,\n * }\n *\n * @param {Object} map\n */\nhterm.Keyboard.Bindings.prototype.addBindings = function(map) {\n for (var key in map) {\n this.addBinding(key, map[key]);\n }\n};\n\n/**\n * Return the binding that is the best match for the given keyDown record,\n * or null if there is no match.\n *\n * @param {Object} keyDown An object with a keyCode property and zero or\n * more boolean properties representing key modifiers. These property names\n * must match those defined in hterm.Keyboard.KeyPattern.modifiers.\n */\nhterm.Keyboard.Bindings.prototype.getBinding = function(keyDown) {\n var list = this.bindings_[keyDown.keyCode];\n if (!list)\n return null;\n\n for (var i = 0; i < list.length; i++) {\n var binding = list[i];\n if (binding.keyPattern.matchKeyDown(keyDown))\n return binding;\n }\n\n return null;\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_keymap.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyActions');\n\n/**\n * The default key map for hterm.\n *\n * Contains a mapping of keyCodes to keyDefs (aka key definitions). The key\n * definition tells the hterm.Keyboard class how to handle keycodes.\n *\n * This should work for most cases, as the printable characters get handled\n * in the keypress event. In that case, even if the keycap is wrong in the\n * key map, the correct character should be sent.\n *\n * Different layouts, such as Dvorak should work with this keymap, as those\n * layouts typically move keycodes around on the keyboard without disturbing\n * the actual keycaps.\n *\n * There may be issues with control keys on non-US keyboards or with keyboards\n * that very significantly from the expectations here, in which case we may\n * have to invent new key maps.\n *\n * The sequences defined in this key map come from [XTERM] as referenced in\n * vt.js, starting with the section titled \"Alt and Meta Keys\".\n */\nhterm.Keyboard.KeyMap = function(keyboard) {\n this.keyboard = keyboard;\n this.keyDefs = {};\n this.reset();\n};\n\n/**\n * Add a single key definition.\n *\n * The definition is a hash containing the following keys: 'keyCap', 'normal',\n * 'control', and 'alt'.\n *\n * - keyCap is a string identifying the key. For printable\n * keys, the key cap should be exactly two characters, starting with the\n * unshifted version. For example, 'aA', 'bB', '1!' and '=+'. For\n * non-printable the key cap should be surrounded in square braces, as in\n * '[INS]', '[LEFT]'. By convention, non-printable keycaps are in uppercase\n * but this is not a strict requirement.\n *\n * - Normal is the action that should be performed when they key is pressed\n * in the absence of any modifier. See below for the supported actions.\n *\n * - Control is the action that should be performed when they key is pressed\n * along with the control modifier. See below for the supported actions.\n *\n * - Alt is the action that should be performed when they key is pressed\n * along with the alt modifier. See below for the supported actions.\n *\n * - Meta is the action that should be performed when they key is pressed\n * along with the meta modifier. See below for the supported actions.\n *\n * Actions can be one of the hterm.Keyboard.KeyActions as documented below,\n * a literal string, or an array. If the action is a literal string then\n * the string is sent directly to the host. If the action is an array it\n * is taken to be an escape sequence that may be altered by modifier keys.\n * The second-to-last element of the array will be overwritten with the\n * state of the modifier keys, as specified in the final table of \"PC-Style\n * Function Keys\" from [XTERM].\n */\nhterm.Keyboard.KeyMap.prototype.addKeyDef = function(keyCode, def) {\n if (keyCode in this.keyDefs)\n console.warn('Duplicate keyCode: ' + keyCode);\n\n this.keyDefs[keyCode] = def;\n};\n\n/**\n * Add multiple key definitions in a single call.\n *\n * This function takes the key definitions as variable argument list. Each\n * argument is the key definition specified as an array.\n *\n * (If the function took everything as one big hash we couldn't detect\n * duplicates, and there would be a lot more typing involved.)\n *\n * Each key definition should have 6 elements: (keyCode, keyCap, normal action,\n * control action, alt action and meta action). See KeyMap.addKeyDef for the\n * meaning of these elements.\n */\nhterm.Keyboard.KeyMap.prototype.addKeyDefs = function(var_args) {\n for (var i = 0; i < arguments.length; i++) {\n this.addKeyDef(arguments[i][0],\n { keyCap: arguments[i][1],\n normal: arguments[i][2],\n control: arguments[i][3],\n alt: arguments[i][4],\n meta: arguments[i][5]\n });\n }\n};\n\n/**\n * Set up the default state for this keymap.\n */\nhterm.Keyboard.KeyMap.prototype.reset = function() {\n this.keyDefs = {};\n\n var self = this;\n\n // This function is used by the \"macro\" functions below. It makes it\n // possible to use the call() macro as an argument to any other macro.\n function resolve(action, e, k) {\n if (typeof action == 'function')\n return action.apply(self, [e, k]);\n\n return action;\n }\n\n // If not application keypad a, else b. The keys that care about\n // application keypad ignore it when the key is modified.\n function ak(a, b) {\n return function(e, k) {\n var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !self.keyboard.applicationKeypad) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If mod or not application cursor a, else b. The keys that care about\n // application cursor ignore it when the key is modified.\n function ac(a, b) {\n return function(e, k) {\n var action = (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !self.keyboard.applicationCursor) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If not backspace-sends-backspace keypad a, else b.\n function bs(a, b) {\n return function(e, k) {\n var action = !self.keyboard.backspaceSendsBackspace ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If not e.shiftKey a, else b.\n function sh(a, b) {\n return function(e, k) {\n var action = !e.shiftKey ? a : b;\n e.maskShiftKey = true;\n return resolve(action, e, k);\n };\n }\n\n // If not e.altKey a, else b.\n function alt(a, b) {\n return function(e, k) {\n var action = !e.altKey ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // If no modifiers a, else b.\n function mod(a, b) {\n return function(e, k) {\n var action = !(e.shiftKey || e.ctrlKey || e.altKey || e.metaKey) ? a : b;\n return resolve(action, e, k);\n };\n }\n\n // Compute a control character for a given character.\n function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) }\n\n // Call a method on the keymap instance.\n function c(m) { return function (e, k) { return this[m](e, k) } }\n\n // Ignore if not trapping media keys.\n function med(fn) {\n return function(e, k) {\n if (!self.keyboard.mediaKeysAreFKeys) {\n // Block Back, Forward, and Reload keys to avoid navigating away from\n // the current page.\n return (e.keyCode == 166 || e.keyCode == 167 || e.keyCode == 168) ?\n hterm.Keyboard.KeyActions.CANCEL :\n hterm.Keyboard.KeyActions.PASS;\n }\n return resolve(fn, e, k);\n };\n }\n\n var ESC = '\\x1b';\n var CSI = '\\x1b[';\n var SS3 = '\\x1bO';\n\n var CANCEL = hterm.Keyboard.KeyActions.CANCEL;\n var DEFAULT = hterm.Keyboard.KeyActions.DEFAULT;\n var PASS = hterm.Keyboard.KeyActions.PASS;\n var STRIP = hterm.Keyboard.KeyActions.STRIP;\n\n this.addKeyDefs(\n // These fields are: [keycode, keycap, normal, control, alt, meta]\n\n // The browser sends the keycode 0 for some keys. We'll just assume it's\n // going to do the right thing by default for those keys.\n [0, '[UNKNOWN]', PASS, PASS, PASS, PASS],\n\n // First row.\n [27, '[ESC]', ESC, DEFAULT, DEFAULT, DEFAULT],\n [112, '[F1]', mod(SS3 + 'P', CSI + 'P'), DEFAULT, CSI + \"23~\", DEFAULT],\n [113, '[F2]', mod(SS3 + 'Q', CSI + 'Q'), DEFAULT, CSI + \"24~\", DEFAULT],\n [114, '[F3]', mod(SS3 + 'R', CSI + 'R'), DEFAULT, CSI + \"25~\", DEFAULT],\n [115, '[F4]', mod(SS3 + 'S', CSI + 'S'), DEFAULT, CSI + \"26~\", DEFAULT],\n [116, '[F5]', CSI + '15~', DEFAULT, CSI + \"28~\", DEFAULT],\n [117, '[F6]', CSI + '17~', DEFAULT, CSI + \"29~\", DEFAULT],\n [118, '[F7]', CSI + '18~', DEFAULT, CSI + \"31~\", DEFAULT],\n [119, '[F8]', CSI + '19~', DEFAULT, CSI + \"32~\", DEFAULT],\n [120, '[F9]', CSI + '20~', DEFAULT, CSI + \"33~\", DEFAULT],\n [121, '[F10]', CSI + '21~', DEFAULT, CSI + \"34~\", DEFAULT],\n [122, '[F11]', CSI + '23~', DEFAULT, CSI + \"42~\", DEFAULT],\n [123, '[F12]', CSI + '24~', DEFAULT, CSI + \"43~\", DEFAULT],\n\n // Second row.\n [192, '`~', DEFAULT, sh(ctl('@'), ctl('^')), DEFAULT, PASS],\n [49, '1!', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [50, '2@', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [51, '3#', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [52, '4$', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [53, '5%', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [54, '6^', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [55, '7&', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [56, '8*', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [57, '9(', DEFAULT, c('onCtrlNum_'), c('onAltNum_'), c('onMetaNum_')],\n [48, '0)', DEFAULT, c('onPlusMinusZero_'),c('onAltNum_'),c('onPlusMinusZero_')],\n [189, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [187, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n // Firefox -_ and =+\n [173, '-_', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [61, '=+', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n // Firefox Italian +*\n [171, '+*', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n\n [8, '[BKSP]', bs('\\x7f', '\\b'), bs('\\b', '\\x7f'), DEFAULT, DEFAULT],\n\n // Third row.\n [9, '[TAB]', sh('\\t', CSI + 'Z'), STRIP, PASS, DEFAULT],\n [81, 'qQ', DEFAULT, ctl('Q'), DEFAULT, DEFAULT],\n [87, 'wW', DEFAULT, ctl('W'), DEFAULT, DEFAULT],\n [69, 'eE', DEFAULT, ctl('E'), DEFAULT, DEFAULT],\n [82, 'rR', DEFAULT, ctl('R'), DEFAULT, DEFAULT],\n [84, 'tT', DEFAULT, ctl('T'), DEFAULT, DEFAULT],\n [89, 'yY', DEFAULT, ctl('Y'), DEFAULT, DEFAULT],\n [85, 'uU', DEFAULT, ctl('U'), DEFAULT, DEFAULT],\n [73, 'iI', DEFAULT, ctl('I'), DEFAULT, DEFAULT],\n [79, 'oO', DEFAULT, ctl('O'), DEFAULT, DEFAULT],\n [80, 'pP', DEFAULT, ctl('P'), DEFAULT, DEFAULT],\n [219, '[{', DEFAULT, ctl('['), DEFAULT, DEFAULT],\n [221, ']}', DEFAULT, ctl(']'), DEFAULT, DEFAULT],\n [220, '\\\\|', DEFAULT, ctl('\\\\'), DEFAULT, DEFAULT],\n\n // Fourth row. (We let Ctrl-Shift-J pass for Chrome DevTools.)\n [20, '[CAPS]', PASS, PASS, PASS, DEFAULT],\n [65, 'aA', DEFAULT, ctl('A'), DEFAULT, DEFAULT],\n [83, 'sS', DEFAULT, ctl('S'), DEFAULT, DEFAULT],\n [68, 'dD', DEFAULT, ctl('D'), DEFAULT, DEFAULT],\n [70, 'fF', DEFAULT, ctl('F'), DEFAULT, DEFAULT],\n [71, 'gG', DEFAULT, ctl('G'), DEFAULT, DEFAULT],\n [72, 'hH', DEFAULT, ctl('H'), DEFAULT, DEFAULT],\n [74, 'jJ', DEFAULT, sh(ctl('J'), PASS), DEFAULT, DEFAULT],\n [75, 'kK', DEFAULT, sh(ctl('K'), c('onClear_')), DEFAULT, DEFAULT],\n [76, 'lL', DEFAULT, sh(ctl('L'), PASS), DEFAULT, DEFAULT],\n [186, ';:', DEFAULT, STRIP, DEFAULT, DEFAULT],\n [222, '\\'\"', DEFAULT, STRIP, DEFAULT, DEFAULT],\n [13, '[ENTER]', '\\r', CANCEL, CANCEL, DEFAULT],\n\n // Fifth row. This includes the copy/paste shortcuts. On some\n // platforms it's Ctrl-C/V, on others it's Meta-C/V. We assume either\n // Ctrl-C/Meta-C should pass to the browser when there is a selection,\n // and Ctrl-Shift-V/Meta-*-V should always pass to the browser (since\n // these seem to be recognized as paste too).\n [16, '[SHIFT]', PASS, PASS, PASS, DEFAULT],\n [90, 'zZ', DEFAULT, ctl('Z'), DEFAULT, DEFAULT],\n [88, 'xX', DEFAULT, ctl('X'), DEFAULT, DEFAULT],\n [67, 'cC', DEFAULT, c('onCtrlC_'), DEFAULT, c('onMetaC_')],\n [86, 'vV', DEFAULT, c('onCtrlV_'), DEFAULT, c('onMetaV_')],\n [66, 'bB', DEFAULT, sh(ctl('B'), PASS), DEFAULT, sh(DEFAULT, PASS)],\n [78, 'nN', DEFAULT, c('onCtrlN_'), DEFAULT, c('onMetaN_')],\n [77, 'mM', DEFAULT, ctl('M'), DEFAULT, DEFAULT],\n [188, ',<', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT],\n [190, '.>', DEFAULT, alt(STRIP, PASS), DEFAULT, DEFAULT],\n [191, '/?', DEFAULT, sh(ctl('_'), ctl('?')), DEFAULT, DEFAULT],\n\n // Sixth and final row.\n [17, '[CTRL]', PASS, PASS, PASS, PASS],\n [18, '[ALT]', PASS, PASS, PASS, PASS],\n [91, '[LAPL]', PASS, PASS, PASS, PASS],\n [32, ' ', DEFAULT, ctl('@'), DEFAULT, DEFAULT],\n [92, '[RAPL]', PASS, PASS, PASS, PASS],\n [93, '[RMENU]', PASS, PASS, PASS, PASS],\n\n // These things.\n [42, '[PRTSCR]', PASS, PASS, PASS, PASS],\n [145, '[SCRLK]', PASS, PASS, PASS, PASS],\n [19, '[BREAK]', PASS, PASS, PASS, PASS],\n\n // The block of six keys above the arrows.\n [45, '[INSERT]', c('onKeyInsert_'), DEFAULT, DEFAULT, DEFAULT],\n [36, '[HOME]', c('onKeyHome_'), DEFAULT, DEFAULT, DEFAULT],\n [33, '[PGUP]', c('onKeyPageUp_'), DEFAULT, DEFAULT, DEFAULT],\n [46, '[DEL]', c('onKeyDel_'), DEFAULT, DEFAULT, DEFAULT],\n [35, '[END]', c('onKeyEnd_'), DEFAULT, DEFAULT, DEFAULT],\n [34, '[PGDOWN]', c('onKeyPageDown_'), DEFAULT, DEFAULT, DEFAULT],\n\n // Arrow keys. When unmodified they respect the application cursor state,\n // otherwise they always send the CSI codes.\n [38, '[UP]', c('onKeyArrowUp_'), DEFAULT, DEFAULT, DEFAULT],\n [40, '[DOWN]', c('onKeyArrowDown_'), DEFAULT, DEFAULT, DEFAULT],\n [39, '[RIGHT]', ac(CSI + 'C', SS3 + 'C'), DEFAULT, DEFAULT, DEFAULT],\n [37, '[LEFT]', ac(CSI + 'D', SS3 + 'D'), DEFAULT, DEFAULT, DEFAULT],\n\n [144, '[NUMLOCK]', PASS, PASS, PASS, PASS],\n\n // With numlock off, the keypad generates the same key codes as the arrows\n // and 'block of six' for some keys, and null key codes for the rest.\n\n // Keypad with numlock on generates unique key codes...\n [96, '[KP0]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [97, '[KP1]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [98, '[KP2]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [99, '[KP3]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [100, '[KP4]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [101, '[KP5]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [102, '[KP6]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [103, '[KP7]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [104, '[KP8]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [105, '[KP9]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [107, '[KP+]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [109, '[KP-]', DEFAULT, c('onPlusMinusZero_'), DEFAULT, c('onPlusMinusZero_')],\n [106, '[KP*]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [111, '[KP/]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n [110, '[KP.]', DEFAULT, DEFAULT, DEFAULT, DEFAULT],\n\n // Chrome OS keyboard top row.\n [166, '[BACK]', med(mod(SS3+'P', CSI+'P')), DEFAULT, CSI+\"23~\", DEFAULT],\n [167, '[FWD]', med(mod(SS3+'Q', CSI+'Q')), DEFAULT, CSI+\"24~\", DEFAULT],\n [168, '[RELOAD]', med(mod(SS3+'R', CSI+'R')), DEFAULT, CSI+\"25~\", DEFAULT],\n [183, '[FSCR]', med(mod(SS3+'S', CSI+'S')), DEFAULT, CSI+\"26~\", DEFAULT],\n [182, '[WINS]', med(CSI + '15~'), DEFAULT, CSI+\"28~\", DEFAULT],\n [216, '[BRIT-]', med(CSI + '17~'), DEFAULT, CSI+\"29~\", DEFAULT],\n [217, '[BRIT+]', med(CSI + '18~'), DEFAULT, CSI+\"31~\", DEFAULT]\n\n // 173 [MUTE], 174 [VOL-] and 175 [VOL+] are trapped by the Chrome OS\n // window manager, so we'll never see them. Note that 173 is also\n // Firefox's -_ keycode.\n );\n};\n\n/**\n * Either allow the paste or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyInsert_ = function(e) {\n if (this.keyboard.shiftInsertPaste && e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return '\\x1b[2~';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyHome_ = function(e) {\n if (!this.keyboard.homeKeysScroll ^ e.shiftKey) {\n if ((e.altey || e.ctrlKey || e.shiftKey) ||\n !this.keyboard.applicationCursor) {\n return '\\x1b[H';\n }\n\n return '\\x1bOH';\n }\n\n this.keyboard.terminal.scrollHome();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyEnd_ = function(e) {\n if (!this.keyboard.homeKeysScroll ^ e.shiftKey) {\n if ((e.altKey || e.ctrlKey || e.shiftKey) ||\n !this.keyboard.applicationCursor) {\n return '\\x1b[F';\n }\n\n return '\\x1bOF';\n }\n\n this.keyboard.terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyPageUp_ = function(e) {\n if (!this.keyboard.pageKeysScroll ^ e.shiftKey)\n return '\\x1b[5~';\n\n this.keyboard.terminal.scrollPageUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either send a true DEL, or sub in meta-backspace.\n *\n * On Chrome OS, if we know the alt key is down, but we get a DEL event that\n * claims that the alt key is not pressed, we know the DEL was a synthetic\n * one from a user that hit alt-backspace. Based on a user pref, we can sub\n * in meta-backspace in this case.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyDel_ = function(e) {\n if (this.keyboard.altBackspaceIsMetaBackspace &&\n this.keyboard.altKeyPressed && !e.altKey)\n return '\\x1b\\x7f';\n return '\\x1b[3~';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyPageDown_ = function(e) {\n if (!this.keyboard.pageKeysScroll ^ e.shiftKey)\n return '\\x1b[6~';\n\n this.keyboard.terminal.scrollPageDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyArrowUp_ = function(e) {\n if (!this.keyboard.applicationCursor && e.shiftKey) {\n this.keyboard.terminal.scrollLineUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !this.keyboard.applicationCursor) ? '\\x1b[A' : '\\x1bOA';\n};\n\n/**\n * Either scroll the scrollback buffer or send a key sequence.\n */\nhterm.Keyboard.KeyMap.prototype.onKeyArrowDown_ = function(e) {\n if (!this.keyboard.applicationCursor && e.shiftKey) {\n this.keyboard.terminal.scrollLineDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return (e.shiftKey || e.ctrlKey || e.altKey || e.metaKey ||\n !this.keyboard.applicationCursor) ? '\\x1b[B' : '\\x1bOB';\n};\n\n/**\n * Clear the primary/alternate screens and the scrollback buffer.\n */\nhterm.Keyboard.KeyMap.prototype.onClear_ = function(e, keyDef) {\n this.keyboard.terminal.wipeContents();\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n\n/**\n * Either pass Ctrl-1..9 to the browser or send them to the host.\n *\n * Note that Ctrl-1 and Ctrl-9 don't actually have special sequences mapped\n * to them in xterm or gnome-terminal. The range is really Ctrl-2..8, but\n * we handle 1..9 since Chrome treats the whole range special.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlNum_ = function(e, keyDef) {\n // Compute a control character for a given character.\n function ctl(ch) { return String.fromCharCode(ch.charCodeAt(0) - 64) }\n\n if (this.keyboard.terminal.passCtrlNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n switch (keyDef.keyCap.substr(0, 1)) {\n case '1': return '1';\n case '2': return ctl('@');\n case '3': return ctl('[');\n case '4': return ctl('\\\\');\n case '5': return ctl(']');\n case '6': return ctl('^');\n case '7': return ctl('_');\n case '8': return '\\x7f';\n case '9': return '9';\n }\n};\n\n/**\n * Either pass Alt-1..9 to the browser or send them to the host.\n */\nhterm.Keyboard.KeyMap.prototype.onAltNum_ = function(e, keyDef) {\n if (this.keyboard.terminal.passAltNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either pass Meta-1..9 to the browser or send them to the host.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaNum_ = function(e, keyDef) {\n if (this.keyboard.terminal.passMetaNumber && !e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either send a ^C or interpret the keystroke as a copy command.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlC_ = function(e, keyDef) {\n var selection = this.keyboard.terminal.getDocument().getSelection();\n\n if (!selection.isCollapsed) {\n if (this.keyboard.ctrlCCopy && !e.shiftKey) {\n // Ctrl-C should copy if there is a selection, send ^C otherwise.\n // Perform the copy by letting the browser handle Ctrl-C. On most\n // browsers, this is the *only* way to place text on the clipboard from\n // the 'drive-by' web.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(selection.collapseToEnd.bind(selection), 50);\n }\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n if (!this.keyboard.ctrlCCopy && e.shiftKey) {\n // Ctrl-Shift-C should copy if there is a selection, send ^C otherwise.\n // Perform the copy manually. This only works in situations where\n // document.execCommand('copy') is allowed.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(selection.collapseToEnd.bind(selection), 50);\n }\n this.keyboard.terminal.copySelectionToClipboard();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n }\n\n return '\\x03';\n};\n\n/**\n * Either send a ^N or open a new window to the same location.\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlN_ = function(e, keyDef) {\n if (e.shiftKey) {\n window.open(document.location.href, '',\n 'chrome=no,close=yes,resize=yes,scrollbars=yes,' +\n 'minimizable=yes,width=' + window.innerWidth +\n ',height=' + window.innerHeight);\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return '\\x0e';\n};\n\n/**\n * Either send a ^V or issue a paste command.\n *\n * The default behavior is to paste if the user presses Ctrl-Shift-V, and send\n * a ^V if the user presses Ctrl-V. This can be flipped with the\n * 'ctrl-v-paste' preference.\n *\n */\nhterm.Keyboard.KeyMap.prototype.onCtrlV_ = function(e, keyDef) {\n if ((!e.shiftKey && this.keyboard.ctrlVPaste) ||\n (e.shiftKey && !this.keyboard.ctrlVPaste)) {\n // We try to do the pasting ourselves as not all browsers/OSs bind Ctrl-V to\n // pasting. Notably, on macOS, Ctrl-V/Ctrl-Shift-V do nothing.\n // However, this might run into web restrictions, so if it fails, we still\n // fallback to the letting the native behavior (hopefully) save us.\n if (this.keyboard.terminal.paste())\n return hterm.Keyboard.KeyActions.CANCEL;\n else\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n return '\\x16';\n};\n\n/**\n * Either the default action or open a new window to the same location.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaN_ = function(e, keyDef) {\n if (e.shiftKey) {\n window.open(document.location.href, '',\n 'chrome=no,close=yes,resize=yes,scrollbars=yes,' +\n 'minimizable=yes,width=' + window.outerWidth +\n ',height=' + window.outerHeight);\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n return hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Either send a Meta-C or allow the browser to interpret the keystroke as a\n * copy command.\n *\n * If there is no selection, or if the user presses Meta-Shift-C, then we'll\n * transmit an '\\x1b' (if metaSendsEscape is on) followed by 'c' or 'C'.\n *\n * If there is a selection, we defer to the browser. In this case we clear out\n * the selection so the user knows we heard them, and also to give them a\n * chance to send a Meta-C by just hitting the key again.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaC_ = function(e, keyDef) {\n var document = this.keyboard.terminal.getDocument();\n if (e.shiftKey || document.getSelection().isCollapsed) {\n // If the shift key is being held, or there is no document selection, send\n // a Meta-C. The keyboard code will add the ESC if metaSendsEscape is true,\n // we just have to decide between 'c' and 'C'.\n return keyDef.keyCap.substr(e.shiftKey ? 1 : 0, 1);\n }\n\n // Otherwise let the browser handle it as a copy command.\n if (this.keyboard.terminal.clearSelectionAfterCopy) {\n setTimeout(function() { document.getSelection().collapseToEnd() }, 50);\n }\n return hterm.Keyboard.KeyActions.PASS;\n};\n\n/**\n * Either PASS or DEFAULT Meta-V, depending on preference.\n *\n * Always PASS Meta-Shift-V to allow browser to interpret the keystroke as\n * a paste command.\n */\nhterm.Keyboard.KeyMap.prototype.onMetaV_ = function(e, keyDef) {\n if (e.shiftKey)\n return hterm.Keyboard.KeyActions.PASS;\n\n return this.keyboard.passMetaV ?\n hterm.Keyboard.KeyActions.PASS :\n hterm.Keyboard.KeyActions.DEFAULT;\n};\n\n/**\n * Handle font zooming.\n *\n * The browser's built-in zoom has a bit of an issue at certain zoom levels.\n * At some magnifications, the measured height of a row of text differs from\n * the height that was explicitly set.\n *\n * We override the browser zoom keys to change the ScrollPort's font size to\n * avoid the issue.\n */\nhterm.Keyboard.KeyMap.prototype.onPlusMinusZero_ = function(e, keyDef) {\n if (!(this.keyboard.ctrlPlusMinusZeroZoom ^ e.shiftKey)) {\n // If ctrl-PMZ controls zoom and the shift key is pressed, or\n // ctrl-shift-PMZ controls zoom and this shift key is not pressed,\n // then we want to send the control code instead of affecting zoom.\n if (keyDef.keyCap == '-_')\n return '\\x1f'; // ^_\n\n // Only ^_ is valid, the other sequences have no meaning.\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n\n if (this.keyboard.terminal.getZoomFactor() != 1) {\n // If we're not at 1:1 zoom factor, let the Ctrl +/-/0 keys control the\n // browser zoom, so it's easier to for the user to get back to 100%.\n return hterm.Keyboard.KeyActions.PASS;\n }\n\n var cap = keyDef.keyCap.substr(0, 1);\n if (cap == '0') {\n this.keyboard.terminal.setFontSize(0);\n } else {\n var size = this.keyboard.terminal.getFontSize();\n\n if (cap == '-' || keyDef.keyCap == '[KP-]') {\n size -= 1;\n } else {\n size += 1;\n }\n\n this.keyboard.terminal.setFontSize(size);\n }\n\n return hterm.Keyboard.KeyActions.CANCEL;\n};\n// SOURCE FILE: hterm/js/hterm_keyboard_keypattern.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * A record of modifier bits and keycode used to define a key binding.\n *\n * The modifier names are enumerated in the static KeyPattern.modifiers\n * property below. Each modifier can be true, false, or \"*\". True means\n * the modifier key must be present, false means it must not, and \"*\" means\n * it doesn't matter.\n */\nhterm.Keyboard.KeyPattern = function(spec) {\n this.wildcardCount = 0;\n this.keyCode = spec.keyCode;\n\n hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) {\n this[mod] = spec[mod] || false;\n if (this[mod] == '*')\n this.wildcardCount++;\n }.bind(this));\n};\n\n/**\n * Valid modifier names.\n */\nhterm.Keyboard.KeyPattern.modifiers = [\n 'shift', 'ctrl', 'alt', 'meta'\n];\n\n/**\n * A compare callback for Array.prototype.sort().\n *\n * The bindings code wants to be sure to search through the strictest key\n * patterns first, so that loosely defined patterns have a lower priority than\n * exact patterns.\n *\n * @param {hterm.Keyboard.KeyPattern} a\n * @param {hterm.Keyboard.KeyPattern} b\n */\nhterm.Keyboard.KeyPattern.sortCompare = function(a, b) {\n if (a.wildcardCount < b.wildcardCount)\n return -1;\n\n if (a.wildcardCount > b.wildcardCount)\n return 1;\n\n return 0;\n};\n\n/**\n * Private method used to match this key pattern against other key patterns\n * or key down events.\n *\n * @param {Object} The object to match.\n * @param {boolean} True if we should ignore wildcards. Useful when you want\n * to perform and exact match against another key pattern.\n */\nhterm.Keyboard.KeyPattern.prototype.match_ = function(obj, exactMatch) {\n if (this.keyCode != obj.keyCode)\n return false;\n\n var rv = true;\n\n hterm.Keyboard.KeyPattern.modifiers.forEach(function(mod) {\n var modValue = (mod in obj) ? obj[mod] : false;\n if (!rv || (!exactMatch && this[mod] == '*') || this[mod] == modValue)\n return;\n\n rv = false;\n }.bind(this));\n\n return rv;\n};\n\n/**\n * Return true if the given keyDown object is a match for this key pattern.\n *\n * @param {Object} keyDown An object with a keyCode property and zero or\n * more boolean properties representing key modifiers. These property names\n * must match those defined in hterm.Keyboard.KeyPattern.modifiers.\n */\nhterm.Keyboard.KeyPattern.prototype.matchKeyDown = function(keyDown) {\n return this.match_(keyDown, false);\n};\n\n/**\n * Return true if the given hterm.Keyboard.KeyPattern is exactly the same as\n * this one.\n *\n * @param {hterm.Keyboard.KeyPattern}\n */\nhterm.Keyboard.KeyPattern.prototype.matchKeyPattern = function(keyPattern) {\n return this.match_(keyPattern, true);\n};\n// SOURCE FILE: hterm/js/hterm_options.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * @fileoverview This file implements the hterm.Options class,\n * which stores current operating conditions for the terminal. This object is\n * used instead of a series of parameters to allow saving/restoring of cursor\n * conditions easily, and to provide an easy place for common configuration\n * options.\n *\n * Original code by Cory Maccarrone.\n */\n\n/**\n * Constructor for the hterm.Options class, optionally acting as a copy\n * constructor.\n *\n * The defaults are as defined in http://www.vt100.net/docs/vt510-rm/DECSTR\n * except that we enable autowrap (wraparound) by default since that seems to\n * be what xterm does.\n *\n * @param {hterm.Options=} opt_copy Optional instance to copy.\n * @constructor\n */\nhterm.Options = function(opt_copy) {\n // All attributes in this class are public to allow easy access by the\n // terminal.\n\n this.wraparound = opt_copy ? opt_copy.wraparound : true;\n this.reverseWraparound = opt_copy ? opt_copy.reverseWraparound : false;\n this.originMode = opt_copy ? opt_copy.originMode : false;\n this.autoCarriageReturn = opt_copy ? opt_copy.autoCarriageReturn : false;\n this.cursorVisible = opt_copy ? opt_copy.cursorVisible : false;\n this.cursorBlink = opt_copy ? opt_copy.cursorBlink : false;\n this.insertMode = opt_copy ? opt_copy.insertMode : false;\n this.reverseVideo = opt_copy ? opt_copy.reverseVideo : false;\n this.bracketedPaste = opt_copy ? opt_copy.bracketedPaste : false;\n};\n// SOURCE FILE: hterm/js/hterm_parser.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('hterm.Keyboard.KeyActions');\n\n/**\n * @constructor\n * Parses the key definition syntax used for user keyboard customizations.\n */\nhterm.Parser = function() {\n /**\n * @type {string} The source string.\n */\n this.source = '';\n\n /**\n * @type {number} The current position.\n */\n this.pos = 0;\n\n /**\n * @type {string?} The character at the current position.\n */\n this.ch = null;\n};\n\nhterm.Parser.prototype.error = function(message) {\n return new Error('Parse error at ' + this.pos + ': ' + message);\n};\n\nhterm.Parser.prototype.isComplete = function() {\n return this.pos == this.source.length;\n};\n\nhterm.Parser.prototype.reset = function(source, opt_pos) {\n this.source = source;\n this.pos = opt_pos || 0;\n this.ch = source.substr(0, 1);\n};\n\n/**\n * Parse a key sequence.\n *\n * A key sequence is zero or more of the key modifiers defined in\n * hterm.Parser.identifiers.modifierKeys followed by a key code. Key\n * codes can be an integer or an identifier from\n * hterm.Parser.identifiers.keyCodes. Modifiers and keyCodes should be joined\n * by the dash character.\n *\n * An asterisk \"*\" can be used to indicate that the unspecified modifiers\n * are optional.\n *\n * For example:\n * A: Matches only an unmodified \"A\" character.\n * 65: Same as above.\n * 0x41: Same as above.\n * Ctrl-A: Matches only Ctrl-A.\n * Ctrl-65: Same as above.\n * Ctrl-0x41: Same as above.\n * Ctrl-Shift-A: Matches only Ctrl-Shift-A.\n * Ctrl-*-A: Matches Ctrl-A, as well as any other key sequence that includes\n * at least the Ctrl and A keys.\n *\n * @return {Object} An object with shift, ctrl, alt, meta, keyCode\n * properties.\n */\nhterm.Parser.prototype.parseKeySequence = function() {\n var rv = {\n keyCode: null\n };\n\n for (var k in hterm.Parser.identifiers.modifierKeys) {\n rv[hterm.Parser.identifiers.modifierKeys[k]] = false;\n }\n\n while (this.pos < this.source.length) {\n this.skipSpace();\n\n var token = this.parseToken();\n if (token.type == 'integer') {\n rv.keyCode = token.value;\n\n } else if (token.type == 'identifier') {\n var ucValue = token.value.toUpperCase();\n if (ucValue in hterm.Parser.identifiers.modifierKeys &&\n hterm.Parser.identifiers.modifierKeys.hasOwnProperty(ucValue)) {\n var mod = hterm.Parser.identifiers.modifierKeys[ucValue];\n if (rv[mod] && rv[mod] != '*')\n throw this.error('Duplicate modifier: ' + token.value);\n rv[mod] = true;\n\n } else if (ucValue in hterm.Parser.identifiers.keyCodes &&\n hterm.Parser.identifiers.keyCodes.hasOwnProperty(ucValue)) {\n rv.keyCode = hterm.Parser.identifiers.keyCodes[ucValue];\n\n } else {\n throw this.error('Unknown key: ' + token.value);\n }\n\n } else if (token.type == 'symbol') {\n if (token.value == '*') {\n for (var id in hterm.Parser.identifiers.modifierKeys) {\n var p = hterm.Parser.identifiers.modifierKeys[id];\n if (!rv[p])\n rv[p] = '*';\n }\n } else {\n throw this.error('Unexpected symbol: ' + token.value);\n }\n } else {\n throw this.error('Expected integer or identifier');\n }\n\n this.skipSpace();\n\n if (this.ch != '-')\n break;\n\n if (rv.keyCode != null)\n throw this.error('Extra definition after target key');\n\n this.advance(1);\n }\n\n if (rv.keyCode == null)\n throw this.error('Missing target key');\n\n return rv;\n};\n\nhterm.Parser.prototype.parseKeyAction = function() {\n this.skipSpace();\n\n var token = this.parseToken();\n\n if (token.type == 'string')\n return token.value;\n\n if (token.type == 'identifier') {\n if (token.value in hterm.Parser.identifiers.actions &&\n hterm.Parser.identifiers.actions.hasOwnProperty(token.value))\n return hterm.Parser.identifiers.actions[token.value];\n\n throw this.error('Unknown key action: ' + token.value);\n }\n\n throw this.error('Expected string or identifier');\n\n};\n\nhterm.Parser.prototype.peekString = function() {\n return this.ch == '\\'' || this.ch == '\"';\n};\n\nhterm.Parser.prototype.peekIdentifier = function() {\n return this.ch.match(/[a-z_]/i);\n};\n\nhterm.Parser.prototype.peekInteger = function() {\n return this.ch.match(/[0-9]/);\n};\n\nhterm.Parser.prototype.parseToken = function() {\n if (this.ch == '*') {\n var rv = {type: 'symbol', value: this.ch};\n this.advance(1);\n return rv;\n }\n\n if (this.peekIdentifier())\n return {type: 'identifier', value: this.parseIdentifier()};\n\n if (this.peekString())\n return {type: 'string', value: this.parseString()};\n\n if (this.peekInteger())\n return {type: 'integer', value: this.parseInteger()};\n\n\n throw this.error('Unexpected token');\n};\n\nhterm.Parser.prototype.parseIdentifier = function() {\n if (!this.peekIdentifier())\n throw this.error('Expected identifier');\n\n return this.parsePattern(/[a-z0-9_]+/ig);\n};\n\nhterm.Parser.prototype.parseInteger = function() {\n var base = 10;\n\n if (this.ch == '0' && this.pos < this.source.length - 1 &&\n this.source.substr(this.pos + 1, 1) == 'x') {\n return parseInt(this.parsePattern(/0x[0-9a-f]+/gi));\n }\n\n return parseInt(this.parsePattern(/\\d+/g));\n};\n\n/**\n * Parse a single or double quoted string.\n *\n * The current position should point at the initial quote character. Single\n * quoted strings will be treated literally, double quoted will process escapes.\n *\n * TODO(rginda): Variable interpolation.\n *\n * @param {ParseState} parseState\n * @param {string} quote A single or double-quote character.\n * @return {string}\n */\nhterm.Parser.prototype.parseString = function() {\n var result = '';\n\n var quote = this.ch;\n if (quote != '\"' && quote != '\\'')\n throw this.error('String expected');\n\n this.advance(1);\n\n var re = new RegExp('[\\\\\\\\' + quote + ']', 'g');\n\n while (this.pos < this.source.length) {\n re.lastIndex = this.pos;\n if (!re.exec(this.source))\n throw this.error('Unterminated string literal');\n\n result += this.source.substring(this.pos, re.lastIndex - 1);\n\n this.advance(re.lastIndex - this.pos - 1);\n\n if (quote == '\"' && this.ch == '\\\\') {\n this.advance(1);\n result += this.parseEscape();\n continue;\n }\n\n if (quote == '\\'' && this.ch == '\\\\') {\n result += this.ch;\n this.advance(1);\n continue;\n }\n\n if (this.ch == quote) {\n this.advance(1);\n return result;\n }\n }\n\n throw this.error('Unterminated string literal');\n};\n\n\n/**\n * Parse an escape code from the current position (which should point to\n * the first character AFTER the leading backslash.)\n *\n * @return {string}\n */\nhterm.Parser.prototype.parseEscape = function() {\n var map = {\n '\"': '\"',\n '\\'': '\\'',\n '\\\\': '\\\\',\n 'a': '\\x07',\n 'b': '\\x08',\n 'e': '\\x1b',\n 'f': '\\x0c',\n 'n': '\\x0a',\n 'r': '\\x0d',\n 't': '\\x09',\n 'v': '\\x0b',\n 'x': function() {\n var value = this.parsePattern(/[a-z0-9]{2}/ig);\n return String.fromCharCode(parseInt(value, 16));\n },\n 'u': function() {\n var value = this.parsePattern(/[a-z0-9]{4}/ig);\n return String.fromCharCode(parseInt(value, 16));\n }\n };\n\n if (!(this.ch in map && map.hasOwnProperty(this.ch)))\n throw this.error('Unknown escape: ' + this.ch);\n\n var value = map[this.ch];\n this.advance(1);\n\n if (typeof value == 'function')\n value = value.call(this);\n\n return value;\n};\n\n/**\n * Parse the given pattern starting from the current position.\n *\n * @param {RegExp} pattern A pattern representing the characters to span. MUST\n * include the \"global\" RegExp flag.\n * @return {string}\n */\nhterm.Parser.prototype.parsePattern = function(pattern) {\n if (!pattern.global)\n throw this.error('Internal error: Span patterns must be global');\n\n pattern.lastIndex = this.pos;\n var ary = pattern.exec(this.source);\n\n if (!ary || pattern.lastIndex - ary[0].length != this.pos)\n throw this.error('Expected match for: ' + pattern);\n\n this.pos = pattern.lastIndex - 1;\n this.advance(1);\n\n return ary[0];\n};\n\n\n/**\n * Advance the current position.\n *\n * @param {number} count\n */\nhterm.Parser.prototype.advance = function(count) {\n this.pos += count;\n this.ch = this.source.substr(this.pos, 1);\n};\n\n/**\n * @param {string=} opt_expect A list of valid non-whitespace characters to\n * terminate on.\n * @return {void}\n */\nhterm.Parser.prototype.skipSpace = function(opt_expect) {\n if (!/\\s/.test(this.ch))\n return;\n\n var re = /\\s+/gm;\n re.lastIndex = this.pos;\n\n var source = this.source;\n if (re.exec(source))\n this.pos = re.lastIndex;\n\n this.ch = this.source.substr(this.pos, 1);\n\n if (opt_expect) {\n if (this.ch.indexOf(opt_expect) == -1) {\n throw this.error('Expected one of ' + opt_expect + ', found: ' +\n this.ch);\n }\n }\n};\n// SOURCE FILE: hterm/js/hterm_parser_identifiers.js\n// Copyright (c) 2015 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Collections of identifier for hterm.Parser.\n */\nhterm.Parser.identifiers = {};\n\n/**\n * Modifier key names used when defining key sequences.\n *\n * These are upper case so we can normalize the user input and be forgiving.\n * \"CTRL-A\" and \"Ctrl-A\" and \"ctrl-a\" are all accepted.\n *\n * Note: Names here cannot overlap with hterm.Parser.identifiers.keyCodes.\n */\nhterm.Parser.identifiers.modifierKeys = {\n SHIFT: 'shift',\n CTRL: 'ctrl',\n // Common alias.\n CONTROL: 'ctrl',\n ALT: 'alt',\n META: 'meta'\n};\n\n/**\n * Key codes useful when defining key sequences.\n *\n * Punctuation is mostly left out of this list because they can move around\n * based on keyboard locale and browser.\n *\n * In a key sequence like \"Ctrl-ESC\", the ESC comes from this list of\n * identifiers. It is equivalent to \"Ctrl-27\" and \"Ctrl-0x1b\".\n *\n * These are upper case so we can normalize the user input and be forgiving.\n * \"Ctrl-ESC\" and \"Ctrl-Esc\" an \"Ctrl-esc\" are all accepted.\n *\n * We also include common aliases for the same key. \"Esc\" and \"Escape\" are the\n * same key.\n *\n * Note: Names here cannot overlap with hterm.Parser.identifiers.modifierKeys.\n */\nhterm.Parser.identifiers.keyCodes = {\n // Top row.\n ESCAPE: 27,\n ESC: 27,\n F1: 112,\n F2: 113,\n F3: 114,\n F4: 115,\n F5: 116,\n F6: 117,\n F7: 118,\n F8: 119,\n F9: 120,\n F10: 121,\n F11: 122,\n F12: 123,\n\n // Row two.\n ONE: 49,\n TWO: 50,\n THREE: 51,\n FOUR: 52,\n FIVE: 53,\n SIX: 54,\n SEVEN: 55,\n EIGHT: 56,\n NINE: 57,\n ZERO: 48,\n BACKSPACE: 8,\n BKSP: 8,\n BS: 8,\n\n // Row three.\n TAB: 9,\n Q: 81,\n W: 87,\n E: 69,\n R: 82,\n T: 84,\n Y: 89,\n U: 85,\n I: 73,\n O: 79,\n P: 80,\n\n // Row four.\n CAPS_LOCK: 20,\n CAPSLOCK: 20,\n CAPS: 20,\n A: 65,\n S: 83,\n D: 68,\n F: 70,\n G: 71,\n H: 72,\n J: 74,\n K: 75,\n L: 76,\n // We map enter and return together even though enter should really be 10\n // because most people don't know or care about the history here. Plus,\n // most keyboards/programs map them together already. If they really want\n // to bind them differently, they can also use the numeric value.\n ENTER: 13,\n ENT: 13,\n RETURN: 13,\n RET: 13,\n\n // Row five.\n Z: 90,\n X: 88,\n C: 67,\n V: 86,\n B: 66,\n N: 78,\n M: 77,\n\n // Etc.\n SPACE: 32,\n SP: 32,\n PRINT_SCREEN: 42,\n PRTSC: 42,\n SCROLL_LOCK: 145,\n SCRLK: 145,\n BREAK: 19,\n BRK: 19,\n INSERT: 45,\n INS: 45,\n HOME: 36,\n PAGE_UP: 33,\n PGUP: 33,\n DELETE: 46,\n DEL: 46,\n END: 35,\n PAGE_DOWN: 34,\n PGDOWN: 34,\n PGDN: 34,\n UP: 38,\n DOWN: 40,\n RIGHT: 39,\n LEFT: 37,\n NUMLOCK: 144,\n\n // Keypad\n KP0: 96,\n KP1: 97,\n KP2: 98,\n KP3: 99,\n KP4: 100,\n KP5: 101,\n KP6: 102,\n KP7: 103,\n KP8: 104,\n KP9: 105,\n KP_PLUS: 107,\n KP_ADD: 107,\n KP_MINUS: 109,\n KP_SUBTRACT: 109,\n KP_STAR: 106,\n KP_MULTIPLY: 106,\n KP_DIVIDE: 111,\n KP_DECIMAL: 110,\n KP_PERIOD: 110,\n\n // Chrome OS media keys\n NAVIGATE_BACK: 166,\n NAVIGATE_FORWARD: 167,\n RELOAD: 168,\n FULL_SCREEN: 183,\n WINDOW_OVERVIEW: 182,\n BRIGHTNESS_UP: 216,\n BRIGHTNESS_DOWN: 217\n};\n\n/**\n * Identifiers for use in key actions.\n */\nhterm.Parser.identifiers.actions = {\n /**\n * Prevent the browser and operating system from handling the event.\n */\n CANCEL: hterm.Keyboard.KeyActions.CANCEL,\n\n /**\n * Wait for a \"keypress\" event, send the keypress charCode to the host.\n */\n DEFAULT: hterm.Keyboard.KeyActions.DEFAULT,\n\n /**\n * Let the browser or operating system handle the key.\n */\n PASS: hterm.Keyboard.KeyActions.PASS,\n\n /**\n * Scroll the terminal one page up.\n */\n scrollPageUp: function(terminal) {\n terminal.scrollPageUp();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal one page down.\n */\n scrollPageDown: function(terminal) {\n terminal.scrollPageDown();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal to the top.\n */\n scrollToTop: function(terminal) {\n terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Scroll the terminal to the bottom.\n */\n scrollToBottom: function(terminal) {\n terminal.scrollEnd();\n return hterm.Keyboard.KeyActions.CANCEL;\n },\n\n /**\n * Clear the terminal and scrollback buffer.\n */\n clearScrollback: function(terminal) {\n terminal.wipeContents();\n return hterm.Keyboard.KeyActions.CANCEL;\n }\n};\n// SOURCE FILE: hterm/js/hterm_preference_manager.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'lib.Storage');\n\n/**\n * PreferenceManager subclass managing global NaSSH preferences.\n *\n * This is currently just an ordered list of known connection profiles.\n */\nhterm.PreferenceManager = function(profileId) {\n lib.PreferenceManager.call(this, hterm.defaultStorage,\n '/hterm/profiles/' + profileId);\n var defs = hterm.PreferenceManager.defaultPreferences;\n Object.keys(defs).forEach(function(key) {\n this.definePreference(key, defs[key][1]);\n }.bind(this));\n};\n\nhterm.PreferenceManager.categories = {};\nhterm.PreferenceManager.categories.Keyboard = 'Keyboard';\nhterm.PreferenceManager.categories.Appearance = 'Appearance';\nhterm.PreferenceManager.categories.CopyPaste = 'CopyPaste';\nhterm.PreferenceManager.categories.Sounds = 'Sounds';\nhterm.PreferenceManager.categories.Scrolling = 'Scrolling';\nhterm.PreferenceManager.categories.Encoding = 'Encoding';\nhterm.PreferenceManager.categories.Miscellaneous = 'Miscellaneous';\n\n/**\n * List of categories, ordered by display order (top to bottom)\n */\nhterm.PreferenceManager.categoryDefinitions = [\n { id: hterm.PreferenceManager.categories.Appearance,\n text: 'Appearance (fonts, colors, images)'},\n { id: hterm.PreferenceManager.categories.CopyPaste,\n text: 'Copy & Paste'},\n { id: hterm.PreferenceManager.categories.Encoding,\n text: 'Encoding'},\n { id: hterm.PreferenceManager.categories.Keyboard,\n text: 'Keyboard'},\n { id: hterm.PreferenceManager.categories.Scrolling,\n text: 'Scrolling'},\n { id: hterm.PreferenceManager.categories.Sounds,\n text: 'Sounds'},\n { id: hterm.PreferenceManager.categories.Miscellaneous,\n text: 'Misc.'}\n];\n\n\nhterm.PreferenceManager.defaultPreferences = {\n 'alt-gr-mode':\n [hterm.PreferenceManager.categories.Keyboard, null,\n [null, 'none', 'ctrl-alt', 'left-alt', 'right-alt'],\n 'Select an AltGr detection hack^Wheuristic.\\n' +\n '\\n' +\n '\\'null\\': Autodetect based on navigator.language:\\n' +\n ' \\'en-us\\' => \\'none\\', else => \\'right-alt\\'\\n' +\n '\\'none\\': Disable any AltGr related munging.\\n' +\n '\\'ctrl-alt\\': Assume Ctrl+Alt means AltGr.\\n' +\n '\\'left-alt\\': Assume left Alt means AltGr.\\n' +\n '\\'right-alt\\': Assume right Alt means AltGr.\\n'],\n\n 'alt-backspace-is-meta-backspace':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If set, undoes the Chrome OS Alt-Backspace->DEL remap, so that ' +\n 'alt-backspace indeed is alt-backspace.'],\n\n 'alt-is-meta':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Set whether the alt key acts as a meta key or as a distinct alt key.'],\n\n 'alt-sends-what':\n [hterm.PreferenceManager.categories.Keyboard, 'escape',\n ['escape', '8-bit', 'browser-key'],\n 'Controls how the alt key is handled.\\n' +\n '\\n' +\n ' escape....... Send an ESC prefix.\\n' +\n ' 8-bit........ Add 128 to the unshifted character as in xterm.\\n' +\n ' browser-key.. Wait for the keypress event and see what the browser \\n' +\n ' says. (This won\\'t work well on platforms where the \\n' +\n ' browser performs a default action for some alt sequences.)'\n ],\n\n 'audible-bell-sound':\n [hterm.PreferenceManager.categories.Sounds, 'lib-resource:hterm/audio/bell',\n 'url',\n 'URL of the terminal bell sound. Empty string for no audible bell.'],\n\n 'desktop-notification-bell':\n [hterm.PreferenceManager.categories.Sounds, false, 'bool',\n 'If true, terminal bells in the background will create a Web ' +\n 'Notification. https://www.w3.org/TR/notifications/\\n' +\n '\\n'+\n 'Displaying notifications requires permission from the user. When this ' +\n 'option is set to true, hterm will attempt to ask the user for permission ' +\n 'if necessary. Note browsers may not show this permission request if it ' +\n 'did not originate from a user action.\\n' +\n '\\n' +\n 'Chrome extensions with the \"notifications\" permission have permission to ' +\n 'display notifications.'],\n\n 'background-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgb(16, 16, 16)', 'color',\n 'The background color for text with no other color attributes.'],\n\n 'background-image':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image. Empty string for no image.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' url(https://goo.gl/anedTK)\\n' +\n ' linear-gradient(top bottom, blue, red)'],\n\n 'background-size':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image size. Defaults to none.'],\n\n 'background-position':\n [hterm.PreferenceManager.categories.Appearance, '', 'string',\n 'CSS value of the background image position.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' 10% 10%\\n' +\n ' center'],\n\n 'backspace-sends-backspace':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, the backspace should send BS (\\'\\\\x08\\', aka ^H). Otherwise ' +\n 'the backspace key should send \\'\\\\x7f\\'.'],\n\n 'character-map-overrides':\n [hterm.PreferenceManager.categories.Appearance, null, 'value',\n 'This is specified as an object. It is a sparse array, where each ' +\n 'property is the character set code and the value is an object that is ' +\n 'a sparse array itself. In that sparse array, each property is the ' +\n 'received character and the value is the displayed character.\\n' +\n '\\n' +\n 'For example:\\n' +\n ' {\"0\":{\"+\":\"\\\\u2192\",\",\":\"\\\\u2190\",\"-\":\"\\\\u2191\",\".\":\"\\\\u2193\", ' +\n '\"0\":\"\\\\u2588\"}}'\n ],\n\n 'close-on-exit':\n [hterm.PreferenceManager.categories.Miscellaneous, true, 'bool',\n 'Whether or not to close the window when the command exits.'],\n\n 'cursor-blink':\n [hterm.PreferenceManager.categories.Appearance, false, 'bool',\n 'Whether or not to blink the cursor by default.'],\n\n 'cursor-blink-cycle':\n [hterm.PreferenceManager.categories.Appearance, [1000, 500], 'value',\n 'The cursor blink rate in milliseconds.\\n' +\n '\\n' +\n 'A two element array, the first of which is how long the cursor should be ' +\n 'on, second is how long it should be off.'],\n\n 'cursor-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgba(255, 0, 0, 0.5)',\n 'color',\n 'The color of the visible cursor.'],\n\n 'color-palette-overrides':\n [hterm.PreferenceManager.categories.Appearance, null, 'value',\n 'Override colors in the default palette.\\n' +\n '\\n' +\n 'This can be specified as an array or an object. If specified as an ' +\n 'object it is assumed to be a sparse array, where each property ' +\n 'is a numeric index into the color palette.\\n' +\n '\\n' +\n 'Values can be specified as almost any css color value. This ' +\n 'includes #RGB, #RRGGBB, rgb(...), rgba(...), and any color names ' +\n 'that are also part of the stock X11 rgb.txt file.\\n' +\n '\\n' +\n 'You can use \\'null\\' to specify that the default value should be not ' +\n 'be changed. This is useful for skipping a small number of indices ' +\n 'when the value is specified as an array.'],\n\n 'copy-on-select':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Automatically copy mouse selection to the clipboard.'],\n\n 'use-default-window-copy':\n [hterm.PreferenceManager.categories.CopyPaste, false, 'bool',\n 'Whether to use the default window copy behavior'],\n\n 'clear-selection-after-copy':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Whether to clear the selection after copying.'],\n\n 'ctrl-plus-minus-zero-zoom':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'If true, Ctrl-Plus/Minus/Zero controls zoom.\\n' +\n 'If false, Ctrl-Shift-Plus/Minus/Zero controls zoom, Ctrl-Minus sends ^_, ' +\n 'Ctrl-Plus/Zero do nothing.'],\n\n 'ctrl-c-copy':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Ctrl+C copies if true, send ^C to host if false.\\n' +\n 'Ctrl+Shift+C sends ^C to host if true, copies if false.'],\n\n 'ctrl-v-paste':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Ctrl+V pastes if true, send ^V to host if false.\\n' +\n 'Ctrl+Shift+V sends ^V to host if true, pastes if false.'],\n\n 'east-asian-ambiguous-as-two-column':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'Set whether East Asian Ambiguous characters have two column width.'],\n\n 'enable-8-bit-control':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'True to enable 8-bit control characters, false to ignore them.\\n' +\n '\\n' +\n 'We\\'ll respect the two-byte versions of these control characters ' +\n 'regardless of this setting.'],\n\n 'enable-bold':\n [hterm.PreferenceManager.categories.Appearance, null, 'tristate',\n 'True if we should use bold weight font for text with the bold/bright ' +\n 'attribute. False to use the normal weight font. Null to autodetect.'],\n\n 'enable-bold-as-bright':\n [hterm.PreferenceManager.categories.Appearance, true, 'bool',\n 'True if we should use bright colors (8-15 on a 16 color palette) ' +\n 'for any text with the bold attribute. False otherwise.'],\n\n 'enable-blink':\n [hterm.PreferenceManager.categories.Appearance, true, 'bool',\n 'True if we should respect the blink attribute. False to ignore it. '],\n\n 'enable-clipboard-notice':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Show a message in the terminal when the host writes to the clipboard.'],\n\n 'enable-clipboard-write':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Allow the host to write directly to the system clipboard.'],\n\n 'enable-dec12':\n [hterm.PreferenceManager.categories.Miscellaneous, false, 'bool',\n 'Respect the host\\'s attempt to change the cursor blink status using ' +\n 'DEC Private Mode 12.'],\n\n 'environment':\n [hterm.PreferenceManager.categories.Miscellaneous, {'TERM': 'xterm-256color'},\n 'value',\n 'The default environment variables, as an object.'],\n\n 'font-family':\n [hterm.PreferenceManager.categories.Appearance,\n '\"DejaVu Sans Mono\", \"Everson Mono\", FreeMono, \"Menlo\", \"Terminal\", ' +\n 'monospace', 'string',\n 'Default font family for the terminal text.'],\n\n 'font-size':\n [hterm.PreferenceManager.categories.Appearance, 15, 'int',\n 'The default font size in pixels.'],\n\n 'font-smoothing':\n [hterm.PreferenceManager.categories.Appearance, 'antialiased', 'string',\n 'CSS font-smoothing property.'],\n\n 'foreground-color':\n [hterm.PreferenceManager.categories.Appearance, 'rgb(240, 240, 240)', 'color',\n 'The foreground color for text with no other color attributes.'],\n\n 'home-keys-scroll':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, home/end will control the terminal scrollbar and shift home/end ' +\n 'will send the VT keycodes. If false then home/end sends VT codes and ' +\n 'shift home/end scrolls.'],\n\n 'keybindings':\n [hterm.PreferenceManager.categories.Keyboard, null, 'value',\n 'A map of key sequence to key actions. Key sequences include zero or ' +\n 'more modifier keys followed by a key code. Key codes can be decimal or ' +\n 'hexadecimal numbers, or a key identifier. Key actions can be specified ' +\n 'a string to send to the host, or an action identifier. For a full ' +\n 'explanation of the format, see https://goo.gl/LWRndr.\\n' +\n '\\n' +\n 'Sample keybindings:\\n' +\n '{\\n' +\n ' \"Ctrl-Alt-K\": \"clearScrollback\",\\n' +\n ' \"Ctrl-Shift-L\": \"PASS\",\\n' +\n ' \"Ctrl-H\": \"\\'HELLO\\\\n\\'\"\\n' +\n '}'],\n\n 'max-string-sequence':\n [hterm.PreferenceManager.categories.Encoding, 100000, 'int',\n 'Max length of a DCS, OSC, PM, or APS sequence before we give up and ' +\n 'ignore the code.'],\n\n 'media-keys-are-fkeys':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, convert media keys to their Fkey equivalent. If false, let ' +\n 'the browser handle the keys.'],\n\n 'meta-sends-escape':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Set whether the meta key sends a leading escape or not.'],\n\n 'mouse-right-click-paste':\n [hterm.PreferenceManager.categories.CopyPaste, true, 'bool',\n 'Paste on right mouse button clicks.\\n' +\n '\\n' +\n 'This option is activate independent of the \"mouse-paste-button\" ' +\n 'setting.\\n' +\n '\\n' +\n 'Note: This will handle left & right handed mice correctly.'],\n\n 'mouse-paste-button':\n [hterm.PreferenceManager.categories.CopyPaste, null,\n [null, 0, 1, 2, 3, 4, 5, 6],\n 'Mouse paste button, or null to autodetect.\\n' +\n '\\n' +\n 'For autodetect, we\\'ll use the middle mouse button for non-X11 ' +\n 'platforms (including Chrome OS). On X11, we\\'ll use the right mouse ' +\n 'button (since the native window manager should paste via the middle ' +\n 'mouse button).\\n' +\n '\\n' +\n '0 == left (primary) button.\\n' +\n '1 == middle (auxiliary) button.\\n' +\n '2 == right (secondary) button.\\n' +\n '\\n' +\n 'This option is activate independent of the \"mouse-right-click-paste\" ' +\n 'setting.\\n' +\n '\\n' +\n 'Note: This will handle left & right handed mice correctly.'],\n\n 'word-break-match-left':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^!@#$%&*,;:`]', 'string',\n 'Regular expression to halt matching to the left (start) of a selection.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.\\n' +\n 'We allow \"~\" and \".\" by default as paths frequently start with those.'],\n\n 'word-break-match-right':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^!@#$%&*,;:~.`]', 'string',\n 'Regular expression to halt matching to the right (end) of a selection.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.'],\n\n 'word-break-match-middle':\n [hterm.PreferenceManager.categories.CopyPaste,\n '[^\\\\s\\\\[\\\\](){}<>\"\\'\\\\^]*', 'string',\n 'Regular expression to match all the characters in the middle.\\n' +\n '\\n' +\n 'Normally this is a character class to reject specific characters.\\n' +\n '\\n' +\n 'Used to expand the selection surrounding the starting point.'],\n\n 'page-keys-scroll':\n [hterm.PreferenceManager.categories.Keyboard, false, 'bool',\n 'If true, page up/down will control the terminal scrollbar and shift ' +\n 'page up/down will send the VT keycodes. If false then page up/down ' +\n 'sends VT codes and shift page up/down scrolls.'],\n\n 'pass-alt-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Alt-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Alt-1..9 will be handled by the browser. If false, Alt-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-ctrl-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Ctrl-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Ctrl-1..9 will be handled by the browser. If false, Ctrl-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-meta-number':\n [hterm.PreferenceManager.categories.Keyboard, null, 'tristate',\n 'Set whether we should pass Meta-1..9 to the browser.\\n' +\n '\\n' +\n 'This is handy when running hterm in a browser tab, so that you don\\'t ' +\n 'lose Chrome\\'s \"switch to tab\" keyboard accelerators. When not running ' +\n 'in a tab it\\'s better to send these keys to the host so they can be ' +\n 'used in vim or emacs.\\n' +\n '\\n' +\n 'If true, Meta-1..9 will be handled by the browser. If false, Meta-1..9 ' +\n 'will be sent to the host. If null, autodetect based on browser platform ' +\n 'and window type.'],\n\n 'pass-meta-v':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Set whether meta-V gets passed to host.'],\n\n 'receive-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'],\n 'Set the expected encoding for data received from the host.\\n' +\n '\\n' +\n 'Valid values are \\'utf-8\\' and \\'raw\\'.'],\n\n 'scroll-on-keystroke':\n [hterm.PreferenceManager.categories.Scrolling, true, 'bool',\n 'If true, scroll to the bottom on any keystroke.'],\n\n 'scroll-on-output':\n [hterm.PreferenceManager.categories.Scrolling, false, 'bool',\n 'If true, scroll to the bottom on terminal output.'],\n\n 'scrollbar-visible':\n [hterm.PreferenceManager.categories.Scrolling, true, 'bool',\n 'The vertical scrollbar mode.'],\n\n 'scroll-wheel-may-send-arrow-keys':\n [hterm.PreferenceManager.categories.Scrolling, false, 'bool',\n 'When using the alternative screen buffer, and DECCKM (Application Cursor ' +\n 'Keys) is active, mouse wheel scroll events will emulate arrow keys.\\n' +\n '\\n' +\n 'It can be temporarily disabled by holding the shift key.\\n' +\n '\\n' +\n 'This frequently comes up when using pagers (less) or reading man pages ' +\n 'or text editors (vi/nano) or using screen/tmux.'],\n\n 'scroll-wheel-move-multiplier':\n [hterm.PreferenceManager.categories.Scrolling, 1, 'int',\n 'The multiplier for the pixel delta in wheel events caused by the ' +\n 'scroll wheel. Alters how fast the page scrolls.'],\n\n 'send-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'utf-8', ['utf-8', 'raw'],\n 'Set the encoding for data sent to host.'],\n\n 'terminal-encoding':\n [hterm.PreferenceManager.categories.Encoding, 'iso-2022',\n ['iso-2022', 'utf-8', 'utf-8-locked'],\n 'The default terminal encoding (DOCS).\\n' +\n '\\n' +\n 'ISO-2022 enables character map translations (like graphics maps).\\n' +\n 'UTF-8 disables support for those.\\n' +\n '\\n' +\n 'The locked variant means the encoding cannot be changed at runtime ' +\n 'via terminal escape sequences.\\n' +\n '\\n' +\n 'You should stick with UTF-8 unless you notice broken rendering with ' +\n 'legacy applications.'],\n\n 'shift-insert-paste':\n [hterm.PreferenceManager.categories.Keyboard, true, 'bool',\n 'Shift + Insert pastes if true, sent to host if false.'],\n\n 'user-css':\n [hterm.PreferenceManager.categories.Appearance, '', 'url',\n 'URL of user stylesheet to include in the terminal document.'],\n\n 'user-css-text':\n [hterm.PreferenceManager.categories.Appearance, '', 'multiline-string',\n 'Custom CSS text for styling the terminal.'],\n};\n\nhterm.PreferenceManager.prototype =\n Object.create(lib.PreferenceManager.prototype);\nhterm.PreferenceManager.constructor = hterm.PreferenceManager;\n// SOURCE FILE: hterm/js/hterm_pubsub.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\n/**\n * Utility class used to add publish/subscribe/unsubscribe functionality to\n * an existing object.\n */\nhterm.PubSub = function() {\n this.observers_ = {};\n};\n\n/**\n * Add publish, subscribe, and unsubscribe methods to an existing object.\n *\n * No other properties of the object are touched, so there is no need to\n * worry about clashing private properties.\n *\n * @param {Object} obj The object to add this behavior to.\n */\nhterm.PubSub.addBehavior = function(obj) {\n var pubsub = new hterm.PubSub();\n for (var m in hterm.PubSub.prototype) {\n obj[m] = hterm.PubSub.prototype[m].bind(pubsub);\n }\n};\n\n/**\n * Subscribe to be notified of messages about a subject.\n *\n * @param {string} subject The subject to subscribe to.\n * @param {function(Object)} callback The function to invoke for notifications.\n */\nhterm.PubSub.prototype.subscribe = function(subject, callback) {\n if (!(subject in this.observers_))\n this.observers_[subject] = [];\n\n this.observers_[subject].push(callback);\n};\n\n/**\n * Unsubscribe from a subject.\n *\n * @param {string} subject The subject to unsubscribe from.\n * @param {function(Object)} callback A callback previously registered via\n * subscribe().\n */\nhterm.PubSub.prototype.unsubscribe = function(subject, callback) {\n var list = this.observers_[subject];\n if (!list)\n throw 'Invalid subject: ' + subject;\n\n var i = list.indexOf(callback);\n if (i < 0)\n throw 'Not subscribed: ' + subject;\n\n list.splice(i, 1);\n};\n\n/**\n * Publish a message about a subject.\n *\n * Subscribers (and the optional final callback) are invoked asynchronously.\n * This method will return before anyone is actually notified.\n *\n * @param {string} subject The subject to publish about.\n * @param {Object} e An arbitrary object associated with this notification.\n * @param {function(Object)} opt_lastCallback An optional function to call after\n * all subscribers have been notified.\n */\nhterm.PubSub.prototype.publish = function(subject, e, opt_lastCallback) {\n function notifyList(i) {\n // Set this timeout before invoking the callback, so we don't have to\n // concern ourselves with exceptions.\n if (i < list.length - 1)\n setTimeout(notifyList, 0, i + 1);\n\n list[i](e);\n }\n\n var list = this.observers_[subject];\n if (list) {\n // Copy the list, in case it changes while we're notifying.\n list = [].concat(list);\n }\n\n if (opt_lastCallback) {\n if (list) {\n list.push(opt_lastCallback);\n } else {\n list = [opt_lastCallback];\n }\n }\n\n if (list)\n setTimeout(notifyList, 0, 0);\n};\n// SOURCE FILE: hterm/js/hterm_screen.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'lib.wc',\n 'hterm.RowCol', 'hterm.Size', 'hterm.TextAttributes');\n\n/**\n * @fileoverview This class represents a single terminal screen full of text.\n *\n * It maintains the current cursor position and has basic methods for text\n * insert and overwrite, and adding or removing rows from the screen.\n *\n * This class has no knowledge of the scrollback buffer.\n *\n * The number of rows on the screen is determined only by the number of rows\n * that the caller inserts into the screen. If a caller wants to ensure a\n * constant number of rows on the screen, it's their responsibility to remove a\n * row for each row inserted.\n *\n * The screen width, in contrast, is enforced locally.\n *\n *\n * In practice...\n * - The hterm.Terminal class holds two hterm.Screen instances. One for the\n * primary screen and one for the alternate screen.\n *\n * - The html.Screen class only cares that rows are HTMLElements. In the\n * larger context of hterm, however, the rows happen to be displayed by an\n * hterm.ScrollPort and have to follow a few rules as a result. Each\n * row must be rooted by the custom HTML tag 'x-row', and each must have a\n * rowIndex property that corresponds to the index of the row in the context\n * of the scrollback buffer. These invariants are enforced by hterm.Terminal\n * because that is the class using the hterm.Screen in the context of an\n * hterm.ScrollPort.\n */\n\n/**\n * Create a new screen instance.\n *\n * The screen initially has no rows and a maximum column count of 0.\n *\n * @param {integer} opt_columnCount The maximum number of columns for this\n * screen. See insertString() and overwriteString() for information about\n * what happens when too many characters are added too a row. Defaults to\n * 0 if not provided.\n */\nhterm.Screen = function(opt_columnCount) {\n /**\n * Public, read-only access to the rows in this screen.\n */\n this.rowsArray = [];\n\n // The max column width for this screen.\n this.columnCount_ = opt_columnCount || 80;\n\n // The current color, bold, underline and blink attributes.\n this.textAttributes = new hterm.TextAttributes(window.document);\n\n // Current zero-based cursor coordinates.\n this.cursorPosition = new hterm.RowCol(0, 0);\n\n // The node containing the row that the cursor is positioned on.\n this.cursorRowNode_ = null;\n\n // The node containing the span of text that the cursor is positioned on.\n this.cursorNode_ = null;\n\n // The offset in column width into cursorNode_ where the cursor is positioned.\n this.cursorOffset_ = null;\n\n // Regexes for expanding word selections.\n this.wordBreakMatchLeft = null;\n this.wordBreakMatchRight = null;\n this.wordBreakMatchMiddle = null;\n};\n\n/**\n * Return the screen size as an hterm.Size object.\n *\n * @return {hterm.Size} hterm.Size object representing the current number\n * of rows and columns in this screen.\n */\nhterm.Screen.prototype.getSize = function() {\n return new hterm.Size(this.columnCount_, this.rowsArray.length);\n};\n\n/**\n * Return the current number of rows in this screen.\n *\n * @return {integer} The number of rows in this screen.\n */\nhterm.Screen.prototype.getHeight = function() {\n return this.rowsArray.length;\n};\n\n/**\n * Return the current number of columns in this screen.\n *\n * @return {integer} The number of columns in this screen.\n */\nhterm.Screen.prototype.getWidth = function() {\n return this.columnCount_;\n};\n\n/**\n * Set the maximum number of columns per row.\n *\n * @param {integer} count The maximum number of columns per row.\n */\nhterm.Screen.prototype.setColumnCount = function(count) {\n this.columnCount_ = count;\n\n if (this.cursorPosition.column >= count)\n this.setCursorPosition(this.cursorPosition.row, count - 1);\n};\n\n/**\n * Remove the first row from the screen and return it.\n *\n * @return {HTMLElement} The first row in this screen.\n */\nhterm.Screen.prototype.shiftRow = function() {\n return this.shiftRows(1)[0];\n};\n\n/**\n * Remove rows from the top of the screen and return them as an array.\n *\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.shiftRows = function(count) {\n return this.rowsArray.splice(0, count);\n};\n\n/**\n * Insert a row at the top of the screen.\n *\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.unshiftRow = function(row) {\n this.rowsArray.splice(0, 0, row);\n};\n\n/**\n * Insert rows at the top of the screen.\n *\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.unshiftRows = function(rows) {\n this.rowsArray.unshift.apply(this.rowsArray, rows);\n};\n\n/**\n * Remove the last row from the screen and return it.\n *\n * @return {HTMLElement} The last row in this screen.\n */\nhterm.Screen.prototype.popRow = function() {\n return this.popRows(1)[0];\n};\n\n/**\n * Remove rows from the bottom of the screen and return them as an array.\n *\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.popRows = function(count) {\n return this.rowsArray.splice(this.rowsArray.length - count, count);\n};\n\n/**\n * Insert a row at the bottom of the screen.\n *\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.pushRow = function(row) {\n this.rowsArray.push(row);\n};\n\n/**\n * Insert rows at the bottom of the screen.\n *\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.pushRows = function(rows) {\n rows.push.apply(this.rowsArray, rows);\n};\n\n/**\n * Insert a row at the specified row of the screen.\n *\n * @param {integer} index The index to insert the row.\n * @param {HTMLElement} row The row to insert.\n */\nhterm.Screen.prototype.insertRow = function(index, row) {\n this.rowsArray.splice(index, 0, row);\n};\n\n/**\n * Insert rows at the specified row of the screen.\n *\n * @param {integer} index The index to insert the rows.\n * @param {Array.} rows The rows to insert.\n */\nhterm.Screen.prototype.insertRows = function(index, rows) {\n for (var i = 0; i < rows.length; i++) {\n this.rowsArray.splice(index + i, 0, rows[i]);\n }\n};\n\n/**\n * Remove a row from the screen and return it.\n *\n * @param {integer} index The index of the row to remove.\n * @return {HTMLElement} The selected row.\n */\nhterm.Screen.prototype.removeRow = function(index) {\n return this.rowsArray.splice(index, 1)[0];\n};\n\n/**\n * Remove rows from the bottom of the screen and return them as an array.\n *\n * @param {integer} index The index to start removing rows.\n * @param {integer} count The number of rows to remove.\n * @return {Array.} The selected rows.\n */\nhterm.Screen.prototype.removeRows = function(index, count) {\n return this.rowsArray.splice(index, count);\n};\n\n/**\n * Invalidate the current cursor position.\n *\n * This sets this.cursorPosition to (0, 0) and clears out some internal\n * data.\n *\n * Attempting to insert or overwrite text while the cursor position is invalid\n * will raise an obscure exception.\n */\nhterm.Screen.prototype.invalidateCursorPosition = function() {\n this.cursorPosition.move(0, 0);\n this.cursorRowNode_ = null;\n this.cursorNode_ = null;\n this.cursorOffset_ = null;\n};\n\n/**\n * Clear the contents of the cursor row.\n */\nhterm.Screen.prototype.clearCursorRow = function() {\n this.cursorRowNode_.innerHTML = '';\n this.cursorRowNode_.removeAttribute('line-overflow');\n this.cursorOffset_ = 0;\n this.cursorPosition.column = 0;\n this.cursorPosition.overflow = false;\n\n var text;\n if (this.textAttributes.isDefault()) {\n text = '';\n } else {\n text = lib.f.getWhitespace(this.columnCount_);\n }\n\n // We shouldn't honor inverse colors when clearing an area, to match\n // xterm's back color erase behavior.\n var inverse = this.textAttributes.inverse;\n this.textAttributes.inverse = false;\n this.textAttributes.syncColors();\n\n var node = this.textAttributes.createContainer(text);\n this.cursorRowNode_.appendChild(node);\n this.cursorNode_ = node;\n\n this.textAttributes.inverse = inverse;\n this.textAttributes.syncColors();\n};\n\n/**\n * Mark the current row as having overflowed to the next line.\n *\n * The line overflow state is used when converting a range of rows into text.\n * It makes it possible to recombine two or more overflow terminal rows into\n * a single line.\n *\n * This is distinct from the cursor being in the overflow state. Cursor\n * overflow indicates that printing at the cursor position will commit a\n * line overflow, unless it is preceded by a repositioning of the cursor\n * to a non-overflow state.\n */\nhterm.Screen.prototype.commitLineOverflow = function() {\n this.cursorRowNode_.setAttribute('line-overflow', true);\n};\n\n/**\n * Relocate the cursor to a give row and column.\n *\n * @param {integer} row The zero based row.\n * @param {integer} column The zero based column.\n */\nhterm.Screen.prototype.setCursorPosition = function(row, column) {\n if (!this.rowsArray.length) {\n console.warn('Attempt to set cursor position on empty screen.');\n return;\n }\n\n if (row >= this.rowsArray.length) {\n console.error('Row out of bounds: ' + row);\n row = this.rowsArray.length - 1;\n } else if (row < 0) {\n console.error('Row out of bounds: ' + row);\n row = 0;\n }\n\n if (column >= this.columnCount_) {\n console.error('Column out of bounds: ' + column);\n column = this.columnCount_ - 1;\n } else if (column < 0) {\n console.error('Column out of bounds: ' + column);\n column = 0;\n }\n\n this.cursorPosition.overflow = false;\n\n var rowNode = this.rowsArray[row];\n var node = rowNode.firstChild;\n\n if (!node) {\n node = rowNode.ownerDocument.createTextNode('');\n rowNode.appendChild(node);\n }\n\n var currentColumn = 0;\n\n if (rowNode == this.cursorRowNode_) {\n if (column >= this.cursorPosition.column - this.cursorOffset_) {\n node = this.cursorNode_;\n currentColumn = this.cursorPosition.column - this.cursorOffset_;\n }\n } else {\n this.cursorRowNode_ = rowNode;\n }\n\n this.cursorPosition.move(row, column);\n\n while (node) {\n var offset = column - currentColumn;\n var width = hterm.TextAttributes.nodeWidth(node);\n if (!node.nextSibling || width > offset) {\n this.cursorNode_ = node;\n this.cursorOffset_ = offset;\n return;\n }\n\n currentColumn += width;\n node = node.nextSibling;\n }\n};\n\n/**\n * Set the provided selection object to be a caret selection at the current\n * cursor position.\n */\nhterm.Screen.prototype.syncSelectionCaret = function(selection) {\n try {\n selection.collapse(this.cursorNode_, this.cursorOffset_);\n } catch (firefoxIgnoredException) {\n // FF can throw an exception if the range is off, rather than just not\n // performing the collapse.\n }\n};\n\n/**\n * Split a single node into two nodes at the given offset.\n *\n * For example:\n * Given the DOM fragment '
Hello World
', call splitNode_\n * passing the span and an offset of 6. This would modify the fragment to\n * become: '
Hello World
'. If the span\n * had any attributes they would have been copied to the new span as well.\n *\n * The to-be-split node must have a container, so that the new node can be\n * placed next to it.\n *\n * @param {HTMLNode} node The node to split.\n * @param {integer} offset The offset into the node where the split should\n * occur.\n */\nhterm.Screen.prototype.splitNode_ = function(node, offset) {\n var afterNode = node.cloneNode(false);\n\n var textContent = node.textContent;\n node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset);\n afterNode.textContent = lib.wc.substr(textContent, offset);\n\n if (afterNode.textContent)\n node.parentNode.insertBefore(afterNode, node.nextSibling);\n if (!node.textContent)\n node.parentNode.removeChild(node);\n};\n\n/**\n * Ensure that text is clipped and the cursor is clamped to the column count.\n */\nhterm.Screen.prototype.maybeClipCurrentRow = function() {\n var width = hterm.TextAttributes.nodeWidth(this.cursorRowNode_);\n\n if (width <= this.columnCount_) {\n // Current row does not need clipping, but may need clamping.\n if (this.cursorPosition.column >= this.columnCount_) {\n this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1);\n this.cursorPosition.overflow = true;\n }\n\n return;\n }\n\n // Save off the current column so we can maybe restore it later.\n var currentColumn = this.cursorPosition.column;\n\n // Move the cursor to the final column.\n this.setCursorPosition(this.cursorPosition.row, this.columnCount_ - 1);\n\n // Remove any text that partially overflows.\n width = hterm.TextAttributes.nodeWidth(this.cursorNode_);\n\n if (this.cursorOffset_ < width - 1) {\n this.cursorNode_.textContent = hterm.TextAttributes.nodeSubstr(\n this.cursorNode_, 0, this.cursorOffset_ + 1);\n }\n\n // Remove all nodes after the cursor.\n var rowNode = this.cursorRowNode_;\n var node = this.cursorNode_.nextSibling;\n\n while (node) {\n rowNode.removeChild(node);\n node = this.cursorNode_.nextSibling;\n }\n\n if (currentColumn < this.columnCount_) {\n // If the cursor was within the screen before we started then restore its\n // position.\n this.setCursorPosition(this.cursorPosition.row, currentColumn);\n } else {\n // Otherwise leave it at the the last column in the overflow state.\n this.cursorPosition.overflow = true;\n }\n};\n\n/**\n * Insert a string at the current character position using the current\n * text attributes.\n *\n * You must call maybeClipCurrentRow() after in order to clip overflowed\n * text and clamp the cursor.\n *\n * It is also up to the caller to properly maintain the line overflow state\n * using hterm.Screen..commitLineOverflow().\n */\nhterm.Screen.prototype.insertString = function(str) {\n var cursorNode = this.cursorNode_;\n var cursorNodeText = cursorNode.textContent;\n\n this.cursorRowNode_.removeAttribute('line-overflow');\n\n // We may alter the width of the string by prepending some missing\n // whitespaces, so we need to record the string width ahead of time.\n var strWidth = lib.wc.strWidth(str);\n\n // No matter what, before this function exits the cursor column will have\n // moved this much.\n this.cursorPosition.column += strWidth;\n\n // Local cache of the cursor offset.\n var offset = this.cursorOffset_;\n\n // Reverse offset is the offset measured from the end of the string.\n // Zero implies that the cursor is at the end of the cursor node.\n var reverseOffset = hterm.TextAttributes.nodeWidth(cursorNode) - offset;\n\n if (reverseOffset < 0) {\n // A negative reverse offset means the cursor is positioned past the end\n // of the characters on this line. We'll need to insert the missing\n // whitespace.\n var ws = lib.f.getWhitespace(-reverseOffset);\n\n // This whitespace should be completely unstyled. Underline, background\n // color, and strikethrough would be visible on whitespace, so we can't use\n // one of those spans to hold the text.\n if (!(this.textAttributes.underline ||\n this.textAttributes.strikethrough ||\n this.textAttributes.background ||\n this.textAttributes.wcNode ||\n !this.textAttributes.asciiNode ||\n this.textAttributes.tileData != null)) {\n // Best case scenario, we can just pretend the spaces were part of the\n // original string.\n str = ws + str;\n } else if (cursorNode.nodeType == 3 ||\n !(cursorNode.wcNode ||\n !cursorNode.asciiNode ||\n cursorNode.tileNode ||\n cursorNode.style.textDecoration ||\n cursorNode.style.backgroundColor)) {\n // Second best case, the current node is able to hold the whitespace.\n cursorNode.textContent = (cursorNodeText += ws);\n } else {\n // Worst case, we have to create a new node to hold the whitespace.\n var wsNode = cursorNode.ownerDocument.createTextNode(ws);\n this.cursorRowNode_.insertBefore(wsNode, cursorNode.nextSibling);\n this.cursorNode_ = cursorNode = wsNode;\n this.cursorOffset_ = offset = -reverseOffset;\n cursorNodeText = ws;\n }\n\n // We now know for sure that we're at the last character of the cursor node.\n reverseOffset = 0;\n }\n\n if (this.textAttributes.matchesContainer(cursorNode)) {\n // The new text can be placed directly in the cursor node.\n if (reverseOffset == 0) {\n cursorNode.textContent = cursorNodeText + str;\n } else if (offset == 0) {\n cursorNode.textContent = str + cursorNodeText;\n } else {\n cursorNode.textContent =\n hterm.TextAttributes.nodeSubstr(cursorNode, 0, offset) +\n str + hterm.TextAttributes.nodeSubstr(cursorNode, offset);\n }\n\n this.cursorOffset_ += strWidth;\n return;\n }\n\n // The cursor node is the wrong style for the new text. If we're at the\n // beginning or end of the cursor node, then the adjacent node is also a\n // potential candidate.\n\n if (offset == 0) {\n // At the beginning of the cursor node, the check the previous sibling.\n var previousSibling = cursorNode.previousSibling;\n if (previousSibling &&\n this.textAttributes.matchesContainer(previousSibling)) {\n previousSibling.textContent += str;\n this.cursorNode_ = previousSibling;\n this.cursorOffset_ = lib.wc.strWidth(previousSibling.textContent);\n return;\n }\n\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, cursorNode);\n this.cursorNode_ = newNode;\n this.cursorOffset_ = strWidth;\n return;\n }\n\n if (reverseOffset == 0) {\n // At the end of the cursor node, the check the next sibling.\n var nextSibling = cursorNode.nextSibling;\n if (nextSibling &&\n this.textAttributes.matchesContainer(nextSibling)) {\n nextSibling.textContent = str + nextSibling.textContent;\n this.cursorNode_ = nextSibling;\n this.cursorOffset_ = lib.wc.strWidth(str);\n return;\n }\n\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, nextSibling);\n this.cursorNode_ = newNode;\n // We specifically need to include any missing whitespace here, since it's\n // going in a new node.\n this.cursorOffset_ = hterm.TextAttributes.nodeWidth(newNode);\n return;\n }\n\n // Worst case, we're somewhere in the middle of the cursor node. We'll\n // have to split it into two nodes and insert our new container in between.\n this.splitNode_(cursorNode, offset);\n var newNode = this.textAttributes.createContainer(str);\n this.cursorRowNode_.insertBefore(newNode, cursorNode.nextSibling);\n this.cursorNode_ = newNode;\n this.cursorOffset_ = strWidth;\n};\n\n/**\n * Overwrite the text at the current cursor position.\n *\n * You must call maybeClipCurrentRow() after in order to clip overflowed\n * text and clamp the cursor.\n *\n * It is also up to the caller to properly maintain the line overflow state\n * using hterm.Screen..commitLineOverflow().\n */\nhterm.Screen.prototype.overwriteString = function(str) {\n var maxLength = this.columnCount_ - this.cursorPosition.column;\n if (!maxLength)\n return [str];\n\n var width = lib.wc.strWidth(str);\n if (this.textAttributes.matchesContainer(this.cursorNode_) &&\n this.cursorNode_.textContent.substr(this.cursorOffset_) == str) {\n // This overwrite would be a no-op, just move the cursor and return.\n this.cursorOffset_ += width;\n this.cursorPosition.column += width;\n return;\n }\n\n this.deleteChars(Math.min(width, maxLength));\n this.insertString(str);\n};\n\n/**\n * Forward-delete one or more characters at the current cursor position.\n *\n * Text to the right of the deleted characters is shifted left. Only affects\n * characters on the same row as the cursor.\n *\n * @param {integer} count The column width of characters to delete. This is\n * clamped to the column width minus the cursor column.\n * @return {integer} The column width of the characters actually deleted.\n */\nhterm.Screen.prototype.deleteChars = function(count) {\n var node = this.cursorNode_;\n var offset = this.cursorOffset_;\n\n var currentCursorColumn = this.cursorPosition.column;\n count = Math.min(count, this.columnCount_ - currentCursorColumn);\n if (!count)\n return 0;\n\n var rv = count;\n var startLength, endLength;\n\n while (node && count) {\n startLength = hterm.TextAttributes.nodeWidth(node);\n node.textContent = hterm.TextAttributes.nodeSubstr(node, 0, offset) +\n hterm.TextAttributes.nodeSubstr(node, offset + count);\n endLength = hterm.TextAttributes.nodeWidth(node);\n count -= startLength - endLength;\n if (offset < startLength && endLength && startLength == endLength) {\n // No characters were deleted when there should be. We're probably trying\n // to delete one column width from a wide character node. We remove the\n // wide character node here and replace it with a single space.\n var spaceNode = this.textAttributes.createContainer(' ');\n node.parentNode.insertBefore(spaceNode, node.nextSibling);\n node.textContent = '';\n endLength = 0;\n count -= 1;\n }\n\n var nextNode = node.nextSibling;\n if (endLength == 0 && node != this.cursorNode_) {\n node.parentNode.removeChild(node);\n }\n node = nextNode;\n offset = 0;\n }\n\n // Remove this.cursorNode_ if it is an empty non-text node.\n if (this.cursorNode_.nodeType != 3 && !this.cursorNode_.textContent) {\n var cursorNode = this.cursorNode_;\n if (cursorNode.previousSibling) {\n this.cursorNode_ = cursorNode.previousSibling;\n this.cursorOffset_ = hterm.TextAttributes.nodeWidth(\n cursorNode.previousSibling);\n } else if (cursorNode.nextSibling) {\n this.cursorNode_ = cursorNode.nextSibling;\n this.cursorOffset_ = 0;\n } else {\n var emptyNode = this.cursorRowNode_.ownerDocument.createTextNode('');\n this.cursorRowNode_.appendChild(emptyNode);\n this.cursorNode_ = emptyNode;\n this.cursorOffset_ = 0;\n }\n this.cursorRowNode_.removeChild(cursorNode);\n }\n\n return rv;\n};\n\n/**\n * Finds first X-ROW of a line containing specified X-ROW.\n * Used to support line overflow.\n *\n * @param {Node} row X-ROW to begin search for first row of line.\n * @return {Node} The X-ROW that is at the beginning of the line.\n **/\nhterm.Screen.prototype.getLineStartRow_ = function(row) {\n while (row.previousSibling &&\n row.previousSibling.hasAttribute('line-overflow')) {\n row = row.previousSibling;\n }\n return row;\n};\n\n/**\n * Gets text of a line beginning with row.\n * Supports line overflow.\n *\n * @param {Node} row First X-ROW of line.\n * @return {string} Text content of line.\n **/\nhterm.Screen.prototype.getLineText_ = function(row) {\n var rowText = \"\";\n while (row) {\n rowText += row.textContent;\n if (row.hasAttribute('line-overflow')) {\n row = row.nextSibling;\n } else {\n break;\n }\n }\n return rowText;\n};\n\n/**\n * Returns X-ROW that is ancestor of the node.\n *\n * @param {Node} node Node to get X-ROW ancestor for.\n * @return {Node} X-ROW ancestor of node, or null if not found.\n **/\nhterm.Screen.prototype.getXRowAncestor_ = function(node) {\n while (node) {\n if (node.nodeName === 'X-ROW')\n break;\n node = node.parentNode;\n }\n return node;\n};\n\n/**\n * Returns position within line of character at offset within node.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {Node} node Node to get position of.\n * @param {integer} offset Offset into node.\n *\n * @return {integer} Position within line of character at offset within node.\n **/\nhterm.Screen.prototype.getPositionWithOverflow_ = function(row, node, offset) {\n if (!node)\n return -1;\n var ancestorRow = this.getXRowAncestor_(node);\n if (!ancestorRow)\n return -1;\n var position = 0;\n while (ancestorRow != row) {\n position += hterm.TextAttributes.nodeWidth(row);\n if (row.hasAttribute('line-overflow') && row.nextSibling) {\n row = row.nextSibling;\n } else {\n return -1;\n }\n }\n return position + this.getPositionWithinRow_(row, node, offset);\n};\n\n/**\n * Returns position within row of character at offset within node.\n * Does not support line overflow.\n *\n * @param {Node} row X-ROW to get position within.\n * @param {Node} node Node to get position for.\n * @param {integer} offset Offset within node to get position for.\n * @return {integer} Position within row of character at offset within node.\n **/\nhterm.Screen.prototype.getPositionWithinRow_ = function(row, node, offset) {\n if (node.parentNode != row) {\n // If we traversed to the top node, then there's nothing to find here.\n if (node.parentNode == null)\n return -1;\n\n return this.getPositionWithinRow_(node.parentNode, node, offset) +\n this.getPositionWithinRow_(row, node.parentNode, 0);\n }\n var position = 0;\n for (var i = 0; i < row.childNodes.length; i++) {\n var currentNode = row.childNodes[i];\n if (currentNode == node)\n return position + offset;\n position += hterm.TextAttributes.nodeWidth(currentNode);\n }\n return -1;\n};\n\n/**\n * Returns the node and offset corresponding to position within line.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {integer} position Position within line to retrieve node and offset.\n * @return {Array} Two element array containing node and offset respectively.\n **/\nhterm.Screen.prototype.getNodeAndOffsetWithOverflow_ = function(row, position) {\n while (row && position > hterm.TextAttributes.nodeWidth(row)) {\n if (row.hasAttribute('line-overflow') && row.nextSibling) {\n position -= hterm.TextAttributes.nodeWidth(row);\n row = row.nextSibling;\n } else {\n return -1;\n }\n }\n return this.getNodeAndOffsetWithinRow_(row, position);\n};\n\n/**\n * Returns the node and offset corresponding to position within row.\n * Does not support line overflow.\n *\n * @param {Node} row X-ROW to get position within.\n * @param {integer} position Position within row to retrieve node and offset.\n * @return {Array} Two element array containing node and offset respectively.\n **/\nhterm.Screen.prototype.getNodeAndOffsetWithinRow_ = function(row, position) {\n for (var i = 0; i < row.childNodes.length; i++) {\n var node = row.childNodes[i];\n var nodeTextWidth = hterm.TextAttributes.nodeWidth(node);\n if (position <= nodeTextWidth) {\n if (node.nodeName === 'SPAN') {\n /** Drill down to node contained by SPAN. **/\n return this.getNodeAndOffsetWithinRow_(node, position);\n } else {\n return [node, position];\n }\n }\n position -= nodeTextWidth;\n }\n return null;\n};\n\n/**\n * Returns the node and offset corresponding to position within line.\n * Supports line overflow.\n *\n * @param {Node} row X-ROW at beginning of line.\n * @param {integer} start Start position of range within line.\n * @param {integer} end End position of range within line.\n * @param {Range} range Range to modify.\n **/\nhterm.Screen.prototype.setRange_ = function(row, start, end, range) {\n var startNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, start);\n if (startNodeAndOffset == null)\n return;\n var endNodeAndOffset = this.getNodeAndOffsetWithOverflow_(row, end);\n if (endNodeAndOffset == null)\n return;\n range.setStart(startNodeAndOffset[0], startNodeAndOffset[1]);\n range.setEnd(endNodeAndOffset[0], endNodeAndOffset[1]);\n};\n\n/**\n * Expands selection to surround URLs.\n *\n * @param {Selection} selection Selection to expand.\n **/\nhterm.Screen.prototype.expandSelection = function(selection) {\n if (!selection)\n return;\n\n var range = selection.getRangeAt(0);\n if (!range || range.toString().match(/\\s/))\n return;\n\n var row = this.getLineStartRow_(this.getXRowAncestor_(range.startContainer));\n if (!row)\n return;\n\n var startPosition = this.getPositionWithOverflow_(row,\n range.startContainer,\n range.startOffset);\n if (startPosition == -1)\n return;\n var endPosition = this.getPositionWithOverflow_(row,\n range.endContainer,\n range.endOffset);\n if (endPosition == -1)\n return;\n\n // Use the user configurable match settings.\n var leftMatch = this.wordBreakMatchLeft;\n var rightMatch = this.wordBreakMatchRight;\n var insideMatch = this.wordBreakMatchMiddle;\n\n //Move start to the left.\n var rowText = this.getLineText_(row);\n var lineUpToRange = lib.wc.substring(rowText, 0, endPosition);\n var leftRegularExpression = new RegExp(leftMatch + insideMatch + \"$\");\n var expandedStart = lineUpToRange.search(leftRegularExpression);\n if (expandedStart == -1 || expandedStart > startPosition)\n return;\n\n //Move end to the right.\n var lineFromRange = lib.wc.substring(rowText, startPosition,\n lib.wc.strWidth(rowText));\n var rightRegularExpression = new RegExp(\"^\" + insideMatch + rightMatch);\n var found = lineFromRange.match(rightRegularExpression);\n if (!found)\n return;\n var expandedEnd = startPosition + lib.wc.strWidth(found[0]);\n if (expandedEnd == -1 || expandedEnd < endPosition)\n return;\n\n this.setRange_(row, expandedStart, expandedEnd, range);\n selection.addRange(range);\n};\n// SOURCE FILE: hterm/js/hterm_scrollport.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f', 'hterm.PubSub', 'hterm.Size');\n\n/**\n * A 'viewport' view of fixed-height rows with support for selection and\n * copy-to-clipboard.\n *\n * 'Viewport' in this case means that only the visible rows are in the DOM.\n * If the rowProvider has 100,000 rows, but the ScrollPort is only 25 rows\n * tall, then only 25 dom nodes are created. The ScrollPort will ask the\n * RowProvider to create new visible rows on demand as they are scrolled in\n * to the visible area.\n *\n * This viewport is designed so that select and copy-to-clipboard still works,\n * even when all or part of the selection is scrolled off screen.\n *\n * Note that the X11 mouse clipboard does not work properly when all or part\n * of the selection is off screen. It would be difficult to fix this without\n * adding significant overhead to pathologically large selection cases.\n *\n * The RowProvider should return rows rooted by the custom tag name 'x-row'.\n * This ensures that we can quickly assign the correct display height\n * to the rows with css.\n *\n * @param {RowProvider} rowProvider An object capable of providing rows as\n * raw text or row nodes.\n */\nhterm.ScrollPort = function(rowProvider) {\n hterm.PubSub.addBehavior(this);\n\n this.rowProvider_ = rowProvider;\n\n // SWAG the character size until we can measure it.\n this.characterSize = new hterm.Size(10, 10);\n\n // DOM node used for character measurement.\n this.ruler_ = null;\n\n this.selection = new hterm.ScrollPort.Selection(this);\n\n // A map of rowIndex => rowNode for each row that is drawn as part of a\n // pending redraw_() call. Null if there is no pending redraw_ call.\n this.currentRowNodeCache_ = null;\n\n // A map of rowIndex => rowNode for each row that was drawn as part of the\n // previous redraw_() call.\n this.previousRowNodeCache_ = {};\n\n // Used during scroll events to detect when the underlying cause is a resize.\n this.lastScreenWidth_ = null;\n this.lastScreenHeight_ = null;\n\n // True if the user should be allowed to select text in the terminal.\n // This is disabled when the host requests mouse drag events so that we don't\n // end up with two notions of selection.\n this.selectionEnabled_ = true;\n\n // The last row count returned by the row provider, re-populated during\n // syncScrollHeight().\n this.lastRowCount_ = 0;\n\n // The scroll wheel pixel delta multiplier to increase/decrease\n // the scroll speed of mouse wheel events. See: https://goo.gl/sXelnq\n this.scrollWheelMultiplier_ = 1;\n\n // The last touch events we saw to support touch based scrolling. Indexed\n // by touch identifier since we can have more than one touch active.\n this.lastTouch_ = {};\n\n /**\n * True if the last scroll caused the scrollport to show the final row.\n */\n this.isScrolledEnd = true;\n\n /**\n * A guess at the current scrollbar width, fixed in resize().\n */\n this.currentScrollbarWidthPx = 16;\n\n /**\n * Whether the ctrl-v key on the screen should paste.\n */\n this.ctrlVPaste = false;\n\n this.div_ = null;\n this.document_ = null;\n\n // Collection of active timeout handles.\n this.timeouts_ = {};\n\n this.observers_ = {};\n\n this.DEBUG_ = false;\n}\n\n/**\n * Proxy for the native selection object which understands how to walk up the\n * DOM to find the containing row node and sort out which comes first.\n *\n * @param {hterm.ScrollPort} scrollPort The parent hterm.ScrollPort instance.\n */\nhterm.ScrollPort.Selection = function(scrollPort) {\n this.scrollPort_ = scrollPort;\n\n /**\n * The row containing the start of the selection.\n *\n * This may be partially or fully selected. It may be the selection anchor\n * or the focus, but its rowIndex is guaranteed to be less-than-or-equal-to\n * that of the endRow.\n *\n * If only one row is selected then startRow == endRow. If there is no\n * selection or the selection is collapsed then startRow == null.\n */\n this.startRow = null;\n\n /**\n * The row containing the end of the selection.\n *\n * This may be partially or fully selected. It may be the selection anchor\n * or the focus, but its rowIndex is guaranteed to be greater-than-or-equal-to\n * that of the startRow.\n *\n * If only one row is selected then startRow == endRow. If there is no\n * selection or the selection is collapsed then startRow == null.\n */\n this.endRow = null;\n\n /**\n * True if startRow != endRow.\n */\n this.isMultiline = null;\n\n /**\n * True if the selection is just a point rather than a range.\n */\n this.isCollapsed = null;\n};\n\n/**\n * Given a list of DOM nodes and a container, return the DOM node that\n * is first according to a depth-first search.\n *\n * Returns null if none of the children are found.\n */\nhterm.ScrollPort.Selection.prototype.findFirstChild = function(\n parent, childAry) {\n var node = parent.firstChild;\n\n while (node) {\n if (childAry.indexOf(node) != -1)\n return node;\n\n if (node.childNodes.length) {\n var rv = this.findFirstChild(node, childAry);\n if (rv)\n return rv;\n }\n\n node = node.nextSibling;\n }\n\n return null;\n};\n\n/**\n * Synchronize this object with the current DOM selection.\n *\n * This is a one-way synchronization, the DOM selection is copied to this\n * object, not the other way around.\n */\nhterm.ScrollPort.Selection.prototype.sync = function() {\n var self = this;\n\n // The dom selection object has no way to tell which nodes come first in\n // the document, so we have to figure that out.\n //\n // This function is used when we detect that the \"anchor\" node is first.\n function anchorFirst() {\n self.startRow = anchorRow;\n self.startNode = selection.anchorNode;\n self.startOffset = selection.anchorOffset;\n self.endRow = focusRow;\n self.endNode = selection.focusNode;\n self.endOffset = selection.focusOffset;\n }\n\n // This function is used when we detect that the \"focus\" node is first.\n function focusFirst() {\n self.startRow = focusRow;\n self.startNode = selection.focusNode;\n self.startOffset = selection.focusOffset;\n self.endRow = anchorRow;\n self.endNode = selection.anchorNode;\n self.endOffset = selection.anchorOffset;\n }\n\n var selection = this.scrollPort_.getDocument().getSelection();\n\n this.startRow = null;\n this.endRow = null;\n this.isMultiline = null;\n this.isCollapsed = !selection || selection.isCollapsed;\n\n if (this.isCollapsed)\n return;\n\n var anchorRow = selection.anchorNode;\n while (anchorRow && !('rowIndex' in anchorRow)) {\n anchorRow = anchorRow.parentNode;\n }\n\n if (!anchorRow) {\n console.error('Selection anchor is not rooted in a row node: ' +\n selection.anchorNode.nodeName);\n return;\n }\n\n var focusRow = selection.focusNode;\n while (focusRow && !('rowIndex' in focusRow)) {\n focusRow = focusRow.parentNode;\n }\n\n if (!focusRow) {\n console.error('Selection focus is not rooted in a row node: ' +\n selection.focusNode.nodeName);\n return;\n }\n\n if (anchorRow.rowIndex < focusRow.rowIndex) {\n anchorFirst();\n\n } else if (anchorRow.rowIndex > focusRow.rowIndex) {\n focusFirst();\n\n } else if (selection.focusNode == selection.anchorNode) {\n if (selection.anchorOffset < selection.focusOffset) {\n anchorFirst();\n } else {\n focusFirst();\n }\n\n } else {\n // The selection starts and ends in the same row, but isn't contained all\n // in a single node.\n var firstNode = this.findFirstChild(\n anchorRow, [selection.anchorNode, selection.focusNode]);\n\n if (!firstNode)\n throw new Error('Unexpected error syncing selection.');\n\n if (firstNode == selection.anchorNode) {\n anchorFirst();\n } else {\n focusFirst();\n }\n }\n\n this.isMultiline = anchorRow.rowIndex != focusRow.rowIndex;\n};\n\n\n/**\n * Turn a div into this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.decorate = function(div) {\n this.div_ = div;\n\n this.iframe_ = div.ownerDocument.createElement('iframe');\n this.iframe_.style.cssText = (\n 'border: 0;' +\n 'height: 100%;' +\n 'position: absolute;' +\n 'width: 100%');\n\n // Set the iframe src to # in FF. Otherwise when the frame's\n // load event fires in FF it clears out the content of the iframe.\n if ('mozInnerScreenX' in window) // detect a FF only property\n this.iframe_.src = '#';\n\n div.appendChild(this.iframe_);\n\n this.iframe_.contentWindow.addEventListener('resize',\n this.onResize_.bind(this));\n\n var doc = this.document_ = this.iframe_.contentDocument;\n doc.body.style.cssText = (\n 'margin: 0px;' +\n 'padding: 0px;' +\n 'height: 100%;' +\n 'width: 100%;' +\n 'overflow: hidden;' +\n 'cursor: var(--hterm-mouse-cursor-style);' +\n '-webkit-user-select: none;' +\n '-moz-user-select: none;');\n\n if (this.DEBUG_) {\n // When we're debugging we add padding to the body so that the offscreen\n // elements are visible.\n this.document_.body.style.paddingTop =\n this.document_.body.style.paddingBottom =\n 'calc(var(--hterm-charsize-height) * 3)';\n }\n\n var style = doc.createElement('style');\n style.textContent = (\n 'x-row {' +\n ' display: block;' +\n ' height: var(--hterm-charsize-height);' +\n ' line-height: var(--hterm-charsize-height);' +\n '}');\n doc.head.appendChild(style);\n\n this.userCssLink_ = doc.createElement('link');\n this.userCssLink_.setAttribute('rel', 'stylesheet');\n\n this.userCssText_ = doc.createElement('style');\n doc.head.appendChild(this.userCssText_);\n\n // TODO(rginda): Sorry, this 'screen_' isn't the same thing as hterm.Screen\n // from screen.js. I need to pick a better name for one of them to avoid\n // the collision.\n // We make this field editable even though we don't actually allow anything\n // to be edited here so that Chrome will do the right thing with virtual\n // keyboards and IMEs. But make sure we turn off all the input helper logic\n // that doesn't make sense here, and might inadvertently mung or save input.\n // Some of these attributes are standard while others are browser specific,\n // but should be safely ignored by other browsers.\n this.screen_ = doc.createElement('x-screen');\n this.screen_.setAttribute('contenteditable', 'true');\n this.screen_.setAttribute('spellcheck', 'false');\n this.screen_.setAttribute('autocomplete', 'off');\n this.screen_.setAttribute('autocorrect', 'off');\n this.screen_.setAttribute('autocaptalize', 'none');\n this.screen_.setAttribute('role', 'textbox');\n this.screen_.setAttribute('tabindex', '-1');\n this.screen_.style.cssText = (\n 'caret-color: transparent;' +\n 'display: block;' +\n 'font-family: monospace;' +\n 'font-size: 15px;' +\n 'font-variant-ligatures: none;' +\n 'height: 100%;' +\n 'overflow-y: scroll; overflow-x: hidden;' +\n 'white-space: pre;' +\n 'width: 100%;' +\n 'outline: none !important');\n\n doc.body.appendChild(this.screen_);\n\n this.screen_.addEventListener('scroll', this.onScroll_.bind(this));\n this.screen_.addEventListener('wheel', this.onScrollWheel_.bind(this));\n this.screen_.addEventListener('touchstart', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchmove', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchend', this.onTouch_.bind(this));\n this.screen_.addEventListener('touchcancel', this.onTouch_.bind(this));\n this.screen_.addEventListener('copy', this.onCopy_.bind(this));\n this.screen_.addEventListener('paste', this.onPaste_.bind(this));\n // Disable drag & drop of text/content. We don't handle it at all (yet?),\n // and the default behavior just confuses hterm.\n this.screen_.addEventListener('drop', function(e) {\n e.preventDefault();\n return false;\n });\n\n doc.body.addEventListener('keydown', this.onBodyKeyDown_.bind(this));\n\n // This is the main container for the fixed rows.\n this.rowNodes_ = doc.createElement('div');\n this.rowNodes_.id = 'hterm:row-nodes';\n this.rowNodes_.style.cssText = (\n 'display: block;' +\n 'position: fixed;' +\n 'overflow: hidden;' +\n '-webkit-user-select: text;' +\n '-moz-user-select: text;');\n this.screen_.appendChild(this.rowNodes_);\n\n // Two nodes to hold offscreen text during the copy event.\n this.topSelectBag_ = doc.createElement('x-select-bag');\n this.topSelectBag_.style.cssText = (\n 'display: block;' +\n 'overflow: hidden;' +\n 'height: var(--hterm-charsize-height);' +\n 'white-space: pre;');\n\n this.bottomSelectBag_ = this.topSelectBag_.cloneNode();\n\n // Nodes above the top fold and below the bottom fold are hidden. They are\n // only used to hold rows that are part of the selection but are currently\n // scrolled off the top or bottom of the visible range.\n this.topFold_ = doc.createElement('x-fold');\n this.topFold_.id = 'hterm:top-fold-for-row-selection';\n this.topFold_.style.cssText = 'display: block;';\n this.rowNodes_.appendChild(this.topFold_);\n\n this.bottomFold_ = this.topFold_.cloneNode();\n this.bottomFold_.id = 'hterm:bottom-fold-for-row-selection';\n this.rowNodes_.appendChild(this.bottomFold_);\n\n // This hidden div accounts for the vertical space that would be consumed by\n // all the rows in the buffer if they were visible. It's what causes the\n // scrollbar to appear on the 'x-screen', and it moves within the screen when\n // the scrollbar is moved.\n //\n // It is set 'visibility: hidden' to keep the browser from trying to include\n // it in the selection when a user 'drag selects' upwards (drag the mouse to\n // select and scroll at the same time). Without this, the selection gets\n // out of whack.\n this.scrollArea_ = doc.createElement('div');\n this.scrollArea_.id = 'hterm:scrollarea';\n this.scrollArea_.style.cssText = 'visibility: hidden';\n this.screen_.appendChild(this.scrollArea_);\n\n // This svg element is used to detect when the browser is zoomed. It must be\n // placed in the outermost document for currentScale to be correct.\n // TODO(rginda): This means that hterm nested in an iframe will not correctly\n // detect browser zoom level. We should come up with a better solution.\n // Note: This must be http:// else Chrome cannot create the element correctly.\n var xmlns = 'http://www.w3.org/2000/svg';\n this.svg_ = this.div_.ownerDocument.createElementNS(xmlns, 'svg');\n this.svg_.id = 'hterm:zoom-detector';\n this.svg_.setAttribute('xmlns', xmlns);\n this.svg_.setAttribute('version', '1.1');\n this.svg_.style.cssText = (\n 'position: absolute;' +\n 'top: 0;' +\n 'left: 0;' +\n 'visibility: hidden');\n\n\n // We send focus to this element just before a paste happens, so we can\n // capture the pasted text and forward it on to someone who cares.\n this.pasteTarget_ = doc.createElement('textarea');\n this.pasteTarget_.id = 'hterm:ctrl-v-paste-target';\n this.pasteTarget_.setAttribute('tabindex', '-1');\n this.pasteTarget_.style.cssText = (\n 'position: absolute;' +\n 'height: 1px;' +\n 'width: 1px;' +\n 'left: 0px; ' +\n 'bottom: 0px;' +\n 'opacity: 0');\n this.pasteTarget_.contentEditable = true;\n\n this.screen_.appendChild(this.pasteTarget_);\n this.pasteTarget_.addEventListener(\n 'textInput', this.handlePasteTargetTextInput_.bind(this));\n\n this.resize();\n};\n\n/**\n * Select the font-family and font-smoothing for this scrollport.\n *\n * @param {string} fontFamily Value of the CSS 'font-family' to use for this\n * scrollport. Should be a monospace font.\n * @param {string} opt_smoothing Optional value for '-webkit-font-smoothing'.\n * Defaults to an empty string if not specified.\n */\nhterm.ScrollPort.prototype.setFontFamily = function(fontFamily, opt_smoothing) {\n this.screen_.style.fontFamily = fontFamily;\n if (opt_smoothing) {\n this.screen_.style.webkitFontSmoothing = opt_smoothing;\n } else {\n this.screen_.style.webkitFontSmoothing = '';\n }\n\n this.syncCharacterSize();\n};\n\nhterm.ScrollPort.prototype.getFontFamily = function() {\n return this.screen_.style.fontFamily;\n};\n\n/**\n * Set a custom stylesheet to include in the scrollport.\n *\n * Defaults to null, meaning no custom css is loaded. Set it back to null or\n * the empty string to remove a previously applied custom css.\n */\nhterm.ScrollPort.prototype.setUserCssUrl = function(url) {\n if (url) {\n this.userCssLink_.setAttribute('href', url);\n\n if (!this.userCssLink_.parentNode)\n this.document_.head.appendChild(this.userCssLink_);\n } else if (this.userCssLink_.parentNode) {\n this.document_.head.removeChild(this.userCssLink_);\n }\n};\n\nhterm.ScrollPort.prototype.setUserCssText = function(text) {\n this.userCssText_.textContent = text;\n};\n\nhterm.ScrollPort.prototype.focus = function() {\n this.iframe_.focus();\n this.screen_.focus();\n};\n\nhterm.ScrollPort.prototype.getForegroundColor = function() {\n return this.screen_.style.color;\n};\n\nhterm.ScrollPort.prototype.setForegroundColor = function(color) {\n this.screen_.style.color = color;\n};\n\nhterm.ScrollPort.prototype.getBackgroundColor = function() {\n return this.screen_.style.backgroundColor;\n};\n\nhterm.ScrollPort.prototype.setBackgroundColor = function(color) {\n this.screen_.style.backgroundColor = color;\n};\n\nhterm.ScrollPort.prototype.setBackgroundImage = function(image) {\n this.screen_.style.backgroundImage = image;\n};\n\nhterm.ScrollPort.prototype.setBackgroundSize = function(size) {\n this.screen_.style.backgroundSize = size;\n};\n\nhterm.ScrollPort.prototype.setBackgroundPosition = function(position) {\n this.screen_.style.backgroundPosition = position;\n};\n\nhterm.ScrollPort.prototype.setCtrlVPaste = function(ctrlVPaste) {\n this.ctrlVPaste = ctrlVPaste;\n};\n\n/**\n * Get the usable size of the scrollport screen.\n *\n * The width will not include the scrollbar width.\n */\nhterm.ScrollPort.prototype.getScreenSize = function() {\n var size = hterm.getClientSize(this.screen_);\n return {\n height: size.height,\n width: size.width - this.currentScrollbarWidthPx\n };\n};\n\n/**\n * Get the usable width of the scrollport screen.\n *\n * This the widget width minus scrollbar width.\n */\nhterm.ScrollPort.prototype.getScreenWidth = function() {\n return this.getScreenSize().width ;\n};\n\n/**\n * Get the usable height of the scrollport screen.\n */\nhterm.ScrollPort.prototype.getScreenHeight = function() {\n return this.getScreenSize().height;\n};\n\n/**\n * Return the document that holds the visible rows of this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.getDocument = function() {\n return this.document_;\n};\n\n/**\n * Returns the x-screen element that holds the rows of this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.getScreenNode = function() {\n return this.screen_;\n};\n\n/**\n * Clear out any cached rowNodes.\n */\nhterm.ScrollPort.prototype.resetCache = function() {\n this.currentRowNodeCache_ = null;\n this.previousRowNodeCache_ = {};\n};\n\n/**\n * Change the current rowProvider.\n *\n * This will clear the row cache and cause a redraw.\n *\n * @param {Object} rowProvider An object capable of providing the rows\n * in this hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.setRowProvider = function(rowProvider) {\n this.resetCache();\n this.rowProvider_ = rowProvider;\n this.scheduleRedraw();\n};\n\n/**\n * Inform the ScrollPort that the root DOM nodes for some or all of the visible\n * rows are no longer valid.\n *\n * Specifically, this should be called if this.rowProvider_.getRowNode() now\n * returns an entirely different node than it did before. It does not\n * need to be called if the content of a row node is the only thing that\n * changed.\n *\n * This skips some of the overhead of a full redraw, but should not be used\n * in cases where the scrollport has been scrolled, or when the row count has\n * changed.\n */\nhterm.ScrollPort.prototype.invalidate = function() {\n var node = this.topFold_.nextSibling;\n while (node != this.bottomFold_) {\n var nextSibling = node.nextSibling;\n node.parentElement.removeChild(node);\n node = nextSibling;\n }\n\n this.previousRowNodeCache_ = null;\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n this.drawVisibleRows_(topRowIndex, bottomRowIndex);\n};\n\nhterm.ScrollPort.prototype.scheduleInvalidate = function() {\n if (this.timeouts_.invalidate)\n return;\n\n var self = this;\n this.timeouts_.invalidate = setTimeout(function () {\n delete self.timeouts_.invalidate;\n self.invalidate();\n }, 0);\n};\n\n/**\n * Set the font size of the ScrollPort.\n */\nhterm.ScrollPort.prototype.setFontSize = function(px) {\n this.screen_.style.fontSize = px + 'px';\n this.syncCharacterSize();\n};\n\n/**\n * Return the current font size of the ScrollPort.\n */\nhterm.ScrollPort.prototype.getFontSize = function() {\n return parseInt(this.screen_.style.fontSize);\n};\n\n/**\n * Measure the size of a single character in pixels.\n *\n * @param {string} opt_weight The font weight to measure, or 'normal' if\n * omitted.\n * @return {hterm.Size} A new hterm.Size object.\n */\nhterm.ScrollPort.prototype.measureCharacterSize = function(opt_weight) {\n // Number of lines used to average the height of a single character.\n var numberOfLines = 100;\n // Number of chars per line used to average the width of a single character.\n var lineLength = 100;\n\n if (!this.ruler_) {\n this.ruler_ = this.document_.createElement('div');\n this.ruler_.id = 'hterm:ruler-character-size';\n this.ruler_.style.cssText = (\n 'position: absolute;' +\n 'top: 0;' +\n 'left: 0;' +\n 'visibility: hidden;' +\n 'height: auto !important;' +\n 'width: auto !important;');\n\n // We need to put the text in a span to make the size calculation\n // work properly in Firefox\n this.rulerSpan_ = this.document_.createElement('span');\n this.rulerSpan_.id = 'hterm:ruler-span-workaround';\n this.rulerSpan_.innerHTML =\n ('X'.repeat(lineLength) + '\\r').repeat(numberOfLines);\n this.ruler_.appendChild(this.rulerSpan_);\n\n this.rulerBaseline_ = this.document_.createElement('span');\n this.rulerSpan_.id = 'hterm:ruler-baseline';\n // We want to collapse it on the baseline\n this.rulerBaseline_.style.fontSize = '0px';\n this.rulerBaseline_.textContent = 'X';\n }\n\n this.rulerSpan_.style.fontWeight = opt_weight || '';\n\n this.rowNodes_.appendChild(this.ruler_);\n var rulerSize = hterm.getClientSize(this.rulerSpan_);\n\n var size = new hterm.Size(rulerSize.width / lineLength,\n rulerSize.height / numberOfLines);\n\n this.ruler_.appendChild(this.rulerBaseline_);\n size.baseline = this.rulerBaseline_.offsetTop;\n this.ruler_.removeChild(this.rulerBaseline_);\n\n this.rowNodes_.removeChild(this.ruler_);\n\n this.div_.ownerDocument.body.appendChild(this.svg_);\n size.zoomFactor = this.svg_.currentScale;\n this.div_.ownerDocument.body.removeChild(this.svg_);\n\n return size;\n};\n\n/**\n * Synchronize the character size.\n *\n * This will re-measure the current character size and adjust the height\n * of an x-row to match.\n */\nhterm.ScrollPort.prototype.syncCharacterSize = function() {\n this.characterSize = this.measureCharacterSize();\n\n this.resize();\n};\n\n/**\n * Reset dimensions and visible row count to account for a change in the\n * dimensions of the 'x-screen'.\n */\nhterm.ScrollPort.prototype.resize = function() {\n this.currentScrollbarWidthPx = hterm.getClientWidth(this.screen_) -\n this.screen_.clientWidth;\n\n this.syncScrollHeight();\n this.syncRowNodesDimensions_();\n\n var self = this;\n this.publish(\n 'resize', { scrollPort: this },\n function() {\n self.scrollRowToBottom(self.rowProvider_.getRowCount());\n self.scheduleRedraw();\n });\n};\n\n/**\n * Set the position and size of the row nodes element.\n */\nhterm.ScrollPort.prototype.syncRowNodesDimensions_ = function() {\n var screenSize = this.getScreenSize();\n\n this.lastScreenWidth_ = screenSize.width;\n this.lastScreenHeight_ = screenSize.height;\n\n // We don't want to show a partial row because it would be distracting\n // in a terminal, so we floor any fractional row count.\n this.visibleRowCount = lib.f.smartFloorDivide(\n screenSize.height, this.characterSize.height);\n\n // Then compute the height of our integral number of rows.\n var visibleRowsHeight = this.visibleRowCount * this.characterSize.height;\n\n // Then the difference between the screen height and total row height needs to\n // be made up for as top margin. We need to record this value so it\n // can be used later to determine the topRowIndex.\n this.visibleRowTopMargin = 0;\n this.visibleRowBottomMargin = screenSize.height - visibleRowsHeight;\n\n this.topFold_.style.marginBottom = this.visibleRowTopMargin + 'px';\n\n\n var topFoldOffset = 0;\n var node = this.topFold_.previousSibling;\n while (node) {\n topFoldOffset += hterm.getClientHeight(node);\n node = node.previousSibling;\n }\n\n // Set the dimensions of the visible rows container.\n this.rowNodes_.style.width = screenSize.width + 'px';\n this.rowNodes_.style.height = visibleRowsHeight + topFoldOffset + 'px';\n this.rowNodes_.style.left = this.screen_.offsetLeft + 'px';\n this.rowNodes_.style.top = this.screen_.offsetTop - topFoldOffset + 'px';\n};\n\nhterm.ScrollPort.prototype.syncScrollHeight = function() {\n // Resize the scroll area to appear as though it contains every row.\n this.lastRowCount_ = this.rowProvider_.getRowCount();\n this.scrollArea_.style.height = (this.characterSize.height *\n this.lastRowCount_ +\n this.visibleRowTopMargin +\n this.visibleRowBottomMargin +\n 'px');\n};\n\n/**\n * Schedule a redraw to happen asynchronously.\n *\n * If this method is called multiple times before the redraw has a chance to\n * run only one redraw occurs.\n */\nhterm.ScrollPort.prototype.scheduleRedraw = function() {\n if (this.timeouts_.redraw)\n return;\n\n var self = this;\n this.timeouts_.redraw = setTimeout(function () {\n delete self.timeouts_.redraw;\n self.redraw_();\n }, 0);\n};\n\n/**\n * Redraw the current hterm.ScrollPort based on the current scrollbar position.\n *\n * When redrawing, we are careful to make sure that the rows that start or end\n * the current selection are not touched in any way. Doing so would disturb\n * the selection, and cleaning up after that would cause flashes at best and\n * incorrect selection at worst. Instead, we modify the DOM around these nodes.\n * We even stash the selection start/end outside of the visible area if\n * they are not supposed to be visible in the hterm.ScrollPort.\n */\nhterm.ScrollPort.prototype.redraw_ = function() {\n this.resetSelectBags_();\n this.selection.sync();\n\n this.syncScrollHeight();\n\n this.currentRowNodeCache_ = {};\n\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n this.drawTopFold_(topRowIndex);\n this.drawBottomFold_(bottomRowIndex);\n this.drawVisibleRows_(topRowIndex, bottomRowIndex);\n\n this.syncRowNodesDimensions_();\n\n this.previousRowNodeCache_ = this.currentRowNodeCache_;\n this.currentRowNodeCache_ = null;\n\n this.isScrolledEnd = (\n this.getTopRowIndex() + this.visibleRowCount >= this.lastRowCount_);\n};\n\n/**\n * Ensure that the nodes above the top fold are as they should be.\n *\n * If the selection start and/or end nodes are above the visible range\n * of this hterm.ScrollPort then the dom will be adjusted so that they appear\n * before the top fold (the first x-fold element, aka this.topFold).\n *\n * If not, the top fold will be the first element.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawTopFold_ = function(topRowIndex) {\n if (!this.selection.startRow ||\n this.selection.startRow.rowIndex >= topRowIndex) {\n // Selection is entirely below the top fold, just make sure the fold is\n // the first child.\n if (this.rowNodes_.firstChild != this.topFold_)\n this.rowNodes_.insertBefore(this.topFold_, this.rowNodes_.firstChild);\n\n return;\n }\n\n if (!this.selection.isMultiline ||\n this.selection.endRow.rowIndex >= topRowIndex) {\n // Only the startRow is above the fold.\n if (this.selection.startRow.nextSibling != this.topFold_)\n this.rowNodes_.insertBefore(this.topFold_,\n this.selection.startRow.nextSibling);\n } else {\n // Both rows are above the fold.\n if (this.selection.endRow.nextSibling != this.topFold_) {\n this.rowNodes_.insertBefore(this.topFold_,\n this.selection.endRow.nextSibling);\n }\n\n // Trim any intermediate lines.\n while (this.selection.startRow.nextSibling !=\n this.selection.endRow) {\n this.rowNodes_.removeChild(this.selection.startRow.nextSibling);\n }\n }\n\n while(this.rowNodes_.firstChild != this.selection.startRow) {\n this.rowNodes_.removeChild(this.rowNodes_.firstChild);\n }\n};\n\n/**\n * Ensure that the nodes below the bottom fold are as they should be.\n *\n * If the selection start and/or end nodes are below the visible range\n * of this hterm.ScrollPort then the dom will be adjusted so that they appear\n * after the bottom fold (the second x-fold element, aka this.bottomFold).\n *\n * If not, the bottom fold will be the last element.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawBottomFold_ = function(bottomRowIndex) {\n if (!this.selection.endRow ||\n this.selection.endRow.rowIndex <= bottomRowIndex) {\n // Selection is entirely above the bottom fold, just make sure the fold is\n // the last child.\n if (this.rowNodes_.lastChild != this.bottomFold_)\n this.rowNodes_.appendChild(this.bottomFold_);\n\n return;\n }\n\n if (!this.selection.isMultiline ||\n this.selection.startRow.rowIndex <= bottomRowIndex) {\n // Only the endRow is below the fold.\n if (this.bottomFold_.nextSibling != this.selection.endRow)\n this.rowNodes_.insertBefore(this.bottomFold_,\n this.selection.endRow);\n } else {\n // Both rows are below the fold.\n if (this.bottomFold_.nextSibling != this.selection.startRow) {\n this.rowNodes_.insertBefore(this.bottomFold_,\n this.selection.startRow);\n }\n\n // Trim any intermediate lines.\n while (this.selection.startRow.nextSibling !=\n this.selection.endRow) {\n this.rowNodes_.removeChild(this.selection.startRow.nextSibling);\n }\n }\n\n while(this.rowNodes_.lastChild != this.selection.endRow) {\n this.rowNodes_.removeChild(this.rowNodes_.lastChild);\n }\n};\n\n/**\n * Ensure that the rows between the top and bottom folds are as they should be.\n *\n * This method assumes that drawTopFold_() and drawBottomFold_() have already\n * run, and that they have left any visible selection row (selection start\n * or selection end) between the folds.\n *\n * It recycles DOM nodes from the previous redraw where possible, but will ask\n * the rowSource to make new nodes if necessary.\n *\n * It is critical that this method does not move the selection nodes. Doing\n * so would clear the current selection. Instead, the rest of the DOM is\n * adjusted around them.\n */\nhterm.ScrollPort.prototype.drawVisibleRows_ = function(\n topRowIndex, bottomRowIndex) {\n var self = this;\n\n // Keep removing nodes, starting with currentNode, until we encounter\n // targetNode. Throws on failure.\n function removeUntilNode(currentNode, targetNode) {\n while (currentNode != targetNode) {\n if (!currentNode)\n throw 'Did not encounter target node';\n\n if (currentNode == self.bottomFold_)\n throw 'Encountered bottom fold before target node';\n\n var deadNode = currentNode;\n currentNode = currentNode.nextSibling;\n deadNode.parentNode.removeChild(deadNode);\n }\n }\n\n // Shorthand for things we're going to use a lot.\n var selectionStartRow = this.selection.startRow;\n var selectionEndRow = this.selection.endRow;\n var bottomFold = this.bottomFold_;\n\n // The node we're examining during the current iteration.\n var node = this.topFold_.nextSibling;\n\n var targetDrawCount = Math.min(this.visibleRowCount,\n this.rowProvider_.getRowCount());\n\n for (var drawCount = 0; drawCount < targetDrawCount; drawCount++) {\n var rowIndex = topRowIndex + drawCount;\n\n if (node == bottomFold) {\n // We've hit the bottom fold, we need to insert a new row.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n continue;\n }\n\n if (node.rowIndex == rowIndex) {\n // This node is in the right place, move along.\n node = node.nextSibling;\n continue;\n }\n\n if (selectionStartRow && selectionStartRow.rowIndex == rowIndex) {\n // The selection start row is supposed to be here, remove nodes until\n // we find it.\n removeUntilNode(node, selectionStartRow);\n node = selectionStartRow.nextSibling;\n continue;\n }\n\n if (selectionEndRow && selectionEndRow.rowIndex == rowIndex) {\n // The selection end row is supposed to be here, remove nodes until\n // we find it.\n removeUntilNode(node, selectionEndRow);\n node = selectionEndRow.nextSibling;\n continue;\n }\n\n if (node == selectionStartRow || node == selectionEndRow) {\n // We encountered the start/end of the selection, but we don't want it\n // yet. Insert a new row instead.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n continue;\n }\n\n // There is nothing special about this node, but it's in our way. Replace\n // it with the node that should be here.\n var newNode = this.fetchRowNode_(rowIndex);\n if (!newNode) {\n console.log(\"Couldn't fetch row index: \" + rowIndex);\n break;\n }\n\n if (node == newNode) {\n node = node.nextSibling;\n continue;\n }\n\n this.rowNodes_.insertBefore(newNode, node);\n if (!newNode.nextSibling)\n debugger;\n this.rowNodes_.removeChild(node);\n node = newNode.nextSibling;\n }\n\n if (node != this.bottomFold_)\n removeUntilNode(node, bottomFold);\n};\n\n/**\n * Empty out both select bags and remove them from the document.\n *\n * These nodes hold the text between the start and end of the selection\n * when that text is otherwise off screen. They are filled out in the\n * onCopy_ event.\n */\nhterm.ScrollPort.prototype.resetSelectBags_ = function() {\n if (this.topSelectBag_.parentNode) {\n this.topSelectBag_.textContent = '';\n this.topSelectBag_.parentNode.removeChild(this.topSelectBag_);\n }\n\n if (this.bottomSelectBag_.parentNode) {\n this.bottomSelectBag_.textContent = '';\n this.bottomSelectBag_.parentNode.removeChild(this.bottomSelectBag_);\n }\n};\n\n/**\n * Place a row node in the cache of visible nodes.\n *\n * This method may only be used during a redraw_.\n */\nhterm.ScrollPort.prototype.cacheRowNode_ = function(rowNode) {\n this.currentRowNodeCache_[rowNode.rowIndex] = rowNode;\n};\n\n/**\n * Fetch the row node for the given index.\n *\n * This will return a node from the cache if possible, or will request one\n * from the RowProvider if not.\n *\n * If a redraw_ is in progress the row will be added to the current cache.\n */\nhterm.ScrollPort.prototype.fetchRowNode_ = function(rowIndex) {\n var node;\n\n if (this.previousRowNodeCache_ && rowIndex in this.previousRowNodeCache_) {\n node = this.previousRowNodeCache_[rowIndex];\n } else {\n node = this.rowProvider_.getRowNode(rowIndex);\n }\n\n if (this.currentRowNodeCache_)\n this.cacheRowNode_(node);\n\n return node;\n};\n\n/**\n * Select all rows in the viewport.\n */\nhterm.ScrollPort.prototype.selectAll = function() {\n var firstRow;\n\n if (this.topFold_.nextSibling.rowIndex != 0) {\n while (this.topFold_.previousSibling) {\n this.rowNodes_.removeChild(this.topFold_.previousSibling);\n }\n\n firstRow = this.fetchRowNode_(0);\n this.rowNodes_.insertBefore(firstRow, this.topFold_);\n this.syncRowNodesDimensions_();\n } else {\n firstRow = this.topFold_.nextSibling;\n }\n\n var lastRowIndex = this.rowProvider_.getRowCount() - 1;\n var lastRow;\n\n if (this.bottomFold_.previousSibling.rowIndex != lastRowIndex) {\n while (this.bottomFold_.nextSibling) {\n this.rowNodes_.removeChild(this.bottomFold_.nextSibling);\n }\n\n lastRow = this.fetchRowNode_(lastRowIndex);\n this.rowNodes_.appendChild(lastRow);\n } else {\n lastRow = this.bottomFold_.previousSibling.rowIndex;\n }\n\n var selection = this.document_.getSelection();\n selection.collapse(firstRow, 0);\n selection.extend(lastRow, lastRow.childNodes.length);\n\n this.selection.sync();\n};\n\n/**\n * Return the maximum scroll position in pixels.\n */\nhterm.ScrollPort.prototype.getScrollMax_ = function(e) {\n return (hterm.getClientHeight(this.scrollArea_) +\n this.visibleRowTopMargin + this.visibleRowBottomMargin -\n hterm.getClientHeight(this.screen_));\n};\n\n/**\n * Scroll the given rowIndex to the top of the hterm.ScrollPort.\n *\n * @param {integer} rowIndex Index of the target row.\n */\nhterm.ScrollPort.prototype.scrollRowToTop = function(rowIndex) {\n this.syncScrollHeight();\n\n this.isScrolledEnd = (\n rowIndex + this.visibleRowCount >= this.lastRowCount_);\n\n var scrollTop = rowIndex * this.characterSize.height +\n this.visibleRowTopMargin;\n\n var scrollMax = this.getScrollMax_();\n if (scrollTop > scrollMax)\n scrollTop = scrollMax;\n\n if (this.screen_.scrollTop == scrollTop)\n return;\n\n this.screen_.scrollTop = scrollTop;\n this.scheduleRedraw();\n};\n\n/**\n * Scroll the given rowIndex to the bottom of the hterm.ScrollPort.\n *\n * @param {integer} rowIndex Index of the target row.\n */\nhterm.ScrollPort.prototype.scrollRowToBottom = function(rowIndex) {\n this.syncScrollHeight();\n\n this.isScrolledEnd = (\n rowIndex + this.visibleRowCount >= this.lastRowCount_);\n\n var scrollTop = rowIndex * this.characterSize.height +\n this.visibleRowTopMargin + this.visibleRowBottomMargin;\n scrollTop -= this.visibleRowCount * this.characterSize.height;\n\n if (scrollTop < 0)\n scrollTop = 0;\n\n if (this.screen_.scrollTop == scrollTop)\n return;\n\n this.screen_.scrollTop = scrollTop;\n};\n\n/**\n * Return the row index of the first visible row.\n *\n * This is based on the scroll position. If a redraw_ is in progress this\n * returns the row that *should* be at the top.\n */\nhterm.ScrollPort.prototype.getTopRowIndex = function() {\n return Math.round(this.screen_.scrollTop / this.characterSize.height);\n};\n\n/**\n * Return the row index of the last visible row.\n *\n * This is based on the scroll position. If a redraw_ is in progress this\n * returns the row that *should* be at the bottom.\n */\nhterm.ScrollPort.prototype.getBottomRowIndex = function(topRowIndex) {\n return topRowIndex + this.visibleRowCount - 1;\n};\n\n/**\n * Handler for scroll events.\n *\n * The onScroll event fires when scrollArea's scrollTop property changes. This\n * may be due to the user manually move the scrollbar, or a programmatic change.\n */\nhterm.ScrollPort.prototype.onScroll_ = function(e) {\n var screenSize = this.getScreenSize();\n if (screenSize.width != this.lastScreenWidth_ ||\n screenSize.height != this.lastScreenHeight_) {\n // This event may also fire during a resize (but before the resize event!).\n // This happens when the browser moves the scrollbar as part of the resize.\n // In these cases, we want to ignore the scroll event and let onResize\n // handle things. If we don't, then we end up scrolling to the wrong\n // position after a resize.\n this.resize();\n return;\n }\n\n this.redraw_();\n this.publish('scroll', { scrollPort: this });\n};\n\n/**\n * Clients can override this if they want to hear scrollwheel events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onScrollWheel = function(e) {};\n\n/**\n * Handler for scroll-wheel events.\n *\n * The onScrollWheel event fires when the user moves their scrollwheel over this\n * hterm.ScrollPort. Because the frontmost element in the hterm.ScrollPort is\n * a fixed position DIV, the scroll wheel does nothing by default. Instead, we\n * have to handle it manually.\n */\nhterm.ScrollPort.prototype.onScrollWheel_ = function(e) {\n this.onScrollWheel(e);\n\n if (e.defaultPrevented)\n return;\n\n // Figure out how far this event wants us to scroll.\n var delta = this.scrollWheelDelta(e);\n\n var top = this.screen_.scrollTop - delta;\n if (top < 0)\n top = 0;\n\n var scrollMax = this.getScrollMax_();\n if (top > scrollMax)\n top = scrollMax;\n\n if (top != this.screen_.scrollTop) {\n // Moving scrollTop causes a scroll event, which triggers the redraw.\n this.screen_.scrollTop = top;\n\n // Only preventDefault when we've actually scrolled. If there's nothing\n // to scroll we want to pass the event through so Chrome can detect the\n // overscroll.\n e.preventDefault();\n }\n};\n\n/**\n * Calculate how far a wheel event should scroll.\n *\n * @param {WheelEvent} e The mouse wheel event to process.\n * @return {number} How far (in pixels) to scroll.\n */\nhterm.ScrollPort.prototype.scrollWheelDelta = function(e) {\n var delta;\n\n switch (e.deltaMode) {\n case WheelEvent.DOM_DELTA_PIXEL:\n delta = e.deltaY * this.scrollWheelMultiplier_;\n break;\n case WheelEvent.DOM_DELTA_LINE:\n delta = e.deltaY * this.characterSize.height;\n break;\n case WheelEvent.DOM_DELTA_PAGE:\n delta = e.deltaY * this.characterSize.height * this.screen_.getHeight();\n break;\n }\n\n // The sign is inverted from what we would expect.\n return delta * -1;\n};\n\n\n/**\n * Clients can override this if they want to hear touch events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onTouch = function(e) {};\n\n/**\n * Handler for touch events.\n */\nhterm.ScrollPort.prototype.onTouch_ = function(e) {\n this.onTouch(e);\n\n if (e.defaultPrevented)\n return;\n\n // Extract the fields from the Touch event that we need. If we saved the\n // event directly, it has references to other objects (like x-row) that\n // might stick around for a long time. This way we only have small objects\n // in our lastTouch_ state.\n var scrubTouch = function(t) {\n return {\n id: t.identifier,\n y: t.clientY,\n x: t.clientX,\n };\n };\n\n var i, touch;\n switch (e.type) {\n case 'touchstart':\n // Save the current set of touches.\n for (i = 0; i < e.changedTouches.length; ++i) {\n touch = scrubTouch(e.changedTouches[i]);\n this.lastTouch_[touch.id] = touch;\n }\n break;\n\n case 'touchcancel':\n case 'touchend':\n // Throw away existing touches that we're finished with.\n for (i = 0; i < e.changedTouches.length; ++i)\n delete this.lastTouch_[e.changedTouches[i].identifier];\n break;\n\n case 'touchmove':\n // Walk all of the touches in this one event and merge all of their\n // changes into one delta. This lets multiple fingers scroll faster.\n var delta = 0;\n for (i = 0; i < e.changedTouches.length; ++i) {\n touch = scrubTouch(e.changedTouches[i]);\n delta += (this.lastTouch_[touch.id].y - touch.y);\n this.lastTouch_[touch.id] = touch;\n }\n\n // Invert to match the touchscreen scrolling direction of browser windows.\n delta *= -1;\n\n var top = this.screen_.scrollTop - delta;\n if (top < 0)\n top = 0;\n\n var scrollMax = this.getScrollMax_();\n if (top > scrollMax)\n top = scrollMax;\n\n if (top != this.screen_.scrollTop) {\n // Moving scrollTop causes a scroll event, which triggers the redraw.\n this.screen_.scrollTop = top;\n }\n break;\n }\n\n // To disable gestures or anything else interfering with our scrolling.\n e.preventDefault();\n};\n\n/**\n * Handler for resize events.\n *\n * The browser will resize us such that the top row stays at the top, but we\n * prefer to the bottom row to stay at the bottom.\n */\nhterm.ScrollPort.prototype.onResize_ = function(e) {\n // Re-measure, since onResize also happens for browser zoom changes.\n this.syncCharacterSize();\n this.resize();\n};\n\n/**\n * Clients can override this if they want to hear copy events.\n *\n * Clients may call event.preventDefault() if they want to keep the scrollport\n * from also handling the events.\n */\nhterm.ScrollPort.prototype.onCopy = function(e) { };\n\n/**\n * Handler for copy-to-clipboard events.\n *\n * If some or all of the selected rows are off screen we may need to fill in\n * the rows between selection start and selection end. This handler determines\n * if we're missing some of the selected text, and if so populates one or both\n * of the \"select bags\" with the missing text.\n */\nhterm.ScrollPort.prototype.onCopy_ = function(e) {\n this.onCopy(e);\n\n if (e.defaultPrevented)\n return;\n\n this.resetSelectBags_();\n this.selection.sync();\n\n if (!this.selection.startRow ||\n this.selection.endRow.rowIndex - this.selection.startRow.rowIndex < 2) {\n return;\n }\n\n var topRowIndex = this.getTopRowIndex();\n var bottomRowIndex = this.getBottomRowIndex(topRowIndex);\n\n if (this.selection.startRow.rowIndex < topRowIndex) {\n // Start of selection is above the top fold.\n var endBackfillIndex;\n\n if (this.selection.endRow.rowIndex < topRowIndex) {\n // Entire selection is above the top fold.\n endBackfillIndex = this.selection.endRow.rowIndex;\n } else {\n // Selection extends below the top fold.\n endBackfillIndex = this.topFold_.nextSibling.rowIndex;\n }\n\n this.topSelectBag_.textContent = this.rowProvider_.getRowsText(\n this.selection.startRow.rowIndex + 1, endBackfillIndex);\n this.rowNodes_.insertBefore(this.topSelectBag_,\n this.selection.startRow.nextSibling);\n this.syncRowNodesDimensions_();\n }\n\n if (this.selection.endRow.rowIndex > bottomRowIndex) {\n // Selection ends below the bottom fold.\n var startBackfillIndex;\n\n if (this.selection.startRow.rowIndex > bottomRowIndex) {\n // Entire selection is below the bottom fold.\n startBackfillIndex = this.selection.startRow.rowIndex + 1;\n } else {\n // Selection starts above the bottom fold.\n startBackfillIndex = this.bottomFold_.previousSibling.rowIndex + 1;\n }\n\n this.bottomSelectBag_.textContent = this.rowProvider_.getRowsText(\n startBackfillIndex, this.selection.endRow.rowIndex);\n this.rowNodes_.insertBefore(this.bottomSelectBag_, this.selection.endRow);\n }\n};\n\n/**\n * Focuses on the paste target on a ctrl-v keydown event, as in\n * FF a content editable element must be focused before the paste event.\n */\nhterm.ScrollPort.prototype.onBodyKeyDown_ = function(e) {\n if (!this.ctrlVPaste)\n return;\n\n var key = String.fromCharCode(e.which);\n var lowerKey = key.toLowerCase();\n if ((e.ctrlKey || e.metaKey) && lowerKey == \"v\")\n this.pasteTarget_.focus();\n};\n\n/**\n * Handle a paste event on the the ScrollPort's screen element.\n */\nhterm.ScrollPort.prototype.onPaste_ = function(e) {\n this.pasteTarget_.focus();\n\n var self = this;\n setTimeout(function() {\n self.publish('paste', { text: self.pasteTarget_.value });\n self.pasteTarget_.value = '';\n self.screen_.focus();\n }, 0);\n};\n\n/**\n * Handles a textInput event on the paste target. Stops this from\n * propagating as we want this to be handled in the onPaste_ method.\n */\nhterm.ScrollPort.prototype.handlePasteTargetTextInput_ = function(e) {\n e.stopPropagation();\n};\n\n/**\n * Set the vertical scrollbar mode of the ScrollPort.\n */\nhterm.ScrollPort.prototype.setScrollbarVisible = function(state) {\n this.screen_.style.overflowY = state ? 'scroll' : 'hidden';\n};\n\n/**\n * Set scroll wheel multiplier. This alters how much the screen scrolls on\n * mouse wheel events.\n */\nhterm.ScrollPort.prototype.setScrollWheelMoveMultipler = function(multiplier) {\n this.scrollWheelMultiplier_ = multiplier;\n};\n// SOURCE FILE: hterm/js/hterm_terminal.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors', 'lib.PreferenceManager', 'lib.resource', 'lib.wc',\n 'lib.f', 'hterm.Keyboard', 'hterm.Options', 'hterm.PreferenceManager',\n 'hterm.Screen', 'hterm.ScrollPort', 'hterm.Size',\n 'hterm.TextAttributes', 'hterm.VT');\n\n/**\n * Constructor for the Terminal class.\n *\n * A Terminal pulls together the hterm.ScrollPort, hterm.Screen and hterm.VT100\n * classes to provide the complete terminal functionality.\n *\n * There are a number of lower-level Terminal methods that can be called\n * directly to manipulate the cursor, text, scroll region, and other terminal\n * attributes. However, the primary method is interpret(), which parses VT\n * escape sequences and invokes the appropriate Terminal methods.\n *\n * This class was heavily influenced by Cory Maccarrone's Framebuffer class.\n *\n * TODO(rginda): Eventually we're going to need to support characters which are\n * displayed twice as wide as standard latin characters. This is to support\n * CJK (and possibly other character sets).\n *\n * @param {string} opt_profileId Optional preference profile name. If not\n * provided, defaults to 'default'.\n */\nhterm.Terminal = function(opt_profileId) {\n this.profileId_ = null;\n\n // Two screen instances.\n this.primaryScreen_ = new hterm.Screen();\n this.alternateScreen_ = new hterm.Screen();\n\n // The \"current\" screen.\n this.screen_ = this.primaryScreen_;\n\n // The local notion of the screen size. ScreenBuffers also have a size which\n // indicates their present size. During size changes, the two may disagree.\n // Also, the inactive screen's size is not altered until it is made the active\n // screen.\n this.screenSize = new hterm.Size(0, 0);\n\n // The scroll port we'll be using to display the visible rows.\n this.scrollPort_ = new hterm.ScrollPort(this);\n this.scrollPort_.subscribe('resize', this.onResize_.bind(this));\n this.scrollPort_.subscribe('scroll', this.onScroll_.bind(this));\n this.scrollPort_.subscribe('paste', this.onPaste_.bind(this));\n this.scrollPort_.onCopy = this.onCopy_.bind(this);\n\n // The div that contains this terminal.\n this.div_ = null;\n\n // The document that contains the scrollPort. Defaulted to the global\n // document here so that the terminal is functional even if it hasn't been\n // inserted into a document yet, but re-set in decorate().\n this.document_ = window.document;\n\n // The rows that have scrolled off screen and are no longer addressable.\n this.scrollbackRows_ = [];\n\n // Saved tab stops.\n this.tabStops_ = [];\n\n // Keep track of whether default tab stops have been erased; after a TBC\n // clears all tab stops, defaults aren't restored on resize until a reset.\n this.defaultTabStops = true;\n\n // The VT's notion of the top and bottom rows. Used during some VT\n // cursor positioning and scrolling commands.\n this.vtScrollTop_ = null;\n this.vtScrollBottom_ = null;\n\n // The DIV element for the visible cursor.\n this.cursorNode_ = null;\n\n // The current cursor shape of the terminal.\n this.cursorShape_ = hterm.Terminal.cursorShape.BLOCK;\n\n // The current color of the cursor.\n this.cursorColor_ = null;\n\n // Cursor blink on/off cycle in ms, overwritten by prefs once they're loaded.\n this.cursorBlinkCycle_ = [100, 100];\n\n // Pre-bound onCursorBlink_ handler, so we don't have to do this for each\n // cursor on/off servicing.\n this.myOnCursorBlink_ = this.onCursorBlink_.bind(this);\n\n // These prefs are cached so we don't have to read from local storage with\n // each output and keystroke. They are initialized by the preference manager.\n this.backgroundColor_ = null;\n this.foregroundColor_ = null;\n this.scrollOnOutput_ = null;\n this.scrollOnKeystroke_ = null;\n this.scrollWheelArrowKeys_ = null;\n\n // True if we should override mouse event reporting to allow local selection.\n this.defeatMouseReports_ = false;\n\n // Terminal bell sound.\n this.bellAudio_ = this.document_.createElement('audio');\n this.bellAudio_.id = 'hterm:bell-audio';\n this.bellAudio_.setAttribute('preload', 'auto');\n\n // All terminal bell notifications that have been generated (not necessarily\n // shown).\n this.bellNotificationList_ = [];\n\n // Whether we have permission to display notifications.\n this.desktopNotificationBell_ = false;\n\n // Cursor position and attributes saved with DECSC.\n this.savedOptions_ = {};\n\n // The current mode bits for the terminal.\n this.options_ = new hterm.Options();\n\n // Timeouts we might need to clear.\n this.timeouts_ = {};\n\n // The VT escape sequence interpreter.\n this.vt = new hterm.VT(this);\n\n // The keyboard handler.\n this.keyboard = new hterm.Keyboard(this);\n\n // General IO interface that can be given to third parties without exposing\n // the entire terminal object.\n this.io = new hterm.Terminal.IO(this);\n\n // True if mouse-click-drag should scroll the terminal.\n this.enableMouseDragScroll = true;\n\n this.copyOnSelect = null;\n this.mouseRightClickPaste = null;\n this.mousePasteButton = null;\n\n // Whether to use the default window copy behavior.\n this.useDefaultWindowCopy = false;\n\n this.clearSelectionAfterCopy = true;\n\n this.realizeSize_(80, 24);\n this.setDefaultTabStops();\n\n this.setProfile(opt_profileId || 'default',\n function() { this.onTerminalReady(); }.bind(this));\n};\n\n/**\n * Possible cursor shapes.\n */\nhterm.Terminal.cursorShape = {\n BLOCK: 'BLOCK',\n BEAM: 'BEAM',\n UNDERLINE: 'UNDERLINE'\n};\n\n/**\n * Clients should override this to be notified when the terminal is ready\n * for use.\n *\n * The terminal initialization is asynchronous, and shouldn't be used before\n * this method is called.\n */\nhterm.Terminal.prototype.onTerminalReady = function() { };\n\n/**\n * Default tab with of 8 to match xterm.\n */\nhterm.Terminal.prototype.tabWidth = 8;\n\n/**\n * Select a preference profile.\n *\n * This will load the terminal preferences for the given profile name and\n * associate subsequent preference changes with the new preference profile.\n *\n * @param {string} profileId The name of the preference profile. Forward slash\n * characters will be removed from the name.\n * @param {function} opt_callback Optional callback to invoke when the profile\n * transition is complete.\n */\nhterm.Terminal.prototype.setProfile = function(profileId, opt_callback) {\n this.profileId_ = profileId.replace(/\\//g, '');\n\n var terminal = this;\n\n if (this.prefs_)\n this.prefs_.deactivate();\n\n this.prefs_ = new hterm.PreferenceManager(this.profileId_);\n this.prefs_.addObservers(null, {\n 'alt-gr-mode': function(v) {\n if (v == null) {\n if (navigator.language.toLowerCase() == 'en-us') {\n v = 'none';\n } else {\n v = 'right-alt';\n }\n } else if (typeof v == 'string') {\n v = v.toLowerCase();\n } else {\n v = 'none';\n }\n\n if (!/^(none|ctrl-alt|left-alt|right-alt)$/.test(v))\n v = 'none';\n\n terminal.keyboard.altGrMode = v;\n },\n\n 'alt-backspace-is-meta-backspace': function(v) {\n terminal.keyboard.altBackspaceIsMetaBackspace = v;\n },\n\n 'alt-is-meta': function(v) {\n terminal.keyboard.altIsMeta = v;\n },\n\n 'alt-sends-what': function(v) {\n if (!/^(escape|8-bit|browser-key)$/.test(v))\n v = 'escape';\n\n terminal.keyboard.altSendsWhat = v;\n },\n\n 'audible-bell-sound': function(v) {\n var ary = v.match(/^lib-resource:(\\S+)/);\n if (ary) {\n terminal.bellAudio_.setAttribute('src',\n lib.resource.getDataUrl(ary[1]));\n } else {\n terminal.bellAudio_.setAttribute('src', v);\n }\n },\n\n 'desktop-notification-bell': function(v) {\n if (v && Notification) {\n terminal.desktopNotificationBell_ =\n Notification.permission === 'granted';\n if (!terminal.desktopNotificationBell_) {\n // Note: We don't call Notification.requestPermission here because\n // Chrome requires the call be the result of a user action (such as an\n // onclick handler), and pref listeners are run asynchronously.\n //\n // A way of working around this would be to display a dialog in the\n // terminal with a \"click-to-request-permission\" button.\n console.warn('desktop-notification-bell is true but we do not have ' +\n 'permission to display notifications.');\n }\n } else {\n terminal.desktopNotificationBell_ = false;\n }\n },\n\n 'background-color': function(v) {\n terminal.setBackgroundColor(v);\n },\n\n 'background-image': function(v) {\n terminal.scrollPort_.setBackgroundImage(v);\n },\n\n 'background-size': function(v) {\n terminal.scrollPort_.setBackgroundSize(v);\n },\n\n 'background-position': function(v) {\n terminal.scrollPort_.setBackgroundPosition(v);\n },\n\n 'backspace-sends-backspace': function(v) {\n terminal.keyboard.backspaceSendsBackspace = v;\n },\n\n 'character-map-overrides': function(v) {\n if (!(v == null || v instanceof Object)) {\n console.warn('Preference character-map-modifications is not an ' +\n 'object: ' + v);\n return;\n }\n\n terminal.vt.characterMaps.reset();\n terminal.vt.characterMaps.setOverrides(v);\n },\n\n 'cursor-blink': function(v) {\n terminal.setCursorBlink(!!v);\n },\n\n 'cursor-blink-cycle': function(v) {\n if (v instanceof Array &&\n typeof v[0] == 'number' &&\n typeof v[1] == 'number') {\n terminal.cursorBlinkCycle_ = v;\n } else if (typeof v == 'number') {\n terminal.cursorBlinkCycle_ = [v, v];\n } else {\n // Fast blink indicates an error.\n terminal.cursorBlinkCycle_ = [100, 100];\n }\n },\n\n 'cursor-color': function(v) {\n terminal.setCursorColor(v);\n },\n\n 'color-palette-overrides': function(v) {\n if (!(v == null || v instanceof Object || v instanceof Array)) {\n console.warn('Preference color-palette-overrides is not an array or ' +\n 'object: ' + v);\n return;\n }\n\n lib.colors.colorPalette = lib.colors.stockColorPalette.concat();\n\n if (v) {\n for (var key in v) {\n var i = parseInt(key);\n if (isNaN(i) || i < 0 || i > 255) {\n console.log('Invalid value in palette: ' + key + ': ' + v[key]);\n continue;\n }\n\n if (v[i]) {\n var rgb = lib.colors.normalizeCSS(v[i]);\n if (rgb)\n lib.colors.colorPalette[i] = rgb;\n }\n }\n }\n\n terminal.primaryScreen_.textAttributes.resetColorPalette();\n terminal.alternateScreen_.textAttributes.resetColorPalette();\n },\n\n 'copy-on-select': function(v) {\n terminal.copyOnSelect = !!v;\n },\n\n 'use-default-window-copy': function(v) {\n terminal.useDefaultWindowCopy = !!v;\n },\n\n 'clear-selection-after-copy': function(v) {\n terminal.clearSelectionAfterCopy = !!v;\n },\n\n 'ctrl-plus-minus-zero-zoom': function(v) {\n terminal.keyboard.ctrlPlusMinusZeroZoom = v;\n },\n\n 'ctrl-c-copy': function(v) {\n terminal.keyboard.ctrlCCopy = v;\n },\n\n 'ctrl-v-paste': function(v) {\n terminal.keyboard.ctrlVPaste = v;\n terminal.scrollPort_.setCtrlVPaste(v);\n },\n\n 'east-asian-ambiguous-as-two-column': function(v) {\n lib.wc.regardCjkAmbiguous = v;\n },\n\n 'enable-8-bit-control': function(v) {\n terminal.vt.enable8BitControl = !!v;\n },\n\n 'enable-bold': function(v) {\n terminal.syncBoldSafeState();\n },\n\n 'enable-bold-as-bright': function(v) {\n terminal.primaryScreen_.textAttributes.enableBoldAsBright = !!v;\n terminal.alternateScreen_.textAttributes.enableBoldAsBright = !!v;\n },\n\n 'enable-blink': function(v) {\n terminal.syncBlinkState();\n },\n\n 'enable-clipboard-write': function(v) {\n terminal.vt.enableClipboardWrite = !!v;\n },\n\n 'enable-dec12': function(v) {\n terminal.vt.enableDec12 = !!v;\n },\n\n 'font-family': function(v) {\n terminal.syncFontFamily();\n },\n\n 'font-size': function(v) {\n terminal.setFontSize(v);\n },\n\n 'font-smoothing': function(v) {\n terminal.syncFontFamily();\n },\n\n 'foreground-color': function(v) {\n terminal.setForegroundColor(v);\n },\n\n 'home-keys-scroll': function(v) {\n terminal.keyboard.homeKeysScroll = v;\n },\n\n 'keybindings': function(v) {\n terminal.keyboard.bindings.clear();\n\n if (!v)\n return;\n\n if (!(v instanceof Object)) {\n console.error('Error in keybindings preference: Expected object');\n return;\n }\n\n try {\n terminal.keyboard.bindings.addBindings(v);\n } catch (ex) {\n console.error('Error in keybindings preference: ' + ex);\n }\n },\n\n 'max-string-sequence': function(v) {\n terminal.vt.maxStringSequence = v;\n },\n\n 'media-keys-are-fkeys': function(v) {\n terminal.keyboard.mediaKeysAreFKeys = v;\n },\n\n 'meta-sends-escape': function(v) {\n terminal.keyboard.metaSendsEscape = v;\n },\n\n 'mouse-right-click-paste': function(v) {\n terminal.mouseRightClickPaste = v;\n },\n\n 'mouse-paste-button': function(v) {\n terminal.syncMousePasteButton();\n },\n\n 'page-keys-scroll': function(v) {\n terminal.keyboard.pageKeysScroll = v;\n },\n\n 'pass-alt-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Alt-1..9 pass to the browser (to control tab switching) on\n // non-OS X systems, or if hterm is not opened in an app window.\n v = (!osx && hterm.windowType != 'popup');\n }\n\n terminal.passAltNumber = v;\n },\n\n 'pass-ctrl-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Ctrl-1..9 pass to the browser (to control tab switching) on\n // non-OS X systems, or if hterm is not opened in an app window.\n v = (!osx && hterm.windowType != 'popup');\n }\n\n terminal.passCtrlNumber = v;\n },\n\n 'pass-meta-number': function(v) {\n if (v == null) {\n var osx = window.navigator.userAgent.match(/Mac OS X/);\n\n // Let Meta-1..9 pass to the browser (to control tab switching) on\n // OS X systems, or if hterm is not opened in an app window.\n v = (osx && hterm.windowType != 'popup');\n }\n\n terminal.passMetaNumber = v;\n },\n\n 'pass-meta-v': function(v) {\n terminal.keyboard.passMetaV = v;\n },\n\n 'receive-encoding': function(v) {\n if (!(/^(utf-8|raw)$/).test(v)) {\n console.warn('Invalid value for \"receive-encoding\": ' + v);\n v = 'utf-8';\n }\n\n terminal.vt.characterEncoding = v;\n },\n\n 'scroll-on-keystroke': function(v) {\n terminal.scrollOnKeystroke_ = v;\n },\n\n 'scroll-on-output': function(v) {\n terminal.scrollOnOutput_ = v;\n },\n\n 'scrollbar-visible': function(v) {\n terminal.setScrollbarVisible(v);\n },\n\n 'scroll-wheel-may-send-arrow-keys': function(v) {\n terminal.scrollWheelArrowKeys_ = v;\n },\n\n 'scroll-wheel-move-multiplier': function(v) {\n terminal.setScrollWheelMoveMultipler(v);\n },\n\n 'send-encoding': function(v) {\n if (!(/^(utf-8|raw)$/).test(v)) {\n console.warn('Invalid value for \"send-encoding\": ' + v);\n v = 'utf-8';\n }\n\n terminal.keyboard.characterEncoding = v;\n },\n\n 'shift-insert-paste': function(v) {\n terminal.keyboard.shiftInsertPaste = v;\n },\n\n 'terminal-encoding': function(v) {\n terminal.vt.setEncoding(v);\n },\n\n 'user-css': function(v) {\n terminal.scrollPort_.setUserCssUrl(v);\n },\n\n 'user-css-text': function(v) {\n terminal.scrollPort_.setUserCssText(v);\n },\n\n 'word-break-match-left': function(v) {\n terminal.primaryScreen_.wordBreakMatchLeft = v;\n terminal.alternateScreen_.wordBreakMatchLeft = v;\n },\n\n 'word-break-match-right': function(v) {\n terminal.primaryScreen_.wordBreakMatchRight = v;\n terminal.alternateScreen_.wordBreakMatchRight = v;\n },\n\n 'word-break-match-middle': function(v) {\n terminal.primaryScreen_.wordBreakMatchMiddle = v;\n terminal.alternateScreen_.wordBreakMatchMiddle = v;\n },\n });\n\n this.prefs_.readStorage(function() {\n this.prefs_.notifyAll();\n\n if (opt_callback)\n opt_callback();\n }.bind(this));\n};\n\n\n/**\n * Returns the preferences manager used for configuring this terminal.\n *\n * @return {hterm.PreferenceManager}\n */\nhterm.Terminal.prototype.getPrefs = function() {\n return this.prefs_;\n};\n\n/**\n * Enable or disable bracketed paste mode.\n *\n * @param {boolean} state The value to set.\n */\nhterm.Terminal.prototype.setBracketedPaste = function(state) {\n this.options_.bracketedPaste = state;\n};\n\n/**\n * Set the color for the cursor.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setCursorColor = function(color) {\n this.cursorColor_ = color;\n this.cursorNode_.style.backgroundColor = color;\n this.cursorNode_.style.borderColor = color;\n};\n\n/**\n * Return the current cursor color as a string.\n * @return {string}\n */\nhterm.Terminal.prototype.getCursorColor = function() {\n return this.cursorColor_;\n};\n\n/**\n * Enable or disable mouse based text selection in the terminal.\n *\n * @param {boolean} state The value to set.\n */\nhterm.Terminal.prototype.setSelectionEnabled = function(state) {\n this.enableMouseDragScroll = state;\n};\n\n/**\n * Set the background color.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setBackgroundColor = function(color) {\n this.backgroundColor_ = lib.colors.normalizeCSS(color);\n this.primaryScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.alternateScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.scrollPort_.setBackgroundColor(color);\n};\n\n/**\n * Return the current terminal background color.\n *\n * Intended for use by other classes, so we don't have to expose the entire\n * prefs_ object.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getBackgroundColor = function() {\n return this.backgroundColor_;\n};\n\n/**\n * Set the foreground color.\n *\n * If you want this setting to persist, set it through prefs_, rather than\n * with this method.\n *\n * @param {string} color The color to set.\n */\nhterm.Terminal.prototype.setForegroundColor = function(color) {\n this.foregroundColor_ = lib.colors.normalizeCSS(color);\n this.primaryScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.alternateScreen_.textAttributes.setDefaults(\n this.foregroundColor_, this.backgroundColor_);\n this.scrollPort_.setForegroundColor(color);\n};\n\n/**\n * Return the current terminal foreground color.\n *\n * Intended for use by other classes, so we don't have to expose the entire\n * prefs_ object.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getForegroundColor = function() {\n return this.foregroundColor_;\n};\n\n/**\n * Create a new instance of a terminal command and run it with a given\n * argument string.\n *\n * @param {function} commandClass The constructor for a terminal command.\n * @param {string} argString The argument string to pass to the command.\n */\nhterm.Terminal.prototype.runCommandClass = function(commandClass, argString) {\n var environment = this.prefs_.get('environment');\n if (typeof environment != 'object' || environment == null)\n environment = {};\n\n var self = this;\n this.command = new commandClass(\n { argString: argString || '',\n io: this.io.push(),\n environment: environment,\n onExit: function(code) {\n self.io.pop();\n self.uninstallKeyboard();\n if (self.prefs_.get('close-on-exit'))\n window.close();\n }\n });\n\n this.installKeyboard();\n this.command.run();\n};\n\n/**\n * Returns true if the current screen is the primary screen, false otherwise.\n *\n * @return {boolean}\n */\nhterm.Terminal.prototype.isPrimaryScreen = function() {\n return this.screen_ == this.primaryScreen_;\n};\n\n/**\n * Install the keyboard handler for this terminal.\n *\n * This will prevent the browser from seeing any keystrokes sent to the\n * terminal.\n */\nhterm.Terminal.prototype.installKeyboard = function() {\n this.keyboard.installKeyboard(this.scrollPort_.getDocument().body);\n}\n\n/**\n * Uninstall the keyboard handler for this terminal.\n */\nhterm.Terminal.prototype.uninstallKeyboard = function() {\n this.keyboard.installKeyboard(null);\n}\n\n/**\n * Set a CSS variable.\n *\n * Normally this is used to set variables in the hterm namespace.\n *\n * @param {string} name The variable to set.\n * @param {string} value The value to assign to the variable.\n * @param {string?} opt_prefix The variable namespace/prefix to use.\n */\nhterm.Terminal.prototype.setCssVar = function(name, value,\n opt_prefix='--hterm-') {\n this.document_.documentElement.style.setProperty(\n `${opt_prefix}${name}`, value);\n};\n\n/**\n * Set the font size for this terminal.\n *\n * Call setFontSize(0) to reset to the default font size.\n *\n * This function does not modify the font-size preference.\n *\n * @param {number} px The desired font size, in pixels.\n */\nhterm.Terminal.prototype.setFontSize = function(px) {\n if (px === 0)\n px = this.prefs_.get('font-size');\n\n this.scrollPort_.setFontSize(px);\n this.setCssVar('charsize-width', this.scrollPort_.characterSize.width + 'px');\n this.setCssVar('charsize-height',\n this.scrollPort_.characterSize.height + 'px');\n};\n\n/**\n * Get the current font size.\n *\n * @return {number}\n */\nhterm.Terminal.prototype.getFontSize = function() {\n return this.scrollPort_.getFontSize();\n};\n\n/**\n * Get the current font family.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getFontFamily = function() {\n return this.scrollPort_.getFontFamily();\n};\n\n/**\n * Set the CSS \"font-family\" for this terminal.\n */\nhterm.Terminal.prototype.syncFontFamily = function() {\n this.scrollPort_.setFontFamily(this.prefs_.get('font-family'),\n this.prefs_.get('font-smoothing'));\n this.syncBoldSafeState();\n};\n\n/**\n * Set this.mousePasteButton based on the mouse-paste-button pref,\n * autodetecting if necessary.\n */\nhterm.Terminal.prototype.syncMousePasteButton = function() {\n var button = this.prefs_.get('mouse-paste-button');\n if (typeof button == 'number') {\n this.mousePasteButton = button;\n return;\n }\n\n var ary = navigator.userAgent.match(/\\(X11;\\s+(\\S+)/);\n if (!ary || ary[1] == 'CrOS') {\n this.mousePasteButton = 1; // Middle mouse button.\n } else {\n this.mousePasteButton = 2; // Right mouse button.\n }\n};\n\n/**\n * Enable or disable bold based on the enable-bold pref, autodetecting if\n * necessary.\n */\nhterm.Terminal.prototype.syncBoldSafeState = function() {\n var enableBold = this.prefs_.get('enable-bold');\n if (enableBold !== null) {\n this.primaryScreen_.textAttributes.enableBold = enableBold;\n this.alternateScreen_.textAttributes.enableBold = enableBold;\n return;\n }\n\n var normalSize = this.scrollPort_.measureCharacterSize();\n var boldSize = this.scrollPort_.measureCharacterSize('bold');\n\n var isBoldSafe = normalSize.equals(boldSize);\n if (!isBoldSafe) {\n console.warn('Bold characters disabled: Size of bold weight differs ' +\n 'from normal. Font family is: ' +\n this.scrollPort_.getFontFamily());\n }\n\n this.primaryScreen_.textAttributes.enableBold = isBoldSafe;\n this.alternateScreen_.textAttributes.enableBold = isBoldSafe;\n};\n\n/**\n * Enable or disable blink based on the enable-blink pref.\n */\nhterm.Terminal.prototype.syncBlinkState = function() {\n this.setCssVar('node-duration',\n this.prefs_.get('enable-blink') ? '0.7s' : '0');\n};\n\n/**\n * Set the mouse cursor style based on the current terminal mode.\n */\nhterm.Terminal.prototype.syncMouseStyle = function() {\n this.setCssVar('mouse-cursor-style',\n this.vt.mouseReport == this.vt.MOUSE_REPORT_DISABLED ?\n 'var(--hterm-mouse-cursor-text)' :\n 'var(--hterm-mouse-cursor-pointer)');\n};\n\n/**\n * Return a copy of the current cursor position.\n *\n * @return {hterm.RowCol} The RowCol object representing the current position.\n */\nhterm.Terminal.prototype.saveCursor = function() {\n return this.screen_.cursorPosition.clone();\n};\n\n/**\n * Return the current text attributes.\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getTextAttributes = function() {\n return this.screen_.textAttributes;\n};\n\n/**\n * Set the text attributes.\n *\n * @param {string} textAttributes The attributes to set.\n */\nhterm.Terminal.prototype.setTextAttributes = function(textAttributes) {\n this.screen_.textAttributes = textAttributes;\n};\n\n/**\n * Return the current browser zoom factor applied to the terminal.\n *\n * @return {number} The current browser zoom factor.\n */\nhterm.Terminal.prototype.getZoomFactor = function() {\n return this.scrollPort_.characterSize.zoomFactor;\n};\n\n/**\n * Change the title of this terminal's window.\n *\n * @param {string} title The title to set.\n */\nhterm.Terminal.prototype.setWindowTitle = function(title) {\n window.document.title = title;\n};\n\n/**\n * Restore a previously saved cursor position.\n *\n * @param {hterm.RowCol} cursor The position to restore.\n */\nhterm.Terminal.prototype.restoreCursor = function(cursor) {\n var row = lib.f.clamp(cursor.row, 0, this.screenSize.height - 1);\n var column = lib.f.clamp(cursor.column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n if (cursor.column > column ||\n cursor.column == column && cursor.overflow) {\n this.screen_.cursorPosition.overflow = true;\n }\n};\n\n/**\n * Clear the cursor's overflow flag.\n */\nhterm.Terminal.prototype.clearCursorOverflow = function() {\n this.screen_.cursorPosition.overflow = false;\n};\n\n/**\n * Sets the cursor shape\n *\n * @param {string} shape The shape to set.\n */\nhterm.Terminal.prototype.setCursorShape = function(shape) {\n this.cursorShape_ = shape;\n this.restyleCursor_();\n}\n\n/**\n * Get the cursor shape\n *\n * @return {string}\n */\nhterm.Terminal.prototype.getCursorShape = function() {\n return this.cursorShape_;\n}\n\n/**\n * Set the width of the terminal, resizing the UI to match.\n *\n * @param {number} columnCount\n */\nhterm.Terminal.prototype.setWidth = function(columnCount) {\n if (columnCount == null) {\n this.div_.style.width = '100%';\n return;\n }\n\n this.div_.style.width = Math.ceil(\n this.scrollPort_.characterSize.width *\n columnCount + this.scrollPort_.currentScrollbarWidthPx) + 'px';\n this.realizeSize_(columnCount, this.screenSize.height);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Set the height of the terminal, resizing the UI to match.\n *\n * @param {number} rowCount The height in rows.\n */\nhterm.Terminal.prototype.setHeight = function(rowCount) {\n if (rowCount == null) {\n this.div_.style.height = '100%';\n return;\n }\n\n this.div_.style.height =\n this.scrollPort_.characterSize.height * rowCount + 'px';\n this.realizeSize_(this.screenSize.width, rowCount);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Deal with terminal size changes.\n *\n * @param {number} columnCount The number of columns.\n * @param {number} rowCount The number of rows.\n */\nhterm.Terminal.prototype.realizeSize_ = function(columnCount, rowCount) {\n if (columnCount != this.screenSize.width)\n this.realizeWidth_(columnCount);\n\n if (rowCount != this.screenSize.height)\n this.realizeHeight_(rowCount);\n\n // Send new terminal size to plugin.\n this.io.onTerminalResize_(columnCount, rowCount);\n};\n\n/**\n * Deal with terminal width changes.\n *\n * This function does what needs to be done when the terminal width changes\n * out from under us. It happens here rather than in onResize_() because this\n * code may need to run synchronously to handle programmatic changes of\n * terminal width.\n *\n * Relying on the browser to send us an async resize event means we may not be\n * in the correct state yet when the next escape sequence hits.\n *\n * @param {number} columnCount The number of columns.\n */\nhterm.Terminal.prototype.realizeWidth_ = function(columnCount) {\n if (columnCount <= 0)\n throw new Error('Attempt to realize bad width: ' + columnCount);\n\n var deltaColumns = columnCount - this.screen_.getWidth();\n\n this.screenSize.width = columnCount;\n this.screen_.setColumnCount(columnCount);\n\n if (deltaColumns > 0) {\n if (this.defaultTabStops)\n this.setDefaultTabStops(this.screenSize.width - deltaColumns);\n } else {\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] < columnCount)\n break;\n\n this.tabStops_.pop();\n }\n }\n\n this.screen_.setColumnCount(this.screenSize.width);\n};\n\n/**\n * Deal with terminal height changes.\n *\n * This function does what needs to be done when the terminal height changes\n * out from under us. It happens here rather than in onResize_() because this\n * code may need to run synchronously to handle programmatic changes of\n * terminal height.\n *\n * Relying on the browser to send us an async resize event means we may not be\n * in the correct state yet when the next escape sequence hits.\n *\n * @param {number} rowCount The number of rows.\n */\nhterm.Terminal.prototype.realizeHeight_ = function(rowCount) {\n if (rowCount <= 0)\n throw new Error('Attempt to realize bad height: ' + rowCount);\n\n var deltaRows = rowCount - this.screen_.getHeight();\n\n this.screenSize.height = rowCount;\n\n var cursor = this.saveCursor();\n\n if (deltaRows < 0) {\n // Screen got smaller.\n deltaRows *= -1;\n while (deltaRows) {\n var lastRow = this.getRowCount() - 1;\n if (lastRow - this.scrollbackRows_.length == cursor.row)\n break;\n\n if (this.getRowText(lastRow))\n break;\n\n this.screen_.popRow();\n deltaRows--;\n }\n\n var ary = this.screen_.shiftRows(deltaRows);\n this.scrollbackRows_.push.apply(this.scrollbackRows_, ary);\n\n // We just removed rows from the top of the screen, we need to update\n // the cursor to match.\n cursor.row = Math.max(cursor.row - deltaRows, 0);\n } else if (deltaRows > 0) {\n // Screen got larger.\n\n if (deltaRows <= this.scrollbackRows_.length) {\n var scrollbackCount = Math.min(deltaRows, this.scrollbackRows_.length);\n var rows = this.scrollbackRows_.splice(\n this.scrollbackRows_.length - scrollbackCount, scrollbackCount);\n this.screen_.unshiftRows(rows);\n deltaRows -= scrollbackCount;\n cursor.row += scrollbackCount;\n }\n\n if (deltaRows)\n this.appendRows_(deltaRows);\n }\n\n this.setVTScrollRegion(null, null);\n this.restoreCursor(cursor);\n};\n\n/**\n * Scroll the terminal to the top of the scrollback buffer.\n */\nhterm.Terminal.prototype.scrollHome = function() {\n this.scrollPort_.scrollRowToTop(0);\n};\n\n/**\n * Scroll the terminal to the end.\n */\nhterm.Terminal.prototype.scrollEnd = function() {\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n};\n\n/**\n * Scroll the terminal one page up (minus one line) relative to the current\n * position.\n */\nhterm.Terminal.prototype.scrollPageUp = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i - this.screenSize.height + 1);\n};\n\n/**\n * Scroll the terminal one page down (minus one line) relative to the current\n * position.\n */\nhterm.Terminal.prototype.scrollPageDown = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i + this.screenSize.height - 1);\n};\n\n/**\n * Scroll the terminal one line up relative to the current position.\n */\nhterm.Terminal.prototype.scrollLineUp = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i - 1);\n};\n\n/**\n * Scroll the terminal one line down relative to the current position.\n */\nhterm.Terminal.prototype.scrollLineDown = function() {\n var i = this.scrollPort_.getTopRowIndex();\n this.scrollPort_.scrollRowToTop(i + 1);\n};\n\n/**\n * Clear primary screen, secondary screen, and the scrollback buffer.\n */\nhterm.Terminal.prototype.wipeContents = function() {\n this.scrollbackRows_.length = 0;\n this.scrollPort_.resetCache();\n\n [this.primaryScreen_, this.alternateScreen_].forEach(function(screen) {\n var bottom = screen.getHeight();\n if (bottom > 0) {\n this.renumberRows_(0, bottom);\n this.clearHome(screen);\n }\n }.bind(this));\n\n this.syncCursorPosition_();\n this.scrollPort_.invalidate();\n};\n\n/**\n * Full terminal reset.\n */\nhterm.Terminal.prototype.reset = function() {\n this.clearAllTabStops();\n this.setDefaultTabStops();\n\n this.clearHome(this.primaryScreen_);\n this.primaryScreen_.textAttributes.reset();\n\n this.clearHome(this.alternateScreen_);\n this.alternateScreen_.textAttributes.reset();\n\n this.setCursorBlink(!!this.prefs_.get('cursor-blink'));\n\n this.vt.reset();\n\n this.softReset();\n};\n\n/**\n * Soft terminal reset.\n *\n * Perform a soft reset to the default values listed in\n * http://www.vt100.net/docs/vt510-rm/DECSTR#T5-9\n */\nhterm.Terminal.prototype.softReset = function() {\n // Reset terminal options to their default values.\n this.options_ = new hterm.Options();\n\n // We show the cursor on soft reset but do not alter the blink state.\n this.options_.cursorBlink = !!this.timeouts_.cursorBlink;\n\n // Xterm also resets the color palette on soft reset, even though it doesn't\n // seem to be documented anywhere.\n this.primaryScreen_.textAttributes.resetColorPalette();\n this.alternateScreen_.textAttributes.resetColorPalette();\n\n // The xterm man page explicitly says this will happen on soft reset.\n this.setVTScrollRegion(null, null);\n\n // Xterm also shows the cursor on soft reset, but does not alter the blink\n // state.\n this.setCursorVisible(true);\n};\n\n/**\n * Move the cursor forward to the next tab stop, or to the last column\n * if no more tab stops are set.\n */\nhterm.Terminal.prototype.forwardTabStop = function() {\n var column = this.screen_.cursorPosition.column;\n\n for (var i = 0; i < this.tabStops_.length; i++) {\n if (this.tabStops_[i] > column) {\n this.setCursorColumn(this.tabStops_[i]);\n return;\n }\n }\n\n // xterm does not clear the overflow flag on HT or CHT.\n var overflow = this.screen_.cursorPosition.overflow;\n this.setCursorColumn(this.screenSize.width - 1);\n this.screen_.cursorPosition.overflow = overflow;\n};\n\n/**\n * Move the cursor backward to the previous tab stop, or to the first column\n * if no previous tab stops are set.\n */\nhterm.Terminal.prototype.backwardTabStop = function() {\n var column = this.screen_.cursorPosition.column;\n\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] < column) {\n this.setCursorColumn(this.tabStops_[i]);\n return;\n }\n }\n\n this.setCursorColumn(1);\n};\n\n/**\n * Set a tab stop at the given column.\n *\n * @param {integer} column Zero based column.\n */\nhterm.Terminal.prototype.setTabStop = function(column) {\n for (var i = this.tabStops_.length - 1; i >= 0; i--) {\n if (this.tabStops_[i] == column)\n return;\n\n if (this.tabStops_[i] < column) {\n this.tabStops_.splice(i + 1, 0, column);\n return;\n }\n }\n\n this.tabStops_.splice(0, 0, column);\n};\n\n/**\n * Clear the tab stop at the current cursor position.\n *\n * No effect if there is no tab stop at the current cursor position.\n */\nhterm.Terminal.prototype.clearTabStopAtCursor = function() {\n var column = this.screen_.cursorPosition.column;\n\n var i = this.tabStops_.indexOf(column);\n if (i == -1)\n return;\n\n this.tabStops_.splice(i, 1);\n};\n\n/**\n * Clear all tab stops.\n */\nhterm.Terminal.prototype.clearAllTabStops = function() {\n this.tabStops_.length = 0;\n this.defaultTabStops = false;\n};\n\n/**\n * Set up the default tab stops, starting from a given column.\n *\n * This sets a tabstop every (column % this.tabWidth) column, starting\n * from the specified column, or 0 if no column is provided. It also flags\n * future resizes to set them up.\n *\n * This does not clear the existing tab stops first, use clearAllTabStops\n * for that.\n *\n * @param {integer} opt_start Optional starting zero based starting column, useful\n * for filling out missing tab stops when the terminal is resized.\n */\nhterm.Terminal.prototype.setDefaultTabStops = function(opt_start) {\n var start = opt_start || 0;\n var w = this.tabWidth;\n // Round start up to a default tab stop.\n start = start - 1 - ((start - 1) % w) + w;\n for (var i = start; i < this.screenSize.width; i += w) {\n this.setTabStop(i);\n }\n\n this.defaultTabStops = true;\n};\n\n/**\n * Interpret a sequence of characters.\n *\n * Incomplete escape sequences are buffered until the next call.\n *\n * @param {string} str Sequence of characters to interpret or pass through.\n */\nhterm.Terminal.prototype.interpret = function(str) {\n this.vt.interpret(str);\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Take over the given DIV for use as the terminal display.\n *\n * @param {HTMLDivElement} div The div to use as the terminal display.\n */\nhterm.Terminal.prototype.decorate = function(div) {\n this.div_ = div;\n\n this.scrollPort_.decorate(div);\n this.scrollPort_.setBackgroundImage(this.prefs_.get('background-image'));\n this.scrollPort_.setBackgroundSize(this.prefs_.get('background-size'));\n this.scrollPort_.setBackgroundPosition(\n this.prefs_.get('background-position'));\n this.scrollPort_.setUserCssUrl(this.prefs_.get('user-css'));\n this.scrollPort_.setUserCssText(this.prefs_.get('user-css-text'));\n\n this.div_.focus = this.focus.bind(this);\n\n this.setFontSize(this.prefs_.get('font-size'));\n this.syncFontFamily();\n\n this.setScrollbarVisible(this.prefs_.get('scrollbar-visible'));\n this.setScrollWheelMoveMultipler(\n this.prefs_.get('scroll-wheel-move-multiplier'));\n\n this.document_ = this.scrollPort_.getDocument();\n\n this.document_.body.oncontextmenu = function() { return false; };\n\n var onMouse = this.onMouse_.bind(this);\n var screenNode = this.scrollPort_.getScreenNode();\n screenNode.addEventListener('mousedown', onMouse);\n screenNode.addEventListener('mouseup', onMouse);\n screenNode.addEventListener('mousemove', onMouse);\n this.scrollPort_.onScrollWheel = onMouse;\n\n screenNode.addEventListener(\n 'focus', this.onFocusChange_.bind(this, true));\n // Listen for mousedown events on the screenNode as in FF the focus\n // events don't bubble.\n screenNode.addEventListener('mousedown', function() {\n setTimeout(this.onFocusChange_.bind(this, true));\n }.bind(this));\n\n screenNode.addEventListener(\n 'blur', this.onFocusChange_.bind(this, false));\n\n var style = this.document_.createElement('style');\n style.textContent =\n ('.cursor-node[focus=\"false\"] {' +\n ' box-sizing: border-box;' +\n ' background-color: transparent !important;' +\n ' border-width: 2px;' +\n ' border-style: solid;' +\n '}' +\n '.wc-node {' +\n ' display: inline-block;' +\n ' text-align: center;' +\n ' width: calc(var(--hterm-charsize-width) * 2);' +\n ' line-height: var(--hterm-charsize-height);' +\n '}' +\n ':root {' +\n ' --hterm-charsize-width: ' + this.scrollPort_.characterSize.width + 'px;' +\n ' --hterm-charsize-height: ' + this.scrollPort_.characterSize.height + 'px;' +\n ' --hterm-cursor-offset-col: 0;' +\n ' --hterm-cursor-offset-row: 0;' +\n ' --hterm-blink-node-duration: 0.7s;' +\n ' --hterm-mouse-cursor-text: text;' +\n ' --hterm-mouse-cursor-pointer: default;' +\n ' --hterm-mouse-cursor-style: var(--hterm-mouse-cursor-text);' +\n '}' +\n '@keyframes blink {' +\n ' from { opacity: 1.0; }' +\n ' to { opacity: 0.0; }' +\n '}' +\n '.blink-node {' +\n ' animation-name: blink;' +\n ' animation-duration: var(--hterm-blink-node-duration);' +\n ' animation-iteration-count: infinite;' +\n ' animation-timing-function: ease-in-out;' +\n ' animation-direction: alternate;' +\n '}');\n this.document_.head.appendChild(style);\n\n this.cursorNode_ = this.document_.createElement('div');\n this.cursorNode_.id = 'hterm:terminal-cursor';\n this.cursorNode_.className = 'cursor-node';\n this.cursorNode_.style.cssText =\n ('position: absolute;' +\n 'left: calc(var(--hterm-charsize-width) * var(--hterm-cursor-offset-col));' +\n 'top: calc(var(--hterm-charsize-height) * var(--hterm-cursor-offset-row));' +\n 'display: block;' +\n 'width: var(--hterm-charsize-width);' +\n 'height: var(--hterm-charsize-height);' +\n '-webkit-transition: opacity, background-color 100ms linear;' +\n '-moz-transition: opacity, background-color 100ms linear;');\n\n this.setCursorColor(this.prefs_.get('cursor-color'));\n this.setCursorBlink(!!this.prefs_.get('cursor-blink'));\n this.restyleCursor_();\n\n this.document_.body.appendChild(this.cursorNode_);\n\n // When 'enableMouseDragScroll' is off we reposition this element directly\n // under the mouse cursor after a click. This makes Chrome associate\n // subsequent mousemove events with the scroll-blocker. Since the\n // scroll-blocker is a peer (not a child) of the scrollport, the mousemove\n // events do not cause the scrollport to scroll.\n //\n // It's a hack, but it's the cleanest way I could find.\n this.scrollBlockerNode_ = this.document_.createElement('div');\n this.scrollBlockerNode_.id = 'hterm:mouse-drag-scroll-blocker';\n this.scrollBlockerNode_.style.cssText =\n ('position: absolute;' +\n 'top: -99px;' +\n 'display: block;' +\n 'width: 10px;' +\n 'height: 10px;');\n this.document_.body.appendChild(this.scrollBlockerNode_);\n\n this.scrollPort_.onScrollWheel = onMouse;\n ['mousedown', 'mouseup', 'mousemove', 'click', 'dblclick',\n ].forEach(function(event) {\n this.scrollBlockerNode_.addEventListener(event, onMouse);\n this.cursorNode_.addEventListener(event, onMouse);\n this.document_.addEventListener(event, onMouse);\n }.bind(this));\n\n this.cursorNode_.addEventListener('mousedown', function() {\n setTimeout(this.focus.bind(this));\n }.bind(this));\n\n this.setReverseVideo(false);\n\n this.scrollPort_.focus();\n this.scrollPort_.scheduleRedraw();\n};\n\n/**\n * Return the HTML document that contains the terminal DOM nodes.\n *\n * @return {HTMLDocument}\n */\nhterm.Terminal.prototype.getDocument = function() {\n return this.document_;\n};\n\n/**\n * Focus the terminal.\n */\nhterm.Terminal.prototype.focus = function() {\n this.scrollPort_.focus();\n};\n\n/**\n * Return the HTML Element for a given row index.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch rows on demand as they are scrolled into view.\n *\n * TODO(rginda): Consider saving scrollback rows as (HTML source, text content)\n * pairs to conserve memory.\n *\n * @param {integer} index The zero-based row index, measured relative to the\n * start of the scrollback buffer. On-screen rows will always have the\n * largest indices.\n * @return {HTMLElement} The 'x-row' element containing for the requested row.\n */\nhterm.Terminal.prototype.getRowNode = function(index) {\n if (index < this.scrollbackRows_.length)\n return this.scrollbackRows_[index];\n\n var screenIndex = index - this.scrollbackRows_.length;\n return this.screen_.rowsArray[screenIndex];\n};\n\n/**\n * Return the text content for a given range of rows.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch text content on demand when the user attempts to copy their\n * selection to the clipboard.\n *\n * @param {integer} start The zero-based row index to start from, measured\n * relative to the start of the scrollback buffer. On-screen rows will\n * always have the largest indices.\n * @param {integer} end The zero-based row index to end on, measured\n * relative to the start of the scrollback buffer.\n * @return {string} A single string containing the text value of the range of\n * rows. Lines will be newline delimited, with no trailing newline.\n */\nhterm.Terminal.prototype.getRowsText = function(start, end) {\n var ary = [];\n for (var i = start; i < end; i++) {\n var node = this.getRowNode(i);\n ary.push(node.textContent);\n if (i < end - 1 && !node.getAttribute('line-overflow'))\n ary.push('\\n');\n }\n\n return ary.join('');\n};\n\n/**\n * Return the text content for a given row.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to fetch text content on demand when the user attempts to copy their\n * selection to the clipboard.\n *\n * @param {integer} index The zero-based row index to return, measured\n * relative to the start of the scrollback buffer. On-screen rows will\n * always have the largest indices.\n * @return {string} A string containing the text value of the selected row.\n */\nhterm.Terminal.prototype.getRowText = function(index) {\n var node = this.getRowNode(index);\n return node.textContent;\n};\n\n/**\n * Return the total number of rows in the addressable screen and in the\n * scrollback buffer of this terminal.\n *\n * This is a method from the RowProvider interface. The ScrollPort uses\n * it to compute the size of the scrollbar.\n *\n * @return {integer} The number of rows in this terminal.\n */\nhterm.Terminal.prototype.getRowCount = function() {\n return this.scrollbackRows_.length + this.screen_.rowsArray.length;\n};\n\n/**\n * Create DOM nodes for new rows and append them to the end of the terminal.\n *\n * This is the only correct way to add a new DOM node for a row. Notice that\n * the new row is appended to the bottom of the list of rows, and does not\n * require renumbering (of the rowIndex property) of previous rows.\n *\n * If you think you want a new blank row somewhere in the middle of the\n * terminal, look into moveRows_().\n *\n * This method does not pay attention to vtScrollTop/Bottom, since you should\n * be using moveRows() in cases where they would matter.\n *\n * The cursor will be positioned at column 0 of the first inserted line.\n *\n * @param {number} count The number of rows to created.\n */\nhterm.Terminal.prototype.appendRows_ = function(count) {\n var cursorRow = this.screen_.rowsArray.length;\n var offset = this.scrollbackRows_.length + cursorRow;\n for (var i = 0; i < count; i++) {\n var row = this.document_.createElement('x-row');\n row.appendChild(this.document_.createTextNode(''));\n row.rowIndex = offset + i;\n this.screen_.pushRow(row);\n }\n\n var extraRows = this.screen_.rowsArray.length - this.screenSize.height;\n if (extraRows > 0) {\n var ary = this.screen_.shiftRows(extraRows);\n Array.prototype.push.apply(this.scrollbackRows_, ary);\n if (this.scrollPort_.isScrolledEnd)\n this.scheduleScrollDown_();\n }\n\n if (cursorRow >= this.screen_.rowsArray.length)\n cursorRow = this.screen_.rowsArray.length - 1;\n\n this.setAbsoluteCursorPosition(cursorRow, 0);\n};\n\n/**\n * Relocate rows from one part of the addressable screen to another.\n *\n * This is used to recycle rows during VT scrolls (those which are driven\n * by VT commands, rather than by the user manipulating the scrollbar.)\n *\n * In this case, the blank lines scrolled into the scroll region are made of\n * the nodes we scrolled off. These have their rowIndex properties carefully\n * renumbered so as not to confuse the ScrollPort.\n *\n * @param {number} fromIndex The start index.\n * @param {number} count The number of rows to move.\n * @param {number} toIndex The destination index.\n */\nhterm.Terminal.prototype.moveRows_ = function(fromIndex, count, toIndex) {\n var ary = this.screen_.removeRows(fromIndex, count);\n this.screen_.insertRows(toIndex, ary);\n\n var start, end;\n if (fromIndex < toIndex) {\n start = fromIndex;\n end = toIndex + count;\n } else {\n start = toIndex;\n end = fromIndex + count;\n }\n\n this.renumberRows_(start, end);\n this.scrollPort_.scheduleInvalidate();\n};\n\n/**\n * Renumber the rowIndex property of the given range of rows.\n *\n * The start and end indices are relative to the screen, not the scrollback.\n * Rows in the scrollback buffer cannot be renumbered. Since they are not\n * addressable (you can't delete them, scroll them, etc), you should have\n * no need to renumber scrollback rows.\n *\n * @param {number} start The start index.\n * @param {number} end The end index.\n * @param {hterm.Screen} opt_screen The screen to renumber.\n */\nhterm.Terminal.prototype.renumberRows_ = function(start, end, opt_screen) {\n var screen = opt_screen || this.screen_;\n\n var offset = this.scrollbackRows_.length;\n for (var i = start; i < end; i++) {\n screen.rowsArray[i].rowIndex = offset + i;\n }\n};\n\n/**\n * Print a string to the terminal.\n *\n * This respects the current insert and wraparound modes. It will add new lines\n * to the end of the terminal, scrolling off the top into the scrollback buffer\n * if necessary.\n *\n * The string is *not* parsed for escape codes. Use the interpret() method if\n * that's what you're after.\n *\n * @param{string} str The string to print.\n */\nhterm.Terminal.prototype.print = function(str) {\n var startOffset = 0;\n\n var strWidth = lib.wc.strWidth(str);\n\n while (startOffset < strWidth) {\n if (this.options_.wraparound && this.screen_.cursorPosition.overflow) {\n this.screen_.commitLineOverflow();\n this.newLine();\n }\n\n var count = strWidth - startOffset;\n var didOverflow = false;\n var substr;\n\n if (this.screen_.cursorPosition.column + count >= this.screenSize.width) {\n didOverflow = true;\n count = this.screenSize.width - this.screen_.cursorPosition.column;\n }\n\n if (didOverflow && !this.options_.wraparound) {\n // If the string overflowed the line but wraparound is off, then the\n // last printed character should be the last of the string.\n // TODO: This will add to our problems with multibyte UTF-16 characters.\n substr = lib.wc.substr(str, startOffset, count - 1) +\n lib.wc.substr(str, strWidth - 1);\n count = strWidth;\n } else {\n substr = lib.wc.substr(str, startOffset, count);\n }\n\n var tokens = hterm.TextAttributes.splitWidecharString(substr);\n for (var i = 0; i < tokens.length; i++) {\n this.screen_.textAttributes.wcNode = tokens[i].wcNode;\n this.screen_.textAttributes.asciiNode = tokens[i].asciiNode;\n\n if (this.options_.insertMode) {\n this.screen_.insertString(tokens[i].str);\n } else {\n this.screen_.overwriteString(tokens[i].str);\n }\n this.screen_.textAttributes.wcNode = false;\n this.screen_.textAttributes.asciiNode = true;\n }\n\n this.screen_.maybeClipCurrentRow();\n startOffset += count;\n }\n\n this.scheduleSyncCursorPosition_();\n\n if (this.scrollOnOutput_)\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n};\n\n/**\n * Set the VT scroll region.\n *\n * This also resets the cursor position to the absolute (0, 0) position, since\n * that's what xterm appears to do.\n *\n * Setting the scroll region to the full height of the terminal will clear\n * the scroll region. This is *NOT* what most terminals do. We're explicitly\n * going \"off-spec\" here because it makes `screen` and `tmux` overflow into the\n * local scrollback buffer, which means the scrollbars and shift-pgup/pgdn\n * continue to work as most users would expect.\n *\n * @param {integer} scrollTop The zero-based top of the scroll region.\n * @param {integer} scrollBottom The zero-based bottom of the scroll region,\n * inclusive.\n */\nhterm.Terminal.prototype.setVTScrollRegion = function(scrollTop, scrollBottom) {\n if (scrollTop == 0 && scrollBottom == this.screenSize.height - 1) {\n this.vtScrollTop_ = null;\n this.vtScrollBottom_ = null;\n } else {\n this.vtScrollTop_ = scrollTop;\n this.vtScrollBottom_ = scrollBottom;\n }\n};\n\n/**\n * Return the top row index according to the VT.\n *\n * This will return 0 unless the terminal has been told to restrict scrolling\n * to some lower row. It is used for some VT cursor positioning and scrolling\n * commands.\n *\n * @return {integer} The topmost row in the terminal's scroll region.\n */\nhterm.Terminal.prototype.getVTScrollTop = function() {\n if (this.vtScrollTop_ != null)\n return this.vtScrollTop_;\n\n return 0;\n};\n\n/**\n * Return the bottom row index according to the VT.\n *\n * This will return the height of the terminal unless the it has been told to\n * restrict scrolling to some higher row. It is used for some VT cursor\n * positioning and scrolling commands.\n *\n * @return {integer} The bottom most row in the terminal's scroll region.\n */\nhterm.Terminal.prototype.getVTScrollBottom = function() {\n if (this.vtScrollBottom_ != null)\n return this.vtScrollBottom_;\n\n return this.screenSize.height - 1;\n}\n\n/**\n * Process a '\\n' character.\n *\n * If the cursor is on the final row of the terminal this will append a new\n * blank row to the screen and scroll the topmost row into the scrollback\n * buffer.\n *\n * Otherwise, this moves the cursor to column zero of the next row.\n */\nhterm.Terminal.prototype.newLine = function() {\n var cursorAtEndOfScreen = (this.screen_.cursorPosition.row ==\n this.screen_.rowsArray.length - 1);\n\n if (this.vtScrollBottom_ != null) {\n // A VT Scroll region is active, we never append new rows.\n if (this.screen_.cursorPosition.row == this.vtScrollBottom_) {\n // We're at the end of the VT Scroll Region, perform a VT scroll.\n this.vtScrollUp(1);\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0);\n } else if (cursorAtEndOfScreen) {\n // We're at the end of the screen, the only thing to do is put the\n // cursor to column 0.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, 0);\n } else {\n // Anywhere else, advance the cursor row, and reset the column.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0);\n }\n } else if (cursorAtEndOfScreen) {\n // We're at the end of the screen. Append a new row to the terminal,\n // shifting the top row into the scrollback.\n this.appendRows_(1);\n } else {\n // Anywhere else in the screen just moves the cursor.\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row + 1, 0);\n }\n};\n\n/**\n * Like newLine(), except maintain the cursor column.\n */\nhterm.Terminal.prototype.lineFeed = function() {\n var column = this.screen_.cursorPosition.column;\n this.newLine();\n this.setCursorColumn(column);\n};\n\n/**\n * If autoCarriageReturn is set then newLine(), else lineFeed().\n */\nhterm.Terminal.prototype.formFeed = function() {\n if (this.options_.autoCarriageReturn) {\n this.newLine();\n } else {\n this.lineFeed();\n }\n};\n\n/**\n * Move the cursor up one row, possibly inserting a blank line.\n *\n * The cursor column is not changed.\n */\nhterm.Terminal.prototype.reverseLineFeed = function() {\n var scrollTop = this.getVTScrollTop();\n var currentRow = this.screen_.cursorPosition.row;\n\n if (currentRow == scrollTop) {\n this.insertLines(1);\n } else {\n this.setAbsoluteCursorRow(currentRow - 1);\n }\n};\n\n/**\n * Replace all characters to the left of the current cursor with the space\n * character.\n *\n * TODO(rginda): This should probably *remove* the characters (not just replace\n * with a space) if there are no characters at or beyond the current cursor\n * position.\n */\nhterm.Terminal.prototype.eraseToLeft = function() {\n var cursor = this.saveCursor();\n this.setCursorColumn(0);\n this.screen_.overwriteString(lib.f.getWhitespace(cursor.column + 1));\n this.restoreCursor(cursor);\n};\n\n/**\n * Erase a given number of characters to the right of the cursor.\n *\n * The cursor position is unchanged.\n *\n * If the current background color is not the default background color this\n * will insert spaces rather than delete. This is unfortunate because the\n * trailing space will affect text selection, but it's difficult to come up\n * with a way to style empty space that wouldn't trip up the hterm.Screen\n * code.\n *\n * eraseToRight is ignored in the presence of a cursor overflow. This deviates\n * from xterm, but agrees with gnome-terminal and konsole, xfce4-terminal. See\n * crbug.com/232390 for details.\n *\n * @param {number} opt_count The number of characters to erase.\n */\nhterm.Terminal.prototype.eraseToRight = function(opt_count) {\n if (this.screen_.cursorPosition.overflow)\n return;\n\n var maxCount = this.screenSize.width - this.screen_.cursorPosition.column;\n var count = opt_count ? Math.min(opt_count, maxCount) : maxCount;\n\n if (this.screen_.textAttributes.background ===\n this.screen_.textAttributes.DEFAULT_COLOR) {\n var cursorRow = this.screen_.rowsArray[this.screen_.cursorPosition.row];\n if (hterm.TextAttributes.nodeWidth(cursorRow) <=\n this.screen_.cursorPosition.column + count) {\n this.screen_.deleteChars(count);\n this.clearCursorOverflow();\n return;\n }\n }\n\n var cursor = this.saveCursor();\n this.screen_.overwriteString(lib.f.getWhitespace(count));\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase the current line.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseLine = function() {\n var cursor = this.saveCursor();\n this.screen_.clearCursorRow();\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase all characters from the start of the screen to the current cursor\n * position, regardless of scroll region.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseAbove = function() {\n var cursor = this.saveCursor();\n\n this.eraseToLeft();\n\n for (var i = 0; i < cursor.row; i++) {\n this.setAbsoluteCursorPosition(i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Erase all characters from the current cursor position to the end of the\n * screen, regardless of scroll region.\n *\n * The cursor position is unchanged.\n */\nhterm.Terminal.prototype.eraseBelow = function() {\n var cursor = this.saveCursor();\n\n this.eraseToRight();\n\n var bottom = this.screenSize.height - 1;\n for (var i = cursor.row + 1; i <= bottom; i++) {\n this.setAbsoluteCursorPosition(i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Fill the terminal with a given character.\n *\n * This methods does not respect the VT scroll region.\n *\n * @param {string} ch The character to use for the fill.\n */\nhterm.Terminal.prototype.fill = function(ch) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorPosition(0, 0);\n for (var row = 0; row < this.screenSize.height; row++) {\n for (var col = 0; col < this.screenSize.width; col++) {\n this.setAbsoluteCursorPosition(row, col);\n this.screen_.overwriteString(ch);\n }\n }\n\n this.restoreCursor(cursor);\n};\n\n/**\n * Erase the entire display and leave the cursor at (0, 0).\n *\n * This does not respect the scroll region.\n *\n * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults\n * to the current screen.\n */\nhterm.Terminal.prototype.clearHome = function(opt_screen) {\n var screen = opt_screen || this.screen_;\n var bottom = screen.getHeight();\n\n if (bottom == 0) {\n // Empty screen, nothing to do.\n return;\n }\n\n for (var i = 0; i < bottom; i++) {\n screen.setCursorPosition(i, 0);\n screen.clearCursorRow();\n }\n\n screen.setCursorPosition(0, 0);\n};\n\n/**\n * Erase the entire display without changing the cursor position.\n *\n * The cursor position is unchanged. This does not respect the scroll\n * region.\n *\n * @param {hterm.Screen} opt_screen Optional screen to operate on. Defaults\n * to the current screen.\n */\nhterm.Terminal.prototype.clear = function(opt_screen) {\n var screen = opt_screen || this.screen_;\n var cursor = screen.cursorPosition.clone();\n this.clearHome(screen);\n screen.setCursorPosition(cursor.row, cursor.column);\n};\n\n/**\n * VT command to insert lines at the current cursor row.\n *\n * This respects the current scroll region. Rows pushed off the bottom are\n * lost (they won't show up in the scrollback buffer).\n *\n * @param {integer} count The number of lines to insert.\n */\nhterm.Terminal.prototype.insertLines = function(count) {\n var cursorRow = this.screen_.cursorPosition.row;\n\n var bottom = this.getVTScrollBottom();\n count = Math.min(count, bottom - cursorRow);\n\n // The moveCount is the number of rows we need to relocate to make room for\n // the new row(s). The count is the distance to move them.\n var moveCount = bottom - cursorRow - count + 1;\n if (moveCount)\n this.moveRows_(cursorRow, moveCount, cursorRow + count);\n\n for (var i = count - 1; i >= 0; i--) {\n this.setAbsoluteCursorPosition(cursorRow + i, 0);\n this.screen_.clearCursorRow();\n }\n};\n\n/**\n * VT command to delete lines at the current cursor row.\n *\n * New rows are added to the bottom of scroll region to take their place. New\n * rows are strictly there to take up space and have no content or style.\n *\n * @param {number} count The number of lines to delete.\n */\nhterm.Terminal.prototype.deleteLines = function(count) {\n var cursor = this.saveCursor();\n\n var top = cursor.row;\n var bottom = this.getVTScrollBottom();\n\n var maxCount = bottom - top + 1;\n count = Math.min(count, maxCount);\n\n var moveStart = bottom - count + 1;\n if (count != maxCount)\n this.moveRows_(top, count, moveStart);\n\n for (var i = 0; i < count; i++) {\n this.setAbsoluteCursorPosition(moveStart + i, 0);\n this.screen_.clearCursorRow();\n }\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Inserts the given number of spaces at the current cursor position.\n *\n * The cursor position is not changed.\n *\n * @param {number} count The number of spaces to insert.\n */\nhterm.Terminal.prototype.insertSpace = function(count) {\n var cursor = this.saveCursor();\n\n var ws = lib.f.getWhitespace(count || 1);\n this.screen_.insertString(ws);\n this.screen_.maybeClipCurrentRow();\n\n this.restoreCursor(cursor);\n this.clearCursorOverflow();\n};\n\n/**\n * Forward-delete the specified number of characters starting at the cursor\n * position.\n *\n * @param {integer} count The number of characters to delete.\n */\nhterm.Terminal.prototype.deleteChars = function(count) {\n var deleted = this.screen_.deleteChars(count);\n if (deleted && !this.screen_.textAttributes.isDefault()) {\n var cursor = this.saveCursor();\n this.setCursorColumn(this.screenSize.width - deleted);\n this.screen_.insertString(lib.f.getWhitespace(deleted));\n this.restoreCursor(cursor);\n }\n\n this.clearCursorOverflow();\n};\n\n/**\n * Shift rows in the scroll region upwards by a given number of lines.\n *\n * New rows are inserted at the bottom of the scroll region to fill the\n * vacated rows. The new rows not filled out with the current text attributes.\n *\n * This function does not affect the scrollback rows at all. Rows shifted\n * off the top are lost.\n *\n * The cursor position is not altered.\n *\n * @param {integer} count The number of rows to scroll.\n */\nhterm.Terminal.prototype.vtScrollUp = function(count) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorRow(this.getVTScrollTop());\n this.deleteLines(count);\n\n this.restoreCursor(cursor);\n};\n\n/**\n * Shift rows below the cursor down by a given number of lines.\n *\n * This function respects the current scroll region.\n *\n * New rows are inserted at the top of the scroll region to fill the\n * vacated rows. The new rows not filled out with the current text attributes.\n *\n * This function does not affect the scrollback rows at all. Rows shifted\n * off the bottom are lost.\n *\n * @param {integer} count The number of rows to scroll.\n */\nhterm.Terminal.prototype.vtScrollDown = function(opt_count) {\n var cursor = this.saveCursor();\n\n this.setAbsoluteCursorPosition(this.getVTScrollTop(), 0);\n this.insertLines(opt_count);\n\n this.restoreCursor(cursor);\n};\n\n\n/**\n * Set the cursor position.\n *\n * The cursor row is relative to the scroll region if the terminal has\n * 'origin mode' enabled, or relative to the addressable screen otherwise.\n *\n * @param {integer} row The new zero-based cursor row.\n * @param {integer} row The new zero-based cursor column.\n */\nhterm.Terminal.prototype.setCursorPosition = function(row, column) {\n if (this.options_.originMode) {\n this.setRelativeCursorPosition(row, column);\n } else {\n this.setAbsoluteCursorPosition(row, column);\n }\n};\n\n/**\n * Move the cursor relative to its current position.\n *\n * @param {number} row\n * @param {number} column\n */\nhterm.Terminal.prototype.setRelativeCursorPosition = function(row, column) {\n var scrollTop = this.getVTScrollTop();\n row = lib.f.clamp(row + scrollTop, scrollTop, this.getVTScrollBottom());\n column = lib.f.clamp(column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n};\n\n/**\n * Move the cursor to the specified position.\n *\n * @param {number} row\n * @param {number} column\n */\nhterm.Terminal.prototype.setAbsoluteCursorPosition = function(row, column) {\n row = lib.f.clamp(row, 0, this.screenSize.height - 1);\n column = lib.f.clamp(column, 0, this.screenSize.width - 1);\n this.screen_.setCursorPosition(row, column);\n};\n\n/**\n * Set the cursor column.\n *\n * @param {integer} column The new zero-based cursor column.\n */\nhterm.Terminal.prototype.setCursorColumn = function(column) {\n this.setAbsoluteCursorPosition(this.screen_.cursorPosition.row, column);\n};\n\n/**\n * Return the cursor column.\n *\n * @return {integer} The zero-based cursor column.\n */\nhterm.Terminal.prototype.getCursorColumn = function() {\n return this.screen_.cursorPosition.column;\n};\n\n/**\n * Set the cursor row.\n *\n * The cursor row is relative to the scroll region if the terminal has\n * 'origin mode' enabled, or relative to the addressable screen otherwise.\n *\n * @param {integer} row The new cursor row.\n */\nhterm.Terminal.prototype.setAbsoluteCursorRow = function(row) {\n this.setAbsoluteCursorPosition(row, this.screen_.cursorPosition.column);\n};\n\n/**\n * Return the cursor row.\n *\n * @return {integer} The zero-based cursor row.\n */\nhterm.Terminal.prototype.getCursorRow = function() {\n return this.screen_.cursorPosition.row;\n};\n\n/**\n * Request that the ScrollPort redraw itself soon.\n *\n * The redraw will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single redraw.\n */\nhterm.Terminal.prototype.scheduleRedraw_ = function() {\n if (this.timeouts_.redraw)\n return;\n\n var self = this;\n this.timeouts_.redraw = setTimeout(function() {\n delete self.timeouts_.redraw;\n self.scrollPort_.redraw_();\n }, 0);\n};\n\n/**\n * Request that the ScrollPort be scrolled to the bottom.\n *\n * The scroll will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single scroll.\n *\n * This affects the scrollbar position of the ScrollPort, and has nothing to\n * do with the VT scroll commands.\n */\nhterm.Terminal.prototype.scheduleScrollDown_ = function() {\n if (this.timeouts_.scrollDown)\n return;\n\n var self = this;\n this.timeouts_.scrollDown = setTimeout(function() {\n delete self.timeouts_.scrollDown;\n self.scrollPort_.scrollRowToBottom(self.getRowCount());\n }, 10);\n};\n\n/**\n * Move the cursor up a specified number of rows.\n *\n * @param {integer} count The number of rows to move the cursor.\n */\nhterm.Terminal.prototype.cursorUp = function(count) {\n return this.cursorDown(-(count || 1));\n};\n\n/**\n * Move the cursor down a specified number of rows.\n *\n * @param {integer} count The number of rows to move the cursor.\n */\nhterm.Terminal.prototype.cursorDown = function(count) {\n count = count || 1;\n var minHeight = (this.options_.originMode ? this.getVTScrollTop() : 0);\n var maxHeight = (this.options_.originMode ? this.getVTScrollBottom() :\n this.screenSize.height - 1);\n\n var row = lib.f.clamp(this.screen_.cursorPosition.row + count,\n minHeight, maxHeight);\n this.setAbsoluteCursorRow(row);\n};\n\n/**\n * Move the cursor left a specified number of columns.\n *\n * If reverse wraparound mode is enabled and the previous row wrapped into\n * the current row then we back up through the wraparound as well.\n *\n * @param {integer} count The number of columns to move the cursor.\n */\nhterm.Terminal.prototype.cursorLeft = function(count) {\n count = count || 1;\n\n if (count < 1)\n return;\n\n var currentColumn = this.screen_.cursorPosition.column;\n if (this.options_.reverseWraparound) {\n if (this.screen_.cursorPosition.overflow) {\n // If this cursor is in the right margin, consume one count to get it\n // back to the last column. This only applies when we're in reverse\n // wraparound mode.\n count--;\n this.clearCursorOverflow();\n\n if (!count)\n return;\n }\n\n var newRow = this.screen_.cursorPosition.row;\n var newColumn = currentColumn - count;\n if (newColumn < 0) {\n newRow = newRow - Math.floor(count / this.screenSize.width) - 1;\n if (newRow < 0) {\n // xterm also wraps from row 0 to the last row.\n newRow = this.screenSize.height + newRow % this.screenSize.height;\n }\n newColumn = this.screenSize.width + newColumn % this.screenSize.width;\n }\n\n this.setCursorPosition(Math.max(newRow, 0), newColumn);\n\n } else {\n var newColumn = Math.max(currentColumn - count, 0);\n this.setCursorColumn(newColumn);\n }\n};\n\n/**\n * Move the cursor right a specified number of columns.\n *\n * @param {integer} count The number of columns to move the cursor.\n */\nhterm.Terminal.prototype.cursorRight = function(count) {\n count = count || 1;\n\n if (count < 1)\n return;\n\n var column = lib.f.clamp(this.screen_.cursorPosition.column + count,\n 0, this.screenSize.width - 1);\n this.setCursorColumn(column);\n};\n\n/**\n * Reverse the foreground and background colors of the terminal.\n *\n * This only affects text that was drawn with no attributes.\n *\n * TODO(rginda): Test xterm to see if reverse is respected for text that has\n * been drawn with attributes that happen to coincide with the default\n * 'no-attribute' colors. My guess is probably not.\n *\n * @param {boolean} state The state to set.\n */\nhterm.Terminal.prototype.setReverseVideo = function(state) {\n this.options_.reverseVideo = state;\n if (state) {\n this.scrollPort_.setForegroundColor(this.prefs_.get('background-color'));\n this.scrollPort_.setBackgroundColor(this.prefs_.get('foreground-color'));\n } else {\n this.scrollPort_.setForegroundColor(this.prefs_.get('foreground-color'));\n this.scrollPort_.setBackgroundColor(this.prefs_.get('background-color'));\n }\n};\n\n/**\n * Ring the terminal bell.\n *\n * This will not play the bell audio more than once per second.\n */\nhterm.Terminal.prototype.ringBell = function() {\n this.cursorNode_.style.backgroundColor =\n this.scrollPort_.getForegroundColor();\n\n var self = this;\n setTimeout(function() {\n self.cursorNode_.style.backgroundColor = self.prefs_.get('cursor-color');\n }, 200);\n\n // bellSquelchTimeout_ affects both audio and notification bells.\n if (this.bellSquelchTimeout_)\n return;\n\n if (this.bellAudio_.getAttribute('src')) {\n this.bellAudio_.play();\n this.bellSequelchTimeout_ = setTimeout(function() {\n delete this.bellSquelchTimeout_;\n }.bind(this), 500);\n } else {\n delete this.bellSquelchTimeout_;\n }\n\n if (this.desktopNotificationBell_ && !this.document_.hasFocus()) {\n var n = hterm.notify();\n this.bellNotificationList_.push(n);\n // TODO: Should we try to raise the window here?\n n.onclick = function() { self.closeBellNotifications_(); };\n }\n};\n\n/**\n * Set the origin mode bit.\n *\n * If origin mode is on, certain VT cursor and scrolling commands measure their\n * row parameter relative to the VT scroll region. Otherwise, row 0 corresponds\n * to the top of the addressable screen.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set origin mode, false to unset.\n */\nhterm.Terminal.prototype.setOriginMode = function(state) {\n this.options_.originMode = state;\n this.setCursorPosition(0, 0);\n};\n\n/**\n * Set the insert mode bit.\n *\n * If insert mode is on, existing text beyond the cursor position will be\n * shifted right to make room for new text. Otherwise, new text overwrites\n * any existing text.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set insert mode, false to unset.\n */\nhterm.Terminal.prototype.setInsertMode = function(state) {\n this.options_.insertMode = state;\n};\n\n/**\n * Set the auto carriage return bit.\n *\n * If auto carriage return is on then a formfeed character is interpreted\n * as a newline, otherwise it's the same as a linefeed. The difference boils\n * down to whether or not the cursor column is reset.\n *\n * @param {boolean} state The state to set.\n */\nhterm.Terminal.prototype.setAutoCarriageReturn = function(state) {\n this.options_.autoCarriageReturn = state;\n};\n\n/**\n * Set the wraparound mode bit.\n *\n * If wraparound mode is on, certain VT commands will allow the cursor to wrap\n * to the start of the following row. Otherwise, the cursor is clamped to the\n * end of the screen and attempts to write past it are ignored.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set wraparound mode, false to unset.\n */\nhterm.Terminal.prototype.setWraparound = function(state) {\n this.options_.wraparound = state;\n};\n\n/**\n * Set the reverse-wraparound mode bit.\n *\n * If wraparound mode is off, certain VT commands will allow the cursor to wrap\n * to the end of the previous row. Otherwise, the cursor is clamped to column\n * 0.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set reverse-wraparound mode, false to unset.\n */\nhterm.Terminal.prototype.setReverseWraparound = function(state) {\n this.options_.reverseWraparound = state;\n};\n\n/**\n * Selects between the primary and alternate screens.\n *\n * If alternate mode is on, the alternate screen is active. Otherwise the\n * primary screen is active.\n *\n * Swapping screens has no effect on the scrollback buffer.\n *\n * Each screen maintains its own cursor position.\n *\n * Defaults to off.\n *\n * @param {boolean} state True to set alternate mode, false to unset.\n */\nhterm.Terminal.prototype.setAlternateMode = function(state) {\n var cursor = this.saveCursor();\n this.screen_ = state ? this.alternateScreen_ : this.primaryScreen_;\n\n if (this.screen_.rowsArray.length &&\n this.screen_.rowsArray[0].rowIndex != this.scrollbackRows_.length) {\n // If the screen changed sizes while we were away, our rowIndexes may\n // be incorrect.\n var offset = this.scrollbackRows_.length;\n var ary = this.screen_.rowsArray;\n for (var i = 0; i < ary.length; i++) {\n ary[i].rowIndex = offset + i;\n }\n }\n\n this.realizeWidth_(this.screenSize.width);\n this.realizeHeight_(this.screenSize.height);\n this.scrollPort_.syncScrollHeight();\n this.scrollPort_.invalidate();\n\n this.restoreCursor(cursor);\n this.scrollPort_.resize();\n};\n\n/**\n * Set the cursor-blink mode bit.\n *\n * If cursor-blink is on, the cursor will blink when it is visible. Otherwise\n * a visible cursor does not blink.\n *\n * You should make sure to turn blinking off if you're going to dispose of a\n * terminal, otherwise you'll leak a timeout.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set cursor-blink mode, false to unset.\n */\nhterm.Terminal.prototype.setCursorBlink = function(state) {\n this.options_.cursorBlink = state;\n\n if (!state && this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n\n if (this.options_.cursorVisible)\n this.setCursorVisible(true);\n};\n\n/**\n * Set the cursor-visible mode bit.\n *\n * If cursor-visible is on, the cursor will be visible. Otherwise it will not.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set cursor-visible mode, false to unset.\n */\nhterm.Terminal.prototype.setCursorVisible = function(state) {\n this.options_.cursorVisible = state;\n\n if (!state) {\n if (this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n this.cursorNode_.style.opacity = '0';\n return;\n }\n\n this.syncCursorPosition_();\n\n this.cursorNode_.style.opacity = '1';\n\n if (this.options_.cursorBlink) {\n if (this.timeouts_.cursorBlink)\n return;\n\n this.onCursorBlink_();\n } else {\n if (this.timeouts_.cursorBlink) {\n clearTimeout(this.timeouts_.cursorBlink);\n delete this.timeouts_.cursorBlink;\n }\n }\n};\n\n/**\n * Synchronizes the visible cursor and document selection with the current\n * cursor coordinates.\n */\nhterm.Terminal.prototype.syncCursorPosition_ = function() {\n var topRowIndex = this.scrollPort_.getTopRowIndex();\n var bottomRowIndex = this.scrollPort_.getBottomRowIndex(topRowIndex);\n var cursorRowIndex = this.scrollbackRows_.length +\n this.screen_.cursorPosition.row;\n\n if (cursorRowIndex > bottomRowIndex) {\n // Cursor is scrolled off screen, move it outside of the visible area.\n this.setCssVar('cursor-offset-row', '-1');\n return;\n }\n\n if (this.options_.cursorVisible &&\n this.cursorNode_.style.display == 'none') {\n // Re-display the terminal cursor if it was hidden by the mouse cursor.\n this.cursorNode_.style.display = '';\n }\n\n // Position the cursor using CSS variable math. If we do the math in JS,\n // the float math will end up being more precise than the CSS which will\n // cause the cursor tracking to be off.\n this.setCssVar(\n 'cursor-offset-row',\n `${cursorRowIndex - topRowIndex} + ` +\n `${this.scrollPort_.visibleRowTopMargin}px`);\n this.setCssVar('cursor-offset-col', this.screen_.cursorPosition.column);\n\n this.cursorNode_.setAttribute('title',\n '(' + this.screen_.cursorPosition.column +\n ', ' + this.screen_.cursorPosition.row +\n ')');\n\n // Update the caret for a11y purposes.\n var selection = this.document_.getSelection();\n if (selection && selection.isCollapsed)\n this.screen_.syncSelectionCaret(selection);\n};\n\n/**\n * Adjusts the style of this.cursorNode_ according to the current cursor shape\n * and character cell dimensions.\n */\nhterm.Terminal.prototype.restyleCursor_ = function() {\n var shape = this.cursorShape_;\n\n if (this.cursorNode_.getAttribute('focus') == 'false') {\n // Always show a block cursor when unfocused.\n shape = hterm.Terminal.cursorShape.BLOCK;\n }\n\n var style = this.cursorNode_.style;\n\n switch (shape) {\n case hterm.Terminal.cursorShape.BEAM:\n style.height = 'var(--hterm-charsize-height)';\n style.backgroundColor = 'transparent';\n style.borderBottomStyle = null;\n style.borderLeftStyle = 'solid';\n break;\n\n case hterm.Terminal.cursorShape.UNDERLINE:\n style.height = this.scrollPort_.characterSize.baseline + 'px';\n style.backgroundColor = 'transparent';\n style.borderBottomStyle = 'solid';\n // correct the size to put it exactly at the baseline\n style.borderLeftStyle = null;\n break;\n\n default:\n style.height = 'var(--hterm-charsize-height)';\n style.backgroundColor = this.cursorColor_;\n style.borderBottomStyle = null;\n style.borderLeftStyle = null;\n break;\n }\n};\n\n/**\n * Synchronizes the visible cursor with the current cursor coordinates.\n *\n * The sync will happen asynchronously, soon after the call stack winds down.\n * Multiple calls will be coalesced into a single sync.\n */\nhterm.Terminal.prototype.scheduleSyncCursorPosition_ = function() {\n if (this.timeouts_.syncCursor)\n return;\n\n var self = this;\n this.timeouts_.syncCursor = setTimeout(function() {\n self.syncCursorPosition_();\n delete self.timeouts_.syncCursor;\n }, 0);\n};\n\n/**\n * Show or hide the zoom warning.\n *\n * The zoom warning is a message warning the user that their browser zoom must\n * be set to 100% in order for hterm to function properly.\n *\n * @param {boolean} state True to show the message, false to hide it.\n */\nhterm.Terminal.prototype.showZoomWarning_ = function(state) {\n if (!this.zoomWarningNode_) {\n if (!state)\n return;\n\n this.zoomWarningNode_ = this.document_.createElement('div');\n this.zoomWarningNode_.id = 'hterm:zoom-warning';\n this.zoomWarningNode_.style.cssText = (\n 'color: black;' +\n 'background-color: #ff2222;' +\n 'font-size: large;' +\n 'border-radius: 8px;' +\n 'opacity: 0.75;' +\n 'padding: 0.2em 0.5em 0.2em 0.5em;' +\n 'top: 0.5em;' +\n 'right: 1.2em;' +\n 'position: absolute;' +\n '-webkit-text-size-adjust: none;' +\n '-webkit-user-select: none;' +\n '-moz-text-size-adjust: none;' +\n '-moz-user-select: none;');\n\n this.zoomWarningNode_.addEventListener('click', function(e) {\n this.parentNode.removeChild(this);\n });\n }\n\n this.zoomWarningNode_.textContent = lib.MessageManager.replaceReferences(\n hterm.zoomWarningMessage,\n [parseInt(this.scrollPort_.characterSize.zoomFactor * 100)]);\n\n this.zoomWarningNode_.style.fontFamily = this.prefs_.get('font-family');\n\n if (state) {\n if (!this.zoomWarningNode_.parentNode)\n this.div_.parentNode.appendChild(this.zoomWarningNode_);\n } else if (this.zoomWarningNode_.parentNode) {\n this.zoomWarningNode_.parentNode.removeChild(this.zoomWarningNode_);\n }\n};\n\n/**\n * Show the terminal overlay for a given amount of time.\n *\n * The terminal overlay appears in inverse video in a large font, centered\n * over the terminal. You should probably keep the overlay message brief,\n * since it's in a large font and you probably aren't going to check the size\n * of the terminal first.\n *\n * @param {string} msg The text (not HTML) message to display in the overlay.\n * @param {number} opt_timeout The amount of time to wait before fading out\n * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay\n * stay up forever (or until the next overlay).\n */\nhterm.Terminal.prototype.showOverlay = function(msg, opt_timeout) {\n if (!this.overlayNode_) {\n if (!this.div_)\n return;\n\n this.overlayNode_ = this.document_.createElement('div');\n this.overlayNode_.style.cssText = (\n 'border-radius: 15px;' +\n 'font-size: xx-large;' +\n 'opacity: 0.75;' +\n 'padding: 0.2em 0.5em 0.2em 0.5em;' +\n 'position: absolute;' +\n '-webkit-user-select: none;' +\n '-webkit-transition: opacity 180ms ease-in;' +\n '-moz-user-select: none;' +\n '-moz-transition: opacity 180ms ease-in;');\n\n this.overlayNode_.addEventListener('mousedown', function(e) {\n e.preventDefault();\n e.stopPropagation();\n }, true);\n }\n\n this.overlayNode_.style.color = this.prefs_.get('background-color');\n this.overlayNode_.style.backgroundColor = this.prefs_.get('foreground-color');\n this.overlayNode_.style.fontFamily = this.prefs_.get('font-family');\n\n this.overlayNode_.textContent = msg;\n this.overlayNode_.style.opacity = '0.75';\n\n if (!this.overlayNode_.parentNode)\n this.div_.appendChild(this.overlayNode_);\n\n var divSize = hterm.getClientSize(this.div_);\n var overlaySize = hterm.getClientSize(this.overlayNode_);\n\n this.overlayNode_.style.top =\n (divSize.height - overlaySize.height) / 2 + 'px';\n this.overlayNode_.style.left = (divSize.width - overlaySize.width -\n this.scrollPort_.currentScrollbarWidthPx) / 2 + 'px';\n\n var self = this;\n\n if (this.overlayTimeout_)\n clearTimeout(this.overlayTimeout_);\n\n if (opt_timeout === null)\n return;\n\n this.overlayTimeout_ = setTimeout(function() {\n self.overlayNode_.style.opacity = '0';\n self.overlayTimeout_ = setTimeout(function() {\n if (self.overlayNode_.parentNode)\n self.overlayNode_.parentNode.removeChild(self.overlayNode_);\n self.overlayTimeout_ = null;\n self.overlayNode_.style.opacity = '0.75';\n }, 200);\n }, opt_timeout || 1500);\n};\n\n/**\n * Paste from the system clipboard to the terminal.\n */\nhterm.Terminal.prototype.paste = function() {\n return hterm.pasteFromClipboard(this.document_);\n};\n\n/**\n * Copy a string to the system clipboard.\n *\n * Note: If there is a selected range in the terminal, it'll be cleared.\n *\n * @param {string} str The string to copy.\n */\nhterm.Terminal.prototype.copyStringToClipboard = function(str) {\n if (this.prefs_.get('enable-clipboard-notice'))\n setTimeout(this.showOverlay.bind(this, hterm.notifyCopyMessage, 500), 200);\n\n var copySource = this.document_.createElement('pre');\n copySource.id = 'hterm:copy-to-clipboard-source';\n copySource.textContent = str;\n copySource.style.cssText = (\n '-webkit-user-select: text;' +\n '-moz-user-select: text;' +\n 'position: absolute;' +\n 'top: -99px');\n\n this.document_.body.appendChild(copySource);\n\n var selection = this.document_.getSelection();\n var anchorNode = selection.anchorNode;\n var anchorOffset = selection.anchorOffset;\n var focusNode = selection.focusNode;\n var focusOffset = selection.focusOffset;\n\n selection.selectAllChildren(copySource);\n\n hterm.copySelectionToClipboard(this.document_);\n\n // IE doesn't support selection.extend. This means that the selection\n // won't return on IE.\n if (selection.extend) {\n selection.collapse(anchorNode, anchorOffset);\n selection.extend(focusNode, focusOffset);\n }\n\n copySource.parentNode.removeChild(copySource);\n};\n\n/**\n * Returns the selected text, or null if no text is selected.\n *\n * @return {string|null}\n */\nhterm.Terminal.prototype.getSelectionText = function() {\n var selection = this.scrollPort_.selection;\n selection.sync();\n\n if (selection.isCollapsed)\n return null;\n\n\n // Start offset measures from the beginning of the line.\n var startOffset = selection.startOffset;\n var node = selection.startNode;\n\n if (node.nodeName != 'X-ROW') {\n // If the selection doesn't start on an x-row node, then it must be\n // somewhere inside the x-row. Add any characters from previous siblings\n // into the start offset.\n\n if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') {\n // If node is the text node in a styled span, move up to the span node.\n node = node.parentNode;\n }\n\n while (node.previousSibling) {\n node = node.previousSibling;\n startOffset += hterm.TextAttributes.nodeWidth(node);\n }\n }\n\n // End offset measures from the end of the line.\n var endOffset = (hterm.TextAttributes.nodeWidth(selection.endNode) -\n selection.endOffset);\n node = selection.endNode;\n\n if (node.nodeName != 'X-ROW') {\n // If the selection doesn't end on an x-row node, then it must be\n // somewhere inside the x-row. Add any characters from following siblings\n // into the end offset.\n\n if (node.nodeName == '#text' && node.parentNode.nodeName == 'SPAN') {\n // If node is the text node in a styled span, move up to the span node.\n node = node.parentNode;\n }\n\n while (node.nextSibling) {\n node = node.nextSibling;\n endOffset += hterm.TextAttributes.nodeWidth(node);\n }\n }\n\n var rv = this.getRowsText(selection.startRow.rowIndex,\n selection.endRow.rowIndex + 1);\n return lib.wc.substring(rv, startOffset, lib.wc.strWidth(rv) - endOffset);\n};\n\n/**\n * Copy the current selection to the system clipboard, then clear it after a\n * short delay.\n */\nhterm.Terminal.prototype.copySelectionToClipboard = function() {\n var text = this.getSelectionText();\n if (text != null)\n this.copyStringToClipboard(text);\n};\n\nhterm.Terminal.prototype.overlaySize = function() {\n this.showOverlay(this.screenSize.width + 'x' + this.screenSize.height);\n};\n\n/**\n * Invoked by hterm.Terminal.Keyboard when a VT keystroke is detected.\n *\n * @param {string} string The VT string representing the keystroke, in UTF-16.\n */\nhterm.Terminal.prototype.onVTKeystroke = function(string) {\n if (this.scrollOnKeystroke_)\n this.scrollPort_.scrollRowToBottom(this.getRowCount());\n\n this.io.onVTKeystroke(this.keyboard.encode(string));\n};\n\n/**\n * Launches url in a new tab.\n *\n * @param {string} url URL to launch in a new tab.\n */\nhterm.Terminal.prototype.openUrl = function(url) {\n if (window.chrome && window.chrome.browser) {\n // For Chrome v2 apps, we need to use this API to properly open windows.\n chrome.browser.openTab({'url': url});\n } else {\n var win = window.open(url, '_blank');\n win.focus();\n }\n}\n\n/**\n * Open the selected url.\n */\nhterm.Terminal.prototype.openSelectedUrl_ = function() {\n var str = this.getSelectionText();\n\n // If there is no selection, try and expand wherever they clicked.\n if (str == null) {\n this.screen_.expandSelection(this.document_.getSelection());\n str = this.getSelectionText();\n\n // If clicking in empty space, return.\n if (str == null)\n return;\n }\n\n // Make sure URL is valid before opening.\n if (str.length > 2048 || str.search(/[\\s\\[\\](){}<>\"'\\\\^`]/) >= 0)\n return;\n\n // If the URI isn't anchored, it'll open relative to the extension.\n // We have no way of knowing the correct schema, so assume http.\n if (str.search('^[a-zA-Z][a-zA-Z0-9+.-]*://') < 0) {\n // We have to whitelist a few protocols that lack authorities and thus\n // never use the //. Like mailto.\n switch (str.split(':', 1)[0]) {\n case 'mailto':\n break;\n default:\n str = 'http://' + str;\n break;\n }\n }\n\n this.openUrl(str);\n}\n\n\n/**\n * Add the terminalRow and terminalColumn properties to mouse events and\n * then forward on to onMouse().\n *\n * The terminalRow and terminalColumn properties contain the (row, column)\n * coordinates for the mouse event.\n *\n * @param {Event} e The mouse event to handle.\n */\nhterm.Terminal.prototype.onMouse_ = function(e) {\n if (e.processedByTerminalHandler_) {\n // We register our event handlers on the document, as well as the cursor\n // and the scroll blocker. Mouse events that occur on the cursor or\n // scroll blocker will also appear on the document, but we don't want to\n // process them twice.\n //\n // We can't just prevent bubbling because that has other side effects, so\n // we decorate the event object with this property instead.\n return;\n }\n\n var reportMouseEvents = (!this.defeatMouseReports_ &&\n this.vt.mouseReport != this.vt.MOUSE_REPORT_DISABLED);\n\n e.processedByTerminalHandler_ = true;\n\n // One based row/column stored on the mouse event.\n e.terminalRow = parseInt((e.clientY - this.scrollPort_.visibleRowTopMargin) /\n this.scrollPort_.characterSize.height) + 1;\n e.terminalColumn = parseInt(e.clientX /\n this.scrollPort_.characterSize.width) + 1;\n\n if (e.type == 'mousedown' && e.terminalColumn > this.screenSize.width) {\n // Mousedown in the scrollbar area.\n return;\n }\n\n if (this.options_.cursorVisible && !reportMouseEvents) {\n // If the cursor is visible and we're not sending mouse events to the\n // host app, then we want to hide the terminal cursor when the mouse\n // cursor is over top. This keeps the terminal cursor from interfering\n // with local text selection.\n if (e.terminalRow - 1 == this.screen_.cursorPosition.row &&\n e.terminalColumn - 1 == this.screen_.cursorPosition.column) {\n this.cursorNode_.style.display = 'none';\n } else if (this.cursorNode_.style.display == 'none') {\n this.cursorNode_.style.display = '';\n }\n }\n\n if (e.type == 'mousedown') {\n if (e.altKey || !reportMouseEvents) {\n // If VT mouse reporting is disabled, or has been defeated with\n // alt-mousedown, then the mouse will act on the local selection.\n this.defeatMouseReports_ = true;\n this.setSelectionEnabled(true);\n } else {\n // Otherwise we defer ownership of the mouse to the VT.\n this.defeatMouseReports_ = false;\n this.document_.getSelection().collapseToEnd();\n this.setSelectionEnabled(false);\n e.preventDefault();\n }\n }\n\n if (!reportMouseEvents) {\n if (e.type == 'dblclick' && this.copyOnSelect) {\n this.screen_.expandSelection(this.document_.getSelection());\n this.copySelectionToClipboard(this.document_);\n }\n\n if (e.type == 'click' && !e.shiftKey && (e.ctrlKey || e.metaKey)) {\n // Debounce this event with the dblclick event. If you try to doubleclick\n // a URL to open it, Chrome will fire click then dblclick, but we won't\n // have expanded the selection text at the first click event.\n clearTimeout(this.timeouts_.openUrl);\n this.timeouts_.openUrl = setTimeout(this.openSelectedUrl_.bind(this),\n 500);\n return;\n }\n\n if (e.type == 'mousedown') {\n if ((this.mouseRightClickPaste && e.button == 2 /* right button */) ||\n e.button == this.mousePasteButton) {\n if (!this.paste())\n console.warning('Could not paste manually due to web restrictions');;\n }\n }\n\n if (e.type == 'mouseup' && e.button == 0 && this.copyOnSelect &&\n !this.document_.getSelection().isCollapsed) {\n this.copySelectionToClipboard(this.document_);\n }\n\n if ((e.type == 'mousemove' || e.type == 'mouseup') &&\n this.scrollBlockerNode_.engaged) {\n // Disengage the scroll-blocker after one of these events.\n this.scrollBlockerNode_.engaged = false;\n this.scrollBlockerNode_.style.top = '-99px';\n }\n\n // Emulate arrow key presses via scroll wheel events.\n if (this.scrollWheelArrowKeys_ && !e.shiftKey &&\n this.keyboard.applicationCursor && !this.isPrimaryScreen()) {\n if (e.type == 'wheel') {\n var delta = this.scrollPort_.scrollWheelDelta(e);\n var lines = lib.f.smartFloorDivide(\n Math.abs(delta), this.scrollPort_.characterSize.height);\n\n var data = '\\x1bO' + (delta < 0 ? 'B' : 'A');\n this.io.sendString(data.repeat(lines));\n\n e.preventDefault();\n }\n }\n } else /* if (this.reportMouseEvents) */ {\n if (!this.scrollBlockerNode_.engaged) {\n if (e.type == 'mousedown') {\n // Move the scroll-blocker into place if we want to keep the scrollport\n // from scrolling.\n this.scrollBlockerNode_.engaged = true;\n this.scrollBlockerNode_.style.top = (e.clientY - 5) + 'px';\n this.scrollBlockerNode_.style.left = (e.clientX - 5) + 'px';\n } else if (e.type == 'mousemove') {\n // Oh. This means that drag-scroll was disabled AFTER the mouse down,\n // in which case it's too late to engage the scroll-blocker.\n this.document_.getSelection().collapseToEnd();\n e.preventDefault();\n }\n }\n\n this.onMouse(e);\n }\n\n if (e.type == 'mouseup' && this.document_.getSelection().isCollapsed) {\n // Restore this on mouseup in case it was temporarily defeated with a\n // alt-mousedown. Only do this when the selection is empty so that\n // we don't immediately kill the users selection.\n this.defeatMouseReports_ = false;\n }\n};\n\n/**\n * Clients should override this if they care to know about mouse events.\n *\n * The event parameter will be a normal DOM mouse click event with additional\n * 'terminalRow' and 'terminalColumn' properties.\n *\n * @param {Event} e The mouse event to handle.\n */\nhterm.Terminal.prototype.onMouse = function(e) { };\n\n/**\n * React when focus changes.\n *\n * @param {boolean} focused True if focused, false otherwise.\n */\nhterm.Terminal.prototype.onFocusChange_ = function(focused) {\n this.cursorNode_.setAttribute('focus', focused);\n this.restyleCursor_();\n if (focused === true)\n this.closeBellNotifications_();\n};\n\n/**\n * React when the ScrollPort is scrolled.\n */\nhterm.Terminal.prototype.onScroll_ = function() {\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * React when text is pasted into the scrollPort.\n *\n * @param {Event} e The DOM paste event to handle.\n */\nhterm.Terminal.prototype.onPaste_ = function(e) {\n var data = e.text.replace(/\\n/mg, '\\r');\n data = this.keyboard.encode(data);\n if (this.options_.bracketedPaste)\n data = '\\x1b[200~' + data + '\\x1b[201~';\n\n this.io.sendString(data);\n};\n\n/**\n * React when the user tries to copy from the scrollPort.\n *\n * @param {Event} e The DOM copy event.\n */\nhterm.Terminal.prototype.onCopy_ = function(e) {\n if (!this.useDefaultWindowCopy) {\n e.preventDefault();\n setTimeout(this.copySelectionToClipboard.bind(this), 0);\n }\n};\n\n/**\n * React when the ScrollPort is resized.\n *\n * Note: This function should not directly contain code that alters the internal\n * state of the terminal. That kind of code belongs in realizeWidth or\n * realizeHeight, so that it can be executed synchronously in the case of a\n * programmatic width change.\n */\nhterm.Terminal.prototype.onResize_ = function() {\n var columnCount = Math.floor(this.scrollPort_.getScreenWidth() /\n this.scrollPort_.characterSize.width) || 0;\n var rowCount = lib.f.smartFloorDivide(this.scrollPort_.getScreenHeight(),\n this.scrollPort_.characterSize.height) || 0;\n\n if (columnCount <= 0 || rowCount <= 0) {\n // We avoid these situations since they happen sometimes when the terminal\n // gets removed from the document or during the initial load, and we can't\n // deal with that.\n // This can also happen if called before the scrollPort calculates the\n // character size, meaning we dived by 0 above and default to 0 values.\n return;\n }\n\n var isNewSize = (columnCount != this.screenSize.width ||\n rowCount != this.screenSize.height);\n\n // We do this even if the size didn't change, just to be sure everything is\n // in sync.\n this.realizeSize_(columnCount, rowCount);\n this.showZoomWarning_(this.scrollPort_.characterSize.zoomFactor != 1);\n\n if (isNewSize)\n this.overlaySize();\n\n this.restyleCursor_();\n this.scheduleSyncCursorPosition_();\n};\n\n/**\n * Service the cursor blink timeout.\n */\nhterm.Terminal.prototype.onCursorBlink_ = function() {\n if (!this.options_.cursorBlink) {\n delete this.timeouts_.cursorBlink;\n return;\n }\n\n if (this.cursorNode_.getAttribute('focus') == 'false' ||\n this.cursorNode_.style.opacity == '0') {\n this.cursorNode_.style.opacity = '1';\n this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_,\n this.cursorBlinkCycle_[0]);\n } else {\n this.cursorNode_.style.opacity = '0';\n this.timeouts_.cursorBlink = setTimeout(this.myOnCursorBlink_,\n this.cursorBlinkCycle_[1]);\n }\n};\n\n/**\n * Set the scrollbar-visible mode bit.\n *\n * If scrollbar-visible is on, the vertical scrollbar will be visible.\n * Otherwise it will not.\n *\n * Defaults to on.\n *\n * @param {boolean} state True to set scrollbar-visible mode, false to unset.\n */\nhterm.Terminal.prototype.setScrollbarVisible = function(state) {\n this.scrollPort_.setScrollbarVisible(state);\n};\n\n/**\n * Set the scroll wheel move multiplier. This will affect how fast the page\n * scrolls on wheel events.\n *\n * Defaults to 1.\n *\n * @param {number} multiplier The multiplier to set.\n */\nhterm.Terminal.prototype.setScrollWheelMoveMultipler = function(multiplier) {\n this.scrollPort_.setScrollWheelMoveMultipler(multiplier);\n};\n\n/**\n * Close all web notifications created by terminal bells.\n */\nhterm.Terminal.prototype.closeBellNotifications_ = function() {\n this.bellNotificationList_.forEach(function(n) {\n n.close();\n });\n this.bellNotificationList_.length = 0;\n};\n// SOURCE FILE: hterm/js/hterm_terminal_io.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.encodeUTF8');\n\n/**\n * Input/Output interface used by commands to communicate with the terminal.\n *\n * Commands like `nassh` and `crosh` receive an instance of this class as\n * part of their argv object. This allows them to write to and read from the\n * terminal without exposing them to an entire hterm.Terminal instance.\n *\n * The active command must override the onVTKeystroke() and sendString() methods\n * of this class in order to receive keystrokes and send output to the correct\n * destination.\n *\n * Isolating commands from the terminal provides the following benefits:\n * - Provides a mechanism to save and restore onVTKeystroke and sendString\n * handlers when invoking subcommands (see the push() and pop() methods).\n * - The isolation makes it easier to make changes in Terminal and supporting\n * classes without affecting commands.\n * - In The Future commands may run in web workers where they would only be able\n * to talk to a Terminal instance through an IPC mechanism.\n *\n * @param {hterm.Terminal}\n */\nhterm.Terminal.IO = function(terminal) {\n this.terminal_ = terminal;\n\n // The IO object to restore on IO.pop().\n this.previousIO_ = null;\n};\n\n/**\n * Show the terminal overlay for a given amount of time.\n *\n * The terminal overlay appears in inverse video in a large font, centered\n * over the terminal. You should probably keep the overlay message brief,\n * since it's in a large font and you probably aren't going to check the size\n * of the terminal first.\n *\n * @param {string} msg The text (not HTML) message to display in the overlay.\n * @param {number} opt_timeout The amount of time to wait before fading out\n * the overlay. Defaults to 1.5 seconds. Pass null to have the overlay\n * stay up forever (or until the next overlay).\n */\nhterm.Terminal.IO.prototype.showOverlay = function(message, opt_timeout) {\n this.terminal_.showOverlay(message, opt_timeout);\n};\n\n/**\n * Open an frame in the current terminal window, pointed to the specified\n * url.\n *\n * Eventually we'll probably need size/position/decoration options.\n * The user should also be able to move/resize the frame.\n *\n * @param {string} url The URL to load in the frame.\n * @param {Object} opt_options Optional frame options. Not implemented.\n */\nhterm.Terminal.IO.prototype.createFrame = function(url, opt_options) {\n return new hterm.Frame(this.terminal_, url, opt_options);\n};\n\n/**\n * Change the preference profile for the terminal.\n *\n * @param profileName {string} The name of the preference profile to activate.\n */\nhterm.Terminal.IO.prototype.setTerminalProfile = function(profileName) {\n this.terminal_.setProfile(profileName);\n};\n\n/**\n * Create a new hterm.Terminal.IO instance and make it active on the Terminal\n * object associated with this instance.\n *\n * This is used to pass control of the terminal IO off to a subcommand. The\n * IO.pop() method can be used to restore control when the subcommand completes.\n */\nhterm.Terminal.IO.prototype.push = function() {\n var io = new hterm.Terminal.IO(this.terminal_);\n io.keyboardCaptured_ = this.keyboardCaptured_;\n\n io.columnCount = this.columnCount;\n io.rowCount = this.rowCount;\n\n io.previousIO_ = this.terminal_.io;\n this.terminal_.io = io;\n\n return io;\n};\n\n/**\n * Restore the Terminal's previous IO object.\n */\nhterm.Terminal.IO.prototype.pop = function() {\n this.terminal_.io = this.previousIO_;\n};\n\n/**\n * Called when data needs to be sent to the current command.\n *\n * Clients should override this to receive notification of pending data.\n *\n * @param {string} string The data to send.\n */\nhterm.Terminal.IO.prototype.sendString = function(string) {\n // Override this.\n console.log('Unhandled sendString: ' + string);\n};\n\n/**\n * Called when a terminal keystroke is detected.\n *\n * Clients should override this to receive notification of keystrokes.\n *\n * The keystroke data will be encoded according to the 'send-encoding'\n * preference.\n *\n * @param {string} string The VT key sequence.\n */\nhterm.Terminal.IO.prototype.onVTKeystroke = function(string) {\n // Override this.\n console.log('Unobserverd VT keystroke: ' + JSON.stringify(string));\n};\n\nhterm.Terminal.IO.prototype.onTerminalResize_ = function(width, height) {\n var obj = this;\n while (obj) {\n obj.columnCount = width;\n obj.rowCount = height;\n obj = obj.previousIO_;\n }\n\n this.onTerminalResize(width, height);\n};\n\n/**\n * Called when terminal size is changed.\n *\n * Clients should override this to receive notification of resize.\n *\n * @param {string|integer} terminal width.\n * @param {string|integer} terminal height.\n */\nhterm.Terminal.IO.prototype.onTerminalResize = function(width, height) {\n // Override this.\n};\n\n/**\n * Write a UTF-8 encoded byte string to the terminal.\n *\n * @param {string} string The UTF-8 encoded string to print.\n */\nhterm.Terminal.IO.prototype.writeUTF8 = function(string) {\n if (this.terminal_.io != this)\n throw 'Attempt to print from inactive IO object.';\n\n this.terminal_.interpret(string);\n};\n\n/**\n * Write a UTF-8 encoded byte string to the terminal followed by crlf.\n *\n * @param {string} string The UTF-8 encoded string to print.\n */\nhterm.Terminal.IO.prototype.writelnUTF8 = function(string) {\n if (this.terminal_.io != this)\n throw 'Attempt to print from inactive IO object.';\n\n this.terminal_.interpret(string + '\\r\\n');\n};\n\n/**\n * Write a UTF-16 JavaScript string to the terminal.\n *\n * @param {string} string The string to print.\n */\nhterm.Terminal.IO.prototype.print =\nhterm.Terminal.IO.prototype.writeUTF16 = function(string) {\n this.writeUTF8(lib.encodeUTF8(string));\n};\n\n/**\n * Print a UTF-16 JavaScript string to the terminal followed by a newline.\n *\n * @param {string} string The string to print.\n */\nhterm.Terminal.IO.prototype.println =\nhterm.Terminal.IO.prototype.writelnUTF16 = function(string) {\n this.writelnUTF8(lib.encodeUTF8(string));\n};\n// SOURCE FILE: hterm/js/hterm_text_attributes.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors');\n\n/**\n * Constructor for TextAttribute objects.\n *\n * These objects manage a set of text attributes such as foreground/\n * background color, bold, faint, italic, blink, underline, and strikethrough.\n *\n * TextAttribute instances can be used to construct a DOM container implementing\n * the current attributes, or to test an existing DOM container for\n * compatibility with the current attributes.\n *\n * @constructor\n * @param {HTMLDocument} document The parent document to use when creating\n * new DOM containers.\n */\nhterm.TextAttributes = function(document) {\n this.document_ = document;\n // These variables contain the source of the color as either:\n // SRC_DEFAULT (use context default)\n // SRC_RGB (specified in 'rgb( r, g, b)' form)\n // number (representing the index from color palette to use)\n this.foregroundSource = this.SRC_DEFAULT;\n this.backgroundSource = this.SRC_DEFAULT;\n\n // These properties cache the value in the color table, but foregroundSource\n // and backgroundSource contain the canonical values.\n this.foreground = this.DEFAULT_COLOR;\n this.background = this.DEFAULT_COLOR;\n\n this.defaultForeground = 'rgb(255, 255, 255)';\n this.defaultBackground = 'rgb(0, 0, 0)';\n\n this.bold = false;\n this.faint = false;\n this.italic = false;\n this.blink = false;\n this.underline = false;\n this.strikethrough = false;\n this.inverse = false;\n this.invisible = false;\n this.wcNode = false;\n this.asciiNode = true;\n this.tileData = null;\n\n this.colorPalette = null;\n this.resetColorPalette();\n};\n\n/**\n * If false, we ignore the bold attribute.\n *\n * This is used for fonts that have a bold version that is a different size\n * than the normal weight version.\n */\nhterm.TextAttributes.prototype.enableBold = true;\n\n/**\n * If true, use bright colors (if available) for bold text.\n *\n * This setting is independent of the enableBold setting.\n */\nhterm.TextAttributes.prototype.enableBoldAsBright = true;\n\n/**\n * A sentinel constant meaning \"whatever the default color is in this context\".\n */\nhterm.TextAttributes.prototype.DEFAULT_COLOR = lib.f.createEnum('');\n\n/**\n * A constant string used to specify that source color is context default.\n */\nhterm.TextAttributes.prototype.SRC_DEFAULT = 'default';\n\n\n/**\n * A constant string used to specify that the source of a color is a valid\n * rgb( r, g, b) specifier.\n */\nhterm.TextAttributes.prototype.SRC_RGB = 'rgb';\n\n/**\n * The document object which should own the DOM nodes created by this instance.\n *\n * @param {HTMLDocument} document The parent document.\n */\nhterm.TextAttributes.prototype.setDocument = function(document) {\n this.document_ = document;\n};\n\n/**\n * Create a deep copy of this object.\n *\n * @return {hterm.TextAttributes} A deep copy of this object.\n */\nhterm.TextAttributes.prototype.clone = function() {\n var rv = new hterm.TextAttributes(null);\n\n for (var key in this) {\n rv[key] = this[key];\n }\n\n rv.colorPalette = this.colorPalette.concat();\n return rv;\n};\n\n/**\n * Reset the current set of attributes.\n *\n * This does not affect the palette. Use resetColorPalette() for that.\n * It also doesn't affect the tile data, it's not meant to.\n */\nhterm.TextAttributes.prototype.reset = function() {\n this.foregroundSource = this.SRC_DEFAULT;\n this.backgroundSource = this.SRC_DEFAULT;\n this.foreground = this.DEFAULT_COLOR;\n this.background = this.DEFAULT_COLOR;\n this.bold = false;\n this.faint = false;\n this.italic = false;\n this.blink = false;\n this.underline = false;\n this.strikethrough = false;\n this.inverse = false;\n this.invisible = false;\n this.wcNode = false;\n this.asciiNode = true;\n};\n\n/**\n * Reset the color palette to the default state.\n */\nhterm.TextAttributes.prototype.resetColorPalette = function() {\n this.colorPalette = lib.colors.colorPalette.concat();\n this.syncColors();\n};\n\n/**\n * Test if the current attributes describe unstyled text.\n *\n * @return {boolean} True if the current attributes describe unstyled text.\n */\nhterm.TextAttributes.prototype.isDefault = function() {\n return (this.foregroundSource == this.SRC_DEFAULT &&\n this.backgroundSource == this.SRC_DEFAULT &&\n !this.bold &&\n !this.faint &&\n !this.italic &&\n !this.blink &&\n !this.underline &&\n !this.strikethrough &&\n !this.inverse &&\n !this.invisible &&\n !this.wcNode &&\n this.asciiNode &&\n this.tileData == null);\n};\n\n/**\n * Create a DOM container (a span or a text node) with a style to match the\n * current set of attributes.\n *\n * This method will create a plain text node if the text is unstyled, or\n * an HTML span if the text is styled. Due to lack of monospace wide character\n * fonts on certain systems (e.g. Chrome OS), we need to put each wide character\n * in a span of CSS class '.wc-node' which has double column width.\n * Each vt_tiledata tile is also represented by a span with a single\n * character, with CSS classes '.tile' and '.tile_'.\n *\n * @param {string} opt_textContent Optional text content for the new container.\n * @return {HTMLNode} An HTML span or text nodes styled to match the current\n * attributes.\n */\nhterm.TextAttributes.prototype.createContainer = function(opt_textContent) {\n if (this.isDefault())\n return this.document_.createTextNode(opt_textContent);\n\n var span = this.document_.createElement('span');\n var style = span.style;\n var classes = [];\n\n if (this.foreground != this.DEFAULT_COLOR)\n style.color = this.foreground;\n\n if (this.background != this.DEFAULT_COLOR)\n style.backgroundColor = this.background;\n\n if (this.enableBold && this.bold)\n style.fontWeight = 'bold';\n\n if (this.faint)\n span.faint = true;\n\n if (this.italic)\n style.fontStyle = 'italic';\n\n if (this.blink) {\n classes.push('blink-node');\n span.blinkNode = true;\n }\n\n var textDecoration = '';\n if (this.underline) {\n textDecoration += ' underline';\n span.underline = true;\n }\n if (this.strikethrough) {\n textDecoration += ' line-through';\n span.strikethrough = true;\n }\n if (textDecoration) {\n style.textDecoration = textDecoration;\n }\n\n if (this.wcNode) {\n classes.push('wc-node');\n span.wcNode = true;\n span.asciiNode = false;\n }\n\n if (this.tileData != null) {\n classes.push('tile');\n classes.push('tile_' + this.tileData);\n span.tileNode = true;\n }\n\n if (opt_textContent)\n span.textContent = opt_textContent;\n\n if (classes.length)\n span.className = classes.join(' ');\n\n return span;\n};\n\n/**\n * Tests if the provided object (string, span or text node) has the same\n * style as this TextAttributes instance.\n *\n * This indicates that text with these attributes could be inserted directly\n * into the target DOM node.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj The object to test.\n * @return {boolean} True if the provided container has the same style as\n * this attributes instance.\n */\nhterm.TextAttributes.prototype.matchesContainer = function(obj) {\n if (typeof obj == 'string' || obj.nodeType == 3)\n return this.isDefault();\n\n var style = obj.style;\n\n // We don't want to put multiple characters in a wcNode or a tile.\n // See the comments in createContainer.\n return (!(this.wcNode || obj.wcNode) &&\n this.asciiNode == this.asciiNode &&\n !(this.tileData != null || obj.tileNode) &&\n this.foreground == style.color &&\n this.background == style.backgroundColor &&\n (this.enableBold && this.bold) == !!style.fontWeight &&\n this.blink == obj.blinkNode &&\n this.italic == !!style.fontStyle &&\n !!this.underline == !!obj.underline &&\n !!this.strikethrough == !!obj.strikethrough);\n};\n\nhterm.TextAttributes.prototype.setDefaults = function(foreground, background) {\n this.defaultForeground = foreground;\n this.defaultBackground = background;\n\n this.syncColors();\n};\n\n/**\n * Updates foreground and background properties based on current indices and\n * other state.\n *\n * @param {string} terminalForeground The terminal foreground color for use as\n * inverse text background.\n * @param {string} terminalBackground The terminal background color for use as\n * inverse text foreground.\n *\n */\nhterm.TextAttributes.prototype.syncColors = function() {\n function getBrightIndex(i) {\n if (i < 8) {\n // If the color is from the lower half of the ANSI 16, add 8.\n return i + 8;\n }\n\n // If it's not from the 16 color palette, ignore bold requests. This\n // matches the behavior of gnome-terminal.\n return i;\n }\n\n var foregroundSource = this.foregroundSource;\n var backgroundSource = this.backgroundSource;\n var defaultForeground = this.DEFAULT_COLOR;\n var defaultBackground = this.DEFAULT_COLOR;\n\n if (this.inverse) {\n foregroundSource = this.backgroundSource;\n backgroundSource = this.foregroundSource;\n // We can't inherit the container's color anymore.\n defaultForeground = this.defaultBackground;\n defaultBackground = this.defaultForeground;\n }\n\n if (this.enableBoldAsBright && this.bold) {\n if (foregroundSource != this.SRC_DEFAULT &&\n foregroundSource != this.SRC_RGB) {\n foregroundSource = getBrightIndex(foregroundSource);\n }\n }\n\n if (this.invisible) {\n foregroundSource = backgroundSource;\n defaultForeground = this.defaultBackground;\n }\n\n // Set fore/background colors unless already specified in rgb(r, g, b) form.\n if (foregroundSource != this.SRC_RGB) {\n this.foreground = ((foregroundSource == this.SRC_DEFAULT) ?\n defaultForeground : this.colorPalette[foregroundSource]);\n }\n\n if (this.faint && !this.invisible) {\n var colorToMakeFaint = ((this.foreground == this.DEFAULT_COLOR) ?\n this.defaultForeground : this.foreground);\n this.foreground = lib.colors.mix(colorToMakeFaint, 'rgb(0, 0, 0)', 0.3333);\n }\n\n if (backgroundSource != this.SRC_RGB) {\n this.background = ((backgroundSource == this.SRC_DEFAULT) ?\n defaultBackground : this.colorPalette[backgroundSource]);\n }\n};\n\n/**\n * Static method used to test if the provided objects (strings, spans or\n * text nodes) have the same style.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj1 An object to test.\n * @param {string|HTMLNode} obj2 Another object to test.\n * @return {boolean} True if the containers have the same style.\n */\nhterm.TextAttributes.containersMatch = function(obj1, obj2) {\n if (typeof obj1 == 'string')\n return hterm.TextAttributes.containerIsDefault(obj2);\n\n if (obj1.nodeType != obj2.nodeType)\n return false;\n\n if (obj1.nodeType == 3)\n return true;\n\n var style1 = obj1.style;\n var style2 = obj2.style;\n\n return (style1.color == style2.color &&\n style1.backgroundColor == style2.backgroundColor &&\n style1.fontWeight == style2.fontWeight &&\n style1.fontStyle == style2.fontStyle &&\n style1.textDecoration == style2.textDecoration);\n};\n\n/**\n * Static method to test if a given DOM container represents unstyled text.\n *\n * For the purposes of this method, a string is considered a text node.\n *\n * @param {string|HTMLNode} obj1 An object to test.\n * @return {boolean} True if the object is unstyled.\n */\nhterm.TextAttributes.containerIsDefault = function(obj) {\n return typeof obj == 'string' || obj.nodeType == 3;\n};\n\n/**\n * Static method to get the column width of a node's textContent.\n *\n * @param {HTMLElement} node The HTML element to get the width of textContent\n * from.\n * @return {integer} The column width of the node's textContent.\n */\nhterm.TextAttributes.nodeWidth = function(node) {\n if (!node.asciiNode) {\n return lib.wc.strWidth(node.textContent);\n } else {\n return node.textContent.length;\n }\n}\n\n/**\n * Static method to get the substr of a node's textContent. The start index\n * and substr width are computed in column width.\n *\n * @param {HTMLElement} node The HTML element to get the substr of textContent\n * from.\n * @param {integer} start The starting offset in column width.\n * @param {integer} width The width to capture in column width.\n * @return {integer} The extracted substr of the node's textContent.\n */\nhterm.TextAttributes.nodeSubstr = function(node, start, width) {\n if (!node.asciiNode) {\n return lib.wc.substr(node.textContent, start, width);\n } else {\n return node.textContent.substr(start, width);\n }\n}\n\n/**\n * Static method to get the substring based of a node's textContent. The\n * start index of end index are computed in column width.\n *\n * @param {HTMLElement} node The HTML element to get the substr of textContent\n * from.\n * @param {integer} start The starting offset in column width.\n * @param {integer} end The ending offset in column width.\n * @return {integer} The extracted substring of the node's textContent.\n */\nhterm.TextAttributes.nodeSubstring = function(node, start, end) {\n if (!node.asciiNode) {\n return lib.wc.substring(node.textContent, start, end);\n } else {\n return node.textContent.substring(start, end);\n }\n};\n\n/**\n * Static method to split a string into contiguous runs of single-width\n * characters and runs of double-width characters.\n *\n * @param {string} str The string to split.\n * @return {Array} An array of objects that contain substrings of str, where\n * each substring is either a contiguous runs of single-width characters\n * or a double-width character. For objects that contain a double-width\n * character, its wcNode property is set to true. For objects that contain\n * only ASCII content, its asciiNode property is set to true.\n */\nhterm.TextAttributes.splitWidecharString = function(str) {\n var rv = [];\n var base = 0, length = 0;\n var asciiNode = true;\n\n for (var i = 0; i < str.length;) {\n var c = str.codePointAt(i);\n var increment = (c <= 0xffff) ? 1 : 2;\n if (c < 128) {\n length += increment;\n } else if (lib.wc.charWidth(c) <= 1) {\n length += increment;\n asciiNode = false;\n } else {\n if (length) {\n rv.push({\n str: str.substr(base, length),\n asciiNode: asciiNode,\n });\n asciiNode = true;\n }\n rv.push({\n str: str.substr(i, increment),\n wcNode: true,\n asciiNode: false,\n });\n base = i + increment;\n length = 0;\n }\n i += increment;\n }\n\n if (length) {\n rv.push({\n str: str.substr(base, length),\n asciiNode: asciiNode,\n });\n }\n\n return rv;\n};\n// SOURCE FILE: hterm/js/hterm_vt.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.colors', 'lib.f', 'lib.UTF8Decoder',\n 'hterm.VT.CharacterMap');\n\n/**\n * Constructor for the VT escape sequence interpreter.\n *\n * The interpreter operates on a terminal object capable of performing cursor\n * move operations, painting characters, etc.\n *\n * This interpreter is intended to be compatible with xterm, though it\n * ignores some of the more esoteric escape sequences.\n *\n * Control sequences are documented in hterm/doc/ControlSequences.md.\n *\n * @param {hterm.Terminal} terminal Terminal to use with the interpreter.\n */\nhterm.VT = function(terminal) {\n /**\n * The display terminal object associated with this virtual terminal.\n */\n this.terminal = terminal;\n\n terminal.onMouse = this.onTerminalMouse_.bind(this);\n this.mouseReport = this.MOUSE_REPORT_DISABLED;\n\n // Parse state left over from the last parse. You should use the parseState\n // instance passed into your parse routine, rather than reading\n // this.parseState_ directly.\n this.parseState_ = new hterm.VT.ParseState(this.parseUnknown_);\n\n // Any \"leading modifiers\" for the escape sequence, such as '?', ' ', or the\n // other modifiers handled in this.parseCSI_.\n this.leadingModifier_ = '';\n\n // Any \"trailing modifiers\". Same character set as a leading modifier,\n // except these are found after the numeric arguments.\n this.trailingModifier_ = '';\n\n // Whether or not to respect the escape codes for setting terminal width.\n this.allowColumnWidthChanges_ = false;\n\n // The amount of time we're willing to wait for the end of an OSC sequence.\n this.oscTimeLimit_ = 20000;\n\n // Decoder to maintain UTF-8 decode state.\n this.utf8Decoder_ = new lib.UTF8Decoder();\n\n /**\n * Whether to accept the 8-bit control characters.\n *\n * An 8-bit control character is one with the eighth bit set. These\n * didn't work on 7-bit terminals so they all have two byte equivalents.\n * Most hosts still only use the two-byte versions.\n *\n * We ignore 8-bit control codes by default. This is in order to avoid\n * issues with \"accidental\" usage of codes that need to be terminated.\n * The \"accident\" usually involves cat'ing binary data.\n */\n this.enable8BitControl = false;\n\n /**\n * Whether to allow the OSC 52 sequence to write to the system clipboard.\n */\n this.enableClipboardWrite = true;\n\n /**\n * Respect the host's attempt to change the cursor blink status using\n * the DEC Private mode 12.\n */\n this.enableDec12 = false;\n\n /**\n * The expected encoding method for data received from the host.\n */\n this.characterEncoding = 'utf-8';\n\n /**\n * Max length of an unterminated DCS, OSC, PM or APC sequence before we give\n * up and ignore the code.\n *\n * These all end with a String Terminator (ST, '\\x9c', ESC '\\\\') or\n * (BEL, '\\x07') character, hence the \"string sequence\" moniker.\n */\n this.maxStringSequence = 1024;\n\n /**\n * If true, emit warnings when we encounter a control character or escape\n * sequence that we don't recognize or explicitly ignore.\n */\n this.warnUnimplemented = true;\n\n /**\n * The set of available character maps (used by G0...G3 below).\n */\n this.characterMaps = new hterm.VT.CharacterMaps();\n\n /**\n * The default G0...G3 character maps.\n * We default to the US/ASCII map everywhere as that aligns with other\n * terminals, and it makes it harder to accidentally switch to the graphics\n * character map (Ctrl-N). Any program that wants to use the graphics map\n * will usually select it anyways since there's no guarantee what state any\n * of the maps are in at any particular time.\n */\n this.G0 = this.G1 = this.G2 = this.G3 =\n this.characterMaps.getMap('B');\n\n /**\n * The 7-bit visible character set.\n *\n * This is a mapping from inbound data to display glyph. The GL set\n * contains the 94 bytes from 0x21 to 0x7e.\n *\n * The default GL set is 'B', US ASCII.\n */\n this.GL = 'G0';\n\n /**\n * The 8-bit visible character set.\n *\n * This is a mapping from inbound data to display glyph. The GR set\n * contains the 94 bytes from 0xa1 to 0xfe.\n */\n this.GR = 'G0';\n\n /**\n * The current encoding of the terminal.\n *\n * We only support ECMA-35 and UTF-8, so go with a boolean here.\n * The encoding can be locked too.\n */\n this.codingSystemUtf8_ = false;\n this.codingSystemLocked_ = false;\n\n // Construct a regular expression to match the known one-byte control chars.\n // This is used in parseUnknown_ to quickly scan a string for the next\n // control character.\n this.cc1Pattern_ = null;\n this.updateEncodingState_();\n\n // Saved state used in DECSC.\n //\n // This is a place to store a copy VT state, it is *not* the active state.\n this.savedState_ = new hterm.VT.CursorState(this);\n};\n\n/**\n * No mouse events.\n */\nhterm.VT.prototype.MOUSE_REPORT_DISABLED = 0;\n\n/**\n * DECSET mode 1000.\n *\n * Report mouse down/up events only.\n */\nhterm.VT.prototype.MOUSE_REPORT_CLICK = 1;\n\n/**\n * DECSET mode 1002.\n *\n * Report mouse down/up and movement while a button is down.\n */\nhterm.VT.prototype.MOUSE_REPORT_DRAG = 3;\n\n/**\n * ParseState constructor.\n *\n * This object tracks the current state of the parse. It has fields for the\n * current buffer, position in the buffer, and the parse function.\n *\n * @param {function} defaultFunc The default parser function.\n * @param {string} opt_buf Optional string to use as the current buffer.\n */\nhterm.VT.ParseState = function(defaultFunction, opt_buf) {\n this.defaultFunction = defaultFunction;\n this.buf = opt_buf || null;\n this.pos = 0;\n this.func = defaultFunction;\n this.args = [];\n};\n\n/**\n * Reset the parser function, buffer, and position.\n */\nhterm.VT.ParseState.prototype.reset = function(opt_buf) {\n this.resetParseFunction();\n this.resetBuf(opt_buf || '');\n this.resetArguments();\n};\n\n/**\n * Reset the parser function only.\n */\nhterm.VT.ParseState.prototype.resetParseFunction = function() {\n this.func = this.defaultFunction;\n};\n\n/**\n * Reset the buffer and position only.\n *\n * @param {string} buf Optional new value for buf, defaults to null.\n */\nhterm.VT.ParseState.prototype.resetBuf = function(opt_buf) {\n this.buf = (typeof opt_buf == 'string') ? opt_buf : null;\n this.pos = 0;\n};\n\n/**\n * Reset the arguments list only.\n *\n * @param {string} opt_arg_zero Optional initial value for args[0].\n */\nhterm.VT.ParseState.prototype.resetArguments = function(opt_arg_zero) {\n this.args.length = 0;\n if (typeof opt_arg_zero != 'undefined')\n this.args[0] = opt_arg_zero;\n};\n\n/**\n * Get an argument as an integer.\n *\n * @param {number} argnum The argument number to retrieve.\n */\nhterm.VT.ParseState.prototype.iarg = function(argnum, defaultValue) {\n var str = this.args[argnum];\n if (str) {\n var ret = parseInt(str, 10);\n // An argument of zero is treated as the default value.\n if (ret == 0)\n ret = defaultValue;\n return ret;\n }\n return defaultValue;\n};\n\n/**\n * Advance the parse position.\n *\n * @param {integer} count The number of bytes to advance.\n */\nhterm.VT.ParseState.prototype.advance = function(count) {\n this.pos += count;\n};\n\n/**\n * Return the remaining portion of the buffer without affecting the parse\n * position.\n *\n * @return {string} The remaining portion of the buffer.\n */\nhterm.VT.ParseState.prototype.peekRemainingBuf = function() {\n return this.buf.substr(this.pos);\n};\n\n/**\n * Return the next single character in the buffer without affecting the parse\n * position.\n *\n * @return {string} The next character in the buffer.\n */\nhterm.VT.ParseState.prototype.peekChar = function() {\n return this.buf.substr(this.pos, 1);\n};\n\n/**\n * Return the next single character in the buffer and advance the parse\n * position one byte.\n *\n * @return {string} The next character in the buffer.\n */\nhterm.VT.ParseState.prototype.consumeChar = function() {\n return this.buf.substr(this.pos++, 1);\n};\n\n/**\n * Return true if the buffer is empty, or the position is past the end.\n */\nhterm.VT.ParseState.prototype.isComplete = function() {\n return this.buf == null || this.buf.length <= this.pos;\n};\n\nhterm.VT.CursorState = function(vt) {\n this.vt_ = vt;\n this.save();\n};\n\nhterm.VT.CursorState.prototype.save = function() {\n this.cursor = this.vt_.terminal.saveCursor();\n\n this.textAttributes = this.vt_.terminal.getTextAttributes().clone();\n\n this.GL = this.vt_.GL;\n this.GR = this.vt_.GR;\n\n this.G0 = this.vt_.G0;\n this.G1 = this.vt_.G1;\n this.G2 = this.vt_.G2;\n this.G3 = this.vt_.G3;\n};\n\nhterm.VT.CursorState.prototype.restore = function() {\n this.vt_.terminal.restoreCursor(this.cursor);\n\n this.vt_.terminal.setTextAttributes(this.textAttributes.clone());\n\n this.vt_.GL = this.GL;\n this.vt_.GR = this.GR;\n\n this.vt_.G0 = this.G0;\n this.vt_.G1 = this.G1;\n this.vt_.G2 = this.G2;\n this.vt_.G3 = this.G3;\n};\n\nhterm.VT.prototype.reset = function() {\n this.G0 = this.characterMaps.getMap('B');\n this.G1 = this.characterMaps.getMap('0');\n this.G2 = this.characterMaps.getMap('B');\n this.G3 = this.characterMaps.getMap('B');\n\n this.GL = 'G0';\n this.GR = 'G0';\n\n this.savedState_ = new hterm.VT.CursorState(this);\n\n this.mouseReport = this.MOUSE_REPORT_DISABLED;\n};\n\n/**\n * Handle terminal mouse events.\n *\n * See the \"Mouse Tracking\" section of [xterm].\n */\nhterm.VT.prototype.onTerminalMouse_ = function(e) {\n if (this.mouseReport == this.MOUSE_REPORT_DISABLED)\n return;\n\n // Temporary storage for our response.\n var response;\n\n // Modifier key state.\n var mod = 0;\n if (e.shiftKey)\n mod |= 4;\n if (e.metaKey || (this.terminal.keyboard.altIsMeta && e.altKey))\n mod |= 8;\n if (e.ctrlKey)\n mod |= 16;\n\n // TODO(rginda): We should also support mode 1005 and/or 1006 to extend the\n // coordinate space. Though, after poking around just a little, I wasn't\n // able to get vi or emacs to use either of these modes.\n var x = String.fromCharCode(lib.f.clamp(e.terminalColumn + 32, 32, 255));\n var y = String.fromCharCode(lib.f.clamp(e.terminalRow + 32, 32, 255));\n\n switch (e.type) {\n case 'wheel':\n // Mouse wheel is treated as button 1 or 2 plus an additional 64.\n b = (((e.deltaY * -1) > 0) ? 0 : 1) + 96;\n b |= mod;\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n\n // Keep the terminal from scrolling.\n e.preventDefault();\n break;\n\n case 'mousedown':\n // Buttons are encoded as button number plus 32.\n var b = Math.min(e.button, 2) + 32;\n\n // And mix in the modifier keys.\n b |= mod;\n\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n break;\n\n case 'mouseup':\n // Mouse up has no indication of which button was released.\n response = '\\x1b[M\\x23' + x + y;\n break;\n\n case 'mousemove':\n if (this.mouseReport == this.MOUSE_REPORT_DRAG && e.buttons) {\n // Standard button bits. The XTerm protocol only reports the first\n // button press (e.g. if left & right are pressed, right is ignored),\n // and it only supports the first three buttons. If none of them are\n // pressed, then XTerm flags it as a release. We'll do the same.\n b = 32;\n\n // Priority here matches XTerm: left, middle, right.\n if (e.buttons & 0x1) {\n // Report left button.\n b += 0;\n } else if (e.buttons & 0x4) {\n // Report middle button.\n b += 1;\n } else if (e.buttons & 0x2) {\n // Report right button.\n b += 2;\n } else {\n // Release higher buttons.\n b += 3;\n }\n\n // Add 32 to indicate mouse motion.\n b += 32;\n\n // And mix in the modifier keys.\n b |= mod;\n\n response = '\\x1b[M' + String.fromCharCode(b) + x + y;\n }\n\n break;\n\n case 'click':\n case 'dblclick':\n break;\n\n default:\n console.error('Unknown mouse event: ' + e.type, e);\n break;\n }\n\n if (response)\n this.terminal.io.sendString(response);\n};\n\n/**\n * Interpret a string of characters, displaying the results on the associated\n * terminal object.\n *\n * The buffer will be decoded according to the 'receive-encoding' preference.\n */\nhterm.VT.prototype.interpret = function(buf) {\n this.parseState_.resetBuf(this.decode(buf));\n\n while (!this.parseState_.isComplete()) {\n var func = this.parseState_.func;\n var pos = this.parseState_.pos;\n var buf = this.parseState_.buf;\n\n this.parseState_.func.call(this, this.parseState_);\n\n if (this.parseState_.func == func && this.parseState_.pos == pos &&\n this.parseState_.buf == buf) {\n throw 'Parser did not alter the state!';\n }\n }\n};\n\n/**\n * Decode a string according to the 'receive-encoding' preference.\n */\nhterm.VT.prototype.decode = function(str) {\n if (this.characterEncoding == 'utf-8')\n return this.decodeUTF8(str);\n\n return str;\n};\n\n/**\n * Encode a UTF-16 string as UTF-8.\n *\n * See also: https://en.wikipedia.org/wiki/UTF-16\n */\nhterm.VT.prototype.encodeUTF8 = function(str) {\n return lib.encodeUTF8(str);\n};\n\n/**\n * Decode a UTF-8 string into UTF-16.\n */\nhterm.VT.prototype.decodeUTF8 = function(str) {\n return this.utf8Decoder_.decode(str);\n};\n\n/**\n * Set the encoding of the terminal.\n *\n * @param {string} encoding The name of the encoding to set.\n */\nhterm.VT.prototype.setEncoding = function(encoding) {\n switch (encoding) {\n default:\n console.warn('Invalid value for \"terminal-encoding\": ' + encoding);\n // Fall through.\n case 'iso-2022':\n this.codingSystemUtf8_ = false;\n this.codingSystemLocked_ = false;\n break;\n case 'utf-8-locked':\n this.codingSystemUtf8_ = true;\n this.codingSystemLocked_ = true;\n break;\n case 'utf-8':\n this.codingSystemUtf8_ = true;\n this.codingSystemLocked_ = false;\n break;\n }\n\n this.updateEncodingState_();\n};\n\n/**\n * Refresh internal state when the encoding changes.\n */\nhterm.VT.prototype.updateEncodingState_ = function() {\n // If we're in UTF8 mode, don't suport 8-bit escape sequences as we'll never\n // see those -- everything should be UTF8!\n var cc1 = Object.keys(hterm.VT.CC1)\n .filter((e) => !this.codingSystemUtf8_ || e.charCodeAt() < 0x80)\n .map((e) => '\\\\x' + lib.f.zpad(e.charCodeAt().toString(16), 2))\n .join('');\n this.cc1Pattern_ = new RegExp(`[${cc1}]`);\n};\n\n/**\n * The default parse function.\n *\n * This will scan the string for the first 1-byte control character (C0/C1\n * characters from [CTRL]). Any plain text coming before the code will be\n * printed to the terminal, then the control character will be dispatched.\n */\nhterm.VT.prototype.parseUnknown_ = function(parseState) {\n var self = this;\n\n function print(str) {\n if (!self.codingSystemUtf8_ && self[self.GL].GL)\n str = self[self.GL].GL(str);\n\n self.terminal.print(str);\n };\n\n // Search for the next contiguous block of plain text.\n var buf = parseState.peekRemainingBuf();\n var nextControl = buf.search(this.cc1Pattern_);\n\n if (nextControl == 0) {\n // We've stumbled right into a control character.\n this.dispatch('CC1', buf.substr(0, 1), parseState);\n parseState.advance(1);\n return;\n }\n\n if (nextControl == -1) {\n // There are no control characters in this string.\n print(buf);\n parseState.reset();\n return;\n }\n\n print(buf.substr(0, nextControl));\n this.dispatch('CC1', buf.substr(nextControl, 1), parseState);\n parseState.advance(nextControl + 1);\n};\n\n/**\n * Parse a Control Sequence Introducer code and dispatch it.\n *\n * See [CSI] for some useful information about these codes.\n */\nhterm.VT.prototype.parseCSI_ = function(parseState) {\n var ch = parseState.peekChar();\n var args = parseState.args;\n\n if (ch >= '@' && ch <= '~') {\n // This is the final character.\n this.dispatch('CSI', this.leadingModifier_ + this.trailingModifier_ + ch,\n parseState);\n parseState.resetParseFunction();\n\n } else if (ch == ';') {\n // Parameter delimiter.\n if (this.trailingModifier_) {\n // Parameter delimiter after the trailing modifier. That's a paddlin'.\n parseState.resetParseFunction();\n\n } else {\n if (!args.length) {\n // They omitted the first param, we need to supply it.\n args.push('');\n }\n\n args.push('');\n }\n\n } else if (ch >= '0' && ch <= '9') {\n // Next byte in the current parameter.\n\n if (this.trailingModifier_) {\n // Numeric parameter after the trailing modifier. That's a paddlin'.\n parseState.resetParseFunction();\n } else {\n if (!args.length) {\n args[0] = ch;\n } else {\n args[args.length - 1] += ch;\n }\n }\n\n } else if (ch >= ' ' && ch <= '?' && ch != ':') {\n // Modifier character.\n if (!args.length) {\n this.leadingModifier_ += ch;\n } else {\n this.trailingModifier_ += ch;\n }\n\n } else if (this.cc1Pattern_.test(ch)) {\n // Control character.\n this.dispatch('CC1', ch, parseState);\n\n } else {\n // Unexpected character in sequence, bail out.\n parseState.resetParseFunction();\n }\n\n parseState.advance(1);\n};\n\n/**\n * Skip over the string until the next String Terminator (ST, 'ESC \\') or\n * Bell (BEL, '\\x07').\n *\n * The string is accumulated in parseState.args[0]. Make sure to reset the\n * arguments (with parseState.resetArguments) before starting the parse.\n *\n * You can detect that parsing in complete by checking that the parse\n * function has changed back to the default parse function.\n *\n * If we encounter more than maxStringSequence characters, we send back\n * the unterminated sequence to be re-parsed with the default parser function.\n *\n * @return {boolean} If true, parsing is ongoing or complete. If false, we've\n * exceeded the max string sequence.\n */\nhterm.VT.prototype.parseUntilStringTerminator_ = function(parseState) {\n var buf = parseState.peekRemainingBuf();\n var nextTerminator = buf.search(/(\\x1b\\\\|\\x07)/);\n var args = parseState.args;\n\n if (!args.length) {\n args[0] = '';\n args[1] = new Date();\n }\n\n if (nextTerminator == -1) {\n // No terminator here, have to wait for the next string.\n\n args[0] += buf;\n\n var abortReason;\n\n if (args[0].length > this.maxStringSequence)\n abortReason = 'too long: ' + args[0].length;\n\n if (args[0].indexOf('\\x1b') != -1)\n abortReason = 'embedded escape: ' + args[0].indexOf('\\x1b');\n\n if (new Date() - args[1] > this.oscTimeLimit_)\n abortReason = 'timeout expired: ' + new Date() - args[1];\n\n if (abortReason) {\n console.log('parseUntilStringTerminator_: aborting: ' + abortReason,\n args[0]);\n parseState.reset(args[0]);\n return false;\n }\n\n parseState.advance(buf.length);\n return true;\n }\n\n if (args[0].length + nextTerminator > this.maxStringSequence) {\n // We found the end of the sequence, but we still think it's too long.\n parseState.reset(args[0] + buf);\n return false;\n }\n\n args[0] += buf.substr(0, nextTerminator);\n\n parseState.resetParseFunction();\n parseState.advance(nextTerminator +\n (buf.substr(nextTerminator, 1) == '\\x1b' ? 2 : 1));\n\n return true;\n};\n\n/**\n * Dispatch to the function that handles a given CC1, ESC, or CSI or VT52 code.\n */\nhterm.VT.prototype.dispatch = function(type, code, parseState) {\n var handler = hterm.VT[type][code];\n if (!handler) {\n if (this.warnUnimplemented)\n console.warn('Unknown ' + type + ' code: ' + JSON.stringify(code));\n return;\n }\n\n if (handler == hterm.VT.ignore) {\n if (this.warnUnimplemented)\n console.warn('Ignored ' + type + ' code: ' + JSON.stringify(code));\n return;\n }\n\n if (type == 'CC1' && code > '\\x7f' && !this.enable8BitControl) {\n // It's kind of a hack to put this here, but...\n //\n // If we're dispatching a 'CC1' code, and it's got the eighth bit set,\n // but we're not supposed to handle 8-bit codes? Just ignore it.\n //\n // This prevents an errant (DCS, '\\x90'), (OSC, '\\x9d'), (PM, '\\x9e') or\n // (APC, '\\x9f') from locking up the terminal waiting for its expected\n // (ST, '\\x9c') or (BEL, '\\x07').\n console.warn('Ignoring 8-bit control code: 0x' +\n code.charCodeAt(0).toString(16));\n return;\n }\n\n handler.apply(this, [parseState, code]);\n};\n\n/**\n * Set one of the ANSI defined terminal mode bits.\n *\n * Invoked in response to SM/RM.\n *\n * Unexpected and unimplemented values are silently ignored.\n */\nhterm.VT.prototype.setANSIMode = function(code, state) {\n if (code == 4) { // Insert Mode (IRM)\n this.terminal.setInsertMode(state);\n } else if (code == 20) { // Automatic Newline (LNM)\n this.terminal.setAutoCarriageReturn(state);\n } else if (this.warnUnimplemented) {\n console.warn('Unimplemented ANSI Mode: ' + code);\n }\n};\n\n/**\n * Set or reset one of the DEC Private modes.\n *\n * Invoked in response to DECSET/DECRST.\n */\nhterm.VT.prototype.setDECMode = function(code, state) {\n switch (parseInt(code, 10)) {\n case 1: // DECCKM\n this.terminal.keyboard.applicationCursor = state;\n break;\n\n case 3: // DECCOLM\n if (this.allowColumnWidthChanges_) {\n this.terminal.setWidth(state ? 132 : 80);\n\n this.terminal.clearHome();\n this.terminal.setVTScrollRegion(null, null);\n }\n break;\n\n case 5: // DECSCNM\n this.terminal.setReverseVideo(state);\n break;\n\n case 6: // DECOM\n this.terminal.setOriginMode(state);\n break;\n\n case 7: // DECAWM\n this.terminal.setWraparound(state);\n break;\n\n case 12: // Start blinking cursor\n if (this.enableDec12)\n this.terminal.setCursorBlink(state);\n break;\n\n case 25: // DECTCEM\n this.terminal.setCursorVisible(state);\n break;\n\n case 30: // Show scrollbar\n this.terminal.setScrollbarVisible(state);\n break;\n\n case 40: // Allow 80 - 132 (DECCOLM) Mode\n this.terminal.allowColumnWidthChanges_ = state;\n break;\n\n case 45: // Reverse-wraparound Mode\n this.terminal.setReverseWraparound(state);\n break;\n\n case 67: // Backarrow key sends backspace (DECBKM)\n this.terminal.keyboard.backspaceSendsBackspace = state;\n break;\n\n case 1000: // Report on mouse clicks only.\n this.mouseReport = (\n state ? this.MOUSE_REPORT_CLICK : this.MOUSE_REPORT_DISABLED);\n this.terminal.syncMouseStyle();\n break;\n\n case 1002: // Report on mouse clicks and drags\n this.mouseReport = (\n state ? this.MOUSE_REPORT_DRAG : this.MOUSE_REPORT_DISABLED);\n this.terminal.syncMouseStyle();\n break;\n\n case 1010: // Scroll to bottom on tty output\n this.terminal.scrollOnOutput = state;\n break;\n\n case 1011: // Scroll to bottom on key press\n this.terminal.scrollOnKeystroke = state;\n break;\n\n case 1036: // Send ESC when Meta modifies a key\n this.terminal.keyboard.metaSendsEscape = state;\n break;\n\n case 1039: // Send ESC when Alt modifies a key\n if (state) {\n if (!this.terminal.keyboard.previousAltSendsWhat_) {\n this.terminal.keyboard.previousAltSendsWhat_ =\n this.terminal.keyboard.altSendsWhat;\n this.terminal.keyboard.altSendsWhat = 'escape';\n }\n } else if (this.terminal.keyboard.previousAltSendsWhat_) {\n this.terminal.keyboard.altSendsWhat =\n this.terminal.keyboard.previousAltSendsWhat_;\n this.terminal.keyboard.previousAltSendsWhat_ = null;\n }\n break;\n\n case 47: // Use Alternate Screen Buffer\n case 1047:\n this.terminal.setAlternateMode(state);\n break;\n\n case 1048: // Save cursor as in DECSC.\n this.savedState_.save();\n\n case 1049: // 1047 + 1048 + clear.\n if (state) {\n this.savedState_.save();\n this.terminal.setAlternateMode(state);\n this.terminal.clear();\n } else {\n this.terminal.setAlternateMode(state);\n this.savedState_.restore();\n }\n\n break;\n\n case 2004: // Bracketed paste mode.\n this.terminal.setBracketedPaste(state);\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unimplemented DEC Private Mode: ' + code);\n break;\n }\n};\n\n/**\n * Function shared by control characters and escape sequences that are\n * ignored.\n */\nhterm.VT.ignore = function() {};\n\n/**\n * Collection of control characters expressed in a single byte.\n *\n * This includes the characters from the C0 and C1 sets (see [CTRL]) that we\n * care about. Two byte versions of the C1 codes are defined in the\n * hterm.VT.ESC collection.\n *\n * The 'CC1' mnemonic here refers to the fact that these are one-byte Control\n * Codes. It's only used in this source file and not defined in any of the\n * referenced documents.\n */\nhterm.VT.CC1 = {};\n\n/**\n * Collection of two-byte and three-byte sequences starting with ESC.\n */\nhterm.VT.ESC = {};\n\n/**\n * Collection of CSI (Control Sequence Introducer) sequences.\n *\n * These sequences begin with 'ESC [', and may take zero or more arguments.\n */\nhterm.VT.CSI = {};\n\n/**\n * Collection of OSC (Operating System Control) sequences.\n *\n * These sequences begin with 'ESC ]', followed by a function number and a\n * string terminated by either ST or BEL.\n */\nhterm.VT.OSC = {};\n\n/**\n * Collection of VT52 sequences.\n *\n * When in VT52 mode, other sequences are disabled.\n */\nhterm.VT.VT52 = {};\n\n/**\n * Null (NUL).\n *\n * Silently ignored.\n */\nhterm.VT.CC1['\\x00'] = hterm.VT.ignore;\n\n/**\n * Enquiry (ENQ).\n *\n * Transmit answerback message.\n *\n * The default answerback message in xterm is an empty string, so we just\n * ignore this.\n */\nhterm.VT.CC1['\\x05'] = hterm.VT.ignore;\n\n/**\n * Ring Bell (BEL).\n */\nhterm.VT.CC1['\\x07'] = function() {\n this.terminal.ringBell();\n};\n\n/**\n * Backspace (BS).\n *\n * Move the cursor to the left one character position, unless it is at the\n * left margin, in which case no action occurs.\n */\nhterm.VT.CC1['\\x08'] = function() {\n this.terminal.cursorLeft(1);\n};\n\n/**\n * Horizontal Tab (HT).\n *\n * Move the cursor to the next tab stop, or to the right margin if no further\n * tab stops are present on the line.\n */\nhterm.VT.CC1['\\x09'] = function() {\n this.terminal.forwardTabStop();\n};\n\n/**\n * Line Feed (LF).\n *\n * This code causes a line feed or a new line operation. See Automatic\n * Newline (LNM).\n */\nhterm.VT.CC1['\\x0a'] = function() {\n this.terminal.formFeed();\n};\n\n/**\n * Vertical Tab (VT).\n *\n * Interpreted as LF.\n */\nhterm.VT.CC1['\\x0b'] = hterm.VT.CC1['\\x0a'];\n\n/**\n * Form Feed (FF).\n *\n * Interpreted as LF.\n */\nhterm.VT.CC1['\\x0c'] = hterm.VT.CC1['\\x0a'];\n\n/**\n * Carriage Return (CR).\n *\n * Move cursor to the left margin on the current line.\n */\nhterm.VT.CC1['\\x0d'] = function() {\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Shift Out (SO), aka Lock Shift 0 (LS1).\n *\n * Invoke G1 character set in GL.\n */\nhterm.VT.CC1['\\x0e'] = function() {\n this.GL = 'G1';\n};\n\n/**\n * Shift In (SI), aka Lock Shift 0 (LS0).\n *\n * Invoke G0 character set in GL.\n */\nhterm.VT.CC1['\\x0f'] = function() {\n this.GL = 'G0';\n};\n\n/**\n * Transmit On (XON).\n *\n * Not currently implemented.\n *\n * TODO(rginda): Implement?\n */\nhterm.VT.CC1['\\x11'] = hterm.VT.ignore;\n\n/**\n * Transmit Off (XOFF).\n *\n * Not currently implemented.\n *\n * TODO(rginda): Implement?\n */\nhterm.VT.CC1['\\x13'] = hterm.VT.ignore;\n\n/**\n * Cancel (CAN).\n *\n * If sent during a control sequence, the sequence is immediately terminated\n * and not executed.\n *\n * It also causes the error character to be displayed.\n */\nhterm.VT.CC1['\\x18'] = function(parseState) {\n // If we've shifted in the G1 character set, shift it back out to\n // the default character set.\n if (this.GL == 'G1') {\n this.GL = 'G0';\n }\n parseState.resetParseFunction();\n this.terminal.print('?');\n};\n\n/**\n * Substitute (SUB).\n *\n * Interpreted as CAN.\n */\nhterm.VT.CC1['\\x1a'] = hterm.VT.CC1['\\x18'];\n\n/**\n * Escape (ESC).\n */\nhterm.VT.CC1['\\x1b'] = function(parseState) {\n function parseESC(parseState) {\n var ch = parseState.consumeChar();\n\n if (ch == '\\x1b')\n return;\n\n this.dispatch('ESC', ch, parseState);\n\n if (parseState.func == parseESC)\n parseState.resetParseFunction();\n };\n\n parseState.func = parseESC;\n};\n\n/**\n * Delete (DEL).\n */\nhterm.VT.CC1['\\x7f'] = hterm.VT.ignore;\n\n// 8 bit control characters and their two byte equivalents, below...\n\n/**\n * Index (IND).\n *\n * Like newline, only keep the X position\n */\nhterm.VT.CC1['\\x84'] =\nhterm.VT.ESC['D'] = function() {\n this.terminal.lineFeed();\n};\n\n/**\n * Next Line (NEL).\n *\n * Like newline, but doesn't add lines.\n */\nhterm.VT.CC1['\\x85'] =\nhterm.VT.ESC['E'] = function() {\n this.terminal.setCursorColumn(0);\n this.terminal.cursorDown(1);\n};\n\n/**\n * Horizontal Tabulation Set (HTS).\n */\nhterm.VT.CC1['\\x88'] =\nhterm.VT.ESC['H'] = function() {\n this.terminal.setTabStop(this.terminal.getCursorColumn());\n};\n\n/**\n * Reverse Index (RI).\n *\n * Move up one line.\n */\nhterm.VT.CC1['\\x8d'] =\nhterm.VT.ESC['M'] = function() {\n this.terminal.reverseLineFeed();\n};\n\n/**\n * Single Shift 2 (SS2).\n *\n * Select of G2 Character Set for the next character only.\n *\n * Not currently implemented.\n */\nhterm.VT.CC1['\\x8e'] =\nhterm.VT.ESC['N'] = hterm.VT.ignore;\n\n/**\n * Single Shift 3 (SS3).\n *\n * Select of G3 Character Set for the next character only.\n *\n * Not currently implemented.\n */\nhterm.VT.CC1['\\x8f'] =\nhterm.VT.ESC['O'] = hterm.VT.ignore;\n\n/**\n * Device Control String (DCS).\n *\n * Indicate a DCS sequence. See Device-Control functions in [XTERM].\n * Not currently implemented.\n *\n * TODO(rginda): Consider implementing DECRQSS, the rest don't seem applicable.\n */\nhterm.VT.CC1['\\x90'] =\nhterm.VT.ESC['P'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * Start of Guarded Area (SPA).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x96'] =\nhterm.VT.ESC['V'] = hterm.VT.ignore;\n\n/**\n * End of Guarded Area (EPA).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x97'] =\nhterm.VT.ESC['W'] = hterm.VT.ignore;\n\n/**\n * Start of String (SOS).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x98'] =\nhterm.VT.ESC['X'] = hterm.VT.ignore;\n\n/**\n * Single Character Introducer (SCI, also DECID).\n *\n * Return Terminal ID. Obsolete form of 'ESC [ c' (DA).\n */\nhterm.VT.CC1['\\x9a'] =\nhterm.VT.ESC['Z'] = function() {\n this.terminal.io.sendString('\\x1b[?1;2c');\n};\n\n/**\n * Control Sequence Introducer (CSI).\n *\n * The lead into most escape sequences. See [CSI].\n */\nhterm.VT.CC1['\\x9b'] =\nhterm.VT.ESC['['] = function(parseState) {\n parseState.resetArguments();\n this.leadingModifier_ = '';\n this.trailingModifier_ = '';\n parseState.func = this.parseCSI_;\n};\n\n/**\n * String Terminator (ST).\n *\n * Used to terminate DCS/OSC/PM/APC commands which may take string arguments.\n *\n * We don't directly handle it here, as it's only used to terminate other\n * sequences. See the 'parseUntilStringTerminator_' method.\n */\nhterm.VT.CC1['\\x9c'] =\nhterm.VT.ESC['\\\\'] = hterm.VT.ignore;\n\n/**\n * Operating System Command (OSC).\n *\n * Commands relating to the operating system.\n */\nhterm.VT.CC1['\\x9d'] =\nhterm.VT.ESC[']'] = function(parseState) {\n parseState.resetArguments();\n\n function parseOSC(parseState) {\n if (!this.parseUntilStringTerminator_(parseState)) {\n // The string sequence was too long.\n return;\n }\n\n if (parseState.func == parseOSC) {\n // We're not done parsing the string yet.\n return;\n }\n\n // We're done.\n var ary = parseState.args[0].match(/^(\\d+);(.*)$/);\n if (ary) {\n parseState.args[0] = ary[2];\n this.dispatch('OSC', ary[1], parseState);\n } else {\n console.warn('Invalid OSC: ' + JSON.stringify(parseState.args[0]));\n }\n };\n\n parseState.func = parseOSC;\n};\n\n/**\n * Privacy Message (PM).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x9e'] =\nhterm.VT.ESC['^'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * Application Program Control (APC).\n *\n * Will not implement.\n */\nhterm.VT.CC1['\\x9f'] =\nhterm.VT.ESC['_'] = function(parseState) {\n parseState.resetArguments();\n parseState.func = this.parseUntilStringTerminator_;\n};\n\n/**\n * ESC \\x20 - Unclear to me where these originated, possibly in xterm.\n *\n * Not currently implemented:\n * ESC \\x20 F - Select 7 bit escape codes in responses (S7C1T).\n * ESC \\x20 G - Select 8 bit escape codes in responses (S8C1T).\n * NB: We currently assume S7C1T always.\n *\n * Will not implement:\n * ESC \\x20 L - Set ANSI conformance level 1.\n * ESC \\x20 M - Set ANSI conformance level 2.\n * ESC \\x20 N - Set ANSI conformance level 3.\n */\nhterm.VT.ESC['\\x20'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (this.warnUnimplemented)\n console.warn('Unimplemented sequence: ESC 0x20 ' + ch);\n parseState.resetParseFunction();\n };\n};\n\n/**\n * DEC 'ESC #' sequences.\n */\nhterm.VT.ESC['#'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (ch == '8') // DEC Screen Alignment Test (DECALN)\n this.terminal.fill('E');\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Designate Other Coding System (DOCS).\n */\nhterm.VT.ESC['%'] = function(parseState) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n\n // If we've locked the encoding, then just eat the bytes and return.\n if (this.codingSystemLocked_) {\n if (ch == '/')\n parseState.consumeChar();\n parseState.resetParseFunction();\n return;\n }\n\n // Process the encoding requests.\n switch (ch) {\n case '@':\n // Switch to ECMA 35.\n this.setEncoding('iso-2022');\n break;\n\n case 'G':\n // Switch to UTF-8.\n this.setEncoding('utf-8');\n break;\n\n case '/':\n // One way transition to something else.\n ch = parseState.consumeChar();\n switch (ch) {\n case 'G': // UTF-8 Level 1.\n case 'H': // UTF-8 Level 2.\n case 'I': // UTF-8 Level 3.\n // We treat all UTF-8 levels the same.\n this.setEncoding('utf-8-locked');\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unknown ESC % / argument: ' + JSON.stringify(ch));\n break;\n }\n break;\n\n default:\n if (this.warnUnimplemented)\n console.warn('Unknown ESC % argument: ' + JSON.stringify(ch));\n break;\n }\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Character Set Selection (SCS).\n *\n * ESC ( Ps - Set G0 character set (VT100).\n * ESC ) Ps - Set G1 character set (VT220).\n * ESC * Ps - Set G2 character set (VT220).\n * ESC + Ps - Set G3 character set (VT220).\n * ESC - Ps - Set G1 character set (VT300).\n * ESC . Ps - Set G2 character set (VT300).\n * ESC / Ps - Set G3 character set (VT300).\n *\n * All other sequences are echoed to the terminal.\n */\nhterm.VT.ESC['('] =\nhterm.VT.ESC[')'] =\nhterm.VT.ESC['*'] =\nhterm.VT.ESC['+'] =\nhterm.VT.ESC['-'] =\nhterm.VT.ESC['.'] =\nhterm.VT.ESC['/'] = function(parseState, code) {\n parseState.func = function(parseState) {\n var ch = parseState.consumeChar();\n if (ch == '\\x1b') {\n parseState.resetParseFunction();\n parseState.func();\n return;\n }\n\n var map = this.characterMaps.getMap(ch);\n if (map !== undefined) {\n if (code == '(') {\n this.G0 = map;\n } else if (code == ')' || code == '-') {\n this.G1 = map;\n } else if (code == '*' || code == '.') {\n this.G2 = map;\n } else if (code == '+' || code == '/') {\n this.G3 = map;\n }\n } else if (this.warnUnimplemented) {\n console.log('Invalid character set for \"' + code + '\": ' + ch);\n }\n\n parseState.resetParseFunction();\n };\n};\n\n/**\n * Back Index (DECBI).\n *\n * VT420 and up. Not currently implemented.\n */\nhterm.VT.ESC['6'] = hterm.VT.ignore;\n\n/**\n * Save Cursor (DECSC).\n */\nhterm.VT.ESC['7'] = function() {\n this.savedState_.save();\n};\n\n/**\n * Restore Cursor (DECRC).\n */\nhterm.VT.ESC['8'] = function() {\n this.savedState_.restore();\n};\n\n/**\n * Forward Index (DECFI).\n *\n * VT210 and up. Not currently implemented.\n */\nhterm.VT.ESC['9'] = hterm.VT.ignore;\n\n/**\n * Application keypad (DECKPAM).\n */\nhterm.VT.ESC['='] = function() {\n this.terminal.keyboard.applicationKeypad = true;\n};\n\n/**\n * Normal keypad (DECKPNM).\n */\nhterm.VT.ESC['>'] = function() {\n this.terminal.keyboard.applicationKeypad = false;\n};\n\n/**\n * Cursor to lower left corner of screen.\n *\n * Will not implement.\n *\n * This is only recognized by xterm when the hpLowerleftBugCompat resource is\n * set.\n */\nhterm.VT.ESC['F'] = hterm.VT.ignore;\n\n/**\n * Full Reset (RIS).\n */\nhterm.VT.ESC['c'] = function() {\n this.reset();\n this.terminal.reset();\n};\n\n/**\n * Memory lock/unlock.\n *\n * Will not implement.\n */\nhterm.VT.ESC['l'] =\nhterm.VT.ESC['m'] = hterm.VT.ignore;\n\n/**\n * Lock Shift 2 (LS2)\n *\n * Invoke the G2 Character Set as GL.\n */\nhterm.VT.ESC['n'] = function() {\n this.GL = 'G2';\n};\n\n/**\n * Lock Shift 3 (LS3)\n *\n * Invoke the G3 Character Set as GL.\n */\nhterm.VT.ESC['o'] = function() {\n this.GL = 'G3';\n};\n\n/**\n * Lock Shift 2, Right (LS3R)\n *\n * Invoke the G3 Character Set as GR.\n */\nhterm.VT.ESC['|'] = function() {\n this.GR = 'G3';\n};\n\n/**\n * Lock Shift 2, Right (LS2R)\n *\n * Invoke the G2 Character Set as GR.\n */\nhterm.VT.ESC['}'] = function() {\n this.GR = 'G2';\n};\n\n/**\n * Lock Shift 1, Right (LS1R)\n *\n * Invoke the G1 Character Set as GR.\n */\nhterm.VT.ESC['~'] = function() {\n this.GR = 'G1';\n};\n\n/**\n * Change icon name and window title.\n *\n * We only change the window title.\n */\nhterm.VT.OSC['0'] = function(parseState) {\n this.terminal.setWindowTitle(parseState.args[0]);\n};\n\n/**\n * Change window title.\n */\nhterm.VT.OSC['2'] = hterm.VT.OSC['0'];\n\n/**\n * Set/read color palette.\n */\nhterm.VT.OSC['4'] = function(parseState) {\n // Args come in as a single 'index1;rgb1 ... ;indexN;rgbN' string.\n // We split on the semicolon and iterate through the pairs.\n var args = parseState.args[0].split(';');\n\n var pairCount = parseInt(args.length / 2);\n var colorPalette = this.terminal.getTextAttributes().colorPalette;\n var responseArray = [];\n\n for (var pairNumber = 0; pairNumber < pairCount; ++pairNumber) {\n var colorIndex = parseInt(args[pairNumber * 2]);\n var colorValue = args[pairNumber * 2 + 1];\n\n if (colorIndex >= colorPalette.length)\n continue;\n\n if (colorValue == '?') {\n // '?' means we should report back the current color value.\n colorValue = lib.colors.rgbToX11(colorPalette[colorIndex]);\n if (colorValue)\n responseArray.push(colorIndex + ';' + colorValue);\n\n continue;\n }\n\n colorValue = lib.colors.x11ToCSS(colorValue);\n if (colorValue)\n colorPalette[colorIndex] = colorValue;\n }\n\n if (responseArray.length)\n this.terminal.io.sendString('\\x1b]4;' + responseArray.join(';') + '\\x07');\n};\n\n/**\n * iTerm2 growl notifications.\n */\nhterm.VT.OSC['9'] = function(parseState) {\n // This just dumps the entire string as the message.\n hterm.notify({'body': parseState.args[0]});\n};\n\n/**\n * Change VT100 text foreground color.\n */\nhterm.VT.OSC['10'] = function(parseState) {\n // Args come in as a single string, but extra args will chain to the following\n // OSC sequences.\n var args = parseState.args[0].split(';');\n if (!args)\n return;\n\n var colorArg;\n var colorX11 = lib.colors.x11ToCSS(args.shift());\n if (colorX11)\n this.terminal.setForegroundColor(colorX11);\n\n if (args.length > 0) {\n parseState.args[0] = args.join(';');\n hterm.VT.OSC['11'].apply(this, [parseState]);\n }\n};\n\n/**\n * Change VT100 text background color.\n */\nhterm.VT.OSC['11'] = function(parseState) {\n // Args come in as a single string, but extra args will chain to the following\n // OSC sequences.\n var args = parseState.args[0].split(';');\n if (!args)\n return;\n\n var colorArg;\n var colorX11 = lib.colors.x11ToCSS(args.shift());\n if (colorX11)\n this.terminal.setBackgroundColor(colorX11);\n\n /* Note: If we support OSC 12+, we'd chain it here.\n if (args.length > 0) {\n parseState.args[0] = args.join(';');\n hterm.VT.OSC['12'].apply(this, [parseState]);\n }\n */\n};\n\n/**\n * Set the cursor shape.\n *\n * Parameter is expected to be in the form \"CursorShape=number\", where number is\n * one of:\n *\n * 0 - Block\n * 1 - I-Beam\n * 2 - Underline\n *\n * This is a bit of a de-facto standard supported by iTerm 2 and Konsole. See\n * also: DECSCUSR.\n *\n * Invalid numbers will restore the cursor to the block shape.\n */\nhterm.VT.OSC['50'] = function(parseState) {\n var args = parseState.args[0].match(/CursorShape=(.)/i);\n if (!args) {\n console.warn('Could not parse OSC 50 args: ' + parseState.args[0]);\n return;\n }\n\n switch (args[1]) {\n case '1': // CursorShape=1: I-Beam.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n break;\n\n case '2': // CursorShape=2: Underline.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n break;\n\n default: // CursorShape=0: Block.\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n }\n};\n\n/**\n * Set/read system clipboard.\n *\n * Read is not implemented due to security considerations. A remote app\n * that is able to both write and read to the clipboard could essentially\n * take over your session.\n *\n * The clipboard data will be decoded according to the 'receive-encoding'\n * preference.\n */\nhterm.VT.OSC['52'] = function(parseState) {\n // Args come in as a single 'clipboard;b64-data' string. The clipboard\n // parameter is used to select which of the X clipboards to address. Since\n // we're not integrating with X, we treat them all the same.\n var args = parseState.args[0].match(/^[cps01234567]*;(.*)/);\n if (!args)\n return;\n\n var data = window.atob(args[1]);\n if (data)\n this.terminal.copyStringToClipboard(this.decode(data));\n};\n\n/**\n * URxvt perl modules.\n *\n * This is the escape system used by rxvt-unicode and its perl modules.\n * Obviously we don't support perl or custom modules, so we list a few common\n * ones that we find useful.\n *\n * Technically there is no format here, but most modules obey:\n * ;\n */\nhterm.VT.OSC['777'] = function(parseState) {\n var ary;\n var urxvtMod = parseState.args[0].split(';', 1)[0];\n\n switch (urxvtMod) {\n case 'notify':\n // Format:\n // notify;title;message\n var title, message;\n ary = parseState.args[0].match(/^[^;]+;([^;]*)(;([\\s\\S]*))?$/);\n if (ary) {\n title = ary[1];\n message = ary[3];\n }\n hterm.notify({'title': title, 'body': message});\n break;\n\n default:\n console.warn('Unknown urxvt module: ' + parseState.args[0]);\n break;\n }\n};\n\n/**\n * Insert (blank) characters (ICH).\n */\nhterm.VT.CSI['@'] = function(parseState) {\n this.terminal.insertSpace(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Up (CUU).\n */\nhterm.VT.CSI['A'] = function(parseState) {\n this.terminal.cursorUp(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Down (CUD).\n */\nhterm.VT.CSI['B'] = function(parseState) {\n this.terminal.cursorDown(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Forward (CUF).\n */\nhterm.VT.CSI['C'] = function(parseState) {\n this.terminal.cursorRight(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Backward (CUB).\n */\nhterm.VT.CSI['D'] = function(parseState) {\n this.terminal.cursorLeft(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Next Line (CNL).\n *\n * This is like Cursor Down, except the cursor moves to the beginning of the\n * line as well.\n */\nhterm.VT.CSI['E'] = function(parseState) {\n this.terminal.cursorDown(parseState.iarg(0, 1));\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Cursor Preceding Line (CPL).\n *\n * This is like Cursor Up, except the cursor moves to the beginning of the\n * line as well.\n */\nhterm.VT.CSI['F'] = function(parseState) {\n this.terminal.cursorUp(parseState.iarg(0, 1));\n this.terminal.setCursorColumn(0);\n};\n\n/**\n * Cursor Character Absolute (CHA).\n */\nhterm.VT.CSI['G'] = function(parseState) {\n this.terminal.setCursorColumn(parseState.iarg(0, 1) - 1);\n};\n\n/**\n * Cursor Position (CUP).\n */\nhterm.VT.CSI['H'] = function(parseState) {\n this.terminal.setCursorPosition(parseState.iarg(0, 1) - 1,\n parseState.iarg(1, 1) - 1);\n};\n\n/**\n * Cursor Forward Tabulation (CHT).\n */\nhterm.VT.CSI['I'] = function(parseState) {\n var count = parseState.iarg(0, 1);\n count = lib.f.clamp(count, 1, this.terminal.screenSize.width);\n for (var i = 0; i < count; i++) {\n this.terminal.forwardTabStop();\n }\n};\n\n/**\n * Erase in Display (ED, DECSED).\n */\nhterm.VT.CSI['J'] =\nhterm.VT.CSI['?J'] = function(parseState, code) {\n var arg = parseState.args[0];\n\n if (!arg || arg == 0) {\n this.terminal.eraseBelow();\n } else if (arg == 1) {\n this.terminal.eraseAbove();\n } else if (arg == 2) {\n this.terminal.clear();\n } else if (arg == 3) {\n // The xterm docs say this means \"Erase saved lines\", but we'll just clear\n // the display since killing the scrollback seems rude.\n this.terminal.clear();\n }\n};\n\n/**\n * Erase in line (EL, DECSEL).\n */\nhterm.VT.CSI['K'] =\nhterm.VT.CSI['?K'] = function(parseState, code) {\n var arg = parseState.args[0];\n\n if (!arg || arg == 0) {\n this.terminal.eraseToRight();\n } else if (arg == 1) {\n this.terminal.eraseToLeft();\n } else if (arg == 2) {\n this.terminal.eraseLine();\n }\n};\n\n/**\n * Insert Lines (IL).\n */\nhterm.VT.CSI['L'] = function(parseState) {\n this.terminal.insertLines(parseState.iarg(0, 1));\n};\n\n/**\n * Delete Lines (DL).\n */\nhterm.VT.CSI['M'] = function(parseState) {\n this.terminal.deleteLines(parseState.iarg(0, 1));\n};\n\n/**\n * Delete Characters (DCH).\n *\n * This command shifts the line contents left, starting at the cursor position.\n */\nhterm.VT.CSI['P'] = function(parseState) {\n this.terminal.deleteChars(parseState.iarg(0, 1));\n};\n\n/**\n * Scroll Up (SU).\n */\nhterm.VT.CSI['S'] = function(parseState) {\n this.terminal.vtScrollUp(parseState.iarg(0, 1));\n};\n\n/**\n * Scroll Down (SD).\n * Also 'Initiate highlight mouse tracking'. Will not implement this part.\n */\nhterm.VT.CSI['T'] = function(parseState) {\n if (parseState.args.length <= 1)\n this.terminal.vtScrollDown(parseState.iarg(0, 1));\n};\n\n/**\n * Reset one or more features of the title modes to the default value.\n *\n * ESC [ > Ps T\n *\n * Normally, \"reset\" disables the feature. It is possible to disable the\n * ability to reset features by compiling a different default for the title\n * modes into xterm.\n *\n * Ps values:\n * 0 - Do not set window/icon labels using hexadecimal.\n * 1 - Do not query window/icon labels using hexadecimal.\n * 2 - Do not set window/icon labels using UTF-8.\n * 3 - Do not query window/icon labels using UTF-8.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>T'] = hterm.VT.ignore;\n\n/**\n * Erase Characters (ECH).\n */\nhterm.VT.CSI['X'] = function(parseState) {\n this.terminal.eraseToRight(parseState.iarg(0, 1));\n};\n\n/**\n * Cursor Backward Tabulation (CBT).\n */\nhterm.VT.CSI['Z'] = function(parseState) {\n var count = parseState.iarg(0, 1);\n count = lib.f.clamp(count, 1, this.terminal.screenSize.width);\n for (var i = 0; i < count; i++) {\n this.terminal.backwardTabStop();\n }\n};\n\n/**\n * Character Position Absolute (HPA).\n *\n * Same as Cursor Character Absolute (CHA).\n */\nhterm.VT.CSI['`'] = hterm.VT.CSI['G'];\n\n/**\n * Character Position Relative (HPR).\n */\nhterm.VT.CSI['a'] = function(parseState) {\n this.terminal.setCursorColumn(this.terminal.getCursorColumn() +\n parseState.iarg(0, 1));\n};\n\n/**\n * Repeat the preceding graphic character.\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['b'] = hterm.VT.ignore;\n\n/**\n * Send Device Attributes (Primary DA).\n *\n * TODO(rginda): This is hardcoded to send back 'VT100 with Advanced Video\n * Option', but it may be more correct to send a VT220 response once\n * we fill out the 'Not currently implemented' parts.\n */\nhterm.VT.CSI['c'] = function(parseState) {\n if (!parseState.args[0] || parseState.args[0] == 0) {\n this.terminal.io.sendString('\\x1b[?1;2c');\n }\n};\n\n/**\n * Send Device Attributes (Secondary DA).\n *\n * TODO(rginda): This is hardcoded to send back 'VT100' but it may be more\n * correct to send a VT220 response once we fill out more 'Not currently\n * implemented' parts.\n */\nhterm.VT.CSI['>c'] = function(parseState) {\n this.terminal.io.sendString('\\x1b[>0;256;0c');\n};\n\n/**\n * Line Position Absolute (VPA).\n */\nhterm.VT.CSI['d'] = function(parseState) {\n this.terminal.setAbsoluteCursorRow(parseState.iarg(0, 1) - 1);\n};\n\n/**\n * Horizontal and Vertical Position (HVP).\n *\n * Same as Cursor Position (CUP).\n */\nhterm.VT.CSI['f'] = hterm.VT.CSI['H'];\n\n/**\n * Tab Clear (TBC).\n */\nhterm.VT.CSI['g'] = function(parseState) {\n if (!parseState.args[0] || parseState.args[0] == 0) {\n // Clear tab stop at cursor.\n this.terminal.clearTabStopAtCursor(false);\n } else if (parseState.args[0] == 3) {\n // Clear all tab stops.\n this.terminal.clearAllTabStops();\n }\n};\n\n/**\n * Set Mode (SM).\n */\nhterm.VT.CSI['h'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setANSIMode(parseState.args[i], true);\n }\n};\n\n/**\n * DEC Private Mode Set (DECSET).\n */\nhterm.VT.CSI['?h'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setDECMode(parseState.args[i], true);\n }\n};\n\n/**\n * Media Copy (MC).\n * Media Copy (MC, DEC Specific).\n *\n * These commands control the printer. Will not implement.\n */\nhterm.VT.CSI['i'] =\nhterm.VT.CSI['?i'] = hterm.VT.ignore;\n\n/**\n * Reset Mode (RM).\n */\nhterm.VT.CSI['l'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setANSIMode(parseState.args[i], false);\n }\n};\n\n/**\n * DEC Private Mode Reset (DECRST).\n */\nhterm.VT.CSI['?l'] = function(parseState) {\n for (var i = 0; i < parseState.args.length; i++) {\n this.setDECMode(parseState.args[i], false);\n }\n};\n\n/**\n * Character Attributes (SGR).\n *\n * Iterate through the list of arguments, applying the attribute changes based\n * on the argument value...\n */\nhterm.VT.CSI['m'] = function(parseState) {\n function get256(i) {\n if (parseState.args.length < i + 2 || parseState.args[i + 1] != 5)\n return null;\n\n return parseState.iarg(i + 2, 0);\n }\n\n function getTrueColor(i) {\n if (parseState.args.length < i + 5 || parseState.args[i + 1] != 2)\n return null;\n var r = parseState.iarg(i + 2, 0);\n var g = parseState.iarg(i + 3, 0);\n var b = parseState.iarg(i + 4, 0);\n\n return 'rgb(' + r + ' ,' + g + ' ,' + b + ')';\n }\n\n var attrs = this.terminal.getTextAttributes();\n\n if (!parseState.args.length) {\n attrs.reset();\n return;\n }\n\n for (var i = 0; i < parseState.args.length; i++) {\n var arg = parseState.iarg(i, 0);\n\n if (arg < 30) {\n if (arg == 0) { // Normal (default).\n attrs.reset();\n } else if (arg == 1) { // Bold.\n attrs.bold = true;\n } else if (arg == 2) { // Faint.\n attrs.faint = true;\n } else if (arg == 3) { // Italic.\n attrs.italic = true;\n } else if (arg == 4) { // Underline.\n attrs.underline = true;\n } else if (arg == 5) { // Blink.\n attrs.blink = true;\n } else if (arg == 7) { // Inverse.\n attrs.inverse = true;\n } else if (arg == 8) { // Invisible.\n attrs.invisible = true;\n } else if (arg == 9) { // Crossed out.\n attrs.strikethrough = true;\n } else if (arg == 22) { // Not bold & not faint.\n attrs.bold = false;\n attrs.faint = false;\n } else if (arg == 23) { // Not italic.\n attrs.italic = false;\n } else if (arg == 24) { // Not underlined.\n attrs.underline = false;\n } else if (arg == 25) { // Not blink.\n attrs.blink = false;\n } else if (arg == 27) { // Steady.\n attrs.inverse = false;\n } else if (arg == 28) { // Visible.\n attrs.invisible = false;\n } else if (arg == 29) { // Not crossed out.\n attrs.strikethrough = false;\n }\n\n } else if (arg < 50) {\n // Select fore/background color from bottom half of 16 color palette\n // or from the 256 color palette or alternative specify color in fully\n // qualified rgb(r, g, b) form.\n if (arg < 38) {\n attrs.foregroundSource = arg - 30;\n\n } else if (arg == 38) {\n // First check for true color definition\n var trueColor = getTrueColor(i);\n if (trueColor != null) {\n attrs.foregroundSource = attrs.SRC_RGB;\n attrs.foreground = trueColor;\n\n i += 5;\n } else {\n // Check for 256 color\n var c = get256(i);\n if (c == null)\n break;\n\n i += 2;\n\n if (c >= attrs.colorPalette.length)\n continue;\n\n attrs.foregroundSource = c;\n }\n\n } else if (arg == 39) {\n attrs.foregroundSource = attrs.SRC_DEFAULT;\n\n } else if (arg < 48) {\n attrs.backgroundSource = arg - 40;\n\n } else if (arg == 48) {\n // First check for true color definition\n var trueColor = getTrueColor(i);\n if (trueColor != null) {\n attrs.backgroundSource = attrs.SRC_RGB;\n attrs.background = trueColor;\n\n i += 5;\n } else {\n // Check for 256 color\n var c = get256(i);\n if (c == null)\n break;\n\n i += 2;\n\n if (c >= attrs.colorPalette.length)\n continue;\n\n attrs.backgroundSource = c;\n }\n } else {\n attrs.backgroundSource = attrs.SRC_DEFAULT;\n }\n\n } else if (arg >= 90 && arg <= 97) {\n attrs.foregroundSource = arg - 90 + 8;\n\n } else if (arg >= 100 && arg <= 107) {\n attrs.backgroundSource = arg - 100 + 8;\n }\n }\n\n attrs.setDefaults(this.terminal.getForegroundColor(),\n this.terminal.getBackgroundColor());\n};\n\n/**\n * Set xterm-specific keyboard modes.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>m'] = hterm.VT.ignore;\n\n/**\n * Device Status Report (DSR, DEC Specific).\n *\n * 5 - Status Report. Result (OK) is CSI 0 n\n * 6 - Report Cursor Position (CPR) [row;column]. Result is CSI r ; c R\n */\nhterm.VT.CSI['n'] = function(parseState) {\n if (parseState.args[0] == 5) {\n this.terminal.io.sendString('\\x1b0n');\n } else if (parseState.args[0] == 6) {\n var row = this.terminal.getCursorRow() + 1;\n var col = this.terminal.getCursorColumn() + 1;\n this.terminal.io.sendString('\\x1b[' + row + ';' + col + 'R');\n }\n};\n\n/**\n * Disable modifiers which may be enabled via CSI['>m'].\n *\n * Will not implement.\n */\nhterm.VT.CSI['>n'] = hterm.VT.ignore;\n\n/**\n * Device Status Report (DSR, DEC Specific).\n *\n * 6 - Report Cursor Position (CPR) [row;column] as CSI ? r ; c R\n * 15 - Report Printer status as CSI ? 1 0 n (ready) or\n * CSI ? 1 1 n (not ready).\n * 25 - Report UDK status as CSI ? 2 0 n (unlocked) or CSI ? 2 1 n (locked).\n * 26 - Report Keyboard status as CSI ? 2 7 ; 1 ; 0 ; 0 n (North American).\n * The last two parameters apply to VT400 & up, and denote keyboard ready\n * and LK01 respectively.\n * 53 - Report Locator status as CSI ? 5 3 n Locator available, if compiled-in,\n * or CSI ? 5 0 n No Locator, if not.\n */\nhterm.VT.CSI['?n'] = function(parseState) {\n if (parseState.args[0] == 6) {\n var row = this.terminal.getCursorRow() + 1;\n var col = this.terminal.getCursorColumn() + 1;\n this.terminal.io.sendString('\\x1b[' + row + ';' + col + 'R');\n } else if (parseState.args[0] == 15) {\n this.terminal.io.sendString('\\x1b[?11n');\n } else if (parseState.args[0] == 25) {\n this.terminal.io.sendString('\\x1b[?21n');\n } else if (parseState.args[0] == 26) {\n this.terminal.io.sendString('\\x1b[?12;1;0;0n');\n } else if (parseState.args[0] == 53) {\n this.terminal.io.sendString('\\x1b[?50n');\n }\n};\n\n/**\n * This is used by xterm to decide whether to hide the pointer cursor as the\n * user types.\n *\n * Valid values for the parameter:\n * 0 - Never hide the pointer.\n * 1 - Hide if the mouse tracking mode is not enabled.\n * 2 - Always hide the pointer.\n *\n * If no parameter is given, xterm uses the default, which is 1.\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['>p'] = hterm.VT.ignore;\n\n/**\n * Soft terminal reset (DECSTR).\n */\nhterm.VT.CSI['!p'] = function() {\n this.reset();\n this.terminal.softReset();\n};\n\n/**\n * Request ANSI Mode (DECRQM).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['$p'] = hterm.VT.ignore;\nhterm.VT.CSI['?$p'] = hterm.VT.ignore;\n\n/**\n * Set conformance level (DECSCL).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\"p'] = hterm.VT.ignore;\n\n/**\n * Load LEDs (DECLL).\n *\n * Not currently implemented. Could be implemented as virtual LEDs overlaying\n * the terminal if anyone cares.\n */\nhterm.VT.CSI['q'] = hterm.VT.ignore;\n\n/**\n * Set cursor style (DECSCUSR, VT520).\n */\nhterm.VT.CSI[' q'] = function(parseState) {\n var arg = parseState.args[0];\n\n if (arg == 0 || arg == 1) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n this.terminal.setCursorBlink(true);\n } else if (arg == 2) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BLOCK);\n this.terminal.setCursorBlink(false);\n } else if (arg == 3) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n this.terminal.setCursorBlink(true);\n } else if (arg == 4) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.UNDERLINE);\n this.terminal.setCursorBlink(false);\n } else if (arg == 5) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n this.terminal.setCursorBlink(true);\n } else if (arg == 6) {\n this.terminal.setCursorShape(hterm.Terminal.cursorShape.BEAM);\n this.terminal.setCursorBlink(false);\n } else {\n console.warn('Unknown cursor style: ' + arg);\n }\n};\n\n/**\n * Select character protection attribute (DECSCA).\n *\n * Will not implement.\n */\nhterm.VT.CSI['\"q'] = hterm.VT.ignore;\n\n/**\n * Set Scrolling Region (DECSTBM).\n */\nhterm.VT.CSI['r'] = function(parseState) {\n var args = parseState.args;\n var scrollTop = args[0] ? parseInt(args[0], 10) -1 : null;\n var scrollBottom = args[1] ? parseInt(args[1], 10) - 1 : null;\n this.terminal.setVTScrollRegion(scrollTop, scrollBottom);\n this.terminal.setCursorPosition(0, 0);\n};\n\n/**\n * Restore DEC Private Mode Values.\n *\n * Will not implement.\n */\nhterm.VT.CSI['?r'] = hterm.VT.ignore;\n\n/**\n * Change Attributes in Rectangular Area (DECCARA)\n *\n * Will not implement.\n */\nhterm.VT.CSI['$r'] = hterm.VT.ignore;\n\n/**\n * Save cursor (ANSI.SYS)\n */\nhterm.VT.CSI['s'] = function() {\n this.savedState_.save();\n};\n\n/**\n * Save DEC Private Mode Values.\n *\n * Will not implement.\n */\nhterm.VT.CSI['?s'] = hterm.VT.ignore;\n\n/**\n * Window manipulation (from dtterm, as well as extensions).\n *\n * Will not implement.\n */\nhterm.VT.CSI['t'] = hterm.VT.ignore;\n\n/**\n * Reverse Attributes in Rectangular Area (DECRARA).\n *\n * Will not implement.\n */\nhterm.VT.CSI['$t'] = hterm.VT.ignore;\n\n/**\n * Set one or more features of the title modes.\n *\n * Will not implement.\n */\nhterm.VT.CSI['>t'] = hterm.VT.ignore;\n\n/**\n * Set warning-bell volume (DECSWBV, VT520).\n *\n * Will not implement.\n */\nhterm.VT.CSI[' t'] = hterm.VT.ignore;\n\n/**\n * Restore cursor (ANSI.SYS).\n */\nhterm.VT.CSI['u'] = function() {\n this.savedState_.restore();\n};\n\n/**\n * Set margin-bell volume (DECSMBV, VT520).\n *\n * Will not implement.\n */\nhterm.VT.CSI[' u'] = hterm.VT.ignore;\n\n/**\n * Copy Rectangular Area (DECCRA, VT400 and up).\n *\n * Will not implement.\n */\nhterm.VT.CSI['$v'] = hterm.VT.ignore;\n\n/**\n * Enable Filter Rectangle (DECEFR).\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'w'] = hterm.VT.ignore;\n\n/**\n * Request Terminal Parameters (DECREQTPARM).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['x'] = hterm.VT.ignore;\n\n/**\n * Select Attribute Change Extent (DECSACE).\n *\n * Will not implement.\n */\nhterm.VT.CSI['*x'] = hterm.VT.ignore;\n\n/**\n * Fill Rectangular Area (DECFRA), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['$x'] = hterm.VT.ignore;\n\n/**\n * vt_tiledata (as used by NAOhack and UnNetHack)\n * (see https://nethackwiki.com/wiki/Vt_tiledata for more info)\n *\n * Implemented as far as we care (start a glyph and end a glyph).\n */\nhterm.VT.CSI['z'] = function(parseState) {\n if (parseState.args.length < 1)\n return;\n var arg = parseState.args[0];\n if (arg == 0) {\n // Start a glyph (one parameter, the glyph number).\n if (parseState.args.length < 2)\n return;\n this.terminal.getTextAttributes().tileData = parseState.args[1];\n } else if (arg == 1) {\n // End a glyph.\n this.terminal.getTextAttributes().tileData = null;\n }\n};\n\n/**\n * Enable Locator Reporting (DECELR).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'z'] = hterm.VT.ignore;\n\n/**\n * Erase Rectangular Area (DECERA), VT400 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['$z'] = hterm.VT.ignore;\n\n/**\n * Select Locator Events (DECSLE).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'{'] = hterm.VT.ignore;\n\n/**\n * Request Locator Position (DECRQLP).\n *\n * Not currently implemented.\n */\nhterm.VT.CSI['\\'|'] = hterm.VT.ignore;\n\n/**\n * Insert Columns (DECIC), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'}'] = hterm.VT.ignore;\n\n/**\n * Delete P s Columns (DECDC), VT420 and up.\n *\n * Will not implement.\n */\nhterm.VT.CSI['\\'~'] = hterm.VT.ignore;\n// SOURCE FILE: hterm/js/hterm_vt_character_map.js\n// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n'use strict';\n\nlib.rtdep('lib.f');\n\n/**\n * Character map object.\n *\n * Mapping from received to display character, used depending on the active\n * VT character set.\n *\n * GR maps are not currently supported.\n *\n * @param {string} description A human readable description of this map.\n * @param {Object} glmap The GL mapping from input to output characters.\n */\nhterm.VT.CharacterMap = function(description, glmap) {\n /**\n * Short description for this character set, useful for debugging.\n */\n this.description = description;\n\n /**\n * The function to call to when this map is installed in GL.\n */\n this.GL = null;\n\n // Always keep an unmodified reference to the map.\n // This allows us to sanely reset back to the original state.\n this.glmapBase_ = glmap;\n\n // Now sync the internal state as needed.\n this.sync_();\n};\n\n/**\n * Internal helper for resyncing internal state.\n *\n * Used when the mappings change.\n *\n * @param {Object?} opt_glmap Additional mappings to overlay on top of the\n * base mapping.\n */\nhterm.VT.CharacterMap.prototype.sync_ = function(opt_glmap) {\n // If there are no maps, then reset the state back.\n if (!this.glmapBase_ && !opt_glmap) {\n this.GL = null;\n delete this.glmap_;\n delete this.glre_;\n return;\n }\n\n // Set the the GL mapping. If we're given a custom mapping, then create a\n // new object to hold the merged map. This way we can cleanly reset back.\n if (opt_glmap)\n this.glmap_ = Object.assign({}, this.glmapBase_, opt_glmap);\n else\n this.glmap_ = this.glmapBase_;\n\n var glchars = Object.keys(this.glmap_).map((key) =>\n '\\\\x' + lib.f.zpad(key.charCodeAt(0).toString(16)));\n this.glre_ = new RegExp('[' + glchars.join('') + ']', 'g');\n\n this.GL = (str) => str.replace(this.glre_, (ch) => this.glmap_[ch]);\n};\n\n/**\n * Reset map back to original mappings (discarding runtime updates).\n *\n * Specifically, any calls to setOverrides will be discarded.\n */\nhterm.VT.CharacterMap.prototype.reset = function() {\n // If we haven't been given a custom mapping, then there's nothing to reset.\n if (this.glmap_ !== this.glmapBase_)\n this.sync_();\n};\n\n/**\n * Merge custom changes to this map.\n *\n * The input map need not duplicate the existing mappings as it is merged with\n * the existing base map (what was created with). Subsequent calls to this\n * will throw away previous override settings.\n *\n * @param {Object} glmap The custom map to override existing mappings.\n */\nhterm.VT.CharacterMap.prototype.setOverrides = function(glmap) {\n this.sync_(glmap);\n};\n\n/**\n * Return a copy of this mapping.\n *\n * @return {hterm.VT.CharacterMap} A new hterm.VT.CharacterMap instance.\n */\nhterm.VT.CharacterMap.prototype.clone = function() {\n var map = new hterm.VT.CharacterMap(this.description, this.glmapBase_);\n if (this.glmap_ !== this.glmapBase_)\n map.setOverrides(this.glmap_);\n return map;\n};\n\n/**\n * Table of character maps.\n */\nhterm.VT.CharacterMaps = function() {\n this.maps_ = hterm.VT.CharacterMaps.DefaultMaps;\n\n // Always keep an unmodified reference to the map.\n // This allows us to sanely reset back to the original state.\n this.mapsBase_ = this.maps_;\n};\n\n/**\n * Look up a previously registered map.\n *\n * @param {String} name The name of the map to lookup.\n * @return {hterm.VT.CharacterMap} The map, if it's been registered.\n */\nhterm.VT.CharacterMaps.prototype.getMap = function(name) {\n if (this.maps_.hasOwnProperty(name))\n return this.maps_[name];\n else\n return undefined;\n};\n\n/**\n * Register a new map.\n *\n * Any previously registered maps by this name will be discarded.\n *\n * @param {String} name The name of the map.\n * @param {hterm.VT.CharacterMap} map The map to register.\n */\nhterm.VT.CharacterMaps.prototype.addMap = function(name, map) {\n if (this.maps_ === this.mapsBase_)\n this.maps_ = Object.assign({}, this.mapsBase_);\n this.maps_[name] = map;\n};\n\n/**\n * Reset the table and all its maps back to original state.\n */\nhterm.VT.CharacterMaps.prototype.reset = function() {\n if (this.maps_ !== hterm.VT.CharacterMaps.DefaultMaps)\n this.maps_ = hterm.VT.CharacterMaps.DefaultMaps;\n};\n\n/**\n * Merge custom changes to this table.\n *\n * @param {Object} maps A set of hterm.VT.CharacterMap objects.\n */\nhterm.VT.CharacterMaps.prototype.setOverrides = function(maps) {\n if (this.maps_ === this.mapsBase_)\n this.maps_ = Object.assign({}, this.mapsBase_);\n\n for (var name in maps) {\n var map = this.getMap(name);\n if (map !== undefined) {\n this.maps_[name] = map.clone();\n this.maps_[name].setOverrides(maps[name]);\n } else\n this.addMap(name, new hterm.VT.CharacterMap('user ' + name, maps[name]));\n }\n};\n\n/**\n * The default set of supported character maps.\n */\nhterm.VT.CharacterMaps.DefaultMaps = {};\n\n/**\n * VT100 Graphic character map.\n * http://vt100.net/docs/vt220-rm/table2-4.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['0'] = new hterm.VT.CharacterMap(\n 'graphic', {\n '\\x60':'\\u25c6', // ` -> diamond\n '\\x61':'\\u2592', // a -> grey-box\n '\\x62':'\\u2409', // b -> h/t\n '\\x63':'\\u240c', // c -> f/f\n '\\x64':'\\u240d', // d -> c/r\n '\\x65':'\\u240a', // e -> l/f\n '\\x66':'\\u00b0', // f -> degree\n '\\x67':'\\u00b1', // g -> +/-\n '\\x68':'\\u2424', // h -> n/l\n '\\x69':'\\u240b', // i -> v/t\n '\\x6a':'\\u2518', // j -> bottom-right\n '\\x6b':'\\u2510', // k -> top-right\n '\\x6c':'\\u250c', // l -> top-left\n '\\x6d':'\\u2514', // m -> bottom-left\n '\\x6e':'\\u253c', // n -> line-cross\n '\\x6f':'\\u23ba', // o -> scan1\n '\\x70':'\\u23bb', // p -> scan3\n '\\x71':'\\u2500', // q -> scan5\n '\\x72':'\\u23bc', // r -> scan7\n '\\x73':'\\u23bd', // s -> scan9\n '\\x74':'\\u251c', // t -> left-tee\n '\\x75':'\\u2524', // u -> right-tee\n '\\x76':'\\u2534', // v -> bottom-tee\n '\\x77':'\\u252c', // w -> top-tee\n '\\x78':'\\u2502', // x -> vertical-line\n '\\x79':'\\u2264', // y -> less-equal\n '\\x7a':'\\u2265', // z -> greater-equal\n '\\x7b':'\\u03c0', // { -> pi\n '\\x7c':'\\u2260', // | -> not-equal\n '\\x7d':'\\u00a3', // } -> british-pound\n '\\x7e':'\\u00b7', // ~ -> dot\n });\n\n/**\n * British character map.\n * http://vt100.net/docs/vt220-rm/table2-5.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['A'] = new hterm.VT.CharacterMap(\n 'british', {\n '\\x23': '\\u00a3', // # -> british-pound\n });\n\n/**\n * US ASCII map, no changes.\n */\nhterm.VT.CharacterMaps.DefaultMaps['B'] = new hterm.VT.CharacterMap(\n 'us', null);\n\n/**\n * Dutch character map.\n * http://vt100.net/docs/vt220-rm/table2-6.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['4'] = new hterm.VT.CharacterMap(\n 'dutch', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00be', // @ -> 3/4\n\n '\\x5b': '\\u0132', // [ -> 'ij' ligature (xterm goes with \\u00ff?)\n '\\x5c': '\\u00bd', // \\ -> 1/2\n '\\x5d': '\\u007c', // ] -> vertical bar\n\n '\\x7b': '\\u00a8', // { -> two dots\n '\\x7c': '\\u0066', // | -> f\n '\\x7d': '\\u00bc', // } -> 1/4\n '\\x7e': '\\u00b4', // ~ -> acute\n });\n\n/**\n * Finnish character map.\n * http://vt100.net/docs/vt220-rm/table2-7.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['C'] =\nhterm.VT.CharacterMaps.DefaultMaps['5'] = new hterm.VT.CharacterMap(\n 'finnish', {\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ~ -> 'u' umlaut\n\n '\\x60': '\\u00e9', // ` -> 'e' acute\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * French character map.\n * http://vt100.net/docs/vt220-rm/table2-8.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['R'] = new hterm.VT.CharacterMap(\n 'french', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00b0', // [ -> ring\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00a7', // ] -> section symbol (double s)\n\n '\\x7b': '\\u00e9', // { -> 'e' acute\n '\\x7c': '\\u00f9', // | -> 'u' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00a8', // ~ -> umlaut\n });\n\n/**\n * French Canadian character map.\n * http://vt100.net/docs/vt220-rm/table2-9.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Q'] = new hterm.VT.CharacterMap(\n 'french canadian', {\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00e2', // [ -> 'a' circumflex\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00ea', // ] -> 'e' circumflex\n '\\x5e': '\\u00ee', // ^ -> 'i' circumflex\n\n '\\x60': '\\u00f4', // ` -> 'o' circumflex\n\n '\\x7b': '\\u00e9', // { -> 'e' acute\n '\\x7c': '\\u00f9', // | -> 'u' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00fb', // ~ -> 'u' circumflex\n });\n\n/**\n * German character map.\n * http://vt100.net/docs/vt220-rm/table2-10.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['K'] = new hterm.VT.CharacterMap(\n 'german', {\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00dc', // ] -> 'U' umlaut\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00fc', // } -> 'u' umlaut\n '\\x7e': '\\u00df', // ~ -> eszett\n });\n\n/**\n * Italian character map.\n * http://vt100.net/docs/vt220-rm/table2-11.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Y'] = new hterm.VT.CharacterMap(\n 'italian', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00b0', // [ -> ring\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00e9', // ] -> 'e' acute\n\n '\\x60': '\\u00f9', // ` -> 'u' grave\n\n '\\x7b': '\\u00e0', // { -> 'a' grave\n '\\x7c': '\\u00f2', // | -> 'o' grave\n '\\x7d': '\\u00e8', // } -> 'e' grave\n '\\x7e': '\\u00ec', // ~ -> 'i' grave\n });\n\n/**\n * Norwegian/Danish character map.\n * http://vt100.net/docs/vt220-rm/table2-12.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['E'] =\nhterm.VT.CharacterMaps.DefaultMaps['6'] = new hterm.VT.CharacterMap(\n 'norwegian/danish', {\n '\\x40': '\\u00c4', // @ -> 'A' umlaut\n\n '\\x5b': '\\u00c6', // [ -> 'AE' ligature\n '\\x5c': '\\u00d8', // \\ -> 'O' stroke\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ^ -> 'U' umlaut\n\n '\\x60': '\\u00e4', // ` -> 'a' umlaut\n\n '\\x7b': '\\u00e6', // { -> 'ae' ligature\n '\\x7c': '\\u00f8', // | -> 'o' stroke\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * Spanish character map.\n * http://vt100.net/docs/vt220-rm/table2-13.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['Z'] = new hterm.VT.CharacterMap(\n 'spanish', {\n '\\x23': '\\u00a3', // # -> british-pound\n\n '\\x40': '\\u00a7', // @ -> section symbol (double s)\n\n '\\x5b': '\\u00a1', // [ -> '!' inverted\n '\\x5c': '\\u00d1', // \\ -> 'N' tilde\n '\\x5d': '\\u00bf', // ] -> '?' inverted\n\n '\\x7b': '\\u00b0', // { -> ring\n '\\x7c': '\\u00f1', // | -> 'n' tilde\n '\\x7d': '\\u00e7', // } -> 'c' cedilla\n });\n\n/**\n * Swedish character map.\n * http://vt100.net/docs/vt220-rm/table2-14.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['7'] =\nhterm.VT.CharacterMaps.DefaultMaps['H'] = new hterm.VT.CharacterMap(\n 'swedish', {\n '\\x40': '\\u00c9', // @ -> 'E' acute\n\n '\\x5b': '\\u00c4', // [ -> 'A' umlaut\n '\\x5c': '\\u00d6', // \\ -> 'O' umlaut\n '\\x5d': '\\u00c5', // ] -> 'A' ring\n '\\x5e': '\\u00dc', // ^ -> 'U' umlaut\n\n '\\x60': '\\u00e9', // ` -> 'e' acute\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00e5', // } -> 'a' ring\n '\\x7e': '\\u00fc', // ~ -> 'u' umlaut\n });\n\n/**\n * Swiss character map.\n * http://vt100.net/docs/vt220-rm/table2-15.html\n */\nhterm.VT.CharacterMaps.DefaultMaps['='] = new hterm.VT.CharacterMap(\n 'swiss', {\n '\\x23': '\\u00f9', // # -> 'u' grave\n\n '\\x40': '\\u00e0', // @ -> 'a' grave\n\n '\\x5b': '\\u00e9', // [ -> 'e' acute\n '\\x5c': '\\u00e7', // \\ -> 'c' cedilla\n '\\x5d': '\\u00ea', // ] -> 'e' circumflex\n '\\x5e': '\\u00ee', // ^ -> 'i' circumflex\n '\\x5f': '\\u00e8', // _ -> 'e' grave\n\n '\\x60': '\\u00f4', // ` -> 'o' circumflex\n\n '\\x7b': '\\u00e4', // { -> 'a' umlaut\n '\\x7c': '\\u00f6', // | -> 'o' umlaut\n '\\x7d': '\\u00fc', // } -> 'u' umlaut\n '\\x7e': '\\u00fb', // ~ -> 'u' circumflex\n });\nlib.resource.add('hterm/audio/bell', 'audio/ogg;base64',\n'T2dnUwACAAAAAAAAAADhqW5KAAAAAMFvEjYBHgF2b3JiaXMAAAAAAYC7AAAAAAAAAHcBAAAAAAC4' +\n'AU9nZ1MAAAAAAAAAAAAA4aluSgEAAAAAesI3EC3//////////////////8kDdm9yYmlzHQAAAFhp' +\n'cGguT3JnIGxpYlZvcmJpcyBJIDIwMDkwNzA5AAAAAAEFdm9yYmlzKUJDVgEACAAAADFMIMWA0JBV' +\n'AAAQAABgJCkOk2ZJKaWUoSh5mJRISSmllMUwiZiUicUYY4wxxhhjjDHGGGOMIDRkFQAABACAKAmO' +\n'o+ZJas45ZxgnjnKgOWlOOKcgB4pR4DkJwvUmY26mtKZrbs4pJQgNWQUAAAIAQEghhRRSSCGFFGKI' +\n'IYYYYoghhxxyyCGnnHIKKqigggoyyCCDTDLppJNOOumoo4466ii00EILLbTSSkwx1VZjrr0GXXxz' +\n'zjnnnHPOOeecc84JQkNWAQAgAAAEQgYZZBBCCCGFFFKIKaaYcgoyyIDQkFUAACAAgAAAAABHkRRJ' +\n'sRTLsRzN0SRP8ixREzXRM0VTVE1VVVVVdV1XdmXXdnXXdn1ZmIVbuH1ZuIVb2IVd94VhGIZhGIZh' +\n'GIZh+H3f933f930gNGQVACABAKAjOZbjKaIiGqLiOaIDhIasAgBkAAAEACAJkiIpkqNJpmZqrmmb' +\n'tmirtm3LsizLsgyEhqwCAAABAAQAAAAAAKBpmqZpmqZpmqZpmqZpmqZpmqZpmmZZlmVZlmVZlmVZ' +\n'lmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZlmVZQGjIKgBAAgBAx3Ecx3EkRVIkx3IsBwgNWQUAyAAA' +\n'CABAUizFcjRHczTHczzHczxHdETJlEzN9EwPCA1ZBQAAAgAIAAAAAABAMRzFcRzJ0SRPUi3TcjVX' +\n'cz3Xc03XdV1XVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVYHQkFUAAAQAACGdZpZq' +\n'gAgzkGEgNGQVAIAAAAAYoQhDDAgNWQUAAAQAAIih5CCa0JrzzTkOmuWgqRSb08GJVJsnuamYm3PO' +\n'OeecbM4Z45xzzinKmcWgmdCac85JDJqloJnQmnPOeRKbB62p0ppzzhnnnA7GGWGcc85p0poHqdlY' +\n'm3POWdCa5qi5FJtzzomUmye1uVSbc84555xzzjnnnHPOqV6czsE54Zxzzonam2u5CV2cc875ZJzu' +\n'zQnhnHPOOeecc84555xzzglCQ1YBAEAAAARh2BjGnYIgfY4GYhQhpiGTHnSPDpOgMcgppB6NjkZK' +\n'qYNQUhknpXSC0JBVAAAgAACEEFJIIYUUUkghhRRSSCGGGGKIIaeccgoqqKSSiirKKLPMMssss8wy' +\n'y6zDzjrrsMMQQwwxtNJKLDXVVmONteaec645SGultdZaK6WUUkoppSA0ZBUAAAIAQCBkkEEGGYUU' +\n'UkghhphyyimnoIIKCA1ZBQAAAgAIAAAA8CTPER3RER3RER3RER3RER3P8RxREiVREiXRMi1TMz1V' +\n'VFVXdm1Zl3Xbt4Vd2HXf133f141fF4ZlWZZlWZZlWZZlWZZlWZZlCUJDVgEAIAAAAEIIIYQUUkgh' +\n'hZRijDHHnINOQgmB0JBVAAAgAIAAAAAAR3EUx5EcyZEkS7IkTdIszfI0T/M00RNFUTRNUxVd0RV1' +\n'0xZlUzZd0zVl01Vl1XZl2bZlW7d9WbZ93/d93/d93/d93/d939d1IDRkFQAgAQCgIzmSIimSIjmO' +\n'40iSBISGrAIAZAAABACgKI7iOI4jSZIkWZImeZZniZqpmZ7pqaIKhIasAgAAAQAEAAAAAACgaIqn' +\n'mIqniIrniI4oiZZpiZqquaJsyq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7ruq7rukBo' +\n'yCoAQAIAQEdyJEdyJEVSJEVyJAcIDVkFAMgAAAgAwDEcQ1Ikx7IsTfM0T/M00RM90TM9VXRFFwgN' +\n'WQUAAAIACAAAAAAAwJAMS7EczdEkUVIt1VI11VItVVQ9VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV' +\n'VVVVVVVVVVVV1TRN0zSB0JCVAAAZAAAjQQYZhBCKcpBCbj1YCDHmJAWhOQahxBiEpxAzDDkNInSQ' +\n'QSc9uJI5wwzz4FIoFURMg40lN44gDcKmXEnlOAhCQ1YEAFEAAIAxyDHEGHLOScmgRM4xCZ2UyDkn' +\n'pZPSSSktlhgzKSWmEmPjnKPSScmklBhLip2kEmOJrQAAgAAHAIAAC6HQkBUBQBQAAGIMUgophZRS' +\n'zinmkFLKMeUcUko5p5xTzjkIHYTKMQadgxAppRxTzinHHITMQeWcg9BBKAAAIMABACDAQig0ZEUA' +\n'ECcA4HAkz5M0SxQlSxNFzxRl1xNN15U0zTQ1UVRVyxNV1VRV2xZNVbYlTRNNTfRUVRNFVRVV05ZN' +\n'VbVtzzRl2VRV3RZV1bZl2xZ+V5Z13zNNWRZV1dZNVbV115Z9X9ZtXZg0zTQ1UVRVTRRV1VRV2zZV' +\n'17Y1UXRVUVVlWVRVWXZlWfdVV9Z9SxRV1VNN2RVVVbZV2fVtVZZ94XRVXVdl2fdVWRZ+W9eF4fZ9' +\n'4RhV1dZN19V1VZZ9YdZlYbd13yhpmmlqoqiqmiiqqqmqtm2qrq1bouiqoqrKsmeqrqzKsq+rrmzr' +\n'miiqrqiqsiyqqiyrsqz7qizrtqiquq3KsrCbrqvrtu8LwyzrunCqrq6rsuz7qizruq3rxnHrujB8' +\n'pinLpqvquqm6um7runHMtm0co6rqvirLwrDKsu/rui+0dSFRVXXdlF3jV2VZ921fd55b94WybTu/' +\n'rfvKceu60vg5z28cubZtHLNuG7+t+8bzKz9hOI6lZ5q2baqqrZuqq+uybivDrOtCUVV9XZVl3zdd' +\n'WRdu3zeOW9eNoqrquirLvrDKsjHcxm8cuzAcXds2jlvXnbKtC31jyPcJz2vbxnH7OuP2daOvDAnH' +\n'jwAAgAEHAIAAE8pAoSErAoA4AQAGIecUUxAqxSB0EFLqIKRUMQYhc05KxRyUUEpqIZTUKsYgVI5J' +\n'yJyTEkpoKZTSUgehpVBKa6GU1lJrsabUYu0gpBZKaS2U0lpqqcbUWowRYxAy56RkzkkJpbQWSmkt' +\n'c05K56CkDkJKpaQUS0otVsxJyaCj0kFIqaQSU0mptVBKa6WkFktKMbYUW24x1hxKaS2kEltJKcYU' +\n'U20txpojxiBkzknJnJMSSmktlNJa5ZiUDkJKmYOSSkqtlZJSzJyT0kFIqYOOSkkptpJKTKGU1kpK' +\n'sYVSWmwx1pxSbDWU0lpJKcaSSmwtxlpbTLV1EFoLpbQWSmmttVZraq3GUEprJaUYS0qxtRZrbjHm' +\n'GkppraQSW0mpxRZbji3GmlNrNabWam4x5hpbbT3WmnNKrdbUUo0txppjbb3VmnvvIKQWSmktlNJi' +\n'ai3G1mKtoZTWSiqxlZJabDHm2lqMOZTSYkmpxZJSjC3GmltsuaaWamwx5ppSi7Xm2nNsNfbUWqwt' +\n'xppTS7XWWnOPufVWAADAgAMAQIAJZaDQkJUAQBQAAEGIUs5JaRByzDkqCULMOSepckxCKSlVzEEI' +\n'JbXOOSkpxdY5CCWlFksqLcVWaykptRZrLQAAoMABACDABk2JxQEKDVkJAEQBACDGIMQYhAYZpRiD' +\n'0BikFGMQIqUYc05KpRRjzknJGHMOQioZY85BKCmEUEoqKYUQSkklpQIAAAocAAACbNCUWByg0JAV' +\n'AUAUAABgDGIMMYYgdFQyKhGETEonqYEQWgutddZSa6XFzFpqrbTYQAithdYySyXG1FpmrcSYWisA' +\n'AOzAAQDswEIoNGQlAJAHAEAYoxRjzjlnEGLMOegcNAgx5hyEDirGnIMOQggVY85BCCGEzDkIIYQQ' +\n'QuYchBBCCKGDEEIIpZTSQQghhFJK6SCEEEIppXQQQgihlFIKAAAqcAAACLBRZHOCkaBCQ1YCAHkA' +\n'AIAxSjkHoZRGKcYglJJSoxRjEEpJqXIMQikpxVY5B6GUlFrsIJTSWmw1dhBKaS3GWkNKrcVYa64h' +\n'pdZirDXX1FqMteaaa0otxlprzbkAANwFBwCwAxtFNicYCSo0ZCUAkAcAgCCkFGOMMYYUYoox55xD' +\n'CCnFmHPOKaYYc84555RijDnnnHOMMeecc845xphzzjnnHHPOOeecc44555xzzjnnnHPOOeecc845' +\n'55xzzgkAACpwAAAIsFFkc4KRoEJDVgIAqQAAABFWYowxxhgbCDHGGGOMMUYSYowxxhhjbDHGGGOM' +\n'McaYYowxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHGGGOMMcYYY4wxxhhjjDHG' +\n'GFtrrbXWWmuttdZaa6211lprrQBAvwoHAP8HG1ZHOCkaCyw0ZCUAEA4AABjDmHOOOQYdhIYp6KSE' +\n'DkIIoUNKOSglhFBKKSlzTkpKpaSUWkqZc1JSKiWlllLqIKTUWkottdZaByWl1lJqrbXWOgiltNRa' +\n'a6212EFIKaXWWostxlBKSq212GKMNYZSUmqtxdhirDGk0lJsLcYYY6yhlNZaazHGGGstKbXWYoy1' +\n'xlprSam11mKLNdZaCwDgbnAAgEiwcYaVpLPC0eBCQ1YCACEBAARCjDnnnHMQQgghUoox56CDEEII' +\n'IURKMeYcdBBCCCGEjDHnoIMQQgghhJAx5hx0EEIIIYQQOucchBBCCKGEUkrnHHQQQgghlFBC6SCE' +\n'EEIIoYRSSikdhBBCKKGEUkopJYQQQgmllFJKKaWEEEIIoYQSSimllBBCCKWUUkoppZQSQgghlFJK' +\n'KaWUUkIIoZRQSimllFJKCCGEUkoppZRSSgkhhFBKKaWUUkopIYQSSimllFJKKaUAAIADBwCAACPo' +\n'JKPKImw04cIDUGjISgCADAAAcdhq6ynWyCDFnISWS4SQchBiLhFSijlHsWVIGcUY1ZQxpRRTUmvo' +\n'nGKMUU+dY0oxw6yUVkookYLScqy1dswBAAAgCAAwECEzgUABFBjIAIADhAQpAKCwwNAxXAQE5BIy' +\n'CgwKx4Rz0mkDABCEyAyRiFgMEhOqgaJiOgBYXGDIB4AMjY20iwvoMsAFXdx1IIQgBCGIxQEUkICD' +\n'E2544g1PuMEJOkWlDgIAAAAA4AAAHgAAkg0gIiKaOY4Ojw+QEJERkhKTE5QAAAAAALABgA8AgCQF' +\n'iIiIZo6jw+MDJERkhKTE5AQlAAAAAAAAAAAACAgIAAAAAAAEAAAACAhPZ2dTAAQYOwAAAAAAAOGp' +\n'bkoCAAAAmc74DRgyNjM69TAzOTk74dnLubewsbagmZiNp4d0KbsExSY/I3XUTwJgkeZdn1HY4zoj' +\n'33/q9DFtv3Ui1/jmx7lCUtPt18/sYf9MkgAsAGRBd3gMGP4sU+qCPYBy9VrA3YqJosW3W2/ef1iO' +\n'/u3cg8ZG/57jU+pPmbGEJUgkfnaI39DbPqxddZphbMRmCc5rKlkUMkyx8iIoug5dJv1OYH9a59c+' +\n'3Gevqc7Z2XFdDjL/qHztRfjWEWxJ/aiGezjohu9HsCZdQBKbiH0VtU/3m85lDG2T/+xkZcYnX+E+' +\n'aqzv/xTgOoTFG+x7SNqQ4N+oAABSxuVXw77Jd5bmmTmuJakX7509HH0kGYKvARPpwfOSAPySPAc2' +\n'EkneDwB2HwAAJlQDYK5586N79GJCjx4+p6aDUd27XSvRyXLJkIC5YZ1jLv5lpOhZTz0s+DmnF1di' +\n'ptrnM6UDgIW11Xh8cHTd0/SmbgOAdxcyWwMAAGIrZ3fNSfZbzKiYrK4+tPqtnMVLOeWOG2kVvUY+' +\n'p2PJ/hkCl5aFRO4TLGYPZcIU3vYM1hohS4jHFlnyW/2T5J7kGsShXWT8N05V+3C/GPqJ1QdWisGP' +\n'xEzHqXISBPIinWDUt7IeJv/f5OtzBxpTzZZQ+CYEhHXfqG4aABQli72GJhN4oJv+hXcApAJSErAW' +\n'8G2raAX4NUcABnVt77CzZAB+LsHcVe+Q4h+QB1wh/ZrJTPxSBdI8mgTeAdTsQOoFUEng9BHcVPhx' +\n'SRRYkKWZJXOFYP6V4AEripJoEjXgA2wJRZHSExmJDm8F0A6gEXsg5a4ZsALItrMB7+fh7UKLvYWS' +\n'dtsDwFf1mzYzS1F82N1h2Oyt2e76B1QdS0SAsQigLPMOgJS9JRC7hFXA6kUsLFNKD5cA5cTRvgSq' +\n'Pc3Fl99xW3QTi/MHR8DEm6WnvaVQATwRqRKjywQ9BrrhugR2AKTsPQeQckrAOgDOhbTESyrXQ50C' +\n'kNpXdtWjW7W2/3UjeX3U95gIdalfRAoAmqUEiwp53hCdcCwlg47fcbfzlmQMAgaBkh7c+fcDgF+i' +\n'fwDXfzegLPcLYJsAAJQArTXjnh/uXGy3v1Hk3pV6/3t5ruW81f6prfbM2Q3WNVy98BwUtbCwhFhA' +\n'WuPev6Oe/4ZaFQUcgKrVs4defzh1TADA1DEh5b3VlDaECw5b+bPfkKos3tIAue3vJZOih3ga3l6O' +\n'3PSfIkrLv0PAS86PPdL7g8oc2KteNFKKzKRehOv2gJoFLBPXmaXvPBQILgJon0bbWBszrYZYYwE7' +\n'jl2j+vTdU7Vpk21LiU0QajPkywAAHqbUC0/YsYOdb4e6BOp7E0cCi04Ao/TgD8ZVAMid6h/A8IeB' +\n'Nkp6/xsAACZELEYIk+yvI6Qz1NN6lIftB/6IMWjWJNOqPTMedAmyaj6Es0QBklJpiSWWHnQ2CoYb' +\n'GWAmt+0gLQBFKCBnp2QUUQZ/1thtZDBJUpFWY82z34ocorB62oX7qB5y0oPAv/foxH25wVmgIHf2' +\n'xFOr8leZcBq1Kx3ZvCq9Bga639AxuHuPNL/71YCF4EywJpqHFAX6XF0sjVbuANnvvdLcrufYwOM/' +\n'iDa6iA468AYAAB6mNBMXcgTD8HSRqJ4vw8CjAlCEPACASlX/APwPOJKl9xQAAAPmnev2eWp33Xgy' +\n'w3Dvfz6myGk3oyP8YTKsCOvzAgALQi0o1c6Nzs2O2Pg2h4ACIJAgAGP0aNn5x0BDgVfH7u2TtyfD' +\n'cRIuYAyQhBF/lvSRAttgA6TPbWZA9gaUrZWAUEAA+Dx47Q3/r87HxUUqZmB0BmUuMlojFjHt1gDu' +\n'nnvuX8MImsjSq5WkzSzGS62OEIlOufWWezxWpv6FBgDgJVltfXFYtNAAnqU0xQoD0YLiXo5cF5QV' +\n'4CnY1tBLAkZCOABAhbk/AM+/AwSCCdlWAAAMcFjS7owb8GVDzveDiZvznbt2tF4bL5odN1YKl88T' +\n'AEABCZvufq9YCTBtMwVAQUEAwGtNltzSaHvADYC3TxLVjqiRA+OZAMhzcqEgRcAOwoCgvdTxsTHL' +\n'QEF6+oOb2+PAI8ciPQcXg7pOY+LjxQSv2fjmFuj34gGwz310/bGK6z3xgT887eomWULEaDd04wHe' +\n'tYxdjcgV2SxvSwn0VoZXJRqkRC5ASQ/muVoAUsX7AgAQMBNaVwAAlABRxT/1PmfqLqSRNDbhXb07' +\n'berpB3b94jpuWEZjBCD2OcdXFpCKEgCDfcFPMw8AAADUwT4lnUm50lmwrpMMhPQIKj6u0E8fr2vG' +\n'BngMNdIlrZsigjahljud6AFVg+tzXwUnXL3TJLpajaWKA4VAAAAMiFfqJgKAZ08XrtS3dxtQNYcp' +\n'PvYEG8ClvrQRJgBephwnNWJjtGqmp6VEPSvBe7EBiU3qgJbQAwD4Le8LAMDMhHbNAAAlgK+tFs5O' +\n'+YyJc9yCnJa3rxLPulGnxwsXV9Fsk2k4PisCAHC8FkwbGE9gJQAAoMnyksj0CdFMZLLgoz8M+Fxz' +\n'iwYBgIx+zHiCBAKAlBKNpF1sO9JpVcyEi9ar15YlHgrut5fPJnkdJ6vEwZPyAHQBIEDUrlMcBAAd' +\n'2KAS0Qq+JwRsE4AJZtMnAD6GnOYwYlOIZvtzUNdjreB7fiMkWI0CmBB6AIAKc38A9osEFlTSGECB' +\n'+cbeRDC0aRpLHqNPplcK/76Lxn2rpmqyXsYJWRi/FQAAAKBQk9MCAOibrQBQADCDsqpooPutd+05' +\n'Ce9g6iEdiYXgVmQAI4+4wskEBEiBloNQ6Ki0/KTQ0QjWfjxzi+AeuXKoMjEVfQOZzr0y941qLgM2' +\n'AExvbZOqcxZ6J6krlrj4y2j9AdgKDx6GnJsVLhbc42uq584+ouSdNBpoCiCVHrz+WzUA/DDtD8AT' +\n'gA3h0lMCAAzcFv+S+fSSNkeYWlTpb34mf2RfmqqJeMeklhHAfu7VoAEACgAApKRktL+KkQDWMwYC' +\n'UAAAAHCKsp80xhp91UjqQBw3x45cetqkjQEyu3G9B6N+R650Uq8OVig7wOm6Wun0ea4lKDPoabJs' +\n'6aLqgbhPzpv4KR4iODilw88ZpY7q1IOMcbASAOAVtmcCnobcrkG4KGS7/ZnskVWRNF9J0RUHKOnB' +\n'yy9WA8Dv6L4AAARMCQUA4GritfVM2lcZfH3Q3T/vZ47J2YHhcmBazjfdyuV25gLAzrc0cwAAAAAY' +\n'Ch6PdwAAAGyWjFW4yScjaWa2mGcofHxWxewKALglWBpLUvwwk+UOh5eNGyUOs1/EF+pZr+ud5Ozo' +\n'GwYdAABg2p52LiSgAY/ZVlOmilEgHn6G3OcwYjzI7vOj1t6xsx4S3lBY96EUQBF6AIBAmPYH4PoG' +\n'YCoJAADWe+OZJZi7/x76/yH7Lzf9M5XzRKnFPmveMsilQHwVAAAAAKB3LQD8PCIAAADga0QujBLy' +\n'wzeJ4a6Z/ERVBAUlAEDqvoM7BQBAuAguzFqILtmjH3Kd4wfKobnOhA3z85qWoRPm9hwoOHoDAAlC' +\n'bwDAA56FHAuXflHo3fe2ttG9XUDeA9YmYCBQ0oPr/1QC8IvuCwAAApbUAQCK22MmE3O78VAbHQT9' +\n'PIPNoT9zNc3l2Oe7TAVLANBufT8MAQAAAGzT4PS8AQAAoELGHb2uaCwwEv1EWhFriUkbAaAZ27/f' +\n'VZnTZXbWz3BwWpjUaMZKRj7dZ0J//gUeTdpVEwAAZOFsNxKAjQSgA+ABPoY8Jj5y2wje81jsXc/1' +\n'TOQWTDYZBmAkNDiqVwuA2NJ9AQAAEBKAt9Vrsfs/2N19MO91S9rd8EHTZHnzC5MYmfQEACy/FBcA' +\n'AADA5c4gi4z8RANs/m6FNXVo9DV46JG1BBDukqlw/Va5G7QbuGVSI+2aZaoLXJrdVj2zlC9Z5QEA' +\n'EFz/5QzgVZwAAAAA/oXcxyC6WfTu+09Ve/c766J4VTAGUFmA51+VANKi/QPoPwYgYAkA715OH4S0' +\n's5KDHvj99MMq8TPFc3roKZnGOoT1bmIhVgc7XAMBAAAAAMAW1VbQw3gapzOpJd+Kd2fc4iSO62fJ' +\n'v9+movui1wUNPAj059N3OVxzk4gV73PmE8FIA2F5mRq37Evc76vLXfF4rD5UJJAw46hW6LZCb5sN' +\n'Ldx+kzMCAAB+hfy95+965ZCLP7B3/VlTHCvDEKtQhTm4KiCgAEAbrfbWTPssAAAAXpee1tVrozYY' +\n'n41wD1aeYtkKfswN5/SXPO0JDnhO/4laUortv/s412fybe/nONdncoCHnBVliu0CQGBWlPY/5Kwo' +\n'm2L/kruPM6Q7oz4tvDQy+bZ3HzOi+gNHA4DZEgA=' +\n''\n);\n\nlib.resource.add('hterm/images/icon-96', 'image/png;base64',\n'iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABGdBTUEAALGPC/xhBQAAAAFzUkdC' +\n'AK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dE' +\n'AP8A/wD/oL2nkwAAAAlwSFlzAAAuIwAALiMBeKU/dgAAFKhJREFUeNrtXXlsXMd5/30z8649uDzE' +\n'mxRFibIsOXZ8VInTJFYSW3actE1ctWkctEF6I0VRFEWAoihQoAjQFmiBogWaIEADFCmQXklto04T' +\n'O0ndWI4bxZalWHJinTYtkRJFkctzl9zd977+8c49+UjuipbCD1y+9+ae75vvmJlv3gO2YRu2YRu2' +\n'YRu2YUuAtroBN3nfeKsaSXWurarvRvUrTnlccV/5a3lDReRKFdc4Za6nzvW2b7OIpwZh7N37iHYi' +\n'Pztyvy4iqA00Tng/WXH1f3GQsFki0Qbz+cAV12jeRkTwwUd2yfsVI89OjbLrwnoJILw8EoAOIAFg' +\n'LwDTCxcAJBEJIiIAgoiICAIgIgIBJGpdPRCRq3sPCBAJAii8QgAk/PIFkSBBQvh3QRkQXtECBKpx' +\n'H9br5hMikhcg4QV4dYkgARFBSkmlUmnp7LmLX8rl8q95OPKJ0DQCkPeTEcQrAD179+7+7LsP3vtJ' +\n'w9A1ZvbwFfQM/r1/AyD64KLBv5JHIaIwIpI5GIbevd82r0I3OMjvJfOo5ffCqw1EhIRlQQi3a37p' +\n'0atfTVB22PhIuHt95tnnBr75zHN/AGASoYjyxVVTCOCPfOWN9sGfue+df/L4r3z8MSGUOv3aWYDI' +\n'q43BEXXEQRPCQK5qFleFMdduOwMV3WKUBXFVyVXhtm3jrjtvw13vuL1uPXGAAUghkGlLPXJ9ZvZz' +\n'L738oz8HsOhFF2u3aH0E8JEvAWhe+n2PHD70Z7/xmccfLBSK9M1nX0AqnYFSKiB7fIiOzg3k21Be' +\n'YHW1gMkr1/DBB+6HkGLTxmRfbxf9+qc/8WszM9lzF99468twxZCAq5wbQiMCREWPBkDXde3eI489' +\n'+he/+1u/et/c3AK+/uSzyLTvgK7rm+tBE4CZA1HRaFT7oqNQKCCdsqBp61GD9eHBD77XunJ16o/+' +\n'6q+/cLJYLP2fhzfGGkRYiwBRK2fnL/3iRz7/uT/8nfuuz2Txla8+hXRbJ6QUKBaLuJmgVLJRKuSh' +\n'lIBpatiEFApACIFHH/lA//NHj33qe0ePvQJXEa/JnHEIoABYd925/zOPf+JjBxMJC//yxX+GYaZg' +\n'GAZse00ue1uByyWMQrGEldVVKCWbQgAA6OnegQP7997zvaPH2gGsIpQidWuoRwA/o2/bDz70off+' +\n'nFIa/fczz2Pq2hzSbRksLCxsNT43BI7jYCW/ihd/cBKWZTZhQcFV9qMjQ0gmEwm4hkqsOVEjDogq' +\n'37bOjvaElBKLizmYVgKWZW01HjeOLGaAbUipoJTWHAKwa4KYpmHCJUB0lQCoU0scK0gCMJRSqqOj' +\n'Hel0EqZpIpFIbDUeNwwOM2y7gO4dnWhrSzVFBDEzMpkULNM04BIgFsS1ggxNUzKVSiCRsEBEUEoF' +\n'iRq2v5HNXjMd18pSHVeZnuuniZaopIIQBAIhnUqgvb1tU3OBKFiWCdMydABWBH+bIoCvA3RNU9Ky' +\n'DOiahG2XAAAzszO4NHkZINcKALuddRHi3VWFReLcWy8dhxO5aFpvkhamD5HFwQQuStgwLPpsOza4' +\n'5GD/yD4MDw2jVCrCMHSkUwmws3kCMADD0GCZpialMG3bia4trVsJ+xkJAKSUStM0oWsSQrgTGdu2' +\n'MXllEmezF/HRhz+C4b6hyEgrnyjVLLzhcho1iFsDiGomOzt+Ds/8z7PIzmfR39eP1dVVSOEijR0n' +\n'RsFrg1ISpmkoQ9cTufxKrBbHmoUoJZWmlPDXRZgdMDNsx8HuXbtx3zvvhRQKTdFmLQACoT2dwY9e' +\n'fRWlvA1m1xJy2IEggkPrnUvXB9M0lGkaiVx+xR/ADQuPRQAppaY0JfzOBB0joFAs4Oyb59E0Y7pF' +\n'4DDDdmw47LgygQHbbs7Ij4JpGMIwjGRFcF0xFJcDdE0pUb3YQ1hYWsDFSxff7vgHMyO3kkMGiaAP' +\n'zScAwzB0YVlmAuHo3zQHkKaUppTHAUQBLQnAYm4J41feCldAGeHe2FaCq9fdXQMP8qt5sB6OlGbP' +\n'4pkBwzBgGHoKMdcIG82Ew0RK6UqTxHAJEHSBCLmVHCavXwUcwGpXMJIS2YnVhrq01cAOQxkC7YMG' +\n'5i6vwi65LV4trIK10GJyHLvpTTR0DZZlJtEEMxR+IVJJTSlFAFdZL47joFgswrEZ3X06Dv3eAH78' +\n'7Vm8/t0s8nMld9PjBhHCN1G7dlm490g3rIzCt/5yHIWiA5dxGQ5HOcBpatuYGZquwTSNTXMAogVo' +\n'SukuAXwlzFUpSRCyl1cx+VoOBz/Zi93vyeDE16bx1iuLsIsOSLSWCuwwEh0a9h/uxDs+2gWnxDj+' +\n'79dQKjhlg4bZl/vkiaDmtkvXNFimmURMJ4VYOkBpSldSug91TDYiIDdXwtEvTeDNlxZw3y/34PDn' +\n'duLCi/M4+eQ0Zt5cCdI1G/FKFxg5mME9R7rRMWTi/AtzOPnENLKXV2tyrA+lFqzkKk3BNI0k3BWE' +\n'5swDXA7wlm0bFEkEODbjzWPzmDqTw4HDnbjz57swdHcKp56+jte/k0VurtRUInSPJXD3Y90YfXcb' +\n'Zt7I49t/M45LJ5ZgF7lMAbsN9BfiXE5uthXEzFBK+TpAhrVunAAEeEp4DQ4oyyQI+fkSjn/tGsZf' +\n'WcA9j3Xjvk/0Yte72vD8FyZw/Y2VauRsAA483ImDn+oF28DL/zqFn3wni/xcESSoTvkExxdBBNil' +\n'FnCAlLBMM+Hhdk3HtThoIE1TulTuDlscAgAuNxCA6XN5HP+Pa8heWsHAgSQyA0ZzFr8IGHhHCuke' +\n'HedfmMOpb8wgly021jXkTsjYm9C0YjNJSgFvHuAP7qbMA3TpcwAo1ooDOwwjKTH2QDvu/lg3lCnw' +\n'g69cxcSpJc8dZJPgACeeuAYhgf0Pd6JjyMArX5/GlZ8sg23U5TCf+ESt0QFCCFiWYcF131kT4lhB' +\n'pDSXAMy+Eq1PAXYAIYHBu9O490g3evclMf7yAk785zSuX8i7Y68ZOoCA6xdW8N2/u4TRd2dw75Fu' +\n'PPqnu3Dmu7N49RszWLiyGvgGRfM47HjNdzmg6U6kRLAs02wGAXwieBwgggoaMUD7oI67fmEHbjvU' +\n'gfmrBTz395fw5ksLKK26pmgzO0wCsFcZ576XxeTpZdzxaCfu+HAXRg624eST0zh/dB6FXDjK3TUg' +\n'VwQREUot0AFCEEx3U8ZoBgEAVwdoUnheFnWGLztA1y4Tj/zxCIyUwI+emsaPn5nF8qyvFFs0D/C8' +\n'05Zni3jpq1MY/+EC7jnSg/f+5gB69yXw/BcnYBfDIeMrYaLW6ACAYFmmjpi7YqpmCRWMq2maLgIO' +\n'qFcUQ7MErp5ZxqmnZ0Jx0+IJWNBIr5qpszl852/fwp73ZNC3PwmhKCQAUWCGAu5MuNlriEQEy6za' +\n'FauLhHg6QClNejte9YQICcL1i3k8/4UJd/bZZHETGwGCYK8yzjw3h4vHFmAXym19dxfNE0Etcqkx' +\n'TVPTdd0qFApRPNaEtcxQAiA0TelCeKvRDTSoXWTYJb5ho75Rq0kApbwDrphrOREd0Ip5AOBuyhiG' +\n'HsttpB4BohiUmqZpgel4Mx1qournYCbcUg4wpLccUasVZVCLAJUZhKaUTp5hvTWCpXnAcEIOsG00' +\n'fxuVYRq6MA3dX5JuCGt5xhEAqWkq4IC4M+GYbV0/bLJ6h92dmlaJIG9ThkyzbE9gQ0rYB6lpSgUc' +\n'0CT8C0nQzPUvCDk2o7iysUU0gmsFcSCCnJZspeq6BtPUk3HSxrGChKZpmu/U2gwKsMPo2Z/E+397' +\n'AELFL48EMHFqGd//x0k49gYwR+VWUGvmAQxD12GZZgox1tpiuSa6HOCJIJ8umxo5hELOxvSFPEiu' +\n'IxcR5idXNzVqqwnQXBZghr8r5m/KbHgxzs+oNE1T/sBvhggiAcyOr+B//+FyUzsfD0ERM7RFIkjT' +\n'gj2BNTmgnhUUXcd2N4SpBUp4C6DVHABmaEr5+8L+rtiGlTADUK4I8kJ8XeDDes/KAw37zPUSrYUn' +\n'5tpJOJqE4ThOSACn+RzAAKSU/p7AmgI2phWkyeB4ZqQiAsFZtkFOZI+Ao7SgytVgeJoQVBkf+HRG' +\n'rxVhVBFGqHj24imSP3psFUAylYCSEsWSDdu2y86WNQukuytmIdwVq3tSJo5zrtI0JUMjiAJzbrB/' +\n'AA8YRnCWNnLON3JuFyEiIj8AZen9Vc0wL0JkRtMgGlfjDHBwDSLKzwp7dRZL+aYivZwAApZlWnAP' +\n't0TxuSYBKocCA1BKUxIgMBy0taUAOCiVikilUkin0/FbFnEz3xxQLGMg6rpemX9paQm37x2DlLLM' +\n'U6IZIITwOUCraEAVERotR4ccoDQJAI7DGBrsx8MP3o+nv/V9dHf3BAc1IjguO00d+OpHffYrw5ir' +\n'09WMi5wd4PC8QLDHXHGmIHr1G8dgsOOgoyOJB973LjR/KSLYFYtuymxYCZOUUtM8z2i/w48cPgTT' +\n'MPDD46eQX1mG768Smqq+qAFEROwIQSASZVdBAiQIQggI8q7+c/AjSCEgZBgm/TgZ3stovKy4Rsqz' +\n'LBMjOweRSiXhNOFwRi0CmJbhE2BTm/KspNQ0pcrMVaUkDj/0fnzg0P0olkqhs+4a71xoeA0LKCur' +\n'Irhmf2rJzca9cl0Um3U0qZoAqNwV25AS9pEdnA2IguM4kFLC95bYLPiiJYIjtEI83BggWKapCSEs' +\n'x3E2txinlPJOx9z8k7AbBUTBSRkrl8tv+GUdDIClksphFsvL+ZacKLn1gL3V0DICrOuQXvSohUNE' +\n'2rnz41QqcdPNtVsRGEBbOgnbdkjTVKUZWgWqRn4fHABOoVBcNE2ztHPnoL7NAfHANHS8dPzE0sxM' +\n'dsILqvsGrXocEGRYXFx67fUz5y729e7Yw4ADjumb2AJoWq2xCtrwdh0TQRz74YmLpZI9HitHjTCC' +\n'a0KZANKGoX88lUo+pCmlhBASYMmAjE76Ea4CoNyerDYuUZHRXwiq2Pan8r/yNkcMAiqvv+pwFFWm' +\n'pQqbl6isaqoVVtajsJfB0piXwCEidhyHp6/PHpudnfs8gDm4b07xX+xXBnEW43jv2Ojo73/20x+e' +\n'zc47Fy6MN/IOXZ+ZxBvIE6eeCovbn0FXzjXqt4urEsVlGsPQ8NFHP0RP/dez4sv/9G8ZuK8wq2uK' +\n'xtkRs+44cNs7e3t61NEXXwVIVUye1o+f+nnXsT1ZlrwiH9dKjLp+TZVhoRNy/Jb5PrPjlyfAzDiw' +\n'f28vgD4AV+AuS5dq5au3FuS/I0IB6B3bM7L7wsW3IJSBjvb2ls0gb3YgIiym0hi/NImB/p5Mpi09' +\n'Or+weBqu+CliHYtx/ruCpGWZu3cOD/Sceu08ioUiFhcX12rHTy0QEXTdwKVLV7B/326tt3fHnvmF' +\n'RQMu8v03aAERIjTyC5IAtJGdg/s7OjLmbHYBXV29TVt6uFVB13VMXZtFwrIwMNA3dvbcGxaAFYQb' +\n'9LE5QAFI7Nk9cgdAyOeL2CFlS8XPrbDUoZTC4lIexVIJw0P9IwDScBVxzVOT9QggvbiuvWOjY9ns' +\n'PBxmLC0tbc+G1wApJWyHMTObxcjwYB+ALgBTCN8+WTYpa0QAQUTDu0eH+ycmp5BOtyGVSm0r4Big' +\n'6wYmJqYwNNTfIaXss237DEIRVMYFUQIEnnDwOGBwoG9ff19P+tXT52BZiVtCRLS6D8wM0zRx6fJV' +\n'/Oz991jdOzp3Xp2a9iVKlTlayQFR89PYPTp8wLJMys4tItNuYH5+fqvx97YHIQQ0XcfUtRmkUgnq' +\n'7+8duTo1raGOj1AlB0TnAOm9Y6O35XJ5MAskk8lt8bMOmMzOwHEYw0P9IydOnjYR6oC6BADK5wD9' +\n'e8d2DV65Og3dMKGUuuUUcCvFkcPA/PwCRnYODAJoA3AdNRy1anGABCA7O9vHRnYOdrx84sdgBubm' +\n'5rY5ICa4m/8Sk1enMTQ00A2gG8BbKOcCBmpzgASgj44M7+/oaJfXpmfR3t5xy07AWsUFhUIRlyem' +\n'cOcde9OpVHJgaWn5FawhgqLfhkmOje26nZmRyxXQtePmfU3xVoFpmbg2PYtMW1rr6+3eeX5pOaqE' +\n'gyWJShHkJ9px297RXddnsiiWbCwuLv5UiJ9aX/bYSBlE7nV5OYe2dAqDA727zl94s5IAZSIoKv9F' +\n'ImHt2rN7pDs7N4/l5WVIOesRwH8Tbs2qgwvXi6uKr9PB+u8ujomSeKlonZG0RmRl6AcPHcTAQC8G' +\n'B/uGEb5RPToh46j3bhCxc3hg39Bgn9nbswPpVBK53ErZR2tqOV358eVx4X2wzRRx2K103q12yEXo' +\n'5Bvcry99I4ewuI5kYdsj6SIOxV5omXOwphS6ujoghMDw0EAvXEvoSgTfAKrfaUMA9F0jQ7d3d3ch' +\n'k0njoQ+9b83NiK0VTnHendOqdnLdIIY7K3YJ0N8ppeixbecMYixFpHaNDI+mU0n3pdl8a9n+NxJ8' +\n'7ujv7030dO8YvHL1mr8zWsYBlZrZymTSKaUlQNLAVo/vmxsIxCV0tLeJzs72bo8AboSH71qroStL' +\n'S8u567PzyK86G9ox32yjW1lU6/sTrYFhmQqWZSGdSmZqpVZlqV3IzcxkZ6evTWFpebWmT2+tj6MF' +\n'76OtdbSL61gyzDXTlZ0hKE9Q9rEGrrK8uELec1Vc+bcJIvfRwyM1wpiry2sU5opvRqYtCcuUKBSK' +\n'JYQf/QzcFX0CRN0Rc8dPnD5qJZ7okVKCHYd8V27/RRcM9gAAewc/2bsLH+GnCf+Xp/PmFsFtEBum' +\n'Lqss8oTIX9lzUFCQJ9rAijRV92VtjTxHyquqpKzLjn+Fu+xsKyULzLzyxhuXnkSNL66WnYRB+KnC' +\n'DNydHP/dZzpCU7WWUuAGzxwjvlYZ9cLWm4cbxMUpD2vkqQzzkVwEUIC7Gb/iXQvez3fSYlWR0YZL' +\n'uUUvkYHw453+JGK9EKdTrdT0Db2TW9CO6DeGSyhHetWXVqOfvXAq7m0vY9xvBW+28RvJ3ygP4ca3' +\n'KcpJUU7wER/VAQBqK2H/DRZ+hspDe81EYKsQsZV1Vg7oKNKjyGegsXNuFOE302Ywr/G8Fe2pq4fq' +\n'IfZmQvjbHbZ6AGzDNmzDNmzD2xT+H+5UT7Tyxc2HAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA2' +\n'LTMwVDExOjUwOjAyLTA0OjAwOaSkCgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxMy0xMS0wMVQxMDoz' +\n'ODoyNC0wNDowMNba8BsAAAAASUVORK5CYII=' +\n''\n);\n\nlib.resource.add('hterm/concat/date', 'text/plain',\n'Tue, 22 Aug 2017 06:42:31 +0000' +\n''\n);\n\nlib.resource.add('hterm/changelog/version', 'text/plain',\n'1.70' +\n''\n);\n\nlib.resource.add('hterm/changelog/date', 'text/plain',\n'2017-08-16' +\n''\n);\n\nlib.resource.add('hterm/git/HEAD', 'text/plain',\n'git rev-parse HEAD' +\n''\n);\n\n// SOURCE FILE: hterm/js/hterm_export.js\nmodule.exports = {\n hterm: hterm,\n lib: lib\n};\n\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/libapps/hterm/dist/js/hterm_module.js\n// module id = 14\n// module chunks = 0","import { Hterm } from \"./hterm\";\nimport { Xterm } from \"./xterm\";\nimport { Terminal, WebTTY, protocols } from \"./webtty\";\nimport { ConnectionFactory } from \"./websocket\";\n\n// @TODO remove these\ndeclare var gotty_auth_token: string;\ndeclare var gotty_term: string;\n\nconst elem = document.getElementById(\"terminal\")\n\nif (elem !== null) {\n var term: Terminal;\n if (gotty_term == \"hterm\") {\n term = new Hterm(elem);\n } else {\n term = new Xterm(elem);\n }\n const httpsEnabled = window.location.protocol == \"https:\";\n const url = (httpsEnabled ? 'wss://' : 'ws://') + window.location.host + window.location.pathname + 'ws';\n const args = window.location.search;\n const factory = new ConnectionFactory(url, protocols);\n const wt = new WebTTY(term, factory, args, gotty_auth_token);\n const closer = wt.open();\n\n window.addEventListener(\"unload\", () => {\n closer();\n term.close();\n });\n};\n\n\n\n// WEBPACK FOOTER //\n// ./src/main.ts","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar CompositionHelper = (function () {\n function CompositionHelper(textarea, compositionView, terminal) {\n this.textarea = textarea;\n this.compositionView = compositionView;\n this.terminal = terminal;\n this.isComposing = false;\n this.isSendingComposition = false;\n this.compositionPosition = { start: null, end: null };\n }\n CompositionHelper.prototype.compositionstart = function () {\n this.isComposing = true;\n this.compositionPosition.start = this.textarea.value.length;\n this.compositionView.textContent = '';\n this.compositionView.classList.add('active');\n };\n CompositionHelper.prototype.compositionupdate = function (ev) {\n var _this = this;\n this.compositionView.textContent = ev.data;\n this.updateCompositionElements();\n setTimeout(function () {\n _this.compositionPosition.end = _this.textarea.value.length;\n }, 0);\n };\n CompositionHelper.prototype.compositionend = function () {\n this.finalizeComposition(true);\n };\n CompositionHelper.prototype.keydown = function (ev) {\n if (this.isComposing || this.isSendingComposition) {\n if (ev.keyCode === 229) {\n return false;\n }\n else if (ev.keyCode === 16 || ev.keyCode === 17 || ev.keyCode === 18) {\n return false;\n }\n else {\n this.finalizeComposition(false);\n }\n }\n if (ev.keyCode === 229) {\n this.handleAnyTextareaChanges();\n return false;\n }\n return true;\n };\n CompositionHelper.prototype.finalizeComposition = function (waitForPropogation) {\n var _this = this;\n this.compositionView.classList.remove('active');\n this.isComposing = false;\n this.clearTextareaPosition();\n if (!waitForPropogation) {\n this.isSendingComposition = false;\n var input = this.textarea.value.substring(this.compositionPosition.start, this.compositionPosition.end);\n this.terminal.handler(input);\n }\n else {\n var currentCompositionPosition_1 = {\n start: this.compositionPosition.start,\n end: this.compositionPosition.end,\n };\n this.isSendingComposition = true;\n setTimeout(function () {\n if (_this.isSendingComposition) {\n _this.isSendingComposition = false;\n var input = void 0;\n if (_this.isComposing) {\n input = _this.textarea.value.substring(currentCompositionPosition_1.start, currentCompositionPosition_1.end);\n }\n else {\n input = _this.textarea.value.substring(currentCompositionPosition_1.start);\n }\n _this.terminal.handler(input);\n }\n }, 0);\n }\n };\n CompositionHelper.prototype.handleAnyTextareaChanges = function () {\n var _this = this;\n var oldValue = this.textarea.value;\n setTimeout(function () {\n if (!_this.isComposing) {\n var newValue = _this.textarea.value;\n var diff = newValue.replace(oldValue, '');\n if (diff.length > 0) {\n _this.terminal.handler(diff);\n }\n }\n }, 0);\n };\n CompositionHelper.prototype.updateCompositionElements = function (dontRecurse) {\n var _this = this;\n if (!this.isComposing) {\n return;\n }\n var cursor = this.terminal.element.querySelector('.terminal-cursor');\n if (cursor) {\n var xtermRows = this.terminal.element.querySelector('.xterm-rows');\n var cursorTop = xtermRows.offsetTop + cursor.offsetTop;\n this.compositionView.style.left = cursor.offsetLeft + 'px';\n this.compositionView.style.top = cursorTop + 'px';\n this.compositionView.style.height = cursor.offsetHeight + 'px';\n this.compositionView.style.lineHeight = cursor.offsetHeight + 'px';\n var compositionViewBounds = this.compositionView.getBoundingClientRect();\n this.textarea.style.left = cursor.offsetLeft + 'px';\n this.textarea.style.top = cursorTop + 'px';\n this.textarea.style.width = compositionViewBounds.width + 'px';\n this.textarea.style.height = compositionViewBounds.height + 'px';\n this.textarea.style.lineHeight = compositionViewBounds.height + 'px';\n }\n if (!dontRecurse) {\n setTimeout(function () { return _this.updateCompositionElements(true); }, 0);\n }\n };\n ;\n CompositionHelper.prototype.clearTextareaPosition = function () {\n this.textarea.style.left = '';\n this.textarea.style.top = '';\n };\n ;\n return CompositionHelper;\n}());\nexports.CompositionHelper = CompositionHelper;\n\n//# sourceMappingURL=CompositionHelper.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/CompositionHelper.js\n// module id = 16\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar EscapeSequences_1 = require(\"./EscapeSequences\");\nvar Charsets_1 = require(\"./Charsets\");\nvar InputHandler = (function () {\n function InputHandler(_terminal) {\n this._terminal = _terminal;\n }\n InputHandler.prototype.addChar = function (char, code) {\n if (char >= ' ') {\n var ch_width = wcwidth(code);\n if (this._terminal.charset && this._terminal.charset[char]) {\n char = this._terminal.charset[char];\n }\n var row = this._terminal.y + this._terminal.ybase;\n if (!ch_width && this._terminal.x) {\n if (this._terminal.lines.get(row)[this._terminal.x - 1]) {\n if (!this._terminal.lines.get(row)[this._terminal.x - 1][2]) {\n if (this._terminal.lines.get(row)[this._terminal.x - 2])\n this._terminal.lines.get(row)[this._terminal.x - 2][1] += char;\n }\n else {\n this._terminal.lines.get(row)[this._terminal.x - 1][1] += char;\n }\n this._terminal.updateRange(this._terminal.y);\n }\n return;\n }\n if (this._terminal.x + ch_width - 1 >= this._terminal.cols) {\n if (this._terminal.wraparoundMode) {\n this._terminal.x = 0;\n this._terminal.y++;\n if (this._terminal.y > this._terminal.scrollBottom) {\n this._terminal.y--;\n this._terminal.scroll(true);\n }\n else {\n this._terminal.lines.get(this._terminal.y).isWrapped = true;\n }\n }\n else {\n if (ch_width === 2)\n return;\n }\n }\n row = this._terminal.y + this._terminal.ybase;\n if (this._terminal.insertMode) {\n for (var moves = 0; moves < ch_width; ++moves) {\n var removed = this._terminal.lines.get(this._terminal.y + this._terminal.ybase).pop();\n if (removed[2] === 0\n && this._terminal.lines.get(row)[this._terminal.cols - 2]\n && this._terminal.lines.get(row)[this._terminal.cols - 2][2] === 2) {\n this._terminal.lines.get(row)[this._terminal.cols - 2] = [this._terminal.curAttr, ' ', 1];\n }\n this._terminal.lines.get(row).splice(this._terminal.x, 0, [this._terminal.curAttr, ' ', 1]);\n }\n }\n this._terminal.lines.get(row)[this._terminal.x] = [this._terminal.curAttr, char, ch_width];\n this._terminal.x++;\n this._terminal.updateRange(this._terminal.y);\n if (ch_width === 2) {\n this._terminal.lines.get(row)[this._terminal.x] = [this._terminal.curAttr, '', 0];\n this._terminal.x++;\n }\n }\n };\n InputHandler.prototype.bell = function () {\n var _this = this;\n if (!this._terminal.visualBell) {\n return;\n }\n this._terminal.element.style.borderColor = 'white';\n setTimeout(function () { return _this._terminal.element.style.borderColor = ''; }, 10);\n if (this._terminal.popOnBell) {\n this._terminal.focus();\n }\n };\n InputHandler.prototype.lineFeed = function () {\n if (this._terminal.convertEol) {\n this._terminal.x = 0;\n }\n this._terminal.y++;\n if (this._terminal.y > this._terminal.scrollBottom) {\n this._terminal.y--;\n this._terminal.scroll();\n }\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x--;\n }\n };\n InputHandler.prototype.carriageReturn = function () {\n this._terminal.x = 0;\n };\n InputHandler.prototype.backspace = function () {\n if (this._terminal.x > 0) {\n this._terminal.x--;\n }\n };\n InputHandler.prototype.tab = function () {\n this._terminal.x = this._terminal.nextStop();\n };\n InputHandler.prototype.shiftOut = function () {\n this._terminal.setgLevel(1);\n };\n InputHandler.prototype.shiftIn = function () {\n this._terminal.setgLevel(0);\n };\n InputHandler.prototype.insertChars = function (params) {\n var param, row, j, ch;\n param = params[0];\n if (param < 1)\n param = 1;\n row = this._terminal.y + this._terminal.ybase;\n j = this._terminal.x;\n ch = [this._terminal.eraseAttr(), ' ', 1];\n while (param-- && j < this._terminal.cols) {\n this._terminal.lines.get(row).splice(j++, 0, ch);\n this._terminal.lines.get(row).pop();\n }\n };\n InputHandler.prototype.cursorUp = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y -= param;\n if (this._terminal.y < 0) {\n this._terminal.y = 0;\n }\n };\n InputHandler.prototype.cursorDown = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y += param;\n if (this._terminal.y >= this._terminal.rows) {\n this._terminal.y = this._terminal.rows - 1;\n }\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x--;\n }\n };\n InputHandler.prototype.cursorForward = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.x += param;\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x = this._terminal.cols - 1;\n }\n };\n InputHandler.prototype.cursorBackward = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x--;\n }\n this._terminal.x -= param;\n if (this._terminal.x < 0) {\n this._terminal.x = 0;\n }\n };\n InputHandler.prototype.cursorNextLine = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y += param;\n if (this._terminal.y >= this._terminal.rows) {\n this._terminal.y = this._terminal.rows - 1;\n }\n this._terminal.x = 0;\n };\n ;\n InputHandler.prototype.cursorPrecedingLine = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y -= param;\n if (this._terminal.y < 0) {\n this._terminal.y = 0;\n }\n this._terminal.x = 0;\n };\n ;\n InputHandler.prototype.cursorCharAbsolute = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.x = param - 1;\n };\n InputHandler.prototype.cursorPosition = function (params) {\n var row, col;\n row = params[0] - 1;\n if (params.length >= 2) {\n col = params[1] - 1;\n }\n else {\n col = 0;\n }\n if (row < 0) {\n row = 0;\n }\n else if (row >= this._terminal.rows) {\n row = this._terminal.rows - 1;\n }\n if (col < 0) {\n col = 0;\n }\n else if (col >= this._terminal.cols) {\n col = this._terminal.cols - 1;\n }\n this._terminal.x = col;\n this._terminal.y = row;\n };\n InputHandler.prototype.cursorForwardTab = function (params) {\n var param = params[0] || 1;\n while (param--) {\n this._terminal.x = this._terminal.nextStop();\n }\n };\n InputHandler.prototype.eraseInDisplay = function (params) {\n var j;\n switch (params[0]) {\n case 0:\n this._terminal.eraseRight(this._terminal.x, this._terminal.y);\n j = this._terminal.y + 1;\n for (; j < this._terminal.rows; j++) {\n this._terminal.eraseLine(j);\n }\n break;\n case 1:\n this._terminal.eraseLeft(this._terminal.x, this._terminal.y);\n j = this._terminal.y;\n while (j--) {\n this._terminal.eraseLine(j);\n }\n break;\n case 2:\n j = this._terminal.rows;\n while (j--)\n this._terminal.eraseLine(j);\n break;\n case 3:\n var scrollBackSize = this._terminal.lines.length - this._terminal.rows;\n if (scrollBackSize > 0) {\n this._terminal.lines.trimStart(scrollBackSize);\n this._terminal.ybase = Math.max(this._terminal.ybase - scrollBackSize, 0);\n this._terminal.ydisp = Math.max(this._terminal.ydisp - scrollBackSize, 0);\n }\n break;\n }\n };\n InputHandler.prototype.eraseInLine = function (params) {\n switch (params[0]) {\n case 0:\n this._terminal.eraseRight(this._terminal.x, this._terminal.y);\n break;\n case 1:\n this._terminal.eraseLeft(this._terminal.x, this._terminal.y);\n break;\n case 2:\n this._terminal.eraseLine(this._terminal.y);\n break;\n }\n };\n InputHandler.prototype.insertLines = function (params) {\n var param, row, j;\n param = params[0];\n if (param < 1) {\n param = 1;\n }\n row = this._terminal.y + this._terminal.ybase;\n j = this._terminal.rows - 1 - this._terminal.scrollBottom;\n j = this._terminal.rows - 1 + this._terminal.ybase - j + 1;\n while (param--) {\n if (this._terminal.lines.length === this._terminal.lines.maxLength) {\n this._terminal.lines.trimStart(1);\n this._terminal.ybase--;\n this._terminal.ydisp--;\n row--;\n j--;\n }\n this._terminal.lines.splice(row, 0, this._terminal.blankLine(true));\n this._terminal.lines.splice(j, 1);\n }\n this._terminal.updateRange(this._terminal.y);\n this._terminal.updateRange(this._terminal.scrollBottom);\n };\n InputHandler.prototype.deleteLines = function (params) {\n var param, row, j;\n param = params[0];\n if (param < 1) {\n param = 1;\n }\n row = this._terminal.y + this._terminal.ybase;\n j = this._terminal.rows - 1 - this._terminal.scrollBottom;\n j = this._terminal.rows - 1 + this._terminal.ybase - j;\n while (param--) {\n if (this._terminal.lines.length === this._terminal.lines.maxLength) {\n this._terminal.lines.trimStart(1);\n this._terminal.ybase -= 1;\n this._terminal.ydisp -= 1;\n }\n this._terminal.lines.splice(j + 1, 0, this._terminal.blankLine(true));\n this._terminal.lines.splice(row, 1);\n }\n this._terminal.updateRange(this._terminal.y);\n this._terminal.updateRange(this._terminal.scrollBottom);\n };\n InputHandler.prototype.deleteChars = function (params) {\n var param, row, ch;\n param = params[0];\n if (param < 1) {\n param = 1;\n }\n row = this._terminal.y + this._terminal.ybase;\n ch = [this._terminal.eraseAttr(), ' ', 1];\n while (param--) {\n this._terminal.lines.get(row).splice(this._terminal.x, 1);\n this._terminal.lines.get(row).push(ch);\n }\n };\n InputHandler.prototype.scrollUp = function (params) {\n var param = params[0] || 1;\n while (param--) {\n this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollTop, 1);\n this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollBottom, 0, this._terminal.blankLine());\n }\n this._terminal.updateRange(this._terminal.scrollTop);\n this._terminal.updateRange(this._terminal.scrollBottom);\n };\n InputHandler.prototype.scrollDown = function (params) {\n var param = params[0] || 1;\n while (param--) {\n this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollBottom, 1);\n this._terminal.lines.splice(this._terminal.ybase + this._terminal.scrollTop, 0, this._terminal.blankLine());\n }\n this._terminal.updateRange(this._terminal.scrollTop);\n this._terminal.updateRange(this._terminal.scrollBottom);\n };\n InputHandler.prototype.eraseChars = function (params) {\n var param, row, j, ch;\n param = params[0];\n if (param < 1) {\n param = 1;\n }\n row = this._terminal.y + this._terminal.ybase;\n j = this._terminal.x;\n ch = [this._terminal.eraseAttr(), ' ', 1];\n while (param-- && j < this._terminal.cols) {\n this._terminal.lines.get(row)[j++] = ch;\n }\n };\n InputHandler.prototype.cursorBackwardTab = function (params) {\n var param = params[0] || 1;\n while (param--) {\n this._terminal.x = this._terminal.prevStop();\n }\n };\n InputHandler.prototype.charPosAbsolute = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.x = param - 1;\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x = this._terminal.cols - 1;\n }\n };\n InputHandler.prototype.HPositionRelative = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.x += param;\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x = this._terminal.cols - 1;\n }\n };\n InputHandler.prototype.repeatPrecedingCharacter = function (params) {\n var param = params[0] || 1, line = this._terminal.lines.get(this._terminal.ybase + this._terminal.y), ch = line[this._terminal.x - 1] || [this._terminal.defAttr, ' ', 1];\n while (param--) {\n line[this._terminal.x++] = ch;\n }\n };\n InputHandler.prototype.sendDeviceAttributes = function (params) {\n if (params[0] > 0) {\n return;\n }\n if (!this._terminal.prefix) {\n if (this._terminal.is('xterm') || this._terminal.is('rxvt-unicode') || this._terminal.is('screen')) {\n this._terminal.send(EscapeSequences_1.C0.ESC + '[?1;2c');\n }\n else if (this._terminal.is('linux')) {\n this._terminal.send(EscapeSequences_1.C0.ESC + '[?6c');\n }\n }\n else if (this._terminal.prefix === '>') {\n if (this._terminal.is('xterm')) {\n this._terminal.send(EscapeSequences_1.C0.ESC + '[>0;276;0c');\n }\n else if (this._terminal.is('rxvt-unicode')) {\n this._terminal.send(EscapeSequences_1.C0.ESC + '[>85;95;0c');\n }\n else if (this._terminal.is('linux')) {\n this._terminal.send(params[0] + 'c');\n }\n else if (this._terminal.is('screen')) {\n this._terminal.send(EscapeSequences_1.C0.ESC + '[>83;40003;0c');\n }\n }\n };\n InputHandler.prototype.linePosAbsolute = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y = param - 1;\n if (this._terminal.y >= this._terminal.rows) {\n this._terminal.y = this._terminal.rows - 1;\n }\n };\n InputHandler.prototype.VPositionRelative = function (params) {\n var param = params[0];\n if (param < 1) {\n param = 1;\n }\n this._terminal.y += param;\n if (this._terminal.y >= this._terminal.rows) {\n this._terminal.y = this._terminal.rows - 1;\n }\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x--;\n }\n };\n InputHandler.prototype.HVPosition = function (params) {\n if (params[0] < 1)\n params[0] = 1;\n if (params[1] < 1)\n params[1] = 1;\n this._terminal.y = params[0] - 1;\n if (this._terminal.y >= this._terminal.rows) {\n this._terminal.y = this._terminal.rows - 1;\n }\n this._terminal.x = params[1] - 1;\n if (this._terminal.x >= this._terminal.cols) {\n this._terminal.x = this._terminal.cols - 1;\n }\n };\n InputHandler.prototype.tabClear = function (params) {\n var param = params[0];\n if (param <= 0) {\n delete this._terminal.tabs[this._terminal.x];\n }\n else if (param === 3) {\n this._terminal.tabs = {};\n }\n };\n InputHandler.prototype.setMode = function (params) {\n if (params.length > 1) {\n for (var i = 0; i < params.length; i++) {\n this.setMode([params[i]]);\n }\n return;\n }\n if (!this._terminal.prefix) {\n switch (params[0]) {\n case 4:\n this._terminal.insertMode = true;\n break;\n case 20:\n break;\n }\n }\n else if (this._terminal.prefix === '?') {\n switch (params[0]) {\n case 1:\n this._terminal.applicationCursor = true;\n break;\n case 2:\n this._terminal.setgCharset(0, Charsets_1.DEFAULT_CHARSET);\n this._terminal.setgCharset(1, Charsets_1.DEFAULT_CHARSET);\n this._terminal.setgCharset(2, Charsets_1.DEFAULT_CHARSET);\n this._terminal.setgCharset(3, Charsets_1.DEFAULT_CHARSET);\n break;\n case 3:\n this._terminal.savedCols = this._terminal.cols;\n this._terminal.resize(132, this._terminal.rows);\n break;\n case 6:\n this._terminal.originMode = true;\n break;\n case 7:\n this._terminal.wraparoundMode = true;\n break;\n case 12:\n break;\n case 66:\n this._terminal.log('Serial port requested application keypad.');\n this._terminal.applicationKeypad = true;\n this._terminal.viewport.syncScrollArea();\n break;\n case 9:\n case 1000:\n case 1002:\n case 1003:\n this._terminal.x10Mouse = params[0] === 9;\n this._terminal.vt200Mouse = params[0] === 1000;\n this._terminal.normalMouse = params[0] > 1000;\n this._terminal.mouseEvents = true;\n this._terminal.element.classList.add('enable-mouse-events');\n this._terminal.selectionManager.disable();\n this._terminal.log('Binding to mouse events.');\n break;\n case 1004:\n this._terminal.sendFocus = true;\n break;\n case 1005:\n this._terminal.utfMouse = true;\n break;\n case 1006:\n this._terminal.sgrMouse = true;\n break;\n case 1015:\n this._terminal.urxvtMouse = true;\n break;\n case 25:\n this._terminal.cursorHidden = false;\n break;\n case 1049:\n ;\n case 47:\n case 1047:\n if (!this._terminal.normal) {\n var normal = {\n lines: this._terminal.lines,\n ybase: this._terminal.ybase,\n ydisp: this._terminal.ydisp,\n x: this._terminal.x,\n y: this._terminal.y,\n scrollTop: this._terminal.scrollTop,\n scrollBottom: this._terminal.scrollBottom,\n tabs: this._terminal.tabs\n };\n this._terminal.reset();\n this._terminal.viewport.syncScrollArea();\n this._terminal.normal = normal;\n this._terminal.showCursor();\n }\n break;\n }\n }\n };\n InputHandler.prototype.resetMode = function (params) {\n if (params.length > 1) {\n for (var i = 0; i < params.length; i++) {\n this.resetMode([params[i]]);\n }\n return;\n }\n if (!this._terminal.prefix) {\n switch (params[0]) {\n case 4:\n this._terminal.insertMode = false;\n break;\n case 20:\n break;\n }\n }\n else if (this._terminal.prefix === '?') {\n switch (params[0]) {\n case 1:\n this._terminal.applicationCursor = false;\n break;\n case 3:\n if (this._terminal.cols === 132 && this._terminal.savedCols) {\n this._terminal.resize(this._terminal.savedCols, this._terminal.rows);\n }\n delete this._terminal.savedCols;\n break;\n case 6:\n this._terminal.originMode = false;\n break;\n case 7:\n this._terminal.wraparoundMode = false;\n break;\n case 12:\n break;\n case 66:\n this._terminal.log('Switching back to normal keypad.');\n this._terminal.applicationKeypad = false;\n this._terminal.viewport.syncScrollArea();\n break;\n case 9:\n case 1000:\n case 1002:\n case 1003:\n this._terminal.x10Mouse = false;\n this._terminal.vt200Mouse = false;\n this._terminal.normalMouse = false;\n this._terminal.mouseEvents = false;\n this._terminal.element.classList.remove('enable-mouse-events');\n this._terminal.selectionManager.enable();\n break;\n case 1004:\n this._terminal.sendFocus = false;\n break;\n case 1005:\n this._terminal.utfMouse = false;\n break;\n case 1006:\n this._terminal.sgrMouse = false;\n break;\n case 1015:\n this._terminal.urxvtMouse = false;\n break;\n case 25:\n this._terminal.cursorHidden = true;\n break;\n case 1049:\n ;\n case 47:\n case 1047:\n if (this._terminal.normal) {\n this._terminal.lines = this._terminal.normal.lines;\n this._terminal.ybase = this._terminal.normal.ybase;\n this._terminal.ydisp = this._terminal.normal.ydisp;\n this._terminal.x = this._terminal.normal.x;\n this._terminal.y = this._terminal.normal.y;\n this._terminal.scrollTop = this._terminal.normal.scrollTop;\n this._terminal.scrollBottom = this._terminal.normal.scrollBottom;\n this._terminal.tabs = this._terminal.normal.tabs;\n this._terminal.normal = null;\n this._terminal.selectionManager.setBuffer(this._terminal.lines);\n this._terminal.refresh(0, this._terminal.rows - 1);\n this._terminal.viewport.syncScrollArea();\n this._terminal.showCursor();\n }\n break;\n }\n }\n };\n InputHandler.prototype.charAttributes = function (params) {\n if (params.length === 1 && params[0] === 0) {\n this._terminal.curAttr = this._terminal.defAttr;\n return;\n }\n var l = params.length, i = 0, flags = this._terminal.curAttr >> 18, fg = (this._terminal.curAttr >> 9) & 0x1ff, bg = this._terminal.curAttr & 0x1ff, p;\n for (; i < l; i++) {\n p = params[i];\n if (p >= 30 && p <= 37) {\n fg = p - 30;\n }\n else if (p >= 40 && p <= 47) {\n bg = p - 40;\n }\n else if (p >= 90 && p <= 97) {\n p += 8;\n fg = p - 90;\n }\n else if (p >= 100 && p <= 107) {\n p += 8;\n bg = p - 100;\n }\n else if (p === 0) {\n flags = this._terminal.defAttr >> 18;\n fg = (this._terminal.defAttr >> 9) & 0x1ff;\n bg = this._terminal.defAttr & 0x1ff;\n }\n else if (p === 1) {\n flags |= 1;\n }\n else if (p === 4) {\n flags |= 2;\n }\n else if (p === 5) {\n flags |= 4;\n }\n else if (p === 7) {\n flags |= 8;\n }\n else if (p === 8) {\n flags |= 16;\n }\n else if (p === 22) {\n flags &= ~1;\n }\n else if (p === 24) {\n flags &= ~2;\n }\n else if (p === 25) {\n flags &= ~4;\n }\n else if (p === 27) {\n flags &= ~8;\n }\n else if (p === 28) {\n flags &= ~16;\n }\n else if (p === 39) {\n fg = (this._terminal.defAttr >> 9) & 0x1ff;\n }\n else if (p === 49) {\n bg = this._terminal.defAttr & 0x1ff;\n }\n else if (p === 38) {\n if (params[i + 1] === 2) {\n i += 2;\n fg = this._terminal.matchColor(params[i] & 0xff, params[i + 1] & 0xff, params[i + 2] & 0xff);\n if (fg === -1)\n fg = 0x1ff;\n i += 2;\n }\n else if (params[i + 1] === 5) {\n i += 2;\n p = params[i] & 0xff;\n fg = p;\n }\n }\n else if (p === 48) {\n if (params[i + 1] === 2) {\n i += 2;\n bg = this._terminal.matchColor(params[i] & 0xff, params[i + 1] & 0xff, params[i + 2] & 0xff);\n if (bg === -1)\n bg = 0x1ff;\n i += 2;\n }\n else if (params[i + 1] === 5) {\n i += 2;\n p = params[i] & 0xff;\n bg = p;\n }\n }\n else if (p === 100) {\n fg = (this._terminal.defAttr >> 9) & 0x1ff;\n bg = this._terminal.defAttr & 0x1ff;\n }\n else {\n this._terminal.error('Unknown SGR attribute: %d.', p);\n }\n }\n this._terminal.curAttr = (flags << 18) | (fg << 9) | bg;\n };\n InputHandler.prototype.deviceStatus = function (params) {\n if (!this._terminal.prefix) {\n switch (params[0]) {\n case 5:\n this._terminal.send(EscapeSequences_1.C0.ESC + '[0n');\n break;\n case 6:\n this._terminal.send(EscapeSequences_1.C0.ESC + '['\n + (this._terminal.y + 1)\n + ';'\n + (this._terminal.x + 1)\n + 'R');\n break;\n }\n }\n else if (this._terminal.prefix === '?') {\n switch (params[0]) {\n case 6:\n this._terminal.send(EscapeSequences_1.C0.ESC + '[?'\n + (this._terminal.y + 1)\n + ';'\n + (this._terminal.x + 1)\n + 'R');\n break;\n case 15:\n break;\n case 25:\n break;\n case 26:\n break;\n case 53:\n break;\n }\n }\n };\n InputHandler.prototype.softReset = function (params) {\n this._terminal.cursorHidden = false;\n this._terminal.insertMode = false;\n this._terminal.originMode = false;\n this._terminal.wraparoundMode = true;\n this._terminal.applicationKeypad = false;\n this._terminal.viewport.syncScrollArea();\n this._terminal.applicationCursor = false;\n this._terminal.scrollTop = 0;\n this._terminal.scrollBottom = this._terminal.rows - 1;\n this._terminal.curAttr = this._terminal.defAttr;\n this._terminal.x = this._terminal.y = 0;\n this._terminal.charset = null;\n this._terminal.glevel = 0;\n this._terminal.charsets = [null];\n };\n InputHandler.prototype.setCursorStyle = function (params) {\n var param = params[0] < 1 ? 1 : params[0];\n switch (param) {\n case 1:\n case 2:\n this._terminal.setOption('cursorStyle', 'block');\n break;\n case 3:\n case 4:\n this._terminal.setOption('cursorStyle', 'underline');\n break;\n case 5:\n case 6:\n this._terminal.setOption('cursorStyle', 'bar');\n break;\n }\n var isBlinking = param % 2 === 1;\n this._terminal.setOption('cursorBlink', isBlinking);\n };\n InputHandler.prototype.setScrollRegion = function (params) {\n if (this._terminal.prefix)\n return;\n this._terminal.scrollTop = (params[0] || 1) - 1;\n this._terminal.scrollBottom = (params[1] && params[1] <= this._terminal.rows ? params[1] : this._terminal.rows) - 1;\n this._terminal.x = 0;\n this._terminal.y = 0;\n };\n InputHandler.prototype.saveCursor = function (params) {\n this._terminal.savedX = this._terminal.x;\n this._terminal.savedY = this._terminal.y;\n };\n InputHandler.prototype.restoreCursor = function (params) {\n this._terminal.x = this._terminal.savedX || 0;\n this._terminal.y = this._terminal.savedY || 0;\n };\n return InputHandler;\n}());\nexports.InputHandler = InputHandler;\nvar wcwidth = (function (opts) {\n var COMBINING = [\n [0x0300, 0x036F], [0x0483, 0x0486], [0x0488, 0x0489],\n [0x0591, 0x05BD], [0x05BF, 0x05BF], [0x05C1, 0x05C2],\n [0x05C4, 0x05C5], [0x05C7, 0x05C7], [0x0600, 0x0603],\n [0x0610, 0x0615], [0x064B, 0x065E], [0x0670, 0x0670],\n [0x06D6, 0x06E4], [0x06E7, 0x06E8], [0x06EA, 0x06ED],\n [0x070F, 0x070F], [0x0711, 0x0711], [0x0730, 0x074A],\n [0x07A6, 0x07B0], [0x07EB, 0x07F3], [0x0901, 0x0902],\n [0x093C, 0x093C], [0x0941, 0x0948], [0x094D, 0x094D],\n [0x0951, 0x0954], [0x0962, 0x0963], [0x0981, 0x0981],\n [0x09BC, 0x09BC], [0x09C1, 0x09C4], [0x09CD, 0x09CD],\n [0x09E2, 0x09E3], [0x0A01, 0x0A02], [0x0A3C, 0x0A3C],\n [0x0A41, 0x0A42], [0x0A47, 0x0A48], [0x0A4B, 0x0A4D],\n [0x0A70, 0x0A71], [0x0A81, 0x0A82], [0x0ABC, 0x0ABC],\n [0x0AC1, 0x0AC5], [0x0AC7, 0x0AC8], [0x0ACD, 0x0ACD],\n [0x0AE2, 0x0AE3], [0x0B01, 0x0B01], [0x0B3C, 0x0B3C],\n [0x0B3F, 0x0B3F], [0x0B41, 0x0B43], [0x0B4D, 0x0B4D],\n [0x0B56, 0x0B56], [0x0B82, 0x0B82], [0x0BC0, 0x0BC0],\n [0x0BCD, 0x0BCD], [0x0C3E, 0x0C40], [0x0C46, 0x0C48],\n [0x0C4A, 0x0C4D], [0x0C55, 0x0C56], [0x0CBC, 0x0CBC],\n [0x0CBF, 0x0CBF], [0x0CC6, 0x0CC6], [0x0CCC, 0x0CCD],\n [0x0CE2, 0x0CE3], [0x0D41, 0x0D43], [0x0D4D, 0x0D4D],\n [0x0DCA, 0x0DCA], [0x0DD2, 0x0DD4], [0x0DD6, 0x0DD6],\n [0x0E31, 0x0E31], [0x0E34, 0x0E3A], [0x0E47, 0x0E4E],\n [0x0EB1, 0x0EB1], [0x0EB4, 0x0EB9], [0x0EBB, 0x0EBC],\n [0x0EC8, 0x0ECD], [0x0F18, 0x0F19], [0x0F35, 0x0F35],\n [0x0F37, 0x0F37], [0x0F39, 0x0F39], [0x0F71, 0x0F7E],\n [0x0F80, 0x0F84], [0x0F86, 0x0F87], [0x0F90, 0x0F97],\n [0x0F99, 0x0FBC], [0x0FC6, 0x0FC6], [0x102D, 0x1030],\n [0x1032, 0x1032], [0x1036, 0x1037], [0x1039, 0x1039],\n [0x1058, 0x1059], [0x1160, 0x11FF], [0x135F, 0x135F],\n [0x1712, 0x1714], [0x1732, 0x1734], [0x1752, 0x1753],\n [0x1772, 0x1773], [0x17B4, 0x17B5], [0x17B7, 0x17BD],\n [0x17C6, 0x17C6], [0x17C9, 0x17D3], [0x17DD, 0x17DD],\n [0x180B, 0x180D], [0x18A9, 0x18A9], [0x1920, 0x1922],\n [0x1927, 0x1928], [0x1932, 0x1932], [0x1939, 0x193B],\n [0x1A17, 0x1A18], [0x1B00, 0x1B03], [0x1B34, 0x1B34],\n [0x1B36, 0x1B3A], [0x1B3C, 0x1B3C], [0x1B42, 0x1B42],\n [0x1B6B, 0x1B73], [0x1DC0, 0x1DCA], [0x1DFE, 0x1DFF],\n [0x200B, 0x200F], [0x202A, 0x202E], [0x2060, 0x2063],\n [0x206A, 0x206F], [0x20D0, 0x20EF], [0x302A, 0x302F],\n [0x3099, 0x309A], [0xA806, 0xA806], [0xA80B, 0xA80B],\n [0xA825, 0xA826], [0xFB1E, 0xFB1E], [0xFE00, 0xFE0F],\n [0xFE20, 0xFE23], [0xFEFF, 0xFEFF], [0xFFF9, 0xFFFB],\n [0x10A01, 0x10A03], [0x10A05, 0x10A06], [0x10A0C, 0x10A0F],\n [0x10A38, 0x10A3A], [0x10A3F, 0x10A3F], [0x1D167, 0x1D169],\n [0x1D173, 0x1D182], [0x1D185, 0x1D18B], [0x1D1AA, 0x1D1AD],\n [0x1D242, 0x1D244], [0xE0001, 0xE0001], [0xE0020, 0xE007F],\n [0xE0100, 0xE01EF]\n ];\n function bisearch(ucs) {\n var min = 0;\n var max = COMBINING.length - 1;\n var mid;\n if (ucs < COMBINING[0][0] || ucs > COMBINING[max][1])\n return false;\n while (max >= min) {\n mid = Math.floor((min + max) / 2);\n if (ucs > COMBINING[mid][1])\n min = mid + 1;\n else if (ucs < COMBINING[mid][0])\n max = mid - 1;\n else\n return true;\n }\n return false;\n }\n function wcwidth(ucs) {\n if (ucs === 0)\n return opts.nul;\n if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0))\n return opts.control;\n if (bisearch(ucs))\n return 0;\n if (isWide(ucs)) {\n return 2;\n }\n return 1;\n }\n function isWide(ucs) {\n return (ucs >= 0x1100 && (ucs <= 0x115f ||\n ucs === 0x2329 ||\n ucs === 0x232a ||\n (ucs >= 0x2e80 && ucs <= 0xa4cf && ucs !== 0x303f) ||\n (ucs >= 0xac00 && ucs <= 0xd7a3) ||\n (ucs >= 0xf900 && ucs <= 0xfaff) ||\n (ucs >= 0xfe10 && ucs <= 0xfe19) ||\n (ucs >= 0xfe30 && ucs <= 0xfe6f) ||\n (ucs >= 0xff00 && ucs <= 0xff60) ||\n (ucs >= 0xffe0 && ucs <= 0xffe6) ||\n (ucs >= 0x20000 && ucs <= 0x2fffd) ||\n (ucs >= 0x30000 && ucs <= 0x3fffd)));\n }\n return wcwidth;\n})({ nul: 0, control: 0 });\n\n//# sourceMappingURL=InputHandler.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/InputHandler.js\n// module id = 17\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar INVALID_LINK_CLASS = 'xterm-invalid-link';\nvar protocolClause = '(https?:\\\\/\\\\/)';\nvar domainCharacterSet = '[\\\\da-z\\\\.-]+';\nvar negatedDomainCharacterSet = '[^\\\\da-z\\\\.-]+';\nvar domainBodyClause = '(' + domainCharacterSet + ')';\nvar tldClause = '([a-z\\\\.]{2,6})';\nvar ipClause = '((\\\\d{1,3}\\\\.){3}\\\\d{1,3})';\nvar localHostClause = '(localhost)';\nvar portClause = '(:\\\\d{1,5})';\nvar hostClause = '((' + domainBodyClause + '\\\\.' + tldClause + ')|' + ipClause + '|' + localHostClause + ')' + portClause + '?';\nvar pathClause = '(\\\\/[\\\\/\\\\w\\\\.\\\\-%~]*)*';\nvar queryStringHashFragmentCharacterSet = '[0-9\\\\w\\\\[\\\\]\\\\(\\\\)\\\\/\\\\?\\\\!#@$%&\\'*+,:;~\\\\=\\\\.\\\\-]*';\nvar queryStringClause = '(\\\\?' + queryStringHashFragmentCharacterSet + ')?';\nvar hashFragmentClause = '(#' + queryStringHashFragmentCharacterSet + ')?';\nvar negatedPathCharacterSet = '[^\\\\/\\\\w\\\\.\\\\-%]+';\nvar bodyClause = hostClause + pathClause + queryStringClause + hashFragmentClause;\nvar start = '(?:^|' + negatedDomainCharacterSet + ')(';\nvar end = ')($|' + negatedPathCharacterSet + ')';\nvar strictUrlRegex = new RegExp(start + protocolClause + bodyClause + end);\nvar HYPERTEXT_LINK_MATCHER_ID = 0;\nvar Linkifier = (function () {\n function Linkifier() {\n this._nextLinkMatcherId = HYPERTEXT_LINK_MATCHER_ID;\n this._rowTimeoutIds = [];\n this._linkMatchers = [];\n this.registerLinkMatcher(strictUrlRegex, null, { matchIndex: 1 });\n }\n Linkifier.prototype.attachToDom = function (document, rows) {\n this._document = document;\n this._rows = rows;\n };\n Linkifier.prototype.linkifyRow = function (rowIndex) {\n if (!this._document) {\n return;\n }\n var timeoutId = this._rowTimeoutIds[rowIndex];\n if (timeoutId) {\n clearTimeout(timeoutId);\n }\n this._rowTimeoutIds[rowIndex] = setTimeout(this._linkifyRow.bind(this, rowIndex), Linkifier.TIME_BEFORE_LINKIFY);\n };\n Linkifier.prototype.setHypertextLinkHandler = function (handler) {\n this._linkMatchers[HYPERTEXT_LINK_MATCHER_ID].handler = handler;\n };\n Linkifier.prototype.setHypertextValidationCallback = function (callback) {\n this._linkMatchers[HYPERTEXT_LINK_MATCHER_ID].validationCallback = callback;\n };\n Linkifier.prototype.registerLinkMatcher = function (regex, handler, options) {\n if (options === void 0) { options = {}; }\n if (this._nextLinkMatcherId !== HYPERTEXT_LINK_MATCHER_ID && !handler) {\n throw new Error('handler must be defined');\n }\n var matcher = {\n id: this._nextLinkMatcherId++,\n regex: regex,\n handler: handler,\n matchIndex: options.matchIndex,\n validationCallback: options.validationCallback,\n priority: options.priority || 0\n };\n this._addLinkMatcherToList(matcher);\n return matcher.id;\n };\n Linkifier.prototype._addLinkMatcherToList = function (matcher) {\n if (this._linkMatchers.length === 0) {\n this._linkMatchers.push(matcher);\n return;\n }\n for (var i = this._linkMatchers.length - 1; i >= 0; i--) {\n if (matcher.priority <= this._linkMatchers[i].priority) {\n this._linkMatchers.splice(i + 1, 0, matcher);\n return;\n }\n }\n this._linkMatchers.splice(0, 0, matcher);\n };\n Linkifier.prototype.deregisterLinkMatcher = function (matcherId) {\n for (var i = 1; i < this._linkMatchers.length; i++) {\n if (this._linkMatchers[i].id === matcherId) {\n this._linkMatchers.splice(i, 1);\n return true;\n }\n }\n return false;\n };\n Linkifier.prototype._linkifyRow = function (rowIndex) {\n var row = this._rows[rowIndex];\n if (!row) {\n return;\n }\n var text = row.textContent;\n for (var i = 0; i < this._linkMatchers.length; i++) {\n var matcher = this._linkMatchers[i];\n var linkElements = this._doLinkifyRow(row, matcher);\n if (linkElements.length > 0) {\n if (matcher.validationCallback) {\n var _loop_1 = function (j) {\n var element = linkElements[j];\n matcher.validationCallback(element.textContent, element, function (isValid) {\n if (!isValid) {\n element.classList.add(INVALID_LINK_CLASS);\n }\n });\n };\n for (var j = 0; j < linkElements.length; j++) {\n _loop_1(j);\n }\n }\n return;\n }\n }\n };\n Linkifier.prototype._doLinkifyRow = function (row, matcher) {\n var result = [];\n var isHttpLinkMatcher = matcher.id === HYPERTEXT_LINK_MATCHER_ID;\n var nodes = row.childNodes;\n var match = row.textContent.match(matcher.regex);\n if (!match || match.length === 0) {\n return result;\n }\n var uri = match[typeof matcher.matchIndex !== 'number' ? 0 : matcher.matchIndex];\n var rowStartIndex = match.index + uri.length;\n for (var i = 0; i < nodes.length; i++) {\n var node = nodes[i];\n var searchIndex = node.textContent.indexOf(uri);\n if (searchIndex >= 0) {\n var linkElement = this._createAnchorElement(uri, matcher.handler, isHttpLinkMatcher);\n if (node.textContent.length === uri.length) {\n if (node.nodeType === 3) {\n this._replaceNode(node, linkElement);\n }\n else {\n var element = node;\n if (element.nodeName === 'A') {\n return result;\n }\n element.innerHTML = '';\n element.appendChild(linkElement);\n }\n }\n else if (node.childNodes.length > 1) {\n for (var j = 0; j < node.childNodes.length; j++) {\n var childNode = node.childNodes[j];\n var childSearchIndex = childNode.textContent.indexOf(uri);\n if (childSearchIndex !== -1) {\n this._replaceNodeSubstringWithNode(childNode, linkElement, uri, childSearchIndex);\n break;\n }\n }\n }\n else {\n var nodesAdded = this._replaceNodeSubstringWithNode(node, linkElement, uri, searchIndex);\n i += nodesAdded;\n }\n result.push(linkElement);\n match = row.textContent.substring(rowStartIndex).match(matcher.regex);\n if (!match || match.length === 0) {\n return result;\n }\n uri = match[typeof matcher.matchIndex !== 'number' ? 0 : matcher.matchIndex];\n rowStartIndex += match.index + uri.length;\n }\n }\n return result;\n };\n Linkifier.prototype._createAnchorElement = function (uri, handler, isHypertextLinkHandler) {\n var element = this._document.createElement('a');\n element.textContent = uri;\n element.draggable = false;\n if (isHypertextLinkHandler) {\n element.href = uri;\n element.target = '_blank';\n element.addEventListener('click', function (event) {\n if (handler) {\n return handler(event, uri);\n }\n });\n }\n else {\n element.addEventListener('click', function (event) {\n if (element.classList.contains(INVALID_LINK_CLASS)) {\n return;\n }\n return handler(event, uri);\n });\n }\n return element;\n };\n Linkifier.prototype._replaceNode = function (oldNode) {\n var newNodes = [];\n for (var _i = 1; _i < arguments.length; _i++) {\n newNodes[_i - 1] = arguments[_i];\n }\n var parent = oldNode.parentNode;\n for (var i = 0; i < newNodes.length; i++) {\n parent.insertBefore(newNodes[i], oldNode);\n }\n parent.removeChild(oldNode);\n };\n Linkifier.prototype._replaceNodeSubstringWithNode = function (targetNode, newNode, substring, substringIndex) {\n if (targetNode.childNodes.length === 1) {\n targetNode = targetNode.childNodes[0];\n }\n if (targetNode.nodeType !== 3) {\n throw new Error('targetNode must be a text node or only contain a single text node');\n }\n var fullText = targetNode.textContent;\n if (substringIndex === 0) {\n var rightText_1 = fullText.substring(substring.length);\n var rightTextNode_1 = this._document.createTextNode(rightText_1);\n this._replaceNode(targetNode, newNode, rightTextNode_1);\n return 0;\n }\n if (substringIndex === targetNode.textContent.length - substring.length) {\n var leftText_1 = fullText.substring(0, substringIndex);\n var leftTextNode_1 = this._document.createTextNode(leftText_1);\n this._replaceNode(targetNode, leftTextNode_1, newNode);\n return 0;\n }\n var leftText = fullText.substring(0, substringIndex);\n var leftTextNode = this._document.createTextNode(leftText);\n var rightText = fullText.substring(substringIndex + substring.length);\n var rightTextNode = this._document.createTextNode(rightText);\n this._replaceNode(targetNode, leftTextNode, newNode, rightTextNode);\n return 1;\n };\n return Linkifier;\n}());\nLinkifier.TIME_BEFORE_LINKIFY = 200;\nexports.Linkifier = Linkifier;\n\n//# sourceMappingURL=Linkifier.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/Linkifier.js\n// module id = 18\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar EscapeSequences_1 = require(\"./EscapeSequences\");\nvar Charsets_1 = require(\"./Charsets\");\nvar normalStateHandler = {};\nnormalStateHandler[EscapeSequences_1.C0.BEL] = function (parser, handler) { return handler.bell(); };\nnormalStateHandler[EscapeSequences_1.C0.LF] = function (parser, handler) { return handler.lineFeed(); };\nnormalStateHandler[EscapeSequences_1.C0.VT] = normalStateHandler[EscapeSequences_1.C0.LF];\nnormalStateHandler[EscapeSequences_1.C0.FF] = normalStateHandler[EscapeSequences_1.C0.LF];\nnormalStateHandler[EscapeSequences_1.C0.CR] = function (parser, handler) { return handler.carriageReturn(); };\nnormalStateHandler[EscapeSequences_1.C0.BS] = function (parser, handler) { return handler.backspace(); };\nnormalStateHandler[EscapeSequences_1.C0.HT] = function (parser, handler) { return handler.tab(); };\nnormalStateHandler[EscapeSequences_1.C0.SO] = function (parser, handler) { return handler.shiftOut(); };\nnormalStateHandler[EscapeSequences_1.C0.SI] = function (parser, handler) { return handler.shiftIn(); };\nnormalStateHandler[EscapeSequences_1.C0.ESC] = function (parser, handler) { return parser.setState(ParserState.ESCAPED); };\nvar escapedStateHandler = {};\nescapedStateHandler['['] = function (parser, terminal) {\n terminal.params = [];\n terminal.currentParam = 0;\n parser.setState(ParserState.CSI_PARAM);\n};\nescapedStateHandler[']'] = function (parser, terminal) {\n terminal.params = [];\n terminal.currentParam = 0;\n parser.setState(ParserState.OSC);\n};\nescapedStateHandler['P'] = function (parser, terminal) {\n terminal.params = [];\n terminal.currentParam = 0;\n parser.setState(ParserState.DCS);\n};\nescapedStateHandler['_'] = function (parser, terminal) {\n parser.setState(ParserState.IGNORE);\n};\nescapedStateHandler['^'] = function (parser, terminal) {\n parser.setState(ParserState.IGNORE);\n};\nescapedStateHandler['c'] = function (parser, terminal) {\n terminal.reset();\n};\nescapedStateHandler['E'] = function (parser, terminal) {\n terminal.x = 0;\n terminal.index();\n parser.setState(ParserState.NORMAL);\n};\nescapedStateHandler['D'] = function (parser, terminal) {\n terminal.index();\n parser.setState(ParserState.NORMAL);\n};\nescapedStateHandler['M'] = function (parser, terminal) {\n terminal.reverseIndex();\n parser.setState(ParserState.NORMAL);\n};\nescapedStateHandler['%'] = function (parser, terminal) {\n terminal.setgLevel(0);\n terminal.setgCharset(0, Charsets_1.DEFAULT_CHARSET);\n parser.setState(ParserState.NORMAL);\n parser.skipNextChar();\n};\nescapedStateHandler[EscapeSequences_1.C0.CAN] = function (parser) { return parser.setState(ParserState.NORMAL); };\nvar csiParamStateHandler = {};\ncsiParamStateHandler['?'] = function (parser) { return parser.setPrefix('?'); };\ncsiParamStateHandler['>'] = function (parser) { return parser.setPrefix('>'); };\ncsiParamStateHandler['!'] = function (parser) { return parser.setPrefix('!'); };\ncsiParamStateHandler['0'] = function (parser) { return parser.setParam(parser.getParam() * 10); };\ncsiParamStateHandler['1'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 1); };\ncsiParamStateHandler['2'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 2); };\ncsiParamStateHandler['3'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 3); };\ncsiParamStateHandler['4'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 4); };\ncsiParamStateHandler['5'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 5); };\ncsiParamStateHandler['6'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 6); };\ncsiParamStateHandler['7'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 7); };\ncsiParamStateHandler['8'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 8); };\ncsiParamStateHandler['9'] = function (parser) { return parser.setParam(parser.getParam() * 10 + 9); };\ncsiParamStateHandler['$'] = function (parser) { return parser.setPostfix('$'); };\ncsiParamStateHandler['\"'] = function (parser) { return parser.setPostfix('\"'); };\ncsiParamStateHandler[' '] = function (parser) { return parser.setPostfix(' '); };\ncsiParamStateHandler['\\''] = function (parser) { return parser.setPostfix('\\''); };\ncsiParamStateHandler[';'] = function (parser) { return parser.finalizeParam(); };\ncsiParamStateHandler[EscapeSequences_1.C0.CAN] = function (parser) { return parser.setState(ParserState.NORMAL); };\nvar csiStateHandler = {};\ncsiStateHandler['@'] = function (handler, params, prefix) { return handler.insertChars(params); };\ncsiStateHandler['A'] = function (handler, params, prefix) { return handler.cursorUp(params); };\ncsiStateHandler['B'] = function (handler, params, prefix) { return handler.cursorDown(params); };\ncsiStateHandler['C'] = function (handler, params, prefix) { return handler.cursorForward(params); };\ncsiStateHandler['D'] = function (handler, params, prefix) { return handler.cursorBackward(params); };\ncsiStateHandler['E'] = function (handler, params, prefix) { return handler.cursorNextLine(params); };\ncsiStateHandler['F'] = function (handler, params, prefix) { return handler.cursorPrecedingLine(params); };\ncsiStateHandler['G'] = function (handler, params, prefix) { return handler.cursorCharAbsolute(params); };\ncsiStateHandler['H'] = function (handler, params, prefix) { return handler.cursorPosition(params); };\ncsiStateHandler['I'] = function (handler, params, prefix) { return handler.cursorForwardTab(params); };\ncsiStateHandler['J'] = function (handler, params, prefix) { return handler.eraseInDisplay(params); };\ncsiStateHandler['K'] = function (handler, params, prefix) { return handler.eraseInLine(params); };\ncsiStateHandler['L'] = function (handler, params, prefix) { return handler.insertLines(params); };\ncsiStateHandler['M'] = function (handler, params, prefix) { return handler.deleteLines(params); };\ncsiStateHandler['P'] = function (handler, params, prefix) { return handler.deleteChars(params); };\ncsiStateHandler['S'] = function (handler, params, prefix) { return handler.scrollUp(params); };\ncsiStateHandler['T'] = function (handler, params, prefix) {\n if (params.length < 2 && !prefix) {\n handler.scrollDown(params);\n }\n};\ncsiStateHandler['X'] = function (handler, params, prefix) { return handler.eraseChars(params); };\ncsiStateHandler['Z'] = function (handler, params, prefix) { return handler.cursorBackwardTab(params); };\ncsiStateHandler['`'] = function (handler, params, prefix) { return handler.charPosAbsolute(params); };\ncsiStateHandler['a'] = function (handler, params, prefix) { return handler.HPositionRelative(params); };\ncsiStateHandler['b'] = function (handler, params, prefix) { return handler.repeatPrecedingCharacter(params); };\ncsiStateHandler['c'] = function (handler, params, prefix) { return handler.sendDeviceAttributes(params); };\ncsiStateHandler['d'] = function (handler, params, prefix) { return handler.linePosAbsolute(params); };\ncsiStateHandler['e'] = function (handler, params, prefix) { return handler.VPositionRelative(params); };\ncsiStateHandler['f'] = function (handler, params, prefix) { return handler.HVPosition(params); };\ncsiStateHandler['g'] = function (handler, params, prefix) { return handler.tabClear(params); };\ncsiStateHandler['h'] = function (handler, params, prefix) { return handler.setMode(params); };\ncsiStateHandler['l'] = function (handler, params, prefix) { return handler.resetMode(params); };\ncsiStateHandler['m'] = function (handler, params, prefix) { return handler.charAttributes(params); };\ncsiStateHandler['n'] = function (handler, params, prefix) { return handler.deviceStatus(params); };\ncsiStateHandler['p'] = function (handler, params, prefix) {\n switch (prefix) {\n case '!':\n handler.softReset(params);\n break;\n }\n};\ncsiStateHandler['q'] = function (handler, params, prefix, postfix) {\n if (postfix === ' ') {\n handler.setCursorStyle(params);\n }\n};\ncsiStateHandler['r'] = function (handler, params) { return handler.setScrollRegion(params); };\ncsiStateHandler['s'] = function (handler, params) { return handler.saveCursor(params); };\ncsiStateHandler['u'] = function (handler, params) { return handler.restoreCursor(params); };\ncsiStateHandler[EscapeSequences_1.C0.CAN] = function (handler, params, prefix, postfix, parser) { return parser.setState(ParserState.NORMAL); };\nvar ParserState;\n(function (ParserState) {\n ParserState[ParserState[\"NORMAL\"] = 0] = \"NORMAL\";\n ParserState[ParserState[\"ESCAPED\"] = 1] = \"ESCAPED\";\n ParserState[ParserState[\"CSI_PARAM\"] = 2] = \"CSI_PARAM\";\n ParserState[ParserState[\"CSI\"] = 3] = \"CSI\";\n ParserState[ParserState[\"OSC\"] = 4] = \"OSC\";\n ParserState[ParserState[\"CHARSET\"] = 5] = \"CHARSET\";\n ParserState[ParserState[\"DCS\"] = 6] = \"DCS\";\n ParserState[ParserState[\"IGNORE\"] = 7] = \"IGNORE\";\n})(ParserState || (ParserState = {}));\nvar Parser = (function () {\n function Parser(_inputHandler, _terminal) {\n this._inputHandler = _inputHandler;\n this._terminal = _terminal;\n this._state = ParserState.NORMAL;\n }\n Parser.prototype.parse = function (data) {\n var l = data.length, j, cs, ch, code, low;\n this._position = 0;\n if (this._terminal.surrogate_high) {\n data = this._terminal.surrogate_high + data;\n this._terminal.surrogate_high = '';\n }\n for (; this._position < l; this._position++) {\n ch = data[this._position];\n code = data.charCodeAt(this._position);\n if (0xD800 <= code && code <= 0xDBFF) {\n low = data.charCodeAt(this._position + 1);\n if (isNaN(low)) {\n this._terminal.surrogate_high = ch;\n continue;\n }\n code = ((code - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000;\n ch += data.charAt(this._position + 1);\n }\n if (0xDC00 <= code && code <= 0xDFFF)\n continue;\n switch (this._state) {\n case ParserState.NORMAL:\n if (ch in normalStateHandler) {\n normalStateHandler[ch](this, this._inputHandler);\n }\n else {\n this._inputHandler.addChar(ch, code);\n }\n break;\n case ParserState.ESCAPED:\n if (ch in escapedStateHandler) {\n escapedStateHandler[ch](this, this._terminal);\n break;\n }\n switch (ch) {\n case '(':\n case ')':\n case '*':\n case '+':\n case '-':\n case '.':\n switch (ch) {\n case '(':\n this._terminal.gcharset = 0;\n break;\n case ')':\n this._terminal.gcharset = 1;\n break;\n case '*':\n this._terminal.gcharset = 2;\n break;\n case '+':\n this._terminal.gcharset = 3;\n break;\n case '-':\n this._terminal.gcharset = 1;\n break;\n case '.':\n this._terminal.gcharset = 2;\n break;\n }\n this._state = ParserState.CHARSET;\n break;\n case '/':\n this._terminal.gcharset = 3;\n this._state = ParserState.CHARSET;\n this._position--;\n break;\n case 'N':\n break;\n case 'O':\n break;\n case 'n':\n this._terminal.setgLevel(2);\n break;\n case 'o':\n this._terminal.setgLevel(3);\n break;\n case '|':\n this._terminal.setgLevel(3);\n break;\n case '}':\n this._terminal.setgLevel(2);\n break;\n case '~':\n this._terminal.setgLevel(1);\n break;\n case '7':\n this._inputHandler.saveCursor();\n this._state = ParserState.NORMAL;\n break;\n case '8':\n this._inputHandler.restoreCursor();\n this._state = ParserState.NORMAL;\n break;\n case '#':\n this._state = ParserState.NORMAL;\n this._position++;\n break;\n case 'H':\n this._terminal.tabSet();\n this._state = ParserState.NORMAL;\n break;\n case '=':\n this._terminal.log('Serial port requested application keypad.');\n this._terminal.applicationKeypad = true;\n this._terminal.viewport.syncScrollArea();\n this._state = ParserState.NORMAL;\n break;\n case '>':\n this._terminal.log('Switching back to normal keypad.');\n this._terminal.applicationKeypad = false;\n this._terminal.viewport.syncScrollArea();\n this._state = ParserState.NORMAL;\n break;\n default:\n this._state = ParserState.NORMAL;\n this._terminal.error('Unknown ESC control: %s.', ch);\n break;\n }\n break;\n case ParserState.CHARSET:\n if (ch in Charsets_1.CHARSETS) {\n cs = Charsets_1.CHARSETS[ch];\n if (ch === '/') {\n this.skipNextChar();\n }\n }\n else {\n cs = Charsets_1.DEFAULT_CHARSET;\n }\n this._terminal.setgCharset(this._terminal.gcharset, cs);\n this._terminal.gcharset = null;\n this._state = ParserState.NORMAL;\n break;\n case ParserState.OSC:\n if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) {\n if (ch === EscapeSequences_1.C0.ESC)\n this._position++;\n this._terminal.params.push(this._terminal.currentParam);\n switch (this._terminal.params[0]) {\n case 0:\n case 1:\n case 2:\n if (this._terminal.params[1]) {\n this._terminal.title = this._terminal.params[1];\n this._terminal.handleTitle(this._terminal.title);\n }\n break;\n case 3:\n break;\n case 4:\n case 5:\n break;\n case 10:\n case 11:\n case 12:\n case 13:\n case 14:\n case 15:\n case 16:\n case 17:\n case 18:\n case 19:\n break;\n case 46:\n break;\n case 50:\n break;\n case 51:\n break;\n case 52:\n break;\n case 104:\n case 105:\n case 110:\n case 111:\n case 112:\n case 113:\n case 114:\n case 115:\n case 116:\n case 117:\n case 118:\n break;\n }\n this._terminal.params = [];\n this._terminal.currentParam = 0;\n this._state = ParserState.NORMAL;\n }\n else {\n if (!this._terminal.params.length) {\n if (ch >= '0' && ch <= '9') {\n this._terminal.currentParam =\n this._terminal.currentParam * 10 + ch.charCodeAt(0) - 48;\n }\n else if (ch === ';') {\n this._terminal.params.push(this._terminal.currentParam);\n this._terminal.currentParam = '';\n }\n }\n else {\n this._terminal.currentParam += ch;\n }\n }\n break;\n case ParserState.CSI_PARAM:\n if (ch in csiParamStateHandler) {\n csiParamStateHandler[ch](this);\n break;\n }\n this.finalizeParam();\n this._state = ParserState.CSI;\n case ParserState.CSI:\n if (ch in csiStateHandler) {\n csiStateHandler[ch](this._inputHandler, this._terminal.params, this._terminal.prefix, this._terminal.postfix, this);\n }\n else {\n this._terminal.error('Unknown CSI code: %s.', ch);\n }\n this._state = ParserState.NORMAL;\n this._terminal.prefix = '';\n this._terminal.postfix = '';\n break;\n case ParserState.DCS:\n if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) {\n if (ch === EscapeSequences_1.C0.ESC)\n this._position++;\n var pt = void 0;\n var valid = void 0;\n switch (this._terminal.prefix) {\n case '':\n break;\n case '$q':\n pt = this._terminal.currentParam;\n valid = false;\n switch (pt) {\n case '\"q':\n pt = '0\"q';\n break;\n case '\"p':\n pt = '61\"p';\n break;\n case 'r':\n pt = ''\n + (this._terminal.scrollTop + 1)\n + ';'\n + (this._terminal.scrollBottom + 1)\n + 'r';\n break;\n case 'm':\n pt = '0m';\n break;\n default:\n this._terminal.error('Unknown DCS Pt: %s.', pt);\n pt = '';\n break;\n }\n this._terminal.send(EscapeSequences_1.C0.ESC + 'P' + +valid + '$r' + pt + EscapeSequences_1.C0.ESC + '\\\\');\n break;\n case '+p':\n break;\n case '+q':\n pt = this._terminal.currentParam;\n valid = false;\n this._terminal.send(EscapeSequences_1.C0.ESC + 'P' + +valid + '+r' + pt + EscapeSequences_1.C0.ESC + '\\\\');\n break;\n default:\n this._terminal.error('Unknown DCS prefix: %s.', this._terminal.prefix);\n break;\n }\n this._terminal.currentParam = 0;\n this._terminal.prefix = '';\n this._state = ParserState.NORMAL;\n }\n else if (!this._terminal.currentParam) {\n if (!this._terminal.prefix && ch !== '$' && ch !== '+') {\n this._terminal.currentParam = ch;\n }\n else if (this._terminal.prefix.length === 2) {\n this._terminal.currentParam = ch;\n }\n else {\n this._terminal.prefix += ch;\n }\n }\n else {\n this._terminal.currentParam += ch;\n }\n break;\n case ParserState.IGNORE:\n if (ch === EscapeSequences_1.C0.ESC || ch === EscapeSequences_1.C0.BEL) {\n if (ch === EscapeSequences_1.C0.ESC)\n this._position++;\n this._state = ParserState.NORMAL;\n }\n break;\n }\n }\n return this._state;\n };\n Parser.prototype.setState = function (state) {\n this._state = state;\n };\n Parser.prototype.setPrefix = function (prefix) {\n this._terminal.prefix = prefix;\n };\n Parser.prototype.setPostfix = function (postfix) {\n this._terminal.postfix = postfix;\n };\n Parser.prototype.setParam = function (param) {\n this._terminal.currentParam = param;\n };\n Parser.prototype.getParam = function () {\n return this._terminal.currentParam;\n };\n Parser.prototype.finalizeParam = function () {\n this._terminal.params.push(this._terminal.currentParam);\n this._terminal.currentParam = 0;\n };\n Parser.prototype.skipNextChar = function () {\n this._position++;\n };\n return Parser;\n}());\nexports.Parser = Parser;\n\n//# sourceMappingURL=Parser.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/Parser.js\n// module id = 19\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar DomElementObjectPool_1 = require(\"./utils/DomElementObjectPool\");\nvar MAX_REFRESH_FRAME_SKIP = 5;\nvar FLAGS;\n(function (FLAGS) {\n FLAGS[FLAGS[\"BOLD\"] = 1] = \"BOLD\";\n FLAGS[FLAGS[\"UNDERLINE\"] = 2] = \"UNDERLINE\";\n FLAGS[FLAGS[\"BLINK\"] = 4] = \"BLINK\";\n FLAGS[FLAGS[\"INVERSE\"] = 8] = \"INVERSE\";\n FLAGS[FLAGS[\"INVISIBLE\"] = 16] = \"INVISIBLE\";\n})(FLAGS || (FLAGS = {}));\n;\nvar brokenBold = null;\nvar Renderer = (function () {\n function Renderer(_terminal) {\n this._terminal = _terminal;\n this._refreshRowsQueue = [];\n this._refreshFramesSkipped = 0;\n this._refreshAnimationFrame = null;\n this._spanElementObjectPool = new DomElementObjectPool_1.DomElementObjectPool('span');\n if (brokenBold === null) {\n brokenBold = checkBoldBroken(this._terminal.element);\n }\n this._spanElementObjectPool = new DomElementObjectPool_1.DomElementObjectPool('span');\n }\n Renderer.prototype.queueRefresh = function (start, end) {\n this._refreshRowsQueue.push({ start: start, end: end });\n if (!this._refreshAnimationFrame) {\n this._refreshAnimationFrame = window.requestAnimationFrame(this._refreshLoop.bind(this));\n }\n };\n Renderer.prototype._refreshLoop = function () {\n var skipFrame = this._terminal.writeBuffer.length > 0 && this._refreshFramesSkipped++ <= MAX_REFRESH_FRAME_SKIP;\n if (skipFrame) {\n this._refreshAnimationFrame = window.requestAnimationFrame(this._refreshLoop.bind(this));\n return;\n }\n this._refreshFramesSkipped = 0;\n var start;\n var end;\n if (this._refreshRowsQueue.length > 4) {\n start = 0;\n end = this._terminal.rows - 1;\n }\n else {\n start = this._refreshRowsQueue[0].start;\n end = this._refreshRowsQueue[0].end;\n for (var i = 1; i < this._refreshRowsQueue.length; i++) {\n if (this._refreshRowsQueue[i].start < start) {\n start = this._refreshRowsQueue[i].start;\n }\n if (this._refreshRowsQueue[i].end > end) {\n end = this._refreshRowsQueue[i].end;\n }\n }\n }\n this._refreshRowsQueue = [];\n this._refreshAnimationFrame = null;\n this._refresh(start, end);\n };\n Renderer.prototype._refresh = function (start, end) {\n var parent;\n if (end - start >= this._terminal.rows / 2) {\n parent = this._terminal.element.parentNode;\n if (parent) {\n this._terminal.element.removeChild(this._terminal.rowContainer);\n }\n }\n var width = this._terminal.cols;\n var y = start;\n if (end >= this._terminal.rows) {\n this._terminal.log('`end` is too large. Most likely a bad CSR.');\n end = this._terminal.rows - 1;\n }\n for (; y <= end; y++) {\n var row = y + this._terminal.ydisp;\n var line = this._terminal.lines.get(row);\n var x = void 0;\n if (this._terminal.y === y - (this._terminal.ybase - this._terminal.ydisp) &&\n this._terminal.cursorState &&\n !this._terminal.cursorHidden) {\n x = this._terminal.x;\n }\n else {\n x = -1;\n }\n var attr = this._terminal.defAttr;\n var documentFragment = document.createDocumentFragment();\n var innerHTML = '';\n var currentElement = void 0;\n while (this._terminal.children[y].children.length) {\n var child = this._terminal.children[y].children[0];\n this._terminal.children[y].removeChild(child);\n this._spanElementObjectPool.release(child);\n }\n for (var i = 0; i < width; i++) {\n var data = line[i][0];\n var ch = line[i][1];\n var ch_width = line[i][2];\n if (!ch_width) {\n continue;\n }\n if (i === x) {\n data = -1;\n }\n if (data !== attr) {\n if (attr !== this._terminal.defAttr) {\n if (innerHTML) {\n currentElement.innerHTML = innerHTML;\n innerHTML = '';\n }\n documentFragment.appendChild(currentElement);\n currentElement = null;\n }\n if (data !== this._terminal.defAttr) {\n if (innerHTML && !currentElement) {\n currentElement = this._spanElementObjectPool.acquire();\n }\n if (currentElement) {\n if (innerHTML) {\n currentElement.innerHTML = innerHTML;\n innerHTML = '';\n }\n documentFragment.appendChild(currentElement);\n }\n currentElement = this._spanElementObjectPool.acquire();\n if (data === -1) {\n currentElement.classList.add('reverse-video');\n currentElement.classList.add('terminal-cursor');\n }\n else {\n var bg = data & 0x1ff;\n var fg = (data >> 9) & 0x1ff;\n var flags = data >> 18;\n if (flags & FLAGS.BOLD) {\n if (!brokenBold) {\n currentElement.classList.add('xterm-bold');\n }\n if (fg < 8) {\n fg += 8;\n }\n }\n if (flags & FLAGS.UNDERLINE) {\n currentElement.classList.add('xterm-underline');\n }\n if (flags & FLAGS.BLINK) {\n currentElement.classList.add('xterm-blink');\n }\n if (flags & FLAGS.INVERSE) {\n var temp = bg;\n bg = fg;\n fg = temp;\n if ((flags & 1) && fg < 8) {\n fg += 8;\n }\n }\n if (flags & FLAGS.INVISIBLE) {\n currentElement.classList.add('xterm-hidden');\n }\n if (flags & FLAGS.INVERSE) {\n if (bg === 257) {\n bg = 15;\n }\n if (fg === 256) {\n fg = 0;\n }\n }\n if (bg < 256) {\n currentElement.classList.add(\"xterm-bg-color-\" + bg);\n }\n if (fg < 256) {\n currentElement.classList.add(\"xterm-color-\" + fg);\n }\n }\n }\n }\n if (ch_width === 2) {\n innerHTML += \"\" + ch + \"\";\n }\n else if (ch.charCodeAt(0) > 255) {\n innerHTML += \"\" + ch + \"\";\n }\n else {\n switch (ch) {\n case '&':\n innerHTML += '&';\n break;\n case '<':\n innerHTML += '<';\n break;\n case '>':\n innerHTML += '>';\n break;\n default:\n if (ch <= ' ') {\n innerHTML += ' ';\n }\n else {\n innerHTML += ch;\n }\n break;\n }\n }\n attr = data;\n }\n if (innerHTML && !currentElement) {\n currentElement = this._spanElementObjectPool.acquire();\n }\n if (currentElement) {\n if (innerHTML) {\n currentElement.innerHTML = innerHTML;\n innerHTML = '';\n }\n documentFragment.appendChild(currentElement);\n currentElement = null;\n }\n this._terminal.children[y].appendChild(documentFragment);\n }\n if (parent) {\n this._terminal.element.appendChild(this._terminal.rowContainer);\n }\n this._terminal.emit('refresh', { element: this._terminal.element, start: start, end: end });\n };\n ;\n Renderer.prototype.refreshSelection = function (start, end) {\n while (this._terminal.selectionContainer.children.length) {\n this._terminal.selectionContainer.removeChild(this._terminal.selectionContainer.children[0]);\n }\n if (!start || !end) {\n return;\n }\n var viewportStartRow = start[1] - this._terminal.ydisp;\n var viewportEndRow = end[1] - this._terminal.ydisp;\n var viewportCappedStartRow = Math.max(viewportStartRow, 0);\n var viewportCappedEndRow = Math.min(viewportEndRow, this._terminal.rows - 1);\n if (viewportCappedStartRow >= this._terminal.rows || viewportCappedEndRow < 0) {\n return;\n }\n var documentFragment = document.createDocumentFragment();\n var startCol = viewportStartRow === viewportCappedStartRow ? start[0] : 0;\n var endCol = viewportCappedStartRow === viewportCappedEndRow ? end[0] : this._terminal.cols;\n documentFragment.appendChild(this._createSelectionElement(viewportCappedStartRow, startCol, endCol));\n var middleRowsCount = viewportCappedEndRow - viewportCappedStartRow - 1;\n documentFragment.appendChild(this._createSelectionElement(viewportCappedStartRow + 1, 0, this._terminal.cols, middleRowsCount));\n if (viewportCappedStartRow !== viewportCappedEndRow) {\n var endCol_1 = viewportEndRow === viewportCappedEndRow ? end[0] : this._terminal.cols;\n documentFragment.appendChild(this._createSelectionElement(viewportCappedEndRow, 0, endCol_1));\n }\n this._terminal.selectionContainer.appendChild(documentFragment);\n };\n Renderer.prototype._createSelectionElement = function (row, colStart, colEnd, rowCount) {\n if (rowCount === void 0) { rowCount = 1; }\n var element = document.createElement('div');\n element.style.height = rowCount * this._terminal.charMeasure.height + \"px\";\n element.style.top = row * this._terminal.charMeasure.height + \"px\";\n element.style.left = colStart * this._terminal.charMeasure.width + \"px\";\n element.style.width = this._terminal.charMeasure.width * (colEnd - colStart) + \"px\";\n return element;\n };\n return Renderer;\n}());\nexports.Renderer = Renderer;\nfunction checkBoldBroken(terminal) {\n var document = terminal.ownerDocument;\n var el = document.createElement('span');\n el.innerHTML = 'hello world';\n terminal.appendChild(el);\n var w1 = el.offsetWidth;\n var h1 = el.offsetHeight;\n el.style.fontWeight = 'bold';\n var w2 = el.offsetWidth;\n var h2 = el.offsetHeight;\n terminal.removeChild(el);\n return w1 !== w2 || h1 !== h2;\n}\n\n//# sourceMappingURL=Renderer.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/Renderer.js\n// module id = 20\n// module chunks = 0","\"use strict\";\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar Mouse = require(\"./utils/Mouse\");\nvar Browser = require(\"./utils/Browser\");\nvar EventEmitter_1 = require(\"./EventEmitter\");\nvar SelectionModel_1 = require(\"./SelectionModel\");\nvar DRAG_SCROLL_MAX_THRESHOLD = 50;\nvar DRAG_SCROLL_MAX_SPEED = 15;\nvar DRAG_SCROLL_INTERVAL = 50;\nvar CLEAR_MOUSE_DOWN_TIME = 400;\nvar CLEAR_MOUSE_DISTANCE = 10;\nvar WORD_SEPARATORS = ' ()[]{}\\'\"';\nvar LINE_DATA_CHAR_INDEX = 1;\nvar LINE_DATA_WIDTH_INDEX = 2;\nvar NON_BREAKING_SPACE_CHAR = String.fromCharCode(160);\nvar ALL_NON_BREAKING_SPACE_REGEX = new RegExp(NON_BREAKING_SPACE_CHAR, 'g');\nvar SelectionMode;\n(function (SelectionMode) {\n SelectionMode[SelectionMode[\"NORMAL\"] = 0] = \"NORMAL\";\n SelectionMode[SelectionMode[\"WORD\"] = 1] = \"WORD\";\n SelectionMode[SelectionMode[\"LINE\"] = 2] = \"LINE\";\n})(SelectionMode || (SelectionMode = {}));\nvar SelectionManager = (function (_super) {\n __extends(SelectionManager, _super);\n function SelectionManager(_terminal, _buffer, _rowContainer, _charMeasure) {\n var _this = _super.call(this) || this;\n _this._terminal = _terminal;\n _this._buffer = _buffer;\n _this._rowContainer = _rowContainer;\n _this._charMeasure = _charMeasure;\n _this._initListeners();\n _this.enable();\n _this._model = new SelectionModel_1.SelectionModel(_terminal);\n _this._lastMouseDownTime = 0;\n _this._activeSelectionMode = SelectionMode.NORMAL;\n return _this;\n }\n SelectionManager.prototype._initListeners = function () {\n var _this = this;\n this._bufferTrimListener = function (amount) { return _this._onTrim(amount); };\n this._mouseMoveListener = function (event) { return _this._onMouseMove(event); };\n this._mouseDownListener = function (event) { return _this._onMouseDown(event); };\n this._mouseUpListener = function (event) { return _this._onMouseUp(event); };\n };\n SelectionManager.prototype.disable = function () {\n this.clearSelection();\n this._buffer.off('trim', this._bufferTrimListener);\n this._rowContainer.removeEventListener('mousedown', this._mouseDownListener);\n };\n SelectionManager.prototype.enable = function () {\n this._buffer.on('trim', this._bufferTrimListener);\n this._rowContainer.addEventListener('mousedown', this._mouseDownListener);\n };\n SelectionManager.prototype.setBuffer = function (buffer) {\n this._buffer = buffer;\n this.clearSelection();\n };\n Object.defineProperty(SelectionManager.prototype, \"hasSelection\", {\n get: function () {\n var start = this._model.finalSelectionStart;\n var end = this._model.finalSelectionEnd;\n if (!start || !end) {\n return false;\n }\n return start[0] !== end[0] || start[1] !== end[1];\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SelectionManager.prototype, \"selectionText\", {\n get: function () {\n var start = this._model.finalSelectionStart;\n var end = this._model.finalSelectionEnd;\n if (!start || !end) {\n return '';\n }\n var startRowEndCol = start[1] === end[1] ? end[0] : null;\n var result = [];\n result.push(this._translateBufferLineToString(this._buffer.get(start[1]), true, start[0], startRowEndCol));\n for (var i = start[1] + 1; i <= end[1] - 1; i++) {\n var bufferLine = this._buffer.get(i);\n var lineText = this._translateBufferLineToString(bufferLine, true);\n if (bufferLine.isWrapped) {\n result[result.length - 1] += lineText;\n }\n else {\n result.push(lineText);\n }\n }\n if (start[1] !== end[1]) {\n var bufferLine = this._buffer.get(end[1]);\n var lineText = this._translateBufferLineToString(bufferLine, true, 0, end[0]);\n if (bufferLine.isWrapped) {\n result[result.length - 1] += lineText;\n }\n else {\n result.push(lineText);\n }\n }\n var formattedResult = result.map(function (line) {\n return line.replace(ALL_NON_BREAKING_SPACE_REGEX, ' ');\n }).join(Browser.isMSWindows ? '\\r\\n' : '\\n');\n return formattedResult;\n },\n enumerable: true,\n configurable: true\n });\n SelectionManager.prototype.clearSelection = function () {\n this._model.clearSelection();\n this._removeMouseDownListeners();\n this.refresh();\n };\n SelectionManager.prototype._translateBufferLineToString = function (line, trimRight, startCol, endCol) {\n if (startCol === void 0) { startCol = 0; }\n if (endCol === void 0) { endCol = null; }\n var lineString = '';\n var widthAdjustedStartCol = startCol;\n var widthAdjustedEndCol = endCol;\n for (var i = 0; i < line.length; i++) {\n var char = line[i];\n lineString += char[LINE_DATA_CHAR_INDEX];\n if (char[LINE_DATA_WIDTH_INDEX] === 0) {\n if (startCol >= i) {\n widthAdjustedStartCol--;\n }\n if (endCol >= i) {\n widthAdjustedEndCol--;\n }\n }\n }\n var finalEndCol = widthAdjustedEndCol || line.length;\n if (trimRight) {\n var rightWhitespaceIndex = lineString.search(/\\s+$/);\n if (rightWhitespaceIndex !== -1) {\n finalEndCol = Math.min(finalEndCol, rightWhitespaceIndex);\n }\n if (finalEndCol <= widthAdjustedStartCol) {\n return '';\n }\n }\n return lineString.substring(widthAdjustedStartCol, finalEndCol);\n };\n SelectionManager.prototype.refresh = function (isNewSelection) {\n var _this = this;\n if (!this._refreshAnimationFrame) {\n this._refreshAnimationFrame = window.requestAnimationFrame(function () { return _this._refresh(); });\n }\n if (Browser.isLinux && isNewSelection) {\n var selectionText = this.selectionText;\n if (selectionText.length) {\n this.emit('newselection', this.selectionText);\n }\n }\n };\n SelectionManager.prototype._refresh = function () {\n this._refreshAnimationFrame = null;\n this.emit('refresh', { start: this._model.finalSelectionStart, end: this._model.finalSelectionEnd });\n };\n SelectionManager.prototype.selectAll = function () {\n this._model.isSelectAllActive = true;\n this.refresh();\n };\n SelectionManager.prototype._onTrim = function (amount) {\n var needsRefresh = this._model.onTrim(amount);\n if (needsRefresh) {\n this.refresh();\n }\n };\n SelectionManager.prototype._getMouseBufferCoords = function (event) {\n var coords = Mouse.getCoords(event, this._rowContainer, this._charMeasure, this._terminal.cols, this._terminal.rows, true);\n coords[0]--;\n coords[1]--;\n coords[1] += this._terminal.ydisp;\n return coords;\n };\n SelectionManager.prototype._getMouseEventScrollAmount = function (event) {\n var offset = Mouse.getCoordsRelativeToElement(event, this._rowContainer)[1];\n var terminalHeight = this._terminal.rows * this._charMeasure.height;\n if (offset >= 0 && offset <= terminalHeight) {\n return 0;\n }\n if (offset > terminalHeight) {\n offset -= terminalHeight;\n }\n offset = Math.min(Math.max(offset, -DRAG_SCROLL_MAX_THRESHOLD), DRAG_SCROLL_MAX_THRESHOLD);\n offset /= DRAG_SCROLL_MAX_THRESHOLD;\n return (offset / Math.abs(offset)) + Math.round(offset * (DRAG_SCROLL_MAX_SPEED - 1));\n };\n SelectionManager.prototype._onMouseDown = function (event) {\n if (event.button !== 0) {\n return;\n }\n event.preventDefault();\n this._dragScrollAmount = 0;\n this._setMouseClickCount(event);\n if (event.shiftKey) {\n this._onShiftClick(event);\n }\n else {\n if (this._clickCount === 1) {\n this._onSingleClick(event);\n }\n else if (this._clickCount === 2) {\n this._onDoubleClick(event);\n }\n else if (this._clickCount === 3) {\n this._onTripleClick(event);\n }\n }\n this._addMouseDownListeners();\n this.refresh(true);\n };\n SelectionManager.prototype._addMouseDownListeners = function () {\n var _this = this;\n this._rowContainer.ownerDocument.addEventListener('mousemove', this._mouseMoveListener);\n this._rowContainer.ownerDocument.addEventListener('mouseup', this._mouseUpListener);\n this._dragScrollIntervalTimer = setInterval(function () { return _this._dragScroll(); }, DRAG_SCROLL_INTERVAL);\n };\n SelectionManager.prototype._removeMouseDownListeners = function () {\n this._rowContainer.ownerDocument.removeEventListener('mousemove', this._mouseMoveListener);\n this._rowContainer.ownerDocument.removeEventListener('mouseup', this._mouseUpListener);\n clearInterval(this._dragScrollIntervalTimer);\n this._dragScrollIntervalTimer = null;\n };\n SelectionManager.prototype._onShiftClick = function (event) {\n if (this._model.selectionStart) {\n this._model.selectionEnd = this._getMouseBufferCoords(event);\n }\n };\n SelectionManager.prototype._onSingleClick = function (event) {\n this._model.selectionStartLength = 0;\n this._model.isSelectAllActive = false;\n this._activeSelectionMode = SelectionMode.NORMAL;\n this._model.selectionStart = this._getMouseBufferCoords(event);\n if (this._model.selectionStart) {\n this._model.selectionEnd = null;\n var char = this._buffer.get(this._model.selectionStart[1])[this._model.selectionStart[0]];\n if (char[LINE_DATA_WIDTH_INDEX] === 0) {\n this._model.selectionStart[0]++;\n }\n }\n };\n SelectionManager.prototype._onDoubleClick = function (event) {\n var coords = this._getMouseBufferCoords(event);\n if (coords) {\n this._activeSelectionMode = SelectionMode.WORD;\n this._selectWordAt(coords);\n }\n };\n SelectionManager.prototype._onTripleClick = function (event) {\n var coords = this._getMouseBufferCoords(event);\n if (coords) {\n this._activeSelectionMode = SelectionMode.LINE;\n this._selectLineAt(coords[1]);\n }\n };\n SelectionManager.prototype._setMouseClickCount = function (event) {\n var currentTime = (new Date()).getTime();\n if (currentTime - this._lastMouseDownTime > CLEAR_MOUSE_DOWN_TIME || this._distanceFromLastMousePosition(event) > CLEAR_MOUSE_DISTANCE) {\n this._clickCount = 0;\n }\n this._lastMouseDownTime = currentTime;\n this._lastMousePosition = [event.pageX, event.pageY];\n this._clickCount++;\n };\n SelectionManager.prototype._distanceFromLastMousePosition = function (event) {\n var result = Math.max(Math.abs(this._lastMousePosition[0] - event.pageX), Math.abs(this._lastMousePosition[1] - event.pageY));\n return result;\n };\n SelectionManager.prototype._onMouseMove = function (event) {\n var previousSelectionEnd = this._model.selectionEnd ? [this._model.selectionEnd[0], this._model.selectionEnd[1]] : null;\n this._model.selectionEnd = this._getMouseBufferCoords(event);\n if (this._activeSelectionMode === SelectionMode.LINE) {\n if (this._model.selectionEnd[1] < this._model.selectionStart[1]) {\n this._model.selectionEnd[0] = 0;\n }\n else {\n this._model.selectionEnd[0] = this._terminal.cols;\n }\n }\n else if (this._activeSelectionMode === SelectionMode.WORD) {\n this._selectToWordAt(this._model.selectionEnd);\n }\n this._dragScrollAmount = this._getMouseEventScrollAmount(event);\n if (this._dragScrollAmount > 0) {\n this._model.selectionEnd[0] = this._terminal.cols - 1;\n }\n else if (this._dragScrollAmount < 0) {\n this._model.selectionEnd[0] = 0;\n }\n if (this._model.selectionEnd[1] < this._buffer.length) {\n var char = this._buffer.get(this._model.selectionEnd[1])[this._model.selectionEnd[0]];\n if (char && char[2] === 0) {\n this._model.selectionEnd[0]++;\n }\n }\n if (!previousSelectionEnd ||\n previousSelectionEnd[0] !== this._model.selectionEnd[0] ||\n previousSelectionEnd[1] !== this._model.selectionEnd[1]) {\n this.refresh(true);\n }\n };\n SelectionManager.prototype._dragScroll = function () {\n if (this._dragScrollAmount) {\n this._terminal.scrollDisp(this._dragScrollAmount, false);\n if (this._dragScrollAmount > 0) {\n this._model.selectionEnd = [this._terminal.cols - 1, this._terminal.ydisp + this._terminal.rows];\n }\n else {\n this._model.selectionEnd = [0, this._terminal.ydisp];\n }\n this.refresh();\n }\n };\n SelectionManager.prototype._onMouseUp = function (event) {\n this._removeMouseDownListeners();\n };\n SelectionManager.prototype._convertViewportColToCharacterIndex = function (bufferLine, coords) {\n var charIndex = coords[0];\n for (var i = 0; coords[0] >= i; i++) {\n var char = bufferLine[i];\n if (char[LINE_DATA_WIDTH_INDEX] === 0) {\n charIndex--;\n }\n }\n return charIndex;\n };\n SelectionManager.prototype._getWordAt = function (coords) {\n var bufferLine = this._buffer.get(coords[1]);\n var line = this._translateBufferLineToString(bufferLine, false);\n var endIndex = this._convertViewportColToCharacterIndex(bufferLine, coords);\n var startIndex = endIndex;\n var charOffset = coords[0] - startIndex;\n var leftWideCharCount = 0;\n var rightWideCharCount = 0;\n if (line.charAt(startIndex) === ' ') {\n while (startIndex > 0 && line.charAt(startIndex - 1) === ' ') {\n startIndex--;\n }\n while (endIndex < line.length && line.charAt(endIndex + 1) === ' ') {\n endIndex++;\n }\n }\n else {\n var startCol = coords[0];\n var endCol = coords[0];\n if (bufferLine[startCol][LINE_DATA_WIDTH_INDEX] === 0) {\n leftWideCharCount++;\n startCol--;\n }\n if (bufferLine[endCol][LINE_DATA_WIDTH_INDEX] === 2) {\n rightWideCharCount++;\n endCol++;\n }\n while (startIndex > 0 && !this._isCharWordSeparator(line.charAt(startIndex - 1))) {\n if (bufferLine[startCol - 1][LINE_DATA_WIDTH_INDEX] === 0) {\n leftWideCharCount++;\n startCol--;\n }\n startIndex--;\n startCol--;\n }\n while (endIndex + 1 < line.length && !this._isCharWordSeparator(line.charAt(endIndex + 1))) {\n if (bufferLine[endCol + 1][LINE_DATA_WIDTH_INDEX] === 2) {\n rightWideCharCount++;\n endCol++;\n }\n endIndex++;\n endCol++;\n }\n }\n var start = startIndex + charOffset - leftWideCharCount;\n var length = Math.min(endIndex - startIndex + leftWideCharCount + rightWideCharCount + 1, this._terminal.cols);\n return { start: start, length: length };\n };\n SelectionManager.prototype._selectWordAt = function (coords) {\n var wordPosition = this._getWordAt(coords);\n this._model.selectionStart = [wordPosition.start, coords[1]];\n this._model.selectionStartLength = wordPosition.length;\n };\n SelectionManager.prototype._selectToWordAt = function (coords) {\n var wordPosition = this._getWordAt(coords);\n this._model.selectionEnd = [this._model.areSelectionValuesReversed() ? wordPosition.start : (wordPosition.start + wordPosition.length), coords[1]];\n };\n SelectionManager.prototype._isCharWordSeparator = function (char) {\n return WORD_SEPARATORS.indexOf(char) >= 0;\n };\n SelectionManager.prototype._selectLineAt = function (line) {\n this._model.selectionStart = [0, line];\n this._model.selectionStartLength = this._terminal.cols;\n };\n return SelectionManager;\n}(EventEmitter_1.EventEmitter));\nexports.SelectionManager = SelectionManager;\n\n//# sourceMappingURL=SelectionManager.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/SelectionManager.js\n// module id = 21\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar SelectionModel = (function () {\n function SelectionModel(_terminal) {\n this._terminal = _terminal;\n this.clearSelection();\n }\n SelectionModel.prototype.clearSelection = function () {\n this.selectionStart = null;\n this.selectionEnd = null;\n this.isSelectAllActive = false;\n this.selectionStartLength = 0;\n };\n Object.defineProperty(SelectionModel.prototype, \"finalSelectionStart\", {\n get: function () {\n if (this.isSelectAllActive) {\n return [0, 0];\n }\n if (!this.selectionEnd || !this.selectionStart) {\n return this.selectionStart;\n }\n return this.areSelectionValuesReversed() ? this.selectionEnd : this.selectionStart;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(SelectionModel.prototype, \"finalSelectionEnd\", {\n get: function () {\n if (this.isSelectAllActive) {\n return [this._terminal.cols, this._terminal.ybase + this._terminal.rows - 1];\n }\n if (!this.selectionStart) {\n return null;\n }\n if (!this.selectionEnd || this.areSelectionValuesReversed()) {\n return [this.selectionStart[0] + this.selectionStartLength, this.selectionStart[1]];\n }\n if (this.selectionStartLength) {\n if (this.selectionEnd[1] === this.selectionStart[1]) {\n return [Math.max(this.selectionStart[0] + this.selectionStartLength, this.selectionEnd[0]), this.selectionEnd[1]];\n }\n }\n return this.selectionEnd;\n },\n enumerable: true,\n configurable: true\n });\n SelectionModel.prototype.areSelectionValuesReversed = function () {\n var start = this.selectionStart;\n var end = this.selectionEnd;\n return start[1] > end[1] || (start[1] === end[1] && start[0] > end[0]);\n };\n SelectionModel.prototype.onTrim = function (amount) {\n if (this.selectionStart) {\n this.selectionStart[1] -= amount;\n }\n if (this.selectionEnd) {\n this.selectionEnd[1] -= amount;\n }\n if (this.selectionEnd && this.selectionEnd[1] < 0) {\n this.clearSelection();\n return true;\n }\n if (this.selectionStart && this.selectionStart[1] < 0) {\n this.selectionStart[1] = 0;\n }\n return false;\n };\n return SelectionModel;\n}());\nexports.SelectionModel = SelectionModel;\n\n//# sourceMappingURL=SelectionModel.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/SelectionModel.js\n// module id = 22\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar Viewport = (function () {\n function Viewport(terminal, viewportElement, scrollArea, charMeasure) {\n var _this = this;\n this.terminal = terminal;\n this.viewportElement = viewportElement;\n this.scrollArea = scrollArea;\n this.charMeasure = charMeasure;\n this.currentRowHeight = 0;\n this.lastRecordedBufferLength = 0;\n this.lastRecordedViewportHeight = 0;\n this.terminal.on('scroll', this.syncScrollArea.bind(this));\n this.terminal.on('resize', this.syncScrollArea.bind(this));\n this.viewportElement.addEventListener('scroll', this.onScroll.bind(this));\n setTimeout(function () { return _this.syncScrollArea(); }, 0);\n }\n Viewport.prototype.refresh = function () {\n if (this.charMeasure.height > 0) {\n var rowHeightChanged = this.charMeasure.height !== this.currentRowHeight;\n if (rowHeightChanged) {\n this.currentRowHeight = this.charMeasure.height;\n this.viewportElement.style.lineHeight = this.charMeasure.height + 'px';\n this.terminal.rowContainer.style.lineHeight = this.charMeasure.height + 'px';\n }\n var viewportHeightChanged = this.lastRecordedViewportHeight !== this.terminal.rows;\n if (rowHeightChanged || viewportHeightChanged) {\n this.lastRecordedViewportHeight = this.terminal.rows;\n this.viewportElement.style.height = this.charMeasure.height * this.terminal.rows + 'px';\n this.terminal.selectionContainer.style.height = this.viewportElement.style.height;\n }\n this.scrollArea.style.height = (this.charMeasure.height * this.lastRecordedBufferLength) + 'px';\n }\n };\n Viewport.prototype.syncScrollArea = function () {\n if (this.lastRecordedBufferLength !== this.terminal.lines.length) {\n this.lastRecordedBufferLength = this.terminal.lines.length;\n this.refresh();\n }\n else if (this.lastRecordedViewportHeight !== this.terminal.rows) {\n this.refresh();\n }\n else {\n if (this.charMeasure.height !== this.currentRowHeight) {\n this.refresh();\n }\n }\n var scrollTop = this.terminal.ydisp * this.currentRowHeight;\n if (this.viewportElement.scrollTop !== scrollTop) {\n this.viewportElement.scrollTop = scrollTop;\n }\n };\n Viewport.prototype.onScroll = function (ev) {\n var newRow = Math.round(this.viewportElement.scrollTop / this.currentRowHeight);\n var diff = newRow - this.terminal.ydisp;\n this.terminal.scrollDisp(diff, true);\n };\n Viewport.prototype.onWheel = function (ev) {\n if (ev.deltaY === 0) {\n return;\n }\n var multiplier = 1;\n if (ev.deltaMode === WheelEvent.DOM_DELTA_LINE) {\n multiplier = this.currentRowHeight;\n }\n else if (ev.deltaMode === WheelEvent.DOM_DELTA_PAGE) {\n multiplier = this.currentRowHeight * this.terminal.rows;\n }\n this.viewportElement.scrollTop += ev.deltaY * multiplier;\n ev.preventDefault();\n };\n ;\n Viewport.prototype.onTouchStart = function (ev) {\n this.lastTouchY = ev.touches[0].pageY;\n };\n ;\n Viewport.prototype.onTouchMove = function (ev) {\n var deltaY = this.lastTouchY - ev.touches[0].pageY;\n this.lastTouchY = ev.touches[0].pageY;\n if (deltaY === 0) {\n return;\n }\n this.viewportElement.scrollTop += deltaY;\n ev.preventDefault();\n };\n ;\n return Viewport;\n}());\nexports.Viewport = Viewport;\n\n//# sourceMappingURL=Viewport.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/Viewport.js\n// module id = 23\n// module chunks = 0","var map = {\n\t\"./attach/attach\": 4,\n\t\"./attach/attach.js\": 4,\n\t\"./attach/package.json\": 25,\n\t\"./fit/fit\": 5,\n\t\"./fit/fit.js\": 5,\n\t\"./fit/package.json\": 26,\n\t\"./fullscreen/fullscreen\": 6,\n\t\"./fullscreen/fullscreen.css\": 27,\n\t\"./fullscreen/fullscreen.js\": 6,\n\t\"./fullscreen/package.json\": 28,\n\t\"./terminado/package.json\": 29,\n\t\"./terminado/terminado\": 7,\n\t\"./terminado/terminado.js\": 7\n};\nfunction webpackContext(req) {\n\treturn __webpack_require__(webpackContextResolve(req));\n};\nfunction webpackContextResolve(req) {\n\tvar id = map[req];\n\tif(!(id + 1)) // check for number or string\n\t\tthrow new Error(\"Cannot find module '\" + req + \"'.\");\n\treturn id;\n};\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 24;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons ^\\.\\/.*$\n// module id = 24\n// module chunks = 0","module.exports = {\"name\":\"xterm.attach\",\"main\":\"attach.js\",\"private\":true}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/attach/package.json\n// module id = 25\n// module chunks = 0","module.exports = {\"name\":\"xterm.fit\",\"main\":\"fit.js\",\"private\":true}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/fit/package.json\n// module id = 26\n// module chunks = 0","module.exports = {\"name\":\"xterm.fullscreen\",\"main\":\"fullscreen.js\",\"private\":true}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/fullscreen/package.json\n// module id = 28\n// module chunks = 0","module.exports = {\"name\":\"xterm.terminado\",\"main\":\"terminado.js\",\"private\":true}\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/addons/terminado/package.json\n// module id = 29\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nfunction prepareTextForTerminal(text, isMSWindows) {\n if (isMSWindows) {\n return text.replace(/\\r?\\n/g, '\\r');\n }\n return text;\n}\nexports.prepareTextForTerminal = prepareTextForTerminal;\nfunction copyHandler(ev, term, selectionManager) {\n if (term.browser.isMSIE) {\n window.clipboardData.setData('Text', selectionManager.selectionText);\n }\n else {\n ev.clipboardData.setData('text/plain', selectionManager.selectionText);\n }\n ev.preventDefault();\n}\nexports.copyHandler = copyHandler;\nfunction pasteHandler(ev, term) {\n ev.stopPropagation();\n var text;\n var dispatchPaste = function (text) {\n text = prepareTextForTerminal(text, term.browser.isMSWindows);\n term.handler(text);\n term.textarea.value = '';\n term.emit('paste', text);\n return term.cancel(ev);\n };\n if (term.browser.isMSIE) {\n if (window.clipboardData) {\n text = window.clipboardData.getData('Text');\n dispatchPaste(text);\n }\n }\n else {\n if (ev.clipboardData) {\n text = ev.clipboardData.getData('text/plain');\n dispatchPaste(text);\n }\n }\n}\nexports.pasteHandler = pasteHandler;\nfunction moveTextAreaUnderMouseCursor(ev, textarea) {\n textarea.style.position = 'fixed';\n textarea.style.width = '20px';\n textarea.style.height = '20px';\n textarea.style.left = (ev.clientX - 10) + 'px';\n textarea.style.top = (ev.clientY - 10) + 'px';\n textarea.style.zIndex = '1000';\n textarea.focus();\n setTimeout(function () {\n textarea.style.position = null;\n textarea.style.width = null;\n textarea.style.height = null;\n textarea.style.left = null;\n textarea.style.top = null;\n textarea.style.zIndex = null;\n }, 4);\n}\nexports.moveTextAreaUnderMouseCursor = moveTextAreaUnderMouseCursor;\nfunction rightClickHandler(ev, textarea, selectionManager) {\n moveTextAreaUnderMouseCursor(ev, textarea);\n textarea.value = selectionManager.selectionText;\n textarea.select();\n}\nexports.rightClickHandler = rightClickHandler;\n\n//# sourceMappingURL=Clipboard.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/handlers/Clipboard.js\n// module id = 30\n// module chunks = 0","\"use strict\";\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar EventEmitter_js_1 = require(\"../EventEmitter.js\");\nvar CharMeasure = (function (_super) {\n __extends(CharMeasure, _super);\n function CharMeasure(document, parentElement) {\n var _this = _super.call(this) || this;\n _this._document = document;\n _this._parentElement = parentElement;\n return _this;\n }\n Object.defineProperty(CharMeasure.prototype, \"width\", {\n get: function () {\n return this._width;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CharMeasure.prototype, \"height\", {\n get: function () {\n return this._height;\n },\n enumerable: true,\n configurable: true\n });\n CharMeasure.prototype.measure = function () {\n var _this = this;\n if (!this._measureElement) {\n this._measureElement = this._document.createElement('span');\n this._measureElement.style.position = 'absolute';\n this._measureElement.style.top = '0';\n this._measureElement.style.left = '-9999em';\n this._measureElement.textContent = 'W';\n this._measureElement.setAttribute('aria-hidden', 'true');\n this._parentElement.appendChild(this._measureElement);\n setTimeout(function () { return _this._doMeasure(); }, 0);\n }\n else {\n this._doMeasure();\n }\n };\n CharMeasure.prototype._doMeasure = function () {\n var geometry = this._measureElement.getBoundingClientRect();\n if (geometry.width === 0 || geometry.height === 0) {\n return;\n }\n if (this._width !== geometry.width || this._height !== geometry.height) {\n this._width = geometry.width;\n this._height = geometry.height;\n this.emit('charsizechanged');\n }\n };\n return CharMeasure;\n}(EventEmitter_js_1.EventEmitter));\nexports.CharMeasure = CharMeasure;\n\n//# sourceMappingURL=CharMeasure.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/CharMeasure.js\n// module id = 31\n// module chunks = 0","\"use strict\";\nvar __extends = (this && this.__extends) || (function () {\n var extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };\n return function (d, b) {\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n };\n})();\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar EventEmitter_1 = require(\"../EventEmitter\");\nvar CircularList = (function (_super) {\n __extends(CircularList, _super);\n function CircularList(maxLength) {\n var _this = _super.call(this) || this;\n _this._array = new Array(maxLength);\n _this._startIndex = 0;\n _this._length = 0;\n return _this;\n }\n Object.defineProperty(CircularList.prototype, \"maxLength\", {\n get: function () {\n return this._array.length;\n },\n set: function (newMaxLength) {\n var newArray = new Array(newMaxLength);\n for (var i = 0; i < Math.min(newMaxLength, this.length); i++) {\n newArray[i] = this._array[this._getCyclicIndex(i)];\n }\n this._array = newArray;\n this._startIndex = 0;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CircularList.prototype, \"length\", {\n get: function () {\n return this._length;\n },\n set: function (newLength) {\n if (newLength > this._length) {\n for (var i = this._length; i < newLength; i++) {\n this._array[i] = undefined;\n }\n }\n this._length = newLength;\n },\n enumerable: true,\n configurable: true\n });\n Object.defineProperty(CircularList.prototype, \"forEach\", {\n get: function () {\n var _this = this;\n return function (callbackfn) {\n var i = 0;\n var length = _this.length;\n for (var i_1 = 0; i_1 < length; i_1++) {\n callbackfn(_this.get(i_1), i_1);\n }\n };\n },\n enumerable: true,\n configurable: true\n });\n CircularList.prototype.get = function (index) {\n return this._array[this._getCyclicIndex(index)];\n };\n CircularList.prototype.set = function (index, value) {\n this._array[this._getCyclicIndex(index)] = value;\n };\n CircularList.prototype.push = function (value) {\n this._array[this._getCyclicIndex(this._length)] = value;\n if (this._length === this.maxLength) {\n this._startIndex++;\n if (this._startIndex === this.maxLength) {\n this._startIndex = 0;\n }\n this.emit('trim', 1);\n }\n else {\n this._length++;\n }\n };\n CircularList.prototype.pop = function () {\n return this._array[this._getCyclicIndex(this._length-- - 1)];\n };\n CircularList.prototype.splice = function (start, deleteCount) {\n var items = [];\n for (var _i = 2; _i < arguments.length; _i++) {\n items[_i - 2] = arguments[_i];\n }\n if (deleteCount) {\n for (var i = start; i < this._length - deleteCount; i++) {\n this._array[this._getCyclicIndex(i)] = this._array[this._getCyclicIndex(i + deleteCount)];\n }\n this._length -= deleteCount;\n }\n if (items && items.length) {\n for (var i = this._length - 1; i >= start; i--) {\n this._array[this._getCyclicIndex(i + items.length)] = this._array[this._getCyclicIndex(i)];\n }\n for (var i = 0; i < items.length; i++) {\n this._array[this._getCyclicIndex(start + i)] = items[i];\n }\n if (this._length + items.length > this.maxLength) {\n var countToTrim = (this._length + items.length) - this.maxLength;\n this._startIndex += countToTrim;\n this._length = this.maxLength;\n this.emit('trim', countToTrim);\n }\n else {\n this._length += items.length;\n }\n }\n };\n CircularList.prototype.trimStart = function (count) {\n if (count > this._length) {\n count = this._length;\n }\n this._startIndex += count;\n this._length -= count;\n this.emit('trim', count);\n };\n CircularList.prototype.shiftElements = function (start, count, offset) {\n if (count <= 0) {\n return;\n }\n if (start < 0 || start >= this._length) {\n throw new Error('start argument out of range');\n }\n if (start + offset < 0) {\n throw new Error('Cannot shift elements in list beyond index 0');\n }\n if (offset > 0) {\n for (var i = count - 1; i >= 0; i--) {\n this.set(start + i + offset, this.get(start + i));\n }\n var expandListBy = (start + count + offset) - this._length;\n if (expandListBy > 0) {\n this._length += expandListBy;\n while (this._length > this.maxLength) {\n this._length--;\n this._startIndex++;\n this.emit('trim', 1);\n }\n }\n }\n else {\n for (var i = 0; i < count; i++) {\n this.set(start + i + offset, this.get(start + i));\n }\n }\n };\n CircularList.prototype._getCyclicIndex = function (index) {\n return (this._startIndex + index) % this.maxLength;\n };\n return CircularList;\n}(EventEmitter_1.EventEmitter));\nexports.CircularList = CircularList;\n\n//# sourceMappingURL=CircularList.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/CircularList.js\n// module id = 32\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar DomElementObjectPool = (function () {\n function DomElementObjectPool(type) {\n this.type = type;\n this._type = type;\n this._pool = [];\n this._inUse = {};\n }\n DomElementObjectPool.prototype.acquire = function () {\n var element;\n if (this._pool.length === 0) {\n element = this._createNew();\n }\n else {\n element = this._pool.pop();\n }\n this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)] = element;\n return element;\n };\n DomElementObjectPool.prototype.release = function (element) {\n if (!this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)]) {\n throw new Error('Could not release an element not yet acquired');\n }\n delete this._inUse[element.getAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE)];\n this._cleanElement(element);\n this._pool.push(element);\n };\n DomElementObjectPool.prototype._createNew = function () {\n var element = document.createElement(this._type);\n var id = DomElementObjectPool._objectCount++;\n element.setAttribute(DomElementObjectPool.OBJECT_ID_ATTRIBUTE, id.toString(10));\n return element;\n };\n DomElementObjectPool.prototype._cleanElement = function (element) {\n element.className = '';\n element.innerHTML = '';\n };\n return DomElementObjectPool;\n}());\nDomElementObjectPool.OBJECT_ID_ATTRIBUTE = 'data-obj-id';\nDomElementObjectPool._objectCount = 0;\nexports.DomElementObjectPool = DomElementObjectPool;\n\n//# sourceMappingURL=DomElementObjectPool.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/DomElementObjectPool.js\n// module id = 33\n// module chunks = 0","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nfunction contains(arr, el) {\n return arr.indexOf(el) >= 0;\n}\nexports.contains = contains;\n;\n\n//# sourceMappingURL=Generic.js.map\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/xterm/lib/utils/Generic.js\n// module id = 34\n// module chunks = 0"],"sourceRoot":""} \ No newline at end of file diff --git a/js/package-lock.json b/js/package-lock.json index a87f78b..f9d5036 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -68,6 +68,12 @@ "micromatch": "2.3.11" } }, + "aproba": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz", + "integrity": "sha512-ZpYajIfO0j2cOFTO955KUMIKNmj6zhX8kVztMAxFsDaMwz+9Z9SV0uou2pC9HJqcfpffOsjnbrDMvkNy+9RXPw==", + "dev": true + }, "arr-diff": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", @@ -154,6 +160,12 @@ "integrity": "sha1-ZlBsFs5vTWkopbPNajPKQelB43s=", "dev": true }, + "bluebird": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz", + "integrity": "sha1-eRQg1/VR7qKJdFOop3ZT+WYG1nw=", + "dev": true + }, "bn.js": { "version": "4.11.7", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.7.tgz", @@ -285,6 +297,27 @@ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", "dev": true }, + "cacache": { + "version": "9.2.9", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz", + "integrity": "sha512-ghg1j5OyTJ6qsrqU++dN23QiTDxb5AZCFGsF3oB+v9v/gY+F4X8L/0gdQMEjd+8Ot3D29M2etX5PKozHRn2JQw==", + "dev": true, + "requires": { + "bluebird": "3.5.0", + "chownr": "1.0.1", + "glob": "7.1.2", + "graceful-fs": "4.1.11", + "lru-cache": "4.1.1", + "mississippi": "1.3.0", + "mkdirp": "0.5.1", + "move-concurrently": "1.0.1", + "promise-inflight": "1.0.1", + "rimraf": "2.6.1", + "ssri": "4.1.6", + "unique-filename": "1.1.0", + "y18n": "3.2.1" + } + }, "camelcase": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", @@ -317,6 +350,12 @@ "readdirp": "2.1.0" } }, + "chownr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz", + "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", + "dev": true + }, "cipher-base": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", @@ -356,12 +395,35 @@ "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", "dev": true }, + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true }, + "concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "typedarray": "0.0.6" + } + }, "console-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", @@ -377,6 +439,20 @@ "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", "dev": true }, + "copy-concurrently": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.3.tgz", + "integrity": "sha1-Rft4ZiSaHKiJqlcI5svSc+dbslA=", + "dev": true, + "requires": { + "aproba": "1.1.2", + "fs-write-stream-atomic": "1.0.10", + "iferr": "0.1.5", + "mkdirp": "0.5.1", + "rimraf": "2.6.1", + "run-queue": "1.0.3" + } + }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -437,6 +513,12 @@ "randombytes": "2.0.5" } }, + "cyclist": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", + "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", + "dev": true + }, "date-now": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", @@ -476,6 +558,18 @@ "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=", "dev": true }, + "duplexify": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz", + "integrity": "sha512-j5goxHTwVED1Fpe5hh3q9R93Kip0Bg2KVAt4f8CEYM3UEwYcPSvWbXaUQOzdX/HtiNomipv+gU7ASQPDbV7pGQ==", + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "inherits": "2.0.3", + "readable-stream": "2.3.3", + "stream-shift": "1.0.0" + } + }, "elliptic": { "version": "6.4.0", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", @@ -497,6 +591,15 @@ "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", "dev": true }, + "end-of-stream": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz", + "integrity": "sha1-epDYM+/abPpurA9JSduw+tOmMgY=", + "dev": true, + "requires": { + "once": "1.4.0" + } + }, "enhanced-resolve": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz", @@ -569,6 +672,12 @@ "is-extglob": "1.0.0" } }, + "fast-deep-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", + "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=", + "dev": true + }, "filename-regex": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", @@ -588,6 +697,17 @@ "repeat-string": "1.6.1" } }, + "find-cache-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", + "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", + "dev": true, + "requires": { + "commondir": "1.0.1", + "make-dir": "1.0.0", + "pkg-dir": "2.0.0" + } + }, "find-up": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", @@ -598,6 +718,16 @@ "pinkie-promise": "2.0.1" } }, + "flush-write-stream": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz", + "integrity": "sha1-yBuQ2HRnZvGmCaRoCZRsRd2K5Bc=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3" + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -613,12 +743,54 @@ "for-in": "1.0.2" } }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.3" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "iferr": "0.1.5", + "imurmurhash": "0.1.4", + "readable-stream": "2.3.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, "get-caller-file": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=", "dev": true }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, "glob-base": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", @@ -698,12 +870,34 @@ "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=", "dev": true }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, "indexof": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", "dev": true }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", @@ -845,6 +1039,12 @@ "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", "dev": true }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + }, "json-stable-stringify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", @@ -923,6 +1123,24 @@ "json5": "0.5.1" } }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "2.0.0", + "path-exists": "3.0.0" + }, + "dependencies": { + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } + } + }, "lodash": { "version": "4.17.4", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", @@ -935,6 +1153,25 @@ "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", "dev": true }, + "lru-cache": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", + "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + } + }, + "make-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz", + "integrity": "sha1-l6ARdR6R3YfPre9Ygy67BJNt6Xg=", + "dev": true, + "requires": { + "pify": "2.3.0" + } + }, "memory-fs": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", @@ -1003,6 +1240,24 @@ "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", "dev": true }, + "mississippi": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-1.3.0.tgz", + "integrity": "sha1-0gFYPrEjJ+PFwWQqQEqcrPlONPU=", + "dev": true, + "requires": { + "concat-stream": "1.6.0", + "duplexify": "3.5.1", + "end-of-stream": "1.4.0", + "flush-write-stream": "1.0.2", + "from2": "2.3.0", + "parallel-transform": "1.1.0", + "pump": "1.0.2", + "pumpify": "1.3.5", + "stream-each": "1.2.0", + "through2": "2.0.3" + } + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", @@ -1012,6 +1267,20 @@ "minimist": "0.0.8" } }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "1.1.2", + "copy-concurrently": "1.0.3", + "fs-write-stream-atomic": "1.0.10", + "mkdirp": "0.5.1", + "rimraf": "2.6.1", + "run-queue": "1.0.3" + } + }, "node-libs-browser": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.0.0.tgz", @@ -1094,6 +1363,15 @@ "is-extendable": "0.1.1" } }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, "os-browserify": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", @@ -1109,12 +1387,38 @@ "lcid": "1.0.0" } }, + "p-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", + "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=", + "dev": true + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "1.1.0" + } + }, "pako": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=", "dev": true }, + "parallel-transform": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", + "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "dev": true, + "requires": { + "cyclist": "0.2.2", + "inherits": "2.0.3", + "readable-stream": "2.3.3" + } + }, "parse-asn1": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", @@ -1215,6 +1519,26 @@ "pinkie": "2.0.4" } }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "requires": { + "find-up": "2.1.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "2.0.0" + } + } + } + }, "preserve": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", @@ -1233,12 +1557,24 @@ "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", "dev": true }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, "prr": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=", "dev": true }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, "public-encrypt": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", @@ -1252,6 +1588,27 @@ "randombytes": "2.0.5" } }, + "pump": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.2.tgz", + "integrity": "sha1-Oz7mUS+U8OV1U4wXmV+fFpkKXVE=", + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "once": "1.4.0" + } + }, + "pumpify": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.3.5.tgz", + "integrity": "sha1-G2ccYZlAq8rqwK0OOjwWS+dgmTs=", + "dev": true, + "requires": { + "duplexify": "3.5.1", + "inherits": "2.0.3", + "pump": "1.0.2" + } + }, "punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", @@ -1417,6 +1774,15 @@ "align-text": "0.1.4" } }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "dev": true, + "requires": { + "glob": "7.1.2" + } + }, "ripemd160": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", @@ -1427,12 +1793,44 @@ "inherits": "2.0.3" } }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "1.1.2" + } + }, "safe-buffer": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", "dev": true }, + "schema-utils": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", + "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", + "dev": true, + "requires": { + "ajv": "5.2.2" + }, + "dependencies": { + "ajv": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz", + "integrity": "sha1-R8aNaehvXZUxA7AHSpQw3GPaXjk=", + "dev": true, + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.0.0", + "json-schema-traverse": "0.3.1", + "json-stable-stringify": "1.0.1" + } + } + } + }, "semver": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", @@ -1499,6 +1897,15 @@ "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=", "dev": true }, + "ssri": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz", + "integrity": "sha512-WUbCdgSAMQjTFZRWvSPpauryvREEA+Krn19rx67UlJEJx/M192ZHxMmJXjZ4tkdFm+Sb0SXGlENeQVlA5wY7kA==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, "stream-browserify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", @@ -1509,6 +1916,16 @@ "readable-stream": "2.3.3" } }, + "stream-each": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.0.tgz", + "integrity": "sha1-HpXUdXP1gNgU3A/4zQ9m8c5TyZE=", + "dev": true, + "requires": { + "end-of-stream": "1.4.0", + "stream-shift": "1.0.0" + } + }, "stream-http": { "version": "2.7.2", "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", @@ -1522,6 +1939,12 @@ "xtend": "4.0.1" } }, + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true + }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", @@ -1575,6 +1998,16 @@ "integrity": "sha1-5GwNqsuyuKmLmwzqD0BSEFgX7Vw=", "dev": true }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "requires": { + "readable-stream": "2.3.3", + "xtend": "4.0.1" + } + }, "timers-browserify": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz", @@ -1608,6 +2041,12 @@ "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", "dev": true }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, "typescript": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.3.2.tgz", @@ -1646,6 +2085,67 @@ "dev": true, "optional": true }, + "uglifyjs-webpack-plugin": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.0.0-beta.2.tgz", + "integrity": "sha512-vTt+xUdBbjfIAmaSm3li3y/9k0m35GXV5AZWAUrSDMOAtI0mmhQ4FAQFtqEkmgEGS+A3S+qFaA0dk1lKheYQSw==", + "dev": true, + "requires": { + "cacache": "9.2.9", + "find-cache-dir": "1.0.0", + "schema-utils": "0.3.0", + "source-map": "0.5.6", + "uglify-es": "3.0.28", + "webpack-sources": "1.0.1", + "worker-farm": "1.5.0" + }, + "dependencies": { + "source-list-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", + "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==", + "dev": true + }, + "uglify-es": { + "version": "3.0.28", + "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.0.28.tgz", + "integrity": "sha512-xw1hJsSp361OO0Sq0XvNyTI2wfQ4eKNljfSYyeYX/dz9lKEDj+DK+A8CzB0NmoCwWX1MnEx9f16HlkKXyG65CQ==", + "dev": true, + "requires": { + "commander": "2.11.0", + "source-map": "0.5.6" + } + }, + "webpack-sources": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.0.1.tgz", + "integrity": "sha512-05tMxipUCwHqYaVS8xc7sYPTly8PzXayRCB4dTxLhWTqlKUiwH6ezmEe0OSreL1c30LAuA3Zqmc+uEBUGFJDjw==", + "dev": true, + "requires": { + "source-list-map": "2.0.0", + "source-map": "0.5.6" + } + } + } + }, + "unique-filename": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz", + "integrity": "sha1-0F8v5AMlYIcfMOk8vnNe6iAVFPM=", + "dev": true, + "requires": { + "unique-slug": "2.0.0" + } + }, + "unique-slug": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz", + "integrity": "sha1-22Z258fMBimHj/GWCXx4hVrp9Ks=", + "dev": true, + "requires": { + "imurmurhash": "0.1.4" + } + }, "url": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", @@ -1788,6 +2288,16 @@ "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", "dev": true }, + "worker-farm": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.5.0.tgz", + "integrity": "sha512-DHRiUggxtbruaTwnLDm2/BRDKZIoOYvrgYUj5Bam4fU6Gtvc0FaEyoswFPBjMXAweGW2H4BDNIpy//1yXXuaqQ==", + "dev": true, + "requires": { + "errno": "0.1.4", + "xtend": "4.0.1" + } + }, "wrap-ansi": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", @@ -1798,6 +2308,12 @@ "strip-ansi": "3.0.1" } }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, "xtend": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", @@ -1815,6 +2331,12 @@ "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", "dev": true }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, "yargs": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", diff --git a/js/package.json b/js/package.json index 3d65712..7aad9cb 100644 --- a/js/package.json +++ b/js/package.json @@ -2,10 +2,11 @@ "devDependencies": { "ts-loader": "^2.0.3", "typescript": "^2.3.2", + "uglifyjs-webpack-plugin": "^1.0.0-beta.2", "webpack": "^2.5.1" }, "dependencies": { - "libapps": "github:yudai/libapps#hterm-1.70", + "libapps": "github:yudai/libapps#release-hterm-1.70", "xterm": "^2.7.0" } } diff --git a/js/webpack.config.js b/js/webpack.config.js index 238547e..c502ee7 100644 --- a/js/webpack.config.js +++ b/js/webpack.config.js @@ -1,3 +1,5 @@ +const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); + module.exports = { entry: "./src/main.ts", output: { @@ -15,5 +17,8 @@ module.exports = { exclude: [/node_modules/], } ] - } + }, + plugins: [ + new UglifyJSPlugin() + ] }; diff --git a/server/asset.go b/server/asset.go index 3ad4d5e..b0da774 100644 --- a/server/asset.go +++ b/server/asset.go @@ -194,7 +194,7 @@ func staticJsBundleJs() (*asset, error) { return a, nil } -var _staticJsGottyBundleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x73\x1b\x49\xf2\x20\xf6\x79\xf9\x57\xa4\x38\x77\x83\x86\x08\x82\x00\xf8\x90\x44\x0a\xd2\x42\x04\x39\xd2\x8e\x5e\x47\x72\x76\x76\x8f\xc3\x1f\xb7\xd0\x5d\x00\x5a\x6a\x74\x63\xbb\x1b\x24\xb1\x23\xce\x27\xdb\x11\xfe\xe8\x2f\x0e\x7f\xb8\x08\xbf\xce\xfe\xdd\x39\x1c\x8e\xb3\xe3\xe2\xc2\x0e\x9f\xed\x88\x9d\x7f\xcc\x51\x59\xef\xee\x6a\x00\xd4\x63\x67\x7e\x71\x0b\xcd\x48\x40\x3d\xb2\xb2\xb2\x32\xb3\xb2\xaa\xb2\xb2\xb6\xee\xe3\x67\x0b\xbc\xe1\x2c\xf6\xf3\x30\x89\xbd\x49\x12\xcc\x22\x9a\xd5\xe1\x47\xd8\xda\x82\x6b\x3a\x98\x12\xff\xfd\xb3\x24\xc9\xb3\x3c\x25\xd3\x35\x55\xe3\x37\x5b\x5b\x70\x36\xa6\xc0\xcb\x83\x4f\xfc\x31\x35\x72\xaf\x48\x0a\x61\x9c\xe5\x24\x8a\x68\xf0\x8a\xc3\x84\x2e\xfc\x78\x7b\xa0\x0a\x95\x61\xa5\xf4\xcf\xb3\x30\xa5\x20\x91\x31\x4a\xc8\x24\xb8\xbc\x14\x38\x5d\x8a\xd2\x97\x97\x02\xe7\x17\x41\x1d\x7e\x74\x41\x67\xe0\x0f\xc7\xd4\x7f\x0f\xe1\x50\xe2\x1b\x66\x10\xc6\x25\xac\x7f\x13\x0e\xbd\x22\xd6\xe7\x12\xfa\x85\x09\x1e\x7e\xf3\x9b\xdf\xa4\x34\x9f\xa5\x71\xa9\x9b\xba\x42\x93\xde\x4c\x93\x34\xcf\x0e\xcc\x6a\xb7\x45\xcc\x52\x4a\x72\x0a\x04\x62\x7a\x2d\xb1\xf3\x48\x1c\xc0\x74\x96\x43\x98\x43\x18\xe7\x09\xe4\x63\x41\xe2\xba\x59\x9b\x11\x59\xd4\xe8\x2e\x40\x83\xd1\xdd\x42\x3c\xdc\x07\x99\xd9\xb0\x32\xa2\x7d\x18\x92\x28\xa3\x76\xaa\xe8\xc5\x3e\xfc\x68\xe1\xee\x1e\x4a\xd6\xa5\xa3\x1b\xea\xcf\x72\x8a\x58\x0b\xfc\x1c\x43\xfa\x9b\x49\x89\x5e\x3e\x89\x22\x31\x9a\x92\x76\x0d\x01\x41\xfe\xab\xd3\x1d\x9c\x50\xaf\x44\xe9\x38\x22\x23\x13\x1f\x92\x41\x94\x90\x80\x06\x65\x84\x9a\x11\x74\x21\x4f\x67\xb4\x12\xd8\x09\x1f\x78\x06\x4e\x60\x03\xc9\xd0\x80\x6e\x16\x17\x4c\x62\x23\x6f\x32\xc4\x6d\xb9\x15\x5b\x32\x58\x9d\xcc\x24\x66\x06\xc9\xe0\x1d\xf5\x73\xf0\x34\x09\x44\xce\xe5\xa5\xc9\x20\x0e\x0a\x35\x27\xd0\x95\x60\xaa\x44\xb1\xd4\x60\x49\x4e\x5c\x80\x7d\x07\x0f\x56\xb5\x10\x06\x34\xce\xc3\x7c\xae\xd8\x02\x86\x49\x0a\x6c\xf4\xc3\x78\x04\x63\x92\x4e\x92\x78\x0e\xe1\x84\xd3\xf6\x3a\xcc\xc7\x5c\x02\x92\x34\x65\xfd\xf6\x93\x38\xa7\x37\xf9\x12\x84\x42\xe8\x2a\xf8\xde\x15\x89\x66\x94\x29\x35\x31\x1e\xf8\xfb\x00\x2a\xd5\x51\x40\x87\x61\x4c\x61\x44\xf3\x9c\xa6\x36\x9a\x12\x3d\x31\x96\x4b\xb0\x08\x4c\x2c\x14\xef\xc6\x64\x42\x1b\x02\x7a\x41\xad\x84\x43\xef\x9e\x0b\x50\x62\xd7\xae\x17\xb5\xd1\x1b\xe4\x89\x26\x47\xfc\x6d\x9a\x4c\x69\x9a\xcf\x8b\x2d\xda\x55\x7e\xe3\x27\xf1\x30\x1c\xcd\x52\x32\x88\xa8\x53\xf4\x7f\x43\xe3\xd9\x84\x8a\x7c\x26\x13\x85\xec\x11\xcd\xf7\x45\x37\xac\x8c\xdb\x7a\xa5\xce\xab\x24\xf9\x88\xe6\x7d\x3a\x24\xb3\x28\x3f\x42\xa4\x0b\xcc\x91\x4c\xa6\x24\x0f\x07\x61\xc4\xf8\x06\x59\x22\x4e\xe2\x4d\x39\x18\x82\xa5\x97\x0c\x46\x6c\x0e\x06\xaf\x52\x20\x23\x53\xa9\x62\xd0\xa5\x9c\xc0\xd7\x5f\x4b\xf1\xbd\xbc\xa4\x19\x67\x6d\x78\x6a\xf5\x57\xa1\xaa\x3b\xe1\x19\xdc\xc6\xab\x9f\xd7\x02\x9e\x55\xbb\x38\x80\x5b\xd8\xaf\x84\xc0\x9b\xe0\x54\xc8\xca\x70\x2c\xb6\x85\xdf\xb8\xd9\xce\xe3\xbd\x68\x40\x8d\xd4\x14\xa7\x1d\x38\x34\x13\xcf\x3a\x58\x65\x84\x04\x8b\x4d\xd3\x24\x4f\xf2\xf9\x94\x36\xc7\x24\x7b\x73\x1d\x4b\x66\x43\xf5\xbd\x64\x04\x12\x73\x04\xb8\x1a\x6b\xc0\x54\x00\x30\x7a\xba\x4a\x53\xe5\xfa\x0b\x04\x5a\x23\x33\x9d\x0d\xa2\xd0\xbf\x9c\x92\x7c\x7c\x79\xb9\x04\xdd\x29\x74\x61\x7d\xbd\x0a\xe6\xcb\x84\x04\x40\xe3\x3c\x9d\xab\x69\x25\x0e\x64\x0f\xca\xea\x41\x64\xb8\x2c\x18\x57\xdb\xcc\x5e\x6a\xef\x9a\x63\x76\xab\x94\xfb\xa7\x7f\x8c\xae\x78\xe7\x6b\x5b\xf7\xa1\x05\x22\xad\x6c\x0d\x36\x60\xe1\xa4\x0b\x3f\xae\xad\xad\xcf\x32\x0a\x59\x9e\x86\x7e\xbe\x7e\xb0\xb6\xb6\x44\x19\xad\x6b\x41\x5a\x6f\xc0\x8f\x5c\x1b\x73\x05\x03\x4c\x75\x30\x29\x3c\x4c\x26\xd3\x24\x0b\x19\x1a\xcf\x69\x34\xa5\xe9\x65\x1b\xba\x4e\xe2\xb5\xf7\x44\x95\xa3\x2b\x1a\xe7\x47\x93\x90\x31\x74\x75\x69\x51\xf8\xf7\x21\xbd\x66\xe8\x54\x16\xec\x6c\x4b\x4c\xa2\x70\x3a\x48\x48\x1a\x54\x16\xdd\x6e\xc9\xa2\x61\xea\xcf\x22\x92\xbe\x0c\xb3\x6a\xc0\xdb\x1d\x89\x6f\xe6\x93\x29\x3d\xa5\x7f\x9e\xd1\xd8\xa7\x59\x35\x26\xa2\xfc\x8b\x78\x3a\xcb\x9f\x93\x38\x88\x16\xf5\xef\x81\x28\xfd\x96\xa4\xd9\xa2\x72\x8f\x44\xb9\x13\x1a\x07\x34\x5d\x50\xb2\x23\x7b\xf7\x32\x8c\xdf\x87\xc3\x70\x11\xd0\x87\xa2\xe8\x29\x8d\x28\xb2\xd0\x2b\x12\x93\xd1\x22\xe0\x72\x3c\x0e\xc7\x24\x7d\x45\x49\x36\x4b\x69\x35\xe5\x64\xe1\x67\x69\x72\x9d\xa1\x8e\x76\x15\x93\x48\xbc\x4a\x66\x59\x35\x30\xd9\xff\x20\xf1\x67\x13\x1a\xe7\xd0\x05\x8f\xa9\x9a\x64\x08\xd7\x61\x1c\x24\xd7\x70\xaf\x0b\xb5\x59\xcc\x99\x38\xa8\xd5\xe1\xa9\xc8\x68\xaa\x2a\xfb\x10\xcf\xa2\x88\xc3\xf9\xfe\xe4\xc5\xd9\xd1\xe5\xb3\xef\x8e\x8f\x8f\x4e\x2e\xdf\xf6\xbe\x3b\x3d\xba\x3c\x7b\x7e\x72\x74\xfa\xfc\xcd\xcb\x3e\x74\x61\xd7\x2a\xd5\x3b\x3b\x7c\x7e\x79\xfa\xe2\x5f\x1e\x41\x17\xb6\x5b\x2d\x41\x82\xef\x4e\x4e\xdf\x9c\x5c\x3e\x7b\xf9\xe2\xf5\xb7\x97\x2f\x5e\x9f\x1d\x9d\xfc\xbe\xf7\x12\xba\xb0\xc7\x0a\xa8\x09\xe2\x8c\xa6\x93\x30\x26\x91\x97\x4c\xd9\x6f\xb6\x54\x5b\x03\x00\x60\x10\x32\x1a\x0d\x99\xf5\x3a\x0e\xb3\x03\x4c\x0c\x87\xe0\xdd\xf3\xd8\x6f\x6e\x9c\xc5\x3e\xeb\x9f\x04\x51\x97\x75\xd9\x47\xa8\x27\xb6\x0c\x51\x4d\x90\x74\x84\x1d\xcd\xce\x5b\x17\x0d\xd0\xbf\xda\xd6\xaf\xce\x45\x9d\xb7\x76\x8b\x7f\x33\x24\x9a\x03\x35\x42\x62\xac\x0e\x74\x9e\xcf\xd0\x60\x56\xb6\x6c\x47\xa4\xf0\x22\xb6\x14\x37\xcd\x9f\x5c\xed\xb3\xde\xd4\x75\xf7\xc4\x98\x09\x6a\x40\xb7\xdb\x85\x5a\x3c\x9b\x0c\x68\x5a\x33\xbb\xa7\xf2\x8d\x34\xf6\xf1\x93\x28\xdb\x07\xab\xa3\x56\x3e\xc3\x7e\xdf\xee\xba\x95\x3f\xe6\xf2\xb8\x6f\xd1\x43\x95\xb8\x35\x09\xa3\x51\x90\xdf\x3e\x7c\xc0\x25\x31\xcb\x14\x2a\xf3\x3d\x9d\x67\x9e\xa2\x8b\x30\x18\xb2\x7a\x73\x98\xa4\x47\xc4\x1f\x2b\xd5\x0c\xde\x7b\x3a\x37\xfb\xc7\x48\x21\xc0\x9e\xbf\xa7\xf3\x0b\xe8\x76\x91\x39\xeb\x85\xfe\xda\x65\xf4\x10\x98\xe9\x07\x56\x0d\x06\x59\x16\xe3\xd5\xee\x75\x8d\x8a\x12\x47\xcc\x2a\xb6\xb6\xa0\x45\x47\x4b\xb7\x6b\xe5\x6f\x8c\x63\x64\xd5\x32\x8e\xb7\x06\x23\x88\xdc\xa6\x9f\x44\x49\x9a\x35\x23\x1a\x8f\xf2\x31\xf2\xc3\x43\x07\x23\x88\x62\x1a\xaa\xac\xe7\x27\xb1\x4f\x72\x3d\x06\x97\x22\x3d\x8b\x42\x9f\x7a\x0f\xeb\x16\xaf\xd3\x28\xa3\x4b\x1a\x6f\xef\x7d\xbe\xd6\xdb\x7b\x77\x6f\xbe\x75\x97\xe6\x79\x33\xad\x06\x6c\x76\xea\xcb\x28\x81\x85\x1a\x6e\x08\x9b\x9d\xbb\x23\xfa\x19\x47\xa9\xbd\x77\x17\xe4\x98\x42\xa9\x6a\xe8\x40\x97\x28\x89\xaf\x91\x37\x25\x29\x9f\x42\x64\xed\x41\x12\xcc\x99\x78\xcb\xdf\xa2\xc0\x87\x0f\xe0\xa9\xd9\xe3\xa9\x9a\x7b\x9a\x23\x9a\x1f\x45\x14\xd5\xc7\xb3\xf9\x19\x19\xbd\x26\x13\xea\xd5\x18\x90\x5a\xfd\xbc\x75\x21\x26\x9a\xfa\x81\x85\x6f\x01\xdb\xcc\x6c\x6f\x44\x93\x09\xcd\xd3\xf9\x79\xeb\xc2\xa8\xc4\x94\x99\x51\x09\x7f\xba\x2a\xb5\xcd\x4a\x32\x15\xba\x70\xae\x9a\x6e\x68\x80\x17\x65\x11\x14\x4a\xd1\x1c\x50\x4e\xc2\xd8\xab\x05\x24\x67\x4b\x92\x62\xd1\xd2\x80\xcc\x07\x24\xa3\xd0\x85\x96\x81\xca\x3c\x08\xb3\x69\x21\xed\xa6\x58\xa6\xf0\xdb\x9f\xa5\x59\x92\x9e\xe6\x24\x2f\x42\xe3\x39\xcf\xc3\x20\xa0\xb8\x32\x64\xeb\x5f\x8b\xc2\xf1\x15\x4d\xf3\xa3\x24\x32\x12\xff\x3c\xa3\x33\x06\xa7\x56\x33\x12\x33\x3f\x4d\xa2\xe8\x2c\x29\xa2\xc6\xd3\x9f\x25\x79\x9e\x4c\xc4\xb4\xcc\x69\xbe\x09\x6d\x0b\x8f\x2c\x4f\x26\xdf\xd2\x39\xce\x75\xc2\xc0\x83\xae\xb0\x2d\x0a\xe8\x3e\x8b\xc2\xf8\xfd\x8b\x38\xa7\xe9\x15\x89\xca\x85\xc8\x74\x1a\x85\x3e\x61\xb4\xfd\x96\xce\xa7\x24\x70\x74\xcc\x28\x73\x88\x30\x1d\x65\x92\x34\x1c\x85\xf1\xab\x24\xa0\x8e\xcc\x30\xce\x68\x9a\x57\x64\x5e\xa7\x64\x4a\xd2\x64\x16\x07\xa2\x00\xdf\x4b\x53\xf9\x71\x92\x4e\x5c\x98\xfb\x63\x66\xb0\xe6\xe5\x8c\x51\x75\x4e\x44\xaf\xd0\x90\x68\x95\xe1\x30\x3e\x3f\x67\xe5\x4d\x56\x0e\xa8\xff\x32\xf1\x49\x9e\xa4\x26\x03\xb5\x5b\x68\x29\x1a\x49\x57\x79\xa7\xe5\x48\xdc\x2e\x27\xf2\xde\x14\x53\x27\xec\x37\x8e\xa6\xa9\x24\x32\x1a\x07\xc7\x89\x3f\x33\xd3\x66\xf9\xb0\x58\x39\x1b\xa5\xc5\xa4\x59\x7a\x73\x95\x17\x13\x29\x57\x18\x56\xd7\xc3\x28\x48\x69\x6c\x4a\x3c\x1d\xa6\x34\x1b\x9f\xe6\x24\xcd\xcb\xc9\x47\x71\x60\x36\x4c\xae\x68\xf0\x87\x62\xc2\x1f\x8b\x09\x87\x49\x94\x59\xa0\x48\x40\x06\x91\x63\xa4\xaf\xd3\x30\x77\xe7\x04\x74\xd8\xcb\x73\xc6\x77\x5e\x0b\x1e\x3f\x46\xdd\xff\x01\xbc\xce\xee\x03\xf6\xeb\x91\xf8\xb1\xc7\x7e\xb4\xea\xb6\x08\x88\x7a\x26\x18\x5b\x0f\x93\x09\x0e\xfd\x85\x5d\x8d\x69\xdf\xb7\x2c\xb3\xc0\x2d\xd3\x94\x0e\xc3\x9b\xa2\x40\x4f\x93\x2c\x77\x24\x87\xc6\x02\x8c\x71\x23\xbd\x2e\xac\xc9\x9a\xe6\x4f\xd3\x50\x95\xc8\x65\xaa\xa2\x5c\x9e\x35\xf9\x17\xaf\xd4\x00\xd7\xb0\x75\x8b\xd2\x7c\xa5\xa6\x54\x89\xfc\xfd\xe1\x43\x51\x32\xb2\xc2\xfa\x4b\x56\x29\xa5\x97\xab\x46\x72\x95\x27\xeb\xe8\x04\x56\x98\x5e\x9b\xeb\xc0\xa6\xfa\xee\xd5\x0b\x23\x4f\x9f\xcd\x86\x43\x84\x62\x8d\x05\x66\xbd\x88\xdf\xa6\xc9\x28\xa5\x59\xe6\x50\x20\x37\xc9\x70\x78\x4a\xe3\xfc\x2c\x39\x24\xb9\x3f\xfe\x6e\xea\x54\x32\x61\x4e\x4f\xf3\x64\x3a\xa5\x2e\x0d\x97\xcd\xd2\x34\x19\x91\x9c\x5e\x8e\xc3\xd1\xb8\x38\x8c\x51\x18\xe3\x69\x14\xeb\x8b\xbd\x62\x6f\x9a\x3f\x3d\x43\x87\x0f\x88\xff\x5e\x74\x10\x8f\xb6\x4c\x6d\xce\x93\xaf\xc7\x61\x44\xc1\x0b\x37\x37\x4b\xb3\x1e\xb6\xd7\x9c\xce\xb2\x31\x07\x39\x88\x48\xfc\xfe\x65\x18\x53\xcf\xb6\x43\x70\x35\xe3\x1a\xa5\x12\xc4\x62\x81\x66\x46\x73\x4e\x6e\x4f\xb7\x58\x9e\x52\x73\x32\xb0\xf5\x51\x3e\x9b\x32\x22\x66\xd6\xe0\xcd\x32\x9a\x9e\x62\xaf\xc3\x78\xa4\x89\x7b\xbb\x16\xc6\x63\x9a\x86\xb9\x5e\x9f\x34\x16\x2d\xd6\xea\x07\x6b\xca\x3a\xd3\xfb\x78\x34\x25\x19\x15\x32\xac\xd7\x32\xb2\x83\x62\x0d\xea\x59\x4a\xe2\x6b\xf8\xa9\x75\xd3\x1e\x0e\x51\x2b\x58\x6a\xe0\x6b\xe0\x19\x07\x6b\xb7\x46\x63\x39\x89\x47\xc9\xa1\x34\xe7\xce\x11\x70\xed\xab\x0e\xdd\xde\xd9\xde\xab\x35\xc4\x4f\xdf\x6f\xb5\x5a\x2d\xf5\x73\x87\x3e\x22\x2d\x23\x77\x87\x98\xb9\xdb\x3b\x7b\xbb\x64\x47\xfd\x7c\xb0\xbb\xdb\x7a\x30\x50\x3f\x5b\x7b\x8f\x1e\x3e\x22\xea\x67\xb0\x1d\x3c\xf0\x87\xea\xe7\xee\xee\xee\x83\xdd\x6d\xf5\x93\x0e\x3b\x8f\x3a\x8f\xd4\xcf\x87\x84\x76\xb6\x35\xe4\xa1\x4f\x1f\xed\xe8\xba\x0f\x3a\x8f\x86\x06\x28\x12\x3c\x18\x92\x87\x06\x56\xb4\x43\x3b\x1a\x32\xfb\xf8\xb5\xb5\x0b\x83\x14\xca\xa8\xf5\xca\xb4\x66\x7c\xac\xf2\x5d\xc4\x13\xd6\x72\xbd\x01\x28\xc4\xad\x9b\x56\xab\x01\xad\x9b\xdd\x21\xfb\xfb\xe1\x03\xf6\x37\xc1\xef\x01\x7e\x1f\x0e\x2f\x1a\x10\x0a\x5b\x50\x6b\xd9\x61\x92\x82\x77\x00\x21\x3c\x86\x4e\x7b\xef\x00\xc2\x8d\x0d\xcb\xce\x9f\xe5\x5e\x7a\xee\x85\xb0\x05\xdb\x7b\x75\xf8\xe7\xb0\x07\x1f\xa0\x75\xd1\x00\x91\x58\x48\x0b\xd9\x2f\x7b\xbb\xa1\xa2\xad\x9d\x52\x53\xac\x17\x0f\x61\x03\x42\xb8\x0f\xed\xd6\x81\x8d\x42\x03\xd8\x7f\x16\x60\x45\x32\x51\x60\xd4\x80\x81\x09\x4f\xac\x29\x50\xae\x6b\x5f\xd5\x60\x03\xc6\xf4\xc6\x4b\xeb\xe2\xcb\x48\x7e\x19\xd4\xdd\x60\x59\x9e\x6f\x01\x84\x2e\xf8\xcd\x3c\x39\xcd\xd3\x30\x1e\xf1\x7d\x4d\x85\x3c\x97\x0c\x5f\xae\x98\x1e\x43\x07\x9e\x42\xad\xc5\x9a\xf5\x61\x1f\x7c\xb3\x09\x59\x58\xac\x60\x6e\xeb\x9e\x29\x8c\x97\xe5\x51\xb7\x96\x47\x66\xd9\xab\x65\x1c\x94\xcc\x72\xd4\xf0\x0d\x07\x2f\xf1\x94\x06\x1f\x21\x51\xa0\x3c\x50\xbb\x65\xa6\xc0\x92\xd0\x05\x9c\x30\x5f\xc4\xb9\xc7\x21\x9d\x87\x17\xcd\x6c\x36\xc8\x04\x79\xea\x0d\xb0\x48\x94\xcc\x72\x3e\x18\xe7\x2a\x89\x7d\x78\x65\x78\xf2\x04\x57\xe2\x5f\x23\xa7\x36\x2a\x4a\x3c\x74\x17\xe0\xf9\x3c\x47\x65\xd8\x5c\x28\x48\x9e\xcc\xf2\x12\xbd\xe5\x06\x89\xda\x7a\xe2\xbd\xd9\x2f\x11\x4a\xa8\x60\x3a\xa1\xfb\xa0\xce\x8a\x1a\xa2\x8a\x5c\x8b\xa8\x73\x3a\x2c\x4c\xd3\x09\x5b\x2a\xee\x43\xed\x86\x7d\x17\xa5\xe5\x8a\x6d\x1f\xce\x1f\xb6\x1a\xd0\xd9\x11\x7b\x56\xc6\x0a\xc2\x02\x23\x97\x48\xf3\x88\x41\x1a\x44\x89\xff\x5e\x40\xba\x0a\xb3\x19\x89\x9e\xd1\xc8\x6e\x77\x9a\x4c\xdf\xc4\xa5\x54\x3d\x55\xee\x43\xbb\xd5\x6a\xa9\x54\x4a\xd9\x62\x24\xb3\x0a\x07\x74\x30\x1b\xd9\x58\xe0\x26\x20\xb7\x9a\xed\xa2\x61\xc6\xcc\xc8\xd3\x3c\x08\x63\x2b\x63\x96\xd1\xe3\x28\xb9\x3e\x4c\xe2\x3c\x2d\x52\x86\x0c\xd8\xcc\xf6\x7d\x18\xe4\xe3\x7d\x78\x68\x4d\x10\xc6\x56\xa0\x99\x3c\x64\xa6\xb9\x5a\x64\x50\xe2\x8f\xbd\x8a\xdd\xb8\x06\x38\xb7\xe1\xec\x4d\xb2\xaa\x2d\xb2\x03\xab\x6c\xb3\x6a\x3f\xae\x50\xe7\xd6\x3d\x9d\x4a\x9c\x2b\xa7\x52\x3e\xef\xd3\x9b\x9c\xa4\x94\xf0\xe2\x5e\x61\xbe\xd4\xd0\x46\x34\x7f\x83\xe8\x58\x10\xdf\xd3\x79\x03\xe4\x01\xba\x32\x54\xee\xb1\x74\x08\xe3\x32\xc6\x75\xdb\x5c\x49\x93\x6b\xb4\xb4\x8e\xd2\x34\x49\xbd\xda\xeb\x44\x2c\xfd\xf9\x21\x2e\x03\xb2\xce\x94\x18\xfb\xb2\x01\xb5\xf5\x5a\xd9\x24\xe2\x1b\xbc\xe6\x1e\x8c\xde\x86\xb4\x36\xe8\x4b\x9b\xd9\xa5\x3a\x0e\x91\x65\x65\x24\x91\x9d\x54\xc9\x7e\x75\x54\xc9\xae\xc3\xdc\x1f\x97\xb6\x80\x7d\x92\x51\xa8\x69\x29\xac\xed\x5b\x5a\x8c\xe1\x87\x08\xc3\x63\x6d\xbc\xba\x36\x6c\xd1\xaf\x28\x63\xa6\x5f\xed\x94\xe6\x39\xb3\x02\xf3\x31\x35\xc4\x9b\xf7\x1b\x22\x66\xbf\xe7\x63\xc2\x5d\x61\xf8\x9e\x3b\x24\x43\xdc\x32\x87\xda\x41\x09\x2e\x83\xb9\xd1\x85\x75\x6f\x1d\x36\x8c\xcd\x90\x0d\x58\xaf\x43\x98\x41\x9c\xe4\x40\xa2\x28\xb9\xa6\x41\x73\xbd\x5c\xdb\x4f\xe2\x2c\x89\x68\xf3\x9a\xa4\xb1\x37\xc9\x46\xf5\x72\x11\x31\xa2\xc6\x6a\x40\x7e\x6e\x4b\x94\x70\xb3\x93\x35\xa0\xce\x2a\xdc\x98\x17\xb3\xf0\x93\xea\x0a\x92\x90\x64\x92\xcc\xd8\x5a\xe6\x2c\x0d\x27\xc6\x8a\x4a\xc3\xd8\x14\xce\x28\x95\x10\x62\x4a\x83\xec\x84\x2f\xd8\xf1\x90\x4a\xef\x84\x6d\xda\xe0\xf5\x6a\xb9\xf8\x31\x9a\xcd\xd3\x70\x82\xdb\x01\x9e\x59\x77\x51\x3d\xb9\x13\xf7\x8a\xe4\xe3\xe6\x84\xdc\x78\x46\xaa\x8d\x41\x63\x31\x02\x72\xfb\xae\x00\xc8\xd1\x95\x6a\x40\x6c\x20\x4c\x8a\x54\xd1\x1e\x0a\x5b\x1d\x5e\xab\x61\x6f\xc0\x55\xc0\xbf\x2d\xa5\x96\x53\x0c\x6a\x4e\xc8\xcd\x4b\xb1\x87\x5d\x35\x8e\x7c\xf3\x48\x1c\x37\x37\xb3\x79\xec\xf3\xd5\x55\x2f\xa5\xc4\xab\x2f\xe2\xd3\x41\x4a\xc9\xfb\xe2\x2a\x4e\xce\x14\x46\x6b\x65\x5e\xb6\xb2\x17\xaa\x0b\xc3\x26\x28\xe8\x0b\xb9\x46\x3c\xd4\x25\x98\xdd\xc5\x39\xfe\xa0\x0a\xd1\x22\x64\xb4\x2a\x5c\x90\xc5\xf6\x55\xd3\x8f\x48\x96\xb1\xf5\x76\x33\x4f\x46\xa3\x88\x7a\xeb\x68\xca\x6c\xf2\xea\x9b\x19\xab\xbf\xc9\xb4\x7c\xca\x28\xbe\x2e\x94\x2e\x3f\xe7\x53\xc9\xb5\x02\x42\x77\x6f\x61\x40\x52\x1b\xf6\x80\xa4\x45\xa8\xce\x6e\x9a\x96\x46\x05\x05\x0b\xab\x6c\xe7\xf0\xba\xe7\x9e\x94\x66\x4c\x54\xed\x21\x70\xce\xf7\x15\xa3\x65\xb2\x86\xb9\x83\x5c\x69\x03\x94\x40\x58\xad\xd1\x98\x59\x62\x81\xd5\x68\x25\x99\x6b\x16\x99\x07\xc8\x62\x0d\x90\x20\xcc\xfd\xb9\x88\x92\xd4\x6e\x55\xee\x70\x7b\xc6\x01\x5f\xa1\x71\xa8\x3a\xf4\x86\xc5\x3b\xe6\x19\xcd\x15\xf4\x32\x1d\xe5\x07\x4f\xaa\xef\xd2\xb5\xcd\x24\x36\xf9\xe5\xb6\xe1\x3e\xcf\xaf\x2f\x1e\xf0\x05\xa4\xa8\x1e\xf6\x32\x9a\x29\x9d\x24\x57\xcb\xd0\x54\x73\x9a\x83\x4e\x96\xa2\x60\x38\x29\x92\x55\xd6\x58\x89\xf8\x7a\xb3\xd1\xa6\xc0\x20\x14\x7b\xe3\x56\x2f\x19\xf6\x12\x93\x24\xc6\x9f\xca\x98\x6d\x40\x0d\xcd\xd9\x9a\x69\x8d\xd3\xab\xe2\x99\x38\xd6\x51\x3b\xef\xc5\x51\x56\xb9\x5e\xc9\x19\xa7\x79\xd8\x6a\x1e\x9d\x1e\x32\xf3\xeb\xfc\x85\x35\xb2\x6b\x56\xed\x32\xf1\x49\x10\x78\x02\x37\x93\x28\xd8\xd4\x38\xb9\xe6\xa3\xeb\x15\xb3\x9c\xa2\x8e\x67\x35\x73\x4e\x07\x5d\xbe\xb4\x64\x61\xf9\x05\x70\x74\x12\xe6\x9e\xa2\xd0\x8f\x98\xc8\xea\xec\xe3\x37\x75\x70\x7e\x5b\xa9\x08\x06\xd1\x6c\xe1\x26\x9d\xbd\xb2\x60\xa5\x8b\x0b\x0b\x36\xa6\xcf\x8a\x50\x96\x0c\x29\x83\xb3\x60\x44\x05\xa5\xf8\x8c\x8e\x3f\xe6\x0d\x9e\x38\x37\xe8\xf3\xd9\xc6\xfd\xcd\x9d\xc6\x5d\x0a\x9d\x7b\xe8\x17\x48\xf6\x8a\xa3\xac\x65\xa7\x30\xca\x82\x68\x1f\x31\xc8\x61\x1c\xe6\xdf\x44\xc9\xa0\x42\xbb\x30\xf5\x7a\x89\xde\x43\xa6\x7e\x65\xa9\x08\xdf\x4c\xb4\x46\x9d\xad\xf6\xcd\xe3\x8f\xb2\x98\x57\xe6\x32\x86\x31\x33\x19\x8f\x18\x3a\xae\x01\x35\x3f\x99\xce\x0b\x2c\x42\xe3\xbc\x28\xf7\x97\xc5\x83\xb8\x22\x0b\x70\x36\x76\x0d\xaf\xe1\xf0\xd7\x64\x8d\xc9\xf3\x1c\x6c\x87\xb3\x5b\x83\x93\xa5\xbc\x53\xaf\x09\x2e\x29\x35\x25\x59\x4e\x05\x88\xef\x53\x32\x9d\x52\x5b\x20\x24\xf6\x52\xae\xcc\xd6\xcd\xba\x66\xf3\xdc\xd3\xd5\x24\x8f\x21\x42\x58\xa9\xd6\x70\x35\x5c\x49\xd3\xe5\x75\x94\x4c\x09\xcf\xae\x66\x98\x1d\x87\x29\x1d\x26\x37\xd6\x76\x6e\x09\x32\x8e\x40\x90\x5c\xc7\x8b\x87\x4c\x36\x81\x19\xcd\xc1\x2c\xcf\xd9\x7a\xbb\x0b\x1d\x97\x7d\x6f\x92\x28\x0d\x47\xe3\xfc\x30\x0a\xfd\xf7\x05\x3a\x5d\x16\xe8\xb2\x70\xc0\xca\x4c\x70\x5b\xf6\x5f\x59\xd4\x4d\x71\x27\x61\x42\xe3\xd9\xf2\x8e\x7e\x19\xfc\x6f\xcb\x3b\x27\xf6\x78\xbd\x0c\xe3\xd9\x92\xd1\x22\xb3\x1b\x9f\xe1\xf2\x51\x83\xd5\x85\xf6\xb2\xd1\x62\x0a\xf2\x8c\xde\xe4\x6c\xed\xf3\x1d\x33\xde\xf1\x50\x5b\xcc\x88\x9f\x7b\xe0\x8a\x73\x11\xd3\x4a\x4b\xe7\x22\x4d\x8b\xf7\x74\xee\xe0\xdb\xa2\x9e\x51\x2e\x3c\xc4\xcf\xc3\x2b\x2a\xbc\x78\xe0\x1e\xd7\x8d\xab\x2b\x1d\x6c\xfc\x3d\x9d\xf7\x93\xeb\x98\x35\x23\x3a\xd1\xc0\xa3\x73\x43\x6e\x4b\x38\x4e\x53\x9a\x2d\x33\x82\x3e\x37\x92\x6f\x59\x9b\x77\xc2\x72\x36\x5d\x82\xe2\xbd\x6b\x92\xbd\x4a\xe2\x00\x0f\x93\xbf\xa5\xf3\x37\x71\xc4\xfd\x61\x58\x59\xe7\xf4\xcd\x37\x33\x0b\x93\xe6\xed\x02\x84\x0c\x1d\xb9\x7c\x6c\xef\x32\x1e\x36\xe0\x65\x03\x52\x41\x44\x50\x5b\x05\x7c\x0d\xaa\xce\xac\x97\xb6\xe9\x6b\x57\x79\x34\x21\x6b\xc2\x24\xf2\x8b\x2e\xf4\xcd\x62\x49\x14\x0b\xcf\x5d\xb8\xbe\x52\x83\xb3\x69\x40\x70\xe6\x58\xde\x22\x2f\xfa\xe9\x4d\xd2\x38\x58\xa9\x3d\x1a\x07\xab\x34\x86\xb9\x49\xec\xd5\x84\x59\x59\x0d\x9b\x77\xc0\xb8\x98\x20\x5d\xf6\x3e\xb2\x19\xcd\x20\x01\xc9\x49\x89\x45\xd0\xd5\x4c\xf8\x57\x70\x6f\x2d\x2c\xd7\xc4\x91\x6b\x00\x7e\xa7\x71\xb0\x82\x8d\x97\xd1\x34\x3f\x49\xae\x2d\xdd\x97\x26\xd7\xe6\xc6\xb5\xd8\x64\x4f\x85\xdb\x3b\xbf\x5a\x63\x6f\xa9\x23\x00\xa5\x49\x7c\xbc\xb7\x2a\x28\xe0\xd5\x82\xf0\xaa\x56\x76\x38\x48\xf9\xe1\x0c\x09\x63\x9a\x32\x23\x97\xc6\xc1\xe1\x38\x8c\x02\x6c\xdd\xe1\xb8\xc4\xcf\xef\x74\xa6\x30\x89\xd2\xe4\xba\xaa\x73\xc9\x94\xda\xfb\xf2\xdc\xd1\xb2\x01\x43\xd3\xec\xaf\xb6\x63\x8d\xcd\x03\x75\x50\x19\x84\x57\xb6\xd7\x0e\x77\xed\xd4\x2e\x9c\x46\xba\x36\x8e\xee\x19\xa9\x0b\xf7\xfa\x65\x2f\xe4\x7d\xe7\x0c\x88\x84\x2d\xd7\x14\x0e\x52\x0a\x03\x43\x6e\x21\xf3\x0a\xcd\xe4\x3a\xa6\x69\x5f\x8e\x89\x38\x6b\xf8\x7d\x48\xaf\x4d\x67\x2b\x7d\xc1\xa1\xb2\xaa\x51\x1c\x3d\x57\xbb\x76\xd5\x65\xfe\xa9\x07\xa5\xbd\x88\x12\x84\x6a\x7e\xa9\xd8\xc2\xc0\x55\xb4\x5c\xd0\xac\x52\x96\x9f\x80\xae\x5a\x70\x13\x0f\x5a\x37\x6b\xf2\x28\x02\x7f\xd6\x0f\x3e\x72\x2f\xad\xd4\x64\x46\xf3\x5e\x9e\xa7\xe1\x60\x96\x53\xaf\x96\x13\xa6\x21\xe8\x4d\xad\x61\xfb\xb3\xc9\x5d\xe1\x23\x45\xb4\x55\xe9\x55\xa8\xe9\xee\xa2\x2c\xe4\x24\x8a\x29\x8e\x2e\x90\xae\xd6\xf4\xc6\xf5\x47\xa0\xaa\x2b\xbb\xb1\xe5\xe7\x4b\x9b\x4c\xe1\x2f\xec\x6a\x25\xe2\xba\x81\xba\xcb\x15\x4e\x69\xa2\x3b\xe0\x5e\xae\x5c\x81\xbb\x2c\xb7\x1a\xa9\xcb\x60\x2d\x3f\x3f\x43\x6b\xde\x01\x57\x4b\xd9\x3a\xb1\x64\x2b\x81\xd5\x10\x34\x61\xb9\x14\x75\xd1\xab\x4f\xf9\x08\x36\x49\x9e\x13\x7f\x7c\x96\xf4\x93\x89\x32\x3b\x1b\x76\x65\x13\xe0\x18\x27\xc9\x8f\xe9\x6e\xa1\xa6\xbb\xc7\xbc\xd0\x8a\x9d\x2e\x40\x34\xeb\x48\x4b\x64\x01\x7e\xb2\x48\xcd\x55\x6f\x11\x76\x9b\x8b\x6b\xda\x9a\x84\xcc\xf2\x44\xdc\x83\xaf\x35\xa0\x96\x0c\x87\x2b\xd7\x22\xd3\x30\x27\x51\xf8\x17\x7a\x87\x8a\xd9\x94\x46\x91\x3f\xa6\xb8\x22\xac\xe1\xc1\xaa\xbb\x5a\x4e\x06\x2f\x98\x86\x2b\xb8\xd7\xaa\x7c\x12\x04\x68\xcd\x33\x12\xd0\x98\xa6\x9e\x63\xf3\xd6\x9c\x35\xf9\xf6\x7b\xe5\x1e\x26\x4e\xdb\xb7\x85\xdd\x96\x65\x2d\x96\xf6\x16\x2b\x1a\x74\x6c\xa7\x55\xb7\x57\x64\xc3\x12\x57\x49\x84\xec\xcb\x1b\xca\x4a\x64\x93\xf5\x1d\xb8\xbe\x50\xb3\xc8\x57\x46\x36\x6a\xff\xaa\xba\xdc\x36\x95\x3e\xb0\xe5\xab\xb6\xcd\x52\x5a\x71\x9b\xc9\x85\x4d\xd9\x65\x79\x29\x75\x0a\x10\x6c\x5d\x43\xd2\xd3\xf0\x2f\x14\x4f\x10\x97\xcf\x90\x78\x8c\xb7\x50\x43\x94\x1b\x77\xb4\x20\x00\x18\x1e\x6a\xea\xd4\xb8\xe4\xa7\x86\x39\xca\xbc\xf6\xca\x46\x9b\x30\xb5\x4a\x0d\xd3\xf2\x14\xeb\xeb\xfb\xaf\x72\x58\xcc\x1b\xb1\x4d\xe3\x57\x51\xaf\x2e\xd0\x5b\x06\x54\x5c\x7c\xe0\xe5\x88\xf0\x2f\xd4\x1f\x93\x78\x44\x83\xc5\xd2\x20\xd6\x3b\x26\x91\xd4\x19\xe6\x6d\x55\x2b\x13\x81\xa3\x6b\x06\x17\x1d\xd3\x57\xaf\x9b\xf2\xab\xc7\x0d\x70\xd7\x7c\xdf\xa8\xb2\x22\x1a\xa5\xc6\x2b\x9c\xe5\x59\x9b\xfa\x96\x73\x53\x7e\x2d\xf9\xe7\x3b\x9c\xe6\x59\xd5\xf2\x5d\xe6\x66\x31\xc9\x44\x1f\xfd\x02\x1a\xe5\x29\x79\x31\xba\x25\x8f\xee\x55\x97\x8a\x97\x56\x6f\xd5\x7d\x0f\x09\x6e\xd9\x92\x71\x31\x02\x31\xbd\xd6\x96\x4d\xc3\xda\x39\xbb\xc9\xcb\x58\x28\xdd\x2b\xb7\x30\x58\xc2\x41\x55\x21\xe5\x8c\x56\x91\xcf\x5b\x76\x32\x1c\xc3\x8d\x9b\x8b\x45\x0e\x96\x4b\x46\xf7\xa6\xa1\x3a\x3a\xaa\x1f\xd8\x00\x4b\x36\x66\x69\xf2\xf8\xac\xcd\x2d\xf1\x49\x11\x7a\x45\x1e\xcd\x98\x67\xe0\x62\x9d\x2e\x8e\x84\x2a\xfd\xdf\xd0\x85\x8b\x66\x19\x19\xe1\x4e\xd2\x1f\x93\x19\x04\x61\x80\x2e\x56\x53\x82\x5e\x5b\x14\xfe\x84\x40\xfe\xa4\x2e\x2e\x43\x18\xc3\x9f\x2a\x96\xd8\x5e\xfd\x4f\xcd\x1f\x62\xc3\xa7\x4b\x02\xdf\xe8\x42\xed\xcc\x05\x2c\x4e\xae\x41\x79\xbe\xe6\x09\xfc\x29\x4f\x67\xf4\x4f\x30\x98\xe5\x80\xdc\x18\xc6\x23\xee\xeb\x86\xa6\x50\xf3\x5d\x06\xdb\xcd\x16\x54\xb4\x10\xe6\x70\x1d\x46\x91\x04\x88\xf0\xd0\x18\xf9\x53\xd3\xa8\x61\x7b\x88\xf1\xea\x06\x7b\xa9\xc3\x52\x75\x17\x49\xef\x94\x0f\x8b\x87\x84\x38\x04\x16\x87\xde\xaa\xad\xa9\xc2\xce\x7f\x69\xbf\xdc\xe1\xa0\xc0\xd9\xc2\x9c\xbd\x46\x34\xd7\x42\x5a\x47\xef\xe8\x88\x4c\x33\xbc\xce\xa2\x2a\x34\xc3\xec\x50\xa6\x37\x20\xcc\x4e\x98\xd6\x66\x5d\xe0\x5c\x60\xd4\xe9\x42\x6d\x90\x24\x11\x25\x71\x0d\x9e\xc2\x3d\x9d\xb3\x6f\x40\x63\xd5\xb0\x28\xc2\xa9\xd9\x07\xa6\xf7\x04\x78\xa7\x23\x44\x49\x56\x6f\xcb\x42\xc9\x96\xb8\xb8\x9d\x6f\xe9\x7e\x6e\x52\x31\x1e\xaa\x15\x76\xa8\xa2\x84\x04\xbd\x20\x28\xf8\x55\x12\x96\xd2\xc0\x60\x50\x78\xe9\xc6\xdc\xa3\x4a\x6d\x57\xbb\x05\x01\x55\x3a\x3b\x75\x6f\xbd\xb9\xb5\x0e\x1b\x80\x00\x61\x03\x6a\x5b\x35\xf9\xab\x7c\xb4\x63\x88\x96\x08\xfd\xc4\xc8\x24\xb1\x72\xb9\x96\x8a\xb6\xbc\xf3\x5a\x73\x0b\x81\x66\x1a\xbe\xdd\xda\x85\xd1\x9b\x05\x67\x4a\x92\x7b\x29\xdf\x25\x3a\x24\x31\x93\x56\x46\x24\x20\x32\xbe\x0c\x13\x98\x64\x96\x03\x61\x36\xdb\x24\x89\x7f\x77\x0a\x49\x0a\x27\x1c\x95\xdf\x9d\x02\x8d\xaf\xc2\x34\x89\xad\x3d\x24\x70\x3a\x46\x56\xf9\x9f\xb8\xe6\xfc\x6a\xc7\x13\x97\x01\x85\x0a\x9c\xcd\x7a\x68\xae\x29\x14\xd6\x9b\x7c\xcd\x73\x1d\x06\x74\x93\xd5\xfb\xf1\x1a\x7d\xb3\x95\x2f\xa8\x69\x44\x60\x16\xdc\x87\x0e\x6c\xc0\xfa\xf4\xe6\xe0\x76\x1d\x36\x2c\xa6\xf4\x24\x38\x7e\xff\x72\x45\x80\x12\x58\xbd\x0a\x1a\xea\xe1\x27\x10\x84\x57\x3f\x8e\x69\x38\x1a\xe7\x6e\x68\x3c\x4f\x83\xab\x74\xa1\x90\x12\x51\x79\xb8\x8e\xb7\x57\x6d\x85\x62\xed\x48\xe2\x59\x02\xea\x84\xed\x8e\x30\x4c\x25\x9c\x8c\xc6\xc1\x33\x3c\x7a\x2b\x9c\x2f\x30\xb8\xfc\x4c\xae\x01\xd3\xc4\xf0\x89\x92\x07\x75\x30\xa2\xb9\xae\xa9\xf3\xa7\x09\x1b\x6a\x11\x35\x85\x29\xa8\x13\x72\xfd\x6c\x9e\xd3\xc3\x24\x49\x83\xcc\xa3\x57\x1c\xb9\x82\x55\xc3\x43\x7a\x68\xea\xc8\x14\xbc\x24\x2e\xcb\x67\x05\xef\x8c\x7b\xd3\x24\xab\x5b\x63\x50\x3c\x74\x62\xdd\xe3\xe7\x3f\x46\x5f\x0c\x28\xd2\xa9\x91\x5e\x35\x93\x2b\x9a\xa6\x61\x40\xcf\x98\x7a\xfb\xf0\x01\xe8\x15\x6a\xba\xa2\x22\xe3\xee\x7a\xfa\x3c\xda\xf6\xd5\x43\x02\x28\x6a\xf3\x36\x0f\x4a\x25\x0a\x1e\x80\x05\xb0\xb3\xe9\x42\xa0\x72\x08\x57\x02\x78\x3d\xa6\x34\x72\x80\x2b\x54\xb8\x35\x14\x8a\xc5\x1a\xaf\x92\x2b\x5a\xc9\x18\xd0\x95\x68\x15\x58\xe4\x57\xc5\x02\x02\xd7\x0d\x9b\x72\x8b\x18\xa3\x40\x07\x1a\xfb\x49\x40\xd1\x04\x6e\x80\x3f\x2e\x1d\x39\xf2\x55\x8e\xb8\x81\xed\x3a\xe0\xf6\x79\x68\x8a\xce\xee\x6e\xbd\x34\x10\x42\xa7\xa2\x4d\x8d\xc7\x16\x45\x8f\x65\x01\xe0\x09\xb4\x3b\x0f\xca\xd5\x19\x68\x96\x63\xd7\xd1\xd0\xfc\xb1\xd3\xf5\xa8\x30\x69\x14\x11\x6d\xed\x38\x9a\x5a\x15\xd3\xc7\x88\xa9\xe3\x04\xbf\x02\x2b\x28\x39\x2c\x3b\xb0\xb3\x28\xe1\xc6\x4f\x91\x83\x65\x97\x45\xc4\xc0\xfb\xe6\xb0\x05\x1f\x38\xac\x27\xa0\x62\xa1\x54\x15\x7e\x28\x0b\x7f\x0d\xad\x9b\xed\xe3\x62\xf1\x62\xb4\x19\x87\x10\x95\xf9\xac\xc0\x42\xc8\x41\x3a\x30\x40\x91\x78\x82\x83\xbf\xee\xc2\xb6\xdd\xf6\x34\xc9\x9a\x37\xb0\x59\xd6\x09\x2c\x63\xee\xca\xc0\x50\x55\x24\x27\xd0\x2d\xc7\x0d\x33\x5d\xd6\x3a\x3b\xb5\xf2\xe0\x1a\x2e\x1a\xad\x32\xfd\x11\x2c\x33\xb3\xdb\x85\xaa\xca\x34\xb2\x5c\x3c\xaa\xeb\x6f\xaf\x50\xbf\xb3\xa0\xfe\xee\x0a\xf5\xb7\xab\xf8\xbb\x5c\xb5\xba\xa1\x56\xad\x2c\x76\x98\xf1\xd3\x39\x33\xdb\xf8\xe8\x6c\x40\xad\x21\x7f\xe1\x2d\x9c\x8b\x1f\xd2\x42\x3d\x1c\x7e\x74\x23\xc4\x65\xf9\xc1\x42\x75\x76\x5b\xe6\x1c\x1d\x8f\xe2\x0b\x72\xce\x72\x06\x50\x93\x42\xe7\xa3\xc6\x5f\x55\xdf\xf9\xa8\xe1\x57\xd5\xf7\x3e\x6a\xf4\x55\xf5\xed\xaa\xb1\x59\x28\x2f\xb5\x12\xc0\x0d\x01\xd2\x91\x51\x3b\x70\x15\xb7\x10\x84\xa7\xb0\x03\xfb\x2e\x2a\x57\x55\xc7\x81\xbb\x53\xe9\x9b\xd5\x51\x63\xc5\xa7\x6c\x19\xfd\xe1\x43\x05\x4e\x5f\x5f\x17\xaf\x39\xac\xc0\xb8\x3a\x20\x49\x91\x71\xef\xce\x9f\x58\x63\x63\xc3\x51\xba\x98\xb8\xea\x90\xaa\x21\xe4\x74\x31\x25\xfa\xc0\x92\xe8\x57\x1f\xd1\x75\x19\x9e\xe5\xd3\x3b\xbe\x62\x77\x1e\x3b\x07\xd6\x93\x5c\xf7\x35\x6c\xd7\x15\xeb\xa9\xb4\x9f\xb6\x61\x5f\xfc\xaa\xc3\x26\x6c\x3b\xe4\xee\xf3\x70\x58\x15\xf7\xba\xf1\xab\x4d\x6a\xb0\x8f\x74\x5f\x99\xf0\xc6\xc4\x77\x6e\xc4\x8b\xb3\x6c\x3b\xd1\xd1\x8a\x5c\xec\xd0\xa2\x4c\xd3\x77\x7c\xc5\x41\x79\xc5\xf8\x88\x5f\xd4\x6f\x0e\xd3\x64\xc2\x56\xcc\x87\x49\x40\x85\x2b\x37\xcf\xe1\x3b\xae\x15\xd7\xff\xad\x45\x58\xc5\xf2\x2d\x1b\x87\xc3\xbc\x01\x13\x8a\x06\x6c\x9e\x46\x18\x06\xfd\xcb\x2e\x82\x94\x3e\xa5\x57\xd2\xb5\xf3\x1e\xf7\x3d\x77\x1a\x6e\x4f\x61\x43\x15\x74\x16\xd8\x67\x80\xae\xc7\xa1\x3f\x5e\x08\x87\xc3\x52\x45\x37\xa1\x5d\x59\x6c\xbf\xe0\x09\x2f\x3f\x4a\x44\xb5\xcb\xeb\xab\xd3\x17\x47\x55\x37\x04\x55\x47\xcd\xd9\x0d\x9e\x42\x4b\x49\x0e\x26\xed\xc0\x53\x68\xab\xa4\x72\xab\xe5\xeb\x81\x1f\xb1\x48\xac\x9a\xc4\x16\x82\xeb\xbf\x79\x85\x9a\x88\x1f\x89\x2c\x19\xca\x80\xe6\x24\x8c\xe0\x31\xb4\x2a\x86\x71\x6f\xa7\x62\xf8\xf6\x76\x3f\xc7\xb2\xd5\x40\x05\xcb\xf4\x69\x94\x93\x3f\xc2\x93\x2f\x82\x8f\x11\x3e\x92\x49\x10\x6f\x16\xbf\x7e\x4b\xe7\x72\x86\x36\xb7\x9a\x51\xbd\xd0\xab\x26\xfb\xc6\x8b\x3c\xb4\x8b\x30\xe1\xe3\x45\xd8\x37\x5e\xa4\xbd\x57\x00\x93\xe0\xe6\x2d\xb6\xf8\x81\x03\xfd\x80\x15\x0f\x5c\x6b\x86\x4e\xc5\x9a\x81\x41\xf9\xba\x5b\xa8\x57\x58\x00\xea\xd5\xab\x11\x7f\xcc\x05\xa8\x6b\xe2\xa7\x81\xa8\xd1\xf0\xb6\x3b\x4c\x57\xb3\xa2\x8f\x1f\x43\xa7\x5e\x57\x53\x67\x69\xf3\xd0\x4c\x56\x7b\xe1\x34\x5a\xe0\xe2\xef\x5e\x6f\x9b\x57\x32\x16\x4e\x01\xf6\x06\x57\x41\x43\x97\x36\xa4\x57\xa0\x6c\x51\x4b\x76\xb5\x44\x16\x27\x66\x77\xcb\x06\x35\x8c\x40\xb6\x76\x19\x87\xc5\x60\x8e\x91\x05\x2b\x89\xc5\x32\x40\x9d\xe7\x72\x84\x26\xc9\x15\xad\x35\xd4\x36\x4e\x71\xe3\x04\xeb\xc8\xa8\x75\xa5\xf8\xae\x15\x30\x6d\x07\xec\xd9\xb4\x30\x3e\xab\x74\x7d\xb5\x4e\x29\x44\x86\xc3\xbb\xf6\x6e\x69\x55\xec\xc4\x6c\xea\xa8\xb2\x6c\x58\xc0\x38\xad\xb0\x87\x69\x51\xcd\x5b\xed\x90\x8c\x9c\xce\xb5\xdb\x67\xe5\x72\x45\x50\x39\xa0\x56\xe9\x0f\x1f\xa0\xb0\xc5\xe0\xcc\x36\xd6\x91\x1f\x25\x52\x9f\x9b\x06\x77\x15\x74\xd6\x43\x79\x41\x3e\x89\xbf\x67\x2d\x7c\x3c\x82\x79\x32\xf3\xc7\xd2\x11\xfe\xcb\x61\x79\xc6\x9a\xe1\x81\x14\x3e\x0d\x55\x21\x0f\x5f\x18\x53\xb9\x1f\xbc\x3a\xa2\xee\x33\x8d\x80\x66\x79\x9a\xcc\xab\xcf\x84\x8c\x78\x90\xae\xa8\x7d\x15\x59\x97\x78\xf9\x47\xc6\xe4\x51\xc9\x63\x15\x6c\xd1\x3e\x76\xbf\x2d\x40\x2d\x9d\xb0\xc8\x12\xea\x8e\xb3\xf4\x4b\xfe\xfa\x6b\xdb\x0b\x90\xbb\xe8\xbc\x4e\x02\x5a\x3a\xfe\x2d\x17\x11\x57\x3c\x2b\x3d\x79\xaa\xaf\xf1\xcb\xe8\x1d\x1a\x49\xe1\x93\x41\xe3\xc0\x3a\xe3\x34\xbd\x39\x4a\x18\x29\x37\x0f\xbc\x1b\x20\x22\x60\x98\x90\x16\xa3\x51\xbe\x51\xb0\x2a\x46\xca\xbf\xd3\x44\x09\x7d\xa4\x64\x38\x44\xac\x8c\x0e\x53\x5d\x06\xa1\xe4\x2b\x05\x65\x57\x51\xfe\x6d\x7e\x92\x5c\x7b\x61\xf9\x68\xb9\x2a\x3e\x81\xba\x41\xed\x64\x41\xed\x89\x6f\xc4\xfd\x2d\xd1\xd1\x8e\x09\xdc\x3e\x28\x52\x59\xdc\x2f\x66\x3f\xe6\xc2\x45\x63\xbe\x84\xb6\xdc\x3f\xc4\xc2\x29\xcc\xf8\x15\xca\xc0\x3c\xf1\xc3\xbb\x0c\x45\xda\x52\x2b\x12\xb6\x91\xaa\xc2\x8b\x54\x04\x95\xd4\xc1\x5c\xda\xc5\x6b\x44\x18\x9f\x65\x73\xd3\x9e\x69\x78\x0e\x06\x5c\xb9\x87\x7b\x81\xae\x11\xc2\x7c\xb3\xa6\xb9\x3f\xae\x61\xcb\xdd\x19\x4d\x72\x2b\x72\x64\x09\x63\x19\xfd\x45\x43\x30\x8d\x49\x7e\xbd\x44\xe7\x59\x21\x82\x54\xbc\x64\x56\x6a\xb3\x10\x49\x19\x36\x85\x07\x93\x11\x6d\x59\x63\x86\x70\xbb\x8e\xc0\x3b\x77\x08\xd3\xa9\x7c\x6c\x1a\xa0\xc7\x74\xd1\x59\xbe\x01\x2f\x9b\x62\x50\xbd\x34\xb9\x6e\x80\x74\xf7\xb9\x0b\x64\x1d\x14\x54\x05\x99\x2e\x8d\x9c\x1e\x59\xa4\xdc\x82\x91\x2d\xf2\xc4\x8a\xe3\xb7\xd2\x38\xda\xdc\x62\x7f\x2b\x13\xa4\x3c\xd2\xaa\x83\x0d\xe5\x08\x65\xb0\x1c\x77\x4c\x40\x0f\x95\x02\x3d\x4c\x6f\x93\x8a\x52\x9c\x29\xca\x6e\x29\xca\xa9\x4b\x77\xac\x3a\x30\x0a\x96\xed\xf3\xbe\x1b\xfe\x78\x61\x36\x6d\x40\x36\x9b\xe2\x81\x2a\xa7\xde\x91\x79\x61\x16\xef\x5f\xb2\x5a\x8f\xab\x06\x8d\xd3\xd3\x35\x68\x0b\x6e\x62\x96\xc6\xcb\xe1\xd9\xa4\xd6\x8a\xd8\xc2\x86\x39\x7c\x4f\xcc\xf1\x2b\x89\x42\x45\x08\xd8\xa2\x16\xe0\x60\xbb\xc0\xfe\x2d\x28\x35\xd1\xca\xa2\x46\x16\xeb\x03\xed\x96\xa3\xcb\x16\x28\x68\x41\x69\x15\x85\xe6\xde\x82\x31\x59\x89\x0d\x0a\xbd\x5d\xe0\xb3\xb7\x88\x61\xde\x92\x51\xc1\x83\x66\x4a\x46\xf4\x30\x99\x69\x6c\x0c\x46\x65\xec\xa5\x0b\xc0\x7d\xf0\xec\xb6\x96\x34\x76\x96\xf0\x20\xf4\x55\xe1\x81\x74\x1b\x9b\x2b\x73\xfc\x59\xa2\x02\xd8\x2f\x07\x6b\x48\xf5\xe6\x2a\x42\x55\xb6\xdd\x4c\xff\x56\x6d\xde\xf1\xe0\xc6\x5c\x39\x1b\x47\x6d\xc5\x40\x6e\x4d\x3b\x22\x24\x33\xf6\xb8\x66\x2b\xc7\x94\x96\x76\xa0\x09\x5e\x46\x75\xeb\x2e\x7c\xcc\xc7\x11\x8d\xb9\x6a\xb7\xb8\x7f\xb8\x5d\x9c\x96\x5d\xd1\xad\x5d\x1e\x89\xf7\x34\x76\x46\xb4\xec\x45\x58\x3b\x84\xa3\x1c\x6c\x5b\x37\x05\x8b\xc2\x27\x65\x34\x3f\x0b\x27\x34\x99\xe5\xcb\x42\x24\x85\x71\x4c\xd3\xef\x59\x3b\x96\x7b\xe0\x12\x6b\x49\xd7\xaa\x74\x8d\xe2\x5d\x64\x34\x92\x3a\xc2\xec\xb4\x98\x45\x5a\x8d\xd2\x8b\x4a\xa2\x65\x11\x8f\x5b\x43\xa9\xa0\x93\x71\xbc\x60\x94\xc5\x4d\x3c\xb3\x43\xac\x18\xb3\xee\xd0\xbf\x80\x43\x52\xf7\x45\xdf\x35\xc0\xcf\x1a\xe0\x8f\x1b\xe0\x27\x01\x6d\x40\xc4\x26\x7b\x7f\x7c\x89\x5e\x67\x0d\x6d\xf2\x59\x2c\xeb\x64\xc9\x32\xba\x38\x2f\x2c\x1a\x77\xe7\xc4\xb1\x94\x2f\x8b\xe1\xef\x2a\x79\xb3\x10\x4c\xf1\xd6\x69\x2a\xa3\x09\xaa\x54\xb9\xdb\x9c\x3e\x8a\x03\x47\x09\xe4\x40\x61\x87\x63\x1e\x0f\x92\xcf\xff\x29\x9e\xaa\x9b\x05\x32\x9a\xa3\xfd\xee\x61\xed\x62\xa1\x92\x1d\x30\x2f\x96\xb0\x8c\x7c\xb3\x1b\x8d\x22\xd6\x6e\x73\x6c\xb9\x04\x7e\x39\xe1\xd2\xb7\x48\xab\xad\xcf\x85\x71\xf6\xab\xc4\x12\x2b\x45\xf1\x0a\x0a\xd9\xe3\x2e\x13\x50\xfb\x21\xfd\xa1\xe4\xd9\xab\x01\xf2\xdb\x80\x87\xf2\x81\x93\x20\xb9\x8e\x9f\x3b\x96\xf4\xbe\xa3\x80\xa9\x0b\x0c\x57\xf6\x6a\x88\x1e\x46\x11\xed\x1f\xbd\x3d\x39\x3a\xec\x9d\x1d\xf5\xf1\x35\x46\x74\x1b\x1f\x50\xe0\x0b\xf7\x00\xb2\x24\x89\x9b\xf0\x36\xa2\x6c\x8a\x9a\x65\x14\x0a\xf0\xcc\x27\x58\x18\xc0\x38\xcb\x29\x09\xa4\x97\xf9\x02\x0f\x73\x24\xcd\x22\x60\xce\x3e\xae\x48\xb7\xc2\xc3\x30\x0e\xc2\x99\x25\x6c\x17\xdd\x0a\x18\xce\xf4\x05\x41\x01\x9f\xcf\xa7\x34\xcd\xe9\x4d\xfe\x32\x8c\xdf\xbb\x50\x29\xbc\xf9\xa3\xe7\x30\xe7\xde\x41\xe9\x56\xbc\xf0\x77\xe6\x1d\x07\x02\x63\xd9\x1e\xb0\xfa\xf2\x99\x35\x18\xd0\x61\x92\x52\x33\x7c\x32\x8d\xd9\xb0\xfb\xf8\xee\xb0\xe3\xde\xbc\xde\x6e\xa8\xe8\x84\x67\xbf\x40\xf4\x91\xb6\x9e\x01\xfb\xf7\x24\x0a\x03\xfe\xba\x8e\x70\xfb\xb6\x87\xcc\xe1\xd9\xfe\x79\x08\x75\xa5\x1a\x56\x0e\xe7\x9f\x8b\x5e\xe5\x3e\x79\x05\x9f\xf6\x8f\xa3\x5b\x4a\x47\x61\x96\xd3\x94\x8d\xc7\x2b\x36\xe7\x14\x98\x2a\xa5\x23\x7a\xd3\x90\xa3\xaf\x5e\x8d\x5a\x6d\x7f\x0a\x35\x07\x07\xfa\x22\x28\xbd\x66\xe2\x6a\xbb\xb2\xbd\x8a\xc9\x63\x41\x4c\x59\xf9\x64\xaf\x6c\x7f\xb1\xe2\x0d\xe8\x32\x4a\x28\x40\xab\xf5\xbd\x9c\xeb\x6e\xc3\x80\xeb\xb4\x21\x56\xe8\xe9\xe2\xfd\xba\x31\xc9\x4e\x8d\xfb\x2f\x8b\xc3\x09\x96\x2e\x50\x99\xb5\x17\x44\x2d\xff\x84\x16\x54\xc2\x19\xde\x55\x5b\x10\x95\x73\x71\x23\x6e\xe8\x76\xc5\xea\xc8\xeb\xbc\x62\x2f\x5a\x10\xe4\xb3\x02\xf3\x5e\x14\x55\x83\x15\xf1\x8b\x0a\xf1\xe6\x4a\x1c\xe4\x9e\x23\xa4\xcd\xe9\xcc\x45\x30\xcc\xf4\x44\xab\xc2\x71\x3f\xc6\xbd\x65\xe0\x0c\x72\x69\xde\x6f\x13\x7b\xb7\xa5\xd8\x3b\x22\x60\x93\x88\xb4\xe3\x2c\x53\x2f\x46\x8a\x72\x6c\x8b\x19\x4b\x52\xa7\xc5\x6c\xad\x78\xcb\xf7\x9d\x16\xf5\xcf\x69\xee\xe1\x8e\x2f\xcd\x66\x91\xb2\x8e\xe9\x15\x89\x66\x24\xa7\x8c\x9e\x96\x69\xae\x0f\x5f\x70\xdb\x12\x2b\xb1\x6e\x23\x95\x2b\x57\x97\x4e\xb3\x4f\x3f\x8c\x54\xb9\x23\xb4\x1a\xfc\xf6\x32\xf8\x25\x2a\x18\xb0\xf5\xb6\x40\x79\xc5\xac\x77\x0c\xca\x85\x4b\x3a\x94\x0f\xb7\x3c\xa1\xb2\xa2\x61\xe9\x46\xc3\xec\x6c\x1c\xa6\xc1\x4b\x7a\x45\xa3\x53\x5c\xbd\xe5\x78\x83\xa6\xc0\x13\x12\xa4\x63\xc5\x2d\x30\xe1\x0d\x95\x8f\x0c\x96\xb4\x7f\x4f\x53\x74\x85\xf6\x8c\xcd\x27\x1d\x8a\x4c\x31\x80\x9d\x5b\x6b\x80\x86\x5d\x2c\x55\x0e\x28\x8b\xc9\x62\x02\x33\x86\x59\xe4\x2e\x26\xa9\x5b\x8b\x54\xb2\x6c\x85\x5e\xb1\x98\xde\xb8\xe0\x86\xcd\x59\xaf\x74\xb0\xcf\x7b\x3a\xdf\x07\xbd\x0f\xae\x57\x49\x8a\x23\x8c\x6c\x4e\x42\x2d\x5b\x93\x84\x07\x8c\xcb\x0a\x2e\x3e\x8f\x1f\x43\x0b\xd0\x09\x8e\x44\x32\xa1\xcd\x13\xa4\xff\xce\xe3\xc7\xd0\xe1\x29\xd2\xe9\xe7\xf1\x63\xe9\x7e\x65\xf8\xd5\xbd\xa7\xf3\xc3\xc2\xe1\x20\x7a\x3a\x3d\x2c\x3f\xae\x60\x20\xe0\xda\x3c\x37\x45\xce\x2d\x70\xcf\x4e\x57\xf2\xb4\xb2\x3d\xce\x96\x83\xed\x1f\xbd\xb4\x01\xb8\xe2\x98\x3f\xfa\x02\xfd\x91\xce\x92\xff\xd2\xf1\x18\xc4\x67\xe8\xd7\xf3\xb3\xa2\x6b\x8e\x21\xc0\xa5\xbd\xae\xaa\x8e\xb7\xb7\xf7\xef\xd8\xee\xe1\xc9\xe7\x68\xb7\xf3\xe0\xae\xed\x1e\x9d\x1e\x7e\x8e\x86\xb7\x1f\x94\x87\x5a\xc9\xd1\xa7\x0d\x74\x1b\xdd\xab\x35\x34\xd8\x80\x76\x9d\xe5\xf4\x1d\x1c\x50\x9a\x86\x96\xc1\xde\xee\xd7\xaa\x7c\x39\x2d\x14\xc5\xf1\x9d\x76\x02\x25\x7e\x1d\x9e\x2e\x84\x3e\xa8\xc1\xfe\xb2\xe6\x77\x5d\x9d\xb8\x5d\xc0\xc1\xf6\x11\x46\xe9\xd5\xd5\x4f\x22\xf5\x9b\x22\x32\x2b\x5d\xc4\x5a\x7d\x24\x17\x83\x77\xb2\x95\x43\x83\x7c\x69\xb6\x3a\xfc\x2c\x6c\x75\xf8\xc5\xd8\x6a\xb8\x0a\x5b\xb9\x3a\xf1\x8b\xb1\x55\x11\x99\xcf\xcc\x56\x8b\xc1\x3b\xd9\xca\x31\xd1\x7e\x69\xb6\xea\x7d\x16\xb6\xea\xad\xc6\x56\xcb\xd8\xc3\x85\xcc\x2f\xc6\x1e\x45\x64\x3e\x33\x7b\x2c\x06\xef\x62\x8f\x9d\xd6\xdf\x9e\x3d\x9e\x7d\x16\xf6\x78\xf6\x79\xd8\xc3\x85\xcc\x2f\xc6\x1e\x45\x64\x3e\x33\x7b\x2c\x06\xef\x64\x8f\xdd\x32\x7b\xdc\x33\x17\x0a\x5f\x7f\x0d\xf7\xf4\xa2\xe0\xd3\x18\xa6\xf3\xd3\xdd\xf1\xdb\xfb\x62\xec\xbb\x5d\xc5\xbe\x8b\xb1\xfc\xe4\x41\xda\xbe\x3b\x15\xb6\x17\x52\xe1\x4b\x88\xf0\xf3\xaa\x9b\xc6\x15\x52\xf1\x09\x32\xe1\x6a\xea\x13\xba\x54\x04\xe7\xa4\xa7\x83\xeb\xbf\x2c\x3d\x8f\xff\x76\xf4\x74\x35\xf5\x09\x5d\x2a\x82\x73\xd2\x73\xfb\x63\x17\xc7\x96\xd3\xd8\xa6\x57\xb5\x85\x0e\x9f\x5f\x0c\x77\x3f\x42\x0c\x77\x3e\x4b\x37\x1d\x6e\x9b\x5f\xa8\x8f\x7b\x77\xef\x63\xbb\xdd\xf9\xdb\x1b\x0c\x6f\xbf\xa8\xc6\x7d\xb3\x18\xbc\x9b\x0a\x0e\x8e\xfe\xd2\x54\xf8\x17\x5f\x96\x0a\x8b\xc1\xbb\xa9\xe0\x60\xf8\x2f\x4d\x85\x93\x2f\x4b\x85\xc5\xe0\xdd\x54\x58\x38\x5b\x7c\x19\x2a\x9c\x7e\x59\x2a\x2c\x06\xef\xa6\xc2\x97\xb3\xc4\xda\xbb\xbf\x90\x29\xd6\xfe\x88\x49\xa0\xdd\xfe\x82\xdb\x83\x0f\x7e\x29\x42\x3c\xf8\x18\x42\x7c\xc1\x9d\x87\x87\xbf\x14\x21\x1e\x7e\x0c\x21\xbe\xe0\xce\xde\xa3\x5f\x8a\x10\x8f\x3e\x82\x10\x9d\x2f\xb7\xd9\xd0\x69\xfd\x42\x84\xe8\xb4\x3e\x86\x10\xed\x2f\x47\x88\xca\x39\xe3\x4b\x13\xa2\xfd\x31\x84\xf8\x72\xd6\x64\xe7\x97\x5a\xc0\x77\x3e\x62\x05\xdf\xee\x7c\x39\x83\xb2\xb3\xf3\x4b\x11\x62\xe7\x4e\x84\x10\xc1\x89\x9d\x6b\x28\x79\xe8\x2c\xb6\x9b\x8a\xdb\x4f\xe2\x90\x5a\xfc\x12\xe7\xd1\x2e\xaa\x09\x70\xe2\x50\x1a\x9e\x74\x61\x6f\x97\x55\x33\xd2\x1e\x77\xe1\x51\xc9\x1f\xdc\xd9\x79\x47\xf8\x1a\x13\xf8\x26\xec\xed\x38\x6e\xda\x97\xe3\x9d\xa8\xc5\xbe\x51\x19\x03\xfe\x38\x1f\x6f\x5c\x09\x0d\xd7\xeb\xef\xab\x35\xfc\xa4\x0b\xbb\xed\x32\x49\x76\x77\x3f\x0f\x49\x76\xdb\xb0\x01\x9d\x07\x9f\x44\x97\xdd\xbd\x8f\xc6\xa5\xfd\x89\x4d\x77\xda\x8f\x3e\xba\xed\x4f\x6d\xba\xf3\xf1\x5c\xd9\x79\xf8\x89\x4d\x3b\x1f\xa6\x5c\xad\xe9\x47\x4b\x9b\xae\xd8\x60\xbf\x57\x3e\x2f\x14\x7c\x69\x8b\x7b\x41\x37\xfc\xad\xa4\x7f\x81\xea\x5b\x22\x05\x1b\x4c\xb2\x3f\x65\x3c\xda\x8f\x56\xd3\x0c\x8b\xb4\xf3\x9f\x96\x9e\x7b\x54\x61\xf0\xa4\x0b\x3b\x0f\x1d\x1a\xc2\x19\xfa\xf4\x2e\x38\xd9\x9a\x62\x67\x39\xcf\x2e\x3a\x99\x29\xf1\x4d\x79\x9e\x30\x18\xe7\x4e\x7c\xc3\x86\x60\xaf\x52\x1f\x1a\xce\xa6\xc2\xb7\xf4\x2e\x9d\x30\xe6\x44\x71\xaf\x5b\x86\x4b\x67\x34\x5c\xe0\x3e\x3f\x42\xcf\x3d\xcb\xa3\x6c\x64\xf9\xbf\x8e\x22\x51\x60\x64\xf8\xb9\xe1\x7b\x26\x54\x39\x57\x8a\x9f\xd9\xf9\xe8\x62\x51\x53\x87\xaa\x96\xd1\x58\x03\x44\x6d\xfb\xfa\x84\x86\x08\x5d\x59\x42\xbb\x69\x5a\x98\x75\xbb\x50\xbe\xf5\xae\x31\xb4\x2a\x57\xb9\x4b\xcb\x77\x41\x17\xb8\xd6\xbd\xa7\xf3\x02\x02\x7f\x3b\xff\xdd\x62\x9c\x10\x69\xde\x08\x2d\x61\xc2\xe1\xe2\x62\x64\x3a\xfd\x50\x55\xc0\xb7\x2e\x8f\x0d\xe7\x84\x20\x18\x77\x31\x80\x7b\xf2\xa2\x9c\xd1\x64\xf9\x2a\xbc\x82\x89\x95\x4a\x10\x97\x93\x01\x35\x3b\x83\xf2\xe1\x03\x78\x9e\x96\xc9\x0f\x96\x73\xe1\x87\x0f\x96\x48\x32\x81\x5d\xe4\xa0\xba\x0a\xfd\xab\xa7\x28\xed\xdd\x69\x3b\x8e\xca\x87\x68\x1d\x6e\xa3\xa6\x73\xe9\xdd\xbd\x4a\xcb\xee\xa4\xe8\x78\x56\x25\x70\x78\xf1\xcf\x7d\xa1\xcc\xe9\x34\xad\x27\x4f\x0c\x58\x62\x12\x67\xf5\xab\x73\x12\x57\xfc\xc1\xe1\x1c\x94\x4b\x61\x86\xf1\xd6\x2e\xf0\xeb\x75\x8e\xf8\x03\xbc\xe4\x06\xbf\x01\x5a\x19\xf0\x9f\x56\x78\xf0\xeb\x2e\x5d\x85\xd9\x8c\x44\xcf\x68\x14\xd5\x0b\x43\x7e\x50\x4d\x11\x3e\x66\xf2\x69\xc9\x7c\x1e\xd1\xe6\x20\x49\x03\x9a\x1e\x26\x11\x06\x42\xa9\x5d\x8f\xc3\x5c\xbe\xe8\xb1\x94\x48\xfc\xad\xb3\x45\xe0\xf4\xd3\xc3\xed\x56\xf1\xae\xf5\x34\x99\xbe\x89\xed\x0e\x60\xba\x0a\xc9\xe6\xa6\x4d\x94\x8c\x96\x90\x26\xa0\x83\xd9\xc8\x4d\x15\xf3\x6a\x00\xbe\x83\xda\x14\x57\xf1\x98\xa4\x39\x33\x58\x7b\xd5\x14\x26\xe9\x88\xa9\xd8\x5e\x9a\x92\xb9\xc9\xab\x51\xe8\xd3\xa6\x4f\xa2\xc8\x93\x0f\xd9\x58\x2f\x44\x39\xda\x10\x01\x3f\x5d\xd9\x0d\x6c\xa6\xda\xad\x3a\x4d\x97\x06\xb1\xf9\xbc\x24\xc1\x16\xbf\x38\x51\xb0\x95\x8f\x27\x4b\x4a\xb3\xf0\x2f\xb6\x6b\xf9\x4d\x03\xe6\x26\x6d\xc2\xec\x35\x79\xed\xdd\xd4\x59\x4f\xf9\xf7\xb9\x43\x85\x16\xb5\xf6\x5c\x86\xa3\x18\xd1\xfc\x0d\xde\xeb\x92\x91\x1f\x06\xc4\x7f\x5f\xab\x3b\xee\xf5\xbb\xca\x31\x5c\x4c\xd0\x78\x33\x3c\x8c\x69\x03\x68\xd4\x80\x90\x5f\x07\x1f\x37\x80\x04\xc1\x59\xf2\x47\x3d\x56\x37\x3a\x0c\x8d\x9f\x44\x78\x95\x7f\xae\x93\xf0\x81\x84\xa5\x5d\xb8\x81\xc7\x66\x00\xee\x1b\x1d\xbc\x88\x77\xd0\xca\x9d\xeb\xdc\x77\x60\xb4\xac\x2b\xbc\x83\xc7\x70\x63\x79\xb6\x8f\xa1\x0b\xe7\x82\xf3\x86\xbd\x3c\x4f\x1b\x50\x83\x5a\x03\xda\x46\xe4\xdd\x10\x1c\xd1\x74\x74\xb6\xb8\x78\x1f\x6e\x6e\x16\xf5\xb2\xc8\x31\xea\x8e\x68\xee\x85\x75\x79\x7f\xba\x80\x8c\x35\x16\x56\xf9\x65\x4f\x11\x94\xe2\x15\x21\xc1\xbb\x70\x63\x4e\x71\x34\x9f\x4d\x4f\xf3\x64\x9a\x79\xaa\x48\xbd\x40\x2d\x7c\xf4\x0f\x93\xf8\x60\xea\x30\x23\x92\x7a\x96\xb9\x5d\x7a\xcc\xa5\x44\x94\x77\x1b\x1b\xc5\x4a\x50\x19\x0a\xea\x31\xcc\x55\xcc\x96\x62\x00\x95\x52\x4d\x7e\xc5\xe9\x89\x11\x2a\xc0\x86\xe5\x0a\xad\x34\xe7\x2f\x14\xb1\x8e\xe1\x8e\xda\x82\xf5\x80\x33\x70\x90\xfc\x70\x18\xc5\x60\xdd\x65\x14\x45\x48\x98\xca\xe5\x29\x54\x06\xa0\x32\x3f\xe5\x45\x5e\xc5\xb2\x6f\x41\x77\xaa\x43\x3d\xb9\xde\x94\x58\xb4\xde\xd1\x36\xb8\x7c\xc2\x5c\x8f\x5e\x25\x33\x97\x9e\x8c\x2c\xc3\xbe\xad\xb6\x4c\x25\x2f\x6d\x6e\xc2\x93\x55\x79\xe9\xc9\x5d\x78\xa9\x50\xd3\xcd\x38\x8b\xf9\x45\x10\x38\x99\x2e\x5f\x3f\x3a\x7a\x58\x02\x67\xc5\x1b\x73\x97\x60\x2c\xe3\x2a\xf1\x51\x83\xe7\xa0\x2b\x58\x02\xae\x2a\x94\x02\x85\x98\xb0\xef\xd1\xa8\xe2\xb5\x93\x24\xce\xc3\xb8\x78\x59\x83\x37\x51\x15\x6e\x90\x46\xab\xeb\x3b\xf4\xbe\xe9\x42\x71\x9d\x38\x87\x27\x5d\xbb\x67\x22\xb9\x0b\x73\xed\xac\xa3\xa7\x1b\x2e\xd8\x8e\xf2\x1b\x5d\x6b\x7a\x2b\x84\xc6\xb8\x61\xcd\xdc\x94\xaa\xb1\xd9\xea\xa6\xd8\x8c\x75\xed\x72\x5a\x78\x3d\xd8\x0c\xde\x65\xe3\xa8\x96\xd6\x8b\x9e\x1d\x5d\xe5\x95\x45\x1e\xc6\x16\xba\x46\x48\x71\x61\x23\x24\x13\x9a\xa7\x73\x35\x1f\xf2\xc7\x8c\x14\x9c\x8b\xd2\x62\x8a\xdb\x2d\x85\x77\x83\xf9\x12\x8f\xd5\xdd\x87\x1b\x8c\x04\x93\xed\xc3\x7c\x41\x78\x4d\x23\x70\x89\x65\x02\x59\xf6\xcf\x5c\xbd\x4a\x6b\xc4\x2d\x29\x58\xe3\x85\xc8\x2c\xf3\x83\xb2\x1d\x64\x84\x38\x71\xd6\xe5\x11\x5b\xe6\x55\xa8\x4e\xc8\x4d\x19\x4f\x6b\xf3\xa4\x80\x43\xab\x3c\x36\x46\x50\x18\xed\x31\x56\xb9\x71\x23\x26\x6c\x3b\xc8\xa2\x65\x18\xca\x10\xf3\xc5\x6b\xc0\xdc\x1e\xce\xc9\x20\x3b\x0f\x2f\x4a\x2a\x53\xc5\x9e\x49\xe9\x15\x6b\xc1\x19\x8e\x12\x2a\x02\xad\x30\xa0\x46\xd8\x52\x09\xd0\x8a\x47\x56\x7c\x4d\x18\xcd\x30\x08\x99\x1c\x15\x2d\xd2\x9c\x0c\x18\x0a\xdf\x87\x41\x3e\x76\xd8\xa4\xa2\x0b\x85\xab\xbd\x6e\x8a\xc9\xee\xd8\xb6\xb4\x49\xaf\x1b\xb5\xed\x62\xd9\x94\x5c\x5c\x39\x70\x31\xdb\x18\x04\xdc\xdc\xbc\xb9\x60\x56\xc6\x0d\xce\xe5\xaa\xa2\xb5\x21\x70\xa3\x02\xcc\xb1\xae\xaa\x32\x4f\x0d\x73\xcc\x8c\xf0\xbf\x0f\xcc\xb2\x6d\x89\xe0\xfb\x37\x55\x2c\x10\xd3\x9b\xfc\x0b\x74\x68\x63\x43\x76\xc8\x18\x9e\xbf\x69\xc7\x68\x4a\x32\x7a\x82\x8f\x0a\x56\xad\x7b\xe4\x32\xc3\x36\xbe\x99\x41\x6c\xcd\xcf\x73\xf3\x2e\x3d\x2b\xb3\x78\x51\xc1\xa0\x1a\x46\x3f\xe2\xc1\xcc\x7e\xaf\x5e\x30\xfc\x05\x07\xdf\xd8\x1c\x7c\x63\xc7\x78\x65\xed\x9d\xdf\xf0\x8d\xd2\x92\x92\x37\x43\x32\xcd\x17\x2c\x8a\x49\x46\x5f\xd2\xe1\xaf\x96\x10\xea\xa5\x1a\xc1\x47\x37\xf6\x3a\xe7\x33\x90\x00\x63\x46\x54\xee\x0b\x18\x9d\xb4\x43\x83\xcd\xcb\x91\xc0\xca\xdd\x34\x28\x96\xd1\x5c\xcd\x8c\x15\x34\xe4\x3f\xea\xe6\x7c\x69\x07\xab\xb5\xa6\xe3\x42\x24\x46\x13\x51\x3b\x4d\xff\xb6\x22\x08\xb7\x57\x7a\x6e\x7d\xb9\xe9\xbe\x5a\xcc\x46\xf8\xf8\x48\xa0\x9c\x47\x39\x0b\x3a\x66\x68\xcd\x40\x28\xd1\xac\xf1\xea\xc1\x56\xe8\x17\xc2\x3a\xa5\x66\x40\x58\x83\xf3\x49\x9e\xf3\xe8\x4d\x69\x51\xf7\x18\x2c\x6b\xa8\x1f\x73\x2d\x7f\x50\xe0\x74\x62\xae\xef\x1b\x52\xa8\xce\x2f\x1a\xe6\x04\xc6\xf7\x5b\x0a\x98\x48\x4e\x6f\xaa\x1c\xe8\x6a\x7c\x57\x98\xf9\x1c\x7a\x23\x2c\x0b\x8d\xd0\xb9\x2c\xbb\x52\x58\xc6\x45\xc2\x15\xa2\xbe\xd8\x94\xaa\x96\x6e\x83\x66\x55\x1b\x20\x15\xa1\x0c\x6d\x7b\x84\xd9\x7e\xe6\x80\xc5\x64\xa2\x54\x15\xcb\x7b\x4d\x26\xd4\x9a\x51\x3c\x2c\xb1\x01\xb5\x5a\xbd\x19\xc6\x01\xbd\x79\x33\x14\x40\x50\x9e\xab\x9a\x75\x45\x46\x37\x77\xd6\x4b\xa1\x31\x83\x30\x23\x83\x88\x9e\xe6\x41\x18\x2f\xdf\x69\x32\xa4\xb7\x3a\x6e\x8a\x65\xbc\xdb\x31\x53\x4a\x61\x2e\x18\x6e\x35\xf1\x20\xd2\xe2\x3e\x9d\x85\x79\x64\x8b\x43\xce\x52\x6c\xf1\x42\x98\x98\xce\x64\x16\xf3\x2b\x07\x88\x11\xb5\xda\x48\x9d\x9b\x71\xac\xe5\x32\xa9\xbc\xfe\x28\xaf\x82\xcc\x0d\x0a\xa3\xb8\xe7\x8e\x17\x68\x1b\x0e\xe5\xc5\x91\x84\x56\x1d\x42\xfe\x8a\xa6\x19\x7d\x51\xd9\x19\xc6\x6c\xef\x4a\x3d\x51\x1b\x8c\x3a\x5c\xb2\x5b\xa3\xe2\x42\x56\x3c\xe1\x9c\x79\x6a\x99\xaf\xf9\xa0\xa0\x42\x1b\x50\x8a\x38\xae\xe7\x95\xea\xea\x5a\x5d\x63\xc8\x91\xa5\x71\x1b\x8b\x51\x9e\x97\x95\xb4\x22\x3d\x57\x1b\xed\xf3\xe5\xe4\x2e\x1e\x10\x5b\x4c\x23\x85\x4a\x2c\xb4\x0b\xbb\x85\x56\x11\xb1\xf7\xa8\xb5\x9f\xd6\xc2\x15\xa1\xf9\x78\x51\x77\x7c\x3e\x5d\x57\x45\x50\x7a\x11\xe7\x34\xbd\x22\x7a\x6f\xa2\x9c\xc5\xeb\xa9\x6e\xe2\x5e\x3e\x5f\x9a\x9a\xa8\x5a\x9b\xfa\x77\x0b\x1b\x68\xd4\x73\xe1\x55\x89\xd2\xca\xb3\xb4\x7a\xce\x22\x9b\xc7\x3e\x8f\xe8\xdc\x4b\x29\xa9\x3e\x6e\x62\xeb\xa8\x45\x23\x88\x96\x3f\x17\x3d\xbd\x9a\xba\x3d\x58\x53\xc5\xc5\x1b\x1d\x0c\x98\x11\x10\xce\x27\xd3\x7c\x96\x52\xeb\xa4\x86\x1f\x98\x84\x19\xfe\xeb\xd1\xa8\x5e\xda\x14\x3e\xa7\xd1\x85\xcd\x92\xcd\x61\x92\x1e\x11\x7f\x6c\x9c\xd0\xc9\xa7\x24\xac\xca\xfc\x8c\x8e\x04\xfc\x29\xda\x97\x61\x96\xd3\x98\xa6\x9e\x1b\x2b\xf8\xf0\x41\x9c\xe7\x8b\xc6\x18\x75\x8c\x1e\x0d\x87\x2b\x74\x89\x46\x62\xdb\xe9\xae\x2d\x1a\x2d\x19\x91\x85\x86\x49\xea\xd3\xf2\xc1\x16\x2f\xc1\x5f\x33\xc1\xe3\x71\xab\x9c\x7b\x5e\xa2\x57\xb8\xa4\xa5\x71\xde\xe7\xae\x96\x52\xd5\xd2\xab\x66\x96\x27\xd3\xb7\x69\x32\x25\x23\x22\x23\xad\x41\xe9\x30\xdd\xc0\x30\x8c\xc7\x34\x0d\xf3\xcc\xc3\x9d\xbc\x06\xf0\x4d\x37\xd9\xbe\x2a\x36\xf4\xca\x0e\x1d\x49\x9c\xe5\xe9\xcc\xcf\xf1\xf0\x0e\xab\x5b\x06\x8f\xe6\x41\xe8\x0a\xb0\x3a\x89\x97\xc4\x4a\x56\xb9\x98\x5e\xc3\xb0\x80\x20\x37\x05\x92\xc1\xbb\x06\xe8\x78\x54\xd2\x58\x4e\x06\xef\xac\x93\x17\xf7\xa9\x0b\xa3\x77\x32\x78\x87\xb6\x55\xb7\x0b\xc5\xed\x48\x41\x9d\xd0\x61\x73\x6d\xb6\x6d\x6c\xca\xce\x0b\x34\x9d\xa0\xdb\x80\x81\x58\xae\xca\x7c\x2b\x22\x66\xd0\x74\xf2\x09\x1e\x70\x1f\x3e\x28\x74\x4b\xa0\x4e\xbf\x0f\xe3\x80\x29\x8a\x22\xc0\x6a\x78\x96\xcb\x0a\x27\x7c\x17\xb4\xa3\x84\x2b\x6c\x97\xd9\x21\x07\x95\xec\x0e\x7f\xfd\x35\xbf\x5c\x2e\xfd\xac\xb8\x13\x88\x72\x3b\x83\x9d\x07\x28\x25\xce\xad\xb4\xdc\x1f\xcb\xc3\x77\xfd\xc3\xd0\x46\x3a\xd1\x4b\xdb\x0d\x18\xb5\x1b\x30\x68\x9b\xb4\x1f\x13\x7c\x5f\xc6\x4b\xdb\x18\xeb\x6a\xaf\x0e\x1f\xc0\x1b\xe1\x8f\x87\xec\xfb\xc0\x38\x28\xd4\xc0\x9a\x97\x3e\xf1\xc7\xf4\x9c\xd5\xbe\x70\x6d\x9e\x99\x61\x2c\xcb\x35\x4a\xe7\xa0\x41\x38\x1c\x42\x17\x5e\xc4\xc3\x30\x0e\xf3\x39\x5b\x54\x40\x17\x36\xdb\x2a\x56\xb6\xdf\x80\xb4\xd3\x80\x51\xa7\x01\x83\x4e\x03\x58\xf9\x83\xe2\x42\x41\x11\xe8\xca\x67\x2d\xaa\x23\xc6\xe2\xb2\xc1\x87\x6e\xa9\xec\x79\x68\x9c\x54\xa6\x1d\x26\xa1\xe7\x2d\x23\x69\xc4\x93\xcc\xf3\xcc\x01\x4f\xea\x18\x49\xa2\x1b\x46\xaf\x83\x30\xcb\x99\xca\x32\xa8\x6f\xf6\xa4\xf0\x44\x1b\xaf\xef\x0a\xcc\x8d\xf4\x08\xed\x8d\xfc\xca\xc7\x0b\x15\xa8\xc7\x9c\xb2\x25\x60\x02\x4f\x4d\xc5\xaa\x66\x6e\xcb\xbc\x5b\xc5\x04\x5d\x88\x42\xc6\xa6\xa5\x7c\xb1\xc9\xe9\x20\x8a\x1d\xb2\xd5\x4d\x20\x7b\x55\xf6\x8a\xe4\xe3\xe6\x34\xb9\xf6\xb6\x5b\x70\x1f\x99\x76\x13\xd2\x4e\xbd\x61\xbe\x0f\xbd\xa1\x4b\xed\x3e\x62\xa5\x46\xac\xd4\xa8\xba\x54\xbb\xcd\x4a\x0d\x58\xa9\x01\x2f\x65\xcf\xe8\x94\xcd\xb7\xa8\x4f\xc3\x1c\xe7\xb0\x24\x36\x27\x26\xa6\x52\xc5\xac\x5c\xf4\x91\x00\x23\xcf\xd3\x95\x1d\x9b\x18\x2d\xce\xc2\x86\x7a\x2e\x72\x2d\xab\xce\x2d\x30\x3f\x89\x1b\xc0\xd5\x33\x3a\x0e\x24\x83\x77\x3a\x6c\xbe\x46\xfb\x9a\x64\xaf\x92\x98\xdf\x7d\xf8\x96\xce\xdf\xc4\x11\x37\xbe\x0c\xb7\x40\x81\x65\xd1\xcd\x76\xcf\xd4\xa0\xc5\xcc\x07\x8b\x32\x1f\x5a\xda\xff\x3d\x9d\x67\x8c\x3c\x26\xb5\xde\x0c\xde\x51\x1f\x9d\x62\xb3\x12\xb5\x8c\x3c\x4f\x77\x4a\xf8\x2e\xa2\xc3\x59\x66\xbc\xe6\x8b\xf4\x7b\x4f\xe7\x10\x22\x9d\x8b\xf3\x97\x00\x66\x45\x94\x7d\x73\x1d\xb3\xc9\x9e\xa6\xf9\x9c\x93\x12\x47\xf5\x3d\x9d\x97\x82\xd8\xb2\xb6\xf8\x6e\x91\x76\x5a\xab\x10\x08\x56\xd4\xd2\xcf\x48\xe5\xa3\x49\x98\xe7\x68\xfa\x9a\x3f\x2f\xdb\x56\xae\x61\x81\x4a\xc3\x82\xc9\x9f\xf8\x6a\xe4\x62\xf0\xd8\x24\x36\x53\x50\x82\x13\x26\xc0\x86\x7d\x2e\x02\xba\xf1\x2f\x07\x6b\x93\x24\x98\x45\xb4\x49\x6f\x98\x09\x9c\x19\x6a\xef\x60\x6d\x6d\x6b\xeb\x2b\xc8\x92\x59\xea\xd3\x57\x64\x3a\x0d\xe3\xd1\x77\x27\x2f\xbb\x37\x38\x5d\xbe\xcb\x9a\x13\x32\x5d\x5b\x5b\xdb\xba\x7f\xff\xfe\x16\xdc\xd6\x1b\x6b\x5b\xf7\xa1\x0d\xf7\xb7\x44\x8a\xb2\x3e\x3d\xde\x42\x03\x44\x13\x0d\xb8\xbc\xbc\xa6\x83\x29\xf1\xdf\x5f\xa6\xf4\xcf\xb3\x30\xa5\x97\x97\x8c\xb6\x6b\xeb\xb3\x8c\x42\x96\xa7\xa1\x9f\xaf\x1f\xac\xad\x89\xd1\xe1\xe1\x19\xe5\x98\x78\x0a\xca\xfa\xe5\x25\xcd\x5e\x21\xec\xf5\x06\xfc\x08\x57\x24\x9a\xd1\x7d\xb4\xb6\xd1\x3a\x3d\x58\x63\x5c\x51\x20\xb4\xc3\x6b\x4d\xa5\x98\x45\xcb\xb6\x99\x7e\x45\xce\xfa\xf9\xe1\x83\x3a\x9e\xe1\x23\x6e\x42\x31\x38\xab\x10\xda\x97\x9b\xbc\x91\xb0\x80\xab\x1a\x3b\x67\xc5\x2e\x0a\x4d\x8a\xc4\x0f\x1f\xac\x37\xab\xcb\x25\x38\x6b\xaa\x26\x04\x8e\x07\x0b\x91\x44\x86\x59\x05\x4b\x6d\x6d\x5b\x6d\x16\x45\x64\xf1\xd3\xdb\xc9\xe0\x9d\xb3\x6f\x07\x56\x29\x97\x49\x0a\x0b\x9d\x81\x0a\xa6\xa9\xc4\x9f\x91\x8c\x27\x37\x55\x92\x99\xef\x3a\x96\x67\x0d\x8b\xf7\x40\xc2\x46\x29\xae\x86\xab\x8b\xe0\x3a\x3e\x5f\x48\x75\xbe\x24\xea\x45\x91\x5c\x10\x65\xa5\x41\x28\x92\x7e\x39\xe5\x03\x1a\xd1\x9c\x2e\x24\xee\x2a\xb8\x25\xc5\x29\xb8\x9a\x25\xcc\xd5\x6d\x11\x9b\x8f\x73\x01\x94\x1f\xbe\x91\x30\x1c\x8a\xc6\xad\xd7\xd8\xc1\xdc\xcb\xe5\x48\x19\xfe\x81\xca\x1f\xb0\x3c\x32\x49\x6c\x70\x81\xaa\x7b\xe0\x30\xd3\xb3\x66\x12\x17\x9b\x5e\x4c\x35\x3a\x09\xf3\x85\x63\x68\xd0\xc3\x14\x62\x35\xdd\x5f\x8a\x43\x8b\x4b\x36\xe1\x2b\xb2\xa8\x69\xff\xd2\xf1\x00\x22\x03\x77\x7e\x19\xc2\x26\xb4\x99\xc6\x50\x95\xce\x2f\xc3\xd2\x98\xc3\xdf\x4e\x82\xef\x68\xc1\x00\x97\x39\x26\xa3\x4b\x47\x71\xf1\x18\x44\x2b\x09\x93\x39\xca\x95\xfa\xf5\xd6\x5a\xf0\xdb\x93\xf3\x2d\x9e\x0d\x89\x49\x69\xd1\xb4\x5e\x35\x9d\x5a\xe8\xbb\x67\xd5\xce\xaf\x68\x56\x65\x43\x79\xd8\x3a\x58\x33\x26\xd2\x43\xb5\x12\x39\x6c\x35\x5f\x7f\xf7\x12\xba\x50\xfb\xe1\xa6\xd5\x12\x8e\xde\x87\xad\xe6\xe9\x9b\xe7\x22\xb1\x6d\x24\x9e\xfd\x41\x24\x76\x74\xe2\x91\x4a\xdc\x36\x12\xdf\x9c\x89\xc4\x1d\x23\xf1\xf5\xbf\x10\x89\xbb\x3a\xb1\x77\xf8\xad\x48\xdc\xd3\x89\xcf\x8e\x24\x4a\x0f\x8c\xc4\x53\x91\xf6\x50\xa7\x3d\x97\xcd\x3c\xd2\x69\x2f\x8f\x45\x1a\xd1\x69\xbf\x97\xe5\x06\x3a\xed\x58\x96\xf3\x75\xda\xe1\x89\x48\x0b\x4c\x52\x88\x34\x6a\xa4\xbd\x10\x69\x43\x9d\xd6\x7f\x79\xc4\x13\xdb\x06\x1d\xfb\x87\x6d\x91\xd8\x36\x13\x3b\x22\xb1\x63\x26\x6e\x8b\xc4\x6d\x33\x71\x47\x24\x1a\x74\x7c\xdd\x13\x24\x6b\x1b\x74\x3c\xfd\xe3\x6b\x91\xb8\x67\x8e\xcd\x33\x91\x68\xd0\xf1\xb0\x27\x4b\x1a\x84\x3c\x7a\x25\xd2\x0c\x42\x9e\x7e\x27\x6b\x1b\x94\x3c\x3a\x3d\x14\x89\x26\x29\xc5\xd0\xb4\x0d\x52\x7e\x23\xd3\x0c\x52\x9e\xc8\x34\x83\x94\xdf\xc9\x34\x83\x94\xa7\x6f\x79\x5a\xc7\xa4\xa4\xe4\x89\x07\xac\xe0\x6d\xdd\x3b\x6c\x41\x57\xca\x52\xf3\xb0\x85\x57\x70\x8c\x9f\x6c\x7d\x5a\x47\xa3\xb2\x42\x8a\xed\xab\x7b\x15\x82\xbc\xfd\x2b\x12\x64\xd5\xb9\xe7\xbd\x93\xd3\xa3\xb3\x53\xb1\x04\x97\xc9\xfd\xa3\xe3\xde\x77\x2f\xcf\x2e\x45\xb6\x49\x1c\x51\xe1\xbc\xf6\xac\x76\x51\x86\x73\x5e\x6b\xd5\x2e\x54\x70\xf6\xda\x9f\x6a\xfb\x50\xfb\x61\xd6\xd9\xf5\xf7\x6a\x3c\x00\x7b\x8d\xc8\xa4\x47\x1d\x99\x34\xe0\x49\xad\x56\xeb\x91\x4c\xf2\x55\x92\x2f\x93\x02\x95\x14\xc8\x24\xaa\x92\x88\x4c\x1a\xca\xa4\x41\x4b\x26\x8d\x54\x52\x5b\x26\x8d\x05\x12\x3b\x9d\x1d\x99\x14\x2a\x58\x03\x99\xf4\x4e\xa2\xda\x7e\x28\x93\xde\xab\x24\x05\x3e\x92\x49\x1a\xd5\x89\x2a\xa5\xc0\xc7\x32\x69\x5b\x95\x4a\x44\xd2\xf6\x40\x61\x3f\x55\x49\x0a\x89\x3f\x2b\xf0\xaa\xc5\x54\x95\x52\xb0\x32\x95\xa4\x88\x93\x2b\x24\x54\xa9\x99\x4c\xd2\xdd\xbe\x52\x78\xa9\xa4\x6b\x55\x4a\x55\xbc\x51\x48\xa8\x41\x9b\x8b\xa4\xce\x9e\xaa\xf8\x17\x95\xb4\x2b\x93\x7e\x14\x54\xdd\xf6\x15\xf6\x1f\x54\x29\x95\x74\x2b\x69\x4f\xb6\x65\xd2\x4f\x6a\xd0\x1e\xd4\xd6\x6e\x5d\x8c\xd6\x33\x19\xed\x2b\x56\xfc\xaf\xff\x63\x45\xd1\x67\x58\x94\x3b\x62\x96\x73\x77\x5c\x80\x04\x1a\xbf\xc5\x9f\xff\xaf\xfc\x79\xce\x7e\x86\xef\xe4\xcf\x1f\x7e\xc0\xec\xff\x47\xfe\xbe\x60\x3f\x3f\x58\x7d\xff\xeb\xbf\xb1\xfa\x3d\xb4\xba\xfc\xd7\xff\x68\x75\xf7\xaf\xff\xbe\x02\xff\x43\x86\x21\x16\x2c\xe7\xed\x1a\xd8\x6b\x1c\x7f\xfe\xcf\x6a\xfa\xc1\x03\x81\xe7\xcf\xff\xb5\x99\x86\xb8\xfe\xfc\x9f\x9b\x49\xff\x80\x49\xff\xca\x4c\x42\x01\xfe\xf9\xdf\x9a\x49\xd8\xad\x9f\xff\xb5\x99\x84\x5d\xfb\xf9\x3f\x98\x49\xd8\xbf\x9f\xff\x27\x33\x09\xfb\xf8\xf3\x7f\xac\x49\xab\xaa\xdc\x97\x93\x65\x23\xf1\xf3\x7f\x67\x8d\xc4\x5f\xff\x9d\x3d\x12\x3f\xff\xa3\x35\x12\x7f\xfd\x47\x6b\x28\x54\x37\x04\xbe\xff\x97\x35\x16\x3f\xff\x1b\x7b\x2c\xfe\x4d\xc5\x58\xfc\x0b\x13\x47\x17\x52\x3f\xff\x0f\x0b\x91\xfa\xf9\x7f\x91\x3f\x39\xb9\xff\x37\xf9\x93\x93\xfa\xdf\x7f\x3c\xca\x3f\xff\xdf\x15\x28\x7f\x5b\x42\x59\x53\xc6\xe6\x96\x22\xa7\x08\x94\xff\x95\x8d\xd4\xbf\xb6\x91\xfa\x0f\x36\x52\x36\x4f\xff\xfc\xdf\x56\x20\xf5\xc7\xa5\x52\xf7\x8f\x77\x19\x6b\x4d\xa9\x3f\xd9\x94\xfa\xd1\x1e\x22\x8e\xf2\xff\xb1\x90\x8e\xff\x6b\x05\xca\x47\x0b\xc4\x70\xaf\x28\x86\xbf\x2d\x8b\x21\xa7\xf5\x7f\xe1\x90\xcc\xff\xe6\x63\x25\xf3\x5f\x97\x25\xf3\x7f\x2e\x4b\xe6\xff\xf9\xc9\x92\xf9\x2f\xef\x3a\x5a\xff\x7d\x61\xb4\xfe\x2b\x5b\x32\xff\x3f\x5b\x49\xfe\x3b\x7b\x78\xfe\x77\x7b\x78\xfe\xb1\x62\x3c\x9e\x2f\x18\x8f\x07\xee\xf1\xf8\x2f\xcb\xe3\xf1\x4f\x52\x53\x76\x4b\xe3\xa1\x39\xde\xa9\x94\xfe\xed\xc7\x29\xa5\x4b\x5b\x3e\x9c\x3a\xea\x4e\xea\x80\xeb\x28\xb7\x19\x2d\xa2\x27\x54\xd9\xcf\x3b\x9f\x64\x3f\x6f\xdd\xbf\xbf\x06\xf7\xe1\xc5\x64\x2a\x5c\x91\x20\x1f\xcb\x47\x3a\x61\x42\xf3\x71\x12\x34\x20\x1f\x13\xf9\x00\x22\xe5\x05\xe4\x8d\x0b\xc8\x13\x20\xf0\x3d\x1d\x9c\x26\xfe\x7b\x9a\x33\x4b\x9c\x92\x49\x93\x81\xfc\x2d\xc7\x01\x70\x6b\x7c\x8b\x04\x41\x12\x67\x5b\x1c\x88\xf8\x07\x4b\x45\xa1\x4f\xe3\x8c\xc2\xab\x17\x67\x6b\xac\x27\xe6\x22\x9a\x17\xe3\x0b\x69\xdc\xe1\x4b\xf5\xed\xf4\xad\xfb\x9c\x31\xee\xc3\x61\x32\x99\x24\xf1\xef\x4e\x81\xc6\x57\x61\x9a\xc4\xac\x1b\x22\x6f\x0b\xff\x2d\xed\xe6\x73\xb8\x9e\x83\x26\x5e\x8b\xbb\x48\xdd\x1a\xd1\x41\xe6\x53\x9a\x0c\x81\x2f\x29\xf0\x04\x5b\x22\x58\x2b\xe3\x72\xc2\x01\x35\xdf\x65\x10\x66\x40\xae\x48\x18\x91\x41\x44\x2d\x74\x38\x24\xef\xbc\xd6\x6c\x6e\x35\x9b\x5b\x48\x9f\xda\x45\x43\x60\x65\x36\x5f\x84\xfe\x36\x22\x61\x0c\xe2\x50\xbe\xb2\xbb\xa2\x77\xd7\x78\x5e\xdf\x94\x27\x17\x1c\x2e\x5b\xd5\x69\xfa\xfe\x41\x3b\x4f\xd6\xf4\x3a\xaa\x76\xb0\xb6\xc6\x77\xb2\x34\xc5\xd8\x2a\x68\x8d\xa1\x82\xb8\xdc\x87\x9e\xc9\x0c\xa3\xf0\x8a\xc6\x16\x4b\xe8\xd4\x0c\xf9\xa2\x89\xb5\x78\xd5\xdf\x4e\x49\x4a\x26\xf0\x23\x36\x7e\x8b\xd5\x60\x13\xce\x0a\x4c\x35\x90\x4c\x48\x83\x6a\x80\x0a\x96\x62\xc0\x5b\x91\x2f\x20\x8a\x1f\x8c\x49\x39\x47\x33\x38\xfe\x2c\x4d\x69\x9c\xab\xe6\x0a\xb0\x06\x49\x12\x51\x12\xdf\xc2\x20\x0c\xc2\x94\x3f\x01\x48\x22\xd8\x84\xef\xc7\x34\x1f\xd3\xd4\xe6\xff\x6c\x9c\xcc\xa2\x00\x30\xe8\x42\x40\x72\xc2\x61\x2d\xfd\x88\x2e\x09\xfc\x48\x06\xd7\x34\xaa\x46\x04\x5f\x3d\xa6\x41\x01\x87\x94\xc6\x01\x4d\xc3\x78\x04\xc9\x10\xc2\xd8\x4f\x26\xec\xfb\x6a\x48\x08\xb4\xc7\x64\x8a\xef\x93\xc6\x59\x4e\xe2\x3c\x9a\x43\x92\x02\x13\x75\x98\x90\x9b\x70\x32\x9b\x2c\x07\x34\x4c\xf9\xf2\x7e\xce\x90\x68\x1b\x38\x4d\x69\x0a\xed\xd6\x24\xe3\x9d\x62\x9c\x29\xd5\xb5\x18\x8a\xa2\x13\x6f\x43\x50\xa3\x61\x13\xbe\xa1\xba\x2f\xa5\xcd\x1e\x97\xae\x92\xd0\x42\x7a\x17\x6a\xea\x19\xb3\x5a\x1d\x9e\xf2\x55\xfe\xbe\x5d\x4c\x78\xbc\xd1\x74\xd2\x14\x63\xd1\x15\x68\x20\xbf\x8b\xac\xcb\x61\x34\xcb\xc6\xfc\xf1\x69\xa7\x87\x9b\x28\xc7\x5f\x6a\xe6\x55\x78\x2f\x39\x57\xf2\x9a\x6a\xaf\xb6\xaa\x80\x75\x2b\x0e\x00\xef\x25\xc8\xc0\x12\x55\x75\x58\xfe\x72\xc8\x58\xca\x02\x7f\x6b\xf5\x6f\x3a\xcb\xc6\x67\x89\xa3\x83\xa6\x87\xb3\xd0\xc1\x55\xbd\x33\x8f\xeb\xaa\x3a\xa8\xc2\x79\xf0\x72\xb7\x25\x5f\xd1\x6a\xca\x98\xf5\xac\x90\x1b\xa5\x11\x32\x62\x68\x18\xbb\xe2\x46\x6f\x47\x34\x7f\xa5\x1e\xb8\x76\x45\xfd\xe1\x3d\x2d\xf2\x9d\x9b\x5c\x1e\xbd\x6a\x5a\xcf\xa6\xbb\x3b\xc5\x59\xa3\x54\xd6\x81\x1d\x53\x25\x7d\xfe\x40\x7e\xd5\x38\x08\x1d\x88\xef\xcd\x1b\xf0\x24\x1c\x91\x5d\x72\x62\xac\x89\x17\xb4\x6b\x8d\x12\x21\xea\xa2\x2a\xf6\xdb\x14\x90\x02\x87\x27\xb1\xf2\x2c\xb7\xb1\x55\x8e\x14\x8b\x31\xf0\xa3\x24\x53\xed\x07\x94\x8d\xb3\x78\x62\xd4\xd0\x00\xd2\x4b\xb9\x12\x0a\x46\xbc\x58\x0d\x4a\x61\xde\xea\xd3\xea\x79\x6b\x98\x26\x93\xd2\x44\xf3\x31\x13\x17\xc7\x88\x06\x6e\x88\x77\x9b\xba\x10\x04\x0f\xb8\x94\x27\x02\xb2\x39\x8b\x2d\xd7\xd0\xf6\x34\x67\x2a\x62\x01\xad\x4a\x11\x2b\xf7\x5d\x1c\xf8\xe1\xb0\x7a\xe4\x8d\xd1\x32\xf4\xb1\x4c\x28\x2b\x62\x43\xdd\xee\xdb\xea\x96\xf1\x9f\xdd\xba\x62\x03\x97\x93\xec\x62\x8e\x36\x18\x52\x9e\xfc\xea\x96\x1d\xcc\x61\x19\x35\x45\x2b\xc1\x65\x85\x38\x98\xe3\xef\x96\xc8\x3f\x01\x4b\x04\x25\xb8\xf4\xfa\xbf\x25\x08\x2b\xda\x22\xd2\x11\xcc\x32\x6d\xc4\xf9\xec\x32\x10\xcb\xd4\x53\x89\x03\x17\xa8\x93\x5f\x5c\xa7\x14\x49\xea\xd0\x2d\xb6\x5c\x17\x28\xc7\xcb\x5b\x94\x33\x08\x64\x17\x3e\x58\xbb\x65\x4a\xc7\x5e\x06\xef\x7e\x8e\x65\xf0\x71\x68\x90\xdb\x4f\xa2\xd9\x24\xce\x80\xc4\x01\x06\x12\x90\xa2\x12\x84\x13\x1a\x67\x61\x12\x67\xc8\xee\x79\x06\xfd\x37\xaf\xd4\xd5\x81\x35\x40\x48\x5f\x7d\x05\xbd\xe9\x34\x4d\xc4\x32\x77\x13\x4e\x30\x14\xc1\x59\x3a\x8b\x7d\x82\x3e\x28\x0c\xd0\x55\x98\xf1\x8b\x02\xb6\x28\x73\x2f\x76\x09\x12\xc6\x14\x6f\x2a\x0f\xe6\x76\xa9\x34\xb9\x16\x59\xb2\xd1\x4d\x38\xe4\x38\x7f\x64\x43\xd7\x61\x90\x8f\x4b\xed\xf8\x63\x92\x12\x3f\xa7\x29\x6b\x82\x17\xf1\xd0\x0f\x01\x82\x30\x9b\x46\x64\xbe\x0f\x61\x8c\x97\x19\x49\x5e\xc6\x90\x51\x2f\x97\xc8\x30\x62\x71\x08\xd7\x61\x5e\xe0\xb9\xfb\x10\xcf\x26\x03\x9a\x32\x24\x05\xe9\xeb\xd5\x1b\x09\xc3\x30\x67\xff\x2f\xdd\x42\x18\x86\xf9\xe7\xdf\x3f\x18\x86\xf9\xaf\x6d\xf3\x80\xf5\xf3\x93\x77\x0e\x58\xbf\xee\xb6\x6d\xe0\xdc\x25\x90\x32\x3d\x4d\x93\x69\x92\xd1\x6f\x74\x68\x0f\xf7\xb5\x4d\xee\x75\xc3\xf4\x87\x14\x22\xce\x97\x47\xc5\x0b\x3a\x42\x0d\x18\xab\x18\xfc\x9b\x21\x61\xd5\x38\xcd\xe7\x78\xa3\x51\xf4\x65\x44\xf3\xc3\x64\x32\x9d\xe5\x34\xc0\x1c\x6f\x41\x5b\x7a\xbb\xd1\x4a\x7f\x4e\x45\xb0\x80\x29\xc1\x4b\x81\xb9\x57\x6e\x90\xb5\x23\x8f\x9c\x7f\x4f\xa2\x19\xf5\x6a\x5c\x3c\x6b\xf5\x2a\xb0\x18\x75\x02\xba\xdc\xa5\x7a\x42\x6e\xbc\x56\xe3\x8e\x2d\x5c\xcb\xb8\x15\x9b\xd0\x7e\x60\x34\x43\xef\x4e\x89\x72\xed\xb7\x24\x08\xc2\x78\xf4\x7b\x5c\x80\x29\xbc\xe8\x62\x8c\xa6\xbc\xd2\x66\x9e\x4c\x19\x5e\x1b\x77\xae\x38\xc0\x2b\x85\x16\xd1\x6c\x7c\x9e\x27\x1f\x83\x4f\x2a\x86\xe2\x23\x30\x8a\xe8\xd0\x1e\x44\x25\x9b\x26\x5f\x94\xb8\x65\xb3\x4c\x47\x07\x08\xc9\x03\x0e\xc6\x28\x02\x78\x9e\x18\x00\xfc\x24\xce\x49\xc8\x3d\xf5\x70\x18\xd3\xe4\xfa\x50\xa6\x19\xcf\xba\xcf\xd0\x25\xe2\x24\xb9\x76\x95\x6b\x0e\xc3\x34\x93\x8d\x62\xdc\x23\xbb\x01\x1a\xeb\x15\xb8\x86\xd4\x0c\xe3\x98\xa6\xcf\xcf\x5e\xbd\x34\x4a\xcb\x59\x82\x77\x5e\x67\x30\x9d\xe3\x28\x86\x3d\x34\x1b\x8b\x8c\x52\x32\x1a\x90\x5c\x5a\xe8\x96\x79\xf4\x4c\x31\xf1\x40\x17\x6a\x7c\xea\x91\x91\x38\x1d\x28\xb2\x42\xdf\xd7\x0e\x60\x6b\x4b\x68\x7a\x8d\x03\x3a\xe2\xf1\x48\x46\xcc\x50\x44\x59\x6a\x00\x89\xf2\x71\x32\x1b\x8d\x21\x89\x61\x92\xc4\x49\x36\x25\x3e\x57\xc2\x36\xf2\x36\x49\x46\x34\x7f\x96\xcc\x62\x36\x4c\x87\x51\x48\xe3\xfc\x84\xfa\xb9\x57\x6f\x22\xd0\x12\x76\xa5\x6e\x70\x04\x4f\xe8\x15\x4d\x73\xc0\x5c\x18\xd0\x61\x92\x52\xf0\x49\xe4\xcf\x22\x92\x33\x0c\xb9\x3e\x69\x40\x16\xc6\x3e\x4e\xed\x73\xbc\x8b\x42\xd3\xe6\x9a\x63\x0c\x56\x43\x90\xc3\x5c\x48\x3f\x8b\x13\xc4\x98\x88\x9b\xb8\x4a\x94\x8a\x22\xb1\x55\xc4\x46\x2c\xc8\xc4\xf5\xdc\x72\x3d\x4e\xd3\xad\x02\x91\xe5\xea\xd2\x88\x0f\xf5\x23\x0f\xef\xc4\x03\x44\xf1\x08\x4f\xec\x6f\xdb\x21\x51\x73\x90\xb4\x21\xe5\xac\x34\x2c\xba\xa1\x16\x02\x08\x18\x2d\x55\x4c\x64\xbc\x8a\xb1\x62\x95\x55\x0a\x9b\x25\x3c\x42\x95\xca\x15\x21\xad\xd4\x4f\x0c\x41\xa9\xe7\x31\x8e\x65\xd1\x8e\x5e\x34\x87\x56\x98\xd2\x25\x6c\xc7\x61\x66\xd8\xd2\xc5\x16\x8a\xf4\xa8\x80\xca\x6c\x83\x02\xa4\x15\xac\xf2\xbd\xcf\x62\x95\xcf\xa2\x28\xf3\x53\x4a\x63\x40\xeb\x0f\xc5\x56\xde\xb8\xa8\xb6\x10\x55\x2d\xe3\xab\xd3\x5e\x34\xcd\x45\x55\xf2\x0b\x58\x8d\x0a\xf6\xaf\xce\x78\xd4\xbd\xfe\x74\x1b\x52\xf7\xf2\x33\x98\x92\x6a\x65\x7c\x96\x8c\x46\x11\x75\x6c\xdb\xd5\x32\xa3\x49\x46\x74\xda\xbc\xcb\x76\x5d\xce\xe1\x32\x10\x60\xc0\xa8\xd8\xff\x30\x5a\xda\x94\x28\x19\x69\xa8\x4e\x90\x5b\x12\xb6\x8c\x19\x82\xc7\xef\x6a\x97\x76\xde\x78\xab\x8c\xaf\x4f\x79\xcd\xf2\x1e\x5c\x91\x13\x39\x81\x86\xb1\xa1\x76\x04\x7f\x18\x08\x14\xf7\xda\xa4\x3a\x1a\xc6\xea\x76\xb0\x34\x7b\xfd\x88\x64\xd9\xcb\x30\xc3\x30\xc1\xcc\x18\xc8\xbc\x9a\x86\xc4\xec\xa4\xa7\x50\xe3\x7b\x6e\x35\xd8\x87\x1a\x09\xa4\x97\xa9\xc1\xa1\xf7\xca\x58\x8a\xc6\x64\x55\xab\x8a\x5d\xc2\x80\x68\xec\x7f\x97\xf0\x3b\x1f\xc6\x17\x36\x6a\xd5\xba\x4c\xd3\x35\x2b\xd3\xb5\x8c\x6b\xd5\x70\x88\x6d\x88\xa2\x58\xac\xaa\xf4\x1e\x7c\x0e\xa5\x77\x36\x0e\x33\xa1\x43\x60\x9a\x26\x57\x61\x40\x33\x71\x20\x9f\xa1\x02\xe4\x7b\x4d\xcc\x2a\x20\x85\xe3\x78\xf1\x2b\x48\x9c\x07\xf3\x95\x0a\x53\x55\xd3\xdf\xfe\x7e\x42\xff\xf7\x13\xfa\xbf\x9f\xd0\xff\x27\xb3\x2f\xae\xf4\xa1\x94\xff\xde\xdf\x8f\xea\xff\x7e\x54\x8f\x9f\x5f\xef\x51\x3d\x53\x83\x01\x3f\x2f\xff\xdd\xe9\x9b\xd7\x4d\x5c\x59\xaa\x93\x76\x45\x0e\x0f\x0b\x9d\xb7\x2e\x18\xbb\xad\x67\x79\x90\xcc\xf2\x75\x28\xde\x21\x75\x9d\xf9\x3b\x4f\xfd\x11\x58\xfb\xc2\xbc\x7f\x57\x8e\xaa\x6d\x70\x9a\xa3\xfc\x82\x6e\xdf\xd1\x07\x00\xfb\x9d\xe1\x4b\x35\xe1\x70\xee\x9d\xd7\xb2\x3c\x08\x63\x11\xfd\xed\xa2\x5e\x77\xf1\x51\x46\xf3\xd3\xe2\xbb\x0f\x6c\xb9\xba\x6a\x0b\x34\xbf\x14\xf1\x97\xd9\x3f\xb8\x98\x15\x5f\xd9\x32\xb7\xd4\xe8\x2f\xea\x93\x60\x15\x55\x71\xa3\x2d\x3a\xd4\x97\xe1\x69\x79\x2e\x28\x05\xd9\xff\x2c\x2e\x0c\x2b\x82\xfb\xbb\x2f\x43\xb5\x2f\x43\x81\x84\x7f\x77\x6a\xf8\xbb\x53\xc3\x7f\x62\xc6\x5b\x69\x2d\xbc\xc0\x88\xfb\x38\xef\x86\x02\xc4\xbf\xbb\x39\xd0\x85\x6a\x67\xa1\xbf\x43\xa1\xe2\x27\x38\x3e\x3c\xfc\x15\xdd\x9f\x65\xb6\xd8\x37\x4c\x89\x85\xfe\x65\x1b\xba\xae\x56\xbd\xed\x1d\x51\x30\xcc\x5e\x63\xfc\x23\xa5\x5b\x63\x72\x15\x8e\x08\xc6\xf9\xab\x5c\x12\x88\xc8\x82\xac\xfe\x2c\xa3\x69\x6f\xc4\x58\xa7\x8b\x4f\x54\xe1\x7b\x88\x4f\xa1\x16\x27\x01\x6e\x59\x29\x70\x4d\x55\x92\x57\x9c\x46\x24\x1f\x26\xe9\x64\x69\x3d\x59\x50\x5f\x35\x09\xb3\xe3\x30\xa5\xc3\xe4\x06\xba\x70\xef\xde\x4f\x0a\xb0\x8a\x24\x5c\x13\xf9\xb5\xba\x59\xe9\xd5\xe9\x8b\xa3\xca\x1a\x2c\xb3\x86\x6f\x6b\xb9\xf3\xcf\xd2\x30\xa0\x71\x5e\x80\x48\x7c\xe8\x6a\x5a\xeb\x4d\xbc\xf3\xda\x2b\xe2\x87\x71\x9e\x64\xe3\x5a\x03\xd8\x8f\x17\x71\x4e\x23\xf1\xfd\xed\xdb\x43\xf1\x6d\xef\xe1\xb7\xb5\x8b\x86\xa2\x85\x05\xfc\xc5\x94\x04\xd0\x35\xe8\xc4\x86\x23\x7c\x4b\x82\x9a\x5d\x6a\x9c\x60\x04\xeb\x62\x39\x96\x5c\xb3\xbb\x2f\x83\x07\x56\xa0\x2c\xb2\x19\x6a\xdf\x87\x71\x7b\x4f\x7c\xd9\xee\x88\x2f\x87\x47\x95\xb8\xbe\x0c\xe3\xd9\x8d\x81\x84\xa6\x1b\xe6\xd4\xea\xf0\x04\xa3\x3a\xbb\xef\xd6\x3c\x13\x01\x0e\xdd\x57\x6b\x1e\xfd\x8a\x44\x4b\xe9\x15\x3c\xc3\x4f\xd2\x20\x3b\xa1\x11\xc9\xc3\x2b\x7a\x96\x88\xf3\x5b\x0f\x63\x75\x34\xa0\x10\xd8\x94\x07\x60\xe4\xae\x0e\x23\xfa\x07\xd7\xcb\x9f\x0b\x1c\x2b\x6e\xf0\xf9\x4e\x55\x5b\x87\x16\x9b\x5b\x19\xe2\x65\x1a\x11\x7f\x48\x3a\x14\x7d\xfd\xb5\xf2\x2d\xba\xd7\xed\xf2\x77\x10\x83\xc4\xc7\x20\x2c\xea\x4b\xc9\xcd\x03\xe0\x06\x36\xbb\xca\xa3\x2a\x19\x0e\x33\x9a\xbf\xa4\x43\xe3\x7d\xaf\x79\xb9\xc0\x59\x32\xd5\xf9\xb2\xd5\x2e\xd4\x78\xee\x5b\x3c\x5d\xaf\x41\x18\xab\xbc\xa7\x05\x00\xbc\x08\xec\x83\xd3\x33\xc4\xa4\x8b\x20\xd7\xf9\x4d\x03\xe6\x17\x07\x6b\xb7\x8a\x1d\xab\xc7\x06\xba\x0b\x06\xce\x35\xba\x72\x30\xad\x53\x7d\x30\x9e\xe0\xc1\x67\x6e\x0e\x93\x99\x2a\x84\xdf\xc2\xec\x14\x9f\x12\x0e\x13\xeb\xdc\xc0\x47\x98\x0b\x91\x70\x35\xa8\xce\x6c\x59\x0d\x5c\x3b\x73\x57\x15\x9f\x86\x91\xe7\xe9\xe4\x0d\xa6\x48\x55\xc3\xf0\xd4\xc4\x93\x9f\x80\xc3\x16\x74\x60\x1f\x5a\xf5\xba\x38\xe2\xb5\x72\xed\x76\xda\x76\x3b\x3a\xd5\xae\x39\xb6\x8f\x95\x0b\x28\x4e\xc2\xd8\x53\x6e\x35\x2a\xb7\x01\xed\xba\x26\x1c\x3e\xab\x55\xd1\xb4\xab\x7e\x5b\xd4\x97\xe4\x36\xea\xcb\xe8\xf7\x58\xd0\xc9\x12\x26\xf1\xed\x01\x3f\x21\xd7\xcf\xe6\x39\xfd\x84\x71\x5f\x3c\xd4\x1f\x07\xf2\xc0\x52\x01\x8a\x82\xb6\x02\x50\x84\xe1\xc9\x37\xb0\xd1\x85\xed\x0e\xff\x31\x37\x7f\x08\xfa\xfc\x08\x37\xf8\x30\xd3\x1c\x5f\x65\x2a\xd0\xc9\xa2\x03\xef\x80\x95\x54\xa5\xc4\x5f\x25\xb3\x8c\x56\x05\xdf\x6b\xfd\x8a\x74\x38\xa3\xda\x80\xa4\xb4\xc2\x32\x6a\x4b\xcb\xe8\x39\xae\xc7\x17\x07\xe6\xc3\x32\xa8\x68\x4b\x81\xf2\x58\x22\x70\xf5\xa8\x35\x22\x6b\xb7\x39\x16\x37\x26\x30\x9a\xf3\x69\x9e\xa4\x7c\x63\x2d\xa6\xd7\x3c\x3f\x0a\x07\x4d\x91\xdc\x7c\x45\x27\x49\x3a\xf7\x8a\x71\xe0\x05\x6a\xaa\x0a\x07\x29\xcf\x30\x9c\xc5\xb9\x67\x15\x1d\x66\x5e\x1d\xa3\xd5\xaf\xb3\xe5\xdc\x26\x8d\xfd\x24\x08\xe3\xd1\x7a\x03\xd6\x53\x72\xbd\xee\xac\x19\x50\x3f\x49\x49\x2e\x42\xce\x63\x6f\x0b\xc5\xc2\xc4\x7c\xed\xa1\x19\x26\x3c\xc4\x9f\x13\x1a\x2e\xc4\xa2\xe8\x5b\x3a\x1f\x24\x24\x0d\xec\x97\x03\xf8\xf7\xe7\x05\x03\x3f\x8c\x87\x49\xc5\x3e\xb2\xc1\xd4\xbe\x74\xbb\x95\x51\xe7\xd9\x2f\xe9\x9c\xa2\x63\xac\xdf\x5a\xa1\xb3\xdc\x0d\x26\xb3\x7c\x3a\xcb\x17\x6c\xfc\x19\xc1\xee\x44\x8f\x5d\x71\x84\x0b\x1d\x4f\xf8\x36\xe4\x77\x67\xc7\xed\x3d\xcf\xba\x82\x54\x08\x1c\xe6\x46\x2a\x1b\x27\xd7\xae\x7d\x58\xb1\x53\xd1\x80\x9c\xef\xf0\x96\x58\x71\xa2\x2a\x89\x6f\x07\x76\x2f\x78\x35\xd7\x23\x95\x16\xf2\xac\xfd\x37\x57\x34\x8d\xc8\xbc\xdc\x66\x79\x4b\xd5\xf9\xc0\xe1\x72\x80\x48\xc3\x3b\xd1\x85\x6f\xdf\xb8\x28\x63\x76\x67\x6b\x8b\x2d\x3b\x53\x0a\x61\x06\x71\x02\xe3\x30\xa0\xb2\xed\x3a\x5b\xf3\x01\xc3\x86\x6f\x58\x90\x09\x95\x94\xe2\x2e\xd2\x2d\xc8\xa8\xef\x62\x65\xbb\x0f\x26\xb1\x1b\xd0\xb2\x03\xf2\x95\x46\x93\xe6\xdc\xe0\x5e\xf2\xf2\x87\xdd\xa2\x5d\xcb\x93\x6f\x80\x2c\xe7\x1d\x2e\xfc\x34\xc5\x20\x50\x56\x6b\xa8\x1f\x8b\x21\x00\x2f\x59\x93\xd6\x6b\xdc\xec\x63\x86\xb8\xe5\xd5\x1c\x11\xfd\xdf\xd3\xd2\x33\x92\x97\x95\x5a\x08\x43\xe3\x22\xa8\xf3\xf7\x74\x6e\xed\xcc\xaf\xd2\xad\x24\x7e\x11\x17\x05\xd5\x27\xfc\xcd\xe2\x12\x01\xc3\xa4\x99\xc4\xbf\x3f\xfb\x96\xce\xb3\x3c\x4d\xde\xd3\x85\xe2\xcd\x3e\x12\x52\x49\x56\x4b\xda\x0f\xf7\xe7\xf9\x2b\xf5\x9f\x0a\x75\x49\x7f\x4f\xca\x0f\x45\xbb\x3a\x5c\x3d\x86\x9a\x14\x72\xba\x70\x81\x34\x95\xa7\x7b\x34\xe5\xc5\x8c\xae\xd4\xbb\x07\x8e\x42\xc2\x3f\x51\x3f\x12\x52\x22\x82\xdd\xd2\xdd\xa8\x11\x50\xe2\xe7\xe1\x15\xc9\xab\xa5\xbe\x6a\xe0\xcd\x73\xc3\x8a\x51\x74\x17\x71\x90\xcd\x51\x10\x11\x9d\xc5\x55\x53\x5d\x95\x1e\xab\x7a\x7d\x05\xf4\xa3\x21\x86\xaa\xbb\xdb\xf4\xea\x6e\x13\x0f\x54\x16\xb7\xb9\x52\x5f\xc4\x24\x8c\xe0\x8b\xa1\x27\xa5\x21\x25\x32\x8b\xb6\xe1\xaf\x29\x32\x33\xc6\x90\x4c\xe2\x98\x2f\xa1\x8e\x89\x9f\x27\xe8\xee\xb9\xc8\x06\x2c\x95\xf7\x66\x69\xd4\x00\xa4\xb1\xf3\xd5\xa3\x59\x1a\x41\x17\x66\x69\x91\x69\x54\x0d\xe8\xea\xda\x65\xe3\xa8\xd4\x9e\x39\x9c\x29\x5d\x24\x0d\x72\x87\x81\x5e\x1b\x50\x3c\x89\x54\xa3\x80\x86\x4b\x01\x0b\x08\x25\x1c\x8a\x63\xee\x22\xa2\xa3\x92\x4d\xef\x95\x09\xbd\x8c\xc2\xc2\xbc\x67\xfd\x54\xdb\xd3\xc5\x3a\x26\x61\x35\x64\x53\xd7\x4e\x0b\xae\x6b\x05\x6b\x22\x4e\x72\x74\xfc\xca\x93\x20\x41\x5f\xb0\x6b\x3a\xd0\x87\x37\x36\xd9\x9c\x0d\xac\x20\x7b\x68\xdc\x63\x39\xcf\x35\x1a\x4e\xb0\x78\x4c\xb3\x68\x12\xd2\x90\x1d\x77\xd7\x97\x00\x0f\xb3\x37\x8b\xc8\xa2\x8c\x62\x04\x9f\x52\x12\xcc\x4f\x73\xe4\xc8\xae\x1e\x89\xe6\xe1\x9b\xd7\xaf\x8f\x0e\xcf\x5e\xbc\xfe\xc6\x8c\xc6\x6f\xa3\x56\x55\xf7\xcd\xdb\xa3\xd7\xee\x48\xc0\xc6\xdb\xb0\x60\x99\xa1\xf6\x73\x38\x46\x3f\xdd\xc3\x1e\x97\x7a\x58\x69\x51\x20\xa6\x49\x5c\xe2\x14\x5c\xea\x57\xce\xfb\x4b\x66\xb9\x0a\xac\x4e\xa8\x4f\xc3\xab\xe5\x33\xbf\x89\xd8\xc4\xe9\xb5\xb1\x08\x37\xbe\x97\xb8\x82\x65\x52\x81\xe5\x61\x89\xa7\x97\xe1\x58\x96\x82\x4f\xa2\x5e\x49\x41\x55\x6b\x26\x4b\x25\x95\xe7\xa5\x5f\x53\x6c\x63\xe3\x56\x81\x9a\x22\xce\xd7\xaf\xe9\x20\xcf\xe7\xeb\x46\xa8\xd3\x49\x36\x42\x83\xf8\xbb\xf8\x7d\x9c\x5c\xa3\x83\x6f\xab\x56\xce\x66\xe9\x6d\x3b\xfd\x2d\x37\x7a\x6a\x1d\x3b\x99\x1b\x39\xd2\xe4\x61\x05\xb6\xed\x02\xa2\xa5\x37\x72\xc1\x5c\x6c\x4f\x67\x14\x1b\x4c\x9c\x0d\x9e\x16\x97\x45\xc5\x06\x4f\x8b\x2b\x99\xda\x4e\xa9\xc0\x09\xf5\xf9\xc0\xb2\xec\xdd\x1a\x9f\x67\xbe\xa7\x83\xb3\xb3\x3f\x2e\x99\x63\x78\x21\xe1\xac\xe0\x17\x27\x2c\x1e\xee\xbb\x01\x64\x96\x8f\xcf\x92\xf7\x34\x76\x1a\x4b\xe2\x8a\x57\x61\x76\x2f\x01\xe3\x57\x7a\x8a\x33\xa2\x55\x47\x04\x62\x67\xff\x14\x73\x24\x06\x2c\x5b\x7e\x3f\x28\x1a\x8b\x9a\x0a\x9b\xed\xb2\x21\xc1\xfb\xba\xea\x8c\x57\xbd\xa2\xe0\xfb\x9d\x86\x54\xb9\xfb\x2b\x8c\x13\x53\x80\xf1\x1c\x30\x8c\x47\xe8\x6e\x67\x27\x2b\xe4\x85\xdb\x9a\x9d\x8b\xcf\xa2\x57\xa2\x0a\xfc\xde\x9c\xd4\x4f\x5c\xa3\x3b\x46\xdd\xfc\xe0\x4b\x5e\x34\x9d\xbc\xe0\x5b\x4d\x97\xa6\x41\x3d\x4c\x3c\xc7\xf3\x0a\x46\x0b\x2e\xef\xac\x72\x13\xec\xd3\x93\xc1\xef\xf7\x45\x13\xc8\x50\xee\xa2\x72\x58\x55\x51\x99\x50\x2e\x7f\x5b\x77\x20\xc8\xc9\xc8\xe4\xf7\xb9\xe3\xd9\x54\x3f\x89\x26\xb3\xaa\x25\x5e\x55\x1f\xab\x35\xc3\x06\xac\xd4\x7f\x0e\x54\xec\xd3\x49\x14\x2a\x4b\xea\x7b\x65\xce\x22\xce\x5e\xdf\x96\x93\x8c\xc1\x94\x0b\x68\xcf\x22\x8c\xf3\xf1\x0c\x23\xdf\x93\x9c\xa1\x77\x15\x55\x4a\x61\xdd\xea\x6c\x13\x95\xae\xc1\x80\x21\xfb\xfd\x11\x34\xe7\xca\x7b\x03\x78\x7d\x47\xdf\x1d\x69\x4a\xbe\xa0\xcb\xc4\x46\xbe\x44\xb9\x44\x1c\x96\x20\xc2\x66\x0b\x57\xfb\x0d\xc0\xa7\xad\xda\xad\x56\xab\x90\x5d\x44\xcd\x92\x4f\x61\xdb\x78\x8b\x37\x4e\x40\xdd\x32\x9f\x47\x09\x9e\x8d\xb3\x52\xfc\x99\x0e\xcf\xf5\x00\x4a\x76\x1d\xe6\xfe\x98\x03\x3b\x6f\x95\x1e\x90\x50\xa8\x90\x8c\x42\x69\xca\xda\xaf\xe4\x4a\x73\x68\xb1\xa8\x17\x50\x3f\x09\xe8\x77\x27\x2f\x0e\x93\xc9\x34\x89\x69\x9c\x7b\xc5\xc7\x44\x26\x64\x2a\x9e\x12\xc9\x93\x81\x27\xba\x50\x6f\x98\x02\x59\x85\x9f\xfc\x08\xd3\xa6\xf6\xcf\x6b\xb0\x01\x5e\xad\xd5\x62\xff\xfa\x4d\x7f\x4c\xd2\xc3\x24\xa0\xbd\xdc\x6b\xd5\x9b\x79\xc2\x37\x30\xbc\xf6\x5e\xbd\x2e\x68\xb3\xd9\x71\x10\x47\x0f\x4c\xf3\x5d\x12\xc6\x5e\xad\x56\x77\x89\x93\xfc\x14\x9e\x6b\x5b\x44\x3f\x36\xb3\x57\x53\xef\x0e\x80\x6c\x5b\x60\xa5\x01\x29\xec\x8f\x4a\x3a\x7f\x96\x7e\xd9\x96\x47\x35\x3a\xc8\xa3\x96\x89\x62\xb8\x44\x2f\xc7\xc8\xee\x8d\xd1\xa2\x67\x00\xfd\x6c\x3d\x52\xa6\xd2\xe2\xfe\x90\x59\x9e\x98\x56\xd5\x9d\x7a\xe4\x27\x71\x96\x44\xb4\x19\x25\x23\x6f\xfd\x28\x26\x83\x88\x19\x9b\x6a\x86\xdf\x87\x75\xd8\x28\xb4\xb0\x01\xeb\x90\xb1\x5f\x41\xb6\xbe\x94\x56\xa6\xa1\x63\x81\xb9\x33\x91\x6e\x57\xd7\x59\xb8\xd2\x59\xa2\x45\xf1\x46\x82\xd2\xb8\x4a\x13\x2f\x9e\x2e\xf4\xae\xa6\xcb\xea\x30\xb9\x43\x9f\x07\x79\xeb\xc6\xb2\x06\x31\x0b\xd6\xf5\x09\x84\xf9\x61\x2b\xf4\x22\xd5\x1c\x07\x3f\xf2\x53\x34\xc3\xf8\x24\x22\xaf\x12\x2c\x9f\x43\x6c\xb2\x29\xc3\x6a\x15\xe3\x70\x41\xcf\x71\xa7\x74\x51\x59\xb4\x0f\xab\x0a\xdc\x36\x4a\x7c\xe3\x9c\xb2\xe0\x4e\x0c\xc1\x4c\x4c\xf7\x19\x41\x09\x19\xb9\x21\x51\x6d\xbc\x9a\x37\x59\x8a\x43\x50\x8d\x83\xb5\x51\x04\x8b\x17\xc8\xdc\xf8\x2f\x2e\x8e\xd5\x1a\x49\x66\x97\x97\xc5\xbf\xa6\x97\x42\x96\x1c\xe5\xb3\x01\xe5\x27\xea\x09\x09\x7a\x41\x90\xc4\xde\xfa\x30\xcc\xd7\x45\xcd\x3f\xac\x70\xc0\xff\x07\xe7\x01\xff\x92\xd3\x15\xe7\xd1\xbf\xeb\xdc\xbe\xb4\x83\xaf\x37\x6c\x58\xe5\x66\x72\x1d\xd3\xb4\x2f\x5d\xb5\xb8\x88\x48\x47\xa1\xf5\x20\xbc\x2a\x1d\xd7\x8b\xfa\xfc\xde\xee\x6b\x32\x61\x90\xd6\xf1\xe6\xe4\x66\xc2\x0f\x29\xd7\xdd\x35\xb4\x78\x77\x5a\xad\x56\x69\x21\xc9\x6c\xe1\x97\xfa\x4d\xb2\x6a\xce\x35\x84\x74\x18\x96\x44\xd4\x54\x5e\xe2\x89\x7b\xfe\x74\xbd\xbb\xa0\xa9\xe0\x84\x55\x63\x40\xe0\x3b\xbf\x1b\xb0\x7e\xc3\xa6\x8f\x72\x3e\x1a\xe6\x52\xd4\xed\x6e\x2e\x38\xcb\x93\x37\x54\xd6\x99\x40\xaf\x37\x96\x76\xd5\xa6\x4d\xb1\x1f\xe2\x72\x69\xe9\xe6\xc9\x3a\xaf\x56\x84\x5f\x05\xd3\x52\x3c\xb7\xce\x63\x1f\xd4\x3f\x8c\x69\x1a\x28\x1e\x0e\xa7\x8a\xa2\xd7\xf4\xc7\x38\x55\x28\xc2\x5b\x6e\x15\x8a\xdc\x4e\x85\x53\x6c\x77\x05\xdf\x0a\x0d\x55\xdf\xdb\x72\x6d\x51\x17\x41\x7f\x8c\x87\xc4\x12\x59\x96\x12\x95\xd3\x9b\xfc\x90\x47\x60\x71\xf9\x51\x28\xb9\x6f\xe2\x6d\x83\x00\xa3\xf8\x58\x0e\x01\xc6\xa8\xa9\x5d\x72\x83\x2b\x4b\x6f\x3c\xda\xb7\x19\x4b\xa5\x5d\x1b\xdd\xab\x38\x73\x98\x40\xee\x32\x99\x5f\xea\x1e\xf2\x43\x48\xde\xc3\xcb\x8a\x2e\x02\x9f\x67\xab\xbc\x43\x16\x8e\xe2\x6a\xfe\x1c\x45\x22\x0a\x47\x51\xee\xcd\xde\xd5\x03\xe2\xa4\x42\xa9\x1f\x15\xdd\xb0\xb0\x2d\x71\xdb\x1d\x3c\x38\x94\xbf\x6d\x2e\xca\xe2\xbf\xab\xb0\xf4\x8a\x8e\x1b\x8b\x45\xee\x2e\x6e\x12\x4a\x03\x32\xa9\xb3\x34\xd4\x9d\xbc\x19\x56\x91\xd7\x95\xdd\x19\x6c\xc4\x1c\xca\x73\x29\x6a\x42\x6b\xe1\xd7\xa2\xab\xc1\x2a\xa8\xae\xea\x6b\xa0\xae\xb4\x71\xf2\xb9\x75\x35\xcb\x16\x9d\x70\x16\x18\x44\xb3\xb4\x70\xe0\x57\x16\x92\xcf\xe1\x2c\x80\x4a\x66\x49\x4b\x8b\x8f\x29\xc5\x0c\xe7\xba\x42\xa7\xc7\xc9\x31\xab\x55\x38\x1a\x66\x79\x9a\xcc\xdd\xbe\x05\x7f\x70\xf9\x16\x48\x1b\xee\x0f\x6e\xdf\x82\x4f\x7b\x96\xc3\x36\x56\xb7\xb6\x78\x38\x90\x61\x18\x51\xb8\x26\x19\x8c\x58\x3f\x48\x4e\x03\x18\xcc\x21\x0a\x07\x41\x92\x6f\x0d\xc2\x78\xcb\x4f\x62\x9f\xe4\xcd\x6c\xdc\x64\x75\x5e\xe4\x30\x26\x19\x0c\x30\xa8\x0d\x49\xdf\xd3\x00\x52\x4a\x82\xcd\x24\x8e\xe6\x78\x6c\x3c\x4f\x66\x29\x64\x64\x48\xf3\x79\x13\xe0\x84\xe4\x63\x9a\xae\xa1\xb7\x1a\x89\x81\x06\x61\x0e\x61\x0e\xfc\x56\x57\x34\x6f\xc0\x34\xa2\x6c\x15\x3f\x49\x82\x70\x38\x87\x24\xa6\x22\x9e\x28\x43\x15\x7d\x72\x59\x5d\x86\x63\xd6\x6c\x32\x04\xd8\x4f\x81\xdc\xbb\x6c\x2b\x0a\x07\xcd\x77\x59\x29\xed\x72\x9a\x44\xf3\x61\x18\x45\xce\x4c\x3f\x89\x92\x34\x73\x66\x0d\x9d\xa9\x42\x91\x5e\x4e\x48\x4c\x46\x78\xb1\xc3\xd1\xa2\xd2\x6a\x0b\x8b\xa5\x94\xf7\xca\x99\x99\x09\x2f\xd9\x05\x79\x97\xfe\x38\x4d\x26\x8b\x8b\x44\x89\x4f\xdc\x3d\x97\x25\x26\xe8\x86\xeb\x2c\x92\xd3\x2c\x5f\xd8\x83\x59\x3e\x7c\x68\x67\xe4\xe3\x30\x0d\x2e\xa7\x24\xcd\xe7\x5b\xd7\x3e\xfa\xde\x63\xc9\x6b\x5f\x94\x43\x77\x5e\x56\x9f\xfb\xf5\xba\x12\x2f\x87\x29\x51\xdd\x2a\x64\xbd\x17\x3e\x3a\x8b\x73\x2f\x07\x21\xc6\xa1\xcb\x96\x14\x7b\x4f\xe7\x13\x32\x5d\x5e\x68\x4a\xf2\x9c\xa6\xb1\xbb\x60\x32\x65\xa2\x57\xd1\x14\xee\x23\xa5\x8b\xf2\x2e\xf1\xf2\x55\x38\x0c\x69\x5a\x05\xa3\x8a\x9d\x8a\xe5\x66\x83\x6c\x36\x70\xe7\xf1\x30\x43\x95\x79\x49\x14\x31\x85\xe1\xce\x57\xb7\x14\x17\xe6\x5e\x86\x49\x55\x81\x9b\xfc\x92\xe4\x79\x1a\x0e\x66\x39\xad\xe8\xe3\x55\x45\xdb\x57\xf9\xa5\x8a\xd7\x77\x59\x39\x56\x5c\xdd\xf1\xbc\x35\x96\x7f\xfa\xe6\xbb\x93\xc3\x23\x38\x7e\xf1\xf2\x68\xdf\xa9\x22\x0e\x93\xe9\x1c\x03\x76\xe2\xe6\x74\xa7\xd5\xee\xe0\xcd\xce\x43\x26\x51\xe1\x6c\x02\x6f\x4e\xf1\x90\x8a\xe9\x06\xe8\x45\x11\x60\xd9\x0c\xd8\xd4\x94\x5e\xd1\x00\xd5\xdf\x77\x99\x50\x50\x61\x26\xf4\x13\xf8\xcc\x44\x0b\x33\x18\xb1\x25\x69\xcc\xd5\x27\x81\x67\xa7\xfd\x4d\x1e\x72\x51\x86\x3a\xc2\x07\x8f\x7c\x12\xc3\x80\xeb\xb4\x64\x16\x07\x10\xc6\xe8\xa3\xfb\xf2\xc5\xe1\xd1\xeb\xd3\x23\x54\x74\xcd\xb5\xb5\xb5\x35\x23\x04\x51\x14\x0e\xe0\x9e\x7d\x75\x71\x8d\xcd\x32\x69\x72\x8d\x2b\xef\xa3\x34\x4d\x52\xaf\xf6\x4d\x94\x0c\x48\x04\xeb\x51\x38\x58\x87\x04\x37\x22\x80\x44\xe8\x77\x02\xf4\x26\xcc\xf2\xac\x59\xab\x1f\xac\xe1\x56\x01\x03\x29\xa2\xfb\x88\xc8\x50\xaf\xc8\x94\xf5\x6b\x3d\xa0\xcc\xdc\xa7\xb1\x3f\x5f\x87\x3c\x81\xf3\x75\xde\xc9\xf5\x06\x34\x9b\xcd\x0b\x19\xea\xe9\x88\xf8\x63\xd0\x45\x31\xe8\x91\x6c\x33\x26\x13\x7c\xb7\xfc\x3d\x45\x5c\x9a\xc3\x6c\xbd\x01\x12\x0c\x2b\xc9\xfa\x3b\x4b\x23\xa4\x07\x03\xc6\xe1\x64\x90\x70\x52\x70\x30\x4d\x8c\x0a\xc5\xea\xa7\xb3\x98\x99\xdd\x7d\xd9\x5a\x48\xb3\xcb\x02\xf2\x6c\x12\x06\x0c\x5a\xc6\xa7\xc4\x8c\xd3\x3a\xa6\x3c\x8a\xd0\x80\x42\x18\x5f\x25\x6c\xaa\x0a\x78\x50\xce\x28\x1c\xa4\x24\x9d\x43\x18\x87\x79\x48\xa2\xf0\x2f\x04\x37\x9c\xcc\xde\xc9\x0b\x5d\x62\x80\x58\xc9\x43\x61\x80\x65\x97\x40\xd2\x94\x60\xb7\xc3\x3c\xa3\xd1\x10\x08\xe4\xd7\xc9\xa6\xac\x83\xb9\x18\x66\x5a\x5e\xd4\x6a\x71\x12\x65\xe3\x04\x23\x71\x22\x12\x01\xcd\xfc\x34\x1c\xa0\xcf\x15\xeb\xf7\x75\xcc\xe3\x54\xcb\xe6\x20\x4d\x66\x79\x18\xd3\x06\xcc\x32\x3a\x9c\x45\x0c\x1e\x9b\x60\x03\x3a\x98\x8d\x46\x61\x3c\x6a\x82\x82\xdf\x96\x84\x95\x46\xa2\xa2\x85\x26\x64\xa1\x0b\xfc\x41\x74\x49\xc2\x13\xea\xe3\x05\x19\x02\x82\xde\xc6\xf0\x4a\xba\xa0\xb9\xc0\x19\x58\xa0\x04\xd7\x63\x1a\xb3\x19\x1f\xae\x49\x8c\x77\xf6\xe9\xcd\x34\xa5\x99\x80\xb3\x59\x00\x04\x7c\xc0\xfd\x64\x32\x65\x46\x07\xcb\x6d\x02\xb3\x28\xd0\x87\x9d\xd1\x3a\x67\x25\xe5\xa0\x11\x0c\x96\xb6\x39\x8c\x68\x30\xa2\x81\x1a\xb4\x6c\x9e\xe5\x74\x02\x49\xaa\x99\x07\x81\xe7\x29\xf1\xdf\xd3\x14\x21\xd6\x32\x78\x37\xcb\x72\xe1\x22\x9f\x27\x30\x21\xef\x29\x33\x3c\xa6\x49\x96\x85\x83\x88\xf2\xdb\xdb\x83\x19\xd2\x5e\x00\xca\xd0\x3b\x9e\xad\x36\xd3\x59\x1c\x63\x10\xb4\x28\xe2\x54\xe5\x11\x00\x91\x0a\x6f\x34\x9b\x67\x40\x52\x0a\xd9\x94\xfa\x4c\x95\x07\x40\x32\x31\xb6\x59\x13\xe0\x38\x49\x81\xde\x90\xc9\x34\xa2\xcc\x72\xe1\x95\xd9\x07\x99\x3a\x0f\xe8\xd4\xab\xb1\xaf\xdc\x1a\xa9\x35\x00\x7f\xe9\xc5\xd1\x2b\xae\xf6\x31\x32\x5d\xb9\x61\xe4\x6d\x46\xb3\x01\x85\x34\x49\x84\xd5\xc6\x40\xd4\x9a\x00\x7f\x4c\x66\x30\x21\x73\x36\x4a\x5c\x55\x61\x6f\xfd\x88\xa1\x4b\x0a\x64\x4b\x62\x20\xf1\xdc\x10\x3b\x3e\xd4\x14\x7c\x0c\xe8\x0a\xd3\x34\x19\xa5\x64\x82\xf0\x18\x77\x21\xfe\x34\xce\x66\x29\x3d\x29\x8b\xa6\x57\x07\xc2\x38\x9c\xa4\xf9\x6c\x0a\x21\xc6\xc6\x4c\xd2\x80\xa6\xc8\x1c\x58\x4b\xbc\xfc\xc6\x14\x6c\x91\xd5\x42\x9a\xc1\x98\x5c\x51\x61\x5e\x52\x85\x8f\xbc\x9d\xcf\xc9\x7b\x0b\x57\x24\xbd\x44\x6f\x92\x37\xcc\x60\x4c\x61\x92\xa4\x52\x73\x64\xee\x01\xd1\xfa\x84\x91\xde\xb0\xff\x3d\x09\x4b\x47\x8c\xe4\xca\x0a\xef\xca\xe7\xe9\x5c\x06\xf7\x28\x28\x5c\x11\xb1\xcd\x27\x78\x26\x4b\x6f\xcc\xeb\x72\x59\x4e\xfc\xf7\x78\x64\x8a\x01\x5f\x9b\xf8\xbb\x99\x4d\xa3\x30\xf7\x6a\x3f\x88\x68\x83\xe8\x75\xf9\x22\x86\x53\x32\x24\x69\xd8\x10\xf1\x21\xb2\x59\x84\x51\x79\x0d\x10\xd7\x61\x14\x01\xda\xd7\x48\x9b\x8e\xd4\x4d\xfc\x15\x01\xe4\x5f\x0e\x8c\x19\x40\x57\x61\x30\x23\x91\xec\x36\x32\xe8\x30\x49\x27\xcc\x98\x09\x44\x5c\x5f\x1a\xe7\xd1\x9c\x07\xf7\xc5\x28\x22\xaa\xa5\x66\x44\xe3\x51\x3e\x86\x27\x5d\xd8\x36\xa3\x8a\xe0\x34\xd7\x35\x50\x3a\xef\x5c\x34\x53\x3a\x8d\x88\x4f\xbd\xad\x7f\xf8\x21\xbb\x4f\xf2\x1f\xb2\x8d\xad\x06\xd4\x64\xd7\x0a\x81\x8b\x5c\x30\xda\x05\x18\x23\x3e\x81\x31\x59\xfb\xad\x05\x6a\x4d\x04\x27\x61\xca\xcf\xc3\x4b\xfe\xd0\x85\xd6\x01\x84\xf0\x18\x88\x74\x40\x11\xb8\x1f\x40\xb8\xb1\x61\x0e\xc5\x94\x60\x50\x65\x55\xee\x3c\x14\xd7\x0a\x59\xd7\x31\x93\x47\xd2\xf0\xd9\x54\x8b\x88\xe9\x9e\x2b\x76\x69\xe2\xd3\x04\x5e\x14\x0e\x1a\x08\xd0\xdd\x49\x3c\x58\x44\x47\x28\xbe\x40\x74\x4c\x5c\xe7\xac\xf6\x85\x5c\x2b\x62\xb4\x4b\x92\xce\xeb\x6a\xed\xb8\x52\x75\xa1\xba\x55\x0d\x7e\x39\x8d\x93\xd8\xa2\x99\x31\x45\x1e\xa1\xe8\x65\x4b\x64\x8f\x71\xcb\x84\xe6\x0d\x8c\x29\x12\x03\xbd\xf1\x29\x1a\xba\x7c\x76\x49\x93\x6b\x3d\x47\x5e\xd1\x74\x0e\xb3\x78\x42\x73\xc7\x8c\xc1\x59\x76\x40\x21\x4a\x46\x23\x1d\xca\xef\x77\xa7\xea\xec\x14\xe0\xc5\x50\x4c\x07\x6c\x01\x98\xe3\xca\xcf\xb6\x28\x38\x70\x54\x5f\x08\x2e\x25\x61\x46\x2d\xb4\xb4\x50\x57\xea\xa3\x4b\x53\xd2\xb5\x84\x4f\x49\x96\xd1\x80\x91\x1a\x9d\x6c\x4d\xe6\x12\x3c\x01\x55\xb6\x87\x25\xe7\x48\x73\x34\x3f\xba\x95\x15\xcc\x31\x67\x95\xb8\x02\xef\x62\x43\x52\x27\x70\xd3\x4c\xeb\x04\xa2\x76\xd8\x78\x9c\xec\x9b\x1c\x6a\x7c\x6b\xa2\x26\x67\x7a\x21\x2e\x42\x6f\x03\xaf\x75\x9d\xa4\xef\x69\x0a\x61\x5e\xcb\x24\x34\xa6\xb3\x69\x00\x35\x66\xa7\xd4\x9a\x0a\x8b\x64\xf0\x0e\xba\x20\xc2\x45\xc2\x87\x0f\x78\x8f\x5e\x70\x8f\x4b\xd0\x10\x6b\x97\x90\x09\x36\xf6\xb0\xc0\x79\x78\xc1\x68\x97\x0c\xde\xd5\xcd\x5d\x15\x39\xea\xd7\x24\x8d\xbd\xda\xab\x30\xcb\x98\x8a\x5b\xaf\x61\xd8\xfc\x7c\x0c\x1b\x50\x43\xd3\x90\xcd\x6a\x38\x93\xd5\x1a\x06\x6d\x8d\xbd\x15\x35\x6e\x86\xf7\x33\x14\xcf\xbf\x45\x24\x23\x10\x7d\x4c\x06\xef\xce\x25\x72\x17\x05\x95\x82\xa8\x73\xa0\x75\xa7\x96\xaf\x1d\x93\x90\x91\xcf\xc1\xe3\xfe\x98\xfa\xef\xd9\xb8\xdd\x9a\x66\xd4\x28\xcc\x72\x8a\xd2\x63\x1b\x97\x96\x41\x26\xa7\xd8\x8a\x22\x5c\x10\xa5\xcd\x1a\xc6\x90\x22\xd8\x94\x97\xe2\xd3\x29\xb3\xbc\x50\x7a\x84\x65\xe7\xd5\xd1\x1c\xe5\x75\x98\x65\xc8\x8c\x58\xb5\xc7\xc5\x05\x48\xb8\x5c\x13\x60\xe4\x8f\x28\xe0\xa4\x4a\x73\x9a\x36\x78\x48\x1b\x06\x0f\xed\x54\x55\xcf\xb6\x9e\xd1\xda\x0b\x73\x34\xe0\x22\x9a\x53\x34\x7f\x19\x94\xdc\xb4\x5b\xcb\x06\x75\x71\xf6\x66\xa3\x01\x3d\x61\x0d\x73\x33\x78\x9a\x33\xcc\x30\xc3\x61\x02\x4b\x73\x73\xc8\x8d\x3e\xc0\x38\x55\xd2\x0a\x36\x5b\x50\xa2\x2e\xbf\xd4\x6f\xb5\x49\xbc\x80\xe2\xac\xa3\xa9\x18\x3b\x0e\x50\x9e\x18\xc9\x12\xb7\xdc\x26\x92\xb0\x14\xe9\x0c\xc3\x42\xd4\x7f\x11\x5b\xc1\xcf\x3d\xbe\x20\xb2\xb7\x81\xcb\xf6\x38\x57\xe2\xe7\x76\x61\x7e\x81\x50\x86\x01\x10\x89\x16\xc3\xbd\x90\xfd\xe1\x61\xac\x85\x8d\x6c\x59\xec\x38\xf6\x25\xd3\x4b\x20\xeb\x62\x6d\x6b\x26\x20\x71\x80\x6c\x81\x2c\x80\x96\xa2\x51\xb5\x8a\x7f\x65\xfb\x2f\xec\x7c\xc6\x5b\xd9\x3c\xf6\xc7\x69\x12\x27\x33\x66\x24\x9f\x69\x9c\xe5\x22\x80\xaf\x58\x99\x0a\x62\xd6\x2b\xc3\x0d\x57\x3e\xb8\x44\x8a\x91\xb6\x6a\xd0\x0c\x86\x2f\x70\x9a\x56\xf9\xb7\xb2\x16\x6b\xca\x1c\x6e\xd1\x23\xce\xd3\x45\x3c\x25\x97\x49\x4e\x77\x33\xd9\x7d\x06\x7d\x9a\x5f\x46\xc9\xe8\x58\x42\xee\xc5\xc0\x37\x87\x48\x64\x35\x97\x51\x4e\x48\x54\x98\x76\x73\x29\x8d\x70\xdb\x35\x4a\x46\xf2\x24\x8e\x59\xec\xf6\xca\xcd\xe4\x28\xde\xa3\x46\xb1\x6d\x3d\xbd\x71\x33\xa2\xcc\x64\x2a\xc4\x2f\x4b\x7e\xcd\x66\x95\xd2\xec\xc8\x75\x22\xe3\x21\xae\xeb\xed\x98\x98\x29\xf5\xd1\x98\x9a\x37\xb3\x71\x38\x34\x0e\xc4\x59\xa5\x22\x3a\x4a\x3b\x17\x32\xbc\x1a\x6b\x7e\x1f\x98\xfa\x4f\xa9\x7f\xde\xd2\xf7\x64\xd9\xcf\xf6\x85\x87\xfb\x06\x4d\x12\x91\x74\xe2\x49\x54\xeb\x6e\xa3\x8b\xd3\xc2\x2b\xbd\x79\x60\x6c\xa0\x08\x06\xb8\x67\xc5\x70\x76\x6b\x7b\x39\x35\x25\x8c\x44\x57\x24\x0a\x03\x65\x39\xee\x0b\x38\x62\xa6\x5e\x6c\x75\x78\xbc\x90\x71\x1c\x29\xbb\xc1\xdd\x98\x6e\x0f\x16\xef\x58\x15\x37\xb0\xf5\xd6\x55\xa7\xd5\x7e\xf0\x6b\xdd\xb6\x2a\x44\x93\x16\x2a\xea\xb7\x2c\x97\x35\x72\x15\xd2\x6b\x78\x2b\x3a\xc6\xe3\x8d\x1f\x9d\x76\x5a\xed\xbd\x0d\x18\x52\x92\xa3\x7d\x7a\x4d\xd5\x56\xc2\x2c\xa3\x5c\x04\xf8\xe6\x5f\x3e\xcd\xf6\xb7\xb6\x02\x7a\x45\xa3\x64\x4a\xd3\xe6\x24\xf9\x4b\x18\x45\xa4\x99\xa4\xa3\x2d\x1a\x6f\x7e\x77\xba\x15\x24\x7e\xb6\xf5\x3d\x1d\x6c\xfd\x8e\x5c\x91\x53\x9c\x54\xb6\x4e\xe4\x72\x7a\x8b\xef\x8f\x5d\xf2\x55\x74\xb6\xc5\x1d\x2c\xb6\xa6\x24\x38\x65\x8b\x55\xdc\x70\xbb\xc7\x13\xcd\x97\x32\x44\x36\x97\x82\xca\x6c\x53\x8c\x72\x92\x8e\x68\xfe\x12\x85\x87\xad\x16\xc4\x0d\x5c\x15\x34\x7c\x8b\x59\xbe\x78\x2f\x9f\x6f\x03\x31\xa5\x28\xb6\xe9\xa2\x24\x1e\x01\x8d\x93\xd9\x68\xdc\x30\xee\xe3\x41\x90\xdc\xe3\xec\x6a\x80\x86\x4d\xb1\x4e\x10\x26\x99\x12\x5d\xab\xd0\xe3\x2e\xb4\xea\x4a\xb6\x70\x1a\x11\x9e\x25\xe2\xd9\x0d\x63\x29\xa4\xae\x0a\x77\xbb\xa0\xf6\x1a\x65\x65\x23\x1b\x6a\x50\xb3\x8c\x55\x74\xc3\x64\x3d\x9a\x92\x80\x75\x67\xc2\x96\xb0\xd3\x88\x62\x34\x98\x0c\x7b\xd5\x74\xa3\xf7\x44\xc3\x95\xea\xc6\xd1\x9e\x2e\x93\xd2\x29\x25\xb9\x67\x03\xd9\x2a\x03\x11\x31\x74\xcc\xe3\x36\x5d\x86\x3b\x11\xb7\x1a\x16\x39\xeb\xda\xe7\xc6\x7c\x90\xe4\xf6\x4b\x33\xdf\x51\x1c\x54\xb3\xde\x51\x1c\x54\x33\xde\x91\x75\x2d\xf2\xef\x6c\xf7\xeb\x64\x3b\xb3\xdb\xb8\xda\x59\xcc\x85\x8a\xed\x16\xcf\x0e\xd6\x09\xe6\x3f\x9d\x63\x0d\xf7\xfc\xf0\x9a\xad\xcd\xa6\xc4\xc7\x8d\x2a\xc0\xae\xc1\x2c\x0f\xa3\x30\x0f\xa9\xb1\x6f\xc7\xfb\x5c\xd8\xf9\x3f\x0e\xd3\x2c\x67\x6b\xc5\x09\xb3\xcd\xe3\x18\x4f\xa3\x47\xb3\x88\xbf\x62\x90\xd2\x8c\x3f\xa9\x79\x4d\x6b\x29\x85\x51\x22\x18\x9b\xa1\x81\x18\x8a\xe3\x6f\x61\x3d\xae\x2d\x8b\x02\xfb\xec\xa4\x77\x78\x04\x7f\x7c\xf3\xdd\xc9\xe9\xd1\xcb\xe3\x55\x6a\x00\x40\xe3\xa7\x9f\x7e\xfa\xa9\xb9\x4a\xc9\x0f\x4f\x2e\x1f\xc3\x4f\x3f\xad\x50\x74\xfb\x4f\x9b\x9b\x9b\xb5\xcd\xad\x55\xc0\x6e\xef\xb3\xcf\x0f\x57\x3f\x2c\x2f\xdb\x4d\xba\xbc\x70\x63\x85\xc2\xf0\x01\x44\x61\x2c\xbd\xa0\xc2\xd9\xf3\x23\x38\x39\xfa\xe6\xbb\x97\xbd\x13\x38\xfa\xc3\xdb\x93\xa3\xd3\xd3\x17\x6f\x5e\x9f\x2e\x6f\xa2\x77\x72\x04\x87\x6f\x5e\xbd\x78\xfd\x8d\xb1\x68\x4e\x69\x0d\x23\xde\x5c\x93\x39\x2e\x4f\xd9\xca\x9f\xab\xb0\x93\x23\x88\xc2\x9c\xa6\x24\x62\xeb\x02\xd0\x8a\xb8\x09\x70\x1c\xde\x70\x4e\xbd\x1e\xcf\x21\x48\xe2\x1a\x6e\x3d\xcd\x93\xd9\x53\x80\x37\x63\x5c\xe6\x00\x89\xb2\x84\x9f\x18\x58\x2d\xa0\xcf\x1e\x5b\x34\x73\xc5\x80\x50\x82\x84\x66\x71\x8d\x9f\x58\xa4\xd3\x94\x22\x34\x9a\xf9\x64\x4a\x8d\xc5\x4f\x96\x53\x12\x34\x98\x4d\x93\xe5\x49\x32\xe5\xdb\x60\x61\x06\x6a\xdf\xb3\x0e\x4c\x18\xde\x17\x99\xbc\x99\x52\x3c\xe2\x5a\x43\x55\x77\x78\x7a\x0a\x63\x7a\xc3\x25\xa3\x01\x5f\x9d\x7c\xf3\x8c\xe9\xb5\x31\xbd\x69\xef\xed\xc3\xd6\x57\xde\x39\xd9\x1c\xb6\x36\x1f\x5d\xd4\x5d\xdf\xb6\xc2\xc6\x5a\x05\x9c\x93\x6f\xbe\x79\x26\x41\x75\x76\x2c\x50\x3f\x76\x6e\xeb\xd5\x3f\x6c\x98\xe9\x68\x20\x61\xa6\xa3\x81\x97\xa6\x69\x63\x34\x1a\x35\x06\x83\x41\x9d\x01\x4f\x47\x83\x7d\x34\xb1\x4f\xe8\xe8\xe8\x66\xea\x09\x4d\xeb\xd5\xfe\x61\x2b\xbb\x9f\x8e\x06\x5b\xd9\xfd\x2d\x6f\x2b\xbb\xef\x6d\x05\x3f\xb6\x1b\xdb\xb7\xf5\xad\xec\x7e\xa3\xf8\xbb\x06\x1b\x72\x35\x51\x2b\xe4\x6d\xb1\xbf\xfe\x59\x4d\x66\xd7\xf5\xa6\xf2\x0f\x5b\x5b\xa3\x06\xd4\x7e\xf8\xa1\x56\x6f\x40\x2d\xac\xd5\x57\xc3\xba\x41\x08\x91\x98\x93\x85\xa8\x93\xad\xec\xbe\x85\xd9\xd2\x7e\x14\x7e\x9b\x95\xbd\xa7\xfb\x22\x7b\xc3\x7b\xba\xbf\xd5\xdc\x0a\x36\xea\x4f\x59\xa1\xfa\x47\xf4\xf0\x28\xc4\x90\xd3\x27\xdf\x3c\x63\x4b\x99\x93\x6f\x9e\xf5\x44\x87\x6e\x16\x77\xe8\xe9\xdf\xa6\x47\x4f\x3f\xa2\x4b\xbd\x18\xfe\xd0\x6e\xc3\x3a\xe3\xa7\x20\x08\x82\x2d\xf5\xd7\x3a\x77\xa4\x67\x3d\xbc\x69\xb7\x91\xdf\xf0\x40\x81\x7d\xd3\x7c\xdb\x6e\xec\xdc\xd6\x7f\xd8\x5a\x9a\x90\xdd\xff\x67\x9a\xbf\x8f\xe2\x51\x14\x66\x63\x31\x2b\xc5\x64\x82\xad\xb0\x7f\xf7\x61\xeb\x9c\x6c\xfe\xe5\x82\xfd\xd5\xda\x7c\xf4\x43\x76\xb1\xb1\xd5\x30\x77\x66\x0e\x93\x18\xdf\x5d\x24\x92\xdd\xbc\x20\x08\x1a\xe2\xff\xba\x80\x88\x88\x33\x2d\x92\x00\xe1\xfd\x33\xd2\xd5\x89\x23\x8e\x25\x83\x62\x64\x8a\x3d\xc2\x51\x9c\xa4\x7c\x83\x5d\xec\xf0\x64\x24\x0e\x73\xb6\xfe\xc7\xe7\x2b\xc6\x24\x0e\x22\xb1\x49\xa6\x8e\xb6\x6b\x41\x10\xd4\x70\x6b\x03\xef\xf6\x89\xd3\xfb\x98\xc2\x60\x9e\x53\x81\x92\x3e\x43\x0b\x63\x08\xa8\x1f\x4e\x30\x62\x75\xc5\x61\x1c\xab\x81\x36\x87\x8d\x23\x43\xcb\xe7\x64\xb0\x37\xd5\x64\x4d\x56\xa7\xd0\x69\xc6\xaf\xf1\x2c\x8a\x98\xd5\xc6\x4c\x08\x9e\xe8\x63\xe8\x73\x7e\xde\xa9\xf7\x66\x10\x32\xdf\xfc\xb1\xd5\xe7\x68\x70\x96\x30\xb8\xd6\x29\x9f\xf2\x2e\x55\xdb\x32\x99\x4f\x22\xea\xa9\x67\x3f\xae\xa0\x0b\x9e\x8a\xd3\x79\xd5\x80\xce\xee\x6e\x1d\xee\x43\x67\xf7\x81\x7d\x11\xd1\xf2\xe3\xe3\x7b\x15\x7f\x99\x92\x80\x55\xd9\x11\x0f\x2e\x59\x1b\x31\x7c\x34\x27\x24\xf7\xc7\x9e\xad\xe5\x19\xaa\x37\x58\xc5\x3e\x0b\xb2\x62\xe7\xea\x2d\xc0\x1a\x63\xe9\x1a\x6c\x08\xcc\x49\x3a\x3f\x6f\x5f\x30\xbb\xb2\xb6\x65\xa7\x76\x9c\xa9\xdb\x17\xf6\x6e\xb5\x66\xd1\x88\x8e\x88\x3f\x57\x63\x71\x45\x8b\xac\x29\x79\xb8\xd9\x6c\xd6\x5d\x3c\x7a\x36\xa6\x73\xc8\xc9\x7b\x6e\x91\x0f\x93\x74\xb2\xcf\x92\xdb\x1d\x18\x84\xf9\x3e\x4e\x5a\x7a\x5e\xdf\x7c\x02\x5f\x9d\xb4\x5a\xad\x6f\x5a\xad\xd6\xb3\x56\xab\xc5\x4a\x76\x76\x64\x49\x9c\x96\xcc\x92\x27\xad\xd6\x37\xdf\xb4\x5a\xcf\x9e\xf1\x92\xdb\x7b\xaa\xe4\xc9\x37\xac\xec\x33\x5d\xf2\xa4\xf5\xcd\x37\xdf\xb4\x9e\x3d\x7b\x86\x25\x77\x1e\xea\x92\xac\x28\x2b\xfb\x4c\x60\x9b\x51\x14\x20\x86\xed\x24\xc9\x72\xc8\xc2\x51\x1c\x0e\x43\x9f\xc4\x39\xab\xa4\x66\x71\xf5\xe6\xb9\x90\x3a\xdc\xfd\x0d\x92\x6b\xdc\xd4\xe3\x48\xab\x97\x53\x49\x5e\xcb\x70\x77\x95\x51\x2b\x9b\x4d\xb9\x4f\x67\x91\x3b\x6f\xda\xed\xe7\xf4\xe6\x2c\x61\x85\x4c\x06\xd5\x0f\x9e\xdd\xbb\x6a\xe2\x09\x7a\xf6\x7d\x98\x8f\xbd\xda\x57\xb5\xba\x83\x2b\x50\x3f\x31\x9e\x9c\xf2\x9d\x5f\x4a\x02\x66\x9e\x7c\x05\xc9\x70\xc8\x94\x14\xe3\xe6\xab\x66\x36\x1b\x64\x79\xea\x89\x65\x09\xbe\x06\x8b\x5e\x04\x33\x11\x51\x23\x0b\xff\x82\x16\x0b\xb6\x7b\xbe\xdd\x80\xbd\x06\x3c\x6a\x40\xbb\x73\xa1\x62\x5e\x5f\xa9\xe5\x4d\xb7\x0b\x9b\x6d\x37\x83\x6a\xc8\x71\x12\x6f\x32\x33\x83\xd3\x4b\x82\xbe\x12\xec\xbf\x75\xfe\x0f\x42\xdd\x6e\x85\xae\x5e\x89\x6e\x4d\xa3\x30\x17\x9e\x17\x68\xf5\x27\x33\x0c\xd6\x8f\x67\x6e\xdc\xc1\x5a\x62\x05\x5b\xb0\x7d\x20\xb2\x52\xb3\xcb\x2d\xfe\x72\x4c\x5d\x66\x8e\xcc\x4c\x96\x53\xc8\x1f\x14\xf3\x99\xe8\x98\xc5\x38\x6a\xaf\x93\x74\x22\xf6\xdb\x13\x68\xef\x49\x5e\xd1\x4a\x25\x4e\xd2\x49\x7b\xcf\xd6\x2a\xea\x61\xda\xab\x06\x14\xf5\x07\xef\x4f\x17\x3a\xf0\x14\xae\x60\x5f\x09\xc9\xd6\x96\x00\x6f\x3a\x81\xcb\xc2\x6d\x2c\xfc\xf8\x31\xec\xf0\x1a\x5b\x5b\xf0\xb0\x58\xf6\x0a\x9e\x3c\x01\x6f\x07\xee\xf3\x37\x78\x60\x13\x3a\xf5\xfa\x01\x96\xed\xec\x30\x35\xbb\xdd\x11\x55\x6e\xd7\x2c\x6d\x26\xf8\x14\xbd\x98\xce\x12\x66\x3c\x78\xe7\x69\x03\x46\x0d\x18\x5c\x34\x27\x64\xea\xf1\x2e\xd6\x2b\x94\x49\x69\x1e\xbb\x8b\x12\xc1\xba\xbc\xd6\x84\xcc\xd1\x0b\xc8\x84\xc7\x8f\x47\xf8\xe9\x34\x53\x29\x62\xca\x18\x2a\xad\xc3\xc0\x30\x25\x39\x1e\x8f\xc7\x5b\xea\x2f\x71\xdc\x6c\xcc\x79\x02\xb1\x0c\x22\x9a\x65\xdc\x37\x79\x07\x82\x70\x14\xe6\x19\x84\xb9\x38\x01\x98\x92\x20\xa0\x01\x63\x3e\x36\xd8\x3b\xe8\xa2\x21\x66\x8d\x40\xe9\x80\x61\x88\x4e\x62\xea\x50\x8d\x4d\xa2\xcb\x67\xca\x22\x89\x56\x99\x29\x8b\xb3\xeb\x67\x98\x29\x6f\xda\xed\x2a\x45\x54\x35\x4b\x6e\x6d\xc1\x5b\xc2\x89\x22\x54\x22\xc6\x14\xd5\x74\x1c\x26\xb3\x54\x90\x12\x4f\x78\xc2\x0c\xc4\x9b\xe7\xe0\x4d\xd3\x64\x40\x06\x91\x98\xe5\xb6\xb6\x00\xb5\x02\xcd\xc4\xcb\xbb\xc2\x75\x2b\x08\x87\xc3\xd0\x9f\x45\x48\xf6\x8c\xf0\xd3\x20\x6e\xdd\xa0\xa6\xc5\xc2\x90\x51\x3a\xc9\x20\x4f\x24\x28\x92\xa6\x78\xba\xc9\xe6\x33\x31\x72\x9c\x24\xc2\x4b\x26\x86\x29\x4d\xf1\x49\x01\xbe\x5d\x90\x4c\x06\x61\x2c\x8e\x54\x87\x12\xc8\x88\x4c\x26\x8c\x4f\x52\xf1\xea\x48\x43\x50\x9c\x6f\x50\xe4\x29\x89\x33\xee\x4e\x83\x79\x0c\xf2\x9f\x67\x24\xce\xd5\x81\xa7\xda\x70\x52\xfa\x89\x49\xab\x3e\x44\x61\xca\x8d\xf3\x89\x60\xb6\x29\x51\x0c\x86\x84\x1b\xcc\x81\x6f\x37\x49\xbf\x40\xe5\x0a\xdb\x04\x58\x1f\xae\xc3\x80\xfa\xc9\x84\x66\x1a\xde\xfa\x70\x38\x1c\xae\x37\x01\x4e\x7d\x82\x37\xd1\x91\x33\x09\x28\x25\xac\x76\x76\x84\x4b\x33\x6b\xa3\xb3\xfb\x40\x3a\x12\x64\x64\x42\x35\x34\x92\x81\x3f\xcb\x73\xfe\x44\xcd\x50\x99\x85\x4d\x80\xef\x29\x64\xef\xc5\x6c\x33\x09\x83\x20\x62\xcb\x5a\x3a\x45\x22\xa0\xb3\x5d\x90\xcc\xd4\xa3\x97\x22\x3e\xad\x81\xbd\xbd\x1d\xa8\x35\x22\x6c\x80\xa9\x15\x6f\xdd\x24\xec\x14\x48\x38\x09\x23\x92\x42\x40\x49\x04\x6c\xc1\xde\x04\x94\xa8\x29\x09\x32\xc8\xaf\x13\x4e\x5c\x35\x65\x17\x48\xaa\xe1\xa0\xc1\xeb\xb1\xe1\x65\x3c\x0e\xb3\xa9\x20\x4d\x9d\x51\x13\x59\xad\xb0\x73\xc4\xcb\x85\x39\x9a\x01\x1a\x0e\xa7\x78\x3c\xbf\x26\x73\x5c\xee\xfb\x24\xe6\x24\x91\xa1\xdc\xc6\x4c\x5a\xc3\x11\x86\x96\x51\x8b\x15\x27\x39\x96\x93\x62\xdb\x22\xc5\xd9\x38\xa5\xd4\xee\x2f\x13\x0c\x71\x72\x2f\xe4\xa0\xc4\x54\x43\xc4\x04\x6b\x35\x35\x2c\xda\x1c\x35\xa1\xdd\x1a\x4a\x1e\x63\xdf\x87\x32\x1f\xed\x09\x36\x58\x72\x8e\xec\xd8\x68\xb2\x61\x41\xea\x70\xc5\x38\xa6\xd0\x31\x16\x14\x4d\x73\xca\x43\x1b\x3b\x4d\x66\x71\xe0\x15\x3a\x0e\x5b\x48\x7e\x97\x0d\xed\xb6\x9f\xf9\x82\xcf\xb6\xa0\xb5\xa2\xe2\xf1\x6e\x84\x7d\x84\x16\x2e\x17\xde\xa6\x41\x58\xa7\xa5\xe5\x9a\x0f\x0d\xbb\xcd\xbb\x12\x7d\xa7\x51\x46\x2b\x2b\xb0\xc9\x0a\xe7\x4f\x51\x1c\x7b\x84\x67\xa7\x53\xb9\xf9\xdb\x36\x0f\xf8\x2b\xe6\x5e\x56\x83\xcd\xba\xc8\x7b\xee\x49\x37\xe3\x17\x67\x84\x1f\x24\xd3\xe7\x35\x61\x47\xd7\xec\x35\x23\xce\xc4\xf9\x98\x86\xa9\x9a\x88\x85\x5b\xb1\x7a\xc6\x17\x7d\xe0\xf8\xea\x52\xcd\x1b\x6c\x82\xc3\xf5\x79\x93\xcf\xa3\x62\xaa\x21\xb1\xf0\x40\x55\x05\x1b\x7a\xf2\x14\x2b\xfa\x80\x4f\x0f\x6c\xa2\x72\xcf\x8a\x1f\xb8\xeb\xe1\x63\xfe\xeb\xc9\x2d\xf4\xe4\x4c\x6a\x4c\xf0\xa9\xf0\xb8\x4e\x86\x3a\x95\xeb\x7e\x6b\x86\x73\xcd\x9d\x25\xf8\xe8\xc7\xa1\x7a\xa6\x1a\x50\xf6\xaa\x3d\x43\x8e\xd9\x90\xb3\x36\x8d\x19\x92\xa4\x23\x7d\xd6\x8e\xfb\x70\xe2\xb4\xdd\x60\x4c\x4c\x3e\xd0\x65\x3a\x3b\xce\x32\x9d\x1d\xee\x7d\x26\x27\x5b\x81\x98\x37\xd6\x0e\xa5\x8c\x4d\xc7\xf4\xc6\xd0\x00\x3b\x5a\x03\x30\x25\xdf\x65\x7f\xab\x1d\x14\x6c\x58\xdf\x25\xf4\xc6\x0d\x10\xc6\x9b\xe3\x42\xf4\xfa\x57\xeb\xb0\x01\xa9\xf8\x7f\x24\xfe\x1f\xb0\xff\x95\x37\x95\x75\xf7\x5a\x0b\x24\x6b\x93\x8b\x24\x76\xa3\xae\x8f\x82\x4c\x97\xc6\xa2\x71\x6f\x2d\x65\x3d\xee\x00\x26\x34\x00\x5f\xcd\x72\x35\xb0\x01\xb5\x06\x18\x7b\x49\x76\xa9\xce\x4a\xa5\xb6\x75\xa9\x7a\xed\xc0\xf4\xf8\x22\xe9\xa8\xd2\xeb\xb3\xc2\xc9\xd4\xed\xf9\x46\xd2\xd1\x79\x78\xc1\x23\xdf\xe1\xb0\xf1\x04\xd3\x19\xc1\xf4\x56\x60\xed\x5a\x65\xb5\x5a\x10\x54\x21\xe9\x68\x35\xf9\x56\x66\x34\x13\x5d\x4b\xae\xdd\x92\xaf\x36\xa5\x87\xe2\x05\x34\x12\xe3\xfe\xa6\x06\xc2\x1d\x90\x49\x34\x1d\x13\x18\x86\x34\x0a\xb4\xd3\x27\x90\x6b\x32\xff\xf5\xe9\x07\x45\x83\xb2\x92\x30\x95\x1b\x67\x5b\xa1\x30\xbe\xa0\xa6\xc0\x5d\xa7\xe7\x28\x8f\x65\x4d\x51\x12\x70\x36\x6b\x19\x9e\xa4\xda\x63\x47\x40\xf3\x53\xe2\xbf\x67\x73\x87\x9c\xde\x96\xc8\x96\x29\x5a\x5f\x31\xb9\x32\xf6\xa5\x3c\xcf\x12\x8c\xd6\x45\x9d\x2d\x1d\x99\x6c\xd8\xe1\x6a\x4b\x1f\xaf\x20\x9c\x58\x0f\x1e\xde\xb1\x5e\x47\xd4\x6b\xd5\xed\x6d\xb4\x06\xec\xd5\xff\x89\xca\xe5\x19\x11\xce\x70\xdc\x47\xc8\xcf\x32\x21\x6d\x78\x7e\x1d\xe2\x48\xe3\xb2\x83\x55\xc6\x05\x22\x5f\x01\xa7\xa3\x01\xe3\x20\x26\x79\xf6\xd2\xf7\x04\xdb\xc9\x96\x2c\xe8\x70\x73\x01\x77\x1f\xca\x4b\x39\x95\x55\x58\xce\x05\x74\xa8\x77\x96\x02\x3a\x5c\xb8\xb5\xe4\x98\xf8\x10\x80\x72\xa9\x72\x6c\x5f\x36\x73\x9a\xe5\x58\xca\x02\x15\xd0\xa1\xb9\x75\xe9\xb4\x8b\x38\x68\xe7\x8e\xe4\x36\xa3\xd3\x0e\x58\x57\xaa\x4c\x32\x0a\xcd\xc5\x65\xb5\x44\x0c\xc3\x7e\xb2\xc5\x71\x6e\x38\xc9\xa1\xaa\xeb\x9a\xce\x6e\xf0\x84\x59\xd7\x4f\x81\x4f\x1f\xb0\x0f\xed\x03\x7b\xf3\x95\xe0\x94\xc5\x85\x48\x4d\x3f\xc0\x85\xc3\xfe\xdd\x31\x7f\x63\x4b\x62\x1e\x32\x7a\xfb\xe6\x8a\xa6\xfc\x74\x51\xab\x5e\x7f\x4c\xe2\x98\x46\x4c\x89\xf1\x8e\x6e\x21\xb3\x60\xbf\x4a\xdd\xcc\x68\xde\x13\xbd\x50\x7d\x4c\x47\x83\x06\x87\xe5\xf2\x07\xac\xd2\x2e\xa2\xc7\x5d\x5e\x73\x25\xa3\xd4\x1e\xb9\x57\xe1\x0d\x5b\x77\xd3\xd4\xa7\x71\x4e\x46\xb8\xe8\x24\x90\x87\xe8\xc1\x1e\xa1\x3f\x1d\x1b\x3b\x18\x90\x8c\x56\xf4\x66\x12\x5a\xba\x93\x95\x6c\x20\x84\x86\x84\x6b\xf5\xa8\x5d\xd1\x25\x56\x4f\xed\xea\x91\x74\xde\xa9\x28\xc7\x20\xd7\x0f\xaa\x2e\x96\xec\x1c\xc0\xc6\x46\x68\xaa\xe8\x20\x1c\x0e\xb9\xf3\x63\x87\x29\x97\x4d\xc4\x41\x5d\x27\x11\x3f\xe4\x4b\x5f\x85\xd5\x8d\xc8\x65\xc6\x08\x82\xb9\xaf\x7a\x54\xd4\x34\xd5\xf4\x6e\xdb\x04\xe7\x7b\xa4\x25\x1e\x51\x32\xa2\xe6\xc2\x30\xcf\xf4\xc6\x97\x32\x04\xde\xc4\x90\xcd\x7c\x9f\x66\x59\x03\x48\x49\xd0\xe4\xfd\x0d\x8e\x14\x3a\x94\x1f\x73\xbd\x25\x66\x3f\xc3\x5a\x60\xd0\x64\xf9\x8c\xbf\xdc\xdb\x2e\x8d\xad\xa4\xba\x39\xc0\x98\xa5\x75\x13\x67\x0a\x53\x3b\xb1\x5e\xd5\xea\xe5\x69\x92\x97\xac\x3a\x4f\x21\xc6\x74\x69\x2c\x07\xc1\xe5\xb6\xaa\xd4\xfb\xbc\x62\x6a\x58\xb5\xd1\x3b\xb4\xa9\x6e\xec\xb4\x17\xa3\xc1\x98\x42\x5e\x9c\xa0\xdc\x3d\xf5\x90\xcd\x05\xf1\x0f\xb5\x1c\x90\x9e\xdc\x85\x96\x93\xd1\x10\x59\x6e\x10\x2c\xdb\x9a\x45\x5f\x7b\x21\x94\x96\x45\x69\xcd\x4b\xaf\xf5\x35\xc7\x3c\x0d\xa7\x53\x1a\x30\x96\xc2\xdd\x30\x7e\xfd\x4c\xdb\x47\x79\x02\x51\x72\x4d\x53\x9f\x64\xe2\x7e\x0f\x63\x11\xde\x0c\x5a\x7c\xe2\xcc\xa1\x21\x26\xb9\x4c\x73\x97\xe9\xae\x1e\x89\xcb\xbc\x06\x96\x79\x82\xab\xbe\x09\x7f\x9d\x8d\xd5\x0c\x68\x1a\x5e\x99\x0f\x88\x67\x79\xe2\xbf\x67\xbd\x13\x1b\xc0\xcd\xfc\x26\x37\x7d\x7b\xdc\x77\x10\xce\xe4\x09\x83\x6a\x67\xe9\x26\x2c\x6e\x0d\x66\xd3\x04\x63\x0d\x54\x10\xce\x9e\x97\xe5\x6c\x57\xbc\x13\xa0\x39\x5f\x0c\x85\xa5\xa5\xd8\x3f\x48\xfc\xaa\xf9\x59\x97\xc0\x4b\x03\x17\xa8\xc9\x62\x1e\x23\x0d\x0f\xaa\xf3\xe4\x25\x1b\x8e\x43\x22\x83\xe8\x7d\xb9\xa6\xf4\xe9\x7d\xb6\x81\xc7\xf7\xb5\x2f\xd0\x60\x15\x77\x9f\xa9\xe1\xe7\x43\x39\x25\x11\xcd\xf3\xf2\x40\x60\x99\x43\xf6\xfd\x2d\x2f\x61\xcf\x0b\xd2\xde\x59\x03\xf0\xce\x71\x63\x8d\xc2\x7a\xef\xf5\xe9\x0b\x68\xef\xad\xe3\x0d\x5e\x00\xa8\x7d\xd5\xc2\x0f\x9b\xd8\xbf\x3a\x3c\x54\x5f\x77\x8e\x1e\xf5\x5a\x7b\x3c\x75\xa7\x87\xa9\xa2\xfc\xf6\xce\xde\x6e\x6f\x07\x73\x1e\xec\xee\xb6\x1e\x3c\xc3\xaf\xad\xbd\x47\x0f\x1f\xf5\xf0\x6b\x7f\xbb\xff\xe0\xf0\x58\x95\xdf\xdd\xdd\x7d\xb0\xbb\x8d\x39\x47\xc7\x9d\x47\x9d\x47\xbc\x7c\xeb\x59\xaf\xcd\x53\x8f\x0f\x8f\x1e\xed\xe8\xf2\x0f\x3a\x8f\x8e\x59\x75\x96\xd3\x69\xb5\x0e\x9f\xc9\xf2\xbb\xcf\xfa\x1c\x0a\xfb\x1c\xd6\x1a\x6a\x97\x8e\x75\x6c\xef\x66\x4f\x50\xcb\x9f\x0d\x78\x68\x95\x52\xf7\xd8\x97\xdd\x63\xf5\xf5\xe1\x03\xf5\xb5\xa7\x53\xfb\x3a\xf5\x58\x23\xc5\x2a\x2a\x28\xbb\xc7\x0a\xca\xee\xb1\x82\xb2\x7b\xdc\xd3\xa9\x7d\x9d\x6a\x41\x79\xf8\x40\x41\x79\xf8\x40\x41\x79\xf8\x40\x41\x79\xf8\xa0\xa7\x53\xfb\x3a\xd5\x82\xd2\xd3\xb8\xf4\x34\x2e\x3d\x8d\x4b\x4f\xe3\xd2\xd3\xb8\xf4\x6c\x5c\xfa\x1a\x97\xbe\xc6\xa5\xaf\x71\xe9\x6b\x5c\xfa\x1a\x97\xbe\x8d\xcb\xb1\xc6\xe5\x58\xe3\x72\xac\x71\x39\xd6\xb8\x1c\x6b\x5c\x8e\x39\x2e\x92\x47\x8e\xd5\x20\xb1\xaf\x02\x0c\xfb\x2a\xc0\xb0\xaf\x3d\x9d\xda\xd7\xa9\x06\x32\x6c\x5c\x14\x14\x35\x48\xec\x8b\x82\xa2\x06\x89\x7d\xed\xeb\x54\x0b\x8a\x1a\x24\xf6\x55\x41\x51\x83\xc4\xbe\xf6\x74\x6a\x5f\xa7\x5a\x50\x7a\x1a\x97\x9e\xc6\xa5\xa7\x71\xe9\x69\x5c\x7a\x1a\x97\x9e\x8d\x4b\x5f\xe3\xd2\xd7\xb8\xf4\x35\x2e\x7d\x8d\x4b\x5f\xe3\xd2\xb7\x71\x39\xd6\xb8\x1c\x6b\x5c\x8e\x35\x2e\xc7\x1a\x97\x63\x8d\x8b\x3d\x48\x8c\x2c\x02\x0c\xfb\x2a\xc0\xb0\xaf\x02\x0c\xfb\xda\xd3\xa9\x7d\x9d\x6a\x20\xc3\x28\xaa\xa0\xa8\x41\x62\x5f\x15\x14\x35\x48\xec\x6b\x5f\xa7\x5a\x50\xd4\x20\xb1\xaf\x0a\x8a\x1a\x24\xf6\xa5\xa7\x53\xfb\x3a\xd5\x82\xd2\xd3\xb8\xf4\x34\x2e\x3d\x8d\x4b\x4f\xe3\xd2\xd3\xb8\xf4\x6c\x5c\xfa\x1a\x97\xbe\xc6\xa5\xaf\x71\xe9\x6b\x5c\xfa\x1a\x97\xbe\x8d\xcb\xb1\xc6\xe5\x58\xe3\x72\xac\x71\x39\xd6\xb8\x1c\x6b\x5c\xec\x41\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\x69\x49\xea\xd9\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xd3\x92\xd4\xb3\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\xa7\x25\xa9\x67\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\x4f\x4b\x52\xcf\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x96\xa4\x9e\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\x3d\x2d\x49\xbd\x82\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\xb5\x24\xf5\x6d\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\x6b\x49\xea\xdb\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xd7\x92\xd4\xb7\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\xaf\x25\xa9\x6f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\x5f\x4b\x52\xdf\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\xbe\x96\xa4\x7e\x41\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\xac\x25\xe9\x58\x4b\xd2\xb1\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\xac\x25\xe9\xd8\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xd6\x92\x74\x6c\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\x6b\x49\x3a\xb6\x25\xe9\x58\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\xb5\x24\x1d\xdb\x92\x74\xac\x25\xe9\x58\x4b\xd2\xb1\x96\xa4\x63\x2d\x49\xc7\x5a\x92\x8e\x2d\x49\x12\xb6\xdf\x28\xa5\x73\x7e\x8e\x9d\x92\xc9\xd4\x30\xfd\x1e\xb2\x3f\x58\xaf\xdd\x61\x7f\xf8\xd7\x43\xf6\x07\xbf\x76\xf6\xd8\x1f\xfc\xba\xdd\x62\x7f\xf8\xd7\x1e\xfb\xa3\x30\xdd\xc1\x0f\xe6\xec\x1c\xb1\x3f\x7c\x72\x7c\xc8\xfe\xe0\x57\x04\xc2\x61\xef\x1d\xb2\x3f\xf8\xf5\xc1\x1e\xfb\xa3\xd5\x3b\x22\xc3\x55\x76\x8f\xfd\xc1\xaf\x8f\x76\xd8\x1f\xfe\xf5\x88\xfd\xe1\xea\x02\x4b\xe0\xd7\x67\x1d\xf6\x47\x41\x79\x76\xc8\xfe\x60\x0e\xb6\xc4\x71\xef\xb7\xd8\x1f\xfe\xb5\xc7\xfe\xe0\x57\xc4\x95\xc3\x46\x8b\xf9\x08\x9d\x93\x2f\xea\xf6\x3a\xc3\x9f\xa5\x29\x55\x5b\x5a\x62\xa5\xd1\x90\x51\x85\xe6\xfc\x2c\x63\x96\xd1\x14\xf7\xf1\x46\x8e\x53\x02\xbf\x72\x01\x52\x5a\x9f\xd8\x57\x64\x02\xe9\x0b\x47\x7c\x3f\x49\x03\xe1\x90\x60\xad\x7d\x4b\x0b\xdf\x72\xcb\xaf\x45\xf0\x09\xb6\xf4\x5c\x27\x51\xe8\xd3\x41\x34\xa3\xeb\xfb\xe8\x57\xed\x75\x76\x5a\x0d\xe8\xec\x3c\xe4\xae\xaf\xeb\x0d\x2c\x14\xe7\xe1\x9f\x67\xf4\x7a\x1c\xe6\xba\xdc\x2e\x2b\xb7\xbd\xdb\x80\x4e\xdb\x55\xae\xad\x0b\xb2\x32\xdb\x8f\x58\xc1\x47\x8e\x82\x1d\x55\x70\x9b\x35\xda\xd9\x6e\x40\xa7\xb5\xe3\x28\xb8\xad\x0a\xb6\x76\x1b\xd0\x7e\xd4\x69\x40\xfb\xc1\x9e\xa3\xe0\x8e\x2c\xd8\x66\xad\xb6\xb7\xdb\x0d\x68\x77\x5a\xb2\xe0\x9f\x67\x64\x42\xd2\x30\x56\x3d\x69\x77\x1e\x60\x67\x19\x82\x9d\x52\xa9\xf6\x6a\xc5\x54\x2f\xda\x6d\xd6\x0b\xd6\x95\xf6\xa3\x87\xa5\x62\xaa\x0f\xed\x56\x87\xf5\x93\x75\xe4\x41\x19\x35\xd5\x83\x3d\xec\x00\xfb\xab\xad\x7a\xfa\x97\x59\x5a\x18\x2d\x44\x4a\x8f\x16\x2b\xd0\x5e\x5a\x42\xd3\xbd\xb3\x23\x30\xee\x6c\x3f\x34\x4b\x68\x64\x1f\x6d\x0b\x64\x3b\x2d\x0b\x86\x41\xe9\xb6\x44\x74\x5b\x0e\xf2\x80\x86\x23\x03\x51\x56\x1b\xff\x52\x43\x31\x08\xb3\x3f\x1b\x8c\x87\x38\x76\x90\x70\x7b\x56\x89\xf6\xf2\x22\x05\x26\x6a\x6f\x37\xa0\xfd\x70\xdb\x2a\x52\x60\x9f\x87\xac\xc8\xee\x43\xab\x48\x81\x71\x3a\xac\x5c\xeb\x81\x2c\x12\x11\xff\xbd\x2c\xd0\x6a\x00\xfb\x4f\x67\xc5\xfe\x98\x06\x24\x9a\x24\x71\x50\x60\x7c\x8b\x6a\xa6\xa4\x71\x18\x7a\x54\x58\x5e\x7b\x51\x66\xa7\x90\xa9\x46\x8b\x65\x6e\x17\x32\xad\x26\x77\xec\x4c\x63\x8c\xa2\x19\xbd\x0a\x93\x88\xe6\xba\xeb\x0f\x1b\xb0\xc3\xc6\xbb\xa3\x48\x9c\x26\xd7\xb1\xca\xdf\xdb\x6d\xc0\x4e\x87\xfd\x6f\x66\xdb\x63\xb4\xb7\xc3\xfe\x37\xf3\xed\x01\xda\x7d\xc4\xfe\x37\xf3\xed\xd1\xd9\x6d\xb3\xff\xcd\x7c\x7b\x68\x18\x51\xb7\x55\x07\x67\x69\x34\xbf\x4e\x12\x4d\xf8\x0e\x53\x0d\x0f\x77\x58\x47\x4b\x85\x0a\xcc\xd4\x66\x7c\xbb\x5b\x2a\x65\xa3\xdb\x7e\xf4\xe0\xff\x67\xef\xdf\xbb\xdb\xb8\x91\x84\x71\xf8\x7f\x7f\x0a\xd8\x4f\x36\x24\x6d\x8a\x12\x65\x59\xbe\x64\x94\x79\x34\x8e\x33\xeb\x3d\x8e\x93\x8d\x9d\xcd\xbb\x47\xd1\x78\x41\x36\x48\x76\xd4\x6c\x30\x8d\x6e\x49\x9c\xd8\xef\x67\xff\x1d\x54\x15\x80\x02\xba\x79\x71\x92\x99\x9d\x99\x27\x73\xc6\x8a\xd4\x5d\x8d\x46\x17\x0a\x85\xba\xd7\x50\x8c\x4f\x5a\x50\x09\x49\x3d\x3e\x02\xa2\x49\xa1\x12\xaa\x1a\x3f\x1a\x8a\x27\x0e\x68\x2a\x33\x55\x73\xa2\x78\xfa\x08\xc8\x72\x28\xc6\xa7\x47\x29\x4c\x60\x45\x8f\x8e\xdd\x66\x7a\xd4\x1a\x29\x70\x22\xbb\x4a\xc7\xc7\x4f\x39\xa5\x78\xa8\xb0\xb7\x01\x59\xf6\x03\x03\xc9\x78\x28\x3f\x75\xd8\x2d\x0f\x4f\x38\xe9\x4c\x17\xb2\xaa\x2b\xd5\x98\x0e\x46\x7a\xd4\x82\xe9\x60\xa3\x6d\xa0\x0e\x26\xda\x06\xea\x60\xa1\x6d\xa0\x36\x03\x0d\x30\x7a\xaa\x0b\xc9\x0e\xb2\xb1\x5d\x36\x3b\xcc\xc3\x16\x4c\x4c\x2c\x30\xf5\x87\xa7\x29\x50\x42\x2b\x76\xea\x0f\x1f\xa6\x40\x09\xa9\xc0\xd4\x9f\xa6\x40\x31\xa5\xc0\xd4\x3d\x8c\xae\x64\xd1\x9e\xcd\x93\x23\x7e\x3f\x99\xee\xf8\x64\x28\x9e\x9c\x72\x80\x64\xaa\x47\xa7\xe9\x08\xf1\x34\x9f\x8e\xed\x2c\xf8\xfd\x64\x86\x96\x0d\x3c\x0e\xf7\xcb\x19\x58\xff\x39\x3d\x8f\x8f\x2c\x76\x4f\x80\x08\x39\xa4\xc9\x8b\xab\x78\x27\x82\xc8\x71\x7c\x94\xc0\x8c\xf7\x01\x4a\xb8\xff\xc3\xe3\x88\x98\x09\x28\xfe\xb4\x63\x98\xd7\xe3\x74\x4a\xa9\xe8\x70\xca\x45\x87\xe9\x5a\x96\x8c\x91\x26\x87\xaa\xbd\x3b\xde\x7e\x9b\x33\xf0\xe4\xc0\xb5\xb7\x39\x0b\x4f\x4e\x5b\x7b\x9b\x33\xf1\xe4\xa8\xcd\x64\x75\xd5\x3e\x5a\xe2\xfb\xc9\xec\x3b\x46\x98\xeb\x22\x53\x65\x15\x18\x29\xf1\x50\xfb\x63\xdc\x05\x97\xd0\xdb\x13\xe0\x5d\x5d\x80\x09\xdd\x3d\xb6\xdc\xe4\xa4\x0b\x30\xd9\x26\x27\x70\x0c\x77\x01\x26\x0b\x75\x34\x1e\x8a\x27\x1c\xae\x92\xeb\x70\x62\x59\x08\xfa\x11\xc1\x28\x15\x61\xe4\x88\x1d\xe9\x04\xb0\x73\x90\xab\x85\xbc\xca\x03\xbe\x9e\x3a\xc9\xc2\x8b\x0d\x16\x68\x29\xe7\xaa\xac\x65\x34\xe5\xd6\xfa\xe8\x22\xbf\x56\xd1\x9c\x9e\xa0\xfc\xc1\xf6\x58\x0c\x17\xd0\x0f\xec\x04\xf7\xfc\x71\x27\x68\xe0\xac\x4f\xbc\x78\x7a\x74\xd2\x09\x1a\xf8\xeb\xa9\xe3\xaf\x4f\x8f\x3a\x21\xc3\x1a\x8c\x1d\x41\x9d\x72\x3a\xd1\x95\xd5\x7f\x62\x1a\x39\x49\x70\x8c\x30\x1d\x7c\xb6\x0d\xd4\xc1\x67\xdb\x40\x1d\x7c\xb6\x0d\xd4\xe6\xb3\x31\xcc\x74\x91\x87\x3d\xf0\xe8\xe1\x50\x80\xae\x13\xe3\x0b\x80\xc2\xa9\x06\xac\xf2\x98\x6f\xf8\x00\x15\x90\xff\xd8\xca\x3e\xd1\xbe\x0f\x50\x01\xef\x8f\x4e\xdc\x1b\xdb\x63\x85\xa9\x1f\x9d\x0c\x45\x7c\x22\x5b\xa8\x4a\x65\x29\x99\xf1\x6f\x33\x20\xa2\x06\x44\x82\x10\x0c\x62\x0b\xa7\x1b\xa3\x64\x44\x88\xe3\x13\x90\xa7\x2d\xd6\x4f\x1e\x76\xc0\x8d\x63\x45\x01\xd6\xf0\x69\x17\x20\x23\x43\xc7\x02\xc7\x4f\x8e\x3a\x00\x19\x32\x1e\x39\x3d\x29\xc2\xac\x03\x64\xf8\x78\xe4\x98\x5a\x84\x36\x63\x0f\x56\xce\x1b\x1f\x1f\x5b\x32\x4d\xf1\x06\x60\x9c\x6b\x9c\x3c\x1e\x8a\xc7\x4f\xed\xbf\x2e\x28\x26\x8a\x8d\x5b\xac\x3e\x82\x64\xe2\xd8\xb8\xc5\xf5\x23\x48\x26\x92\x8d\x5b\x07\x40\x04\x19\xc4\xb2\xe3\x4e\x46\x4e\x80\x6a\xfb\xc7\xd4\x4d\xf5\x53\xa3\x73\xa3\xa2\x63\xe7\xd4\xfe\xe0\x60\x89\x7a\x60\x4f\xe0\x23\x10\x9c\x1d\x8c\x9a\xe4\xb2\x64\x74\x77\x6c\x25\x5c\x2b\x9b\x04\x08\xb5\x5a\xe5\x65\x72\xde\x83\x5c\xf0\x38\x01\x19\xef\x01\x93\xf0\x01\xfb\xef\x61\x0a\x93\xb0\x81\x53\xe0\x17\x09\x4c\x7a\x84\x30\x59\xc8\x82\x98\xab\x75\x72\xa4\xc2\x26\x67\xcb\x1c\x80\xc6\x7b\x41\xf1\xe3\x1f\x58\x01\x23\x84\x00\xc5\xa5\x00\x60\x05\x8c\x08\x02\x54\x24\x0c\x1c\xc5\x6c\x20\x5f\x46\xc7\x1f\x32\xc2\x47\xd1\xc6\xb0\x20\x6a\x3b\x88\xce\xe6\xb1\x28\xf7\x10\x56\xe3\x24\xfa\x38\x0f\x34\xde\x0b\x2a\x2c\xdd\x13\x12\x2c\x18\x0a\x3c\x54\x58\x3c\x90\x3c\x4e\x23\x14\x78\xa8\xb0\x7c\xa7\x43\xf1\xf8\x09\xc7\xc0\x2c\xaf\xd4\xa4\xca\x83\xba\x0e\xd8\x7e\x08\x0c\x33\x05\x89\x29\xce\x52\xf7\xc9\x93\x14\x26\xa6\x38\xfb\x71\x27\xad\x71\x62\x8a\xb3\x70\x0f\x5b\xe3\xc4\x14\x77\x6c\x3f\xcc\x89\xe7\xb3\xc2\x8a\xd7\x89\x85\x0d\xb8\x0a\x98\xe3\x1c\x61\xce\x74\xa5\x4c\x1d\x31\x67\x3a\x03\xd8\xb7\xcd\x65\x5e\x9a\x89\xae\x74\x50\x88\x8f\x40\x6c\xe6\xb2\xf3\x7c\xa1\x4d\x1d\xbf\x0f\x84\xeb\xd8\xf2\x67\xe5\xad\x44\x61\x66\xfa\x96\xbd\x9b\xea\xd3\xc9\xed\x44\x34\xb7\x72\x1a\xbf\x9d\x6a\xd0\x0f\xe3\xdb\xa9\xea\xfc\x38\xbe\x1d\x09\xab\xc7\xc0\x09\x4e\x2d\xf2\x8f\x53\x98\x44\xbe\xb0\xa7\x94\x67\x19\x9b\x84\x54\x7b\x42\x05\x94\x6e\x10\x50\xe1\x9b\x9f\xa6\x40\x29\x67\x01\x56\xe6\x80\xf8\xd6\x7c\x0a\xfc\x02\x7f\xb0\xfb\x47\xb1\x1c\xcf\x6f\x85\x7d\x36\x14\xf6\xff\xfc\x96\x7f\x0c\x29\x8b\x51\x17\xde\x3e\x4a\x28\x2b\x3a\xb4\x00\x64\xcc\xf7\x27\xfe\xe3\xb7\x3d\x86\x1e\x8e\x87\x02\xff\xf1\xdb\x1e\x37\x56\xac\xc0\x7f\xfc\xb6\xc7\x8a\xd5\xaa\xf0\x1f\xbf\xfd\xc8\xdf\x7e\x92\xec\x1f\xb8\x7d\xea\xcf\xb2\xf1\x50\xe0\x3f\x7e\xfb\xb1\xbf\xfd\x10\xcd\x57\x27\xd1\xbb\x9f\xf8\xdb\xa7\x43\x81\xff\xf8\xed\xa7\xfe\xf6\x93\x84\x07\x44\x47\xf8\xa3\xa1\xb0\xff\xe7\xb7\x3c\x4e\xd1\x64\xc5\xcc\x56\x70\xdb\x23\x14\x64\x3a\xf8\xc7\x6f\x87\x91\x4f\x87\x02\xff\xf1\xdb\x1e\xa1\x68\x2f\x63\x36\x33\xb8\x1d\x8c\x1c\x63\x14\x69\x4e\xa3\x77\x7b\x84\xa2\x35\x8e\x59\xe4\xe0\xb6\x47\xe8\xe9\xe9\x50\xe0\x3f\x7e\xfb\x31\xb7\xa0\xe0\x3f\x7e\xdb\x23\xf4\xf1\x78\x28\xf0\x1f\xbf\xed\x11\xfa\xf8\x64\x28\xf0\x1f\xbb\xed\xbf\xeb\xc9\x50\x3c\x09\x8a\x1b\xdc\xf2\x08\x7d\x6c\x65\x16\xf8\xc7\x6f\x7b\x84\xa2\x38\xc3\x44\x1a\xb8\x7d\xcc\x25\x23\xfc\xc7\x6f\x87\x17\x9f\x0c\x05\xfe\xe3\xb7\x83\x5c\x65\xc5\x17\xf8\xc7\x6f\x7b\x84\x5a\x35\x0f\xff\xf1\xdb\x1e\xa1\x4f\x8f\x87\x02\xff\xf1\xdb\x1e\xa1\x4f\x4f\x86\x02\xff\xf1\xdb\x1e\xa1\x4f\x1f\x0f\x05\xfe\xe3\xb7\x3d\x42\x9f\x3e\x1d\x0a\xfc\xc7\x6e\x33\x29\x18\x25\x99\x31\xe7\x19\x27\x47\xe1\xf6\x31\x29\x45\xe3\x23\x3e\xb9\x93\xf1\x36\x51\x00\x20\x82\x1c\x6b\x35\x52\xf7\x83\x43\x3c\x8c\xd5\x41\xfa\xc1\x21\x98\xc2\x78\x0c\xba\x2a\x57\x58\x01\xe2\x51\x80\x78\x44\xb6\xd2\xf1\x38\x9a\xc7\x69\x80\x78\x4c\x47\xc2\x78\x1c\xcd\xe3\x71\x90\xa3\x41\xb3\x39\xe2\x36\x1c\x80\x78\x12\x20\x8e\x41\xf7\xe1\x0a\x10\x40\x3c\x0d\x10\x8f\x9c\x27\xe0\x98\xcf\x23\x4c\x14\x2c\xa3\xf6\x1f\xbf\x1b\x30\x6e\x75\x59\xf7\x83\x43\x04\x8c\x83\xc4\x44\x3f\x38\x44\xc0\x38\xa8\x69\xf4\x83\x43\x04\x8c\x3f\x04\xe5\xe7\x11\xb7\x78\x03\x04\x3b\x89\x40\x42\xc2\x1f\x1c\x22\x7c\xc8\xc9\x11\xe9\xe7\xe3\x93\x68\x1e\xa7\xb1\x1a\x48\x3f\x38\x44\xc0\xf8\x09\xe8\xf8\x8f\xb8\xb5\x1c\x20\x9e\x44\xfa\x83\xfb\xc1\x21\x02\xc6\x41\x1f\xa5\x1f\x0c\x22\x4c\x03\x0e\x5e\x66\x6a\x82\xbb\x47\x91\xc2\xee\x7e\x70\x08\xa6\xb3\x59\x7d\x80\x7e\x70\x88\x80\x71\xb0\xc0\xd3\x0f\x0e\xc1\x8c\x23\x56\x85\xa4\x1f\x1c\x82\x89\xa5\x76\x0a\xf4\x83\x43\x04\x8c\x5b\xae\xeb\x7e\x70\x88\xf0\xa9\xa7\x20\xd3\xe0\x0f\x0e\x11\x30\x6e\x79\xaf\xfb\xc1\x21\x02\xc6\xc1\xda\x46\x3f\x38\x44\xc0\xf8\xe3\x53\x70\xa5\x72\x7f\xaa\x85\x08\x2f\x71\x7a\x16\x9f\xc3\xe3\x80\x71\xcb\x87\xdd\x0f\x0e\x11\x30\xfe\xc4\x4e\x90\x7e\x70\x08\x66\x10\x38\x71\x3e\x9b\x88\x27\x3f\x0e\x18\x7f\x62\x27\x48\x3f\x38\x44\xc0\x38\x9a\xdf\xf0\x07\x87\x08\x18\xb7\xba\x99\xfb\xc1\x21\x02\xc6\x2d\x67\x76\x3f\x38\x44\x40\xc6\xd3\x53\xf0\x3f\x72\x27\x24\x40\x04\x8c\x3f\x05\xcb\x3d\xfe\xe0\x10\x4f\x83\xf0\x38\x26\x61\xf8\xf8\x88\xcf\xe3\x49\x00\x40\xed\x37\xe2\x5b\x4f\x82\x00\x77\x04\x7a\xe1\x09\xb7\x4a\x01\x04\x33\x09\x82\x47\x07\x7f\x70\x88\x20\xe5\x1e\x3d\x05\x55\x9f\xeb\xfb\x00\x11\x44\x5c\xcb\xa0\xdd\x0f\x0e\x71\x12\x20\xec\x14\xe8\x07\x87\x78\x14\x20\xec\x14\xe8\x07\x87\x38\x0d\x10\x18\x1a\xc0\xe3\x03\x00\xe2\x71\x50\x5f\xc0\x91\x85\x3f\x38\x44\x40\x17\xb8\xb0\xe9\x07\x87\x08\x18\x07\xb7\x13\xfd\x60\x10\x01\xe0\xa1\x55\x46\xed\x3f\x7e\x37\x60\x1c\xfc\x68\xf4\x83\x43\x04\x8c\x83\xdb\x81\x7e\x70\x08\xa6\x57\x78\x87\x70\xc4\xa5\x9f\x06\x8c\x3f\x7c\x0c\x8e\x12\xee\x2d\x01\x88\x80\x71\x0c\xcf\x88\x94\x42\x80\x08\x18\x07\xb7\x1f\xfd\xe0\x10\x01\xe3\xc1\x17\x1f\x71\xe9\xa7\x01\xe3\x27\x76\x0a\xf4\x83\x43\x04\x8c\x83\x5e\x4a\x3f\x38\x44\x40\x28\x38\x29\xe9\x87\x87\x88\x4d\xee\x91\x1f\x30\x36\x25\x76\xde\x6d\x39\x50\xa2\xbb\x2d\xff\x49\x74\xb7\xe5\x3e\x89\xee\xae\x55\x51\xe8\x9b\x88\x67\xa2\x41\x20\x7c\xbe\xda\xa1\xb7\xa9\xcd\x7a\x9b\xda\xac\xb7\xa9\xed\x7a\x9b\xda\xad\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xac\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xcd\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xae\xb7\xa9\xed\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xaa\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\xad\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x9d\x7a\x9b\xda\xa9\xb7\xa9\x1d\x7a\xdb\x42\x97\x6a\x9d\xa9\x9b\xf8\x6b\x30\x22\xef\x28\x81\xe9\x8a\x3c\x6f\x01\x75\x05\x9f\x7b\x0a\x70\x40\x1d\xf1\xe7\x21\xac\xc4\x01\x75\x86\xa0\x8f\x3d\x50\xdd\x0a\x3c\x40\x21\xe9\xc9\x51\x0c\x92\x86\x4e\x1e\x75\xc0\x74\x44\x4f\x8e\x4f\x1f\xc7\x30\x49\x00\xe5\x29\x38\xc3\x63\x90\xd8\x3b\x68\x0f\x2b\x9f\x28\x90\x97\x59\x12\x4b\x01\xa3\x70\x99\xd4\x83\x24\x33\x86\xd9\x1c\x9d\xa6\x50\xf1\x9c\x23\x01\xd4\xc3\xc4\x73\x7e\xc2\xe3\x93\x3d\x4c\x7b\xd2\xfe\x80\xcd\xaf\x75\xb5\xee\x50\x51\xfd\xa2\x03\xc0\x78\x27\x44\x1a\xc5\x19\xd1\x04\x40\xa4\x21\x9c\x11\x41\x00\x44\x1a\xbf\x19\x51\x43\x14\xab\x87\xd4\xf9\x30\x12\x9b\x00\x20\x8d\x38\x3d\xe5\x62\x13\x40\xa4\x13\x3d\xe2\x02\x1e\x40\xa4\xa9\x2a\x4f\xb8\x38\x0c\x10\xe9\x44\xad\xaa\xe5\x10\x5a\xc8\x6b\x55\x66\xaa\x0a\xaf\x71\x53\x0d\x7b\xd6\xc1\x4c\x8a\xc6\x2c\x92\x19\x1f\x71\x06\x11\x01\xa6\xdf\xb6\x19\x32\xcd\xca\x39\xe1\x0c\x34\x82\x4c\xbf\xf5\x21\x84\x93\x77\x41\x76\xe5\xe5\x78\x0f\x7b\x21\x6f\xca\x38\xe8\x0c\xde\xf9\x88\x05\xf0\x15\x6a\xa9\xcb\xe9\x22\x9f\xcd\x58\x08\x5b\x08\x92\xf0\x7a\x0f\x87\x4b\xc9\x6e\x23\x60\xba\xa8\x0f\xb9\xac\xc1\x01\x53\x22\x04\x51\xb2\x6b\xc4\xf4\x73\x1f\x73\xad\xa9\xc8\xe7\x8b\x28\xf0\x1f\x4d\x4e\x10\xec\xe2\xd5\x09\x0f\x14\xc7\x19\x62\x32\x95\xb7\x00\x79\xa8\x38\xce\x10\x33\xa9\xbc\xd2\xe0\xa1\xe2\x38\x43\x48\xa3\x62\x18\x71\x50\x71\x9c\xa1\xe3\xad\x1c\x2a\x8e\x48\x07\xfd\x03\xa2\x7a\x8e\xa3\x37\xf2\xa8\x63\xa4\xa2\xd8\x7c\xe5\x81\xc6\x7b\x41\x25\x52\x50\x1c\x4d\xe7\xa1\x98\xec\xd9\x0e\xa5\xf6\x50\x27\xb1\x36\x19\x87\xd1\x01\x54\x3b\xc6\x04\x37\xc3\x98\xeb\x7c\x31\x64\x9a\xf6\x76\xba\x79\xd0\x74\x8b\x1d\x6d\x1e\x35\xdd\x63\x47\x2d\x52\xda\x14\x7b\x62\x25\x1f\xaf\x1c\xc4\x90\xb1\xc9\x93\x09\x06\xe3\x78\x12\x2c\x60\x05\xd2\x65\xdc\x8f\x18\x28\x0a\x17\x75\x67\x7a\x38\xfb\x1c\xd4\xee\xa1\xda\x07\x36\x44\x39\x7a\x3e\xef\x81\x92\x03\xf0\x31\xe8\x20\x8f\x52\xa8\xe4\xd0\x3e\x3d\xe6\xfa\x94\x87\x4a\xe3\xce\x31\x69\x21\x85\x8a\x71\x0b\xa9\x3a\x47\xd1\xdc\x93\xf0\x5a\x98\xd7\x69\x14\x5e\xcb\xc0\xc6\x7b\xc2\x25\x5f\x00\x31\xf1\xe3\x93\x36\x5c\xf2\x0d\x76\xe5\x9f\x3e\x69\x83\xc5\x1f\xf1\xe4\x31\x33\x20\x22\x54\x12\xfc\xfb\xf0\x98\xa2\x15\x43\xa2\x22\xc2\xc5\xf1\x91\x63\x4c\x74\x3b\x8d\x0e\x29\x06\x37\x8e\xb4\xd6\x63\x30\x73\xc7\xfb\x3b\x8d\x92\x1c\x9f\x9e\x38\x0a\x89\xb7\x78\x1a\x28\x09\x91\xb5\x40\x25\xc9\x2e\x4f\x63\x25\x41\x1c\x3b\x7e\xd8\xda\x92\xad\x18\xe1\xf1\x43\x67\xe7\x4a\xe7\x98\x86\x09\x8f\xc7\x3e\x4f\xe4\xd1\xc3\x0e\x48\xb5\x07\x64\xad\x54\x11\x1f\x05\x4e\x53\x3d\x4e\xe8\xc1\x41\x26\x91\xff\xc7\x6d\x66\xe9\x41\x93\xc8\xff\xf1\x51\x1b\x9d\x0e\x34\x8e\xfc\x07\xb5\x3f\x45\xa8\x03\x4d\x42\xff\x3b\x70\x9a\x72\x17\x2f\xf4\x1d\x9f\xb4\xc1\xba\x84\xc3\x2e\xb8\x2e\x11\xf1\xa8\xe3\xb5\x5d\x82\xe2\x93\xa3\x36\x5c\x97\xb8\xc8\x50\xbe\x8c\xf3\x31\x1e\xb9\xc3\x84\x11\x78\xa9\xca\x98\x83\x92\x58\x49\x00\x49\xe6\x07\x7a\xb4\xf8\x62\x11\xc0\x78\x27\x44\xfc\xe9\xd1\x2a\x12\x44\xfc\xd1\x91\xa0\x43\x10\xf1\xe7\x46\x19\x28\x4b\x59\xe9\xc0\xb9\x80\x02\x4f\xac\xc2\x70\x1a\xdd\x8f\xa7\xf9\xe8\x98\x5b\x8e\x10\x22\x09\x95\x7d\xc2\x55\x24\x84\x88\xa7\x09\x5b\xd7\x9f\x12\x08\x91\x84\xc9\x72\x05\x69\xa9\xb2\xbc\x59\x76\xe4\x70\x77\xa4\x53\x23\x6c\x47\xc6\x6d\x40\x0b\x40\x24\xf9\x1e\x4f\x4e\x51\x07\x0a\xc7\x12\x07\x8b\xc5\x94\xf1\x51\xc4\x22\x38\x60\x2c\xa9\x3c\x7d\x14\x2d\x18\x83\x8b\x65\x95\x98\x89\x71\xb8\x58\x5a\x79\xf4\x28\x5a\x3c\x80\x5b\x35\xd5\xaa\x08\x18\x39\x79\xec\x58\xd8\xb8\x0b\x8e\xf1\xe3\x31\xd9\xb1\xd3\x0f\x41\x40\x66\x5c\x85\xed\x31\x6e\x7f\x09\x02\x32\xab\xf6\x63\x0a\x4a\x4f\x3f\x05\x01\x03\x3f\x7e\x88\x3e\xa8\xf4\x4b\xd2\x23\x08\x8e\x46\xb0\x53\x7a\x6b\x3d\x01\xb6\x18\x37\x70\xa2\xa3\x93\xf6\x1c\xcd\xaa\xca\xcb\x79\xdb\x01\x8d\x51\xf6\x11\x68\x2b\x31\xe2\xf1\xb1\xb7\xb8\xc5\x90\x98\x1b\xc1\x73\x6e\x9e\x82\x3d\x8c\x2b\x84\xcb\x3c\x2b\x53\x61\x1f\x19\x36\x17\xe2\x96\x79\x59\x4f\x2b\x25\x97\xb1\xb1\x87\x94\x16\x0f\x64\xea\x75\xa5\x4d\x47\xce\xfc\xb1\xf7\x72\x78\xa0\x8e\xb4\xf9\x0e\xa8\x8e\xcc\xf9\x20\x00\x7a\xa8\xae\xe4\x79\x6f\x11\xf6\x50\x5d\xf9\xf3\xde\x2e\xb7\xd4\xd3\xa9\x34\x79\xd9\x9e\x55\x18\xa9\x94\xd7\xf2\x47\xdd\x11\x05\x7f\x1c\x89\x6d\x0c\x2c\xfd\xc8\x4d\x70\x69\x1c\xfa\x63\xee\x00\x60\x70\x69\x40\x7a\xa4\x14\x30\xb8\xf4\x53\xc7\xcc\x2f\x58\xca\xeb\x75\xcc\x72\x82\x52\x64\xef\x75\x64\x6a\xfa\xfb\xba\xc8\x0a\x39\x65\x5f\xff\xd0\x99\xfc\xfc\x99\x02\x09\x78\x59\x25\x27\x81\xf9\x41\x7a\xfa\x31\xcb\x89\xf7\x30\x4c\x73\x74\x39\x82\xa7\xc7\x29\x10\x53\x1c\x9d\x56\xf5\xe8\x49\x0a\x14\xeb\x8d\xf1\x39\xe8\x81\x3a\xd2\xb1\xbc\x86\xdf\x95\x0e\x78\xca\xa2\x34\x3a\x53\x01\xdb\x00\x89\x38\x6c\x27\x13\x03\x24\x4b\xf8\xf0\x61\x0a\x90\x88\xf1\x47\xe9\x7d\x6e\x7f\x03\x84\x3d\xed\x80\x18\xef\x06\x89\x67\x7a\xda\x9a\x68\xcb\xf4\xf6\xa8\xf5\xb1\x2d\xcb\xdb\xc3\xc7\x1c\x84\x1f\x5c\x98\xff\x80\x0c\xff\x24\x82\x48\x50\xfa\x70\xcc\x79\x4a\x7a\x5a\x01\x52\xc1\x66\xef\x39\x58\x72\x50\x1d\x7b\x57\x73\x70\x82\xa4\x67\x94\x9d\x2a\x72\x76\x77\xf8\xaf\x64\xa1\x36\xe8\xd3\xa8\x61\x1c\x71\xc0\x48\x9d\x44\x5b\x34\x14\x6a\x38\x4e\x81\xc6\x31\x55\xc2\x07\x7a\x76\xee\xa1\x8e\xb7\xa9\xa6\x1e\xea\x61\x6c\x7a\x42\x2d\xaa\x05\x15\x82\x0d\x5c\xe2\xcd\x13\x0e\xd3\x3a\x3c\xc6\x8f\x1f\xb5\x2c\x15\x11\x20\xf3\xb6\x3d\x6e\x59\x3e\x22\x48\xb6\x4f\xdb\x25\x5b\x22\x48\xb6\x59\xdb\x16\x90\x08\xf2\x24\x12\xa1\x12\x2b\x88\x85\x6c\x9d\x71\xe0\xf3\xc1\x20\x80\x93\xc7\x5d\x80\x29\xbd\x1d\x71\x27\x67\x04\x99\x92\x1d\xac\x71\xe7\xcb\x53\xea\x3b\x49\x69\xcb\x43\xb6\x89\xd0\x9b\x0e\x56\x72\x25\xd7\xf2\x66\x91\xaf\x12\x2b\x0d\x1c\xda\x1e\x4a\xc9\xe9\x62\xd5\xcc\x66\x31\x10\x3a\x52\x1f\xa5\x40\x69\xfe\x53\x37\x54\x7a\xfc\x44\x5e\x5d\x0f\x95\x1e\x3e\x8f\xb8\x15\xc2\x43\xa5\x49\x51\x4f\xb9\x19\x62\xa5\xaa\xa6\xcd\xff\xbc\x23\xbb\x6d\x5c\x41\xfb\x1f\xbf\x9f\x66\xf5\x8f\xb9\x41\xb7\xcb\xa4\xf2\x94\x3b\x7f\xbb\xac\x29\x8f\xb8\x3f\xbe\xc3\x90\x02\x5f\xe0\xef\x17\x4d\x10\x82\x80\x22\x4e\x21\x71\x6d\xcc\xee\xa7\x53\x7c\x1c\x6d\x99\xa2\x59\xa6\x05\x07\x22\x81\xd0\x02\xa4\x79\x5c\x91\x5e\x60\x01\xd2\x1c\xae\xe3\x68\x5f\xe8\x9b\x2c\xa9\x73\x81\x56\x8d\x13\x7e\x50\x27\x02\xb9\xfd\x0c\x70\x33\x9e\xc4\x00\x8c\x85\x51\x06\x22\xfb\x96\x44\x04\xb7\xa8\x3c\x89\x3f\x26\x91\xbd\x8f\x29\xfb\x90\x7d\x4d\x2c\x74\x83\x6e\x13\x99\x25\xd3\xf3\x8e\x1d\x88\xad\xdd\x1c\xdf\x6b\x29\xa5\xec\x5e\x4b\x1d\x65\xf7\x5a\x8a\xa8\xbf\xa7\xcd\x3a\x2e\x37\x44\x59\xe7\xdc\x09\xe3\x81\x3a\xd2\xfa\x82\x9d\xd0\x43\x75\xe4\xf5\x05\x63\x80\x87\xea\x48\xec\x0b\x19\xe7\x1e\xaa\x23\xb3\x2f\xc4\x5b\x55\x7a\x2d\x23\x43\xce\xa9\x3f\x28\x8f\x5b\x30\x63\xae\x5c\x60\xbd\x9b\x47\x2d\x20\x3f\xf5\xd3\xc7\xe4\x94\x0c\x0b\xef\x81\x42\xb4\xe1\x13\x52\x34\xdb\x33\x0a\x31\x9c\x4f\x51\x12\x09\xab\x6f\x64\x96\x15\x2a\x46\x7a\xab\xfc\x4c\x6a\xd8\xf4\xd6\x7e\x2f\x6a\x74\xda\x34\x4f\x8e\x38\x7e\x3a\xcd\x99\xf6\x74\xf0\xea\x7d\xa7\x21\xd3\x9e\x34\x4f\xe2\xd7\x24\x3c\xfe\x74\x28\x1e\x3d\xf6\x00\x65\x16\x93\xd0\xb1\xdd\x30\x60\x4c\xf4\xd6\x8c\x54\xc1\x3c\x39\x75\x47\xf9\xe3\x04\x62\xcc\x4f\x7b\x12\x2f\x9e\x26\x30\xfe\x8b\x1e\xfb\xda\x1a\x3e\x46\xaa\x55\xd0\xe0\xf4\xb1\x17\x2d\x52\x98\x93\xad\xd3\x31\x0b\x55\xc4\x15\x80\x48\x2f\x78\x92\xc0\xa4\x4e\xbe\x4e\xa0\xd4\xf9\xf0\x94\x1b\x1b\x1d\x50\xea\x76\x78\xcc\x7d\x62\x0e\xa8\xc3\x93\x19\xdc\x18\x26\x57\x65\x29\x23\x16\xf8\xe4\x78\x28\xbc\xcf\x11\xef\x77\x08\x0c\x5e\x5e\x40\x88\x0e\x41\xc1\x5b\xad\x11\xa2\x43\x40\x08\x34\x01\x10\x6d\xc1\x20\x60\x65\xa3\x2d\xdb\x6b\x54\x2d\x33\x36\xb3\x77\x27\x30\x81\x5d\x03\x9f\x85\x13\x36\x7d\x15\xab\x62\xf5\x84\x82\xc9\xc2\xb6\x4d\xed\xd6\xe0\xda\x18\x47\x27\x50\xdb\xf2\x61\xa7\xf2\x34\x3a\xc6\x3c\x0c\x9b\xb4\x3d\x4f\xc7\x51\x81\x02\x0f\xc5\xa6\x0d\x81\xa6\x91\xfb\xd0\x43\x3d\x8c\x34\xbc\x27\x4f\x3b\x5f\x18\x66\x6e\x17\xea\xa8\x35\xf1\xd8\x82\x7e\xec\x98\x89\x17\xc9\x3b\xea\x6c\x3c\x7d\xd2\xf2\x1a\x74\xd4\xd8\x78\xf2\xa8\xe5\x32\xe8\xa8\xaf\x01\x86\xac\xd8\xd4\xd6\xae\xad\x81\x0b\x13\x5b\xb6\x3b\x8c\xfa\x1d\x93\x2f\x5b\x76\xef\xc8\x75\x6f\xef\x77\xb9\xa5\x23\x80\x0e\x77\x74\x50\xc8\x2c\x40\x87\x1b\x3a\xa8\x63\x16\xa0\xcb\xfd\xec\x25\xe6\x4d\xd6\xb0\x47\x3c\xde\x95\x01\xb5\xd2\x32\x3a\xa1\x5a\xe9\x19\xa1\xe8\x06\x83\x6a\xa5\x69\x84\x98\x66\x06\xd5\x4a\xd7\xf0\x71\xec\x2d\x7f\xc9\x63\x1f\x88\xeb\x8f\xf5\xb6\xa7\xe4\xe9\x53\x8a\x53\x64\xf4\xd3\xf2\x91\x60\x4d\xd1\x78\xbf\xb6\xbc\x23\x60\x13\x3a\x89\x44\xac\xb6\x5f\x04\x7c\xeb\x47\x11\xe5\xd7\xcc\x13\x4e\xf1\x45\x3c\xf8\xa4\x96\x2d\x8f\xe0\x23\x16\x26\x5f\xcb\xf4\xe4\xb4\xaf\xf0\x3a\x44\x2d\xd3\x63\x33\x92\xfb\x6b\x59\xb6\xad\x1e\x5e\xa0\xaa\x17\xb9\xa9\x0b\x56\x11\xef\xd4\x95\x31\xf1\x55\x47\x09\x24\x35\xb7\x45\xba\x2a\xc1\xa4\x16\xc5\x48\x6a\x21\x98\xd4\x9e\x18\xb9\x9a\x08\x26\x35\xb1\x45\x3b\xb1\xd6\x4b\x59\xeb\x68\x36\x4f\x9f\xb2\x63\x03\xef\x8f\x77\x01\x24\xe1\x51\xc7\xec\x58\x41\x80\x78\xa2\x76\xe9\xfd\xa9\x82\x00\x49\x60\xd4\x09\x3b\x55\x5a\xa6\x80\x53\x1f\xed\x78\xd4\x82\x89\x76\x58\x5c\xda\xb1\xad\xff\x1f\xb5\x0a\x3b\xb6\x35\xff\xa3\x56\x59\xc7\xb6\xce\x7f\xd4\xaa\xea\x18\x57\xfb\x09\x22\x5a\x78\x53\xdb\x1e\x60\x19\x25\xd8\x70\x3c\x0b\xdc\x60\x0a\x00\xb7\xa2\x67\x73\x1b\xac\x00\x10\xbd\x7d\xd2\x02\x4a\x2c\x65\x51\x72\xc0\x06\xdd\xdf\x7e\x99\xcf\x23\xb9\x59\x28\x19\xbe\xeb\x24\x18\x8b\x9f\x72\x80\x34\x7c\x63\xcc\xa3\x96\x01\x22\xa5\x6e\x88\xbe\x3e\xe1\x10\x29\x6d\x9f\xf2\x8f\x06\x88\x94\xb2\x4f\x39\x0f\xec\xaa\x01\x13\x91\x03\x00\x98\xa5\xbe\xea\x2a\xae\xeb\x25\xab\x4d\xfe\xd7\xa3\xe8\x7e\x87\xe3\x35\x06\xe8\xf0\xb8\xc6\x00\x1d\xae\xd6\x18\xa0\xc3\xc7\x1a\x03\x24\xc6\x3e\x6e\x5c\xbe\xf3\xe1\xb3\x3b\x87\x87\xe2\xcd\xd7\xdf\x7d\xfb\xfc\x85\xf8\xf2\xe5\xab\x17\xcf\x44\x91\x4f\x32\x5d\x1f\xfe\x68\x0e\x8b\x7c\xf2\x6e\x36\xfa\xd1\x58\x90\xe7\x7a\xb5\xae\xf2\xf9\xa2\x16\xfd\xe9\xc0\x9e\x84\xc7\x50\xac\xfb\xf9\xa2\xd2\xcb\xbc\x59\x8a\xaf\xdf\x88\xf3\xa6\x5e\xe8\xca\x8c\xc4\x79\x51\x08\x80\x35\xa2\x52\x46\x55\xd7\x2a\x1b\xd9\x31\xbe\x33\xa1\x4f\xba\xd1\x4d\x35\x55\x62\xaa\x33\x25\x72\x23\xe6\xfa\x5a\x55\x25\xb6\xd1\x96\xe2\x4f\x6f\xbe\x38\x30\xf5\xba\x50\xa2\xc8\xa7\xaa\x34\x4a\xd4\x0b\x59\x43\xcb\xef\x89\xb2\x23\xcd\x74\x53\x42\x47\xd4\x7a\xa1\xc4\xab\x97\xcf\x5f\xbc\x7e\xf3\x82\x2a\x72\xdf\xe9\x35\x06\x3b\x69\x4d\xeb\x5e\x28\xef\xfd\xe7\x4a\x4e\xc4\x44\xce\xed\x04\x9a\x3a\x2f\xf2\x7a\xed\x5b\x45\xb1\x0a\xe2\x33\x71\x26\x7e\xe6\x6d\xbd\x2a\x25\x6b\x25\xa4\x68\xca\xfc\xa7\x46\x09\x55\x36\xcb\xb8\x7b\xd7\xff\x35\xcd\x6a\x55\x29\x63\xc4\xcf\x45\x5e\xd6\xcf\x17\x6a\x7a\x65\x3e\x6c\x6c\x87\x75\x2e\x16\xcd\x52\x96\x62\x56\xe5\xaa\xcc\x8a\x35\x5e\x9d\x41\x5b\xcb\x49\x33\x9f\x53\xa7\xc5\xd0\x18\xeb\xeb\xc9\x8f\x6a\x5a\x7f\x10\xe7\xd1\x14\x00\x1f\x37\xba\xec\xd5\xd0\x77\x4e\x56\x4a\xa8\x9f\x1a\x59\x08\x68\x4c\xb7\xae\x17\x79\x39\x87\x1e\x6b\xec\xd3\x46\x53\xf8\x98\x17\xf6\xf9\xce\x3e\x59\x87\x87\xe2\x7b\x25\x2c\xfa\xa4\xc0\x16\xa2\x42\xc3\xdb\x85\x34\xa2\xd4\x61\x50\x61\x16\xd0\x31\x73\x62\xa1\xa9\xdf\xf9\x52\x1c\x1c\x88\x1b\x25\x6e\x64\x59\x43\xd7\x68\x3b\x9c\x5b\x8a\x72\x2e\x56\x55\xbe\xcc\xeb\xfc\x5a\x19\xea\xb0\x59\xac\x47\x42\xfc\xa9\xa9\xe9\xc3\x55\x65\xb0\xc5\x5d\x5e\x4e\x8b\x26\x53\x42\x37\xd8\x32\x6c\xc4\xfa\x52\xa9\x1b\x9a\x18\xce\x3a\xea\x51\xf5\x2d\x36\xc8\x12\xd7\xb2\xca\xe5\xa4\x50\xa2\x52\x33\x55\xa9\x72\x0a\x3d\xb9\x85\x64\x7d\x2c\x2d\xf8\x7f\x11\x18\x76\x5e\xd3\xd8\x49\x6d\xa6\xab\xa5\xf8\xb7\x2f\xbf\x7b\xfd\xfc\xed\xcb\xaf\x5f\xf7\xff\xeb\xfc\xdb\xd7\xe7\x5f\xbd\x18\x8c\x84\x70\xd7\x2c\xb1\xca\x52\xe8\x95\xc5\x9d\x2c\xec\x48\xca\x4c\xe5\x4a\x85\xf6\xb3\x76\x09\x56\xab\x62\xed\x6a\xc7\x47\xe4\xf2\xa5\xae\x84\xba\x95\xcb\x55\xa1\xb0\x71\x2e\x2e\x0d\x75\xf7\xfa\x2f\x59\x99\xfe\xbd\x7f\xeb\xdb\x2d\x5b\xe7\xe5\x7c\x30\x14\xff\xa6\x4a\xbb\x49\xbe\xfb\xf6\xe5\x73\xd7\x60\x10\x3f\xde\x6e\xf1\xfb\x9d\xad\x61\x7f\x16\xee\xf9\x67\xe2\xde\xbf\x5b\x1e\xb0\x19\x16\x9b\x8c\x3d\x13\xf7\xfe\xac\xf5\xbc\x50\x0f\xee\x61\x33\x6a\x98\xeb\xf7\x76\x39\x2a\x65\x9a\xa2\xb6\x18\xc4\xa1\x86\x02\x21\xff\xed\xf8\x4f\xf7\x38\x71\xb1\x2f\xe0\xd4\x65\xea\x6a\x68\x97\xc4\x20\x89\xd1\x42\x9a\xba\x0a\x0d\xcd\xfe\xad\x7f\x21\x0f\xfe\x7a\x79\x7f\xf0\x43\xbf\x7f\xf1\x97\x1f\x06\x97\x0f\x06\x3f\x0c\x0e\xe7\x39\x6b\xb0\x0d\x2d\x01\x87\x62\x56\xc2\x58\x81\x62\x5d\x3f\xc0\x7a\xbd\x52\x7a\x06\xef\xb9\x20\x80\x4b\x71\x76\x26\x7a\x4d\x09\xdd\x62\x55\xd6\x1b\xf8\x76\xba\xd0\x70\x59\xf4\xbe\xc3\x56\x79\x9e\x5e\xb0\xd3\x1f\x3d\x4d\x8d\xb4\xb1\x39\x61\x05\x7d\xf9\xf9\xd8\xfe\xb6\x7d\xf9\xac\x74\xcd\xd7\x22\x2c\x8c\x3c\x7b\x89\x9a\x82\x5f\x53\x47\x82\x0d\xb0\x17\xb3\xf2\xb2\x5f\x5d\xfb\xb6\x85\xd4\x29\x11\xdf\xc3\x07\x4a\xbe\x22\x21\x42\xfc\x98\x59\xe9\x87\xb9\x13\xb7\x41\xac\xae\xa9\x0b\x62\xbc\x87\xbe\x74\xd3\xe0\x0c\xd7\xee\x62\x6a\x21\xcd\xa7\x4c\x44\xf2\xbc\xc8\x55\x59\x1b\x80\x95\x59\x86\x44\xef\x7a\x0c\xd6\x5a\xa8\xdb\x5a\x95\x59\x07\x99\x0f\x36\x50\x4f\xc0\x05\xf5\x50\xf0\x1b\xe0\x59\xf8\x75\xc8\xaf\xfb\x8d\xf1\xac\xe3\x1a\x40\x02\x72\xfe\xfd\xed\x57\xaf\x9e\x45\x94\xc9\xdb\x5e\x2e\xe5\x8a\xde\x07\x8d\x2d\xfe\xd0\x7b\x26\x7a\x9f\x16\xf5\x67\xd4\xe9\x42\x88\xde\xe7\x70\x69\xce\x2f\x7d\x0a\x97\xe4\x72\xc5\xae\xdd\x83\x6b\x3f\x35\x9a\x01\xde\xeb\xdd\xb3\x17\xff\xcf\xc3\xa7\x9f\xf5\x10\xef\x71\xa7\xf6\x68\x3f\x5c\xfc\xe1\xf3\x4f\x7f\xb8\xf7\x43\xef\xf2\x70\xce\xb7\xc0\x40\xfc\xec\xc0\x97\x72\x75\xb1\xbc\xa4\xb6\xf1\x1f\xf8\x02\xfe\x59\xd5\xc0\x73\x5c\x87\x47\x39\x9d\xaa\x55\xad\x32\xf1\xdd\x4b\x51\xc8\x72\xde\xc8\x79\x68\x54\xee\x0e\x28\xff\x0e\xec\x06\xfd\x41\x4c\x65\x51\x4c\xe4\xf4\xca\xd3\x83\x5d\xc8\xbc\xbc\xd6\x57\x0a\xe9\xc0\xbe\x02\x19\x83\x19\x09\x2b\x08\x38\xf6\x02\x23\xaa\x5a\x55\xc0\x27\xfd\x34\x0a\x0d\xcd\x50\xec\xde\xe1\x87\xed\x68\xae\xea\x73\x98\xe1\x2b\x37\xb7\xa8\x79\x29\x4d\x23\x74\x71\xdc\xf4\xd4\x68\x6a\xe5\x10\xf5\xa6\x59\xad\x74\x55\xab\xac\xef\x3b\x9a\xe2\x8d\x51\x3e\x7e\x52\x76\x3c\x17\x5e\xf1\x59\xda\x95\xd4\xa8\xfa\x6d\xbe\x54\xba\xa9\xfb\x7e\x42\x7c\xff\xb9\x27\xfb\x17\xa5\xbc\xce\xe7\xb2\xd6\xd5\xc8\x61\x38\xac\xe5\x01\xb4\x6a\x7c\xd7\x1b\x5c\x86\x1d\x6d\xe5\xb3\xb0\x70\xfb\x7e\x12\x47\x4c\xc4\x4b\x6f\xf2\x32\xd3\x37\x04\x2e\x3e\xfd\x94\x7f\x72\xb4\xb9\xbf\x91\x15\x1c\xed\x3f\x35\xaa\x5a\xbb\x63\x99\xba\x93\x2e\xa4\x59\x44\x2d\x42\x6b\x79\x65\x8f\x46\xd1\x54\x45\xfa\x40\x38\x29\x7b\x76\x41\xc7\x67\x70\xc0\x7d\x6a\x7f\x3f\xc6\xdf\x7b\x42\x96\x99\x1d\x6a\xea\x7a\xeb\xb3\xfe\xdc\x24\x52\xf0\x13\xf7\x67\xa0\x8c\xf1\x33\xd1\xc3\xc7\x87\xf0\xf7\xb1\xff\x5b\x7c\x18\x51\x63\x7d\x49\xad\xf5\x41\x6a\x92\xab\x95\xb2\xc7\xcd\xb2\x29\xea\x7c\x55\x28\x51\xe7\x4b\x3c\xec\xed\xc8\x7c\xd6\x43\xa1\x4b\x7b\x20\x23\xa1\x16\xd2\xd4\xd4\xf9\x1b\x24\x0e\x1c\xc7\x3d\x87\x74\x9d\x34\x67\x2d\x33\xd7\xdf\xde\x4a\x0b\x2b\x69\x2c\x4b\xb4\x2c\xb8\x99\x2f\x44\xa6\x52\xa6\x23\x26\x6a\xa6\x2b\x25\x26\xca\xa2\x4c\x66\x99\x02\x74\x90\x40\x40\x47\x2a\x22\x62\x53\xf3\x54\x98\x3e\x49\x61\xd8\x7e\xb3\xa2\x7e\x34\xd0\xf1\x18\xbb\xbf\xe6\xb5\xc0\x66\xbe\xb8\x2d\xa5\xdb\x86\x85\x92\xd0\xbd\xa6\xf7\xc7\x1e\x76\x11\xee\xfd\xb1\xe7\x1b\x08\xe7\xf3\x52\x57\xbc\xbb\xf9\x6c\x04\x43\xfe\x27\x20\x8c\x91\x19\x9b\x42\xd8\x82\xec\x62\xd4\x48\xf8\x8f\xae\xcd\x39\x9f\xf8\x99\x88\xc0\x9b\x89\xa9\x2b\xe8\xc9\x7b\x87\x9d\xac\x3f\x7f\xf0\x7f\xaf\x64\x0e\xe2\x43\xf4\xd4\xaa\xc8\xeb\x7e\xef\x53\xec\x77\xda\xd5\x47\x1a\x9e\xea\xea\x52\xef\x86\x14\x67\x08\x73\x91\x5f\xba\xe1\xce\x7a\xb4\x21\xab\xeb\x8b\xf6\xfa\xf5\x2d\xf8\xc5\xd1\xe5\xe0\x52\x9c\x75\x2c\x2f\xde\x1e\x5f\xb6\x3a\x4b\xdb\x63\x35\xda\xd4\xdf\x7d\xfb\x8a\x63\x74\x25\xeb\x45\x07\x37\xfb\xee\xdb\x57\x1d\x1c\x8c\x1f\x10\xb4\xa7\xab\xa6\xb4\x34\x4e\xcf\xe0\x70\xbc\x71\xab\xbd\xd0\x9e\xc1\xaf\x66\x25\xf4\xda\xf6\x15\x7a\x41\xdc\x09\xb9\x90\xcb\x95\xdf\xa8\x79\x59\xab\xb9\xaa\x40\x28\x16\x66\xa5\xa6\xf9\x2c\x57\x99\x80\xe0\x9b\x94\xf4\x09\xf6\x83\xb8\x06\x8a\xc7\x1d\x5a\x6b\x4b\xb3\x53\x3b\x28\xd2\x6c\x1b\x7c\x99\x97\xf0\xc0\x32\x2f\xf3\x65\xb3\xa4\x43\x0f\x74\x00\x2f\x7b\x77\x3c\x25\x6f\xf1\x29\x79\xbb\xf1\x29\xaf\x39\xc1\x37\x31\xb4\x5d\x0f\xed\xdb\x86\xf6\xe1\xb0\x9e\xd7\xe2\x0f\xf6\x6a\xb4\x70\xcb\xbc\xfc\xcc\xdf\xfe\x1c\xe0\xa3\xdb\xf2\x96\x75\x95\xbe\x8e\x10\xf9\x4a\xcd\x6a\xb1\x92\x99\x90\xa2\x6c\x96\x13\x87\x44\xc4\x2b\x35\xd3\x87\x6d\xef\x76\xfb\x5f\x55\xa5\x5b\x87\x3b\xf2\x8d\xf7\xfe\xb3\x69\x28\xfb\xe5\x61\xd4\x95\xdc\x80\x5a\x7a\x8d\x85\xce\x94\xc9\x2b\x95\xd1\xa5\xcd\xdd\x9b\x57\xc0\xee\xdc\xe0\xd2\x44\x9a\x97\x43\xe8\x5f\xed\x77\x71\x25\x14\xa0\x87\x34\x78\x44\x94\x4e\xe1\x03\x88\xc1\x68\x25\xb3\x37\x96\xed\xf4\x11\x74\x28\x7a\x47\xbd\x54\x11\xc4\x4e\xdf\x8e\x65\x4e\x75\x59\xcb\xbc\x04\x4e\xec\x8e\x0f\x9c\x9c\x6b\xb3\x2d\xa6\x0b\x59\xc9\x69\xad\x82\x58\x0b\x87\xe0\x52\xd5\x0b\x9d\x89\xa5\xcc\x61\x04\xfc\x14\x59\xe7\x53\x31\x95\xd3\x85\xd7\x1a\x0b\x59\xcd\x95\xa9\x85\x5c\xea\xa6\x84\x93\x0d\x4d\x48\x76\x68\x50\x10\xaf\x55\x25\x2a\xf5\x53\xa3\x4c\x0d\x7d\xde\x5f\xd6\xa4\x41\x5b\xfd\xdd\x09\xd8\xb5\x16\x73\x55\xaa\x0a\xec\x0d\x76\xe3\x18\x59\xaa\x62\x2d\x16\xcd\x5c\x85\xa1\xa1\x13\xbc\x1f\x7d\xe3\x0e\xea\x58\xb7\xae\xd9\x8d\xba\x4e\x9e\x73\x87\xb8\xd0\x85\x9c\x3e\xd4\x7f\x03\x23\x02\x26\xca\x7d\xef\xc7\xe5\x4b\xcb\x97\x14\xb8\x1e\x4e\xed\x0f\x67\xe2\x28\xda\x0a\xbd\x9e\x3f\x06\x66\xe2\x0c\x94\x88\x78\x50\xb7\x8f\xee\xce\x46\xe1\x0b\x70\x08\x7e\x45\x9c\x89\x5e\xd0\x6e\x71\xd0\x9b\x45\x5e\x28\xff\xea\xcf\x23\xf8\x11\x9f\x60\x32\xd4\x83\xb3\xe8\xef\x94\xdd\x47\xc3\xd0\xe9\x76\xe4\x89\x18\x89\x52\x10\x55\xbe\x28\x4d\x53\x91\x21\x4b\x06\x63\x41\x6e\x40\x92\x24\x05\x0b\xec\x14\x53\x55\x59\x6a\x03\x69\x46\x14\xf9\x32\xf7\x32\xc2\x9b\x7c\x69\xc5\x9c\xc6\xc8\xb9\x12\x85\xd6\x57\x56\xcd\xba\x52\x88\xab\x91\x83\x02\x5d\xab\x52\xf3\xdc\xd4\xaa\x7a\x59\xe6\x35\x1d\x34\xb2\x90\xd5\xb2\xaf\x4b\x7b\x69\xe0\x95\x7c\x20\x74\x10\x0d\x0a\x6d\x37\xc8\x8d\xac\x4a\xd6\xf8\x8e\xba\xe3\x5b\xc4\xe3\x93\xfd\x81\x9d\x73\xa9\x6b\x52\x08\xdc\xc4\xed\x58\x8f\x84\x51\x53\x5d\x66\x7e\x17\xbd\x9c\x89\xb5\x6e\x7a\x56\x64\x52\x95\x15\xf5\xec\xc8\xc6\x1e\x2e\x7a\x65\x29\x1d\x54\x0b\x8b\x91\xa5\x5c\x83\xc8\x29\x0a\x5d\xc2\x71\xb1\x90\x65\x18\xce\x0e\x02\xe2\xa4\x2c\x41\xf6\x12\x52\x64\x0d\x3d\x9e\x5b\x1e\x5b\x14\xb9\x03\x95\x06\xe6\xed\x0c\x34\x34\x44\x50\x4c\xe2\xa9\xb9\xe1\x9c\x70\x9b\xa9\xb2\xb6\x27\x94\x95\x06\x4d\xad\x24\xb4\xe2\x97\x41\x21\x72\xeb\x36\x84\xef\x2a\x0a\x31\x57\x35\x8a\x5d\x37\x95\x15\x23\x2b\xb7\x87\x75\x25\x2a\x59\x2f\xdc\xa7\x48\x61\xf2\x72\x5e\x28\x07\x36\x12\xe2\x85\x9c\x2e\x60\x60\x42\xb5\x1d\x24\x3c\x7c\x83\xb6\x17\xe2\x64\xf8\x54\x26\xae\x55\x65\xec\x47\xd3\x7e\xf4\xd3\xba\x81\x1d\x5e\x6b\x3b\x86\x14\x66\x21\xe1\x4f\x54\x5f\x40\x41\xcb\x8d\x5d\x35\x2b\x3c\x4d\xa5\x51\x46\xdc\x2c\x54\xa5\x00\x01\x64\xaf\x13\x8a\xd3\x67\x6d\xcf\x14\x53\xdb\xe1\x74\xa9\x10\x07\x46\x01\xf3\x70\xef\x84\x01\x1d\x09\x90\xb8\x2b\xdd\x3b\x85\xba\x5d\xe5\x55\xd0\x34\x71\x5b\x03\x01\x7a\xf3\x07\x92\x63\x6f\xa6\xea\xe9\x82\x64\x61\x90\xc9\xbc\x51\x4c\xeb\x11\xdc\x44\x0b\x68\xdf\x91\xef\x9b\x66\x3a\x55\xc6\x0c\x86\xc2\x5d\xf9\x52\xe6\x45\x53\xa9\x40\xd3\x2d\xc5\xf6\x3e\x57\x6a\x2d\x53\xe4\xc6\x3a\x8b\x5c\xb0\x10\x96\x38\x62\x7a\x12\x7e\xb0\xc4\xf4\x6e\x69\xc4\xd7\x8e\xa6\xc2\xf1\x11\x91\x9e\x1d\x4b\xe6\x5e\xf8\xaf\x64\x6e\x17\xdd\xc9\xe4\x7e\x78\x21\xbe\x50\x33\x09\x46\x35\x23\x1e\x1d\x1d\x1d\x89\xbe\xa7\xf4\x41\x7c\xae\xba\x69\x7e\xb0\xe4\xea\x3f\x00\x54\xeb\xf0\x05\x0b\xe5\x14\x17\x14\x22\x82\x62\x33\xf1\x7a\xb9\xbd\xef\x88\xc8\x8d\x83\x2a\x44\x3c\xaa\xd3\x32\x36\x8e\xe9\x06\x9c\xa8\x78\x0e\xb2\xf6\xa7\x97\x01\x3b\x6d\xfa\xb6\x48\xef\x77\x94\xd0\x52\xf5\x87\x84\x6b\xe4\xc6\x60\x97\xb1\xfa\x00\x2d\xc0\xfb\xf7\xe2\x91\xb8\x2f\xc6\x47\x47\x47\x9f\xd1\x6d\x53\xdb\xb9\x3b\x9a\x9a\xab\xfa\x8d\xbd\xe0\x74\x0c\x9a\x7e\x5b\x83\x87\x3e\xad\xb9\x11\xba\xa9\x55\xd5\xc5\x8d\xf3\xe5\x52\x65\xb9\xac\x15\x98\xa9\x5f\xd6\x3d\x23\x60\xcb\xd4\x5a\x4c\xe5\xaa\x6e\x80\xda\x4b\x75\xe3\x46\x33\x53\xbd\x42\x3b\xbe\x45\x9b\xdb\x06\xce\xb6\x38\x8a\xba\xc3\xf6\xe8\x76\x2f\xd8\xaa\x73\xe3\x76\xed\x64\x8d\xf6\x33\x37\x44\xe0\x38\x56\x09\x05\x3e\x81\x23\x85\xcd\x4f\x2c\xc5\xab\x3c\xee\xd1\xb3\x1d\x46\x0c\x0b\x0b\x8a\xf4\x99\xb7\xa0\xfa\x41\xcf\xce\x44\x0f\x89\xa1\x37\x10\x7f\x44\xb0\x67\x81\x74\xd0\x46\x1a\x0c\xc8\xe2\x0c\xff\xf3\x47\xd1\xef\xa1\xed\x11\x8d\xb4\xcf\xe0\x58\x27\x8b\x09\x1e\x25\x23\x7b\xc2\xf4\x7b\x8c\x10\x9e\x25\x6c\x23\xc3\x11\xfa\x4b\x23\x0e\x61\xb1\x07\xe2\x81\xe8\x19\x3f\x6a\x3a\x60\xa1\xe7\x7d\xa0\x03\x7f\x27\x60\xa0\x6c\x8a\x82\x4c\x9d\x43\xb1\x34\x03\xb2\xbb\xd9\x4f\x27\xbc\xfd\xd9\xf3\xdc\x8d\xa6\x27\x26\xa5\x74\xda\x82\xc0\x04\x8d\xaf\xe4\x97\x85\x98\x16\x4a\x56\x6e\x05\x1c\xc4\x67\x0c\xa0\x6b\xa2\x91\xbd\x36\x68\x80\x0e\xf5\xe0\x5b\xe8\x5b\xf0\xa1\x90\xd5\xbc\x59\xaa\xb2\x36\xc1\xba\x14\x99\x17\x99\x6d\xbc\x73\x65\xe3\x6f\x4b\x11\x12\xdb\x28\xd3\xbb\x89\xed\x6c\xd0\xef\x94\xc2\x6b\xde\xd1\xd7\x1e\x76\xb8\x61\xe5\xcc\xee\x3b\x73\x95\xaf\x56\xdd\x72\xf9\xac\x72\xb6\xc2\x54\x1a\x87\x63\xa7\x56\x65\x86\x32\xb3\x13\x9f\x23\x17\x1a\x98\x7b\x50\xd0\xc6\xd9\x1b\x21\x41\x42\xc1\xb3\x24\x3a\xdc\x4b\x01\x66\xcf\xa1\x98\xa8\xa9\x6c\xc0\xd7\x18\xc4\x1e\x44\x94\x95\x08\x8c\x90\x16\xcc\x88\xc9\xda\x0e\x94\x11\x0b\xc7\x4d\x29\x2d\x7f\xb0\x32\xd1\x0d\xf8\xe5\xd0\x0b\xe6\x26\x7f\x2e\xea\xf5\x2a\x9f\xca\x02\x11\xb0\x04\x2f\xaa\x95\xde\x40\x78\x63\x72\x5b\x4c\xd1\xbd\x37\xda\x7e\xb1\xfd\x9a\x9b\x7c\x7a\x05\xf6\x26\x2b\xaa\xc9\xb5\x98\xca\xa5\xea\x0d\x53\x9e\x37\x70\xa7\xa7\xe5\x0e\x9b\xfe\xf7\x5a\xd7\xf9\xd4\x7d\xe3\x72\x29\xc5\x5f\x22\x39\x10\xdc\x7a\xab\x2a\x2f\xd1\x8c\xbc\x54\x06\x64\x4d\x12\x06\x7f\x34\x6e\x86\x43\x31\xd3\x45\xa1\x6f\xc8\x63\xeb\xac\x7a\xa4\x9d\x80\x60\x53\xa2\xde\x4e\x53\xd7\xa2\x52\xd7\x4a\x16\xd4\x4d\xd9\x12\x72\x72\x58\xe3\xda\xe3\x61\x8b\x26\xaa\x2f\x81\x06\x80\x65\xea\xf6\xd1\x8b\x84\x84\x74\x42\xa2\x0f\x90\x3c\x3c\x8a\x56\x69\x21\xa7\x75\x23\x0b\xd1\x73\x38\xea\xe1\x12\xd8\xa3\xae\xb8\xb1\x8b\xd9\x61\x0b\x73\xb0\x9c\x1d\xa4\x73\x0a\xc7\x53\x34\xd3\xb3\xf6\xe4\xff\xd8\xbe\xf4\x40\x1c\x8b\x67\xe2\xd8\x6b\x3b\xf0\x21\x40\x83\x70\xa9\xae\xd6\xc4\x43\xd0\xc5\x63\x0f\xd3\x17\x55\xa5\xab\x3e\x19\xa9\xa7\xd2\x4a\x4c\x7d\x75\xeb\x78\x4d\x18\x40\x9c\x09\x75\x3b\x42\xf4\x92\xa1\xeb\x87\xb2\x17\xcc\x54\xfe\x75\xb4\x0f\xd0\xf8\x96\x58\xd5\xf8\x64\xd1\xc0\x16\x5e\xd0\x65\x65\x63\x03\x5e\xe4\xe2\x20\x7a\xfe\xd2\x1e\x42\xfe\xe9\x8b\xfc\x32\x98\xc6\xff\xf2\x83\xb9\x2f\xeb\x1f\xcc\x83\xc3\xa1\xe8\xf5\x5a\xa6\x34\x36\x6a\xc4\x57\xbe\xc8\xaf\xf3\x4c\xa1\x90\x5f\xdf\x68\x22\x08\x34\xd1\xce\x0a\xad\x2b\xc3\xbd\x13\x43\xd1\x94\x85\x32\xee\x9a\xd5\xe4\x33\x74\x4e\xd8\xab\x60\x93\x05\xf1\xdc\xea\x11\xd3\x4a\x65\xd0\x61\xdc\x2c\x2d\x91\x80\xcc\x33\xb4\x82\xa1\xa3\x68\xa3\x44\x1e\x18\x0a\x6c\x21\x95\x17\xce\x63\xef\x84\xec\xc6\xa8\x59\x53\x58\x09\x1b\xb9\x9f\x33\x84\x58\xe1\xa1\x6a\xca\xa9\xb4\xfa\xb3\x5c\xad\x2a\x7d\x9b\x2f\x25\x3a\xba\xc0\x45\x62\x15\x1f\x3b\x10\x1a\x9a\xf1\xbc\x37\x5a\x64\xda\xb2\x80\x2c\xbf\xce\x41\xf4\x77\xfe\x17\xa3\xfc\xa7\xaf\x73\x55\x58\xcd\x27\xf8\x6a\xdd\xa7\x80\xd2\x54\x68\xa3\xd0\x74\x74\xb3\xb0\x3c\x0d\x1f\xdb\xb4\xfd\xca\x66\x89\xfc\xbd\xeb\x66\xa6\x4a\xbd\xcc\x4b\x7f\xdb\xc9\xa9\x74\x9f\xed\x22\xb3\x94\x55\xfd\xa5\x5d\x0f\x5c\xb0\xc4\xd8\x83\xaf\x18\x0a\x3e\x62\xd8\x54\xd7\xb2\x80\x13\x91\xc0\xc4\x21\x07\x73\x92\x1f\xe1\x5e\x9c\x89\xaf\x64\xbd\x18\xd9\x3f\xfb\xd7\xb2\x18\x38\x33\x81\xbb\x7f\x00\xc3\xfd\x41\x8c\x8e\x8e\x8e\xc6\x8e\x66\xdd\xa1\x8a\x30\x2d\xe7\x0f\xdd\x86\x81\x81\xa8\xfc\xc8\x2d\x6f\x9b\x14\x95\x2c\x33\xbd\xf4\x96\x4e\xd0\xe1\xc1\xbe\x29\xfa\x10\xcb\x60\xf2\x6b\x35\xd8\x84\x6e\x67\xbb\xb4\xbc\xd4\xd4\x7c\x10\xa0\x58\x67\x26\x6d\x3f\x47\xd6\xcb\x45\x3e\x5f\x6c\x7f\x30\x59\x23\x71\xee\x26\x4c\x84\x39\x51\xf5\x8d\x52\x60\xa9\x14\x9f\xda\x71\x23\xbf\x2c\x80\xbe\x2c\x6b\xbe\x7e\xb1\xe5\xb3\x8d\x2b\xf8\x15\x9f\xec\x0f\xc4\x7d\xd1\xb7\x93\x3d\x80\x17\x3c\x10\xe3\x81\x95\xe6\xc0\x2c\xba\x33\xf8\x88\x8e\x9f\x77\x4b\x59\xca\xb9\xaa\xfe\x45\x42\x91\xbe\xc2\xaf\xfa\x0a\x3f\x4a\x4c\x0b\x69\x8c\x58\xc8\x32\x2b\x14\x8a\x36\x55\x29\xf1\xb4\xcb\xff\xaa\x32\x12\x41\xbc\x28\xf4\x5a\xd7\xea\x19\xf7\xf1\x89\xdc\x94\xbd\x5a\x98\x66\x36\xcb\xa7\x39\x3a\x9f\x40\x90\x41\xc9\x02\x0e\xc5\xf1\xc8\xa2\xa8\x52\x3d\xcb\x25\x26\x0d\x78\xf1\xc8\xca\x4f\xe6\x97\x2b\x05\x4e\xba\xa6\x94\xd7\x32\x2f\x50\x27\x29\x45\x8e\xc7\xeb\x33\x16\x3d\xb2\xa8\xeb\x95\x79\x76\x78\x38\xad\x26\xcd\x7c\x34\xd5\xcb\xc3\xf1\xc3\xa3\xe3\xa3\x23\x07\x72\x0c\xaf\xb2\x07\x3f\x88\x7c\x16\xa9\x4b\xb9\x06\xe1\x68\xa2\xc4\x4a\x4e\xaf\xe4\x5c\x65\xb8\x4b\x9e\xe3\x14\x20\x44\xc0\x32\x37\x3f\xdf\x87\xdd\x83\xc0\x00\x15\x3a\xb6\x2d\xa9\x54\xb2\x5a\x27\x43\xd6\x8b\xbc\xca\x0e\x2c\xd4\x9a\x4d\xba\xeb\x45\x7c\x57\xc1\xe9\xf4\x21\x78\xc8\xc5\x2b\xe7\xb8\xf6\x57\x6a\x2d\x0a\x2d\xb3\xa1\x5b\x6a\x5d\x65\x60\xdc\x51\xfe\x3d\x21\x28\xca\x02\x82\xa1\xf7\xb5\xba\x51\x95\x93\xa2\x8c\x0b\x9f\x10\xba\xb0\xcf\xea\x52\x99\x91\x10\x3d\x55\xf6\x44\x6e\xbc\x99\xa0\x81\xb8\x57\x2b\x2f\x16\x6b\x74\x1d\x3a\x9b\xd6\x2c\xaf\x4c\xed\xa7\x64\x99\x5c\x5e\x3b\x63\x9c\x2c\x2a\x25\xb3\xb5\x58\x59\x32\x47\xd9\x13\xf7\x70\x42\x6d\xdc\x30\xeb\xbe\x0d\xf7\x31\x18\x11\xfd\xb5\x77\x56\xa7\xf6\xbe\xe8\xa5\x5c\xf5\x49\x57\xf0\x8f\xab\x82\x45\x24\xa8\xa2\xc3\xe7\x0d\x01\x0a\xc4\x8d\x93\xd1\x47\xf6\x1c\xbe\xfd\x7a\xd6\xb7\x5f\x3f\xb0\x3a\xc9\xc1\x78\x40\x42\x4f\x0c\xd8\x94\x66\x91\xcf\x6a\x04\x44\x01\xc9\x42\x78\x9c\xa2\x08\xc3\x98\xf2\x79\x96\x79\xb9\x15\x82\x7f\x72\x8a\x68\xd1\x91\x48\xeb\x78\x4a\x87\xd3\x3b\xf5\x51\x1b\x0a\xd1\x5b\x4a\x22\x3d\x22\x27\x37\x87\xd1\x8f\x46\x97\xb8\xe7\x85\x78\xa3\xc0\xe8\xf2\x07\xb7\x4f\x32\x75\xad\x0a\x6d\xf5\x73\xda\xb3\x76\xcb\x78\x42\x34\x87\x76\x0b\x1f\xb8\x91\x3e\xdf\xb4\x6e\xa3\x55\xa5\x6b\x6d\x55\xb9\x91\xcc\xb2\xaf\xc2\xc7\xfb\xe5\xc8\xd4\x8c\x16\xd2\x0b\x73\x57\x6a\x6d\xa9\x35\xdc\xc1\x83\x33\x53\x33\xf0\x6a\xce\xcc\xc5\x95\x5a\x5f\x32\x55\xf1\x6e\xa6\x66\x23\x58\xc5\x05\x90\x28\x8b\x5c\x8a\x90\x0e\xcf\xe1\x18\xee\x1a\xe9\xd8\xfc\x10\x05\x3d\xc4\x45\xe5\xdd\xfb\xe4\xf5\xf9\x57\x2f\x3e\xb9\x27\xf8\xf0\x28\xcc\xdc\xfb\x64\x7c\x6f\x28\x54\x3d\x1d\xed\xf9\x2e\x4f\x6a\x4c\x91\x3e\xfc\xe1\x13\x0c\x23\xbb\xf8\xcb\x0f\xe6\x87\x4f\x2e\x1f\x0c\x7e\xf8\xe4\x30\x9f\x0f\x19\x48\x38\xbf\x86\x22\x0e\x21\x8b\xb4\x60\x8f\x98\x08\x13\x17\x10\x8a\x58\xeb\x57\xfa\x46\x55\xcf\xa5\x51\xfd\xc1\xe5\x68\xaa\xad\x22\x5a\x73\x85\xfe\x03\x69\xe2\x1f\x52\x59\xe1\x95\x96\x19\xdb\xc5\x81\xcd\xfa\xfd\xec\x28\x73\xd2\xd8\xa3\x60\x53\x5c\xc0\x4a\xd6\xf6\x84\x10\xe7\x10\x9a\xe1\xfe\x8a\x7c\x5c\x16\xa1\x64\xe1\x05\xf7\x14\x04\xdf\x38\xfe\x02\x66\x1a\x62\x55\x73\x3d\xda\x1c\x07\x34\x74\xd1\x40\xba\x7c\xae\x97\xab\x42\xd5\x2a\x8a\x07\x9a\x28\xef\xb9\xb0\xa2\xae\xe5\x79\xcc\xda\x99\x1b\x08\x4c\xb5\x4f\x91\x2e\x66\x85\x75\x52\xa1\xa5\x9b\x19\x71\x59\x83\x26\x5d\x2b\x36\x83\x18\x2f\xf3\x02\x03\x26\xec\xff\xa2\xd8\x21\x30\x59\x06\x2c\x46\xe1\x46\xe4\xdd\x39\x1a\x8a\x52\xd3\x53\x46\xdc\xa8\x4a\x85\x91\x80\x2d\xef\xde\x62\xb3\xbc\xcc\xce\xcb\xcc\x2e\x59\xd7\x56\x83\x05\x26\xcc\x0f\x19\x7a\x82\x00\x5b\xb0\x70\xa6\x94\xa1\x4d\xb5\xd5\x01\x50\x99\x03\x58\x98\x95\x38\x13\x17\x97\xee\x12\x22\x80\x2e\xdd\x09\x94\x2b\x74\xe9\xe2\x83\xdc\x3b\xfb\xa6\x96\xb5\x27\x65\xbb\x89\xa3\x0b\x22\x0c\x1f\xb8\x39\x32\xd4\x41\xe7\x96\xf5\xaf\xde\x04\x1e\xb8\x45\x80\x88\x3d\x68\xa0\xc2\xbe\x56\xb7\x3e\x96\x69\xc3\xab\x02\xe2\xfa\x38\xc9\x21\xbd\x3d\xda\x42\x84\x92\x64\xc8\x76\x08\x83\x3b\x39\xd8\x9a\xe1\xa1\x43\xcc\xe2\x5b\x1f\x0d\xdc\xf7\x4b\x17\x4e\xc0\xe1\x9d\x6e\x73\x49\x1b\xe1\xa3\x49\x5e\x66\x30\xf2\xd0\xea\x73\xea\x17\x3e\x3a\x93\x85\x41\x8f\x85\xf8\x10\xae\x0f\x9c\x05\x20\x45\x5f\xca\x48\xfc\xf1\x37\xab\xf4\x52\xc8\xae\xa3\x68\x37\x99\x17\xdb\xe8\xbb\xa9\x0a\x4b\xdb\xe4\x6d\x41\xbb\xbc\x2e\xc1\x10\x11\xe8\xfc\x76\x61\x25\x8a\x52\xdd\x88\xff\xdf\x57\xaf\xfe\xbd\xae\x57\xdf\xa2\x87\xb8\x8f\x1f\x72\xbb\xa8\x46\xba\x84\xc5\x2d\x3b\xa2\x4e\x90\x8c\x2c\x90\xa5\xd9\xc6\x88\xbb\x67\xe2\xf8\xe8\x28\x0e\xed\xe5\xef\xf5\x98\x66\x17\xd9\xf3\x83\xcf\xe2\x28\xd7\x88\x62\x81\x16\xd8\xd9\xd9\xff\x8f\x37\x5f\xbf\xc6\xc0\x27\x18\xa2\x52\x66\xa5\x4b\xa3\xde\xaa\x5b\xf4\x8e\xc2\x12\xd2\xe7\xf7\xbb\x17\x0a\xbe\x6f\xa5\xca\x7e\xef\xcf\x2f\xde\xf6\x86\x16\x67\x00\x08\x53\x52\x65\xd6\x32\x89\xe2\x59\xf8\xc9\x78\x34\x1a\x7d\x52\xf2\x00\x75\x1f\x55\xa9\x0a\x05\x06\x5d\x27\x7b\xc8\x6a\x4e\x96\xc7\x4d\x07\xc2\xd2\xcc\x5d\xb4\x3e\x3b\x05\xb8\xa8\x63\x79\xaa\xb3\x14\xb3\x97\x8e\x3a\x24\x60\x78\x1d\x9a\x92\x92\xc1\xfc\x00\x68\x9e\xd8\x48\x5e\xad\xed\x16\x69\x8e\x66\x0e\x46\xeb\x38\x1a\x7c\x69\xe6\x41\x7a\xfc\xe1\x93\xfe\x0f\xd9\x83\x01\x8f\x7d\x15\xf6\xc4\x06\x81\xb1\x65\x8e\xb7\x63\x5d\xc0\x2d\x71\x20\xc6\x97\x9d\x41\xcd\xdf\xa8\xea\x20\x2f\x4d\x2d\x4b\xd0\xf2\x56\x6b\x8b\xdb\xd6\x34\xf7\xd8\x2f\x1d\x9f\x06\xef\xdb\x07\x0b\xa9\xd1\xc0\x1f\xf6\x98\x01\x32\xf4\x16\xce\x62\x4d\x73\x83\xb3\xdc\xd9\xf7\x45\xad\xf5\x16\x02\x80\x43\xbd\x9b\x08\xe0\x16\x11\x13\x33\xe7\xce\x55\xdd\xb5\xfe\x76\x63\x01\x0d\x78\x5f\xa7\xdc\x93\x18\x5a\xd3\xb2\x43\x39\x2b\xb9\x1f\xcd\xc7\x74\xd1\xfa\xe5\x34\x31\xfa\x04\x54\x66\xdc\x79\x0d\xaa\xf5\x48\x90\x2b\xc1\x44\x9f\x00\xe0\x93\xb5\xb3\xc3\xef\xb1\x7a\x73\x55\x27\xa4\xe8\x11\x0f\x9f\x3c\xe4\x33\x66\xfe\x47\x27\xdf\x92\x22\xe3\xa7\x5a\xc6\x72\xaa\x23\x4d\x37\xc1\xb3\x44\x8c\xa5\xe7\xf0\x40\x8f\x4e\x42\x3b\x6a\x14\x79\x07\x6a\xbd\x63\x76\x61\xbc\x24\x94\x99\x3e\xd4\x4d\x68\xc0\xe5\x78\x7a\x28\x6c\x97\xd8\xf7\xe6\x92\x06\x08\x0c\xdd\x6d\x61\x9c\x68\x87\x39\xff\x11\x5f\xce\x24\xb3\x42\xfc\xd1\x2f\xe0\x33\x0e\x97\x1c\xe3\x30\x33\x87\xed\x38\x0a\x2e\xc1\xf1\xdd\xbe\xa7\x43\xb7\x71\xf5\x0c\xd9\x12\x85\x45\xfa\xfb\x67\xe2\xc2\xfd\x7e\xc9\x5d\xbe\x1b\x8e\x7e\x7a\x53\x58\xf5\x84\x55\x54\xda\xb2\x7b\x21\x8b\xc2\xed\x99\x7b\x16\xdf\xf7\xc4\xa2\x5e\x16\x42\xd6\x75\x95\x4f\x9a\xda\x9e\xbb\xce\xec\xe3\x5c\x57\x99\x5e\x8a\x59\x25\xe7\x4b\x15\x3c\x3f\x6f\xc1\xe8\x2c\x0b\x71\xa3\xab\x2b\xb1\x90\xab\x95\x2a\x21\x3e\x79\x85\xef\x79\x39\x7e\x52\x9e\xbb\x31\xf7\x20\xe1\xae\xc7\x62\x25\x50\x2f\x03\xe5\x96\x3a\x83\xbb\x99\x5e\x8e\x30\xa0\x56\x15\x6a\x5a\xeb\xea\xbc\x28\xfa\xbd\x0b\xfb\x5d\x97\xa4\x52\x77\x45\xd5\xc2\xe3\x91\xbd\x3f\x9c\xa3\x5d\x13\xe9\xc3\x03\x17\xf9\x65\x37\x4a\x19\x2e\x3d\x1a\x9d\x2d\x25\xc4\x85\xda\x31\x38\xf6\xc0\xc0\x15\xe0\x49\x6f\x21\x6e\x24\xa4\xb0\x87\xb8\x0b\xa4\x46\x35\xe3\x4a\x39\x05\x43\x5e\xa9\x92\x1c\x43\x13\xc5\x06\x01\x4d\xc2\xbb\xd3\x79\x5c\x37\x67\x2e\x3c\x86\xc9\x82\xb1\x37\x89\x05\x44\x35\xde\x7b\x77\x4f\xf4\xed\x36\xa8\xcc\x54\x57\x6a\x60\x5f\x3d\x14\x79\x6d\x88\xcb\xa1\x2f\xc0\x59\x6f\xc0\xd7\xa0\x6e\xeb\xe7\xa8\x33\x3a\xf2\xa2\xf3\xde\xbd\xec\x2b\x3e\x03\xb0\x32\xc2\x79\x6d\x39\xa6\x86\x68\x22\x46\x82\xba\x0c\xd6\x09\x1a\x06\xe5\x08\xf4\x50\xae\x2a\x35\xcb\x6f\xd1\x7d\x58\x2f\x84\x14\x99\x2e\x0a\x59\x09\x93\xcf\xcb\x91\xe0\x89\x68\xdc\x05\xf9\x87\x49\x53\xd7\xba\x14\x79\x76\xd6\xb3\x22\xcc\x01\xfe\xdd\x8b\xf3\xc7\xec\xb2\x9c\xf5\x7e\xbe\x27\xab\x5c\x1e\x14\x72\xa2\xa0\x70\xca\x27\x79\x76\x6f\x68\xd1\xf2\x4c\xdc\x7b\xf3\xe2\xf5\x17\xef\xfe\xf4\xdd\xdb\xb7\x5f\xbf\x7e\xf7\xea\xfc\x4f\x2f\x5e\xdd\xfb\x90\x8c\xf1\xf9\x1f\x0e\x71\xec\xcf\xd9\x7a\x87\x01\x63\x4e\xef\x62\xd7\xad\x4e\xd9\xd4\x88\xd4\xe8\x1d\xe7\xdf\xbe\x3c\xa7\x17\x8d\xc8\x4c\x8a\x7e\x4e\x59\x13\xe9\x65\x9c\xf0\x6e\xec\x0a\xda\xed\x48\x5e\x64\xf0\x26\xc9\x0a\xa2\xb9\x1c\xd0\xd0\x65\x31\xb0\x98\x7d\x4a\x68\xc0\x87\xbe\xfb\xe6\x9b\x17\xdf\xbe\x3b\x7f\xfd\xc5\xbb\xef\x5e\x7f\xf1\xe2\x5b\x01\x76\xe2\x5f\xb8\x8d\x23\xff\x88\xce\x42\x46\xe6\x73\x7c\x23\x7e\x44\xa1\x6f\x54\x75\x20\xcb\xec\x20\x93\x66\xa1\xcc\xbd\x94\xac\x21\xcb\x02\x1f\xbc\x97\x4c\xef\x9e\x9f\x1f\x8f\xdb\x69\xca\x2b\xca\x84\xea\xcc\x45\xf2\xb6\xbc\x51\xad\xbf\x5b\xad\x9c\xe9\x23\xe8\x65\xb0\x41\xcf\x70\xdf\xce\x55\x1d\xb8\x41\xcf\xde\xe9\x79\x6f\xcc\xdd\x70\xa6\x39\xe1\x3c\xf2\x75\xd2\x38\x4c\x28\x87\x07\x36\x78\x3c\xdd\x71\xa6\x40\x03\xe8\x3d\x97\xe5\x0f\xbd\x1a\x13\x23\x30\xf8\xc4\x4e\xa7\x96\xf3\xd7\x96\x76\x1e\x88\xde\xff\xf1\x17\xf3\xcc\xfe\x8d\x27\x9e\x7f\x83\x73\xb5\xaa\x5b\xef\x85\x3c\x3c\x44\x45\x0b\xe2\xf3\x82\xdc\x61\x18\xaf\x22\xe6\x15\xb3\x28\x33\xea\xb0\xc0\xc1\x8b\x78\xe4\x91\x82\xc9\x70\x7a\x54\x3d\x24\x70\xa3\xea\x1a\x3d\x8a\x2e\x68\xae\xae\xad\x8e\x75\xa5\xd6\x2c\x74\xc5\x1d\xb7\x67\x30\x34\x99\xf1\x68\x74\xbb\xb1\xef\x9d\xcd\xb4\xbe\x37\x14\x95\x3a\x70\x11\x0d\x5e\xee\xcf\xa2\x9d\x35\xf2\x42\x03\x8d\x19\x25\x75\x9c\xf5\x06\x41\x86\xb0\x1f\x73\x26\x3c\x58\x48\xe6\x20\x41\x65\xd3\x9c\x3e\xdc\x89\xa6\xf6\x09\x4e\x6d\x2a\x8b\x69\x53\xc8\x5a\xb5\xc4\xba\xed\x53\xfa\xc4\xe5\x99\xf0\x37\x22\x1d\xb7\x89\xb0\x35\x59\x88\x24\x7a\x67\x17\xff\x4a\xad\x9d\xc8\x64\x67\x96\xa3\xe8\x5d\x38\x2b\x9d\x33\x35\x72\x94\xb3\xa8\xe4\x7e\x2c\x2d\xd9\xc9\xe2\x42\x9d\xc1\x6e\x71\x91\x51\x40\x86\x8c\xe9\x03\xfa\xf0\x11\x2b\x00\x72\x30\xc3\xe7\x6d\xc7\x1a\x5a\xd8\xe0\x73\xdc\xee\x29\x5b\xf9\xe5\xfd\x17\x73\x96\x3d\xd7\xa5\xa9\xab\xc6\x8a\x2d\xb0\xad\x2c\x63\xfd\xc6\x7f\xac\xf3\x6a\xe0\xb9\xcc\xc2\x85\x94\x9d\x32\x5e\x14\x19\x48\x60\xf6\x0c\x5c\xa9\xca\xe4\xa6\x06\x2d\x69\x21\x4b\x72\xeb\x18\x4c\xfa\x30\xb5\xae\x9c\xb6\x5c\xea\x3a\x9f\xad\xc9\x9c\x69\x99\x4d\xb3\x04\x73\xf5\x42\x95\x62\xc5\xd4\x76\x1c\xc5\x4b\x0a\x75\x1c\x9c\xe4\xce\x9e\x89\x9c\x5e\x41\xe0\x73\xad\x2b\x8b\x3a\xf2\x12\x19\x1f\xdf\xa3\x43\xa0\xf0\xbf\xbf\xfd\xea\xd5\x23\x3b\x18\x4d\x67\x28\x26\x0d\x8c\x52\xd9\xc3\x51\x95\xbd\x5a\xc8\x72\x0d\x89\xf5\x18\xc9\x4b\xef\x58\x6a\x10\x23\x84\x78\x49\xf9\x79\x4d\x8d\xe1\xbc\x64\xff\x24\xf7\x99\x74\x6e\x3f\xb9\xca\xf1\xdb\xed\x94\xcc\xba\x9c\x1e\x00\x12\x2c\x4d\x1f\xa2\xf8\x02\x19\x53\x28\x26\xdd\xa8\x5e\x06\x21\x4d\x14\x30\xd1\x4a\x5a\xb3\xab\xf2\x06\x27\x3c\xba\xff\xc1\xa3\x12\xf3\xd6\xf0\x77\x12\x9d\x6a\x8d\x05\x06\xc0\x11\x89\x78\xf1\xfe\x33\x3b\x97\x8d\xaa\x24\x8a\x33\x71\x30\x10\x5d\x4b\xa2\xc0\x2c\xcb\x0e\x8b\xc4\xed\xde\x94\xac\x2a\x7a\x87\xbd\x90\xf2\x11\x15\x33\xc0\x83\xdd\x28\x3b\x81\x5a\x89\x42\x5d\xab\x02\x6c\x31\x8b\x5c\x55\xb2\x9a\x2e\xd6\x3e\x93\x3e\xf7\xb1\xed\x73\x4d\x01\xf3\x0b\x79\x4d\x24\x7f\x95\x97\x19\xed\x99\x72\x8e\x56\xeb\x55\xa5\xaf\x73\xb0\x72\xda\xf5\xc1\xa9\x27\xae\x43\xe0\x73\x4e\x5c\xeb\x1d\xf6\xf0\xc1\x52\xd7\xec\xe1\xbc\x76\x3a\x2f\x10\xaf\x85\xf2\x12\x47\x7b\x63\x44\x99\xf8\x44\x50\x01\x9b\xcc\xf1\xe7\x96\xe9\xcc\x2d\xd8\x67\xc9\x9d\xaf\x27\xc0\x11\xaa\x77\x8e\x0b\xea\x92\x56\xfc\x39\x6c\x82\x77\x2d\x2b\xa6\x05\xca\xcd\xf9\xb4\xce\xaf\x95\x7d\x0a\x4c\x9e\x7e\x58\x69\xaf\xcb\x5a\xf5\x19\x74\x5d\x51\xee\x08\x42\xba\xa4\x40\x5c\xe5\x33\x4e\x06\xef\xdf\xdb\x2f\xf7\xc2\x05\x5e\x1d\xa9\x32\xa3\x53\xe2\xd0\x9d\x12\x04\xff\xe0\x0c\xe1\xef\x78\x05\x86\xc6\xc4\x5f\xe2\x1b\xdf\xaa\xa9\xae\x32\x70\x81\x62\x78\x14\x72\xfd\x42\x4f\x64\xe1\xd0\x00\x77\xc9\x3c\x0f\xb7\xa7\x8b\xbc\xc8\xbe\x94\x96\x51\xe5\xca\x3f\x8b\x92\xc4\x57\x72\x05\xce\xe4\xdc\xd4\x07\x70\x62\xd5\x5a\xfc\xbc\xc4\x8b\xf0\x1c\x4c\xc3\xb9\x24\xcd\x07\x7c\xea\xdc\xf2\x12\x90\xcd\xc5\xe1\x21\x5e\x62\xaf\x7a\x95\x9b\x1a\x5f\x73\xc7\x05\xfc\xf5\x56\x95\xb6\xcc\xf4\x20\xcf\x4c\xef\x19\xbb\x21\x44\x4f\x97\xaa\xf7\x4c\xb4\x08\x64\xc8\x61\xea\x1b\xbd\x0b\xc6\x4d\x07\xce\xf5\x21\x9f\x99\x10\xbd\x59\xa5\x27\x1d\xef\x8e\x9e\xa1\xdf\x3e\xdc\xe9\xfe\x96\xd8\x95\xfb\x9d\x01\x31\x0b\x22\x22\x0a\x2c\xa8\x91\x97\x59\x3e\x45\xa9\x81\x38\x9f\x8b\x2e\x45\xae\x45\x6a\x55\xd8\xff\xb4\xb7\x48\x0b\x44\xa5\x10\x8c\xe6\x35\xe4\x46\xa1\x41\x03\x9f\x25\x83\x46\x30\xc6\x86\x51\x1c\xc3\x7b\xf1\x53\x23\xa1\x76\x4c\xad\x4c\x6d\x84\x9c\xcb\xbc\x34\x35\x1e\x8d\x38\xc8\x57\xdf\xbd\x79\x0b\x2c\xae\x77\x76\x76\xd6\x13\xba\x12\xbd\xbb\xf6\x17\x64\x52\x72\x3a\x6d\x2c\x67\xd9\xb2\x67\x99\xa2\xf0\xc5\x8b\x2f\xcf\xbf\x7b\xf5\xf6\xdd\x7f\x9d\xbf\xfa\xee\x85\x0f\x72\x0f\x65\x5c\xfa\x3d\x82\x00\x35\xde\xf9\xbf\x4b\x40\xd2\x75\x9e\x35\xb2\xe8\xf8\x84\xf8\x70\x04\xb5\x17\x5e\x4c\xa1\xe7\xaa\x83\x00\x20\x51\x24\x64\xac\x95\xca\x27\x9b\x60\xd8\x0a\xd6\x7f\xc9\xf2\x4a\x4d\xeb\x62\xbd\xed\xdb\x70\x6b\xa5\xe5\x67\x86\x6e\x21\xfe\xcb\xa2\x90\x71\x25\x16\x5a\xee\xf7\x21\x07\x45\xbf\xb0\xff\xd3\xc3\x10\x4d\x38\x18\xb8\x16\x21\xd3\x43\x6a\xb7\x9f\x69\x3b\xf3\x40\x02\x74\x22\x7a\x93\xb1\xc5\x4d\xbc\x22\x56\x32\xa8\x29\x7f\x66\x29\xaf\x20\x3c\x10\xa2\x0d\xaf\x55\x35\xd1\x66\xeb\x2a\x23\x26\x36\x2f\xb6\xb7\x2c\xef\x4d\x20\xdc\xd1\x80\xc9\x5f\x3c\x73\x09\xe9\xcf\xe7\x6c\x61\x74\x62\x6e\xf8\x4e\x21\x99\x68\x63\x79\x08\x8a\x88\x74\x29\xf5\x9d\x93\xfb\x20\x1c\x46\xa3\x3c\x1b\x9f\x87\xe2\xea\x48\x60\x70\x36\x65\x39\x4d\x55\x7e\x8d\x7a\x40\xa9\x6e\x5c\xe0\x65\x6a\xbc\x0e\x13\x1d\x86\x94\x9a\x0c\xa2\x1e\xdd\x07\x90\x22\xdf\x3e\x06\xa5\x09\xae\x62\xf3\x51\xab\x22\xb3\xcc\xb1\xfc\x28\x20\x98\xae\x31\x5a\xf5\x94\x34\x5a\x35\x66\x11\x20\x62\x8e\x56\x56\x7e\x6d\xca\x80\x2a\x1f\xdc\xbf\x01\xf5\x0c\xab\xe7\x16\x11\xd7\xb9\x6e\x0c\x78\x0a\x70\x30\x9e\xd5\xf3\x31\x5f\x57\xa9\xa5\xbe\x56\xbb\x3f\xd0\x99\x06\x93\x0f\x75\x41\x3c\xec\x5b\xf1\x40\xce\xc5\xe7\x3e\xbd\x33\x79\xc6\xac\xac\x6e\xd0\xcf\x87\x62\x9c\xd4\x9e\x81\x44\x30\x6f\x91\xf3\x1a\x47\xcc\xc1\xf6\xfe\xb4\xc4\xdc\x1f\xf2\x4f\x3b\x18\xc4\x59\x17\x8b\xe0\x3e\xca\xc3\xbf\xf4\x29\x8f\x9a\xd2\x90\x3f\x39\x1c\xd9\x13\xc0\x19\xc7\x5b\x8c\x69\x90\xa4\x56\xb4\x00\xda\x09\x1a\x1d\xcc\xed\x4c\xf4\x5c\x62\x1c\x8f\xa9\xf9\xde\x57\xd9\x0a\x19\x82\xcf\xbf\xfe\xe6\xbf\xdd\x4e\x89\x4f\x35\xa3\xf1\xac\x6c\x8c\xe5\x72\x53\x59\x86\x81\x96\x3a\xcb\x67\x6b\xf2\xe8\x54\x72\x6d\x4f\x2b\x92\xd3\xed\x19\xa8\x9b\x1a\x79\x82\x73\xfb\x44\x03\x8f\xe2\x2f\x64\x96\x1b\xf8\xd5\x65\x4e\xac\xfb\x1d\xc8\x89\x0c\x03\x9b\x51\x14\x47\x84\xb7\x16\x2e\x22\x9f\x37\xb5\x5e\xb5\x38\x1a\x49\x54\x74\xe0\x57\x4c\x0f\xb3\xb2\x6e\xc2\xef\x9e\xa3\xad\xc7\xaa\x70\x6d\xd1\xde\xdc\x58\x71\xad\xa9\x21\x1f\xb2\xeb\x0d\x56\xf1\x28\x51\x91\x33\xda\xe9\x49\x70\x70\x66\x50\xa6\xcd\xd2\x23\xa8\x95\xb9\xca\x84\x9c\xd8\xa1\xf2\xaa\x52\x85\xba\xb6\x4b\xc9\xa6\xb2\x5b\x2c\xc8\x94\x13\x9e\xbb\x29\xfc\x6e\x2c\x7a\x0f\x3a\x93\x09\x7a\xaf\x75\x2d\xdc\x38\x59\x6f\x2f\x99\x9d\x10\x97\xb0\x8d\x7e\xa7\x9a\x30\x48\x56\xc7\x6a\x36\xbb\x56\xc0\xe5\xe4\x06\x06\x17\x3e\x35\xdb\xb4\xb8\x28\x9d\xa0\xa9\xdc\xe3\x25\xc7\x54\x14\x14\xe4\x7c\xee\xd0\x48\x88\xff\xf6\x0b\x42\x52\x0c\xa5\xe0\x5a\x20\x59\x0b\x88\x16\x94\x45\xfe\x57\xca\x4d\xce\xad\x70\x22\x21\x38\x33\xaf\x7b\x26\x89\xce\xa4\xf8\x27\x3c\x5d\xbc\x49\x7f\x1a\x4c\x16\xfb\xad\xe7\xf6\xd5\xdc\x6b\x31\xcf\x29\xfc\x73\xe7\x82\xd6\x55\xd3\x5e\x4f\x76\xc8\xed\xb3\x98\xdf\x2a\x32\x92\x4d\x92\xe5\xa4\xf4\x47\xc3\x77\x88\x5f\xdc\xff\xf6\x32\xa4\xc8\xa8\x46\x98\xb6\xcb\xd8\x8d\x75\xa8\x4a\x51\xc1\x2f\x2e\x84\x0d\x8b\x2e\x40\x4e\xf2\x8c\xd3\x01\xf9\xa0\x51\xb5\xef\xd8\x9a\x20\x64\x2c\x75\x99\xd7\x94\x9d\xc9\xec\x0e\x7c\xe6\x44\x8c\x43\xcb\x31\x83\xc0\x0b\xea\x77\x9b\x56\x96\x1a\x93\xa5\x4b\xf8\x88\x28\x8a\xd4\x5b\xd7\x2b\x35\x6d\x2a\x93\x5f\x2b\x38\xa9\x65\x66\xa2\xd7\xd9\xa1\x82\xf2\x17\xcf\xd9\x10\xcd\xdd\xa8\xa2\xe8\x1e\xdb\x92\xab\x59\x97\xd3\x45\xa5\x4b\xdd\x98\x21\xf1\x2c\x3f\x53\xfb\xbe\x36\x92\x86\x2e\x93\xfe\xfe\xb2\x31\xf5\x7d\x4c\x57\x76\x49\xab\xbb\x84\x90\xfe\x00\x2d\x31\x5e\xa4\xf4\x5e\xfd\x59\x47\x99\xb0\x90\x41\x2c\x7d\x28\xdf\x42\x86\xa8\xc0\x6c\xbf\xbd\x61\x1f\x7f\xe3\x6d\x13\x51\x42\x56\x9c\xa3\x09\x96\x02\x55\x66\x79\x39\x7f\x6e\xb1\x5a\xa9\x12\x7c\x99\x49\xfc\x1c\xdc\xf3\x71\x67\xfc\x8c\x3f\x38\x68\x3d\x7e\x26\x8e\xc4\xa7\x9f\x46\x1f\xed\xce\x75\x7e\xad\x1f\x27\x58\x81\x07\xf2\x8c\x52\x0d\x47\xf6\xaf\x7e\xcb\xb4\x30\xd8\x1d\x52\xcd\xed\x14\x0f\x84\x2a\xa2\xf0\xa3\x24\xb0\x1a\x0c\x27\x83\xc8\x35\x02\x29\x84\xdf\x30\x5b\xa5\xc5\x24\xfa\x3d\xd8\xc8\x8c\x4b\x38\x66\x30\x57\xf5\xcb\x5a\x2d\x4d\xdf\xce\x9c\x15\xa0\xcb\xed\xc5\x38\x79\x18\xc7\x78\x85\x71\x97\x67\x7c\x5c\xe7\x37\x76\x01\x59\x2d\x8f\x48\x3c\x98\x4f\xfb\x01\x75\x0d\x6e\x32\x07\x82\x88\x73\x95\xaf\xd4\xda\x19\xf4\xf9\x04\x06\x09\xb0\x52\xd9\x9b\x75\x39\x15\x67\xa2\x1f\x05\x6c\x70\x8b\xc3\xa7\x9f\x6e\x08\xde\x13\x22\x95\x62\xae\x51\x35\xbd\x7b\xb6\xf1\x09\xd1\x25\xf7\xf0\x45\x87\x18\xe2\xcb\x48\x84\x19\x0c\x42\xd0\x5a\x87\x05\xaa\xe3\x09\x28\x45\x19\x04\x48\x47\xbd\xee\x73\xe3\xa0\xe6\x84\xa2\x1f\x3c\x88\x72\x8f\x61\xd5\xd7\xe5\xf4\xb9\xc3\x08\x29\xe3\xc9\x2e\x19\xf0\xb4\x64\xf7\x5f\x16\xa1\xf7\x31\xdb\x26\xaa\xab\x17\x01\x90\x48\x18\xd3\x38\xcf\xfb\x03\xe3\x8c\x90\x9d\x16\x8d\xdc\x78\x55\xc8\x08\x29\x22\x9b\x82\xd3\x27\xad\xb2\x68\xbf\x0c\x32\xb3\xd0\x6e\x41\x62\x5b\xc7\x90\x9d\xb5\x7b\xdf\x6e\xd4\x48\x5d\x8d\x0d\xe7\xa6\x46\xba\x04\x93\x0a\xaf\xc0\x40\xbb\xd9\x69\x36\x6d\x3d\x95\x2a\x47\xdc\x54\x79\x5d\x43\xf0\x02\x9d\x7c\x6e\x6f\xb6\xa7\x46\x0a\xc9\xfb\x89\xd6\x85\x92\xe5\x7b\xe4\x3a\xef\x21\x56\xe6\x7d\xd9\x14\xc5\x07\xda\x56\x6f\x5b\x8a\x01\x16\x13\x72\x94\x10\x7f\xcd\xb9\xab\x21\xcc\xeb\x80\x56\x8a\xb2\x4b\xd0\xf9\x09\x11\x11\x50\x35\xe2\x5a\x16\xb9\x67\xf2\xa9\x92\xf0\xcb\x0d\x09\xab\xfa\x5d\x50\x7b\x7d\x50\xd8\x96\xb3\xa6\xc3\x96\xb1\xd1\xcc\xe0\xc6\xdb\x6d\x6d\xd8\x60\x66\x70\x03\xfc\x0a\x6b\x03\x17\xe9\x2d\x75\x07\x88\x56\x38\x2e\x92\x34\x4d\x16\xc3\x5f\x91\x94\xed\x86\x77\xd5\xf4\x9c\x71\x6d\x03\x1f\x71\xda\x39\xc2\x45\x61\xd3\x88\x2e\xaa\x4b\xd2\x67\x2f\x6b\x17\xc6\xdc\xf5\x16\x11\x38\xa4\x15\x50\xb7\xa9\xeb\xed\x17\xb9\x53\x2d\xfa\x42\xf6\xda\x48\x54\x8d\x80\xba\x98\x85\x2f\x0c\xb9\x4a\x43\x6d\x7d\x3d\x1e\x4f\x4e\x96\x11\x6d\x48\x0b\xf3\xfe\x96\xf3\xd2\xe9\xc9\x33\xf1\xf0\xc0\xc5\xdc\x60\x52\x83\xab\xe8\x53\x2f\x2a\xe5\xe3\x71\xbc\xa1\x0a\x9e\x4a\xa2\x97\x2c\x99\x5d\x40\xcc\x90\x5b\x56\xfa\x96\x4b\x46\x3e\xc8\xa1\xdc\x38\xfb\xd9\x42\x36\x93\x55\x9a\x31\x04\x9f\x95\x64\x0d\xb1\x10\x30\x07\xd1\x95\xf5\xed\xd4\xf5\x68\x7c\x3f\xe6\x45\x7e\x79\x71\x74\xe9\x79\x30\xfc\x3d\x4e\xfe\x3e\xbe\x6c\x67\xd4\x3a\x2e\x5f\x62\x7e\x9d\xca\x7c\x8e\x48\x2a\x2a\x07\xb5\x3d\xbd\x01\x36\xed\x2c\x9f\xc1\xdf\x35\xea\xfe\x3f\x36\xa6\x06\x2e\x0a\x51\xb5\x6c\x19\x59\x58\x17\x6a\x79\x54\xcc\x46\x41\x75\x26\x18\x1a\x2b\x7e\xfb\x08\x62\xc8\x00\x6b\x8b\xec\xee\x08\x58\x2a\x59\x46\x05\xab\x88\x85\x71\x8f\x33\xb3\xcf\xb7\x3e\x0b\xd9\xcd\x5c\xd5\x58\x27\x0b\x58\xab\x74\x26\x54\x67\x53\xe8\x55\x0a\xf4\x92\x8a\x2a\xff\xe9\x0a\xce\x0c\xb2\x55\xc8\x52\xf8\xe8\xcc\xb6\x8a\x11\x57\xaf\x4f\xce\x39\x8b\xed\xd7\x58\xa7\xde\x17\xa6\xe7\x99\x3a\x53\x3a\xe4\xfd\xd7\x5a\xbc\x86\x32\x43\x54\xa2\x3e\x6f\xdb\x96\x39\x96\x54\x78\x0d\x1d\x98\x53\x70\x49\xb7\xa9\x1c\x63\xdc\x3a\x8f\x4a\xef\xab\xad\x35\x65\x13\x25\x14\xe3\x46\xa3\x45\xcc\xe8\x2c\x80\xda\x0f\x46\xe3\xf3\x79\x69\x31\x7d\x28\xb3\xec\x10\x6d\x1a\xa1\x2e\x19\x2e\x14\xd6\x03\x5b\x73\x7e\x9f\xa2\x02\x62\xf3\x56\x58\xb7\x8f\x52\x58\xdb\xe6\x5b\xe6\x1d\x5c\x8b\xf3\xa4\x70\x92\x93\x1a\xd2\x32\x80\xde\xd3\x4c\xa4\xe7\x92\x02\x8c\x8a\xd7\x41\x89\x19\x8d\xec\xc7\x4d\x4f\xbc\x3b\xa1\x3e\xb3\xdd\x13\xdb\xa2\x28\xe8\xb8\x73\x4b\x99\x79\x1a\xb0\xdc\x1c\xde\xdb\x5e\xa7\x8f\x3a\xe5\x98\x7a\x16\x9f\x71\x8e\x2a\x86\x11\xba\xe8\x80\x3b\x3c\xec\x12\x01\xc1\xeb\xae\x8b\xac\x8b\x00\xd8\xca\xdf\xd9\xc4\xaf\xc2\x2b\x2f\x2e\x37\x25\xf2\x38\x13\x76\xe9\xe5\xe4\x96\xc7\x7b\xe8\xe7\x8e\xb6\xcd\x2e\x8f\xf0\x85\x03\xb9\x84\x58\xee\xf0\x81\x9f\x75\xf8\x42\x23\xe0\xc4\x2b\xea\xbd\x3b\x96\xf0\x88\xb9\xec\xf6\xe2\x7c\xe9\x69\x11\x1d\xd9\xe2\x9c\xf9\x86\x3c\x15\x62\x8c\x32\x2c\xb9\xba\x56\xd5\x3a\x39\x71\x50\xe0\x91\xc6\x40\xb9\x22\x67\x73\x60\xf6\x34\x5d\xc6\x22\x9f\xeb\x5e\xb1\x94\x2b\x71\x2e\xc8\xe5\xcd\x9d\xb3\x18\x4d\x37\x65\x65\xc2\xe2\x17\xb8\x97\x26\xef\x91\xe5\x56\x37\x63\xa7\xff\x26\x3a\xfc\x10\x09\x43\x3b\xa5\x60\x6a\x23\xcc\x7c\xfa\xa9\x20\x9b\x3c\x5d\xb8\x7b\x26\x7a\xee\xc9\xde\x06\x0b\xdc\xcb\x12\x58\x35\x1e\xdd\xcf\xe8\x49\xd3\x0b\x8a\x3a\x5e\x61\x3e\x91\x34\xa0\x00\xfd\x46\x04\x16\x62\xe1\xed\x0c\xd3\xb8\x49\x7f\x58\x3b\xcd\xd6\x7f\x86\x0b\xa0\x8f\x54\xde\xc8\xf2\x30\xf0\x59\xb6\xc9\x17\xb8\xac\x80\xb0\x3c\xac\x92\xd7\x67\x77\xee\x6c\xd3\x50\xb9\x58\xb6\x94\x2b\xbc\xda\x71\xbc\xe7\x66\x25\x9d\x9b\x07\x09\x55\x04\x0f\xac\xb3\x8a\xa5\xd3\x30\x2c\xc0\x8a\xe2\x98\xa8\xc8\x4a\x6c\xbe\x85\x9a\x52\xdc\x60\xe4\x6c\x4d\x06\xb2\xf6\x29\x63\x1f\x8c\xf3\x10\xe8\xbb\x5a\x15\xf9\x14\x4d\x8e\x90\x34\x69\x81\xac\x3e\x8c\x22\x62\x63\x54\xd5\x35\x09\x38\xf7\x78\x67\x04\xf2\x16\xf8\x23\x3e\xeb\x94\x0f\xc0\x79\x00\xb2\x08\x84\x8c\xdf\x81\x4a\x8d\x85\x65\xcf\xc8\x76\x87\xb8\xe9\x30\x22\x1b\x55\x1a\x73\x93\xd7\xd3\x85\x3b\xd4\x99\x48\x43\x36\x96\xbd\x36\x00\x86\xb2\x9d\x17\x45\xdb\xba\xdc\xa2\xa2\x36\xb1\x70\x61\x0f\x47\x22\xde\xd7\xf7\xd1\x8f\xd1\x02\xbf\xd6\xee\xb8\xdc\xb0\xbc\x94\x2d\xf1\xab\x35\x6e\x52\x4c\x11\xe1\x1f\x83\x09\x9a\x7f\x77\x07\x9c\x8f\xd1\xa2\xee\x92\x1a\xd5\xcd\x0e\x76\x6f\x26\xa8\x61\x13\x1b\x76\x48\xc7\x99\x2b\x97\x40\xd9\x25\x94\x77\xf3\x8e\xee\x3c\x8d\x14\xec\x22\xbf\x24\x9d\x2b\x32\x42\x6d\x7c\x17\x4d\x28\x78\x6f\x3b\x14\x81\x14\xc6\xbe\x83\x8f\x3e\x24\xdd\x95\x22\xc3\x12\x82\xf1\x0d\x96\xbc\x74\xd1\x21\xeb\x39\x09\x04\x69\x07\xa1\xec\x01\xc9\x33\x45\x7c\x50\xe0\x22\x2f\x93\xc4\x70\xe8\xd7\x23\xad\x34\x43\x06\x18\xac\xaa\x41\xd1\x02\xb2\xa9\xf5\x81\x13\xb9\x40\xb6\x49\x45\x1f\xbb\xdf\xed\x3b\xd1\x7d\x54\xd1\x04\x9c\xcc\x85\x45\x69\x2b\xa3\x60\x87\xc7\xb1\x7d\x56\x94\x6a\xa0\x6c\xd4\x4e\x81\x1b\xea\x9d\xf8\x2f\x03\xce\x86\xa8\x71\xa2\x97\x57\x40\x2c\x13\xd9\x18\x26\x09\x5f\xff\x75\x84\x0b\x50\x38\xb0\xa7\x12\x69\x9d\x4e\x30\xda\x38\x4a\x9e\x85\x31\x72\xc0\x94\xbe\x56\x55\x95\x67\x38\x1d\x8f\x2d\x1a\x63\xf7\xde\xc3\x6f\x41\x55\x8d\x97\x20\xf1\xe2\x97\x9b\xfb\x66\x21\x6c\xc7\xff\x70\xda\x2c\x5c\x21\x33\x3c\x5e\xdb\xcb\x67\x9f\xf9\xfb\x9f\x71\x63\x43\xee\xed\x21\x79\xe6\xea\xb8\x65\x21\xb8\xdb\x0a\x91\x2e\xda\xc1\x82\xde\x0d\x05\x4b\x3a\x36\xff\x17\x0d\x9e\x2c\x84\x69\xdc\xf9\x7e\xa5\x43\xfe\x41\x36\x68\x67\x03\x1e\x1e\x8a\x6f\xf2\xe9\x95\xaf\x2b\x35\x74\xe4\x78\x72\x90\xe5\xf3\xbc\x16\x0b\x75\xcb\xeb\x14\x73\xe9\x9c\xe2\xff\xd0\x33\x4f\x35\xaf\xef\xe6\x99\x78\xff\x5e\x74\x7f\x40\xc8\xb4\xce\x42\x5b\x22\x57\xf2\xa9\x3f\x1e\x8a\xa3\xdb\xd9\x6c\x36\x1b\x8c\x6a\x4d\x65\xd8\xc7\xa7\xde\x1c\xcc\x9e\xf9\xeb\x4a\x66\xfd\x3c\x1b\x8a\x93\x70\x97\x10\x6b\x17\x35\x58\x7f\x3d\x72\x81\x32\x2d\x26\x10\x11\x1d\x19\xff\x80\xba\x10\xc7\xba\x5d\xa4\x26\x29\x3c\xc7\xda\x01\xfc\x51\x1f\x54\x1a\x1c\x25\x2d\x90\x4a\x19\x55\x9f\x17\x05\x8f\x45\xed\x14\xc6\x2f\xf2\xcc\x4b\xef\xf4\x30\x52\x51\x46\x51\x3f\x34\x01\x34\xad\x33\xb2\xb3\x53\x33\x51\x4d\xda\x78\x8c\x48\xbc\x07\x45\x54\xb6\x4d\x03\x9e\x05\x38\x66\x82\xa0\xa6\x03\xd6\x4b\x1d\x96\x03\x41\x15\x52\x03\x71\xe3\x7c\x34\xd0\x9c\x33\xf4\xc6\xec\xc5\x9e\xf8\x49\xcc\x58\x55\x92\x1b\x8c\x77\x42\x41\x46\x54\xac\x3b\x59\x4d\x9e\x31\xb6\xf7\xf2\x8b\x7d\x3d\x82\x76\xbc\x2d\xac\x84\x73\x01\xfb\xbd\x9c\x0f\xc0\x63\x31\xac\x5d\x2f\x00\x4b\xc9\x60\x2f\x2e\x22\xce\xd2\xad\x15\x62\xa0\xa2\x3d\x66\xa1\xe2\xd8\x27\x7f\x4a\x77\x11\x0a\x6d\x84\x4c\x41\xdd\x95\xed\x14\xd9\xdd\xfd\x60\xd3\x61\x1a\xce\x11\x26\x8f\x21\x1f\x67\xe9\x8e\x6c\x7d\x75\xe5\x0f\x0c\x57\x6d\x0a\x65\x9b\xda\xbb\x3c\xaa\x50\xec\xd5\xe7\x47\xdd\x61\x55\x52\xc9\xe1\x50\x11\xab\x94\xa5\x50\xb7\x53\xb5\x42\x4f\xf6\x4c\x94\x3a\x81\x04\xdb\x11\x46\xbc\xff\x82\x83\x13\x6a\xab\xe6\xe5\xbe\x24\xe7\x61\xee\xc7\x49\xeb\x91\x54\x11\xcf\xaf\x95\xc0\x1e\xd9\x45\x08\x49\x98\xbe\xbe\x17\x4d\x3b\xca\xdc\x44\xd0\x1d\xb9\xe9\xa8\xe6\x79\x2c\x74\x78\x37\x07\x3b\x44\xd3\x80\xb4\xf8\x80\x62\xe2\xa9\x1b\x2c\xe2\xbf\x29\x09\x7a\x81\xb8\x9f\x67\x58\x58\x8e\x80\x06\x5c\x25\xdd\x9d\x46\xbe\x4b\x2f\xbd\x97\x9e\xa2\xf7\xf8\xf1\xea\x0e\x53\xcf\x60\x93\x44\xf4\x0f\x29\xef\xb5\x33\x6c\xed\x9e\xe7\x51\x56\x9a\xd3\xb8\xa6\xca\x57\x49\xac\x6f\x34\xcc\xc1\xa4\x06\x26\xac\xed\x00\x9b\x89\x55\x3a\xe2\x40\x28\x02\xb7\x6c\x74\xb8\x5d\xa3\x0a\xba\x50\x15\x0b\x84\xd4\x7b\x43\x71\x0f\x19\x9e\xfd\xd5\x32\xf3\x7b\x53\xbd\x5c\xea\xf2\x9e\xdd\x20\x2b\x55\xd5\xb9\xf2\xae\x07\xba\xb2\xa6\x6a\x72\x52\xf0\x14\x83\x03\x94\xe3\xfe\xa7\xae\x1a\xf5\x3f\x71\xfe\xef\x10\x99\x40\x54\x89\x58\x8a\x33\x71\xd1\xc3\x27\x6f\x7b\x43\x41\xbf\xae\x7b\x97\x04\x30\x61\x00\x78\x95\x6e\x58\xa4\x79\x4b\x99\xe9\xcb\xa1\x98\x0c\xc4\xd9\xe7\x3e\xf9\xf7\x67\x14\xbf\x9f\x89\x9f\x85\x1f\xff\x19\xc4\x25\x89\x0f\x43\x3a\x2d\xec\xdd\x0f\x43\x81\x9f\xca\x20\xd7\x1e\xd2\xca\x0a\x21\x6b\xd8\x0e\x48\x16\xdc\x8c\x21\x46\x48\x63\x1a\x57\xe3\xf0\x7f\xe4\xff\xd8\x9d\xc9\x53\x06\xb8\x0e\x11\xf9\x7c\x2e\x90\x5d\x5c\x7e\x10\x12\x7b\x04\x69\x53\x83\x39\x95\x1e\x6a\x2d\xfe\xa6\xc7\x27\xe2\xbc\xa4\x72\x7f\x1b\x9e\x6b\xf5\x79\x2d\x79\x08\x66\xfc\x69\x87\x88\x10\xbe\xf4\x5b\xd8\x4b\xbc\x10\x9c\xb5\xe0\x9a\xfc\x1c\x35\xe1\x82\xad\xe3\x56\xe6\xc3\xf0\x4e\x38\xba\xd9\x05\xbf\x20\xf0\xf7\x87\x8d\x7a\xa3\xec\x52\x14\x2d\x17\x98\xf8\x93\x52\x5e\xe4\x97\x2d\x31\xb4\xba\x1e\xe1\x2b\x2e\xec\xed\x4b\x16\xaf\xd6\xaa\x1e\x55\x5d\x8f\x60\xb6\x5d\x90\x6e\xbb\x77\x4d\x6d\xb2\x69\x6a\xfd\xc9\x45\x7e\x69\xf9\x97\x1b\x79\x60\xe5\x66\x7e\x15\xa7\xe6\x0d\x68\x56\xee\xc9\x4b\x1f\x89\x51\x5d\x93\x68\x92\x5d\x4c\x92\x29\x75\xb5\x08\x73\x81\x91\x14\xc3\x95\xff\x55\xb1\x7e\x89\x1b\xce\x6e\xc3\x5c\x01\x3e\x49\x85\x88\xd9\x0e\x06\x8f\x07\xb1\x0e\xa5\x9a\x56\x9f\x17\x1c\xa3\xce\xb1\xd1\xd0\x5a\x2c\x73\x03\x4d\x7c\x43\xec\x59\x99\x61\xfc\x98\xdb\x27\xad\x38\x32\x3b\x20\xd8\xb2\x5c\x60\x02\x44\x0c\x60\xf4\x21\x0b\x62\x83\x7d\x07\xc5\xd8\xa0\xa9\x4b\xe8\xb3\x17\xfb\x63\xb1\xab\xc4\x44\x91\xb4\xf3\x4b\x8e\x7c\x13\xd0\xd8\x1d\x72\xf0\x8b\x62\xd7\xec\xa8\x77\x3a\x0a\xda\xed\x75\xa6\x47\x91\x35\x5b\x7c\x1d\x69\x28\xdb\xb6\x58\xb6\x76\x28\x1b\x99\x3a\x7f\xfb\x48\x36\xca\x53\x6f\x71\x2d\x72\x16\x28\x71\x1f\xdd\xd9\xf7\x31\xeb\x51\xf2\x48\xe8\x51\x6c\xde\x7a\xb9\x51\x88\x0e\xef\xa1\x82\x34\x9e\x04\x6b\x57\x28\x3e\xc4\xd5\x5a\x84\x12\xa1\xb9\x77\x99\x1a\x09\x1a\x06\xc7\xc1\x60\xc2\xf4\xb8\x2a\x33\x96\xdd\x99\xe5\x66\x2a\x2b\x14\x29\x61\x7a\xba\xc8\x70\x6a\xad\x50\xbd\x4e\x39\x27\x69\x5b\xb8\x0f\xd3\xed\x07\x0c\x0c\xe9\x75\x9b\x8d\x6d\x01\x76\x53\x2f\x43\xd0\x9e\x03\xd8\x45\x7e\xc9\x6b\x02\xe0\x0c\x5e\x42\x31\xac\x33\x7a\x5b\xaa\x98\x50\x5e\x3d\x07\x0d\x99\x1a\xc2\x3d\x44\x7a\x0a\x07\x43\x95\x25\x38\x18\xb6\x6b\x24\x71\x98\xe0\xaf\xd0\xe4\xfd\xfb\xf8\x18\x51\x1b\xd6\xa4\xb0\x11\x64\x31\x83\x78\x4e\xd9\xd6\x3b\x0d\x30\x6c\x24\x62\xe7\xf8\xb7\x8f\x71\xdb\xc3\x9a\x20\xc4\x47\x5b\x0d\xf0\xa1\x8d\x01\x7a\x89\x7d\xc2\xfb\x34\xfa\xf1\xbe\x4f\x4b\x25\x76\xd1\x15\x2d\x6a\x07\x4d\xed\xd6\x2e\xf1\x59\x7b\x9c\x45\xe1\x39\x77\x53\x06\xd3\xc9\x5b\x36\x87\xfa\x45\xfa\xaa\x81\x82\x68\xb1\x4f\x37\x87\xbc\x7d\x54\x13\xc0\x37\xd3\x3e\xc6\x32\xee\x4b\x6a\x05\xf6\xe5\x2d\x87\x01\x6a\x6e\xd8\x11\x82\x2a\xe3\x77\x7b\x4a\x5b\x1e\x88\x78\x6a\x60\x25\xd8\xd7\x54\x61\xe2\x2c\xa4\xff\x1d\x4f\x43\x47\xee\xc6\xcb\x5a\x2d\xfb\x71\x84\x71\x80\x0f\x31\x62\x71\xe4\xe9\xdd\xad\x79\x52\x5d\x4f\x6c\x4a\xbd\xfc\x08\x8f\x12\xd1\x47\x94\xd3\x6f\x84\x4b\x69\xac\x17\x2a\xaf\xda\x94\xb2\xe7\xd2\x74\x7a\xc5\x90\x63\xa1\x23\x2f\x54\x60\x75\xfb\x6a\xab\xc2\xcd\x58\xf5\xfe\xaa\x33\xdf\xb4\x89\xfe\x1c\xca\xb7\x71\x85\x35\xb2\x53\x75\xef\xfe\x9d\x0e\x3d\x1f\x39\xbe\x2b\xda\x78\xfb\x9a\xef\x1d\xb2\xbc\x89\x0c\x84\x77\xe1\x81\xf9\x94\x95\x54\xf9\xf0\xcb\x42\xea\xe3\x58\xfa\x8e\x24\x3c\x16\x51\x9f\xd6\xf4\xdc\xba\x5b\x30\x1e\x1e\x41\xdc\x9c\x67\xba\xb2\x8a\x77\xbf\x4d\xcc\x1b\xc3\x98\x5d\x5b\x24\xab\xc4\x5a\x1e\x75\xa3\x5d\x01\xb2\x20\xa8\xd8\x33\x2d\xc7\x50\x96\x52\xd7\x07\xea\xa7\x46\x16\xcc\x3c\x37\xd1\xf5\x82\x57\x2d\xf3\x45\xc0\xcc\x54\x16\xb2\x82\xd8\x05\xb4\xfb\xea\xe5\xca\x02\xc0\x00\xb1\xf1\xc1\x0e\xe5\x1a\x99\x40\x8e\x97\xe8\x97\x9a\xd9\x3b\x06\x43\x2c\x4a\x72\x93\x1b\xdf\x04\xce\xce\x39\x62\xc3\xae\xc0\x99\x15\xe8\x0b\xe8\x13\x8a\x45\xa7\x6f\x42\x7e\xe2\x74\xa1\xa6\x57\xf6\x43\x23\x06\x0f\x79\x20\xc1\x75\x2b\xbe\x65\x9d\x12\xa1\x0b\xa4\xeb\xa1\x06\x43\xd0\x57\xa0\xf4\x7d\xeb\xbe\xfc\x46\x61\x50\x9f\x43\x16\xe4\xa0\xdf\xc1\x26\xdb\xd4\xdc\x67\xc2\xc2\x00\x53\x26\x7f\xdf\xaa\xf6\xe7\xc1\x9c\x47\x6f\x49\xed\x81\x93\x0d\x30\x7b\xc4\x3a\xe5\xb3\x59\xb7\xce\x7d\x78\xe8\x8c\xac\x16\x30\x09\x57\x1c\x0a\xd7\x42\xce\xae\xa2\x2b\xee\x2f\x0c\x76\xfe\x5c\x55\xf9\x32\x07\x1d\x0b\x03\x6d\x50\x71\x25\xd3\x9a\x1c\xc0\x6e\x75\x7f\x4e\xac\xfe\x4a\x1b\xe0\x6e\xff\xf0\x2f\x7d\x6f\x6a\xf3\xc1\xe2\x14\x3b\x8e\x07\x5e\x9a\xd3\x2a\x07\x83\xa4\x5b\x4a\x97\x3a\x2b\xe1\x9d\x93\xd8\x88\x86\x47\x71\x3b\x15\x35\x09\x9d\xec\x20\x26\xdf\x39\xc7\x34\x13\x68\x8c\x61\x15\xd3\x8e\xfc\x28\xee\xf9\xf5\x2a\x51\xa6\x95\x6b\x86\x50\xab\x6a\x9f\xe2\x10\xae\x3d\x10\xe6\xf7\x01\x5d\x82\x34\x51\x64\x49\x18\xbb\x10\xdf\xa3\x52\x28\x6b\x57\xc7\x71\xd8\x19\xe5\x80\xf6\x3b\x8c\xe7\x73\xe9\x9e\x1f\x17\xe2\xe0\x3d\xd7\xb0\x7d\x5a\x0d\x60\xee\x7f\xb0\x87\xff\x7f\xf9\x98\x7e\x2b\x09\xc4\x58\x76\x1e\xc1\x8f\x0d\x16\x8e\x62\xc0\xdb\x25\x1a\xdc\x5b\xff\xfe\xf2\x4b\x50\x38\xec\x36\x71\xa2\x09\x4f\x15\x66\xb3\x63\x75\xd6\xbe\x88\xd0\xb2\x90\xd0\x27\x25\xf0\x9d\xa8\x4e\xf4\x87\x5f\x2e\xf8\xb8\x5e\x92\x50\xc3\x05\x4b\x43\xfa\xb0\x36\x8a\xec\x46\x4e\xd5\xde\x16\x54\x5c\xc9\x32\x00\xda\xd0\x5e\x8e\x4a\xca\x5c\xb8\xef\xfb\xac\x6b\xde\xbb\x1e\xb9\xb3\x4d\xde\xda\x73\xe3\x76\xc5\xd2\xa7\x84\xdd\x19\xed\x07\xc4\x7d\xf0\xb9\x60\x55\xa5\x08\x3f\x6b\x5f\xa3\x38\xd0\x70\x94\x96\xb1\x67\x58\x69\x44\xb8\x71\xbd\x69\x17\x16\x97\xe6\x9f\xb1\x78\xb9\x8e\xfc\x07\x08\xca\x5f\xca\x15\xe4\xa0\xb5\x45\xd2\x37\x1d\x0a\x4b\xba\xe6\xff\x0b\xfa\x8a\xfd\xb4\xb6\xba\x62\x92\x42\xcf\xf7\x79\x42\x90\x3f\xda\x2c\xd4\x5e\x59\x3f\x6e\x7d\x92\xe4\x9f\xb4\x65\xfe\x56\xc3\x58\x5b\x27\xfa\xdf\xe4\x2e\x64\x09\xda\x18\x83\x95\x70\x1f\x07\xca\x59\x4e\x1a\x9e\xe9\xa5\xeb\x8f\xe0\x57\xdd\xea\x53\xbc\xed\x23\xd1\xd4\x60\x9e\x66\x87\x16\xc7\x46\xdf\x90\xbd\xf3\x51\x5a\xda\xbe\x9a\x63\x30\x1c\x7e\xaf\x7c\x1e\xf2\x52\x96\x40\xbf\xc2\xa8\x32\xf3\x11\x52\x78\x32\x52\xec\xa5\x8b\xf1\xf7\xd1\x0d\x50\xf5\xec\x46\x05\xe3\xa0\x4b\x9b\x56\xd7\x50\xe3\x16\xc2\x80\x67\x39\xb6\xe0\xe5\x23\xb9\x0e\x9e\x37\xaa\x77\xad\x7c\x4b\x24\xe2\xf8\x38\x1c\x13\x0a\x68\x25\x8c\xb6\x47\x3f\x0e\x6a\x94\x62\x81\x96\x61\x2a\x22\x53\x85\x5c\x43\x36\x05\x96\xc3\xc0\xc1\x22\x2c\x36\x65\x9d\xbb\xf6\x96\x6c\xba\x43\x62\x15\x68\x51\x67\x6d\x85\x29\x5e\x55\x42\xe6\x06\x7d\x2c\xf6\xdf\x64\xde\x74\x57\x0a\x21\x94\xdc\x70\x05\xb7\xde\xa6\x68\x04\x0c\xb2\x16\xdc\x46\x53\xff\x2c\x43\x81\xd3\x72\x3a\x85\xb8\x21\x58\x8e\x4c\xad\x60\x41\x4a\x1c\x4d\x0a\x96\x4c\x1e\x8d\x6b\xdf\xc9\x0c\x39\xdb\x54\x1d\x6a\xab\x33\x14\x47\xf1\xb1\xf2\x67\x55\xc7\x75\x5d\xf6\xc9\xb8\xec\xe6\x66\xf3\x7d\x4d\x2f\xf3\x7f\x04\xc3\x8b\x73\xf9\x44\x2c\xa5\x23\x56\xa3\x28\x44\xa9\xcb\x03\x77\xe6\x46\xb9\x4c\x26\xa9\x72\x1d\xc9\xcc\x18\xd6\x87\xa1\x3d\xa5\x32\xb5\xda\x54\x4c\xc0\x57\x12\xd8\x8d\x39\x75\xbb\xd2\x55\x7d\x6e\xfe\xc3\xe8\xb2\xdb\x3a\x82\x0e\xc3\x0f\xdd\x91\xe8\x5b\x4d\x0e\x9b\x12\xb1\xb9\x07\xd0\x65\x11\x52\x3f\x9c\xc8\xa0\x92\x78\x12\xa2\x7a\xf5\x9d\x26\x75\x7a\xa8\xcb\xf8\x19\x1b\xd5\x09\x10\x4c\xea\xee\xae\x9b\x0b\xda\x26\x7e\xce\xb3\x67\x10\x8a\xf1\xa3\xd1\xe5\xb3\x24\xa2\xa8\x74\xd1\x44\x11\xfa\xfa\x83\x0f\x83\xc4\x9c\x9c\x78\x31\xf7\xa5\x46\x87\xc0\x6e\xe9\xb4\x4b\x38\x6d\x7d\x45\x38\xdb\xe2\x1a\x3a\x91\xb1\xa5\xdb\x49\xf9\x72\x69\xbf\xc9\x11\xe2\xa4\xd0\x93\x38\x8d\xc3\xf0\x92\x2d\x21\x38\x14\x5c\x94\x1c\x1f\x6d\xa1\x88\x62\x5c\x7f\x2b\xda\xcd\x61\xa2\x5f\x56\x7a\x99\x52\xaf\x5d\xb4\x0d\x51\xef\xe1\xd6\xbe\x44\x9a\x1a\xf8\xec\x08\xf1\x5a\x6d\x24\x46\xfb\xc4\x7e\xd4\x88\xe6\xbe\xcb\x11\x05\xaa\x26\x6f\xb6\x58\xe8\x72\xa9\x90\x85\xb1\x0c\xb1\x61\xee\xd1\xe0\x46\x61\xcf\x0e\x58\xb8\xed\xc6\x71\x43\xec\xae\x13\xd6\xa0\xf9\x78\x88\xb8\xe9\x7a\x3a\x59\x8b\x7e\xf4\x4d\x80\xf2\xed\x3b\xc3\x47\xc6\xe1\x2b\x03\x8a\x37\x35\x58\x7b\xce\x9a\x91\xe9\xb2\x2b\x50\xb1\x5d\xb9\x77\x4f\x05\xa3\x9d\xfa\xd5\x15\xa8\xc5\xab\xa9\x46\x55\x15\x98\xc3\x73\xc3\x7c\xa5\xd3\x4b\xb8\xf8\xf0\x91\x53\x8c\xab\xb1\x7e\xac\x16\x14\x19\x84\xf3\xdb\xb8\x07\xd3\x95\x5a\x8f\x0a\x69\xea\x97\xe4\x4c\x64\x80\xf6\xb0\xb7\x1c\xe8\x68\xb0\xc1\x91\xf6\x21\x78\x28\xdb\xf5\x3b\xda\x15\x43\x22\x27\xe3\xb6\x2c\x26\x5e\x10\x0d\x3a\xa5\xe7\x4b\xb0\x0a\xf6\x8a\xa2\xab\xd6\x16\x06\x82\x82\x5e\x23\x21\x79\xd6\x05\x25\x90\x4d\x6c\xd4\x0a\xea\x48\x26\xbf\x9b\x4b\x87\xef\x74\xf6\x99\x33\xaf\x44\x8e\x62\x41\x7e\x73\xee\x47\x9b\x37\x43\x2f\xe3\xb4\x5c\x1d\x41\x77\xb2\xfc\x64\xe0\xfe\xb5\xce\x33\x10\xc9\xe2\x85\x06\xdd\x24\x49\xd4\x48\x95\x92\x28\x74\x2f\x7c\x56\x14\xb7\x27\xde\xbf\xe7\xb7\xce\x80\x3b\x70\xb6\xd6\xad\x72\x74\x7d\x81\xe7\x08\x31\x2b\xd8\x4f\x39\x62\x1e\xdb\x6d\xce\x25\xc6\x39\xb6\x97\x54\xaf\x14\xd6\x3a\xff\x17\x29\xa4\xfe\x86\x57\xba\x92\xa5\x7d\x95\xfb\xc2\xa4\x6e\xba\xdd\x1f\x8d\x41\xad\xcd\x8a\xa5\xff\x21\xaf\xe5\x9b\x69\x95\xaf\xa0\xce\x6d\x39\x67\xdb\x68\xaa\x8b\x42\x4d\xed\xd1\x9d\x35\x98\x5a\x2f\x26\x0d\x45\xc2\x9a\x5a\xad\xc8\x0d\xe1\x7a\x66\xe4\x25\x5a\x4a\x54\x95\x63\x32\x73\xcf\xb2\x35\x8f\x68\x99\x65\xfd\xd1\x68\x34\xc0\x2e\xfd\x26\x34\x53\x85\xde\x17\xff\xd7\xc1\xdd\xa3\x4a\xb3\xf9\x35\xe6\xc2\xb8\x75\x9b\xe4\xe5\x21\x36\x57\x1c\x99\x05\xab\x6a\x55\xea\x32\x9f\xca\x42\x34\x46\x61\x4e\xbe\x69\x59\x9e\x29\xcf\xd3\x97\xc8\x8e\x2b\x80\x91\xa2\xbb\xd6\x4d\xe5\x71\x46\xed\x36\xec\xf7\xd8\xfd\x05\x03\xeb\xa2\x80\x1e\xed\x8c\x65\x7b\xf0\x33\x6a\x78\x46\x18\x7f\xf7\x4c\xfc\xfc\x21\xed\x5a\x2b\xfd\xfd\xad\x16\xe3\x24\x35\xdf\x3f\x23\x78\x89\x35\x57\x1a\x1d\xda\xda\x52\x2c\x3e\xcc\x94\x4d\x13\x05\x34\x3f\x27\xd7\x4b\xd0\x2c\x24\x66\x51\x43\x7f\xe5\xce\x28\x6a\x70\x4e\x9c\x8b\x25\xb8\x68\xec\xef\xe9\x64\xc0\x8d\x71\xaf\x92\x37\xf7\x30\xbe\x9b\xec\x7a\x94\x72\x39\x29\x5a\x36\xed\x4c\xd6\x92\x99\xa4\xe8\xf0\xe6\xf8\x88\x11\x6a\x89\xa5\x6d\x45\xb2\x73\x19\xc2\x58\xc8\x80\xa2\x27\x02\xf2\xbd\x40\x4c\x16\xc0\xf5\x4a\x3d\xc3\x67\xe1\x6f\x7b\xf7\x19\x5a\x52\x30\x4c\x42\xd6\xf2\x19\xfc\xc4\xa0\xc7\x58\x83\xab\x72\x05\xf1\x4f\x7e\xa9\x89\x59\x45\x3d\xa0\xe8\x16\x7c\x65\xee\x53\x2f\xa8\x83\xcf\x3d\x7b\xf9\x5e\x08\xdf\xf5\x1f\x6f\x65\x71\x0b\x16\x69\x7e\x7b\x79\x11\xfc\x1b\x3b\x5a\xbd\xc5\x61\xee\xc1\x93\xa0\x77\x34\x69\xf3\x63\xba\x66\xd5\xa5\xae\xd9\xf1\xc9\x62\x59\x75\x77\x2c\xeb\x3d\x8b\xe2\x7b\x43\x71\xcf\xce\xd4\x85\x33\x47\xdf\x1e\x45\xb4\xfa\x85\xeb\xd0\xe5\x87\xad\x4f\xe0\x51\xf1\x4e\x6c\xd8\xb0\xfc\x3b\xe2\xd2\xbb\x0e\xb9\x38\x38\xdd\xab\xfe\x6e\xcc\xa0\xf8\x6f\x8c\x41\xef\x2c\x69\xba\x95\x3e\xbb\x09\x2d\xa2\xa5\x7f\x22\x9a\xb8\xff\xa1\xbd\x15\xba\xd7\xfa\x0b\xbb\x49\xfe\x1f\x5c\xef\x91\x45\xc9\x8e\x45\x07\x73\x10\xf2\xa3\xa6\x6a\xd5\x2b\xfa\xc7\x5e\xfe\xf3\x30\x71\xa1\x4a\x2b\xf8\x64\xe2\x5a\x55\x06\x6c\xc0\x3b\xf9\x3d\x11\xc6\x77\x55\xb1\x2f\x6d\xa0\xd4\xee\xcf\xdf\x74\xb4\x4d\xcf\x7e\x16\x96\xab\x07\x13\xb6\x4b\xed\x1f\x84\xd3\xee\x81\xe8\x0d\xa3\xab\x7e\xe5\xb6\x8b\x94\xce\x92\xfe\xaf\x21\x51\x5a\x95\xd6\xac\x24\x65\x92\x41\x80\xc2\x52\x95\x35\x55\xcf\xd1\x33\xd7\x6e\x07\x8c\xe0\x2b\x6d\x4c\x3e\x29\xd6\x62\x5a\xe8\x26\x3b\x98\xc8\xe9\x95\x22\x31\xd1\x97\xb6\xc3\x15\x0f\xd5\x3e\x4b\x75\x43\x21\x3f\xfd\xc1\x9e\xa8\x7d\x47\x4d\x32\xff\x35\x30\x4c\x1f\xe3\x0c\x02\x13\x69\x54\x26\x20\x2c\x82\x92\x43\x4a\x2c\x02\x8b\x3d\x32\x66\xd2\x95\x45\xa0\x2e\x44\x15\x5a\x10\xac\xb8\xe5\xd3\x8a\xb0\x42\x75\xd4\xaf\x27\x5d\xba\xd6\x52\x8c\x9e\x63\xcf\xa0\x76\x33\x99\x76\x03\x99\x77\x1d\x1d\x64\x74\x47\xcf\x94\xf8\xd3\x46\xce\x1f\x0a\x05\xde\x5e\x01\xd1\xb8\x5a\xc4\xfe\xd6\xe6\xa0\x2a\x32\xa5\x50\xff\x0a\x87\xae\xf8\xb3\x58\x54\xbf\xbb\x6f\xb0\x00\x7a\xce\x0b\x48\xc4\x9f\x9c\xd8\x80\x70\x1a\x1c\x0f\xbe\x66\xb0\xac\x94\x0c\x4e\x06\xd0\xd9\xa3\x2f\xbc\x70\x00\x97\xde\x5e\xeb\x30\xb6\xb9\xba\x4b\x5a\xf5\x41\x77\xd7\x7b\xe0\x8e\x6c\x1d\xd5\x7a\xa0\xe9\x75\x45\x55\xfa\x0e\x11\x3c\x01\xc2\x95\x13\xda\x50\x9f\xbb\x95\x55\xb1\x94\xab\xc1\x87\x50\x47\x28\x8a\xc6\xe9\xca\xa7\xc0\x61\xef\xf8\xca\x5c\x89\x81\x6b\x23\xf2\x37\x74\x61\x88\x2b\x00\xa7\x28\x02\xab\x7d\x77\xd0\x31\x6f\xc3\x90\x86\xf0\xfc\xa6\x3d\x18\x36\x7e\xd1\xe6\xce\x0b\xed\xb2\xc6\xed\xce\x0b\xef\x7c\x5c\x7f\x54\x3f\x95\xa7\x1d\x77\x91\xc4\xe6\xe6\x0b\x5f\x60\x24\x38\xd4\x7c\xc2\x10\x00\x57\xc3\x8d\xf1\xe7\xdf\x82\x04\x30\xe4\xfc\xce\xf6\x82\xd0\x1b\xb1\x06\x99\xec\xdb\xeb\x40\x47\x5b\x0b\x1f\x60\x8e\xfc\xbd\x83\xd4\x5b\x4e\xcc\x6f\x83\x53\xb6\x15\x54\x26\x03\x4f\xa9\xd5\x72\x97\x47\xd3\xfe\xd7\x65\x29\x37\xab\x2d\x15\x52\x07\xfb\xa3\xd5\x87\x38\x39\xcc\x4e\x94\xb2\xe2\x2a\xca\x8f\xfb\xa0\x96\xca\x3e\x73\xe4\x42\x18\xcc\x36\xec\x5a\x29\x2a\x06\x42\x21\xa8\xb3\xa1\x87\x89\xa2\x88\x38\xc2\x5a\xfc\x85\xea\x6e\x42\xd4\xaf\xef\xe9\xbb\x0b\x65\x60\xcc\xfe\x38\x84\x19\xc8\x5d\xda\x86\xb2\xbd\x70\x66\x12\xa4\x99\xbd\xb0\x66\x52\xb4\xc5\xe1\x45\x94\x08\x5f\x6e\xda\x80\x5d\x54\xe5\xac\x30\x5e\x5a\x9f\x28\x32\x35\xec\x11\x02\x14\x60\x37\x04\x02\x19\x55\x41\x91\x7e\xe5\x13\xdd\x41\xa2\xf0\x91\x40\xd3\xa9\x5a\xd5\x2d\xdb\xce\xaf\xca\xc0\x73\x2f\x32\xaa\x8e\x12\xf0\x78\x1f\x07\x6c\xba\xa7\xe3\x5a\xf6\xf6\x01\x8a\xd8\x05\xc6\xe6\xca\x7f\xdd\x09\x7d\x88\x2a\xd7\xc5\xc0\x55\x23\xce\xb1\xac\x54\xd4\x6d\x00\xc2\x52\x57\x19\xb8\x33\x59\x84\x04\x6f\x72\xb5\x91\x3a\xcc\x86\x1d\xc5\x8a\xf8\xb6\x79\xbd\x9e\xfc\xe8\xdb\xce\xe9\xc9\x8f\xe0\x3c\x08\x25\xbf\x53\x52\x32\xaa\xee\xeb\xc9\x8f\xc9\x60\x2d\x6a\xf2\xbb\x8e\xa8\x7e\x33\x55\x75\x46\xf0\x5d\xa9\xf5\x21\x3d\x89\xa1\x62\xc9\x00\xbf\xaf\xb5\x5b\x6b\x13\xb7\x50\x4a\x17\xa6\x83\x19\xec\xb1\x82\xae\x20\x0c\x56\xcd\x8f\xf3\x6e\xf7\x3b\x6a\x20\x8a\x0f\x52\x93\x7f\xfb\xe5\xa2\xba\xa9\xbf\x72\xc5\xdc\x68\xae\x46\xdf\xdf\x7e\xc5\x42\x34\x5b\x6b\x83\xee\x5a\x33\x7c\xb4\x03\xb6\x6b\xd9\xfc\xde\x83\x93\x6e\xeb\xea\x6d\x3a\xf6\x7e\x5f\xbe\x6d\xcb\xd7\x71\xfa\xee\xbf\x80\x29\xf0\xfe\x46\x9c\x77\xf0\x21\xff\x22\x86\x86\x9b\xbc\xcc\xf4\xcd\x08\x3e\xe9\xcd\xc7\x5b\x1b\x20\x7d\x22\x36\x38\xfc\x0a\x6b\xc3\x2b\xa0\x90\x56\xe4\x59\xb7\x29\xa1\x6d\x7d\xe8\xf8\x16\x0b\x46\x97\x65\x96\xbd\xb8\x56\x65\xed\x6d\x0c\x3d\x7a\xb4\x37\x74\x65\x7e\xdf\x38\x32\xf9\x3b\x9a\x1b\xe0\x9b\xbb\xc2\x39\x22\x6b\x03\xb3\x2e\x78\xc3\xc2\x79\xa5\xe4\x6e\x93\xc2\xe1\xa1\xf8\x8f\x37\x68\xcd\x36\xad\xf2\x4b\xa1\x75\x1b\x10\x1b\xd4\xb0\xb1\x30\xcb\x55\xbd\xa6\x26\x0d\x23\xf1\x46\x0b\x4a\xee\xc2\xe1\x74\x59\xac\xa9\xee\x21\x19\x83\x7d\xe9\xa6\xba\x6a\xea\xc5\x7a\x14\xea\xa1\x63\x32\x3e\x1b\x6e\x18\x0a\x94\x53\xfc\x69\x99\x61\xc5\x5f\x88\x0a\x2b\x75\x0d\x5d\x34\xec\xe8\x3e\x5b\xdf\xaa\xdc\xce\xf3\xaf\x46\x3e\x62\xfb\x8f\xbc\xf3\x5c\xb8\x3e\x10\xcf\x18\xd4\x67\xa1\x20\x41\x18\xc2\x07\x2d\x24\x43\x84\x50\xf4\x67\x0c\xca\x0d\xa1\x83\x78\x76\xa1\x46\x24\x9e\xa1\x01\xc6\xbd\xed\x59\x98\x2b\x39\x14\x69\x8c\x67\x7e\x02\x5b\xab\xa7\xfc\x32\x5b\x8f\xfe\x67\xb3\xf2\xa4\x34\xff\x4f\x6f\xe4\x49\x3f\xe8\x77\x1b\xcf\x1e\x36\x9e\x14\x69\xbf\x9b\x78\x7e\x2b\x13\x4f\x8a\xd9\xfd\x2c\x3c\xbc\x11\x57\xcb\x6e\x01\xc9\x1f\x57\x6a\xcd\xda\x8f\xa1\x3b\xf5\xda\xfb\x50\x11\x15\xbe\x61\x69\x5d\xad\x59\xd8\x2c\x0e\xcb\xb8\x6d\x68\xfd\x22\x84\xa5\xb0\x7a\xba\x10\xee\x98\xa3\xe0\x3e\x4c\xc0\x98\x4a\x2b\x8e\xe2\x79\xc3\xe4\x4a\x48\xac\x73\x3e\xc9\x5a\x34\x65\x38\x33\x58\x54\x33\x23\x00\xbf\x7b\xe1\x70\xc7\x40\x56\x9c\x44\x8b\x1c\xfe\x15\xec\x57\x7b\xd0\xc3\x4e\xeb\xd5\xc6\x90\xff\x1c\x83\x39\x5d\x74\xbd\x38\x10\x63\x7b\x80\x7d\x8e\x07\xd9\xc1\x01\xaf\x87\x60\x77\x04\x42\xfb\x10\xfb\x7d\x29\x2d\xf1\xdc\x6f\x24\xb5\x98\xd8\x20\xf0\x9d\x8e\xe7\x0d\x04\xd7\x4d\x72\xbf\x92\xe8\xe2\x37\x5f\xc7\xf1\x89\x1d\xc1\x8d\x80\xc0\x76\x61\xd0\x7d\x69\xb7\xba\x6e\x13\xee\xef\x06\xc4\x7f\x4a\xa3\x52\xba\x3f\x3f\xda\x7e\xd8\xb2\x2c\xb9\x4d\x34\x4c\x5b\x13\xe2\x2e\xd8\x7c\x66\xee\x7b\x62\xfe\x6e\x5c\xfc\xfb\xd1\xc1\x3e\xb6\xc5\x34\xc0\x5f\x4f\x7e\x8c\x34\x86\xbd\x88\xc3\x99\x9d\x07\xed\x96\x6c\xbf\x84\x46\x7e\x37\x5f\xfe\x0d\x68\xe2\x57\x5b\x2f\xdb\x92\xdc\xaf\x5c\xdf\xdf\xed\x9c\x7f\xdb\x75\x8e\x0b\xb8\x56\x9d\x0b\xdd\x59\x8a\xb5\x5a\x6f\x34\x20\x74\xd1\x84\xac\xd6\x17\xf9\xe5\xaf\xdb\xfa\xfb\x19\x50\x97\x6a\xa9\xab\xf5\xbf\x88\x05\xf5\x65\x79\x80\xdf\x13\xac\x2a\xbf\x24\x4e\x0b\xe0\xed\x78\xbf\xc8\x72\xfa\x15\xce\xe0\x17\x9b\x4e\x37\x35\x1a\xfb\x87\x34\x1f\xe1\xc7\xfe\x2b\xd9\x8f\x5a\x5f\xf4\xbb\x01\x69\x0f\x03\x52\x0b\x6b\x7b\x58\x90\x2c\xc2\x94\x37\xe4\xa6\x52\x53\x6c\x4a\x27\x86\xa9\x9c\x4a\xf7\x73\x30\xf3\x46\x80\x70\x7f\xc8\x6c\xbd\x2e\xf1\xee\x83\xe7\xa5\x5d\xfb\x2d\x66\xa7\xc9\xc6\xfd\xc5\xf6\xe1\x4e\x0b\x71\x94\x00\xc7\xbc\x1b\x43\x97\x1d\xf8\xbb\xf9\x6c\x1b\x5d\xfd\x4a\xfb\x19\x35\xb4\xff\xdd\x6e\xf6\xcf\x66\x37\xdb\x44\x08\xff\x78\x86\x33\x22\xb1\xdf\x0d\x66\xbf\x1b\xcc\xfe\x5f\x30\x94\xb4\x36\xe6\x2f\x8b\xb8\x0b\xb5\xbf\xba\x37\x53\xfb\xaa\xdb\x21\xa9\x41\xcd\xd7\x13\x0b\xb2\x45\x97\xd8\xd0\x2e\x21\xf6\x0c\xa7\xf8\x4f\x20\x0e\xfc\x6e\x19\xfc\x07\x24\xf8\x7d\x4c\x83\x9c\x2c\xb7\x5b\x0a\x3f\x5e\xd2\x75\x16\xc3\x0f\xed\xaa\x71\x9b\x36\x8c\x37\x32\x7e\xd6\xc1\xb7\xff\x57\xc8\xfe\x37\xb3\x84\xfd\x6e\xe9\xfc\x4d\x69\xfc\xa3\x4c\x9d\xbc\xa3\x41\xb7\xe0\xfd\xbb\x99\xf3\x1f\x7b\x91\x7f\x63\x3b\x67\x27\x41\xa0\x8d\xf3\xf2\x6f\x68\xe3\xac\x95\xa9\xdf\x51\x0d\xb3\x7f\x11\x0b\xe7\xff\xb5\x77\xed\x4b\xae\x73\x75\x23\x58\x51\x98\xa6\xcc\x6b\x61\x3f\xd8\x8a\xaf\xb3\x4a\x2e\xd5\x8d\xae\xae\x60\x91\x78\x51\x49\x59\x7a\x29\x56\xf2\xeb\xf6\xc9\xb8\x4b\x95\x7d\x91\xeb\x2a\x8a\x05\xb9\x2d\xed\xbc\x55\xa6\xfe\x8a\x75\x35\xad\x54\x01\xa4\x06\x76\x56\x68\x82\x77\x8e\x65\x26\x97\x7a\x49\xfd\xb0\xf2\xba\x67\xa0\xba\x62\xa8\x53\x03\x25\x32\x4d\x5e\xce\x0b\x85\xef\x41\x52\x06\xc8\x4a\x49\xa3\x4b\x39\x29\xd6\xc2\x2c\x25\x76\xa5\xea\x9f\xfd\xff\xc7\x57\xa2\xc8\x4b\x65\x05\x23\xfb\x5e\x1c\x54\x14\xba\x16\x4a\x9a\x1c\x37\x88\x6b\xb0\xac\x4b\x1a\x16\x4a\xdd\x40\xc5\x18\xfb\x7d\x76\xa4\x85\xac\x4a\x65\x0c\x56\xb9\xcf\x41\xd8\x60\x0f\x1a\x75\xad\xca\xa8\xaa\xb9\x2e\x0a\x7d\x63\x51\x4a\x1f\x88\x75\xe2\x29\xb7\x9e\xb5\xea\x4b\x71\x73\x80\x75\x16\xb4\xae\xc9\x04\x6d\x27\xad\xca\xba\x5a\xaf\x74\x5e\xe2\xb6\x87\x92\x6e\xa0\x6d\x28\xab\x99\x35\x68\x4c\x6e\x0f\x36\x7a\xa5\xe7\xe2\x40\xbc\xd2\xf3\xb9\x85\xb6\x94\x98\x63\x76\x7e\x07\xec\x9b\x26\xaf\x95\x38\x10\xe7\x0e\xdd\x2e\xb1\xdf\x2d\x70\xc7\x33\xf6\x77\x78\x84\x96\xc4\xc2\x6e\x01\xfd\xb6\x29\xc5\x81\xc0\x2b\x48\x19\xea\x56\x4d\x1b\xf7\x26\x09\xbc\x6c\xc7\x2b\xbf\x55\xa6\x29\x5a\x2f\xb5\xfb\xac\x29\xa8\xb8\xa8\xe7\xf9\x16\x89\x54\xc1\x84\xb6\x8a\x27\x76\xb1\xc8\x55\x25\xab\xe9\x62\x8d\x64\x71\xa5\xd4\x4a\x55\xae\x90\x41\xa1\xe7\x1b\xca\xb6\x74\x60\x18\xf9\xbd\x7d\xc4\xb3\xfa\xae\x75\x08\xe3\xc1\x26\x7a\xa5\xe7\xc6\xf5\x30\x67\xbb\x91\x1a\x22\x59\x9e\xa6\x97\x79\x1d\x99\x4c\x39\x99\x24\xf6\xd1\x42\xcf\x99\x81\xdc\xce\xe5\xcc\xcf\x0a\x0b\x7c\x75\xcd\x09\xea\x99\x76\xf7\x72\x77\x94\xe5\xf0\xe7\x5b\xa9\xc3\x0d\xc7\x1a\x37\xe8\x01\xc0\x71\x6f\x59\xfd\x18\x3c\x36\x57\x76\x23\x60\xe3\x76\x3b\x88\x01\x82\x33\xaa\x6e\x56\xfd\xc1\xd0\xe1\x65\x55\x29\xb9\x9c\x14\xaa\x4f\xfb\x15\x40\xa7\xd2\xee\x20\x2a\x52\x15\xa6\x51\x35\xe5\x48\x20\xd3\x71\xcb\x6c\xa8\x57\x3c\x13\xe3\xd3\x0f\xbf\x0f\x4c\x77\x24\xc4\x4b\xcb\x0a\x54\x59\xe7\x95\x2a\xd6\xa2\x59\xb9\xe5\x60\xb3\xbb\x01\x3f\x4f\xdd\xf3\x66\x47\xe8\x98\x81\x3d\xd2\xda\xab\xd2\xea\x98\xee\x88\x3e\xb5\x66\x53\x81\x3e\xb2\xa9\x74\xad\x0e\x3d\x49\x85\x79\xe9\xa1\x2d\x05\x08\xfd\x7a\x49\x63\xf4\x34\x0f\x05\x3c\x5b\x8b\xe6\x25\x05\xcf\xb5\x9f\x53\x9d\xe1\xa5\x5c\xf3\x46\xf1\xc8\xe1\xec\xc9\x09\x1e\xb0\xd5\xaa\xd2\xab\x0a\xda\x0e\xba\x8f\xd9\x85\x04\x5d\xd2\x67\x3c\x77\xc2\x09\x43\x44\x8d\xb7\x06\xa8\xd2\x24\xb1\xf9\x6a\xa6\xa1\x3e\x34\x4c\x7c\xf7\x27\xe5\x06\x68\x61\xc7\x5e\x45\xd6\xf1\x81\x78\x85\xab\x67\x63\x7f\x8d\x88\x5c\x89\x66\x35\xd5\x4b\x28\x13\x4d\x44\xe4\xd8\x5a\x4a\xe8\xd3\x5b\x6c\x66\xa8\xcb\x5a\xdd\x46\xc3\x84\x15\xd9\x85\x24\x0b\xf7\x0d\x11\x3d\xc7\x0f\x4e\x6d\x28\x80\x58\xda\x28\x72\xe5\xa7\xf7\xc4\xd0\x2c\x2f\x73\xb3\x68\xbb\xf9\x7e\x31\x8e\x68\xc0\xec\xef\x87\x23\x6d\xea\xbd\x91\xf4\x05\xc8\x33\x98\xca\x01\x33\x76\x5c\x44\xe8\xa6\x5e\x35\xac\x0e\xf3\x8d\x38\xff\xe6\xa5\xef\xf9\xe1\x9b\xf1\x50\x2b\x11\xc7\x8e\x89\x79\x0b\xa1\x46\xf3\x91\xf8\x5e\x09\xd3\xac\xa0\xa8\x6e\x5e\xce\x34\x71\x2f\xe8\x61\x37\x18\x0a\x05\xf5\xa5\xed\x2f\xf5\x74\x34\x1a\xa1\xf9\xb4\xc8\xaf\xfc\x68\x23\x7a\x88\x00\xb6\x31\x51\x7a\xfd\xdb\xd6\x54\x40\xac\xd7\x8d\xe5\xd7\x45\x61\xcf\xab\x39\xb2\xc6\x4a\x37\xf3\x85\x3f\x64\xde\xb8\x6a\x72\xd0\x8c\x5b\x18\xa9\x97\x0a\xbe\x97\x3e\xcf\xd4\xb2\xcc\x64\x95\xf9\xc1\xcf\xbf\x79\xd9\xbd\x16\xaf\xe0\x48\x89\xb9\x18\x3e\x73\x46\xff\xe5\xc1\x2a\x56\x4f\x39\xc3\xce\x44\xde\x04\x97\x61\x5d\xa8\x5e\xcf\x5f\xc1\x22\x77\xef\xba\x2e\xbe\xa9\xe5\xf4\xea\x1d\x76\xcd\xc4\x14\x93\xe7\x72\x55\x37\x15\x7e\x2e\x5f\x19\x10\x8d\x04\xc8\x46\x60\xa2\x82\x45\x06\xa9\x5a\x02\x69\x41\x1f\x22\x28\x48\x68\x1f\x33\x94\xfe\x82\x25\x08\x8b\xf5\x48\xd8\xc5\x74\xed\x8e\x26\x4a\xb8\x06\x84\xd8\x9a\xd2\x28\x45\x45\x13\x47\xbe\x34\xbe\x2c\x8c\x86\xb2\xc8\xc6\x75\x99\xb6\x43\x01\x56\x6b\x2d\xac\xc8\x68\xdf\xa6\x2a\x23\xfa\x40\x2c\x37\xca\xe3\x1f\x29\x64\x30\x72\xdf\x4a\xdf\xf0\x8e\x0e\x6b\xfa\xd3\xa2\xe2\xa2\x57\xe8\x79\x6f\x28\x7a\x99\x9a\x34\xf0\x8b\xa5\x19\xfb\x5f\x3b\x86\xfd\x2f\x50\x59\xef\xd2\x37\xb1\xea\x17\xea\x5a\x15\x03\x71\xf6\x39\xa9\x4e\x85\xaa\xc5\xd2\xcc\xbf\xc1\x4a\x82\x0e\xc7\x42\x98\x9b\x1c\x5c\x00\x04\xef\x7b\x94\x59\xbc\xd1\xeb\x9e\x45\xd7\xe0\x8d\xf1\x25\x7c\xf9\x33\xef\x00\xe0\xef\x81\x71\x47\xb5\xfe\x6e\xb5\x52\xd5\x73\x69\x54\x7f\x40\x2d\x1b\x43\x31\xe3\x49\xa5\xe4\x55\x54\xa3\xd5\x7e\x7b\x2d\x34\x92\x59\x84\x9c\x0b\x18\xf0\x32\xd8\xa6\xe8\xc2\x06\x38\x71\x26\xfa\xa3\xd1\x48\x56\x73\xc3\x90\xc1\x0a\xa7\x5a\xe2\x0c\xd5\x6e\x03\x69\x3e\x38\x8b\xa9\xf2\x01\xfb\xaa\x07\xc2\x8e\x37\xfa\x51\xe7\x65\xbf\x27\x7a\xf0\x41\x3f\x94\xfe\x83\xec\xb4\x47\x72\xb5\x2a\xd6\xfd\x68\x4a\x43\x78\xcc\x19\xac\x40\x5f\xf5\x5d\x53\xbf\xaf\xe4\xea\x70\x92\x97\xa8\x98\xcf\x2b\xdd\xac\xfc\xf6\x02\x6a\xbb\xe8\xc1\x45\xbb\xd6\xf0\xcb\x73\x5d\x14\x72\x65\x54\xc6\x17\x1d\xee\xb0\xef\x24\x34\xfe\x19\x86\x4b\x11\x04\xc0\x1c\x91\x78\x61\x03\x9c\x45\x64\x21\x27\xaa\x38\xeb\xf5\x22\x4c\xe2\xe8\x78\x2f\xea\xf2\xf9\x91\xe8\x85\x01\x12\x4c\xa6\x7c\x41\x88\xde\xa8\x52\x2b\x25\xeb\xfe\x83\x07\x2d\xfe\xd0\x81\x59\x8e\x80\x17\x65\x96\x7e\xdb\x68\x4e\x37\x3c\xbf\x99\xef\x82\xb4\x78\x60\xdf\xef\x87\x76\xed\xfb\xb6\x4c\xf9\xe0\xa0\x7b\xca\xad\x22\x94\xd0\xc8\x0d\x05\x6f\xf8\x80\xaa\x99\xd6\xba\x62\x16\x23\x68\xda\x8b\xcd\x72\x17\xaa\xca\x6b\xb0\x5c\xdd\x81\x9e\xd1\x1d\x5a\x9c\x3b\x52\xbe\x33\x2a\xee\x1b\x07\x02\x5d\x4b\xcc\x27\x41\x9c\x5a\x76\x81\x60\x1c\x77\xb7\xb7\x63\x61\x89\xc7\x62\x2d\xf2\x32\xaf\xc9\xad\xd5\x3d\x59\x6f\x98\x0a\x03\xfe\xb7\x6e\xc0\x78\x51\x2f\x14\x58\xa7\x98\x94\xe9\x35\x00\x90\xf6\x83\xf4\x2f\x96\xaa\x5e\xe8\xcc\x40\x01\x52\x35\x55\xc6\xc8\x6a\x0d\x30\x32\xe3\x5a\xc1\x1d\xec\x19\x17\xbd\xd0\x2b\xd7\xd7\xb2\x12\x5f\xad\x2d\x7e\x0c\x15\x24\xeb\xc4\x57\xbf\x47\x40\x3d\xbb\x3c\xf4\x2c\x5d\x8a\xcd\xf5\xb0\xab\x42\x18\x0f\xca\xf1\xf7\x9d\x17\xf5\x8d\xaa\x0d\x9d\x80\xf9\x5f\xb1\xe7\xdc\x2d\xfe\x9a\xcf\x44\x5e\x0b\x75\x9b\x9b\xda\xf8\x1e\x71\xad\x26\x4d\xe3\x23\x36\x18\x16\x5e\xf5\x47\xb9\x2b\xa8\xee\x9a\x1c\x4d\x6f\x87\xe2\x67\x3b\xf6\x33\x31\x3e\x82\x3e\x05\xf7\x69\x2b\x6c\x9c\xff\x6a\x97\x94\xc9\x3f\xc5\x4a\x0a\xa0\x87\x8b\xbe\xba\x86\x8e\x6e\x53\xbb\x08\xb3\xa6\x10\xba\x54\x66\x00\xda\x82\xc9\x33\x75\xa0\x66\x33\x10\x48\x2c\xa1\x15\xb9\xa9\x87\xc2\x68\x36\x52\xa5\x88\xe2\xf2\xda\xc9\xf5\x10\x82\xc4\x8d\x05\x4e\x6f\xc5\x7a\xfc\x10\xdd\x86\x97\x37\x7a\x0e\xec\x97\x07\x4b\xe1\x7d\xce\x6e\x0a\xac\x52\x2f\xce\x44\xee\xc7\xf9\xd0\x42\xcf\xe1\xa1\xf8\x93\x34\xf9\x54\xa4\xc6\x2c\x5f\x61\x98\xe1\x50\x66\x99\xfd\xa5\xdf\x5b\xe9\xd5\x01\x9a\x29\x7b\xc3\x1d\x48\x64\xb3\x19\xad\xf4\xaa\xcf\x48\x4b\x88\xd0\x46\x30\x37\x56\x7a\x57\x15\x6e\x1d\x99\x17\xd4\x99\xce\x4e\x05\x0e\x5b\xd8\x89\xa6\xd6\x2b\x48\xe0\x1d\x85\x11\xc8\xe4\x81\x4f\xbf\xf8\xcf\x7e\x78\x1d\xce\x70\xc8\x48\xf1\x00\x1d\xed\xf1\xfb\xcf\x49\x45\xb0\xf2\x69\x5e\x66\xf9\x94\x56\x69\x21\x8d\xd3\xd5\x27\x6b\x90\x66\xbc\xda\x8d\x9b\xb2\x3d\x09\x0b\xde\x1f\x04\x74\x0f\x22\x44\xbf\x91\xd0\xfe\xb0\x65\x37\xdc\x8a\x6a\x80\x3e\xf8\x28\x84\x5b\x42\x31\xaa\x98\x11\x2f\x8f\x3f\x18\x12\x88\x9d\x51\x3e\x8d\xb1\x74\x40\x5d\x78\xb5\x23\xc6\x78\x85\x2b\x11\x5e\xdb\x8f\x27\x18\x89\x68\x8f\xf0\xff\xbd\xcc\x6b\x31\x3e\x3a\x5a\x9a\xd0\x6b\xd3\x2e\xbd\xac\x2a\xb9\x16\x14\x5c\xe2\xb9\xa9\xbc\x0a\xc6\x63\x75\x0b\x18\x65\xeb\xd0\x11\x36\x31\xb4\x63\x27\xab\xbe\x93\x24\x1d\x19\xc0\x89\x13\xd4\xc8\x52\xa9\xcc\x08\x59\x62\x5c\xeb\xb1\x9f\x33\x6b\xa9\x9f\xd0\x35\x99\x51\x7c\x53\xc7\x4a\x81\xbe\x64\xd1\x72\x68\xc9\x9c\xf2\xef\xcb\x21\x19\x53\x59\xd7\xd4\x5a\x47\xc3\xa1\xd7\x23\x5f\x2a\x68\x40\xd5\xa6\xbd\x4a\xfd\xd4\x28\x03\x9f\xdf\x3f\xa6\x2f\x6e\x51\x61\x5b\xcf\x72\x3e\x3c\x38\xfd\x5e\x77\x95\x5c\x0d\x87\x63\xb7\x4e\x84\x16\x53\x5e\x56\xd1\x0d\x45\x7e\x0e\x77\x22\xda\xf3\x11\xec\x1d\xf4\xa4\x27\x5c\xb7\x22\xec\x9e\x95\x21\xd8\x9f\xdc\x25\xeb\x27\x7a\x16\x26\x4d\x05\x6c\xdd\xe9\xd0\xac\xfa\x60\x27\x22\xb9\xda\xbe\x78\xd3\x73\x74\x97\xf6\x1b\x55\x58\x6d\x8b\x12\x74\xdf\xc3\x67\xb9\xb1\x3a\xd2\xd6\x67\x18\x8c\x7f\x6e\xae\xea\xad\xcf\xd0\xfd\x14\x9e\x5a\xb4\x6c\x7d\xc6\xc2\xf8\xe7\x6a\xba\x10\xc2\xa4\xfd\xe5\xaf\xe4\xea\x9d\x8f\xec\x80\xab\xfe\x6c\x0c\xdd\x89\xf1\xb0\xea\x77\xbf\xd0\xc3\x0f\xfc\x10\x5c\x04\xda\x30\x4f\x58\xa3\xee\x01\x9d\xc8\xa2\x0c\x85\x32\xd7\xba\x8a\x9a\x4f\xd9\x0b\x91\xb4\x08\x08\xd1\xb3\x0d\xe6\xfb\x30\xde\xd0\x99\xbc\xc9\x0b\xb8\x50\x6b\x71\xa3\x98\x0f\x62\x33\x49\xb3\x59\xb9\x8a\x9f\x51\x99\x7b\xd8\x17\xd0\x0a\x60\xab\xf4\xf9\x36\x1c\x18\xb8\xc1\x57\x39\x5a\x7f\xad\x1c\xc6\x5e\xe1\x9c\xa0\x6b\xec\x49\x00\xf8\xdf\x3a\xbd\x40\xb2\x91\x31\xf1\x35\xd6\x90\x57\xa6\xfe\x92\x2e\x87\x7a\x1b\xee\xbe\x8f\x0f\x76\xf4\xc0\x9b\x83\xf5\xbe\x68\xa0\xbe\x7d\x4d\x5b\x1f\x0b\xc9\xf7\xc4\x03\xe1\x1e\xf7\x11\x42\x35\xbe\x7f\x93\xe5\x96\xcc\xb6\x1b\x66\xe5\x75\x0f\x37\x89\x0b\x07\x78\x49\x9b\x3f\x82\x00\x6a\x46\xf2\xb0\x7f\xa6\x41\xdd\x76\x35\xa1\xac\x34\x6e\xba\xcc\xcb\x55\x9b\xd0\x17\xef\xe0\x7f\x5e\x14\x3a\x6b\x5a\xa1\xe7\xfd\xde\x17\xfc\xeb\xc3\x1b\x47\xb3\xa6\x28\xda\xcd\x7b\xfe\x0c\x11\x83\x9d\xde\x2c\xd7\xc6\xd0\x9e\x4f\x76\xf6\xbf\x19\x35\x77\x9d\x3d\x1e\xa7\xe9\xd1\x93\x29\x93\x57\x6c\x2d\x43\x25\xee\xae\x49\xbb\xda\xec\x70\x0e\xd2\x53\xa0\x65\xf8\x32\x2d\xa4\x80\xdc\x48\x13\xba\x39\x08\xf4\x22\x6f\x23\x95\xc0\xb4\x5b\x64\x12\x79\x30\x36\x50\x73\x1b\xe7\x25\x09\x37\x1d\x0c\x0c\xb5\xb4\x4e\x4b\xf6\xdf\x87\xad\xc4\x27\x4e\x12\xc4\x94\x7e\x28\x6c\xca\x56\xc8\x5c\xe8\x83\x20\xb4\xf7\xca\xa0\x7a\xed\xe8\x6a\x28\x56\x8d\x13\xa8\x55\x68\x1a\x41\xbd\x9f\x49\xab\xaf\x99\xc1\x9c\xab\x8e\xa0\xff\x42\xd0\x0a\xd3\x1f\x8d\xc8\x72\x98\xaa\x55\x90\x83\xd6\x78\x87\x35\x48\xc9\xcb\x5a\x95\x19\xa2\x69\xa2\x7c\xdb\x77\xef\xe0\xc6\x39\xf6\x8c\xd7\xc5\x09\xbf\x28\x89\x21\x0d\x85\xd6\xd6\xc6\x0b\xa5\x91\xa7\x2c\x9f\x2e\x40\x29\x9c\x28\xa7\xdf\x67\xb0\x02\x60\x92\x76\x51\x2e\xb1\x1b\x60\x24\xc4\x97\xba\xf2\xe2\x2c\x73\x8b\x7f\xb5\x4e\x4e\xdc\x1d\xda\x77\xa2\x1e\x9b\x5d\xfa\x31\xc9\xa8\x89\x57\x02\xdb\x3f\xf7\xec\x63\xbd\xb0\x36\x35\x52\x92\xd3\xa5\x9c\xaf\x00\x03\x6f\xdc\x72\x79\x25\x9e\x54\x7e\xde\x81\x3f\x79\x76\x0e\xdc\xa7\x43\xfb\xdf\xe4\x0a\xd8\xd7\x85\xd2\x7a\xd0\x53\x48\x70\xc5\x52\x60\x86\x25\x40\xcb\x70\x0e\x79\x5f\x67\x8a\xd3\xd4\x25\xc7\x6a\x17\x11\x83\xd7\xd5\x7d\xb3\x55\x27\x54\x46\xe5\xa5\x08\x37\x48\x61\x33\x1e\xdb\x84\x5d\x1e\x0c\xef\x31\xe0\x3a\xa8\x24\x44\xb1\x65\x8f\x46\xe4\xd0\xd5\x32\xda\x2e\xbb\xfb\xea\x34\xa9\xda\x92\x7c\x7c\x8f\xec\xa0\x57\x60\xec\x84\xfb\x96\xa8\xfe\x28\xa6\xb7\xf6\xda\x33\x0f\x7d\x71\x75\xd9\x6e\x23\x4d\xac\x06\x3c\x06\xb4\x5f\xa6\xe8\x9b\x23\x3c\x36\xab\x0e\x35\xc2\x05\x88\xb8\xe5\x4f\xea\x8e\x39\x0d\x2f\x30\x38\x29\x4a\x7d\xa0\x57\xd8\xcb\x36\xd9\xb1\x76\x30\xcb\xf6\xf3\x4a\x19\x61\xf4\x52\x89\xab\xbc\xcc\xec\x20\x70\xfb\xe0\x06\xbc\x3e\x76\xe3\xa0\x31\x00\xa2\x56\x2c\xdb\x29\x24\x76\x92\xc8\xb4\xc8\x3d\xb7\x00\x7f\x38\x6c\x75\x70\x80\xe8\x0a\x1c\x44\xb5\x72\xcb\xd4\xc9\xcd\x40\x51\x44\x30\x5a\x7c\x3b\x94\x04\x63\x51\x4e\xce\x14\xf0\xd9\x00\x7b\x77\x3d\xf2\x00\x1b\xf0\x45\xb2\x5c\x33\xef\x1c\x33\x80\xa0\x63\x1e\xb6\x57\x78\xaf\xef\x47\x83\x64\x96\xe5\x66\x2a\x2b\xcb\xd8\xc0\x30\x08\x47\x80\x2e\x03\x19\x12\xd7\xb7\x34\xe0\xf6\x69\xa5\x96\x44\xfe\x51\xe4\xd2\x79\x89\xd6\x2c\x81\xd6\x2c\x63\x55\x4d\xf8\xdb\x2d\x48\xc7\xc7\xa3\xe5\x64\xa2\x44\x9e\xa9\xe5\x4a\xd7\xaa\xc4\xb3\x9a\xb1\xb4\xa1\xdd\x04\x6b\xdd\xf4\x2a\x25\x64\x96\xd9\xd7\x7e\xf1\xf5\x57\xa2\xd4\x19\x75\x9f\x12\x99\x9e\x36\x4b\xe8\xb1\xb0\xb4\x1a\xbe\x69\x2a\x40\xd9\x2c\xaf\x30\xee\x08\x85\x6d\xd4\xc6\xd5\xba\x07\xcd\xef\x6a\xdf\x1c\xb9\x06\x9b\x90\x20\x76\x06\x47\xdd\xd0\x45\x11\xd6\x0b\xb5\x14\x95\x04\x8d\xbd\x5e\xc8\x12\x89\xa5\x41\xb7\xd5\x32\xee\x37\x65\xc7\x9c\xea\xa6\xac\x69\xad\xf3\x0a\xd7\x94\xc5\x0a\x92\xfa\xb0\xaa\xf4\x44\x4e\xb0\xa3\x79\xa1\x66\xf6\xfb\x17\x96\xe6\x20\x6e\xcd\x2e\x1f\xc9\x1f\xbc\x4f\x97\x45\x6e\x28\x59\x17\x18\x85\x9c\xe8\xaa\x66\xab\x92\x85\x08\x1c\xce\xd6\x7e\x5b\xaf\xf2\x7e\xe7\xca\xde\x1b\x3d\xd3\x62\x55\xa9\x03\x24\x0f\xd8\xf4\x7f\xc7\x5d\xce\xdf\xbc\xdf\x1e\x07\x89\x80\xf2\x53\x1a\x8a\xc6\xc1\xc6\x62\x52\x4c\x9a\x72\xba\xb0\xc3\x4e\x74\x5e\xa8\x6a\x55\x48\x17\x9f\x73\x58\x2b\x59\x65\xfa\xa6\xa4\x78\xc5\x12\x77\x53\x6e\xbc\xe0\xe0\x96\xdc\xfc\x0d\xd6\xfc\x1f\x39\x8e\x23\xa5\xa6\x9d\x36\xf6\x8f\x22\x2c\x6d\x6a\x5c\x5f\x8b\xff\x03\xbb\x00\xbf\x13\xd7\x3f\x0a\x71\xfd\x1d\x02\x60\x5a\xc4\xf5\x31\x21\x30\xf8\x7a\x51\xa9\x55\xa5\x8c\x3d\x4c\xa1\xbf\x23\x8f\x99\xcc\x63\x15\x65\xd4\x6a\x23\xe9\x8e\x4f\xf0\x07\x54\xb5\x8f\x8e\xdc\x66\x95\xf1\xca\x03\xe0\x82\x1f\x31\xea\x5a\x55\x3e\x84\xdd\x9b\xcd\xe0\xbc\x9e\xac\xc5\x42\x96\x2d\x35\xb9\xf3\x45\x64\xb1\x7d\x0e\xc1\xb1\x6f\x63\xb1\x04\x23\x66\x83\x88\xdb\x92\x63\x47\x3b\xb5\x70\x8c\x88\x0f\xba\x78\xce\x5c\x15\x43\x38\x27\x31\xe6\x97\x34\x38\xbe\xfa\x34\x09\x67\x35\x68\xa7\x06\x74\xd3\xda\x90\x96\x6a\xf0\x21\xb2\x71\x44\xb9\xb0\x2c\x9c\x91\x52\x07\xe2\x80\x4c\x38\x6d\x85\xd7\xf7\xc8\x7b\x23\x05\x45\xcb\x7a\x89\x45\x62\xbc\x81\x1b\x2e\xa1\xc9\xb6\xf2\xdd\xda\x37\x6d\x22\x4d\x0d\x04\x61\x75\x36\x5a\x6f\x40\xf6\x06\x32\x15\xc4\xca\xb6\xac\x61\xec\xc1\x86\xa4\xd3\xfb\x87\x77\xb8\x4d\x1c\x49\xe1\x8c\xd1\x05\x06\x59\xf0\x17\x6c\x58\xd6\x8e\x15\xed\x58\x4a\xfe\x46\x4f\x2c\x67\xb1\x49\x2b\x7a\x1b\x35\x24\xed\x78\xdd\xc7\xbc\xca\xd9\xae\xa2\x4f\x63\xe6\xfc\x07\xa2\x77\xc1\x4d\x6b\xf6\xc2\x65\xcf\x05\x98\xa4\xa9\xd4\x10\xc8\x19\x51\xcd\x88\x7f\x93\x5b\x1c\xe7\x7f\x70\x7f\x47\x36\x8e\x17\x10\xae\xad\xe2\xfd\xc4\x0d\x0d\x53\x5f\x5b\xb9\x6d\x5e\x4b\x68\x71\xc8\xd9\x8a\xec\x8a\x65\xa0\xe0\xd1\x0e\x49\xd5\x7e\x4a\x5e\xef\xcb\x36\xf6\x66\xe9\x9b\x2d\xa7\xf6\x77\x9e\xef\x12\xc7\xf4\xe2\x68\x14\x00\xe7\x73\xb2\xed\x1a\xa0\x4d\xcb\x0a\xff\xab\x55\x41\x76\x2a\x38\x3f\x25\x14\x58\xd8\x6e\xc4\x1f\xc5\x0e\x22\xbf\x42\x14\x6a\x44\xee\x2f\xa0\x87\xe1\x1d\xb1\xed\x7f\x17\xee\x90\xa0\x67\x28\xf6\x76\x34\xbd\xa5\x0c\x3e\x9f\x17\x7e\xcb\x9b\x2d\xaa\x5b\xbf\x5a\x1d\x06\x3b\x44\x2b\x5c\x72\xf1\xbd\x2e\xf0\x87\x95\xae\x0e\x0e\xd1\x2a\x2f\xeb\xa2\xec\xf7\x80\x61\x54\x32\x07\x0e\xc5\x6a\x59\xa3\xd5\x56\xdd\xf2\x56\xd7\xea\x76\x64\x6a\x9f\x38\x94\x5e\xe5\xb3\x83\x74\xad\xb8\x6f\x75\xf4\x5a\xf7\x0c\x05\x71\xfd\x50\xf6\x06\x83\x2d\x0d\xab\x3b\x9f\x1d\x24\x99\xed\xd1\xf7\x39\x5f\xa8\xfd\xbc\x77\x6e\x71\xbe\x3c\x7f\xf9\xea\xc5\x17\x43\x0c\x85\x6c\x57\x78\xfe\x8e\x84\xa4\xe9\x42\x6b\x7b\xe6\x46\x09\x10\x98\x26\xd3\x94\xa8\xae\x71\x1d\xdd\x14\xf9\x7c\x51\x17\x6b\xb1\xd4\xd0\xc5\xb9\xbc\x56\x65\xae\xca\xba\x7d\xb0\xe2\x89\x6d\xd4\xc6\x78\xa1\x0d\x11\xeb\xfd\xc1\x8e\x4d\xf5\x81\x3b\x29\x3d\x0b\xf7\x09\x3e\x1d\x56\x5c\x77\xe6\xb8\x5d\xbd\x41\x54\x3a\xf7\x87\x52\x94\x34\x00\x09\x39\x6e\x8f\x1a\x77\xd4\x31\x59\x93\x9d\x90\x16\x89\xdb\x8d\x95\xba\x82\x80\x87\xeb\x3c\x6b\x64\xc1\x82\x89\x36\x6f\xfe\x24\x8a\xbf\xd3\x99\x1b\x1d\x01\x0c\x05\x69\xee\x86\xb7\xa2\xb5\x4f\x96\x90\xde\x11\xf9\x80\xf9\xe0\x6f\x16\xba\xaa\xa7\x4d\xed\x58\x49\x32\x7a\xcf\x88\x42\xcf\x93\xa1\x31\x21\x84\x0d\x69\xaf\xb4\x8f\x2d\x77\xd6\xbb\x25\xd8\x2f\x47\x22\xce\xd2\xc0\xd1\x16\xfa\xc6\xeb\x0b\x76\x75\x30\xa8\xcc\x67\x67\x6c\x48\xcb\x20\x4f\x68\x3c\xf7\xe9\xad\x38\xb3\x84\xf1\xfe\xbd\x4b\x7e\x8e\x0f\x76\xf2\x87\x86\x19\xa0\xb5\x44\x95\x60\xcf\x80\x80\x82\x99\xcc\x8b\xa6\x6a\x8d\xec\x2e\x87\xb6\x86\x7b\x8d\x8c\x14\x99\x8c\xb5\x8a\xdc\xa5\x29\x5e\xa1\xd1\x36\x47\xb0\xa9\x65\x55\xab\x0c\x9c\x34\x50\x38\x1f\xad\xfc\x0b\x69\xca\x5e\x8d\x25\x4d\x08\x44\xac\xa1\xd9\x6b\x24\xf4\xd8\x3b\x5f\x48\x88\x3d\xb0\x0f\x6f\x78\x61\x5e\x8a\x65\x5e\x14\xb9\x51\x53\x5d\x66\xc6\x1b\x91\xc2\x2c\x6a\xad\xaf\x78\x18\x07\x9f\x0e\x0e\x16\xe6\xe4\x4b\x38\x75\x4c\x28\x6b\x2a\x54\x3d\x37\xcd\x67\xa9\x21\x45\x6b\x6a\x79\x54\x74\xf4\x46\x08\x88\xe6\x46\xaf\x25\x2c\xe0\x50\xf6\xcd\x42\xbc\x2c\x43\x66\x6b\xa6\x6a\x7b\x80\x83\x32\xe9\x96\x33\x68\xaa\x20\x2b\x14\x0a\xfa\xa1\xfb\x12\x32\x35\x24\xf4\x09\xf0\x45\x84\x44\x98\x88\xe2\xb0\xfc\x11\xc9\x2b\x5d\xdf\xf4\xba\x59\x4e\x50\xb5\x5c\xca\xdb\x7c\xd9\x2c\x03\x89\x89\x78\x27\x85\xe8\xad\x1b\xe7\x45\x10\x25\x3e\x9d\xd3\x5e\xa9\x94\x9c\x2e\x70\x8b\xcc\xc4\x91\x45\x08\x65\x7e\x71\x3b\xa8\x3b\x19\x8c\xa2\x4c\x48\xb2\xa7\x42\xe2\xcb\x50\xa8\x6b\x55\xd2\x8a\xcd\x50\x8b\xb7\x13\x4a\xbe\x6b\x29\x6f\xbf\x0c\x24\x7f\x94\x2c\x53\xd5\x50\x2b\x08\x96\x5d\x25\xd0\x6b\xa4\x64\x55\xac\xc5\x44\x4d\x65\x83\x19\xac\xb2\x14\x4d\xa9\x6e\x57\x38\x15\x4b\x5e\x79\x87\x70\xbe\x92\x65\x3e\x0d\x79\x00\x28\x96\xba\xf8\x85\x95\x2a\x33\x9f\xc2\xe8\x98\x6f\x60\x84\xff\xd9\xa8\x46\xf9\x86\xa3\xec\xc8\x04\xbe\x8f\x8e\x07\xe2\xfe\x21\xad\x0c\x91\xd3\x1f\xa0\x9a\xc4\x23\x99\x82\x05\x1a\xc5\x48\x3b\x12\xb8\x70\x10\x9b\x5b\xf9\x3e\x3b\x23\xcf\x5f\xbd\x7a\xf7\xf6\xc5\x9b\xb7\x6f\x28\xd4\x63\x46\xa7\xe6\x8b\xb2\x59\xf6\x7b\x7f\x90\x45\x01\x16\x13\xf3\x79\x6f\x90\x06\x4d\x70\xc5\x9b\xf3\xd0\x8d\xca\x7f\xfb\xed\x38\xdb\x2e\x87\x2c\xcb\xbd\x08\xc8\x6b\x85\x0c\xec\xfb\x86\x56\x5c\x13\xe6\x0d\x30\xbd\x4e\xaf\xea\x77\x2b\x59\xd7\xaa\x2a\x43\x79\x0a\xba\x40\xc9\x0c\xee\xaf\xf7\xef\x71\x5e\x1e\x75\xae\x13\x07\xbe\xeb\x39\x18\x9d\x81\x1a\x43\x58\x00\xb9\x60\x99\xd2\xc3\x7c\xb3\xd4\x2b\xc0\xbb\x75\x7e\xc4\xc8\xd0\x1f\xc5\x1f\xfc\xb3\x3e\x93\xfc\xc7\x90\x49\xce\x42\x0e\x1c\xd8\xc5\x8f\x14\x0c\x7f\x78\x28\x5e\x6b\x47\x2a\x37\xaa\x57\x59\x91\xc2\x12\xe7\xbd\xbb\x67\x67\xf7\xb8\x0d\xdd\x5e\xb9\x27\x8c\xe6\xa0\x4b\x2b\x3a\x83\xb1\x01\x87\xb2\x4b\x1b\x08\xe5\x0d\x18\x19\x3c\xbb\xe3\x63\x79\xd7\x57\x59\x1b\x67\x5b\xa1\x7e\x2d\x5e\x00\x76\x68\xbc\x7b\x76\x96\xe0\x31\x16\x89\x1d\x1c\x93\x88\xbf\x55\xf3\x17\xb7\x2b\x2e\x12\x43\xbb\x75\x82\x04\x42\x01\xea\xf0\x2a\xed\x60\xc0\xb4\x08\x3b\xb1\xbc\x64\xc5\x9c\x50\x46\x76\x91\x20\x41\x0f\xbe\x7b\x26\x22\x52\xd8\xf0\x38\x97\x98\xc9\x59\xeb\xa8\xd9\xd1\x28\x50\x59\xa0\x8a\x07\x0f\xd2\xfe\xeb\xec\x66\xe2\x7a\x2f\xd0\x67\x53\x82\x68\x07\x52\x31\xee\xf6\x5a\x8b\x39\x62\x1c\x8f\x1d\xe3\x72\x37\xc3\x63\x4e\x17\x87\xb4\x2f\xa0\x10\x7c\xde\xae\x90\x86\xe4\x72\x48\x42\xd7\x37\x9b\xc2\x38\xde\x23\xa2\x3f\xf8\x0d\xf0\x0d\xfd\xb7\x89\xd8\x52\xf0\x37\x01\x42\x5e\xce\xc4\x16\xfe\x32\x64\x1c\x4b\x56\x31\xa3\x72\x8f\x4b\xdf\x8d\x07\x9a\xf9\x78\x8e\x82\xe2\xcf\xad\x9c\x82\x86\x60\x89\x53\xc1\x41\xd1\x3d\x06\x4e\xde\x8d\x01\x2f\x74\x04\x0d\x43\xe2\x7d\xd4\x61\xb3\x8c\xe1\xc0\x05\xa4\xe4\x25\xc5\x9f\x94\xfe\x50\x94\x19\x9e\x07\xd2\x7d\x02\x4c\x09\x4c\x7f\x28\xda\x28\x9f\xce\x1f\x62\x3d\xe1\xe0\x61\xca\xc1\xfe\x1c\xf1\x1b\xcf\x78\x3c\xc7\x6a\x31\xa7\x16\xb7\xd9\x50\x87\x62\x67\x98\x5e\x47\x91\x0a\x3e\xb6\x4b\x73\x61\x9c\x74\x43\x2c\x61\x18\xf3\x22\xbf\xdc\xa1\xbf\xd3\xff\xdc\x57\x45\x95\x2f\xee\xb2\xd7\x47\x41\xa5\x56\x0d\x80\x8c\xb3\xde\x6b\xcd\x57\x56\x65\x34\x63\x08\x4d\xad\xf2\x5a\x55\xb9\x44\xe5\xbb\xf5\x82\x1d\x1b\xef\xdf\xb5\xbe\x52\x19\xa9\x05\xd4\xa2\x4b\x97\x90\x1d\xe6\xb2\xb5\x59\x6a\x72\xce\x04\x37\xb4\x37\x78\xdd\x1f\xd3\x38\x80\xa7\x82\x95\x27\xc4\x4e\xcc\xb5\x68\xca\xa9\x6c\xe6\x8b\x2d\xa6\x99\x98\x2a\x74\xf9\x1d\x3d\xf1\xc2\x8d\xff\xae\x75\x9c\x2d\x95\x31\x72\xae\x86\x50\xef\x61\x08\x25\x22\x2c\xf6\x08\xa9\x74\xd7\x97\x60\xed\xb9\x11\xf7\xb1\x82\xf4\x06\xe2\xec\x4c\x1c\x89\xf7\xef\x69\x55\x5b\xa3\x99\x5a\xd6\x8d\x79\x46\xa2\x4b\x6f\x40\xf5\x5c\x99\xe1\x88\x24\x58\x19\x87\x93\x5b\xee\x46\x17\xac\x7c\xd7\x1f\x90\x55\xaf\xd2\x4b\x21\x43\x69\x5a\x21\xbe\xb7\x27\x93\x1b\xcc\x39\x8b\xe7\x1a\x36\xb5\x95\x9a\x65\x81\x8a\x79\x5e\xa7\xc6\xfd\xd8\x8c\x81\x2f\x08\x27\x9b\xf4\x96\x9b\xbc\xc6\xdc\x49\x2b\x84\x19\x39\xb3\xda\xa1\xf9\xa9\x51\xc5\x94\x62\xb6\x90\x08\xdc\x97\xdf\x09\x56\x21\x51\x57\x78\x2c\x04\x0a\x6e\x4b\xdd\xad\x0e\x68\x6c\x51\xa0\x16\xa2\x5f\x0f\x30\x80\xb6\x9e\x1f\x39\xe1\xf4\x85\x9d\xc6\x57\xf8\xe0\xbb\x41\x6c\x99\x23\xa5\x6e\x29\xd7\x10\xdf\x0e\x29\xb5\xf6\xe3\x50\xbc\x5d\xc8\x32\x2b\xac\xf0\xeb\xfd\x4c\x09\xa6\x9c\x09\x35\xcc\x93\xbe\xc9\xb2\x14\x90\xf6\xcf\x44\x0f\x77\x41\x2f\x14\x0e\x6d\x4f\x15\x89\xc1\x37\x81\x8b\x6f\x7e\xf3\xe2\xf5\x17\x2f\x5f\xff\x19\xf1\xe1\x06\x85\xdc\x6f\x1c\xd3\xef\x74\xcc\x3a\x0e\x78\x09\xd3\xb6\x18\x82\x27\x1f\x88\x5e\x10\xb7\x61\xc3\xb7\xb9\x4e\xc7\x14\xd2\x38\xca\xd6\x4b\xdd\xba\x3c\x10\xbd\x21\xbc\x0d\x4a\xa8\x3c\x10\xbd\x67\xf6\x0f\xd8\x59\x61\xae\xf1\xd8\x31\xb5\x75\x00\xa4\x06\xb4\xc0\x93\x48\xab\x68\x67\xc6\x5b\x56\xe4\x75\x2d\xae\x4f\xc6\x65\x88\xd3\x58\xc2\x7a\xbd\xca\x2d\xb1\xaf\x45\xa5\x0e\xaa\xa6\x34\x22\xaf\x21\x99\x44\x46\xd5\x90\x86\x11\x1b\x2b\x54\xed\xfc\x29\x5f\x7c\xfd\x95\xd5\x56\x27\x79\x91\xff\x15\x8d\x22\x66\xa1\xab\xfa\xa0\x56\xd5\x12\x14\x72\xdd\xd4\x51\xd2\x84\xcb\x86\xca\xd4\xb4\x90\x15\xf3\x27\x31\x33\x4c\x48\xaf\xe0\x72\xc7\x44\xeb\x42\xc9\x12\x73\xc4\xcd\x55\xbe\xa2\xd4\x0f\x08\x03\xa9\x1a\x45\x19\x44\x74\xd1\x1e\xfd\x57\xf9\x6a\x45\x51\x32\xa9\xd3\x0a\x38\x33\xc3\x8d\xc8\x97\x4b\x95\xe5\xb2\x56\x90\x1e\x0d\x28\x22\xdb\x3b\xc8\x08\xce\xb7\x0b\x4c\xc7\x32\x91\x3c\x0e\x17\xdb\x5e\x1c\xa2\x8b\x5b\x27\x45\x22\xda\xbc\x3a\xf9\xcc\x10\x93\x7c\xb7\xf3\x4e\x70\x7f\xe4\x4e\x04\x81\x4d\x0e\x02\x08\xc4\xac\x48\x4b\x95\x73\x55\x61\x55\x1c\x9f\x39\x33\x1a\x8d\x86\xe2\x68\x00\x46\x89\xa5\x5c\x4f\x3c\x07\x5d\xc1\x31\x47\xe6\x13\xbb\xd0\xe0\x3a\xbd\x91\x6b\x96\x99\x59\x57\xf9\x1c\x6c\x9f\xa0\x8c\xd7\x14\xc4\xa3\xdc\x53\xaa\xcc\xdc\x68\xbe\x04\x54\x0d\x59\x3a\x46\x8b\x1b\x05\x7d\x1b\x29\xd7\x9c\xea\x95\xa3\x83\xdd\xa8\xba\x2e\x94\x00\xff\x38\x11\x8c\x6e\x2a\x37\x14\x7e\xe1\xd4\x52\x43\xb3\x82\xf8\xc9\x38\x17\xa8\xc6\x9e\x98\x29\x86\xe3\x72\x91\x43\x20\x1a\x12\xc0\x13\x5e\x96\xda\x77\xfa\xa5\xba\x11\x5f\xc8\x5a\xf5\x07\x03\x71\x90\xd8\xa3\x62\x8e\x34\x8f\x12\x65\xfd\x65\x28\x7e\xc0\x6c\x66\xae\x8a\xae\xe5\x4e\x78\x1e\x0e\x3b\x59\x53\x64\xb2\xe3\x0f\x61\xd0\x91\x7d\x68\xd3\x53\x4b\xf3\x56\xbf\x41\x2b\x18\x31\x19\xf7\x45\x03\xc6\x99\x4c\xb3\x5c\xca\x2a\xff\xab\x22\x0d\x33\x91\x67\x98\x1d\x28\x35\xd7\xb6\x31\x8c\xb8\xdd\xd2\x76\x74\x83\x73\xcc\xc5\xb7\xb1\xa2\x2e\xad\x72\x2d\xbf\xd8\xcd\x85\x21\xba\x96\x11\xfe\xd8\x98\x3a\xf8\x80\x5b\xb5\xd9\x77\x6d\x58\x7c\x53\x57\x51\x97\x6e\x4f\x58\x0b\x5f\x35\xaf\xe7\xe1\x23\x18\xc8\xdc\xeb\x09\x31\xb8\xb7\x42\xe4\x43\x02\x5c\xdf\x6e\xf2\x5f\xb5\x0f\x46\x6f\xaf\x62\xdd\x53\x4b\xe1\x47\xde\x70\x20\x0a\xe6\x6e\xfa\xa3\xf0\xbf\x3e\x13\xea\x76\x10\x65\x80\x93\xb1\xab\x25\xdd\x54\xe9\x29\x4f\x17\xbe\x39\x7f\xf3\xe6\xc5\x17\x83\xae\xc9\x46\x8f\xc0\x4b\xbc\xee\x4d\xb7\xfc\x8e\xfc\x5c\x3c\x3a\x3a\x1a\x74\x09\xfd\x6f\x0a\x7d\xe3\xcc\x4d\xfa\x2a\xc8\x49\xd1\x66\x48\x86\x1b\xc4\x5b\x95\xef\xe0\xce\xaf\x39\xf3\x5f\x83\xe7\x74\x84\x7c\xbf\x57\xc1\x0e\x45\x94\xc1\x30\x46\x07\xbd\xb3\x36\xe1\xee\x8a\x0c\x0d\x9b\x5e\x46\xa8\xe3\x2f\x5b\xb1\x24\x2a\xf6\xaa\xc8\xb3\xd7\x26\x89\xab\xd2\xb2\x55\xda\x25\x4e\x28\xb7\x98\xaa\x3a\x44\x1f\xaa\x62\xd1\x4d\x24\xed\x25\x8b\x73\x06\x3a\xc9\x03\xee\x54\x4d\xf9\x5a\xdd\xd6\x24\x6f\xff\x26\x2c\x23\x6c\x74\x12\xfd\xef\x30\x6b\x77\x46\xa9\x98\x21\x9d\x93\xee\xd0\x99\xcd\xdd\xf9\x8d\x69\x40\x22\x22\x63\xaa\x3d\xa2\xa0\x4e\xdb\xa4\x99\xcf\xd7\x21\xcc\xd3\x39\x77\x5c\x6c\x28\xbd\x01\xd4\x3f\x8c\x2f\xc3\x99\x96\x42\xdd\x5a\x8d\x03\xa5\x90\x52\xc8\xb9\xcc\x4b\xd2\x5e\xca\x38\x3d\x98\xb7\xd9\x40\xbf\x27\x1c\xe1\x50\x7c\x85\xea\xf4\x40\xc0\xb0\x77\x6a\x14\xd2\xd4\x42\x4e\x23\xe9\x1c\x6b\xc1\xc8\x06\xca\xef\xc1\xb9\x8d\x7d\x40\xec\x80\x88\x23\x3a\xb4\x29\xf2\xcd\x1f\xdc\x50\x48\x0b\x0a\x2c\x05\x3b\x2d\x56\x69\xf0\xb1\xb6\x08\x7c\x07\x2a\x03\x5a\x45\xa1\x0a\x68\x75\xce\x00\xd0\xd6\xac\x42\x61\x50\xa3\x48\x25\xf3\x90\xe8\x0d\x12\x84\x1d\x0b\x32\x63\x21\xdf\xbe\x5e\x40\xda\x04\xa5\x63\x3b\x15\xae\x25\xc1\xbe\x2c\x21\x82\x1a\xa3\x93\x2a\x75\xe0\xd6\x32\x68\xde\xe7\xaf\xbe\x3f\xff\xef\x37\x62\xa9\xaf\x95\x81\x5c\x5b\xe7\x49\x75\xb3\x5c\xe5\x45\x4b\xc2\xfc\x5b\x9c\x2d\xad\xb8\xab\x42\xd6\xea\x0d\xee\xed\xb7\x58\x8c\xc8\xfe\x1a\xbb\xa9\x64\x5d\xab\xe5\xaa\x26\xed\x4c\x4d\x75\x95\x45\xde\x64\xf0\x74\xc9\x6a\x73\x22\xd3\xe6\xf3\xeb\x5b\xd5\x75\x82\xb1\xb3\x67\xc8\x66\x18\x57\xd7\x73\x1c\xe4\x95\xac\x83\xc6\xec\x0b\x4d\xfd\x22\x16\xc2\x5e\xe5\x4b\x1e\x51\x4a\x34\xac\x70\xc1\x5e\x05\xca\xa8\x5b\x3f\x74\xfe\xa0\x03\x11\x4a\x5b\x66\xba\x99\x14\xea\x60\x05\x96\x7a\x08\xdf\xc6\xe1\xe8\xf6\x32\x37\x8d\x89\x72\x9c\x2d\xb1\x60\xe1\x27\x6c\x45\x53\x66\xea\xd6\x95\x43\x21\xbe\xea\x2c\x17\x8c\xb5\x42\x23\x1a\x00\xfd\xfc\x4c\x1c\x75\x31\x63\x57\xe5\xdf\x02\x85\x4a\xff\xdb\xcf\x86\xb8\x01\x36\x06\x3f\x88\x12\xc2\x01\x28\x64\xd1\x5e\xf8\xa9\x51\xcd\x86\xa4\xec\xf6\x7a\x73\x06\xdb\x4e\xec\xf2\x4a\x39\x72\xe8\xf7\xef\xc5\xdd\xd4\x8f\x82\xb2\xe6\xa0\xc5\xd3\xdb\x72\x35\x3b\x28\x5b\x1e\xb7\x4f\x3f\xed\x16\x61\x3f\x3f\x6b\x79\xe7\x36\xc9\x30\x5f\xc5\xce\x46\x8a\xd8\x27\xff\xe1\x10\xa3\x5f\x79\x59\xd0\x51\xaf\xe3\x24\xea\x9e\x35\x9d\x48\x87\x87\xe2\x1b\xa5\xae\x9c\xd2\x52\xeb\x15\x0e\x06\xe9\x08\x68\xf0\x71\x35\x8a\xd1\xeb\x5a\x61\x79\x33\xd2\x4c\x90\xc4\x26\xba\xa9\x71\x2c\x64\xa5\x43\xe6\x30\xa1\x4a\xc6\x59\x6e\xea\xa6\x9a\xc0\x4b\xf2\xd2\xef\x20\x12\x78\xed\x57\xe5\x54\x18\xd9\x0e\x43\x7c\x99\x46\xc0\xea\x01\xf8\xc2\xaa\x29\x21\x46\x10\x62\x90\x23\x1f\x4f\xbc\x86\x17\x47\x97\xde\xef\x44\xf2\x46\x87\xab\xf7\x8f\x5d\x26\x0a\x84\x7f\xc6\xa4\x7f\x2f\xd7\xa2\xf9\x15\xee\x5b\xba\xe9\xc7\xe9\x21\x14\x3a\xc0\x62\x14\x07\xb1\xcf\x06\x6e\x24\xb5\x92\xda\x8a\x53\xfb\x56\x3f\x19\x36\x84\x04\xfa\x07\xdc\x47\xba\x1a\x3f\x0c\xba\x9f\x4a\xe3\xa9\xe0\xfd\xa1\x5b\xa0\xa6\xc2\x0e\x49\xe5\x4e\xcc\xd8\x21\x4f\x58\xa9\x6b\x64\x46\xde\xd2\x68\x71\x45\xe7\x69\x08\xde\xe9\xa4\x6d\x6f\xaa\x75\x86\x63\x18\x1e\x59\xe9\x2f\x93\xc0\xc5\x76\x7a\x6f\xab\xba\xb1\xbe\x92\xa0\xdb\x3b\xc9\x78\xc5\x85\x56\xa4\x40\x47\x32\x33\xde\xa4\x74\x66\x0c\xd6\x13\xcc\xe1\xd5\xad\x1b\xb9\x32\x48\xed\xb7\xa4\xab\x45\xfa\xd1\x7e\x0f\xc4\x6f\x24\xf6\x66\x16\xf9\xac\xee\xff\x2a\x3d\xca\x55\x66\xb5\xc4\xe1\xa6\xf2\x2b\xf5\xa9\x0e\xfd\xe3\x6f\xb3\xce\xf1\x6e\xaf\x9a\x72\x23\x2a\x0e\x0f\x05\x87\x72\x56\x31\x84\x83\x6f\x0f\xfe\x0c\x14\x72\xa9\xa1\xd6\x12\x85\xae\x28\x0c\x29\x74\xdd\x99\xeb\x1a\x52\x18\xa0\x12\xca\x52\x49\x2c\x9a\x5d\x81\xe3\xb1\xae\xe0\x30\x77\xe7\x5e\x9d\x96\xe9\xee\xde\x4b\x3b\xd7\xa8\x6a\xca\xdf\x5c\xdd\xed\x38\xb7\xbd\x9f\x8f\x87\x52\x79\x3b\x06\x2b\x31\x15\x99\xe0\x9b\xb2\x65\x72\x35\x50\x8c\x5b\x4c\x65\x09\xc9\x6f\xc6\x34\x14\x50\x85\xc6\x4b\xae\xde\x30\xdb\xaf\x8f\x7e\x66\xb2\x7b\x69\x6a\x25\xb3\x21\x58\x9a\xd0\x8a\xc7\x63\xa4\x31\x79\xd1\x05\x31\xdb\x0f\xf7\x61\x43\xdb\x6d\xc8\x7e\x10\x30\x05\x16\x7a\x4e\x49\x28\xe8\x73\x4e\x52\x50\xa8\xfa\xe6\x5a\x2c\xe4\x6a\x65\x45\x37\x92\xc8\x21\x3e\x53\xcf\x7d\x76\x2c\xe9\x7d\x9b\x23\x09\x47\x42\xfc\x69\xed\xd3\x80\x28\xea\x89\xb2\xac\x5d\x69\x84\x21\x89\xe6\x14\x2c\x73\x9d\xab\x1b\xe5\x2b\xc7\x77\x14\x9e\xd6\x33\x8c\xd6\x9a\x54\xfa\xc6\xa8\xca\xf0\x84\x23\xba\x46\xe9\x9e\xb9\x81\xf0\xab\x6a\xc9\x27\x0b\x6a\x98\x0b\x72\xc1\xfa\xcc\xdf\x2b\xcc\x3f\x47\x8f\x30\x66\x0e\x92\x14\xa0\x51\x79\x41\xf3\xa5\x97\x12\x68\xa9\xed\x41\xba\xc2\xca\x62\x3e\x11\x75\x16\x27\x19\x0e\x05\x26\x76\x16\x4a\x62\xc2\xa3\x9f\x22\xaa\x4b\x33\x30\xe4\x96\x2e\xc8\x13\x23\x2b\x7c\x06\x91\x8f\xff\xcb\xcb\x0d\x45\xa2\x85\xae\xda\x27\x1e\x2f\x27\x7b\x07\x2a\xe3\x51\xca\x17\xac\x3d\xc6\x48\x25\x61\x76\x28\x9a\x7d\x84\xc0\xba\xa1\x09\xa8\xb7\x9f\xf6\xbe\x25\xc1\xc7\x9b\x75\x5a\xf2\xaa\x77\xf7\xf4\xcd\xa0\xb7\xc1\xa2\x49\x8c\xb3\xed\x2e\x65\x06\xe2\xcf\x3a\xc3\x0e\xbd\x15\xf8\xb3\x3d\xec\x18\x5f\xea\x6a\x29\xeb\x38\x1a\x51\x1a\xcb\xc5\xa6\x14\x26\x40\x57\xf7\xc5\x10\xb7\x61\x71\x54\x2d\x0d\xf7\xf8\x4f\x8d\x38\x13\xfd\xa5\x11\x87\x62\x7c\x74\x74\x34\x18\xd5\xfa\xcb\xfc\x56\x65\xfd\x63\x98\xb5\xf7\x6d\x4f\x8d\xc5\x95\xe9\xc5\x75\x76\x68\x0f\xbb\x5e\x88\xce\x48\x04\x46\xe2\xf5\xde\x01\x0a\xce\xa6\xbc\x45\xf1\x48\x14\x82\x9d\x4d\x73\x12\xf8\xae\x96\x39\xec\x2c\x40\xc3\xdc\xb3\x40\x28\xee\xf1\x8b\xfc\xb2\xc3\xb5\xc7\x3a\xb1\xf9\x09\xb6\x55\xa1\xee\x30\x83\xb7\xc1\xd1\xef\xb8\xe4\xb3\xad\x04\xda\x71\xfc\x78\x92\xc5\x6c\x63\xa8\x1c\xe6\x15\x99\xf8\x90\x41\x63\x00\xf1\x56\x67\x8d\x98\xc5\xa1\x76\x1d\x39\x6d\x2e\x3e\x5e\x65\xed\x10\x85\x21\xf0\x1e\x3c\xd7\x79\xc3\x15\x48\xcd\xd6\x25\x6c\x77\x4d\x75\x33\x58\x32\xe6\x79\x88\xbb\xf2\xce\x1d\x4c\x63\x0a\xb9\x58\x39\xf0\x01\xab\xaa\x91\x46\xe5\xdc\x64\x60\x3c\xa3\xce\x1e\xe2\x7e\xc8\x9b\xcc\x32\xe7\x3d\x37\x51\xc0\x20\xf0\xf4\x60\x0c\xa1\xc9\x87\xba\x6a\x94\xb7\x4d\x95\x29\xa8\x3a\x38\xd6\x17\xa4\xd2\x93\xbe\x06\xa8\x17\x0e\x0e\x56\x95\xd6\x33\x71\x53\xd9\x03\x89\x42\xe6\x9d\x05\x0e\xcc\x52\xac\x30\xed\x56\x3b\x11\xed\x00\xcc\x0e\xb0\x62\x80\x3d\x36\x5c\xfc\x7c\xc8\x42\x8b\xd3\x03\x22\xf7\x61\x68\xe4\xb0\x35\x0d\x90\xb2\x00\x61\x7c\xb4\x20\x47\x19\x63\xce\xac\x86\x61\x10\xce\x18\x55\x84\x78\x2f\xff\x26\x17\x10\xb6\xf5\x93\xf0\x7b\x42\x64\x2f\xaa\x3b\xdb\x07\x6c\xb3\x07\xaf\x26\xa4\x35\xf0\x63\xbd\xa0\x9d\x4b\xb0\x0b\x81\x09\xe6\xd2\xa4\x02\xcc\x5d\xa0\xdf\xda\xc1\xd9\x3b\xd0\xb7\xfd\x33\x5b\xc9\x78\x2e\x6e\x73\x43\x76\xc1\x47\x0e\xc9\x22\x36\x37\x44\xb9\xdf\x28\x1f\x29\x0f\xbe\xf5\xa2\xf0\xc5\x48\x9d\x15\x8f\x85\x98\xdf\x28\xd8\xd3\x2c\xb2\xfc\x6f\x11\x5b\xff\x77\x8b\xab\x77\x87\x13\x99\x4e\xa3\x84\xd5\x4e\x72\x70\xae\x14\xfc\x8b\x82\x4b\x9c\xbd\xf1\xbc\x8c\xa3\x76\x92\xaf\x02\x6b\x3a\x14\x9f\x24\xdd\xa2\xd6\x62\xae\x4a\x55\x49\x88\x50\xc0\x21\x3b\xe3\x6e\xfc\xfc\x19\xfb\xfe\x46\x53\x7d\x10\xea\x11\xe8\x32\x13\x69\x8a\xdb\x76\x10\x3b\x5f\xe9\x0b\xc4\x99\xe8\x51\x40\x79\xef\xb3\xdd\x4f\xe1\x99\x28\xec\x53\xf8\xeb\x3e\x0f\xa1\xd3\x09\x1e\xa2\xb0\x2d\x9e\x17\xe9\xb4\x2c\x28\x83\x56\x76\x3b\x70\x45\x1f\xb4\x0e\x5d\x81\xe4\x39\x00\x2e\xae\x4a\xa8\xf8\x51\x6a\x8c\x3a\xd5\x33\x57\xa7\x04\xcd\x9d\x66\x73\x7c\x78\x47\xe0\xd9\x46\x4f\x2c\xc8\x67\x8e\xfb\xe0\x2f\xdd\x21\xe1\x1d\x83\xf2\x36\x0c\x9a\xa2\x99\x37\x95\xc7\xea\xed\x31\x1e\x13\x09\xba\x4d\xe4\x24\x15\xf4\x86\x91\x47\x8e\x3f\x80\xd7\x79\xef\x9a\x37\x76\xdb\x32\xaf\xc1\x56\xfe\xb8\x0f\x61\x75\xca\xe0\xad\xfa\xb2\x7b\x8a\xc6\xf0\x81\x15\x75\x73\x49\x4c\xc4\xc1\xb9\xc9\xb7\xa4\xf8\xf4\x53\x67\x87\xc6\x48\x8e\x77\xb1\x81\x3d\xca\xa5\xcc\xf2\x8c\x4a\xac\x62\xb9\x6e\x4a\x8f\x90\x65\xc6\x6e\x41\x6d\x38\x0a\x6d\xce\x97\xca\x9b\x86\xd1\x06\xd2\x0e\xc3\xda\x95\xb9\x18\xe2\xe3\x12\x96\xe1\xf8\x0f\x72\x02\x93\x70\x09\x16\x76\x45\xc5\x73\xb0\x0d\x94\x9c\xd6\x14\xce\xcc\xc3\x40\xad\x38\x02\x1e\x89\x0d\xda\x2a\xf4\xdd\x58\xe6\x65\x83\x55\x29\x78\x54\x20\x16\x5d\xe7\xda\x6b\x60\x62\x50\x94\xf6\x7e\xa9\xeb\xfb\x42\x36\xb5\x5e\xca\x9a\x22\xbf\x40\x80\xa2\x4c\xa4\xf8\xbb\x72\x5f\x38\x8f\x25\x96\xed\x49\x4b\x88\x09\xce\x11\xa3\x7c\xf9\xba\x62\xbb\x74\x13\xff\x34\x75\x5c\x06\xd4\x57\x09\x98\xb6\xdb\x00\xd9\xf5\x35\xae\x56\xee\x1e\xf3\xd3\x25\x85\x0b\x75\xb8\x47\x22\x1a\xe4\xe7\x50\x4a\xc0\x77\x63\x02\x6e\x05\x70\x76\xd0\x6d\xa8\xe9\xdb\x0b\x7b\x65\x0f\x52\x64\x68\x88\xeb\x15\x4b\xb6\xc6\x58\xb1\xd8\xd3\x7b\x5a\xad\xd8\x3e\xfc\xa7\xa8\xcb\x10\x3c\x45\x96\x22\xb0\xc4\x61\xd7\x6b\xa8\x5a\x2c\x99\x7c\xcd\xa4\x0a\xbe\xab\x80\x6f\xd3\x8b\x32\x2d\x8c\x1e\x85\x4a\x73\xf4\x86\x2d\xb5\x90\x71\x26\x2e\x6a\xcf\xee\x1d\xa8\xc7\x92\x07\xcf\x30\xb4\x9d\xb4\x8f\x61\x3d\x0e\xe9\xc3\xfb\x48\x9f\xc3\x26\xd4\xe8\x26\xf4\x03\x1b\x5f\x09\xab\xd4\xb5\x37\xfb\x78\xc5\x00\x54\x89\x49\x43\x01\x6c\x60\x5a\x73\xb5\xdc\x5d\xf0\x5c\xd0\xab\x78\x82\x3c\x6c\xa9\x38\x82\x16\x02\x91\x59\x29\xe6\x24\x8b\xc2\xd7\x9e\x41\x9d\x4a\x8a\x99\xba\x11\x85\x5c\xab\x0a\x0c\x56\x3a\x0e\xb3\x74\xdd\x54\xe6\xda\xd5\x0f\xe4\x9a\x19\xbe\x0b\x38\x0d\x24\x68\xac\x54\x85\x43\x79\x6d\x42\x96\x42\x99\x3a\x5f\x92\xcd\x68\xa1\x6f\x44\xa1\xcb\x39\xaa\x5f\xbe\x08\x38\x86\xed\x59\xd5\xae\x83\x38\x9c\x3a\x00\xe9\x0d\x4b\xc3\x53\xfe\xb8\xe0\xe7\x8b\x6e\xee\x7b\xae\x30\x0c\x75\x18\x2e\x82\xce\xed\xd8\x3e\xec\x23\x48\x62\x8c\x62\xfa\xfc\x7d\x16\x90\x16\x76\x69\x47\x04\x20\xdd\x8c\x22\xff\x96\x26\x6d\x92\xba\x72\xf5\x73\x98\xa7\x59\x3b\x02\xde\x58\x41\xbb\xe5\xc3\xe7\x06\x4f\x5f\xe3\xbd\x33\x7a\x15\xcb\xc6\xfa\xc6\x79\x74\xcf\x07\x9c\x94\x73\xcb\xd9\x20\x4a\xc5\x8a\xd0\xa1\x74\x69\xad\xa9\xe2\x6c\x4d\xfa\x91\x97\x81\xbc\x52\xbb\xe7\x8a\x44\x0c\x27\x66\xcc\xf6\x5b\x86\x61\x9a\xc9\x12\x75\x9f\xdc\xd1\x39\xbd\x7f\xe0\xa4\x10\xa9\x84\xee\x84\x9c\xd8\x67\xf3\x6d\x53\xb6\x02\xf0\x82\x9d\xae\x1d\xee\x94\x3e\x13\x82\x1e\x9c\x47\x2a\x44\x2c\x79\xab\x8f\xac\xe6\x50\x93\xce\xfb\xa8\xff\x20\x8e\xc5\xfb\xf7\x0c\x13\xf4\x02\xbb\x00\x9b\x7d\x5e\x91\xd8\xd7\x15\x11\x49\x15\xef\xad\x92\x71\xa3\xb1\x32\x2c\xa6\x3b\xa9\x9f\x1a\x59\xec\xb9\x7e\xf0\xd8\x8b\xff\x8c\x96\x4e\x4e\xeb\x46\x16\x43\xaf\xaa\xb0\x88\x61\xbc\x05\xfe\x5a\x7f\x97\xfb\xc8\x3d\x84\x95\xc0\x3c\x84\x3f\xf2\xf0\xa6\xc3\xcb\xdd\x33\xff\x8a\xae\x28\x81\x90\xf8\xda\xd9\xf2\x96\x0f\xf5\x99\x78\xf0\x20\x1f\x78\xaf\x32\xde\xbb\xc8\x2f\xf9\x2b\x2e\xf2\xcb\xb8\xc0\x06\x7b\x41\x94\x5b\xc1\x70\x7c\x0e\xb6\x1f\x3a\x1e\x4b\x7a\x27\x09\x88\xd8\x48\x00\xd2\xc4\x00\xe1\xce\xcc\xe4\x15\x3c\x00\x8b\x84\xb6\xc6\x50\xe3\x4e\x26\x8b\xf5\xce\xce\xce\x7a\x42\xaf\xac\x88\x07\x85\x15\x42\x78\x3c\x16\xff\x82\x02\xeb\x53\xad\xaa\x29\x0b\x31\xa3\x28\xaa\x8d\xbd\x2f\xec\xec\x96\xb2\xba\x72\xc7\x9d\x8b\x79\xc0\x42\x8f\x9c\xb2\x20\x99\x97\xc5\x74\x1a\x52\xc2\x52\x76\x75\xff\x83\xfb\x7c\xa8\xcf\x80\xbf\xfe\x7f\xe4\xbd\x69\x7f\xdb\x38\x92\x38\xfc\x3e\x9f\x02\xc9\x7f\xb7\x29\x25\x92\x2c\xca\xb6\x7c\x64\xdc\xbd\x92\x2c\x75\x3c\x39\x37\x76\x92\xdd\x71\xa7\xb3\x10\x05\x59\x6c\x53\xa4\x86\xa4\x2c\xab\x27\x99\xcf\xfe\xfc\x50\x55\xb8\x48\xca\x47\x92\x9e\x99\xdd\x27\x2f\x62\x1b\x04\x0a\x40\xa1\x50\x28\x14\xea\x98\x0b\x2e\x2f\x60\xd6\x5c\xed\xfa\x1a\x13\x26\xda\xa9\x5e\xef\x2a\x4e\x28\x37\x08\x04\xfd\xe9\xc5\xf2\x77\xe4\x69\x50\xa0\xd4\x7a\xe1\x44\xc4\x79\x38\x5d\x3b\x46\x4c\x06\x09\xd6\x3b\x1f\x84\x71\x80\x53\x93\xdc\xc1\x95\x34\xa0\x84\xe6\x69\x18\x89\xc3\x28\x8c\xb5\x82\x4b\x79\xf0\x40\xfa\xb1\xbb\xee\x1e\xca\x72\x51\x32\x81\x2a\x6e\xa1\x86\x9e\x1c\x29\xa8\xb6\xd8\xbb\x3c\x8c\xc2\x7c\xed\xbc\xa0\x2d\x52\x91\xe7\x6b\x15\xfa\x94\x22\x51\xd8\xa9\x81\xe6\x3c\xaf\x01\x26\xed\x40\x33\x72\x28\xc9\x94\x30\x7c\x74\xc4\x3c\xf4\x25\xf4\x0a\xe4\x0e\xdf\x89\x23\xc2\x5d\x2c\x4f\xd9\x11\x79\xd8\x12\xd0\xa7\xfa\x23\x4f\xd7\x28\x37\x83\x1d\x52\x8e\x21\x5f\x5a\x73\xbe\xd0\xf9\xe9\x59\x4d\x0e\x42\x01\x2f\x64\xb8\x17\x75\xcc\x1f\xa1\x36\xa4\xce\x4f\xcd\x7e\x64\xbe\x51\xb7\x9b\x74\x17\x74\x7b\x99\xf1\x4c\xb2\x44\x48\x39\xdc\x40\x25\x93\x5c\xb8\x64\x3a\x65\x72\x7d\xf3\x8c\x25\xab\x18\x9c\x62\xd4\x7b\x97\x81\x04\xe6\x33\x26\x2b\xb1\x3c\x99\xc0\xef\xf2\x82\x87\xb1\xbc\xd5\x92\xbd\x26\xf5\x04\x37\x5b\xd5\x55\xcb\xc5\x94\x9c\x2c\x64\x2d\x5b\x5b\xf1\x6e\x48\xbf\xef\x06\xbb\x51\x97\xc6\xaa\x9a\xce\x99\x80\xfb\xe5\xe8\xc8\xf0\xa3\x92\x8c\xbf\xb5\xc5\x8e\xb5\x6b\x59\x90\xcc\xe7\x89\xc9\x00\xbb\x5e\x88\x8c\x82\x89\xda\xf7\x38\x1e\x7b\xa0\xa3\xc2\xb0\x3e\x0b\xe5\x16\x5a\x08\xeb\x63\x08\x45\x9e\x69\x8a\xe3\x97\xd9\x7c\x45\xfc\x21\x49\x0a\x31\x06\xd1\xd2\xbb\xf3\x27\x0a\x9c\xa5\x0b\x20\x70\x16\x3b\x84\x1c\x79\x76\x74\x90\x9a\xa7\xf6\x87\xac\x1e\xdb\x16\x7c\x58\xe9\x42\xe4\x60\xa4\x9b\xbe\x48\x02\x38\xe9\x3f\xd5\xfc\x7a\xb5\x95\x1f\xd1\x3e\x8e\x19\xea\x80\x53\x37\xf8\x4b\xe1\x27\x33\x8d\xcd\x2c\xdc\xb0\x6e\xc9\xea\xff\x00\xde\x8c\xf1\x3a\xac\xbb\xb9\x12\xc9\xb0\xe3\xff\x91\xdd\xfe\x0f\x86\x4d\x03\xcb\x2f\x30\x9c\x7d\x94\xa7\xcb\x30\x9b\x3d\x72\x4f\x8c\x7f\x3c\x8b\xd7\xa2\xe5\xbd\x18\xfd\xff\x76\xee\x5d\x25\xf9\xb8\xcc\xba\xb0\x81\xc1\xdd\xa7\xb8\x79\xbf\xcb\x46\xf9\xf6\x6d\x42\xdc\x9c\xb6\x49\xf1\x7e\xa2\x2c\x6a\x00\x7d\x90\x5c\x02\x38\x29\x5c\x51\x54\xa2\x2a\xb4\x58\x01\x13\x99\xf2\xfe\xe0\x6c\x12\xa6\xf9\x9a\xcd\xd0\x4f\xf6\x24\x47\x4a\xca\x9c\x48\x64\x0d\xb4\xe9\x81\x0b\x38\x66\xa1\x16\xd7\x7c\x2e\xd9\xac\xd2\xce\x62\x1f\x3a\x42\xbc\x5e\x3b\xd7\xc0\xbb\xf2\x2e\x09\x03\x3b\x01\xc3\xd9\x33\x0d\x09\x0a\xf1\x55\x4f\x4e\xb1\xc5\x58\x5b\x85\x5a\xa5\x4f\x70\x50\xd0\x43\x16\xf9\x39\x1a\xe7\xc5\x06\xf3\x21\xcc\x7f\x4e\x11\xf8\x52\x1c\x75\x96\x30\xda\xd4\xda\x5b\x5f\xd1\x7a\x4f\x9d\x22\x34\x74\x64\x41\xec\x91\x83\x57\x3c\x85\x1f\xdd\x91\x18\xcb\x8b\x6c\x13\xa6\x99\x76\xd9\x3b\x48\x5d\x23\x86\x98\x39\x77\x83\xf9\x95\x24\x50\x44\xc6\x91\x36\x4c\xb2\xcf\xf6\x73\x0b\xb3\x4f\x58\xe7\x63\x51\x14\x40\x8a\x00\x17\xf8\xda\x56\xed\xfc\xd7\xad\x8f\x4f\x0e\x7f\x99\x3c\xa9\xcb\xff\x7e\xa9\xff\xf4\x6f\x5b\xae\xb1\xac\x6c\xf4\x93\xfc\xff\xdc\xff\x28\x29\xfe\xa7\x9f\x7e\xf2\x4a\x6a\xd0\x0f\x29\x44\xc0\x32\xea\xcf\xc4\x7e\x8d\x46\xf1\xe7\x2e\xb8\x23\xc5\x98\xa3\x12\x40\x90\x85\xd0\x2e\xf2\x2e\xa7\xad\x40\x54\x15\x67\x93\xbc\xe4\xe9\xa5\x6b\x25\x43\x14\x2c\xa5\x90\x65\x6e\x3d\x98\x57\xab\x75\x24\x55\xa1\x66\x04\xd6\xa5\xc0\x88\xdd\x4d\x82\x51\x52\x6c\x33\x09\x65\xfa\x93\xe5\xc9\x62\x93\xbe\x40\x72\x13\x85\x30\x7d\xf3\xb7\x30\x08\x09\x1e\x13\x4b\x80\xbc\x0b\x06\x41\x8f\x56\xc8\x50\xec\xa0\xb0\xea\x62\x5b\x2f\xab\xd4\xed\x76\x96\xd7\xf2\x66\xad\x24\xf9\x4e\x96\x57\x40\xc5\x25\xfa\x27\xaf\xc0\x5d\xa8\x0f\xe3\xa7\x56\xa9\x7e\x2b\x26\x8e\x0f\x61\xf6\xc4\xb7\xb6\xd8\xe9\xeb\x77\x6f\x07\x43\x36\x3a\x79\x31\x3c\x64\x51\x38\x9e\x24\xf9\xd6\x6f\xd9\x56\x14\x8e\x3f\x2d\xf3\xe9\x7e\xeb\xb7\xec\x01\x78\x34\x2c\xd6\x69\x28\x79\x64\x2d\xa8\xb3\x4e\xdb\xef\x00\x0f\x1c\xcc\xd2\x64\x1e\x2e\xe7\xec\xf5\x29\xeb\x2d\xf3\x59\x92\x66\x2d\xd6\x8b\x22\x06\x75\xe1\xe5\x46\xa4\x57\xf2\xce\x25\x6f\x1d\x99\x31\xb2\xc8\x92\x65\x1a\x50\xba\xe7\x30\x63\x17\xc9\x95\x48\x63\x15\x7f\xb4\x7f\x7a\xdc\xcc\xf2\x75\x24\x58\x14\x06\x22\x56\xce\x42\x64\x6a\xb1\xb5\x85\xe9\x6f\xd4\xa1\xfd\xe2\x64\x30\x7c\x75\x3a\x84\x83\xa5\xf5\xe0\x81\xb7\xcc\x50\xa4\x0f\x72\x78\xe7\xdb\x62\x67\xaf\x8f\x5f\xd7\x26\xfc\x2a\x9c\x8c\x45\x5c\x3f\x64\x1f\x94\x65\x20\x31\x52\x11\x07\xc9\x84\x5c\x29\x80\x19\xab\xa8\xdc\x62\xd2\x78\x00\x79\x30\x29\x68\x36\x2e\x2f\x85\xd7\x8d\xd1\xab\x2a\x8c\x9b\xca\x72\xcd\x8d\xe6\x2d\xa7\x2c\x5b\xcf\xf2\x7c\x91\x1d\x6e\x6d\xad\xc2\xcb\xb0\xb5\x9a\xf1\x7c\x75\xd1\x4a\xd2\x0b\xf8\x7b\x0b\xcf\xcc\x21\x0d\xc0\xae\xae\x06\xd5\xca\x16\x22\xb0\xdb\x19\xe9\x12\x0d\x46\xa6\xcb\x88\xbd\x3b\x1b\x35\xf7\xd9\x44\x48\x74\x5a\x12\xc8\xbb\xb3\xd1\xfe\x31\x16\x96\x89\x84\x3c\xad\x4d\xec\x97\xf1\x3a\x17\x19\x7a\x59\x13\x66\xf5\x23\xb5\xf8\xeb\x52\x50\xd8\x43\x20\x24\xa8\xfa\x42\xd6\xa4\xf8\x4f\x04\x2c\x04\x7b\x94\x8b\x54\x40\x1c\xe0\x89\xc0\xec\xde\x6c\x2c\x24\x76\x71\x78\x13\x48\xac\x60\x00\xfc\xc8\xda\x56\x56\xed\x89\x78\x03\x2d\x5c\xb0\x51\xb2\x12\x29\x1b\xc3\xa2\x27\xb1\xa5\xe3\x36\x7d\xdc\x00\x15\x5a\xf7\xa1\x31\x80\x75\x72\x70\x05\x90\xcf\x81\xa3\x30\x4c\x68\xe4\x39\x6f\xb0\x9c\x5f\x82\x7b\x42\x2c\xd9\x5a\x80\x9e\x0d\x68\xca\x08\x5e\x6f\x8b\x54\x5c\x85\xc9\x12\xc4\x0a\xc8\x92\x9c\xe5\xa9\xe0\x73\x38\xdc\x75\xda\x1c\xa4\x2c\x91\x16\xd9\xe9\xa9\x56\xbf\xa6\xd8\x18\x22\x7b\xc8\xaa\x0d\x13\xf5\x5b\xc9\xd6\xe6\x4e\xa0\xa4\x88\x53\xeb\x16\x89\x7a\x71\x89\x86\x65\x1c\x96\x62\x86\x4b\x84\xb0\xb1\xc8\x57\x42\xc4\xac\x7d\xdd\x6e\x5b\x19\x1a\xdb\xd7\xa3\x91\x2b\x61\xa8\x61\x41\x84\x7a\x39\x2c\x5a\x31\x42\x82\x7d\x3b\x91\x98\xf2\xbb\x26\xe6\x55\x99\xe0\x2c\x26\x85\x60\x2a\x5f\xce\xe4\x19\x9f\x8a\x5c\x27\x39\xaf\xd2\xb6\x65\x79\x5a\x65\x30\x07\x59\x41\x49\x4f\x10\xcc\x78\x3a\x48\x26\xa2\x97\xd7\x42\xeb\xea\x5f\xa4\x55\xcb\xdb\x09\x2b\x04\xec\x4f\x47\xac\x7d\xbd\x37\x72\xc3\xcf\x42\x30\x20\x05\xd7\x82\xe9\xb8\xb8\xb6\xaf\x07\x6d\xd9\x3c\x60\x3f\xfc\xc0\x08\xd0\xb1\x03\xa8\x44\xd3\x01\x6b\x32\xd9\xec\xa9\x5b\xc5\xde\x4d\xfe\xd3\xa2\x57\x89\x4d\xbc\xd7\xfb\xed\xca\x91\x0c\x4b\x23\x19\xde\x65\x24\xc3\x9b\x46\xd2\xb9\x6d\x24\xd5\x43\x19\x95\x86\x32\xda\xbb\xc3\x50\x46\x37\x0d\x65\xfb\xe6\xa1\xf8\xed\xf6\xa6\xc1\xec\x97\x06\xd3\xbf\xcb\x60\xf6\x6f\x18\xcc\xce\xcd\x83\xe9\xb4\x37\x8f\x66\x50\x1a\xcd\xf1\x5d\x46\x33\xb8\x61\x34\xbb\x37\x8f\x66\xa7\x5d\x35\x9c\x12\xad\x7b\xbf\x2c\xa7\xd3\xe9\xc4\x2b\xc4\x7c\x73\x6b\xe3\x24\xf6\x4b\xeb\xdb\x2f\x93\x9a\x1e\x61\xb3\xf9\x74\xf3\xf4\x6a\x85\x92\x3f\xfd\x89\x75\xe5\xdd\xb2\x86\xf3\xde\x6f\xd7\x4d\xe3\x5b\xb7\x33\x43\x45\xdc\xcf\x49\x0e\x9e\x01\x51\x64\x4e\x2d\x7a\xae\x50\x7e\x96\x18\xf9\x04\x8f\x13\xf0\xf6\x70\x21\x4c\xc3\x28\x97\x07\xe2\x32\x67\xd9\x32\x4d\x93\x0b\x7c\x97\x0d\x53\xad\xa9\x63\x8a\xfb\x58\x73\x71\xa7\xf2\xd4\xaa\x09\x7c\xc6\xcc\xb1\xb8\x4c\x05\x4b\xda\xcf\x9f\x25\x92\x8f\xf7\xdb\x88\x66\xdd\x4e\xa2\xdb\x00\x41\x5e\x33\x1a\xd5\xcb\xad\x4d\xad\x1f\x61\x6b\x8c\x64\x35\x07\x4b\x1b\x57\xbd\x92\x42\x08\x2b\x20\xa2\x08\x79\x22\x11\xeb\x57\x39\x4a\x97\xf9\x62\x99\xb7\x9c\xea\xc5\x19\xd3\x0e\x2d\x8e\x42\x8f\x03\xcf\x9d\x96\x3c\x57\x07\xc4\xc8\x4d\xfb\xfa\x53\xa7\x51\xe5\xf8\x30\x55\xb5\xb3\x58\xad\x42\x05\x33\x9e\x66\x89\x65\xdc\x61\x38\x25\x7b\x67\x5a\xa3\x27\xac\x66\x4d\xf5\xc7\x1f\x7f\x64\x7e\xbb\xce\x7e\x60\xed\xeb\xed\xd1\xa8\x5e\x8e\x0d\xd7\xbe\x3e\x1e\x60\x33\x6b\x69\xa9\x76\x71\xa6\x0f\xaa\x7e\xff\xb2\x69\x27\x4b\x51\x29\x49\xe0\x71\x1e\x05\xb9\x30\x66\xf3\x65\x94\x87\x4d\x10\x02\xcc\x66\x78\x2b\x56\x61\x3c\x21\x79\x05\x43\xd8\xd8\x40\xd0\xbf\x23\x4a\xc8\x15\x02\x1c\x78\x25\x84\xd6\x6d\x3c\x63\x93\x68\x48\x34\x61\x38\xc1\x17\x4b\x45\xad\xef\xec\xa9\xc8\x2b\x25\x33\x23\x92\xb5\xac\xd0\x6a\x3a\x70\x7a\x20\x9c\x27\x0a\x32\xa6\x81\x0b\x98\xd0\xa2\x59\x68\xbc\xf0\x21\x6c\xc4\xff\x6f\xc4\x31\x6c\x20\x85\x32\x5b\xf8\x92\xb7\x3a\xc7\xf6\xaf\xa6\x1e\x82\x2d\xf1\xad\x56\xaf\x53\x73\xac\xef\x26\x93\x88\x95\xd8\xec\x74\x8c\x03\x83\x15\xd3\x37\xe2\xc2\xd5\xeb\x18\x22\x26\x81\xc3\x18\x37\xd7\x97\x2b\x91\x66\x76\xfe\x23\x75\xdb\x33\x31\x1a\x64\x6d\x67\x7f\x33\x50\x1f\x01\x17\x5a\x61\x86\x8c\xec\x27\xf6\x01\x83\x55\x2e\x16\x22\xce\x24\x17\x82\x10\x16\x97\x62\xbd\x80\x0b\x09\xfa\x22\xa3\x79\x1a\x98\xb2\x90\xe1\x34\x8c\x45\x4a\x7a\x3c\x20\xc6\x0f\xe9\xe3\x24\xf5\xf7\x5f\xbe\xf9\xe9\x06\x62\x39\x33\x77\x48\x30\x08\x95\x58\xd9\xbc\x86\xf6\x6d\x13\xa9\x09\x50\xd5\xd8\x44\x57\xf6\x63\x11\x6e\xe9\x02\x31\x6a\x3a\xcb\xf0\x4e\x42\x14\xa5\x49\x09\x89\x00\xfb\x2b\x12\xc1\xf7\x90\xc0\xe5\x71\x0b\x09\x31\x97\x71\x08\x63\xb1\xae\x7c\xa4\x2d\x91\x2d\xef\x2a\xad\x13\x6f\x2c\x89\xd4\xf6\xf9\x15\x80\x54\x33\x1a\x8d\x8e\x9d\x27\x31\x6a\xbe\x5f\xd1\xbc\x6f\x37\x87\xc8\x07\x4f\x7c\x67\x4a\xf6\xb1\x24\x47\x39\xa9\x18\xe5\x13\xbf\x20\x8a\x98\xb1\x4e\x64\x67\x93\xaa\xb1\x12\x8a\x4e\x57\x10\x83\xb6\x44\xc1\xf6\x09\x15\x18\x39\x16\x8f\x14\x7d\x28\x48\xa1\x48\x1e\x29\x4f\x58\x6d\xa2\x0b\x1d\xf1\x02\x83\xed\x6e\x38\x15\xca\x18\xbb\xf1\x10\x29\x57\x76\xa2\xff\x1a\x39\x20\x90\x3b\x4f\xed\x74\x42\x9c\xe6\xfc\x66\x49\x2b\xee\x57\x37\xdd\xae\xdc\xd0\xc3\xd6\xda\x6a\x38\x65\x40\x55\xa7\x35\x5c\xcd\x3e\xcb\x66\xf2\x44\xee\x9a\x93\xb5\xe2\xa6\x55\xee\xc5\x95\x98\x6e\xec\x66\x68\x75\xe3\x77\xaa\xfb\xe9\x38\xfd\x6c\x3d\xb6\xbb\x52\xe2\xd9\xe3\xad\xbb\xf5\x37\xb2\xfb\xdb\xaf\xee\x6f\xfb\xa9\xbd\x64\xab\x59\x18\x09\x56\x73\x34\x23\x66\x72\x15\x72\xfa\x8d\xfd\xef\x43\xff\x34\x80\x5a\x97\x3d\x36\x10\xea\x4a\xec\xa9\x3b\x6f\xd0\xa5\x03\x7e\x83\xc6\x31\x9f\x85\xe9\xe4\xd3\x82\xa7\xf9\x7a\x6b\x15\xac\xc2\x49\x3e\x03\x15\xe4\x2a\xd8\xa4\x80\xdc\xf9\x6a\x05\xa4\xe4\x8a\xab\xe0\x1f\xa8\x82\xb4\xe2\xdf\x5b\x87\x76\x14\x8e\x53\x48\xfc\x9c\x31\xb2\x0e\xd5\xf9\xa1\x09\x03\xad\xdf\x32\x36\x4f\x26\x4b\x74\xee\x8d\xe5\xe9\xf2\x5b\xa6\x9f\x7a\x93\x34\xbc\x00\x2d\x58\x21\x8b\x20\xf9\x0b\xe3\x00\x79\x7e\x08\xa7\x28\x69\x15\xe3\xc5\xfc\xb7\x0c\xd4\x88\x0b\x1e\x5c\xf2\x0b\xb1\x65\xba\x82\x13\x43\x0d\xd6\x1a\xa7\x0a\x08\x95\x4c\x41\x3f\xbe\xcc\xd8\xf3\xe5\x2c\x96\x17\x29\x6c\x5a\xab\x17\x46\x60\x59\x6e\x4f\x13\xc9\xfb\xe0\xd8\xbb\x5e\x44\x3c\xa6\x11\x26\x73\x91\x99\xd9\xea\x89\x0c\x0a\x80\x0e\x0b\x41\xad\x78\x5c\x91\x31\xd1\x8c\x82\xc7\x13\xb6\x0a\x32\xf5\x67\x4d\x67\x50\x07\x41\xe2\x64\x38\x1c\xb2\xd3\x7c\xc2\xfc\x76\xbb\xd3\xf2\x9b\x9d\x76\xdb\xaf\xc3\x71\xf7\x0e\x8f\x2f\x25\xb3\x48\x5c\x1d\x6e\x6d\xad\x56\xab\x56\xb2\x10\x31\x84\x32\x00\x94\x25\x71\x14\xc6\x62\xb1\x1c\x67\x5b\xed\xf6\xde\x41\x7b\xe7\x60\x6f\x77\x4b\x3b\xd8\x69\x4c\xce\xf2\x79\xf4\x6d\x70\x32\x07\x10\x05\x8b\x9a\x86\xd7\x62\xd2\x84\x2f\x74\xeb\x62\x13\x71\x15\x06\x22\x6b\xb0\x17\x3c\x0f\x63\x23\xc3\x40\xd8\x73\x96\x04\xc1\x72\xb1\xd6\x5e\x95\x12\xcc\xa3\x40\x44\xd1\x23\xb6\x48\xb2\x50\xa1\x0f\xed\xc7\x00\x6c\x43\x8a\xcf\xa9\xe0\x19\x0b\x27\x22\xb9\x48\xf9\x62\x16\x06\x6c\xf0\xe7\xe7\x16\x64\x30\xf9\x45\xc0\x52\xf0\xca\x96\x52\xde\x15\x51\x94\xb5\xd8\x49\x9c\x0b\x78\x56\x85\x48\xaa\xf9\x5a\x4b\xba\xe8\x69\xce\xa3\xa6\x7a\x34\x87\x94\x5a\xf8\xd2\x88\xe1\x16\x6a\xb9\x88\x44\xbe\x5e\x08\xdc\x73\x75\x4b\x1c\x53\x8d\x33\xa6\x1f\x4c\xc0\x8b\x01\xee\x05\x5a\x73\xaf\xf3\x60\xf2\x8b\x54\x00\x7d\xb0\x24\x56\xfe\xf3\x1a\x16\x19\x21\xf3\xc9\x15\x87\xd8\x4a\x8f\x95\x96\x3b\x4b\x52\x48\x49\x96\xac\xd8\x1c\xfc\xda\x45\x14\x69\x2c\x65\x2d\xf6\x2a\x61\x22\xcb\xf9\x38\x82\xbc\x91\xf8\xe4\x0a\x6b\x9c\xe5\x3c\x9e\xf0\x74\x92\x61\x9a\x77\xc6\x21\x8a\x46\xe6\xf4\xff\x4e\x49\x47\xd6\x38\xcc\xfa\x3c\xa0\x9c\x3b\x15\xfd\x4a\x10\x15\x88\x68\x91\x4f\x6c\x9a\x2c\xf3\x30\x16\x60\x77\x09\x58\xc5\x58\x3f\x2a\xf0\x96\x5c\x5c\xd8\x01\xf0\xb2\x2e\xd7\x69\x2c\x66\xfc\x2a\x94\x53\xe5\x19\xa6\xf0\xce\x60\x3b\xb1\x74\x19\xe1\x03\xb9\x95\xeb\x0c\x6e\x1c\x8b\x34\xb9\x0a\x27\x26\x46\x80\x9a\xca\x20\x89\x33\xc9\x15\x96\x3a\xbb\xd5\x28\x49\x51\x87\x4e\x64\xc3\x23\x8b\x68\x1a\x4e\x63\x85\x33\x60\x09\x61\x10\xe6\x14\x58\x00\x76\x6b\x66\xcb\xe2\x4d\xc0\x07\x92\xfc\x55\xc8\x01\x0a\x4e\xc9\xa4\x4b\x15\x6c\xc8\xb3\x9c\xf5\xb2\x10\xef\x0b\xa3\x65\x14\x7d\x80\x16\xb5\x51\xbd\xc1\x3e\x48\x51\xbe\xf6\xa1\xde\x60\xcf\x78\x34\xa5\xed\x53\x7b\x56\xc7\x67\xf6\x57\x3c\x4d\x93\x15\xab\xbd\xe2\x75\x2b\x87\x11\xc6\x66\xc3\x4b\x64\x86\xd1\xea\x70\x0a\x29\x79\x93\x30\x3e\x1f\x87\x17\x4b\x49\xe3\x10\x32\x89\x16\x1a\x81\x73\x34\xd2\xc7\xc5\xa2\xa5\x5e\x66\xa2\x05\x28\xb2\xb6\x28\x1d\x1d\x66\xf4\xac\x07\x50\x93\x65\xc6\x6a\xbd\x3a\x04\x83\xa0\x5c\x8c\xf2\x44\x00\xd8\xc1\x2c\x09\x03\x89\x83\x85\x88\x27\x19\x5b\x2c\x21\xb7\x13\xc4\x14\x5b\xa4\x62\x2a\x52\x41\x8e\xcc\x63\x1e\x5c\xae\x78\x3a\x51\xf1\x35\x78\x1e\xd2\xa6\xc4\x6b\x6a\x08\xe6\x68\xb3\x30\xcb\x93\x94\xf6\x78\x92\xb2\x0f\x22\x83\x70\xfc\x0b\x70\xef\x0f\xf0\x2e\x33\x98\x25\x09\xec\x3c\x64\x23\x84\x42\x4a\xcd\x95\x09\x67\x4a\x60\x03\x07\x71\x83\x7e\x5b\x66\x60\x6e\xc3\xb5\xe1\x05\x5f\x2c\xd2\x64\x91\x86\x52\xfe\x8d\x92\xf8\x02\xc3\x2b\x67\x49\xb4\xc4\x17\x51\x0c\xad\x01\x43\x51\xfd\x93\x53\xdd\x24\xcc\x16\x11\x5f\xd3\xee\x77\xbb\xe4\x99\x8a\x9a\x46\x18\x32\x47\x8b\x9a\x9d\x04\x51\x38\x36\x80\xee\x25\xe9\xad\x59\x6d\xbf\x39\x0e\x73\x7d\x2b\xb3\x40\x83\x1b\x3b\xf5\x8d\x76\x4c\x0e\x06\x24\xfd\xf8\x5d\x68\x9c\x48\xba\xb5\x87\x41\x91\xdd\x24\x92\x7e\x4e\x85\xb8\x04\x6f\xa7\xc1\x3a\x0d\xa3\x28\x0c\x1a\x4c\xe4\x41\x0b\x8f\x2b\xf0\xdc\x88\xd7\x2c\x5f\x2f\x34\xc3\x0d\x28\x78\x1c\x77\xfc\xb6\x5f\xca\x1d\x1c\xc1\xc3\x5a\x04\x9e\x55\x88\x2e\xa2\x08\x79\x0e\xda\xeb\xc2\x5e\x25\x79\x61\x63\xd4\x5e\x89\x65\x9e\xf2\x88\x28\xbd\xc5\x86\x92\x63\x49\xa4\x6a\x74\x6b\x37\x97\x49\x18\xc0\x53\x17\xb7\xa0\xf2\x78\x4d\xfe\x1e\xc5\x45\x68\xb1\x13\x75\xaf\x86\x54\xb1\xf9\x4c\xc0\x40\x31\x2d\xba\x14\x9e\x80\x06\xcc\x14\xc1\x63\x0b\xb3\xcb\x27\xe8\x03\x24\xef\xf0\x9a\xd3\xc1\x79\x82\xc9\xf5\xf4\x62\x48\x06\x06\x1c\x0a\xfd\x4d\xb5\x3f\xf5\xf0\x25\x3b\x7d\xd3\x1b\x0c\x25\xf9\xbe\x7f\xfd\xe2\xdd\xcb\x21\x3b\x79\x75\x36\xfc\xf9\x6d\xef\x85\x15\x3f\x45\xce\x69\x4c\x09\x93\xad\x2b\xf4\x44\x1e\x7e\xb9\xdc\x42\xb0\x2b\xb8\xbb\xc0\x17\xd1\x7a\x31\x6b\xb9\x62\x0c\x80\xd0\x7c\xd7\x30\xfb\xb9\x80\x9d\xc8\xb3\x2c\xbc\x88\x0d\x20\x8b\x7f\xe1\x74\x65\xfb\x18\xd7\xc1\xe1\x8f\xc4\x0c\x42\xf0\x4e\x43\xe3\x02\x43\xa3\x46\xf3\xa5\x1d\xd9\x28\xab\x5b\xc6\xf3\x30\x9b\xf2\x20\x4f\xd2\xb5\x0a\x5c\x2e\x97\x01\x5c\x8e\x14\x1d\x49\xf6\x0d\x5e\x4a\xd0\x54\x1d\x63\xa8\x91\xc2\x93\xcc\xb0\x64\x8a\xa7\xb2\x0a\xe4\xa1\xc2\x5b\xac\x87\x3e\x25\xf3\x04\x13\xdd\x2b\xad\x9a\x08\x42\x50\xd8\x20\x82\x5d\x5a\xb3\x09\xcd\x5a\x3f\x35\xb0\xe2\x22\x8c\xd7\xee\x06\x06\xac\x67\x6a\xd1\xd6\x02\xac\x19\x79\x9c\xad\x70\x22\x6b\x75\x4c\xad\x55\x56\x64\x7d\x82\x19\x81\x52\x9d\x34\xf2\x0c\x1b\x43\x24\x51\xcc\xd5\xd3\x62\xa7\x22\xcf\x69\x19\x97\x0b\xe0\x9a\x52\x60\x31\xf3\x57\xdb\x47\x1f\x95\xc9\x94\x44\x8d\x8a\x83\x58\x42\x01\x6b\x0f\x92\x3e\xc0\x92\x2d\x05\x8d\x16\x8f\x79\xb4\xce\x28\x91\x19\x04\x5f\x97\xa2\x16\xaf\x92\x06\x80\x37\x8c\x97\x39\x46\x48\x55\xd5\x08\x41\x5c\x1b\x5f\x37\xe0\x78\xcd\x75\x76\x17\x0e\x97\x1d\xbd\x1d\x1d\xc2\x84\xb8\xa3\x57\x09\x9c\xdc\xca\xa9\x8d\x4d\x79\x5a\x21\xe1\x92\xea\x06\xe4\x52\xfa\x7d\x8b\xc2\xa1\x6e\xe5\xa9\xef\x6f\x29\xf6\x63\x24\x7f\xd6\x6c\xb2\x4e\xbb\xbd\xd7\x6c\xef\x36\x3b\x5d\x56\x53\x33\xda\x6d\xb5\xeb\x54\xfb\x8d\x44\x51\x96\x91\x65\xf9\x32\x13\x0d\x16\x24\x8b\x75\x43\xde\x66\xc2\xe9\xba\x41\x1e\xae\xf2\x8a\x34\x5e\xe6\xc2\xdc\xc8\xa6\xf9\x8a\xa4\x19\x62\x39\xf2\x8c\x5b\x40\x86\xcd\x18\x3d\x82\xc1\x71\x4e\xc0\x41\x2c\x0f\xe4\xf1\x5a\x4a\x1c\x92\x92\x70\xa7\x22\x5a\xe8\xd4\x08\x22\x1e\xce\x51\x18\x5e\xf1\x54\x56\x0b\x05\x59\x70\xa4\xe2\x42\xae\x37\x65\x33\xb4\xfa\x56\x38\x7a\xc1\xc1\x1c\x87\x54\x93\x87\x36\xce\x82\xa8\x15\xf0\x79\x8b\x07\xad\xe5\xe5\xd6\xdf\xe7\x17\x97\x9d\xdd\xad\x65\x60\x2e\x00\x81\x73\x93\x72\xaf\x41\x5a\x5b\xad\xc4\x1d\x74\xd9\x8a\x96\xf3\x98\x18\x05\x26\x69\x3b\x39\x7d\xcd\xfc\x76\x77\xa7\x6b\x08\x45\xb3\x3f\x09\x2b\x53\x77\x23\xd6\x24\x33\x8e\xc8\xe2\x28\xac\xf6\xee\x09\x3e\xb9\x00\x29\x94\x3a\x68\xb7\xa8\xe9\x6b\x90\x03\x06\xed\xad\x81\x0f\x9b\x24\x4d\x22\xe7\x74\x8d\x27\xec\x78\xf8\x82\x62\x63\x09\x8e\xf1\x4d\x1c\xa3\x7e\x09\xae\xe9\x2b\x78\xaf\x92\xb8\x99\x2d\x78\x00\x9b\x33\x9e\xc8\x63\x35\x42\xe9\x21\x48\xe6\x63\x94\x45\x2d\xf8\x35\xf4\x2f\x8e\x98\x3c\x05\x2e\x24\x13\x03\x4a\x7a\xa9\xf2\x12\x24\x29\x7b\xa9\x43\xa8\x15\x77\x75\x5d\x39\x24\x6e\x9c\xdd\xe9\xeb\xd1\x19\x7b\xf6\xdf\x6f\x9e\x0d\x5f\x21\x46\x7a\xc7\x9b\x30\xe2\xbb\x18\x21\xa3\xca\xdb\x87\x3a\x98\x6e\x1c\x1e\xcd\x41\xa2\xe1\x2f\xc3\xb7\xaf\xd9\x87\x93\xe3\xb3\x67\x74\x5a\xd5\xde\x3d\xe9\xb4\xdb\xfd\xdb\xa7\xf0\x8c\xc7\x17\xcb\x88\xfd\x99\xcf\x13\x06\xc9\x1d\x22\x76\x95\xac\x44\x84\x6b\xa3\xac\x60\xe2\x2c\x89\x79\x9c\x67\x12\xae\xef\x77\xdb\x4d\xf9\x63\x34\x52\xe0\x69\x24\x9b\xf1\x44\x2b\x76\xa3\x74\xaa\x24\x69\xb9\x28\x56\xb1\x94\xb7\x95\x58\x3d\x52\x73\xd6\x38\x92\xe2\x99\xbe\x85\x6b\x14\x9d\x89\x60\x16\xc3\x1d\x81\xfc\x16\xff\x9f\xef\x6f\xc0\x04\x01\xec\xa8\xa1\x56\x8a\xcb\x36\xc5\xa6\x02\x1c\x43\x63\xd7\x72\x27\x54\x80\x70\xdf\x0f\x7e\xbb\x34\xad\xa7\x11\xbf\x00\xd1\x35\xe6\xe3\x88\xf8\xc8\x7a\xd3\xc2\xe8\x81\x80\x8e\x49\xcc\x79\x99\xa6\x4d\xa2\x70\xc9\x78\xc0\x3a\x51\x02\x86\x2d\xbd\xbf\xbf\x7b\xd0\xf4\x61\xed\x3e\xfc\xfc\x62\x47\xa1\xcb\x92\x04\xf4\xf9\x50\xda\x8d\x4a\x6e\xdc\x30\x32\xdf\x0d\x01\xee\x0a\xbc\x18\x78\x4f\xbd\xac\xb8\xe8\x52\xa2\x6f\x68\x71\x1d\x7c\x3e\x78\x40\xbc\xf1\x08\xf3\xb7\x6e\x6d\xb1\x0f\x9a\x45\x49\x8e\x63\x20\xb5\xa8\x6a\x2b\x5e\xd2\xed\x0b\x53\x75\xb9\x4d\x4a\x73\xd2\xcd\xe8\x4b\xa1\xe9\x48\xae\x8c\xf2\x22\xa5\x0c\xc9\x10\x56\xf9\x16\x2a\xd0\x60\x2b\x56\xdb\x24\xb5\x74\xc6\x16\xdf\x02\xd3\x8c\xd4\x02\xa6\x86\xdb\x41\x68\xa7\xa8\xc5\x53\x21\x13\xe3\x24\x6e\x26\x57\x22\x8d\xf8\x62\x41\xaf\x63\x22\xbd\xe2\x51\xa6\x3e\x66\xa5\x6d\x27\xa1\xa8\x90\x0b\x20\x1a\x3d\x5a\xc6\x61\x26\x72\xf6\x24\xe0\xf9\xd1\x4b\x41\x3f\x63\xfc\x39\x98\xb2\xa6\xe4\x69\x0c\xf7\xbc\xdc\xf1\x0c\xd8\x0a\x0b\x1e\x19\xc4\x2a\xb6\x7b\xc4\xce\x41\x2f\x7b\xce\xda\xd7\xed\xed\x76\xbb\x01\x3f\xbb\x23\xf6\xb1\x81\x65\x3b\xfb\xdb\x0d\xfc\xd9\xb5\xca\xf6\xa9\xec\x80\x51\xaa\x33\x28\xdf\x3d\xf0\xa1\x7c\xb7\x7f\xac\xeb\xee\xf6\x47\x54\x66\x60\xee\x0e\xa8\xde\xa0\xe3\xb6\x1f\xec\x50\xf9\xae\x55\x77\x8f\xca\xf6\x74\x59\x97\xc6\xd9\x6d\x6f\x3b\xed\xbb\x3e\x95\xfb\xa6\x7d\x77\xa7\x8f\x65\xbb\x43\x53\xb6\x47\xf5\xf6\xda\x6e\xfb\xe3\x2e\x96\x0f\x77\x4c\xdd\xe1\x1e\x95\xed\x5b\x65\x3d\x2a\x3b\x76\xda\xef\xb5\x71\xae\x7b\x6d\x33\xd7\x3d\x1f\xe7\xba\xe7\xfb\xa6\x6c\x1b\xfb\xdf\xdb\xe9\xb9\xed\x7b\xd8\xff\x5e\xbf\x6d\xea\x0e\x71\xfc\x7b\xa3\x6d\x5d\x76\xd0\x46\x98\x07\x6d\x17\x7f\x07\xdb\x83\x06\xfd\x34\x75\x77\xa8\xee\xce\xbe\x55\x76\x4c\x65\xee\xf8\x0f\x76\xa9\xee\xae\x99\xff\x41\xb7\x83\x65\x5d\xab\xff\x7d\xaa\xb7\xef\xbb\xed\xfb\xd4\x7f\xdf\xea\x9f\xd6\xfa\x60\x60\xc1\x1c\x50\xff\x83\x42\xff\x43\xea\x6b\x68\xfa\xea\xd1\x5c\x7b\x30\x57\x2a\xa3\x79\xf6\x60\x9e\xa6\x7d\x8f\xe6\xda\xdb\xb1\xea\xee\xec\x51\xd9\xbe\x55\xd6\xa7\x32\xb7\xff\x1e\xd1\x45\x6f\xcf\xac\x55\x8f\xe6\xda\xdb\xb7\x60\xd2\x3c\x7b\xfd\x42\xff\x34\xd7\x9e\x45\xbf\x3d\xa2\xdf\xde\xc0\xea\x9f\xe6\xdf\x2b\xcc\xbf\x47\xf3\xef\x59\xf3\xef\xd3\xfc\xfb\x6d\x33\xa6\x3e\xcd\xbf\x5f\x98\x7f\x7f\x7b\x44\xe5\x86\xfe\xfa\x84\x93\xfe\x8e\x05\x93\xd6\xbf\x5f\x98\x7f\x7f\x17\xe9\xaf\xbf\x6b\xf6\x7a\x7f\x1f\xc7\xd4\xb7\xe6\xdf\x1f\x20\x9e\xfa\x03\x77\xff\xf4\x69\x5e\xfd\x81\xd9\xff\x83\xed\x21\x94\x0d\x76\x0c\x4d\x0f\x76\xba\x54\xb6\xef\xb4\x1f\xec\xf4\xa8\xdc\x6a\xbf\xbb\x8b\x65\xd6\x98\x06\x84\xff\x41\x01\xff\x03\xe2\x35\x03\x8b\xd7\x0c\x06\xd4\xd7\xc0\x6a\x3f\xa0\xf6\x05\xfc\x0f\x08\xff\x03\x0b\xff\xc7\x84\xbf\xe3\x1d\xbb\xec\x98\xca\xdc\xf6\xc7\x03\x1c\xff\xf1\xa0\x67\xea\x1e\x23\xcc\xe3\xe3\x1d\xab\xac\x4b\x65\x5d\xa7\xfd\x70\x1b\xfb\x1a\x6e\x9b\xb5\x1e\x6e\xef\x50\x99\x81\x39\x24\x9a\x1e\xee\x0c\xdd\xf6\x7d\x6a\xdf\xb7\xda\xf7\xa9\x7d\xff\xc0\x2a\xeb\x53\x99\x8b\xbf\xe1\x00\xf9\xfa\xd0\x5a\xbf\x91\x8f\x65\x23\xdf\xb4\x1f\x6d\xe3\x9a\x8c\xb6\x77\x9d\xf6\xa3\xed\x3d\x2a\xdf\xb3\xea\x1e\x50\x99\xd5\x7e\x0f\xc7\x39\xda\x73\xc7\x3f\xda\x47\xba\x1a\xed\x1b\x5c\x8d\xf6\xbb\x54\x66\xc1\x3c\xa0\x7a\x07\x7b\x6e\xfb\x03\xea\xcb\xe2\x3f\x23\x5a\xff\x91\x59\x7f\xbf\xdd\x81\xf5\xf3\xdb\xdb\x0e\xfd\xfa\xed\xed\x0e\x95\x77\x4c\xdd\xed\x2e\x95\xed\x59\x65\x07\x54\x76\xe0\xb6\xdf\xdd\xc7\xf2\x5d\x3d\x57\x79\x06\x43\x99\x3c\x86\x55\xd9\xf6\x2e\xd0\xa9\xfc\xe9\xb4\xdf\xf3\xb1\xff\x3d\x5f\xcf\xdf\xdf\xa3\x31\xed\x6d\x5b\x65\xbb\x54\xb6\xbb\xed\xb6\xdf\xa3\xf2\xbd\x6d\x53\x17\xd7\xdf\xdf\xeb\xef\x5a\x65\x7b\x54\x76\xec\xb6\x47\x5c\xc9\x9f\xa6\xee\x00\xe7\xba\x77\x6c\xc1\x3c\x3e\xa6\x32\xb7\xfd\x7e\x1b\xe8\xca\xdf\x6f\x6b\xfa\xf1\xf7\x7b\xd8\x7e\xbf\x67\x70\x72\xd0\x41\x9c\x1c\x74\x9c\xf3\xcb\x3f\xe8\xec\x51\xf9\xbe\xa9\x4b\xf3\x3f\xb0\xd6\xe4\x80\xf0\x7f\xb0\xdd\x77\xda\xf7\x7c\x6c\xdf\xf3\x4d\xfb\x3e\xca\x0a\x7e\xbf\x6d\xc6\xdf\xc7\x3d\x25\x7f\x3a\xed\xfb\xb4\xd6\x7d\xb3\xd7\x7c\xe2\xb5\x7e\xdf\x9c\xa9\x7e\x7f\x07\xc7\xd4\xdf\x71\xc7\xdf\xef\xe2\xfc\xfb\x16\xfe\x8f\x91\x57\xfa\x16\x4f\xf0\x8f\x47\x43\x2c\x1b\x39\xeb\x2f\x85\xb4\x06\xfe\xd4\xb4\xd2\x69\x77\x7a\x58\xd6\x19\x9a\x32\xa4\xa9\x4e\xbb\xbb\xed\xb6\xef\x52\xdd\xae\xd5\xfe\x98\xea\x0e\x75\xd9\x36\xc1\xdc\x6e\x77\x9c\xfe\xb7\xdb\xb8\x7f\xb6\xdb\x07\x7a\xac\xbd\xfd\x36\xe0\x44\xfe\xb4\xca\xfa\x54\xe6\xe0\xbf\xb7\xdf\xd9\xc5\xf2\x8e\xae\x3b\xea\xfb\x30\x57\xf9\x53\x97\x0d\x71\x4d\x46\xc3\xb6\xd3\xff\x68\xd8\xa1\xf2\xce\xb6\xa9\x3b\x1a\x35\xe8\xa7\x2e\x1b\x8d\x60\x9c\xa3\xd1\xc8\x5d\x7f\x25\x2c\xc8\x5f\xcc\x0a\xb4\x7b\xed\x5d\x55\xda\xb5\x4b\x07\xaa\x74\x54\x80\xb2\x4d\xdb\xb8\x67\xd1\x41\xbb\x87\x87\x2b\xfc\x62\x56\xd2\xef\x22\xc9\x1d\xfb\x5d\x97\x17\x1c\xfb\x7b\xdb\xf4\xc5\x9c\x9c\xf2\x8f\x5d\x55\xda\xb7\x4a\x7b\x3d\x2a\xed\xb9\x3b\xea\xb8\x43\xa4\x76\xdc\xd9\xd1\xfb\x7f\xd8\x6e\xe3\x3c\xe1\x17\xab\x14\xd1\x37\x6c\xb7\xf7\x9c\x19\x0d\xdb\x7e\x9b\xbe\xf8\x92\x0a\x1e\x7c\xbc\xff\xcd\xe4\x96\xbb\xd5\xe6\x2b\x0a\xe8\x37\x9a\x3d\xd6\xa4\xbb\x4a\x93\xee\x2a\x4d\xba\xab\x98\x4b\x09\xb7\x6e\x63\xd6\xa5\xa4\xdd\xc3\xc3\xa2\xdd\x33\x87\x5a\xbb\xb7\x43\x65\x3b\x56\xd9\x1e\x95\xb9\x42\x45\x1b\x71\x2b\x7f\x5a\x75\x87\x54\x66\x2e\x05\xed\x3e\x1e\x2a\xed\xfe\x8e\xdb\xbe\xdf\xa5\x72\xab\x3d\x09\x20\x6d\x4b\xd0\x68\xd3\x41\xd3\x1e\xb8\x87\x3a\x6d\x40\xf9\xd3\xd4\x3d\xa6\xb1\x1e\xef\x5b\x65\x34\xa6\xa1\x2b\x54\xb7\x87\x04\x77\x68\x04\x98\xf6\x70\x9f\xca\xac\x31\x0d\x69\x4c\x85\x4b\x49\x7b\x44\xfd\x8f\xac\xfe\x47\x1d\x2a\xdb\xb6\xca\x68\x4c\xa3\x5e\xa1\x3d\xc1\x1d\x0d\xac\xba\x34\xd6\x91\xc1\x9f\x4f\x82\xaa\xdf\x76\xc7\xef\xd3\x05\xc8\xb7\x2e\x40\xbe\xbf\x4d\x65\xdb\x56\x59\x9f\xca\xfa\x6e\xfb\x0e\xce\xdf\xef\x18\x01\xc0\xef\x50\xdd\x4e\xdf\x94\x91\xf0\xe4\x6f\xbb\x97\x42\x1f\x77\xb3\xfc\x69\xd5\x45\x41\xd1\xb7\x2e\x0a\xfe\xce\x0e\x95\xb9\xeb\xef\xef\x50\xfb\x1d\xab\x2f\x12\x00\x7d\x4b\x50\xf5\xf1\x50\x6e\xfb\xbb\x85\xfe\xbb\x34\xfe\xae\x35\xfe\x2e\x8d\xbf\x6b\xc1\x1c\x20\x4e\xfd\x81\x2b\x14\xf9\x44\x3f\xbe\x45\x3f\x3e\x09\x95\xfe\xb1\x35\xfe\x63\x1a\xff\x71\x61\xfc\x24\x6c\xfa\xc7\x5d\xab\x2e\xcd\xc9\xa2\x3f\xff\xb8\x47\x65\xbd\x42\xfb\x01\x95\x9b\xf5\xef\xd0\x45\xb1\xb3\x6b\xd6\xb4\xd3\xa5\xb2\xae\xbb\xfe\x1d\xba\xd4\x77\xac\x0b\x60\x87\x2e\x45\x1d\xeb\x52\xdf\x41\x41\xa3\xdd\x19\xf4\x0b\xed\x8f\xa9\xdc\xe0\xba\x43\x38\xe9\x58\x38\xe9\xd0\x9c\x3a\xc7\x85\xf6\xc7\xd4\xfe\xd8\x6e\x3f\xa2\x32\xb3\x7f\xb7\x49\x79\xb1\xdd\x73\xc7\xbf\xdd\xdb\xa6\x72\x23\xc0\x6e\x93\xa0\xbd\x3d\x30\xf3\xdf\x1e\x50\xbd\x81\xab\x14\xd9\xa1\x7d\xb1\x63\x5d\xe0\x76\x48\x51\xb1\xb3\x63\x29\x5a\x08\xa7\x3b\xbb\xbe\x7b\xa8\xfb\x74\x80\xfb\x6d\x73\xa8\xe3\xfe\xe9\xb4\xfd\xae\x55\xb6\x4f\x65\x07\x85\xf6\x03\x2a\x3f\xb6\x84\x0a\x82\xd9\xe9\x58\x65\x3b\x54\xb6\xe7\xb6\xdf\xa6\xba\xdb\x56\xff\x28\x94\x75\xda\xdb\xdb\x56\xd9\x2e\x95\xed\x16\xda\x93\x50\xb3\xdd\xb7\xea\x0e\xa9\xcc\x12\x6a\xf6\xa8\xff\xbd\x1d\xb7\xfd\xde\x88\xca\x2d\xa1\x06\x2f\xe5\x9d\xb6\xb9\x28\x74\xda\x3d\x9a\x67\xcf\xb9\xd4\x74\xfc\x36\xe2\xca\x37\x22\x41\xc7\x47\x89\x40\xfe\xb4\xca\x0e\xa8\xcc\xc5\x1f\xf1\xaa\x8e\xc5\xab\x3a\xbe\xdf\xa5\x32\x83\x7f\xbf\x83\x63\xf2\x5d\xa1\xb6\x43\xfc\x4b\xfe\xb4\xea\xf6\xa9\xcc\xe0\xc4\xdf\xa5\x7e\x76\xdd\xf9\xfb\xbb\x54\xd7\x28\xb0\x3a\x74\xa9\xe8\x58\xfc\xa3\xe3\xef\x51\xd9\x5e\x61\xfc\x07\x54\x7e\x70\x60\xea\xf6\x91\x56\xfc\xbe\x55\x86\x3c\xa5\x83\x3c\xc5\x6a\x8f\x7c\xa5\xe3\x9b\x0b\x6c\xc7\x47\xa5\x98\xfc\xa9\xcb\x3a\x28\x63\xc8\x9f\x4e\xfb\x4e\xbb\x43\xe5\xdb\x56\xdd\x3d\x2a\xdb\xb7\xca\xfa\x54\xd6\x2f\xb4\x1f\x51\xb9\x59\xff\x0e\x9e\x29\xf2\xa7\x55\xb6\x4b\x65\x2e\xfd\x75\xfc\x1e\x95\xf7\xac\xba\xc7\x58\xd6\x31\x34\xdd\xe9\x6c\x53\x99\x2b\x54\x77\x3a\x04\xb7\xb3\x6b\xd5\xa5\xf1\x77\x06\x56\xd9\x90\xca\x86\x6e\x7b\xbc\x6c\x74\x3a\xdb\x16\xae\xf0\x52\xd1\xe9\x6c\x9b\x3d\xd9\xc1\x73\x46\xfe\x74\xdb\xef\x50\xdd\x1d\xab\xaf\x5d\xc2\xe9\xae\xd9\xbf\x1d\xa2\x89\x02\xff\xed\x74\xba\xd4\x7f\xd7\xea\x9f\x2e\x0a\x1d\x8b\x7e\x3a\x5d\x1a\x7f\xd7\xbd\x94\x74\xf6\xa9\xaf\x7d\x6b\xfd\xf0\x52\xde\xe9\xec\x5b\x30\x0f\x08\x4f\x07\x05\xfc\xe3\xa5\x42\xfe\x34\x75\x7b\x54\xb7\x67\xe1\xb4\x4f\xeb\xdc\x77\xfb\xdf\xc6\x4b\xb1\xfc\xa9\xeb\xee\xd0\x5c\x77\x86\x06\xe6\x0e\x2a\x4a\x3b\xbb\x3b\x2e\xfd\xec\xee\x62\xdd\x5d\x73\x29\xeb\xec\xee\x53\xd9\xbe\xa1\xa9\xdd\x03\xec\x67\xb7\x30\xfe\xdd\x1e\xd5\x35\xf2\x67\x67\x17\xcf\x84\xce\xae\x39\x13\x3a\xbb\x7d\x6a\xdf\x77\xe9\x67\x17\xe5\xc7\xce\x6e\x7f\xcf\xaa\x3b\xa0\x32\xb3\xfe\xbb\x03\xea\x67\xe0\xae\xdf\xee\x80\xda\x1b\x05\x62\x67\x77\x40\x73\x1d\xf4\xad\x32\x5c\xbf\xdd\xe3\x42\xfb\x21\x8d\x6b\x68\x70\xbd\x3b\x1c\x51\x99\x99\x7f\x97\x78\x62\xb7\xed\xc8\xaf\x9d\x2e\xf1\xc5\x6e\xfb\xc0\xaa\x3b\xa4\x32\xab\xbd\x8f\x74\xd6\x2d\xec\xbf\x2e\x9d\x3f\x5d\x7f\x60\xd5\xa5\xf6\xe6\x52\xd8\xe9\xee\xe0\xfc\xbb\x3b\x2e\xff\xe8\xe2\x0d\x48\xfe\x34\x75\x69\xfd\xbb\x5d\xdf\x2a\xdb\xa6\xb2\x42\xff\x78\x43\xeb\x74\xbb\x3d\xab\x2e\x8d\xa9\x7b\x6c\x95\x8d\xa8\xcc\xa5\xbf\xbd\x6d\xe4\x15\x7b\xd6\x5e\xdd\xdb\xc3\x35\xd9\x33\x67\x92\xbc\x8b\x35\xc0\x4b\xd8\xbd\xd4\x8f\x46\x23\x68\x2f\x7f\xea\x0b\x6c\x5b\x55\xb6\x4b\xc1\xd1\x03\x95\x05\x6d\x2c\xc7\x8b\x1a\x1a\x0c\xf4\xc3\x98\xa7\x6b\x96\x09\x9e\x06\x33\x34\x83\x22\xf7\xd5\x7c\x86\xd9\xe6\x63\xe3\x71\xa3\x5f\xfc\xc1\x2f\x2e\x5b\xf0\x40\xd8\x8f\x56\xa5\x28\x46\xe2\x42\xa4\x5f\xd8\x32\xc8\x58\xaf\x02\x88\x6d\x06\xad\x7d\x98\x74\x68\xae\xb3\x74\x29\xdc\x61\xdc\xdc\xfd\x53\x7c\x6a\xd3\x61\xb2\xf2\x99\x48\x57\x61\x66\xa5\xff\x5c\x05\xad\x30\x3b\x85\x56\xb6\x83\x5a\x90\xe9\x10\x15\xbd\xe5\x75\x18\x85\x12\x1f\x8e\x9f\xdf\xd8\xc1\x51\x18\xeb\x2b\x2c\x83\xb7\x56\x95\x52\x72\x1e\xc6\xec\x88\xb5\x1b\x6c\xce\xaf\xd9\x11\x2b\xbe\x89\xa9\xb8\x80\x4d\x74\x06\xc1\x16\x13\x1d\x31\x54\x62\xe9\x4f\xa5\x46\xe7\xed\x8f\xe7\xed\x8f\xec\xf3\x67\xc0\xe2\x8f\xe5\xef\x73\x7e\xfd\xf1\xdc\xff\x58\x15\x4f\x54\xfb\x63\xc8\xf1\xfc\x78\x24\xc7\xa7\x9c\x31\xe6\xe1\x84\x1d\xb1\x97\x3c\x9f\xb5\xa6\x51\x92\xa4\xb5\x9a\x1c\xfc\x13\x39\xf2\x3a\xdb\x62\x1d\xcb\x51\x6a\x53\xbf\xe1\x04\xfa\xd5\xde\x1d\x38\x7b\x09\xf8\x49\x85\xb7\xcb\x86\xd9\x01\x94\xb6\x0d\x05\x50\x27\xa1\x34\x0b\x50\x0a\x81\x08\x4d\x56\x3f\x1d\x7e\xd0\x9d\xbd\x1d\x19\xaf\x7a\x59\x81\xd2\x41\x23\x71\x07\x62\x1f\x72\x4c\x57\x7c\xc3\x9b\xed\x3f\x96\xfc\xab\x34\x27\x60\x80\x6b\x0f\xc8\x22\xfc\xe2\xbb\x74\x89\xfe\x37\x93\xb0\xd6\xa0\xdc\x87\x84\x75\xa3\x0d\x24\x6c\xbe\xff\x63\x49\xd8\xea\xf7\x1b\x48\xb8\x00\xe5\x0f\x27\xe1\x63\x95\x41\xaf\xd2\x84\xab\x82\x48\xbe\x0f\x39\xea\x56\x67\x77\xef\x55\xd3\x9c\x2c\x55\x46\x0b\x65\x72\x93\x28\xdd\x68\x38\xa1\xb0\x49\xe3\x28\x02\x7c\x0b\x0d\x74\x6d\x00\x5a\x8a\x6b\xbd\xa1\xed\x71\x98\xa5\x9b\x9a\x7f\x13\xc6\xb5\xc1\xa0\x32\x1c\x91\xac\xe5\x56\xb6\x51\x4a\x95\xf5\xcf\x5c\xa8\x32\x6e\x36\x9d\x94\x10\xd5\x5f\x32\x51\x34\x68\x2f\xdb\x0f\xb5\x2c\x9e\x70\x04\xc1\x33\x2a\x16\x45\xd9\xef\x3c\x75\x18\xc8\x36\x04\x11\xc7\x5d\x0b\x8e\x98\x53\xf6\xc3\x0f\x0c\xbf\xb5\xaf\x79\xbb\x5e\x05\xca\xb6\xe9\x51\x41\x66\x5f\x2f\xf2\x70\x1e\xfe\x8e\x19\xd7\x7b\xa7\x83\x93\x93\x0d\x03\xfc\x13\xf4\xe2\x80\xf5\x15\x90\x7e\xf1\xf0\x47\xfb\xaa\x8d\x56\x35\x2d\x97\xb6\x49\xe2\x00\xe4\x39\x1d\xb4\x55\x07\x98\xdd\x95\xa7\x69\x78\x25\x28\xc1\xab\x1c\x13\x99\xf3\x72\xcb\x96\x31\xd9\x68\x3c\xd9\x32\xbc\xc3\xa7\x40\x99\x06\x7f\xbe\xdf\x6e\xb3\x1f\x7e\x40\xe6\x83\xf3\xc5\xe2\xdd\xa9\x44\xb4\xfd\x6f\x6b\xcb\xb1\x01\x0c\xe3\x30\x6f\x59\x16\x7f\xc4\xbf\x70\x4d\xe1\xf2\xd4\x39\x50\x8c\x5d\x15\x70\xf6\xf9\x33\xd5\x33\x43\xe8\x88\xfd\xb6\x5e\x44\x59\xc0\x77\x82\xa9\x1e\x13\x42\x7c\x78\x04\x6f\x44\xdb\xd3\xba\x3b\xaa\xad\x2d\x70\xd3\x68\xb5\x5a\xec\xbf\xc3\x12\x64\x1e\xb4\x5d\xc8\x93\x3d\xbe\x8d\x10\xcc\x64\x4e\xd7\x51\x24\x57\x2d\x2b\x35\x9f\x1e\x14\x9a\x4f\xf9\x74\xaa\x9b\xcb\x7e\x07\x8e\x43\xcb\x89\xf2\x55\xab\x00\x25\xfc\x02\x28\xe1\x1f\x68\x50\xef\x45\x0a\xd9\x63\xc0\xd8\xb3\xaa\xf1\x76\xb1\x71\xf7\xa6\x71\x8c\xaa\xa1\x4c\x8b\xb3\x99\x76\xdb\x1a\xca\x68\x19\x45\xc8\x13\x36\xb5\x16\xc5\xd6\xa2\x5b\xaf\x5c\x4e\xf0\x1d\xb7\xab\x76\xa6\xd3\xe9\xa4\xb2\xee\x76\xa9\xee\x36\xd4\x45\xcf\x5d\x0a\x98\x77\xc8\xc4\x3c\xf9\x2d\xb4\x8d\x05\x97\xd9\x12\x3c\x37\x94\xb9\x3b\x8a\xfb\x10\x76\x23\x9c\xb8\x5e\x39\x91\xe4\xbb\x17\x33\x04\x67\xc9\x45\x38\xd9\x6c\x21\x02\x96\xf1\x35\xec\xa7\x99\x14\xc4\xd9\x29\xfa\x07\xc8\x6d\x37\x99\x40\x85\x10\x6c\x6d\x33\x9d\x60\x4c\xcc\x7f\xfa\xb6\xc3\xa0\x78\x08\x18\xd7\x98\x7f\xf5\x43\xe0\xed\x1d\x4e\x00\x87\xc1\xd9\x07\x77\x99\xcf\x6d\xb2\x64\xb4\xd3\x11\xdc\xf9\x8c\xfe\x8a\x25\x31\x61\x4a\xaa\x62\x8c\x66\x79\xaa\x63\xdc\x7e\x2d\x3e\x8b\x81\x50\x56\x41\x2b\xcb\xcb\x92\x8f\x13\x04\x83\x1c\xb7\xd2\x2b\xb2\x3f\xbd\x35\x14\x86\x13\x88\xce\x0a\x05\x05\xa1\x0d\xd4\xdf\x56\x7c\x83\x15\x75\x5f\x44\x6d\x29\xd6\x91\x5c\x4a\xac\xfc\x27\x75\x48\xeb\x75\x69\x92\xfc\x9a\x5e\xb1\x27\x47\x08\x92\x1a\xc9\xbf\x6b\x85\x18\x51\xd3\xa9\x64\x9d\x3f\x31\x9f\x1d\x62\x1c\x02\x5b\xa4\x4d\xaf\x9c\xd5\xfb\x59\x50\xbe\xe6\xe5\x98\x22\x8f\x50\x0a\x41\x22\x51\x44\x76\x32\x9d\x66\x22\x2f\x50\xaf\xb5\x0e\x37\xad\xaa\x1b\x2e\xe5\x42\xe4\x56\x5f\xd3\x34\x99\xb7\x2a\xf7\x1b\x06\xe2\xa7\x80\xcb\xe8\x89\xee\x8e\xa5\x08\xab\x1a\x4c\xb2\xc8\x3f\x21\x52\x37\x91\x8e\x03\xe0\x41\x55\xe8\xe5\xb3\x62\x2d\x43\x5d\x50\x5a\xa0\x2d\x4a\x22\xd0\x30\x7d\x5b\xc9\xe8\xe4\x17\x88\x78\xdc\x60\x22\x9e\xd0\x6f\x2b\xbd\x0d\x81\xf6\x4c\x25\xbc\x02\xae\xb4\x79\xb4\xd5\xbe\x10\x9f\xc5\x7c\x30\x81\x5a\xb0\xdd\x93\x0a\xd2\x2b\x04\x3a\x31\x8d\xeb\x25\x5a\xfc\x11\x41\x2b\x7a\x1c\xa7\x82\x5f\x3a\xb9\x67\x0c\x86\x1f\x1e\xb1\x65\x4c\x76\xff\x4e\x52\x64\x35\x53\x4c\x92\xa3\x11\x60\xe6\xf5\x40\xcb\x18\xba\xaa\x3d\x3d\x79\x68\xd1\xce\x38\x32\x58\xb5\x5a\xdd\x79\xa6\x0a\x7c\xbd\x6e\xf0\xff\xe4\x49\xc5\xa4\xcd\xda\x3d\x70\x07\xa6\x42\x66\xa8\x64\xd4\x79\xda\xd2\xb4\x51\xab\x5a\xde\x7a\x71\x03\x9a\x26\x36\xe2\x4b\x9b\x72\xc3\x86\xc4\x7d\x81\x4e\x36\x13\x77\x4b\xfc\xe3\x37\x61\x75\x2b\x39\xb0\x33\x08\x83\x3a\xa9\x6c\xf1\x55\x9b\xac\x90\xc5\xd2\xde\x67\x22\x9e\x38\x81\xad\x9c\x76\xc5\x9a\xac\x49\x04\x0d\x08\x97\x55\x53\x81\x21\x41\x5a\x7c\x32\xa9\x79\x14\x98\x24\x98\xf1\xf8\x42\x44\xc9\xc5\x16\xb9\x82\x79\x0d\xe6\xe5\xe2\x3a\xdf\x5a\x44\x3c\x8c\xbd\xc6\x03\xcf\x6f\xf9\x5d\x8f\x3d\x79\xe0\x79\x0f\xea\x94\x99\xf3\x16\x50\x13\x9e\x8b\x32\x9c\x4e\xdb\xdf\x6b\xb6\xf7\x9b\x0e\xb4\x62\xbc\x94\x99\x3c\x63\xb7\x7e\xcb\xb6\xe0\x97\xff\xed\xd1\x99\x01\x57\xf9\x44\x2c\x00\x49\xad\xd3\x3c\x49\xf9\x85\x80\xa4\xf7\xb4\x03\xfe\x43\x36\x94\xfd\x5f\x85\x62\xc5\x8e\x45\x10\xf1\x94\xdc\xe6\x10\x03\x8f\x21\x6d\x01\xca\xa2\x18\x3a\x7f\x2e\xd8\x98\x67\x61\xc0\xb2\x19\x4f\xc5\x84\x2d\x21\xdb\x4d\xa8\x72\x00\xf0\x1c\xbd\x84\x92\x84\x65\x73\x70\xf3\x4f\xd8\x04\x31\xc1\x26\x02\xb3\x12\x4e\x60\xbc\x94\xcb\x56\xf2\x6b\xe8\x4b\x3b\xc2\x18\xcf\x3e\xc8\xc2\x01\xde\xd7\xf1\x24\x59\xb1\x59\x82\x2e\xd5\x38\xb4\x42\xf8\x12\x79\x58\xf1\x8c\x2d\xe4\x56\x4a\xa6\x54\x47\x5e\xe8\x6a\xf5\x16\xb3\x12\x15\xc9\xda\xf1\x15\x8f\xc2\x09\x5b\xc6\x79\x08\x4e\xc3\x10\xf3\x80\x47\xe1\xef\x3a\x82\x0a\x66\xa6\xc5\x11\x22\x28\x1c\xc3\x99\x1c\x91\x4e\xf7\xa8\xa2\xdd\xf3\x14\xee\xab\x56\xac\x76\xf2\x6c\x37\xa9\x2f\x28\x62\x01\x84\xd0\x53\x21\xad\x7f\x4f\x92\xb9\xed\x1b\x45\x33\xfa\xef\x64\x09\xeb\xad\x22\x63\x43\x86\x8c\x7c\xa6\xd3\xab\xb3\x28\x09\xe4\x60\x85\xce\x84\x6e\x8f\x53\x02\xa5\x01\x99\xac\x9a\xde\x5f\x5e\xbf\x7e\x29\x4f\x0e\xbf\xdd\xfe\x77\x2b\x6a\x4e\x3f\x0d\xc5\x94\xa1\xb5\xda\x5a\x8f\x5f\xbb\xe5\xe3\x70\xe5\x3e\x92\xc3\x0c\x92\x05\x85\xaf\x00\x09\x34\x0a\x17\xe3\x84\xa7\x7a\xd8\xfd\x35\x9b\x88\x29\x5f\x46\x90\xd8\x87\x3c\xe8\x95\x24\xdf\x7f\xd1\x1b\x3c\x67\xa7\x83\x93\xd3\xd3\xd7\x6f\x4f\x2d\xff\x5c\x70\xce\x5d\xe3\x8c\xc9\x7b\xf9\x1e\x93\xb6\x09\x00\x1c\x81\x8b\x43\x9f\x09\xe6\x21\x7a\x9b\x7a\xc0\xcd\x38\xc9\xc3\x40\x78\x56\x54\x07\x20\x02\x67\x21\x14\x3a\x65\xdd\xe9\x5a\xb2\x00\x0b\x9b\xbf\x2c\x3b\x7b\xed\x8e\xc4\xa3\xa6\x56\x89\xa3\x6c\x26\x07\x1a\xc6\x8c\x4b\x92\xbf\xcc\x93\x05\x83\xe6\x14\x8d\x45\xfb\x3f\x2b\x6a\x00\xdf\x64\x11\x45\x2d\xc6\x7e\x59\x76\x3a\x5d\x0c\xa6\xa8\x71\x36\x3c\xf9\xf9\xd9\xd9\x33\xf6\xea\xf5\xd9\xb0\xc1\xfe\xbd\x96\x87\x79\x24\xea\x85\xc4\x97\x12\x57\x3a\x80\x88\xa6\x32\xa8\x6a\xcf\x82\x86\xf3\xca\x1a\xcd\x99\xac\x43\x93\xe9\x76\x7b\xa6\x03\xfc\xdb\x22\x92\x17\x64\xd8\x08\xe1\x1d\x69\xaf\x82\xfb\x2e\x24\x34\xd7\x77\xb9\x1e\x16\xce\x78\x1a\x8b\x4c\xfb\xa4\x53\x22\x67\x95\x32\x7b\x0d\x6e\x7b\x18\xce\x85\xb2\x7b\xa6\xcb\x38\xd6\x87\x11\x0e\x57\x02\x3a\x16\x0b\xb0\x60\xf4\xb0\xe8\x34\x48\x93\x28\x7a\x93\xa4\x98\x3e\x2f\x93\x0c\x5e\x7f\x11\x22\x56\xa5\x0f\x58\xe9\x1f\xd5\x3b\x23\xec\x14\xdb\xbf\x3f\xbb\xbd\xed\xfb\xb3\xd6\x80\xc7\xb1\x98\x60\xcd\x8f\x2e\x9b\x42\x94\x48\x26\xa2\x4f\xce\x06\x4b\xc5\x45\x98\x41\x3a\x5c\x24\x64\x3c\xb8\xb0\xec\x04\xd9\x52\x81\x80\x29\x7f\xc9\x64\x09\xa7\xb0\xac\x1f\x3a\xf5\x94\x04\xa0\xfa\xf8\xc2\x92\x58\x42\x42\x27\x68\xf5\xd2\x63\xda\xb1\x15\x78\xad\x2e\x21\xda\x43\x18\x5f\x25\x97\x02\x76\x85\x7a\x32\x2c\x70\x3d\xd8\xe1\x26\xd9\xe7\xd6\x83\xd2\x88\x11\x19\x5e\xc3\xca\x26\x01\x03\x40\xb1\x40\x8f\x20\x89\x3f\x00\xaf\xac\x21\xcb\x54\x32\x6a\x05\x1b\xc5\x3f\x5a\x92\xcd\xa3\xb8\x67\x25\xe8\x44\xd0\x0d\xd6\x36\x92\x9d\xd5\xc3\x19\x1f\xd7\x72\x3e\x76\x92\xa5\xf1\x31\x4a\xb0\x00\x33\x90\xa7\xb3\xb0\x62\x1b\xc2\xdf\xd4\x3d\x64\xde\x91\x0d\xe8\xef\x93\x49\x03\x58\x7a\x43\x8f\xbd\x3a\x29\x98\x4a\x77\x90\x5e\x84\xf1\x84\xd7\x0f\xf5\xd2\x41\x68\x27\xb6\x02\x61\x8c\x2d\x17\xe8\x5f\xcf\xae\x7c\xc6\x17\x0b\x2f\x83\x80\x31\x17\x29\x1c\xdc\x0b\xe4\x5c\x0a\xdc\x4b\xbe\x1e\x0b\xe6\x20\xc5\x8b\x93\x58\x78\x14\xf2\x63\x4c\x09\x63\xad\xf8\x2e\x90\x62\x57\x87\x2b\x50\xb0\x2a\xb0\xeb\xc5\x10\x7f\x42\xc7\x90\xdd\x88\xdc\x42\x4a\xb3\x87\x8a\x67\x00\x33\x27\xa9\xc1\xc6\xb4\x83\x62\x08\x07\x89\xc8\xcd\xb0\x6a\xb9\xa4\x95\xad\xe3\xc0\xac\x45\x15\x7c\xca\x10\x6e\xc9\x29\x2d\x10\xb0\x44\xad\x0a\x54\xe5\xea\xdc\x11\xec\x0b\x79\x90\xd4\x8a\x13\xa7\x64\x08\xd4\x59\xce\xc7\x99\x4a\x58\x11\x27\x92\xd3\x2d\x28\x8a\x5c\x18\x33\x0a\xee\x06\x69\xb8\x33\x8a\xb6\x20\x72\x11\xe4\xf8\xb6\x8a\xc0\xd6\xc9\xd2\x83\xa0\x15\x76\x6d\xe4\xef\x51\x98\x4b\xd6\xcb\x57\x10\x44\x48\xbd\xa6\x87\xd9\x1b\xaa\xd9\x5b\x2c\x8c\x23\xed\xcd\x18\x4f\xa5\x08\x53\x55\x22\x09\xfc\x25\x8f\xc3\xa9\xc8\x72\x5b\x95\x32\xa7\x32\x76\x74\x43\x03\x85\x9c\xe2\x90\x54\xe3\x96\x9c\xca\x0f\x3f\x38\x7f\xb7\x0c\x8d\x3b\xf7\x56\x07\x86\x15\xdb\xf4\x8d\x8d\x44\x10\x19\x21\xba\x8d\x75\x80\x87\x46\x50\x92\xcb\xd1\x2a\x33\x08\xdc\xaa\x98\xba\x17\xb7\xef\xdf\x24\x2b\x39\x64\xde\x22\x59\x2c\x17\xde\x97\xba\x66\x1f\x36\xa5\xdc\x84\x50\xd9\x93\x93\xc5\x50\x12\xc5\x85\xc8\x07\x94\xac\x03\xf3\x4a\xc9\x12\x94\x6f\x24\xd3\x81\xb3\x2d\xcc\xd8\x23\xca\xe8\x11\xad\xd5\x99\xf6\x08\x13\xc2\x41\x60\x17\x05\x30\x4f\x16\xf3\x44\x1e\xa8\x29\x9b\x26\x01\x66\x50\xe3\xe3\x96\xcb\xa6\x60\xc2\xa6\xdb\x1a\x30\xbc\x6a\xaa\xbf\x23\x46\x88\x17\x18\x94\x28\xda\xff\x52\x2f\x25\x12\x9b\x88\x20\x9c\xf3\x88\xfd\x4d\xa9\xed\x66\x02\xae\x3f\x5f\x88\xaf\xe1\x15\x79\x92\xcc\x31\x6a\xa2\x75\x70\xcb\x21\x47\xa1\x88\xf3\xd3\xf0\x77\xc7\xea\x64\x92\xcc\x9d\xcb\xe3\x24\x81\xca\x10\xa4\x3d\x8c\x2f\xb0\xd1\x5b\x11\x00\xed\x95\x53\x9b\xa9\x11\x59\x01\x93\xee\x32\x8a\x92\x4e\xf2\x1e\xc3\x68\x91\xf6\x63\xf3\x60\x08\x2b\x77\x1e\xcd\x33\xac\xff\x95\xc3\xc1\xde\xdc\x44\xc1\xc9\x62\x5d\x48\x25\x13\x09\x9d\x72\x14\xb4\x6e\xeb\x2c\x17\xf3\xb2\xac\xae\x44\x89\x67\x67\x2f\x5f\x1c\x27\x01\x24\x7f\xa2\x58\xd8\xf4\x97\x49\xc5\xe3\x00\x0d\x92\xc5\xda\x9e\x9c\xfc\xfb\x54\x55\x38\x4b\x06\xaa\x23\x77\x96\x08\xb2\x98\xe0\x4c\x95\xb7\xc4\xb5\x08\x06\xc9\x7c\xce\xe3\x49\xcd\x93\x10\x3d\x37\xd7\xd9\x34\x4c\xc5\x34\xb9\x1e\xaa\x04\x4f\x16\x1b\x39\xb9\x88\x31\x9f\x7a\x98\xb5\xd8\x68\x54\x95\xb5\x8e\xac\x4a\xe4\xf9\xcc\xf1\x4b\x9a\x26\x29\x05\x11\xd3\x2f\x29\xb8\x37\xe5\x74\xf5\xf3\xc9\x6f\x98\xe9\xde\x58\x28\xb4\x8a\x6f\xe6\x6f\x78\x96\x8b\x4a\x44\x63\x80\x0c\xc8\x52\x83\x91\x22\x10\x9f\xb0\xe3\xd5\x22\xbc\x4a\x72\x71\xc8\x4e\x62\xd4\x24\x88\xad\x11\x4e\x53\x72\xc4\x2d\x71\x9d\x8b\x18\x42\xfc\x88\xf8\x2a\x4c\x93\x18\xd2\x73\x41\xb6\x77\x2f\x8a\x30\xc6\x37\xc5\x8b\x7a\xa4\x3b\x7d\x2b\xf8\xe4\x11\x5b\xe8\xf0\x40\x2d\x26\xa1\x63\x72\x54\x17\x0c\xe6\xc8\x03\x72\xe4\xd1\x8a\xaf\xe1\xf2\x0e\xa9\xc2\x28\x50\x9c\xe2\xbc\x53\x48\xcc\x0e\x3c\x6d\x1c\x25\xc1\x65\xc6\x78\x10\x48\xf1\x5e\x52\x7d\x26\x82\x65\x1a\xe6\x6b\x96\x0a\x9e\x59\xd1\xd4\xee\x40\x5d\x79\xc2\x16\x80\x3c\x89\xa7\xd6\xed\x26\x41\x58\x39\x5b\x06\x81\x10\x13\xf7\x86\x06\x9f\x46\x69\x32\xbf\x17\xf1\xe9\x1d\x57\x45\x83\x00\xf2\x2b\x89\x50\x52\xe1\x4e\x1b\xa4\x82\x24\x9a\x88\x94\x04\xb9\x30\x0e\x92\x34\x15\x90\x55\x9a\xf2\x97\xb9\x34\x6a\xd1\x60\x81\x54\x21\x1e\x9b\xe0\x13\x79\x07\xc3\x61\x83\x3a\x51\x51\x64\xd9\x86\xc8\xa1\xd1\x41\x2a\x30\xd8\x9c\x94\x83\xec\xeb\x68\x71\xb5\x5e\x43\x46\xda\x2f\x0c\xfe\xcc\xd8\x7b\x9e\x86\xc9\x32\xc3\x3f\x05\x3c\x3c\xaa\xfb\x6b\x11\x4a\x49\x15\x8a\x20\x5a\x70\xa1\x44\x45\x0e\xfc\x56\x23\xd9\x2c\x53\xec\x09\x4f\x61\x2f\xc3\xef\xf5\x9b\x60\x8d\x93\xc9\x1a\x73\xb0\xd2\x35\x1c\x0a\x6a\x73\x1e\xa2\x82\xa2\x5e\xbe\xb4\xdb\x64\x80\x50\xcc\x0b\xc1\x44\x4c\xd9\x11\xab\x49\xc6\xd9\x90\x88\x8b\xa4\xf8\x52\x67\x47\x3f\x02\x2f\x85\x0c\xb4\x5a\xc9\xce\x7e\xc2\xc2\x43\x5d\x51\x89\x65\x84\xaa\x23\xa7\xf6\xe7\xcf\xcc\x2a\x97\xa7\x30\x2a\xb7\x55\x21\x6a\xb9\x50\xfa\x17\xe9\x05\xf2\x8f\x65\x26\x52\x2f\xa3\x80\x83\x56\x1e\x34\xa5\x51\xc9\x30\xb4\x9a\xa4\xaf\x0f\x82\xd2\x48\xe4\xfc\x52\xb0\x30\x47\x50\x93\x90\x88\x2b\x8c\xe1\x61\x17\x14\x28\x3c\x63\x59\xbe\x9c\x4e\xd5\x1d\x54\xd2\x5b\x26\x19\x5b\x7c\xa9\xc4\x4e\x4c\xe8\x0a\xc3\x22\x81\xc2\x93\x98\xf5\x0e\x6d\xc4\xab\x9b\xb1\x17\x06\x49\xec\x1d\xca\x51\xd1\xdc\x5b\xb2\xa4\xc1\x1c\xad\xec\x85\xc8\x8f\x79\xce\xdf\xa5\x11\xdd\x18\xb7\xc2\x39\xbf\x10\xd9\x96\xac\xdb\x3c\xe8\x7a\x75\xc8\xdd\xf1\x45\x65\x57\xcd\x49\x13\x61\x41\x85\xa2\x86\xba\xcb\xe9\x4d\x8a\x64\xa2\xb0\xff\x10\xff\x84\xb1\x29\x18\x74\x45\x95\x55\x54\x91\x1c\xdb\xb4\x45\xba\x92\xf7\x3c\xcd\x6a\x37\xeb\x44\x1a\xec\x6f\x1e\xb4\xf5\x0e\x11\xc6\x97\xba\x49\x04\x4b\xf7\x09\xbb\x51\x8d\x06\x4b\x98\x84\xe1\xc5\xad\x24\x0e\xa2\x30\xb8\x2c\x67\x86\x63\x6a\x56\x70\x16\x28\x51\x1b\x33\xdc\x44\x49\x26\x28\xcf\xe7\x53\x23\x15\xc4\x85\x43\x3f\xce\xf2\x74\x19\xe4\x20\x40\x4a\xd1\x83\xd4\x20\x52\xe2\x4a\x45\x90\x98\x53\xfe\x84\xe2\x38\x66\x5a\xf5\x0c\xc1\x29\x31\xc6\xd1\x62\x39\x8e\xc2\x40\xb2\xee\xc9\xd6\x0a\xd2\x75\xce\xc5\x7c\xac\xb6\xb9\x89\xc2\x89\x72\xc7\xc6\x07\x7b\xf3\xea\x67\x3d\xf7\x85\x99\x35\x92\x72\x1b\x12\x9c\x40\x75\x82\xbf\x96\x5b\xa9\xad\x5c\x14\x24\x1d\x89\xd4\x4a\xc8\xa8\x5e\xb9\xf4\x9b\x15\x94\xce\x94\xc8\x55\x21\x3d\xf5\x26\x70\xc0\x9b\xf8\xaf\x66\xb6\x15\xe3\xb9\x65\xf2\x92\x28\xbe\x0a\x01\xb2\xe1\x9d\x90\x60\xa5\x7c\x4b\x45\xf6\x87\x61\x85\x64\x5c\x0e\x92\xde\x26\x3c\xa8\xa3\xda\x8c\xee\x0b\xeb\xe1\x54\xcc\xa2\xe9\x28\xa2\x46\x92\xe4\x73\x0b\xd7\x10\x2b\x51\x13\xd7\x86\xa9\x06\x51\x12\x8b\xf2\x26\x52\x3b\xc3\xe9\xb1\x66\xa6\xdc\xb0\x27\xea\xde\x28\x4e\xe9\x25\x9e\x90\x80\x91\x0f\xed\x85\xd3\xe3\xd6\x81\x9c\x55\x82\x79\x6b\x84\x05\x8a\xb0\x11\x01\xd7\x41\x08\x21\x4f\x29\xde\x51\x6a\xd6\xef\x7f\x1b\x66\x2a\xef\x71\x89\x3d\x53\x09\xa7\x62\x29\x65\x71\x6b\xc3\x7a\xc2\xb7\x8a\x45\x05\xeb\xc5\x70\x5a\x31\x11\x33\xdb\x30\xa3\x68\xe5\x70\x36\x83\x3e\xfd\x8e\xd3\xdc\x04\xf2\x16\xb1\x6e\x9c\xe4\x33\x5d\x97\x98\x92\x4b\x25\x5b\x38\x95\xc6\x8d\x9e\x0e\x95\xc8\x84\x99\x64\xd5\xd8\x54\xd6\xc8\x16\x52\x6d\xac\xb2\x1f\x7e\x70\xb1\xba\x19\xad\x7a\xaf\xd0\xc3\xa9\x8e\xbc\xca\x73\x3b\xe1\x8e\x8d\x8f\xca\x47\x59\x9d\x74\x1a\x35\x09\x98\x4c\x3d\xa4\x77\xb8\x4d\xbc\xc9\x68\x71\x0d\xf4\x0d\xd8\xc8\x93\xd3\xd2\xcb\xae\x83\x0b\xef\xdc\xb4\xb3\xd2\x93\xd3\x7b\x3f\xf3\x1a\xa6\x8c\x06\x01\x09\xcf\xef\x74\x2e\xbd\x4d\x56\x83\x24\xfa\x7e\x27\x13\x8a\xce\xea\x4d\xde\xd1\xa1\x23\x0c\x8c\x10\x28\x40\x7e\xf6\x92\x2b\x91\x4e\xa3\x64\xe5\xb1\x71\xa8\x22\x89\x63\xce\x73\x54\x8a\xe3\x83\x24\xbd\x5b\x82\x66\x5c\x05\x78\x9f\xf1\x8c\x8d\x85\x88\xd9\x9c\x4f\xa0\xf2\x3c\x21\x02\xa5\x90\xf6\xf4\xe0\xae\xd2\x19\xe3\x4b\x3c\x99\xbb\x48\x40\x19\xbe\x4b\x30\x95\x11\x37\xcc\x74\xf6\xa4\x95\x60\x91\xe0\x95\xe0\xc8\xe6\x06\x92\x3c\xf3\x2c\xa7\xe2\x07\x3a\x36\x34\x81\x85\x67\xb3\x8c\x58\x99\x9a\xa4\x9c\x23\xde\xf9\xf0\x9d\x19\xa2\x4c\x13\x78\x39\x7a\x29\x43\x01\xd7\xa5\x61\xa0\x4e\x28\x5a\xe3\x23\x1c\x8f\xd7\x7a\xf2\xf2\x7a\x96\x86\x71\x0e\x1c\xd6\x32\x3d\x0c\x38\x65\x8b\x0f\xd2\xad\x08\xa2\x3e\x42\x54\xfc\x8d\x07\xa4\x5c\x2c\xc9\x23\xe4\xcf\xbb\x1c\x8c\x84\x04\xcb\x88\xe8\x86\x56\x9a\xa3\x24\x8b\xfc\x93\xc6\x81\xce\x9c\x4d\x9f\xd5\x22\xeb\xfd\x25\x31\x86\x44\xa9\xb6\x90\x5c\x6a\xd5\xde\xbd\x5b\x12\xf1\x5a\xfb\x26\x4d\x56\x0d\x1a\x5b\xc3\xe9\xd8\x62\xd5\x72\xb6\x47\x72\xce\x4f\x4d\xee\x5d\x98\xcc\x11\xb5\xd4\xe5\x7a\xd4\x47\xec\xe1\x43\x1b\xda\x26\x49\xc5\xa5\xfe\xbb\xca\x29\x6a\x19\xe4\x6a\x7e\xc5\x52\x00\x11\xfc\xeb\x2c\x87\xc5\xd9\x60\x4f\xfe\x93\x57\xe7\x2b\x24\x26\x9c\x87\x2b\x33\x11\xa9\x6d\x90\x9a\x68\xdd\xc1\xe1\x49\x33\xbe\x8d\x68\xb9\xab\xd4\x84\x0d\x6b\x0a\x2d\x0d\x1b\x1d\x0d\x17\x07\xd5\x42\xd4\x06\x72\xbc\x4d\x84\xa2\x01\x57\x4a\x17\x0a\x37\x77\x15\xa3\x4a\x93\xbf\x4d\x90\xc2\xf5\x87\x33\xbd\x92\x08\xe0\xcb\x66\x4a\x80\xcf\x95\x84\x50\x2d\x65\x15\xd7\xf5\xee\x72\x56\x19\x13\x9b\xc1\x7e\x8b\xac\x95\x26\xab\x2d\xb5\xe6\xb7\x4b\x5a\x25\x7c\xdf\x41\xd6\xaa\x19\xc4\x1b\xcc\x6b\x41\x4b\x61\xde\x41\xbd\xe5\x2c\xc1\x4a\x8b\x50\x58\x85\xca\x27\x83\x3f\x56\x2a\xab\x26\xfc\x9b\x64\xb2\x12\xde\x6e\x95\xca\x6a\x4a\x2c\xc3\xa6\x96\x60\x26\x7b\x77\xc5\x32\x1a\x87\x2a\xdc\x88\x3a\x90\xdb\xea\x95\xb9\xc2\x5c\xdb\xb7\x4f\xd3\x94\xcf\xc5\xff\x31\x0b\xb8\xa9\x6d\xfb\x36\x82\x7c\x3e\x93\x94\x4f\xb5\xc5\x35\xf8\x39\x4f\x79\x60\xf2\x88\x3a\x66\x35\x72\xc1\x39\x83\x64\x6a\x60\x67\xb6\x66\x93\x90\x47\xc9\x45\xd1\x90\x03\x52\xd4\x4b\x41\x2c\xf7\xe8\x15\xc1\x06\xd3\xfc\x11\x5b\xb1\x88\xaf\x45\xda\x62\xec\x2c\xd1\x86\x17\x0c\xde\xf4\x31\xf7\x81\xf0\xa2\x08\xd3\x16\x50\x46\xcf\x00\xd5\xd3\xcd\x1f\xf5\x80\x34\x04\x89\x20\x08\x23\x8f\x3b\x3b\x61\x53\x1e\x84\x51\x28\x05\x40\x3c\x32\x0a\x2d\xf5\x18\x92\x94\x34\x87\xa6\x0e\x7d\x91\x7f\x2f\xe3\x82\xae\xf8\x84\x85\x73\x7e\x81\x4e\x08\x5a\xe0\x86\x8e\xd1\xfc\x92\x65\xe1\x45\x0c\x9a\x31\x78\x32\x20\x1b\x2c\x93\x37\xb4\xe5\x04\xef\xd7\x57\x06\xd2\x4e\x03\xc9\x69\x2d\x33\xbe\xa8\xa9\x11\x17\x58\xa4\x46\xc1\xdf\x5c\xe3\x1e\x7c\x66\x58\x70\x78\x0e\xd3\x95\xf0\x08\xb1\xa5\x95\x65\x1a\xb9\xf9\x43\x65\x41\x9e\xb0\x28\xe1\x9a\xb4\x70\x07\x58\x8d\x40\x04\x20\x7d\xa9\x56\x97\x6b\x01\x47\x7d\x51\xe3\xc7\xe6\x0c\x12\x78\xe8\x80\xe1\xae\x3c\x33\x82\x09\xdb\x9c\x93\x46\xdc\x90\xe3\x69\xd8\x1d\x5a\x07\x98\xaa\xf4\x49\x9e\x46\xf4\xbb\x3e\xa9\x26\xe1\x95\x5d\x0e\x7f\xeb\x8f\x72\x92\x47\x12\xb4\x39\xd8\xb4\xfa\xd7\x9e\xdc\xe7\xcf\xa0\xa4\xa6\x3a\x21\xcc\xe4\x93\x36\x7b\xd4\x07\x26\x26\x78\x4d\x4b\x5f\x48\x45\x3f\x98\xf1\x38\x16\x91\xf9\x6c\x31\xe9\x67\x98\x78\x96\x6a\x5a\xe9\xea\x42\x8d\x75\x07\x49\x16\xdf\x4c\x62\xb2\xc4\xfb\x64\x63\x8e\x0c\x54\xb2\x55\x08\xaf\x35\xa2\x05\x59\x8d\x63\x6e\x6c\x80\x40\x2b\xee\x85\x8b\xa0\x19\xc6\x61\xde\x4c\x2e\xbd\x43\xf3\x2a\xff\x01\x5e\xf9\x95\xe8\x96\x2d\x12\xc9\x77\xf8\x14\xdc\x5c\x21\xcd\x0e\xdc\xf0\xe6\x4c\x35\x07\x5e\x00\xf6\x6c\xd3\x30\x0e\xb3\x99\x7a\xbf\x87\xf9\xcb\xea\x8a\x20\x4f\xe2\x69\xf2\xa9\x56\x7f\xea\x38\x9a\x3c\xb5\x06\xa4\xb7\x64\x18\x4f\x93\xaf\x1c\x95\x03\x63\xd3\xd0\x24\xbf\x9f\x25\x2b\xa4\x4d\xf8\x02\x49\x11\xf9\x5c\x34\x54\x93\x98\xa5\x62\x1c\xca\x5b\xec\x32\xd5\x0f\x2d\x98\x23\x38\xa5\x5b\xa9\x01\x16\xd0\x63\x08\x1b\x8b\x28\x59\x39\x08\x30\xa4\xd1\x02\x4e\xde\x52\xe6\xb0\x47\xcc\x9b\x46\xe2\x5a\x9b\x24\x55\x91\x4b\x6b\x91\xa4\xb9\xdf\x4a\xe2\xb9\x36\xb8\x44\x52\x55\xeb\x8e\xe6\x0d\xb2\xac\xee\xc0\x49\xe2\x17\x09\x9f\x54\xe3\x9a\xde\x51\x14\x6e\xc1\xc5\x33\x12\xad\x28\xb9\xa8\x79\xef\x62\xb4\x6c\x54\xfd\x01\x2d\x02\x62\x0e\xbd\x06\x43\x4a\xaa\x00\xea\xbe\xb2\xc1\x53\x7d\xc6\x02\x78\xec\x93\xe7\x59\x8a\x69\x8e\xc3\xac\xc1\x4e\xd8\xc5\x52\x64\xfa\x79\xf4\x24\x87\x5c\x50\xb1\xa7\xed\x8a\x30\x97\xf8\x02\x8e\xbc\x2c\x17\x31\xe4\x23\x90\x77\xf2\x13\x6f\x4e\xf6\x47\xca\x86\x12\x5f\x13\xdd\xe4\x4f\x33\x91\x0a\x75\xdc\x2c\xd2\x64\xcc\xc7\x11\xe4\x07\xcc\x71\xd5\xb2\x85\xe0\x97\xe6\x81\x28\x4f\x60\x79\x91\x47\x66\x77\xda\x69\x05\x11\xa5\xbc\x8f\x71\xd7\x32\x5c\x01\xcc\x05\x7d\x33\x60\x59\xef\x53\x59\xf2\xd9\xc4\x3e\xc4\x8a\xbd\x74\x4a\x71\x95\xbf\x8a\x7c\x3e\x15\xe8\xe7\x06\x20\xe0\xc2\x60\x75\x45\x9c\xb0\x45\x19\x8f\xc8\xda\x66\x91\x64\x39\xc1\x56\xa9\xec\xff\x26\x19\xcf\xa1\xe1\x36\x5e\x83\xf1\xf4\xe2\xea\x90\x9d\xff\x8d\x7a\x7a\x93\xa4\xf9\xe1\xe6\xbe\x3b\x5f\x3e\x7e\x69\xd8\xc4\x0d\xe7\xc1\xf9\xe6\xfa\x1f\x5d\x21\x58\xd1\xe3\x9c\xaf\x5d\x6a\xbc\x7d\x59\x36\x2f\xf6\x29\xe4\xc5\x73\x64\x19\x60\x38\x96\xdd\xfb\xdd\x58\x78\x89\x41\x96\x29\x01\x5f\xed\x2e\x44\xde\x0b\x02\xb1\xc8\x5f\xf0\xf8\x62\x29\x4f\x8a\x9a\xae\x17\xa9\x22\x63\xaf\x05\x13\xb4\x97\xc3\xe5\xae\x5e\x83\x9d\x5b\xd9\x9b\xb9\x0b\xf9\x90\x69\x88\x96\x25\xf0\x34\x49\x05\x9a\xb5\x0d\x92\x28\x49\x0f\x0b\x47\xb0\x1c\xe1\xc8\xad\x52\xab\x5b\xcd\x8d\x55\xdc\xc6\xe6\x7d\xb7\x8a\xd3\x1c\x95\x77\x1b\x9b\x0e\xcc\x67\xa7\xd9\x34\x41\x0b\xac\xea\xd1\xe2\xb7\x52\x83\x11\x9f\x87\xd1\x7a\x53\x13\xfc\x5a\x98\x5b\x26\xde\xbd\x7d\x71\x68\xd6\xea\xdd\xdb\x17\x35\x6f\xcb\xab\x5b\xd7\x8f\x2f\x1f\xf5\x1f\xca\xec\xcc\xda\x7f\x2e\xd1\xbe\xcb\x44\xca\xe0\xd9\x94\x14\xaa\xf0\x20\x2a\x19\x61\x0e\x46\xbf\x46\xac\x82\x6c\xfd\xa9\x16\x4d\x37\x13\xf4\x40\x42\x18\x20\xc8\x4d\xfc\x46\x3f\xbb\x3a\xfb\x27\xc9\x48\xc8\xbd\x95\x9a\x71\x94\x25\xd8\xf8\x44\x5d\x90\x94\x3e\x7f\x66\xc5\xb2\x16\x72\xe2\x57\xc9\x44\xd4\x0b\x87\x4c\x59\xd4\xb2\x2a\xb7\x52\x31\x4f\xae\xc4\x60\x16\x46\x88\x4d\xab\x9a\x61\x59\x84\x02\x35\xbd\x6f\xe4\x0f\x83\x8a\xa9\x16\x18\x04\xe3\xf7\xe7\x07\xd6\x96\xb5\x81\xc7\x28\x9b\xa4\x17\x57\x45\x8c\x16\x58\x20\xd9\x00\x80\x59\x8d\x3c\x2b\x86\x69\x9a\xa4\x35\x4f\x81\x0c\xb0\x9a\x36\xe6\x15\x39\x5b\x2e\x5a\x5e\xdd\x20\xb8\x9a\xfd\xdb\x9c\x84\x38\xba\x19\xd2\x21\xfc\xff\xa5\xa0\x17\x53\x02\xd6\xbb\x13\xba\x07\xd8\x04\xa4\xfc\x05\xe8\xb4\xcc\xd2\x40\x0d\x49\x5e\x3b\x04\x39\x24\x91\x71\x16\x1a\x9a\x6a\xb7\x80\x1b\xd9\xe9\x0c\x34\x53\x05\xfa\x03\x47\x58\x11\x4d\xe9\x00\x7c\xea\x5a\xd0\x2f\x72\x42\x2f\x49\x46\xef\x79\xb4\x74\x8c\xbc\xe5\x57\x79\x13\x92\x20\xd4\x35\xa1\xe0\x2e\x6d\x7f\x3a\x97\xf5\x3f\x3e\x7d\xe0\x18\x57\x59\xa0\x9f\xda\x16\x1f\xc5\x61\x81\xf9\x7e\x61\xa7\x18\xed\x50\xd5\x46\x51\x32\x3d\xc9\x71\x02\x17\x1c\xef\x53\x3c\x4a\x05\x9f\xac\xd9\x55\x98\x85\xe3\x88\xec\xb8\x5c\xc9\x8d\xc6\x31\x13\x7c\x22\x52\x6d\x97\xe9\xf9\xdd\x85\x94\x4d\x95\x8d\x50\x78\x45\xd6\x07\x15\xc6\xad\x35\x7d\xdb\x32\xd6\x21\xea\x89\x56\x22\xd7\x83\x3f\xbc\x06\xeb\xee\xa0\xbd\x2d\xf6\x47\x3d\x41\x0d\xfc\xcb\x6b\xb0\x9d\x7d\x53\x25\xc2\x3c\xf3\x35\xea\x9c\xde\xe0\x9a\x8c\x3c\x9c\xb7\xd0\xd3\x1c\xcc\x66\x92\x85\x5d\x91\x60\x37\xb5\x11\x00\x54\x55\x53\x51\x76\x77\x47\x45\xf6\xae\xbe\x7c\xd2\x75\x35\xc2\x55\x65\xe7\xa2\xa7\x6d\x71\x02\xb0\x2b\x1b\xe2\xb5\xb6\xe6\x4d\xc2\x2b\x44\xb4\xae\x4d\xa2\x7f\x90\x65\xe0\x1c\x75\xc4\x94\x70\xe4\xa9\x1c\xcc\x87\x8c\x8f\x21\x45\xad\x78\x6a\x74\x56\x1e\xdd\x15\x0e\x59\x9c\xc4\xce\x07\x79\x73\x68\xa2\x18\x0b\x8d\x49\x47\x6b\xd5\xc8\x93\xc5\x21\xf3\xdb\xff\x6e\x97\x49\x84\x1e\xb2\x1d\xa7\x0c\x90\x79\xc8\x0e\xdc\x9a\x88\xb8\x43\xb6\xef\x16\xcf\xc3\xb8\xa9\x3e\x75\x0a\x9f\xf8\x75\x73\x43\xab\x71\x72\xdd\xcc\x66\x7c\x92\xac\x0e\x59\x9b\xb5\x59\x67\x71\x6d\xb4\x75\x37\x8b\x0f\xec\x09\xf3\x5c\x50\xe9\x44\xa4\x87\xf7\x05\xc1\xb2\x24\x0a\x27\x4f\x89\xcd\xc9\x2d\x06\xca\x5d\xcb\x6e\xf1\x15\x64\x8f\xd4\x0a\x0b\xfb\xb4\x6d\xb0\x2c\x61\xb1\xfb\x5d\x79\x61\xc2\xa6\xa1\x2c\xc7\x2d\xed\x59\x40\xc5\x77\xa0\x10\x46\x75\x37\x12\x88\x4d\x04\x72\xd1\x9f\xda\x1a\x4d\x8f\x92\x1f\x37\x49\x08\xc7\x2a\x4d\x11\x4f\xdc\x6a\x6a\x5d\x24\xc6\x9c\x7d\xee\x62\x57\xe2\x57\x0b\x60\xcd\x00\x25\xad\xaf\x5b\x28\xc6\xbc\x1b\xdb\x97\x04\xbd\x72\x7b\x29\x87\x35\x33\x90\xdc\x24\x2f\xaa\xf8\x38\x25\x29\x6d\xd3\x10\x8d\xa4\x46\xb8\x36\xfb\x11\x54\x70\x13\x94\x17\x10\x23\x75\xe2\xd7\x72\xfd\x48\xca\xba\xd3\xfa\x61\xdd\x56\x26\xf2\x5e\x4e\x59\x46\x6b\x5e\x9a\x44\xe0\x76\x8d\x1f\x8b\x55\x37\x2f\xf5\x9c\xa7\x17\x61\xdc\x84\xbd\xdb\xdc\x2e\x4e\x9a\xbe\xa6\xb8\x98\xa5\xcf\x28\x20\x1f\xb2\x45\x02\xba\xdb\xa7\x85\x6e\x73\x71\x9d\x0f\x90\x4e\xc8\xd5\x91\x77\xa6\x9e\x53\x85\x4f\x26\x43\x79\x5f\x7d\x41\x37\xef\x9a\x07\x12\xa8\xd7\x70\xe4\x27\x25\x42\xba\xb2\xab\x45\xcb\x36\x72\x11\x72\xdd\x39\x6a\xe8\xcc\x3f\x2a\xaa\xd4\x36\x61\x1b\x6b\x78\x64\xec\x08\x07\x7e\x12\x47\x78\x3d\xb3\xb4\x1d\xc5\xcb\x2c\x55\xdd\xc8\x7a\x37\xed\x2b\x60\xae\x87\xcc\xaf\xe0\x92\xe0\x32\xec\x00\x77\x96\x3d\x4b\x03\x85\xab\x65\x1a\xdd\x50\x4f\xf0\x79\x24\xb2\x4c\x56\x4e\x97\xa2\x70\x56\xd8\xe8\xc3\xe6\x96\x74\x26\x4f\x59\xa7\x86\x6e\x77\xa7\x97\x8c\x4b\xb1\x46\xe7\x87\xff\x3b\x8f\x19\x28\x90\x3c\x57\x13\x7b\x2e\xd6\x2f\xf9\xc2\x7e\xdc\x50\x9f\x94\xf6\x4e\x89\x9f\x83\x24\xc6\x5c\x95\x49\xfc\x5c\xac\x1f\xa3\xaa\x06\xd3\x9d\xa2\x87\xa8\xfc\xf2\xfe\xec\xb9\x58\x67\x79\x9a\x5c\x0a\x75\xeb\xe2\x59\x96\x04\x21\xcf\x31\x55\xbb\xab\x73\xb7\xd4\xeb\x78\x09\x10\xf0\x6c\x71\xc8\xce\xff\xeb\x6c\xf8\xf6\xe5\x47\xc6\x25\xf6\xc8\xd3\x1a\xe6\x7a\x95\xb7\x7e\x2b\x79\x0b\x54\x29\xf2\x0b\x5d\x58\xc3\x50\xef\xe3\x61\xc6\xf4\xfa\x5a\x22\xb2\x9e\x7f\x85\x72\xdd\x04\xf5\x33\x4f\x05\x57\x39\x3e\xfe\x2c\x52\x41\xe1\xe5\x1c\xe6\xea\x68\xda\x4d\x63\xed\xdb\x21\xbc\x54\x7b\xe1\x44\x6b\x16\xf0\x45\x8e\x5e\xbc\x6a\x6c\x0a\xd1\xd3\xc4\x00\x57\xdf\x68\xcf\x1b\x3d\xb9\xd5\x81\x6c\xa5\xd6\x30\xc3\xb8\x79\x26\x91\x39\x20\x53\x2b\x6f\xc3\x94\x8d\x81\x98\x94\x62\x36\x6b\xb0\x8c\x5f\xc9\x15\x93\xe0\xb2\x04\x95\xc2\x48\x7a\x6c\x19\xc3\x23\x25\x78\x1c\x53\xce\x66\x79\x9b\x74\x58\x61\x03\x1f\x70\x28\x22\xd9\x44\x0f\x5c\x8d\xe7\x93\xce\x30\xc3\xd8\xb9\x07\xf6\xcc\xc9\x32\x37\x9c\x73\x24\x4b\x5e\x2f\x73\x9b\x49\x7d\x6c\xe8\x06\x97\x62\x3d\x49\x56\xb1\xa9\xff\x5c\xac\x8f\x93\x55\xbc\xb9\xfa\x22\x25\x06\xa2\xeb\xbf\x91\x25\x9b\x1b\x2c\x17\x4e\xed\x77\x8b\x0d\x55\xe5\x39\x71\x12\x2f\xec\xc1\x9f\xa9\x22\xa7\xc9\x03\xc6\xf0\x92\x03\xfb\x8c\xd1\x85\x4e\xf9\x5f\x5d\x8a\x35\x9b\xf3\x05\x08\x45\x8f\xb7\xac\x75\x7e\xc9\x17\xa4\xc6\xac\xdc\xb9\x8a\x7f\xab\x16\xb2\xc3\x30\xbe\xc8\xaa\xdb\xf4\xe9\xab\xd5\x4a\x8f\x46\xca\xcc\x87\xec\x38\xcc\x20\x68\x23\x8f\xd7\xac\x17\xe5\x3f\xa7\x2c\x15\x11\xec\x9a\xf9\x32\xbe\x50\x5e\xc3\x8f\x59\x90\xa7\x51\x93\x47\xf9\x21\xeb\x41\x0a\x5b\x36\xc8\xd3\xe8\x49\x2f\xca\xd9\x5c\xf0\x38\xc3\xb6\x54\x57\xca\xd1\x4e\x5d\xb8\xa9\x54\xd7\x05\x96\xe9\x54\x46\x86\x5b\x59\x5b\xe3\x89\xcb\xb2\x97\x92\x8d\x2a\x27\x68\x77\x6e\x27\x53\x38\x39\x1a\xec\x74\x16\x4e\xf3\xe6\x49\x9c\x89\x94\x9e\x3d\xa7\x10\x69\x64\x06\x0f\xaf\x4a\xed\xa0\x5c\x98\x20\x23\x35\x78\xf4\xb4\x34\x1c\x90\x84\x21\xe3\xbe\x5c\x33\x62\x75\x00\x69\x0c\x7a\x75\x6d\x83\x37\x4b\xc0\xba\xcd\x1e\x66\x26\x7b\xc7\xce\xd1\xff\xeb\x88\x22\xdb\x56\x8e\x75\x96\xcc\xc5\x96\x00\x23\xe3\x28\xd2\x81\x2c\x9d\x67\xe5\x0c\x42\x1b\x8c\x79\x8a\x11\x56\x24\x78\xdd\x0c\xa1\x41\x5b\xf5\xdc\xc3\xde\x9f\xc9\x41\xcb\xf3\x26\x6b\x31\x3d\x1b\x7c\xbf\xd1\xdd\x65\xa0\xab\x7d\x7f\x06\xe7\x52\x86\xb6\x43\x12\x94\x0b\x9e\xfa\xce\x0a\x53\x94\x9f\xe5\x11\x80\x41\x17\xac\xac\xbe\xd6\x0c\x4f\xe1\xaa\x9d\x31\x3e\x4e\xae\x44\x83\x5c\x99\xe0\xae\xb0\xe0\x17\x82\x2d\x17\x5b\xf0\x53\xee\xf0\x02\x74\x59\x7e\x1b\x74\x8d\x3f\x49\x91\xcd\x37\xd1\x32\xdb\x7a\x19\xc6\xcb\x6c\xeb\x2f\x22\x4d\x14\x1a\x33\x88\xa0\x52\x5a\x55\x68\x82\x34\x72\x63\x43\xaa\x09\x9f\x09\x5f\xbf\x7e\x6a\x20\x34\xd3\x2d\xb4\x9b\x24\x3a\x98\xa2\x3b\x17\xb9\x83\x64\x35\x00\x22\xab\xfe\x25\x49\xe6\x95\x14\x01\x5b\x6b\x80\x41\x54\x32\x70\x6b\x83\xf9\x51\xbf\x03\x49\x70\x92\xd8\xe4\x17\xe3\xda\x45\xcd\x60\x32\x4f\x06\x95\x95\x11\x8c\x01\x6b\x35\x76\x46\x39\x00\x6f\xd1\x4a\x64\x43\x1f\xef\x71\x8f\x94\x87\xf6\xfe\x0e\x43\x7b\x5f\x59\x19\xc1\x18\xb0\x9b\x86\xf6\x5e\xed\xa3\x8a\xb1\x0d\x21\x24\xcb\xd6\x44\x71\xb4\xc5\x22\x52\xe1\x54\xe4\x81\xc0\x27\x08\x4f\xf1\xe2\x30\x23\x4b\x04\x32\x9e\xe6\x6b\x16\x2f\xe7\x22\x0d\x03\xd8\xe8\x70\x7c\xc2\xfe\xd6\x0f\xce\x96\xf4\xe0\x30\x23\xd3\xd1\x73\xe8\xe7\x4e\xc3\x03\x51\xc9\x1a\xa2\x36\xbe\x9d\x88\x5b\xc7\x49\x75\xbf\x7a\x98\xf8\x18\x70\xcb\x76\x02\xc6\x28\x65\x03\x88\xe8\x44\x31\x5a\x80\xb3\xf4\x4f\x59\xcd\xfb\xe5\xba\xbd\xef\x35\x18\xbf\xe4\xec\xd7\x67\xf5\x16\xc3\x84\xfd\xab\x30\x13\x08\xc7\x6d\x2e\x8f\x3b\x1b\x84\xf7\xcb\xf5\xde\xd4\x2b\x8c\x50\x57\x87\xd7\xa3\xbe\x6e\x5c\x39\x4e\x8c\x67\x16\x24\x13\x0c\xa7\x04\x2a\x50\xc9\x52\x26\x3c\xe7\xb7\xf1\x65\x6d\xa6\x3c\x54\x00\x8e\x98\xb7\xcc\xa7\xcd\xfd\xc2\x39\x72\x2a\x72\x93\xf7\x1c\x3c\x0a\x73\x8e\x73\x01\x1a\xe6\x2c\x12\x1c\xda\x8b\x2c\xe0\x0b\xc1\x92\x54\x6e\xfe\x42\x6f\xb2\x11\xcc\x68\x88\x95\xaa\xb6\xbc\xdd\x91\xac\xdf\x7c\x8f\x81\x03\x94\xc9\x78\x52\x35\x0d\xf9\xf1\xa5\xc8\xf9\xfb\x6a\x2e\xa2\x18\x98\x52\x34\xf3\x08\xc5\x0e\xb0\x2e\x97\x62\x99\xb3\x21\x68\x0a\x2d\xfc\x47\xfa\xf9\x98\x0d\x4f\x07\x10\xfc\x28\xbc\xa6\xad\x8c\x61\xad\x5b\xaa\x5e\x6f\x32\x61\x7e\x67\x5f\x21\x7b\x19\xc3\xa9\x21\x26\x56\x40\x56\x9e\x49\x41\xfe\x9a\x22\x71\x01\x0c\x3a\x70\x9b\x97\x62\xdd\x6a\xb1\x0f\x3c\xcc\xb5\xea\x48\xc9\x6e\x24\xd0\xc2\x39\x27\x04\x5b\x29\x03\x60\x75\x56\x67\x7c\x9d\x29\x70\xee\xbf\x1a\xec\x99\x15\x38\x3e\xae\x92\xf4\x92\xad\x44\x14\xc9\xdb\xc9\x22\xe2\x39\xc4\x18\xa6\x20\x2c\x16\xb8\x4a\x40\x6c\x21\x52\xac\xcf\xb5\x77\x25\x37\x49\x12\x20\xc0\x19\x07\x8f\xcb\xbf\x2e\xe5\x85\x25\x6b\xd5\x8b\x3b\x97\x9c\x31\x31\xe2\xd4\x9c\xe7\x60\x1a\x0f\xa2\xb2\x6c\x18\x66\x6c\x12\x66\x79\x18\x07\xb4\x7d\x81\xbe\x6a\x3c\xca\x4f\x60\x61\x59\x98\x21\x2c\x64\x87\xf5\x92\x10\x04\x64\xf5\x41\xa2\xe6\x88\x79\xb8\x80\xb7\x50\xb0\x22\x02\x1e\xc8\xbb\x5c\x06\x4f\x30\x48\xd3\x0d\xdb\x79\x78\x91\x26\x93\x25\x84\xef\x86\xe5\x26\x19\xd0\x89\xe4\xad\xe7\x99\x2e\xe1\xfd\x06\x23\x62\x35\x94\x88\x01\x81\xcd\xb0\x44\x5e\x55\x64\x01\x5f\xe6\x09\x86\x3f\x31\xd6\xbe\x6a\x4d\xca\x02\x1e\xa1\xe0\x16\x26\x95\x82\x99\x65\x42\x61\x55\xd8\xf1\xf0\x05\x4c\x8f\xee\x50\x3a\xc8\x1c\x60\x97\x47\x79\xd3\xb0\xa4\x24\xa6\x7d\x82\x81\x3d\x5e\x9f\xb2\x2b\x32\x2e\xe2\x00\x5c\xc3\x02\x72\xb4\x67\x6c\xb4\x73\x87\xac\x47\x16\x7b\xe1\x1c\xc3\xcf\xa5\xa1\x5c\xef\x86\x9c\x9a\x06\xdc\x28\xf4\x1c\x66\x52\xf4\x5f\x08\x92\xb3\xf2\x44\x76\xd5\x62\xa7\xb2\xf6\x32\x93\x14\x32\xe7\x6b\x29\x5e\xce\xf8\x62\xb1\x36\xd7\x57\x34\xf4\x00\x53\x5b\x5d\x65\x9a\x2e\xb3\x3c\xc5\xdb\x36\x53\x61\xf5\xc2\xdc\xcb\x58\x38\x5f\x24\x19\x3c\x6b\x00\x7e\x12\xe4\x2b\x7a\x14\x2d\x40\x22\xf9\x13\xd3\xe2\x65\x78\x4b\x96\xfb\x9d\x84\x9b\x15\x7c\x07\x8c\x84\xc1\x25\xec\x72\xb9\x99\x5c\x0c\xe1\x7e\x2d\xa3\xf8\x50\xe3\xd8\x29\x6e\x48\xa8\x24\xa7\x0a\x87\x28\x2f\x12\x10\x02\x1b\x28\xa0\x5e\x88\x9c\x71\xd5\x07\x0a\xde\xf6\x1c\xc9\x21\x47\x2d\x32\x6e\xa7\x38\xc9\x71\xbd\xc4\xa4\x05\xea\x85\x59\x9e\x2f\xb2\xc3\xad\xad\x20\x1d\x2f\x2f\x5a\x41\x32\xdf\xf2\xf7\x76\x76\xfc\x36\x2b\x13\x9c\x3e\x70\x90\xf2\x6e\x39\x7f\xde\x11\x5f\xbe\x14\x62\xc1\xf2\x94\x07\x97\xca\x34\x54\x5d\xf1\xe4\xa4\xe1\xac\xc8\x21\x14\x93\xf6\x28\x8a\x45\x20\xb2\x0c\x72\xae\x24\xa9\x39\x2c\x6f\x1a\x81\x09\x3f\x87\x42\x34\xb0\x45\xc5\x31\xf5\x65\x08\x61\x99\xba\x60\xee\x89\x76\xa6\x9c\x8d\xc3\x7c\xce\x17\x48\x4c\xc8\xfe\xc6\x61\xce\xd4\xfb\x4a\xc6\x20\xe6\x40\xb6\x48\xe2\x89\x65\xbe\xf5\x98\x3d\x8a\x12\x94\x19\x1e\x49\x9e\xb0\x10\x69\xbe\x56\xf3\xd4\xfb\xac\x8c\x4a\x75\xdd\x16\x13\x1d\xc4\xb9\x42\x5e\xd7\x1b\x6f\x2e\x26\x21\x47\x71\x46\xdd\xac\x70\x83\xd0\x50\xc2\x94\x8d\x00\x95\xe2\xaf\xcb\xf0\x8a\x47\xba\x4f\x36\x6c\x5d\xb4\xd8\x23\x89\xa8\x47\x15\x4d\x47\x7e\xcb\x16\xf6\xb1\x3f\x32\x7e\x05\x63\x24\x75\xab\x2b\x9d\xd8\x93\x90\xcb\x7b\x47\x2f\x15\x23\xf9\xb3\x9a\x04\x9e\x25\x11\x19\xb9\x2c\x52\x71\x05\x21\x10\x34\xbf\x9f\x32\x87\x3d\x03\xcb\x3f\x1e\x0e\x4e\x87\x67\x0c\x92\x98\xa3\x67\xd9\xa4\x05\x2e\x5f\x08\xee\x78\x38\x78\x7b\xea\x7e\x6e\xb8\x50\xb4\x28\x38\x01\xd1\x4a\xfb\x05\xa0\x5a\x07\x56\x9a\xee\xf6\x4b\xd0\xd6\x24\xcb\x92\xc8\x40\x03\xed\x59\x60\x2b\xad\x2e\x4f\x29\xf2\x3b\x20\x0a\x82\x48\xa0\xc0\x39\x80\x3b\x22\x04\x2e\xd4\x0a\xab\x88\xaf\xb1\xa7\x92\x4e\x4d\xfe\xd2\x0b\xec\xb0\x01\x46\x3c\x91\xf7\x70\x39\x1c\x11\xe7\xc7\xea\x70\x95\x87\x7d\x9e\x2c\xde\xa4\xc9\x82\x5f\xd8\x91\x10\x51\x77\x67\xc9\x04\x74\xc7\x42\x58\xc2\xb9\x2c\x0c\x7a\xaf\x06\x43\x6d\x6b\x42\xca\xf2\x78\x39\xaf\x79\xf8\xc5\xab\x37\x0a\x92\xa4\xe4\x79\xea\xa8\xb7\x43\x29\x18\x73\xee\xc0\x89\xca\x28\xc5\x16\xb8\x4e\x43\x4c\x26\xd4\xc8\x22\x2c\x15\x3c\x49\xb5\x20\x85\x5b\x41\x7d\xa0\xfd\x0c\x40\xdf\x90\x86\x31\x26\xce\x80\x43\x58\x83\xb2\xb3\xa7\x6c\xd0\x36\x38\x63\x48\x62\xa1\x76\xe6\x3c\x99\x84\xd3\x50\x49\x35\x38\x94\xac\x51\x08\x2f\x2a\x81\xd2\xac\x29\x54\x87\x1c\xb9\x1e\x38\x98\x8e\xd6\xe8\x08\x59\xd7\x35\x1f\xc7\xb8\xfd\x61\xee\xc8\x8e\x4d\x75\x98\x10\x10\x25\x11\x61\x64\x5f\x0a\x52\x31\x38\x3d\x69\x50\x98\x20\xfa\xaa\x26\xc6\xc1\x6b\x4d\x1d\x61\x8c\xa1\xc3\x25\xf8\x66\x3a\xf3\x31\x11\x46\xa4\xe8\x32\x11\x59\x90\x86\x63\x9c\xbd\x52\x20\x2b\x83\x6c\x0c\x9a\xa9\xc0\xa9\xbc\x24\xf2\xd3\xa3\x37\x83\xe6\x29\xe8\xd9\x47\xca\xc4\x41\x6e\xf1\x47\x2c\xc3\xd7\xe2\xea\x89\x29\x75\x0c\x09\xd0\xf2\x98\xd2\x8b\x2b\xcb\x36\x2c\xa9\x89\x5e\xaa\x07\xa3\x5a\x2d\x17\x0b\x91\x82\x61\x2f\x05\x34\x56\x03\x34\x32\xf4\xa5\x58\x07\x1c\x42\xc1\x91\x93\x81\x06\xd2\xdd\x61\x35\x4c\xdb\xe2\xfd\x87\x57\x07\x98\x07\xbb\xba\xe8\x93\x57\xa7\x33\xf4\xa6\x8e\x34\xb0\x52\x87\x73\xd0\x73\x74\x77\x30\x58\x6e\x9c\xab\x83\x64\xce\x2f\x45\xc6\xbc\x5f\xff\xc3\xd3\xb7\xb8\x76\xdb\x33\x1a\x23\xc6\x98\xf7\xeb\x27\xf3\xd1\x9f\x7a\x2d\xc6\x6a\xaf\x12\xe5\x37\x2b\x69\x74\x16\x5e\xa0\x30\xca\x73\xd6\xbe\xf6\xa7\xb2\x93\xf6\x75\xa7\x6d\x4e\x48\xb3\x6e\xb0\x92\x69\x96\x5b\x18\xc5\x29\x42\x80\x5e\x47\xdc\x36\x4b\x65\xdd\x73\xee\xbd\x4c\x80\x35\xa7\x7f\x0c\x05\xac\x8e\x76\x3b\xd1\x98\x42\xda\x72\xc1\xc6\x6b\x79\x09\x2a\x53\xce\x1c\x85\x78\x33\x8e\x20\x89\xa7\xe1\xc5\x32\xc5\xf3\x29\xa3\x4b\x16\x4a\xee\x0d\x40\xd9\xd8\x73\xf6\xbb\x1e\x0b\x85\x40\x2d\xef\x54\xc3\xbc\x84\x75\xe5\x3f\x1e\x8e\x7a\xef\x5e\x9c\x55\x71\x41\xfa\x54\x64\x83\x03\x74\xd8\x75\xa3\xc3\x26\x2c\x59\xe4\xf2\x1c\x81\x40\xc9\xea\x2c\x70\x4e\x7f\x73\x6f\x88\xf0\xf0\xb3\xee\xff\x74\x57\x9b\x08\x60\x38\xf9\x4c\xf3\x0d\x39\xc4\x37\xbd\xd3\xd3\xaa\xf1\xc9\xf2\xe2\xe0\x48\x83\x6b\x08\x02\x63\x4a\x49\x69\xc5\xac\x89\x91\x4b\x06\x7c\xd1\x30\x77\x0c\x81\x8a\xd8\xe7\x62\xdd\x32\xba\x03\x39\x7e\x85\x68\xba\x0e\x23\x17\xa5\xa7\x05\x7c\x2c\x11\x2d\xf7\x88\xaa\xd5\x55\x23\x62\xd2\xca\xe2\x4a\x2f\xfc\x49\x4e\x87\xf7\x74\x19\x91\x77\x3b\xb1\xaf\x89\xba\x78\x41\xd0\x57\x94\xc1\xc2\x9c\x49\x31\x29\xce\x43\xc8\xe8\x92\xe5\x69\xb8\xc8\xcc\xe6\xd4\x8c\x0f\x73\xbd\xd1\x58\xd4\x12\x98\xc8\x5b\xc9\x9c\xa5\x82\x63\x58\x49\x3a\x20\x2e\xd5\x6c\x25\xaa\x4f\xcf\xde\x9e\xbc\xa9\xc2\x35\x7c\xf0\xea\xf6\xc9\x0f\x3a\x11\x61\x9c\xe2\x78\x10\x24\xe9\xc4\x82\xec\x49\xb2\x6d\x2a\xdd\x8b\x1d\x1b\xb9\x52\x04\xb0\xdc\xff\x10\x72\x55\xe2\x0f\x63\xd6\x55\x56\xcd\x68\xdd\x8c\x93\x3c\xc5\x79\x74\x6b\x5d\xe5\x04\xfd\xdd\xd9\x68\x1f\xc0\x3e\x75\x03\xfc\xbb\x26\x9b\xf0\xe8\x26\x4a\x4f\x6e\xf6\x01\x6b\xbd\x1f\xd2\xdb\x9d\xe3\xbb\x65\x2e\x4c\x96\xc2\x8d\x29\xc8\x1a\xa2\xbc\x7b\x06\xf8\x90\x4a\xb1\x97\x95\x2f\x14\x04\x10\x50\xca\x7e\xb8\xb6\x98\xb3\x38\x4c\x8b\xfa\x86\x24\x65\xe3\xe5\x98\xee\x72\x14\xa6\x0d\x47\xa5\x1f\x47\xdf\xf0\x2c\x83\xf5\xc2\xfb\xb6\x09\x26\x17\x45\xe6\x09\xcf\x19\xaf\x7e\x2d\xac\x8a\xc6\x46\x4f\x8d\x5f\x34\x20\xe7\x15\x73\x96\x64\x42\x63\x6d\xa6\xe2\xcf\x06\x34\xfb\x06\x93\x17\x1b\xd4\xa7\xa8\xcb\xbf\xad\xf7\xbc\xe9\x19\xd6\xa2\x17\x1a\x73\xd5\x03\x2d\x0d\xc4\x10\x8f\x1a\xd9\xd1\x51\xf5\x8b\xa9\x4d\x3b\xda\xca\x49\x35\x52\x06\x84\xd5\x8d\xd0\x0c\xc3\x1d\x0b\x84\xcc\xac\x6f\xcc\x4e\xe3\xbe\x7d\xea\x9c\x20\xa1\x49\x05\x02\x76\x50\xe4\x2e\x73\x54\xa8\x7f\x1e\x7e\x34\xf9\x2f\x9c\x99\xca\x7f\x8a\x1a\x4b\xd6\x28\xd4\xfe\xbc\xfd\xb1\xa1\x40\x9f\xfb\x1f\xab\x43\x81\x56\x4e\xb7\x55\xf1\xb0\x7b\x0b\x54\x65\xb7\xb2\xe9\x95\x9a\x06\xeb\xa6\x27\x22\x4a\x70\x77\x9f\x22\x1e\x67\x97\x01\xf1\xf2\x28\x22\x0d\xa6\x0e\xf2\x9a\xc8\xcb\x28\x04\x28\xb3\x94\x3d\x2a\x46\xc5\x2d\x54\xa5\xf7\x42\x15\x5d\x59\xb6\xde\x1b\x56\xbc\xec\xd1\x62\x3d\x00\xd3\x50\xd4\x1c\x3e\xc0\x63\x3f\xe4\xaa\x0b\x72\xcc\xd9\x05\x6e\x3c\xa4\x3a\x40\x87\x2d\x21\xef\xa6\xe3\x65\xce\x56\x82\x4d\x12\x65\x45\xf1\x92\x07\x4a\x96\x95\xa2\x1b\xb8\x79\xc2\x89\xe1\x7a\x95\xf2\xc5\x82\x74\xd1\xd9\x3a\xce\x67\x22\xa7\xd7\x0b\xb8\x67\x80\x62\x0c\x6f\xbd\xb7\xe0\xc4\x7e\xc3\xae\x70\x95\x03\x6b\x6a\xf2\x6e\x2a\xee\x23\x72\x9f\xcb\x16\x51\x98\xd7\x3c\xaf\xde\x9a\x26\xe9\x90\x07\xb3\x9a\xcb\xa0\x1d\x53\x11\xf3\x4c\xae\x2b\xd4\x37\xa0\x56\x69\x12\x2c\xcc\xde\x38\x0f\xfd\xd0\x5f\x31\x0d\x95\x20\x4a\xdb\xaf\x4a\xe2\x39\x62\xe8\xdb\xd9\x92\xa7\xe8\x80\x12\xd3\xd4\x44\x0b\x84\x51\x63\x6b\x9b\xac\x44\xfa\x1c\xaa\xcb\x83\x35\x4f\x5e\xc8\x82\x01\x57\x41\xd8\x24\x86\x6a\x02\x9e\xa8\x64\xad\xcf\x9f\x99\x00\xbd\xff\x73\xb1\xae\x4b\xf6\x52\x33\x00\x8e\x98\x17\x78\xb2\x86\x53\x74\xe5\xd5\x2d\x73\xcb\xd7\x31\x46\x28\x15\x46\x01\xc9\x6a\x92\x8e\xe4\x9f\x52\x98\xac\xd3\xa6\x81\x47\x82\x69\x28\x4f\x1c\xc8\xdb\x9b\x2c\xd6\x5b\xe6\x01\x5b\x82\x7a\x21\x20\xc9\x82\xf3\xec\xad\xee\xb1\xea\x90\x51\xfb\x6a\x2c\x66\xfc\x2a\x4c\xd2\x96\xb3\xc8\x56\x88\x66\x41\xca\x1d\xcd\x31\x5d\x1d\xf4\x11\xf3\x2c\xcd\xbe\x27\x6b\x09\x9d\xec\x07\xd2\x20\xda\xa1\x30\x21\xb9\xe3\x45\x92\x33\xd4\x46\x09\x88\x18\x03\xba\x41\xf9\xb7\xb8\x5e\x50\x9c\xec\xc2\xce\x27\xd5\x0d\x8f\x15\x20\x5b\x05\x0f\x1b\x29\xcc\xd9\x24\x9c\xc4\x5e\x2e\xf7\x53\x98\xd3\x55\x68\x25\x28\x8c\xe9\x58\x60\x98\x09\xf6\xfa\x54\x25\x26\xd5\xa0\x62\x95\xd8\x81\x9d\xbc\x1c\x52\xa8\x56\x15\x27\x07\x8c\xb1\x70\x84\x80\x4d\xa5\x82\x81\x97\x8d\x66\x14\xa2\x7a\x52\x82\x71\xf1\xb8\xb5\xa5\xca\xcf\xec\xc8\x3e\x30\x6b\x78\x17\x00\x35\xbc\x0a\x18\x29\xef\x5a\xeb\x45\x18\x00\xb7\x00\xee\x60\xbd\x5b\xe0\x51\xab\xc0\x41\x1e\x13\x7b\x01\xf2\x84\x6c\x6d\xf5\x63\x80\x14\x1c\x3c\x50\xe1\x7b\xc6\xfe\x36\x98\x6d\xa4\x7a\xd2\xf0\x58\xf9\x97\x1e\x1a\xe9\x59\xd9\xf4\x43\xfb\x60\x56\xde\x05\x8c\x91\x80\x17\xcc\xec\x1c\x4f\xed\x3a\x7b\x22\xef\x47\xb0\xef\xac\xb4\xc1\x16\x6d\xfc\x78\xc4\xb6\x3b\xda\x54\x5f\xc2\x37\x1f\x1d\x0a\x0c\x66\xd6\xa1\x5c\xcd\x5d\x6a\x55\x53\x0b\x66\xf5\x3a\xf1\xab\xa2\x44\xff\x14\x4a\x0b\x7a\xa7\x82\x93\xcf\x1b\x6c\xa3\x77\x8c\xa3\x16\x8b\x93\xb8\x09\xf6\x31\xea\x46\xa8\xbd\x1a\xe1\x10\x98\x41\x6a\xb6\xf9\x18\x42\x7e\xa2\x26\x04\x35\x91\x26\xfc\x2e\xf3\xf8\x62\xd1\x52\xd1\x1e\x97\x51\x44\x11\xa1\x94\xbf\xcd\x30\x0b\xbc\x86\x92\x18\x29\xf9\x03\xa4\x5f\x4f\xf2\x99\xe6\x09\xf0\x51\xfe\xb1\x5c\x10\xb7\x6c\x3c\xa0\x8b\xd8\xf0\x74\x40\xd7\xdf\x39\x0f\x63\x79\x3d\x81\x13\x58\x0e\x26\x8c\x99\xe9\x50\x8d\x4c\x1e\x2b\x2a\xff\xc1\xcd\x1c\x97\x90\x89\xed\x7a\x8b\xc5\xab\x24\x1e\xe4\x69\x04\x6f\xfd\x84\xe1\x8d\x27\x8a\x1b\x59\xfd\xf3\x67\xe6\x96\x40\xec\xf8\xca\x52\xc2\x54\xbd\xc0\xa6\x88\x5c\x2d\x26\x5c\x22\xde\xaa\xd5\x97\xcb\x7c\xc3\x89\xa2\x4d\xd3\x2a\xa6\xb1\x49\xdf\x7d\x0b\x48\xb4\x2f\xdb\x80\x16\xbd\x09\x25\xc3\xf4\xf7\x2d\x72\x2f\x76\x54\x51\xf8\x03\xfb\x7b\xcd\x67\x7f\xfa\x93\x04\xa3\x34\xf7\xac\xc9\xfc\xba\x31\xed\x77\xe0\x77\xf6\x2c\xf8\x77\x59\xcb\x9a\xd8\x7c\x50\xcb\x6b\xf3\x3d\xce\x69\x30\xe0\xfb\x23\x90\xf0\x99\xfd\x03\x70\x60\x44\x88\x63\xa1\x3c\x94\xc8\x7e\xaf\x85\x85\xd9\xb9\xee\xe6\xa3\x26\x4f\xfc\x54\x74\x4a\x5a\xf1\x34\xae\x79\xaf\x12\x06\x91\x81\x43\xad\x6c\xa6\xe6\x68\xc3\x5f\xe4\xce\x85\xf3\x99\xec\x40\x55\x22\x2c\xba\x38\xa2\xbd\xe9\x45\x42\xf7\xf7\x25\x2a\xca\xe5\xc8\x53\x91\x25\xd1\x95\x98\xa0\x7e\xde\xcd\x56\x55\xe1\x7b\x65\x79\x84\x81\xab\xad\x76\xbb\xb3\x8e\x74\x95\xba\xd2\xe8\x39\x0a\x21\x3a\xa8\x30\xc6\x70\x17\x4a\x5f\xa7\xf5\x58\x5c\x01\x32\xb9\x71\x26\x61\xb6\x80\xa8\xda\x61\x5e\x6a\x31\x11\x53\x91\xea\x08\xd1\x8e\x56\xac\xa1\x20\xd1\x2c\xd5\x9b\x21\x28\xaa\x5a\xca\xf5\xac\x0a\x01\x7c\x2e\x2c\x57\x07\xea\xe9\x88\xd6\x59\xb9\xae\xa9\xc3\x51\x22\xdb\xe0\x5a\xca\x3f\x6a\xe4\xda\xb3\x55\x43\xc0\x5f\xc0\x0c\x67\x5d\x03\x7f\x38\xa4\x96\x06\x3b\x17\x0d\x82\xff\x51\xb9\x59\x48\xe0\x1a\xea\x91\xd2\xe6\x49\x81\x0a\x9c\xed\x1e\x9a\x94\x2d\xa5\x7e\xcc\xea\xe8\x2a\xae\xaf\x1d\xd6\xb4\xe9\xc6\x28\x68\xe9\xbd\x17\x94\x80\x69\xb8\x88\x44\x93\x62\x36\xd5\xbc\xa3\xa3\x23\xaf\xce\x92\x85\x48\x79\x9e\x60\x8c\x07\x91\xe5\x18\xa1\x2a\xcc\xd5\x63\x26\x86\x25\xcf\x50\xeb\x91\x73\x08\x21\x1f\xc6\x0c\xfc\x92\x48\x0d\x20\x85\xba\x65\x98\xcd\xe4\x29\x74\x61\x54\xab\x54\x1f\xb5\x59\xf0\x09\xc1\x49\xfc\xb2\x28\xcc\x45\xca\x23\x27\xce\x92\x12\xa4\xf2\x44\x79\x07\x98\x40\x55\xe3\x35\xa6\x9b\x82\x45\xc4\x67\x1f\xed\x9c\x57\xf1\x38\xd5\xc2\x2a\x4a\xda\x57\xe8\xbe\xa9\x05\xd5\x51\x4d\xde\xf4\x4e\x4f\x6f\xac\x2f\x2b\xa8\xca\xa0\x75\xbb\xb1\x36\xd4\x70\xfc\xec\x52\x08\x2e\xa8\x4f\x37\x05\x4a\x0a\xbf\x47\x45\x9b\x89\x9f\xc8\x08\xe3\x90\x29\x81\x5d\x55\x9f\xa3\x49\x45\xa9\xbe\x91\xec\xdd\xab\xcb\xa1\xf9\x43\x27\x65\x8f\xd5\x1e\x6f\xce\x25\xf5\xae\x04\xcb\x96\x29\xa6\x2c\x32\xea\x57\x2d\x18\x69\x25\x3b\xbc\x1a\x3e\x3a\x6f\xb5\x5a\x1f\x1f\x99\x44\x36\x5a\x05\x7f\xc4\x1e\xd6\xb6\x7e\xfd\xe5\xfc\x97\xd5\x93\x5f\x3e\xfe\xdb\x16\x24\xf6\xaa\xe1\xae\x68\x21\x48\xe2\xdf\x2a\x6e\x8b\x6b\x08\xec\x86\x6e\x51\xd6\xca\x14\x21\x85\xb2\xcb\xe8\xbe\x7e\xf8\x41\xa3\xf4\x87\x1f\x24\x0a\x9d\x3c\x2e\xaa\xb1\x19\x3a\x59\x22\x43\x67\x18\x56\x3d\x88\x04\x4f\x41\x2f\x6e\x3f\x0e\xd1\x43\x88\xb9\x96\x28\xfd\x2d\x3e\xd1\xae\x78\x98\xa3\xda\x5f\xe8\xd7\x04\x38\x84\x42\x8d\xd2\x89\x3e\x42\x75\x9a\x17\xbd\xf6\x3a\x68\x3f\x6c\x77\x58\x77\xab\xe8\x0b\xfc\x4f\xd9\x60\x2d\x54\x68\x03\xeb\xcd\xb8\x28\x5c\xd5\xb5\x76\xae\x28\x5a\x74\xea\x56\x92\xac\x6f\x1c\x96\xb2\x11\xff\xf6\x51\xf9\xdf\x3a\x2a\xcb\xf5\x4a\xb1\x46\x75\xd9\x40\x70\x0a\x7e\x15\x8b\xa5\x2a\x9e\x9d\x3b\x08\x98\xb7\x21\xaa\xaa\x66\x72\xe6\xc5\x26\x72\x9f\xdd\xd4\x46\x7e\xf7\xca\x39\x8a\x6e\x66\xfc\x86\xc9\x9f\x4c\xe5\x5e\xe6\xd9\xe5\x29\x49\xc4\x18\xf4\x5f\xe4\xac\x46\x79\xe4\x34\x80\xba\xbc\x42\x23\xcd\x03\x47\x05\x43\x70\x7c\x52\x7b\x40\xb4\x8d\x7e\xd3\x3c\x08\x92\x65\x9c\xd3\x6d\x84\xc8\x58\xbd\x70\x00\xc9\x6b\xcb\x51\xd2\x82\xc9\xab\x37\xc4\x44\x5a\x3f\xa0\x93\x3e\x05\xe7\x50\x93\xda\x4e\xbb\xc6\xc0\xdd\x18\x5e\xb7\x25\x70\xcb\x54\xfb\x8c\x8f\xd5\x63\xa1\x65\x53\x8a\xf0\x1e\x0d\x4e\x4f\xd8\x5f\x28\x9b\x12\xfc\xe1\xb3\xa7\xac\xc3\xfe\xf2\x48\x9d\x06\x38\x9b\x23\x79\x37\x70\xb0\x01\xca\x0a\x75\x5b\x70\xe4\x3b\xb9\x27\x55\xd2\x03\x2d\x91\x69\x69\x0c\x45\x0d\x68\x78\x68\x41\x68\xc8\xd1\xc8\x41\xfc\x8f\xee\xf4\x7f\xc8\x46\x6a\x9c\x5c\x91\x7e\x46\xb2\x9a\x43\x45\xb5\x08\x08\x5c\x21\x78\x94\xe3\x5f\x72\xcd\x0f\xe1\x7f\x8c\xf4\x4f\xa3\x22\xaf\x0f\xc5\xc9\x95\x13\x08\xb8\x8e\xe2\xef\x35\x1a\xb8\x91\x79\xa9\x92\x25\xae\x0d\x1c\x26\xa6\xdf\x9a\xc6\x61\x9e\xb1\x2c\x41\x7d\x24\x64\x8f\x48\x21\x14\xd0\x7c\x19\x53\x0a\x0a\xa5\x6d\x31\xe2\x5a\x6a\x3c\x7c\x15\x7e\xcd\x5e\xc4\xed\x37\x77\xac\xf9\x36\x0a\x60\x6e\x2a\x3a\x4d\xdc\x34\xfa\x96\xb5\x43\xbf\x5a\x04\x93\x17\xe8\x1a\x1a\xd4\x39\x3c\xa6\xc1\x0c\xd2\x2c\x95\x83\x1c\xfe\x9d\xf5\x5d\x66\x1c\x24\x20\x58\xf8\xfe\x40\x76\x9f\x8e\x41\x8f\x03\x01\x4d\xe3\x36\x9b\xc3\x6a\xad\xde\x49\xac\xbf\x34\x5c\xb3\x58\xdc\x10\x10\xdc\x4f\x05\x7d\xc6\xa6\xfa\xb4\xb1\xa2\x73\xc9\xad\x6c\xd2\x05\x9a\xa7\x54\xdd\x8f\x9b\xc3\x70\xa0\x9f\x5a\x83\x64\x6e\x4c\xc7\xf0\x09\x4b\x08\x95\xf3\x37\xe2\xc1\x25\x9b\xf3\x8b\x30\x68\xb9\x8b\xa8\x64\x20\x83\x5a\x23\xe2\x82\x00\xf5\xf9\xf3\x26\xb1\xf7\xa1\x62\xc6\xb2\x8e\x5c\x91\xcf\x9f\x81\xa2\xea\x75\x57\xa5\xa8\x4d\x85\xc2\xcc\xd1\xb5\x5b\xaf\xbc\x94\x02\x95\x30\x06\x39\x12\x31\x0b\xad\x51\x29\x2e\x63\xe7\xcd\xb6\x94\x63\x45\xb1\x38\x50\x2c\x8a\xeb\x90\x02\xaf\x39\x3e\x78\x2d\x6b\x54\x60\x90\xc9\xe3\x02\xdc\x86\x2c\xaf\x7e\x81\x46\x9d\xb7\xca\x15\xa9\x20\x05\x3c\x46\xfb\x4b\x30\x3f\x5e\xca\x6f\xc0\x05\xd1\x26\x22\xa0\xc5\x0d\xe1\xad\xbc\x52\xf7\x08\x89\x99\x60\xa9\x48\x6c\x96\xcb\x65\x0c\x0b\x50\x2e\x95\x92\x57\xc3\x44\x74\xa5\xf0\x92\xf0\x34\xad\x80\x39\xfc\x82\xac\xcf\xe2\x4b\x9c\x66\x02\x4a\xd1\x48\xb8\xe6\xda\xae\xc1\x9d\x31\xa9\x55\xd7\x56\x55\x0f\xcd\xb6\x2f\xe3\x64\x45\x57\xd7\x3c\x5d\xd3\xdd\x35\x54\xb9\x93\x44\x41\xae\x02\xb5\xae\x02\xa6\x9e\x51\x81\x14\xdd\xf5\xda\xa8\xd6\xb6\x48\x0e\x50\xa0\x4f\xe1\xc8\x65\x64\x16\xef\x2a\x5c\x0c\x5b\xc8\xb5\xbe\xc3\xcd\xd0\xd2\x23\xdc\x7e\x33\xb4\x77\x88\x23\x2b\xab\x3c\xfd\x47\x47\xac\x53\xea\xcf\xad\x49\x59\xd9\x6b\xc8\xb7\x7f\x62\x3e\x3b\x64\xed\x7a\x83\xf9\x86\x0b\xde\x43\x67\x5a\xc6\x28\x5e\xad\x2a\xdf\x5f\xa9\xd6\x43\x77\x22\x2e\xea\xe4\x55\x17\x6f\x7d\x5e\xb5\xd6\xe4\x84\x52\x74\x73\x8a\xf5\xe1\xb1\x27\xec\xcf\xa7\xaf\x5f\xb5\xb0\x55\x38\x5d\x53\x3f\xf5\x8d\x7a\x93\x53\x49\xdb\x2e\x51\xab\x4c\x8d\x65\x37\x62\x23\xe0\x64\x21\x18\xb1\x81\xad\xc0\x72\x8e\x37\x68\x04\xa8\xc1\xcc\x78\xa6\x85\x25\x48\x11\x70\x83\xc4\xd4\x22\xac\x54\x1d\x8b\x47\xcc\x48\x9a\x06\x0b\x45\xb2\xb4\x84\xc9\x0d\x40\x40\xee\x74\xa8\xfb\x1e\x8d\x51\x00\xa5\xd6\xc5\xe3\xbc\xb0\x99\x14\x59\xb5\x1b\xac\x53\x87\xd6\xbf\x5c\xfb\xe3\x73\x38\x23\x6b\xc4\xbf\x2d\x8e\x0e\xc4\x67\xb3\xf2\x33\x57\x31\xa4\x6c\xa4\xcc\x43\x0f\xe5\x61\x98\xa8\xec\x55\x79\x1a\x5e\x5c\x40\x0e\x65\x63\x8f\x09\xfc\x00\xec\xbd\x02\xd4\x89\x99\x37\x67\xb5\x42\x70\xe2\xce\xf9\x9a\xf2\xe4\x25\x68\xe2\x68\x6b\x99\xf2\x44\x81\xaa\x34\x49\x24\xf6\x29\x25\x50\x65\x18\xa9\xb5\x47\xf3\x64\x62\xed\x5a\xdc\x60\x70\x96\xb9\x08\xb0\x2e\x30\xf3\x64\x22\x65\xa0\xa7\x1d\xcf\x79\xb6\xb7\xc4\x90\x87\x04\xe7\xc6\xe6\xdb\xe5\xe6\xba\x77\x05\xa7\x70\xb9\x31\x8d\x77\xca\x8d\xad\xdb\xb2\xd5\xbf\xbc\xe3\x94\x9b\xef\xde\xd0\xb7\x0d\xc7\xb9\x76\xab\xc6\xdd\x8d\xf3\xb6\x9b\x22\xb5\x94\x1a\xef\xdd\x3e\xeb\x8d\x93\xde\x57\x6d\x8b\x5c\xd6\xe2\xa4\xdb\x8e\x9a\x00\xdc\x35\x48\x79\x25\xef\x19\xda\x0b\x08\x85\xaf\xdf\x45\x9a\xd8\x19\xf1\x96\x71\x24\x8f\x74\x75\xfe\xb7\x8a\x4c\x19\xf7\x87\x2f\xb9\x97\x1c\xd3\x13\xe6\xee\xa3\x8e\x62\xc8\x55\x99\xa6\x5f\xa3\x4b\x08\xe6\x67\xc4\xee\x79\xce\x22\xc1\x33\x34\xb9\xd4\xc3\x28\xf5\x5a\xda\xac\xee\xa4\x9b\xcc\xaf\xab\x01\x51\x53\xd3\x5c\xb5\x2a\x37\xb1\x50\x59\x4a\xa7\x5b\x16\xef\x0c\x56\xbf\xe2\x84\xa2\x96\x15\xb7\x75\xb5\x09\x8d\x75\xeb\x06\xb8\x6d\x83\x5a\xd5\x86\x9e\x31\x75\x53\xf7\x35\xd3\xd4\xc5\x6e\xf1\xfd\xb2\xbb\x83\x04\x36\x11\xec\x4f\x47\xec\x60\xd7\x1e\x87\x35\xb5\xca\xc7\x49\xd9\xa8\xc9\xba\x3b\x16\xe8\x2f\x0f\xec\x9f\x36\x59\xde\x74\x1d\xc1\xa7\x5e\x73\x11\xb1\xa8\xd7\x37\x03\xb2\xa6\xa8\xae\x44\x55\xaf\xb5\x77\x1c\x79\xdd\xd9\x39\x18\x8b\x38\x15\xd9\x02\xa2\x70\x44\xf9\x56\xd1\xff\x11\xb2\xa9\x86\xda\x56\x73\xce\x17\xfa\xb1\x82\x67\x46\xd7\xab\xa0\xe1\x31\x6e\x3b\x98\x42\x42\xd6\x54\x47\x23\x9c\xe0\xad\x0a\xfa\xd1\x90\xcc\x2d\xc8\xf0\xef\x60\x26\x82\xcb\xaa\x21\xb5\x34\x72\x6f\xc6\x2e\x3d\xaa\xd7\xd9\xe7\xcf\x7a\x9d\x40\x6d\xa3\x9b\x14\x00\xd7\x2b\x68\x9b\x8c\x7c\x9f\x58\x7a\xf8\xa2\x21\xd5\x86\x77\x6d\x12\x63\xee\x13\xc8\xe6\x93\x56\x0d\x6c\x88\x68\xb3\xfb\xbf\x24\xa2\x8d\xca\x6f\x03\xde\x3d\xf0\xf0\x9e\x26\xf3\x0a\x05\xfa\x1b\xf0\xb1\x84\x04\xc4\x3c\x36\x82\x15\x9a\x94\x39\x97\xd9\x11\x28\xa8\x57\x38\x0f\x1d\x46\x43\xcd\xc4\x55\x3e\x81\x8f\x9c\x7a\x8c\x87\xc7\xcd\xea\xe8\x1c\x2c\xcb\x8d\x77\x91\x64\xc8\x91\x3a\x21\xc6\xcb\x30\xca\x9b\x61\xac\x02\x7f\x2c\x60\x51\x30\xc6\xb3\x07\xc6\x93\x71\x18\xc0\x99\x85\x76\x2a\xe0\xd2\x47\x46\xf3\x57\xf8\x74\x22\xaf\x89\xd5\xe1\x3d\xd0\xd4\xb9\xf2\xcd\xb5\x6f\xe2\x83\x54\x19\xb9\xa9\x79\x7f\xa2\x64\xa3\x4e\x72\x0c\x48\x99\x03\x96\x2e\x8a\x88\x6e\xea\xc1\x09\x73\x2a\x78\x6a\xf5\xc8\xee\xd8\x65\x6f\x32\xa1\xf8\xfe\x4a\xdd\xa3\x93\x80\xc9\x45\xe5\x11\x24\xda\x47\xc9\x2f\xc3\xe0\x44\x0b\x9e\x82\x95\x37\x04\xfd\xc9\xd0\xd7\x78\xb1\xc4\x07\x68\x70\x00\x04\xf7\x2c\x4c\x13\xc6\x27\x13\x1a\x2c\x2c\xea\x5c\xca\x6d\x13\x91\xf3\x30\xda\x10\x61\xa8\x82\xb0\xbe\xc8\x05\xa4\xdf\xcb\x39\x68\x3f\xab\x19\x7f\xde\xf4\xb4\xf3\x85\x68\xf2\x8e\x98\x34\x43\x76\x5e\xca\xcd\x18\xd4\x89\x6d\x2c\xdc\x8c\x6e\x50\x45\xda\x07\x03\xb6\x30\xcb\x8b\xea\xc2\x4f\xe7\x06\x4e\xe9\xa5\x5a\x36\x50\xdc\xab\xca\xc4\x55\x7e\xaf\x32\x6c\x35\xad\xcf\xc3\x8f\x2d\xab\x83\x39\xcf\x83\x99\x41\xa4\x35\x87\xba\x7d\x54\x9a\xe1\x13\x0c\x73\x24\x6a\x7d\xbd\x7d\x2e\x5a\x37\x8f\x82\x86\xd3\x55\x19\xea\xb3\xae\xa4\x40\x37\x3d\xfe\xcd\x8c\xe9\x90\x95\x71\x7c\x48\x3f\xbf\x58\x42\xfd\x43\x1b\x4f\x45\x0a\xaf\xc2\x2f\x3b\x62\xe7\x54\xe1\xe3\x66\xd3\xdc\x1b\x41\xb4\x16\xcb\x6c\xa6\x67\xab\x65\x20\x58\x91\x2c\x49\x73\x13\xf8\x9a\x37\xd8\xd8\x46\x2e\xbd\x00\x6f\xa4\x6e\x68\x3e\x48\xe6\x0b\x9e\x8a\x9a\x25\xbd\x30\xc6\x5b\x36\x3e\xc6\xd6\x5f\x5a\x66\xf9\xe2\x18\x05\xdf\x69\x5b\x4f\xc1\x31\xd5\x6c\x49\x12\x09\x14\x13\x57\x37\x67\x71\x1d\x66\x79\x06\x37\x3d\xf2\xd8\x30\x47\xbf\x82\xf5\x12\x6e\x61\x0b\x11\x84\x53\xb4\x81\x25\x20\x19\x26\x3f\x5e\xa4\x22\x10\x13\xbc\x08\x02\x3f\x05\x0b\x76\xf4\x86\x0d\xa3\x49\xc0\xd3\x49\xd6\x62\xec\xe7\xf0\x4a\xc0\xbe\xd6\x07\x82\x1c\xd6\x23\x78\x7c\xe8\x3d\x82\xfb\x26\xfe\xf1\xb8\xd9\x7b\xd4\xa0\x34\x2f\xfa\x33\x3d\xe0\xa1\x46\x56\x95\x5a\xd0\x70\xf8\xb0\x11\xb4\x14\x64\xc0\x81\xf8\x83\xce\x19\x13\xc8\xe8\x67\xa3\xc9\x5c\x85\x49\x20\x6a\xd8\xe8\xd0\x99\x05\xd1\xbe\x13\xd7\xf7\x8d\x64\x8d\x69\x0b\x38\xa4\xe6\x3f\x0a\xa6\x3c\xfd\xc4\x35\x9f\x2f\x22\x71\x88\xa6\xfa\x52\x70\x93\xe0\x28\xfd\x31\xc5\xb5\xb1\xad\x89\x4d\x9e\x31\x7c\x85\x7f\x34\x0b\xd7\xfc\xe1\xa3\x16\xb6\x37\xac\xaa\xe6\x61\x5b\xaf\xc1\x1e\x79\x50\xc7\x7b\x24\x69\xc3\xee\x25\xe0\x71\x20\xa2\x82\x5f\xa4\x88\xf3\x30\x15\x11\x24\xeb\x86\x84\xd5\x56\x34\x9d\x7a\x45\x37\xbd\x28\x6f\x1e\x7b\x8d\x5b\xdf\xf5\x8b\x9d\x8b\x6b\x11\x2c\x29\x1d\x3f\x3a\xbb\xc4\x13\xe3\x57\x62\xe9\x63\x2a\xe7\x75\xe6\x35\x0a\x67\x29\x7a\x3a\x38\x99\x22\x7e\x4e\x72\xc6\xd9\xd9\x43\x4f\xf5\x7d\xc3\xe6\x2b\x98\x08\x3c\x56\x7b\xe9\x71\xc5\x01\xf3\xaf\x77\x30\x15\xce\x25\xf7\x40\x52\x76\xbe\x60\x84\x84\x26\x40\x37\x08\x6d\x78\x8a\x43\x1c\xa0\x0c\x57\x7f\xa5\xb5\x62\xa4\x15\x94\xe2\x53\x85\x4a\x10\xe5\x75\x73\x58\x3a\x23\xd9\xa4\xf6\x7b\x86\xda\x75\x96\xcb\x3d\x87\x46\x4b\x66\x7f\xa9\xe7\x42\x37\x1a\x1b\xee\x29\x52\x74\x2e\x5a\x52\x2e\x06\x2b\x05\x6d\x28\xae\xb4\x00\x18\xa1\x2d\x5d\xd3\xf8\xb4\xda\xea\x88\x2d\xf4\x8e\x3c\xa5\x42\xca\xe3\xcd\x02\x8e\x09\x69\xae\xab\x63\x56\x8b\xeb\xea\x99\xc0\x31\xb4\x68\x85\xd9\x80\x52\x43\xd5\xea\xd5\x00\x16\x2a\xf8\xf5\x10\x6c\xab\xc5\x44\xa5\x21\x55\xa3\x43\xe5\xa9\xfa\x6b\xb3\xbe\x74\x03\x43\x82\x79\xa1\xa1\x96\xbe\xab\x29\xdd\x28\x3c\x0d\x04\x3c\x8a\xf8\x38\x12\x85\x35\xb5\x94\xe4\x85\x65\x55\x18\x76\x16\xd2\x60\xd5\xba\x55\x2d\x0a\x7c\xae\xa6\x95\x25\x25\xac\x6e\xc4\xab\x9b\x07\xe6\xcb\x3f\x09\xbf\x25\x52\xae\x8e\x05\xa8\xc4\x28\x0d\xcd\x22\xf7\xc2\xd9\xab\x53\xc6\xe8\x43\x4d\x0a\xd0\x18\xb3\x64\x49\x3e\x63\xf2\x16\x9e\x4c\x15\xbb\x38\xd4\x6b\xda\x6a\xb5\xbe\xd8\x1e\x39\xe0\x23\x6a\xef\x05\x70\xc6\x81\x85\x07\xb5\x28\x5f\xd0\xf3\x5b\x9c\x27\xcc\x0c\x33\xd3\xb1\x27\x25\x24\xd9\x19\xf8\xd5\x66\x58\xaf\xc4\xa4\x0c\x57\xda\x78\x5e\x29\xb6\xfb\xad\xc7\x16\x53\x87\xd5\xa1\x39\xac\x1a\x05\xd8\x5f\x7d\x58\x31\x3a\xa2\x0e\x6f\x3d\xa2\xb0\xcb\x2f\x05\xa6\xaf\x32\x87\xcd\xf9\xe2\xde\x7c\xd9\xb9\xf2\xcd\xf9\x02\x69\x56\x8b\xf2\xb8\x48\x4c\x7f\x28\x11\x1e\xb2\xd0\x39\x5f\x48\x11\xf4\x63\xbd\x94\xc7\xe8\xad\x39\x2f\x95\x78\xa3\x1e\x4d\xa0\x4c\x64\x39\x89\x3a\xae\x0d\xa8\xb2\xa8\xc0\xb4\xa7\x30\x6f\x79\x13\x5f\x46\x11\x29\x85\x52\x81\x91\x5c\xb0\x75\xf1\x66\xa6\x50\xa2\xc0\xf4\xd4\xb1\x81\xeb\xcc\x95\x85\x86\x09\x57\x22\x09\x0f\xb4\xb1\xca\x29\x11\x2e\x7e\x2a\xc9\x2c\x55\x0b\x45\x66\x9c\xc3\x29\x1c\xab\x79\x66\x04\x07\x78\x70\xc5\x50\x40\x63\x3e\x17\x94\xc4\x71\xbe\xd4\x33\x45\xa9\x12\x8c\x78\xf1\x21\x62\xb3\xa4\x6d\x60\xdf\x71\x65\x8d\x6d\x47\xe1\xc4\x05\x8b\x05\x7d\xfd\xdb\x78\xd1\x93\xd5\xca\xf6\xc8\x70\x7d\xb1\xd8\x90\xb1\x00\xbe\xcf\xa5\xcf\xbd\x77\x3a\x17\x37\xeb\x62\x56\x75\x1b\x94\xa3\xd2\x93\x28\x24\x8d\xa0\x66\x9a\x33\x3a\x23\xbc\x87\x0e\x0c\x95\x8c\xff\xa7\x63\x3a\x13\x33\xb1\xe3\x3a\x9f\x59\xf6\x0a\xa4\x74\x82\x35\x9d\x51\x20\x36\x15\xe4\x39\x07\x8f\x10\xae\x15\x6b\x28\x64\x61\x9c\x17\x88\x6f\x04\xb6\xec\xac\xc6\x2f\x31\xf4\x9d\x31\x51\xcf\xea\xb8\x2f\x64\xb1\x04\x66\x19\xaf\xe7\x22\x8a\x90\x0f\x14\x82\x2c\x53\xf2\xf6\x64\x65\xb9\x72\xe9\x10\xa5\xf6\x41\x43\x86\x2c\x10\xc0\x0d\xb5\x35\x19\xfa\x5f\xc9\xa3\x44\x45\xdd\x29\xc5\x6f\xc8\xc0\xa9\x92\xac\x29\x24\x2c\x63\x5a\x69\x9b\xd1\xb8\x1e\x5d\x8d\xa2\x4a\x9a\x82\x6e\xac\xd2\x24\xbe\xd0\xcf\x89\x8f\x15\x16\x1b\x74\x6f\x48\x31\x19\xa6\xb6\x89\x31\x7e\xd0\x99\xe5\xfe\x73\x1c\x4e\xc1\x3b\x3e\xa7\x30\x39\x59\x83\x65\xcb\x60\x26\xe7\x70\x7c\x95\xa4\xfc\xd2\x99\xa9\x13\xaa\x1a\xfa\x82\xb9\x26\xe8\x01\x4a\x10\x58\xae\x1d\xc4\x40\x45\xa7\xf0\xc7\x38\x5a\xe1\x26\xb1\xeb\xe6\x4d\x4e\x6e\x60\x7b\xbd\x4c\xc7\x10\xa2\xe1\xb1\xba\xe8\x2c\x79\x44\x53\xb6\xf0\x2f\x79\x30\x05\x18\x0b\xb3\x6c\xa9\x0e\x51\x2b\x08\x4a\x26\x7b\x89\x93\xb8\xf9\xee\x54\x77\x94\x49\x46\x0e\x15\x75\xc9\x03\x15\xae\x0b\x14\xf6\x6e\xca\x4f\x1d\xb0\x12\x5d\xfd\x38\x1a\x13\xc9\xbe\xc1\x64\x1c\x4d\x5b\x94\xc7\xdd\x9c\xaf\x31\x1f\xfd\x15\xd9\xb8\x80\xa9\x8d\x14\x8d\x68\x55\xec\xd1\x5b\x6f\x71\x16\x2f\xd6\xa6\x41\x72\x27\x80\xe9\x0b\x8c\x60\x53\xe8\x71\x09\x0b\xa2\x8f\x37\x30\x8a\x0d\xde\xdf\x95\x28\x21\xe8\x71\x38\xcc\x23\x31\x61\x8f\x7a\x14\xbd\x08\xcc\xa9\x21\x9c\xcc\xa6\x70\x48\x18\xdf\xd9\xe6\xdf\xf0\xc9\x52\x90\x5e\x1a\xbf\x64\xf5\xeb\x53\xeb\x1b\xec\xc6\x23\x3b\xeb\x26\xca\xc8\x65\xb9\x8f\x33\x29\xdc\xe1\x06\xb3\x36\xa7\x8d\x28\x6b\xcb\x82\x28\x3f\xe3\xd9\x4c\x59\xd3\x2b\xdf\xcb\x69\x12\x45\xc9\x8a\xce\xc4\xec\x90\x79\xf8\x7c\xe6\x35\xb4\xad\x1e\x1c\xe2\xda\x40\x01\x45\x3d\x30\x35\x50\x5d\xb1\xa6\x32\x0b\xb7\x2e\x0c\x2a\x51\xf2\xda\x0a\x29\xd2\x62\x20\xe9\xe9\x9d\x4d\x62\x94\xec\x58\xc7\x60\x66\x72\x7b\x9a\xcd\x26\xae\x39\x26\x2b\x5c\x25\x16\x1f\xa8\x58\xb4\x07\xc5\x68\x37\x14\x0e\x87\xfa\x24\xe9\xb2\xc1\x3c\xde\x83\xe4\x14\x7d\xf9\xbf\xff\xd0\xc3\xe9\x1c\x3d\xf1\xb0\x22\x81\x71\x6c\xdb\x37\x0c\x4d\xd9\xc5\x23\xfd\x65\x7f\x5d\x72\x29\x78\xa4\x3c\x20\x26\x86\x44\x26\xc5\xc4\xf3\x93\x57\xa7\x1f\x65\x7f\xe7\x2f\x86\xa3\xb3\x8f\xb2\xab\xfe\x5a\x2e\x04\xc4\xfb\x48\xe2\x46\xa1\x3f\xda\xb1\x14\xe3\xdd\x84\xf8\x21\x78\xe3\x65\xae\x02\x82\xa1\xe1\x2d\x9d\x23\x2a\x40\xbb\x1d\xce\x82\x35\xd9\x2b\x74\x9d\x21\xc9\x4d\xd9\x3d\xc8\x6d\x6b\xe6\xa2\x63\xcc\xa8\x54\xbd\x62\xad\xec\xec\x28\xe0\x1e\xf5\xad\x6c\x5a\xc6\xc6\xec\x22\x36\xa2\x54\x8b\x81\x56\x1e\x12\x81\x6a\xc1\x90\x72\x5b\x0a\x65\xc4\x93\x59\x63\xa3\x30\xa6\xdf\x69\x70\x3c\x4a\xec\x6d\xac\x18\xda\x57\x8f\xae\x17\xe5\x7f\xcc\xc8\x6c\xef\x81\x7b\x8f\x8a\x62\x87\xfe\x01\xc3\x82\xc7\xce\xaf\x1b\x97\x8a\x03\x47\x59\x05\xac\x70\x65\x9b\x63\xc6\xf1\x4c\x67\x3d\x91\x22\x95\xec\x08\xdd\x60\x0b\x0e\x41\x60\xc4\xc9\x63\xc6\xd3\x94\xaf\x2b\x3d\xcb\xca\x1e\x44\xa8\xe7\xb5\xee\x85\x14\xec\xca\x49\x7f\xea\x86\x5a\xcb\x8b\x46\x49\xd0\x1f\x0b\x73\x90\x34\x50\xd3\x1c\xd3\x53\xdd\x26\x93\x25\x3a\x56\xc1\xcc\x08\xc5\x44\x6d\x4a\x44\x91\x08\xd5\x11\x16\x24\xf1\xa4\x99\x27\xcd\x88\x67\xb9\x8e\xbc\x42\x28\xc3\x8e\x6d\x6d\xf8\x2a\x0d\xf3\x5c\xc4\x0e\xb7\x83\xc8\x93\xc5\xa0\x70\xc4\x4c\x79\xa6\xb4\xe5\x62\xe2\x44\x4d\x33\xd1\xd2\x74\xa4\x34\xb8\x80\xbb\xc1\xd2\xec\xa3\xf3\x86\xa3\xce\xbd\x99\x3e\x57\xce\x92\xf6\xf1\x07\x36\xf4\xf2\x20\x32\xde\x9f\xea\x0a\x47\x87\xb6\x3a\xf5\xea\x15\xd6\x7f\xc7\x4b\x8c\x6a\x2d\x5c\x5f\x49\xe3\x29\x59\x38\x39\xcf\xad\x77\x98\x89\x98\x6e\xd6\x95\x14\x44\x5d\x0c\x79\x48\xe7\xa9\x94\xbd\x1c\x61\x55\x3f\x74\xe6\x10\x21\x4d\x9d\x06\x76\x7b\x9e\xc9\x5b\x52\x88\xa1\xc9\xd3\x0b\xcc\xb1\x06\xf7\x29\xc6\x86\x3c\x98\x01\x59\xab\xf2\xb0\x0a\x86\xb5\x5e\xdc\x50\x9f\x1a\x47\x8d\xe8\xd3\x0c\x25\x49\x2e\xd1\x50\x02\x54\x12\xb2\x8d\xdc\x73\xe3\xf0\x02\x4f\xf9\x95\xc0\x14\xc4\x10\x27\x01\xa2\xe7\x82\x0c\xaf\xf0\x69\x34\x36\xa9\x20\x73\x0a\x49\xb6\x2c\x4a\x72\xbc\x40\x4b\x21\x14\xc4\xe3\x2b\xb0\x15\x6c\xd5\x69\x20\x72\x32\xa5\x91\x5b\x56\xe9\x5d\x1d\xb9\xe8\x90\x99\xf5\x57\x41\xbb\x8a\x5e\x9c\x8f\x8d\x73\x95\x72\x2b\x31\x51\x91\xc0\xf8\xd7\x58\x7d\xd4\x89\x21\x11\xe9\x19\x82\x23\xde\x04\xaa\x27\xc1\x63\xba\xe5\xa0\x9f\xa2\x1d\x46\xe9\x1e\x44\xec\x68\x57\xae\x78\xfa\x89\xa7\x17\x59\x41\xc5\x62\x5d\x9c\xd5\xca\x66\x55\xb7\x67\xa5\x78\x41\xc8\x35\x5d\xf7\x3c\xfc\x78\xde\xfe\xd8\x70\xde\xe1\xe8\xdf\xdf\x08\x61\x87\xcc\xa9\xed\x57\xd7\x66\x84\xd6\x42\xed\xce\xa6\xda\x84\xf2\x42\xf5\xed\x4d\xd5\xd1\x65\xc5\xae\xba\xb3\xa9\x2a\xfa\xb3\x38\x75\x77\x3f\x56\x55\xfd\x52\x56\x38\x9d\x42\x32\x4e\xc7\x0e\x1f\x19\x9c\x1d\x22\x14\x73\xaa\xdc\x61\x25\x41\x68\xde\x60\x15\xe1\x4a\xd9\x1b\x32\x51\x2a\x9b\x7a\xbd\xe1\x28\x66\xab\xf2\x2f\x78\x34\xe7\x41\x9a\x3c\xd2\xdf\x33\xca\x7e\xce\xd8\x49\x4e\x91\x14\x43\x32\x17\xb6\x03\x35\x2b\xf7\x5b\x70\x52\xa9\x33\x00\xa2\xf7\x3b\xb1\x07\x30\x6e\x59\x53\x1c\x30\xa8\xd1\xb2\xfd\xb3\xc9\x7c\xb7\xa6\x76\x8c\xdc\x5e\x76\xbe\xce\x3b\xd8\xa6\x3b\xae\xc2\x96\xcf\x32\x99\xa4\x7f\xbc\xd5\xa5\xf8\x64\x8a\x82\x67\x29\x09\x03\xe3\x0d\x7c\xef\x1e\x1b\xe5\x41\xa6\xee\xe2\x29\xc4\x37\x5e\x12\x5a\x2a\x1a\x93\x0f\x40\x98\x6b\xb9\x45\x89\x2d\xb6\x61\xa5\xc6\x04\xbf\x74\x9e\xc0\x69\xb4\x26\xe0\x80\x85\x98\x82\xbf\x77\xcd\x78\x72\xa1\x4b\xac\x13\xda\xa7\xc2\x57\xd6\xb6\x09\xb3\xff\x3d\x54\xae\xde\xe4\xbd\x58\x4c\x16\x51\x67\x3f\x31\xce\x0e\xd9\xd8\x7d\x83\xa8\x5e\x44\x7a\x99\x28\x20\x7a\x9e\x4c\x28\xf3\x40\x55\x46\x89\xaf\xc3\x37\x35\xbe\x2f\xbe\x83\x7f\x61\x7c\x63\xd6\x8b\xef\x80\x6f\x89\x68\x1d\xcd\xbc\x09\xe1\xb7\x9a\x4e\xaa\x0b\x97\xcc\x6d\x04\x8d\xb3\xaf\x45\x50\x61\x5e\x9b\x72\x65\x7c\x97\xc9\x59\x6b\x51\x3d\x8d\x6c\xf6\xd5\xd3\xb0\x60\x17\xc6\x5a\xf0\xc7\x54\x39\x2d\xbe\x6d\x22\x44\x39\xd5\xd3\xe0\x51\xfe\x0d\xf3\x20\xd0\xdf\x01\xe3\xb6\x3f\x53\xe5\x40\xe7\xc9\xe4\xab\x07\x7a\xef\x9d\xf5\xad\x3b\x64\x90\xcc\x17\xcb\x5c\xca\x8a\x4a\x74\x33\x3a\x52\x0c\x88\x8a\x0f\x41\x8e\xb7\xa1\x9e\x6a\x90\x47\xb5\x60\x56\x67\x7f\x53\xdd\x56\x47\x73\x2a\x58\x2c\x83\xf1\xb4\x19\x01\x87\x1c\x05\x94\x15\xc6\xa8\x43\xe7\x7c\x01\x31\x40\x38\xc6\x2a\xb5\x3a\xad\xcd\xad\x1e\x8d\xd9\x22\xe1\xd5\x8e\x39\x7a\x3e\xff\x48\xc5\x5f\xcc\x22\x12\x97\x44\xa2\xcb\x53\xd2\xa4\x9b\xb0\xf6\xee\x62\x8a\x49\x6d\x1a\xdf\x6d\x29\xe1\x8d\xc6\xdd\xf9\xa5\xe0\xf4\xb6\x81\xd7\xd6\x16\xeb\x83\x8f\x9f\xe4\x08\x0d\x36\x4a\xd2\x15\x4f\x27\x28\xca\xbf\x15\x90\x14\x14\xf9\x7f\xc2\xf8\x55\x12\x4e\x58\xcc\xaf\xc2\x0b\x0e\x7a\x32\xbe\xe2\xa8\x94\xb5\xa1\xe5\x56\x42\x83\x05\xbf\x10\xad\xa2\x2d\x59\x21\x54\x4f\xb7\x8b\xb4\xe4\x94\xed\x55\x94\xed\xd7\xd9\x4f\x0e\x03\xbf\xed\x85\x94\x1d\xde\xb1\xba\xf2\x32\x65\x96\x15\x7d\x81\x84\xa7\x9b\xc8\x57\x6e\x9d\xe1\xe9\x40\x9b\x69\x2b\xb3\x8e\xc1\xe9\x89\xf6\xd1\xd0\x85\xa7\xa7\xdb\xaa\xf0\xb5\xc9\x05\xfe\xbf\x3a\xda\x88\x7b\x15\xc9\x6a\xca\x74\x1e\x5f\x3f\xa7\xa1\x88\x26\xa0\x74\x3c\x64\xe7\xf4\xea\xd0\x20\x5d\xa4\xba\xba\x35\xb4\x3b\x3b\x78\xb1\x83\xc4\xff\xf1\x81\x05\xc7\xb8\x2a\x43\xdc\x4a\xf5\xe4\x22\x09\xa3\x6d\xf2\xea\xc0\xae\x61\xec\x03\xf8\x9e\xfe\xb6\xcc\x72\xdb\x90\x44\x41\xd3\x61\x8d\x26\xa8\xa9\xc1\x77\x3d\xbc\xee\x8e\xd7\xfa\x96\x80\xf7\x83\x24\xb3\x72\x3d\xb0\xf3\x76\x03\xf4\xae\xef\x5e\x3d\x7f\xf5\xfa\xc3\xab\x8f\x5e\x03\x90\x5a\xfe\xff\x63\x43\x0f\x7e\x04\x91\xa7\xd3\x64\x45\x20\x3a\x7b\x0d\x09\x62\x78\x3a\x90\xcd\x87\xa7\x83\x46\x95\x40\xc2\x74\x30\xee\x86\xf9\xc5\x2a\xa5\xab\xd2\xb9\xef\x77\x1a\xcc\x3b\x1f\xf9\x12\x18\x70\x7c\x49\x5f\x4f\x98\xf7\xc6\x6b\x00\xfd\xc1\xaf\x75\x0b\x08\x16\x3e\xea\x6c\xff\xfd\x51\xa3\x0c\x6d\x1b\xa0\x75\x8a\xd0\xfe\xd3\x40\xfb\xcf\x4a\x68\x3b\x95\xd0\x76\x00\xda\x76\x11\xda\x5b\x03\xed\x6d\x25\xb4\xdd\x4a\x68\xbb\x00\x6d\xa7\x08\xed\xd4\x40\x3b\xad\x84\xd6\xad\x84\xd6\x05\x68\xbb\x00\x8d\x9a\xfb\xbb\x7f\xf7\x8a\xab\x51\x82\xb6\x5f\x09\x6d\x0f\xa0\x75\x1d\x68\x7b\x77\x80\x76\x50\x09\x6d\x1f\xa0\xed\x39\xd0\xf6\x6f\x87\xb6\xed\x57\x42\x3b\x00\x68\xfb\x0e\xb4\x83\x3b\x40\xeb\x54\x41\xeb\xb4\x01\xda\x81\x0d\xad\xd3\xbe\x03\xb4\x4a\x7a\xeb\xf8\x48\xbd\xed\x8f\x66\x11\x3b\xfe\x1d\xa0\x55\xd2\x5b\x87\xf6\x82\x6f\x43\xdb\xbe\x1d\xda\x4e\xf5\x4c\x71\x2f\xf8\x1d\x1b\xda\xce\x1d\xa0\x15\x66\xaa\x18\xc1\x29\x46\x9e\x37\x9c\xc0\x3f\x90\xe3\xfd\x1f\x09\x51\xc3\xc8\x66\x35\x29\xcb\x78\xff\x21\x29\x19\x7e\xfb\xd5\xab\xd7\x1b\x6e\x47\xe6\x1f\xf1\x1a\x00\xb7\x73\x20\x19\x8b\xff\xd0\x06\x17\xd4\x3c\x0c\x45\xf7\x6a\x39\x87\xfc\x0e\x8c\x61\x59\x2f\xca\x55\x11\xfc\xfd\x52\xe4\x1c\x0b\x14\xb8\x5d\xc9\xeb\xbc\xce\x7f\x7c\x2f\x70\xbe\x04\xb7\xfd\xff\xbe\x17\xb8\x8e\x04\xb7\xf3\x6f\xdf\x0b\xdc\xb6\x04\xb7\xfb\xef\xdf\x0b\xdc\x8e\x04\xd7\xfd\xf5\x7b\x81\xdb\x95\xe0\xf6\x7e\xf8\x5e\xe0\xba\x12\xdc\xfe\xe3\xef\x05\x0e\x0e\xb4\x83\xda\x77\x02\xb7\xb3\x2f\xc1\xb5\xeb\x25\x70\x4e\x1a\x54\x09\xa1\x00\xb0\xb2\x92\xde\xcd\xfb\x92\x0b\x36\x3f\xdd\x0e\xf5\x96\xef\x06\xa0\x64\xf9\x47\x4f\xbe\x17\x40\x94\x14\xc4\x34\xb9\x66\xcd\x4f\x20\x79\x1f\x3d\xa1\x9e\xf6\xb6\xbf\xef\xd0\xbb\xfe\x1f\x35\xf2\x93\x9c\x47\x21\x8f\xd9\x93\xc7\x6a\xe8\xb2\xab\x27\x65\x4a\xfb\x8a\xae\x10\xe2\x3e\x0a\x60\xfd\xe7\xa7\x6f\x24\x5b\x1e\x67\x35\x4c\x0a\xda\x60\xde\x2f\x63\x09\x07\x4a\xc6\xf0\xb7\x2c\xaf\x6f\x14\x9f\x8c\x70\x19\xa6\x36\x57\x3e\xc0\x1e\xce\x7a\x7d\xd9\x41\x36\xab\x79\xbf\xe4\xe6\x00\xf8\x8b\x84\x08\x92\x6f\x43\x33\xe0\x06\x2b\xcb\x65\xfb\xc0\xee\xfe\xfa\x9f\x5e\x63\x03\xe7\x66\xc8\xdd\x41\x9a\x2a\x89\x7a\x1a\x0a\x6c\xad\xd5\x87\xdb\xa0\x7c\xb8\x11\x4a\x17\x0e\x06\x31\xbc\x0d\xca\xf0\xe6\xb1\x00\xc7\x4d\xdf\xde\x06\xe5\xed\xcd\x50\x80\x33\xe6\x67\xb7\x41\x39\xbb\x19\x0a\xcc\x68\xfd\xdf\xb7\x41\xf9\xef\x9b\xa1\x00\x5b\x5d\xbe\xbb\x0d\xca\xbb\x1b\xa1\xec\xc1\xd1\x11\x9e\xdc\x06\xe5\xe4\x66\x28\x30\xa3\xe4\xf5\x6d\x50\x5e\xdf\x3c\x23\x38\xb3\x17\x6f\x6e\x83\xf2\xe6\x46\x28\x1d\x94\x18\xff\x76\x1b\x94\xf3\x9b\xa1\x80\x6c\xf7\xf1\xcb\x6d\x50\x3e\xde\x02\x45\xca\x9b\xbf\xfc\xf2\x19\xc0\x6c\x86\xf2\xcb\x2f\xce\x56\x2f\x6f\xf3\x51\xb2\x4c\xf3\x19\xec\x73\x56\xfb\x20\x20\xd4\x90\x15\x1d\xee\xcf\xe8\x3e\x02\x31\xe3\x30\xb2\xf4\xb1\xb8\x3a\x4b\x92\x88\xd2\xb3\xb2\xf3\x0e\xe0\xf6\x7c\xd0\x7b\x03\x36\x37\x66\xe7\xeb\x5f\x36\xfc\xdb\xc4\x22\xba\x40\x7e\x60\x36\xc4\x1c\x14\xc1\x84\x7a\x74\x6a\x56\xfc\xdb\xb8\xfa\x40\x89\xd9\x69\x35\xc0\xd3\xfb\x03\xec\xc2\x51\x3c\x39\xae\x06\x78\x7c\x7f\x80\x7b\x80\xc3\xe9\xa8\x1a\xe0\xe8\x2b\x00\x02\x9b\xbd\xf8\xb9\x1a\xe0\xcf\x5f\x01\x10\xb8\xdc\xec\x59\x35\xc0\x67\x5f\x01\x10\x18\xde\x6f\x7f\x2e\x01\x54\x92\xfe\x9f\x25\x4c\x49\x23\x05\xd0\x1b\x01\x02\xd9\x5c\x3e\xdf\x08\xf0\xb9\x16\xae\x20\x54\xdf\x27\x75\x7f\xd8\x08\x10\xc4\xc1\xe8\xc5\x46\x80\x2f\xee\x39\x42\x7f\x5f\xde\xad\x9f\x1e\x96\x00\x5a\xe7\xe6\xbd\x70\xd8\x81\x8b\xdd\x2f\xde\x23\xaf\xf1\x7d\x00\xfa\xdb\xa8\x83\x79\x75\x36\x7c\x0b\x06\x74\xbf\xa4\x08\x9a\xdc\x2a\x36\x02\xd4\xdf\x2b\x18\x4c\x38\x55\xfc\x85\xc2\x52\x62\xe0\x9f\x8c\x6c\xc6\x54\x8e\x0d\x96\xcd\x92\x34\x0f\x96\x79\xd6\x62\xec\x75\x0c\x8a\x2b\x05\xc3\xe4\x6c\x00\xcf\x27\xe0\x4f\x83\xad\xf7\x90\x18\x98\x32\xf8\xc2\x07\x29\x35\xcb\x0f\x18\x56\x96\x74\x5c\x98\xc4\x41\x81\xa2\xb6\x58\x53\x99\x52\x00\x8f\x23\x03\x25\x1d\x3b\x8d\x9e\xe8\xd0\x81\x82\xb3\x4c\x44\x42\xd9\x51\xa8\xfc\x16\x13\x9b\x55\xbe\x47\xa0\x8f\x9b\xef\x15\x58\x0a\x21\x53\x05\xbd\x06\xe1\xae\x14\x24\x34\x9e\xc8\x84\x98\x93\xbd\x53\x2a\x82\xe4\x22\x0e\x7f\x47\xeb\x14\xc4\x4f\x9e\x24\x75\x75\x43\x06\xd2\x3c\x3f\x7d\x76\x32\x3a\x2b\x2a\xdb\xca\xff\x36\x31\xda\x03\xe0\x3a\xbf\xff\xc5\x3d\x42\x80\xb4\xff\x52\xde\xd0\x1b\xb9\x2b\x30\xc3\xeb\xff\xaa\x80\xf2\x5f\x77\x87\xd2\x05\x89\x2e\x18\x14\xa0\xa8\xeb\xd2\xe0\x93\x03\xca\xad\x20\xd1\x3e\xb0\xe4\xf8\x7d\xc0\xce\xd5\xfb\x0d\xb0\xde\xdf\x06\xeb\xbd\x7d\x27\x00\x58\x60\xbd\x5a\xc1\x01\xfa\x05\x0e\x60\x57\xd0\xbf\xc3\x77\xcd\x54\x00\x5b\xf1\xab\x0d\x63\x7b\x75\xdb\xd8\x5e\x59\x63\xdb\x03\x9c\xcd\x5f\x56\x60\xfe\xe5\xdd\x31\xef\xcb\x05\xf4\x1a\x7f\x72\xa1\xf0\x28\xaf\x11\x17\x71\x38\xdc\x46\x28\x92\x98\xbc\xd6\x8f\xdf\x0a\x45\xca\x46\x5b\x3f\x55\x63\xfb\x93\xd6\xfd\xfc\x04\xbc\xfb\x06\xa9\xe6\x34\xbc\xce\x67\x98\xd7\x19\xac\xf0\x2c\xe5\x12\xaa\x99\x07\x67\x6f\x5f\x6c\x12\x57\x9c\x22\x83\x26\x68\xd7\x7b\x01\x1b\xee\xee\xed\x0e\xe0\x24\x3e\x7f\xd1\x7b\x73\xbf\xfe\xb6\xe1\xc0\x65\x5e\x09\x65\x46\x0d\xb6\x09\x8b\x07\xd0\xf4\xfc\xed\x7d\xbb\x3c\x40\xee\xff\xf6\xe5\xf0\xd5\x3b\xc3\x55\x6e\x6c\xe7\xbe\x68\xc0\x5b\x81\x7a\x12\xd8\xc1\x51\xbc\x79\x7b\x76\x3a\x78\x7b\xe3\x8b\x00\xe2\x77\x07\xd4\xd8\xa7\x83\xb7\x2f\x9e\x5b\xa3\xde\x58\x1d\xee\x05\xe7\xfd\xb7\xc3\xde\x2d\xd5\x9d\xc7\x12\x78\xcd\x4b\xa6\x2c\x0b\xaf\xf1\xe9\x0e\x13\x80\x93\x11\x28\x26\x68\x81\xc1\x83\x30\x71\x7e\xf2\xea\x74\xf8\x16\x16\x1c\x36\xe0\x73\xb1\xc6\xd4\x99\xb4\x4b\x8b\x0b\x50\x5a\x89\x6d\xe4\xd3\xcf\x5e\xbf\x1c\x22\xd5\x28\x30\xcf\x92\xb9\xd0\x5b\xfd\x76\x30\xb8\x30\x6f\x7e\x7e\xf7\xc6\x05\xf3\x86\x5f\x88\x77\x8b\xbb\x8e\x66\x07\x47\x73\x3c\x44\xb2\x30\x60\x8e\x45\x64\xf8\xce\xed\xa3\xd9\x25\x21\xe1\xb8\x00\x66\x18\x4f\xee\x03\x66\x87\x26\x75\x4c\x2f\x46\xf6\xa4\x20\x9b\x49\x15\x8d\x57\x6d\xf6\x9e\x5c\x39\xfd\xc6\x25\x8f\x6d\x2b\x32\x2c\x18\x63\xab\x00\x5a\xb0\xce\x65\xbb\x1c\xcc\x29\xaf\xc0\x99\x58\xad\xd0\x96\x0e\x71\xc8\x2e\xab\xa2\xd3\x29\x07\x2b\x98\x07\x3c\x4a\xa8\x95\xd1\xb3\x80\x41\xd1\xda\xdc\xbe\x32\xf0\x78\xa0\x10\xe1\xc2\xb8\x13\x2a\x70\x24\x70\x3d\x7d\x7b\xf2\xf3\x33\x20\x59\x1e\xd4\x48\x39\x23\x4f\x55\x7a\x14\x1a\xdc\x0d\xd2\x9e\x71\x9e\x68\x30\x0b\xd2\xb1\x81\x74\x7c\xa7\xe5\x39\xf7\x77\xe0\xb1\xeb\xd5\xbb\x97\x2f\x5e\x0f\x9e\xdf\xe9\x65\xf0\x43\x98\xcf\x58\xbc\x9c\xd3\x66\x9d\x6a\x5f\x95\x05\x9f\xb0\x0b\x11\x8b\x94\xe7\x24\x3e\x42\x7a\x0a\x70\x15\x41\x97\xad\xcc\xda\xca\xb6\x98\xe6\xd9\x3b\xdf\x73\x1f\x46\xf1\x3d\x1f\x5c\x66\x0d\x24\x65\x80\x9f\x8a\x4c\xc5\xa0\xdc\xda\x62\x68\x64\x86\x56\xe1\x7a\x80\xb1\x35\xa6\x65\x1c\xfe\x75\x69\x8d\xa8\xd5\x52\xda\x33\xdc\x7b\xcf\xdf\xc0\x8b\xce\x46\xb4\x95\x79\xf9\x1e\xb5\xf3\xef\xd9\x6e\x9f\xda\x75\xee\xd9\xee\x80\xda\x6d\xdf\xaf\x9d\xdf\x06\x12\x7e\xfe\x66\xe7\xbe\xed\x7c\x6c\xb7\x7b\xdf\x76\x1d\x6c\xd7\xbd\x6f\xbb\x6d\x6c\xb7\x77\xdf\x76\x3b\xd8\x6e\xff\xbe\xed\x76\xb1\xdd\xc1\x7d\xdb\xed\x61\xbb\x27\x1f\xbf\x9f\x6a\xbe\x7d\x80\x30\x9b\xdf\x13\x66\x17\x61\x3e\xbe\xe7\xfc\x7c\x5a\xf7\xad\xfb\xb6\x23\x3a\x6b\xdd\xb9\x9d\xbe\xf9\xa1\xfe\xea\xb5\x71\xb1\x64\x79\xb2\xb0\x45\xc3\x2e\xcc\xa5\xdf\x43\x3e\xc5\xc0\xb6\x88\x1e\xd4\x9f\x28\xc3\x01\xf9\x4b\xbd\xf0\x9a\xfe\x64\x83\xd5\x40\x17\x5f\xbf\x3f\xa8\x83\xd2\x81\xf7\x9f\x0a\xde\x7f\x56\xc1\xab\x7c\xc7\xed\xc2\x51\xf3\x76\xf8\xe2\x75\x0f\x40\x3a\xf0\xde\x2a\x78\x6f\xab\xe0\x55\x5a\x0e\xec\xe3\x4b\x2e\xc9\x67\x85\xf1\x9d\x2a\x78\xa7\x55\xf0\x2a\x6d\x07\xf6\x61\x4f\x7e\x20\xef\x3b\x84\x67\x99\x10\x38\x57\x92\x02\xbc\x2a\xeb\x81\x0e\xda\x22\xf4\xdf\x9e\x9c\x35\xd1\xb8\xc1\x82\xb7\x77\x33\xbc\x2a\xfb\x81\x0e\x5a\x23\x48\x78\x4f\x4a\xf0\xf6\x6f\x84\xe7\x5a\x10\x68\x92\xf2\xf7\xb6\xd9\xf9\xcb\x77\x67\xc3\x8f\x0d\xe6\xef\xed\xb0\xf3\xf7\xaf\x5f\x34\x3f\xc2\x79\xe2\xef\xed\xc2\x9f\x4f\x3e\x82\x5b\x21\x98\xb1\x19\x73\x76\x4d\x8b\x0a\x12\xe6\xe0\x63\x73\x1e\xf3\x0b\x91\x36\x30\x63\x84\x07\x99\x00\xae\xc0\xba\x07\xa4\x91\x79\xcb\xca\x2e\x25\x3b\x0f\x33\xc6\xa3\x2c\x29\xbc\x37\x79\x19\x6b\x7e\x52\x76\x40\x92\xb8\x5d\x6f\xd6\x21\x66\xb5\x34\x99\x80\x51\xbf\x90\xa4\x94\x42\x1f\x8e\x2f\xe5\x67\x75\x37\xfb\x7f\x5b\x36\xde\x90\x84\xce\xf1\xc6\x45\x23\x4a\x6c\xf0\x06\x7a\x77\x12\x86\x38\x31\x14\x6e\xb3\xcb\x32\xb1\x0c\xd0\xa2\xac\xf3\x77\xaf\x6a\xba\x59\x90\x26\x94\xb2\x1b\x7f\x85\x8c\xa3\xe3\xe5\x74\x2a\xd2\x6f\x9f\x3b\x08\xf4\x9b\x52\x33\xba\x53\x9f\x25\x73\xf1\x5c\xac\xb3\x53\x1c\xd0\xaf\xf6\xbc\x2d\xbf\x02\x4c\x22\x55\x69\x66\x6a\xaa\x5b\x66\xdb\x85\x5e\x2a\x4c\xb5\x95\x61\xa3\x83\xad\x67\x6e\xa8\x66\xfb\xdb\x6b\xfc\x56\x4e\x49\x6d\x42\xaa\x22\x26\xe5\xe4\x31\x44\xd0\xad\x4b\xa6\x8c\xf5\xfe\xd1\xeb\x23\xef\x26\x7f\xc0\xf2\x54\x9b\x01\x7f\xcf\xf5\x19\xdd\xb0\x3e\xa3\x3b\xae\xcf\x30\x9e\xfc\x8b\x2f\x0f\x5d\x64\xef\xb6\x42\x0b\x7e\xb1\x71\x85\x4a\x48\x3a\xdf\xfd\xbb\xf7\xf4\x56\x0c\x61\xff\xdf\x8e\x24\x44\x42\x9e\x2e\x05\x3b\x1e\xbe\x00\x47\xda\x6c\x39\x86\xd0\x40\x22\xe7\xc6\xaf\x41\xf9\x19\xbe\x8e\xcd\x51\xd0\xa0\x78\xb5\x97\x31\xb1\x65\x1e\xa9\x3c\x51\x0c\x03\x21\x52\x5e\xf3\x0b\x91\x33\x2e\xe1\x53\x8a\x14\xcc\x94\xf0\x98\x05\x11\x0f\xe7\xe4\x8d\x52\x68\x1f\x27\xb9\x72\x45\x6e\x38\x7d\x48\x28\x18\x28\x5a\xa7\x3c\x87\x18\x42\x31\xc5\x73\xe0\x18\xad\x17\x53\x04\x86\x10\x82\xda\x9a\x05\xeb\x73\x88\x17\x1b\xab\x7a\x8b\x54\x4c\xa1\x83\x80\xc7\x72\xe6\x14\x34\xc4\x9d\xbc\x0e\x1f\x11\xf0\xec\x3e\x44\x72\x2c\xa2\xbb\x1d\x2e\x3c\xca\xb5\x0f\x07\x26\xe5\x33\x2e\x1d\x3f\xfc\x40\xbb\xac\xd4\xc4\xce\x83\xf6\x83\x71\x49\x28\x93\x14\x18\x50\x3c\x2d\x1e\x3b\xdb\xff\x8c\x63\x47\xeb\x4a\xfe\x88\x9d\xd3\xbd\xeb\xce\x81\xb0\x43\xff\xda\x0c\x46\xa9\x63\xee\x86\xa7\x12\x73\x2e\x88\x27\xb6\xab\xe9\x26\xc4\xbc\x08\x63\xcd\x52\xee\x81\x18\x37\x3a\xd3\x37\x3a\x72\xdd\x7e\xe6\xfc\x44\x6b\xdd\xf3\xd8\x21\x9d\x2a\xbd\x7f\x02\x1d\x1b\x4d\xd7\x3f\x76\x81\x0c\xe5\xfe\xeb\x2f\x51\xdf\x2c\x51\xdf\x5d\x22\x4c\x3d\x47\x41\x9c\xe6\x3c\x5d\x6f\x41\x40\x84\x98\xe7\xb0\x58\x42\xc4\x99\x72\x3f\x2f\x2f\xde\x5d\x57\x09\x1f\xcd\x9d\xe5\x51\xe9\x94\x2a\xc2\xed\x18\x64\xaf\xc2\x85\x18\x24\x71\x2e\xe2\x3c\xfb\x66\x26\x01\x4f\xa9\xf0\xe6\xea\xb7\x5a\x07\xc5\x47\x55\x45\x86\xf2\xa6\xe4\xc4\x9b\xa0\xd3\xd6\xdc\x9d\x10\x84\x79\xc1\x3d\xa0\xe4\x7c\x18\xc2\x29\x5a\x53\xca\xb7\x85\x08\x42\x1e\x59\x01\x90\xe6\x70\x8b\x83\x50\x17\x09\x76\x13\xc6\xec\x5a\x4e\x44\x76\x7e\x11\x27\x73\xd1\xd4\x33\x47\x0f\xd1\x94\xc7\x17\xf0\x84\x9c\x0a\x80\x0c\xfd\x75\x5a\xad\x7d\x38\xcf\x25\xa8\x95\xca\x58\xc6\x60\x52\x98\x08\x89\xc4\x02\x88\xa6\x8a\x5a\xcd\xd5\x2c\x89\x14\x38\x1a\xd9\x9d\xd7\x8e\x2c\x4e\x6f\x58\xbd\x7f\xbe\xab\x59\xf9\x1c\xd7\x98\x94\xcb\x4e\x73\x18\x8b\x94\x8e\xe7\xaf\xbd\x2c\xaa\x94\xb7\x9b\xd3\x97\xb8\xe9\x6f\x7d\xef\x50\x9f\x8b\x3e\x49\xe3\xf8\xa5\x63\xbe\xa8\x57\x39\xfb\xf3\x76\xe1\xf3\xb9\xfb\x79\xa7\xf0\xf9\x97\x5f\xdc\xef\xbb\x85\xef\x1f\xdd\xcf\xdd\xc2\xe7\x5f\xdd\xcf\x7b\x85\xcf\x9f\xdc\xcf\xfb\xd6\xa4\xb4\x3c\xa3\x3e\x1e\x58\x1f\x0f\xbc\x52\xe8\x00\x7b\x2f\xf6\xa2\xfc\xde\x5b\xf1\x2e\x14\x4b\xe6\xcb\x37\x10\xec\x2d\xe4\x82\x00\xbe\x9d\x5a\x6e\xad\x49\x4a\xa1\x8d\xdc\x0a\x8c\x42\xfe\x08\x14\x29\x13\xf1\xaf\xc7\x11\x41\xf8\xe7\x22\x89\x04\x87\x5f\x07\x90\x3a\x32\xce\x45\xba\x48\x4d\xe6\x7b\x0a\x0f\x0b\x37\x94\x20\x59\xac\x59\x90\xcc\xe7\x3c\xae\x4e\xcf\xb1\x81\xf3\x0d\x6e\x42\x11\x05\xa3\x10\xca\xc3\x77\x03\xba\x2e\x44\x7e\x4c\xb1\x93\x6a\x75\xf9\xd7\xa9\x6a\x63\xe5\xe9\x7b\xa8\x01\x41\x7c\xe3\x28\xe2\x8b\x4c\x4c\x9c\x60\x11\x0e\x74\x29\x29\x0c\x06\x72\x56\x05\xf4\xdb\xe9\xa8\xd0\x60\x49\x99\x14\x01\x0e\xec\xc8\xae\xb6\x61\x12\xe2\x52\x62\x52\x3d\x61\xb6\x0c\x9c\x37\x94\xca\x51\x59\x5d\xb1\xf1\x9a\x45\x22\xcf\x55\xbc\xb8\x42\x6e\x49\xec\x16\x4d\xb1\xe6\x49\x96\x1b\x40\x54\x91\xf2\xbd\xaa\xe8\x3a\x8f\x93\x38\x5a\x3f\x66\x2b\x0e\x91\x9e\x30\x7a\x70\x2e\xae\x73\xe5\x30\x1c\x44\xe1\x02\x95\xee\x96\x53\x2c\xb9\xc4\x7a\x93\x34\xbc\x12\xcd\xf1\xda\x63\x2b\x31\x56\x63\xbe\x81\x78\x21\x25\x8a\x5e\x81\xde\x34\x17\xa9\x44\xa3\xed\xbb\x9b\x89\xfc\x2c\x9c\x8b\x64\x99\xd7\xcc\xaa\x04\xb4\x26\x67\xc9\x30\x9e\x40\x40\x57\xf3\xb1\xde\x60\xbb\x26\x1b\x55\xc1\xd5\xf5\x2e\xfe\xb1\x56\x56\xa9\x87\x37\xac\xf3\x4d\xcb\x8c\x86\x64\x7f\xc4\x62\xcf\x79\x0c\x82\x8d\x32\xc2\x83\x8c\x3c\xab\x24\xbd\x84\x58\x4c\x59\x98\x2f\x29\x62\x24\x64\x49\x35\x80\x54\xc0\xb0\x96\xb8\x16\xc1\x00\xf7\x5e\xcd\x93\x20\xbd\x3a\x6a\x9f\xa3\x64\x65\x12\xb0\xfd\x4b\xac\xd9\xa6\x01\x24\x8b\xb5\xee\xff\x2c\x19\x28\x82\xac\x15\x02\x96\xdf\xe9\x06\x60\x45\x34\x37\xc7\x68\x7b\xbb\xfa\xea\x44\x1c\xee\x95\xe4\x70\xc9\x02\xc2\xf6\xc7\x62\xa5\x74\xfe\xc4\xfa\xe1\x29\x3b\x4a\x50\xf6\xbf\x97\x60\x77\xdb\x09\x50\xa6\x38\xec\xb9\x25\xc7\x52\xd3\x2b\xac\xfb\x9e\x81\x12\xc7\xf3\xca\x51\x87\xbc\x00\xa4\xd2\xa3\x38\x69\x04\x51\x92\x89\xa3\xb5\xc8\x1a\xa9\xc8\xc2\xdf\xf1\x57\x75\xb9\x48\x33\xf8\xd3\x73\xf2\xdc\x11\x88\x79\x18\x87\xf3\xf0\x77\x3e\x8e\xb0\xcd\x2a\x9c\xe4\xb3\x23\x8f\x3d\x51\xa3\x0a\xe3\x58\xa4\x1f\x64\x69\x55\xf3\xc6\x4c\x84\x17\xb3\xbc\xd4\xe0\x19\x14\x7f\xdb\x55\x4e\x2e\xa1\xb8\x71\x09\xdf\xc3\x21\x95\x65\x4b\x29\x25\xe3\xb3\x89\x75\x20\x15\x03\x05\x8f\xc5\x8c\x5f\x85\xd0\x02\x03\xbb\xcb\xfa\x14\x18\x57\xa9\xcb\xb2\x4c\x64\x8e\x15\x29\x9a\x23\x60\x0e\xf6\xc7\xd8\xe7\xc6\x26\xef\x29\xd3\x3b\x45\x01\x9c\x46\x21\x3c\x32\xd9\x51\xeb\x3c\xc9\x7c\x9a\x57\x4d\xe8\xdc\x03\x05\x1d\x46\x65\xa5\x01\xdf\x95\xca\xde\xdf\x46\x65\x35\x3b\x18\x89\xca\xe0\xe6\xb0\xc0\xf7\xf0\xd2\x63\x29\xc5\x6b\x6e\x8b\x0a\xae\x49\x4d\xec\xb4\xdf\x42\x65\x50\x27\x37\x75\x39\x31\x88\x41\xb6\x4c\x33\x11\x5d\xa1\x15\x08\x44\xef\x89\x22\x7d\x56\x6d\xbd\x3e\xc5\xb4\x64\x84\x37\x2b\x8f\x1d\xb5\x6f\x31\x79\x3d\xe4\xe3\x68\x0d\x56\xc5\x73\x1e\xbc\x3e\x6d\x50\xed\x2d\x7b\x7d\xac\xc0\xf4\x3a\xe7\xf2\xb3\x64\x25\xae\x44\x4a\x27\x22\x64\x50\x66\xe9\x32\xc6\x78\xfc\x2b\x31\x06\x33\x92\x34\x44\xe2\x83\xc7\xbd\x70\xca\xc2\x9c\x4d\x79\x18\x65\xa0\x2f\x85\x54\x67\x0a\xdc\x94\xd3\x0d\x9d\x58\x83\x7d\x4c\xc7\x3c\x0f\xaf\x84\x21\xad\xda\x2c\x59\x88\xe9\x32\x8a\xd6\x75\x96\xc9\x4b\xeb\x32\x6b\x6d\x10\x37\x6c\xd9\x0f\xf2\x2e\x7c\x0d\xdb\x13\x51\x26\xee\x7b\x36\x16\xf6\x98\xdf\xad\xdc\x63\xe5\x94\xe0\xdf\x9f\x5f\xa2\x09\xed\xff\x2d\x7e\x99\x2c\xf3\xfb\xf1\x4b\x68\xf0\x3d\xf8\xe5\xb7\xc8\xfb\x64\x80\x9f\xd8\xef\xd0\x4a\x04\x85\x90\xd4\x9b\x2f\x02\x18\xc7\xd0\xbd\x0b\x50\x66\x27\x3b\xe1\x81\x25\x2a\x49\x16\x5c\xc1\x43\x61\x0c\x24\x73\x51\xfa\x79\x78\x74\x07\xfd\x4e\xca\xe3\x6c\x1e\xe6\x8c\xc7\x2a\xc9\x64\x2d\x9c\xb2\x62\xfa\x4d\x10\xa5\xea\x14\xd5\x19\xdf\xf7\xbd\xc0\x93\x1d\x7a\x03\xaf\x6a\x60\x8e\x08\xb7\x02\x8a\xc7\x19\x5b\x08\x50\x11\xd5\xe9\x89\x04\xde\x53\x40\xc5\x97\xa0\xc2\x08\x63\x66\xab\x3b\x4b\x96\x98\x99\x5d\xc6\xc9\x2a\x03\x85\x92\x00\xfb\x96\x99\x98\x53\x5e\xad\x48\x56\x4b\x40\x83\x83\x37\x4e\x44\xe3\x8c\x43\x2c\xd5\xa4\xb0\x2c\xe3\x35\x86\x09\x99\x85\x86\xf3\x40\x4a\x9f\x0b\x1e\xde\x6b\xb3\xdd\x7a\xf7\x52\xdb\xe9\x8e\x57\xaf\xa7\xa5\x3d\xca\x3e\x7f\x36\x52\xaa\x7b\x31\xab\xba\x85\x61\x94\x28\xc0\x20\x24\xc0\xa5\x07\xb2\xb1\x90\xd3\x9c\x89\x68\x02\xd4\x62\xd3\x91\x1e\x61\x41\xf6\xd6\xf6\x85\x84\x34\x13\x11\x8e\x82\xf3\x27\x13\x81\x41\x65\xf9\x04\x75\xaf\xc3\xd3\x01\xab\xa6\xa1\x3c\x5d\x1a\x03\xd4\x95\x20\xe4\x53\x78\xf6\x89\x08\xc2\x89\x64\xf9\xf9\x4a\x88\x18\xe8\x0b\x6c\x1a\x81\xc0\xcc\xee\xad\xd4\x67\x39\x01\xc2\x20\xd5\xaf\x93\x8b\x5e\xa5\x3b\x06\x73\xd7\x88\x76\x5b\xe1\x26\x28\xf7\x40\xc5\xf5\xfb\x1b\x64\x7d\x4b\xce\xb7\x03\x46\x6e\x5c\x46\xe7\x0a\x50\xab\xb3\x2f\x5a\xec\xff\x72\x17\x66\x84\xc7\x50\x99\x13\x41\xdc\x9f\xc4\x84\x0c\x82\x65\x7c\xdf\x60\x13\xb1\xa0\xfc\xe3\x49\x5c\x16\x98\x58\x0f\x0d\x82\xa1\xb5\xc5\x41\xde\x63\xbe\x73\xc9\xcb\xee\xc4\xc7\x50\xba\x2b\xc9\x90\x77\xdd\x58\xb7\xca\x63\xdf\xac\xcd\x29\x3e\x1d\xa2\xbe\xe8\xbd\x0e\x34\x75\x33\x24\x1d\x60\xea\x7e\x87\xc4\x33\xa4\xb9\x69\x12\xe7\xec\xf7\x24\x99\x5b\xf9\x0d\xad\x68\x47\x5e\x66\x52\xc0\xca\x5a\x6c\x06\x14\x3a\x0e\x73\x8c\x90\xae\x44\xf4\x9c\x05\x22\xcd\xb9\xaa\x15\x89\x2b\x81\xd9\x49\x59\x2f\x47\x03\xe0\x39\xa7\x24\x0a\x24\x9a\x61\x58\x6e\x9e\x2d\x53\x31\x61\x78\x74\x62\xae\xfb\x34\x59\x41\x98\x5b\x71\x9d\xb3\x09\x64\xa1\xc8\x48\x93\x81\xfc\x98\xea\xc2\xeb\xc2\x8a\x67\x4c\x5c\x2f\xa2\x30\x08\xf3\x68\x2d\xc9\x5d\xcd\xe1\x83\x4e\xb6\x28\x9c\xad\x06\xc3\x53\xb1\xc4\x24\x53\xbe\xc0\xef\xf8\x50\xfb\x26\x49\x73\x2f\x43\xa4\x48\xd9\x01\xa4\xd7\xc7\x14\x73\x4c\x56\x83\xe9\xde\x95\x7a\x5c\x53\xce\x5b\xa8\xe8\x61\x85\xca\xca\x01\xf0\x17\x39\x72\xe7\x21\xd9\xe5\xb4\x70\xfd\x78\xf3\xf2\x2f\xea\x4d\x21\xc3\xb9\xea\xe7\x28\x9b\x09\x6b\x0b\x85\x44\xbb\xeb\x41\x73\xa8\xb4\x11\x08\xa4\x37\xb1\xa0\xd8\xb6\x0e\x0a\x0c\x9d\xed\x6c\xc5\x31\xe0\xab\xb6\xe6\xd7\x2f\x1d\x18\x21\x3b\xcb\x05\x87\x24\x63\x7c\x3a\x95\xec\x27\xbe\x80\x9e\x8c\x44\xed\x30\x59\x88\xf6\xda\xfc\x54\x8c\xf3\x2a\xc5\x85\xa9\xf7\x14\x3a\xfe\xf5\x93\x36\x16\x7c\x1d\x47\x6b\xf6\xeb\x27\x39\xc4\x2b\x1e\x85\x13\x24\xb6\x84\x84\x22\x27\xdd\x7d\x9c\xa8\xd0\xca\xad\xaf\x92\xcf\x6e\x60\xcd\x17\x22\x97\x4b\x36\xe2\x41\x9e\xa4\xb5\x3a\x7b\x68\xe5\x32\xb7\xf3\x0b\xc2\x0d\x2a\x67\xfe\xa1\x8f\xb8\x9e\x42\x83\x86\x3e\x24\xe4\x95\x88\x3d\xd9\x6a\x6e\xb5\x91\x6e\x15\x22\xe1\xda\xe9\x28\x0a\xa1\x3d\x5e\x7a\x24\x15\x0b\x9e\x85\xc8\x1b\x95\x8d\xfd\x92\x78\xe5\x85\xc0\x48\xa0\xf2\x77\xbf\xdd\xfe\xf7\x3b\xce\xdd\xb9\x65\x40\x32\x76\x48\x0a\x72\x73\x76\x7a\xc8\x35\x4f\x2b\xd8\xf6\x0a\x29\x67\x2b\x5e\x8c\x45\x3e\x4a\xe2\xfc\x34\xfc\x5d\x50\xca\x7a\x27\xcf\x2c\x28\x91\xe5\xc6\xbc\x49\x88\xd1\x00\xea\x56\xc6\x5b\x35\x86\xa6\x27\xe5\x98\x32\x75\xa1\xb5\xb6\x19\x1f\xf4\xd2\x3c\x62\x7e\x65\xb6\x5b\xf8\xfa\xc4\x7c\x7d\x70\xe3\x2b\xb8\x35\x24\xd9\xb0\x7e\x77\xf1\xde\x7a\xa0\xbd\x47\xda\xa8\x05\x65\xab\xfa\xbf\x92\x3c\x1d\x73\xae\xc9\x01\xe8\x6c\x00\xe3\x30\xc7\xa7\x76\x15\x84\x0f\x62\x58\x83\x0c\x37\x0d\x63\x41\x06\x12\x85\xc4\xbd\x67\x76\x3e\x01\x48\x85\x06\x26\xc3\x22\x5e\xce\x05\x66\x2e\xa7\x71\x65\x39\xcf\xc3\x80\x55\xe5\x3d\x93\x70\x74\x3a\x35\x15\x1a\x1b\x82\xc7\x6b\xc8\xa4\x24\x02\x51\x93\xfd\x7f\xec\xbd\x7b\x7f\x1b\x37\x92\x28\xfa\xbf\x3f\x05\xa2\x3d\x1b\x92\x63\x92\x92\x9c\x38\x0f\x3a\xca\xae\x2c\x2b\x89\x6f\xfc\xba\x92\x6c\x67\xd7\xf2\xf8\x82\xdd\x20\xd9\xa3\x66\x83\xd3\x00\x45\x31\x13\x9f\xcf\x7e\x7f\xa8\x2a\xbc\xfa\x41\x52\x8a\x93\xb3\xb3\x7b\xfc\xdb\xcd\x50\x24\x50\x00\x0a\x85\x42\xa1\x9e\x13\x9e\x2b\x01\xa2\xee\xde\x5f\xf6\x8c\xe4\x5a\x2e\xe1\xe2\x2b\x94\xbd\xd0\xc2\x0a\x07\x58\x95\x6d\x0c\x85\x7f\x95\x28\x34\xf5\xc7\x0e\x46\x40\x84\xdf\x0b\xa9\xf1\xb1\xb1\xf7\x97\x3d\x0f\x0b\x4a\xf9\x09\x55\x74\xa0\xac\x9b\x6e\x77\x38\xb0\x75\x4b\x83\x0b\x49\x2d\x44\x12\x38\x17\xd8\xda\xc2\x27\x72\x09\x0f\x86\x83\xb0\x92\x0f\x26\xc3\x04\xcb\xb8\xfd\x13\xce\xd9\x2e\x45\xe3\x26\xb2\x34\xb8\xf2\xd2\xe8\x5c\xa6\xa1\x0f\xc9\xbb\xb9\x4c\xdf\x13\x70\xfc\xfc\xdb\x6f\x88\x82\x47\x91\xae\x85\xda\x1d\xb1\xce\x5f\xdc\xa5\x50\x9f\xf9\xfd\xfb\x70\xd2\x50\x97\x6d\x7e\xee\xc5\xfe\xd9\x6f\xcc\xed\x50\xa1\x88\x2d\x48\xf3\x6b\x61\x47\xec\xdd\x3d\xc6\x3a\x70\x25\x76\xfa\xa8\xff\x33\xff\xcb\x73\xf8\xd3\x3c\x3e\x3a\xf7\xde\x87\x74\x9c\x60\x89\x6a\x48\x92\x0e\xfc\xd7\x30\xe6\x63\x28\x87\xe0\xe5\x06\x28\x85\xdd\x8b\x64\xb1\xa8\xca\xbf\xb9\x59\x15\x45\xaf\x1b\xe9\x09\x6f\x59\x5e\x42\x1d\x3f\x2c\xa4\x6c\xab\x83\x24\x5a\x28\x6d\xcb\x9c\x2d\x6c\x61\xe9\x49\x56\x2a\xdd\xc7\xd7\x2c\xd7\x2c\x97\x52\x89\x7c\xed\x4a\x4e\xb9\x76\x70\x41\x72\x66\x9e\xdb\x50\xda\x48\x96\x99\x5e\x9b\x3e\x50\x81\x04\xea\x17\xb9\xc6\xb7\x28\x44\xcf\x77\x6c\x37\xde\xb2\x11\x41\xcd\xef\x90\x92\x7d\xbe\x61\x43\x2b\xbc\x42\xca\xdf\xb1\x71\xfc\x4d\x24\xb2\x0f\x0e\x9d\x85\xb1\xda\xf1\xfb\x8d\x1d\x0f\x43\x71\xfe\x20\xa2\xb1\x57\x65\x76\xcd\xb5\xb0\x59\x7d\x2d\x9b\xb2\x85\x17\xa9\xb6\xd7\xc2\x96\x0e\x37\xcf\x7e\xa5\x49\x58\x09\x7e\x51\x54\x70\x12\x2a\x54\xc8\x55\x81\x1e\xa9\x35\xbc\xdb\x32\x93\x86\x6c\xa8\xbe\xa4\x0e\x2a\x52\xba\x76\x54\x46\xf2\x23\xb2\x23\x74\x87\x25\x5b\x18\xe5\x4e\x0f\xcb\x8b\xbf\x56\x62\xb2\xcc\x31\x51\xc3\x5a\x2e\x81\x04\xb1\xd0\x8e\x96\xb6\x26\x0f\xf0\x23\x24\x0a\x5c\x9b\x5d\x0a\x2f\x6a\x8b\xd9\x76\xc6\xfc\x61\x00\x50\x91\xe8\x2c\xc7\x7f\xeb\xe3\x38\xcf\xcd\x6f\x75\xf3\x3b\xb0\xa7\xcf\x8e\xcc\xf2\xed\x9f\xd1\x5e\x11\x37\x21\x11\xa6\xbc\x76\x19\xbb\x3f\x01\x0b\x33\x10\xe7\x32\x7d\xc3\xf3\xa5\x21\x4a\xf3\x93\xb9\x52\xe4\xf8\x6f\x3d\xf6\x6f\xe6\x7f\x90\x6f\x8d\xaa\x2c\xed\xb3\xf2\xda\x30\xba\xee\x67\x7e\x61\x56\xb3\x1f\x71\x3a\xd3\x28\xfa\xd2\x0e\x16\x0b\xc6\xb6\xca\x81\x59\x9b\x1b\xa9\xc2\x06\x3d\xbd\x96\xd7\x8f\x9a\x0a\xa4\x12\x61\xd4\x2b\xa0\x12\x5d\x65\x58\x7d\xd1\x57\x4a\x8d\x49\xf9\x7f\x66\x01\xd4\x76\x22\xa6\xa2\xa1\xad\x45\x50\x43\x5d\x00\x52\xbd\xfd\x9d\x64\x80\xde\x6e\xbb\xd4\x7e\xdd\x67\xca\x17\x9d\xb3\x6a\x7d\x4e\x52\x08\x68\x57\xc5\xee\x5c\xfc\xd6\x6b\x6f\x90\x39\x7c\x59\xd5\x4d\x18\xa0\x26\x7d\x58\x6a\x6f\x17\x49\x58\x2e\x50\x76\xfe\x27\x2f\x9c\x4a\x1b\xfd\xef\xe6\x57\x33\xc8\x75\x26\x56\x54\xba\x25\xcb\x05\xcb\xe6\x0b\x2a\x01\x14\x14\x23\x7b\x89\x4b\xc7\x72\xa5\x50\x86\x08\xcb\x51\x2a\x2d\x4b\xa1\x5c\x46\x74\x73\x16\x30\x79\x7a\x22\x8b\x94\x2a\x3d\xd9\x47\x62\xe4\x55\x69\xe8\xc2\x1e\x77\x03\x0e\xae\xaf\xf0\xf5\xce\x94\x28\xcd\x19\x94\x13\x06\x44\x23\xa0\x9a\xa9\x53\xd0\x29\x7e\x9d\x15\xd3\xfd\x52\x98\x19\x50\x01\x23\xcc\x05\x40\x35\x92\xec\xe8\xe6\xb1\x9a\xaf\xa9\x78\x93\x34\xe7\xf5\x3a\x4b\xb1\x1c\x19\x57\x6b\x72\x73\x31\x53\x4c\xe4\x7c\x2e\x0b\xd3\x75\x92\x4d\x97\x25\xa8\x93\xe0\x6e\xa4\x5d\xb7\xf1\x1e\x65\x36\x85\x84\x24\xb0\x51\xe3\x35\x3b\x91\xe5\x9a\x3d\xe7\x49\xc2\xcb\x92\x48\x7d\xdf\xfb\xf5\xca\x42\xe9\x72\x69\x1e\xde\x0e\x0f\x4d\x18\xa5\x51\xc0\xbd\x94\xa3\xd6\xc2\x69\x6c\x69\x41\x16\x4e\x83\x99\x1a\x5f\x1b\x5c\xc5\x8c\x46\x2f\x46\xfb\xfb\xab\xd5\x6a\x78\xad\x0f\x0f\x0e\x86\x85\xd0\xfb\xa9\x4c\xd4\xfe\xb5\x7e\x78\x78\x30\x28\xe7\xfb\x4f\x4e\x4f\xce\x2f\xce\x50\xe6\x4a\xc4\xc2\xaa\xbe\xcc\xbb\x05\xcb\x72\x2d\xb5\x5c\x95\x7c\xc1\xba\xe6\xbf\x58\x4c\xb5\x17\x26\x12\x47\x3f\x57\x2c\xa5\x27\xc4\x5c\x91\x56\x6b\x2c\xd8\xca\x7c\x87\x5e\xb5\xe6\xe9\xd0\x7c\xfe\x09\x05\x47\x1f\xcd\xea\x3f\x80\x72\xfa\x25\xa1\xc1\x95\x25\x00\x6d\x9a\x5c\xac\x51\xc8\x08\xd0\x10\x30\x0a\x8b\xca\xf0\x32\x27\x80\xce\x33\xd6\x9c\x40\xae\x75\x99\x8d\x97\x1a\xca\xac\x93\x71\x06\xca\xef\x1a\xec\x2d\x96\xe3\x3c\x4b\x3c\x81\x01\x75\xf0\x24\x11\x4a\x51\xc8\x27\x02\x72\x54\xec\xe2\x2a\x3c\x72\xd8\x91\x5f\xc9\xbf\xb9\x8f\x61\x83\x91\x2b\xe2\x41\x95\x4a\xaf\x45\xa9\xc4\xdb\x6d\x10\xea\xed\x82\x9b\x1e\x20\x49\x20\xcb\xe7\xf8\x82\x6a\x02\x11\x34\xa8\xf6\x35\xfb\x7c\xc2\xcb\x32\xe3\x53\x41\xec\xbf\x19\x46\x43\xc3\x2a\x2c\x3c\x83\x6f\x32\xac\xdf\xd4\x0c\x26\x6e\xd3\x0c\xe1\x71\x9e\x15\x57\x1b\xfb\x63\x8b\x6a\xef\x0c\x02\x52\x37\xe0\x21\x68\x50\xed\x4b\x58\x7e\x93\xa5\x42\x6e\xde\x08\x6c\x52\xed\x3f\x2e\x79\x72\x25\xb4\x48\x31\x1e\xb6\x19\x42\xa5\x91\x83\xb1\xfd\xfa\x59\xf0\x52\x89\xf2\x9f\x5d\xf7\x72\xdb\xb2\xdd\x95\x33\xcf\x5e\x19\x2c\x34\x97\x03\x5c\x17\x9a\xdf\xe0\x4d\x62\x78\x2d\x9a\x53\x9d\x2d\x6f\xa9\xb4\x9c\x67\xbf\x72\xc7\xcd\x2d\xfb\x00\x88\x65\xbd\xf4\x19\x4c\x80\x99\x29\x18\x81\x83\xfd\x03\xcb\x62\xe2\x13\x88\xd0\x85\x5f\x81\x96\xf3\x2f\xfb\x96\x0c\xe8\xb7\x23\xd6\xc1\xe0\xab\x2a\x9c\x02\xfc\x75\x11\x8e\x2b\x25\x22\x95\xad\x45\x1c\x82\x5a\x48\x85\x4a\x92\xd6\xe9\xfc\x1b\xc1\x71\x6e\xfe\x14\x39\xb8\x05\x70\x32\x63\x47\xbe\x70\x7c\x84\x88\x40\xc6\x12\x65\x29\x23\xc4\xcc\x85\x52\x7c\x2a\x22\xb1\xaa\x10\x2b\x76\x6a\x1a\x76\x3b\x00\x80\x61\x2f\xae\xa1\xf0\xa4\x5b\xc6\x7d\xd6\xc1\x52\x94\x16\xc6\xc6\x91\x33\x65\x5e\xe0\xb9\xd0\xa2\xbe\x2f\xa1\x38\x07\x08\x3a\x0a\xf1\x6e\x0b\x0a\x6e\x82\x5e\xab\x75\x87\x5d\xe1\x16\xfe\xb0\x90\x2a\x50\x58\xb9\xcd\xc4\x0f\x8f\xe2\x9d\xa1\xf6\xe6\xf5\xe4\x35\x59\x80\x5b\x9a\x4c\xac\xb4\x0e\x5f\xef\x80\xaa\x7a\xb4\x15\xea\x73\xc2\x6f\xcd\x71\xa4\xd7\x0a\x3e\x54\xa4\xab\xcb\x1e\xd4\x49\xf2\x37\x3f\x94\x05\x0f\xd7\x4d\x65\xa5\xe1\x69\x61\x3b\xfc\x2c\xd6\x2a\x72\x79\xe0\x2e\xe3\xcd\x90\xb1\x9f\x05\x09\x1d\xa9\x70\x9e\x69\x1c\x7c\xa1\xc4\x14\xdd\xde\xcd\x5f\x0e\xac\xb3\xa2\xb5\x0e\x6b\x0b\xe8\x0f\x19\x7b\xee\x4b\x3b\xa1\x92\x15\x2b\xeb\xfb\x52\xbc\x7f\x93\x66\x21\x20\x47\xe0\x7b\x22\x85\x1a\xdc\x41\xc4\x0a\x22\xa9\x60\x86\x81\x96\x99\xba\x02\x6d\x25\x4d\xd3\xaa\x41\xb2\x22\xc5\x32\xa8\x2e\x96\x76\x59\xf8\x7a\xa1\x91\xd2\xd5\xdc\xfe\x56\xfc\xb2\xd0\x83\x02\xd8\x23\x7c\xd4\x1d\x8f\x18\x3c\x9f\x05\x79\xde\xf2\x28\x47\xd5\xde\xf1\x5e\x3c\x45\xc6\xd8\x57\x0f\x47\xec\x1c\xdf\x42\x98\xa4\x8c\xbe\x3f\xb8\xf9\xf2\xb0\xf9\x17\x70\x52\xab\x0e\x84\x5f\x86\x2d\xda\x00\xc3\x8f\x5b\xa0\xa3\xa5\xbb\x71\x0c\xfa\x29\x6c\xfd\x97\xb0\x25\x4e\x04\x2a\xe5\xae\x84\x11\xa7\x54\x50\x75\x31\xa2\x58\xc0\xb9\x4d\x12\x4a\x85\x93\x0d\x43\xc8\x05\x57\x81\xed\xc9\x10\xc0\xb1\xab\xf2\x0b\xcc\x9e\xce\xb6\x7b\xd4\x57\x1e\xf3\xa0\x12\xed\x83\x49\x31\x28\xa7\xd3\xb7\x64\x84\x43\xf9\x07\x7c\x9d\xcb\x07\x4c\x00\xae\xd3\x9f\xc5\xfa\xdc\xce\xba\xc6\x68\x9c\x1a\x07\x75\x30\xae\xa0\xae\xe1\x9b\xf7\xa0\x4a\x52\x58\xdd\xf4\xca\x3f\xef\xb7\x1c\x3c\x57\xea\xea\xfa\xdd\x4e\xed\xdf\x5d\xbd\x7f\x1f\x29\x5c\xcc\xb8\xab\x99\x79\xac\x75\x1d\x33\xfa\xae\x81\x09\x46\x41\x94\xea\x2a\x5b\x9c\x2f\x78\xe2\xad\x57\x66\xd6\x5a\x5e\x09\x17\x34\x01\x28\xb9\x30\xdf\x58\x8f\x6a\xd0\x7f\x99\x2f\x86\x70\xe9\x1c\x1d\xb1\x0e\x71\x81\xc0\xa2\x55\x5e\x07\xda\x7b\x6c\x7d\xcd\x73\xd2\x7c\x39\x0b\x57\x13\x28\xb7\xe0\x4e\x5c\xad\x6d\x99\x58\x4d\x57\x00\x6e\xa8\xe5\xeb\xc5\x42\x94\x27\x5c\x09\xef\xf1\x6d\xc0\xda\xe6\xbb\x6e\x80\x0f\x21\xf7\xee\x0d\x5b\xba\x0c\x67\x5c\xbd\x5c\x15\xaf\x48\xdd\x63\x87\xec\x85\xce\xef\xa4\xa4\x73\xa5\xa5\xb6\x6d\x2b\xc1\x78\xff\xc8\x41\x30\x8b\x29\xaf\x51\x09\xf7\xf9\xe7\xcc\x7e\xfc\x2c\x32\x47\xe0\x8e\x96\xe0\x71\x97\x29\xbc\xa4\xc3\xc2\xcf\x76\x0c\xbc\x6e\x03\x04\xf6\xfc\x40\x16\x72\xa0\xa2\xac\x6c\xd5\x2e\x38\x75\xdc\x3b\xc2\xe7\x36\xb4\xba\xcb\x60\x07\x94\x46\xa4\xb5\x15\x62\x80\xd1\x78\x41\x1e\x60\x1d\x71\xaf\x8b\xab\x42\xae\x40\x0b\xd9\x8e\xb1\x8f\xdb\x48\x59\xad\xe7\x63\x99\x77\xe2\x4a\x75\x01\x24\xa7\x68\xf5\x53\xf1\x75\x91\xd3\x5b\xb3\x0e\x4f\x70\x8b\x9d\xc9\x2d\x4b\x03\x4a\x73\xea\xe1\x77\x8b\xf7\xbd\x68\xf3\xe0\x2b\x76\xc4\xcc\x74\x7d\xfb\x8f\xb7\x41\xa8\xb8\x59\x88\x44\x8b\x94\x21\x56\x36\xa1\xb5\x01\x66\x1d\xe2\xa9\x85\x17\x48\x20\x21\xef\xa8\xdb\xca\xeb\xcc\xce\x69\xf2\x93\x19\x9c\xa7\x81\x3b\x4f\xe3\x52\xf0\xab\xa0\x55\x40\x73\x9f\xa1\x90\xdc\xdb\x30\x33\x5d\xf2\xf0\x11\xc2\x27\x46\x08\xd7\xbc\x9c\x0a\x30\x90\x75\xec\xf8\x54\x49\xee\x9a\x17\x89\xe8\x06\xfe\x7b\x95\x11\x8f\xc2\x11\xeb\xe3\x3d\xcf\x94\x02\x6f\xce\xea\x00\x15\x95\xfb\x96\x3b\xef\xd8\xc6\xca\x35\x55\x7b\xae\xe2\x6e\xcb\x35\x71\xaf\xf1\x96\xc0\xd7\x49\x27\x32\x90\x54\xaf\x86\xdd\x6e\x84\xea\x41\xda\x74\x54\x38\x55\x96\x0e\xf8\xd1\xb6\xb6\x55\x2e\x14\x92\x69\xa3\x7b\x7d\x3b\xa8\x77\x41\xdf\xf7\x6e\xdb\x37\xf0\x1b\x72\x92\x6f\x3e\x1f\x94\x14\xa8\xf5\x2c\x20\x86\xeb\x47\x61\xe3\xfe\x0b\x71\x85\x41\xdd\x9b\x9f\x55\xe6\x09\x73\xc4\x3a\x97\x9d\x8e\x35\x0c\xd9\xaf\xf6\x3a\x9b\x09\x4c\x88\xab\xa7\xfe\x61\xb0\x65\x10\xd4\xc6\x77\xf7\xdf\xf1\xc1\xaf\x1f\xde\xef\x67\x9b\xdf\x84\x00\x9b\x18\xc0\xae\x80\x0f\x06\xdf\xbe\xdf\xdf\x02\xd6\x51\x73\x1d\x6a\xc8\x34\x62\x06\xee\x65\x43\x03\x64\xe4\x2e\x80\x3e\x83\x1d\x1c\xd9\x99\x7c\x7c\xd4\x76\xfa\xa3\x33\x5b\xf5\xfa\x8a\xf1\x68\x03\x3d\xac\x74\x4c\x43\x06\xfb\x1e\x0f\x0b\x4b\x0a\xbb\x7f\x7c\x54\x83\x8e\x64\xd0\x02\x99\x4e\x6f\x03\x54\xdb\xad\x01\x22\xed\x4d\xdb\x64\x49\x6c\x6c\x9a\xa9\xed\x68\x80\x36\x12\x7d\x70\xa5\xc0\x31\xe9\xec\xb0\xa5\x9b\xc8\xd0\x47\x78\x36\x23\x7a\xd3\x15\x14\x1f\xb6\x8a\x3a\xc2\x0c\x4c\x86\x25\x24\xeb\x83\xc1\xb7\x1f\xde\xdf\xdf\xcf\xa6\xbb\xcc\xb8\x8d\xb8\x0d\xb1\x8d\xb9\x32\x32\xd0\xe1\x41\x8c\x78\x22\xcc\x83\x8e\x0b\xd8\x6a\x7b\x0c\xb0\x01\x3b\xac\xe4\x4e\x8a\x95\x14\x81\xaa\xe6\xb0\xcf\x0e\x7b\x00\xf8\xa6\x53\x29\xcc\x6b\x67\xda\x6d\x58\xf0\xc1\x8d\x39\x70\x7c\x30\x79\x7f\x7f\x7f\x9a\xf5\x6a\xee\x68\x9b\xfa\x5e\xa6\xf7\xf7\xa7\xbd\x66\x25\x89\xb9\xf2\x72\x48\x6f\x98\xca\xe5\x38\x17\xec\xef\x4b\xe9\x59\x60\x68\x10\xa9\xaa\xbd\x5c\x79\x08\x99\x15\xda\xea\xc6\xe0\xae\xe6\x39\x42\x09\x9e\xed\x8c\x9d\xc3\x40\x06\x58\x34\x82\xc2\x20\x80\x31\x25\xf3\x10\x29\xcb\x33\x2d\x4a\x9e\xe7\xeb\x7e\x65\x4a\xd0\x70\x51\x4a\xb0\x1b\x08\x88\x0e\x70\xaf\xdb\x8b\x97\x4f\x5e\x76\xcb\x69\x56\xa4\xbc\x37\x62\x6f\x78\x99\x81\x99\x05\x1d\xcc\x65\xee\xc2\xa0\x42\x4b\xc9\x2b\x3c\x74\x5c\x8b\x8f\x6c\xe1\x3e\x87\x2d\xac\x5a\x12\x57\x73\x5c\x43\xd6\xa0\xba\xcc\xe8\xa1\x4d\xbd\xb7\x3e\x94\xdb\x6e\x0d\xe0\x83\x42\x2d\x73\xed\x15\x9e\xe6\x3b\x1c\xf4\xc8\xb2\x41\xeb\xb0\x89\x5f\x7f\x06\x17\x89\xa1\x58\xff\xf7\x65\xa7\xd3\x76\xf6\x68\x6c\xcb\x02\xe8\xdc\xd5\x58\xaa\x9b\x0d\x3b\x02\xa5\xe4\x99\x98\x9e\xde\x2c\xba\x9d\x77\x97\x97\x97\x97\xe6\x86\xc5\xc1\xee\xb3\x0e\x14\x46\x99\x12\x9c\xdb\x3c\xa4\x4b\x31\xcc\xb9\xd2\x4f\x8b\x54\xdc\x38\x69\x48\xaa\xd0\xdf\x42\x40\x9c\x75\x37\x80\xd1\x6b\x17\x1f\x5f\x17\x64\x4e\x0a\x2e\x74\x22\x2d\x27\x38\x12\x76\xef\x1f\x35\x9c\x59\xc3\x8a\xed\x24\xfa\xf1\xec\x06\xec\xb0\x51\xf4\xac\x34\x72\xcb\x0e\xda\xfb\x8d\x3a\x72\x1b\x15\x89\x05\x97\x55\x77\xdb\xea\xcd\x56\x9b\x35\xd0\x10\x06\xcb\xf8\xa7\x7b\x22\x0b\x9d\x15\xb6\xa6\xfd\xc7\xa6\xc1\x8d\x04\xb2\x69\xf4\xca\x30\x48\x68\x1b\xa6\xd5\x3a\x64\x30\x02\x8c\xbe\xc3\x02\x6d\x05\xed\x65\xae\x2b\xf1\xe4\xb7\xde\x68\xb8\xf8\x62\xa6\x57\x10\xf7\x40\x93\x0c\x64\xf2\x6b\xd2\xeb\xb3\x2e\x19\xe2\x43\x3e\x87\x66\x58\xd3\x1c\x5c\xf2\x02\xeb\xc0\xf1\x0f\x17\xa7\x67\x14\x91\xca\x21\x40\x06\x72\xfa\xe5\x5c\xcd\x86\xbd\xaa\x12\x6e\x57\xde\x40\x41\x50\x8d\xbc\x61\x0e\x9e\xdc\x88\xcb\xce\x5e\x67\x64\xfe\x83\x3e\xfd\x66\x6f\x47\xf0\x5f\xfb\xf7\x25\xfc\x7d\x69\xff\xe6\xf0\xe7\xcd\xc1\xd7\xf6\x8b\x31\x7d\xf1\x8d\xfd\x42\x74\x28\x9d\x96\xfd\x62\x42\x2d\x12\xfb\x45\x41\x5f\x70\xfb\x45\x49\x5f\xa4\xf6\x0b\x4d\x5f\x7c\x6b\xbf\xb8\xa6\x2f\x1c\xd0\x9b\xce\xa8\xba\x32\x2b\x01\x5e\x5b\x2d\x55\xeb\xe5\xff\xfe\x1f\x0f\x3e\xe2\xed\x1f\x91\x4d\x53\x66\x25\x77\x3b\x02\xd4\x3e\x3b\xfc\xaa\x67\x5f\xb6\x34\x93\xe5\xef\x9b\xc9\x97\x9f\x60\x26\x4e\xef\x19\x84\x96\x24\x33\xc8\x10\xc9\x17\xe6\xa8\xce\xf9\xa2\xf6\xa4\xc2\x46\xbd\x56\xe1\xca\x3e\x89\x90\xe2\x47\xde\x70\x94\xcc\x3c\x5f\xb7\x2b\x9c\xf3\xc5\x3b\xfa\xf1\xfd\xa3\x96\x7b\x00\x4e\xf4\x7a\x21\xe4\x84\x79\xed\x8b\xc5\x1c\xdd\x33\x16\x1e\xea\x16\x13\x9e\xe7\xe8\xc2\x16\x0a\x75\xf4\x56\xad\x89\x24\xde\x2b\xca\xfa\x57\x2a\xcd\x4b\x70\xdb\x68\x3d\xa9\xd5\x9b\x1d\xaf\xa7\x8f\x0e\xc2\xb1\xfb\x14\xb9\x9d\xe9\xd0\xba\x07\x0e\x30\x6a\xc1\x8b\x21\x63\xcf\x5f\x9f\x5f\xa0\xc2\x9b\x34\xed\xd0\x74\x6f\x9a\xcb\x31\xcf\xf7\xe8\xf6\x63\x93\x9c\x4f\xef\x76\xe3\x37\x38\x56\x2d\x42\xaf\x2a\x20\x00\xeb\x93\x87\xa3\xb6\xed\xaf\x11\x6c\xcb\x82\xe7\x68\x1a\x1c\xb1\xf3\x05\x2f\xbc\x3b\xb0\xf5\x4c\x47\x18\x74\xef\x59\xc0\x6d\xd7\xad\xa1\x08\x5e\xae\xd9\x91\x6b\x59\xbb\x76\x3d\x99\x9a\x86\xbf\xfd\xd6\x00\x73\x60\x60\xbc\x3b\x78\x6f\x45\xe4\xcf\xfc\x20\x5b\x1f\x02\xce\x43\x11\xe9\xd5\xe2\xc6\xcb\x26\x68\x22\x6c\x1a\xf4\xb0\x8d\x6e\x69\x8f\x70\x52\xf1\xb5\x70\x8c\x2d\x77\x22\x2d\x6b\x61\x4e\xe4\x12\xfc\x69\x5b\x37\x9a\x86\x0f\xf7\x18\xfa\x04\xda\x20\x78\x10\x1c\x21\xa8\xd8\xc4\xb9\xe1\x09\x51\x33\x77\xc6\xc2\x2a\x79\xfc\xa0\x40\xc7\x8e\x59\x9e\x29\x88\xd1\x83\xa0\x2a\x56\xc8\x62\xb0\x9a\x65\x5a\x60\xba\xd7\x88\xf8\xc9\x39\xd8\xde\xa5\x0c\xd7\xee\x89\xfb\x5a\x66\xe9\x46\xd2\x76\xca\xad\xaa\xb7\x10\x4e\x26\x20\xed\xfd\x4b\xb5\x3f\xd4\x42\x69\xcf\xbf\x82\x77\x50\x2c\x6e\xee\x5f\xaa\xfb\xfb\xd3\x39\xa6\x46\x6c\xa1\x59\x9b\xa9\xca\x1a\x94\x03\xf4\x59\xe9\xd8\x0a\x8f\x91\xdc\x18\xd0\x52\x08\xdb\xd3\xd9\x6e\x9b\x41\x43\x54\x97\x1a\x49\x3f\xc3\xcc\x40\x7e\x39\x89\x5a\x1d\x1d\xb1\xc1\x61\x6f\x17\xed\xac\x2c\xc0\x38\x6d\x4e\x43\xb0\xbd\xf7\x59\xa7\x8f\x0e\x22\x70\x50\x22\x23\x86\x65\xf1\x5e\x7a\xda\xd5\x0d\xe6\x43\xa8\x7f\xfb\x27\x77\x89\x71\xbe\x82\x39\x05\x4c\x83\xd7\x63\x68\x5f\x97\x65\xac\x7c\xac\x53\x78\x80\x0e\x23\x6f\x05\x47\xef\x79\x18\x05\x84\xb1\x49\x60\x24\x07\xa7\x7b\xd4\x5c\x93\x77\xb3\x0b\x61\x0c\x5e\xd4\x46\x14\x2d\x05\x5b\x2e\x16\x10\x7f\x64\xe6\x2d\x6d\x76\xe8\x42\x96\x73\x9e\x43\x34\xab\x8d\x01\xcc\x8a\xc5\x52\x83\x61\x77\x0c\x5e\x95\xd3\xec\x9a\x5e\xe8\x6c\xef\xe4\xe2\xec\xd9\xe0\x78\x0f\xe3\x8b\xd0\x98\x4c\x7f\x40\x88\x28\xdf\x43\x2f\xc6\x3c\x07\xb7\xbb\x85\x16\x69\x98\xf5\x73\xc4\x5e\xc0\xdc\x21\xac\x3f\xe1\x45\x21\x35\x04\xe2\xe6\x7c\x81\xb6\xe1\xed\xf6\xa6\x8d\x58\x8b\x0d\x84\x28\xb2\x42\x75\xc6\x91\x8b\xc4\xb9\xc7\x98\x59\xc3\xc8\x46\xe4\xb8\x9c\x9b\x73\x59\x30\x9e\x67\x1c\xf2\xb6\x9c\xbc\x7c\x71\x71\xf6\x32\x6a\x75\xfc\xcc\x40\x81\xf0\x9d\x7b\x8c\x3d\x3f\xbd\x38\x1e\xd9\x30\x9e\x60\xa3\x7e\x76\xa5\x8b\x96\x41\x58\xc4\xe6\x1d\x7a\x65\x58\x18\x26\xfe\x32\x34\x3a\x97\x4a\xe7\x6b\x96\x8b\x89\x66\x72\xa9\x1d\x29\x03\x83\x1d\x8b\x84\x2f\x6d\x4d\x2c\xb3\x7f\x73\x79\x6d\x76\xd7\x10\x2a\xb8\x5b\xd8\x4c\xe0\xce\x67\x2a\x97\x09\xcf\x05\x6e\x27\xe5\xb5\xb0\xf9\x30\x8a\x8a\xef\x0a\xcb\xb3\x2b\x41\xdb\x7a\x7a\x7e\xb2\xd7\x77\xe9\x12\x12\x69\xb6\x8d\xc4\x22\x3b\x17\x39\x81\xc0\xb2\x00\xfd\x8c\x3d\x05\xd7\x7f\xf1\xf7\x65\x76\xcd\x73\x81\x51\xbe\x08\xf0\xc1\xd7\x21\xd5\x1c\xdc\x1c\x8e\xf7\xfe\x20\x12\xb5\xd3\x0f\x86\x3b\x55\x89\xf9\x93\xfe\x12\xf0\x57\x0b\x9d\xbe\x15\x98\xa5\xc3\x0a\x64\x49\x40\x1a\x41\x45\x2a\x5b\xf2\x6a\xc8\xd8\x1e\x41\x4f\xe1\x13\x5f\x08\x04\x4e\x99\x9f\x5c\xc3\x4f\x72\x0e\x22\x73\xf6\xe6\xb3\xe0\x0c\xbb\x47\xd6\x7f\xf6\xc2\xd7\xd9\x39\x3d\x3f\x39\x7e\x75\x3a\x62\x0f\xbe\xee\xe3\x5f\xf6\xe3\x0f\x87\x23\x76\x78\xf8\x00\x3e\x3e\x30\x1f\xbf\x80\x8f\x5f\x98\x8f\x5f\xc2\xc7\x2f\xcd\xc7\x87\xf0\xf1\xa1\xf9\xf8\x15\x7c\xfc\xca\x7c\x44\x08\x5f\x9b\x8f\xdf\xc0\xc7\x6f\xcc\xc7\x6f\xe1\xe3\xb7\x23\x76\xf8\xe0\x00\x87\x38\x30\x9f\x0f\xf1\xb3\x19\xef\x01\x8e\x77\x68\x06\x7c\xf0\x45\x9f\x52\x62\x9c\x99\x3b\x6a\x25\xcd\x74\x5f\xbe\x38\x1d\xb1\x2f\x01\xd0\xc5\xdb\x97\x23\xf6\x10\x00\x5d\xfc\x74\x76\x7a\x3a\x62\x0f\x11\xd2\xcb\xd7\x67\x23\xf6\x10\x21\x3d\x7d\x63\xbe\x87\xa9\x9f\x3f\xfd\x65\xc4\x1e\xc2\xd4\xcf\x4f\xdf\x9c\xbe\x18\xb1\x87\x30\xf9\xd3\xa7\x3f\xfe\x74\x31\x62\x0f\x61\xfa\x2f\x9e\x9a\x01\x1e\xc2\xfc\xff\xf3\xf4\xec\xe5\x88\x7d\x09\x0b\x78\x7c\x7c\xf2\xf3\xf9\xab\xe3\x93\xd3\x11\xc3\xbf\x7f\x3e\x7f\x65\x3f\x9e\xc3\x87\x60\xaa\xb3\x52\x40\xf2\xbf\x8b\xe3\xc7\x23\x06\x73\xfd\x7f\x47\xec\x1b\x98\xdc\xdb\x11\xfb\x06\x31\x3d\x62\x5f\xc1\x4f\x67\x23\xf6\x0d\xcc\xf5\x62\xc4\xbe\x81\xd9\xfd\xc7\x88\x7d\x03\x3f\xbd\x1e\xb1\x6f\x60\x8a\x4f\x47\xec\x6b\x58\xc3\xcb\x11\xfb\x1a\x7e\x32\x83\x1f\x84\x83\x4e\xe4\x12\xf2\xff\x9e\x1c\xbf\x3a\xff\xf0\xec\xe5\xc9\xcf\x23\x86\x48\x36\x5f\x54\xff\xb6\x9f\x8f\x47\xec\x2b\x18\xc0\x2c\x01\x06\x78\x32\x62\x5f\xe1\x8e\x8d\xd8\xd7\xd0\xe6\xc7\x11\xfb\x1a\xa6\xfe\xd3\x88\x7d\x0d\x13\xfd\x7f\x46\xec\x6b\x98\xe8\xcf\x23\xf6\x35\x74\x7f\x36\x62\x5f\x7f\x45\x1c\xf4\xad\x80\xc7\xa3\x28\xc0\x7f\xb1\x48\xbd\xbd\x70\x2a\xc0\xb9\x48\x5c\x43\x21\x5f\x08\x41\xc4\x56\xa4\xee\xa0\x84\xcc\x63\xc1\x0e\x0f\x10\x96\x65\x72\x86\x13\xb2\x85\x90\x8b\x5c\x50\x62\x68\x28\x98\x20\x0d\x87\x30\xa7\x77\x6c\xd8\x23\x78\xe3\x67\x4a\xcb\x72\x0d\xe7\x69\xc8\xd8\xab\x7c\xa9\x68\x5a\x00\xc2\xf2\x42\xb5\xbf\x28\xe5\xb4\xe4\x73\xc8\x20\x6d\x33\xbe\xd2\xfc\x78\x5e\x0a\x9e\x9a\xf3\x8c\x89\x69\xd6\x76\x62\x18\xcf\x06\x6e\xe3\x12\x93\x97\x41\x47\xcc\x3e\x21\x0a\x9d\xaf\xfb\x9e\x1d\x03\xeb\x20\x06\xcd\x20\x72\x38\x4b\xe8\x75\x6a\x76\xff\xc5\xc5\xe9\xd9\x88\xe1\x99\x3a\x7d\x71\x61\x3f\x9e\x9d\x5e\xbc\x3e\x7b\x11\xfc\x85\x1f\x83\x6d\xce\xc0\x03\x8c\xfd\xe7\x88\x7d\x0b\xdb\xf3\xcb\x88\x7d\x03\x1b\x76\x32\x62\x5f\x01\x65\xbd\x19\xb1\x6f\x60\x33\x1e\x8f\xd8\x57\x48\xd4\x23\xf6\x35\xb4\x79\x3e\x62\x5f\x7f\x6d\xc1\x9d\xea\xc4\x40\x22\xaa\xfe\x02\xb6\xd6\x10\x35\x7e\x7a\x75\xf6\xf4\xc5\xc5\x87\xf3\x93\xb3\x53\x73\x52\xbe\xa4\xef\x2e\x0c\x7f\xc0\x3f\xce\x4f\xce\x5e\x3e\x7b\x46\xa4\x76\xf8\xe5\x43\xfa\xee\x99\xff\x0b\x8a\x81\x8e\x18\x1e\xfb\xc7\x67\xee\x23\x56\xf1\x1c\x31\x6c\xf5\xf4\xc5\xb9\xfd\xf8\xd3\xcb\xe7\x66\x26\x30\xe7\x57\xc7\x3f\x9e\x7e\x78\x6d\xa6\x03\xa8\x78\xf5\xa3\xff\xfc\xe4\xf4\xd9\xe9\x85\x61\x03\x5f\xd1\x5f\xf6\xe3\xe9\x8b\x27\x23\xf6\xc5\x43\xd7\xfd\xc9\xcb\xb7\x2f\x46\xec\x8b\x2f\x11\x40\xe5\x2f\xf7\x19\x00\x03\x7a\xb0\xc5\x97\x80\xd7\x33\xe4\x0a\x5f\xc0\x8c\x9f\x9d\x1a\xc9\xe1\x0b\x40\x2f\x55\x4e\x34\xab\xfc\xd2\xa2\x12\xeb\x10\x9a\x13\xf1\xea\x60\xc4\xbe\x85\xc9\xfc\xfc\xea\x70\xc4\xbe\xfd\x1a\x3f\x3e\x18\xb1\x6f\xbf\xc1\x8f\x5f\x8c\xd8\xb7\xdf\xe2\x47\xc3\x40\x0f\x0e\xf0\xb3\xe1\xa0\x07\x87\xf8\xd9\xb0\xd0\x83\x07\xf8\xd9\xf0\xd0\x83\x2f\xf0\xb3\x61\xa2\x07\x78\xf2\x5e\x19\x2e\x7a\xf0\x10\x3f\x7f\x78\xf5\xec\xf5\xb9\xf9\x9b\x46\xfb\x70\xfc\xe4\x49\xf8\xe7\xf3\xa7\x2f\xf0\x77\x1a\xf7\xc3\xf9\xeb\xc7\x17\x67\xc7\x27\x17\xd1\x77\x17\xc7\x86\x22\x0f\xbe\xb2\x9d\x5e\x3f\xbb\x78\xfa\xea\xd9\x7f\x84\xdf\x3d\x79\xfa\xe6\xe9\x93\x53\xc3\xca\x0f\xed\x37\xa7\x27\x4f\x9f\x1f\x3f\x33\x5f\x1d\xd8\xc9\x9c\x9e\x3d\x7d\xf9\x84\xbe\xb9\x57\x29\xf5\x36\x17\x69\x06\xb2\x86\x32\xa8\x3c\x7e\xf3\xf4\xc7\xe3\x8b\xd3\x0f\x86\xbb\x8e\xd8\x21\x51\xab\xfd\xf6\x87\x97\x67\x6f\x8f\xcf\x0c\x24\x24\x6c\x2c\xb4\x66\xfe\x44\x0e\xf5\xfa\xd9\x33\x47\xa0\x87\xc8\xbe\xde\x3e\x7d\xf1\xe4\xe5\xdb\x0f\x2f\xdf\x9c\x9e\xbd\x79\x7a\xfa\xd6\x7c\xff\x00\xa9\xcf\x6c\xe7\x8b\xd3\xf3\x73\xa0\xa9\x07\x78\x57\x05\xdf\xe2\xd6\x3f\x38\xfc\x3a\x94\xe1\x9e\x06\x62\x38\xf9\xa0\x9b\x37\x80\xb7\xf5\x6f\xbb\x79\xad\x07\xc3\x51\xec\x82\xfe\xaa\xb4\x85\x62\x7c\xc6\x19\xc3\x29\x7d\xc0\x95\x5a\x2b\x2d\xe6\x28\x67\x41\xda\x27\xab\x3c\x82\x8e\xde\xfd\x1b\x13\x3f\x8c\xb6\xa6\x86\xe8\x47\x3e\xe7\x6f\x79\xa6\x29\x83\xfc\xde\x95\x58\x43\x72\x96\x3d\x04\xdd\xf7\xa9\x58\xec\x2f\xcc\x66\x88\xaf\x24\xc5\xa6\x29\x50\xd6\xa0\x4d\x73\xb0\xb5\xdb\xa2\x49\x3c\xab\x64\xb7\xc2\xdc\x82\xf1\xfa\x29\xe3\x15\xcd\xc6\x8f\xf9\xea\xf8\xfc\x7c\xd3\x80\x50\xc6\x34\x1a\xed\xdc\x97\xcb\xb0\x31\x3f\xf0\xc2\x5d\xf0\xa9\x11\x36\x3d\xe8\xb0\xfe\x50\xa0\x9f\xb5\x9d\x9c\x13\x66\x7b\xbd\xa2\xdb\xa5\x87\xb9\xc5\x34\x53\xb9\x2a\x9a\x26\xfa\x44\xae\x8a\xdb\x4d\xf5\xae\x65\x36\xb6\x4f\x96\x48\x44\xcb\x1a\x4a\x2f\xe4\x85\xbc\x05\x46\x5d\x8d\xac\x3f\x68\x86\x63\xa9\x35\x25\x12\x8a\x26\xf9\x18\xbe\xff\x93\xe7\xe9\x0b\x86\xb8\x69\x42\xd2\xd9\x86\xda\x20\x34\x5d\xcc\xe8\xe6\x7e\xdf\x65\xbe\xf5\xc2\x1f\xb7\x4c\x64\xb4\x83\x36\xc7\x25\x67\xfb\x40\x95\x13\xff\xd9\xc3\x6b\x83\x00\x27\xf3\x71\xd2\xe9\x33\xf8\x70\xae\x65\xc9\xa7\x22\x8c\x6d\x7a\xe5\x16\xff\x1c\xd7\xce\xd4\x72\x8c\x21\x89\x80\x0c\xc3\xd7\x50\x2b\xce\x5e\xf0\xf3\xf3\x9f\x82\x54\x76\x81\x8e\x06\x33\xb8\x93\x4e\x38\xa7\xb4\x8f\xbc\x60\xb2\x4c\x45\x09\xbe\x0a\xa8\x5d\x45\x1b\x4b\x22\x8b\x82\xd2\x4e\x2e\x4a\x69\x96\x10\x5f\x49\xb5\x29\x85\xfa\x7f\xec\xf0\x94\xd2\x12\x98\x55\xd5\xda\x7b\x4b\x4a\x9f\x88\x84\xa2\x45\x69\xfd\xf5\x14\xab\xd1\xbf\x0e\xd2\xc5\xbe\x9d\xdb\x3e\xe8\xd6\xdd\xb8\x56\xf5\x9f\x8a\x89\xf2\x8e\xaf\xb5\x39\xd0\x90\xfe\x07\xb0\x19\x60\x50\x81\x79\xdc\xaa\xae\x01\xd0\xab\xa7\x5c\xb8\xaa\x54\x1e\xc2\xb0\x1a\x0f\xc7\x34\xe8\xc3\xe8\xef\xae\xc4\xfa\xfd\xbb\xc3\xf7\xbd\x96\x4c\x30\x6d\x53\x4b\xb8\x16\x53\x09\xa1\xcd\xa8\xa7\xdb\xde\xd0\x1d\x33\x76\xc4\x3a\xf6\x73\x67\xa7\x9e\xc7\x8b\x85\xe0\x25\xe9\xf8\x3b\xfe\xaf\xdd\x7a\x9b\x33\x68\x63\x19\x3b\xee\x8f\xdd\xfa\x9e\x9b\x13\x63\xd6\xd8\xc1\x4f\x3b\xf6\x02\xfe\x84\x9e\x26\x1d\xf7\xc7\x6e\x7d\x4f\x8b\x44\xa6\xd4\xd5\x7e\xde\xad\xe7\xf3\x4c\x25\x22\xcf\x79\x21\xe4\x12\xa6\x1c\x7d\x11\xa8\x68\x9f\xd1\x51\xf2\x7d\xfb\xee\x98\x8d\xd7\x2c\xcd\xd4\x22\xe7\x6b\xfc\x8a\x75\xb5\x5c\xc0\xbb\x0f\xee\x87\xde\xa6\x43\x66\x27\xb3\x7e\xe2\x3c\x89\x6d\x1a\xa0\x7f\xb0\x2c\x1d\xb5\x12\x7a\xe3\x56\xf7\x89\x8b\xdf\xe8\x51\xb8\xe7\xac\x3b\x91\x85\x56\x7d\x96\xc8\x5c\x96\xaa\xcf\xb2\x39\x9f\x0a\xd5\xeb\x80\x79\x79\xe7\x71\x1c\x1d\x44\xc3\x60\x6d\x04\x86\x04\x72\x3b\x80\x76\xaf\x22\x78\x6e\x03\x6f\x07\xcb\x9e\x8e\x08\x96\x3b\x32\xb7\x83\xe5\xc8\x2f\x02\xe6\x89\xf2\x96\xd0\xe0\x14\xc4\xa0\xf0\x60\xdc\x0e\x4e\x44\x9a\x11\x38\xf3\xcb\xb0\xf3\x11\x32\x43\xb5\x12\x5a\x9d\x33\xd2\x53\xa3\xc3\x73\x3d\x98\x96\x83\xb9\x4c\x45\x67\x74\x8f\xb1\x77\xb7\x41\x37\x38\xad\xc3\x6c\xde\xc1\x27\xd6\x29\x64\x21\x6c\xf2\xaa\x01\x65\xae\xca\xc5\x44\xdb\xcf\x70\x5f\xc3\x1f\x58\xdc\xb9\x83\xe9\x62\xcd\xc5\x75\x9c\xeb\x1f\x0d\x8b\xd7\x74\x4f\xcd\x78\x72\xf5\xd7\xb7\x33\xb1\x2c\x33\xa5\xb3\x64\x78\x59\x90\x1d\xa9\x13\x7c\xea\x98\x71\x2f\x3b\x23\x23\x15\x48\xec\xeb\x35\xda\x05\xbf\xce\xa6\x5c\xcb\x72\x98\xf3\x62\xba\xe4\x53\x31\xf2\x5d\xf1\xe2\xb9\xec\x88\x62\xb0\x54\x97\x1d\x76\xf4\x3d\xbb\x84\xe9\x5f\x76\xfa\x18\x99\x00\xdf\xb8\x09\x5f\xc6\xc3\x42\xc3\x11\x7b\x92\x29\x4c\x9a\x50\xac\x69\x01\xa5\xc8\xc1\xdd\x67\xbe\x2c\xcc\x4d\x1e\x4e\xdb\x61\x05\x26\xac\xd4\x72\x8e\x21\x71\xf7\x8f\x73\x4d\x29\xd9\x00\x46\xd4\xc7\x62\x2f\xe8\x03\x8a\xfe\x4d\x7d\x82\x49\xbb\x4e\x28\x55\x35\xf4\xc2\x4a\xeb\x9d\xa8\x40\xe8\x20\x53\x83\xb8\xf6\xe7\x1d\x88\x83\x52\xd5\x75\xc6\x52\xa2\x41\x84\x75\x9e\x4e\x98\x12\xba\xcf\x96\x45\x2a\x29\x9c\xdb\x3f\xf9\x8f\x73\x3d\x70\xf5\x3e\x07\xdf\x3f\x39\x7d\xc6\x4a\x31\xe7\x0b\x9f\x5b\xcc\xae\x30\x9a\x2b\xcb\x8a\x54\x88\x14\x8b\x9a\x84\x45\x4e\xc3\x95\xd1\x7a\x3e\xcd\x2a\xce\x85\x66\xab\x99\x70\xc9\xef\x6d\xbd\x56\x9e\x68\x85\x09\x3c\xcc\x58\xf0\x95\x79\x3b\x9b\x2f\x52\x43\xc3\x45\xa2\x6d\xdb\x68\x72\xe6\x25\xad\x06\xab\x19\xd7\x77\x98\x5f\x07\xdd\x67\x70\x6a\xef\xdc\x5f\xac\xf3\xcd\x60\x9c\xc1\x99\xa3\x87\xf3\xe0\x4a\xac\xed\xa9\x3b\xb1\xe9\x58\x67\xf5\x92\xb5\xf8\x96\x4e\x1b\xcf\x1b\x23\x67\x9d\x21\xfe\x63\xe7\x90\x7c\xbc\x00\x8b\x8f\x91\x52\xb3\x9b\x61\xd8\x18\xa6\x30\xb4\x8d\x8f\xd3\x94\x1d\x3e\xf8\xc6\x3e\xac\x96\x05\x18\xd8\x44\x1a\x86\xb1\x2b\x57\x97\x2f\x02\x14\x2c\x61\x38\xf4\x6a\x89\x48\xfb\x80\xaa\x12\xac\xc1\x41\xa9\x48\x42\xb5\x41\xf5\xe4\xfb\x7f\x8a\xaf\xd5\x90\xb1\x2e\xc8\xd4\x2b\x59\x5c\x76\x34\x54\xd8\xc1\x78\x57\x23\x31\xe7\x5c\x4f\x64\x39\xa7\x22\x3b\x00\xb6\x1d\x9c\x1d\x90\x12\x99\xc1\xee\xc7\xd5\x11\xcc\xd4\x21\x89\xb1\xc1\xba\x37\xee\xf5\x3a\xf7\x18\xb3\x64\xb1\x4c\xb3\x71\x2e\x06\x63\x91\xe7\x03\x65\x6e\x8c\x9d\x49\x83\xae\x1c\x78\x7e\x0c\x4a\x81\x2f\xa0\x11\xca\xd7\x06\xac\xdc\x37\x40\x89\x94\x97\xa5\xfd\xf4\xfa\xec\x99\x8d\x31\x77\x6f\x4b\xd3\x90\xc1\xe8\x43\xc6\x4e\xe7\x0b\xbd\xb6\x5e\x8c\x66\x09\x85\x64\x34\x4d\x68\xe8\x48\x3a\x15\xea\x4a\xcb\xc5\xa0\x90\xda\x65\x68\x86\x85\xdc\x7a\x09\xcd\x1c\x04\x13\x61\x46\x93\x54\xf6\x91\x66\x4e\xff\x14\x73\xa5\x80\x4f\x76\x02\x9e\xdb\x8c\xb3\xb7\x62\xec\xd8\xc7\x8b\x60\x62\x43\x48\x99\xa3\x28\x67\xce\xea\x8b\xa1\x2c\xa7\xfb\x17\x67\xfb\xe1\xe4\xd5\x7e\x74\x16\xf0\xc3\x13\x94\xfa\x0c\x32\xa2\xb6\xac\x14\x7f\x5f\x66\xa5\x50\x86\x00\xe6\x99\x52\xb0\xe3\xd6\x3d\x6c\x09\x55\x02\xde\xce\x04\x65\xa2\xb1\x60\x31\x12\xdd\x1c\x3f\x25\xc0\x04\x8a\x8b\x04\x5c\x51\x2e\x7a\xad\xc5\x7c\x01\xbf\x71\x75\xe5\x0d\x9b\x66\x27\x82\x91\x2c\xc0\x6c\xc2\x0a\x91\x08\xa5\x78\xb9\x1e\x62\x01\x4d\x5b\x53\x85\xcd\xf9\x1a\xd2\x04\xab\x19\xf9\x74\x84\x00\xcc\xf4\x85\xd2\x54\xe8\xc4\x82\x4b\xc1\x43\x47\x33\xcc\x27\x63\x50\x1a\x56\x99\x46\xba\x6e\xe4\x18\xc4\xde\xc5\x8d\x16\x85\xc2\x42\x55\x54\xe4\x86\xed\x45\x78\xdb\x0b\x27\x01\xb9\x22\x83\xbf\xb5\x0c\x66\x82\xd2\x76\xd4\xd9\xd1\x9e\xdf\xff\x01\xc8\xbb\x3b\x93\x5c\x20\x47\xb3\x4e\x39\x1d\x77\x0f\xbf\xea\x33\xfc\xff\x1e\x08\x34\x00\x0d\x69\xf0\x22\x26\x34\xf8\x09\xf9\x91\xb8\xa1\x90\xf5\x42\x52\x84\x3c\xfe\xe8\x73\x10\x35\xcd\x14\x24\xf2\xbb\xcd\xd4\x4c\xcd\x86\xed\x20\xbe\xcf\xcf\xc9\xc7\x91\x0e\x73\x30\x51\x18\xa7\xe5\x24\xe3\x6f\x4d\x3b\x18\x26\x45\x08\xb9\xde\xb2\xcc\xbb\xf6\xec\x4c\xa5\x1c\x4e\xf3\x7d\x5e\x88\xf4\xe2\xe7\x5e\xd8\x2a\xcf\x0a\xc1\xcb\xc1\xb4\xe4\x69\x26\x0a\x0d\xaf\x23\x7c\x1a\xf5\xd9\x18\xdc\x4c\x4b\x91\xf6\x1a\x90\xa2\xb2\x5f\xff\x34\x9c\x40\xfe\xe5\x21\x63\x4f\x6c\x62\x2d\x2d\x99\x91\xf0\x9a\x36\xcb\x7a\xdf\xfd\x69\x73\x73\xee\x7e\xb7\xd9\x9c\xc3\x83\x7f\x35\xff\x1f\x7e\x95\x80\x0d\x35\x5c\x11\x0a\x5a\x28\x7d\x7c\x7a\x41\x8f\xd8\x34\x2d\x09\x45\x35\x32\xe0\x82\xe9\xe0\xf1\x39\xeb\x5e\x76\x2e\x2f\x6f\x0e\xbe\x31\x22\x37\xbf\xe2\xec\xaf\x3f\xf5\x86\x2c\x28\x6c\x61\x27\x1f\x03\x01\x07\x94\x00\x10\x00\xf9\x7a\x72\xd9\x71\xdb\xe5\x04\x8a\xc1\x9c\x2f\x06\x36\x71\xbf\xba\xd3\x96\xd1\xc3\x06\xf6\xc8\xfa\x86\x5b\xed\x9b\x4f\x2d\x02\x59\x31\x28\x69\xc5\x90\x7c\x5a\x38\x53\x0b\xf4\xea\x2f\x4b\xbe\xee\x93\xf0\x20\x78\x32\x33\xdb\x81\x2e\x71\x1d\x97\x49\x92\xca\x31\x7a\x59\xc8\x5c\x04\xa0\xb7\xb4\x29\xf7\x29\x10\x36\x18\x89\x52\x6e\xb8\x6b\x84\x75\xe2\x31\x59\xa6\x95\xc8\x27\x43\xac\x4a\xc3\x75\x65\x42\x30\x95\xea\x04\x1c\xa8\x52\x24\x22\xbb\x8e\xc5\xb3\xea\x4c\x20\x51\x0b\x32\xe4\xb0\xa1\x27\xd5\x80\x56\x5b\x88\xd5\xe0\xe2\x1f\x7b\x07\x7b\xa3\x7f\xec\xdd\xdf\x1b\xed\x5d\x5e\x2e\x1f\x1c\x7e\xfb\x60\xaf\xbf\xd7\x77\x7f\x1d\xec\xf5\xf7\x06\xee\xaf\xc3\xbd\xfe\xde\xd0\xfd\xf5\xc5\x5e\xdf\x4f\xd9\x80\x81\xef\x1f\x7e\xf3\xcd\xde\xc7\x8f\x81\x3c\x05\x55\x9c\x06\xb2\x18\x88\x9b\x6c\x77\x29\x3b\x7e\x75\x13\x45\x87\x64\xfe\x96\x5e\x01\xc0\x43\xe1\x6e\x86\x81\x00\x2f\x54\xf5\x6a\x85\x77\xbd\xab\x15\xc2\xcc\x0c\xfc\x35\x80\x59\xcd\x06\xe3\x3c\x2b\xae\xee\x44\x9f\x0d\x87\xaf\x3e\x2b\x00\x6f\x9d\x88\x95\x2c\x83\x74\x7e\x8d\x33\x19\x24\xeb\x24\xbf\x1b\xfb\x7d\x77\x78\x70\x70\xd0\x67\x0f\x0f\x0e\xde\xc7\xc7\xa6\x73\x11\x0c\x0f\xf3\x29\x8d\x1c\x91\x15\x6c\x9e\xe5\x79\xa6\x44\x22\x8b\x54\x35\x72\xb9\x63\xa6\x57\x92\x09\x4c\x50\x69\xa9\xd7\x07\xba\xc8\x09\xe5\xa5\xcc\xf0\x41\x93\x4b\xeb\x41\x8f\xa3\xf9\x2c\x43\x4e\xdc\x82\x52\x40\x66\xc0\xa8\x4f\xa6\x83\xb6\x72\x32\xa9\xe2\xe6\xf7\x89\x14\xbc\xfb\xe0\xe1\xc3\x3e\x3b\xc0\xff\x1b\x3e\xec\x11\x5e\xaa\xa2\x05\x8a\x0c\x74\x1d\x5c\x53\xbe\x3c\x9c\x81\x9f\x90\x69\x33\x58\xf0\x5c\x68\x2d\x3e\x39\x87\xeb\xbc\xb4\xb5\x4e\x50\x69\x68\xa5\x6b\xfb\x8e\xa1\x71\x1b\xf7\x2a\xac\x6b\x58\xe5\x8f\xc8\x94\x30\x91\x94\xe5\x95\xec\xe9\xa4\xd6\xce\x6d\x13\xe5\x0a\x45\x76\x0a\x7a\x8c\x94\x52\x95\x6f\x60\xae\x8e\xa3\x39\x59\xd8\xf0\x62\xeb\x5a\x03\xce\xce\x58\xe0\x4f\x3b\x64\x6f\x5a\x10\xe4\x16\x69\x59\x52\x0e\xde\x42\xbc\x58\xb3\x44\x29\x82\x85\xbe\x3b\x94\xed\xd4\x4d\x81\xd2\x22\xb1\x7f\x39\xfb\xf1\x71\x9f\xfd\xcb\xd9\xd9\x8f\x3f\x3e\x7e\xdc\x67\x46\xd2\x1c\x0e\x87\x3d\xf8\xc4\xe9\x23\xd4\xfd\x32\x30\x01\x1e\x3a\xef\xfa\xab\x90\x6b\xf2\x44\x54\x92\x2d\x78\xa9\x2d\xa5\x28\x2d\x93\x2b\xf6\xcb\xe1\xa1\x01\x35\xd4\x37\x1a\x2d\x55\x4d\x4b\xfa\x0f\xb9\x84\xf5\x2c\x95\x60\x56\x85\x86\x31\x26\x66\x71\x6b\x9f\x3d\xcb\x6e\x38\x32\x7c\x7f\x36\x0c\x5b\xb1\xc0\xc6\x82\x0a\xdf\xa4\x76\xd1\x99\xf3\x65\x85\x97\xee\x55\xb6\x58\x40\x6a\x53\xa6\xe6\x3c\xcf\x19\xc6\x29\x80\xb3\x73\x91\x66\x49\xb0\x38\xc7\x2b\xdd\x05\xd3\x48\x41\xc1\x29\x58\xac\x0d\x53\xc7\x02\x5f\x3b\x13\xbf\xd7\x65\x37\xb0\xf4\xe3\xa5\x96\x73\xae\xb3\x04\x5c\xb9\xb0\x06\xaf\x04\x5b\x9f\x2b\xdc\x66\x49\xc7\x16\xa2\x75\xf3\x59\x2a\x31\x20\x94\x0d\x90\xfd\x0f\xa0\xe2\xee\x1d\x26\xb6\x81\xad\x6b\xef\x2f\x66\xf7\x87\xee\x1a\x2c\x0f\x4d\x15\x26\x1d\x92\x72\x23\x80\xbb\xd9\x0f\x20\x57\xc9\x9d\xe7\xd5\x7e\x07\xc2\xe5\x67\xcd\xd3\x1e\x59\x98\x1a\xc5\x0c\x97\x15\x53\xbf\x73\xba\xcc\x07\x8b\x7c\xa9\x06\xf3\xac\x58\xaa\xc1\xaf\xa2\x94\x83\x5f\xa5\x9c\xdf\x41\xfc\xac\x4f\xc9\x49\x9f\xe0\xbc\xfb\x2a\x5f\xaa\x7d\xa8\x7b\xb4\xff\x9f\xa2\x94\x71\x2d\xa2\xe0\x7c\x3c\x9d\x58\xac\x07\x89\xd1\x36\x76\xa6\x96\xf0\x33\xc8\xa2\x8a\xfd\xf5\x83\x93\x47\x3a\x7e\x74\xe8\x1a\xd4\x1f\x8d\xd0\x90\xdc\x6e\x33\x36\xca\xdd\xa0\x4e\x3e\x31\xe8\xce\x84\x82\x4c\xde\x80\x07\x5b\x72\x5a\x4b\x70\xca\x31\x3f\x40\xe7\x60\xf5\xd0\x13\xd6\x7c\xff\xc4\xae\x25\xea\x80\x90\x3c\x64\x04\x10\xad\xc4\x56\xab\xfd\x74\x4b\x79\x83\x85\xd6\x6a\x4b\x79\xb3\xe3\x52\xde\xd8\xa5\xbc\xa9\x2f\xc5\x43\x8e\x97\x22\xb8\xd2\x03\xae\x32\x5e\x0c\xf8\x7c\x9c\x4d\x97\x72\xa9\x06\x5c\x0d\xf4\x4a\x1a\x09\x60\x39\xdf\xfd\xed\xb7\xb3\x1a\xf9\x94\x2b\xcd\x8e\xcd\x98\xec\xd8\x8e\x19\xc6\x40\x61\x49\xc1\x95\xa1\x3f\x33\x01\x06\xc5\x44\xfd\x8c\x21\x73\xf3\x00\xd4\xad\x03\xa2\xd0\x4f\x33\x47\xa8\xe7\xa0\xa5\xcd\x0d\x0d\x23\xf8\xda\x5b\x6e\x7e\xb6\xae\x8c\x96\xb6\xde\x83\x9e\x89\x79\xe3\xdd\xf3\x56\x5c\x76\xf2\x9c\x95\x42\x2d\xf0\x05\x03\xeb\x1a\x8c\xd7\x5a\xb0\x6b\x51\x2a\x1b\x08\xa3\xc1\xc5\xbf\x3e\x94\x3b\x5d\xa5\x98\xf2\x32\xcd\x85\x52\xde\xdb\x03\xeb\xed\x56\xf1\x32\x96\xf9\xee\xea\xd3\x06\xc9\x48\x97\x99\xd2\x5c\x8b\x10\x27\x51\x8d\x0b\xc3\x8e\xcd\x20\x6c\x85\xc5\xe4\xa0\xe0\x5b\xac\x10\x42\x57\xa2\x3c\xdd\x1f\xa3\x21\xc6\x99\x32\xac\x66\x68\xc8\xd8\x0f\x16\x87\xce\x1d\x18\xe2\x18\x42\xa8\x43\xc6\x5e\x2c\x73\x70\x4e\xe2\xce\xe2\xd5\xb4\x5e\x43\xb0\x38\xd4\x9d\x56\x5e\xe7\xa9\x2d\xab\xc6\xd5\x90\x98\xd8\xfd\x66\x70\xf8\x90\x19\xa6\xcf\x0e\xbf\x8a\x45\xab\x9e\x5b\x31\xf8\x13\x16\xeb\x06\xdc\xb0\x3a\x32\x7c\x8d\xfc\xea\x1a\xef\xfc\x60\xda\x65\x69\x21\x75\xe2\x5b\xa5\x71\x9f\x88\xd6\x33\xb3\x2d\x95\xf9\x39\xe1\x00\xd4\xe0\xb7\x50\xab\x6c\xbc\x6b\xcf\xcd\x53\x85\xdb\x64\xba\x56\x2c\x77\xaa\x70\x27\x3f\x01\xa3\x5b\x95\x99\xe1\x6f\xad\xd2\x4a\x6d\xa6\xd0\xe1\x13\x49\x51\xae\x36\x30\x4c\x45\x4b\x9c\x0d\x4b\xb3\x52\x60\xc9\x08\x2a\x06\x8d\xfe\x9b\xad\x93\x4b\x45\x72\xf8\xe0\xae\xef\xf5\x06\x7e\x76\x16\x6c\xac\x99\xd9\x65\x47\x85\x9a\xf5\xa0\x82\x63\xf4\x52\x35\xc7\x7f\x69\xa4\x5a\x23\xc7\x5a\x42\x7e\x72\x7a\xe2\xca\xf1\x40\x66\xf1\xc3\x07\xc1\xf4\xaf\xb3\x52\x16\xe6\xbd\x7a\xd7\xd9\xff\xa3\x73\x71\x7a\xf6\xbc\x33\x62\x1d\xb0\x87\x0d\x1e\x3c\xfc\x0a\x5f\x8a\x98\x17\xa0\xf6\xb4\xb6\xb2\x60\x30\x34\xbb\xa6\x6c\x33\xaa\x1f\x6b\xa8\xec\x34\x0d\x4b\x19\x4c\xf8\x3c\xcb\x77\x97\x3f\x2a\x1e\x27\x9d\xbd\x27\xe2\x6f\xfc\xcd\x92\x9d\xf3\x42\xb1\xe7\xb2\x90\x7b\x7d\xb6\x77\x6a\x58\xb9\x2c\xec\xdf\x3f\x94\x42\x98\x8f\x7d\xb6\xf7\x5c\x14\x39\x34\xb9\x20\xaa\xf5\x0a\x9c\xce\x5c\x16\x12\x95\x90\x55\x35\x29\x69\x66\x89\xb3\xc2\x84\x6b\x15\x26\x80\xa3\xc4\x4b\xbb\xb3\x12\xf9\xf0\x61\x1f\x92\x57\x35\xe0\xd7\x57\xf3\xcc\x0a\xb6\xc8\x6e\x44\xae\x2a\x83\xce\x25\x8a\x79\x77\xd3\x14\xf0\x42\x67\x18\x3b\x96\x36\x6a\x8b\xe3\x31\xdc\x6b\x37\x98\x43\x29\x3e\x8d\x09\xe4\xc1\x97\x07\x7d\x66\xff\xd3\x68\x05\xf1\x63\xdd\xd1\x0a\x32\x93\x73\x31\xb8\x12\x6b\x35\x40\x1f\xd6\x4f\xac\x7d\x36\xe0\xf7\x85\x33\x06\xfa\x52\x97\x9e\x68\x5c\x29\x77\x34\x1d\x43\x41\x52\xd7\xcd\x3d\x4c\x4d\x77\xe7\xf0\xfe\xe6\xc2\x96\x09\x54\xa8\xbf\x20\xe1\xc7\x70\x5f\xd7\x15\xe5\xce\x37\x17\x14\xdc\xc9\x03\x68\x95\x41\x70\x06\x1e\x27\x57\x62\x6d\x4b\xb4\xdd\xd5\x25\x27\xe6\x0e\xc7\x10\xbc\x24\x27\x95\x74\xcd\x32\x0a\x50\x80\xfc\xdf\x41\x3d\x53\x1b\xcd\x68\x93\x90\xfb\x33\x5a\xc6\x35\x06\x37\x67\x14\x8f\xd3\x89\xa7\x22\xc9\x8c\x44\x13\xc0\x9b\x89\x1b\x6e\xbf\x46\xcd\x00\x78\xd7\x11\x20\x1f\x24\x41\xe0\x6c\xa4\x44\x4d\x1d\xe3\x04\x2a\x6b\xd8\x72\xd5\x62\x7d\x30\x42\x9f\x74\x4f\x64\x87\x8f\x80\xff\x00\x63\x4e\x8c\x70\x65\x41\x89\x9b\x45\xce\x0b\x0c\xb3\x25\x25\xcb\xc4\x48\x64\x10\xfc\x20\x58\xc5\xf8\xf5\xec\xed\x59\x91\x96\x8d\x32\xef\x39\xe8\xbc\x59\xb0\xb1\x81\xb1\xe6\x1f\xa1\x91\x86\x22\xa4\x73\x3d\xf8\x79\x6f\xc4\xf6\x2a\xde\xdb\x7b\xfd\x7a\x5b\x7c\xa6\x3e\x33\xad\x5f\x1d\x9f\x9f\x37\x35\xf9\xc9\xfc\x78\xd9\xf9\xe9\xf4\xd9\xb3\x97\x97\x97\xc5\x65\x67\xcf\xb7\xf9\x68\xa9\x6e\xce\x6f\x06\x88\xb9\x81\x25\x82\x9d\xa9\xcf\xf9\xf2\xb1\xc3\x83\x03\x50\xff\x06\xbc\xf3\x39\xbf\x61\x94\x68\x03\x2a\xfc\x3c\x39\x39\xef\xb3\x97\xe7\x27\x7d\xf6\xea\x39\x6c\xc8\xf1\xab\x73\x4f\x95\x63\x31\x81\x72\x71\x98\x69\x85\x2d\x17\xd1\xc9\xf1\x8f\x0b\x24\x31\x37\x79\x91\x66\x1c\xf9\x08\x2f\xc5\x60\x62\x3e\x7d\x62\x56\x92\xc8\xe2\x5a\x94\x3a\x08\x4c\x22\xca\xca\x4a\xf6\x83\x21\x55\x1f\xc2\x3c\x64\x5e\x95\x90\x0b\x1d\x9b\xb1\xe2\x1a\xed\xb6\xb8\x78\xb0\x12\xcd\xc9\x24\x47\xae\x3c\x9f\x42\x21\x52\xf5\x58\x72\xfe\x49\xc8\xa5\xb8\xcb\x0b\x45\xd9\xa7\xd0\x72\xe0\x27\x25\x97\x4a\x0c\xd0\xab\x2c\xc9\xb3\xe4\xea\x96\xef\xfc\x8d\xa2\x22\xba\x1a\xcb\x82\x3c\xd4\x50\xd9\x36\x5e\x6a\x2d\x0b\x06\x83\x35\xdb\x04\xb0\x98\x94\x73\x9b\x30\x47\xfa\x1a\xed\x09\x58\x06\x1e\x0a\x53\xe1\xa1\xdd\xc3\xf9\xc3\x9c\x07\x08\x79\xcf\x33\x63\x7a\x33\x36\x8d\x81\x91\xd7\xe8\x17\x64\x6e\x00\xda\x34\xf0\xbf\xfb\x9c\xe6\x6b\xbe\x13\x29\x9b\x67\x10\x66\x50\xa2\x78\x5b\xc1\x5c\x38\xf2\x5d\x90\x56\x75\xb3\x3c\xe8\xb3\xc3\x3e\x7b\xd0\x67\x5f\xf4\xd9\x97\x7d\xf6\xb0\xcf\xbe\x22\xc7\xae\xe7\x80\x3d\x2c\x4e\x8f\xe3\xc1\x11\x2b\xea\x6f\xc6\x36\x6b\xb2\x6f\xd2\x67\x2b\x7c\xab\xdb\xe7\xe8\x3c\x4b\xcd\xf2\xa3\x1d\x42\xf7\x81\x62\xf0\xcb\xe1\xa1\x43\xa9\xf7\x97\xea\xe2\x2d\x62\x28\xcb\xf9\xf9\x81\x89\xb7\x60\xbf\x1c\x1e\xd6\x06\x08\x29\xc0\xa9\x97\x71\x9c\xae\xad\x3a\x25\x98\xe1\xc8\xd7\xce\xbe\x36\xb7\x31\x14\x94\x0a\x0d\x96\x7e\x9d\xf1\x70\xc6\xfe\xee\xf2\x33\xef\x35\x62\xe0\x80\x1d\x1d\xe1\xfe\x76\x17\x65\x36\xe7\xe5\xba\x47\xed\x83\xe6\x87\x50\x2a\x11\x41\x77\xf9\xf2\x26\xcb\xb3\xe6\x86\x0f\x4c\x43\x0a\x67\x41\x73\x53\x73\xbb\xdf\x43\xd5\xb5\x53\xf9\x67\x91\xf6\x4a\x96\xe9\x00\xb2\x68\x0f\x20\x29\xd2\xc0\xf4\xbd\x03\x75\xc3\x74\xde\xfd\xf5\xf2\x52\x5d\x5e\xbe\xbb\xbc\x7c\xdf\xed\xfd\xe3\xe3\x77\xdf\xef\x5d\x76\x2e\x2f\xff\xfa\xd9\xbf\xff\xcb\xff\xfa\xd7\xcf\xff\xd2\x7f\x34\xfa\xff\xde\xd7\x84\xe1\x33\x31\x5d\xe6\xbc\x64\xe2\x06\x1c\x00\x49\x33\x3f\xe3\x39\x95\x61\x24\x21\x00\xd3\xde\x99\x1d\x85\x6c\x5d\x3d\x5b\x67\x8e\x14\xd4\x2d\xd8\x29\xe7\xa0\xff\xd7\x64\xcf\xe0\x81\x15\x1c\x43\x75\xb4\x64\xa5\x00\xf3\x14\xc9\x20\x49\xa0\xa4\x1a\x86\xfa\x2e\x2a\x2d\xb6\xf7\xbf\x29\xe5\xc3\x70\x2f\xac\xa6\xc6\x15\x5b\x70\x3d\x53\x6c\x02\x9e\x57\x10\xcb\x03\x13\xb5\xba\x11\x19\x28\x3f\x6a\x38\xbf\x9d\x86\xe7\xb6\x48\xff\xdf\xc3\xdf\x87\x76\x22\x7d\x51\xa4\x7f\x0e\xd6\x5b\xd1\x84\x87\xf5\x13\xe3\xe9\xfd\x5f\x76\xc4\x0d\x15\xb0\xa5\x00\xc3\x40\x95\x49\xfa\x1b\x9c\xdd\x1f\x4d\x88\xfe\xd3\x6b\xaa\x96\x23\x6e\x16\xd6\xa3\xc3\xdb\x6b\xd4\xb2\x84\x07\x9d\x0d\x24\x76\x29\xee\x20\xc9\xa4\x43\xf1\x82\x4f\xff\xc8\x87\x1b\x85\xdb\xee\x43\x6d\xe2\xdb\x3d\xde\xdc\x2d\x54\x03\xb1\xd3\x03\x2e\xea\xe6\x39\x69\xed\x31\x87\x83\x45\xad\xab\x0f\xb9\x05\x57\x6a\xc0\x73\x3d\xc0\x77\xcd\xdd\x1f\x73\x15\x05\x74\x28\xcd\x79\x9d\xa5\x19\x0d\x7c\xe8\x0f\x87\xc3\x6f\x5d\xf4\x2a\x25\xf0\x69\xbd\x6b\xc8\xe1\x7b\x8d\xba\xc3\x72\x59\x40\xd6\x21\xf4\x3b\xcd\x0a\xc6\x9d\xc0\xaa\xf9\xd8\x3b\xe2\xaf\xe5\x92\xa5\xe8\x29\x6d\xa1\x81\xdf\x0b\x5e\xf2\x97\x1d\xc5\xf6\xd4\x2a\x83\x52\xb8\xd2\xf4\xdc\xf3\xd9\x85\x78\x92\x88\x5c\x94\x5c\x43\x0c\x27\xba\xc2\x16\x52\xbb\xa1\xbd\xc5\x9c\x71\xd3\x95\x65\xa0\xa4\x1b\x0b\xad\xd1\xc8\x68\x77\x51\x89\x50\x0a\x47\x3d\x23\xcc\x8f\x12\x6b\x04\xee\x1e\x54\x66\x94\x5d\x67\x73\x23\x0d\x89\x39\x4f\x9a\x4f\x86\xa3\x3f\x87\x47\x9b\x02\x9a\xbc\xe2\x6d\x75\x2a\x8b\x57\x16\x88\xfa\xae\x4f\xa4\x35\x30\x8f\x54\x4a\x6b\xe4\x62\xe2\xa1\x17\xee\x2d\x6f\x88\x5b\x71\x1e\xe4\x24\x47\xf9\xb7\x2d\x68\x32\x40\xec\x81\xb4\x76\x11\xa1\x81\x05\xee\xcf\xa3\x34\x78\x59\xfe\x5f\x52\xfb\xfd\xa4\xe6\x11\x79\x0b\x5a\xf3\x9d\xfe\x6c\x62\x23\x6a\x83\x77\xea\x9f\x47\x6d\xcf\xcd\x70\xff\x97\xda\x7e\x3f\xb5\x79\x44\xde\x82\xda\x7c\xa7\xff\x33\xac\x0d\x88\xed\xfa\x93\x6b\x42\x00\xec\x1b\x36\x15\x5a\x01\x95\xa1\x54\x04\xcb\xb0\xc3\x93\x13\xec\x40\xd8\xc0\xd4\xdb\xab\xc4\x3a\x4b\x3d\x19\x7c\xd3\xe9\xb3\x77\xee\x53\xa7\xe4\x2b\x1f\x00\x89\xd6\x28\x57\xea\xc2\x0e\x05\x4f\xeb\x94\x6b\xce\x9c\x27\xae\x0b\x23\x81\x39\xb6\x38\xab\x65\x29\xba\x4f\x61\x81\xe3\x4b\x1c\xf4\xb2\x03\x42\xcb\xa5\x19\x39\x70\x94\x46\x89\x65\x20\x0b\x10\xe5\x74\x29\xaf\x76\x17\x92\x7d\xa0\xec\x26\x0f\x1c\x45\x99\x35\xc2\x64\x1a\x60\x21\x2e\xd6\xcc\x8d\xd9\x30\x1f\xb9\xd4\x8b\xe5\xee\x2f\x9b\x60\x32\x9b\xc4\xca\xb6\xd9\xf8\x1c\x2a\x30\x6c\x65\x3e\x63\x5e\x0e\xc8\x0f\xf3\xd3\x60\xe7\x62\x06\xbe\x0e\xe0\x64\x16\xc8\xb0\xf3\x50\xa5\x49\xa8\x58\xcd\x84\xc8\x07\x73\xbe\x06\xa5\xe0\x80\x97\xa5\x5c\x0d\x6e\xa5\xde\xdc\x8c\x1a\x60\x53\x68\xd7\xa4\x38\x40\x51\x92\x82\x45\x25\xa5\x10\x05\x65\x14\x41\xaf\xc4\x27\xa7\x27\x27\x3f\x3f\x67\xdd\xe3\x05\x96\x9d\x33\x0f\x86\x13\x34\x94\x5a\x0a\xc4\x7a\x65\x56\x77\x21\xfa\xa4\xce\x81\x75\x58\xfc\x43\xa8\x1e\x29\x1e\xc4\x7c\x99\x43\x88\x96\x59\x19\xea\x42\x1b\x19\x98\xcd\xcb\xc1\xb4\x98\x2f\x64\xc9\xcb\x2c\x87\xd0\x7b\x3e\x26\xe6\x35\x93\xb9\x7f\xb4\x80\x70\x7e\x25\xd6\xed\xf7\x43\xf0\xdc\xc6\x5c\x95\xcb\x05\x5e\x15\x88\x0c\x23\xd8\x97\x8a\x75\x73\xa1\x54\xcf\xf0\xd6\x92\x34\xa4\x73\x8e\x6f\x84\x20\x76\x8b\x4c\x5e\x22\xcd\x34\x78\x41\x5c\x67\xfb\x05\x2f\x24\x74\x43\x68\x88\xca\x7d\x3d\x5f\xde\xb4\x6c\xb0\xbc\x16\x83\xf9\x32\xd7\xd9\x22\xcf\x6e\x71\xa5\x06\x9b\x7b\x58\xb3\x58\x7a\x78\xce\x56\x0a\xf6\x4a\x96\x8a\x5c\x73\x73\x6f\xe0\xae\xd0\x76\x40\x0a\x3d\x77\x0f\xb8\xa7\x0f\x6e\x19\xb4\x1c\x1a\x19\x17\xdc\x91\xe4\x8a\x4d\x6c\x55\x4f\x78\x03\x55\xdf\x3e\x40\xad\x7f\x02\xd7\xac\x31\x4b\x7b\x23\x45\x6c\xdc\x9e\xef\xdf\x35\xa3\x4c\xc9\xc1\x83\x83\x07\x0f\x6c\xa8\xad\xff\xdb\xcf\x16\x3f\x0c\x72\x99\x5c\x89\xd4\x4e\x36\xb4\x1e\x3b\x4e\xe3\x66\xde\x7d\xf2\xf2\xe4\xbc\x59\x1b\xf9\xf4\xfc\x25\x8c\x40\xee\x57\x81\x47\x18\xa6\x23\x2c\x79\xa1\x72\x0a\x3b\xec\x42\x2a\xd6\x69\xc9\x17\xb3\x2c\x81\x74\x85\x2a\x04\xfa\xfa\xe2\x87\xc1\x37\xf6\xbc\x28\xa6\x96\x8b\x85\x2c\x6d\x14\xad\x54\x6d\xbe\xdc\x82\xe1\x52\xd0\x93\xa0\xb0\xc1\xe3\x11\xea\x29\x1d\xa9\xf7\x03\x66\x1c\xa4\x1e\x9d\xcd\x3d\x19\x81\x46\xd6\xad\x1d\xad\x0c\x3e\xf4\xb5\xcd\x49\xd9\x86\xf9\xe8\x2c\xb9\x42\x7d\x18\xae\x63\x59\x80\xdf\x97\x91\xd6\xd0\xbd\xc6\x08\x16\x57\x46\xce\x13\x45\x2a\xc0\xfc\x07\xad\x9d\x0c\x27\xa6\x3c\x59\x33\xee\xd9\x56\x40\xa9\x60\x40\xc3\x02\xf1\x77\xf6\x5f\x6c\x72\xd5\x31\x2c\xe8\x3e\x7b\x0a\x80\x9b\xdc\x18\x75\xdd\x87\x31\x70\x24\x2e\x07\x89\xba\x9b\x3f\x3f\x04\x99\xd5\x02\x7b\x21\x50\x13\xb2\x1d\xa9\x99\xc0\x18\x53\x6b\xe2\xad\xba\x11\xa5\x32\x59\xce\x45\xa0\xec\xb1\xd3\x19\x18\x3e\x77\xf7\x39\x01\x3f\xca\xb3\x42\x0c\x62\xa7\x06\xa8\xd1\xce\x4e\xce\xcf\x91\x8f\x82\xd3\xb8\x5e\xbb\x54\x76\x2e\x31\x95\x99\xce\xa6\x24\x3b\x2e\xdf\x3b\x3b\x32\x80\x6d\xe6\x1f\x8c\x01\xee\x36\xe7\x2d\x72\x7d\x7a\x1b\x72\xc6\xf8\x5a\xf4\xed\xd9\x87\xb6\xe7\xbc\x5a\x8e\xd5\x72\xfc\xcf\x9e\xe7\x8a\x52\xe2\xbc\x36\x1b\xa9\xd7\xa4\x82\xb4\xe5\xb7\x79\x9a\xb2\xc5\x72\x9c\x67\x6a\xb6\xaf\x96\x63\x95\x94\xd9\x58\xec\x2f\x0b\xf7\xd9\x25\x95\xe2\xd0\x1b\x33\xfb\xf3\x82\x89\x1b\xc8\x8f\x30\xb5\xfe\x49\x61\xd6\x9c\xe5\xf8\x7c\x39\x6e\x29\x5a\x29\xc7\x80\x8f\x52\x7d\xa0\xb4\x4a\x41\x52\xc6\x63\x3f\x99\x3e\x73\x33\x40\x39\x26\x9c\xd2\x5c\xe8\x99\x4c\xe1\xb9\xd5\x3c\x13\xcc\xc1\x4c\x9e\x2c\xbe\xcc\xb4\xb5\xc3\x50\x90\x0a\x24\x70\x96\xcb\x64\x26\x52\x7a\x4e\x8a\x12\xf6\xa2\x90\xac\x10\x80\x1f\x03\x68\x25\xcb\x72\x4d\x89\x68\x0d\xf2\xc8\x87\x07\xad\x3c\x71\x0d\xeb\xb0\x82\x82\xad\x8c\x2d\xc7\x7f\x03\x42\xb1\xf1\x7f\x88\x73\x20\x01\xeb\xf7\xcf\xb4\xac\xe3\x6f\xc8\xd3\xf4\xb1\x6d\x10\xd6\x40\x18\xff\xcd\x57\xed\x41\x0a\xa5\x3a\x5a\x61\x6f\xcc\x02\xe7\x2a\xd7\xce\x83\x6a\x9c\x08\xdd\x9f\x22\x4a\xa3\x25\xc7\x7f\x7b\x37\x7f\xef\x4f\x4b\xa5\xd9\xbb\xf9\x7b\xcc\x9d\x85\x43\xf6\x5c\xde\x38\xbb\x79\xe7\x6e\x7b\x30\xdc\x07\xa3\xbd\xcd\x1b\x72\x62\xbd\x1f\x15\x61\x91\x9b\xcd\x0d\xf7\xaa\x5a\x22\x8d\x7e\x06\xbc\xd9\xcf\xe6\xb9\x1d\x0c\x31\x0c\xfb\x39\xe4\x20\xd2\x7b\x1f\x59\xc2\x29\xbb\x1e\xf8\x3c\xd1\xcf\xc8\x41\xaf\xe5\x95\x20\x23\x68\x18\x8f\x5e\xdf\x80\xa0\x18\x85\x1b\x38\xd8\x08\x9a\x58\xdf\x8d\x15\xd4\xa4\xb0\x3f\xe2\x09\x8d\xc8\x3e\xac\x16\xe1\xbf\x7d\x47\x1d\xcc\x06\xbc\x7b\xef\x6b\x46\x34\xb4\x18\x2e\x96\x6a\xd6\x75\x83\x46\x27\xe8\x75\x78\x70\x31\xdc\xff\x6e\xa8\x5e\x56\x00\xed\x8a\xee\x63\xff\x71\x51\x8a\xeb\x4c\x2e\x55\xbe\x66\xa5\x98\x66\x4a\x43\xf6\xad\xeb\x8c\xdb\x42\xf3\x6e\x84\x6e\x6f\x23\xf6\xc3\xb9\x6c\xc7\xbf\x21\x77\xc8\xa4\x77\xd4\x8a\x41\x5b\xc6\xe3\x33\xd3\x2e\xac\x1f\xd3\x79\x5a\x60\x69\x13\x6a\x89\x15\x63\xe8\x0f\x57\x19\x24\x63\x47\x30\x82\xab\xc2\x11\xec\x05\x02\xce\xd8\x77\xec\x20\x02\xfc\x42\x6a\xbf\xde\xb4\x0e\x17\xe0\x29\x23\xeb\x88\x6e\x56\xab\xca\xf2\x0a\x99\x62\xe0\x47\xdc\x72\x90\xdc\x21\x34\x8f\x1a\x6b\x29\x42\xe3\x34\xcf\xd9\x04\x64\x05\x8f\x2e\xc3\x00\xf1\x3c\xa4\x8c\xab\x75\x91\xcc\x4a\x59\xc0\x8e\x0d\x5d\xc6\x42\xe4\xb5\xf8\xf0\xa3\x94\x92\xe4\xf0\xc3\x8b\xb5\x2c\x04\xbd\x1b\x97\x60\xf2\xb2\x67\xfe\x96\xc4\xb6\xb0\xcb\x33\x8b\x1a\x36\x31\x51\xc1\x8e\x0b\xc6\xcb\x71\xa6\x4b\x5e\xae\x1d\x03\x57\x4a\x26\x19\xc7\x72\x8e\x60\x79\x05\xe6\x1d\xa4\x0a\xd9\x4c\xb5\x72\xa1\x3f\xe4\x5c\xe9\x13\x47\xbd\x45\x80\xac\x80\x69\x24\x50\x44\x60\xa2\x45\x69\x69\xd7\x7c\xa1\x02\x64\x43\xb4\xc7\x58\xa0\x02\xd1\xe1\xa0\x95\xa4\xed\x8a\x9b\xc8\x59\xf4\x6b\x13\x43\xca\x76\x33\x82\x21\xd6\xcf\x32\xa5\xbb\x99\x65\xdf\x46\x94\x81\x17\x56\xa6\x98\x11\xe3\x0d\x79\xd0\x46\xc1\x16\xbb\x12\x55\x04\xb2\x4f\xc5\x17\x30\xe7\x3a\x06\xab\x48\x0b\x29\x91\x45\x22\xca\x82\xc9\x65\xa9\x44\x7e\x2d\x28\x05\x88\xb8\x49\xc4\xc2\x72\x4b\xe6\x49\x1d\x88\xd7\x17\x2f\xb5\x65\x14\x95\xd0\x17\x38\x93\xae\x9f\x31\xb8\xc2\x64\xec\xbe\xaf\x62\x68\x7a\xbf\xcb\xde\x77\x83\x6a\xca\xb7\x38\xc3\x70\x84\x3d\x0e\x20\xbd\x1d\xf8\x0f\xc0\x58\x59\x81\x85\x26\x32\x4d\x2f\x1d\x45\x65\x24\x57\xa2\x53\xd2\x1d\xb5\xc6\xaa\x12\x34\x13\xe0\xbf\x46\x7e\x4c\xb8\x46\xe0\x51\xd1\xdf\xe6\x9d\xa9\x4f\x85\x4e\x34\xb0\xea\x5a\x1f\xaa\xa3\x13\x57\x53\xb7\x83\x57\x5b\xbf\xaf\xd4\x2c\x74\x23\xdd\xdb\x8c\xe3\x03\x64\x21\x5b\x44\x5c\x54\x73\xfc\xb3\x8b\xb8\x6d\xa9\x5c\x57\xb6\xbe\x20\xe5\x2c\xc5\xd3\x78\x26\x57\x27\x50\x01\x9a\xfe\x3e\xcf\x7e\x15\xfe\xaf\x0b\x71\xa3\x8f\x9d\xdb\x73\x98\x05\xf6\xdf\xcd\xe0\x66\x0d\xd7\x99\x58\x21\x77\x44\x61\xda\xd5\x81\x53\xbe\x06\x6e\x68\xf0\x36\x6c\x01\xdc\x54\x0d\x62\xc4\x8d\xe3\xd6\x4f\x35\x9b\xf3\xac\xd0\x3c\xa3\x07\xba\xad\x17\x46\x91\x0c\xae\x76\xa4\xe1\xe4\x33\xae\xd8\x98\xab\x2c\x71\xe2\xaf\xf5\xdc\x86\x0a\x2d\xf8\x66\x85\x54\xe3\xd7\xa2\x84\xd0\x0d\x0a\x4b\x4e\x53\x2a\x3f\x5e\x8a\xb9\xbc\x36\x9f\x4b\xb9\x52\x5e\x33\x4d\x24\x10\xa6\xa9\xc5\x65\x99\x11\x0b\x09\xe9\x68\x73\x91\x4e\x5d\xbe\x93\xa6\xdc\xc5\xae\xb0\xaf\x0f\x15\x86\x51\x64\x11\x8c\x61\x88\x20\x15\x88\x19\x30\x2e\xe4\x6b\xab\xbb\x8a\xbb\x61\x55\x4c\x8a\x68\x36\x1c\x0b\xca\xc1\x98\x15\x2a\x1f\x07\x4e\xf3\x06\xf3\x05\xb7\xad\x56\xbc\xc0\x64\x30\xa2\x50\x4b\x73\x49\x19\x50\xf0\x1a\xe4\x85\xde\x38\xb9\x3e\xcb\x74\x47\x91\x7b\x68\x29\xd4\x42\x16\x2a\x1b\x67\xf4\xea\x41\xe4\x11\xbc\x12\x8a\x72\x94\x18\xbb\x6e\xfe\xc0\xb9\xf9\x7b\xef\xc2\x2f\x19\xc2\xfe\x90\x11\xc9\x42\x97\x1c\xb8\x92\x62\xa2\x98\xc8\x32\x11\x54\xba\x27\xb7\x95\x63\xa8\x64\xcf\xa2\xe4\x89\xce\x12\x31\x1c\xc2\x0d\x36\x00\x80\x96\x3c\x89\xae\x68\x8f\x64\x6e\x1e\x42\x2b\x49\x3f\x9f\x13\xa2\x61\xc1\x09\x38\x4b\xbc\x2c\x84\x55\x26\x1a\x60\xe4\x24\x67\xe7\x07\x14\xe3\x5b\x38\x75\x72\x95\x2e\xec\x1c\xe6\xb9\x1d\x03\x27\x00\x9b\x98\xf0\x12\x72\x03\x72\x8d\x88\x35\x82\xc5\x4f\x17\xcf\x9f\x9d\x62\xfe\x07\x70\xd9\x28\xec\x04\x72\x5e\x4e\x21\xc0\xa0\x00\xdd\x81\x9c\xe0\xd4\xfb\x6c\x26\x57\xe2\x5a\x94\x98\x27\x02\xe0\xcc\xf8\x62\x21\x0a\x7a\x50\xf8\xac\x25\x86\x7f\x14\x06\x94\x5b\xb3\xcc\xf3\x57\x92\xe8\x9f\xee\x32\xf2\x71\x67\x9c\x4d\xc4\x8a\x95\xcb\x5c\x50\xa6\x3f\xac\x04\x3b\x64\xec\x94\x27\x33\xbb\x9d\xb6\xb6\x61\x29\xa1\x3a\x34\x51\x65\x82\x7a\x0e\xb3\x14\xa6\xf9\x94\x75\x6e\x06\xa5\x5c\x75\xf0\x60\xc1\xee\x43\x3f\x18\xd1\x52\x06\x16\x94\x73\x19\x0d\x90\xa9\xc9\x12\x29\x2a\x75\x36\x42\x4c\x6a\x40\x27\x0a\x69\x88\x9c\xa4\x0b\x7b\xa6\x5b\x8f\x1b\xa3\x6a\x4a\x59\x41\x3a\x3e\xc4\xb8\xa3\xa9\xf1\xba\x42\x2c\x50\x35\xca\x55\x95\xc2\x04\x34\x18\x61\x86\xba\x00\x2b\x1c\x54\x68\x28\x9c\x10\x78\x83\x35\x22\x1d\x05\x1d\x57\x1c\xcd\xa6\x6f\x33\x2f\x52\x15\x53\x63\xc3\xf1\xa0\x12\xdf\xf9\xda\x72\x1b\xa4\x1f\xc3\xb7\xd8\x9c\xdf\x64\xf3\xe5\xdc\x06\xd0\x42\x65\x43\x33\x8d\x83\xaa\x78\x49\x25\xeb\x51\xa0\xc3\xd6\x27\xd0\x18\x54\xea\x04\xc5\x9f\x7d\x6c\x61\xcb\x3c\x65\x8a\x64\x3a\xc7\x4f\xce\x85\xa0\x13\x6d\x8b\xe8\xc7\x7c\xd5\x7d\x6b\x00\x64\x05\x06\x18\x00\x9b\x36\xf2\x2b\x41\x83\x6c\x86\x48\xbf\x8a\xa2\xfc\xa4\x64\x73\x48\x12\xe1\xdd\xc9\x20\x2d\x44\x9a\x82\xae\x41\x1a\xda\x94\xab\x38\xa9\x15\x41\x3b\x30\xd7\x7e\x21\xb5\xa1\xab\xeb\x2c\x8d\xa5\x4b\xda\xaf\x4a\x9d\xc4\x00\x0f\xbd\x4a\x8d\x0a\x23\x7c\x26\x7d\xb0\x8f\x0c\xe0\xfc\xf2\x04\xca\xa0\x5b\x1f\x40\xb3\x05\xf4\x70\xf5\x5c\x80\xb2\xd3\x83\x3c\x66\x5a\x1c\x43\x66\x10\xf7\x5a\xdd\xdf\xb7\xd8\x8e\x02\x9e\x1d\x92\x03\x40\x58\x4e\xd0\x4f\xef\x03\x3b\xaa\xed\xdc\x6f\xbf\xb1\x6f\x0e\x42\xc0\xee\x6a\x94\xb9\x2c\xfb\x10\x7c\x0a\x49\x49\x45\x99\x67\x05\x95\x3e\x8b\xc3\x3e\x95\x1b\x4b\x47\x57\x7a\xa4\x2d\x89\x6f\xfb\x2e\xda\xb3\x87\x56\x9d\xda\xb3\x33\x38\xa1\xd1\x21\xe9\x01\x9a\xc6\xe9\x8e\x4e\xa4\x2c\x53\xc8\xaf\xe7\xc7\xc3\x9f\x5e\xd9\xdb\x3b\x1c\x0f\x65\x8f\x2e\xc9\x67\x7e\x79\x85\x4c\xf1\xa8\x71\x2c\x22\x67\xb9\x82\xbf\x05\x71\xb8\x4c\x39\xa9\x00\x6e\xd0\xca\x98\x67\x72\xf5\x42\xa6\xc2\x60\xb4\x58\xe6\xf9\xb6\x11\xd4\x82\x17\x56\x28\xb9\xed\x50\x6d\xe3\xc8\xc9\x44\x09\x8d\x17\x5e\x40\x07\x70\x6d\x87\x3d\x7d\x62\xce\xa6\xf1\x2a\x83\xbd\x04\xa0\xd5\xe1\xce\xc4\x54\xdc\x50\xbd\x36\xf4\x8c\x04\x33\x82\x2c\x53\xef\x1d\xe9\x77\xc5\x7c\xff\xb8\x14\xfc\xea\x39\xd7\xc9\xec\x99\x98\x68\x07\xae\xb1\xc5\x19\x48\xc2\x1b\x9b\x3c\x47\x8f\x72\xdb\x26\x78\xb1\x9f\x51\x65\x2c\xcf\xe9\x20\xfe\x10\x43\x3a\xbd\xd8\x59\xd1\x59\xba\xf2\xa8\xbe\xc5\xc7\x7a\xeb\x86\xba\xc3\x44\x9e\xc8\xe3\xec\x1b\xd5\x8a\x39\x1c\x63\xfd\x80\xe7\xd5\x8e\x75\x85\x8b\x04\x6f\xd4\xa9\xd0\x30\x68\x4d\x8f\x4b\x93\xf4\x44\x6d\x9a\x75\x6b\xa7\xba\x5f\xe1\x15\xb6\x44\x7f\x1b\x9e\xe2\x45\xb8\xd9\xd7\x67\x1c\x61\xca\xf1\xfe\x06\xe1\xf3\x76\x8b\xfd\x49\xd0\x86\x37\x2f\xb7\x71\x31\xbb\xaf\xa5\x7d\x03\x76\x59\xce\xdd\xb6\xef\x2d\x9c\xbc\x8d\x0b\x0a\x37\x2c\x5a\x8c\x35\xd7\xb6\x5f\x9f\x0b\x51\x52\xa5\xc1\xe6\xcb\x38\xd9\xe1\x0a\x0e\x60\xb4\x2e\x44\x09\x7d\x12\xdc\x0c\x1b\x4a\x20\x57\xee\x14\x2a\x85\x7c\x2f\x2c\x9d\x1b\x71\x66\xea\xc0\xbe\xa7\xb6\x81\x66\xd6\x0c\x1a\xb5\x6d\xec\x5f\xca\x55\x9f\xd6\x39\xa8\xea\xec\xce\xf0\xc1\xe0\x73\x9e\xc1\xab\x21\x7e\x74\x85\x45\xf4\xb2\x3a\x17\x08\x44\x68\x24\x08\x0f\xe8\x16\x84\x00\xd6\xd2\x33\xb9\xda\x4c\x08\xb6\x95\xea\x1e\xf6\x5c\x4d\xeb\x78\x29\xf1\xb3\x51\xcb\x45\x20\xa1\x56\x16\x03\xd5\xf3\xc2\xfc\x4f\xdb\x89\xa4\x72\x76\xdd\x93\x2b\xae\x1b\x8d\x87\xef\xbb\x00\x33\xdf\x23\x6a\x90\xe1\x8b\x14\x7a\xef\x84\x0f\xd5\x42\x4a\xcd\xe7\x9d\x74\xb3\x07\xb4\xdf\xf1\x5e\x93\xc5\x18\xe4\x37\x46\xb7\x68\x0d\x3f\x55\x1c\x44\xbb\x6b\x3a\x5e\xd8\x3b\x5f\x92\xf8\xb9\x71\x19\x94\x8c\xbb\xb2\xb1\xa5\x5c\x05\x07\xa2\x69\xfa\x07\x7d\x33\x48\xe3\xfc\xf1\xb6\xd8\x71\xfa\x8d\x3b\x01\x10\x2e\xac\x0c\x79\xdb\x85\xa8\xca\x4a\x54\xe3\x52\xa8\xfd\x90\x2f\x16\xf9\xba\x1b\xff\x08\x6b\x53\xad\x07\x31\xe7\x9f\xe6\x1c\x3a\x38\xb7\x38\x86\x0b\xb9\xd8\x7a\x08\xb1\xcd\xce\x47\xd0\x7a\xc3\xfd\x33\x9e\x42\x5a\xea\x5d\xce\x60\xe3\x4d\xcc\x06\xb8\x8a\x9d\xcf\x67\x13\xf2\x3e\xf1\x11\x5d\x2c\xd5\x6c\xc7\xf3\x09\x8a\xe2\x5d\xce\xe5\x2e\xd3\xfe\x64\x47\x93\x16\xd0\x72\x2e\x61\x8f\x4d\x93\x9d\x8f\x62\xd3\x3e\xf8\x7c\x00\xe6\xcb\x8d\xeb\x72\xf4\x8a\xca\x93\x0b\xa7\x46\x71\xab\xb1\xef\xa6\xe1\x27\xdc\x45\x6c\x52\xd9\x47\x18\x17\x39\xe9\x06\x76\x4b\xad\x76\x64\xb9\x7f\x08\x26\xd4\xf0\x0f\xa1\x0c\x87\x14\xd5\x8c\x15\x22\x11\xe7\x80\x90\xb1\x23\x76\xf0\x88\x65\xec\x3b\x9c\x14\x89\xcf\x2c\xbb\x7f\x3f\xaa\xe3\xd5\x8c\x42\x76\x9f\x65\x16\x8d\xea\x5d\xf6\xbe\xee\x7d\x40\xfc\x91\xdf\x82\xbb\x6f\x43\x65\xa0\x9b\x6b\x61\x83\xb5\x7b\x21\x64\x7f\x1b\xd1\x87\xd0\x9a\x68\x6a\x07\xfe\x47\x58\xfe\xb3\x2f\x89\x06\x52\xc3\xa8\xd7\xc8\xae\x30\xfc\xaf\x72\xc1\x38\x14\x37\x51\xe8\xae\x57\x4d\xd4\xbc\x72\x7e\xc1\x53\x80\x6b\xb1\xc9\x72\x13\x59\x55\x94\xd0\xaa\x51\x41\xa4\x25\x43\x8d\x10\x3e\xd5\x73\xc1\x4b\xc5\xe4\x52\x63\xc9\x11\x83\xc4\x92\x94\xb8\x29\xd7\xdc\xc2\x3c\xc6\x24\x58\x14\xbc\x4b\xa7\x5e\x96\x5e\x4f\x49\x69\x7d\xc0\xde\x19\xe8\x59\x9c\x55\x29\x53\xa0\x41\xce\xb3\x14\xdc\x9c\xc0\xc2\xcf\x33\x25\x30\xeb\x94\x4a\x96\xa5\xf0\x26\xdf\x2d\xdc\xc0\x22\xe3\xa4\xaa\xfa\x6a\xf2\x01\xab\xbc\xa2\xcc\x3e\x59\x8d\xd8\x66\x6d\xd6\x06\x05\xd4\x46\x75\x51\xb0\x6f\xbe\x1e\x67\x42\x05\x33\xed\xd1\x20\xf4\x6c\x3b\xba\xb0\x3d\x27\x76\x7e\x1b\x57\x68\xe7\x3f\xcc\x8a\x42\x94\x60\x45\x38\x62\x9d\x4e\xcb\x2a\x89\x62\x9d\x36\xb2\xdb\x01\xc7\x4b\xb3\x9d\x93\x5c\xae\x3a\x55\xec\xf8\x45\x1e\x3c\x6a\xc1\x2c\xbd\x6f\x37\xb4\xb0\xd0\xcd\x3a\x78\xae\x84\x73\x72\x31\xb4\xf3\x28\x7c\x3a\xc7\x4a\xd4\x61\xa6\x48\x4b\xdd\xed\xf9\x72\xa4\x37\xda\x2d\x30\xb2\x6e\xd3\x2f\x60\x9b\x05\xc5\xc4\x2c\xd3\x02\xd2\x86\xd5\xd5\x46\xde\xde\x8e\x15\xe7\xd1\xa1\x18\x9c\x14\x64\x01\x0a\xf7\x6b\x51\x2a\x97\xe7\x1a\x54\xeb\xb0\x27\x90\xb0\xd8\x30\x31\xc1\xfb\x2e\x86\x1b\xc1\x40\x3a\xb6\x8e\x82\x8a\x04\x94\xd9\x4a\x94\x5c\x09\xe7\x81\x37\xb4\xae\x3d\x04\xfc\xa8\x49\x71\x3c\xa4\x5f\x1f\x35\xeb\x95\x87\xbe\x33\xa1\xb2\xb9\x99\x5a\x17\xc9\x09\x4c\xbe\xdb\x73\xe8\x06\xed\x6c\xf3\xa8\xe8\x0c\x7b\x82\x9a\x5b\x51\x76\xcd\xcf\x6d\x27\x65\x08\x06\x87\xf4\x64\x96\xe5\x69\xd7\xc0\xac\x36\x74\x87\x46\xa6\xc2\x7b\x99\xb5\x2e\x64\xcb\x8a\xe3\xa5\x04\xa7\xec\x39\x2f\xaf\x22\xbe\x08\x02\x1f\xb8\xc9\x80\x31\x9a\xa8\x4e\xb8\x5c\x4f\x85\xa1\x10\x43\xef\xa1\x8d\x08\x34\xfb\x8e\x42\x21\xee\x90\x32\x55\xa7\xb4\xef\x98\xe1\x07\x53\x55\x97\x90\x08\xd0\xeb\xfe\x0c\x64\x32\xb6\xa3\xa5\xfd\x4a\x28\x96\x69\xc3\xff\x30\x41\x3b\xdc\x3d\x89\x9c\x8f\xcd\x30\x7a\x05\x39\xb3\x20\x57\x96\x1b\xd2\x19\xf1\x1d\x48\xf0\x7e\xb5\x36\xfe\x78\xbe\x18\xc1\xe8\xca\x86\xb9\x0b\xd8\xa6\x25\x14\x66\x9a\x64\x54\x8b\x17\x35\x64\x14\x92\x03\x56\x3f\xfb\x13\xa4\xda\xe6\xda\x1a\x56\x17\x65\x86\x0a\xdf\x58\x4b\xef\xb8\x39\x85\xdc\xcf\xe7\x99\x46\x5b\x64\x84\xbd\xbe\x75\xc0\xc7\xcc\xec\x8b\x52\x24\x22\xb5\xae\x18\xa5\xb0\x50\x60\x73\x42\x76\x08\x96\x78\xc9\x38\x64\x8c\xa9\xcc\x7a\x23\x97\x84\x89\x3c\xcb\x0a\xf1\x32\xe0\x30\xdb\x39\xa5\x12\xba\x95\x01\xa2\xcf\x7e\xf5\x71\x9f\xcb\x24\xb8\x84\x15\x78\xd3\x32\x8e\xb9\xa8\x80\xea\x9c\xf6\xbb\x55\xb2\xb1\x6f\x02\x48\x9c\x86\xd6\x9d\xea\x1b\x22\x90\x64\x80\xa5\x56\x9a\xfb\x01\x36\xaa\x31\x5b\x2f\x47\x52\x24\x1a\x20\x81\x17\x69\xb3\xfe\x9c\x78\x6a\x22\x0b\x25\x73\x31\x5c\xf1\xb2\xe8\x76\x8e\x7d\x46\x4c\xa8\x42\x52\x21\x0e\x59\x30\x81\x25\x84\x70\x5a\x9d\xa8\x48\x74\xe4\xe1\x64\x90\xf1\xfd\x51\x8b\xee\xbe\x32\xb6\x28\x4b\x59\x76\x3b\xe6\x1e\x34\xe2\x8a\x9c\xb0\x31\xd4\x01\x43\xff\x46\x7c\xf3\xc0\x30\xb0\xfd\x6d\xef\xf6\xc3\xe0\xbe\xb0\x33\xf8\xce\x48\x43\xbf\x67\xb0\x83\x68\x51\x5e\xd1\x5b\xbf\x6f\x9a\x87\x41\x95\x73\xd3\x48\xb4\x4d\x8f\xa8\x17\xdd\xb0\x75\x05\x74\x7d\x61\xd4\xb8\x7d\x6d\xb7\x1d\xd4\x2f\xf2\x56\x77\x7b\x89\xa7\xad\xb6\x25\xef\x4a\xb9\x7a\xff\x28\xbe\x91\xa8\xed\x10\x54\xcf\x70\xaf\x38\x8d\xfa\x67\x70\xc1\xd0\x4a\x2a\xcd\xe5\xaa\x10\xe5\x13\x1b\x95\x82\x57\xd8\x85\xb8\xd1\xe6\xc7\x6e\xa7\xe3\xb7\x0a\x5a\x37\xde\x5a\xce\x13\x90\xee\x90\x93\x60\xd5\x9e\x56\x71\x21\x47\x4d\xcc\x24\xf4\xcd\xab\x12\x40\xa3\x9c\x34\x68\x10\xaf\xbc\x43\x5f\x78\x45\x07\x97\xe9\x23\xfa\xb9\x3a\xcb\x5b\x8e\x13\x78\xf9\x45\x92\x53\xa3\x34\x4c\xeb\xde\xb8\xfb\x20\x55\x87\x7c\x05\xb0\x86\xaf\x81\x6e\xb8\x73\x06\xc5\x64\xb4\x3d\x62\x6e\x86\xd1\x72\x1e\xb9\x86\x2b\x32\x29\x35\x59\xcf\x87\x06\x2a\xd8\x9c\xfc\x26\x06\x94\x32\x34\x77\xfc\x79\x36\x86\x28\xa1\xdf\x7e\x23\x50\xdf\xd3\xd8\x1e\xcf\xad\xd2\x4a\xed\x67\x2f\x01\x23\x0c\xdb\xc4\x73\x35\xc2\x4f\x75\x77\xee\x1f\xe1\xe8\x8f\x42\xd2\xad\xce\xb1\x1e\xe1\x40\x26\x31\xeb\x83\x11\xa4\xe0\xf1\xc1\x1d\x50\xe8\x24\xe1\xa5\xd0\x61\x45\x05\x1d\x0a\x43\xe0\x92\x56\x7f\x27\xb6\xdf\x1c\xeb\x22\x39\xb7\xb0\x4e\x00\x74\xe8\x37\x6c\x7f\xa1\x4b\xb5\x5c\x13\x26\x7d\xe6\xa6\x44\xe6\x39\x5f\x28\xd1\xad\xa2\xb6\xdf\x44\xf0\xc8\xb4\x12\xc8\x80\xd4\x9d\x64\xa5\x98\xc8\x9b\xa7\x90\xc5\x31\x3d\xb5\xaf\xc1\xc0\xe3\xf6\x87\x1f\xc0\x67\x13\xfd\xdc\x21\x1c\x87\xda\x40\xe4\xdc\x4c\x90\x5c\x96\x99\x77\xd6\xa4\xcf\x4a\x4e\x29\x0d\x79\x81\x05\xf0\x0b\xa9\x2d\x28\xaa\xbf\xe9\xac\xda\x34\xed\x61\x6d\x23\x16\x79\xa6\xbd\x18\x06\xfb\x87\xf2\xde\x4a\xc2\x5f\x4e\xa5\x66\xa4\x80\x82\xa8\xc3\x5e\xff\x61\x4d\x2b\xf3\xf7\x8f\xd0\xc6\xb4\x7e\xf2\xf2\x39\x9b\x94\x7c\x0a\x89\x98\x3b\xdf\xa5\xd9\xf5\xf7\xdf\xa9\x05\x2f\xbe\xff\x49\xe4\xb9\x64\x6f\x65\x99\xa7\xdf\xed\xc3\x37\xdf\xed\x9b\x5f\x3b\x18\x7c\xc0\x94\x99\x10\x60\x14\x3c\xec\xb8\x52\x91\x87\x05\x56\x87\xb1\x87\x4c\x4e\xd8\x57\xb6\xee\xca\x0a\x82\x25\x21\x37\x2b\x7a\x9c\xb9\xe1\x51\xd4\x1c\x1b\xf9\x54\x8c\x1a\x26\x63\xe7\x01\xff\x6d\x98\x19\xfa\x45\xda\x29\x80\xdf\x16\xc7\x1a\x35\xde\x41\x06\x13\x54\xe0\x1c\xbc\x03\x3b\xd4\x8b\x08\x04\xf3\x15\x2d\x42\x41\x75\xd5\x50\x3e\xd7\x72\x30\x16\x03\x58\x3c\x6e\x42\xe0\x0d\x67\x5d\x4d\x44\xe9\x53\x75\x58\x78\xe8\x8a\x82\x8e\xbe\x06\x5f\x39\x4f\x44\x8a\x4f\x00\x2d\x1b\x54\x74\xe6\xe5\x6c\xb0\xfb\x11\x7b\x3a\x6f\x16\xa8\x7f\x93\x67\xba\x59\x52\x23\x74\x47\x3e\x29\x76\x51\xa6\xb7\x77\x40\xc1\x15\xe0\x43\xd3\x39\x4f\x24\xc9\xb2\xdc\x7c\x2c\xdd\xa6\x87\xc7\xd1\x80\xee\x47\x3c\xcd\xb0\x4d\x88\x1d\x78\x11\xf0\x99\x24\x97\x85\x80\xcb\x10\xae\xe6\x5e\xf4\xee\x3e\x41\xcd\x84\x6d\x1b\x7c\x65\xce\x66\xf5\xbb\x4d\xdc\xf8\x7c\x39\x56\xba\xa4\x49\x1d\xb8\x79\x19\x30\x6e\x4a\x15\x58\xe8\x37\x0d\x21\x4f\x1a\x1f\x9b\xf4\x5b\xd0\x9b\xae\xdf\x46\x10\x3d\xc7\x53\x87\x0b\x6e\xd8\x1d\x34\x40\xf5\xd4\x63\x08\x48\xf0\xfd\xfa\x35\xa6\xeb\x42\x68\x3e\xab\x2e\xb3\x19\x2e\xea\x4c\x22\xc9\x21\x60\x14\xa7\xe8\x04\x8c\xc4\x67\xc8\x0b\x7c\x9b\xb3\xc5\x42\xa4\xae\x32\x9e\xf7\x3e\x4a\x72\x3e\x5f\x78\xca\x0f\xdd\x0e\x37\x12\xc2\x9c\xaf\xc7\xe2\x24\xcf\x16\xe4\x25\xd6\xa8\x16\xba\xc5\xe5\xd9\x24\xca\x38\x9c\x23\x8c\xef\x36\x08\xb2\x81\xbb\x9a\x61\xc9\x50\xb6\xbb\x90\x1a\x43\x1a\x61\xf5\x10\x1c\x3f\x5e\x6a\x2c\x2b\x8b\x5f\xf3\xf9\xc2\xc5\x41\x6c\x77\x97\x68\x1d\xfc\xf6\xee\x13\x8d\x82\x73\xaf\xe1\xb6\x6f\x92\x6b\xcd\x83\x30\xba\xe7\x2b\x0f\x9a\xfd\x7d\x76\x6e\xd8\x91\x9c\x4c\x62\x35\x2d\xae\x04\x43\x60\x0c\x27\x82\x3d\x64\xa5\x50\x1a\xcb\x43\xb0\x9c\x6b\xe1\xd4\x42\xbb\xcb\x76\xd6\x35\xed\xb9\x35\x39\xfb\x37\x29\x7a\x82\x80\xeb\xb6\x7d\x2d\x7e\x32\x64\x59\x7f\x38\x34\x82\xd8\x52\x1d\xa8\x37\xe0\x25\x79\xd8\x5a\xbc\x81\x4b\xdc\xed\x69\xb1\x42\x88\x0d\x72\xd8\x77\x04\xd5\xcc\xa9\x2e\xbf\xe2\x03\xff\x76\x8c\xcb\x05\x6f\xd4\x25\x97\x83\x26\xe1\x85\xe2\x8a\xfc\xee\x5b\x94\xe4\xb9\x15\x0c\xa0\xb8\x95\xdf\x99\x61\xf3\x9b\x28\x3e\x7e\x8f\x1a\xb4\x74\xe1\xa2\x22\xa9\xb1\x59\xca\xb6\x4f\x9d\x06\x86\xb5\xe1\x71\x51\x97\x47\xed\x83\x36\xa2\xc8\xef\x36\x72\x83\xa7\x91\x7e\x7b\xc5\x31\x9a\x2b\x8b\xbc\x13\x7d\x12\x6f\xb0\xe9\x08\xe0\x8d\x45\x70\x20\x94\x13\xd2\xbc\xc8\x7a\x17\x67\xa9\x70\xde\xbd\x9a\xa2\x78\x7f\x3f\xa8\x25\x9b\x0b\x73\x74\x8d\xa4\x47\x2e\x29\xd6\xf3\x82\x4e\x6f\xb3\x2e\xad\x4a\x76\x9b\xd8\xc6\xc7\x46\xe3\x34\x65\xa3\x8f\x85\xf6\x20\x91\x87\xd3\xaa\x78\xc7\xf9\x40\xb2\x87\x93\x17\x39\x21\x03\xf4\xff\x90\x4b\x14\x8f\x40\x60\x6c\xb8\x32\xba\x3d\xa2\xcd\xac\x60\xb2\x4c\x6d\x79\xb6\x6c\x11\x68\x4b\x3d\xfc\x82\x78\x76\x4c\xc9\x36\xaa\x28\x53\x58\x6c\x70\xb9\x70\x97\x19\x86\xc7\x68\x49\x91\x09\xf9\xda\x85\x1e\x51\xb8\x5c\x4d\xd5\x6a\x60\xe1\x0a\xa3\x7b\xaf\x41\xb5\x17\xc7\xef\xb6\xd8\x8a\xd1\x6b\x3e\x7a\xb9\xe8\xd2\xdf\x8d\x9e\xe8\x5b\xde\xd8\x71\xa3\x0b\xb4\x28\xf8\x2f\x62\x29\xe9\xce\x16\x16\x67\x76\x30\x57\x23\xc4\xc2\x00\x7a\x90\xaf\xb9\xb2\x8d\xb0\x92\xf1\x9a\x2d\x4a\x48\xf1\x0c\xf9\x82\xe4\x5c\x30\x28\x7e\x5e\x4c\x11\xc8\xca\x19\x39\x94\x0d\xb6\xa4\xac\x02\xa0\x76\x2e\xd3\x10\x18\x0e\xc0\x67\x82\x43\xc0\xbc\xce\xe6\xc2\x72\x26\xa5\x4b\xeb\xc8\x69\x65\x33\xfa\x06\x30\x68\xe7\xfc\x02\x2c\x1e\x66\xc2\xab\x19\xd7\x7d\x7b\xa2\xc1\x3d\xc9\x45\x8e\x42\x25\xdb\x90\x1b\x38\x1f\x6d\x48\x28\x7d\x2d\x10\x96\xc1\x12\xe5\x28\x98\x2f\x93\x59\x8b\x63\xbb\x95\x07\xee\x1f\xb9\x39\xda\xc9\x3c\x93\x09\x44\x1a\x27\x33\x51\x31\xaf\xb9\xb7\x58\xac\x77\x68\x52\x88\x58\x0e\x8e\xc6\x08\x2b\xc3\xe3\xf4\xe9\xaf\xb9\xe0\x46\xc2\x0b\xf2\xac\x89\x22\x8d\xf7\x69\x88\x60\xa0\x9e\x5f\x36\x5f\xe4\x99\x55\xa8\xc7\xc2\x1f\xd7\xd5\xee\xf4\x1b\x48\x9c\xf6\x92\xc0\xb9\xbc\xb4\xb3\xde\x72\x79\x7a\xea\xec\xb1\x81\xd3\x51\x58\xdd\x55\x04\x2b\xd0\x09\xee\xef\xb3\x63\x56\x88\x29\xa6\xf4\x2a\xe3\xe5\xfb\x64\x3e\x8d\x5e\xfa\x0b\x9b\xe1\x49\x14\xa9\x05\x66\x97\xe3\xa3\x4e\x24\x79\xad\x81\xfd\x82\xb1\xb7\xa2\x63\xae\x47\xa2\xcd\xc0\x7d\xc4\x93\x73\x85\xa0\x87\x5e\x1f\xa4\x5a\xec\x7a\x83\x68\x7d\x36\xd6\x17\x62\x04\x32\x15\x80\x0a\x4a\x94\x26\xd2\xbc\xc9\xb5\xc8\xd7\x6c\x59\x40\x68\x68\x3a\x64\xec\xb5\x8d\xf1\xe8\x07\x85\xd6\x7d\xa0\x32\x44\x83\x40\x76\x5f\x5d\x66\x57\x42\xcf\x4a\xb9\x9c\xce\xe8\x51\x3b\xf6\xd5\x78\x65\x11\x0c\xda\xf7\x92\x5f\x47\xb3\xa5\x12\x0e\x57\x05\xd1\xab\x54\xf8\x70\x56\x98\xf1\x27\x4f\x29\xaf\x0d\xd8\x93\xac\x56\xab\xd1\x30\xea\x63\x52\x7e\xfb\x2d\x88\x3d\x6d\x34\x9f\x45\x53\xde\xda\x3c\xa8\x33\xbf\xb5\xed\x2a\x01\x56\x1a\xb5\xfb\xac\xa9\x21\x57\x49\x96\xd5\xdb\x36\x35\xd5\x59\x2e\x9e\x70\xcd\xd9\x67\x68\x57\xef\x79\xa1\x7f\x7f\x9f\x3d\x16\x70\xb9\x19\xbc\x25\xa2\xe0\x65\x26\xfb\x56\xb8\x06\x3d\xcf\xa2\x14\xda\x66\x73\x46\xae\xc8\x56\xe6\x01\x1e\x14\xc4\xf5\xc0\x64\x99\x4d\x31\x7a\xd6\x9d\x61\x50\x69\xe9\x92\x1d\x19\x9a\xbb\x6f\x3e\x46\x61\xd4\x24\x14\xd9\xdb\xc0\x1c\xc2\x0b\xc8\x2b\x74\xc4\xbe\x88\x97\x86\xb8\x08\x1b\x37\x21\xcb\xb6\x0b\x9a\xb5\xa0\x8a\xfe\x85\x57\x51\x96\x8b\x5d\xda\x01\x8d\x03\x96\x9f\x98\x0b\x01\x83\xc8\x76\xea\xe3\x49\x01\xcc\xaf\xf1\x4e\x9c\x63\x99\xec\xb1\xdd\x90\x7e\x1c\x92\x40\xd1\xd8\x9c\x4c\xa0\x8e\xb8\xab\xc7\x9b\xb5\xdc\xae\xec\x28\xc4\x34\x5c\xc4\xf7\xcd\xa6\x34\x87\xb5\x9b\xdb\x54\x96\x6e\x26\x2b\xe1\xe2\x33\x93\x30\x52\xd0\xea\x73\x36\xcc\x06\xd9\x0d\x49\x08\xc1\xd4\x36\x9a\x1a\xdc\xb4\xda\x1c\x33\x02\xb5\x04\x02\xef\x87\xb0\xab\x9a\x09\xd6\xac\x9f\x8e\x84\x17\x04\xb3\x83\xba\x9a\x1d\xb1\x98\x4b\x3e\xaa\xe1\x9d\xc4\x9c\x95\x8a\x1e\xb9\x28\xa1\x14\x72\x05\xb1\xd9\x98\x7d\xcb\xe9\x39\x30\xb3\x01\x5d\x67\x28\x2e\x3b\xc9\xb5\xf9\x66\x63\xb5\x7b\x2d\x36\x9e\x35\xf1\x02\x70\xae\x10\xca\x7b\x25\x04\x77\x5d\x70\x91\x5d\x90\xc6\x0f\x84\x56\xca\x06\x49\xea\x3e\x57\x57\x30\x2b\x9a\x27\x55\xbf\x24\x8f\x8e\xfc\x2d\xb9\x81\x3a\xab\xc4\xd9\xc8\x2b\xe4\xad\x40\x1a\xc6\x73\xbf\x02\xb8\x91\xdc\xdb\x20\x04\x67\x7a\xdb\x9b\xd7\x83\x08\x55\x76\x98\x16\x8f\x79\x3e\x78\xff\x56\x80\x02\xc5\x9f\x23\xa3\xa6\xe7\x73\x28\xca\xb1\x46\x7d\xca\x45\xbc\x57\x56\x20\x5b\x95\xd2\x48\xc1\x90\xd0\xc1\xc6\x92\xdb\x9d\x47\x5d\x74\x48\x98\x08\x6a\x2c\xa6\x19\x66\x5a\x96\x65\x8b\xe4\xd5\xc7\x77\x28\x44\xa6\xa7\x7f\xe3\x49\xc4\xc1\xcc\x13\x87\xdf\xa3\x57\xa9\xc1\x73\x06\x42\x67\x91\x82\x2b\xda\xd0\xe5\xec\xa8\x6f\xb5\x91\xb1\xc8\x9f\xda\xcf\xa1\x79\x70\x96\xcc\x44\x72\x45\x86\x1f\xcc\x68\xc4\x14\xb2\x04\x2f\x06\xd9\x5f\xac\x79\x2b\x62\x50\x95\x1f\xbd\x59\xac\xda\xeb\xf3\xcf\x63\x7d\xc7\xb6\x33\x57\xe9\x1f\xdc\x02\x95\x5f\x22\x5a\xc4\x3d\xde\xc0\xcd\x1a\xe7\xdb\xc2\xc9\xaa\x2f\x92\x0d\x03\xf7\x36\x98\xe7\x40\xb9\x22\x22\x0d\xcc\x16\x2f\x28\x7c\xfa\xec\xc4\xd7\x09\x70\xc8\xd8\xeb\x5d\x9d\xa9\x51\xac\x3c\xfb\x6e\x5c\xf2\xc6\x03\xb2\x99\x69\x79\xb2\xdb\x40\xed\x01\xc1\x81\x49\xa4\x46\x6c\xa1\x1d\xf5\xa8\xe5\xb6\xf2\x44\x16\xb6\xbe\x2d\x81\x85\xd7\x5f\x60\x08\xf7\xdf\x36\xb2\xc9\x96\xdf\x37\x50\x5c\x6d\xe2\x3b\x52\x9b\x27\x82\xff\x83\x54\x55\x97\x11\xb6\x91\x15\x39\x36\x52\xed\x17\xcc\x9c\xe5\x5e\x5f\x98\xe0\x93\x17\x6b\xfb\xfc\x0a\x1f\x4b\x33\x51\x9a\xc7\x0b\x14\xd6\xca\x74\xc7\x29\xe5\xa6\x92\x9c\xcb\xbc\x34\x55\x53\x84\x79\x34\x6e\x33\xde\xe3\x5c\x9b\x5d\x84\x6a\xf2\x9c\x61\xea\x4a\xce\x05\x9a\xd3\xa2\xfa\x38\x4d\xf2\x06\x3d\x37\x11\x92\x15\x05\xd1\x00\x97\xe9\x9a\x15\x17\x12\x00\xa1\x63\xf3\x12\xf6\xd2\x9b\x15\xcd\x50\x63\xa1\x57\x61\x52\x01\x6f\x92\x6b\xbb\xfc\xee\x4e\x12\x77\x61\x33\x35\xf9\x71\x33\x65\x6c\x61\x37\x81\xae\xf2\xa5\xf7\xf1\xa6\x67\x69\x4d\x5d\xd9\xec\x88\xfe\x3f\x58\x0d\x59\xc9\xdf\xd1\xaa\x89\x9c\xf3\x9b\x67\xe8\x9a\xd6\xec\xd5\xb5\xc9\xf8\x43\x8a\x01\x07\xa2\x17\x1c\x21\xf6\x4e\xe9\xf2\xbd\x33\xf4\xae\x36\xea\xf4\x6e\x21\x79\xd7\x4c\x34\x9e\xcd\x6f\xb2\xbe\x38\x0b\x6f\x83\xcb\xd3\x11\x90\x5d\x24\xc7\x67\x2a\x08\x2c\x70\xda\x15\xce\x0a\x39\x90\x8b\x3e\x3e\xf1\xe7\x15\xa3\x97\x8f\x32\x69\x65\x46\xb1\x27\xce\x66\x25\xe3\xaa\xf5\xd6\x85\x7e\xa9\xc8\x85\x16\x27\x33\x5e\xaa\xee\x73\xae\x67\xc3\x79\x56\x74\x29\xfd\x92\xdf\x10\x7f\x0c\xa3\x14\x2f\x88\xf5\xe0\x84\xfd\x20\xcb\x15\x2f\xd3\x01\x42\x45\xc5\x10\xb9\x07\x87\xf9\x5b\x76\x3a\x74\x17\xe4\xd9\xa0\x5d\x81\x35\x62\x8c\x08\x3c\x8d\x0a\x8c\x29\x4c\x85\x2f\x52\x28\x81\x07\xf9\x9b\xf2\x35\xe3\x93\x89\x48\x34\xa4\xaa\xa9\x2a\xf2\x04\x53\x7c\x2e\xac\x87\x75\xfd\x20\x6e\x08\xc6\x89\x32\x74\xc8\x49\x08\x5a\x4b\x9a\x9d\x75\x55\x71\x79\x72\x5a\xec\xe4\x08\x64\x9e\x15\xcb\x06\x05\xf3\xb0\x3d\xc9\x41\x75\x0e\x15\x5d\xa5\xcb\x2d\x49\xb8\xda\x78\xc4\x03\x12\x68\x09\x2c\xdd\x60\xc5\x7b\xb4\xa3\x4e\x3a\x34\x08\xc3\x8f\x3b\x99\x85\x19\xa1\xfd\x88\x39\xda\xa4\x78\xd5\x26\x1e\xd3\x00\xdf\x7b\x46\x04\xb9\x0a\x08\xa3\x07\xde\xb5\xf3\xda\x27\x3e\xb0\xe6\x03\x5e\x6a\x24\xfe\xbe\x11\x3b\x9f\x51\xe2\x8a\xd8\x4c\xc9\x3e\xff\x3c\x0c\x8a\x62\x61\xb7\x5b\xb9\xfb\x7d\x02\xef\x94\xe0\xa9\xbb\x5b\x57\xda\xb1\xfb\x2e\x4e\xcb\x74\x75\x4b\xbd\xd5\xf4\x29\x99\xc3\x51\xb4\xfe\x41\x88\x37\x2b\x57\x4b\xab\xb8\x0f\x5b\x7e\xfe\x79\x30\xee\xe7\x9f\xc7\x58\x3c\xf2\xbf\x45\xfa\xba\x17\x32\x24\x78\x50\x8a\x5a\xc6\xb0\xa2\xc7\x6f\x19\xe8\xc9\x51\x84\x2a\xc1\x0f\x71\xcc\xc7\xf9\x9a\xe9\x72\x6d\xd5\xf4\x00\xd0\x9d\x5d\x60\x5b\x71\x3a\x26\x4c\x0a\xbc\xca\xd2\xe0\x94\x79\xc9\xcc\xa6\xb9\x8b\x94\xb1\x0d\x8d\x41\x10\x25\xfe\x0e\xfa\x1c\x23\xbc\x41\x8e\x50\xe7\x95\x57\xd3\xdd\xc1\x17\xb7\x10\xbc\x3a\xac\xe3\x84\xfb\x8d\xee\x44\x0e\x70\x8b\x3b\x51\x0b\x59\x62\x9c\x52\x95\x54\x0e\x9c\x12\xce\x52\xc2\x61\xc3\x9b\x02\xb5\x8b\x2d\x4e\xa3\x48\x1f\x01\xd0\x23\x76\x60\x88\x01\x10\xf7\x59\x9d\xf1\xc4\x2e\xc6\x5b\xbc\x9b\x18\x79\x09\x7b\xb7\x55\x9a\x0c\xfe\x24\xeb\x2a\x3c\xef\x05\x51\x93\x3e\xb3\x09\xc5\x83\x70\x1b\x1f\x50\xc8\x02\x4a\x06\xb8\x27\x44\xc5\xd5\x83\xbc\x12\xac\x76\xfd\xb3\x23\xf6\x85\x59\xda\x67\x9b\x24\x8d\xd0\xd1\x78\xab\x99\x97\x55\x35\xf9\x55\x25\xc7\x26\x3f\xe1\x6d\x4a\x97\xbb\xbd\x87\x02\xc5\xdb\x86\x79\x6d\xb4\x46\x04\x14\xb9\xe3\xfc\x77\x7d\x12\x1f\x34\xaa\x21\x0d\xaa\x61\x43\xdb\x7d\x5a\x76\x74\xd1\xdf\x1e\x66\xe6\xc6\xd9\xa4\x21\x77\x8d\x76\x5a\x4c\xeb\x0b\x3c\x3c\x10\x15\x6d\x0e\xd0\x3a\xdd\x87\xe5\x75\x2c\xcb\x65\x45\xaa\x28\x79\xce\x2f\x83\xb3\x97\x6f\xb1\xb4\x2d\x3c\x36\x82\x8c\x68\x3e\xfe\x1e\x1a\x81\xcc\x62\x0b\xaf\xda\xea\x2b\xd1\x03\xa5\x2a\x61\xa1\x8f\xaa\x11\xc4\x70\x14\x70\x07\x9f\x66\x05\x53\x82\x97\x09\xe6\xc2\xf3\x29\x7c\xe4\xc4\x05\x90\x79\xd1\x08\x41\x18\xb9\x88\x40\x50\xb6\x46\xde\xa2\xad\xb4\x10\x36\xe6\x81\x32\x8f\xa4\x73\x73\x13\x9d\xc9\xd5\x87\xc6\x6c\x14\x24\x09\x94\x72\x55\xa5\xeb\x50\x67\xc4\x1a\x7e\x1f\xce\xb8\x6a\x77\xa8\x08\xbc\x9f\x30\x6c\xa1\xe9\x5c\x7e\x0c\x36\x4e\xae\xa2\x9d\xfb\x11\x42\xa6\x6d\xfa\x49\xc4\xbe\xc7\x01\x5c\x38\x36\x52\xeb\x1c\x77\x48\xed\xba\x45\x3f\xc4\xe4\x50\xdf\x0a\x9b\xb4\x1c\xa4\x77\x0a\x16\x0e\x5b\x6e\x45\xb9\xe9\xd8\x8c\x6e\x72\x38\x23\xeb\xce\xde\xde\xa3\x68\x0b\x02\xa4\x59\xeb\x9a\x59\x64\x4d\x95\x46\x11\x30\xbb\xed\x40\xb8\x07\x35\xde\x52\xe1\x1e\x50\x87\x39\x08\x48\x89\xf6\x07\x4d\x1f\xb5\xb4\x67\xaa\x4a\xb0\x45\x02\xbe\x63\x96\x50\xe9\x3e\x69\xd8\x0c\xb8\xc7\x5e\x90\xfd\x6f\x2a\xec\x9e\x38\x00\x13\x7c\xca\x54\xcf\x48\xa5\x95\x9c\x90\x06\xd5\xd6\xce\xa7\x84\x99\x90\x45\x7a\xeb\x76\xfd\x72\x26\x57\xc7\x04\xaa\xe6\xce\x1d\x1d\x91\xd0\xa7\x0f\xd4\xab\xd6\xda\xfc\xc2\x3c\xc2\x8e\x8e\x8e\x58\x07\x66\xd6\xe9\xd5\x91\x19\x06\x9a\xf8\x5b\xbe\x72\x04\x30\xd6\xa5\x01\xbf\x41\xa4\x27\x78\xef\x21\x9d\x07\x8f\x36\xc3\x24\xe8\xfe\xa7\x26\x16\xe9\xb7\x3e\x1c\x84\x5c\x1d\x33\x1c\x7f\x46\x36\x6f\xa0\x0f\x3b\x9c\x6c\x74\xcd\x7f\x19\xb8\xe5\x47\xf4\x51\x7b\x28\xbe\xba\xfb\xda\x37\xee\xbb\x85\xfb\x36\xd3\x33\xab\x46\xaa\x1e\xd9\x3e\xab\xfb\xf4\xfb\xf0\xb7\xf0\x19\x36\x38\xb4\x8f\x2e\x4b\x96\x67\x3e\xf0\xb1\x4a\x65\x5e\xa0\x03\x60\x41\x8f\x16\x98\x0b\x1f\x37\x7a\x10\x30\x8c\x70\xa8\xcf\x8e\x58\xc0\x3f\x5c\x87\xfb\x5b\x45\x1c\x1f\x3d\xb9\x13\x53\x31\x22\x5f\x85\x91\xdc\x85\xcf\x44\x4b\xac\xf1\x1a\x3f\x7d\x87\xc0\x70\xbb\xb2\xc2\xdc\x66\x0d\x1b\xb4\xd3\xe1\xa1\x0b\x78\x97\xb3\xf3\xc4\x3a\xd0\xdf\x55\x06\x88\x8e\x04\x42\xbf\xd5\x29\x72\x0c\x70\xf3\x31\x0a\xe6\xdd\x0e\x62\xeb\xc9\xda\x1d\x31\x3b\x1f\x2c\xdc\xa9\x1d\x4f\x55\x85\x39\x56\x48\x1a\xbd\x99\x57\x82\xe9\x92\x83\x91\xcd\x69\xa1\xb4\x5c\x54\x0c\xc6\xa5\xe8\xc0\xbe\xcd\x28\x43\xca\x24\x2b\x52\x78\xb7\x0e\x63\xe6\x1d\x0c\x76\x44\x8e\x4d\x75\xfa\x0c\x8f\xe4\x06\x6a\xac\x00\xac\x2e\x32\xb4\xe1\xef\x44\xd4\x11\xac\x83\x9e\xbd\x2a\x9a\xd8\x41\x4b\xaa\xa5\x61\x62\x84\xe5\x17\x50\x38\xbf\x21\xe9\x52\xa0\xcc\x7a\xe1\x22\x78\x83\x3e\xef\xb2\xf7\xd1\xab\x2c\x42\x95\xe3\x7f\x4d\x67\x36\x0c\xc9\xbc\x05\x27\x0a\xc6\xe8\x55\x6e\x46\xb3\x0f\x0d\x47\xdb\x05\x74\x41\x92\x6e\x24\x55\x9f\x70\x9d\x36\xbf\xe9\xf2\xfc\x23\x6f\x46\x77\xbe\xdc\xc0\x8d\x57\x18\xf8\x02\xeb\x32\x13\xd7\xb5\x35\x34\x24\x44\xfa\xc8\x2e\x56\x92\x09\x4c\x88\x84\xd9\x9a\xc2\xf7\x4b\x15\x09\x06\x03\x02\x4a\xba\x62\x7d\x81\x8d\x07\xd6\xac\xf0\xb8\x48\x91\x97\x6c\xbe\x0e\xed\x92\xaa\x4f\x07\x73\x2b\xb8\xe5\x7e\xbf\xcb\x95\x13\x0a\x52\xbf\xef\xd2\x71\xe3\x0e\x6e\x71\xd7\x7d\xba\xbb\xca\x9e\xe5\x1a\x16\xc3\x03\xed\xf0\xf6\xe9\xc8\xd8\x3e\x7e\xfe\xf0\x3b\x6a\x3b\x3d\xbb\x3c\x69\xff\x35\xc9\xb9\xe5\x12\x8a\x69\xf9\xee\x3c\xb4\xd8\xc8\x3c\x6d\x0b\x43\x93\x6f\xef\x14\x41\xef\xd0\xfe\xdd\x51\x0c\xc9\x1f\x81\x96\xd7\xc8\xf9\xab\xe3\x17\x1d\xdf\x0a\xea\x00\xb0\x27\x65\x96\xe7\x2c\x95\x2b\x48\x3e\x56\x04\xa9\xe1\x31\x27\x8c\xe9\x34\x04\x14\xbb\xa7\xff\x6e\x84\x8e\xf7\x5d\x40\xe9\xd8\xbb\x72\x98\xbc\x49\x34\x6e\xff\xde\xb5\x0f\xf4\x40\xe1\xd1\x8e\x96\x5e\x7d\x38\x35\xe7\x60\xff\xaf\x7e\x41\x60\x0e\x3d\x50\xcf\x84\x0f\x27\x0a\x9b\xaf\xce\xa6\xd6\x5d\x14\x29\x3b\x2d\xd2\x5b\x74\x3d\x33\xbf\x7e\xa4\x46\xf0\x07\x64\xcb\x82\x18\xf4\xcd\xe7\x4a\x09\x0d\xed\xeb\xc7\x08\x16\x01\xe6\xa5\x3e\x02\xf6\x7a\x0e\xf8\x29\x22\x97\xe0\x45\xd4\x7e\xeb\x04\x70\xdd\x23\xa9\x09\x54\x28\xb1\x79\xab\x30\xe8\x3f\x8b\xf4\xae\xc3\x8a\x22\x75\x83\xd6\xc1\x34\x0f\x09\xcb\x36\x28\x82\xad\x6c\x98\xeb\xbb\x83\xf7\xfd\x06\x6c\xbc\x3b\xc4\x74\x96\xae\xff\x69\x91\xd6\x06\x85\xbe\xb5\x2f\xa1\x67\x18\xee\x0c\x35\x10\x54\x90\x78\x02\x34\x97\x25\xc6\x0c\xbc\x3e\x7b\x56\x2b\x52\xea\xd2\x4a\x7c\x0c\x3a\x9d\x87\xdd\xb1\xae\xc2\x66\xba\xc0\x36\xbe\x5b\x7b\x76\x0a\x78\xea\xfa\xef\x22\x14\x5a\xbd\x18\x50\xe4\x51\x90\xbe\x62\x4a\x64\x77\xac\xbb\x07\xfe\xc1\x8c\xed\x7e\xfb\x8d\x10\xa7\xa5\x2d\xcb\x82\x1e\x12\xdd\xfd\x4b\xb5\xdf\x6b\x1e\x21\x7a\x94\x47\xca\xd1\x6e\xf3\x53\x9d\xf6\xc6\xb4\x72\xf6\xa9\x5e\x30\x95\xf8\xcd\xee\x06\x82\x0e\x41\xba\xa7\x26\x89\x3f\xa6\xbc\xf0\x7d\xb0\xf3\xbf\xa6\xd9\xfd\x6e\x48\x2f\xbd\xcf\x94\x3b\x7a\x7e\x29\x47\x6c\x70\xd8\x72\xe6\xfe\xe8\xf5\xe2\x1c\x45\x91\xfe\xae\xb5\x3a\x28\x95\x75\x46\x0b\xa8\xaf\x12\xcd\x69\xaf\x15\xba\xb9\x40\x81\xee\x44\x16\x93\x6c\xba\x2c\x21\x9e\x02\x48\x8f\x29\xa1\x75\x56\x4c\x95\x0d\x1b\xcb\xc5\x44\x43\xbd\x10\xc6\x2c\x56\xea\xc5\x48\x2c\x0a\xc1\x41\x84\x5a\x37\x36\x86\xba\x24\x8f\x5c\xc2\x42\x95\xa5\x02\x9b\x37\xb6\xc6\x12\x25\x34\x73\x88\x4a\xc7\x0b\x87\x9e\xcd\xe0\x63\x52\xd3\x48\x87\x67\x03\xb4\xd8\x4e\x68\xc6\xca\x8c\x85\x78\xbd\xb8\x90\x67\x74\x52\xa3\x8c\x11\xe6\x08\x12\x20\xb0\xe9\x07\x08\xf5\x00\xc4\x44\x9f\x89\xe9\x32\xe7\xe5\xe9\xcd\xa2\x14\x4a\xf9\x32\x39\x67\x62\x7a\x7a\xb3\xe8\x7a\x94\xdd\x8f\xd6\x78\x9f\xed\xfd\xaf\x3d\x07\x08\x19\x8f\x48\xf1\xf6\x3c\x8a\x67\x36\x44\xab\x4b\xb7\x71\x34\xbf\xe1\x31\x08\xb3\xe5\x86\xa9\xc4\x5f\x7f\x1f\x1f\xe5\x06\x9a\x00\xcc\x42\x78\x53\xe0\xe6\x33\x0c\x10\xf6\x43\x29\xe7\xdb\x11\x16\x0d\xb3\x33\x5d\x57\x5d\xc8\x08\x5c\xaf\x17\xd1\xd4\x16\x8c\xef\xfd\x75\xaf\x86\x6b\x4f\x8b\x0e\x14\x56\x65\x3c\x8a\xd7\x44\x2c\xb7\x79\x18\xcf\x27\xa1\x6f\x23\xdb\x20\x6c\x9f\x02\xe8\x98\xd7\xdc\xaf\x2d\x0f\xc0\xbc\x3b\x78\x5f\xdb\x43\xe8\x5e\xdd\x41\xf3\xe5\x77\x11\x19\x56\x77\xcf\xc6\xb0\xa3\x6c\x43\x12\x40\xb8\xff\xfd\x10\x98\x15\x70\xcc\xe0\xfe\x8e\xe2\x69\x0a\xdd\xbb\xf6\xc7\x9d\x4a\x6f\xca\x3c\x37\xb2\xe5\x7f\xc7\xf2\x9b\x61\xe1\xdb\x4a\xa9\xcd\xa0\xa4\xe6\x31\xeb\x5c\x67\x62\x65\x90\xd0\x61\x50\x56\x53\x4e\xd8\x24\xbb\x11\xe9\x60\x86\xe5\x78\x20\xf3\x26\x18\xfa\xec\xd3\x16\xc2\x9d\x7c\x6a\xad\x02\xdc\x51\x13\xb9\x58\x0f\xb4\x1c\x24\x79\xb6\x18\x4b\x5e\xba\x52\x8c\x9d\x37\x0e\xbe\x2d\xd6\x00\x41\x8a\x36\x90\x96\x6b\x2c\x61\x68\x56\x69\x63\x45\x5d\x0d\xc3\xcc\xe5\x85\xc2\x2c\xa2\x2e\x23\xf8\x2b\x4c\x01\x56\x42\xd5\xba\xc3\x83\x83\xfe\xc1\xc1\x01\x74\xc3\xbc\x2a\xa6\x55\x50\x95\x30\xa3\x32\x89\x0f\x1e\xfa\xea\x96\x3c\xcf\x49\x55\x69\x7f\x4a\xe5\xdc\xba\x3d\x97\x82\xa2\xe3\x52\xac\xf5\x17\x02\x83\x50\x6d\xae\xae\x18\x95\x53\x3c\x0b\x66\xe3\xa3\xea\xcc\xc1\x8e\x96\x23\x0b\x96\x8a\x39\x64\xa2\xa2\xbc\x4f\x66\x14\xa4\x41\x61\xf6\x99\x32\x7d\x86\x78\xe0\xa5\xe0\x51\x7e\x53\xbb\x57\x58\xc8\x53\x65\x53\x43\x4e\x36\xbb\x13\xee\x09\xe5\xdb\xac\xec\x06\x53\xda\x4c\x7b\x25\xcb\x2b\xd5\x37\xe0\xc4\xb5\x28\xd0\xbb\x89\xe7\x39\x93\x65\x18\x06\x1a\xec\x2e\x96\xd6\xc0\x29\xca\xc9\xa4\x92\x0d\xff\x85\xd4\xc2\xc7\x72\xff\x72\x78\xc8\xe6\xd2\x50\xa6\x1f\xd6\x25\xbf\x31\x23\x7b\x9f\xe3\xea\xc0\xf7\x82\x6a\x8b\xe1\xd8\xc1\x90\x8c\x3d\xd5\xde\xef\x35\xcd\x26\x93\x2c\x59\xe6\x1a\x15\xcb\x37\x48\x58\x86\x4c\xa9\x02\x20\x55\x5d\x35\x28\x02\x1f\xff\x42\xc3\xd3\x11\xe2\xfb\xcd\x6b\x93\xeb\x99\xcc\xe5\x94\xbc\xff\xa1\x24\x66\x30\xb4\xa1\x50\x15\x66\xda\x0a\x37\x99\x1c\xc1\xbc\x45\x56\x35\x57\xad\xd4\x7c\xca\x0a\x3e\x17\xb6\x6a\xe5\xd0\x6d\x23\xd6\x46\x55\x36\x5e\x10\x0e\xfd\xdf\x97\x59\x72\x95\xaf\x19\x57\x66\xce\xe4\xd8\x59\x96\x66\x47\xa9\xf0\x26\xc3\x13\x19\xd0\x89\x3f\x9b\x89\xaa\x3d\x2d\x82\x29\x7f\x8c\x8e\xcc\xb1\x4b\x97\x97\xf0\x05\x48\x4d\x72\x42\x39\xf5\x5c\x71\x5a\xee\x9c\x4d\x4b\x4e\xd1\x83\x98\x9a\x1b\x4f\x48\xc5\x09\xd4\x1e\x8d\xf8\x55\x6a\x07\xc4\x97\x47\x54\x88\x9b\xa7\xe9\x63\xca\xfc\x0c\x12\x7f\xcf\xdf\x03\x41\x47\xca\xb4\x68\xff\xb4\xd2\xdf\xf9\xdb\xe3\x1f\x63\x2f\x55\xac\xed\xb6\x2c\x74\x96\xbb\x7c\x42\x98\x98\x00\x93\x99\x91\x2b\x8b\x6d\x4e\x55\xd5\x2a\xf5\xd3\x0e\x0f\xfa\xec\xd0\x17\x05\x7c\xf2\xf2\x39\x2a\x2d\x20\xdb\xb1\xe1\x79\x7e\x38\x02\x0e\x7e\x3b\x6e\xde\xcb\x1c\x67\xec\x0a\xe4\xd1\xb5\xe6\x1f\x65\xc1\x80\xbe\x78\xa7\x7b\xb5\x05\x88\x80\x0c\x04\x73\xbe\xa0\x64\xca\x58\xd1\xf4\xe8\x7b\x97\x23\x27\xaa\x7d\x6b\x0d\xfe\x69\xc9\x57\x90\x25\xce\x9e\x64\x1b\x99\x47\x09\x32\x4a\x61\x5a\x7c\xe8\xf6\x20\x08\x60\xc8\xd8\x0b\xb2\xd2\xa3\x7b\x23\x54\x6e\xaf\x36\xc6\xa6\x41\x64\x04\x05\x29\x98\x59\x9c\xf0\x64\x56\x2b\x40\x78\xcb\x69\xaf\x78\xc3\xbc\x5d\x78\xa2\x0b\xf7\xab\x4c\xdd\xce\xc7\xfe\x5e\x9d\xd0\x3f\x3e\x06\x0f\x85\x94\xa5\x4b\x08\x37\x40\x3e\x06\x8c\x4f\x93\x7b\xb5\x36\x87\xc0\xba\x78\x52\x31\xcb\xb5\x69\x8b\x95\x5a\x33\xaa\x56\x9b\xfd\x2a\xdc\x98\x39\x57\x1a\xdf\xdf\x20\x0b\xd5\xf2\xdf\xfb\xdf\xb1\x9c\x5d\xad\x42\x63\xb9\x14\x36\x31\x23\x3c\x5f\x7c\xfa\x05\x9e\xbb\x8c\xdc\xc4\xca\x31\x65\x5a\x41\x31\x26\x98\x0a\x7b\x78\xcf\x07\x04\x60\xba\x6b\x73\x84\xbd\xa7\x2a\x9b\x49\xa5\x59\x29\xfe\xbe\x14\x4a\x2b\x62\xc8\x69\xc9\xa7\x76\xe5\xf6\xba\xb0\xb5\xe7\x11\x9e\x11\x9d\x97\x0b\x2a\xe3\x0f\xf1\x3f\x86\x26\x21\x37\xbf\x17\xb2\x6a\x44\x7d\x5a\xc0\xe0\x1f\x5c\x4a\x1f\x1f\xa2\xea\x4a\x34\xa1\x1f\x27\x72\x4b\xcf\x23\xcd\x2f\x94\xc7\xb3\xec\xb3\x52\x0c\x16\x72\xb1\xcc\xcd\x8d\x4b\xfb\x85\x90\x20\xf5\x26\x6c\x1c\xa2\x13\x42\x4c\x3c\xa6\xa1\x9a\x27\x55\x9b\x8b\xaa\x95\xd2\x66\xaf\x66\x42\xe4\x6c\x91\xdd\x88\x9c\xa5\x22\xd7\x9c\xcd\x97\xb9\xce\x16\x79\x86\x97\x75\x56\x98\xeb\x5a\x89\xfd\x54\xe0\x07\x84\xa0\x3d\x04\xb5\x10\x70\xf5\x11\x22\x11\x20\x62\x72\xc8\xce\x85\x30\x52\xa5\x5e\xa8\xd1\xfe\xfe\x54\xca\xe1\x34\xdf\x57\xbf\x88\xbc\xf8\xbb\xc3\x14\x40\x79\x6b\x7a\x3d\x77\x23\x9b\xd9\x1e\xd6\x70\xa5\xe5\x32\x99\xd9\x4d\x5a\x09\xa6\xf8\x2a\x74\x7c\xc3\x9f\x31\xdb\x35\x42\xcd\x8a\x29\xd4\x75\x4e\xc5\x8d\x48\x29\xa0\x77\x4d\xed\xb2\x54\x14\x3a\x9b\x64\xc0\x1b\x8b\x44\x58\xb6\x08\x01\x5f\x73\xcc\x4b\xc3\x0b\x70\x4f\xc6\x0e\x1c\x14\xfb\x11\x72\x2f\xcc\x0f\xe1\x79\xb2\xf5\x6b\x43\x1a\x86\xa9\x13\xae\xe0\xd4\xa4\x01\xf6\x68\xe2\x86\xc6\x57\x41\xfa\x35\x34\x9a\x84\xf5\x6c\x33\x75\x4e\x52\x06\xbe\x40\x3c\x31\xd9\x31\x8f\xd9\x74\x29\x54\x2d\xe0\xc3\xd6\x66\x2e\x6d\x9d\x6f\x90\x5d\xcd\x99\xc1\x73\x8b\xf4\x12\x8c\x44\x1d\xcf\x6d\x3f\x38\xc5\xaf\x6e\xcc\x8e\x7c\x15\x8f\xf8\x76\x26\x28\x53\xaa\x60\x89\x2e\xf3\xc1\x35\xbb\x12\xeb\x4a\x41\x75\x3a\xbd\x0b\xae\x28\xf3\x55\x30\x92\x2e\xf3\x37\xaf\xcc\x0f\x51\xfe\x67\x0c\x95\xc9\xae\x6b\x9c\xc3\xd6\xbc\xad\x72\x8c\x13\x83\x97\xc4\xaa\x96\x71\x9f\x20\x3f\x91\x5c\x6a\x36\xe3\x45\x9a\x87\x95\x76\xf1\x7b\x15\x6c\x1b\x7c\x2f\xc7\xf0\x46\x29\x6b\x3f\x3c\x39\x7d\xfc\xfa\xc7\x0f\x7e\x86\x1f\xdd\xd3\xe0\x55\x29\x6f\xd6\x3e\x94\x1c\xb3\xe1\xd4\x32\xee\xae\x66\x59\x32\x43\xd6\xa9\x34\x28\x3f\x67\x68\x87\x5a\xf1\xfc\x0a\x02\xcf\x50\x4a\x36\xd7\xa9\xf5\x01\xb0\xc5\x3f\xc8\xce\x64\xa5\x0a\xcc\x22\x23\x21\xd6\xd0\x02\x4e\xe4\x5c\x90\xe7\x68\x55\xbe\xa9\xde\xa4\x1f\x89\x18\x40\x12\x31\xa7\x0a\x4d\xf7\xf5\x1a\xe5\x61\x35\xec\xba\x10\x33\x6c\x56\xa3\xba\xdf\x83\xd4\xf9\xfe\x4b\x88\x13\x74\x7f\x55\x4e\x0b\x71\xbb\x6a\xe9\x5f\xdd\x24\x70\x23\x0d\xd9\x8e\x99\x82\x34\x58\x63\x11\x26\x11\x2c\xd9\x64\x69\x3e\xd8\x4a\x3c\x28\x19\x53\xbb\x58\x82\xe6\x45\x32\x93\x25\x42\xa3\x7d\x9c\xc8\x64\x49\x8f\xa4\xcc\xbc\x5d\xed\x35\x6d\xde\xa7\x4b\x5e\xf2\x42\x53\x20\xec\x58\xb0\x5c\x28\x35\x30\x7c\x62\x20\xcb\x81\xf8\xfb\x92\xe7\x03\x2d\x11\x1a\xbe\xdb\x26\x36\x94\xfa\xcc\x9e\x68\xfc\xf5\xe9\x04\x1f\x55\x86\xbd\x40\x95\x3e\xe5\xeb\x06\xc1\x93\x4b\x91\xbe\x97\x62\x32\xce\xa0\xea\xf6\xd3\x48\x14\x41\x48\x01\xbd\x95\xf5\xe7\x81\x4d\x50\xdc\x00\xd5\x9c\xa0\xca\x81\xf4\x3f\x07\xe7\x6b\xcb\x2e\x85\xd9\xac\xfe\x4b\xee\xd1\x14\x9e\x9b\xe5\x0e\xdb\x64\x97\xff\x5f\x7f\xa3\x70\xa0\xe6\x6d\xa2\xab\xc7\x41\xf8\xec\x28\xa2\xbf\xe0\x46\x81\xfb\x16\x6c\x86\x9b\x00\xd5\xa6\x0a\x81\x94\x9c\x2d\x64\x66\xa4\x96\x20\x59\x36\x15\x38\xa9\x8d\x73\xe2\xd6\xd6\x50\xed\x08\x73\x5b\x73\x96\x67\x0a\x36\xc2\xbe\x2a\x6c\x89\xfd\x20\x49\xb3\x2f\x07\xe6\xdf\x1e\x66\xff\x0c\x98\xcc\x7a\xcf\xf3\x24\x81\x72\xe7\x53\x2c\xb2\x91\x8a\x85\x9e\x0d\xf0\x27\xd4\xb6\x5a\x2e\x69\x6d\xaf\xde\x15\xb7\xf0\xe1\xe0\xb3\x2c\x4f\x4b\x01\xa5\x7a\xbc\x7f\xee\x26\x56\x18\xd8\x9a\x0c\x07\xff\xc1\xd5\x22\x08\x79\x24\x1a\x8b\x81\xe9\xf6\x71\x8c\xe3\x72\x5d\x8b\xfa\xc3\x06\xd5\x72\x06\x2d\xce\xbd\x16\xca\x10\xea\x80\xbd\x9c\x50\x83\xcf\xbc\x61\xa0\xe2\xb6\x1b\x7b\x96\xd5\xdc\x06\x7a\x51\x80\x06\xc4\xea\xc1\x2e\xc6\x8b\x22\x23\xba\x5b\xc2\xa3\xc0\xc0\x5f\x5e\xf7\xaa\x36\xf4\xf2\x3a\x0a\x50\x2a\x36\x65\xb3\xdf\x60\x2d\x3f\x5f\x17\xc9\xac\x94\x85\x79\x9c\x82\x36\xc3\xde\xb0\x20\x92\x07\x32\x8f\xa1\x8e\x90\x19\x45\xe5\x6f\xb8\x39\xcb\x83\x15\x5f\x83\xe8\x8c\xf0\x20\xaf\x55\xdf\x51\x56\xe5\x64\xfa\x64\xe3\x18\x61\x8a\xc3\xf6\x41\x6b\x03\x99\xfe\xe0\x08\x18\x88\xbc\xbc\x25\xad\x98\x29\x34\x67\x62\x56\x22\x9f\x10\xf2\x43\x41\x38\x95\xf3\xba\x88\x31\xe3\xf0\x34\x35\x33\x80\x92\x42\x20\xd7\x1b\xe1\x00\x0f\x92\x11\x11\xe8\x74\x64\x85\x97\xdf\xad\x38\x65\x53\xcd\xd9\x54\x07\x60\x2b\x22\xad\x95\x5c\x6a\x7c\x4e\x05\x6f\x2a\x97\xaa\x31\x2a\x74\x64\x1e\x4b\xf8\x5c\x74\xea\xae\x3d\xe4\xdc\x7b\x2e\x1d\x8e\x95\x52\x3c\x08\x6c\x01\x84\xd5\xed\xf9\xaa\x00\x93\xf0\x2a\xc2\x36\x67\x72\xf5\xa8\xf2\x33\xb9\x03\x06\x2a\x6e\x68\xe9\x63\x78\x7c\x53\x67\x5f\xaf\x36\x0e\xd3\x5a\x41\x73\xc7\x5a\xe1\x8e\x89\x47\x25\xf3\x76\x04\x06\x9a\x55\x86\x14\x81\x41\xbf\xd2\xd2\x8f\xe7\xb3\x15\xdd\x0a\xa7\x00\x65\x13\x4a\xa1\xc1\x66\x8c\x36\x2c\xad\x19\xa1\x4d\x8b\x6b\xc3\x67\x65\x79\x55\x74\x36\xed\x62\x13\x3e\x1b\xf7\xb0\x19\xa1\xd5\x1d\x74\xe5\x58\x42\x95\x52\x55\x0e\x1d\x4e\x85\xb6\x21\x65\xdd\x9e\xf9\xcb\xeb\x97\x02\x25\x5b\x4d\x14\x6a\xbe\x79\x37\xdc\xa5\x8d\xd7\x9f\xf7\x2c\x60\xbf\xfd\x16\x2c\x25\x68\x15\xa7\xaf\x0e\x7e\x68\x34\xe0\x3b\xb4\x6e\x40\xa2\x77\xc3\xa7\xa6\x9f\x7f\xce\x3e\xeb\x76\xac\xd4\x04\x66\x07\xf7\xa3\xf3\x78\x0c\x21\xbb\xcf\xb5\xa0\x90\x20\x38\x80\xfa\x37\xd7\x0d\x3a\xaf\x88\x73\x28\x19\x69\xab\x17\x86\xbc\x30\xf6\x99\x03\xf5\x84\x1a\x2c\x8b\x4d\xeb\x73\xae\x64\xcd\xb9\x60\xd0\x1e\x88\xd4\xde\x4e\xd9\x84\x20\xd7\xb0\x01\x3f\xf6\x37\x87\x9e\x00\xaa\xfd\xd8\x8a\x1c\xd7\x79\x1b\x6e\xa0\xe1\xef\x43\x8d\x5b\xd8\x16\xcc\x40\x75\x04\xb7\xad\x4e\x82\xfe\xce\xaf\xc6\x7e\x17\x13\x04\x71\x16\x20\xc0\x20\x94\xb4\x01\xd4\xf7\xed\xa0\x42\x1e\x55\x85\xd4\xb0\x14\xc8\xf6\xd1\xb0\xf9\xa1\x20\xd4\xcc\x16\xd8\x77\xcd\x1c\xca\x8b\x39\x95\x55\xb1\xba\x2b\x60\x3c\x59\x27\xc7\x54\xb3\x82\x5f\x44\x72\x32\xf0\x0f\x94\x61\x85\x79\xf3\x67\x71\x1e\x0c\x7a\xbb\xa8\xa2\xa3\x03\xb7\x46\x0e\x59\x87\x00\x1a\xec\x7a\x50\x3d\xc6\xe7\xd6\x02\x8e\x1f\x06\xcd\x56\x44\x33\x47\x1d\x6e\x4b\xfa\xec\x5d\x13\xf6\xfa\x4d\x54\xf3\xbe\x17\x88\x88\x9f\xb9\xb1\xac\x48\x87\x35\x74\x0a\xb1\x62\xa7\x48\xbb\xaf\x0b\x71\xb3\xc0\xe7\x10\x50\x33\x08\x55\xa0\x4c\x76\xb0\x3b\x21\xc8\x60\xf6\x9b\xf7\xf4\xae\x3b\x13\xe6\x5b\x89\xd9\x72\x03\x89\x7e\x76\x54\xa7\x51\x14\x39\xad\xcc\x79\x61\x24\x51\xce\xd2\xec\xda\xd6\x66\xc9\x54\xdd\x44\xd1\x2c\xf0\x85\x59\x3f\x20\x79\xaa\x08\x45\xbd\x34\xbb\x0e\x34\x25\xa4\xef\x4a\xb3\x6b\x7f\x07\x65\x93\x92\xcf\x05\x7d\xdd\x18\x0c\x4d\x95\x87\xbb\x1d\x6c\x1a\x14\x60\xa5\xbe\x94\x8c\x35\x51\x8a\xfc\x66\x2c\x79\x74\xc6\x90\x3a\x69\xc4\x0e\x1e\x79\x8e\xd2\x41\xfb\xd9\x88\x1d\x1e\x1c\xfc\x6b\xf8\xbd\x75\xdd\x1c\x31\x3e\x56\x32\x5f\x6a\x11\xfe\x0a\x8a\x45\xec\xe4\x13\x94\xdb\x52\x54\x38\x11\xa6\xca\xc4\xc8\x96\xff\x62\x08\xfb\x87\x1f\x86\x2c\x48\xa2\xef\xf4\xf2\xb8\x06\x85\xfd\x73\xc9\x53\xd4\xf5\x1a\x8a\x17\x0a\x3b\xb2\x4c\x87\xd5\x87\xb5\x2f\x92\x6b\x9f\x6e\x38\x9e\xcd\x0b\xd0\x99\xcb\x5f\x9f\x16\x85\x28\xd1\xe2\xf0\x0b\xf0\xf2\x55\x56\xa4\x86\x19\x9b\x61\x48\xbe\xe2\x06\x36\x3c\xf4\xd1\x02\xab\xd7\xf7\x18\xab\xa2\xb2\x34\xa2\x7a\xe7\x5f\x3a\xb0\x44\xb3\x25\x61\x8c\x79\xd8\xb4\x57\xdb\xc3\x21\xcd\xf2\x2d\x0c\x3d\xe4\x69\x7a\x6a\x96\xf6\x2c\x53\x5a\x40\x26\x09\x54\xc6\x76\x6e\xeb\x28\x86\xaa\xcb\xe2\x0c\x7a\x7f\x18\x8e\xb3\x02\x67\xd2\xf3\xe5\x7a\x52\x99\x58\x4e\x11\x2a\x50\x9b\x66\x67\xa9\xcb\x50\x51\x2a\x93\xe1\x58\xa6\xeb\x76\x0a\x9a\xf3\x72\x9a\x15\x23\x76\xb0\xb8\x89\x68\x05\x0d\xcb\xb5\xef\xdb\x68\x2b\xa0\x9e\xf0\x6b\xeb\xc6\x3c\x62\xb3\x2c\x4d\x45\x11\xfe\x86\x71\xf5\x23\xb3\xbc\xee\x60\x00\xe7\x6e\x00\xd6\x87\x01\xfe\x82\x6e\x23\xbd\xb0\xcb\x60\x25\xc6\x57\x99\x1e\x2c\x95\x28\x07\xc8\x77\x46\xf0\xe4\x8f\x1a\xcd\xe5\xaf\x4d\x2d\x2a\x25\x45\x50\x23\x1c\x04\x7c\xbd\x45\x61\xbd\x03\x69\x51\xc6\xcb\xe9\x14\x42\xbf\x05\xe3\x69\xca\x08\x1d\xd6\x20\x6d\x50\x1a\x55\x9b\x92\x93\x09\x6a\xca\x2d\x30\x8a\x36\x40\x1f\x0b\xf2\x73\x08\x92\x53\xb9\x3d\x0c\x77\x87\x06\xb9\x90\x8b\x20\x8f\xeb\xd6\xe6\x8f\xb1\xee\xba\xef\xd1\x49\x78\x9e\x74\x43\xac\x26\x33\x5e\x1a\xd2\x22\x5f\x97\x1e\xfb\x0b\xfb\xa2\xd7\x89\x85\x6d\x70\xd1\x39\x02\x82\xa9\x70\x25\xf8\x09\x99\x92\x4f\x24\x1d\xe4\x68\xb6\x78\x07\xeb\x3f\xfb\x47\xb0\x13\xcc\x9a\xf4\x47\x6c\x9c\xcb\xe4\xea\x51\xf4\x9b\x25\xa5\x4d\x33\x8d\x7b\x40\xa0\xce\x6d\xbb\x7d\xc4\xa9\x9b\x85\xcd\x04\x4f\xa3\xe3\x4e\x14\xe6\xce\xb9\xa1\x9a\x13\xa5\x9e\x65\xc5\xd5\x87\x66\x64\xe4\x59\x71\x15\x30\xe8\xb0\x43\xa5\xa6\x6c\x29\xf2\x4e\x9f\x21\xf6\xd4\x4c\x08\xdd\xa9\x0f\x64\x23\xf7\x37\x63\xbd\x71\xea\x35\x30\x8e\x67\x5f\xbc\x7c\xf2\xb2\x6b\x0e\x75\xca\x7b\x23\x76\x2e\xcb\x72\x8d\xc9\x9f\x58\x07\x69\xf4\x43\x87\x64\x16\x27\xcb\x60\xec\x22\x57\x51\xea\x3b\x84\x06\x89\x7c\xc8\x37\xe5\x6f\x6a\xc8\xd8\x53\x97\x43\x72\x91\x25\x57\x8c\xb3\xb1\x80\x6a\x10\xe0\x02\x32\x91\xa5\xcf\x6d\x2f\xe6\xa0\xbd\xbb\x96\x59\xea\xf5\x15\x89\xcc\xf3\x4c\x91\x7a\xd9\x96\xc0\xb8\xb2\xf5\x23\x32\x91\xa7\x4c\xa4\x99\x06\x7f\x0d\x81\x05\xf3\x30\xd1\x3e\x99\x71\x7d\xa2\x2e\xb0\x23\x33\x5e\xac\x61\xf6\xf7\x6c\x46\xa2\xb1\x00\x00\x02\x63\x30\xdd\x29\x05\xef\x36\x81\x5e\x4d\x69\x98\x22\x0d\xd7\x0e\xda\xa7\xeb\xac\x34\xb0\x11\xd4\x95\x58\x83\x6f\x0f\x8a\x7f\x4f\x9f\x9f\x9a\xc5\x3f\x5e\x62\x81\x67\xcc\x83\xbd\x12\x0c\x74\x5c\x72\x32\x01\x2f\x1f\xb8\xb9\x8a\xc5\x52\xb3\x99\xc8\x17\xa2\x64\xe0\x79\x63\xd7\xce\x35\xb8\x09\x99\x35\x20\x08\xf0\x86\xc3\x4c\x9b\x66\x88\x39\x4c\x27\x2b\x78\x7a\x2d\x4a\x73\xb8\xf2\x35\x9b\x2f\x31\x69\xb1\x82\x0a\x35\x06\x34\xa1\xed\xdc\x2c\x06\xb1\xac\x44\x58\x6a\x0f\xbc\xad\x34\x2f\x52\x5e\xa6\xf4\x24\x02\xcd\x16\xfe\x32\x2e\xe5\x0a\xac\xf1\x94\x13\xb4\x4f\xf6\xd4\xa5\x0e\x0c\xf4\x8a\x4f\x44\xbe\x66\x19\xd6\x62\x64\xe3\x35\xe9\xc6\xa8\xb3\xb7\xc2\x11\x39\x35\x13\xf0\xcd\x00\x7f\x0e\x4e\x0b\xb5\xaf\x1c\x14\xba\xb6\xec\xae\x9b\x43\xa3\xcb\xa5\xd8\xda\x4f\x2d\x44\x9e\x43\x0e\x5b\xd3\x05\xec\x7a\x5b\xfb\xf0\xa5\x96\xb6\xfc\x83\xe9\x25\x27\x93\x1d\xfb\x80\x8b\xd2\xad\xba\xf0\x85\xe6\x39\x88\x03\xac\x63\x6e\xa0\xad\xbd\x4a\x49\xab\x17\x37\x7a\x2c\x6f\xb6\xb6\xd7\x7c\x0c\xfa\x62\xd3\x67\x70\xd8\xd4\xbc\xed\xd2\x87\xba\xa1\x03\x28\x6a\x31\x62\xba\xe4\x85\xc2\x47\x6f\xc8\x37\xdb\x59\xf7\x44\x16\x7a\x30\xe1\xf3\x2c\x5f\x8f\xd8\x5c\x16\x12\x12\x63\xd5\x5a\x18\x86\x3c\x62\x87\x0f\x63\x01\x02\x7e\xba\xe6\x65\xc6\x0b\x3d\xc8\xb3\x29\xd7\xcb\x52\xa8\xfa\x2d\xde\x26\x68\x58\x89\x62\xb0\x1e\x91\x29\xf2\x91\x0b\x96\x1a\xdc\x34\xc9\x19\x90\xd6\x76\x00\x73\x1c\xb1\x45\xd9\x26\xf4\x46\x83\x2c\xb5\xb9\x6b\x70\x56\xec\xb3\x6c\xbe\x90\xa5\xe6\x85\x65\xe1\x4e\xaa\xaa\x31\x64\xc2\x7c\xa8\x82\xa2\xbd\xa8\x0b\x8b\x38\xfb\x4e\xdf\x8a\x7f\xf8\xe6\xa8\x88\x7f\x5b\xa1\x80\xa7\x46\x15\x08\x38\x62\xdc\x16\x12\x38\x48\xc0\x8b\xd7\x83\x43\xdf\x88\xbb\x00\x9a\xcb\x6b\xf1\x29\xe0\x88\x22\xfd\x14\x60\x12\x5e\x24\x21\x9e\xee\x04\x29\x91\x8b\xb5\x07\x71\x22\x17\xeb\xdb\x42\x00\x07\x0a\x0f\x02\xdc\x26\x6a\x30\xf6\xf7\xd9\x13\x74\x77\x42\x87\xa6\xcf\x59\x5a\x4a\xf0\x36\x33\x9c\x61\x9f\xf8\x25\xe6\xd1\xc3\x3b\x11\xdd\x23\xa8\x84\x99\xb9\x89\xba\x6b\xa1\xff\xad\x47\xdc\xdd\x56\xa0\x4c\xc5\x84\x2f\x73\xcd\xc6\xe4\x92\x88\x36\xc0\x44\x16\x93\xa5\x12\xf6\xee\xdf\xbe\x06\x33\x99\x4e\xdf\x3f\x81\xdd\x63\x1f\x73\x95\x99\x17\x08\x0e\xd4\x8d\x74\x56\xd6\xf3\x82\xb1\x8f\xd5\x53\x54\x1b\xe2\x4a\xac\x53\xb9\x2a\x3c\xa2\x1e\xcb\x74\xfd\xb3\x58\x3f\x91\xab\xa2\xfe\x3e\x0a\xdc\xc4\x20\x27\x34\xcf\x8a\x20\x7d\xb3\xf5\xec\x40\x8f\x99\x92\xca\x12\x5a\x1f\x4c\xb0\x9a\xb5\xdc\x60\x69\x76\x1d\x30\x55\xd7\x78\x98\xa5\xe6\x05\x09\xe8\x1a\x95\x72\x35\x00\xfb\x4c\xa7\xa1\x61\x2b\xff\x6d\xe7\xad\xfe\x8d\x0e\xf3\xdd\xf5\x2d\xd5\xf8\x30\x32\xd4\xb2\xf9\x61\x84\x2d\x1a\x08\xb7\xca\xd7\xdc\x9a\x3c\xc6\x5d\xf2\x6c\x5b\x4d\xc5\xbd\x81\xd0\x9f\x8f\xdc\x11\x51\xe6\x5b\xac\x51\x0b\xe0\x1d\x78\xe4\x02\x15\xa6\x8f\xf9\xb4\x5d\x80\x80\x16\x83\x31\x9f\x06\x73\x8c\x7a\xde\x05\xc5\x9b\xf0\x78\xdb\xc7\x45\xfd\x6e\x09\x58\xff\x18\x5e\x66\xd1\x32\x1b\x56\xe0\x2b\xf4\x06\x25\xd6\xc0\x72\x3e\xb6\x69\x8e\xb5\x5c\xb0\x89\x41\x31\x87\x72\x3b\x39\x79\x99\x21\x7c\xfa\xa5\x14\xb4\x1c\xf4\xe4\x07\xb7\xfb\x7b\x54\x6b\x2a\x5f\xa3\x39\xca\xee\x14\xb8\x3e\x83\x40\xca\xe3\xc2\x48\x81\xea\xd3\x88\x84\x10\x1f\x80\xd6\xd8\x7c\x4d\x8e\x8a\xa1\x97\xbc\x9d\x9b\x2c\xed\x5c\x08\x8c\x8b\x08\xb0\x9e\x04\x76\xdd\x3f\xc8\x3c\x6d\xdd\x6e\xb3\x90\x78\xa3\xa1\x79\x74\xde\xb4\x5c\x40\xbb\xc1\x44\x96\xe6\xbd\x39\x70\x33\xee\xd4\x3b\x56\x89\xa3\x46\x14\x0d\x67\xb6\x46\xfa\x16\x5a\x6d\x63\xed\x5a\xe2\x31\xa3\xed\xac\xb7\x8f\x16\x83\xdf\x6f\x5d\xcf\x86\xc9\x05\x90\x63\x5e\x88\xb4\x00\x1a\x4f\x9e\x80\x6b\xaa\x72\x9c\xd0\x3c\x2f\xb2\x84\xe7\x98\x29\x95\xbc\x64\x7d\x71\xb4\x42\x2d\xe7\x20\xf6\xd3\xed\x41\x0f\x1b\x20\x1a\x52\x80\x8f\x97\x93\x89\x28\xc9\xaf\x64\x8d\xa9\x64\xad\x92\x83\xb1\xa7\xba\xa3\xa0\x38\x20\x7a\x4a\x2a\xef\xe9\xec\xdd\x18\xcd\xc3\x70\xb1\x10\xbc\xb4\x8e\x86\xfe\xbd\x80\xaf\xa1\x0c\xd3\x7c\x37\xd5\x10\x5d\xcd\x44\x51\x75\x60\x35\x30\x33\x85\x05\x05\x43\x5b\x37\x66\x87\x57\x42\xb3\x0e\x4c\x30\xcb\x33\xbd\xb6\x27\xbf\x63\xa6\x71\x25\x04\xa6\x95\xb7\x6f\x23\x2c\xf1\x07\xa9\x6e\x83\x4a\x09\x08\x2e\x73\x7e\xca\xfe\xa4\x60\x90\x07\x7a\x39\x77\xe0\xc2\xc6\xdf\x54\x87\x2d\x17\x2b\x78\x41\x76\xe1\x6b\xb8\x9c\xc0\xbd\x16\xfc\x96\x0c\x3e\x7c\x28\x0b\xf9\x96\xf2\xf0\x55\x9e\xcd\x45\xcf\x5c\xf3\x18\xee\x01\xc4\xd0\xaf\x0c\x3e\x15\x9a\x54\xad\xa6\x85\x9c\x18\xbc\x27\x57\xc3\xd8\x75\xef\xb8\x14\x7c\xa7\x3b\x2e\x68\x1e\x11\x2a\x7e\xcf\x4b\xc1\x3b\x8d\x6d\x6b\x07\xad\x01\xd7\xdb\x2f\x99\x00\x62\x4c\xcc\xea\x7a\xea\xd2\x77\x58\xd3\x7a\x83\x63\xbb\xdd\xc0\x4c\xb1\x5f\xa5\x9c\x3b\x77\x34\x23\xe5\x8c\xad\xaf\x3d\x16\x85\xb2\x25\x5d\x97\x66\x79\x52\x69\xe7\x46\x81\x11\x10\xd6\x79\x96\x63\xe9\xb2\xb1\x8b\x51\x19\x36\xa9\x58\xd0\x39\xce\xc7\x79\x01\xce\x58\x21\x94\x35\xfc\x15\x56\x7f\x0e\xda\x87\x42\x6a\x0b\xce\x72\x55\x5a\x89\x5d\x80\x99\x3d\xcb\xc5\xb5\xc8\x51\xc8\xa3\xa7\x39\x78\x80\x58\xe7\x75\xa7\x77\x01\x4d\xbe\xd7\xa7\xbc\x90\x5a\xd8\x29\xe1\xc2\xc1\x73\x7b\x04\x3a\x49\x25\xac\x1e\x24\xe1\x05\xcc\x03\xa3\xb8\xc0\x05\x90\x10\xec\xa6\x66\xa3\x4a\x6f\xe6\x79\xa1\x90\x16\x00\xce\x6a\xb5\x1a\xae\xbe\x18\xca\x72\xba\xff\xe0\xe0\xe0\x60\x5f\x5d\x4f\x83\xcd\xbd\xf6\xf7\x5c\x9a\x5d\x37\x67\x7f\x25\xea\x7b\x71\xde\x05\xd8\x7d\xd6\x31\x30\x7a\x11\x90\x88\xfe\x0c\x42\x06\x88\x24\x59\xc6\x83\x55\xde\xc4\x00\xb0\xd3\xc7\x49\xf7\x36\xb5\xbc\x16\xa5\x32\x6c\xb6\xcf\x3a\x87\xc3\xc3\xea\xe8\xad\x72\xc5\x66\x23\x8a\x96\x8b\x8a\x31\x26\x17\x13\x5d\xf9\xaa\xe1\x70\x18\x7a\x77\xfa\x30\x25\x8a\x94\x8c\xc8\xd6\x56\x65\x37\xe7\x6f\xb8\xa5\x50\x71\x95\xa3\x3b\x36\x9b\xc1\x41\x52\x41\xad\x49\x84\x94\xf0\x85\x46\x17\x20\x81\x2d\x53\x5f\x4c\x63\x82\x55\x07\x0c\x3f\xa3\xec\x0d\x72\x2e\xcc\x5b\x77\x35\x93\x2c\xe1\x65\xe0\x6a\x0d\x5d\x2f\x78\x39\x15\x6d\xaa\x4a\x03\x15\x78\x83\xc7\x61\xd8\x29\xda\x49\xf4\x30\x1f\xc0\xef\x03\x0d\x0d\x3a\xcd\xbd\x76\xd4\x75\xc4\x7d\x1a\x77\x6d\xd3\x9e\x79\x3d\x43\xa0\xa6\x70\x6a\x81\xf0\x3b\xda\xc8\xc5\xcd\x23\x67\xbd\xef\xe0\xf5\x1b\x1b\x49\x3a\x72\xc1\x13\xd8\xdb\x83\xb6\x69\xd2\x0b\xee\xd4\xea\x39\x83\x40\x80\xcd\x1c\x32\x84\xd2\x02\xbb\xf6\x98\x72\xa4\x29\x6e\xf4\xd3\x62\xb1\x74\xaf\x7b\x7c\x34\xbe\xf2\x9d\x2f\x6c\x8b\xfa\x13\x0b\xe5\x10\x0a\x35\x88\xdd\xf9\x28\x84\x07\xfc\x79\x9d\x5e\x88\x88\xac\xd0\x03\x35\x97\x94\x1a\x0f\xc5\x0f\x17\x69\xb9\x20\x93\x6b\xe8\xeb\x6e\x53\xe1\x9a\x9e\x3f\x20\xa0\x37\x3c\x5f\x3a\x8f\xce\x93\xf3\xf3\x48\xfd\x04\x17\xb8\xb9\x50\x2d\x6c\x1b\xcd\x17\x0c\xc1\xd8\xb9\x0f\x3d\xf2\xea\x2a\x18\x63\xd8\x34\xb8\x5c\xe8\x0f\x7e\xd6\x2f\x17\x86\x72\x78\xce\xae\x61\x22\x66\x20\xf7\xda\x8a\x17\x88\x81\x8f\xe6\x1f\xbd\x7f\xe1\xf8\xba\x8c\xe7\x54\x80\x99\xd2\xc5\xba\x1c\xd0\x5b\xad\xce\x4a\xe8\x1f\x3c\x3a\x02\xd3\xb3\x47\x52\x3f\x9e\x73\xec\xba\x1f\x68\x02\x27\x11\x1c\xf7\x87\x0d\x6f\x6f\x00\xd2\x08\x06\x57\x6f\x26\x75\xee\xd0\x74\x14\x4f\xe1\x51\xd5\xb5\x62\x67\x30\x1d\x6f\x97\xc2\x3e\xeb\x22\x39\x09\x23\x1a\x2d\xfd\x6d\x40\xd9\xb4\x0d\x65\xb8\xa8\x30\xc5\x54\x1b\x82\x2a\x34\xae\x19\xb7\xe1\xae\xde\xa0\x13\xd6\xd1\xf2\x12\x6a\x85\xb4\x43\x5a\x28\x96\x79\xde\x07\x49\x01\xf3\x8e\x59\x90\x89\x02\xe5\x45\x2e\x79\x0a\x42\x8b\x19\x2f\xd3\x50\x86\xd8\x76\x63\xb2\x84\x80\x58\x73\x51\x87\xe4\x04\x99\xd0\x20\xe9\x3e\x77\x71\x84\xe6\xf8\x2d\x16\x79\x26\xd2\x60\x80\x5d\xe8\xec\x35\x9a\x93\x5e\x97\x79\x88\xb4\x65\x99\xfb\xa4\x3a\xee\x8f\xed\x06\xb0\x59\x29\x26\x9d\x3e\x33\x3d\x42\x6f\x94\x7a\x37\xef\x70\xe5\x1d\x54\x22\xa3\xe7\x46\xe3\x17\xc0\x08\x2b\xfc\x3b\x0b\x6f\xdb\x20\xe1\xfc\x2b\x83\x84\x79\xdf\x5b\x06\xd9\x46\x7c\x1e\x8f\x74\x09\x39\x44\x1a\x0e\x1c\x9c\xcd\xd0\x78\x57\xb1\xa9\x6a\x97\xfb\x7a\xc3\x40\x28\x21\xd4\xa8\x3b\x72\x09\x80\x36\xdd\xba\x82\xc7\x7d\xbf\xcb\x49\x2a\x45\x50\x02\xf8\x36\xc7\x09\x0c\x0c\x5b\xc7\x50\x1b\xc7\x00\x18\xad\x1c\x2d\xa1\xe6\xbb\x8d\x34\x15\xfa\x71\x5c\xd0\xf8\x36\xab\xa9\xd4\x42\xde\x65\x5d\x1b\x46\xdb\xbc\xae\x71\xad\xe3\xce\xb8\xf4\x63\x3e\x9d\xf3\x69\xe4\xac\x94\x99\x2f\x76\x18\xd3\x76\x84\xf6\xb7\x1b\x93\x62\xce\x7d\x40\x59\xf6\xeb\x2e\x23\x52\x37\xd3\xfa\x76\xe3\x05\x59\xa0\xdc\x98\x71\xae\xc5\x8d\xe3\x06\xdd\x6d\xaf\x5d\xc6\x3f\x89\x62\x1e\xdd\x96\xba\x6f\x83\x91\xa3\xf0\x48\xff\x47\xb5\xfa\x00\x05\x4a\x83\x38\x08\x51\xfe\x56\x21\xe7\x03\x4c\xe3\x9c\x14\x17\x33\x41\xa5\x76\xdc\xa3\xd2\xde\x45\xb1\x56\x04\x1a\x6d\xe5\xfe\x53\x41\xe1\xdc\xd5\x0d\x0c\x62\x19\xf0\x17\x04\x32\x15\xfa\x24\xcf\xcc\x23\xd9\x5c\xc9\x15\xdb\x97\x3b\x45\xc8\x68\xad\x88\x0d\x01\xe6\xf8\x07\x7a\x48\x91\x98\x0d\xdf\xe3\x5a\x06\x1b\xa3\x57\x0d\xfb\xdd\x84\xb8\xa8\xb6\xd7\x06\xcc\xd9\x52\xc2\x59\x3a\x85\x74\xd3\xbe\xa0\xd8\x9d\xd1\x66\xb3\x6d\x6e\xe0\x26\x11\x8a\xbb\x3d\x5a\xf1\xa6\xf5\x50\x6a\x9a\x4d\x0b\xda\x6d\x76\x18\x54\x7e\xbb\xe9\xe1\xe0\x0d\x89\x2e\xa3\xb0\x13\xd2\x78\xc8\x3c\x55\xf5\xd4\x36\x36\x41\xd0\xad\x3d\x2d\x03\xef\xfe\xcd\x93\x76\xd7\x77\x6b\x42\x4e\xab\x56\x74\x4f\xe8\xca\x84\x7f\xf7\x44\x11\x69\xe4\xca\xbb\xfd\x32\x89\x26\x7a\x92\x83\x06\x74\xa9\xa1\x0e\x6b\xc2\x93\x19\x9a\xa8\x5e\xb4\x27\x1f\x09\x06\x2f\x85\x61\x45\xa6\x53\x8b\x14\xb0\x31\x91\xc5\x0e\xc9\x25\xc2\x99\xce\x30\x81\x67\x10\x9f\x15\xa4\x2c\x89\x8e\x16\xf0\x23\x70\xef\x74\x19\x10\x60\x65\x98\xb1\x07\x32\x4e\x70\x4a\x75\x51\x7d\xff\xbd\x84\x48\xa8\x5b\xa5\x71\xb1\x7b\x68\xdf\x5e\x36\xf9\xd2\xad\xb7\x52\x09\x1d\x66\xbf\xd9\x94\xe3\xc5\xbe\x86\x09\xfb\xdd\xc8\x48\xd8\x9a\xd5\xc5\x5d\x45\x33\x91\x2e\x73\x71\x06\x18\xa8\xbc\xa6\x9f\x16\x13\x59\xce\xab\x79\x9d\x9c\x9b\x61\x29\xa5\x0e\x62\x2b\x21\x43\x15\x38\x02\x95\x98\x65\x28\xb2\xbe\x18\x78\x2e\xc3\x54\x21\x59\x2e\x8b\xa9\x28\xcd\x3b\x36\x73\x59\xab\xce\x83\xda\xc0\xe4\x24\xe6\xfd\x80\xa0\x88\x6a\x8a\x5a\xfe\xca\xda\x20\x57\x26\x52\x4c\xb7\xc7\x0a\xb9\x82\xc1\xe8\xd8\x99\x27\x6f\xa1\xb3\x52\xe4\x6b\x48\x60\x24\x4a\x57\x4d\x1d\x22\x4c\x33\xcd\xd2\x2c\x25\x35\x16\xea\x68\x6d\xfe\x24\x03\xa6\xf0\x51\xbf\xe1\x0c\x22\x1f\x61\x1f\x4b\x61\xad\xbe\x94\x5c\x0b\x49\x02\xa3\x49\x13\xa0\xd9\x34\x22\x4e\x75\x95\x2d\x14\x21\x0d\xa1\xba\x74\x49\x00\x76\x62\xde\x5a\x48\x9c\xfd\xd0\x2d\xca\xdc\xaf\x63\x4c\x92\x03\x81\xaa\x94\x3b\x89\x61\x35\xe2\x0a\x7b\x9e\x71\xc5\xc6\x90\x36\x81\xac\x65\x50\x2d\xc6\xe9\xa9\x7d\xb6\x90\x19\x57\x95\x89\x6e\x24\xd1\xac\x80\xcd\xab\xb8\xa0\x37\x17\x9c\x74\x06\xa9\x4a\x6c\x66\x58\x8b\xd1\xd6\x88\x0b\xad\x48\x61\xae\xe9\xa8\xfe\x77\x73\x05\xba\xa0\x78\x00\xe9\x03\xdb\x8a\xc9\x05\x65\xe4\xaa\xa1\xa2\x1b\x19\x91\xe5\x56\xd7\x60\x35\x5a\x9c\xb9\x84\x3b\xee\xda\xba\xf0\xdf\x76\x5d\xfe\x40\x5c\x53\x43\xeb\xc7\xd1\x0f\xdd\x00\x64\xa0\xea\x32\xfb\xff\x06\x8f\xd1\x99\x5c\xa9\x0f\x61\xb3\x7e\x05\xf6\xf6\x57\x94\x3d\xf2\x4f\x37\xec\x9f\x2f\xc3\x6b\x53\x5b\x04\xdb\xdd\x9c\xf5\x35\x8c\x2d\xad\xe6\xc5\x88\x69\x45\x09\x7d\x81\xbf\x74\x5d\x84\x61\xd7\xc7\x68\x50\x11\x47\x08\xd2\x6b\x82\x60\x03\x83\xa1\x81\xff\xda\x85\x6b\x60\xc9\x88\x8a\xc2\xc4\x6a\x04\x23\x71\xf6\x76\xfc\x18\x74\x43\x15\x79\x74\x71\xb3\x51\xbd\x45\xcd\x17\x37\xec\x3e\xeb\x2c\x6e\x02\x5b\x41\x9b\x1e\xa9\x2e\xdb\xd8\x0b\xee\xf7\xcc\x7e\xda\x3c\xfb\x48\x2c\x58\xf0\x52\x89\xa7\x85\xee\x6e\x58\x4b\x3c\xc9\xe7\x94\xed\x0b\xf8\x0d\x4d\xcc\x05\x18\xf9\xbc\x5d\x59\x81\xb9\x80\x6a\xb9\xd2\x42\x15\xe7\x0a\x65\xc2\x0b\xbb\x4d\xf4\xb7\x96\x36\xed\x17\x30\xad\x4e\x21\xcb\x39\xcf\x3b\x2c\x9b\xd8\x1b\x56\xce\x33\x4d\x05\x72\x7d\xa2\x7d\x9f\x60\xec\x23\x3b\xae\xa4\x1c\xa3\xfb\x7b\x2b\xce\x68\xdc\x93\x4a\xfe\x32\x87\x3c\x3f\x6b\x44\xe3\xfe\x3e\x7b\xb1\x9c\x8f\x45\x69\x13\x9f\x7b\xd3\x20\xbf\x16\x25\x27\x79\xc5\x4b\xd1\x75\x54\x59\x1b\x57\x01\x70\x5e\x4e\x9e\x01\x94\x23\x76\x78\x70\xf0\xa8\x3a\x02\xf8\x81\x30\x70\xeb\xcd\x0a\xd1\x38\x94\x7b\x80\xb4\x8f\x64\xfa\xba\x22\xa0\x30\xcc\xbd\x50\x31\x86\xe9\xd5\x22\x15\x95\xcb\xb8\x56\x51\x58\xb5\x59\x72\xa3\x6e\xb1\xb3\x92\xf9\x6a\xe0\xa6\x04\x1e\x9a\x9d\x7a\x97\x36\xdb\xd7\x36\xeb\x57\x93\xfd\xab\xd1\x02\xd6\x68\x03\x8b\x7f\xb7\x6f\x46\xbe\xd4\x32\x70\xc0\x8c\x1b\xd1\xfb\xb1\xd6\xc6\xea\x1b\xd1\x9c\xe6\xdc\xd5\x29\xd4\xc8\x66\x1b\xe3\x4c\x2d\x38\x18\xbf\xc8\x01\x9d\xce\x54\xc2\xf3\x64\x99\x43\x32\x01\x0b\x25\xce\xea\x98\x15\xec\x87\xac\x14\x13\x79\x53\x41\xdd\xf9\x82\x17\xdb\x37\xca\x8c\x5a\xdf\x29\xe8\xdb\xb0\x5b\xa6\xf5\xc0\x8c\x8f\x59\x09\x6a\xdb\x45\xfd\x8a\x42\x94\x3f\x5d\x3c\x7f\x16\xc4\x81\x74\x3b\xbf\x74\x86\xa5\x58\x08\xae\xbb\x9e\xea\x7a\x86\x31\x5e\x96\x9d\x9e\xfd\x29\x22\xfd\x06\x02\xaa\xfb\x82\xb9\x61\x2d\x9e\xfd\xd7\x8f\xb9\x12\x66\xac\x4f\x8d\x85\x31\xc1\xa5\xe5\xe3\xc6\xae\x78\x01\xfc\xca\x66\x5d\xb1\xd6\xcc\x99\x60\xb6\x7d\xdb\xf4\xea\x37\x46\xe7\x80\x6e\x8b\xe6\xf6\x95\x92\xbe\xbf\x54\xac\x14\xc1\xe4\x3d\xe4\xb7\xf6\xd5\x1d\xb0\xdb\xdf\x7e\x03\x0b\xc7\x0e\xae\x3d\xc4\x09\x5c\x6a\x65\x18\x61\x8b\x0a\xa6\xba\x35\x81\xda\xa6\x92\x05\xd2\x81\x23\x35\xc4\x7e\xc0\x98\x36\x87\xaf\xf9\x9e\xc4\x58\xf7\x59\x95\x84\xee\xed\x42\x41\x0e\xb7\x18\x59\x64\x00\xda\x5d\xb3\xc4\x53\xd9\x03\x2c\xa9\x71\x21\x17\x8f\x2a\x03\xd4\xb4\xf6\xb5\x01\xea\xf8\x6e\xee\x13\xb6\x6d\x70\x5f\x68\x71\xfa\xbe\x9e\x06\x8b\xf8\x55\xca\xf9\x0f\x3c\xd1\xa0\xb5\xf5\x0e\x05\xa1\x4f\xc9\xa3\x6d\x43\xd4\x26\x47\x43\x78\xd9\xc1\x6b\x4a\x1b\xd3\xaa\x54\x93\x86\xd6\x1f\xe8\xa5\x18\xcc\x03\x69\xc2\xca\x3c\x95\x5c\xa3\x90\xbd\x27\x05\xaf\x03\x7f\x95\x52\x16\x5b\x5e\x30\x0c\xf9\x02\x0e\xaa\x93\xed\xda\xb2\x9a\x0c\xd6\xa6\xb7\xa8\xb4\x81\x2f\x9b\xa4\x83\xee\x36\xeb\xf4\x99\x79\xa4\xb3\x34\x9b\x8b\x42\x41\x9e\x47\xb3\xa0\x40\x47\x45\xef\x30\x73\x8d\xa3\x97\x1c\xbc\xa9\x39\xbd\xc8\xc8\xaa\x67\x00\x05\x20\x48\x18\xf4\x0e\x6b\xbb\x28\x6a\x36\x2c\xb6\x35\x53\x5f\xe5\x98\x63\x52\xf2\x48\xd5\xca\x06\x75\xe3\x6a\xe2\x1b\x3f\x8a\xac\xa8\x71\x7e\xc9\x48\x30\xa6\x37\x97\x7a\xe2\x56\xf9\xa1\xdb\xdb\xf8\xd0\x58\x2c\xc7\x79\xa6\x5c\xcd\x6a\x17\xf9\xca\xfe\x11\x24\x88\x1b\xa1\x46\xe1\xa3\x65\x28\x95\xe5\x07\x8f\x0a\xec\x73\x26\x57\x17\x12\xdf\x67\x5d\xf8\xba\x41\xe5\x00\x79\x30\xbb\x3d\x97\xac\xc8\x01\xa8\x6a\x55\xf0\xc7\x8f\xcd\x0f\x13\x57\xc5\x06\x5c\xef\x02\x11\xdf\xa5\xfe\xb5\xfa\xc2\x9d\x88\xba\x01\x7f\x2d\x3a\xf4\x50\xc7\xde\xa4\x76\xf5\x5b\xd6\x90\x81\xd5\xf7\x46\xae\xbd\x31\x1b\x6b\xd0\xd8\xaa\x72\x9d\x87\x11\x46\x0d\xd8\xfb\x13\xd2\x56\x72\x9b\xd7\x0d\x50\x30\x16\x94\x1a\x36\xca\x45\xad\xb4\x39\x7a\x2e\xd8\x0e\x64\x28\x9b\xaf\xd5\xba\x1f\x4d\x72\x69\x4e\x50\xb1\x66\x13\x68\x2c\x29\x13\x26\x9e\x34\xe7\x55\x74\xed\x1e\xd7\xb0\xa1\x54\xac\x60\x32\x54\x73\x5e\xea\x1f\x0c\x8c\x27\x99\xd9\x77\x4b\x60\xb5\xd5\xf4\x1b\x58\xc5\xd0\x7a\x68\xfb\x54\x4b\x05\x4b\xe4\x7c\xb1\xd4\xd5\xa7\x80\x5c\x9a\x67\x92\x16\xd3\x92\xe7\x74\x7f\x51\x3a\x5f\x57\x4d\xc3\x4f\x51\x39\xfd\x79\xe3\xdc\xff\xd2\x3e\x95\x68\x26\xa0\x37\x27\x7d\x58\x22\xd8\x58\xe8\x95\x10\x91\x67\x2b\xcd\x0f\x02\x36\xa4\x26\xc4\xd1\x97\x46\x8c\x55\xce\x73\x74\x2c\xd8\x9c\xa7\xe0\x0e\x08\x1c\x4b\x81\x23\x36\x06\x73\xa3\xd3\xa0\x15\x7b\x4b\x91\xc8\x32\xc5\x93\x88\x3e\x2c\x4a\xb2\x4c\x5b\x1f\xb1\xc2\xaa\xb5\x58\xce\x35\x66\x8b\x4d\x05\x6e\xaa\x73\x3e\xb7\x9a\x8e\x86\xdd\xbb\x90\x8b\xe7\x30\xa8\x2d\x0f\x59\xf9\x1d\x4f\xb3\x6b\x52\xdb\x46\x36\xa8\xe3\xd9\x9f\x81\x8a\x27\x37\x2e\xcf\x06\x3c\xb7\x4f\xc5\x3e\xfd\xef\x79\xb5\x91\x01\xe3\x92\x0f\x1d\x3c\xda\xa4\x30\x6b\xa8\x1c\xde\x90\xb6\x2d\x86\x79\xbf\xc6\xad\x89\xcf\x36\x28\xc0\x1a\x8a\xfa\x87\x99\xa4\x2c\x8b\xaa\xdf\x38\x91\x6d\xc5\x05\xb8\xd4\xa3\x59\xac\x7f\x0d\x99\xa4\xaa\x5c\xa3\xaa\x19\xa9\xf6\x9b\x59\x62\xaf\x1f\x80\xfb\xd5\x65\x6f\x86\x64\x5e\x7e\x41\xf2\x26\xb8\x9e\x50\x88\x7b\x66\x7e\xd9\xd2\xdb\x10\x74\x63\xe7\x0b\xb9\x60\x83\x96\x99\x6c\xd3\xc4\x55\xee\xc1\x3a\x97\xde\xdf\x67\x98\x87\x21\xcc\x8e\xcc\x4b\xc1\x03\x97\x75\xa8\x6c\x00\x51\xc9\x99\x4b\xfc\xa2\x98\xb8\x16\xe5\xda\x26\xfd\x75\x6c\x39\x4c\xdd\xdc\xa6\x46\xa7\x3b\x6d\x83\x6b\xb5\xdb\x93\x6e\x2b\xab\xc1\x5c\x97\xdb\xfe\x35\xcc\xab\x29\x13\x51\x73\xbf\xc6\xb3\x76\x87\xde\x11\x53\xd8\x09\x80\xd9\xdc\xca\x4d\x4e\x17\xbe\xb3\x25\x41\x74\x0b\xc8\xe6\x8c\xdb\x9c\x80\xe0\x0c\x65\x65\xdf\xa7\x64\xe4\x9b\x0b\x3d\x93\x29\x24\x05\x44\xf3\x02\xe5\xca\x46\x87\x7b\x65\xdd\x6b\x41\x1a\x40\xc8\x33\xae\x48\x26\x4c\xd0\x77\xff\x2f\xac\x5c\x16\x41\x4a\x51\x6c\x26\x93\x64\x59\xee\xe0\x68\x15\x89\x2a\x3b\x69\x82\x71\x80\x3b\x68\x81\x4b\x3b\xc6\x9d\x34\xc0\xd8\x3b\xd2\xfe\xba\x14\xf5\x6d\xaa\x5f\x5a\x55\xf8\xa6\xa8\x65\x26\xc6\xec\xde\xb2\x68\x49\x71\x6d\x85\x33\xbb\x71\x90\x98\x03\x07\xce\x8a\x69\x1f\x72\x72\x94\x02\xdc\x94\x27\xcb\xdc\x29\x70\x94\xcb\x77\xe8\xec\xba\x58\x2f\x04\x33\x10\x43\xd1\x30\xeb\x43\xe7\x06\xf5\x09\xcd\xc0\x48\x46\xf9\xc7\xad\xdf\xfe\x9a\xad\xf8\x7a\xc8\xd8\x13\x09\xc9\x90\x24\x09\x43\x46\x12\x5a\x96\x63\x0b\xcc\x01\xc1\xc8\x95\x24\x27\x07\xbf\xe5\x82\xf1\x89\xc6\xbc\xaa\x56\x8e\x42\xb1\x6a\x92\x73\x35\x13\x0a\xab\x37\x2a\x6d\x8b\xcb\x64\x85\x2d\x85\x11\xcc\x0b\x6a\x8a\x28\x0d\x29\xd0\x95\x16\x3c\x05\x04\x60\x19\x45\x97\xeb\x12\x95\x43\x94\x0d\xc0\x95\xae\x30\x62\x00\xe4\x50\x50\x9a\xab\x59\x25\x72\x04\xd0\xb2\x0f\x89\x7f\x97\x5a\x65\xa9\xa8\x5e\x33\xc0\xf4\x50\xed\xeb\xea\xb8\xb8\xd2\xaf\xca\xd9\xe8\x6c\x73\xf2\x80\xbc\xb5\xdd\xd5\x96\x60\x68\x7e\x1d\x81\x95\xd5\x45\xcb\xa9\x0f\x21\x97\x74\x79\xa7\xcc\x71\x8f\xd2\xfe\x35\xbc\x76\xb6\xd8\xc4\x29\x57\xf8\x9f\x6e\x64\xba\x20\xa9\xa3\xd2\x24\x68\xf1\xd8\x1b\xe7\xba\x35\xc3\xd3\xdd\xcc\x55\xbb\x3d\xfd\x36\x5a\xe5\x5a\x71\xf9\x68\x27\xe7\x03\x9f\xdb\x2b\x4e\x88\xdf\xf5\xef\xd9\x2a\xce\x6d\x79\xfe\xaa\xf4\xfd\xfd\x51\xc3\xa5\x56\xa9\x57\x59\xc4\xbc\xa1\x68\x8d\xaf\x2c\x85\x2b\x5b\xe4\xec\xe0\xd1\xfd\x51\x3b\x41\xe6\xec\xee\x23\x73\x09\xaa\x2a\x79\xd8\x51\x28\xa4\xab\xff\xd3\xe0\xa0\xc0\xb4\x7b\x23\xc8\x39\xea\x68\xc6\x82\x94\x2f\x41\xf5\x23\x3c\x8a\x20\x87\x18\x68\xc1\x65\xe5\x56\xd1\xc5\x70\xe7\x52\x69\x86\x41\x95\xf6\x2d\xdb\x67\xfc\x8a\x47\xd2\x6e\x2f\x58\x5c\x21\x75\x3f\x06\x64\x27\xe1\xe1\x05\x8f\x62\xe8\x05\xf1\x58\x49\x99\x61\x3c\x21\x4d\xd0\xdf\xb1\xae\x2c\xd2\xdc\xa2\xc3\x63\x0f\xb9\x14\xf1\x56\x03\xcc\xb1\x57\xef\x3b\x52\x63\xd3\x21\x17\xc4\x0b\x5a\x39\xff\x28\xc3\x07\x31\x02\xc0\x21\xcd\xb3\xc5\xf9\xf6\xec\x6e\xc1\x69\x8c\xbc\x76\x83\x83\xe9\x6b\x8b\x56\x39\x90\x4d\x34\xfa\xdb\x6f\xa1\x0b\x73\xbd\x41\x90\x58\xf1\x88\xd5\x40\xd3\x03\x20\xc8\x5b\xec\x1c\x29\x7c\xd8\xaf\xdd\x9e\x3e\x46\x03\x85\x77\x9f\xc0\x7d\x33\x58\x60\x2e\x40\x12\x77\x0e\xb2\x3c\x0f\x9d\x1b\x76\x45\xe2\xf6\x69\xaa\x9d\x53\x80\x8b\x7b\x0d\x17\x14\x04\xc1\x17\x4a\x94\xfa\x31\x90\x5f\x1c\x28\xdb\xaf\x36\xf5\xc0\xad\xc1\xa0\x21\x8b\x65\x15\xa3\x61\xd6\xbf\x36\xa4\x52\x46\xf4\xed\x28\x7d\x69\x2b\xaf\xb9\x7d\xca\xc2\xf3\x6f\x90\x56\x41\x4d\xc3\xce\x85\xee\x10\xbf\x1f\x49\x3b\x48\xbd\x3b\x4c\xa4\x57\x0b\xb4\xd8\xdf\x67\x8f\xa5\x9e\x79\xcf\x9f\x1d\x97\x49\xb8\xdc\xb8\x48\x27\x2e\xfe\x91\xcb\xac\x4f\x24\xcc\xd7\x49\xc5\x85\xb2\x39\x48\x67\x59\x61\xce\xb3\x48\x33\xae\x05\x5a\x80\x71\x7d\xf4\x5e\xdf\x6d\x27\xef\x6d\x9b\x4b\xeb\xba\xeb\x6a\xfa\xed\x9b\x15\x64\xb7\x84\x59\xee\x70\x12\xeb\x50\x63\xfb\xf0\x06\x9b\x46\xf3\x19\xb4\x51\x0c\x1b\xaf\xc7\xf6\x3c\x03\x9f\xe4\x86\xf4\xe0\xff\xe0\x1b\xd2\x8a\xe0\xf1\x3a\xba\x38\xd1\x44\x16\x69\xfb\x25\xe9\xfd\xa2\x1a\xef\xc9\x10\x5e\x78\x55\x42\xad\xa0\xff\xe6\x37\xe5\xe3\x28\x05\x82\xbb\x2c\x2b\xa2\x66\xeb\x7d\x49\x09\xb8\x77\x65\xec\xdf\x1d\x55\x85\xd8\x6d\xd7\xa5\xe7\x7a\xc1\x2e\xed\x7a\x63\xc2\x06\x6e\xbe\x30\x4d\x93\xf8\x94\x86\x4e\x74\xcd\xec\x62\x7b\xf6\x86\x4f\x76\x33\xd6\xc5\x8d\x4d\x28\x74\xd7\x23\x6d\x4b\x16\x9e\xfe\x86\x5b\x23\xcc\x67\xd1\x74\x61\xd4\x18\xe8\xae\xd7\x46\x00\xf8\xce\x37\xc7\x0e\x57\xe2\x27\x5a\x5c\x95\x1b\xff\xe1\x0b\x74\x03\xfe\x4f\xba\x10\xeb\x27\xad\x6d\x3a\xbb\xdf\x86\x0e\xe6\xf6\xcb\x10\x88\x26\x34\xd5\x18\xf1\x1b\xf2\xf0\x78\xbe\xa2\x36\x5f\x8b\x17\x01\x9f\xe7\x4a\x2d\xe7\xb6\x24\x6a\xa4\x00\xe8\x01\xd4\xea\x8b\xbf\x87\x05\x3d\x78\x5e\x0a\x9e\xae\x49\xf3\xd8\xa7\x94\x5e\xf6\xb2\x83\x26\xa0\x6c\x37\x34\x60\xef\x53\x7f\x81\x94\x72\x15\xa4\x56\xc7\x5b\xf9\x1e\xd6\x61\xf2\xdf\x8a\x22\xed\x45\x0b\x85\x95\x05\xf7\x57\x29\x92\x75\x92\x0b\x15\x3a\xa0\x43\xaa\x94\x99\xa8\x96\xb0\x24\xb7\xe8\x85\x54\x30\x15\xf4\xa4\xb6\x05\x85\xad\xda\xac\x94\xab\x73\xac\x1c\x6d\x35\x78\x85\xb0\xc6\xd7\x6c\xc2\x0a\x91\x08\xa5\x78\xb9\xfe\xef\x7a\x85\x86\x0a\x9b\x5a\x7d\xa1\x4d\x0a\x9c\x4d\xd5\x65\x7e\x16\x62\x81\x11\xc1\x18\x62\x9c\x0a\x45\xd5\xde\x5d\x96\x53\x5a\x27\x26\x8f\x77\xc5\x64\x45\x01\x06\x5a\x51\x52\x66\x1d\xc8\x08\x00\x15\x08\x18\xbb\x98\xd9\xd2\xce\x13\x9e\xe5\xcb\x52\x44\xa5\x4a\xf0\x9c\xbd\x36\x80\x20\x1e\x20\x82\xef\xe1\xd8\x53\x4a\xac\x28\x68\x05\x07\xbb\xd6\x8e\x2e\xbf\xa0\x9d\xaf\x48\x84\x09\xec\x3b\x4f\x32\x74\xcc\x77\x73\x27\x30\xb0\xee\x0e\xdd\xa8\x54\x61\x29\x18\x0e\x73\xd6\x4f\x9a\x6e\x6c\x07\xfa\xd4\x82\x14\xd1\x49\x77\xfa\x96\xa6\x71\x20\x4f\xb7\xe0\xb6\x1a\x4a\x30\xa4\x55\xa1\x47\xb3\x08\xff\xaa\x3b\xd6\x33\x07\x2a\x08\x5d\x8e\x78\x9a\xfd\xbd\xca\x45\x8d\x4c\x34\x93\xa5\x9e\x51\xa2\x0f\x8c\x8a\x50\x94\xda\x7a\x2a\x29\x6c\x1c\xe3\x70\x72\xa9\x87\xd5\x7a\x2b\xe7\xbe\x6a\x4a\x0b\x13\x7f\x54\xed\x72\x6a\x0b\xaa\x34\x32\xe8\x58\x5d\x6a\x10\xce\xea\x42\x53\x58\x1f\x09\x4c\xa5\x38\x5f\x71\xc3\xe7\x58\xa7\x2e\x4c\x28\x47\x47\x35\xd3\xa2\xe4\x36\xf9\xcd\x6e\x11\x10\x56\xc9\x0b\x1b\xf8\xa4\xe4\xce\xff\xe0\x39\xd7\xb3\xe1\x3c\xc3\xfa\xc4\x55\x2d\xe3\x0e\x97\xf5\x16\xe3\x1e\x0a\x78\x66\x3b\xba\x40\x27\xc1\xc8\x07\x8f\x82\x3f\xbf\xab\x4e\x2d\xf8\xf1\xfe\xfd\x30\x3c\xa3\x0c\xd4\xce\x81\xca\xfa\xbe\x6f\x5f\xa9\x13\x66\x08\x3f\x78\xd2\xb8\x73\x06\x3e\x21\x9d\x6b\xc1\x66\x99\xae\x8b\xcc\x2b\xef\x4a\x80\xf2\x0c\xe3\xc0\xa8\x6d\x75\x53\x17\x2c\xb2\x8a\xca\x59\x08\x9d\xcc\x48\xf7\xfb\xa1\x5b\x86\x1a\x6b\x77\xb4\xa9\x4b\xe8\x0c\x64\x6b\xaa\xe4\x72\xda\xdd\x3b\x31\x0c\xba\xe8\x68\x06\xc0\xb0\x70\x9f\x81\x32\x62\x7b\xec\x3e\xab\xc1\x64\x6c\x5c\x0a\x7e\xe5\x3c\x7f\xee\xed\x20\x94\xd1\x14\xfa\x2c\xb0\xd3\xc3\x2c\x74\x56\x2c\x45\x24\x66\xb9\x6a\x6b\x1e\xef\x47\xac\x5a\x12\xc5\xe7\xac\xb2\xb1\x49\x64\x16\xc1\x5c\xd3\x90\x7d\xaa\x8f\x17\x14\xcf\x65\x31\xb5\x18\xdc\x50\x4c\x6d\xe3\x84\xea\x67\xf6\xf3\xcf\xeb\x07\x79\x97\x29\xd7\x9f\xed\xb6\x50\x62\x6c\xee\xc1\x7c\xd5\x94\x73\x02\x2f\x6b\xb8\x43\x3c\xac\x95\xc0\xf2\xa7\x58\x92\x9c\xc1\xa3\x26\xbe\x21\x8a\xb8\x6e\xc9\x79\x2c\xd6\x3a\x6c\xd4\xd7\x71\x27\xd4\x10\x6f\x0a\x11\x73\x5a\x79\x5f\xee\x86\x16\x51\xa4\x7f\x1e\x52\x4e\xfd\x63\xa6\x09\x25\xa7\x35\x2d\xd9\x4e\xc4\x1b\xd5\x6b\x39\xf7\x4a\x6b\x56\xfb\xf1\xb4\x22\xe9\xa3\xe3\x98\x08\xae\x45\xa7\x4f\xdd\x6f\xaa\x1e\x4a\x32\x5f\xe4\x6b\x06\x5e\x47\x04\x6c\x2d\xc8\xa4\x19\x71\x14\x28\x5a\x2b\x78\xfa\x3f\x8a\xb3\x20\xa1\xd9\x3a\xa3\x18\xc3\x08\xf9\x81\x78\xce\xf8\xd8\x66\xfe\x63\x48\x20\x58\x2d\xb5\x03\x8c\x45\x2e\x4b\x32\x50\x9f\x09\x60\x2d\x16\x5c\x16\x94\x53\x74\x05\x36\x83\xc8\x4e\x33\x9a\xaf\x45\x74\x1b\x04\x37\xa3\xf7\xf7\x20\x37\x40\x6d\x03\xb1\xd6\x86\xba\x0b\xa7\xbc\xed\x3e\x85\x8b\x8c\xde\xab\x4e\x32\x1b\x2f\xa7\x53\x8c\xe9\xdd\xf8\xec\x6c\x0a\x7f\xac\x41\x8d\x94\x3d\xad\x71\x99\xf7\xda\x79\x46\x70\xa7\xc7\x66\x4f\x48\x14\x64\xe8\x67\x2c\xf5\xcc\x26\x9b\x1c\xf3\x29\xba\x41\x13\xbb\x82\x3a\x0d\xee\x21\x67\xe3\x35\x82\x34\x13\xd6\xa3\x00\x73\xc7\xba\x08\x9a\xc8\x7d\xd1\xea\x79\x1b\x0b\x09\x1b\x38\x14\xfc\xca\x6d\xb1\x7f\x85\x35\x05\xa0\x74\x90\x9c\x4c\x6c\x46\x03\x9f\xbb\x96\x4d\x32\xcc\x33\xbb\xd4\x81\x1b\x36\x65\xdd\x76\xc9\x84\x77\x08\x90\x0f\x9c\x07\x36\xf9\xda\x44\x39\x79\x5b\x92\x05\xc5\x8d\x2a\x21\x21\x61\xf0\x48\x1b\xb4\xba\x4e\x22\x6a\xd9\x8b\x48\x21\x20\x81\xed\x53\xab\xb5\xdb\x30\xbb\x0d\x30\xeb\x13\xac\x36\xae\x6b\x4c\x5e\x19\xce\x13\x45\x64\x93\x63\x0f\x04\xfd\xcb\x89\x53\x48\x38\xbf\x94\xaa\x52\x64\xce\xd7\xe8\x4c\x65\x5d\x51\x49\xd4\xb7\xae\x5d\x1f\xb6\xee\x34\x8c\x65\x79\x56\x25\x76\xdf\xe3\xaa\xd5\x2f\xe1\x1d\x35\x73\x12\xc1\x7b\x0c\xde\xc7\xb7\x5b\xb0\xd6\x1f\x80\xa5\x85\x8e\xe2\x2e\xab\xee\x14\x4a\x20\x67\xe4\x27\x5b\x8b\xb6\xd0\x58\x82\x0c\xbb\xd8\xd3\x86\x28\xca\x26\x81\xa6\x44\x96\xb6\xc7\xdf\x97\xa0\x6f\x28\x80\xf0\x5d\x97\x30\x47\x01\xe6\x92\x0b\x4c\x13\x0e\x61\x24\x79\x2e\x4a\x39\x2d\x85\x72\x99\x2e\x02\xa3\x49\x6a\xab\xe1\x06\xb1\x1f\x66\x36\x5b\x51\x1d\x5d\x0f\x15\x54\x57\xf4\x13\xae\x56\xb1\x23\xe7\x66\x77\x92\xcf\x3f\x0f\x8a\x7f\x17\x1b\x1c\x4f\x2c\xc9\x87\xcf\xbc\xc6\x86\xef\xdc\x46\xd6\xb4\xc1\x61\xdf\xb6\x94\x06\xd1\x25\x15\x1f\xc8\x26\xf2\xe9\xf9\xb3\x15\x11\xa2\xe5\xff\xf7\x2a\xd5\x9b\xeb\xe9\x13\x79\x9e\x47\x09\x96\xaf\x33\xb1\x5a\xec\x16\x25\x6d\xfa\x1f\xe7\x79\x73\xbc\x01\x98\xfd\xe0\x05\x5e\x61\x76\xb5\x97\x71\x54\x4e\xef\xa0\xa2\xac\xd9\xe8\x20\xbd\xbb\x36\xb8\x15\x42\x74\x5b\xdb\x39\x37\xcb\x23\x07\xbd\xc6\x5b\x37\xba\xd3\x2d\x84\x7e\xc5\x7e\x1d\xf4\xdc\xe0\xfa\x54\xa1\x97\xea\x74\xda\x12\x2b\xb8\x52\x5a\xe4\x88\x14\xb9\x84\xb5\xeb\x05\xd8\x80\x1d\x3e\x8a\x7b\x3e\x6a\xb8\x01\x1a\xf1\x16\xed\x59\x38\xec\xff\xcf\xde\xdf\x77\xb7\x71\x63\x79\xe2\xf8\xff\x7e\x15\x70\x76\xc6\x24\x63\x92\x92\xbd\x9b\x9d\x6e\x29\xea\xfe\xc9\xb2\x3c\xed\x8d\x1d\xf9\x48\x72\xd2\x33\x8e\xc7\x01\xab\x40\x0a\xad\x62\xa1\xb6\x00\x92\x62\xda\xde\xd7\xfe\x3b\xb8\x17\x8f\x55\x28\xb2\xe4\x38\xfd\x30\xe7\xdb\x67\xce\xc4\x62\xe1\x19\x17\xc0\x7d\xfc\xdc\xd4\xf6\x75\xd8\x35\xfa\xef\x5e\x57\x03\xd1\xe6\x99\x51\xa4\xf7\x2e\x1a\x62\x72\x1b\x43\x13\x99\x29\xdd\xde\x91\x46\x1f\x7d\x16\xe8\x78\x67\x62\x61\x1f\xa4\xda\x4c\x24\x1c\xe6\x64\xb5\x61\xa6\x01\x79\x1d\x36\x8a\xb0\x3b\xc5\x4a\x37\xf2\xb1\x1d\x69\x22\x41\x7b\xe0\x84\xd7\x72\x63\x4c\xa3\x12\x2c\xe9\x1d\x5f\xae\x96\xd6\x25\xdd\x45\x30\x45\xc1\xfe\x3d\xc0\x8a\x44\x51\xbc\xa6\x77\xd1\xcd\xcd\x22\x58\x82\x61\x3a\x92\x41\x35\x3c\xd3\x47\x91\xe7\xb6\xea\xf4\x0f\xdf\xe9\xfc\x3d\x09\x9a\xd8\xdd\x2d\xc4\xbb\x35\x5d\xc0\x61\x25\xfc\xe3\xeb\x8e\x83\x79\xd8\x94\xc9\x9a\xd2\xe1\x96\x1a\x22\x23\x40\x2c\x10\xab\x3f\xf9\x36\xf0\xff\x9b\xea\x46\xdf\x8b\x3a\xaf\x7d\xee\xdd\x2e\x94\x0d\x32\xf9\x75\x3d\x90\x6a\x9f\xa7\x6a\xda\x37\xb2\xf6\x7a\xbe\x7b\xb9\x43\xfa\x00\x34\x51\x14\x38\x30\xd7\xd4\x8e\x00\x26\xb7\xc9\x5d\x1b\xdc\x68\xf9\x35\xbd\x8b\x23\xdb\x0c\xb9\xe1\x61\x02\xbd\x8c\x1b\xc1\x1f\x7c\x1d\x7c\x41\xc3\xc1\xb9\x4f\xf1\x6d\xe8\x50\x32\x7c\xd1\x13\x5f\xaf\xe5\x21\xdf\x55\xc7\x57\xe9\x87\xcb\xb4\x97\xd4\xe2\xfc\x17\x7f\x17\x6a\x73\x71\x51\xff\xbd\x09\x6e\xf7\x8d\x02\xf7\xb1\xeb\x72\xf2\x99\x11\x7b\x31\x9d\x7e\x4b\x0e\xdb\xf4\x79\xf8\x9b\xd3\x65\xfa\x19\x70\xea\x14\x4b\x2c\xe8\xde\x19\xc4\x86\x45\xd2\x07\x97\x71\xb4\x45\xe3\xf5\x98\x92\x3d\x62\x03\xda\x38\xeb\x00\x50\x0f\x22\xbe\xb5\x20\xff\x35\xea\x93\xbe\x06\x79\x42\xd9\x0b\xb7\xcf\x2b\x74\x1d\x79\xd8\xa7\xc1\x71\xc0\x1c\x03\x16\xd5\xae\x05\x3e\xe8\xde\xc4\xce\x47\xb4\xb5\x7a\xe0\xea\xf3\x8f\xb1\x78\x78\x85\xf4\x59\xbf\x67\xcd\xb0\x83\x6e\x67\x65\x8b\x40\x18\x19\x88\x92\x67\x02\xf8\xd0\x60\xd5\xfe\x04\xf0\xf0\x98\x3f\xcb\x4c\x1c\xb4\x2e\x32\x44\x20\xb5\x09\xe7\xa2\x1c\xcf\xa0\xeb\xf1\x9c\xc2\x40\x06\x07\xc7\x26\x66\x36\x11\xf6\x12\x34\x3e\xb8\x4e\x4b\x0a\x0a\x80\x7c\xc5\xec\xa5\x0a\x29\x55\x96\xb4\xc4\x7c\x9f\xde\xac\x6f\x23\x85\x40\x5a\xa6\xb8\xe2\x74\xb9\xa4\x8a\x67\xa6\xdd\xbd\xab\xe8\xd2\xed\x25\xf8\xa0\x9e\x81\xda\xee\x9a\x88\xa3\x2b\x1f\x06\xf7\x61\x14\xbf\xed\x7c\xb5\xda\x41\xb0\xed\x3a\x26\x8e\x7b\x14\x66\xa6\xe7\xd2\x2c\xb3\x5e\x29\x5a\x48\x01\xeb\x1d\x2a\x4b\x20\x6e\x71\x38\x5b\xa9\x38\x88\x0d\x7e\x86\xaa\x0f\x47\xd3\xa8\x3d\x93\x3b\xa2\x9d\x43\x05\x73\xef\x44\xab\x4d\xa8\x8c\x72\x45\x61\xbb\xae\xbd\x97\xa5\x09\x3f\x02\x60\x3c\xb0\x1b\xda\x00\x73\xcc\x24\x1a\x1e\x21\x9c\x07\x2d\x73\x52\x30\x45\x6c\xea\x6b\xdb\x94\x49\x67\x87\x76\x6b\x3c\x65\xd6\x90\x30\x46\x27\x50\x70\x58\xc8\xc9\xaa\x32\x0d\x06\xb9\x99\x37\xb5\x80\x00\x75\x4c\xf7\xe2\xe2\xfc\xc1\x0b\x94\x46\x83\x46\xd9\xc3\xc1\x46\x90\xb6\xfb\x9d\x29\x11\x84\xbc\xa1\xca\xc1\x80\x1f\xf8\x14\x8e\x29\xd4\x83\x51\x03\xea\x93\x43\x3e\xe8\x8c\x96\x00\x39\x58\xf3\xdc\x24\xbd\x75\x59\x94\xcc\x6a\xdd\x30\xf7\x6c\x42\x72\xc7\xc6\xb1\xb3\x0d\x69\x22\xc8\xa8\x5d\xcb\x56\xea\xbd\x56\xb3\x2e\xcf\x91\x07\x2a\x74\x8a\x25\x20\x26\x58\x75\x6b\x61\xf7\x7d\xf6\x3a\x46\x90\x70\xb2\x79\x94\x76\x5e\x26\x93\xd4\xdc\xc2\x2b\xe5\x47\xff\x3d\xbc\x57\xfc\xbd\x60\x29\x94\xc7\xab\xa5\x17\xd7\xdd\xbd\xad\xa1\x13\xf2\xcc\x40\x1b\xc0\xdb\x59\x8b\x52\x41\xfe\x1f\x97\x5e\x28\x1d\xc5\x66\x7d\x7d\x4c\x16\x41\x47\x56\xcf\x5f\xfe\x30\x0e\xe9\x1a\x87\x60\x3d\x91\xc0\x92\x33\xdb\xda\xc4\x8b\x71\x08\x1f\x0c\x8f\xae\x19\xc6\xad\xda\xfc\x8d\xf6\xb6\xbb\xdf\xca\xa7\x6e\x31\xa0\xd4\xa8\xd4\x90\xf9\x14\xe8\x6c\x6a\x06\xf5\x06\xe9\x86\xe5\x2d\x1e\xe5\xe0\x80\xbc\xe0\x8b\x55\x0d\x69\x92\xc8\x8d\xd8\x90\x39\x35\x19\x3c\x70\x57\x34\x65\x49\x82\x59\x6a\x70\xfe\xd6\x0d\x23\x67\x85\xa2\x41\xf0\xb6\x1d\xc1\x73\xfd\xbb\x1d\x86\x89\xb5\x6b\xc6\x78\x07\xdc\x1b\xb6\x63\x6f\x5a\x15\xb2\x62\x2a\x60\xc2\xee\x23\x7d\xa8\x94\xdc\xa1\xba\x24\x0e\x51\x79\xa7\xc3\xe6\xf0\x82\xab\xf9\x35\x7a\x5b\xf9\x91\x9b\xbc\x67\x34\xba\xee\xc6\x64\x73\xc3\xb3\x1b\xa2\x6a\xbe\x58\xb0\x5a\x06\x11\xc6\xc1\x7d\x94\x62\x0a\x95\x66\x07\x23\x67\xdd\xf8\xb4\xe3\xc9\xd8\x80\x0f\x87\x4b\x8f\x6d\xb1\x47\xf1\xfe\x54\x37\xac\x66\x03\x47\x95\xb6\x31\xb7\x73\xe1\x75\x5d\x51\xa3\x31\xc6\x6d\x56\x37\x35\xc4\xba\x4b\x11\x24\x8f\xb2\x29\xab\x30\xb5\x1b\x26\x20\x5b\xb3\xda\x93\x41\x57\x3a\xd0\xc8\x74\x70\x66\xa0\xd6\x98\x23\x2f\x4a\x82\x7b\xc1\x5a\x2c\x5d\xab\x91\x10\x05\x14\x05\xb9\x6e\x3e\x11\x06\x57\x07\x26\x57\x0b\x1b\xd0\xb3\xa9\x45\xc6\x30\xff\x85\x87\x2b\x44\xc4\x8f\x4f\xe4\x4f\xa6\xdb\xa1\xd3\xa2\x8c\x22\x6a\xee\x23\x7c\x79\xca\xee\xe0\x25\x0c\x15\x6b\xc9\x64\xc3\x55\x76\x83\xa7\xaf\x50\xf4\x75\x60\xc5\xd1\xaf\x26\xf1\x53\x9a\x3e\xbf\x78\xfd\xe1\xf9\xf9\xab\xeb\xd3\x0f\x6f\x5e\xfe\xf9\xfc\xd5\x91\x33\x3d\x62\x3f\xa6\x85\xff\xb0\xa2\x4c\x30\x94\xd7\x18\xce\xce\x59\xfd\x21\x61\x63\xed\xee\xe7\xd5\xcb\xef\xcf\xf7\x75\x93\x96\x98\xee\xd1\xc9\x9b\xd3\x7f\xff\xac\x4e\x82\x79\xc2\xf1\x58\x30\x15\x22\x19\x45\xfd\x7f\x0a\x3c\xc9\x24\x5f\x94\xc8\x98\x43\x52\xf5\x1c\xdf\x3b\x48\x4e\xa8\x29\x1e\xc8\x8b\xdd\x55\x26\xb5\x9b\x21\x0f\x1c\xd8\xd7\x64\x62\x38\xe2\xcf\x7c\xc3\x21\x94\xfc\x1f\xfb\xf5\x86\x34\xc8\x3d\xdf\xed\xe6\x74\xfa\x34\xbd\xe3\x61\x82\xef\xf7\x7f\x92\xce\xef\x00\x84\xc8\x88\xbe\xac\xc8\x03\x2f\xe4\x6b\x3f\x42\x13\x73\x8f\xbe\x6b\x8e\x85\x94\x74\x8d\x8e\x2b\xd8\x16\x96\xcc\x39\xe6\xbb\x1b\xeb\xf7\xf7\x86\x4a\x52\x33\x03\xd1\x03\x2f\x1b\xe6\xbe\x47\x08\x53\x49\x86\x05\xbf\x65\x88\x7b\x36\x32\x40\xd3\xba\x25\xcc\xdd\x2f\x15\xcf\x6e\xad\x1f\x30\x02\x89\x15\x42\x6f\x09\x5f\x32\x23\xe8\x90\x0d\xdd\xea\x91\x80\xb9\x13\x9e\x7f\xb9\x04\xe8\x6e\x6c\xdf\x01\x2b\x89\x15\x9a\x03\xcc\x2a\x4a\x45\x15\x9b\xfa\xb7\x6e\x35\x6b\xed\x9c\xb2\x37\x49\x94\x7b\x81\x10\x9e\x1f\x11\x35\xe5\x39\x2b\x15\x9f\x73\x56\x5b\x57\xc6\xad\xfe\x19\xc1\xc2\xfe\xc3\xfe\x76\xe7\x7f\xfb\x33\xfe\xf6\xe9\x18\x93\x2e\x98\xae\xf9\x18\xc9\xe0\x38\xba\xcc\xf4\x8e\x47\xf7\x58\x98\x4b\xfc\xc8\xfb\xfc\x5c\xd1\x35\x6b\xb8\x5a\xa3\x34\x01\x98\x0b\xd2\x3a\xfd\x80\x93\x24\x47\xc7\x48\x4e\xbe\x25\x6c\x6a\x00\xb2\xaf\x4d\x39\xd4\xa1\x1f\x93\xc7\x8f\x79\xe8\xe2\xa3\xcc\x92\xf8\xf5\x19\x36\xab\xbe\xe3\xef\x03\xaf\x1e\x27\x73\xe1\x2a\xbf\x83\x06\xa6\x3c\x7f\x0f\x6f\xae\x99\x26\x31\xbe\xb5\xc1\x15\xd3\x9c\xa8\x49\x2e\x7e\xd4\xfc\x9d\x95\x79\x38\x7d\x70\xa3\x26\x54\x53\x00\xbb\xe3\x52\xa1\xd0\x02\xe3\xb2\xe4\x3a\x00\xc7\x87\x92\xcb\x1b\x96\x83\x0b\xcf\x67\xad\x89\x9b\xa0\x81\xf5\x68\xce\x33\xb1\x2a\x01\x81\xbc\x3f\xde\x3d\x5b\xc8\xec\x1e\x4c\xeb\x47\x5a\xdc\x86\xf0\xf3\x76\x4a\x16\x89\x5f\x94\x2c\x90\xf7\x96\xac\x5e\xb0\xa0\x38\xaf\x7d\x4b\x46\x27\x40\x78\xa9\xcf\x5d\xc9\xf0\x22\xb6\x27\xa7\x60\xfa\xde\xb4\x58\x2d\x73\x5e\x02\x13\x65\xd8\x97\x39\x95\x06\x64\x97\x90\x98\x07\x3d\x3c\xfe\x5b\x93\x15\xf6\xfc\xd8\x82\xf5\xa4\x08\x6c\xba\x05\x04\x23\xfd\xd7\xf6\xf3\x08\xd2\xaf\xda\x4b\x78\xda\x1c\x0a\xa3\xdf\x03\x03\x2a\xe6\x25\x64\xbc\xe9\xb4\xdc\x22\xe6\x4e\xd2\xdf\xf0\x32\x37\xa8\x67\x7e\xf0\x5f\x9f\xc0\xe3\x17\x2c\x67\x5f\x4e\x9d\x90\x04\xb7\xde\xe4\xd8\x6d\xa3\x7d\xb8\xf6\xb0\xc1\x16\xe7\x4e\x3a\xb8\xf7\xb0\xd2\x5e\x0e\x9e\x7c\x51\x2e\x9e\xec\xe5\xe4\x93\x77\x4a\xc0\xb6\x08\x92\x9b\xf4\xff\x0b\x26\xd5\x4a\x8b\xbe\x08\xa9\x87\x02\x25\x26\x39\x2b\x15\xab\xe7\xac\x76\x51\x1d\xfa\xc1\x70\x3b\xad\x47\x92\x62\xbf\x3b\x5e\xf6\x50\x43\x14\xc9\xe2\x9e\x46\xc0\x23\x05\x4a\xad\x24\x91\x2b\x20\x33\xaf\xf4\x05\xbd\xa6\x54\x74\x2b\x03\x4d\xb0\xf5\x00\xd5\x8d\x55\xf0\xa6\x36\x8c\x25\x06\x3b\x54\xd7\xbb\xa7\x0e\xd4\x2a\x8c\x52\xec\x05\x00\x78\x4d\x1c\x86\xb9\xe4\x65\xc6\x9c\x86\xc9\xf2\x4a\xa8\xf5\xd2\x73\x8f\x72\xee\x5a\xa5\xe4\x4e\xd0\xf8\x5d\x78\xa3\xf7\xe4\x10\x7d\x62\xfc\x7f\x54\x06\xf1\x4c\x8f\xb0\xb1\xc8\xa4\x83\x8c\xf4\x6c\x26\x4a\x4c\xb2\x82\x57\x33\x41\xeb\xbc\x31\xb5\x97\xf3\x54\xb6\x12\xb4\x7f\xb3\xdc\x87\x67\x7a\x7f\x40\x40\x3a\xa2\x5b\x17\x80\x30\xd7\x74\xc8\xcb\x20\x82\xcc\xc7\xe6\x25\xa2\xce\x63\xdf\x6d\xfb\x8e\xdc\x98\x21\x3b\x98\x43\x50\xed\xf0\xb9\x79\x7e\x97\x5c\x4a\x44\x7b\xf2\x39\x42\xdc\x18\x15\xbb\x53\x26\x3f\xb9\x9e\x0c\xa9\x44\x05\xf2\x2b\xbe\x72\x98\x07\xff\xc6\xc5\xb0\x33\xf2\x55\xe0\x74\xf9\x95\xf7\xc9\xb5\x7d\xe8\xe6\x7a\x6e\xc2\x0e\x4e\x5a\x7f\xbe\x27\x23\x6d\x29\xf8\x5e\xd8\x4a\x9f\x05\x7c\xd2\x0c\xe5\x9e\xf4\x08\x55\x26\x4f\x63\x5e\x36\xf2\xde\xf8\x5b\xc0\x33\xed\x82\x01\x09\x86\xd9\x81\xdf\xa2\x8c\x92\x5c\x86\x91\xe9\x6d\xb4\x21\xef\x80\xcd\xca\xfc\x19\xcd\x6e\x35\x75\x1b\x6f\x15\xe7\x86\xbc\x67\x35\x93\x63\x40\x39\x09\x22\xe1\xfb\x8d\x81\xb4\x46\xd0\x15\xc9\x15\x39\xd4\x34\xdc\x72\x1a\xd1\xf8\xe8\x0b\x23\x13\xc0\x35\xfb\x3a\xdd\xe9\x9e\xd6\x76\xec\xde\xe5\x95\xdb\xe5\x7c\x05\xa9\x0d\x86\x8d\xf7\x7a\xc7\x5e\x3f\x26\x4f\xc6\xad\xf1\xf6\xf0\x44\x6b\x0f\x70\x7f\x24\x59\xd7\x60\xda\x3e\x57\x3d\x3c\xd9\x3a\xa8\xb9\x85\x9c\xd3\x07\x5f\xa1\xb1\x9d\x41\x94\x98\x27\x65\x18\x6d\x4f\x62\x4e\x60\x22\x75\x0c\xa3\x93\xa2\x77\x8c\x86\x24\xc6\xd2\x1d\xd1\x18\x6d\xf5\x7e\xe2\x86\x6a\x32\x8d\x32\xb1\xbf\xfb\x5e\x2e\x7d\x7e\x1c\x0f\x7a\xbb\x79\xf7\x24\xf7\xf6\xc8\xc6\x7b\x8e\x7b\x5f\x52\x6f\x8e\xaf\xa3\xdd\xb6\x26\xf8\x85\xc8\x80\xd9\x36\x96\x76\xcc\x6c\x6f\xfc\x60\x44\x49\x28\xc1\xc4\xf1\xe4\x96\x6d\x73\xb1\x29\x2d\x2f\x4e\xa5\x61\x07\x5e\xbc\xd0\x65\xcc\x42\x30\x9b\x58\xdd\x5a\x75\x96\x98\x36\x1f\x93\xea\xb3\x3c\xb4\x8e\x62\x4f\xfd\xe2\x09\x44\xf9\x4c\xe4\xdb\xef\xd8\xf6\xb9\xd8\x94\xa9\x07\xd9\xbf\x90\x41\x2e\xd0\xe6\xdb\xab\x8f\xc9\x2d\xd3\x5c\xd5\x15\xa4\xe3\x99\x6a\x1e\x4d\x73\x99\x67\x22\x67\x43\x36\x05\xf9\xc2\xbd\x61\x85\xd8\xb0\xfa\x3b\x28\x7e\xcb\xb6\x53\x25\x5e\xe9\x1f\xce\xa8\x0c\x6c\xd0\x5a\x1e\x55\x75\xa1\x4b\x7d\xfc\x48\xd8\x74\xc9\x14\xfd\x8e\x6d\x47\xe4\xd1\xa3\xa0\xfe\x09\xf9\x6a\xfd\x55\xe0\xaa\x1c\xa5\x8d\x8f\x12\x02\x47\xbc\x1d\x20\x83\xbb\x35\xb2\x1b\xa4\xa2\x74\x48\x68\xe2\x0f\xb2\x2c\xf6\x58\x4a\x58\x9c\x4e\xae\x26\x3d\xb8\x34\xe6\x69\x02\xdb\x34\x80\x36\x85\x50\x6f\x67\xb1\x85\x76\xc1\x60\xab\x4f\xce\x91\xf9\x1a\x76\x86\x18\xd9\x9f\x46\x11\xec\x69\xa2\x84\x0f\xaa\xf0\x18\xf6\x71\x6e\x65\x92\x04\x48\xc5\x55\x95\x00\x9d\x6e\xf2\xed\xc7\x4b\x1b\xd2\xfe\x94\x5c\x29\x51\xa1\x2f\x09\xf0\xf2\x28\x4c\x89\x8a\x2e\x28\xe8\x8f\xa8\xf4\x96\x1b\xc8\x6b\x8a\xf1\x88\xd0\x47\x6e\xad\x99\x6e\xb1\x31\xde\x62\xef\xe6\x60\xf5\x37\x7e\xce\xd7\x76\xa4\xa9\xfd\x62\x53\xa9\x44\xf5\xc6\x0e\x0a\x1d\x67\x13\x98\xfb\x6b\x56\x23\x72\x83\xf7\x28\x58\x8a\xfc\x33\x53\x83\xb9\x74\x09\x06\x45\x21\xca\x39\xac\xa8\xea\x4e\x3a\xac\xc5\xb2\x79\x21\x36\xff\x41\x4e\x50\xad\x4a\xfe\x48\xac\x21\x9f\x1c\x91\x01\x66\x23\x1a\xb4\xa6\x10\x59\x78\x97\xce\xc6\x32\x45\xa1\x82\x16\x8a\xd5\x12\xcc\x58\xcb\x95\x51\xc2\x44\xfa\x17\x7d\xb5\x81\x97\x4b\xd3\x46\xd5\x2b\x33\x7b\x60\xc5\x7d\x2d\xd6\xcc\x98\x78\xe2\x34\x95\x7e\x4c\xf1\xdc\x13\x76\x21\x72\x12\xcc\x00\x66\xaa\x5f\xb7\x8b\xb7\x97\x67\xe7\xe4\xc5\xcb\x57\xe7\x47\x68\x00\x3f\xf8\x8b\x3c\x80\x7f\x7c\xb0\x28\xff\xd3\xbf\x48\x5d\x54\x4b\x1c\x18\xd1\x3c\xcc\x46\xe4\xe9\xe1\x93\xa7\xa0\x2e\x00\xf3\x20\x5f\x2d\xc9\xc5\x15\x39\x5d\xa9\x1b\x51\xcb\x29\x39\x2d\x0a\x8c\x7e\x96\x44\x0b\x1c\xf5\x9a\xe5\x53\xdd\xc6\x5b\xc9\x1c\xd2\x97\x44\x1c\x90\xcc\xc4\x4c\x2f\xf4\x1e\x95\xfa\x9e\xde\x12\x4a\x9e\x5d\x3d\x9f\xc0\xd6\x91\x82\x67\xac\x94\x26\x9a\x11\xa1\xeb\x75\x4b\x73\xd0\xb7\x1b\x5a\x7f\xf5\xf2\xec\xfc\xfb\xab\x73\x2d\x2a\xb2\xe9\x83\x07\x03\xbd\xda\x52\xd5\x3c\x53\x83\xe3\x07\x0f\x0a\x3e\x9b\xd6\x2a\x67\xd5\x70\xa0\xff\x09\x49\xb5\xe5\x60\x4c\xe0\xaf\x37\x4e\xf1\xff\x9a\x96\x74\xc1\x6a\xfb\xa1\x66\x38\x40\xfb\xf7\x26\x1b\x84\x6c\x1c\xfc\x36\xd7\x1f\x71\x13\xbf\x63\x5b\x10\x7f\xfd\x2f\x17\x95\xde\x21\xe9\x7f\x48\x74\x15\x36\xe8\x88\x81\xb1\xd2\x57\x0a\xee\x5b\xff\x1b\x64\xdd\x68\xd7\xd5\x27\xd6\xe5\xe2\x0f\x3a\xfe\xe1\x1a\xb2\x63\x59\x75\x85\x28\xa5\xaa\x57\x90\xac\xc6\xc6\x31\x5d\x9b\xad\x26\x59\x41\xa5\x93\xdd\x4f\xfd\xef\xd5\x4a\x53\xb3\x12\x0b\x06\x96\x91\x94\xbb\xc4\x98\x84\x33\x00\x79\xd9\x76\xff\xe4\xf0\x10\x52\x5e\xea\xc6\xd1\xc0\x82\xb9\x5c\x8d\x61\x40\x2c\x2b\x54\x59\xdb\xde\x2c\x79\xd3\x82\xab\x6d\xa0\x9b\xaa\x11\x04\x9a\x06\xc9\x1b\xe0\xa9\x9b\x14\x6c\xcd\x0a\x3f\x5a\xbc\xf2\x64\x48\x33\x06\xf7\x1b\xd3\xba\xa0\xed\x07\xb5\xa7\x25\x47\x69\xde\xda\x28\xa4\xa8\xc7\x46\xe4\x37\xa7\xbf\x66\x0b\x87\xf3\x8c\x86\x21\x3b\x50\x70\x0f\x71\x0b\x3e\x25\xe4\x4f\x62\xc3\xd6\xac\x1e\x1b\x7c\x1c\xbe\xa4\xf5\x36\xc0\x1e\x07\x05\x5e\x55\x33\x35\x1c\x59\x95\x22\xe4\x03\x94\xe4\x87\x6b\xdd\x16\x93\x19\xad\x34\xb7\xfb\x7f\x57\x68\x8a\x02\xa5\x43\xb9\x16\xb7\xc6\x2f\x8b\x56\xfa\x1d\xa8\x01\xe9\xa9\x39\xdb\xc8\x8b\x11\x96\x9a\x6c\xa8\x24\x37\x8c\xae\x39\x24\x30\x9b\x17\xd0\x2a\x9c\xb0\x33\x51\x6f\xc9\x6b\x9a\x65\xb4\xae\x45\xc9\x06\x92\xbc\xa8\xe9\x92\xcd\x56\xf3\x39\xab\x63\x2a\xb8\xbe\x78\x7e\x31\xac\x17\xbc\xcc\xe9\xe8\x88\x80\x6d\x17\x9d\x0d\x1a\xd8\x22\x56\x5f\x03\x61\xf2\x75\x90\x55\x48\x9a\xa9\xd2\xda\x64\xd5\x91\x55\x41\xb7\xba\xf0\x86\x67\x00\xa1\xb4\xd1\xa4\x40\xa5\xbe\x9a\xcb\x9c\xd6\x90\x96\x82\x97\x41\x0b\x56\x8d\x83\x8f\x9d\xe9\x01\x88\xf9\xff\x7c\x47\x86\x7a\x95\x4c\x30\xdd\xd6\xec\x50\x90\xd2\x88\x29\x39\xda\x95\x13\xb1\xaa\x85\xbe\x37\x5e\xe6\x04\x4f\xac\xa6\x76\x77\x52\x89\xf9\x4a\x4a\x0a\xe6\x3c\x84\x02\xb4\x59\x11\x0d\x15\xe7\x63\xeb\xed\x03\xc3\x1b\x98\x3f\xa2\x1c\x41\x6e\xb7\x1a\xb9\x0d\x5d\xef\x21\x1f\x64\x7f\x8b\xb0\x93\x0f\x0e\xc8\xf5\x46\xd8\x07\x86\x97\x7a\xb1\xb2\x40\x6f\x69\xc8\x0d\x8f\xdf\x87\x38\xfb\x17\xfc\x16\xa8\x7a\xe0\xe5\x2a\xa9\x62\xbb\x4b\x7b\x93\xfa\x57\xc6\x7a\xf7\x95\x4f\x43\x1e\xbd\xb3\x3e\x30\x2f\x1c\x44\xd8\x42\x21\x34\x1b\x50\x0a\x6b\x8a\x08\x1f\x4b\xfe\x8b\x5e\x5b\xac\xf4\x0c\x48\x50\x5a\xfd\xe5\x9a\x41\x5e\xc5\x5f\x18\x12\x91\xb5\x95\xe6\x3c\x03\x0d\x1c\xba\x82\x55\xfa\x91\x31\x79\x3b\xa7\x84\x3c\x47\xe7\x48\x4c\xec\x87\xda\x5d\x03\x72\xbc\x11\xa0\x5a\xcc\xb9\xa4\x8b\x9a\x81\x71\xf5\xe0\x80\x9c\x16\x52\x60\x01\x5e\xd2\x4c\xf1\xb5\x1d\x99\x66\x71\x75\x23\x18\xa3\x8f\xef\x3d\xcb\x0d\x7e\x12\x87\x88\x66\x48\xc8\x02\x47\x13\x2a\x62\x83\xc9\x35\xba\x4a\xe6\x64\x3b\x44\x5e\x31\x70\x5e\xb0\xfe\xc6\x35\xd8\x06\x31\x74\x73\x25\xcd\x21\x33\x87\x87\xa8\x46\x6a\x90\x69\xfc\xf6\xeb\xfb\xb8\xb5\xa9\xe6\x77\x10\xda\x9a\x79\x27\xa0\xc2\x54\xae\x66\x32\xab\xf9\x8c\x0d\x7d\x6e\x27\xa3\x6f\x34\xba\xf7\xe9\x8c\x1b\xe7\xec\xd1\xde\x26\x9c\xa3\x64\xe4\x95\x76\xaf\x26\x2c\xe7\x6e\x5a\x40\x8e\x76\x6f\x03\x4e\x83\x1d\xe8\x4a\xc3\x5a\xe1\x72\xe7\x7c\x6d\x9e\x09\x9b\xd2\x03\x59\x6a\xcb\xfb\x84\x59\xdb\x9a\xa7\xb1\x95\x12\x3f\x68\x83\x05\xce\xa1\x9a\x24\xf1\x4a\xf0\xf1\xb7\x8b\x42\xcc\xf4\x03\xa2\x1b\x72\x8d\xc0\x0b\x17\x40\x9a\xfa\x17\x51\x4b\x02\xee\x51\x44\x7c\x7f\x3e\x37\xbe\x0b\xe5\x40\x41\xe6\x69\x7b\x36\x24\x3a\xbd\x80\x41\x95\xfa\xc6\xb7\x4c\xa1\x75\xa6\x66\x13\xc9\xc0\xeb\x31\x67\x99\xa8\x21\xa9\xaf\x9f\xa7\x0d\x8b\x23\x27\xc6\x4a\xe8\x7e\x0a\xe7\xed\x33\x2d\xa0\x3f\x83\xf1\x3b\x0b\xd5\xf8\x90\x46\x2e\xca\x42\x4e\xf3\xbc\x66\x12\xac\x5c\x0d\x7a\x9d\xd1\xec\xd6\x62\xa2\xbd\x7b\x6f\x3b\xba\x42\xcf\x0d\x3a\x23\x5a\xd8\xf0\x34\xae\xe8\x0c\x24\xa4\xb8\x34\xa0\xa0\xa9\x9a\x66\xb7\xfa\x7a\xd9\xdc\x20\xa7\x62\xee\x62\xdf\x0a\x0e\x18\x32\x75\xb3\x9a\x4a\x96\x1f\x3b\x3f\xe1\xeb\x67\x67\x26\x43\x52\xc1\x28\x5c\x41\x85\xaf\x17\xdc\xf1\xb4\x66\x7a\xcd\x6b\x26\x95\xa8\x31\x52\xc0\xda\xc9\xe0\x66\x00\x8f\x63\xe6\xf3\x5e\x99\x8a\xd7\x66\xd8\x9a\x30\xeb\x15\x0b\x97\xf3\x87\x6b\x74\xd3\x0b\xee\xc6\x06\xe4\x20\x1c\x72\xa2\x19\x68\x17\x29\x0f\xc6\x0a\xcd\x38\xc0\x90\x81\x73\x71\x4e\xaa\x20\x26\x96\x79\x60\x07\xce\xc4\x72\x49\xcb\xdc\xaf\xe2\xda\x08\x18\xd7\xa2\x0a\x53\x6e\x47\xdf\x50\x67\x9e\x22\xfc\xe7\x2f\x7f\x70\x9a\x16\xcb\x45\xda\x0b\x09\xc7\x32\x0d\x82\xef\xa5\xa8\x6d\xe8\x78\xb3\x21\x17\x88\x8e\x13\x90\x37\x9a\x03\xb2\x6b\xd0\x3c\x85\x58\xe8\x4a\x97\xf9\xe0\x92\xe5\xd9\xa7\x35\xfc\x3a\x7d\xf6\xea\xe2\xec\xbb\x64\x3f\x9a\xfd\xb7\x1d\x24\x47\x7a\xa6\x4b\x34\x87\x7a\x86\xc3\x9b\x15\xbc\xbc\x25\xa2\x3c\xd0\x84\x0e\xd0\x88\xfa\x1c\x2d\xe5\x18\x2c\x7f\x9b\x9a\x2b\xc5\x4a\xcd\x60\x69\x16\x42\x8b\x7f\x19\xbc\x0e\x5b\xcd\x29\x15\x82\xe6\x90\x42\x39\xec\xec\x99\x6e\xf0\x4c\x37\x04\xd4\xfc\xe4\xf0\x70\x4c\x9e\x1c\x1e\x3a\xaa\x7e\x53\xb3\xc9\x0c\x64\x1d\x51\x9e\xf9\x1a\x1f\xac\x45\xcb\xa6\x60\x43\xc4\x1d\xeb\x5b\x9c\x0b\xa3\x3d\x10\x35\x61\xd4\x3e\x9b\x66\x89\xcd\xe8\xb5\x58\xc6\x33\x63\x38\x86\x11\x2d\xb7\x17\x71\x1f\xfe\x06\x0d\x7e\x4d\x5f\xa4\x92\x99\x29\x63\x96\x16\x48\xa7\x92\x1a\x59\xcd\xa8\xf1\xc7\x43\x86\x40\x1f\x21\xba\x60\x60\x26\x33\x0e\x5a\x34\xbb\x21\x62\xa5\xaa\x15\xda\xf3\x6e\xd9\x56\xaa\x5a\xdc\xb2\x10\x28\x84\x97\x5c\x71\x5a\xf0\x5f\x90\x9d\x35\x70\x94\x96\x69\x5b\xa2\x7c\xe5\x26\xa6\xaf\x97\x05\x78\x68\x35\xf6\xd6\x7c\x9f\x8b\x9a\xed\xfa\x8e\xa7\xe8\xa2\xbc\x80\x51\x75\x7e\xfe\xce\x8e\xb4\xa3\x04\x48\xe4\xa7\x75\x2d\x36\xba\x64\xeb\x30\xd4\x2b\x86\x16\x49\xeb\x02\xeb\x8c\xc9\xa8\x3f\x40\x85\x51\xcd\x34\x6b\x60\xd8\x01\x5a\x14\x62\x63\x57\xd2\xe9\x5b\x83\x7b\x87\x51\xf5\x5a\x57\xbe\x84\x5a\x88\x86\x42\x0b\xe9\x2f\x1f\xfb\xc0\xcc\x58\x51\x68\x91\xbc\xf4\x04\xaa\x7f\x3a\x5d\xe5\x5c\xec\x4f\xec\x4b\x75\xb1\x81\x7f\x8d\x7d\xd5\x28\xaf\xaf\xfe\x79\x82\x65\x53\x45\x25\xf3\xe2\xeb\x70\x50\xd5\x4c\x9f\x18\x2d\xc6\xd2\x95\x12\x03\x47\x6d\xa7\xfa\x5a\x8e\xc6\xad\x6f\xce\xb9\xe6\x08\x21\x73\x9a\x7f\x96\xe0\x96\x5f\xb0\x92\xe9\x47\x2e\x27\x43\xcd\xc4\x59\x88\x51\x5e\x6c\x0d\xb3\x76\x23\x36\xe5\x28\x9a\xf5\xf7\x41\x7b\xaf\xb8\x54\xf1\x43\xf3\xa3\x79\x5a\x36\x0c\x7b\xa9\xf4\x58\xa4\xd4\x77\x77\xc0\xa1\x45\x63\x0a\xb6\x44\xde\x2a\x51\x85\x1d\x3c\x63\x26\x22\x29\xdc\x97\xb3\xf8\x3a\xc7\xc7\xd4\x49\x9a\xc6\xa7\x11\x4c\xcb\xcf\xcf\xcf\xae\xce\xfc\x73\xaa\x3f\x18\xcd\x43\x90\xe2\xa6\x71\x07\x82\x0a\x6e\xc6\x95\x74\x57\x77\xeb\xa6\x15\xbe\x0d\xcf\x44\x9a\x86\x03\xd1\xc0\xa4\x8d\x02\x9b\xbd\xcb\x58\x08\xf9\x99\xf5\x13\x3a\x6d\x25\xa7\x6a\x0d\xe9\x87\xeb\xa6\xd4\xeb\xa5\xe4\xe0\x04\xaf\x55\x34\x90\x1f\xae\xdb\x9c\xdc\xad\xd1\xc0\xd8\x9b\xd1\xd5\x75\x1f\xc2\x16\xac\xbe\x26\x6e\xe7\xdf\x81\x56\x0a\xf2\xf2\xc2\x38\xdb\xd0\x2c\xd2\x3c\x99\x40\x60\xe0\xe1\x78\x9d\x63\xfa\x4c\x26\x61\x27\xc4\x4a\x11\x76\xa7\x77\xcc\xe6\xca\x44\x74\x6d\x30\x60\x39\x7a\x75\x69\xf1\x4d\xf8\xad\x88\x46\xe5\x9e\xb2\x97\x17\x8d\x09\x9a\xcb\x01\x6e\x82\x49\x56\xf0\xec\x76\x92\xd7\x74\x11\x7b\xcb\xa7\xb7\x92\x95\x9a\xe3\x82\x6b\xe0\x79\x4d\x17\x26\x78\x2f\x60\x42\xf0\x39\x12\xd5\xf6\xa2\x34\xd0\x24\x8d\xeb\x0b\x7a\xbd\xd4\xfb\x7b\xa6\x7b\x06\x36\x3c\x59\x06\xbe\x3c\x5b\x29\x05\x38\x0b\xe1\xed\x66\x0f\x8d\x01\x21\x05\xd8\x29\x1b\xc8\x00\x6c\x26\xfa\xc5\xcc\xd8\x0d\x5d\xf3\xe0\x49\xd6\x83\xc6\x72\x3f\x42\x31\xeb\x9b\xe2\x0e\x0b\x0e\x5e\x53\x9b\xb3\xd4\x9d\x6a\x7e\xce\x8a\x00\xd1\x24\x6b\x06\x6f\x86\x96\xbc\x3e\x0c\x7f\x77\x38\x26\x4f\xff\x57\xe8\xff\x60\x5d\x6d\x2c\xa7\x16\xe5\x97\x62\xea\x0d\xca\xe5\xb1\xdc\x0e\xd9\xbd\xad\xc4\x9f\x32\xf4\x86\xe6\x09\xe7\x07\x6d\xf6\xe8\x92\xd1\x7c\x3b\x1c\x1d\x93\x4f\xb1\x50\x13\x22\x2d\x19\x94\xa0\x88\x41\x92\x29\xd5\x42\xc8\xff\xe8\x73\xf6\x80\x10\xe0\x82\x8e\xc8\x00\xfe\x0b\xa3\x7b\x76\x7e\xfa\x5a\xff\x70\x7e\xfa\x1a\xfe\x7e\xfb\xfd\xf3\xf3\x4b\x88\x02\x20\x03\xf7\xef\x41\xca\xbd\xa9\xf9\x28\x05\xa6\x07\xbc\xeb\xf4\x8d\x64\xa3\xb5\x42\xc1\xc5\xa1\x58\xeb\xcb\x66\x25\x59\xe8\x6c\xe6\xcb\xd9\x07\x9d\x3a\xc7\x85\x20\xa1\x1f\x2a\xdf\x70\x04\x28\xee\x90\xc0\xa6\xf7\xc0\x04\x0a\xb4\xb2\xfc\x25\x57\x29\xf2\x57\x0f\xf7\xa1\x11\x96\x1c\x7a\x3c\x3d\x0f\xa4\x08\xf4\xbc\x9b\x93\xdf\x79\xef\xcb\x3b\xe8\x61\x77\x67\x8a\xce\x7e\x34\xc9\x39\x7f\xd7\x86\x02\x4a\xa8\x9c\xda\x80\x52\xfa\x39\x8c\x57\xb7\x0a\xdc\xd6\x63\x4c\xaa\x50\x6f\x65\x53\xcd\x51\x29\x45\x06\xba\x43\x2d\x62\xc3\x75\xab\xc2\x8e\xad\x2b\xae\x87\x11\x64\x9b\x1d\x03\x6b\x2a\xd3\xfc\x91\x00\x38\x5f\xea\x5d\xa9\x12\x6d\x10\xf2\x42\xd4\x1b\x7d\x2b\xcb\x82\xca\x1b\xab\x51\x0b\x95\x86\x06\xb6\x0a\x31\x69\x72\xef\xf1\x0f\xaa\xb8\x70\x00\x76\xd7\x50\x9f\xa7\xb7\x5e\x33\x7c\x5e\x9d\xe7\x7e\x01\x38\xdb\xb5\xb8\x65\x9e\x50\xcd\x78\x6c\xff\xaa\xa6\xa5\xc5\x58\x91\x4e\x33\xbd\x67\x6b\xfd\xd5\x10\x92\x90\x5b\x8e\x71\x34\xac\x2e\x3d\x9f\xfb\x63\x5a\x23\xae\xe3\xf0\xe0\xa7\x83\x83\xc5\x98\x0c\x06\x41\xe8\x9c\xd7\x22\x2a\x0b\x00\x1e\xe2\x6c\xcd\x65\x88\x4b\x85\x3f\x4c\x73\x06\xba\x29\x90\xf3\xa3\x24\x6f\xf3\xc6\xf3\xde\x32\x50\x0c\x1b\xc3\x0c\xa2\x61\xb1\x69\x9a\xe7\x17\x33\xb0\xef\xd4\x72\xa8\xaf\xfb\xb1\x31\xc1\x0e\x68\xa1\x26\x8b\x7a\xa2\x39\x8d\xc1\x91\x5f\x94\x75\x8c\xf4\xbd\x06\xb8\xc7\x55\x51\x84\x6e\xb9\x00\x89\x48\xd7\x7c\x41\x95\xa8\xa7\x05\x2d\x17\x2b\xba\x60\xb1\x15\x5c\xd7\x1b\xb0\x72\xb2\x92\x83\xb0\x2a\x21\x6b\xcd\x6d\x96\xa2\x64\x03\xef\x61\xdd\x70\xea\x70\xc5\xc0\x42\x35\xa1\x85\x0a\xcb\x3e\x88\xea\xc0\xe2\x6e\x2b\x26\xe6\x04\xc6\x3a\x40\x62\x8f\x3a\xd5\x6d\xad\xdb\x46\xfa\x64\xcf\xed\xe1\x7d\x0a\x5d\x97\x1f\x1e\xfc\xd7\x50\x7f\xfd\x08\x9e\x0f\xb4\x50\x1f\x0b\x36\x87\x21\x7e\x74\x83\x1d\xfd\xcb\xc1\x54\x31\xa9\x86\xeb\xd1\x28\xd9\xae\xf5\xc9\xb3\x84\x6a\xf9\x9f\x29\x2d\xd4\xbf\xd7\xaf\x11\x0a\x6d\x6d\x4d\xd5\x0f\xfc\x7e\x69\xf2\x94\x15\xcd\xd8\x84\xcb\xc9\x92\x29\xea\x7f\xe9\xd8\xc3\x64\x1f\xcf\x6c\xa5\x97\xf2\x35\x53\xd4\xfd\xd9\xd1\xab\xe9\xeb\x3e\x3d\x60\xc3\x1d\xed\x49\x56\xe6\x72\xb2\xb9\xa1\x6a\x07\xe1\xe9\x85\x46\xbe\xf3\xe3\xef\x26\x33\xae\x3e\x1a\x97\xe0\xc9\x2d\xdb\x76\x2f\x30\xd6\xd8\xb3\xc4\x57\xba\xff\x1f\x35\xcf\x98\x18\xdf\x2a\xd7\x6f\xf9\x04\x04\x21\x90\xb6\x3a\xc6\xa8\x0f\x3b\xad\xb7\x40\x59\xf0\xc6\x0c\x0f\xfe\xab\xe0\xb3\x89\xb5\x4a\x1e\x0d\x7f\xba\x7a\x3c\x3a\x88\x9c\xe5\x69\xbd\x8d\x42\x18\xec\xe0\x3a\x25\x2c\x59\x67\x49\x8e\xa5\xe3\x7f\xa1\x55\x74\xba\x60\xea\x39\x55\xf4\x6d\x5d\xe8\x7e\xdf\x3d\x79\x3f\xea\x26\xfa\x9e\x23\x21\xeb\x51\xec\x27\xef\x96\xcd\x48\x4d\x93\x50\xa6\x82\x35\xdc\x79\xb5\x3c\x7a\x44\x42\x39\x2b\xb9\x36\xdd\xf2\x58\xb4\x2e\xe1\xf7\x69\x20\xef\x9d\xe8\x2b\x61\x51\xd3\x52\xb1\x3c\xb8\x44\xd0\x25\x68\x5f\x1f\xf1\xc5\x75\x70\xa0\x7b\x61\x47\x3e\x55\x3f\x78\x82\x47\x3d\x1b\x7c\xc8\x37\x7e\x00\xa0\x31\x36\x89\xfb\xe3\xc6\x4c\xd8\xae\xae\x02\x81\xf4\x08\x3d\xe9\x13\x56\xd5\x4c\x6a\x8e\x46\xcc\x09\xc5\xd8\x7a\x4c\xdc\x4f\x86\xe0\xe8\x4f\x25\xa1\x65\xdc\xa0\x28\x41\xec\xb0\xe2\xd5\x08\x79\x32\xfd\x10\x90\x82\x4b\xa5\x25\x27\xd4\xfe\xd4\xab\x44\x36\xe6\xa0\xa5\xb8\xd9\x53\x88\x8e\x13\x73\xb2\x11\xf5\x2d\xa8\x2d\x6d\x4a\x0d\xcd\xf6\x58\xf0\xe2\x40\xb0\xa6\x24\xe7\xb4\x10\x0b\x87\x10\x1b\xb6\xe6\x1e\x48\xe0\x61\x28\xf9\x0a\x45\x25\x25\x26\x66\xed\x26\x7e\xf7\xbe\x22\x33\x90\x54\xc2\xd1\x59\x50\xe3\x0d\xad\xcb\x61\x37\xdd\x81\x21\x52\x8b\x64\x0e\xef\x1a\x0c\x44\xa0\x0e\x18\x74\x67\xb7\x1e\xf4\x51\x15\x0c\x46\x9d\xaf\xd1\xbd\x08\xd8\xca\x48\xc9\x13\xe5\x35\x62\x13\x50\x88\xee\xbb\x7d\x25\x83\x6b\x3d\x50\x92\x0d\xd7\xa3\xe3\xce\x36\xf9\x92\x2e\xf6\xbe\x19\x91\xcd\x27\x6c\xff\xa5\xae\xbd\xb3\x7d\xb0\x4d\x7d\x6e\xf3\x60\x77\xdb\xd5\xba\xd5\xba\x7c\x76\x0f\x6f\x4c\x03\xe9\x5e\xf0\x89\xc5\x67\xea\xfe\x0f\xac\xab\x01\xef\xcc\xae\xc7\xd5\xf1\xd2\x93\x25\xad\x26\x56\x6e\x93\xbb\x5e\x45\xcf\x90\x69\xb1\x76\xed\xac\xcc\x62\x4e\x2e\x40\x71\x31\x4a\xc1\xab\xe3\x61\x79\x13\x09\x12\x41\xcf\x90\xb6\xda\x69\xe7\xac\x2d\xb5\xec\x3e\x28\x03\x54\x92\x1c\xe9\x12\xc1\xa3\x10\x46\x06\x90\x08\x92\xdd\x2e\xd2\x5a\xf9\x38\xf2\xd7\xb4\x32\xd1\x0e\x9e\x1d\xeb\x2e\x28\x99\xba\xb0\x0b\xd4\xde\x35\x14\xac\x27\xa0\xfc\xef\x71\x52\x02\x6d\xf9\xf0\xe1\xc3\x9d\xad\x4d\xc0\x86\xd0\xd1\xa6\x7d\xc8\x82\x5d\x38\xad\x6b\xba\x25\x8f\x1e\x45\x0b\x67\x19\xd4\x77\x87\xef\x81\x47\x45\xef\x98\x41\x67\xb1\x27\x51\xb1\xf8\x19\x52\xb1\x32\x21\x36\x4f\xac\x5b\x3c\x75\x8b\x3f\xbe\x7f\xa3\xef\xd6\x63\xb2\x7e\xbf\x93\x5b\x3f\x38\x20\x2f\xa8\x54\xc6\xfa\xe2\xad\xff\xb4\x24\xac\xae\x45\x3d\xed\xdd\x57\x60\x5f\x71\xfd\x25\x77\xa7\xef\xad\x78\xe6\x4d\x46\x09\xba\xd1\x3f\x4f\x2a\x5a\x30\xa5\xd8\x17\x3a\x81\xad\x9f\x81\x24\x7a\x9e\xcb\xf4\x78\x82\x33\x49\x81\xbe\x44\xfd\xe5\x0e\xa7\x77\xb9\xc3\xff\xbc\xc1\xde\xc9\x49\xf8\x45\x2a\x91\xdd\x9e\x05\x9f\xa7\x99\x28\x33\x6a\x91\x0a\xdd\x51\x08\x67\xe9\xd2\xea\xdc\xb2\xad\xe6\x05\xd6\x0d\x41\x90\xd6\x84\x6b\xb9\x9a\xd6\x92\xbd\x2c\xd5\x50\x73\xf6\xc7\x41\x01\xdd\x20\x97\xdf\xd3\xef\x87\x7c\xa4\x17\x95\x93\x6f\xc9\x21\xfe\xe3\x0f\xe4\xe9\x37\xdf\xc4\xcd\xc5\xf9\x0e\x06\x2f\xcb\x35\x2d\x78\x4e\xd0\x2d\x98\x97\xc4\x2c\x2a\x2e\x8b\x1e\xd1\x63\x32\x30\x6b\xf4\xee\x96\x6d\xdf\x47\x5d\x37\x53\x16\x34\x96\xcc\x4d\xf7\x1d\x7f\xdf\x1c\x05\x24\x01\x5a\xcc\xe2\xe5\x2b\x45\xbd\x04\xc5\xe6\xd9\xd5\x15\xd6\x8a\x7b\xd3\x8d\xd5\x8b\xd9\xa8\xb1\xa3\x1d\x5b\xf3\x8e\x03\x12\xfa\x62\x16\x0f\xae\xf9\xaf\xf6\xf5\x1b\x3b\xff\x40\x98\x82\x77\x47\xc4\xbb\x38\xdc\xe3\xc4\xbd\xdc\xf4\x4b\xea\xdd\x46\x70\xe4\xaa\xed\x44\x94\x13\xb4\x86\xed\x3b\xc0\x0d\xa5\xf7\xc3\x87\xcd\x37\x74\x25\xd9\xc4\x28\x77\x27\xa8\xa7\x9e\xe8\x3a\xfb\xda\xed\xd0\x5a\xb7\xdb\x07\xc5\xf5\xc4\x99\xee\x26\xe0\x8a\xd0\xab\x8b\x6e\x95\x77\xa2\x17\x55\x17\x93\xaa\x58\xc9\xc9\x92\x97\x2b\x39\xf9\x85\xd5\x62\xf2\x8b\x10\xcb\xde\x5c\x87\x6e\xe1\x4d\xb1\x92\xaf\x75\xfd\xff\x64\xb5\xf8\x4f\x01\xb0\xa3\xc9\x9e\xb2\x5e\x13\x88\xda\x3e\x33\x63\x4f\xb6\xb7\x9e\xa0\x1f\xd0\x7d\x1a\xfc\xc1\x1a\x29\xd6\x2d\x22\x6b\xb0\x6d\x67\xae\x74\xfb\x02\x67\x54\xaa\x09\x95\x9c\x96\x13\xba\x9c\xf1\xc5\x4a\xac\xe4\x84\xca\x89\xda\x08\xfd\x42\xac\x96\x5d\x3c\x22\x7a\x0c\x4f\x6b\xb6\xa0\x75\x7e\xf6\x97\xdb\x53\x5b\x3b\x31\x47\xb4\xcf\x4c\x40\x0f\x31\xd1\x17\x43\x2d\xba\x04\xdb\x90\x81\xc1\x6a\xbf\x7b\xc6\x21\x16\xa8\x16\x45\x72\xeb\x4d\xe3\x33\x51\x74\xa9\x1a\xfc\xba\x6c\xcb\xec\x99\x28\xf2\x2b\x3a\x67\x57\x8a\x26\x0e\x57\xd0\x98\x5e\x85\x19\xe8\xa4\xf6\x35\xbb\xfb\x56\xc0\x26\x75\xb7\xa7\xf2\x19\xba\x97\x07\xd3\xb8\xc7\xd5\xb0\xbb\xa1\xd6\x14\x7a\xb1\x72\x7a\x41\x74\xc1\x9d\xab\xe1\x22\x9f\x27\x9b\x9a\xef\xa7\x52\xb7\x73\x67\xb6\xde\x8f\xba\xda\xae\xc1\xe6\x2c\x7b\xf2\xb4\x77\xbb\xcf\x75\xe9\x64\x73\x73\x51\xaa\xc9\x9c\x2e\x79\xb1\xf7\x70\xea\xa9\xbf\x10\xa5\x7a\x01\xa5\x5b\x53\x87\x96\x7a\x09\x61\x4c\xe9\x66\xd2\x22\x17\xb6\xb2\x14\x08\x4f\xf6\xab\x87\x64\x7d\x38\x7a\xf3\x6e\x2f\x62\xb7\x8f\xf6\x00\x6f\xc4\x92\x4d\x6e\xd9\x56\x4e\x8c\x2f\x63\xdf\x1b\x48\x57\xfc\x8e\x6d\xa5\xb3\xb5\x36\xb7\x42\x97\xd4\x7c\x6c\xb9\xe8\xe2\x06\x13\x92\x9f\xa9\x80\x57\x7f\x83\x35\x7a\xb8\x1e\xb5\x38\xb1\x06\x5f\xd9\x4f\x98\x03\x86\x7a\x38\x38\xd7\xff\xd1\x8c\x4d\x30\xd2\xc0\x8e\x73\x44\xce\x01\x40\x8b\xe5\xc6\xa2\x3d\xe8\x21\xa6\xd5\xdb\x94\x06\xa3\x3d\x3f\x9a\xe7\xcf\xcc\xbf\x87\x81\x4e\x90\x64\x14\xb1\x87\xee\x7e\xcd\xb8\x35\x4b\x16\x64\xa2\x6a\x70\xff\x4b\x7a\x37\x41\x15\xff\xc4\xfa\x23\xf4\x38\x78\x4b\x7a\x87\x61\x7d\x57\xd6\x87\xa1\xbd\xe3\x90\xa0\x19\x89\x89\xd6\x6c\x32\xd7\xff\xea\xbd\xf5\x50\x59\x13\xd4\x69\xcd\x5e\xe8\xff\x26\x3b\x50\xd4\x68\x15\x8c\x9e\xba\x7f\xeb\x8a\x82\x36\xe1\x1c\x3d\x31\x12\x6d\x83\xdb\x01\x9a\x20\x50\xa3\xd6\xeb\x45\xee\xf0\x1b\x48\xb7\x0e\x2d\x4e\x50\x25\xd7\xe7\x2e\x78\xdd\x70\x38\x68\xdd\x08\x15\x5d\x7c\xde\xe9\xd5\x15\x77\x9e\xde\x8a\x4a\x39\xa1\x85\x9a\x18\x69\xf7\x9e\x06\x2e\xcd\xc3\x0b\x79\xe7\x3d\x6c\xbd\xb5\x6b\x25\x59\x7d\xba\x60\xa5\xb2\x5a\xff\xd7\x34\x23\x17\x57\xe4\xcf\x07\xfe\xb8\x83\x3c\xfc\x8a\x29\x72\x5a\xa8\xc9\x93\xe9\xf4\xf7\x06\xbc\x51\x44\x60\xbe\x43\x25\x88\x61\x26\xd0\x89\x15\x90\xbb\x20\xf9\x87\x28\xc3\x96\x4a\x51\x4e\x74\x0f\x44\x6e\xa5\x62\xe0\xca\x08\x59\x86\xc0\x26\x68\x45\x43\x51\xb1\x12\x63\x0b\xb5\x90\x58\x55\x76\xe4\x7e\x4e\xe4\x84\x0c\x1f\xea\x59\x3d\x7a\x64\xcc\x89\x58\xe4\x7a\x5b\x41\x72\xb3\x41\x25\xaa\x55\x35\x18\x75\x6b\x6f\xf4\x2c\x4e\x0b\xf5\x3d\xc6\xf6\x74\xac\x3a\x30\x84\x7f\xdf\x65\xd7\x0c\xe3\x7f\xb7\x75\xd7\x73\xda\xbd\xf0\x70\xbd\xfc\x7d\x17\xfe\xb5\x1e\xc2\xaf\x5f\xf8\x2f\xb4\xe8\xbf\x7a\xcd\xf5\x74\x7a\xac\xf9\xfa\x1e\xf7\x16\x36\xfa\x43\xa2\xbd\x9a\x65\x8c\xaf\xd9\x84\x95\x99\xc8\xbb\xb9\x2d\xc3\x2c\x1c\xfc\xd7\x70\xa5\xe6\x93\xdf\x7d\xac\xe9\x66\xf4\x2f\x07\x23\x67\x0f\x0d\xb5\x11\xb1\x9a\x29\xd6\x88\xcc\x45\x4d\xbe\x6a\xf6\xf9\x55\x5b\x69\x84\x76\x55\xe8\xcb\xdb\xcf\xbc\x22\x24\xa9\xb0\x3d\x37\xcd\x25\x66\x69\x60\xa6\x45\x39\x71\x5e\xc3\xfd\x94\xf8\x0d\xe7\xdd\xee\x76\xd1\x31\xb9\x6f\xa3\xde\x61\x38\xdd\xe2\x8c\xd6\x13\xe3\x35\xdf\x83\x5f\x6d\xc6\x3f\xb7\x19\xd6\x10\x66\x7b\xb2\xa4\x5b\xe0\x07\x26\xb4\xae\xc5\x66\xd2\x87\xe1\xe8\xf2\x53\xee\x58\x0f\xd3\x8f\x58\xb3\x89\x0f\x2d\xee\x3d\x91\x76\x64\x73\x62\x42\x7a\xfc\x7f\x4b\x9a\x8d\x3a\xfc\x15\x04\xeb\x95\x11\x7d\xc8\xf6\x86\xcf\xd5\x04\x23\x77\xee\xa9\xeb\x80\xaa\x98\x51\xb7\x8b\xbd\xb2\x95\xf6\xad\x63\x78\xd8\x24\x53\x76\xbc\xed\x4d\xd1\x97\xf6\x24\x93\x3d\xa9\xc9\x29\x5a\xde\x4a\x56\x9f\x49\xf9\xb6\x2e\xba\x9b\x9c\x68\xa9\xfe\xf3\xda\x05\xb8\x93\x56\xc3\x1b\x51\xe7\x13\x80\xdb\x9b\xc0\x0b\x33\x29\xd8\xfc\xbe\x2a\x0b\xdd\xc6\x33\xdd\xc4\x6b\xdd\xc2\x2b\x36\x57\x49\xbd\x52\x4b\x43\xb1\xab\x5e\xf7\x00\x3f\x47\xa9\x12\xf7\x74\x69\xb4\x1f\xf7\x1e\x62\xa3\x62\xf7\x18\x97\x3c\xcf\xf7\x5f\x59\x3b\x07\xf9\x1a\x9a\xf8\x9c\x51\x36\x6b\x7e\x1a\x3f\x20\x80\xdd\xd1\x70\x4e\xab\x19\xcd\xaf\x30\xbc\xa4\x8d\x11\x12\x16\x04\xfb\xfb\xf6\xb4\x28\x9c\x4c\xad\x6f\x94\xc8\x69\xcf\x0c\x31\xfc\xcd\x80\x2d\xb5\x1d\x77\xe3\x14\x34\xb2\xe1\x01\x29\x6d\x74\x0a\x7a\xb0\x22\x86\x5e\x39\xe7\x0b\x0c\xea\x6a\x46\x1f\x7e\x1d\x41\x98\x77\xf8\xe9\x7d\xda\xed\x9f\xb8\x60\xea\x0d\xc4\xe6\x74\xe5\xdd\x09\x16\x23\x4e\x26\x0c\x0a\x25\xcd\x22\x59\x70\xca\x59\x4d\xb3\x5b\xa6\xc5\x7e\x44\x2c\x59\x8a\xbc\xe5\x0f\x3a\x13\xa2\x60\xb4\xfc\x64\x90\x36\xae\x6f\x98\xb9\x60\x95\x20\x18\x16\xb7\xc7\x99\xf2\x99\xed\xc4\xde\x68\x9d\x28\x1f\x36\x4a\x61\x3a\x6b\x56\x81\x92\x49\x48\x12\x0c\x00\xb3\xde\xb2\x2e\x02\xcc\xa2\x15\x6e\xc5\x2a\x80\x56\x91\x4c\xd9\x58\x9b\x8a\xd5\x92\x4b\x35\x06\x00\x63\xee\x21\xf2\x71\xdd\xc6\xa4\xa6\x06\x1a\x81\x62\xf2\x63\x74\xa2\x75\x5e\xc9\x5d\x5e\xb3\x38\x9c\x6b\x37\xb0\xbe\x8b\x14\x18\x1e\xc3\x15\x82\x46\xe2\xcc\xb7\x61\x48\x1b\x7c\x3e\x4e\x44\xe6\x19\xa0\x94\x46\xa4\x54\x9f\x1a\xa2\xce\x59\xdd\x28\x9d\x4e\xc4\xd4\x08\xf5\xc3\xf9\x52\x00\x5b\x45\x50\xa4\x88\xd6\xcd\x02\xed\x25\xed\x8e\x85\x68\x13\x78\xb8\x14\x7b\xc8\x1c\x03\xae\x30\x0f\x14\xe4\xae\x0e\x00\xc8\xca\x66\x94\xc5\x97\x25\xfe\x2b\x9f\x8c\x5f\x0f\x25\xdf\x45\xfe\x5d\x91\x1d\xdd\xc4\xef\xf7\x17\x97\xff\x9f\x90\xf0\x9f\xb5\x48\xb4\x93\xf8\x13\x71\x7f\x5d\x56\x53\xac\x7a\x9c\x06\x53\x68\xda\x1a\x7c\xa4\x88\xb4\x00\x6b\xc9\x38\xc2\x71\x7a\x18\xdd\x38\x0c\xbf\x59\x47\x9d\xae\x4a\xa8\xf9\xb6\xb3\xdf\x7d\x6e\x7d\xd0\x5d\x17\x15\x95\x8a\x95\xb9\x79\xd5\xe0\x04\x39\x3c\x0e\x84\x7e\x49\x47\xab\x42\xd4\x14\x0b\xc2\xa5\x2c\x7a\xb0\xfc\xe0\xe3\xa5\xbe\xfe\xac\xcb\x61\x07\xb1\xb4\x2f\x88\xe6\xf2\x25\x4f\x90\x5f\xfa\x7f\xda\x13\xd4\xb0\x7b\xec\x3a\x41\x89\xc8\xd8\xff\xef\x04\xa5\x6c\x47\xf7\x3c\x41\x9d\x54\xf4\x0f\x77\x82\x76\x10\x4b\xfb\x04\x35\x57\x35\xc6\xc9\x86\x98\x61\x42\x21\xe2\xc4\x1a\xa3\xd0\x01\xd9\xad\x8b\x41\x29\x00\xd7\xe2\x7a\x55\xea\xc3\x62\x3c\x79\x21\xac\x09\xa2\x98\xea\x05\x02\x5a\x78\xa6\x21\x1d\x0c\x64\xda\x3a\x03\x28\x24\x3c\x25\x31\xf2\x55\xbb\xdf\x69\xea\x98\xd1\x7a\x81\xd6\x1d\x68\xa4\xd1\xbd\xcf\x9d\x24\x2c\x98\x95\x6d\x68\xc7\xba\xd6\xab\xf2\x2c\x1c\x5d\x74\x02\xfd\xef\x63\xdf\xb7\xcf\x2c\xc4\xca\x35\xaf\x45\xb9\x0c\xd0\x3f\x8d\x1c\xb3\x60\x6a\x38\x08\x3e\x0f\x7c\x06\x2c\x74\xd1\x0b\xab\x3e\x3c\xb1\xae\x5c\x03\x00\x90\x0c\x5b\x35\x2a\x5c\x38\x2f\x71\x77\x7f\xfd\xd4\x05\xc8\x68\x82\x48\x71\xfb\x30\xaa\x28\x9c\x8a\x3d\x7c\x7f\xf5\x53\x3a\x0a\x56\xf6\xe3\x47\x32\x08\x62\x11\xb8\x38\xb2\xf1\xb1\xd3\x6a\x25\x6f\x86\x23\xff\x2d\x18\xd0\x51\xf8\x87\x2f\x21\xca\xf3\x3b\xae\x8e\xc2\x35\xf5\x39\x97\xf0\x7f\x00\xde\xa8\x1b\x17\xd5\x30\x72\x96\x82\x0f\xab\x12\xc8\xb3\x28\x5c\x94\x70\xcb\x73\x0c\x11\x22\x83\x75\xcf\x0a\x21\xd9\x44\x94\x13\x76\xc7\xd5\x60\xd4\xf4\xb5\x32\x2a\x64\x28\x35\x4c\x79\x78\x87\x39\x79\x53\x9d\x87\xeb\xab\xe9\x27\x99\x34\xdc\x78\xa5\xf3\x79\x9c\x71\xc5\x40\x46\xc9\x08\x96\x0c\x7f\x1d\xa3\x9b\x38\x5e\x32\x1b\xee\xa3\x33\xdd\x45\x61\x39\xda\xdd\x14\xcd\xe5\x9b\xf0\xc2\xdf\x7d\x4d\x38\xd0\xa8\x0e\xd4\xa8\x60\x5e\x2f\x71\x2d\x60\xe4\xcd\x08\x6f\x23\xc4\x25\x04\x66\x1f\x33\x69\x30\xf4\x23\x4b\x01\x44\x12\x4a\xc6\x10\x24\x65\xeb\x11\x26\xf4\xa3\x8d\xc8\xfa\x10\x58\xf0\x75\xd4\xee\xae\xc9\xc7\x1b\xd6\x9e\x7c\x14\x87\xde\xda\xdf\xd6\xfb\xb2\x60\xea\xb9\x81\x5a\x18\x8e\xa6\x33\x91\x6f\xf5\x66\xbb\x35\x79\x6b\xc9\xf3\x1e\xab\xb2\x63\xf4\x2d\x6a\xbf\xef\xf8\xe1\xb2\x08\x07\xa8\x79\x25\x4a\xce\xae\xae\xf4\x45\xc1\x0d\xde\x0f\x7c\xf9\x1e\x38\x86\x62\x8b\x03\xe4\x12\x95\x20\xc8\xb8\xb8\xc2\x32\xca\xc8\x08\xf1\x9e\xe0\xe3\xde\xc5\x07\x41\xa8\x29\x4a\x5a\xd8\x40\xc0\x09\xb5\x0a\xa3\x34\x16\xc9\x65\x54\x42\xc6\x30\x73\x83\x87\x43\x6e\xd4\xfe\xa3\x45\x8c\x63\x73\x7e\x17\xf7\xe8\x06\x79\x60\xbe\x62\xa0\x7b\x0f\x39\x5e\xca\x1f\x68\xf4\xac\xea\xa6\xc6\x38\xba\x7b\x44\x67\x39\xfd\x14\xf6\x7f\x32\x98\x4c\xa0\xdb\xc9\x20\xd8\x42\x0f\xe0\x61\xff\x65\x20\x3c\x8c\x30\x8f\x91\xac\x90\xac\xd7\x5e\xd8\x3f\xff\xcb\x5f\x7d\xab\x9f\xfe\xe5\xaf\x7a\x74\x9f\x7e\x36\xe3\x4b\x83\xbe\xce\x85\xc1\x62\xeb\x3e\xa0\x67\x9a\x7a\x43\xe7\xa0\xc3\x11\xa2\xc3\x68\x3a\x30\x1b\x61\xf1\x01\x5c\x73\xd1\xe9\xb6\xcb\xe5\x12\x6f\x12\x88\x33\xd8\xba\x11\x80\x7f\x52\xa0\x78\x6b\x52\x8f\x4d\x07\x58\xe1\x4e\xe6\x4c\xf2\x1a\x18\x2f\xd3\xdb\x98\xb8\xfc\x80\x7d\x58\x6a\x9c\x47\x14\x00\x7c\xe7\x01\xa2\xab\x3b\x88\x15\x33\xa9\x71\xaa\xbb\xd4\xcb\xed\x9d\xaa\x46\x51\xbe\xf0\x98\xed\x34\xeb\x55\xdd\x45\xc0\x05\x48\x45\x43\x88\xf9\xd0\x4d\x4c\x20\x2f\xb1\x45\x4e\x0b\x1b\x89\x13\xed\x61\xfa\xe2\xc7\x64\x50\xdd\x0d\x76\x37\x88\x29\xf9\x52\xf1\x82\x7b\xba\xb0\x29\xde\x6d\x1f\x01\xc1\xfc\xbb\x55\xc9\x99\x87\xaa\xb5\xd3\xcd\xdc\x8d\x3d\xb8\xd5\xf6\x3e\x24\xdf\x9f\xf0\xae\x75\x8b\xda\x63\x74\xe8\x3e\xf7\x2b\xb8\x69\xeb\xc0\x76\xef\x11\x7a\xbf\xb7\xc4\x91\xd3\x77\xed\x57\x81\x7f\xdf\x57\xf7\x7e\x05\x62\xf7\xba\x8e\x27\x20\x41\x8d\x66\x58\x69\x6a\x36\xce\x86\xa3\x1e\xf7\x58\xc7\x71\x70\xde\x81\x21\xd6\x5f\xca\x51\xb5\xb5\x28\x29\x4c\x92\x28\xb3\x7b\xdb\xed\x08\x6e\x8b\x31\x08\x19\x2b\x25\x30\xdb\xa9\x66\x12\xf8\xdc\xc1\x06\x6d\x7b\x2c\x63\xd3\x33\xa9\xbd\x98\x90\xa8\xc4\x7e\x6b\xcd\x3c\xe1\x0f\xd5\xe4\xe4\x6d\xe5\x76\xc4\x4d\x17\x18\x0b\xd6\x40\xc6\x33\x91\x61\x05\x83\x8d\x77\x38\x66\xfc\x34\xfc\xf3\x93\x27\xc7\x3f\xc9\xc7\x41\xe4\x31\x18\x5e\x75\xcd\x8f\x1f\x09\x46\x01\xc3\x88\xce\xea\x8b\xab\xbd\xe3\x79\x72\x8c\x09\xb8\xd0\x98\x63\x14\xae\x2e\x1e\x33\x0a\x02\xea\x6a\xe2\x29\x36\x81\x56\xab\x56\x0b\x7b\x0c\x19\xa2\xc8\x63\x72\x08\x9c\x9b\x91\x0e\x5a\x44\xa0\x5b\xba\x0f\x1d\x44\x34\x9a\x26\x02\xef\xb5\x9c\x96\xe5\xbc\xf3\xb6\x5b\xf0\xa0\xca\xc3\x86\xb3\x4d\x0f\xc5\x4b\xd4\xa1\xff\xe3\xd8\xd7\xef\xef\x68\x9d\x68\x21\x41\x59\xa8\x24\x0a\xb3\xea\x87\xb7\x88\xc9\xd9\x95\x48\xb8\x85\xc9\x7c\x8a\xfc\x5e\x35\x07\x76\xad\x6c\xee\x4a\x69\x37\x41\x53\xb7\x1b\xc9\x94\xfd\xdf\x15\x2d\xe4\xd0\xb6\xef\xa9\xd9\x57\x70\xc9\x2d\x23\x97\x01\x98\x77\x80\x52\x62\xe8\x29\x3f\x22\x30\x4e\x7d\x34\x75\x89\x0d\x3e\x7a\x39\x47\x30\xdb\x64\x34\xd5\x00\xe4\x10\x1c\x14\xe0\xa1\xb8\xe7\x85\x70\x79\x94\xae\xb3\xef\x71\xf0\x09\x60\xee\x4b\x0b\x7e\xe2\xbd\x75\x6b\x9d\xf5\x77\x9f\x3c\x08\xe2\x4b\x1e\x3d\xf8\xa2\x0f\x40\x9f\xc3\xe5\x1c\xf3\xbb\xde\x2a\xcf\xc4\x94\x22\x67\x93\x7c\x55\x43\x08\x6a\x27\x0b\x93\x3a\x79\x10\x26\x30\x22\x7f\x24\x83\xc3\xe9\xbf\x49\xc8\x15\x70\x38\x48\x3f\xc1\x78\x01\x59\x94\x26\xc0\xae\x8f\x26\xd9\xd2\x01\x5a\xdb\x69\x9f\xd7\xe4\x0a\xda\xdb\x3b\x51\x03\x0f\x86\x21\x8c\x30\x86\xce\xd9\xae\x95\x71\xcf\x05\x64\x40\x27\x8a\xaf\xd5\xf4\xf5\xc5\xdb\xab\xf3\x0f\x97\xe7\x6f\x2e\x2e\xaf\x3f\x3c\x7f\x79\x75\xfa\xec\xd5\xf9\x73\xf2\xc7\xf4\x13\x3e\x58\xd3\x7a\x68\x45\x8d\xa8\x7b\x4d\x2c\xa3\x01\x39\xba\x6f\xbd\x4a\x00\xf4\xda\x68\x90\xd4\xa6\x52\xc4\x09\x13\xf3\x94\x45\xd1\x06\x6e\x77\xd8\xcd\x2f\xc5\xe6\x4c\x14\x9f\x80\xdd\xc7\x7f\x1b\xe5\x28\xa9\x99\x81\x90\xb6\xb9\xf2\x6c\xc3\x61\x8b\xbb\xf6\x89\xae\x99\x81\xec\xeb\xa3\xf8\x30\xa6\x48\x1b\x26\x3e\xcd\x0a\x51\x36\x99\x98\xa4\xf6\xf8\x4e\x85\x78\xf3\x9f\xcb\x84\xc6\x79\x02\xfa\x8d\x38\x3e\xfa\xc9\x03\xd0\x35\xbc\x86\x00\x1e\xb7\x84\x3a\x55\xff\x67\x5f\x1b\x46\xf7\x1c\xe2\xf6\x13\x29\x41\x54\xb3\xea\x8e\xb9\x25\x76\x21\x4a\x1e\x39\xa7\xa0\x4d\xa6\x55\x55\x70\x0f\xee\xdc\xe9\xbf\x61\x65\xce\xeb\xdd\xed\xed\x99\xfe\x82\xa9\xff\x14\x62\xf9\x02\xfb\xee\x2d\x47\xc4\x62\xd9\x2f\xae\x85\x58\x49\x0f\x18\x60\x38\x0b\xae\x0a\x9f\xae\xc3\xce\x69\x20\xbd\x3b\x6c\x7a\x7f\xa1\xda\xb5\x6b\xa0\xef\x8e\x62\xa4\xe4\x35\xd4\x09\xb7\x53\xff\x80\x13\x6b\xe0\x51\x4f\x95\x29\x0b\xff\x6d\x6c\x1b\x40\x33\x23\xae\x1a\xa4\xda\x2a\xb6\x06\x34\xb3\xeb\xaa\x30\xb3\x88\x6f\x0a\x53\x58\x4f\xc6\x41\x71\xa2\x9a\x42\x37\xbf\x4f\xc9\x8f\xa5\xda\xf7\x02\xb6\xea\x99\xc0\x5a\x6c\x8c\x5d\x6d\x3e\xcd\x0a\xba\xac\x4c\x89\x69\x2d\x36\x63\x72\x38\x0e\xc9\x37\x14\xa9\x27\xe4\x89\xe3\x94\x30\x1a\x31\xdd\x0c\x7e\x4b\xb6\x84\xf2\xbf\x6d\x28\x3a\x26\xce\xc7\xc4\xa1\x59\xc0\x70\xb0\x31\xc7\x30\x45\x5d\x90\x3f\xd8\x71\xb8\xcc\x90\xf1\xf7\x93\x13\x5b\xe0\xd1\x23\xfb\xc9\xe6\xe6\x89\x98\xd8\x8e\x8b\xd2\x96\x75\xc0\x8e\x0d\x3e\xff\xac\x80\x1c\xfc\xce\xaf\x67\x20\x89\xab\x32\x2f\xe8\x62\xcf\x8e\x41\x60\x15\x4e\xfa\xc2\xf7\xd4\x21\x08\xef\x19\x9f\x41\x5f\x89\xef\x49\x19\x8c\x0d\x91\x1c\x3b\x0e\x11\xc2\x60\x43\x3e\x00\xf8\xd7\xfd\xbc\x82\x2c\x04\xa4\x77\x1c\xd1\x3f\xb4\xbc\x82\x1c\x8e\x36\x7c\x3e\x0e\x52\x84\x6a\xce\x01\x9b\x82\x9c\x82\x9f\x52\x3a\x91\xd6\x14\x3e\xcf\x71\xa7\x35\xd6\x2e\xc7\x1d\x1c\x6d\x53\xcd\xac\x07\x83\x44\xdc\xc0\x0c\x1f\x23\x26\xbb\x7d\xd0\xdf\xbe\x74\x70\x8d\x5d\x8a\x40\xa4\xcc\x33\xb1\x2a\x55\x8f\xcb\x0a\xa1\x1c\x43\xc3\xb9\xad\xec\xb5\x7e\xc1\x8f\xcd\xb8\x08\x65\x93\x0a\x18\xcd\xeb\xc6\x34\x38\x78\x72\x78\xf8\xaf\x83\xa4\x30\xd5\x55\xe5\x35\x55\x37\xd3\x8c\xf1\x22\x32\x70\xef\xd3\xf9\x7d\x6d\x0f\x68\x30\xc6\xc7\x89\xaa\xf8\x4a\x39\xd7\x73\x98\xf8\x9b\xbb\x91\xd1\xe7\x1d\x27\x91\x55\x83\x36\xbb\x2e\xaf\xf0\xbe\xb9\x61\xf9\xaa\x60\x57\xdb\x32\x8b\x2f\x9c\x0f\x1d\xca\x2e\x73\xfd\xfd\xea\x0d\xaf\xf5\x2d\xaf\xe7\x7d\xed\x1b\xe5\xa5\xcd\xa7\xb1\x87\x02\xfe\xc4\x8c\xb3\xac\x23\x01\xdb\x9c\xdf\x7f\xd7\xc1\x9e\xcd\xbf\xb1\x6d\xdd\x63\xf7\x6d\x9d\x7e\x7b\x6e\x4a\x7f\xed\xe7\xbc\x6b\xff\x92\xaf\xc4\xd8\xd5\xfd\x9c\xbd\x7b\xce\x2c\x28\x97\x93\x7f\xc2\xfc\x2c\x3d\xce\x24\xa2\x8a\xba\xc4\x4f\xf8\x45\x4e\xf7\x6e\xac\xaf\xd2\x63\x63\xc3\x65\xe8\x38\xde\xc1\x3a\x24\x0f\x7a\x9c\x7a\xde\xaf\x5f\x00\xcc\x69\x7a\x81\xb3\x14\x9d\x16\x9f\x89\xd8\x4d\x21\xd1\x9c\x39\x41\xad\xf6\x90\x24\x3f\x0c\x83\x7d\x32\x89\x34\x58\x99\x83\x45\x3e\x5e\x7b\x25\x48\x55\xac\x16\xbc\x0c\xe0\xa8\x23\x50\x5c\xd9\x3e\xcd\x41\xdb\xbb\x77\x17\x6f\x99\xc6\xf6\x26\x2c\x37\x9b\x1b\x8a\xa8\xe1\x16\x4c\x38\x17\x25\x4b\x00\x09\x47\xed\x41\xb6\xed\x95\x42\x4b\xee\xaa\xcc\xc1\x9b\x7a\x4a\xc8\x4b\xe5\xf2\xbc\x03\x32\x5e\xe0\x58\xa5\x4f\xb6\x4b\x63\x33\x1c\x59\xd0\x3c\x98\x37\x24\x27\x13\x79\x9c\x77\xbc\x5e\x95\x24\x42\xb1\x83\x0c\xee\x98\x1e\xb3\xaa\xc5\xa2\xa6\xcb\x25\x55\x3c\x73\xb0\xb9\x62\x1e\x9a\x8c\x71\xc0\x76\xe2\x97\xac\xd8\xea\x9b\xc9\xe8\x02\x2c\xcf\x0f\xcf\x7a\x99\x93\x15\x60\x19\x01\x68\x5e\x94\x98\x9f\x2c\x19\x2d\xa5\xcb\x88\x2e\x14\x99\x81\x5d\xda\xd8\x47\x33\x51\xd7\x5a\x7c\x45\x5f\xd3\x2d\x53\x7e\xdd\x4a\x2d\x8c\x35\x91\xd5\x6f\xb8\xfa\x75\x27\x6d\xff\xc9\x41\x9a\xbe\xd7\xcb\xf8\xad\xb3\x8b\xa9\x1b\xcd\x0a\x6b\x42\x3d\xc7\x68\xee\x53\xa5\xd8\xb2\x52\x26\x71\x84\x6e\x9f\xcc\x68\x8e\x4b\x8b\xb1\x39\xad\xc3\xa3\x99\xe1\x9c\x15\x8a\x9e\xe1\xb0\xc9\x49\x34\xb5\x49\xcc\xbf\x2d\xcc\x53\x3e\x8c\x4d\x6e\x31\x7b\x1c\xb5\x90\xe4\x93\xfd\xe7\xf4\x69\x8e\x06\xf4\x07\x72\x68\x1f\x02\x87\xdd\xdb\x48\x11\x33\x8a\x6e\xf5\x36\x2e\x79\x17\x1b\x1f\xf6\x83\xaa\xc0\x50\x8f\xee\x10\x93\xb8\xcb\xba\x6d\x33\xe9\x4c\x0b\x56\x2e\x50\x12\x38\x26\x9c\xfc\xe1\x84\x1c\x1e\x13\x3e\x99\xc4\xd1\x9d\x71\x9d\x77\xfc\x3d\xf9\x36\xda\x00\xa7\xea\x81\x58\x11\x0f\x93\x1a\x77\x15\xf8\xdc\x7c\x8a\x5e\xb7\x8e\x15\x4d\xdf\xa6\xfb\xee\x1f\xf3\xe2\x7d\xb9\x0b\x28\x6e\xf0\x9f\xe1\x06\xc2\x11\xff\xf3\x5c\x41\xbf\xfa\xd9\x36\x0f\x60\x4f\xa6\xec\xfe\xf7\x0e\x2e\x28\x5e\x3c\xf1\x23\xeb\x6e\x9d\x4b\xb1\xd1\x57\x8e\xeb\xa4\x7d\xdf\xe0\x20\x3b\x2e\x1c\xc7\x09\xda\x06\x5c\xeb\x99\x55\x23\x60\x15\xa7\x70\x1c\x36\x6e\x19\x18\xc0\xb7\xfe\x8a\xd1\xcf\x3f\xba\x64\x2d\x84\x22\x72\x49\x0b\x93\x1b\x83\x04\x03\xfe\xfa\x84\x4c\x4c\xe6\xf1\xcd\x0d\x2f\x58\xd0\x56\x8c\x49\x5c\x50\xa9\x2e\x51\xfe\xd6\xc3\xc0\x4c\xe3\x78\x4c\x47\x70\x79\x04\xb7\x85\x2d\x3b\x09\x99\x53\x97\xe9\xcb\xde\x38\x27\x27\xc4\x6b\x3b\xba\x6e\x10\x77\xf9\x60\x87\x10\xea\x67\x9a\x1f\xed\xbc\x75\xec\xba\x57\xa2\xba\x14\x1b\xef\x78\xe7\xa6\x37\x99\xd8\x9b\xe8\x01\x89\x70\x97\xe3\x1b\xe9\x86\xcf\x21\xa7\x7a\xb0\x2e\xc7\x0f\x1a\x7c\xb7\x9f\x5a\xb5\x92\x37\x53\x5a\x55\xd6\x2e\xde\xf8\x3e\xd6\x5d\xd8\x50\xb3\x83\x03\xf2\x23\x23\x7f\x59\x49\xe5\x90\xee\x21\xb9\x9a\x83\xbb\x57\xa2\x8a\xf3\x25\x8e\xf5\x61\xb4\x77\xc4\xaa\xca\xa9\x62\xb6\xa5\x40\x34\x0f\x84\x1f\xaf\x86\x41\x4d\x13\x08\x8c\x4b\x7a\x17\xa8\x99\xec\xdb\xa1\xc7\x87\x19\x09\x23\x88\x47\x4f\x29\x7f\xe8\xa2\xac\x82\xd6\x90\x72\xc9\xbd\x6b\x01\x35\x9e\xec\xa2\x80\x98\xc0\x7c\x19\x23\x39\x99\xd1\xf2\x72\x18\x0c\x70\x57\x73\xc7\x41\x6b\x35\x9e\xc6\x64\x71\x59\x15\x3c\x63\xc3\x07\x0d\xbb\x48\x07\x99\x4e\x9a\x23\x1b\x37\x7f\xf0\x68\x76\x21\xe5\xac\x4a\x4f\x3b\xb5\x27\x9b\xf0\xf0\x4d\x4e\x9a\x4d\x1d\xc7\xca\x33\xbd\x3f\x8f\x3b\x0a\x7d\x4a\x2c\x78\xc4\x3d\xc0\x63\x94\xc3\x5c\x1a\xc4\xfb\x29\xcc\x6d\xf2\xc3\x35\x8a\xf8\x97\x90\xec\xd6\x60\xf9\x1b\xc7\xbe\x40\x2f\xe4\xf4\x99\x56\x89\x19\x0b\xe8\xed\x2c\x34\x4e\x25\x1e\x51\xb1\x99\x07\xc1\x7c\xb3\xfb\x84\x6d\x28\xff\x27\xb1\xec\x34\x80\x85\x5e\x29\x38\x0b\xb1\xb9\x16\xd7\xa2\x1a\x1e\xf6\x1e\x20\xdb\xeb\xb4\x8d\x4d\x9f\x97\x5d\xfe\x91\x1d\xc3\xc0\x1c\x7a\xc3\xf6\x7d\xb9\x7f\x68\x9a\x11\xa9\xe8\x82\x91\x55\x45\x86\x00\xdd\x07\x3f\x15\xbc\x64\x23\x52\xb3\x82\x42\xae\x52\xeb\x79\x8e\x9a\x1a\xf0\xfc\xef\x69\xb5\xc2\x01\xd3\x05\x7b\x5b\xa5\xdd\x13\x78\xca\xf0\xbe\x60\xea\x1a\xae\xd3\x97\x65\xce\xee\x86\x1d\x21\x12\xf1\x3e\xf0\xf8\x21\x8c\x1d\xc3\x9e\xdc\x63\x25\x72\xb1\x29\x7f\xdb\xb5\x78\xae\x7b\xf8\xad\x57\xe3\xf1\x6e\x9d\x7e\x8f\xd5\xd0\x13\xd7\x74\xd1\x31\xf5\xfb\xcd\xfb\x15\x2f\xff\x36\x34\x70\x9f\xc9\xc1\x56\x7f\xb1\xe9\xfd\x8d\xb6\xb5\x31\x41\x34\x48\x34\x5d\xee\x25\xcb\x44\x99\x87\xbf\xd0\x32\xff\xac\xbb\x71\xc3\x2b\x76\x26\x4a\x05\x19\x9a\x76\x5d\x4b\x6d\xbe\x8b\x1c\x26\xe7\x84\x10\xab\x34\xbb\xb1\xd9\x62\xde\x25\x3c\x49\xc6\x69\x07\x91\xf7\xd3\xb9\xa8\xcf\x69\x76\xe3\xe3\xed\x71\x82\xf6\x8d\x47\x9f\x1e\x48\x68\x7a\x62\xb3\x24\x47\x2c\xb1\x7d\xcb\x4c\xa1\x80\xdb\x70\x8f\x10\x0a\x06\xf8\xa0\x1d\x8e\x4d\x73\xf1\xe3\x0b\x76\x1c\xfd\x60\xd8\xee\x03\x69\x33\x8e\xd7\x0f\x5d\x0a\x13\x0a\xcc\xc4\xfa\x70\xc4\x0c\x69\x7b\x1d\xbe\x58\x85\x79\x09\x6d\x06\xd8\x3d\x06\x42\xa6\x3a\x76\x0d\xa6\x70\x5a\x14\x61\x2a\xb2\x5e\x79\xca\xfc\xdc\x13\xfb\xd6\x37\x3c\xcf\xe1\xa6\x77\xb4\xda\xdc\xf8\xfe\xf1\x78\xad\x96\x5b\x78\xe9\x2d\x5f\x9c\x08\x7d\x3d\xdc\xb4\xb5\x4a\x34\x27\xe6\xea\xd2\xfe\x18\xde\x34\x62\xae\x12\xbb\x03\x19\xd6\x58\x3d\x17\xf5\x92\x50\xa2\x2b\xa7\x7d\xd0\xc1\xdb\x5d\x62\xa2\x8b\x9c\x70\x08\x44\xbb\x51\xaa\x3a\x3a\x38\xd8\x6c\x36\xd3\xb5\x7a\x72\x78\x38\x2d\x99\x3a\xc8\x45\x26\x0f\xd6\xea\x9b\x27\x87\x93\x7a\x79\xf0\xfc\xfc\xec\xea\xfa\xf2\x7f\x5c\x7f\x33\xf9\xfd\x9e\x7b\xca\x0e\xbb\x4d\x0e\x07\x07\x04\xbf\xf8\x1b\x12\x51\x0f\xcc\x18\x79\xdd\x18\xe5\x3d\x73\x38\xfe\x08\xf9\x46\x37\xa1\xec\x20\xca\x70\x29\x66\x2b\x65\x13\x5c\xc0\xee\xa2\xfa\x00\x7c\xb5\x40\xea\x6f\xf5\x17\x42\xaf\x03\x10\x29\x2a\x80\x6c\x0e\xc8\xf0\xb3\x1d\xc4\x9f\x21\xd2\x03\x72\xbe\x43\xa7\x32\x80\x6a\x30\xd0\xda\xf1\xa8\xc6\x98\x04\x5b\xdd\x40\x20\x2d\x57\xa0\xcb\x29\x07\xca\xe4\xf4\x64\x6c\xe9\xb4\x39\xe8\x2d\xc0\x72\x42\xcb\xed\xe6\x86\xd5\xac\x23\x65\x7e\x4f\xb0\xe9\xfe\x64\xde\xac\xeb\x73\x55\x42\xc2\x38\xb2\xa4\x25\x32\x35\xec\x4e\xcb\x22\x5c\x81\x93\xc2\xd6\xa4\x20\x87\xf0\x25\xd4\x25\xc5\x53\x9f\xf6\x64\xdb\x5b\x2b\xab\xb7\x59\x76\xee\xf3\xd8\x6c\x34\x93\xa9\xad\x36\xeb\x1a\xed\xb7\x3b\xba\x16\x8f\x4a\xd5\xcd\x90\x90\xd7\x62\xcd\xc2\x1e\xe7\x26\xe9\x9b\x39\x5e\xa0\x22\xb2\x29\xb6\x01\x8b\xcd\x7c\xd0\xc2\xbd\x51\x2d\x82\xb2\x69\x4e\x4a\x41\x96\xa2\x66\x41\x22\x6f\x5a\xb3\x1e\x46\x71\xd3\xa3\xb9\x2a\xd3\x1c\x80\x73\x9e\xd8\xe9\xa4\x05\x85\x60\x59\x23\x45\xea\xe1\x31\x40\xc7\x27\xf5\xa9\xc7\x84\x3f\x7e\xdc\x52\xf6\x46\x1a\x54\xeb\x32\xd1\x78\xe7\x42\x84\x8f\xd5\xb2\x6c\x57\x74\x2f\x5e\x88\xb6\xea\xf4\xa9\x07\x07\x86\xc6\xdc\x7e\x66\xce\x35\x22\xf2\x88\xd0\x34\xf0\xa7\x6b\xbd\xf2\x67\x7f\xba\x9e\x9a\xf5\x08\xdd\x2c\x7a\x78\x3b\x1c\xb7\x08\x22\x1c\x74\x3f\x6f\x93\x6e\x47\x0a\xdf\xcb\x0e\xba\xd2\xec\x4d\x48\x58\xd6\xed\x27\x49\x5c\x73\x5e\x27\xa8\xab\x55\xa5\x2f\x85\xd9\xbe\x7f\x3b\x12\xbb\x9f\xae\x7e\xb7\xa6\xfe\xcb\xd2\x59\xb2\x8d\x26\x93\x0f\xd1\x80\x76\x55\x09\x55\x41\x9a\x4a\x1c\x53\x53\x21\xcc\x4b\xc5\x16\xde\x28\x45\xfe\x93\xd5\xc2\x38\xd3\xfa\x0a\x7b\xfc\x03\xdb\x9b\x11\xce\xff\x8b\x2f\xaf\xf3\x6c\x1a\x35\x96\xeb\xfe\x5b\xe2\x47\x62\x54\x54\x20\x57\x80\xfb\x56\xe0\x7c\xb5\x7b\x4b\x5a\x6d\x1c\xc6\xf5\x93\x3e\x53\xcd\x2d\xda\xe3\x5d\xfb\xbd\x20\x6c\x3e\x67\x99\x32\xf1\xc6\x35\x43\x00\xcd\xfb\xb4\xb3\xcf\x19\xcb\x6c\xe3\xa9\xea\xf2\xae\xfd\x9c\xb3\xd5\xb1\xef\x5c\x4b\x7a\x17\xf3\x61\xc3\xc3\x8d\xeb\xbd\x9d\x3c\x19\x3d\x68\xec\x6a\xc7\x5e\x8d\xd3\x22\x20\x44\xeb\xda\x8b\xa5\xcf\xcc\x03\xde\xbf\x43\x44\x68\x51\x6c\x28\xd2\x35\x0c\x8a\x5d\x0e\x69\x64\x55\x45\x7c\xae\x1b\xe2\x58\xbf\xf5\x98\x67\x1e\x34\xd1\x34\x79\x60\xaf\x0d\xd0\x89\xc4\x03\x0e\x9b\xce\xd6\xac\xde\x5a\x0b\x2f\xf9\x57\x37\x56\xb0\xb3\x8e\x88\x75\x46\xb4\xcd\xeb\x66\x9c\xae\x5b\x56\x2c\xc3\x4c\xc2\xb6\x98\xa8\xc9\xa1\xb9\xa0\x4d\x8b\x5c\x92\xaa\x16\x6b\x9e\xb3\x1c\xed\x6d\xc0\xdb\xe8\xb7\x0c\xac\x68\xf3\x95\x5a\xd5\xcc\x98\xb0\xac\x3f\xb1\x6e\x7c\x49\x56\x55\x34\xee\xc4\xd3\xc8\xee\xb8\x44\x1f\x70\xf7\x06\xc0\x63\x31\x06\x2c\x8e\xe6\xbe\x3c\x30\x39\x8d\xd5\x0d\x55\x9d\x57\x98\xa8\xd4\x07\x98\xab\xcf\x47\xeb\x56\xf6\x17\x7f\xaf\xb9\xdf\xec\xc4\x57\x92\xcd\x57\x85\xcd\x4b\xab\xbb\x99\xf3\xa2\x00\x03\xde\x4a\x11\xc8\x22\x17\x8d\xb3\x23\xf5\xb2\x5e\x85\xbd\x8a\xcd\x96\x40\x19\x52\x9c\x9b\x80\x3f\x70\x38\x9f\x93\x60\x6e\x1f\x3f\x22\xed\xe9\xaf\x9b\xe0\x68\xc1\xa6\x1f\x1b\x29\x06\xe0\x4e\xb0\xbc\x26\x3b\x41\x68\x8b\xee\x34\x07\x62\x5b\xc7\xff\x4e\xc8\x13\x32\x21\xc3\xa1\xfb\x6b\x44\xfe\x95\x6c\x46\xe4\x31\x01\xbe\x23\xba\xc8\xa1\x4c\xc0\x8e\x35\x59\x0f\xfd\xe9\xf1\x09\x69\xb8\x9a\xba\xc7\x62\xc8\x1b\x7a\xf1\xf6\x21\x42\xaf\xd3\x08\x9f\xc0\x24\xab\xd7\xe2\xa3\x35\x72\x8a\x79\x10\x22\xe4\xa1\x5d\x6c\x3a\xe1\xa6\x51\x14\x19\x0d\xd4\xf7\xb0\x9c\xac\x4a\xc5\x0b\xcf\x1e\x67\xb4\x68\xa1\x8c\x39\x37\x51\x55\x93\xab\x64\xaf\x98\xeb\xd8\x8e\x0d\xa4\x28\x29\x2d\xf0\xd0\x5e\x38\x03\x5b\x2f\xc2\x1e\x0b\x71\x81\xd6\xca\x97\x82\x4f\x9f\xe1\x12\x76\x4d\x6f\x91\x19\x0d\xf8\x81\xe7\x2f\x7f\x70\xd0\x37\x54\xc6\xf4\x6c\xd2\x25\x36\xd7\xe2\x4f\xd7\xaf\x5f\x3d\xe7\x6b\x13\xc8\xfe\x89\xe4\x7c\x8d\x01\xdd\x7c\x6d\xb3\xcd\xef\x68\x69\xc7\x32\xe4\x2c\x13\x75\x23\xbe\x28\xe7\xeb\x30\x9c\x9e\xaf\xb5\x70\x9d\xf3\x75\x3a\x60\xdb\xb6\x00\xd5\xf6\x63\x71\x61\xde\xc3\x96\xfe\xa3\x95\x57\x71\xd4\xa3\x2d\x88\x86\xdb\xd5\x14\x06\x9a\xf7\x68\xc9\xb9\x7f\x87\x3c\x4a\x47\xa3\x2e\x73\x62\x77\xc3\x01\x0a\x6c\xab\x25\x07\x2c\xbb\xb7\x3a\x58\x80\x3b\xeb\x23\x8a\x6c\xa8\x2a\x02\xc7\xc9\xb9\xc8\x56\xce\x1c\x08\x7f\x04\xca\xc0\x48\x23\xe5\x22\xc2\x5b\x5d\x04\x41\xfa\x71\x40\x72\x1c\xa2\x1d\xb4\xd5\x42\x6d\x6e\xb5\xd9\xc6\x82\x1e\x45\xda\xbe\x4e\xb8\xe4\xae\x1d\xd9\x09\xcf\x1c\x2d\x8b\xc5\x83\xe8\x50\x81\x7b\x14\x92\x44\x1d\x00\x26\x99\x8a\x32\x13\xa5\x5e\xef\x25\x2b\x57\xcd\x14\xfa\xc6\x8b\x1b\x59\x0f\xe2\xb1\x83\x44\x09\x51\x6d\xb6\x57\xf3\xe7\x87\x68\x3b\x9c\x3d\x98\xb1\xf2\x7b\x4c\x5a\x9d\x1a\xe2\x95\x2b\x80\xea\x19\x5f\x61\x4a\xf3\xfc\x7c\xcd\x4a\xf5\xca\xa4\xa7\x35\xf1\x71\xb9\xd8\x94\x83\xb1\x1d\x43\xcf\x4a\xab\xea\xde\x55\xf4\xc2\x37\x2a\xb5\x26\x20\xca\x60\x73\xf5\x8b\x8a\x85\x61\xa1\x76\xf5\x60\x76\x7e\x00\x54\x6c\x61\x1e\x44\xf9\x42\xff\x89\x21\x3c\xc1\x62\x8e\xe1\xd9\x42\x9a\x3a\x38\x20\xd8\x08\x5c\xb3\x6e\x3d\xd0\xd7\x47\x5a\xe7\xa0\x60\xd5\x29\xa0\xb1\xbc\x78\x61\x70\x35\xb2\x95\xc4\x56\x4c\x05\xc4\x21\x9b\xad\x66\x88\x98\xd2\x7f\xf9\x5b\x88\xbc\xfa\x1d\x46\x15\xe1\xb0\xf7\x6c\xda\xda\xfc\x3e\x8b\x36\x2b\x56\xf5\xfe\x35\x03\xa2\x1d\x79\xf7\x1e\x69\x42\x30\x1b\x87\x20\x03\x54\x33\xf3\xfa\x0c\x07\x18\x74\x89\x14\x02\x7e\xda\xfa\x68\x18\x0b\x8d\x73\xd6\x1e\x0e\x8c\x74\x32\x29\x45\xce\xde\xc1\xaa\x9e\x7c\x05\x1d\x7e\xf5\x9e\xfc\x35\x88\xfc\x1d\x10\x32\x13\x77\x13\xf4\x6b\x3f\x22\x08\xb6\x3a\x99\x89\xbb\xe3\x46\xa1\x46\x3e\xdf\x23\xa2\x6a\x5a\xca\x8a\x82\xe0\xf5\x90\x2f\x2b\x51\x2b\x5a\xaa\x66\x35\x6c\xcf\xf8\x53\x3e\xad\x5a\xcd\xe2\x77\x98\xc9\x11\x91\xa2\xe0\x79\x54\xe2\x53\xf8\xc7\x74\x93\xc1\x7c\x9a\x13\x30\xaf\xed\x11\xe1\x65\xc1\x4b\x36\x99\x15\x22\xbb\x6d\x74\xa4\x57\x69\x42\x0b\xbe\x28\x8f\x48\xc6\x34\x67\xd1\x28\x60\x86\x98\xd1\x22\x1b\x86\xa1\xa3\x31\xe0\xc9\x88\x7c\x4d\x9e\x8e\x1a\x55\xa1\x53\xeb\xba\x95\xac\x6b\x43\x12\x3a\xa7\x76\x54\x0b\xa1\x9a\xf3\x4a\x0f\x01\xbd\xc3\x5a\x07\xbd\x13\x76\xe5\x78\x4f\xa3\xa1\xcf\xd9\x9e\x56\x43\xa4\x95\xae\x66\x91\xec\xc4\x7c\x2e\x99\xd2\xa4\x72\x44\x0e\x7b\x15\xad\xc5\xa6\xbb\x28\xa6\xb2\x8d\xa2\xac\x8f\xc8\xe1\xf4\xdf\x64\x47\xf9\x56\x9c\xf0\x11\x10\x40\x9f\xd2\x26\x3a\xf8\xc8\x4a\x0e\x7d\xea\x18\xf2\xdd\x1d\xa9\xdc\xbd\xf9\xff\xbf\x5b\xb6\x9d\xd7\x74\xc9\xa4\xb1\x7a\x34\xe8\x00\xa4\xd7\xbf\x12\x51\xd1\x8c\xab\xed\x11\x79\x32\x3d\x3c\x26\x9f\x1a\xf4\x2d\xc2\x12\x87\xad\x12\xf1\x41\xf2\xeb\xd9\xec\x8b\x96\x7c\x89\x69\xc8\x4b\xba\x64\x47\x38\xa0\xe3\xae\x32\x7e\x33\xc2\xb9\x27\x76\xab\x79\x64\x7c\x13\x5c\x31\x2c\x32\xc9\xc4\xaa\x54\xfa\x10\xcf\x79\xc9\x15\xeb\xac\xa1\xf8\x92\x97\x8b\x89\xbd\xdf\x8f\x08\xa3\x92\x4d\x38\xa4\xce\xe8\x1e\x29\xaf\x99\x29\xee\x4c\x2b\x8d\x1d\xf1\x0f\xa8\xbf\x7c\x6f\x18\xcd\x8d\x87\xd3\xd9\x0d\x2f\xf2\x21\x6c\x75\x68\xb7\xf4\x78\xd5\x7b\xaf\xee\x9c\xaf\x83\x4e\x42\xa4\x6b\x9e\x93\x13\x32\x80\xd5\x3b\x72\xd9\x14\x4c\x84\x61\xb2\x02\x80\x75\x7e\x4f\xc1\x63\x69\x10\x5c\xf5\xe9\xd2\xf8\x50\x64\xc8\xd5\x06\x8f\x84\xe5\xa6\x8f\x08\x9d\x49\x51\xac\x1a\x4b\x52\xb0\xb9\xea\x75\x23\x46\x5f\x9b\x17\xc0\x28\xde\x7b\x25\xaa\x5d\x6d\x9a\x9b\x72\x67\xa3\xb5\xd8\x34\x1a\x75\x2f\x40\xfb\xea\x37\x77\xe6\x8e\x09\x44\xc5\xef\x7d\x8d\x4f\x36\x6c\x76\xcb\xd5\x04\x9e\x43\xb3\x9a\xe6\x1c\x8e\x5b\xaf\x26\x79\x72\x78\xb8\x94\xf0\x60\xd0\xf8\x01\x9a\x2c\xc5\x2f\x9f\xd5\x46\xca\xd2\x8d\x88\xb1\x5d\x76\x6e\xcc\x5e\x18\x4b\x00\xf7\xb5\x90\x77\x46\x72\x76\x30\xf1\xe1\x11\x6a\x92\xa7\x37\x14\xdf\xb0\xd2\xe6\xa4\x6c\x60\x8e\x0f\x08\x97\x44\xcc\xe7\x64\xc3\x48\xcd\x7c\xa8\xf4\x0d\x97\x84\xe1\xf9\x22\x78\xc4\x8b\x2d\x36\x86\x2e\xf3\x2d\xdc\x0c\xc8\x7f\x4b\x28\x81\x24\x73\x53\x82\x8a\xba\x25\xbd\x65\x92\x9c\xdd\xd4\x62\xa9\xf9\x51\x29\x32\x8e\x3e\xaf\x07\x07\x44\xae\x66\xa8\x46\x31\x08\x40\x9a\xe9\xb6\xbc\xa9\xc1\x51\xb6\x5e\x35\xc8\x78\xb0\x7a\x4a\xc8\x15\x2f\x33\x86\x20\x8f\xd0\x48\xf4\x5d\xcf\x85\x92\x8a\xb1\x9a\x0c\xc1\x12\x4a\x32\xbd\x30\xa3\xd8\x7f\x51\x33\x54\x63\x3f\x01\xdd\x6f\x83\x31\x46\xdd\xa2\x71\xf1\x0f\xab\x81\x52\x12\xfe\x9a\x42\x15\xac\xf7\x52\x0d\x74\xbf\x37\x34\xbb\x45\x53\x2c\xd7\x3f\x80\xfe\xbc\x60\xb4\x64\x52\x91\x0d\xdd\x92\x97\x24\x13\xab\x22\x27\x73\x0e\x0e\x8b\x21\x4f\xf0\x0c\xc7\xff\x39\xb7\x5d\xbb\x81\xe8\xd2\xc3\xe7\x32\xaf\xe9\x62\x12\xaf\xd5\x60\x57\x0b\x9f\x79\xaf\xc1\x15\x34\xf9\xfd\xef\x1b\x4c\xcc\xfe\x4b\xe4\xc9\x61\xa3\x8a\xbd\x2d\xf0\x43\xea\x01\x49\x53\x7f\x7b\x2e\x1d\x88\x7c\x9d\xe2\x1b\x21\xef\x22\x69\x27\x10\x22\x23\xe1\x70\x00\x84\xae\xff\x91\xcf\x0a\xf3\x6f\x3d\xfc\x84\x27\x15\xd0\x55\x80\x62\xdb\xb5\xea\x2d\xb1\x07\x2a\xc6\x72\xa8\x6f\x20\x7c\x87\xee\x57\xd3\x2f\x62\xcf\x7a\x1d\xae\x57\x3b\x47\xb0\x5b\x64\x6c\x0b\x8d\x4d\xad\x8e\xf5\xfc\xea\xf0\xfa\x62\xea\x92\xad\x59\x2d\xd9\x0f\x3c\x67\x62\x88\x22\x5f\x7a\xab\xa1\xe5\x4e\x3f\x40\xd4\x79\x5e\xb2\xbc\xa6\x9b\x6e\x20\x97\x3f\x5d\xbf\x7e\xe5\x1c\x52\xc0\x6c\x00\x19\xeb\x28\x2f\x1b\x0a\xca\xe7\x17\xaf\x89\xe6\x17\xda\x18\x2f\xa0\xed\x34\x2d\xec\x0f\xb1\xb7\x25\x77\xc7\xd7\xbb\x9d\x8c\xfd\xd9\x40\x5b\xd6\x84\x33\xd9\xe9\x69\x81\xea\xb5\x7d\xbe\xd1\x6e\x25\x77\x2c\x92\xb9\xa6\x0c\x4c\x37\xea\x86\x6b\xb1\x21\x60\xa3\x8b\xac\x38\x70\x59\x23\x4e\xbe\xb7\x23\x5d\x8a\xcd\x1b\xb4\x11\xd5\xa8\x05\x9f\xd3\x8c\xc1\x73\xc2\x8c\xcf\xa9\x1e\x0a\x59\x49\x0c\xe4\xe2\x70\x25\xcf\x99\xca\x6e\x30\x64\x40\x94\x24\x67\x08\x44\x0e\x4b\xb0\x45\x57\x00\xa8\x09\xfe\x5f\x4a\x90\x35\x67\x0e\x03\xe5\xfa\xe2\xf9\xc5\xb0\x5e\xf0\x32\xa7\xa3\x23\x72\x26\x4a\x09\x5d\x4b\xba\xe6\xe5\x22\x74\xea\x84\xd6\xa9\x24\x43\x98\xa5\x14\xab\x3a\x63\x63\x44\xce\xc9\x50\x49\x30\x02\xa7\x65\xca\x51\x85\x9f\x89\x52\xb2\x7a\xcd\xc8\x92\x2d\x45\xdd\xd2\x7d\x3b\x2b\x13\xac\x0b\x4c\x0f\x72\xbb\xa3\x4d\xc9\x2d\xd8\x98\x18\xb0\xb4\xbc\xe9\x4f\x6b\xed\x4b\x68\x5d\xe9\x74\xd0\x27\xe4\xa2\x9c\x18\x18\x69\x98\x02\x38\x27\xd1\x62\x43\xb7\xd2\x80\xd0\xfb\xb6\x20\x12\x44\x2a\xdd\x35\xcf\x98\x9c\xb6\xe8\xd7\xa9\xea\xf5\x78\x07\x77\x9a\x61\x1c\x38\x36\xc1\x1c\x08\x30\x3c\x9a\x1c\x3d\xb5\x7e\xe0\xc1\xf1\xae\x46\xd8\x99\xdd\x44\x7f\x29\x36\x46\x5f\xe8\x28\x11\x56\xc1\x87\x80\xe1\x6a\x7d\xbb\x33\x8c\x24\x30\xf7\x26\xcb\xbd\x83\x46\xde\x7b\xf5\x10\xac\x0e\x78\x0b\x93\x13\xb3\x1f\x3b\x23\x9f\x8e\x3b\x90\x96\xf4\xfa\x9e\xd6\x35\xdd\xbe\x0b\x9a\x7c\xdf\x75\x5a\x42\xd2\x89\x4f\x0b\xe0\xf8\x04\xe1\x73\xbf\xd9\x89\x89\x86\xe0\x4f\x8e\x33\x48\xae\xa4\x66\xe9\x30\xa2\xce\x10\x75\xb5\x45\xcf\x45\xdd\x94\x4f\xad\x63\x5d\xbc\x6d\x62\xf4\x4e\x6a\x47\x6a\xed\xa2\x76\x60\xaf\xa0\x84\x9e\x9d\xa7\x7d\x4b\x9f\x4d\x97\xf2\xcf\xa1\x7d\xdb\x56\xe3\x08\xa4\x69\xbf\x39\x7c\x56\xe6\x3b\x07\xaf\xbf\x8b\xf2\x57\x0f\x3c\x05\xca\x42\x4e\x89\xe4\xe5\xa2\x60\x36\x7d\x41\x70\xdc\x1c\x39\x21\x30\xb6\x69\xd7\xd2\x91\x1b\x84\x26\x27\x42\x5e\xf1\x92\x99\x6b\x60\xc6\x48\xc9\x36\xe8\xb2\xcf\x0a\xbe\xe4\x8a\xe5\x63\x64\xbe\x4b\x41\x54\x4d\x39\x98\xad\x4d\x99\x5e\xe7\xd7\x70\x8c\x51\xe6\x23\xcd\x6e\xb3\x32\xf7\x56\x68\x8c\xd3\x7b\xf7\x7e\x97\x19\x98\x95\x79\xe4\x83\x87\x80\x94\xde\x98\xe0\xaf\x0b\x63\xfc\x25\xba\x59\xcc\x39\xa0\xcb\x85\xea\xdb\xc0\x3d\xdd\x34\x0d\xc6\xe9\x47\x8f\xc8\x43\x28\xba\x60\xde\x03\x74\x38\x00\xad\xa3\xf5\x5d\xf3\xf9\x00\x5c\xeb\x83\x9f\x0c\xaa\x2b\x98\x9b\xcd\x36\xe9\xaf\x7f\x11\xbc\x1c\x0e\xd2\xe8\x77\xbb\x4f\xbc\xc7\xe4\xfa\x6f\x72\xce\x77\xbf\x6a\x18\x9d\xab\xd7\xe5\x1f\xe0\x8c\x27\xce\x59\xcf\x03\x86\xeb\x72\x8f\xc7\xad\x79\x36\x82\xc7\x6d\x17\x79\x43\xa9\xe0\xd1\x69\x92\x77\x27\xbd\x09\x45\x8b\x46\x38\xb6\x8d\xfe\xa6\x79\x5e\x33\x89\xb8\x9e\x66\xf9\x34\x49\xe0\x57\xd8\xf4\xe6\x52\xb7\xf0\xe4\x7e\x23\x92\xcd\xc4\xb2\x5a\x29\x23\x79\x1b\x64\xd6\x70\xef\xeb\x16\x67\xed\xa8\xae\x1d\x7d\x8e\x13\xea\x8f\xa5\x1d\x84\xf9\xf5\x81\xe7\x6b\xc5\xe6\x3c\xee\xe0\x08\x1c\xe7\xd0\xce\xaa\xe3\x24\x06\xb8\x12\x4a\xb6\x31\xac\xa6\x66\x61\x41\xbc\x45\x17\x28\x1f\xec\xd8\x84\x4f\x6a\xee\x03\x78\x0a\x97\xc5\xd6\x45\xf8\x6f\x28\xe0\x0f\xd0\x3c\x37\x29\x7c\x6c\x97\xe6\x12\xd2\xe4\x4b\xc8\xf7\x42\x71\x50\xad\x50\x88\xbe\x43\x2f\x96\x0d\x1e\x5a\x69\x86\xe2\x81\x12\x4d\x98\x8f\x19\x4a\xc1\xa5\xb2\x4b\x8e\x21\x51\xd6\x45\x4b\x37\xa5\xb9\x40\x0e\x9e\x5d\xb8\x39\xfa\x44\x0d\xed\x23\x65\xe2\xb4\x48\x65\xb2\x17\x80\xb2\xc6\x79\xf4\x86\x2c\x90\xc9\xd3\xa5\x6e\x78\x79\xeb\x33\x76\xe1\x8c\x66\x05\x2d\x81\x47\x27\x52\x2c\xd9\x06\x5d\x1a\x0d\x58\x38\xe2\x54\x63\x7f\x21\xca\xc2\x98\x14\x42\xdc\xa2\x48\xa0\x85\x7a\x0c\x4c\x1a\x45\xcb\x69\x28\xda\x39\x9c\x55\x74\x0b\x17\x65\x69\xaf\xc3\xb5\xb1\xf1\x5f\x8b\xea\x00\xe3\x45\xc7\xfa\x9d\xce\x18\x8c\x50\xde\x88\x55\x01\x57\xdb\x4c\xdf\xb2\x7a\xe2\xb6\xa7\xe1\x48\x0f\x30\xa3\x12\x80\x2c\xf4\x78\x41\x5a\xd9\x80\x8a\x68\xa9\xfb\xa8\xfd\x48\x9c\x96\xcd\x3e\xdb\x56\x11\xc3\x72\x42\xad\x43\x34\x39\xb4\xdb\x81\x6e\xd2\x98\x95\x98\xe5\xc4\x3e\xde\x69\xf0\x98\x34\x6c\x03\x9c\x44\x20\xd0\x7d\x3e\x68\x41\x98\x72\xec\xb3\xeb\xb0\x1b\x3c\x08\xc2\x65\xdb\x33\xbd\x7d\x44\x8c\xa3\x01\xa8\xa4\xbb\x42\xc0\xdd\x71\x73\xed\xb6\x78\x09\xe3\xdd\x0f\xe3\x68\x71\x12\xb5\x1f\x48\xa7\x9e\x0d\xc5\x1b\xc3\x3b\xe8\x33\xd2\xd2\x36\x35\xab\xea\xfb\x1d\xae\xec\xc1\x60\x14\xd4\x73\x34\x7e\x62\x67\xf5\x98\xf0\x18\x84\x00\xa1\x0e\x56\xf2\xe6\x52\x6c\x86\xb5\xd8\x8c\x22\x20\x6e\x76\xa7\x6a\x8b\x4f\xb1\x73\xf1\x3a\x63\x75\x1d\x04\xb9\x6b\x29\x08\xd0\xdb\x0b\x9d\xe0\x6a\x99\x49\x61\x97\x9e\x04\x7a\xa2\x26\x90\xd0\x9f\x3a\x8a\xcc\x93\x57\x46\x40\x3f\x2f\xf3\x18\x41\xc7\xfa\xa4\xc1\xf7\xe7\x62\x63\xa3\xfb\x3e\x3d\x88\x60\x2c\x35\x61\xfd\x61\xcf\xe2\x8c\x02\x3c\x85\x1e\x84\x88\xa0\x18\x81\xc2\xe9\xd4\xa8\x3c\x1b\xd8\x9a\xae\x41\x44\x5f\x88\x9e\xe2\x42\x64\xfa\x8a\xf7\xb0\x10\x18\x0d\xed\x19\x9a\xc4\x33\xac\x6f\xea\x12\x92\x3a\x35\x2f\x76\x9b\x71\xa7\x66\xd9\x36\x2b\x4c\xb3\x39\x66\x1f\xfe\xe1\xda\x3c\x90\x52\xaf\xaf\x90\x8c\x6c\x6e\x78\x76\x03\xda\x8f\xbc\xb6\x19\xd8\x66\x5b\x5d\xd0\xe4\xa2\x92\x51\xfa\x42\xfd\xcd\xf1\x82\x4b\x5a\xf2\x6a\xa5\x19\x31\xc3\xfc\xf8\xc7\x77\xe4\x9c\x22\xf1\x61\xd5\x37\xd8\xd8\x44\x1b\xe9\x3b\xb8\x00\xf1\x22\x56\xb8\xf8\x16\x48\x0d\xe1\x4e\x30\xac\x25\xcd\xad\x78\x02\x8f\x0d\xbc\x81\x9b\x40\x59\x23\xe6\x73\x64\x16\x24\x73\x3c\x1c\xaf\x5b\x4f\x06\x67\x7a\x14\x35\x9b\xaf\x8a\x62\x8b\xef\x0d\xde\x65\x2c\x27\x52\x10\x8a\x37\x37\xaa\x64\xe6\x56\xa7\xef\xd9\x8f\xae\x9b\x51\xef\xd7\x4b\xc7\xc6\x22\x1b\xea\x94\x58\xf7\xba\x47\xf5\x95\x9f\xac\xa4\x84\xef\x20\x67\x52\xf1\x92\x9a\x4c\xb5\xa6\x9b\x1d\xd7\xae\x7b\xb1\xc2\x4b\xd7\x8d\x79\x8c\x03\x1a\xdb\x2e\x9a\xb2\x57\x4c\xf9\xcc\x3d\x4a\xcd\x06\xda\xe1\x3e\xf8\xaa\x40\x61\xd3\x76\x00\x8a\xe2\x5c\x8c\x41\xe0\xb3\x97\x8e\x5f\xc9\x6f\xe3\xf1\x78\x8f\x61\x57\x04\x6f\x09\x06\x50\x0d\x76\x79\x1e\x9b\x4b\xbc\x89\x8a\x65\x2b\x9b\x72\x61\x55\xdf\x65\x58\xf9\xc1\x83\x64\x2c\x72\x20\xa2\xee\x54\x12\xbf\xec\x0a\x20\xbe\x34\xcd\xa5\x39\x1a\x7b\xd6\x77\x6a\x77\x2c\x85\x69\xde\x89\x01\x23\x0e\x22\x0a\x1c\x94\x96\x48\x64\x42\xcf\x81\xac\x23\xa9\x08\xa8\xec\x32\x60\xf3\xdb\x5c\x7c\x46\x4b\x84\x82\x0a\x8e\x49\x68\x57\x43\x85\xa9\xe1\xdc\xc2\xeb\x69\xa8\x19\x9a\x8c\x96\x03\x45\x72\x06\xce\xd0\x9a\x2f\xb5\x60\x2a\xe6\x0f\xa6\xb2\xd1\x38\x60\x7d\xe0\xdc\xea\x96\x4a\xe1\xc1\xb1\xec\x6a\x35\xb4\xab\x5d\x07\xd1\xeb\x8c\xf6\x1d\x42\xab\x9e\x31\x0b\xd8\x28\x85\x47\x09\xbd\x0e\x8d\x77\x3f\xde\xb8\xd7\x37\xe1\xe5\x6b\x87\xb7\x37\x04\x3c\x20\xa1\xb4\xc2\x63\x1c\x74\x12\xb8\xe0\xdb\x34\x7b\xc1\x08\x3e\x7e\x8c\x0e\x99\xf7\xb6\xec\xc1\x04\xdd\x47\x89\x62\x02\xf7\xbd\xa2\x92\xbf\xef\xe6\x4e\x22\x7c\xe6\x37\x35\x07\x66\xdb\xe7\xce\xec\x14\x41\x6a\x26\x2b\x96\x79\xc4\x64\x70\x64\xc3\x6b\x03\xc8\x7b\x53\xd3\x8a\x62\x06\xd5\x25\x58\x4a\x20\x16\x04\xf5\xd2\x39\xa2\x5d\xc2\x23\x02\x0f\x43\xa7\xd4\x63\x09\x0f\xe2\x2a\xe6\x73\x07\x55\xd3\x78\x70\x02\xd2\xb7\x01\x83\x61\x1e\x18\x7f\xf8\x60\x5a\x5c\x92\xaf\x4b\xa1\xbe\xd6\x6f\xb4\xcd\xf1\x6f\x5c\xfe\x33\x33\xd4\xb7\xe6\x01\xf1\x4e\xf4\x23\x2b\x25\x70\xf3\x96\x51\x35\x30\xe0\x74\x5b\xb1\x1a\xd4\x0c\x6d\xe3\x31\x79\x47\x81\x00\xc1\x08\x94\x20\x95\x5e\xea\x3d\xd4\x07\x65\x92\x4e\xfe\xee\x0a\xbe\xb0\xb4\x73\x18\x5c\xcd\xb5\x85\x3f\x2e\xf8\x6c\xba\xc9\xa6\xf6\x17\x13\x09\xf0\xc0\xa1\x88\x85\x4d\x7c\xeb\x2a\xb6\x22\xe9\x5c\xe0\x78\xb0\xa9\x8f\x1e\xf5\x0a\x10\x6d\x86\x33\xda\xd2\x62\xb9\xe4\xea\x15\x2f\x99\x05\xf2\x1e\xc6\x10\x11\x25\xdb\xe8\xaf\x1e\x88\xd0\xf1\xb0\x99\x11\xdb\xdd\x34\x27\xe1\x4a\x1c\xbb\x72\x39\xcf\x2f\x5a\x70\xdf\xf6\xa3\x5c\xcd\xa4\xaa\x9b\xd1\x7f\x3b\x43\xd3\xec\x1b\xd3\xe0\x40\x03\xc8\x43\x37\xd5\xb8\x6b\x8b\x84\x0e\x7c\xa9\x19\x7c\xb2\x81\x26\x18\x5d\x47\x84\x1c\x69\xc0\x4a\x05\x9d\x3d\x7a\x44\x1e\x76\xed\x98\x1f\xde\xc1\x81\x96\xb2\x95\x27\x47\xbb\x59\x2c\x37\x72\x7e\x09\x99\x9a\xc2\x33\x8c\xfe\x23\xc0\x02\x1a\xe5\x91\x6d\x0a\x42\xc1\x81\x52\x59\x90\x79\xc7\xbe\x0c\x33\xe6\xe3\xc5\x45\xd8\xe9\xd4\xb7\x70\x7d\xf1\xfc\xe2\x28\xc8\x09\xaa\xef\x07\x25\x88\x58\xd5\xfa\x75\x9d\x15\x6c\x69\x7c\x45\xc0\x4b\x7e\xb6\x55\x8c\xbc\xbd\x7e\x31\x79\xf2\xbf\xe3\x28\x1e\x34\x94\xc1\xc6\x06\xa4\x0f\x7f\x6b\xc2\x1f\x87\x64\x62\x18\x1f\x8c\x57\x0a\xf3\xf8\x24\xab\x39\x42\x7b\x32\x6a\x6e\xa4\xfd\x68\xb6\x25\x64\x5c\xee\x3b\x98\x36\xa9\x2b\x71\xcb\x00\x21\xd5\xde\x10\x71\xea\xec\xaa\xe0\xea\x47\x9e\x33\xbd\x0a\x98\xa7\x77\x88\x3d\x98\x96\x92\x61\xf0\xd0\x64\x2a\xfc\x7d\x67\x16\x8e\xe9\x26\xb3\x3e\xfe\xd0\x80\x7e\x52\xf0\xa7\x24\xaa\x5a\xa3\x32\x95\x19\xe7\xad\xfa\xee\xd7\x36\x8c\xa0\x23\x5f\x7c\x50\x5e\xb7\xf2\x03\x27\x98\x55\xb3\x02\xbe\x7d\xbf\x10\xad\x8d\x69\x34\xa0\xe9\x7f\x53\x73\xc5\x76\xb7\x71\x9f\x65\x0a\xee\x9b\x7b\xac\x8d\xbb\x29\x0c\x11\x44\x15\x97\x74\x3b\x63\x67\x05\xaf\xce\xf0\xb5\x0d\x00\x13\xc3\x7b\xfc\xf1\x49\x8a\x17\xde\x13\xf6\xf5\xa0\x25\xb3\x5f\x94\x17\x2b\x55\xad\xd4\x87\x51\x34\x92\x5f\x83\xa0\x66\xe0\xe1\x9d\x10\x6b\xc4\xc4\x88\xad\x68\x41\x8c\xc4\x31\xc9\x96\x55\xb0\x8e\x49\x04\x02\xa7\x47\xee\xbb\x51\xcb\x35\x5f\x68\xc4\x5a\xa0\x55\xc5\x28\xda\xed\x73\x61\x7b\xbd\x62\xaa\x21\xff\x5a\xe9\xd5\xa2\x11\xac\x8a\xa2\x03\xd2\x1e\xaf\x2b\x08\x3b\xb5\xf2\x6d\x3c\x33\xe2\xa4\xfa\xaf\xbf\xbf\xb8\xfe\x1a\x07\xb3\x14\xd2\x83\xc5\x48\x3d\x14\x42\x7e\x64\x9a\x83\xf0\x38\x23\xba\xb9\x85\xd0\xe3\xfa\x4a\xcc\xe7\x13\xcd\x6a\x7d\x85\x80\xb5\x16\x95\x96\x2b\xe3\x77\xf7\x33\xd2\xc7\xcf\xc0\x75\xfd\xac\x96\xab\xbb\x9f\x3d\x40\x84\xe5\x93\x74\x7b\x85\xc8\x68\xd1\x66\x98\xc6\x46\x87\x80\x38\xb2\x91\x1a\x00\xf5\xd3\xa0\x21\x9a\x54\x8b\x55\x75\x50\x2d\xf2\x12\xa1\x70\x4b\xc5\x4b\xcc\xce\xbb\x11\xf5\xad\x16\xbf\x61\x5a\x2b\xc9\x6a\x69\xd4\x9b\xec\xae\x0a\x13\xdb\xb7\x8c\xc4\x56\xa3\xda\x34\x20\xb5\xa0\x08\x03\x3a\xe9\x6a\x06\x49\xb0\xd9\x52\xac\xbe\x8e\x1a\x1b\x5b\xeb\x11\x2f\xb3\x62\x25\xf9\xba\x47\x2a\xe0\x18\xcc\x25\xe2\xcb\xec\x5c\xc6\xd1\x78\xbc\x47\x83\x9f\xec\xc9\x09\x39\xd4\xef\x74\x34\xee\x93\x2e\x10\x79\x7c\xa0\x82\x68\xd8\x40\x13\x0d\xb8\x41\xab\xa2\x38\x6e\x7f\xc5\x66\xc3\x02\xed\x84\x8d\x8d\x96\xdc\x08\x77\x36\x17\x8e\xba\x25\x3d\x44\x46\xa9\x2a\x30\x04\xd2\x2c\x13\x75\x1e\x48\x14\x3f\x5c\xb7\x33\x81\x1b\xbb\xcb\x21\x59\x95\x05\x93\x0d\x87\xab\x1b\x2a\xc9\x0c\x45\xb7\x22\xb7\x29\x7e\x6a\x9e\x29\x2f\x1f\x18\x41\x42\x8a\x25\x23\x9a\x97\xa9\x8d\xc5\xe3\xa5\x72\x5a\x35\xfd\x20\xc2\xf7\x1f\xae\x9b\x17\x0b\xe6\x1a\xcf\xe3\xe6\xac\x0a\x6d\xb7\x2d\x4a\x89\x0a\x68\x1f\xe7\x1b\x8d\x7b\x20\xdb\x24\xbc\xdb\x2e\x65\x69\xec\x3a\x05\x54\xe2\xae\xe8\x68\xef\x1e\x9a\xe4\x15\x2d\x8f\x98\xb0\xd4\x71\x60\xc5\x3e\xec\x32\x25\x9a\xf3\xf2\x79\x1b\xa7\x3a\x33\x7f\x84\x3b\xca\x55\x6b\x2f\x51\x99\xd7\xdc\x4e\xb7\x97\x37\x7c\x71\xd3\x6f\x33\x43\x38\xc9\xd6\x7e\xf6\xdc\x4c\xb3\x04\x5f\x7e\x43\xed\x49\xdf\xbb\xa7\xf6\xb0\xed\xdd\x56\x53\x30\xdc\xd9\xee\x4b\x24\xcc\xcb\xf3\xa6\x16\x5a\x38\x26\x94\x0c\x7e\x2a\x07\x9e\x89\x0e\x4c\x70\xc1\xd3\xcb\x5d\xd4\xe1\x1c\xb1\xd9\xc4\xa6\xb5\xc1\xca\xf3\xee\x68\xcc\x04\x7b\x1d\xe8\xa2\x9d\xc9\x2e\x52\x6b\x05\x7b\x63\xef\x8b\x60\xc9\x5b\xb2\x3d\xb4\xe4\xbc\x66\xf4\x5f\x17\xea\x86\xd5\x1b\x8e\x5a\x69\x2e\x41\xfb\x1a\x71\x0c\xca\x01\x52\x00\x8a\x83\x19\x31\x44\xec\xef\x37\xe4\x1b\xe9\xb3\x03\xce\x04\x3a\x38\x55\xe7\x65\x7e\x31\xbf\xb2\x7a\x9e\x9d\x12\x24\x18\xa2\x4e\x02\xfe\x35\xf1\xbf\xbd\x66\x8a\x06\x9b\xd6\x45\x2f\x1e\xfd\xf9\x54\x1f\x8d\xab\x88\xa7\xd1\x1c\x56\xa6\xf8\x9a\x19\x90\xea\x35\xab\xed\x96\x59\x9b\xf4\xb4\x97\x4c\x8c\x33\x4a\x12\x64\x24\x68\x22\x63\x63\x80\x66\x02\x05\x8f\x1f\x19\xbe\xa6\x63\x52\x39\x98\x3f\xc7\x20\x4e\x43\xfe\xd9\xf6\xf2\xb6\x1a\x3e\x69\x60\x39\x77\x5a\x6d\xf6\xcc\xc0\x22\x69\x47\x58\xda\x89\xed\xed\x35\x23\xab\xaf\x75\x86\x79\xc8\x8b\x8d\xcc\x26\x80\xa2\xac\x54\x2c\x38\xb7\x08\xf5\x70\xfa\xdb\xcc\x2a\x18\xfc\xa9\x81\xd8\x83\x0f\x63\x42\xf3\x35\x35\x1a\x61\x3b\x1c\x68\x40\x9f\x4e\x83\xb3\x88\x30\x7f\x88\x29\xf3\x05\x06\x67\xa0\x92\x42\xc4\xcf\x5e\x4b\xbf\x77\xe1\xa7\x84\x9c\x06\x77\x4f\x78\xe5\x38\x65\xa2\x6d\x09\x38\x5a\xe7\xf1\xe3\x58\x95\xd6\xb5\x33\xf5\xac\x50\x08\xd3\xfd\xa4\x9d\xba\xa3\xb9\xb4\x81\x66\x5e\x5f\x0f\x00\x1f\xdf\xbc\xa2\x82\xd6\xbf\xc8\x72\x46\xbc\xd8\x2b\x7e\x0b\x9e\x1d\xa8\x44\x1b\x13\x76\x97\xb1\x4a\x8b\x0c\x1c\xdc\x9d\xc2\x1d\xef\x05\xd9\x55\xf0\x92\xbd\x60\x2c\x81\xad\x7d\x6f\x84\xa7\x94\x86\xaf\x15\x80\xb5\x5a\x96\xc3\x14\x1a\xd6\xcb\x39\xa4\xfd\x3e\xa3\x75\xcd\xe9\x82\x19\xe6\x05\x51\x8e\x50\x39\x15\x4e\x5a\xef\x84\x1d\x39\xfa\x7c\xec\x46\x22\x5c\xa6\xa7\xd8\xd6\x4b\xb4\xc7\x10\x71\xe9\xd1\xdc\xda\xac\xb7\x1f\x52\x6b\xdf\x9a\xc0\x79\xab\x0a\xac\xc9\x70\x2a\x2b\x21\x25\x9f\x15\x5b\xa3\x66\x07\x16\x27\xb0\xc7\x26\x1c\x49\x3c\x24\x13\xc4\x3a\x41\x10\xfd\x3e\x4f\x8f\x1a\x23\x2e\x5e\xed\xdc\xf0\x40\x9e\x71\x9e\x6c\x01\xeb\xea\x33\x84\x67\x4e\x57\xb1\x87\x3a\x6a\xb1\x39\x0e\xac\xfd\xae\x52\x20\x99\x44\x4b\x8c\x6b\x00\x6e\xae\xa9\x03\x99\x3e\x56\x97\x62\x13\x36\x6e\x15\x7a\x0d\x29\xa6\x2a\x68\xc6\x00\x11\x2c\xc6\xeb\x01\x45\x26\x9b\xab\x8e\xec\xc6\x3e\x9c\xad\xa2\xa8\x82\x68\x71\x56\x71\x1c\x02\xa2\x73\xa1\x9e\xb4\xaa\xc5\x8c\xea\xbd\xfd\x1a\xed\xb4\xa8\x4d\x08\xfa\x87\x50\x37\x93\x86\x02\x06\xa8\xdb\x83\x2e\x29\x76\x38\xf2\x30\x6f\x68\xdb\x0b\x6b\x53\xc0\x18\x9a\xb1\xad\x30\x40\xd6\xf1\xd8\x1f\xf4\x07\x62\x67\x35\x95\xec\x5a\xbc\xd2\xeb\xb0\x83\x3d\x4a\x27\x42\xe9\x38\xe8\x87\x6d\x03\x74\x53\x25\x87\x69\x53\x17\x4c\xfd\x78\xc3\x15\x83\x09\x37\x72\x9b\x3e\x26\x4f\x46\xf7\x49\x86\x70\xae\x27\xe2\x9c\x73\x83\x74\x5a\xad\x3d\xaf\x43\xa1\xc6\xdd\xdd\xcd\xb3\xe6\x54\x54\x5a\x40\x29\x83\xb3\x16\xb3\xd4\x98\x53\xd8\x05\xa5\x1a\x0c\x5d\x73\x42\x55\x00\xf5\xd6\x2a\xa3\x4c\x1e\x22\xe0\xb3\x8d\xa5\x0d\x16\x42\x46\x1e\x1e\x68\xb6\x0d\x54\x4f\xab\x72\x2e\x6a\xb5\x2a\xa9\x62\x41\x4e\x23\xd4\x91\x59\xe7\x6f\x68\xc7\x70\xf0\x88\x19\x08\x8e\xb0\xce\x27\x38\x88\x78\xcc\xf9\x7c\xce\x33\x00\x05\x03\x37\x4e\x46\x56\x55\x40\x8b\xc6\x0d\x11\xd1\x38\xd8\xb2\x52\x5b\xd3\x38\x84\x53\x81\x66\xa8\x1c\x28\xa2\x6a\x5e\x59\x70\xbb\xd0\x64\xfb\xc0\x24\x5a\xb2\x0b\x67\xc8\xed\x12\x93\x3f\x4a\xc2\x17\xa5\xa8\x99\x75\x61\x25\x98\x16\x1c\xc1\xb5\xa8\x83\xcd\x35\xda\x2f\xbb\x06\x39\x5b\x73\xaa\xd0\xd4\x08\xfe\x39\xa0\x0e\xc4\x29\xd1\x45\xcd\x98\x31\x2f\x2c\x4a\xb1\x64\x13\x27\xd4\x68\x26\xe8\x56\x94\x52\x14\x6c\x4c\xee\xe6\x19\xfb\x5f\xee\xdb\x94\x90\x2b\x86\x47\xbc\x9e\xad\x16\xd3\x4c\x2c\x0f\x9e\xfe\xcf\xa7\xff\xf3\xf7\x87\x20\x96\xe6\x4c\x51\x5e\x74\x9a\xba\x45\xa5\x3e\xa4\x3c\x49\x62\xca\x83\x99\xf7\x3b\x8c\x97\xcd\x54\x97\xae\x87\xc6\xfb\xb5\xcf\x58\x17\xc8\x9a\xce\x9c\xb8\xa4\x77\x67\x5f\xc4\x6a\x15\x1a\xef\xfc\x12\xfc\xd1\x27\x90\x71\x3f\x8e\x5d\xa7\x23\x72\xe4\xfe\xdd\xd2\x52\xa7\xd4\xe9\xc1\xa9\x39\x39\x69\x26\xdf\x4c\x55\x78\x7e\xfe\xe2\xf4\xed\xab\xeb\x0f\x67\x17\xaf\x2e\x2e\x43\x5f\xb9\xfd\x2e\x64\xef\xf6\xbc\x67\xef\xbd\x33\x5c\xd2\x80\x53\x8a\x1c\xf3\xf1\x79\xef\xb2\x11\xf9\xf6\x24\x6d\xa3\xd8\x69\x93\xec\xb0\xe1\xe0\x55\x70\x76\x43\x6b\x39\xcc\xda\x39\x70\x12\xe9\x94\x87\xbb\xb1\x4b\xfb\xde\xef\xf7\xb9\xc4\x61\x5c\x7b\x2f\xee\xdd\x43\x6e\x5d\xeb\xe1\x65\xdb\xc1\x1b\x75\xde\xd7\xfb\xce\xdb\x3e\xcd\x40\xaf\xa5\x09\x26\xe2\xec\x38\x5f\x70\xfe\x0d\xe6\xc5\x03\x78\x36\xe2\x2c\x8c\x37\xcc\x6e\x8e\x60\x4c\x6a\xb6\xa0\x75\x0e\x4a\x3c\x31\xef\xb2\xde\xfc\xfa\x95\x3d\x9d\x69\xee\xf7\xde\x4b\x6b\x17\x27\x60\x4d\xcc\xcf\x49\x57\x61\x97\xb4\x29\x32\x7f\xee\x91\xc3\xb8\x17\x5a\xf7\xee\x63\xe8\x81\xf6\x5b\x6e\x66\x07\x6e\x6f\xdb\x9d\xc6\x44\x7a\x80\x7a\xe2\x6f\xb4\x95\xcf\x58\x32\x39\xfb\x3d\xb7\xf2\x32\x48\xc5\x17\xe5\x26\xd9\xa5\xe8\x6c\x6c\x7b\x98\xa4\x0b\x21\xa3\xbf\x3d\x31\x0d\xfd\xe3\x13\xc0\x0b\xde\x4c\xbf\x63\xd8\x2c\x83\xf6\xdb\x12\x30\x7c\x38\x43\x00\xa0\x6b\x7c\xb5\x76\x5a\x5f\x9b\xd0\xa5\xd9\x0d\xd2\x81\x73\xe8\x30\x58\x9d\x36\xe8\x77\xce\x8b\xbd\x01\xe7\x7a\xf0\x61\xb0\xc0\xcd\xfd\x88\xa0\x7b\x33\x0e\xed\x66\xb8\x9d\x46\x57\xff\xc3\x63\xf8\x47\x1b\x5e\xd6\xf8\xc7\xeb\xaf\x7e\xc7\x5d\xe5\x4c\x14\x58\x59\xff\xa3\x13\x9b\x36\x13\x45\xdb\x5b\xa2\x73\x88\x20\xb1\x67\xa2\x48\xa7\x9d\x6b\xbe\x8c\xd9\x4d\x32\xe3\x6a\x5f\x29\x06\x8f\xbb\xe2\x35\xb3\x68\x6e\xc0\xbd\x16\x8c\xc6\xda\x04\xaa\x8c\xc1\x3c\x0d\xb4\x1c\xd2\xc9\x4e\x22\xe9\x74\xb2\xf4\x18\xca\xee\x6d\x11\x15\x03\x94\x56\x30\x87\x1b\x1c\x63\x69\xad\xaf\x8d\xb7\xc7\xa8\xf2\x7a\xc0\x6f\x37\xd3\xcd\x7d\xb6\x0f\x66\x8f\xa4\x47\x0f\xa2\x9c\x47\x27\x27\x51\x8a\xc5\x73\x14\x71\xbc\xb3\xae\xd7\xfa\x4e\x1f\x90\x76\x9e\xf8\xd4\x93\x94\xb8\x8d\xcc\x38\x9c\xa4\x9c\xba\x87\x4c\x99\xce\x1b\xa8\xb3\x8d\xc3\x56\x10\x43\x27\x19\xe9\xeb\x46\xac\x8c\xee\xc8\xaa\x4c\x3b\x00\xe7\xf7\xbe\x1b\x64\x2f\xbd\xa1\x2d\xf0\x1f\x93\xe4\xbe\x20\xb9\xb9\xdb\xcf\x6e\x61\x83\xb9\x2f\x44\xa4\x18\x4d\xe6\xcb\xea\xdc\x5d\xff\xe0\x8d\x49\xa4\x22\x89\xb7\xdc\x87\x88\x20\x16\x35\xe8\x13\x30\xae\x23\x9d\x17\xa0\x19\xbf\x9c\xf4\x00\x6e\xfa\xbf\x80\x9b\x7a\xb5\x92\x37\x18\xe9\x11\x9a\x99\x69\x6d\xdc\x52\xa4\xd2\x32\x1d\x84\xc5\x95\x03\x85\xd9\x8e\x56\x55\xa7\x73\xfb\x68\x47\x3a\x8a\xb6\x50\x8d\x33\x72\x33\xdc\x0b\xad\xed\xb4\x8a\x9f\x13\xe6\xd6\xa1\xd3\x6c\xb3\x2e\x2d\xc3\x30\xee\x76\xd6\xcc\xa9\x6a\xc4\x61\x53\x79\xe2\x7b\x8e\xd2\x15\x2d\xc5\x9a\xa1\x8c\x6e\x02\x43\x1b\xd1\x29\x41\x3e\xda\xda\x46\x2b\x41\xfe\xd9\x5b\x46\x6a\x21\x96\xfa\x52\x7a\xe0\x12\xd4\x1a\xeb\xc9\x50\x8e\x4c\x10\x6f\x16\x36\x9d\x73\xa9\xd0\x66\x84\x21\x2f\x10\x12\x60\x13\xd3\xf8\x81\x9c\x24\xc6\xac\xff\x0d\x1f\x1f\x23\x9b\xa6\x2f\x55\x57\x23\x70\x33\xf3\x61\x9a\x41\xd4\x95\x2b\x38\x0e\x1a\x7c\xec\x3c\x27\x5b\x5c\x9f\x75\xef\x4c\xe6\x08\xe9\x1b\xec\x45\x1e\x93\xfb\xf1\x7d\x9d\xe7\xcb\x04\x53\xf4\x3c\x5f\xdf\xbb\xf8\xe0\x1a\xa2\xc7\x52\x11\xb9\x6d\x67\x35\xbd\x9d\x18\x3c\x05\x0a\xe2\x29\xd1\xed\xc0\x8d\x6a\x9b\x42\x27\x0b\xb0\x4d\x42\x2c\xaa\xa9\xb4\xaa\x8c\x8e\x4e\x0f\x16\x62\xb0\x20\x9d\x83\x41\x12\x30\xd0\xba\xf7\x89\x2d\x75\x87\xce\x28\x23\xf7\x01\xb9\xeb\x42\xfd\x0e\x5d\x27\xc7\x88\xfe\xb2\x55\xc4\xf0\xb7\x5e\xf7\xee\xb3\xd7\x56\x76\x39\xfa\xd5\xad\x1a\x8a\xed\x3a\x9f\x4e\x5d\xe5\x1b\x12\x6b\x76\x65\x22\x97\xfc\x49\x68\x52\x3f\xfe\xf0\xf0\xc4\x37\x90\x3a\x05\x90\x1e\xc9\xf6\x64\xdb\xdd\x21\xe0\xb6\x62\x61\xf7\x90\xbb\x1f\xeb\x7d\xc9\xfd\x4b\x89\x39\x2f\xe1\xda\x95\x41\x00\x95\xa7\x25\xa3\xe2\xee\x97\xf3\xa6\x83\x05\x69\x58\xbf\xfa\x92\xb1\xe9\xfa\x7e\x8f\xc7\x15\x9c\xa4\x5f\x45\xc7\x10\x02\xdc\xa9\x2c\xd3\x4c\x45\x22\x43\x57\xe4\x05\x6d\x82\x78\xfb\xf8\x0f\x7f\x31\x51\x15\x13\xb9\x4d\x7c\xd8\x58\x90\x2e\x26\xa9\xe4\x76\x39\x55\xfc\xde\x26\x6c\x51\xbd\x5f\xfa\x58\x7d\x7e\x8f\x9b\x07\x14\xa4\x3b\x76\x0c\x4b\xe5\xcd\xc7\x3e\xad\x5d\x35\x99\xbe\xa1\x82\x0b\xc7\xe8\xd0\x3d\x73\x69\x98\xd3\xe1\xa8\xad\x79\xee\x52\x23\xde\x33\x97\x9b\x19\x4b\xea\x4c\x47\x14\x93\x22\x37\x5b\x37\xac\xdc\x49\x26\x9f\x1e\xf4\xa7\x95\xab\x1b\x3e\x57\x11\x52\x49\xfc\x9a\xad\x2a\x4d\x4a\x92\xcc\xb6\x09\x03\x1d\x3c\x2e\xc9\x97\xd2\x61\x21\x18\x82\xda\xe1\xff\x0b\xb0\x39\x46\xb9\xf2\x00\xe0\x72\x35\x57\x94\x5b\xf8\xa4\x6b\xcf\x07\xe1\xed\xa1\xcb\x6a\x16\x76\xa5\xbc\x9d\xd7\xde\x45\x60\x2a\xa3\x7e\x5b\x43\x26\xd9\xd2\x54\x90\xb8\xd1\xd8\xd7\x62\xd6\x16\xe7\xa0\x08\x2d\x0a\xcb\x35\x83\x97\x0a\x42\xe6\x84\xa1\x6f\x7a\xa2\x9a\x67\xee\x71\xe5\x01\x54\x73\xfb\xca\xdb\x79\x8a\x6c\x38\xb3\xf3\xc0\xda\x75\x7e\xbc\x4f\xd6\xe7\x5f\x78\xdd\x96\xfa\xa4\x63\x41\x80\x12\xea\xd9\x86\x61\xc0\x06\xf6\x54\x9c\x04\x24\x38\x03\x5d\x65\x20\xd8\x42\xc6\x85\xfd\xb4\x17\x6f\x70\x0f\x71\xa8\x0f\xcd\x76\x79\xbf\xff\x73\x12\xac\x17\xf5\x22\x9a\xfd\xed\x28\xb1\x99\x46\xbc\x61\x09\xfd\xf5\xaa\xc7\x24\x51\x5a\xa6\xa9\xe5\x99\xe2\xbb\xef\x45\x9b\xcd\x50\x99\xfd\x5c\x8e\x01\xee\x49\x04\x8f\x87\x5e\x9f\xf3\x96\x37\xbd\x6e\x66\x20\x6a\xbe\xe0\x25\xc4\xe7\x0e\x08\x02\x47\xe7\x90\xd2\xad\xd9\x5c\x02\xc0\x42\x58\x07\xdc\xce\x3d\xd5\x43\xb3\x64\x19\x04\x65\xc4\xd2\xce\x7d\xab\xf5\xcd\x2f\x19\xef\x5a\x48\x11\x56\x31\xeb\x12\x3b\xb6\xbd\xbb\x70\x5d\xc2\xa8\x33\x4b\x14\x97\x66\x61\x3a\x94\xbd\x36\x2f\x61\x0f\x57\xa4\xee\xba\xbb\xdc\xc1\xc2\x8d\xe1\x4a\x26\xd3\xed\xa7\xb8\xdb\x5a\x6c\xd2\x4c\xaf\xc9\xb1\xba\x7b\x31\xd3\xb3\xde\xb9\xa8\xbd\x9d\xc4\x50\x71\x8f\xdc\x47\x56\xd0\x65\x35\x44\x4b\x4d\x2b\xa4\x06\xfe\xd9\x25\xc0\x19\xed\x89\xf1\x42\x0c\x5b\xb3\xf9\xfa\x0e\xc7\x9d\xee\x0b\x09\x66\xba\xad\x55\x8b\xb7\x69\xc7\x16\xd9\x13\xe8\x78\xdf\xdf\x76\x6f\xd2\x54\xb5\x73\x6f\x92\x4b\x9e\x5c\xa1\x20\x08\xe9\xef\xb7\xc0\x8d\xcb\xb0\x5f\x4a\xda\x2f\x75\x83\x9c\xd9\x29\x27\xd3\xd4\xfe\x5a\x47\xed\xd4\x74\x83\x78\x9c\xf4\x8c\x93\x71\x2b\x9f\x39\xcf\x45\xf7\x3c\x93\x68\x78\xbb\x3c\x7c\xba\xb7\x2c\xd2\x1c\xff\xb3\x3d\x5d\xf1\x1c\xee\x73\x18\x2f\x63\x0b\x78\x6d\xd1\x10\xfa\x3c\x08\xfb\x17\x7c\x1f\xd5\x04\x8b\xde\x97\x64\x7a\x21\x5c\x26\xe7\xd6\x9b\x58\xea\x46\xa2\xf0\x4b\xc4\x8e\x46\xef\x40\x15\x23\x46\xd6\x00\xd7\xae\xdf\x39\x56\xcc\x89\x14\x31\x03\x64\xbe\x86\x69\xf8\xa9\xdc\x96\xd9\x4d\x2d\x4a\xb1\x92\xc5\x76\x0c\x55\x4c\xca\x0a\x58\x18\x5a\x40\x72\xd7\xec\x96\x6c\x78\x09\x06\xf2\x0d\x46\x95\xda\x94\x7d\x50\xc4\xc3\xe6\x66\x82\x16\x4c\x66\x16\xe0\x8a\x5a\x6c\x5e\xec\x7a\x1f\x39\x44\xa0\xf3\x1f\x76\x78\x95\x2b\x44\xc8\x97\x1f\xa6\xd8\x70\xd2\x0d\x0f\xd6\x00\xdf\x51\x77\x99\x36\x2b\x92\x93\x10\x70\x3f\x01\xc7\x6f\x74\x33\xba\xad\x56\xe5\x63\x07\xd9\x5f\xcc\xa3\x48\x6f\xfc\xfc\xc1\x41\x71\x24\x10\xd0\xba\xf7\x70\x16\x20\x7d\x45\x2a\xec\x08\x97\x05\x8f\xfc\xdf\x63\x2b\xbd\x70\xe1\x43\xd0\x41\xde\x69\x84\x42\x7b\xd9\xda\x08\x67\x7e\x8e\x63\xa3\x36\x97\x81\xf5\x57\x37\x96\x0b\x2f\x79\x79\xaf\x8b\x30\x0c\xb1\x07\xf5\x04\x90\x78\xbd\x28\x48\xba\xf2\x9f\x41\x45\x32\x14\xa1\x3e\x87\x92\x7c\x03\x9d\xd4\xd4\xc6\x0d\x80\x22\x4d\xdc\x00\x43\x69\x4f\x0e\x77\x33\x5b\xab\x0a\xdc\xdf\xdb\x6a\xc6\x14\xd4\x54\x2f\x69\x73\x19\xf7\xb0\xcf\x30\x0c\x85\x3a\xd5\x1f\xe1\x85\x88\x45\xf5\xda\x0c\x27\xa1\x22\x77\xf7\x04\x41\x15\xf1\x0f\x30\xc5\xa6\x5c\x1d\x4c\xd2\x1a\x45\xfc\x9c\xac\xdd\x65\xc9\x4b\xf4\xa2\x70\xf1\x91\x09\x11\x8b\xfc\x31\x2d\x1c\x90\x23\x23\x54\x1b\xbb\xcc\x67\xb5\x64\xe5\x03\x72\x94\x0a\xbe\xdc\xc9\xee\x3e\x08\x31\x44\x43\x86\x77\x7f\x48\x16\xda\x6a\x3a\xc3\x3d\xdd\xb2\x8c\xfd\xbc\xa2\xe0\x88\xb6\x2a\x0c\xc1\x42\x77\xd0\x09\xc4\xa5\xa4\xe9\x04\xd9\x85\x10\x60\xd7\x84\xf8\x34\x31\xba\x34\x37\x66\x58\x29\xb8\xd2\x8c\x83\xbd\xc3\xe8\x85\xf2\x95\xb9\x42\x2d\xe0\x85\x95\x40\x6b\x54\xa1\x95\x64\xc3\x20\x74\x01\x9d\xfb\x21\x9d\x35\x94\x0b\xfa\xa2\x92\x6c\x58\x3b\x69\xf6\x6e\xe5\x3e\x4e\xe2\x73\xc9\xb7\x19\xae\xb2\x87\x7c\x23\xf3\xdc\xb7\xe4\x49\xf2\x2e\x35\x33\x3f\xbb\x5f\xec\x5b\x5b\xdb\x60\x76\xe3\xc7\x16\x52\x53\x6f\xb7\xfd\x16\xb2\x13\x97\x41\xf4\xb6\xd1\xb0\x63\x14\xcb\x92\xd6\x0b\x5e\x8e\x21\x71\xc9\x6a\xc9\x20\xb8\x0c\xa7\xa9\x04\x59\x30\x45\xb8\xf2\x6d\xc1\x3e\xda\xc0\x27\x2a\x2d\x04\xb1\xf5\xe3\x81\x28\x57\x5a\x55\x05\x67\x26\xbf\xfd\x06\x42\x34\x79\x69\x29\xcc\x37\xd5\x20\xb5\x69\x08\xa3\x34\x99\xf4\x71\x4b\x0f\x30\x82\x1e\x66\xde\x56\xda\xf6\x55\x77\x76\x94\x92\x6d\x7a\xfa\x68\x04\x35\xdc\x76\xc6\xdb\x3b\xf1\xa0\x3a\x38\x06\x5f\xf4\x5b\xef\x0f\x46\x7c\x9f\xe6\x1f\x13\xb4\x15\xcf\x0b\x21\x6a\x43\x4f\x07\x69\x39\x79\x64\xbd\x57\x83\x1e\x2e\xc1\x99\xf1\x30\xc4\x3e\x3a\x38\xb0\x68\x36\x85\x14\xb0\xac\xc6\x23\x58\x1f\xc0\xc3\x68\xb7\x90\x9d\x27\x8d\x81\x75\x5c\x7a\x8f\x6d\x89\x7f\xed\x72\x9e\x6c\xc0\x20\x85\x6b\x95\x16\xfc\x1f\x07\x65\xda\xad\x6e\x02\xd8\xac\x07\x09\xbb\x96\x93\x87\xd0\xd8\x4e\xef\xcc\x82\x68\xf6\x73\xec\x5b\x46\xca\x88\x14\x6e\xcd\x9d\x74\x0d\x24\xb7\xb4\x69\xf0\x6e\xd8\xd5\xc2\x8e\xf6\x29\xe7\x60\x21\x7b\x5d\xc2\x7f\x8b\x3b\xaf\x15\x15\xf4\x45\x2e\xbd\x94\x0a\xa8\x7f\xa0\x4a\xf7\xa3\x48\x48\x5f\x0d\x52\x8f\x28\x61\x93\x35\x0c\x1d\x95\x45\xcd\x4c\x44\x90\x7e\xd4\x9a\x61\x75\x72\x27\xd0\x3e\x5e\x71\x56\x20\x60\x77\x46\xc8\xd9\x50\x49\xb4\x50\x54\xba\x34\x2a\x09\x6b\x4a\x1c\xeb\xa9\x05\x24\x3c\xb8\x4a\x10\xc9\x20\xe0\xdd\xbe\xc3\xde\x99\xce\xe0\x9a\xf8\x9e\x8c\xbe\x03\xf0\x52\x82\x1e\x7d\x77\xb6\x18\x48\x4d\x10\x91\xc7\xcb\x8c\xe7\xcc\xcb\x1e\x26\xa0\x10\xd4\x26\xa5\x98\xb8\xaa\x03\xb3\x00\x53\x42\x5e\x6f\xc9\x62\xc5\x24\x84\x0b\xba\x48\xd4\x52\xb4\xec\x35\x33\x21\x0a\x46\x4b\x40\x6b\x55\xcc\xa2\xb5\xa2\x37\x99\x64\xfb\xfc\x23\x1a\xe9\xdc\x1a\x70\xaa\x8a\x05\xda\x91\xe6\xe3\x68\x2b\x40\x39\xfb\x8c\x06\x95\x52\x00\x65\x4c\xbd\x70\x5b\xdf\x91\xd2\xb3\x99\x1c\x74\x30\x6a\xd8\xc9\xc3\xd6\x9e\xb9\xc2\x1d\xad\x79\x4a\x8b\x5a\x4b\x18\x03\xee\x39\xcc\x8e\x86\x3f\x73\x98\x1d\x93\x8e\x83\xa0\x7d\x3e\x14\xa3\x78\x9b\xb1\x86\x98\x0c\x92\x35\x64\x4b\x28\x28\x82\x8a\xeb\x22\x84\xae\x72\xae\xef\x2b\x48\x75\x40\x4b\x22\xca\x8c\x91\x8a\x69\xd1\x33\x13\xe5\xde\xe0\x73\x5e\x2e\x9e\xb1\x38\x6c\x20\x20\x0b\xbc\x5b\xc2\xec\x95\xb3\x78\xb6\xa4\x19\xf2\xe7\x56\x66\xd1\x5e\xe7\x51\x97\x58\xbc\x5b\xf4\x05\x79\xb5\xc7\x48\xb0\x60\x77\x06\x59\x27\xe4\x3e\x3d\x3c\x74\xee\x9c\x7a\x0d\xaf\xfe\xef\x8a\x15\xd9\x8d\x19\xc2\x07\x77\xff\xcc\x84\x3e\xf9\xb0\xbe\xfa\x26\x2b\x85\xe2\x73\x9e\x21\x98\xb8\xae\x07\xd0\x2d\x8e\x69\x4c\xb4\xd4\xba\xd1\xa3\xc2\xa7\xba\xe5\x0f\x8d\x34\x49\xb2\xce\x06\xa3\xe8\x8c\x05\x45\xf5\xce\x47\x4e\x29\xd0\x27\x6b\x0c\x7f\x9f\x2a\x81\x78\xa4\xe9\xf4\xb0\x1d\xe7\x11\x64\x89\x1c\x93\x6f\x0e\x0f\xdb\xc7\xab\x47\x4b\x9f\xa2\x89\xe7\x4c\xde\x2a\x51\x7d\x1f\xac\xa5\xa6\xbf\x0f\xde\x77\x27\xc8\x66\x4d\xe5\x0b\xcc\x8d\x18\xa5\xab\x72\xf8\x9c\xb0\x21\xed\x05\x09\xdb\x7e\xc5\xa5\xfa\x60\xd2\x57\x99\x72\x0e\x00\xf5\x0a\x91\x00\x36\x8c\xa8\x1a\x62\xa8\x6b\xca\xcd\x1b\xb6\xe1\x65\x2e\x36\x00\x00\xf8\x47\xa8\x54\x4e\x45\x09\xe9\x48\x1b\x07\xc5\x10\x67\x21\x20\x02\x2b\xea\x5a\x7e\x18\x8e\x8e\xc9\xa7\xd6\x51\xb7\xba\xfa\x40\xa3\x4e\x66\x5c\x05\xe2\x62\xf8\x05\xde\xc4\x31\xc9\x58\x0d\x30\x22\x1e\x48\x2d\x0d\xb6\x65\x13\x3f\x11\x97\x66\x4a\xb3\xa9\xf0\x9a\x30\xc5\xda\xda\xfa\x56\x74\x12\x09\x91\x9e\x90\xc5\x85\x84\x37\xb2\x12\x65\x1e\x82\x47\x07\x7e\x13\x6d\x95\xbf\x9d\x8c\x8d\x05\x80\x20\x81\xf9\x7c\xdf\xf3\x56\xaf\xec\xcb\x16\xae\xc1\x18\xc1\x3d\x21\x20\xaa\xec\xf5\xea\x5d\x78\x15\x45\x9f\x37\x4f\x84\xc5\xdd\x8b\xd7\xc1\x1d\xb7\x63\x39\xec\x86\x1a\x97\xfe\xc4\x86\x86\x5f\xcc\x86\xb2\x3b\x2e\x11\x12\x47\xb3\x1e\x31\x50\x44\xe4\x5a\x64\x14\xaa\x10\x52\x88\xfe\x1e\x86\xef\x6d\x3a\x94\x83\xf1\x44\xb7\x16\xef\xa1\xfd\x95\xb8\x10\x28\xd8\x45\x5a\x6e\xe3\x31\xfc\xfa\x2d\x0b\x66\x79\xff\x2d\x7b\xe9\x80\x67\x7b\x6d\x19\x0f\x8b\x9b\x2d\x4b\x6c\x09\x5d\x69\x0e\xcd\xe0\xc6\x58\xed\x60\xbc\x37\xc9\x22\x0e\x83\xad\x24\x54\xaf\xed\x72\xce\x22\xb0\x65\x90\xf2\x0d\x52\x39\x3a\xe0\x50\x89\x38\x48\x05\x2f\xd9\xd8\x5b\xbc\x7c\xd2\x6a\x49\x21\x59\x37\xa1\xe0\xd3\xa4\xdb\x33\x5e\x44\x39\x9f\xcf\x59\x0d\xa0\x0a\x33\xc1\x0b\x89\xaa\xec\x0d\x30\x97\x9b\x1b\x06\x40\x13\x7a\x77\x45\xc2\x2a\x6b\x38\x59\xf6\xe5\x19\xc7\xd3\x36\xe8\x4f\x9f\x7d\x49\x60\x05\xed\xda\x9f\xa6\x42\x2c\xde\x9a\x84\xba\xac\x79\x17\xda\x6b\xcf\xe4\x5f\x6d\xf8\x95\x29\x14\xd8\x83\x5b\x2b\x8a\xc7\x9e\x0b\x5d\x41\x1f\x00\x04\x3b\x8c\x30\xee\x42\x3c\x3e\x90\xba\x9c\x41\x05\x60\x32\x9a\x70\x58\x98\x59\x2c\x48\xf6\x07\x47\x8d\x54\x54\x2a\xc2\x15\x7a\x9e\x21\x94\x46\xf2\xa0\xb5\xec\xeb\x3b\xce\x59\x63\x59\xee\x7f\xd6\xbc\xe6\xab\xd7\x9e\x6e\xc2\xe2\xdd\x7b\x69\x24\x87\xc9\xfd\xf7\x74\x3e\xff\x75\x9b\x1a\x6c\x46\xa8\x3e\xed\xb9\xa3\xce\xef\x03\xf0\xe0\x7e\xe5\x1d\xd8\xb1\x08\xf7\xdf\xa3\xcb\xa6\x92\xf2\x3e\xd2\xdb\x8f\xfb\x76\xac\x40\xfe\x96\xa9\x0d\x63\x16\xd8\x85\x2f\x69\x8d\x61\xac\xe0\xc6\x0a\xf0\x35\x48\xdb\xa1\x2a\xdb\x7f\x0b\x8f\x24\xdc\xb5\x8d\x5a\x1e\xfb\x30\xdc\x08\x7b\x80\x6c\x7f\xad\xb2\x16\x26\x7a\x43\xab\xca\x24\x8b\xd6\x43\x30\xf6\x3e\xc2\xd0\x39\x52\x74\xc4\xaa\xd9\xea\xe7\x34\xbb\xb1\x6d\x5b\x0c\x36\x09\x1e\x5c\xfa\x66\xed\x70\xf3\xfb\xfc\x6d\x8f\x57\xe5\xfe\xbb\x7d\x6a\xeb\xef\x78\x00\xef\x07\x78\x61\x37\xde\xda\x68\xdc\x08\xaf\xcc\xf7\x23\x62\x04\x55\xd8\x87\xab\x20\x45\x4a\x4b\x0d\xde\x02\xc7\x7c\xf4\x28\x15\x63\xed\x71\x5a\x0e\x83\xfc\x27\x0f\x77\xa6\x59\x09\x02\x7b\x5f\x46\xd7\xa9\x89\x1e\x81\x5c\x95\xd2\xa4\xcf\xd8\xe8\xff\xab\x19\xa1\x1b\xba\x1d\x43\xba\x02\xdb\x0b\x93\x64\x49\xb7\xb6\xa5\x99\xe6\xc5\x4c\x9a\xc6\xa9\x93\x1b\xfa\x66\x7d\xe9\x4e\xe8\x64\xe7\xd7\x8d\xf6\x4f\xeb\x6d\x1a\xea\x9f\xd6\xbb\xb3\xc2\xb4\x03\xd1\x69\xc1\x7f\x41\xb4\x9a\x0f\xe9\x58\x83\x10\xc2\x04\x0a\xa3\x61\xab\x5d\xfa\xa6\x69\xf0\x0a\xf5\x17\xdb\x32\x43\xcb\x9d\x0f\xbf\x4e\x14\xe3\x51\x8e\xa6\x7e\x11\x2c\xb1\x4b\x83\xde\xc7\x66\x50\x42\xe4\xb4\x34\x99\x15\xbc\xbc\x4d\x3d\x19\xd1\xf7\xe0\xc2\x71\x30\x70\x9a\x41\x86\x8f\x60\x13\xe1\x10\x3a\xb9\xe6\x92\xcf\x8a\xe8\xea\x01\x36\xcd\x7e\xf0\xf6\x5e\xe3\x75\x0d\x2d\xd8\x5e\xff\xc3\xa7\x5a\x02\x1e\x1b\x45\x2a\x41\x90\x7f\xd4\x25\x6d\x82\x1c\x3e\xb7\xe9\x68\x10\x3e\x5e\x09\x08\xe5\x16\x12\x21\xb2\x1e\x44\x99\x31\x3d\x5b\xa8\xeb\x14\x05\x29\x18\xbd\x25\x94\x18\x83\xfe\xaf\xe6\x0c\x5a\x2b\x79\xff\x9b\x08\x37\xf3\x19\xb4\xd0\xe7\xc5\xc9\xa2\xf2\xe6\xad\x31\x97\xc8\x43\x1c\xa1\xcd\x5c\xe3\xdd\x16\x82\x4a\xf6\x88\x80\x11\xca\x2a\x2d\x76\x14\x3f\x6e\xa9\x1d\x92\xe5\xda\x8a\x87\xc6\x88\x7f\x40\x32\x18\x25\x0c\x11\xe6\xd3\x50\xd5\x2b\xb6\x93\x62\x2d\x29\x75\xd3\xac\x2d\xd1\x45\xb5\x2c\x45\xa7\x9a\x82\xad\xb2\xef\x4b\x91\x44\x38\xd4\xcf\x25\x0a\xb3\x2e\xf7\x20\x0b\x5f\x23\x45\x18\x2d\xb3\xeb\x4e\x02\xb9\x2f\x89\xf4\x24\x12\x6b\x5f\xeb\x50\x77\x8a\x8a\x66\x5c\xe9\xa7\x60\x70\x38\x38\x4e\xe1\x4b\x20\xed\x74\x66\xf9\xd8\xdf\xee\x93\xc1\xf1\x2e\x42\x8d\x16\x61\xcf\x52\x35\xa0\xc4\xfc\xc4\x44\x19\x9c\xeb\x0f\x09\x98\xd4\x7f\x80\x3d\x88\x95\x64\xc6\x1b\x0d\x5e\x7f\x7d\x6c\x1a\xd7\x36\x26\x43\x46\x45\x61\x90\x49\xbd\x19\x79\xa3\x9b\x72\x02\x33\x20\xeb\x53\x63\x31\xda\x45\xf0\xed\xcd\x4c\x03\x2b\x29\x51\x5d\xfa\x07\x3d\xa5\x01\xbf\xf6\x25\x3c\x44\x2b\xfa\xe3\xed\xa9\xf9\x2c\x2a\x34\x0c\xba\x1a\x1d\x37\x51\x11\x12\xed\xb4\x73\xfa\xa6\x38\xb6\x0e\xf8\x84\x28\x01\x2c\x36\xfe\x87\xc6\xa8\x03\xbe\xed\xcc\x09\x55\x61\x8a\x51\x87\xd0\x02\x96\x54\xae\x88\xde\x79\x9e\xbb\xbc\xe3\x76\x3f\x69\xcd\x68\x0c\xcc\x7c\x26\xe5\x0f\xb4\x76\xca\x7b\xe4\x93\x20\x69\xf0\x98\x0c\x26\x4f\x5c\xea\xe0\xf8\x18\xee\xb9\xe7\x1b\x2c\x6b\xfb\x40\x5a\xfc\x95\x93\x13\x32\x28\x45\xc9\x06\xc1\x0c\x2f\xd9\xc4\x7e\x8e\x4c\x34\x56\x9c\x9c\xc3\x8d\x4d\x25\xb9\xe1\x79\xce\x5c\xce\xd7\xa5\x58\xc9\x04\xf6\xf4\x8e\xbe\xc9\x60\xe0\x26\x74\x70\x40\x5c\x70\x41\xe8\x80\x07\xe9\xae\xcf\xae\xae\x34\x09\x70\x50\xb9\x2e\xa9\xba\x99\x12\x10\xae\x19\xc9\x51\x24\xd6\xbf\x11\x5e\x92\xff\x73\x35\xf6\x40\x13\xf3\x42\x50\x85\x9f\xe0\x7d\xd1\x72\xf3\xaa\x22\x33\x86\x19\xb4\x6b\x10\x9f\x33\x14\xd2\x28\xf6\xaa\x3b\xc2\x74\x35\xba\x06\x36\xe5\x10\x4d\x9d\x44\x5e\xd3\xec\xd6\x30\x3f\x33\x66\x44\xa7\xe6\x7e\x9a\xe5\x4f\x6d\xab\xf9\xf4\xf3\xbf\xfc\xb5\x41\x75\x93\xf0\x88\x7d\x22\x8f\xc9\xcf\x8e\x8e\x7f\xfe\x97\xbf\xb6\x8e\x8d\xa1\x29\xf0\x75\xac\x5e\x83\xe3\xcd\xa7\xea\xee\xe7\xd8\x94\x9d\xa4\xae\x4c\x14\x83\x9e\x3e\xe0\xc9\x3b\x3d\x32\xe1\x28\xae\x0a\x36\xd8\x69\x79\xc7\xa5\x18\x0e\x9a\x99\xed\x3b\x6c\xf9\xfb\x9b\x1a\x93\x7d\x6d\x81\xa7\xdc\xfe\x86\x46\x03\x67\x1a\x7b\x5b\xe5\xd4\x04\x96\x67\xb4\x66\x0a\xf3\xda\x3f\x79\xb2\x25\xd5\xaa\xd6\x1c\xae\x9c\x7a\x73\x9e\xb9\x80\x5b\xd9\xbf\x17\x4c\x5d\xd9\xaf\x43\x17\xb0\xed\x2b\x3c\x7a\xe4\x6b\x4f\xb9\x3c\x13\x45\x41\x2b\xc9\xf2\x51\x3b\x7c\x1a\x64\x15\x5b\xf6\x4c\x8f\xc8\xb7\x13\xf3\x69\xa7\xf9\x5f\x56\xd2\x7a\x14\x03\x30\xae\x98\xb7\x76\xad\x9d\x6c\xa5\x81\x75\x20\x6f\x68\x85\x42\x43\x19\xea\x7e\x33\x56\x14\x24\xe7\x4b\x56\x4a\x7d\xd1\xec\x45\xf7\x86\x01\xe0\x25\xd9\xf1\x8e\x40\x47\x76\xe9\xb0\xf3\x2b\xfd\x53\x43\x1c\x0f\x29\x2e\x36\x1a\xce\x45\xb6\x92\x83\x11\x5c\x5e\xc0\xdb\x85\xb7\xd7\x69\xb1\xa1\x5b\x89\x28\x3f\x94\xcc\x0a\x91\xdd\x3a\x26\x54\xcb\x4b\xab\x12\xaa\x83\x62\x92\x10\x37\x98\xc6\x8c\x82\x61\x4d\x9f\xbd\xba\x38\xfb\xee\x38\xc4\x28\xc5\x45\x3e\xe9\xb8\xe0\x60\x1a\x72\xc3\x55\x76\x43\x86\xd0\xbe\xe3\xfa\xa9\x64\x3b\x7b\x3a\x3f\x7d\x6d\x3d\x49\xf1\xae\xbc\xb1\x5e\xa9\x83\x35\xad\x87\x93\x09\x54\x9e\xe8\xdd\xd1\x12\xe6\xc4\xc8\xba\x83\xe3\xa8\x52\xdb\x54\x3c\x50\x35\x2d\x65\x45\xf5\x7e\x37\x0b\x8b\x3a\x67\x35\xbe\xbf\x57\x66\x5e\x3e\xed\x53\x5c\xea\x15\x9b\x2b\x5b\x66\x20\x45\xc1\x73\xd7\xd8\xac\x66\xf4\xd6\xf0\x60\xfb\xa6\xf9\xf6\xfb\xe7\xe7\x97\xaf\x5e\x7e\x7f\xde\x31\xd7\xd6\x4d\xe7\xa8\x11\x04\xfc\x19\x95\x0c\x72\x48\x3e\x26\x83\xea\xee\x4b\xcf\xbd\x31\x2f\xfd\x00\xa0\x6a\x05\x8f\x17\xff\x05\x24\x89\x0a\xe0\xaa\x09\xbb\xa3\x80\x77\x63\x01\x01\xcc\xc8\xf6\x2c\x5d\xb8\xbc\xe1\xba\x19\x4f\x9a\xdf\x84\x02\x02\x52\x85\x9f\x3e\x7c\x19\x2a\x48\x4c\xe5\x9e\xac\x6d\x2b\x7a\x3c\xcd\xc0\xba\x58\x8e\x6d\x99\xfd\x7d\x22\x39\xb6\x65\xd6\x37\xa8\xa2\x0f\x47\x9d\x0a\xae\x70\xf5\x3e\x27\xb8\xc2\x55\xde\xeb\x11\x81\x41\x13\x69\x19\x0e\x4b\x74\x84\x5f\xb8\x2a\x5d\xa1\x3a\x57\xfa\xd6\x15\xb5\xe6\x0c\xf1\x25\xfd\x45\x88\x25\xd9\xd0\xba\xc4\x94\xac\x6e\x1b\xc3\xdf\x41\x1b\x4e\x96\x4c\x4a\xba\x60\xee\x47\x5d\x7b\x25\x11\x75\x5e\x19\xdc\xa9\x59\x2d\x36\xfa\x27\xa8\xbd\x5c\x49\x85\xbe\x6b\x98\x9c\x43\x90\x27\x87\x87\xff\xaa\xb9\x40\xa0\x52\x78\xbe\x6f\xac\x47\x9c\x83\x1d\xc0\x7c\xea\xc5\xb6\xaf\x4e\xe1\xc6\x58\x63\xcc\xf0\x02\x65\x02\xcc\x91\xef\x55\x27\xdc\x88\xcd\x7f\x0a\xb1\xfc\x11\xa7\xd5\x4c\xf2\x6d\xd5\x02\xa0\x26\x80\x1d\xfd\xc5\x17\x86\x37\x25\x94\x85\x8d\x22\xa1\x53\xee\x6d\xd6\x6d\xf3\x27\x59\xcd\xa8\x62\xe7\x05\xd3\x7f\x0e\x07\x39\x5f\x0f\x42\x7f\x92\x66\x03\x53\x9e\xeb\x9b\x07\x66\x77\xa4\x3f\x4e\xcc\xf6\x0c\x76\x55\xc2\xcb\x22\x93\xf2\x9a\xdd\x41\x44\x85\xe3\xc3\x06\xe0\x9b\x74\x44\x66\x05\xcd\x6e\x8f\x07\x01\x87\xd6\x72\x1b\x3b\x22\xff\x63\x3e\x7f\xfa\xf4\xe9\xd3\xb8\xd8\x5c\x94\x6a\xa2\x6f\xbe\x23\x52\xd0\x7a\xc1\x1a\x8d\xc0\xd6\x4f\x6a\x9a\xf3\x95\x3c\x22\xbf\xab\xee\xe2\xef\x46\x0f\x71\x44\x0e\xa7\xff\xf6\x4d\xfc\xa9\xa2\xb9\x66\x8e\xf4\xa7\xa7\x6c\x49\x0e\xa7\xdf\xc0\xff\x77\xff\x8e\x4b\x2b\x51\x1d\xa5\x7e\x07\x5f\x85\x23\xf2\x44\xd7\x6b\xb4\x6f\x4e\xd9\x91\x4b\x2e\x1a\x7f\x9f\x6c\xd8\xec\x96\xab\x89\x62\x77\x38\xc1\x09\x05\xb6\xee\x88\x68\xf9\x2c\x5d\x56\x9f\x8f\x09\x32\x85\xc9\x62\x4b\xf1\x4b\xbf\xf6\x74\xc1\x44\x63\xa3\x5d\xc4\x35\xa5\x79\x7e\xbe\x66\xa5\x7a\xc5\xa5\x62\x25\xd3\x52\x46\xc1\xb3\xdb\xc1\xd8\x53\x38\x6b\xe0\xd9\xe2\x2b\xac\xab\x4f\x31\x0f\xc9\xd9\x0d\x2f\x8c\xcb\x95\xb9\x53\x1a\x60\x3f\xad\x5e\xf5\x7c\xce\x0c\x76\x1c\xba\x09\xbf\xc6\xa3\xf9\x9a\x96\x74\xc1\xea\xa9\xc9\x5f\x72\xc9\x8c\x9b\x81\xb4\xe4\x87\x67\x34\x68\xd0\x54\xb4\xa2\xcb\x3b\xc8\xd7\xfe\xb2\x54\xc3\x3d\x0c\x88\x6e\xe2\x05\xcd\x94\xa8\xc9\xd7\xfa\xd2\x19\xbd\x0f\x04\xa5\x8e\xd3\xa0\xe9\xf6\x05\x5d\xf2\xc2\xd9\x59\x62\x0f\xcc\x52\x4d\xe6\xf0\x79\xe0\x11\x61\x5b\x6a\xc3\xf4\x0d\x11\xac\xea\x28\x5c\xec\x9c\xaf\xc3\x6f\x26\xc7\x94\x5f\xf1\xf6\x55\x73\x1c\xe7\xcb\xda\xdb\x5b\xe8\xb7\xb7\xa3\x5c\x6b\xaf\x3b\x7a\x6e\xbd\x24\x91\xfa\x41\xac\x59\x5d\xd0\x2d\x8a\x65\x06\x39\x87\x2e\xc1\x9b\x5c\x8b\x3b\x7c\x19\xa1\xf0\xb7\xaa\xd9\xec\xbc\xbc\x24\xbc\x44\xbf\xe8\x35\x78\xfd\xf2\x92\x50\xbc\x4b\x88\xde\x86\x31\xc9\x58\x09\xb8\x46\x00\x34\xb3\x36\x7c\x44\x90\x9a\x23\xb0\x96\x38\x67\xe6\x5b\xc6\x30\xd9\x88\xed\xce\x3e\x67\xb3\x9a\xb3\x39\x64\x83\x85\xcc\xc1\xe8\x20\xd3\xe8\x12\x24\xae\xad\x58\xf9\xe6\xf4\xd2\x0d\x94\xb7\xb1\x64\x37\x2c\xbb\x75\x0c\x28\x22\xe0\xc4\xab\x33\xe7\x75\x1b\xff\xc6\x82\x6d\x2f\xe5\xc2\x2c\xca\x9d\xc2\x4c\x3f\x7f\xba\x7e\xfd\x6a\xe4\x06\x69\xac\x38\x7a\xdc\x26\x9a\xc7\x4c\x63\x9a\x42\x8e\x10\x95\xfa\x60\x98\x02\x68\x35\xde\x04\x70\x58\xa0\x5c\x91\x19\x9b\x8b\x9a\x91\x39\x05\x99\x53\xac\xe0\xb1\x46\x72\xf1\xed\x93\x48\xd5\xff\x64\xfa\x8d\xf1\xe3\x95\x53\x42\xde\x50\x29\x81\xc1\x84\xd7\xd6\x42\x4d\x9b\x9a\xb6\x31\xa9\xe8\x96\xac\x2a\x70\xc3\xd7\x7b\x35\x14\x35\x59\x95\x8a\x23\xac\x79\x69\x3d\xc1\x0a\xba\xdd\x97\x9f\x4b\xbf\xd4\x17\x66\xf7\x82\x47\x7a\x29\x17\xe3\x70\xca\xcd\xf7\xda\xb4\xde\x7e\xab\xdd\x19\xdc\xa1\xa7\x0e\xea\xde\xfb\xad\x0e\x2b\xef\x7a\x72\x1b\x6f\xe2\x93\x6f\x9a\x8f\x62\xf0\xa4\xde\xdd\x4d\x12\xaf\xea\x17\x7b\x35\xfb\xbe\x81\xfb\xde\x35\xfb\x54\x6a\xc1\xce\x34\x68\x2d\x0c\x4f\x7e\x77\xb8\x94\x84\x51\xc9\x26\xbc\xec\xf7\xca\xb5\x9f\xcc\xfd\xed\x8e\xba\xb6\x31\xf1\x2a\x82\x62\x54\x8b\x1d\x1d\x2f\x23\xd3\x4f\x81\xae\xe2\xd0\xfa\x8e\xdd\x17\xa9\x44\xf5\xa6\x16\x15\x5d\x50\xaf\x52\x02\xce\xdb\x98\xeb\xc2\xb7\x32\x45\x11\xa1\xf8\xb7\xdb\x4b\xff\x78\x47\x33\x1d\xf2\xe4\xee\x20\x82\x5d\x0d\xde\xf7\x39\x6c\xb7\x13\xf3\x01\x4b\xb9\xd8\xd5\x5d\x68\xd7\x9a\xfe\xdb\x37\xde\x04\xd5\x3e\xc3\xad\xd7\xd4\xbf\xa5\xad\x07\x34\x3a\xfb\x4e\x4e\xcb\xf9\x5a\xb3\x09\x4e\xa9\xb4\x60\xea\xac\xe0\xac\x54\xfa\xd7\xa1\xbf\x16\xac\x61\xc3\xb4\xb2\xaf\x4e\xbb\xb3\xae\xd9\x02\x4e\xad\x21\xa1\xa1\x19\x8d\x0f\x3e\x0e\xba\xb3\xbe\x12\xe4\x80\x3c\x0d\xb4\x29\x5d\xed\x16\x18\xe5\xea\x9a\xb4\xd1\x53\x61\x8b\xe6\xb7\xae\x30\x09\x23\xe4\x5f\x59\xdc\x03\xf0\xf8\x78\x73\x17\x8f\x20\x25\xef\x46\x36\x0f\xec\x2f\x0e\x3b\x68\x9b\xea\x9a\xc5\x5c\x23\xe1\x03\x76\x72\xd2\xce\x83\xdc\x5a\xdc\xde\xb1\x06\x20\x30\xef\xa1\xbf\xc1\x71\xa2\xf0\x3d\xa2\x19\x9c\x4a\x79\xbe\x9b\x6e\xed\xff\x76\x95\x8c\x38\xb3\x56\x41\x77\x0f\xed\x18\x6d\xa8\x00\xea\xbb\x02\x78\x02\x6d\x0d\x17\xa1\x62\xfe\x08\x77\xe7\xe3\x47\xf2\x04\x03\x31\x02\xd6\xf0\x0d\x95\x8a\x05\x39\x87\xb6\x52\xb1\x25\xc9\x0a\x5e\xcd\x04\xad\xf3\x66\x5a\xd6\x3d\xcf\x7e\x05\xad\x75\x61\xcd\x60\x35\x28\xf3\xa2\x16\xcb\x33\xdb\xc9\x30\x7e\xab\xe3\x01\x9e\x89\x6a\x4b\x28\x41\xee\xcb\xb9\xe2\x36\x86\xe9\xd0\x1a\x85\x62\x47\xc6\x1b\xac\x66\xa8\x0b\xc1\xf7\x89\xe5\xa4\xa6\xe5\x82\x35\x93\x84\x8f\x35\x13\x69\x94\x55\x9a\xe8\xdb\x08\x9c\x96\xef\x93\xaa\x36\xbe\xd0\x76\x24\x99\xa8\xb6\xfb\xa2\x3b\x45\xb5\x45\xd0\xd6\x6b\xe1\xe6\x1b\xab\x2d\xea\x86\x0a\x2b\xbc\xbb\x31\xc2\x7f\xe2\xe6\x39\x29\x85\xe2\x19\x1b\x8c\x90\x2a\x03\xea\xc6\xcb\xc1\x73\x5d\x3e\xfc\x66\x1c\x45\xbc\xe8\xe5\xb4\xa2\x1a\x84\xe5\x04\x21\x4d\x18\x33\x5a\x6d\xaf\xc4\xaa\xce\xd8\x5e\x1e\xaa\xaa\xd9\xc0\x40\x8d\xd9\x3a\x91\x8a\x43\xff\x3c\x51\x22\x18\xbd\x84\x42\x83\x46\x9d\xf8\xf1\x91\xaa\x6e\x7c\xef\x62\xc7\xd2\x1c\x8e\x6e\x2d\x60\x43\x12\x8c\x4a\xb3\xc4\x4e\x46\x0a\x95\x13\x93\xdf\xff\xbe\xba\x0b\x5f\x4f\xbf\x28\x33\x91\x6f\xa3\xc7\xcc\x8f\x3c\x8a\x59\xeb\x6f\xe4\x02\x17\xc2\x32\xbb\x41\x3b\x08\xc6\xa6\x19\x23\x97\xff\x39\x2e\x78\x61\xfd\x13\x9b\x45\xf1\x83\x2d\x0c\xc6\x9a\x56\xa3\xee\xd7\xa8\x58\xa2\xc9\xe0\x77\x34\xcb\xb8\x2f\xf8\xaf\xd3\xa2\x80\x25\xa8\x59\xd9\x5a\x05\xa4\x41\xf8\xd5\xd6\x0a\x4e\x44\xfb\x06\x40\x33\xe2\xcb\x73\x70\xb2\x83\x4c\x13\xab\xaa\x12\x75\xe0\xb0\x31\x65\x77\x8a\x95\xf9\xd4\xe6\x51\xa2\xa5\xf4\xa8\x46\xae\x14\xb6\x83\xc9\x2a\xcc\x35\x24\x4a\xf2\xf2\x7c\xda\xb4\x26\x9a\xe6\x5c\x4e\x17\xf7\x7b\x66\xcc\x8a\x43\xbf\xf8\xe3\x68\xd9\x6d\x86\x97\x46\x4b\x43\xb7\xae\xe3\x70\x45\x3d\x9b\x19\x90\x78\xc7\x23\x12\x2d\x62\x0b\x40\x4c\x06\x33\x65\x39\x90\x35\xa0\xaa\x81\x94\xc7\xe7\xa4\x14\x28\xa3\x42\xc2\x65\x2c\xd4\x02\x19\xc3\xcb\xec\xa3\xae\xf2\x69\x2f\x9a\x98\xdf\x39\x3c\x88\x29\x73\x64\x93\xd0\xe3\x80\x57\xf3\xf1\x38\x26\x9e\x6d\x99\x05\xa9\x7b\x76\x98\x74\xcd\xa8\xf1\x99\x34\x24\x72\x65\xa2\x32\x80\x5a\x4d\x04\x5b\x90\x77\x6d\xc6\x16\xbc\x2c\xd1\xe3\x12\xd1\x16\x30\xc3\xa0\x31\x3d\xd2\x5a\x25\x08\x3d\xf8\xdd\x9e\x89\xb2\x79\x6a\xa0\x0c\x9e\x1a\x33\x70\x5d\x04\xf2\x44\x7e\x4f\x97\x8c\x3c\x3c\x21\x83\x3f\x4f\x2e\x2f\x7e\x1c\x24\xfc\x94\xdd\x2a\x39\xea\xc6\x59\x94\x84\x96\xe4\x6e\x52\x8b\x0d\x74\x38\xc6\x30\x22\xae\x40\x3f\x0f\x91\x5c\x26\x29\xba\x58\x32\x4c\x60\xce\x4b\x69\xcd\x03\x50\x6f\x4a\xc8\x69\x9e\x43\x88\x56\x33\x0d\x9d\x8b\x6f\x90\x7c\x56\xf0\x72\x21\x6d\x6b\x3e\x9b\x7a\xb0\x96\xd3\x07\x4e\xfa\x8e\x27\x76\x72\x42\x06\xff\x43\x13\xd6\x80\x3c\x7a\x04\xc3\x0c\xc9\x37\x2a\x76\xf5\xe6\xf4\xfb\x41\x13\xf1\xa4\x34\xbe\xff\xca\xea\x50\xf0\x07\x40\x4e\xd2\x37\x7d\x4e\x64\x45\xad\xf3\xcf\xaa\xf2\x18\x9d\xb4\xc4\xde\x4c\x6b\x66\x47\x1a\x03\x88\x40\x2a\xd0\xf5\x1b\xc7\x6f\x67\x7f\x85\x93\x0f\x50\x40\xc2\x76\xe2\x42\xde\x60\xe7\xe9\xe4\xb1\x37\x6f\x77\x24\x08\xd5\xff\x6a\x66\x08\x3b\x38\x20\xe7\x10\x69\xd2\x41\xa6\x41\x18\x4a\x48\xa0\xac\xcc\x1d\x79\xee\xcb\x4b\x1a\xdc\x3f\x65\x8e\x1a\xc5\x49\xca\x67\x23\x2a\x17\xdc\x49\x2d\x0a\x37\xcd\x7c\x11\xfa\x86\xf9\xfd\xa6\xd4\xed\x03\xb2\x3a\xc9\x9b\xb9\x1d\xf8\xef\x46\xdc\x25\xbb\x53\x3b\x09\x3b\x28\xe0\xf4\x21\x8e\xb6\x3e\x8f\xa4\x01\x70\x6b\x1d\xc0\x05\x5f\x8a\x0d\xb0\x68\xc3\xc6\x25\x79\x29\x36\x2e\x78\x61\xb7\x67\x53\x44\x7b\x61\x35\x48\x18\x7e\xec\x25\x89\x82\xcf\xa6\x9b\x6c\x2a\x57\x33\x7c\xc0\x86\xf5\x7a\x1c\x9e\xd2\xb1\x2b\xa1\x50\x2a\x1e\xd6\xeb\x11\x99\x90\x90\xe2\x9b\x32\x46\x04\x05\xef\x08\xb8\x43\xe0\x30\xb4\x8b\xb9\xc6\xb8\x32\x36\x72\x8a\x91\xb6\x9a\x4d\xc9\x99\xd1\xf8\xee\x13\x0e\x12\xdc\x50\x87\xc7\x28\x3e\xba\x76\xb5\xa3\xc7\xd8\x7b\x47\x41\xa9\x87\xa1\x18\x8e\xce\x0a\x29\x39\x04\x0a\x9b\x95\xe8\x1c\x64\xac\x50\x49\x01\x3d\x04\x52\x47\x47\x66\x8b\xc7\x64\x70\xd7\xf0\x31\x8b\xa3\x4b\xa2\xf4\x32\x6b\x71\xcb\x72\x32\xdb\x36\xbd\x5e\xbe\x63\x5b\x5c\x9e\x0d\xc6\xd6\xfe\x70\x4d\x6e\xd9\x56\xaa\x5a\xdc\xc2\x99\xcb\x99\x8a\x99\x9c\xb6\x00\xa7\xaf\x87\x6b\x13\xba\x8e\x7f\xd5\x0c\xd3\x92\x2b\x6b\x26\x77\x4d\x8e\xf5\xb1\x7d\x7b\xfd\x62\xf2\xe4\x7f\xef\xd9\x47\x51\xfe\x70\xfd\x9d\x1b\x49\x2c\xdc\xb9\x13\x19\x46\x46\x89\xa2\xb8\x28\x5d\x8d\x0f\xb1\xbf\xda\x0e\xf4\xc5\xe0\xa4\x79\xf4\x45\x07\x65\x2f\xe2\x81\x60\xe9\x5b\xb3\x68\x53\x56\x66\x22\x67\x76\x48\xf1\x9a\xbf\xa2\xab\x32\xbb\x61\x92\xac\xea\x02\x2f\x2b\x88\xfc\xa6\xb3\xae\xa5\xd4\xe5\xde\x5e\xbe\xd2\xa7\xa3\x80\xba\xad\x5a\xbb\x96\xab\x62\xe5\xdb\x3a\x82\x0d\x59\xd5\x85\x5f\x25\x04\x50\x98\x66\x37\xb5\x58\x42\x04\x48\xf4\xc3\xd4\xf8\x2d\x04\xaf\xce\x0b\x51\x93\x33\x2c\xbd\x7e\x4a\x68\x55\xc9\x71\x98\x46\x0d\x3d\x4e\xb9\x24\xa7\x6f\x5e\x82\xbb\x91\xf1\x5a\x20\x7a\x20\xa6\x71\x89\x17\x6f\xdc\x05\x8c\xf4\x9a\xce\x86\x7f\x1d\xac\xea\x62\x70\xa4\xa7\xfd\xa9\xed\xff\x0e\x59\x80\xb8\xe6\x78\xcd\x40\x75\x35\x3d\xa5\x31\x19\x7c\x98\x15\xb4\xbc\xb5\xa6\x86\x0d\x37\x42\x94\x4b\x41\xe6\xb6\xe0\xa2\x32\xc1\x94\x8e\x9f\x5f\xd5\xfb\xb4\x2d\xba\x9f\x2b\x53\xfc\x6d\x5d\x74\x79\x08\xaa\x7a\xd7\xb5\xf1\x20\x78\xb8\x51\x65\x52\x0a\x7f\xff\x8d\x01\xdf\x82\x96\x39\x61\x77\x95\xfe\x0f\xbc\xcb\xc6\x8e\xb7\x25\x60\xa3\x46\xef\x3f\xb4\xb1\xd6\xc4\xaa\x00\x1b\x18\x3a\xe0\x85\x89\x6d\x78\x71\x77\xa7\x28\x6c\xc5\xaa\xbd\xc3\xb7\x13\x80\xc1\x80\x0b\x4c\x49\x18\x66\xfa\xac\x68\xc6\xc6\xe6\xd1\x98\xba\x27\x3f\x1c\x66\xc3\x9c\xe4\xd9\xb5\xd7\x2e\x76\x4b\x13\x3a\x97\x04\xa2\xd8\xac\x21\x4e\x2f\x3d\x7a\xe1\xd8\x16\xad\xb3\xfc\x1f\xc8\xd3\xc3\xff\xf5\x3b\xf2\xf1\xa3\x1e\xf9\x54\x32\x5a\x67\x37\xc3\x83\x77\x3f\xc9\x9f\xde\xfd\xf4\x7e\x38\xfa\xeb\xa7\x6f\xff\xf0\xd5\xe0\xa7\x9f\xfe\xeb\xe7\xf7\x07\x23\x48\x76\xd7\x52\x96\x7a\x3e\xea\xed\xe5\x4b\xc2\x81\x7f\x42\x79\x93\xe5\x56\x5d\x05\xa4\xdb\x04\xe4\x00\xb9\x53\x62\x50\xaa\x6e\xe5\x47\xe6\x12\xc4\x6d\xe8\x56\xf3\x97\xb7\x25\xb2\x48\xf0\xd6\x19\x4f\x3c\x99\xdd\xb0\x25\x1d\x13\x29\x08\x95\x80\x33\x78\xa3\x54\x15\xce\xcc\x4c\x62\xf0\x5f\xef\xe8\xe4\x97\xd3\xc9\x7f\xbe\x37\xff\x3d\x9c\xfc\xfe\xf1\x74\xf2\xfe\xeb\xa3\x83\x83\xc1\x28\xc4\xbe\x0b\xfa\x06\x20\x02\xae\x58\xc1\xa5\x22\x94\xcc\xd9\x86\x00\x01\x67\xa2\x30\xe2\x7a\x41\xb3\x5b\x42\x57\xea\x46\xd4\x5c\x71\x26\x0d\x9c\xe5\xca\xf1\x6f\x25\xd0\x9b\xf5\x1b\x3f\x38\x98\x12\xf2\x8a\xdf\x32\xb2\xa4\xbc\x50\x26\x71\xab\xf3\x10\xd5\xc3\xad\x0a\xae\x86\x83\xa3\xc1\x98\x3c\x19\xbd\x3b\x7c\x1f\x44\xa0\x50\xc9\xc8\x00\xeb\x0d\x3c\xca\xa8\xf3\xb5\x23\x6d\xbf\x41\x4b\x80\x03\xbd\x28\x7a\xa2\xe4\xb1\x55\x51\xb5\x2a\xc7\x61\x98\xe6\x9a\x03\x0d\xdf\xb1\x3e\xe9\xde\xc3\x38\x8f\x54\x90\x97\x62\x83\x73\x36\x7f\x1b\xc8\x3b\xbc\xa6\x60\x45\x00\x54\x4e\x2f\x00\x58\xb6\x60\x85\x0c\xa4\x67\x49\xe6\x98\xca\x8b\x20\xaf\x22\xca\xd7\xba\xe0\x70\x94\x32\xdf\xef\xef\x28\x13\x10\xed\x0c\xc3\x8b\x40\xfe\x21\x18\xc6\x3b\x11\xba\xcc\xd2\xc1\xb0\x9a\x6f\x05\x18\xee\x3e\x11\x66\xb2\x5e\xba\x72\x68\x80\x2e\xf3\x62\x5f\xc2\x2f\x33\x97\xe8\x5a\x0b\x3c\xbc\xb4\xb4\x26\x32\x26\x25\xcb\x9f\x6d\x6d\xf5\x3f\x41\xc3\xf5\x87\x98\x12\x6b\xb6\xe0\x52\x33\x68\x62\x55\x9b\x41\xe0\x08\x6a\x8b\xd5\xe1\x02\x82\xc6\x16\xf1\x54\xff\x57\x05\x89\xce\xb0\x31\x0b\xb5\x6a\x80\x6f\xc0\x23\x9a\xd5\x53\x42\x5e\x87\xfb\x03\x74\x2d\xb2\x6c\x55\x93\x38\x02\xc3\x37\x14\x37\x60\xe1\x0a\xf4\x19\x04\xd7\x8a\xf6\xb0\x66\x2b\x85\x31\x1a\xfa\x3a\xd8\x50\x58\x47\xdb\x98\x59\x08\x5d\x63\x49\xd4\x86\x67\x46\x8e\x38\x38\x08\x16\x21\xa3\xba\xe6\x5f\xb4\xa8\x65\x4c\xa4\x64\xb6\x9a\x81\x48\x40\x66\xcc\x06\x66\x20\x8c\x1d\x46\x9b\x12\x10\xbe\x30\x6a\x5e\xea\x0b\xc2\xb6\xa6\xc7\xc1\x32\x51\x5b\x17\x7f\x6c\x4d\xcc\xfe\xa2\xef\x13\xe3\x83\x8a\xe8\x74\x9a\xb0\xb6\x5a\x8c\x53\x8c\xe6\xc9\x1c\xcb\x20\x46\xb0\x4a\xd4\x0a\x96\xf0\x1c\x57\xf0\xc4\xd9\xfc\xd9\x9c\x51\xfc\x74\x09\xa5\xe4\x87\x46\x3c\xce\x5a\x4d\x97\xfe\xb3\x8b\x19\x5f\xab\xe9\xeb\x8b\xb7\x57\xe7\x1f\x2e\xcf\xdf\x5c\x5c\x5e\x7f\x78\xfe\xf2\xea\xf4\xd9\xab\xf3\xe7\xf8\x66\xec\x24\x1e\xfd\xde\xd4\x2b\x66\x2f\xe3\x8b\x12\x9d\x91\x21\x7f\xd3\x81\x89\xab\x80\xe8\xe5\xdc\x6e\x53\x7c\x0c\x08\x9b\x86\x47\xee\x84\x38\x5f\xa8\x21\x9b\x66\x60\x89\xfc\x0f\x32\x69\x33\x7c\x89\x18\x94\x11\x39\xd8\x25\x31\xed\xf1\xad\xb2\x16\x49\x93\xc5\xd2\x0f\xcb\xc1\x6d\xba\x91\xd9\x81\xfd\x79\x77\x87\xfb\xfb\x34\xf8\xa8\x8f\x03\x94\x4a\x36\xd5\xe7\x19\x84\x66\x6f\xbe\xd7\x8c\x5d\x6b\x40\x7f\xe8\x82\x5b\x75\xa7\xf9\xb5\x6d\xa0\x99\x72\xb8\x0e\xc2\xc1\xee\x1d\xdf\x45\x1e\xb6\x48\xb0\xad\xd5\xf0\x08\x20\x2e\x00\x4d\x33\x44\x00\xa3\x5b\x0a\x2d\x34\x96\x39\x46\x43\x85\x57\x81\x81\x7d\xc1\x96\x6e\x84\x7e\x05\xab\x6a\xec\xe0\x97\xcd\x49\xf6\x4e\xbe\xcd\x08\x31\x10\x76\x1c\x8d\xd9\x86\xfc\x58\xd0\xa9\x4a\x54\x16\xe8\xf7\x96\xb1\x4a\x26\x5b\x02\x35\x09\x40\x0f\xcd\x99\x66\xe3\xdd\x69\xd6\x07\xb6\x10\x19\x2d\x50\xc6\xf4\x52\xb8\xe3\x98\x62\x82\x9e\x90\x27\x7a\x33\xf7\x45\x0c\xb9\x63\x9a\xa0\xbc\x1e\x4d\x84\xb9\x5b\x48\xaf\x00\x38\x88\xbd\x33\x4f\x71\xc3\xf1\xee\x1e\x41\x7b\xbd\x43\xed\x82\x07\xbf\x93\xca\x43\x27\x26\x36\xa5\x85\xfa\x8e\x6d\x35\x6f\xd8\x4d\x6f\x96\xe2\x7e\xb8\x36\x84\x84\x25\x8d\x6b\x77\xce\xa5\x4f\x9f\xa2\x2f\x6a\x04\x1b\x85\x4b\x92\xe5\xb0\x95\xbe\x15\x5a\xa8\x89\x1b\x8a\x21\x39\x7f\x5b\xe1\x93\xe3\xf1\x50\x90\x02\x1a\x9b\xef\xd2\xf7\xb5\x6f\x61\x7b\x49\x86\xb7\x42\xc0\xa0\x9f\x23\x38\xf9\xd0\xb9\xd6\x34\xa4\x26\xbc\x5a\x5d\xdc\x3a\x3c\x29\x73\xfd\x44\x6f\x4a\x56\xcb\x1b\xee\x10\xe2\x70\xb4\x0e\x73\xae\xc7\xb8\xc0\xab\x3c\x1a\x58\x97\x8c\xe1\x8c\x3b\xd7\xe2\xbc\xcc\xbd\xaf\x50\xe7\x6c\xa0\xe9\xc0\xa5\x28\xed\x6c\x14\xd1\x45\xf7\x56\x37\xa8\x26\x9f\x15\xe8\xf3\xeb\x50\x0f\x32\x51\x6d\x2f\x8c\x88\xd7\x20\xcf\x5f\x23\x52\x85\x3a\xa1\x5e\xc6\x38\xe2\xb5\x8e\x8d\x31\xfb\x01\x3f\x64\x53\xc0\x98\xd3\x04\xfe\xe8\x91\x2e\x94\xa9\xba\x30\xe4\xce\xa6\x4b\xa6\xe8\x77\x6c\x3b\x8a\xc8\xfc\x39\x9b\x89\x15\xe4\x27\xd7\x37\x17\x72\x11\x1e\x0a\xd7\x2c\x87\x79\x56\x21\x48\x75\x2b\x56\x16\x70\x31\x17\xab\x59\xc1\xa0\x44\x40\xf1\x56\x2b\x01\xf2\x11\x57\x63\xab\x17\x00\x62\x9f\xf3\x9a\xa1\x94\x88\x67\xc1\xf6\xe0\x98\x2b\x30\x13\xfa\xd6\x40\x80\xc1\x05\x66\x79\x43\xb1\x6d\xd2\x32\x62\x6c\x2c\xaf\xa5\x22\xe1\x60\xad\xbc\xb1\x23\xe2\xdd\x88\x07\xf1\x96\xb4\x3e\xc7\x2e\x2c\x4e\xae\x08\xa5\xfe\x10\x68\x73\xcf\xd3\x1d\xfe\xef\x1b\xe7\x26\x92\xc4\x64\xdf\x7b\xa3\x61\x11\x1c\x12\xf2\x5f\x9a\xd7\x38\xd3\x8b\x80\x3e\x25\xf0\xbe\xcf\x56\x4a\x89\x52\x37\xf1\x94\x1c\x7c\x6d\xd0\x07\xcd\x8f\x5f\x1f\x8c\xc8\xc7\x8f\xc1\x90\xc3\xe2\xbe\x5d\x68\xed\x19\x7c\x08\x3d\x77\xbc\xc3\x19\x38\x94\x0c\x47\xa1\xa3\x4e\x26\x4a\x29\x0a\x36\x35\x01\x16\xc3\xc1\x19\x78\x18\x03\x02\x2e\x0c\x6e\x49\xcb\x15\x2d\x8a\x2d\xc9\x31\x34\x65\xc3\x66\xa4\x66\x98\x72\x5d\xb3\x08\x83\xd1\x71\x8c\xa1\xbe\x63\x59\x56\xd5\xa0\x39\xd9\xc3\xe4\x11\x0e\x5f\xc4\x26\x5e\x69\xe3\x5e\x0a\x4d\x9f\x8d\x77\xe9\x73\x4f\x6d\x6b\xdc\x4b\xb1\x66\x03\x3c\x9d\xad\x09\x8d\xc2\xb1\x06\x1c\xdf\x33\x94\x57\xf0\x59\x64\xe5\x82\x2e\xc2\x01\xea\x23\xcd\x25\xfe\x1c\x30\x67\x13\x2b\xe5\xa0\x96\x5c\x94\x36\x92\xdf\xb1\x49\xd3\xb6\x8b\x5b\xaa\xa7\xe4\xdd\x9e\x28\x1e\x78\xee\x91\x01\xfa\x6e\x44\xcb\x71\x70\x40\xce\x97\xab\x42\x8b\x2f\xb4\xd6\xac\xca\x2d\xdb\x6a\xa1\x48\x4a\xa6\x99\x3b\xea\x92\x1c\xdd\x30\x56\x44\x43\x6c\x68\x71\x7f\xd4\x05\x4e\x75\x13\xdf\xb1\xad\xfc\xd0\xbe\x07\xe3\x35\x74\xca\x58\x48\xc4\x80\x50\xaf\x26\xcc\xcc\x41\xd8\x72\xf9\x26\x84\xd5\x1a\x8e\xe2\x03\x17\xec\x15\x8c\x6e\x10\x9e\x09\x93\x00\x5b\xd1\xa4\xf5\xdd\x8f\xf8\xb9\x2e\x33\x64\x81\x4b\x9a\xae\x59\x98\xa4\xfe\x88\x16\x2f\x97\xb4\x56\x2f\x0a\x21\xea\xe7\x7c\xcd\x73\x36\x8c\xee\x16\x80\xe9\xa7\x33\x39\x84\xee\x46\xe3\x9e\x92\x88\xcb\x0c\x61\xc6\x4a\x61\xa8\x83\x9f\xee\x9e\xcc\x2e\x06\xe4\x31\xc1\xe6\xc8\xb7\xe4\x90\xfc\x91\x0c\x9e\x0d\xc8\x11\x19\x9c\x0e\x82\x71\x5a\x4d\xb7\xe6\xb5\x4d\x32\x6c\xdd\xc8\xb4\x66\x15\xa3\x6a\x08\x53\x18\x85\xdd\x74\xfb\x03\x7f\xf2\x4f\x35\xf2\x25\x07\x5f\xfb\xed\x4d\xbc\xd9\x5f\x1f\xb4\x1c\xd2\xfb\x9c\x89\x1e\x17\xa9\x11\x6c\xd6\xc9\x33\x03\xd6\x4b\x08\xc2\xd1\x4d\x05\x12\x83\x8b\x92\xc0\x0a\x7a\xbc\x61\x7b\xc0\xed\x3b\x90\xdf\x69\xdf\xc3\xdc\x60\xeb\xfa\x9d\xb1\x48\xac\xfd\x66\xd4\x88\x25\xde\xd7\x86\xf5\x84\xf5\x22\x68\xa2\x91\x80\xa1\x4f\xde\x63\x8d\xd5\xbc\xb8\xb1\xf2\x50\xe0\x18\x94\xd7\x74\x31\xb1\x47\x9b\x7a\x66\x9a\x9c\xbe\xb8\x3e\xbf\x0c\x98\x4d\xe0\x97\xc3\xe6\x78\x69\x90\x2c\x40\x83\x88\xb8\xac\x42\x90\xc2\xa0\xa2\x76\xde\x78\x8d\x65\xbf\x2f\x1b\xda\x87\x7c\xbd\x96\xdd\xea\xfe\x02\x4f\xf6\x1d\xcf\xd5\xbd\xdf\x1f\x00\x33\x01\xb5\x07\xb2\x6b\xa2\x24\xa6\x3d\xbd\x3c\x66\x61\x60\x5d\x15\x5b\x56\xa2\xa6\x35\xd7\xef\x6b\x28\x9a\x10\xea\xf4\x68\xa1\x68\x32\x25\xe4\xa2\xd4\x65\x05\xb6\xec\x44\x5e\xcf\x6e\x69\xf6\x10\x55\xfa\x02\xf6\x32\xd4\x44\x81\x46\x8c\x2f\x97\x2c\xe7\x54\xb1\x62\x4b\x6e\x4d\xea\x6d\x08\x79\x95\x4d\x91\xa6\x8f\xe0\x10\x45\x4f\xa1\xef\xb8\xb4\x61\x4a\x5a\xe0\xae\x51\x5a\xe7\xd2\xe4\xbc\xdc\x02\xca\x05\x9c\xca\x52\x6c\x08\x9d\x89\x95\x8a\xf4\x00\xa1\x3a\x16\xf9\x5c\x8f\xab\x6d\x83\xa5\x29\x29\x45\xbd\xa4\x05\x79\x7e\xf1\xda\x02\xc0\x78\x9e\xd2\x2c\x60\x9e\x83\x74\x4c\x0b\x48\x11\x11\x48\xe5\x03\xd0\x46\x0c\x62\x39\x7b\x10\x28\x77\x7f\x2b\xfd\x6c\x53\x3d\x4b\x22\x47\x35\x2d\x60\x6e\x50\x4f\x9d\xad\xa4\x81\x66\x6c\x8d\xc5\x05\x0c\x1b\x38\x09\x0c\x19\xe6\x73\xfb\xb7\x8d\x14\x8e\xb2\x81\xee\x1c\x1a\x80\xbf\x9f\x41\x6f\x91\x02\xd9\x34\xd8\x95\xa7\x20\x01\x8d\x31\xb6\x83\x08\x41\x13\x43\x60\x0e\x6f\x7c\xb7\xa3\x3f\x39\xc1\x5b\x34\x34\xc0\x77\xc2\xbc\x3f\x48\xaf\x97\x8a\x73\x33\x06\x10\x49\x7b\xe7\x8e\xd5\x12\xe6\x40\x73\x0f\x77\x06\xd6\xef\x18\x8d\x71\x24\x04\xee\x39\x0f\x3c\xc6\xdc\x08\x77\x92\x97\xa6\x68\x64\xbc\xef\x4b\x62\xc0\xfd\xa7\x4c\x00\x01\xff\x80\x2e\xc4\x36\x56\x75\x78\xf0\x53\x79\xb0\x5c\x8c\xc9\xe0\x27\x13\x37\x63\x8a\x25\xed\xe1\xfa\x9b\x77\x9e\x88\x94\x84\xb3\x9a\x66\xb7\x4c\xb1\x1c\xc6\x80\x7b\x19\x72\x2c\xef\x9e\x1e\x1e\xfe\x3f\xcd\xb5\xc0\x8f\x8f\xdd\x8f\x4f\xfe\xdf\x20\xb2\xca\x37\x78\x95\x9d\x3b\x8e\x41\xfa\xb5\x31\xfa\x68\x5e\x3f\xf0\xcd\xef\xbf\xd6\x50\xd1\x59\x65\x76\x2e\xf0\x99\xa8\xb6\x5d\x26\x16\xe4\x72\x56\x92\x99\xd7\xe7\x47\xb0\x6f\xeb\x1a\xf6\x51\xe8\x7a\x9f\x9a\x42\x6b\x97\xd4\x12\x65\x89\x38\x4c\xe4\x36\xd9\x75\x20\x10\x19\xb4\xe1\xfc\x0f\x8f\xbe\x43\x28\x30\x77\xb6\x16\xfc\x72\x5e\x33\xc0\x17\xb1\x46\x2e\xbd\xff\xc8\x18\x00\xc0\x2d\x2a\x4d\x41\x3f\x6a\xae\x57\x44\x2f\x68\xa6\x1c\xd2\x7c\x05\x55\xe4\x96\xa3\xcb\x1e\xb4\x32\x63\x85\x28\x17\x12\xb3\xa9\x79\xf4\x55\xb0\xf7\x7c\x4d\x22\x8c\xd5\xb1\x7d\xc2\xf4\x6b\x99\xd1\x52\xdf\xfc\xec\x8e\x65\x2b\x7d\xae\x22\xf8\x0d\xab\xe1\x86\xa7\xd5\x02\x82\x56\xb5\x58\xd4\x74\xb9\xa4\x8a\x67\x04\xbd\x6b\xf0\x4e\xdd\xbb\xd1\x97\xb0\x5a\x1d\x4e\x02\xa8\x6c\x3d\x33\x99\xa6\x82\x34\x68\x2d\xbe\x5e\x33\x0a\x20\x99\xa0\x5f\xd5\x1e\x03\x05\xe9\x6d\x30\xf8\xf8\x91\x1c\x1e\xfb\x3c\x8e\x76\x28\x1d\xc2\x48\xf7\xb0\x2c\x16\xed\x6e\x5d\x48\x4f\xc3\x09\x0e\xca\x25\xdb\xf2\x6b\xf4\xad\x96\xf1\x3f\x7e\xf4\x23\xd5\x3f\xc4\x46\x47\xba\x16\x3c\x37\x52\xae\xe4\x6a\x85\x37\xbe\x89\x5c\x06\x9e\xc1\x80\xae\x48\xb1\x64\x8a\x2f\x59\xc0\xf8\x58\x62\xb3\xcd\x2d\x98\xd2\xe4\xae\x39\xdd\xdc\x5f\x08\x0e\xc4\x50\xd4\x24\x5f\xd5\xd6\xb0\xcf\x4b\xae\x38\x2d\x48\x21\x68\x3e\x36\x36\x0a\xb4\xfe\xd9\xe6\x72\x46\x0b\xab\x68\xa3\xca\xda\x0a\xf1\xe8\x68\x92\x04\x43\xa4\x19\x1d\x9f\x03\xa6\x0b\x73\xae\x0f\xf1\x55\xa4\x3f\x66\x20\x4a\xcb\xd0\xd0\xe1\x21\xaf\x34\xd1\x8d\x81\x0b\xd7\xe3\xd3\xfc\x1a\x5f\xa3\x7b\xd7\xa1\xe6\x93\xd6\x68\x45\x31\x56\x77\x7d\xe9\x1d\x92\x35\x2d\x56\x4c\x76\x5a\x0b\xb9\xfc\x9e\x6d\x8c\x3f\x5a\xb4\x29\x0f\xbb\x92\xdb\x45\x5a\x26\xf7\x3f\xb7\x77\x89\x7a\xa1\xbc\x8a\xdb\x69\x99\x53\x7d\xdb\xd9\x4c\xe7\x00\x60\x94\xf3\x5c\x33\xa0\x78\x0a\xc7\x68\x60\x45\x30\x3b\xf0\x1e\x61\x6b\x56\x6f\x31\xd5\x30\x97\x0f\xac\x34\x61\x00\x70\x2c\x3b\x01\xf7\x83\xee\xf8\x43\x38\xa1\xb1\x1b\x62\x00\x43\xd7\x80\x40\xb9\x07\xbc\xc2\xc3\x13\x9b\x2b\x55\x53\xb3\x5b\xc5\x80\x49\x09\x7c\xfd\x9a\x58\xcd\x4d\x76\xe7\x9e\xac\xc4\x15\xab\xd7\x3c\x8b\x90\xff\x10\x69\x38\x80\x2f\xde\xfd\x4c\x05\x18\xa4\x69\xfc\x9f\x87\x29\x13\x5f\x04\x41\xda\x13\x50\xb4\xcb\x7a\x78\x1f\x0c\x35\x4f\x72\x1d\xc6\x24\x17\xc2\x07\x51\x8c\x91\xb7\xd4\x5e\xc4\x57\xd2\x56\x17\x37\xa0\x94\x1b\xaf\xef\x72\x7b\x11\x2d\xe0\x7d\xf4\xc4\xd1\xa0\xa0\xfa\xd9\x36\x2b\xd8\x87\x77\x87\xef\x3b\x32\xa6\xf5\x42\xc2\xfd\xfb\x8f\xff\xc9\xfb\x04\x50\x86\x01\x69\x76\x46\xe5\x5d\x38\xcd\xed\x42\x01\x54\xf3\x5a\x0b\x5d\x60\x50\x73\xf6\xe9\x26\x6c\x33\xb8\xfd\xfd\x26\xc0\xcd\xe9\xe1\xdf\x1f\xbb\xd9\x45\x16\xf7\x80\x6f\x6e\x64\xb6\x6b\x56\x35\xe5\x93\x90\xd8\x91\xb6\x15\x3c\xe3\x97\x08\x27\xc6\xc1\xb5\xc6\x67\xb0\xc3\xe4\x6a\xe4\x46\x6c\xc8\x9c\x4a\xac\x5c\xd1\x05\x26\x38\x82\x46\x40\x2d\xd1\x50\xdb\xb6\xd6\xf2\x49\x73\x29\x2d\x18\x87\xef\x16\x85\x62\xff\x67\xdf\xd4\x37\x57\x5e\xc9\xfa\x5a\xac\x99\x85\x45\xab\x23\x10\x0c\xd7\xec\xbe\xe5\x6b\xb7\x13\x56\x8e\x5d\xd8\xb5\x7c\x49\xa8\x5e\x46\x36\x8b\xd2\xcd\x49\x82\x71\x9b\xf0\xe6\x46\x29\x02\xf7\xe1\x4f\x76\xc8\xac\x1d\x72\x65\x3a\x7d\xda\x5c\xd4\xe7\x34\xbb\xf1\xd1\xd7\x81\x11\xa7\xc4\x1e\x86\x11\x5a\xd1\x8e\xb6\x8c\x87\xe5\x89\xe6\xc9\x3e\x1d\x3f\x38\x38\x20\x57\x17\x6f\x2f\xcf\xce\xc9\x8b\x97\xaf\xce\x8f\xd0\x5d\xfc\xe0\x2f\xf2\x00\xfe\xf1\xc1\x4e\xf5\x03\x17\xd3\xbf\x48\x5d\x5a\x0b\x2e\x68\x81\x1a\x66\x23\xf2\xf4\xf0\xc9\x53\xd8\x66\x30\x11\xf2\xd5\x92\x5c\x5c\x91\x53\xf0\x43\x94\x53\x72\x5a\x14\x68\xad\xc2\x24\x49\xf5\x5a\xcb\x19\x07\x07\xe4\xad\x74\x80\xa0\x04\xc3\x59\x51\x02\xe0\x92\x2c\xf4\xf3\x59\xe2\x3a\x53\xf2\xec\xea\xf9\x04\xa1\x2d\x0b\x9e\xb1\xd2\x3a\x57\x21\xc7\xaf\x5b\x9a\x43\x8e\x15\xc3\xe3\xbf\x7a\x79\x76\xfe\xfd\xd5\x39\x99\x73\x7d\x31\x3c\x18\xac\x24\x06\x1a\x67\x4a\xcb\x92\x9a\x09\xae\x55\xce\xaa\xe1\x40\xff\x13\x45\xd7\xb7\xd7\x2f\x7e\x07\x21\xa9\xce\x71\xbe\x5a\xa9\x83\x8b\x95\x02\x38\x45\x70\xf3\xa0\x19\x48\x94\x30\x22\x97\x19\x07\xe4\xca\xe5\x72\x55\xea\xb5\x0d\x52\x8f\x36\x73\xaa\x9e\xd9\x0a\x05\xbf\x65\xe4\xe7\x92\x4a\x79\xf3\x33\x30\x6b\x3f\x67\xb5\xd0\xff\xae\x59\xc6\x38\x30\x70\xe0\xe1\x45\x35\x63\x6b\xd7\x26\x2b\xa8\x94\x04\x13\xa2\x56\x3e\x6f\x12\xaf\x09\xad\x17\x6b\xe3\x2b\x66\x0f\x37\xe4\xe9\xb1\xee\x6b\x36\xfd\x91\xc2\xcc\x89\x35\xa3\x9e\xe5\x0d\x53\x22\xc0\xc8\xc5\x4a\x11\x76\x57\x09\x69\x98\xdf\x25\x56\x23\xac\x54\xbc\x6e\xe2\x66\xba\x51\x86\xda\x38\x4c\x1d\xf3\xff\x67\xef\xef\xdb\xd3\xc8\x91\xfd\x71\xf8\xff\xbc\x0a\x65\xce\xf9\x2d\x30\xc1\x18\xf0\x43\x9c\x78\x3c\x59\x8c\xb1\x83\x9f\x03\xd8\x49\x9c\x64\x73\x9a\x6e\x01\x1d\x37\xdd\xa4\xbb\x31\xc6\x3b\x39\xaf\xfd\xbe\x54\x25\xa9\xa5\x6e\x35\x60\x67\xe6\xec\x7e\xcf\x7d\x7c\x6d\x76\x6c\x90\x4a\x52\xa9\x24\x95\x4a\x55\x9f\x12\xec\xc1\x50\x24\xc5\xc4\x47\x89\xee\x54\x5f\xc2\xe4\x79\xc9\x95\xbe\x44\xc6\x34\x1e\x05\x98\xdf\x4e\x1f\xbd\x44\xcf\x8b\x03\xc9\x2b\x19\x5e\x10\x49\x42\x24\xc0\x39\x13\x48\xb2\xe8\x97\x0b\xa9\xbc\x68\x14\xbb\xbe\x15\x2b\x79\x66\xda\x51\xe0\x59\xb1\x96\xb6\x4f\xde\x07\x24\x67\x26\x61\xc0\x6e\x49\x78\xa3\x4d\x02\xa3\xfa\xd4\xa7\x03\x37\x8e\x5e\x33\x42\x6b\xe4\x52\x94\xb2\xc8\x98\x32\xf5\xd5\x8d\x30\xe1\xad\xc5\x95\x72\x9e\xa3\x43\xe7\x40\x6a\xfc\x08\x1d\x24\xbd\x29\x31\x8b\x86\x7f\x17\x80\x23\x76\x34\xed\xcb\x5e\x16\x23\x8a\xfc\x84\x84\x8a\xc8\xc6\x49\x30\x49\xf8\x07\x2e\xab\x64\x0d\x26\xc5\xc5\x51\x06\x3e\xa4\xd0\x88\x00\x1d\xd4\x8a\xf8\x46\x0c\x59\x35\xb8\x21\x91\xf1\x58\x4e\x2f\xf4\x0c\xc3\x84\x65\xcf\x60\x26\xd8\xd5\x8a\x0b\x0b\x1e\x21\x2a\xff\x78\xb3\x6d\x1f\x5a\x3e\x9c\xc6\x4c\x6b\x4f\x72\x22\x5a\x73\x12\x4e\xc1\xdb\x8c\x6d\xac\xb3\x20\xbc\xe5\xe3\x0c\xf9\x2d\x6e\x86\x56\x61\xdf\x9b\x83\x11\xb7\xef\x51\x6c\x99\x4d\xa7\xe5\x41\x4e\x76\x8b\x64\x44\x50\xe6\xdb\xb7\x7c\xd2\xbe\x6c\x26\x33\x90\x3e\x9b\x74\x11\x36\x06\xe9\xb6\x2f\xd4\x2d\x59\x48\x81\xb2\x35\xcb\xad\x90\xec\x49\x21\x11\x57\x1b\x36\xe8\xf6\x85\x70\xde\x04\x49\x15\xb3\x4e\xda\x17\x15\x98\x22\x79\x53\x11\xf1\x91\xed\x8b\x04\xae\xe2\xff\x70\xc6\xfe\x0f\x67\xec\x7f\x18\x67\x8c\xc9\xe5\x52\xa8\x31\x01\x72\x91\x81\x1b\xd3\x97\x84\x16\xbe\x66\xac\xa4\x89\x38\xc4\xe9\x58\x3e\x19\x84\xd6\x58\x82\x89\x88\xb0\x41\xe5\x68\xf2\x9d\x60\x56\x26\x93\x80\x1d\xc4\x4e\x12\xe6\xc9\x93\xcd\x33\x4a\x3c\xbe\x07\x32\x8e\x31\x55\x15\xfd\x51\x66\xb4\xe0\x79\x4a\x5e\x6f\xca\xf3\x58\xad\x0b\x94\x8a\x75\xee\x79\xcd\x36\x47\x7e\xd9\xad\x88\xf5\x03\xd6\x63\x2e\xe5\x60\xc3\xe1\x1b\x92\xc8\x4a\xbf\x8e\x16\x53\x3c\x16\xd8\x00\x16\xc5\x77\xf5\x46\x54\xc6\x78\x05\x96\xd4\x54\x64\x3d\x59\xe9\x02\xb6\x0e\x14\x31\xde\x23\x72\x31\xc1\x57\x2a\xce\x27\xd1\x51\x42\xce\x83\x98\xb8\xe3\x09\x62\x88\xe4\xbc\x65\x68\xd3\x8b\xca\xeb\x21\x90\xd1\x23\xc6\xca\x6a\x8b\x1a\xd0\x8c\x4f\x67\xfc\xe8\x87\x7a\x45\x7d\xc6\xcb\x24\x53\x59\x57\xa5\xe1\x68\xc1\xb3\x2a\x14\xc0\x97\x6c\x4a\x98\x72\x26\x23\x1f\xd2\xea\x12\xe7\x06\x2f\x06\x51\xc2\x92\x9d\x8c\x95\x3e\xf0\x61\x90\x47\x96\x9d\x12\x4c\x13\xb1\x62\xb3\x25\x57\x17\x79\x1a\x8b\x2f\x2e\x79\x7d\x85\x35\x4a\x17\xcc\x02\x4f\x63\x5e\x4b\x2b\xaa\xf3\x00\xb8\xce\x43\xfa\xb2\xc7\x8d\x3c\xc5\x40\x65\x62\xe7\xb1\x1b\x0b\x4d\x8a\xbb\x93\xf6\xa4\x09\xf3\x57\x71\xb8\x58\x51\x14\xd8\x6e\xf2\x1a\x8c\x0f\xa8\x19\x9d\xcc\x85\xd4\xf6\xa0\xb7\xc6\x01\x99\xb0\x0d\xc5\x0e\xfc\x38\x0c\xbc\xcc\x06\xca\x0e\xae\xc1\x00\x8f\xd8\x44\xd9\xc0\xe4\xa8\xa0\x2d\xf1\x03\x8c\xeb\x18\xc2\xde\x2e\x68\x8b\xa3\x4e\x90\x4f\x1e\x9e\x25\x2d\xa6\x09\x4c\x3c\x9a\x97\xf9\x45\x9b\x16\xa6\xd9\x98\xcd\xeb\x6e\xc0\x8e\x4b\x13\x2b\x53\xb2\x89\x4f\x51\x81\x7c\xa6\x6a\x5a\x13\xa6\x8f\x38\x5f\xd3\xef\x57\xf2\x0b\x34\xe8\x05\x15\xdd\x82\xcf\x1f\x5d\xe4\x47\x9c\xac\x62\x58\x47\xcb\x1e\xff\x5b\x10\xd1\xcf\xf7\x94\xdc\xb8\xc1\x6e\x56\x98\x60\x64\xec\x9b\x64\xf5\xb1\xbf\xb4\x27\x1c\xe1\x34\x90\x08\x45\x21\x4a\xd0\x28\xa4\xf2\xb1\x02\x83\xc1\xdb\xc4\x74\xf9\x4c\x75\x28\xad\xac\xe8\xb2\x8d\xe6\x6c\x98\x6c\x78\xba\x63\x9b\x6c\x24\x6c\xb6\xfc\x79\x52\x03\x51\xe7\x62\x25\x2e\x46\x8b\xfc\x01\x14\x55\x5f\xcb\xf9\x1e\x0c\xc8\x84\xc7\x07\x80\xc3\xd2\xf2\x18\x65\xe8\x1a\xd8\x1d\x72\x32\xf1\xa7\xb6\x04\xa1\x91\xe7\x05\x20\xaf\xaf\x93\x0b\xb5\xab\x95\x67\x89\x9f\xa4\x17\x0c\x8b\x85\x2b\x1f\xd5\x78\x55\xbd\x7f\x4d\x78\xc0\x1b\x23\x93\xcb\x45\x2b\x59\x91\x0b\x23\xb2\x9f\xca\xb9\xe4\xd2\xa4\x6a\x8b\x49\x53\xc0\x2a\x61\x5e\xc3\xdb\xb1\x93\x4d\xd1\x51\x60\xc3\x5a\x83\xaf\x5d\x7f\x58\xc0\xd7\x34\xb1\x11\xaf\x16\x34\x7e\x4b\xe7\x24\xa2\xdf\xa7\xa2\xc6\xe2\x39\x59\x29\x2e\x7c\x85\x69\x09\xfa\x60\x80\x08\x1d\x2d\xe4\x1d\xa7\xe6\xb8\x7b\x71\x5e\x41\x7a\xee\x60\x9e\x0a\xef\x5e\xdc\x39\xf1\xb9\xe1\x61\x10\x9e\x4d\xca\x44\x3c\x83\x89\x6d\x2c\xe8\x7f\x53\x30\xf3\x39\x00\x45\xd0\xff\x26\x4c\x3a\x41\xff\x5b\x6a\x1f\x02\x42\xbb\xf2\x4b\x65\xff\x41\xda\xf2\x2b\xb2\x07\x05\xb4\x35\xab\x45\x53\xa6\xba\x9b\xea\x62\xae\x68\x4a\xc1\x04\xc5\xc7\x15\x1e\x28\x3f\x2d\x92\xa8\x49\x99\xa5\xe6\x0f\xa6\xf4\x0d\x99\xd6\xad\x28\x84\x4e\x3c\xaa\xac\x54\x14\x47\xb4\x8a\x74\xe9\x1c\x59\x32\x7f\x59\x39\x53\x38\xf6\x1e\x2c\x2e\x16\xc0\x1d\xec\xc8\x15\xd4\x9f\xc7\x34\x05\xbc\x97\xa3\xf5\x98\x96\x8b\x4e\x2b\x21\x33\x09\xdd\x1c\xb7\x04\x6d\x78\x60\x04\xba\xea\x1d\xee\x2c\x05\x54\xd0\xf6\x7e\xfe\x96\x27\x1e\xb5\xc2\x60\x46\x0a\x0d\x4c\xad\x2d\x1b\x17\x91\x50\x5c\x61\x49\x0e\x20\xc5\x6f\x43\x21\x2a\x92\xb5\x17\x4d\xdb\xe0\xa3\x39\xc7\xed\x31\xdc\x28\x17\x7a\x99\x54\xc1\x7f\x11\x2b\x3d\xff\xdf\x91\x99\xe0\x36\x13\x7e\xf6\x0b\xf9\x5c\xad\x6d\x93\x63\xeb\xce\xea\xda\xa1\x3b\x89\x9f\x2e\x8e\x8f\xe6\x1a\x8e\x6e\x6f\x25\x21\xad\x6d\xe7\x31\x16\xc6\x2f\x65\xb9\xa8\x9b\x6f\xcd\x68\x1c\x97\xd0\xf0\xea\x83\xd7\x24\x0a\x34\x76\x0e\x21\xf5\xd7\xb0\xc4\xf3\x57\x61\x0a\x88\xdb\x2a\x6c\x41\xb9\x5c\xc8\x98\xa5\x86\xfe\xfb\xf8\xab\x95\xc0\x16\xfd\xef\x32\xf6\x03\xfe\x73\xa4\x1a\xfa\x9b\x81\x1f\xc5\xe1\x14\xde\xf4\xd9\x6d\x54\x43\x6d\xe2\xab\x4f\x55\x94\x22\xf9\x21\x19\x43\x5a\x07\x00\x45\x45\xdb\x0f\x46\x31\x09\xd6\x91\x68\x6a\x8f\x88\x05\xe1\xfd\x1c\x7f\x7a\x1d\xb2\xc2\x48\xc4\x6a\x02\xdd\x29\x93\x7e\xe0\x81\x53\xa6\xeb\xc7\x65\xe2\xc6\x96\xe7\xda\x65\x7c\xd1\x2f\x93\xa9\xef\xd0\x90\x89\x20\x3a\x9f\xb0\x91\xdd\x52\x6e\xee\x94\xdd\xd2\xfa\x2c\xee\x80\x51\xfa\x82\x66\x8b\xa1\x12\x8b\xfb\xb5\x81\xeb\x16\x0d\x13\x1b\x02\xb7\xf4\xaa\xfa\x7a\x32\x20\x08\x93\x64\xcb\x85\x46\x31\x3c\x0b\xdc\xbb\x11\x18\x7f\x75\x62\x03\xf4\xd3\x62\x57\x3d\x2b\x76\xfb\xae\xe7\xc6\xf3\x6c\x2e\x25\x45\xc4\xc4\xda\xb2\x93\xa9\x50\xd7\xda\xdb\xde\xd9\xe9\x01\x77\xce\xf9\x91\xb8\xe9\xf4\xe0\xb9\x12\x68\xc9\xcf\x38\x3e\x0d\xe8\x2a\x60\xea\x90\x96\x6b\x02\x17\x46\xad\xa3\xa9\x3b\xa8\x0a\xd6\xa5\x2e\x34\x41\x5c\x59\x6a\xd2\xd1\x9b\xec\xc9\xb6\x77\xa5\x01\x38\xa2\x32\x23\xa4\x8e\x01\xc1\x85\x9e\x5f\xbb\x11\xff\xdc\x8a\x08\x75\xe3\x11\x0d\x5f\x73\x00\xc6\x4e\xf3\xeb\x41\xeb\xb0\x71\x75\xda\x23\xa4\x08\x5e\xcb\x81\x0f\x82\xc5\x9d\x7a\x4a\x49\xb9\xce\xd1\x3e\x3e\xfd\x15\xa5\x29\x8c\x2d\x8a\x42\x38\xec\x17\x49\x58\x26\xc3\x32\xe9\x97\x0a\x6c\x3e\xc6\xbc\x16\xda\x2f\xf9\x4b\x7e\x31\x83\xd6\xe4\x02\x3a\x18\x1c\x41\xd8\xbb\x89\xe5\xd1\x18\x5f\x8f\xa6\x11\xf8\xb6\xc0\xf8\x13\x81\xd6\xc1\x6d\x95\xce\x27\x8f\x8f\x52\xda\x17\x94\x55\x79\xa7\x02\x68\x58\xf6\x08\xaf\xba\xe0\xc4\x24\x0d\x84\xd0\xb7\x98\x31\x18\x83\x0d\xd3\xfd\x79\x26\xd1\x25\x32\xad\xab\xf3\x61\x5b\x7e\xe0\x83\x5b\x41\xe2\x23\x95\x1a\x9f\xe8\x2d\xef\xe9\xd7\xe6\xc5\xe9\x45\xc7\x30\xb6\x9c\x72\xcf\x12\x07\x79\x36\x77\x87\x2a\x5d\x98\xa6\xfa\xd6\x56\x99\x88\xff\x2b\x25\x10\xe7\xbc\xc2\xbe\xda\x00\x54\xa8\x96\x09\xfb\x5f\x49\xd1\x07\xd8\xee\xa1\xba\xdb\xe3\x10\x2c\x38\x6f\x53\x9f\xe2\xde\x92\xf9\xb8\x2f\x92\x8c\x6b\x9f\xca\x9d\x27\xf3\x8d\xb6\x09\x65\x1b\xe1\x6f\x0b\x86\xcf\x13\xc7\x07\xed\x9b\x99\xcd\x61\x74\xf5\x8f\xad\xc8\x76\x5d\xfe\x8d\x08\xa3\xe1\x9e\x2e\x1e\x3d\x40\xdf\x61\x8e\x5e\x2a\xc3\xf9\xbc\x20\xbc\xe4\x42\x9b\x20\x80\x0b\xbf\x2b\x1a\x37\x95\x02\x29\xa7\xaa\xf6\x00\x9b\x07\xb4\x2b\x77\xe8\x0b\x2b\x0b\xb0\x57\xee\x56\x46\xc3\xda\x00\xce\x0e\x89\x55\x02\x86\x7a\x0b\x2b\x32\x56\x60\xe2\x58\x2b\x46\x04\x6d\xc7\x1d\xc0\x2d\x39\x96\x0f\x19\x32\xc7\x2b\x8f\x58\x98\x21\x1e\x3e\xaf\x9a\xbf\x4b\x29\x5a\x02\x42\x5b\xef\xa3\x24\x70\xb8\x8d\x64\x5c\xec\x83\x32\xec\x8c\x7d\x3c\xc4\xf1\x18\x24\x45\x77\x40\xac\x3b\xcb\xf5\x58\xe5\x12\x0c\x03\x3a\x0d\x0e\xe0\xea\x40\x23\x1a\x8b\x98\x79\xb6\x47\x4c\xa8\xef\x50\x5f\xbc\x42\x13\xa5\x71\x5e\xf0\x91\x7d\x6e\x44\xfb\xa1\x48\xb0\xa8\xf5\xbd\x41\x70\x7b\xa2\x1e\x1e\x5e\x96\x1f\x4b\xe7\xc7\x5f\x66\x23\x2b\x16\xe0\x59\xd2\xe5\x11\xf7\x06\xe8\x27\x7f\x3c\xc6\xed\xf3\x97\x95\xba\xa4\x2d\x5f\xe9\x2f\xcb\x91\xba\xfd\xe9\xb8\x58\x50\x55\x87\x46\xd2\x29\xae\xfc\x89\x93\x16\xf7\xe3\x39\xce\xba\xd4\x75\x78\xcf\x52\x1b\xfa\x4a\x1d\x53\x8f\x85\x3d\x52\xe0\x55\xd9\x26\xf0\xc8\xce\xe8\xe7\x90\x95\xf4\xca\x42\x48\x2e\xf0\xb0\x56\xcf\x0f\xf9\xcc\x12\xae\xdc\x51\x76\x2e\xe1\x76\x55\x48\x98\xd5\xd3\x5c\x6c\x39\xb8\x0d\x44\x81\x09\x63\xc1\x0c\x17\x01\x3b\xa3\xfd\xc0\xa1\xba\xa7\x8d\xc9\xb8\xfd\x78\x05\x61\xa5\x21\x44\x34\x16\xd4\x9e\xa4\x07\x98\x0c\xff\x0e\xa5\x13\x8c\x23\x10\x1a\x70\x62\xa5\xd5\x20\xa4\x4d\x7d\xfb\x41\x1a\x0b\x09\x2c\x1d\x91\xed\x05\xbe\x01\x6f\x52\x62\x8e\xaa\xb6\x74\x95\x44\x11\x40\xdd\x60\x7b\x65\x7b\x43\x91\x55\xb8\xa5\x73\xb1\xb6\x84\xa1\x2a\xbc\xfb\x74\x4b\xe7\x5f\xf8\x19\x08\xbf\x4b\x73\x53\x78\x97\xde\x94\x33\x1b\x75\xc5\x0e\x7c\xdb\xe2\xc1\x0e\x9c\x0f\xe1\x5d\xda\xea\xcd\xbd\xdb\x12\x4c\x51\xd8\x7e\xb2\x5a\x24\xec\x57\x4e\x40\x23\x08\x53\xe0\x3e\x6e\xe8\xda\x86\xad\x11\xb8\x88\x18\x4e\x03\xfe\x18\x05\x2e\xdc\xbf\x92\x76\x8c\x8f\x7e\x02\x73\x57\xa1\xc4\x8e\x1f\xb0\x92\x96\xf1\x2d\x9b\x35\xc4\x76\x25\xa6\x7f\xae\x34\x1f\xd0\x78\x8e\xed\xfd\x4f\xd7\xad\xfe\x6c\x9d\xe6\xff\xff\xb4\x0e\xb3\x20\xa6\x15\x64\xf5\x14\x02\xf7\xcc\xd5\x45\xa1\xa9\xaf\x10\x93\x58\xa4\x16\x51\x72\x97\xcd\x5f\x4a\xc8\xb4\xb9\x6f\x03\xf9\x28\xa5\xee\xf4\xd8\x25\xce\x1d\xe4\xdc\xc9\x88\x43\x23\x3b\x74\xd9\xe5\xd1\xe7\x50\xcb\xaa\x52\x20\xb7\x2b\xe9\x36\x2b\x42\x0c\x1f\x4d\x6e\x29\x87\xdc\x88\xfb\x47\xe4\x66\x42\x29\xe6\x2c\x9c\xec\x6a\x50\x31\x04\x72\xd7\xd0\xb2\x6a\xcf\x13\xf9\x37\x7c\x8e\x4b\xc0\xf0\x05\x5f\x05\x26\x52\xb0\x10\x0c\x5f\x24\x6b\xc1\xf0\xa5\xbe\x1c\x4c\x0d\xf2\x15\x61\xfe\x4a\xa2\x75\x65\xbe\xe4\xeb\x22\xcb\xaa\x64\x65\x64\xbf\x4b\x54\x72\x0e\x05\x6a\x3e\x07\x75\x4b\x41\xd1\x42\xac\x6e\x70\x67\x92\x00\xdf\x25\x1e\x9c\xcb\x73\x99\x83\x8f\x5a\x6c\x8f\x84\xc7\xe2\x6a\x27\x00\x7f\xa2\x86\x67\x2c\x5b\xb4\x3e\xf1\xe0\xea\x97\x20\x89\x8b\x07\x70\x0c\xc7\x14\xb2\x59\xe6\x91\x66\x96\x0f\x4e\x42\xd8\xc7\x54\x59\x2c\x59\x21\xe4\x00\x1d\xc5\x01\x77\x33\x18\x90\x71\xe0\x07\x00\x94\x4a\x66\xae\x43\x93\xc8\x1d\x46\x0f\xaf\x08\x81\x4f\x6c\x1a\xc2\x25\x14\x71\xb0\x23\x52\xa4\x95\x61\x45\x80\xeb\x5c\x74\x4b\x1a\xe0\xee\x64\x1a\x13\x6a\xd9\x23\x03\x41\x44\x42\x07\x0e\x0e\x48\xb3\xdb\xe5\x9e\x92\x85\xca\xcc\x5e\x63\x03\x2c\x70\x0d\x6b\x64\x45\x1c\xe1\x87\x87\xa6\x29\x2f\x28\x2d\x46\xfa\x2e\xfe\xca\x26\x10\x1f\x49\x5d\xf4\xbd\x87\xd3\x4f\x9a\x08\x84\x6d\x0e\x5a\x13\xf3\x03\xe9\xa7\x61\x4e\x44\xaf\xca\xf8\x9d\xec\x0b\x65\xbd\x61\x14\x79\x40\x35\xfc\xfe\xf5\xb7\xa1\x37\x9f\x8c\xb8\x35\xe2\xf7\x42\x9e\x71\x15\xdc\x86\x94\x74\x36\xd2\x0d\x06\x26\xc1\xe6\x9f\x0a\x17\x12\xa6\xc4\x48\xd1\xaa\x68\xbb\x14\x9b\x45\x26\xb7\x3f\x48\x43\x9d\xd2\x20\x4c\x64\x41\xcc\xa8\x26\x6e\x42\xd6\x84\x09\x49\x97\xb5\xe5\x6a\x17\xc8\x5d\x53\x8a\xbb\xb2\x7f\xa5\x86\x96\x7a\x36\x90\x5b\x9e\xc0\xe1\xe1\x03\xd1\x95\x4e\x4e\x9f\x35\xcf\x06\x97\xa1\x99\xe4\xcb\x61\x83\x5d\x96\x7f\x88\x15\x2a\xc8\x8c\x39\x11\x4f\xa2\xce\x3e\xc5\xb0\x13\xf1\x8d\x98\xd6\x3d\xf2\xe9\x8b\x9e\xfb\x4c\xd1\x30\x9e\x9b\x54\x07\x9e\x65\x29\x9b\xfc\x2f\xa9\xa8\x13\x54\x54\x91\xa5\x04\x73\xd2\x00\x26\x1f\xeb\xa4\x95\x2b\xab\x40\x6f\x60\x1b\xba\x4a\x91\xad\xd6\xf7\x32\xc3\x3d\xfb\xb6\x90\x1a\x2f\xdb\xe9\x79\x0d\xc6\x26\xa1\xfc\x48\xb4\xcb\x64\x3e\x61\xeb\x4f\x13\x97\x69\xfd\xf1\xeb\x14\xf5\xbe\x1a\x6b\xc5\x99\x0e\x3e\x31\xc5\x02\x7c\x85\x0b\x5c\x04\x08\xb3\xf6\xe1\xe3\x94\xb9\x44\x86\xf9\x31\xc1\x38\x48\x7c\xdd\x04\xea\x9e\x6c\x4e\x1e\x35\x32\x78\x4a\xaf\xf0\x62\x8f\x14\x12\x5b\x74\x41\x69\x56\x55\xd8\x92\x66\x55\x70\x1f\xf5\xa0\x5a\x44\x9e\x11\x59\xe3\xe5\xd4\x16\xd2\x8a\x5f\xa6\x15\x8d\x96\xcc\x39\x84\x90\x2a\xe9\x71\xeb\x1f\x64\xe3\xd2\xf0\xf4\x33\x33\x5e\x6c\xab\x2a\xd7\xa5\x16\x99\x00\xbd\xc0\xe7\xaa\x1a\xa9\x20\x61\xe8\xe9\xf5\xf9\x99\xf9\x5c\x47\xf9\xd6\x1b\x85\xdd\x93\xb7\x98\xfd\xe6\xab\xcc\x04\x20\xa8\xa9\x9d\x63\x9f\x99\x24\x42\xa6\x1a\x54\xb6\x0b\xa5\x96\x96\x42\x2c\x55\x2e\x09\xe0\xe5\x7d\xc1\x38\x12\xa5\x3a\x7c\x81\x89\x3d\x64\x87\xbf\x05\xae\x5f\x2c\x10\x9e\xf4\x8b\x6f\x67\xac\x74\x46\x27\x15\x20\x20\xc2\xed\xde\x11\xc6\x02\xfe\x8a\x55\xce\xee\xdd\x25\x38\xe0\xc0\xb2\x61\x8d\x31\x7c\x09\x96\x16\x7c\xe8\x46\x24\x65\xdb\x37\xfb\xc8\xf9\x0e\x44\x70\x88\xac\x57\x8c\xb6\x78\xb3\x88\xa8\xaa\xca\xda\x60\xad\xe8\xc3\x3b\x0b\x0d\xd9\xc1\x28\x62\xe1\xf1\x48\x16\xef\x89\x56\x38\xa4\xb1\xb4\x66\x88\xc6\x0e\xf9\x69\x35\x99\x86\x93\x80\xed\xa3\xe2\x3a\x8f\x0a\x4b\x39\x49\xce\x87\x96\xa2\xc8\x75\x68\x48\x1d\x55\x3f\xca\x71\x93\x48\x0e\xb9\xa0\xff\x0d\x8c\x1f\x89\x17\x7a\x4c\xd1\x33\x7a\x89\xe2\x2e\x59\x9e\xa8\x68\x2a\x67\x25\x5b\x13\x37\x66\xa6\x27\x98\x39\xbb\xf4\x74\x84\x53\x96\x46\xe6\xe3\x51\x78\xc1\xc0\x5a\x99\x4f\x68\x30\x40\xb7\x96\x3d\x52\xc0\xe1\x02\xd4\x5a\xd0\xff\x06\x69\x55\x7a\x1c\x92\x67\x23\x7b\x5a\x2a\x47\x69\x72\x1e\xf2\x8d\x97\x55\xe7\x67\x9b\x12\x98\xac\x20\x42\x83\xee\xc5\x63\xc4\xa8\x9a\x23\x07\x14\x2f\xbe\xf2\x51\x79\x85\xc7\x47\x7c\x99\xe1\x91\x19\x76\x30\x1e\x83\x33\x8c\xcb\xdf\xa2\x12\x4d\xa0\xa2\xdc\x5d\x9e\xab\xdb\x8e\x18\x94\xd8\x84\x16\xe9\xe0\xe2\x9e\x92\xa3\x95\x3f\x37\xef\x31\xa2\x05\xb1\x33\x98\xda\x50\x4d\x05\x7b\xda\x81\xbd\xe8\xfa\x94\x94\x4d\x9f\xc5\x5a\xad\xc5\xe7\x2f\x23\xf2\xfc\x79\xe6\x00\x36\xb4\x8b\xc6\x03\x9c\xc4\xe4\xe4\xcb\x16\x14\xc6\x07\x9d\x2e\x9e\xbd\x3a\xc3\xd2\x77\x2e\xa8\xc2\xc8\xe7\x5d\xc3\x4c\xf7\x30\x59\x49\x3f\xf5\x74\x0f\xb2\x05\x86\x47\x11\x0a\xa0\x81\xec\x88\xe9\x28\x2b\xef\x59\xaa\x19\xd2\xf0\xba\xa4\xea\x54\x0b\xde\x94\x52\xfa\xd1\x62\x93\xc1\xd5\xc4\x11\x70\xf5\xa2\x21\xfd\x8d\x4d\x7d\xbb\x43\x8c\x6f\x76\xd9\xe1\xf7\x35\xd8\x61\xa9\x84\xdb\xe7\x98\xe8\xc2\x50\x62\xd2\xff\x85\x4b\x86\x32\xb0\x9e\xee\xa9\x21\x3f\x47\xf1\x64\x57\x81\x69\xa4\xee\x50\xe2\x0e\x0c\x9b\x67\xd2\x51\x83\xef\x58\xd2\x9c\xc2\x20\xad\xb9\xf4\xbb\xfd\xb2\xe6\x92\xee\xf1\x01\x2e\xb7\x3c\x4b\xce\x67\x6d\x1d\x12\x84\x65\x48\x63\x7c\x2d\x81\x5c\x4e\x45\x57\xc5\xbf\x75\xc9\x6f\x64\x27\x8d\x7d\x9c\x58\xab\x5c\x25\xbc\xcd\x0b\x66\xb0\xbd\x7b\x03\xf1\x8c\xd3\x38\xef\xb6\x49\x6d\xbb\x4c\x2c\xc7\x21\x3b\x15\x0d\xcd\x94\xb8\xe4\x05\xd9\x49\xc3\x3e\xb6\x07\x89\x01\x54\x12\xae\x6d\xeb\xb6\xb1\xb2\x78\x4c\x03\x8b\x49\x48\xbf\x4f\xd9\x29\xcf\x83\x15\x05\x25\x7e\x18\xe0\x83\x1b\x1d\x59\x77\x6e\x10\xb2\x7e\x0d\xfd\x60\x4c\xd7\x14\xc7\x24\xa5\x47\x9a\x7e\x9b\x67\x36\x4d\x7f\x2e\xae\x31\x79\xa6\xd3\xf4\xe7\xa2\xbc\x69\x8d\x99\xad\xa3\x4a\xe9\xfd\x15\xde\x87\x93\x4b\x02\xca\x8e\x98\xbd\xbc\x01\x99\x3a\x48\x72\x87\x63\x1a\xbe\x9e\xc2\xc0\xf5\x47\x34\x74\x85\x4d\x93\x1f\x50\x85\x48\xb8\x27\xf8\xf3\x71\x10\xf2\x04\x08\xb9\x3c\xc8\x0c\x77\x57\x2d\x9f\xe5\x42\x86\x50\x56\x37\x36\x3c\x0e\xea\x07\x45\x22\xf4\x19\x4e\x3d\x5f\x6c\xc1\x5b\x58\xbe\x73\xb4\x9f\xac\x1f\xc3\x1c\xa4\x56\x5f\xba\x84\x09\xb2\x5a\xb7\xb8\x2d\x98\x5f\xf3\xd4\x3e\x8e\xeb\x22\xe1\x4e\x97\xe2\x06\xb4\x9e\xde\xb5\x22\x32\xf5\x3d\x1a\x45\xc4\xf2\x42\x6a\x39\x73\xa2\xf9\x8e\x84\xc3\x7e\x51\xbe\xfc\x0d\x82\x70\x5c\x79\xb6\x02\x93\x15\xa6\x65\xdf\x1a\x8a\xd9\xba\x06\x13\x6b\x89\xbc\xc9\x83\xa1\xc8\x32\xe0\x75\xd6\x26\xfe\x29\xdd\xc8\x97\x52\x56\xa8\x84\x6d\x36\x6d\x05\x2d\x29\xb9\xa7\x80\x68\x2f\x38\xb3\x6e\xe9\x21\xbf\xd0\x17\x33\xf6\x8d\x3d\xa3\x39\x22\x7f\x08\x89\x3a\x92\x3b\x98\x84\x7a\x69\x37\x87\x93\x8a\xd1\x7f\xec\xde\x17\xd3\x3d\x2d\xa7\x3c\x44\xca\xa4\x5a\xd9\xd8\xd8\xd8\xd0\x19\x91\xd9\x29\x16\x4d\xa4\xf6\x18\x54\xcc\xd6\x7d\xd2\x44\x2a\xfb\x81\x69\x22\xd3\x8d\x98\x80\x45\x62\x00\xec\xe2\x36\x5e\xf1\xce\x1d\x2b\x2f\x1a\xa9\xcb\x63\x24\x6e\x8f\x11\x5e\x1f\x23\x6e\xe1\x4d\xcc\x7f\xa5\x24\xbc\x32\xb9\xea\xfc\x0f\x5f\xda\x6a\xa4\xe1\x1b\x2f\x6d\x0b\xea\xd4\x49\xc3\x47\x55\xea\xd1\xb7\xbd\xc4\x11\x2e\x6f\xec\x39\x0a\x4b\x52\xf1\x0c\x2c\xa5\xfa\xc5\xad\x56\x86\x7e\x99\xee\x6f\x35\xf5\x02\xa7\xdd\xd5\x16\xb7\xd3\x96\x97\x38\xa0\x2c\xcf\x4d\x46\x32\xb9\x00\x3e\x87\xcb\x40\x5d\x7e\xa0\x35\xc0\x4d\x30\xc6\x8a\xd9\x9b\xa3\xb0\xe0\xc9\xdb\x62\x0d\xaf\x8b\x35\xdd\x16\x0a\x7f\xd4\x09\x6f\x37\xb9\x4a\x8a\xbb\x1d\x56\x15\xc6\x4e\x7e\x3d\xaa\x9b\xee\x52\xbc\x64\xc6\x8a\x29\xeb\x2c\xbc\x53\xf1\xda\xaa\xc5\x52\x56\xcc\xbb\x45\x29\x75\xb8\x21\x52\xab\x62\xb8\x20\xf1\x1a\x69\x8b\x9a\xac\x96\x32\xc3\xed\xe6\xaf\x58\x65\xb1\x8a\x30\x76\xfd\x61\x48\x3e\x3b\x44\xe6\xf7\xc7\x7f\xf5\x82\x5c\xb8\xae\x78\x05\xe5\x41\x69\x95\xb5\xd4\x36\x3d\x73\x4a\x3b\x88\x10\x4c\xb3\x29\xc4\x68\x0b\x59\xcc\xff\x61\xf2\x8c\x2d\xdf\x83\xd0\x23\x08\x2c\x9c\x11\x51\x4c\x7e\x26\x7f\x1b\xfe\x6e\xf0\x03\x1f\xd2\xd8\x3d\x09\xde\x55\x28\x7e\xac\xb6\x20\x49\x2b\x14\xc5\x7d\x89\x5d\x1a\x74\x8e\xca\x08\x9e\x9e\xa1\x73\xe8\x23\x67\xea\x5e\x0e\x77\x65\xce\x5d\x95\xa9\xbe\xb4\xef\x02\xd0\x19\x08\x83\x34\xa2\x48\x9f\x16\x3d\x35\xae\x48\x7c\x0b\x85\xf5\x47\x96\x14\x68\x97\x08\x9a\x4e\x15\xe4\x66\xd2\x74\xa2\xca\xdc\x79\xc1\x64\xbc\xb9\x33\x42\x78\xc8\x81\x15\xc6\xe8\xb5\x8b\xef\x95\x8e\xa8\x87\x2c\xb3\x10\x7b\x63\x32\x45\x94\xd9\xcc\xe3\xdf\xd3\x27\x35\xe9\xde\xc2\x59\xe5\xb4\xe5\xa4\x62\x87\x65\xd7\x31\x91\x3c\x64\x4d\x36\xf4\x2e\x5b\x1d\x47\xd5\x93\x42\x15\x07\xc4\xc6\xc8\x5d\x73\x7d\xa3\x50\xd1\xfb\x18\xcc\x78\x8e\x3a\x88\xa7\x08\x56\x17\xab\xa7\x24\x8b\x67\x4e\x2e\x13\x25\xd7\xd6\xea\x72\x06\x24\x33\x52\x96\xa2\xb9\xb2\xcc\x71\x72\xd9\xca\xab\x4b\x20\x20\xdd\xa0\x29\x67\x91\x28\xa2\xd1\x5d\x4a\x23\x2b\x4c\x21\x44\x83\xfd\xf1\xbf\x4d\x0c\x29\xb7\x0c\xf1\x08\xe4\x45\x55\x57\x92\x40\x24\xf2\x33\x42\x98\x0a\x54\xd6\xe4\x90\x0a\x5b\xe1\x23\xa5\xd0\xf5\x87\xf9\x82\x48\xf9\x35\xe5\x11\x62\xc8\xe8\xa5\x6b\x2f\x3c\xa2\x20\xf3\xa8\x72\x92\xfb\x18\xc2\x12\xbb\xc3\x69\x30\x8d\x48\x38\xf5\xe1\xdc\x47\x2f\x84\x35\x60\xba\xe6\x8b\x80\x98\x50\xa2\x18\xfa\x3f\xac\x49\x90\x5f\x5e\x66\x41\x60\x57\x2a\xaa\x0b\xba\xa3\xcf\x6a\x23\x0c\xad\x39\x38\x15\x58\xec\x37\x82\x47\x33\xdc\x37\x30\x62\x89\x07\x1b\x48\x06\x60\x87\xe3\xb0\x8c\x90\x47\x42\x52\xc1\xbd\x23\x91\x05\x57\xc4\x84\x80\x7f\xee\xc2\x01\x2b\x23\x11\xc4\xe0\x3d\xc2\x3c\xda\x0a\x01\xcd\xc9\xd8\x47\xbd\x8e\x20\xa6\x38\x76\xb8\x71\x24\x9e\x3c\x92\x54\x94\xe0\x1a\x0e\xba\x51\x38\xa5\x0b\xc8\xcb\xce\xf9\xde\x9c\x34\xba\xcd\x76\x5b\xf8\x6f\x20\xe1\xe4\x11\x23\x8f\x76\xfe\x32\x80\x89\x79\xef\x3a\x94\x75\xd6\x18\xb5\x9f\x72\x77\xfd\xf4\x25\xb1\x02\x82\xc7\x60\xb5\x4c\x54\x34\x3c\xfc\x2e\xeb\x07\xa8\xba\xc1\xba\x50\x94\xb8\xe4\x37\x92\xa4\x2b\xde\xd5\x0c\x09\x64\x0f\xbe\xb2\x03\x87\x5e\x06\xae\x1f\x37\xe2\xa2\xcb\xef\xf6\x40\xc1\xb7\x43\xca\x9d\x8c\x8b\x36\x40\x1e\xdf\x0f\x06\x83\x41\x89\xbc\x21\x35\xf2\x9a\xd4\x77\xa5\x85\xcb\x26\xbf\x91\x5a\x5d\x31\xec\xf2\xde\xbe\xd8\x4b\xa8\x64\x32\xf5\xf1\xc5\xcc\x98\x82\xba\x8b\x5d\x62\x8d\xd4\x56\xa0\x42\x88\xf1\xf5\x3a\x93\x73\x0e\x9a\xc1\xe7\x5f\x25\x61\x48\x78\x87\xef\xd3\xff\xd4\xee\x0e\xe1\x6b\x4c\xe1\x8c\x47\x12\x63\xbc\x60\xba\x06\x2e\x2d\x1b\x7e\x9d\xfc\x9a\x7c\xff\x43\x49\xe6\x61\x8a\x0e\x21\x32\x95\x87\xa9\x1b\xe9\x4e\xb8\xe5\x64\xe0\x4a\x27\x50\xc8\x5f\x63\xd4\x44\xb6\xb9\xd7\x3c\x4c\xe4\x59\xba\x4b\x5c\x98\x5c\xf2\x22\xcb\x4f\x5d\xbc\x44\x27\xdd\x0c\xef\xa5\x99\x46\x67\x6b\x7a\x2c\x2b\xb1\x33\x9f\x95\x3f\x12\x93\x90\xee\x6f\xbd\x24\x36\xf4\x2e\xfe\xdf\x19\x0e\x5a\x26\xf0\xd7\x40\xfc\x72\xd5\x3b\xdc\x61\x37\x59\x87\x86\x05\x55\x38\x0b\xb8\xff\x5c\xf7\x2a\x4d\xb1\x2f\x9e\x59\x93\x45\xd1\xa4\x98\x65\x91\xd0\xc8\xb6\x26\x54\x82\x5d\x10\x19\xb8\x8d\x9e\x6a\x22\x3e\x42\xf9\x98\xb0\x5d\x10\x5e\xdb\x02\x0d\x11\x84\x5f\x2e\x6d\x6b\x02\x50\x54\x00\x84\x12\x0e\x02\xf6\xed\x50\x66\x57\xfe\x15\x71\x5f\x91\x84\x1b\xf8\x51\x99\x4c\x2c\x17\xe3\xfc\x92\x03\xa3\x4c\x68\x6c\xa7\x9c\x20\x92\xf6\xf9\x9f\x98\xac\x0f\xc0\x5c\x44\x40\xa7\xc7\x61\x2e\xef\x59\xa7\xca\x24\x1e\xc1\xc3\xa7\x0b\x7a\x17\x3e\xf5\x44\x80\xc2\x9e\xa4\x9c\x0c\x29\xa1\x51\x10\xd3\xd0\xb5\xd3\xac\x88\x12\x80\x4c\x44\x0d\x92\x5f\x80\xda\x28\xdc\xd5\x50\x71\x44\x71\x74\x02\x7b\x9d\x97\xee\x4a\x2a\x63\x67\x09\xd4\x5f\xc2\x42\x89\x1e\x28\xa2\x45\x45\x68\x6a\x6a\x56\xc4\x71\x73\xdd\xcb\x07\x04\x84\x69\x27\x22\xbc\x85\x03\xc8\xa5\x27\xcb\x88\xd4\x74\xe7\x86\xf1\x14\x7c\x19\x95\xb7\xad\x5f\xd7\xd3\x41\xfe\x69\x8c\x41\x59\x3c\xc9\x17\x03\xe5\x13\xfc\x0a\x4c\xf3\xad\xa4\x82\x90\x0f\xc0\x6a\x62\x67\x5e\xcd\x98\xd4\x59\xb8\x43\x5c\x5a\x21\x2c\x1e\x2b\xa6\x04\xd2\x4a\x01\x14\x60\xf2\x82\x68\x45\x31\xa6\x3c\xd6\x11\x01\x45\x6e\x79\xf8\x8a\x69\x75\x54\x00\xb5\x73\x98\xab\x89\x15\x45\x22\xed\xc9\x3c\x98\x86\x58\x92\x84\xc1\x34\x86\x38\xe7\xd0\x02\xe5\x07\xc2\xe2\x42\x0a\xe0\x79\x48\x01\xba\x9c\x90\xfd\x2a\x3d\x6f\x12\x48\x45\xe5\x4b\x35\xae\xe5\xba\x57\xb9\x94\x5f\x15\x93\xa2\x57\xfe\xad\x1f\xcc\xfc\xaf\x12\x9b\xbe\xe1\xcf\xc9\x2f\x1e\x36\x4a\xc6\x81\x03\x91\x4f\xd1\x2f\x72\x31\xa7\xc4\xb7\x2c\x83\xbc\x0b\x6f\xd8\xee\x41\x0a\x18\x24\x3d\xe2\x63\x46\xd3\xac\xa4\x43\x04\x26\x10\x8f\xa0\xc1\x4e\x34\xbb\xed\xaf\x72\x04\xbc\xed\x33\x5e\xe5\x2b\x77\xd5\x53\x7a\x17\x87\x96\xeb\xe9\xdd\xab\x10\xd2\xb5\xc6\x54\x4d\x14\x40\x99\xdc\x11\x8b\xa4\xc7\x52\x46\x4a\xf4\xde\xa6\x93\x58\x78\x37\x85\x94\x6f\xa2\x98\x53\x10\x6e\x22\xd3\x31\xac\x57\x2b\x1c\xc2\x0a\x4c\xa2\x63\x45\xfb\xe6\x2e\xbe\x1f\x51\x34\x47\x87\xf0\x2c\x8c\xb8\x60\x13\x11\x3a\xc3\xd9\x67\x83\xc7\x2d\xe3\xa9\x88\x2c\xcc\x60\xbb\x70\xe7\x16\xcf\x0b\x66\x98\x7d\x09\x94\x18\x44\x93\x53\xd3\x4b\x25\xb8\x9b\x29\x10\x46\x4c\x25\x3d\x73\x21\x63\x9b\x84\x64\x94\xf3\x88\xf9\x46\x2c\x9f\x5c\x74\x9b\x2a\x0a\x11\x5f\x4e\x91\xdd\x73\xc7\xf4\xd4\x1d\xbb\x10\xdd\x55\xaf\x56\xab\x55\xd1\x18\x3f\x1a\xd0\x55\xd8\x45\xf5\x19\x41\x45\x1c\xf8\x46\x7a\x35\xf0\x88\x96\x78\x20\x4e\x13\x21\x94\xa9\x43\x86\xfb\x26\xc9\xcd\x44\xf0\x10\x60\xec\xc4\x3c\x91\x9d\xb5\xbe\x1b\x4b\x74\x35\xed\x0a\x43\x08\xaf\xd9\xf0\xf3\x8a\x21\x9c\xba\xb2\xdb\x81\x4d\x78\x44\x58\xe1\x88\xf2\x6b\x3c\xa6\xc4\xfe\x55\x64\x61\x98\x05\xe1\x2d\x3b\x7f\x5e\x02\x49\x31\x45\x11\xe6\x5c\xa1\x73\x00\xc8\xc6\xa7\x83\x59\x80\x28\x2d\xf4\xfb\xd4\xbd\xb3\x3c\x99\xe2\xf1\x57\x72\x16\x44\x31\x64\xea\x8e\x48\x14\xbb\x9e\x87\x57\x00\xb1\x47\xc4\xb3\x60\x0d\x2a\xf2\x60\x57\x6d\x30\xef\x65\x1c\x6e\x6a\x4c\x20\x3d\xfd\xb9\x8c\xa0\x24\x32\x1c\x57\x05\x09\x86\x94\x21\x48\xc9\x8d\xa2\x29\x87\xad\x25\xbf\x58\xb6\xed\x3a\xd4\x8f\x2d\xef\x17\x32\x05\xf0\x4f\x9e\x78\x86\x5f\x59\x84\xe3\x7d\x5f\xfa\x7e\x20\xe8\x96\xd8\xe6\x25\x01\x56\x1d\x71\x26\x5d\xff\x2e\xf0\xee\x20\x62\x3d\x2e\x80\xc9\xc4\xf5\xad\x70\x2e\xc0\xc9\xd4\x8d\x1d\x1f\xb6\x77\xf6\xdd\x58\x9c\x78\x9a\x28\x9b\x44\x80\xad\x01\xe0\x16\x13\xd5\xad\x7a\xa2\x46\xa8\xe8\xce\x60\x0e\x81\x78\x02\x62\xcb\x7c\x40\xa6\xa6\x65\xb6\x20\x84\x85\x51\xb3\xf3\x8b\xc6\x3b\xca\x8a\x65\x53\x57\x00\x2f\x3f\x01\x54\x63\x27\x88\x8e\x5a\xf2\x09\x26\xf5\xd3\x88\x4c\x23\x9e\x0d\x1d\x61\x24\x0e\x5a\x4d\x72\x19\x02\x14\x23\xc2\xfe\xd7\xea\xc6\x6e\x1d\x50\xbb\x56\x37\xf3\x02\x6d\x26\x13\x00\x3f\x23\x02\x71\x4c\x18\x0a\xd8\x82\x86\xb8\x05\x8e\x2d\xa5\x64\x74\x61\x5d\x4f\xb5\x25\x97\x43\x4b\x90\xd9\x23\x85\x69\x3c\x58\xdb\x29\xe8\x6d\x9e\x59\xf7\x42\x69\xc7\x6d\x62\xea\x27\xc2\x40\x0e\x9a\xdd\x32\x9b\x8d\x32\xb9\x3c\x63\x3b\x5d\xe3\x32\xd9\x43\x04\xea\xeb\x8c\xc2\xd3\x06\x92\x9b\x4e\xc0\x18\xa1\x84\x95\xdb\xf8\x06\x21\x85\x1d\xc1\x0f\xd8\x8a\x62\x5b\x13\x8f\xb0\xe0\xb7\x59\x7e\xb4\x33\xa5\xb2\xd8\xed\x95\x49\xe1\xf3\xfd\x2b\xbb\x50\x26\xad\x6e\x93\x14\x3e\x7f\x2e\x94\xe0\x39\x93\x51\x29\xee\xb7\x4e\xe1\xfb\xea\xcb\x42\x49\xbd\xbd\x8f\x28\x4f\x94\x43\x7e\xe1\x56\x06\xd1\xdf\x5f\xc8\x38\xf0\x5d\x91\x5e\x31\x61\xd5\xd8\xba\xc7\xe6\x85\x92\x45\xf6\x48\xad\x5a\xdf\xd4\xf9\x24\xa3\xcb\xe9\x18\xf2\x15\x42\x1e\x15\x8e\x5c\x3d\x43\xf8\x38\xe0\x1c\x37\x65\xe8\x5b\x52\x10\xf2\x03\x01\x69\x25\x72\xcd\x96\xa1\x4c\x46\x18\x52\x3b\x18\xfa\xee\x03\xb8\x5a\xd2\xfb\x89\xe7\xda\x6e\xcc\x16\x1d\x30\x33\xd5\x6b\xd6\x83\x2b\x5f\xc1\x44\x35\x0a\x38\x58\x76\x78\xfc\x90\x88\x7f\x57\xfa\x35\xb6\x26\x11\x80\x6f\xc0\x0d\xe4\xa8\x5a\xa9\x54\x8e\x36\x20\x2d\xd5\xac\x94\x27\x50\x67\xac\x4e\x4a\xe5\x50\x6f\x09\x51\x7a\x93\xef\x29\xf1\x82\xa2\x09\xbd\x0b\x15\xb9\x0d\x2a\x09\x7d\xd8\x14\x5e\x75\xd7\xd1\x86\x32\xb6\x26\x98\x12\x07\x11\xb4\xad\x48\x64\xe0\x72\x87\x3e\xdf\xee\x40\x03\xe1\xcb\x51\x6c\xe0\x08\x25\xe3\xc6\x09\x1e\xf8\xc8\x92\xbb\xa6\xdc\x1d\xbd\x39\x89\x66\x2e\x84\xc2\x60\xb3\xc3\xd0\x9a\x8c\x5c\x3b\x42\x6a\x5a\x5f\x49\xb1\x19\x87\xde\xda\x79\xa9\x42\x40\x49\xe1\x89\xb5\xf8\x4c\x5a\x3e\x82\x1b\x8b\x5d\x5f\x10\x62\x35\x91\x18\xc4\x69\x89\xdd\x14\x53\x4c\x02\x08\xaa\x3f\x9f\x59\x73\x25\xcd\x53\x48\xc1\xdd\x8c\x0c\xa7\x56\x68\xf9\x31\xa5\x64\x06\x21\xf6\xa0\xa3\x5a\xfe\x1c\xa9\x89\x8b\x07\x9b\x12\x0b\x1f\x07\x2c\x20\x06\xe0\xf9\xae\x3d\xf5\xac\x50\xc0\x65\xab\x93\x79\x54\x15\x7a\xf1\x51\x4d\xfe\x56\x97\xbf\x6d\x90\x3d\x7e\x19\xcc\x4e\x7d\x65\x48\xe3\x33\x6b\x52\x2c\xec\x17\x0c\xf3\x8c\x07\xa8\x88\xb9\xd3\xb4\x34\x7d\x0f\xc0\x53\xcc\x62\x5d\x9f\xb0\x45\xca\xe1\xc0\xfa\xa0\x9c\x09\x0c\x4b\x71\xcf\x80\x28\x2a\xfe\x14\x74\x74\xca\x88\xf1\x99\x41\x9b\x1b\x7a\xd3\xbd\xda\x84\x93\x99\x7b\xfe\x55\xef\xeb\x35\x48\x0b\x75\xff\x32\xbd\xfb\x24\xc2\x08\xa4\x58\x3f\x0a\xfb\x85\x32\xb9\xea\xa2\xc1\x2e\xcd\xab\x53\xb6\x75\x1e\x55\x0b\xd9\xd1\xee\xfc\xf5\xa3\xed\xac\x38\x5a\x8b\x8f\x76\x90\x99\xea\x4e\x6e\xf7\x85\xc3\xaa\x3c\x69\xd2\x39\xeb\x74\x15\x05\xf4\x19\x0e\x94\x4f\x5a\xcd\xb3\xc6\xda\xc6\x16\xac\x2f\x50\x09\x21\x41\xdd\x30\x10\x1b\x3a\x7f\x30\x26\x4c\x92\x15\x95\x42\x36\xc5\x11\x9b\x20\xdf\x2d\x53\x42\x82\xf4\x76\x03\xc5\xba\x70\xce\x5f\xc5\x83\x9d\xaf\x99\xf0\x65\xb5\xc4\x29\x90\xc9\x28\xcb\x4d\x05\x07\x2a\xa4\x43\x58\x0d\xf4\x1e\x32\x76\x03\x54\x89\x1a\x01\x07\xd7\x23\xa6\x38\xa2\x9a\xa6\xee\xe1\x51\xe5\x59\x92\xe8\x4c\x40\xa1\xb8\x3e\xd1\x2e\x56\x8c\xda\xf7\xa9\x6b\xdf\x32\x26\x41\x36\x34\x61\x52\x4f\xe2\xf6\xee\x63\x24\x94\x39\x20\xa4\x0a\x6d\xdb\xb5\x4b\xa6\x81\x84\xfe\xd7\x34\xac\xcb\x14\x9c\x92\xc5\x71\x8e\x57\xbf\xa2\xbc\xce\x75\xad\x3b\xc0\xf8\x63\xdb\x83\xe8\xdf\x41\xab\xd9\x6d\x62\xdf\xf5\x01\x58\x3c\x33\x74\x1c\x10\x04\xd9\xb5\x10\x71\xe1\xba\x87\x14\xca\x6c\x4b\x72\x23\xf2\xab\x1f\xc4\xa8\xdc\x70\x98\x3e\x5d\xdf\x8f\x58\x9b\xe6\x3b\x28\xa6\x5d\x4a\x2e\xa1\xba\x93\xc4\x79\x90\xc9\x72\x9b\xd8\x20\x14\x37\x61\xe3\xa5\x1d\x6d\x8b\x82\x14\x1b\x63\xab\xc7\x15\xae\x6a\xb5\x2a\x8c\x23\xfc\xf6\x9f\x24\x66\x5e\x9f\x4e\x78\x73\x20\xc8\xab\xb5\xd9\x3c\x6d\x37\x4f\x98\x3a\x90\xdb\x60\x7d\x61\x83\x80\x73\x1d\xdc\xa1\xf5\x1b\x81\x4f\x2d\xc2\xf3\xfd\x03\x7a\xc3\xcc\x5f\x71\xf0\x9d\xc6\x11\x01\x5f\x07\x09\xf7\x27\x6f\xf9\x44\x81\x13\xd3\xac\x5c\xc2\xa1\x23\xb4\xec\xdb\x48\x07\x95\x50\x53\x54\x0a\xcb\x46\x3b\x86\x20\x98\x81\x4b\x3d\x27\x12\x52\xab\x06\x22\xf7\xa7\x83\x01\x53\xb1\x04\xa6\xbc\xb0\x44\x8a\xcf\xd9\x68\x25\x41\x69\x48\x4a\x9b\xab\xc4\xe7\x3f\xa4\xbf\xe3\xd4\xb7\xb5\x7d\x19\xea\x87\x1a\x01\x63\xc8\x6c\x7f\x3a\x48\x42\x65\x93\xf7\x2b\xf4\x54\xd7\xc6\x8b\x3d\x4c\xb1\x5a\xe1\xa0\x8a\x7e\x92\x74\x8a\xfd\x5d\x16\x2d\x19\xc2\x10\x84\xa3\xfa\x1e\x49\x7d\x92\x20\x3f\x4c\x07\x3c\xb0\x8c\xfd\xf6\xc7\x1f\xfa\x8a\x9e\x04\x91\x30\x94\xa3\x0f\x24\x63\x44\x3e\x31\x2b\x1c\x8a\x68\x54\x23\x50\x43\x8a\x6d\x65\x6d\x5e\xc4\x9c\xe5\xf2\x60\x11\x6a\x47\x96\x05\x50\x04\x2a\x1f\x4a\xef\x7d\x1d\x80\x6a\x7f\x3a\x28\x2a\x03\x2f\x14\x52\xdf\x37\x84\xb9\x25\x93\x3d\x38\x67\x3c\xa6\x65\x9b\xdf\x7d\xad\x6f\x79\x08\x24\xc8\x6f\xd3\x9c\xe6\x74\x09\x39\xaa\x31\x54\x76\xcb\x24\xa5\x9a\x84\xb2\x0d\x12\xe1\xdd\x00\x7f\x6a\x3a\x28\x8b\xa9\x06\x9d\x91\x89\xc6\xca\xc3\xdb\x07\xc1\x5a\x30\x41\x28\x79\xd2\x25\x91\x4f\x84\xea\x95\x48\xde\xc8\x8f\x5f\xe7\xc8\xa5\x91\x07\xd2\x4e\x46\x3c\x37\x8a\x17\x0e\x9f\xd1\xb7\xc2\xe1\xd7\x07\x1a\x06\x09\x1f\x44\xa2\xd1\x84\x17\x4c\xb2\x3f\x55\xbf\xac\x3c\x7a\x29\x3b\x69\x1e\x88\xc6\x14\x46\x30\xda\x15\xfd\x55\x4a\xf5\xd5\x54\x7b\xf8\x9c\x5d\x91\x7d\x87\x0e\x5c\x9f\x3a\x05\x25\xc1\x25\xef\x1f\x5f\xca\xa2\xbc\xc6\x9f\x23\x0a\x48\x91\x82\x39\x60\x92\xf4\x09\xf7\x86\xc8\x4b\x1c\x67\x85\x43\x7f\x3a\x46\x9b\x9e\xa8\xc8\x91\x0b\xc1\x9c\x18\x87\x2e\xbd\xa3\xab\xb0\xc5\xb5\x42\xed\x2d\x18\x29\x4b\x01\xbb\x66\xac\x4e\x1e\x87\xd1\x9b\x27\x19\x1a\x96\xfe\x22\x78\x23\x1f\x92\xf9\x53\x32\x6c\x06\xb0\x1a\xdb\x3e\x20\xf0\x96\x49\xad\x5a\x92\x11\x16\x0d\x65\xd8\xc1\x80\x00\x2b\xdd\x88\xc4\x1c\xd4\x8a\x6f\xc5\x62\x73\x87\x59\xaf\xc8\x17\x5f\x20\xbe\x47\xaa\xa5\x24\x0a\x27\xd9\x02\xa1\xdb\x6a\x76\x4d\xf6\x1f\x11\x10\xcd\x3f\xd1\x8b\x2a\x33\xd2\x70\xee\x2c\x61\x0a\xc0\x13\x49\xdd\x03\x8d\xfe\x2e\x70\x85\xc7\xb4\x1b\x38\x0b\xc1\x80\x6b\xd9\xec\xbe\x88\xf4\x56\x99\x0d\x5e\x54\x9d\x10\x20\xad\x88\x25\x5b\x63\x2f\xf6\xb0\xc5\xd4\x42\xe3\x31\x9d\x94\x84\x74\x6c\xb9\x00\x01\x07\xb9\xa9\x10\x41\x5c\xd9\x86\xb2\xc9\xa9\xe4\x58\x19\xa5\xcc\x70\x85\x37\x87\x9a\x5f\x64\x49\x1b\xab\x8c\x76\x42\xe9\x6d\x47\x90\x49\x6d\x4c\xba\x53\x27\xdf\x98\xc4\x63\xae\x60\x44\xfa\x00\x90\x0c\x80\x94\x3e\xe8\x05\xa2\xda\x77\xfd\x3f\x9b\x09\xd0\x4e\x4e\x03\xab\x72\xa0\x39\xb2\xc2\x47\x8f\xbc\x0c\xa9\x75\x9f\x3e\x78\x76\x10\x59\x69\x39\x57\x87\x0d\x96\x70\x26\xc2\x7f\xe9\xf8\x99\x02\x3a\x1d\xd3\x27\xb1\xe0\xc5\x8b\x5c\x26\x28\xae\xc6\x7c\xbc\x6e\x44\xe8\x78\x12\xcf\xc5\xdb\x93\xa2\x8a\x46\x64\x22\x72\x7b\xa6\x32\x5f\xe4\xee\x99\x51\x93\x27\x69\x59\xda\x69\x01\xf6\xc3\x34\x19\x39\x10\x7e\xa8\xfc\xb6\x27\x57\xb4\x1a\xfc\xaa\x5f\x82\xd4\x16\xee\xd4\x7d\xe0\x0e\x5e\x5d\xee\xe2\x5d\xf5\x52\x55\x2c\xe5\x53\x52\xa3\x28\xad\xbb\x5c\x14\x2d\xb4\x57\xef\xc9\x46\xe4\x3b\x2b\xd4\x42\x7a\x6a\xb2\xe6\x38\x0d\x0b\x9c\xad\x38\xa4\x71\x0a\x35\xaf\x84\x80\x7b\x2a\x1d\xb0\x96\xc8\xba\x47\xa7\xbb\x9a\x1d\x22\xf9\x42\xc1\x8c\x4d\x8c\x51\xf0\x4d\xa2\x0f\x27\xb6\x29\xf8\xa2\x96\x7c\x51\xd7\xbe\xa8\x27\x5f\x6c\x68\x5f\x6c\xac\xc4\x46\x91\xce\xc7\xcc\x49\x8d\x05\xbc\x28\x67\x9f\xc2\x69\x85\x03\x3a\xb3\x33\x3c\x33\x70\x5b\x70\x31\x45\x24\x61\xa5\xc2\x46\x64\x9e\xfc\xa2\x93\xaa\x92\xd8\xf5\xaa\x7a\x95\xc4\xcc\x57\xd3\xbf\x48\xac\x7e\x75\xfd\x8b\x8d\xc4\x1c\x98\x62\xe3\x6a\xf8\x7e\x49\x5f\x16\xd8\x0f\x33\x33\x6d\x2e\x5b\x55\xcb\xd6\x1f\x41\x77\x63\x85\xb2\x06\x43\x9f\xd1\x76\xf6\x04\x9b\xc7\xe3\x1d\x12\x94\x6d\xf0\x2d\x3c\xa1\x27\x0f\xc6\x69\x93\x09\xf8\x92\x72\x0c\x86\x5f\xd0\x47\xa2\xc7\xae\xfa\xae\x3f\xfc\x85\x44\xd4\x16\xa7\xf9\x27\xf0\x5f\x49\x6b\xd7\xa6\x8c\x20\xe8\x51\xa1\xce\x27\x4d\x01\x36\x69\x03\x59\x34\x12\x35\xcc\x48\xbe\x5d\xd3\xf1\x24\x08\xad\x70\x0e\x56\x27\x6b\x88\xca\x7f\x30\x0d\xe1\xe5\x3c\xf0\x23\xd0\x0b\x51\xe5\xc4\xbf\x45\x4d\xf1\x02\x8f\x99\x74\x84\x11\x8a\x95\x1c\x07\x8e\xaa\xd6\xd3\x4a\x34\x72\x07\xf1\x09\x9d\x63\x07\xd8\xd7\x7f\xec\x91\xcd\xe4\xfb\x31\x8d\xad\x13\x3a\x67\x3b\xb9\x9e\xba\x42\xe6\xc8\xaa\x58\x5e\xdc\x8e\xce\x68\x6c\x91\xbf\xfd\x8d\x50\xf6\x27\xa3\xa7\x11\xdc\x49\x08\xda\x71\xe8\xa5\xdb\xab\x6d\xcb\x31\x5f\x1c\x5c\x14\xc3\xa1\xeb\x3b\x56\xe9\x35\x79\x4f\xb5\x3c\x7b\xc2\x98\x2a\x8c\x49\x60\x4e\x5d\x0f\x42\xf6\xfb\x36\xd3\x39\xe9\x7d\x4c\xd1\xa8\x22\x0c\x87\x90\x9b\x88\x1d\x28\x80\xbd\x06\x56\xe2\x60\x3a\x1c\x95\xb9\x43\xc3\x04\x33\xa8\x5a\x18\x75\xf8\x6d\x1a\xc5\xc4\x22\x9e\x1b\xc7\x1e\x2d\x93\x36\x99\x59\x91\x5f\xe0\x46\x48\x91\xe1\x6f\x48\x63\x72\xe7\xc2\x93\xd3\xd8\xb2\xe5\xf3\x05\x77\xcc\x45\x6d\x30\xc2\x27\xcd\x48\x70\xfd\x9e\xec\xf1\x27\xbb\xca\x20\x0c\xc6\xec\xe0\x6f\x06\x0e\x2d\x72\x18\x61\xcf\x1a\x4f\x8a\x54\x72\x16\xdd\x1a\xc8\x0b\xb2\x51\x2f\xc3\xbf\xfa\xd6\x56\x49\x22\x70\xcd\x1f\x45\xab\x13\xcc\xb2\x84\x9e\x11\xf1\x80\xc3\x4a\xce\x27\x09\xaa\x91\x15\x51\x52\x80\xc4\xde\x85\xd7\xfc\x86\x01\xe2\xc4\xc1\xf3\xa9\x97\xba\xa9\x70\xdb\x5c\x8d\xb1\xa3\x4e\x26\xde\x14\xae\x71\x96\xe3\xb8\xfc\xf2\xba\xbd\x29\xf0\x02\xfa\x10\x29\x5a\xa4\x15\x87\x7a\xb1\xf5\x91\xfc\x4a\xd6\x6a\x25\xf2\x3b\xa9\xb2\x9b\x75\x95\xbc\x26\xb5\x12\x79\x41\x5e\x6d\x4b\xaf\x49\x26\x18\xe3\xc0\xd9\x95\x37\x1d\x94\x71\xb6\xc5\x7c\xbe\xaf\xf5\x3f\x9d\x15\xc8\x0b\x23\x27\xfa\x8c\xd0\x3d\x79\x41\xe6\xbb\xcf\x92\x41\x9c\x88\x34\xa4\x09\x4c\x44\x18\x8c\x79\x42\x73\x84\xa6\x86\x1f\x0a\xd9\x91\xa8\x1f\x2b\xf8\x30\xbc\x47\x21\xb5\x6e\x39\x49\xe4\x14\x2c\x6f\x27\x98\xf9\x2a\xb7\xf6\x81\x27\xf8\xc0\x24\xb3\x64\x49\x56\xf1\x9b\x12\xb0\x6a\xa3\x2e\x1a\x05\x9f\x63\xb2\x47\xce\xac\x78\x54\x19\xbb\x7e\x91\x56\xb0\x7c\x99\xd4\x4b\x30\x81\xea\x50\x1a\xbe\x43\xc6\xee\xbd\x50\x3c\xc7\xca\x6a\x8f\x2a\x19\xf6\xfd\x14\xff\x16\x8e\x7c\x3a\xc9\x4a\xc9\x74\x02\x56\x51\x3f\x10\xc8\x49\x7c\x57\x45\xc0\x41\xce\x84\x99\x15\x91\x90\x7a\xd4\x8a\xb8\x03\x85\xb1\x7f\x9f\xef\xeb\x1b\x85\x15\xbb\x32\x0e\xee\xa8\xec\xcc\x23\xb6\xdf\x4e\xe3\x08\x77\x2d\xec\x59\xa4\xfa\x2b\xaf\xaf\x93\x6e\x6c\xf9\x8e\x15\x3a\xa2\xe3\x7d\x97\x23\x54\x50\xf2\x81\x9d\x02\x04\x8e\x05\x3b\xe0\xde\x2b\x21\x34\xc5\x13\x42\xbb\x61\x14\xab\xb4\x38\x09\x78\x4e\xe1\xc8\x8e\xee\x00\xfd\xe7\xfe\x86\x8e\xb0\x20\x32\xf0\x3d\x75\xca\xfc\x23\x37\xe2\xef\xd9\x8e\xe2\x89\xcc\x93\x18\xb8\xb1\xf6\xc8\xa4\xb4\x4b\xe2\x51\x48\x29\x6f\x92\xf5\xb8\x3d\x20\x3e\xbb\xdb\xe0\xfe\x34\x66\x2d\xa9\xd4\x64\xa3\xf1\x88\xfa\x7c\x68\x03\xcf\x1a\xc2\x1b\x30\xb8\x8b\xf1\xe9\xaa\x10\xf2\x1e\x72\xa7\x3a\x81\x8c\x0b\xae\x48\x4a\x4c\x84\x15\x51\x45\x67\xc1\xd0\x0d\x42\x37\x9e\xc3\xd3\x96\xc4\xf3\x80\x26\x5e\xc3\xe8\xcb\x64\xec\x3a\x0e\xdb\x70\x43\x9e\x92\x8b\x24\xd3\x28\x27\x86\xfc\x8d\x54\xef\x6b\xea\xf4\x00\x75\x3e\xb9\xc0\x45\x2c\x59\x51\x0a\xf4\xc9\x0b\xe9\x59\x4d\x74\x2f\x78\x9d\xf0\x66\x1e\x61\xec\x5a\x1e\xe9\xda\x0a\xa4\xeb\x79\xa4\x71\x7e\x73\x28\xd7\x33\x94\x33\x44\x60\x3e\xc8\xc8\x1d\xb2\x73\x47\xcc\x74\x9a\xce\x86\x42\x47\x9b\x96\x86\xe3\x90\x8d\x3a\x3b\xbd\x04\xc2\x19\x57\x98\xc6\x01\xbf\xff\x6b\x64\x52\x93\xba\xca\x0e\x64\xd8\x83\x7e\x6e\x17\x92\x03\xc8\xee\x01\xb6\xe7\xda\xb7\x7c\xfd\xe3\x27\x4e\xdf\x53\x3f\xd4\x2b\x71\x23\x98\xf8\x4a\x24\x02\xa4\x61\x18\x84\xc5\x02\x7f\xa2\x54\x15\x48\xcc\x02\x88\x87\x65\x99\xd0\xf4\x91\xa0\xf8\xe7\x8b\x01\x2a\xe6\x50\xa9\x31\xb9\x81\x92\x40\x32\x29\xa9\x67\x9b\x10\xbe\xc6\xc9\x83\x68\x30\xd0\x9c\xb3\xf9\xbb\xb7\x30\xdd\x84\x34\x02\x93\x38\x4f\x08\x9b\xf8\x14\x3f\x53\xb3\xf8\xeb\xa8\xf2\x3d\xd5\x1e\x84\xf9\x1c\xd1\x43\xd1\x94\xcf\x91\xfb\x4f\x25\x29\x1d\x53\xf9\x1c\x8d\x4a\xb2\x74\x99\x56\xb5\x63\xdd\xe4\xae\xb8\xe4\x26\x4f\x20\xfc\x71\xc1\x06\x09\x98\x0e\xb8\xb6\xc2\x73\x20\x3e\xcf\xd4\x4b\x6c\x12\xc5\x92\x6a\x83\x55\x9f\x2a\xd4\xf2\xec\xf3\x24\xd2\x06\x0d\xf7\x99\x42\x60\x99\x10\x65\xf0\x61\x20\x53\xa6\x3f\x1d\x70\x59\x32\xb6\x51\xb1\x2d\xcf\x83\xc1\x94\x33\x05\x4a\xbc\xa2\x3c\xa5\xd2\x95\xd9\x51\x05\xff\x15\xc0\x36\xa9\xce\xb1\xef\xd9\x7f\x94\x20\x7c\x53\xff\x58\x31\xc9\x71\x92\xa4\x96\xbb\xc4\x77\x22\xc7\x75\x10\x09\xdf\x13\x9e\xbd\x70\x51\x78\x5e\x50\x91\x6a\x14\xc1\x44\x97\xd4\x44\x2a\xff\x24\x41\xe1\x9e\xb1\xa6\xb8\x2c\xc9\x20\x83\x73\x9e\xf4\xce\x33\xe0\xe0\x52\x35\xbf\x99\x0e\x2c\x19\x87\xda\x62\x03\x7a\x4a\x06\x3c\x31\xb4\x08\x7d\x34\xd4\x5b\x23\xbb\x80\xbc\x26\xa3\x38\x9e\x44\xaf\xd7\xd7\xa9\x5f\x99\xb9\xb7\xee\x84\x3a\xae\x55\x09\xc2\xe1\x3a\xfb\x6b\x1d\xa9\xe4\x8d\x34\xc9\xbb\x66\x1c\xad\x12\x6a\xa9\x67\x68\xd3\xf7\x07\x39\x0d\xe8\x58\xac\xc6\x40\x62\xf3\x4b\x38\xbd\xac\xfd\x8c\x67\xb2\x58\x8d\x99\x9e\x74\xa9\x30\x1f\xe6\xba\xc3\x18\x5f\xb9\x64\xf9\x74\xbe\x6e\xf9\x05\xa4\xe3\x8d\x73\x07\x12\xd1\x58\xf1\xd2\x4c\xee\xde\xfc\x33\x1c\x8e\xbc\xe0\x68\x9f\xe6\x6e\xfd\x33\x2b\xf4\x8b\x85\xb6\x0f\xb9\x4e\x94\xa7\xb6\x5f\xc4\x68\xa4\x54\xff\xc2\xcf\x02\x41\x77\x37\xd1\x80\x0f\x2d\xcf\x23\x49\x0a\x36\x79\x16\xb9\x51\xb0\x56\xaf\xd6\xeb\xf2\x2c\x5a\xee\xb2\x63\x2c\x95\x71\xdb\x49\x1d\x42\xa2\x3d\x58\x19\x6b\xe8\x2b\xb4\xbc\x4d\x35\x46\x6e\x41\x93\x6a\x31\x73\x8b\x7f\x5a\x53\xe6\xd1\x25\x59\x6a\xf3\x5c\x7b\x34\x9b\xf8\x20\xa4\xd1\x08\x43\x77\xd0\xdf\x81\xa9\x38\x32\xf5\x78\xe2\x58\x85\x81\x03\xb9\xc2\x66\x6a\x2b\x6b\xc1\x43\xcc\x3b\x8c\x2c\x40\xa7\xff\x1d\xb0\x00\x94\xb9\xab\x6a\x34\x05\x95\x0f\x1d\xe0\xd2\x91\x4e\x6c\xbf\x99\x81\x52\xed\xd3\x3b\xf0\xc9\x5c\x5f\x27\x11\x58\xaa\x82\x88\x92\xb5\x35\x74\xe5\x8c\x47\xe0\x9d\x3b\x12\x30\xb3\xac\x91\xe7\x02\x7c\xdb\xae\x91\x3d\x72\x81\x87\x3c\x53\xc2\x8a\x89\x99\xad\x59\x13\x8f\x85\x95\x81\xcb\x36\xfb\x62\x91\x96\xc8\xde\xef\x1c\xec\x2a\x3b\x4f\x7f\xfc\x41\x28\xec\xb9\x4c\x0f\x6b\xc4\xc5\x12\xf9\x8d\x54\xef\x77\xe4\x9b\x63\x65\x6c\x4d\x04\x8d\xc2\xe7\xcf\xf7\x6c\x39\xa0\xf5\xe1\x61\x62\x39\x45\xbd\x6e\x25\x0e\xb8\xbe\x53\xdb\x2e\xb1\xdb\xac\xa4\x82\xd0\xbf\x8a\xf5\x31\xe5\xcc\x45\x67\xa4\x43\x87\xad\xfb\x49\xf1\xbf\x3e\xfd\xe7\x3f\x6d\xbb\xf6\xe3\xcb\x7f\xa5\x52\x55\xa4\x9d\x60\x32\x4e\x34\xe0\xd7\x03\x2a\x0e\xf8\x98\xc5\x49\xe0\xb6\xf0\x32\xc3\xeb\x52\x2d\xeb\xc5\x86\x6f\x3b\xc5\x66\x75\xbd\x59\x4b\x85\x8f\x83\xe1\xe0\x53\xb3\xd7\x39\xfd\x22\xfd\x5a\x93\x0c\x02\x76\x00\x31\x77\xdc\xdb\x5b\xb8\x74\x0b\x45\x0b\x5e\x9b\x42\x17\x3c\x90\x53\x19\x46\xf9\xed\x4b\x40\x30\xe9\x1d\x91\x7a\x9a\x1b\x4d\xe0\x0e\x95\x7e\xb3\x51\x9e\xd7\x34\x3f\x3b\x45\x56\x13\x05\x41\x79\xdb\xa6\xde\x40\x66\x9b\x56\xe1\x24\xa1\x93\xea\xdb\x36\xc0\x04\xb0\xe2\x06\x91\xf9\xdb\xdf\x80\xd0\x27\xf8\xfa\xe8\xf4\x4b\xe5\xe8\x54\xcc\x33\x3e\x9e\xa7\xbf\x4d\x8e\x66\x02\xdf\x25\x4a\x72\xd2\x2e\x2c\x7a\xe9\xb0\x47\xad\xd0\x1e\x69\xce\x81\x6a\x0c\x7c\x9f\xed\x76\x10\xf5\x28\x27\x42\x18\xdf\x50\x83\x9b\x28\x4f\x5a\xa9\x07\xd8\xa2\xb4\xad\xf9\x1c\x9c\x00\xa3\x2f\xe0\xf5\x0d\x9a\x2d\xa6\xe5\x33\x81\x9a\xd2\xaa\xec\x91\xaa\xe0\x16\x40\x29\x16\xc0\x07\x70\x3a\xee\x7b\xd4\x11\xf7\x79\x76\x52\x1b\x7c\xde\x2b\x89\x32\x29\xa6\xb8\x58\x68\x36\x6b\x85\x32\x51\x5e\x01\xab\x65\x52\x2b\x95\x95\xc1\xf0\xe3\x47\x19\x1d\x7f\xdf\x2c\xd6\x4a\xbb\x9a\x4d\x59\xb9\xa3\xa4\xfa\xbc\x56\x53\x3a\xdd\x43\x87\xf1\x90\x12\x3f\x30\xc4\x14\xc9\xf4\x69\xb8\x8c\xb0\xd7\x38\x65\x4c\xd7\xcc\xf4\x06\x14\xfb\xa2\xb9\x2b\xb2\x9a\x32\x3a\xa5\x6b\xa5\x64\x67\x58\xc0\x11\xa5\x82\x91\x37\x06\xce\xa8\xc3\x7f\x91\x7e\x4c\xc5\xd8\x46\x4b\x86\x9d\xca\x20\x87\x36\xfb\xdb\x99\xda\x34\xc4\xf5\x6c\xf9\x8e\x5c\x8c\xc4\x8d\x55\x5d\xf1\x53\xb3\xdb\xfe\x82\x51\x6c\xc1\x18\xfc\x4b\x07\x53\x8f\xb8\xfe\x20\x08\xc7\x68\x10\xb3\xfa\xc1\x54\x04\xd9\xd9\xdc\x52\xbc\x60\x31\x37\xbb\xed\xa5\x0b\x19\xf0\xd6\x52\x52\xce\x2e\xd3\x89\x74\x73\x87\x38\x95\x23\xe1\x30\x4a\x70\xdb\x47\xe4\xf7\x3d\x52\xf8\x7b\x81\xad\x66\x1b\x1e\x6a\x0b\xff\x5d\xd0\x44\x03\xdd\x61\x71\xdb\x64\x87\xea\x12\xe9\xed\xb6\x0b\xe5\x9c\xe0\xc5\x17\x79\x21\x83\x2f\x88\x3d\x52\x43\xab\xc5\xcf\x22\x91\x37\x7b\xd7\x3d\xd3\x8c\x32\x36\x40\x30\x17\x76\xd5\x01\x5d\x32\xc5\x14\x82\x9a\x1d\xea\xb9\x63\x57\x0e\x24\x41\xe2\x4f\xf7\x4f\xc3\xd0\x35\xd4\x57\x02\x25\x33\xe1\x98\x60\x38\xb4\x20\x68\x8a\x4c\x2c\xc7\xf1\x5c\xbf\x20\x8c\x25\xab\x8c\xc6\x08\xb3\xf0\x5c\x71\xd8\x4a\x19\x2f\x7b\x23\x3a\x27\xc1\xd8\x8d\xe1\xac\x91\x67\x1d\xa8\xe3\x5a\x26\x99\x68\x3a\x99\x78\x73\x14\x62\xfe\x03\x54\x31\x9b\x40\xa1\x94\x31\xc0\x18\xbe\xfd\x91\xe5\x37\x93\xa6\xaa\x2a\x4d\xaf\x54\xe6\x9f\x03\xf2\xf2\x3c\x4e\xb2\xb7\x72\xe7\xd3\x89\xe0\x6a\xe5\xd9\x63\x26\xe3\x9c\xc7\xa5\xca\xea\x7f\xd9\x54\x3c\x72\x26\x12\x6f\x38\x7b\x24\x39\x99\xb6\xe9\x09\xbf\x32\xe9\x7b\xb7\x46\x6a\x5f\xc0\xe3\x69\xa4\xe3\x57\xe4\xf0\x99\xa8\x7c\x7e\x23\xfe\x78\xbe\x47\x0a\xaf\x55\xa6\xcb\x87\xc1\xd4\xca\xcd\xef\x7f\xce\xf2\x4d\x3a\x96\x1a\x4a\xde\xb2\x56\x2a\xa4\x46\x90\x3e\x5b\x2b\x31\x8d\xe2\xa2\x3d\x2a\x29\xfd\x6e\x3e\xe2\xb8\xb4\x47\xa9\x43\x20\x0d\x47\xb4\xbe\x4e\xae\x7c\x19\x37\xa8\xf9\xf1\x24\xe1\xdb\x7d\xcb\xf5\x48\x30\xe5\x4b\x62\x05\x99\xc0\x23\xcd\x7c\x0e\xab\xb7\xe6\x5b\x77\x82\xf1\xf2\x8a\x32\x3a\xf5\x63\xd7\x4b\xf4\x9a\xbc\xe8\xbe\x56\xb7\x49\x44\x50\xdf\xaf\x64\x9f\x7a\x9e\x1e\xd7\xa7\x9a\xf7\x12\xc8\x20\xcb\xb6\xa7\xe3\xa9\x67\xc5\x4a\x14\x46\xb2\xfd\x7f\xaa\x7e\xa9\x10\x72\x66\xdd\x52\x12\x4d\x43\xca\xe3\xb2\xf1\x6a\x0f\xd8\x71\xd2\x77\xb4\x08\xa1\x2a\x69\x4e\x48\xdf\xd2\x92\xd0\x78\x25\x74\x56\xe2\x2c\xcf\xfb\xf5\x31\x98\x42\x20\x8b\x43\x63\x8c\x22\xb5\x50\x6f\x47\x0b\x06\xe0\x48\x80\x7b\x51\x7f\x4e\xec\x11\x85\x97\xf9\x24\x39\xa9\xf4\xd5\x92\x1a\xea\xc8\x8a\xf8\xf5\x0d\xb1\xe6\xd3\xc9\xf6\xcc\x57\x02\xb8\xa7\x29\xf1\x87\x63\xd4\xd2\x2d\x9f\x64\x03\x1b\x55\xb3\xeb\x8c\xdd\xd8\x38\xaa\xfd\x33\x1e\xc3\xaa\xc5\x7e\xaa\xd1\xb7\x7d\x4a\x42\xba\x06\x1d\x70\x92\xc8\xea\x05\x0e\xfb\x66\xf4\x48\x19\x44\x29\xb9\x14\x91\xc0\x1f\x06\x60\x6d\x09\x25\xc3\xf0\x7d\x47\x26\x29\x2e\xdc\x25\x00\x52\xf7\x36\xa5\x0e\xdf\xfe\xc7\xd6\x3d\x49\xc5\x78\x2e\xbb\x43\xc4\xae\x87\x2c\x49\x64\x71\xa9\x22\xf2\x48\x7d\x5b\x91\x72\x4d\xe5\x5e\x2f\x7e\xbe\xaf\xf5\x3f\x7f\xfe\x83\xc9\x76\x69\x7d\x55\x2d\xc6\xb4\x8b\x25\x3b\x70\x81\x5b\x37\xe1\x93\xda\x17\x7e\xcd\x3c\xb0\x30\xe9\x73\x4a\x45\x56\x7b\x96\xd2\x92\xcf\x03\x19\x02\x1e\x84\xf0\xb2\x55\xe6\x01\xef\x29\x38\x01\xf4\x4a\xe4\xba\xb2\xd6\x99\x17\x30\x5a\x7e\xb0\xc3\xc0\xfa\x41\x18\x77\xa8\x15\x05\xbe\x62\x21\x16\x6b\x94\x1f\x0b\xbf\xe7\xc4\xe0\x8a\xdb\x96\x42\x84\x0d\x37\x0e\x02\xe2\x05\xfe\x10\x6d\x56\x3a\x2d\x43\x23\x00\xcb\x77\x31\x28\xc2\xd3\x4c\xa1\xc4\xce\x8f\xb5\x5a\x0e\x69\x3a\xee\x53\x87\x89\x16\x9a\x33\xf4\x16\x52\x84\x94\xa6\x12\x7e\x93\x35\x39\x0d\xbf\x1b\xc0\x15\xf2\x46\xe4\x8e\x29\xd3\x9d\xe9\xfd\xc4\x0d\xa9\x83\xcd\x9a\x88\xaa\xc3\x4b\x48\x24\x07\x9b\xb0\xfc\x79\xc1\xb0\x58\x58\x20\xee\xaf\xb1\x07\xae\x64\x62\x42\xcc\xa4\xa7\x72\x0e\x48\x9d\x29\x73\x17\x4a\x17\xd0\x71\x88\x15\x35\xcb\x70\x96\x24\x6e\x94\xda\x8d\x2a\x9b\xc3\x29\x25\x35\x2f\xd2\x2b\x2d\x57\x8c\xd4\xdb\x2b\x87\xfe\x50\x50\x31\xe0\xc8\x4a\x8e\xc8\x29\x04\x63\x23\x7a\x43\x3c\x72\xfd\x5b\xcc\xfa\x20\x84\xce\x7c\x74\x16\xe5\x02\x20\xc9\x8d\x31\xcd\x04\x18\x88\xbe\x52\x52\x97\xc4\x64\x30\x28\x5d\x2b\x9c\xd0\x39\x57\x41\x85\x2d\x2f\x0c\x13\x4a\x08\x29\xa6\xee\x9b\x49\x0d\x76\xe5\x84\x7b\x05\xc8\x39\x79\x43\xea\xe0\xc8\xa2\x3d\x3a\x64\x72\xc5\x1e\x88\x5b\x23\x3f\xaf\xe4\x81\xc6\x93\xc4\xfb\x8e\x47\x23\x09\x80\xdc\x6c\xd6\x20\xa0\x1f\x7c\x78\x9b\xdd\x36\xfb\xcf\x75\x6f\xab\x2e\x80\x02\x72\x8c\xfd\xa2\x0d\x15\xa1\x08\x1e\x2f\x6d\x30\x4b\x9a\x36\x6e\x6c\x99\x6d\xc3\x82\xe0\x27\x56\xe5\xcb\x27\x56\x45\x46\x3b\x3c\xe7\xc5\x54\xb3\x10\x08\x53\x26\xc2\xbe\x64\xb4\xb1\x8b\xd7\x55\xc8\x4f\x36\x9f\x50\xf2\x82\x14\xa0\x53\xb8\xbc\x8e\xbb\x17\xe7\x15\xdc\x30\xdd\xc1\xbc\xc8\xbe\x28\xe5\x5b\x32\x64\x97\x93\x3e\x57\xd0\x5d\xe2\xa9\xdd\x6b\xa3\xb3\xc5\x9f\xd3\xbd\x98\x63\x2e\x83\x66\x0a\x3a\x79\xe0\x50\xf2\x3b\x13\x97\x97\x83\x42\x92\x70\x20\x83\xfd\xa1\xac\xc3\x36\x5b\x52\xb7\x2e\x87\xa5\x21\x23\xae\xe8\x4c\xc0\x7e\xe0\x46\xfc\xf0\xe9\x4f\xe3\x4a\xa5\xc2\xeb\xc8\xaa\xc2\x24\x2d\xa4\x01\x1e\xb7\x78\x6f\x50\x0e\xd0\x8d\xa4\x10\x91\x61\x10\x1b\xd0\x5f\xca\x82\x14\xae\xf5\x02\x98\x85\x62\x74\x38\xe1\xe8\xfa\x38\x05\x12\x89\xc5\xa1\xd1\x1b\x42\x8e\xa7\x51\x2c\x40\x2d\xc4\xb5\x32\xe9\x17\x18\x12\xb8\x97\x15\x38\x8c\xd1\x30\xb4\xfc\x98\x14\x01\x3e\xa3\xf0\xf9\xfe\x55\xb5\x50\x2a\x93\x22\x00\x69\xb0\x3f\x1d\xf8\xf3\xf2\x0c\xff\xa2\x12\xd7\x82\x11\x2b\x36\x2e\x79\xa9\x41\xa1\x84\xa6\x59\x2f\x40\xdd\x71\x9a\x72\xf8\x62\x27\xb3\xb0\xfd\xba\x71\x24\xb1\x43\x24\xa9\x04\x43\x83\xb5\x90\x51\xae\xcd\xc2\xc2\x28\x66\x71\x68\x5e\x93\xea\x7d\xc1\xb4\xa1\xc0\xb2\x55\x2c\xe4\x55\xdd\x44\x6e\x16\x26\x2e\xe7\x15\x8b\x5d\xd4\xf9\xbb\xf2\xa7\x64\x0d\xe3\xaa\xfe\x92\x7d\x9f\x4b\x5c\x7e\x30\x8b\x0f\x0f\xd6\x52\x9d\x64\x1d\x8a\x5e\x4d\x42\x3d\xf6\xef\x82\x5b\x9e\xf3\x43\xf8\x6a\xc4\x01\xe9\x9e\xad\x77\xce\x44\x19\xe5\xf6\xc4\xe4\x67\xaa\xc1\x6a\xc0\xdb\x19\x7a\xbf\x45\xae\x47\xfd\x04\x91\x23\xdf\x62\xcd\xee\x11\xe7\xdd\xf6\x59\xea\x25\xd8\x16\x70\xb5\xb1\xe2\x57\x6b\xf3\x1c\x67\x9b\x25\xf2\x4f\x94\x72\x48\xb7\x47\xa0\x72\xb1\xdd\x39\x33\x79\x5e\x44\x34\xc6\x62\x67\xf8\x94\x29\xcc\x48\xea\x45\x9a\xd3\xad\x57\x05\xe1\xc6\x34\x0e\xc6\x80\x3d\x7b\x4e\x67\x90\xe6\xab\x78\x7a\x9e\x47\x9e\x15\x6e\x5a\x61\xe8\x5a\x43\x8a\x01\x19\xe6\x66\x72\xf6\x22\xe1\x80\x99\xda\x2a\x55\xc6\xc2\x04\x9e\xc9\x9d\x08\xb6\x9e\x2c\x58\x2e\x9b\xf4\x90\x5f\xe1\x94\xd9\x4f\xa3\xed\x2c\x9b\x6f\x0c\xdb\x5e\x3f\x68\x35\x3b\xdd\xde\xa2\x79\x3b\x68\x35\x97\x4e\x9b\x78\x8b\x95\x31\x71\x58\xa2\x56\x2d\x69\x8e\xa7\xb5\xd7\x88\xa2\xd5\x6a\x36\x4f\xce\x34\x73\x42\xd6\xe5\x78\x32\xf1\xb8\x73\x61\x53\x84\x6e\x40\x83\xb9\x6e\x82\x1b\x09\xf1\x8b\xd3\x33\xc5\x6c\x83\x61\x7d\x39\x70\x62\xaa\x1d\x27\x33\xe5\x88\x9e\x8a\x0f\x8b\x6f\x48\x6d\x83\x9d\xfd\x3b\xd5\x92\xe2\xed\xa4\x57\xb1\x3d\x6a\x85\x6f\x83\x31\x2d\x2a\x68\xa5\x19\xaa\xd7\xbd\x2e\xb8\xa4\x76\xe8\x10\x20\x9b\xa7\x9e\x57\x16\x99\xb3\xb1\xca\x8f\xbc\x31\x6e\xc9\x31\x76\x9b\xe7\x66\x0e\x46\x34\xee\x50\xc8\x27\x75\xed\x3a\x34\x50\x64\xd4\x48\x71\x5b\x52\xbc\xc8\xa5\x77\x11\xba\x43\xd7\x4f\x2d\x2c\x23\xb5\x97\x92\x5a\xe3\x7d\x2e\xb9\xf7\xa1\x35\x41\x7f\xec\x65\xe4\x6a\xf5\xd7\xc2\x49\x33\x8c\x11\x6b\x4a\x05\xbb\xd4\x67\x58\x01\x93\x2a\xe5\x33\x1f\x85\x69\x9f\x91\x5a\xd6\x7a\x3d\xe1\x76\xaf\xd9\xca\x1d\x0e\x52\xbc\x46\xcc\x93\x65\x34\x37\xaa\x7c\x44\xa3\x60\xc6\x3d\x93\xfb\x56\x98\x47\xba\x2b\x0a\xac\x48\x7d\x93\x53\x6f\x00\x6e\xd8\x4e\x95\xac\x81\xd0\x16\xf9\x9a\x28\xc1\xe6\x62\x6c\x6c\x01\xda\xde\xe2\x55\xb7\xc9\x99\xc4\x65\x6e\x6d\x26\x27\x37\xbf\xb1\x44\x44\x57\x17\x85\x6d\x2e\x5a\xfb\x96\x7d\x6b\x85\x61\x30\xc3\xc8\x07\xea\x3b\x11\x18\x6c\x30\xf3\x3a\x1b\xe9\xfe\xc9\x59\x69\xf1\xde\x22\xcb\x77\x59\xf5\x7d\x59\x7b\xd9\x58\x6b\xd5\x6a\xf5\xb5\xea\xe0\x19\x08\x17\x42\x70\x44\x94\x38\x1a\x49\xdb\x7a\x98\x4b\x51\xd1\x15\xc4\xa6\x92\xf5\x58\x46\x88\x8d\xd7\x8b\x42\x49\x76\xcd\x6c\x9d\xfb\x36\xb8\x68\x43\x06\x97\x05\x5e\xed\xb5\x6a\xb5\xbe\x70\x1c\xf0\xf2\x15\x5a\xc3\xe8\x67\xc7\x02\xde\xd7\x7f\xed\x50\x6a\x62\x45\xc1\x5a\x01\xd3\x5c\x10\xc7\xc1\x18\xdc\x25\xe3\x39\x09\xa6\xf1\x64\x1a\x9b\x5b\x81\x2a\x17\xfe\x05\x14\x59\x61\xfa\x6b\xb5\xfc\xb6\x98\x38\x82\x93\xf5\xc2\xa6\x4e\xe8\x3c\x8a\xc3\xe0\x76\x15\x61\xdb\xe0\x7b\x33\x93\x52\x00\x7c\x03\xdf\x16\x08\xc3\xe1\xaf\x1c\xec\x0e\x79\x4b\xe7\x8b\xa5\x7d\x4c\x63\x0b\x04\xbd\x85\x5e\x29\x2b\x34\xfc\xca\xd4\x70\xc3\x8b\xcd\xed\x62\x84\xbc\xd4\x05\x92\x0f\x9f\xe7\xf4\x88\x5d\x0c\xdc\x60\x1a\x35\xbc\x18\x3a\xf6\x7e\x64\xc5\x5f\x75\x27\xea\xc7\xd4\x94\xd8\x5c\x4b\x2a\x5b\x4a\xa5\xdd\xe5\x6d\xa9\xc5\xc1\x1c\x06\xec\x2b\xa8\xee\xd6\xfc\xbf\x29\xdd\xef\x09\x03\x5e\xa9\x0b\xcf\x56\x18\xa3\xb1\xa5\x3c\x5d\x64\x19\x5b\x25\x08\x06\x59\xa4\x93\x6c\xf2\x9d\xf9\x2a\xa2\x4c\x46\x68\x08\xd1\x58\x5d\x3b\xa4\xd4\x27\xfb\xe0\x83\xac\x0a\xd7\xe6\xcb\xd7\x79\x87\x82\xac\xbd\x8a\xaa\x51\xab\x6e\xee\xbc\x96\x48\x4f\x02\x8f\xd2\x8a\x34\x9c\x27\xd9\x8c\x12\xa5\x28\x03\x8a\x35\x5a\x5c\xe4\x59\xff\xc8\x0b\x20\xce\x34\x70\xa6\xcf\x55\x16\x89\x79\x2e\x71\x33\xc7\x97\x0c\xd2\xa8\x4f\x26\xd4\x32\x6f\x8a\x4f\x21\xae\x76\x96\x47\xef\x16\xb3\xef\xbf\x59\x65\xa8\x5a\xdd\xe4\x27\x70\x68\xd9\xb7\x94\xdd\x57\x26\x56\xc4\x2f\x1b\x95\xbc\x29\x95\x85\x2f\x59\xd9\x05\x73\x9a\xf2\xda\x5c\x6e\xd4\x59\x7c\x95\x52\x6f\x43\x86\x1b\x15\xd1\xdd\x0e\x95\xeb\x95\x44\xc8\x89\x46\x56\x88\x28\x90\x06\x1f\x19\x76\x40\x66\x9c\xfc\x10\x80\x11\x73\x7b\x98\xef\xc3\xdc\x5e\xa2\x3b\x17\xfe\x50\x31\xe4\x3d\x2f\x09\x53\x35\xb4\xcb\xb1\xda\xf0\x36\x67\x09\x30\x04\x15\xce\x80\xa3\xb9\xdb\xde\xd4\xe1\x49\x75\xd3\x6e\x6d\xec\xb3\x66\x15\x86\xd0\xac\x91\x88\x42\x8a\x44\xf0\x69\x01\x77\x37\x01\xc1\x09\x1e\x71\xec\x8e\x0f\x9e\x2c\x15\x42\x7a\x02\xe9\x57\x00\xf6\x8a\x9b\x67\xb3\xc6\x31\x74\x01\xb6\x9d\xdb\x1f\xf0\xc9\x9f\x11\x91\xa3\x67\x27\x89\x2d\x47\xa8\x3e\x65\xa2\xbd\x6a\xec\xd3\x71\xe0\xbb\x36\xc6\x11\x81\x63\x79\x24\x2d\xa8\x96\x78\x4e\x4c\x70\xab\x25\x34\x1d\x37\xa9\x21\x07\xd9\xcd\x97\xa0\x4d\x4d\xe0\x0d\x3b\x89\x4f\x13\x66\x1b\x18\x00\xee\x98\x8f\xee\xf1\x4a\x8f\x2d\x7f\xce\x07\xc5\x68\x49\xd7\x76\x47\x82\xd1\xa7\xbd\x78\x9a\xcd\x1a\xd9\x5b\x30\x85\x12\xe4\x18\x91\xc0\x42\xca\x7b\x9c\x08\x8d\x7c\x4b\x85\x37\xc4\x16\x6c\x5b\x6a\x0b\x8c\x69\x8b\x5a\x68\x76\xdb\xa4\xb8\xc0\x95\xa9\x94\xc5\xdb\x47\xbc\xd9\xa4\x0b\x7d\x3a\x74\x7d\x6c\x1f\x1e\xa0\x3f\x15\xd0\x6a\x38\xb6\xe6\x24\xb6\x6e\x29\x02\xd8\x04\xfc\x21\x55\x45\x05\xd7\x58\xd1\x6d\x2f\xec\xe8\x45\xb7\x49\x8a\x17\x98\x97\xc0\x1f\x12\xf4\x2d\x24\xd2\x1a\xfa\xe8\x5e\x7e\x29\x94\xc9\x20\x60\xd7\x16\x91\x2d\x42\x5a\xd9\x79\x04\x26\x60\x81\x60\x7a\xaa\x50\x01\x1a\x8f\xb1\x3c\x0f\xe7\xed\xf6\xd8\xc8\xf6\x5b\xa7\xa9\xe1\x5c\x2c\xe1\x3b\x18\xe8\x33\x9d\x7e\xcf\x14\x25\xd7\xc7\x6f\xd1\x3d\x98\x67\x3b\xd7\x73\x1b\xb8\x11\xbb\xab\xa6\xb7\x07\xa8\xa5\x37\x7a\x3e\xf5\x3c\x52\x3c\xbf\x3a\x95\x4f\xff\xdd\xc5\x26\xb7\x66\xb3\xf6\xa9\xf0\xf9\xbe\x5a\x2d\x7c\x21\x19\x93\xb9\x1a\x17\xf1\x7d\xea\x86\x73\x52\x6c\x9d\xbf\x4b\xbc\x0a\x42\xcb\x8f\xc6\x00\xbe\x1a\xcd\x68\x08\x2f\xee\x63\x1a\x45\xd6\x90\xaa\xab\x55\x3c\x72\x67\x4b\xb1\xa1\x43\x6c\x3d\x78\x25\xf8\x08\x4d\xc2\xd9\x0f\x70\x98\x33\x0a\x21\xd8\xc9\x0e\x89\x27\x86\x79\x08\x5b\x8b\x87\xd0\x61\x73\x2a\x5d\x24\x4a\x39\x44\x5e\x02\x11\x13\x1c\x43\x82\x61\xe1\xfa\x43\x46\x27\xe5\x60\x9e\xdc\x0b\x8b\xfb\x5d\xc9\xa3\xb3\xe0\x4e\x03\xc0\xe6\xfb\x13\x26\x49\xf0\x55\x60\x1a\x81\xc4\x52\x16\x69\x97\x11\x42\xd2\x92\x8e\x17\x50\x67\x6c\x85\x43\xd7\x2f\x33\xce\x61\x00\x2d\x9c\xb6\x7e\x00\x00\x93\x4c\xd4\x6c\xd6\x50\xce\xe0\x76\x96\x0f\x0e\xbb\x79\x4a\x07\x71\xda\x4f\xe5\x6d\x10\xba\x0f\x81\x1f\x5b\x1e\xe9\x59\x7d\x52\x7c\xdb\x5b\x36\x48\x78\xea\x8e\xad\x3e\x89\xe2\x60\x82\x88\x33\xf8\x05\x3a\xbe\xe2\x50\xd8\xd1\xed\x07\x64\x30\x0d\x11\x7e\xf8\x57\x59\x23\x92\xd1\xaf\x00\x8c\x85\x3e\x61\x9e\xeb\xa7\xdf\xb8\xc4\xe8\x5e\x2d\x1f\xdd\x20\x08\x67\x56\xe8\xf4\xac\x7e\x37\x0e\x26\xa9\x09\x3c\x75\x7d\x4a\x0e\x29\x75\x48\xf1\xf4\xb0\xa4\x1d\x90\x60\x0a\xb6\xad\x69\x04\x57\x19\xb0\xfc\x0e\x58\x41\xc8\xa0\x85\x30\xfd\xbe\x92\x45\xa5\x42\xc0\xeb\x53\x9a\x8b\x61\x65\xaa\x16\xe3\x9c\x11\x58\x2b\x8d\x60\xcc\xfa\x98\xea\xfb\x35\x0d\x63\xd7\x16\x53\x73\x9d\x4c\x8d\x8c\x1e\xc4\x98\xf3\xd3\xc3\x9c\xa6\xfb\xfa\xe2\x51\x7a\xa4\xe8\x3a\x41\x38\xe6\x0c\x3a\x3c\x7c\x74\x0b\xf6\x0a\x2d\x08\x7b\xb9\x40\x30\x2a\x36\x3b\xba\x90\x19\x56\x11\x17\xa3\x40\xf7\x19\x5c\x20\x27\xce\x72\x2e\x4b\x33\x1d\x9a\xb8\x8a\xd5\xd4\x43\xca\xc8\x1d\xc4\xe4\x62\x1a\x93\x62\xf7\xa2\x54\x26\xd6\xad\x45\x4e\x03\xfb\x96\x7f\x51\x25\xc5\xd3\x6e\xad\xa4\x1b\xd4\xc9\x51\x2d\x95\x74\xc3\xf5\xc9\x51\xfa\x18\x11\x7d\xa4\xb9\x7d\xe4\x20\x2b\xb5\x82\xa1\x47\x6d\x9f\x14\xbb\xed\x9c\x0e\x55\x33\x1d\xaa\x3e\xa2\x43\x83\x65\x1d\xaa\xea\x1d\x92\x67\xc3\x85\x4f\x8a\x1f\x2e\xce\x65\xe3\xe7\x41\x2c\x26\x89\x1d\x4a\x89\x0e\x2e\x17\x9c\x06\xf8\xd1\x16\x05\xde\x18\xfb\x55\xab\x2d\xde\xf4\x93\x6e\x0c\x06\xac\x1f\x8a\xdc\xfe\xc9\x1d\xd9\x58\xdc\x91\xa6\xe5\xdb\xd4\x23\xc5\x66\x23\x61\x45\x7b\x40\x60\x6b\x73\xa6\x18\x64\x28\x35\xf8\xc4\xa3\x42\xf5\xaf\x80\xc8\xff\xf1\x98\x3a\xae\x15\x53\x6f\xae\xe8\x27\xcf\x78\x4a\x57\xa6\x9e\xd2\x7b\x6a\x4f\x95\x51\xb4\x63\x84\x4a\xe1\xbb\x17\xbc\xe8\x86\x61\xa0\x38\x7c\x72\xf7\x34\x1e\x45\x9c\xa7\x21\xd4\x52\x87\x47\xda\x5f\x40\xbe\x2e\xdf\x51\x02\x10\x32\x52\xa9\xcf\x48\x7e\x19\x0b\xb0\x03\x0e\xb4\x01\xf0\x7c\x0f\x44\xe2\x9e\x44\x61\xc8\xe0\x81\xcb\x5b\x1e\x93\x39\x5c\x05\x5a\x12\x7a\x0d\x80\xe8\xc7\x6a\x3e\x20\xfa\xc2\xc7\x08\x84\xc2\x9b\x42\x6a\xc1\x4f\xfb\x51\xec\xc6\xd3\x98\x92\x62\xf7\x6a\x3f\x6f\xef\x6b\x36\xce\x73\x98\x67\x19\x37\x3f\xc6\x53\x45\xc7\xc2\x0b\x62\xb1\xd5\x6d\xe6\x1c\x10\xb5\xfe\xe2\x39\x48\x42\x75\xd8\x17\xad\x6e\x33\x53\xc2\x1c\x19\xa0\xc0\xcf\x15\x55\xd7\x2c\xee\x22\x8f\x2e\x5b\x9a\x77\x92\x1a\xea\x9c\xb8\xdb\xb6\xba\xcd\x1c\x77\x5b\xa4\xa7\x34\x29\xc2\x9a\x45\x4f\x4b\x39\xde\x51\x26\xbf\xda\xb4\x7b\x0f\x8f\xed\x16\xa4\x52\xd1\xb1\xe0\x40\x5a\x3c\xc8\x55\xf9\x5e\x0e\xf2\x56\xee\x3a\xd9\x21\xe6\x44\x3a\x02\xa9\xd9\x0d\x8d\x09\x6d\xca\x98\x01\xa2\x52\xa9\x28\x51\xfc\x0e\xbd\x27\xc5\xf6\xf9\x81\x14\x9e\x53\xf7\x96\xe9\x48\xa0\x16\x94\xf1\xf2\x79\x2b\x20\x69\x3e\x48\x75\xd0\xd8\xe7\x9d\x4d\xd6\x67\xed\xd6\xf7\xa9\x70\xb0\xfc\x5c\x63\x4d\x19\xb4\x07\xf0\xbc\x07\xf5\xa7\x78\xde\x3a\xcd\xe9\x60\x7f\x1a\x13\x27\xa0\x91\x5f\x88\x89\xe5\x38\x70\xc2\xe6\x28\x9a\x3b\x5b\x86\xee\xb5\x9e\x76\xec\x9a\x15\xd4\x83\x60\xe6\x2f\x56\x50\xa7\x1e\x06\xd6\x74\x69\xcc\x74\xd5\x6e\xce\xec\xef\xec\x18\xba\xfa\x76\xa5\xae\x0a\x2d\x52\xff\x62\x98\x1a\x43\x29\x1d\x86\x0a\x0f\x59\x42\x1e\x3a\x6d\x5d\xbf\x99\x4e\xe0\x56\x90\xaf\xbd\xec\x38\x86\xfe\x9e\xad\x70\x69\xc1\x76\x4f\xcd\x02\xd0\x45\xc3\x10\x6a\x0b\x75\x52\xec\x76\xeb\xc9\x05\x12\x73\x6c\x04\x03\x72\x54\x27\x32\x4f\x09\xf0\x55\x8f\xbd\x4b\x92\xb5\x28\x88\xc6\x0b\x4f\x59\xc3\xf0\xa8\x61\x78\xe7\x8b\x8f\x56\xad\xf3\x1b\xac\xf3\x1b\xa6\xce\x6f\xfc\xf5\x9d\x1f\x18\x3a\x7f\xb1\xb8\xf3\x07\xf4\xce\xb5\x69\x12\x5c\x86\xa6\x87\xe2\x41\xb3\xab\x1c\x32\x1c\x8e\xc5\x22\x07\xcd\x6e\xe2\xa9\x8d\x97\x0c\x24\xb0\x26\x08\x08\x21\x00\xbb\xf6\xa7\x0f\xbd\x56\xe7\x0c\x80\xeb\x1e\xab\xee\x34\x03\x3f\x72\x1d\x1a\x26\x25\x59\xbf\x0e\x5a\xcd\xce\xbb\x6e\xb7\x2c\x70\x46\x62\x11\xcd\x4c\xe9\x98\x70\x17\x8c\xbe\x97\x23\xba\xaf\xaa\x06\xf6\x5c\x2e\x3e\xd1\x72\x83\x0b\x32\x0e\x9c\x19\x80\x0f\xb3\xf3\xee\x6e\x2a\x91\x74\x88\xc2\x31\xb5\x42\x87\x3a\xa4\x11\x52\x8b\x14\xbb\x97\x0d\xc9\xfc\xf7\xae\xe7\x81\x5e\x25\xf9\x90\x33\xb8\x6d\xc3\xe0\xae\x97\x19\x55\x9c\x6c\xe3\xad\xa7\x34\xfe\xd2\xd0\xf8\xfb\x25\xab\x46\x8c\x5d\x88\x5c\xf7\xa2\xfb\xf8\x86\x4d\xbb\xe7\x87\x95\x96\x6b\xb2\x18\x95\x38\xca\x62\xb7\xd9\x2e\xa3\xbe\x7a\xd0\x6a\xb6\x93\xb3\x92\xdf\x07\x65\x42\xce\xf6\x41\x85\x90\x8b\x7e\x14\xc0\xe9\xce\x2e\xc5\x6c\x28\x68\x8e\x24\x76\x81\x14\x0f\x1a\x39\x1b\xfe\x2b\xcb\xd0\xe5\x9b\xe5\x1b\xa8\x0e\xd5\x83\x50\x45\x6f\x6a\xbb\x75\x3b\xa5\x2a\x2e\x0a\x13\x2d\x36\xbb\x6d\x2d\x26\xc7\xa3\x16\xcf\x6e\x39\x0e\xa2\x2c\x0e\x00\x5f\xe2\x10\x3d\x9a\x33\x9a\xbe\x61\x34\x9f\x7e\x6a\x4d\x99\xe3\xbb\x44\xa4\x44\x4e\x34\x97\xf8\x7a\xd1\x82\x6c\x76\xdb\xe9\xe5\x67\x88\x6a\x92\xfc\xb9\xe2\xee\xa4\xf2\x9a\xc3\x76\xbf\xf5\x8b\x6e\x73\xfd\xf2\x6c\xbd\x71\xd9\x24\x76\x30\x1e\x5b\xbe\x13\x71\x43\x98\x34\x3f\x0b\xcc\x16\xd5\xf0\xfc\x8c\x67\xc7\x82\xdd\x4a\xe4\x02\x15\x9e\xaa\x6e\xcc\x7d\x66\xad\x08\x5d\x5f\x93\x87\x00\xad\xfd\x40\x58\xa8\xd2\x13\x04\x60\x37\x0b\x36\x9d\x02\x4f\x41\x97\x33\x87\xb6\x61\x0e\x3f\x7f\x5e\xbc\x8a\x0c\x96\x71\xe0\x06\xf8\xc8\x96\x92\x54\xb9\x9c\x45\x21\xf5\xb0\x34\xb7\x9c\x04\xb2\x3a\x66\x02\xcc\xe9\x99\x49\xd9\xf8\xf2\x13\xd2\x95\xb9\xa3\x5c\x18\xef\x28\x89\x33\xc0\x02\xa6\xaa\xf5\xb4\xb8\x4f\x25\xd8\x4d\x5e\x9d\x67\x56\x3a\x0a\x41\xf5\xa8\x95\x0f\x99\x8b\x2e\x29\x8c\xaf\x6a\x33\xef\xa5\xf3\xb3\xc3\x54\x36\x11\x90\xa5\x04\xf1\xcd\x69\xbc\xa0\x2d\x49\x82\x55\xaf\xc8\xbb\x99\x15\xce\xb3\xc1\x4c\x9f\xaa\x5f\x2a\x00\x94\x57\x5c\xff\x47\xf1\xb3\xf3\xa2\xb4\x5b\xac\xfc\x5a\xfa\xcf\x75\xfe\x38\x89\x01\x1e\xf3\xa4\x7b\xd9\xea\x64\x8f\x51\xfe\x54\xff\xa2\x39\xd0\x24\x57\xb7\x0b\xb8\xba\xb1\x22\xb5\x2f\x06\x38\x81\xd4\x53\xb2\x19\x24\xe7\xa2\xdb\x34\xfa\xc4\x67\x7b\x53\x2a\x29\x98\x52\x8b\xae\x73\x17\xa9\xeb\x1c\xbc\xd1\xda\x73\x72\xc6\x1f\x10\x8a\x97\x67\x8f\x3f\xb4\x4c\x3a\xe6\x3f\xfe\x95\x7a\x48\x23\x71\x5e\x25\x97\x3c\x1f\x9e\x38\x47\x8a\x8d\xcb\xe6\xe3\x87\x68\xd2\x44\xbf\xfe\x2b\x87\x08\x91\xaa\xf7\xf5\x2a\x59\x23\x57\x3e\xf8\x29\x40\xf6\x30\x00\xe0\x41\x50\x94\x88\x92\x00\x1c\x47\xad\x98\x3a\x90\x23\x29\x72\xfb\x90\x31\x15\xdf\x88\x96\x2a\xe5\xaf\x31\xc6\x51\xb6\x74\x48\xd6\x84\xfe\xff\x92\x28\x30\x3b\xf8\xf8\xac\xb8\x37\x47\xa4\xd8\x7d\xd9\xac\xe1\xd1\xa3\x52\x38\x4a\x28\xec\x2c\xa5\xb0\xa3\x50\xd0\x7e\xce\xf7\x01\xb7\x38\xe9\xb3\x15\x45\xd3\x31\x25\xd0\x26\xb1\xbc\x99\x35\x8f\xf2\x27\x38\x3d\xaa\x53\xe8\x53\x8c\xce\xdf\x76\x80\x10\x12\x6c\x8b\xf3\xe8\x1d\xf5\x48\x2d\x3d\x86\xb3\xc5\xe5\xeb\xe9\xf2\xe7\x8b\xcb\x6f\x64\xdf\x9b\x99\xc0\xd5\xab\x2b\x0b\x17\x97\x9e\xdc\xa2\x2b\x99\xa8\x56\xf3\xf9\x58\xe4\xf1\x21\x8e\x86\xd7\x30\xf4\x2a\x1b\x3a\xb8\x7c\x8c\x56\x45\x93\x80\x9d\xeb\x87\x96\xd7\x0c\x15\xd0\xff\x28\xe8\x0f\xbd\x69\x6e\xfd\xc7\xbf\x86\x55\xdc\x98\xb7\x53\x28\x09\x2f\x65\xe1\x74\xd5\xf0\xdc\xa1\x0f\xd9\x67\x7a\xec\x4a\x57\x3c\x68\x35\x1b\xa7\xe7\x66\xa7\xd8\x81\xeb\x79\xc5\x42\x4b\x46\x70\x3e\x9e\x4d\x34\x72\x87\xa0\x4e\x5d\xc0\x4b\x77\x13\x51\xb7\xb8\x16\x53\x3c\xb8\x68\x66\x4c\x35\xc0\xb5\xff\xef\x7f\x96\x6b\xe2\x88\x96\x36\x6d\x91\x68\x51\x81\x0a\xe3\xf0\x4c\x00\x12\x4e\x79\x50\x3a\x66\xbb\x61\x8a\x18\x1e\xf9\x29\xf8\x10\x03\xbc\x59\x49\xc3\x8c\xe0\xb3\xb4\x5e\x48\xfc\x96\x16\x4f\xed\x8a\xf0\x14\x79\x2a\xc8\x65\x18\xd8\x34\x8a\x74\x08\xb4\x90\x89\x6f\xc4\x13\x73\xcb\x60\x0d\x5b\x01\x81\x40\x90\xb7\xbf\x4b\x80\x37\x74\xac\x93\x39\x60\x5b\xcd\xb3\x06\xd9\xd8\xaa\xa4\x5c\xc9\x12\x98\xbe\x62\x02\x81\xa7\x38\x9c\xa9\x0e\x5e\xa2\x8d\xa3\xbc\x36\x04\x20\x63\x6e\x0b\x1c\x0e\x72\x31\xf9\x75\x9d\xfc\x85\xcf\x74\xc5\x39\x89\x43\xcb\xe7\x89\x51\xe2\x00\x40\x7b\x10\x6c\x8d\x69\x41\x49\x9b\x2b\xac\xbc\x3c\x06\x6a\x03\x44\x7f\x48\x80\x6f\x3c\x95\xbb\x78\xaa\xd8\x5b\x43\xb1\x7a\xb6\x58\xdb\x50\x6c\xa3\xa2\xb9\x82\x62\x28\x2f\x60\xb6\x43\x16\x69\x2c\x0a\xdb\x7b\x64\x80\x70\x5e\xc0\x5c\x81\x28\x58\xda\xd5\x4a\xeb\x7c\x26\x59\x6f\x3d\xfc\x59\xc5\x67\x8f\x0f\xcd\x18\x2f\xca\xf6\xda\xff\x8f\xac\xcb\x8b\x9e\x39\x1e\x73\x54\x32\xf7\x4e\xfc\xf9\x23\x47\x3c\x32\x5d\x5e\xad\xbb\x8b\xba\xfa\x88\x8e\x2a\x9d\xcc\x06\x7f\xaf\xb6\xd1\xea\xd6\x4e\x54\x63\x98\x3c\x17\xbb\x8a\x6d\x11\x0f\xfe\x22\xb9\x8c\xf8\xb1\x9f\x79\x14\x2e\x5e\xf7\x6a\xd5\xaa\xaa\x1a\x95\x94\xd2\xe9\x37\xed\xe2\x75\xaf\x5e\xd7\x4a\xff\xaa\x94\xae\x2f\x2d\xfd\x42\x29\xbd\xb1\xb4\xf4\xda\xe2\x9e\x6c\xe8\xfd\xae\x2c\xee\x49\xaa\xf4\xfa\xe2\x9e\x88\xd2\xa0\xbe\x7b\x9e\xd1\x6d\x8b\xda\xa3\x20\x0b\xea\x67\x3a\xdc\x8a\x06\x75\xbd\x64\xf8\xec\x57\xc3\x67\x2f\x0c\x9f\xad\x19\x3e\xab\x18\x3e\x5b\xcf\x3b\x54\x31\x7e\xf4\x7f\x44\x21\xe1\xc8\x12\x86\xab\xeb\xa2\xd3\x2c\xd5\xa9\x85\xc7\x1c\xa4\x39\xb1\x26\x0b\x33\xd9\x48\xbd\x8f\xf5\x8c\x15\x7e\xbe\xb7\x47\x64\x2e\xc3\xd4\x19\xcd\x03\x43\x0b\xc5\x42\xc6\xb7\x1b\x92\xf6\x8c\xad\xc9\x6e\xd6\xd9\x5f\x56\x2b\x15\xc8\x1f\x7f\x10\xf9\xe7\x9a\x81\x4a\x6d\x39\x95\x5f\x75\x2a\x15\x03\x95\xfa\x72\x2a\x2f\x74\x2a\xeb\x06\x2a\x1b\x29\x2a\xcf\x88\x21\x88\x21\x37\x80\x35\x85\xab\x21\x6c\x05\xfa\x82\x02\x60\x5d\xe1\x71\x4d\x5e\x90\x02\xc7\xd4\x95\xb3\xf2\xd4\x4d\x70\xdf\xb2\x6f\xc5\x5b\xdb\x41\xab\xb9\x9f\x98\x5f\xaf\x7b\x9b\x75\xf4\x6a\x9e\x4e\x2a\x64\xe5\xa7\x1e\x58\x36\xdb\x4b\x2c\xdc\xd6\x1d\x25\x3c\x0a\xb5\x08\xb1\x05\x46\x8d\x36\xdf\xd5\xd0\x14\x20\xa0\xa7\x12\x85\x7c\x5b\x4a\x13\x1d\x73\x13\xf9\x0e\x7f\x39\x6e\xfd\x3f\x34\x6f\xaf\x99\x15\x3a\x0a\xf7\x0e\x55\xee\xd5\x6b\x4f\xe5\xde\xab\xc5\xdc\x53\x8d\x21\xb7\x74\x3e\xb1\x1c\x68\xfc\xe4\xb2\x91\xf1\x9b\x03\x72\x7b\xcb\x6d\xf7\xa6\x28\xe1\x13\x24\xbd\x97\x45\xe3\x38\x67\x37\x5e\x4f\x6f\x3b\xeb\xb3\x07\x6d\xff\xfe\x93\x6d\x73\x78\x13\xf5\xd4\x96\x0e\x6e\x5e\x30\xa3\x21\xba\xb8\xd9\x41\xe8\x63\x2a\xa1\x08\x6e\x6c\x8b\xcd\x41\xcf\x94\x8c\xf9\x3c\x09\x89\x1d\x0c\x7d\xf7\x01\x1d\x99\xd1\xe1\x56\xe2\x1e\x8f\x26\xa7\xac\x21\xd6\xce\xfe\x74\xd8\x0c\xc6\x13\x2b\x26\x21\xe5\x9e\xef\x6e\x84\xf6\xee\xb4\x9d\x09\x46\x7f\xb8\x78\x22\x0f\xa7\x9e\xc7\xd3\xde\x16\x3b\x6d\xf3\xad\xce\xce\x65\xa0\x82\x13\x9a\x7e\xc9\xe6\x5f\x28\x5c\x3b\xa3\xe3\x20\x9c\xc3\x1d\x6d\x7d\xea\xb3\xff\xac\x6c\x31\x83\x6e\x78\x86\xb3\x71\xbc\x78\x74\x8a\x7b\x5d\x9d\x14\x4f\xbb\xf5\x92\xee\x5d\x07\x8e\x4f\xe9\x07\x73\x2b\xca\x7a\xd8\x41\x63\xfe\x32\xf7\xba\xba\xee\x5e\xa7\xb4\xbe\xc1\x5a\xdf\x30\xb5\x9e\x7e\xf1\xce\x6d\x3d\x58\xd6\xfa\x46\x6e\xeb\xf5\x32\xe9\x80\x37\x2f\xeb\x44\x67\xd5\x5e\x74\x4c\xbd\xf8\x23\xbf\x17\x9d\x47\xf4\xa2\x6e\xec\x85\x69\x26\x8c\xbd\xf8\xb1\xac\x17\xf9\x33\x51\x53\x7a\x51\x33\xf6\xa2\xb6\x6a\x2f\xfe\x7b\x59\x2f\x52\xfe\x9f\x18\x7f\x4d\x5c\x3b\xf0\x11\x41\x9f\x6d\xcd\x33\xd7\x77\x82\x19\x89\xdd\xd8\xa3\xca\x23\x18\xec\x09\x08\x93\x07\xbd\x4a\x17\xd3\xa3\x1a\x3e\x15\x96\x98\xf6\x0c\x28\x08\x8c\x5e\x8f\x91\x33\x99\xfe\x4d\xfd\x5e\xd6\x85\xba\xbe\x16\x45\xb7\x34\x94\x8b\xf5\x90\x5a\x0e\xb1\x03\x2f\x08\xc9\xc4\xf2\x68\x1c\x1b\x49\x6d\x2e\x75\x63\x6c\x84\xc3\x88\xd8\xc1\x18\xc2\x13\x20\xd5\x11\x8f\x9b\x2a\x00\x88\x59\x6d\x37\x1c\xf6\x6b\xa4\x52\xa9\x90\x5d\xf8\xe0\x9c\x7d\x70\x5e\x50\x00\x90\xf1\x86\x1d\x4d\x3c\x57\xfa\xad\x47\x74\xec\xb2\xbe\xf9\x1c\x60\x87\x86\x56\x4c\x45\x6a\x00\x0e\x67\xe8\x86\x32\x3f\x9c\x19\xd3\xee\x53\xf5\x4b\x05\xa8\x16\x0b\xbb\xdc\x02\x07\x59\x4b\x2c\x37\x6c\x42\xe6\x65\x25\xcb\xb4\x0a\x1d\xba\x4e\xea\x12\x2d\x0f\x18\x74\x89\xfc\x11\x1a\x71\xbc\x30\x43\xa9\x52\x61\x37\x95\x5e\xb0\x11\x86\xd6\x9c\xa7\xd4\x7f\x46\x40\x8d\x2b\x8a\x1e\x9d\x63\x54\xcd\x1e\xa9\xee\xaa\x7f\xff\x96\x74\x77\x97\xbc\x78\x91\x7c\xa3\xdd\x20\x58\x9b\xa8\x78\xa4\x86\xf4\x49\x21\xf5\x2b\xa9\x0b\xd4\x34\x59\x09\xd2\x58\xc3\x63\x57\xa6\x2c\x79\x41\x34\x10\x38\xa5\x91\xdf\xf7\x34\xbe\x08\x48\xb5\x44\x81\x8d\x5d\x7f\x4a\xd3\x75\x79\x5b\x80\xaf\xaa\x3d\x0d\x16\xde\x14\xc8\x98\x5a\x7e\x04\x68\x68\x88\xcf\x8f\x99\xc0\x38\x2c\xa5\xe2\xa8\x8e\x02\xab\x24\xf5\x26\xfa\x40\x3c\xb7\x8f\x53\x10\x55\xc2\x61\xbf\x17\x7c\xa8\xd5\x8a\x6a\x5f\x3f\x25\xc3\x48\x20\xe4\xf4\x2e\x26\xf6\x09\x6d\xde\x10\xaf\x57\xe1\xc2\x0b\x52\xd8\x45\x25\x5c\xd6\x4c\xac\x65\x92\x07\x8a\x3a\x9e\xd7\xd1\xfb\x5a\xad\x17\x34\xbb\xdd\xa2\x46\x29\xbf\x63\x79\xe3\x21\x7b\x4a\x13\xbb\xa6\xa4\x4a\x38\x10\x75\xba\x96\x7a\x6d\x7c\xd9\x84\x41\xea\x14\x30\xf5\xc0\x6e\xa1\xc4\x98\x80\xf0\x4e\xda\x3e\xe5\xf6\x68\x38\xae\x93\x61\x18\xcc\x40\x9d\x70\x07\x5c\x95\x4b\x5b\xf8\x2f\x12\x0d\x77\xd1\x1e\x03\xfa\x19\x18\x8e\x9d\xe9\x78\x22\xcc\xaf\xb1\x1b\x52\x25\xe5\x0c\x40\x74\xca\x78\x2a\xbe\xfd\x41\xe3\xf3\xe2\x3f\x0b\xfd\xc0\x99\x17\x5e\x1b\xb6\x88\x1f\xc6\x2d\x16\xcc\x38\x98\x8f\x60\x10\x84\x74\x88\x98\x1b\xc0\x5e\xd3\x10\x6a\x4b\x76\xfd\x45\xfb\xa4\x08\xe0\xea\x03\x2a\x63\x1c\x5a\xb8\x9d\x41\xc2\x02\x7b\x04\x68\xfc\x3c\x4a\x13\xe2\xf1\x5c\x7f\x88\x04\x2f\xba\x4d\xed\xe5\xe4\x11\x3b\xa1\x02\xf5\x99\x49\x9c\x2a\xf7\x86\x46\x38\xd4\x76\xc1\x0f\xb5\x5a\x8e\xdc\xc2\xe6\x09\x4e\xea\xc5\x92\xa4\x2e\xea\xe4\xe0\x3d\x1d\x4a\xae\x36\x59\xc1\xa4\xf8\xae\x8a\xc1\x98\xc0\x76\xca\xc4\x00\x39\x8f\xf5\xc3\x28\x91\x4a\x5c\x3c\xa9\x19\xaa\x15\xbe\xe4\xc1\x7f\x7d\xc9\xe2\x40\x65\xc5\x80\x6d\x45\x4b\xc5\xa0\xf6\x7f\x62\xf0\x38\x31\xd8\x97\x5c\x35\x89\xc1\x3a\xbc\x5f\xd3\xd7\x1c\x74\x58\xe4\xaf\x65\x43\xae\xd5\x5f\x00\x56\xaf\xc3\x99\xc3\xbd\x92\x2a\x7f\x8d\xf0\xd4\x97\x0b\x0f\x61\xe2\x60\x48\xef\xc4\x63\xb0\xa2\x91\x35\x91\x6a\x65\x02\x7c\xef\x26\x28\x7a\x3c\xb0\x84\x47\x81\x80\x93\xde\x2f\x3c\xc7\x33\xab\xbb\x87\x71\xb7\xbf\x94\xb9\x0f\x00\x0f\xc3\xc5\x2b\x27\x22\x95\xbd\x96\x66\xea\x2a\x59\x23\xfb\xec\x62\x87\x7f\xd6\xc8\x1a\x69\xaf\xed\x53\x6b\x8c\x7f\xd7\xc1\xaf\xc0\xa1\xa1\xe7\xfa\x34\x75\x07\xb6\xe0\xe9\x1e\xb0\x12\x1d\xba\x36\xb0\xec\x38\x20\x91\x48\xe3\xc9\x67\x00\xaf\xc6\xb0\xcb\x93\x3a\xa8\x68\x27\xdc\x6a\x05\x1e\x5e\x10\x60\x03\xf9\xbe\xc0\x9c\x73\xd5\xed\x28\xb1\x54\x60\xcf\xc2\xce\x73\xe9\x16\x09\xd1\xb3\x21\x91\x98\x95\x44\xb2\x2e\xbd\xdc\xb6\x96\xec\xba\x8b\x57\x02\xf7\x10\x52\x59\x5c\xac\x94\xd6\xdd\xd4\xc2\x30\x22\xcb\x35\x41\x49\x61\x17\x65\x04\xc9\x66\x12\xb9\x55\x85\xc6\xd0\x14\x67\xd4\xe4\x49\x16\x98\x50\x3c\x76\x71\xd0\x5d\x3d\x91\x70\x8d\xbf\x4e\xa9\x5d\xac\xbd\xe6\x33\x99\x0b\x0a\xa1\x94\xe6\x59\x8c\x7a\x7a\x34\x00\x7c\x55\xd9\x6f\x35\xce\x16\xa4\xe6\xad\x1b\xda\xae\xbf\x4e\xa4\xe6\x67\x9b\xbf\x3a\x3f\x68\x75\x4e\xdb\xe7\xad\x85\x78\x15\x99\x2e\x54\x5f\xa3\x5c\xff\xf4\xe8\x4f\x2f\x9a\x27\x46\xf8\x3f\xbc\x18\xa1\x9f\x1f\xb1\x3d\x77\x82\xf6\x28\xe9\x59\x6b\x39\x6c\x95\x68\x36\x12\xea\x10\x67\x4a\x31\xed\x9a\x3d\x85\x64\xad\x36\x77\x08\xe7\x5a\x0f\x21\x0d\x12\xd2\x71\x10\x53\x62\x4d\x26\x10\xb6\x3b\xb2\x30\x60\x99\xa7\xc5\xee\x07\xf1\x88\xcc\x42\x97\xa3\x19\x40\x27\xf8\x2a\x90\x9d\x20\x36\x88\x1d\x8d\x22\xa6\xfc\x58\x9e\x37\x07\x4a\xd6\x2d\x45\x44\xfc\x79\x30\x0d\x49\x44\xa3\x28\x05\x00\x91\x10\x70\xac\xd8\x7a\x4a\xca\xca\x67\x90\x75\x29\x27\x19\x21\xae\xc5\xfa\x4f\xdc\x14\x65\x07\x77\xfb\xdb\x9b\x6b\xac\x93\xf2\x7e\x48\xf4\x11\x20\xa5\x89\xba\x7f\x0a\xcf\xd3\x08\x5d\x8f\xd0\xbd\x95\x83\x67\x7c\x48\x6a\x02\xd8\x85\xe5\x38\x21\x8d\xc0\x11\xd5\xf5\x6d\x9e\xe5\x3c\xc1\x65\x75\xfd\x98\x0e\xb9\xa7\x27\x60\x21\x7c\x00\xdc\x7a\x7c\xfc\xc5\xbc\xbf\x9e\xa7\x3d\xfa\xae\xb4\xc5\xfc\xe3\x93\x3d\x89\xaa\xb5\xfa\xc6\xe6\xd6\xf6\xcb\x2f\xbf\x82\x37\xe2\xfa\x0a\xe7\x2f\xcc\xd6\x1e\xbf\xee\x57\xac\x38\xe8\xcb\x7d\x42\x54\x66\x45\x4c\x47\xab\x1d\x4c\xe6\xdc\xc5\x2c\x68\x0a\x16\x68\xd9\x41\xa1\xa6\xae\xfb\x5e\x75\xee\xef\x62\x32\xa1\x21\xe0\x9a\x4e\x3d\x15\x2e\x22\x49\x5d\x23\xdc\xae\x71\x85\x00\xf7\xfb\x73\x12\xde\xdf\xc5\x6b\x53\xdf\x95\xb9\x7d\xdc\x38\xca\x90\x22\x17\x7d\x40\x42\xf2\xe6\x8c\xad\x32\xb5\x1b\x1c\xea\x50\x36\x08\x89\x3d\x8d\xe2\x60\x2c\x6a\x09\x5c\x03\xcf\x85\xd4\xf2\x03\x3a\x03\x47\x66\x08\xf4\x62\xa7\x5e\x24\x00\x55\xc8\xc0\xf5\x1d\x9e\x2a\x48\xf6\x9a\xda\x23\xdf\xb5\xd9\x42\x61\x3d\x0f\x29\xae\x5c\x82\x79\x84\x12\xe4\x5f\x74\x27\xe7\x2d\x92\xa0\x4f\xe7\xe0\x46\xf6\x1b\x7e\x02\x16\xa2\xdf\x77\xc5\x5f\x6c\x06\xca\x64\x1a\x4d\x81\xec\xae\x4c\x5d\xe3\xfc\x6e\x58\x15\x2f\x5f\xbe\x5c\xe5\x88\x9a\x0b\x0d\x6b\xca\xd8\x78\x16\x38\x4b\x74\xb7\x32\xa9\x95\x3e\x55\xbf\x68\x99\xe8\x45\x55\xfd\x08\xc1\xfb\x8f\x9a\x66\xfc\x10\x06\xaf\x7c\x80\x45\x76\xc1\x9a\xb4\xcb\x2f\x50\xfc\x5b\xd6\x25\xf8\xbc\x2c\x6e\x56\x62\xb3\x5e\xea\x77\xfb\xe9\x1f\xbb\x5f\x5e\xec\x16\xd9\x7f\x7e\x2d\x15\x77\x8b\x9f\x3e\x47\x9f\xbb\x5f\x7e\x2d\x95\xde\x48\x3f\x5c\x83\x27\x2e\xc1\xe6\xb8\xfb\x6d\xed\x4b\xf2\xc4\x2f\x30\x30\xf0\x9b\x8d\x2f\x69\xe0\xac\xd4\x75\x0f\xc8\x14\x5e\x8b\xde\x8b\xeb\x1f\xa7\xf2\x63\x15\x90\x24\xb3\x6f\x02\xb0\x99\xcb\xca\x92\xa3\x3e\x0f\x04\x89\x03\xee\x16\xfb\x9e\xe5\xdf\x96\xd4\x38\xc9\x62\xbb\xf9\x36\x13\x88\xd1\x6d\x7f\x2a\xfc\xfd\x31\x46\x45\x17\xe8\x77\x27\x96\xad\x59\x14\x5d\x2b\x1c\x62\x02\xb4\x92\xe9\x0d\xe5\x6a\x42\x8a\xcd\xab\x2b\x63\xf3\x8d\xc7\x34\x8f\xc7\xec\xd5\xe4\x11\x6d\x1f\x30\xce\x16\x9b\x57\x07\xc6\xd6\xf7\x1f\xdf\x3a\x04\x3c\xae\xde\xbe\x78\xbc\x2b\x36\xaf\x0e\x8d\x5d\x68\x3e\xbe\x0b\x60\xdb\x7e\x44\x1f\xd8\x4d\x48\x74\x62\xdf\xd8\x89\x83\xc7\x77\x02\x90\x49\x56\xef\x83\x12\xd9\xda\x3c\x3f\x2d\xa5\x77\x7f\xcf\xbd\xa5\xea\x94\x95\x21\x3f\xca\x44\xbb\xe7\x8c\x83\x3b\x2a\x71\xa5\x00\x55\xc8\x4f\x72\xdb\x32\x62\x00\xeb\x01\x19\x3b\xbd\xb4\x73\x07\x8c\xb2\xf5\x27\xcf\xf6\x23\xc1\x2a\xf8\xf0\x2e\x99\x0a\x04\x3a\x11\x67\xc7\xe5\x62\x76\x5c\x4d\xfe\x12\x66\x1c\xfe\xa9\x0b\xef\x69\xac\x48\xde\x60\x1a\xfd\x28\xf0\x20\xaa\xbf\xf9\x36\x1b\x30\xc6\xfa\x7b\xf4\xc8\xc7\x0f\xad\x79\x63\xb7\xc9\x5a\x3a\xc3\xa0\x98\x21\x1e\xf1\xcd\xd6\xcb\xa5\xb1\x33\x6f\x9f\xd4\x19\x41\x37\xbf\x3b\xa6\xb4\x25\xe9\x9f\x74\xe5\xda\xc2\xb1\x88\xfd\x47\x09\xc4\x2e\x36\x39\x62\x50\x7a\x54\xed\xe5\x0a\x85\xad\xbe\x6e\xa4\x47\xc0\xc4\x40\x14\xc0\xac\xb3\xb6\x67\x8d\x27\x45\xf8\xac\x4c\x6a\xe5\x2c\xb6\x2a\xa5\x7e\xd7\x7d\xa0\x95\x99\xeb\xf0\xcc\x29\xf2\xe9\xc2\xc5\x17\x0b\x97\xfc\x86\x44\x77\x89\xfb\xe2\x85\x86\x32\x11\xe7\xa3\x09\xa5\xce\xc5\x56\xc8\x54\x16\xd7\x87\x04\x1f\x9e\x35\x27\xc5\xd6\x41\x19\x91\xd4\xcd\x07\xc3\xb1\xfe\x0e\x0d\x9f\xbd\x39\x5e\xc5\x49\x8b\xab\xed\x46\x15\x46\x4b\x85\x44\xfe\xf8\x03\x0b\x2a\xa9\x49\xf5\x61\x51\xd6\xeb\x7d\xea\x05\xb3\x62\x1a\xab\x9e\x57\xac\x2d\xa8\xd8\xe8\x07\x02\xd1\x32\x5b\xb1\x6e\xae\xa8\xe0\x56\x66\xeb\x6c\xe8\xb9\x48\xb9\xff\x82\x13\xd8\x11\x89\xac\x39\xe2\xf4\xe1\x63\xcb\x2f\xc8\x6f\x70\x6d\x41\x78\x82\x5f\x44\x4e\x9a\x82\xe7\xa1\xb9\x1d\x9a\x12\xe4\x00\x6c\x84\x4f\x4d\xc4\xae\x4f\xe4\xd6\xf5\x3c\x19\xc5\xc5\xd1\xb4\xed\x5b\x88\x6f\x8e\x48\x38\x15\xc8\x95\xf9\xdd\x37\x4e\x3f\x02\x3f\xb5\x4e\xf9\xdc\x67\x91\x28\xd8\x3c\x9f\x98\xe6\xfe\xe4\x5f\x31\xf7\xbd\x00\x8f\xfa\x27\xcc\x7e\x2f\x80\x03\xfa\x71\xd3\x0f\x35\xd9\xa9\x64\xe0\x21\x57\x2d\xd9\xb7\x4c\x9b\x34\xb3\xee\xf4\xf1\xca\x24\x10\x5c\x45\x91\xe0\x00\x22\xbc\x03\x07\xe6\x0e\x9c\x3d\xa6\x03\x0e\x50\x7c\x6c\x07\x9a\x8a\x52\x7d\xc0\x95\xea\x67\x09\x3e\x19\x06\x7f\x82\xad\x3a\x92\x40\x69\xf0\x6a\x07\x29\x55\x3c\x3a\x88\xcb\x09\x78\xa4\xa5\x1d\xea\x02\x6a\xc4\x34\xb2\x25\xf1\xf9\xa6\x91\xb1\x9e\xae\x34\x32\x0e\x8b\xcd\xf4\xf4\xae\x59\x4d\xef\x3e\xa6\xf5\x3b\x8e\x7f\xbf\x9a\xa2\xce\x1b\x47\x45\xbd\x8b\xdb\x31\x69\x78\x51\x40\x0a\x6d\xdf\x8d\x5d\x2b\xa6\x64\xe4\x0e\x47\x1e\x62\xd5\x01\xdc\x79\x1c\x5a\x90\x47\xa6\x50\x21\x06\xc7\x22\xdc\x8a\x26\x56\x98\x09\xca\x63\x43\xe9\x2d\x1e\x4a\x2a\xf2\x54\xb5\xf6\xff\xc6\x96\x9c\x61\xd9\x88\xf1\xae\x7a\x35\xe8\x24\x29\x40\x38\x36\xe7\x80\x5a\xf1\x34\xa4\x12\x99\x15\xaf\xaa\x90\x0d\x24\x9d\x3a\x51\x3c\x50\x2b\x5e\xe3\x9f\xc8\xef\xe4\x32\x22\x3d\x19\x97\x17\x8e\x2d\xcf\x9b\x97\xc9\x2f\xe0\xa2\xf5\x8b\x80\xad\xe4\xf9\x81\xb1\xad\x0a\x69\x83\x95\x90\x87\xf7\x81\xa5\x90\x97\x93\x09\x26\xfb\xae\xe7\xc6\xf3\x24\xf1\xa4\xec\x26\x80\xeb\x8e\x27\x98\xb9\xd5\x22\x8e\x3b\x00\xfb\x5d\x2c\x7b\x29\x30\x3d\x60\x20\x8c\xd6\x98\x47\xea\xc5\x81\x1e\x44\x78\x19\xf1\xb4\x34\xaf\x93\xe7\x85\x83\x00\x53\x19\xd1\x98\x1b\xa8\xd6\xc1\x9d\xc6\xb3\xfa\xd4\x8b\xc8\x14\xa2\x7b\x47\xf4\xde\x72\xa8\xed\x8e\xd1\x8f\x9b\xbf\x44\xf0\x9a\xdf\xa7\x34\x9c\x3f\xa6\x6e\x7d\xc5\x56\x45\xa8\x0b\xab\xb3\xb1\x72\x7b\xb2\xd6\x6a\x91\xa3\x4c\x48\x7f\xef\x2d\x41\xac\x80\x13\x4d\xdd\x8a\x5a\x39\xf7\xfb\x0f\x8f\x59\xb9\xda\xa9\xf3\x84\x0b\xa6\xa6\x65\xee\x9b\xb5\xcc\x9b\xff\x57\xb5\xcc\x3e\x1f\x65\xbe\x9a\x99\xdc\x67\xe4\x15\x22\xb9\xd8\xbc\x55\xf0\x44\xba\xe0\x19\x16\x3d\xe5\x1e\xf4\x5f\x29\x00\x33\x7e\x37\x5a\xd8\x89\x0e\x80\x0e\xdc\x41\x27\x3a\x46\xaa\xd6\xcf\xdc\xae\x96\xe0\x2e\xe5\xe5\xee\x5b\x70\xa7\x31\x6e\x9a\x13\x11\xda\x37\x91\x37\xe8\x61\x68\x4d\x46\xae\xad\x25\x1f\x7e\x1c\x60\x10\x1b\x7c\x7f\x89\x17\x39\xf5\x1d\x01\x0f\x94\x38\x64\x91\xe2\x65\xe8\x8e\xad\x70\x4e\x0e\x92\x79\xd5\xa1\x7b\xc4\x6d\x7e\x64\x85\x0e\xbe\x87\xc0\x5b\x02\xcf\x54\x4b\x0a\xe8\x02\x00\xaf\x01\x0d\xcc\x7a\xe8\x10\xc8\xfd\x83\xb8\x12\x6c\x26\x0a\xa8\x37\xbb\x31\xa0\x6a\xf4\x29\x1e\x17\x76\x10\x86\x90\xa6\x97\x93\xb3\x08\x44\xe4\x24\x69\xa2\x02\x78\x81\xf8\x15\x8d\xd7\x9e\x47\x78\x4a\x7b\x52\xc8\xe5\x4b\x01\xce\x4b\x03\x36\x74\xc6\x35\xd8\x74\x60\x3e\x37\xbc\x7e\xff\xf1\x87\xf1\x4d\x3c\x57\xe3\x5d\x88\xeb\x92\x79\x4c\x33\x4f\x49\x97\xda\x81\xef\xfc\xfc\xa4\x14\x0c\x5c\x67\xa4\x56\x62\xbc\xc6\x75\x98\x2f\x9d\xed\xe0\xc6\xb4\x12\xe7\x7f\x5f\xc2\xfa\xe5\x0c\xfc\xbd\xba\x5b\xdf\xda\xde\xad\xa6\xc1\x71\xc0\xf4\x64\xd8\xa4\xae\x2f\xcd\xbb\x8e\xf3\xc8\xfd\x41\x50\xc4\x9d\xa0\x13\xcc\x56\x35\xc1\x28\xd8\x71\x4c\x8f\x96\x70\xba\x89\x4d\xe6\xed\xf5\x65\xde\x3e\xba\xdc\x70\x33\x30\xec\x9e\x6f\xd5\xdd\xb3\x67\xf5\x49\x13\x50\x11\x8a\xbd\xfd\x2c\xfc\x23\x2b\x3f\xfc\xab\xd6\xc3\xfa\x3a\x6f\x5a\x00\x2f\xb3\xeb\x01\x5e\x0d\x72\x6f\xbb\xfc\x30\x6a\xf0\x3d\xb7\x08\x81\x0c\xe9\x5b\x9f\xb9\xdd\x8d\x4c\xbb\xf0\x04\x29\x40\x9f\x73\x9b\x6c\x78\x1e\x6f\x35\x32\x9c\x81\x5d\x2a\x12\xfe\x75\xb3\xf0\xca\x8c\x7d\xa3\x25\xd0\x99\x86\x93\xd9\xac\x8f\x67\x8f\x6a\x25\x59\x61\x66\xcc\xee\x97\x32\x44\x98\x64\x7b\x9c\x4e\x39\x81\x48\x85\x98\x66\xcf\x38\x82\x37\x7f\xed\x10\x78\xde\xbe\x47\x8c\xe0\x8c\x3a\xae\x45\x9a\xc1\x64\x4e\x8a\x67\x28\xb4\xa9\xcf\xca\x08\x33\x30\xa1\xb6\x3b\x70\x6d\x15\xfa\x2a\xa2\x09\x7e\x93\xc0\xd7\xc4\x43\xd6\xf5\xd9\x81\x6a\xba\x60\x99\x98\xe2\x9a\xac\x26\xee\x12\x24\x78\xb8\x55\xa0\xb4\x74\xcc\xd2\xe2\xfd\xeb\xa4\x45\x59\x4a\x0b\xc5\x85\x47\xd6\x60\x42\x46\xb3\xc0\xfc\xb5\xa3\x58\x24\x30\x39\x83\x50\x34\x4e\xf5\xf8\x3c\x4a\x50\xbe\xdb\x06\xcf\x78\x78\x2a\x0f\x06\x09\xa2\x57\x19\xb0\x06\xe7\xc2\x50\x67\x09\x5a\x3c\xaa\x21\x22\x7d\x2b\x42\x54\x64\xee\x7d\x2f\x6a\xf2\x6b\x6c\xc5\xc4\xad\xf1\x8a\xd8\xba\x43\x1a\xd7\xb7\xb6\x8b\xae\x0a\x56\x95\x77\x73\x27\x2e\x79\x41\xea\xa6\x3d\xd8\x05\x6f\x74\xf2\x7c\x8f\x6c\xe9\xc8\xba\x3c\x89\x92\xe2\x3d\x91\x51\x53\x81\x68\x99\x54\x93\x04\xf5\x6a\xe7\x7a\xe1\x94\xa2\xeb\xe1\xea\x5d\xdc\x5a\xdc\xc5\xba\xb1\x8b\xe2\x3d\x3d\x34\x5c\x99\xb4\x2e\x62\xb1\x61\x4e\xb1\x0d\xbd\x58\x3f\xa7\xd8\x26\x16\x53\xf9\x52\x08\x87\xfd\x22\xf8\x72\x43\x4e\xe6\x32\xfb\x75\x98\xfc\xda\x67\xbf\x96\x0a\x92\x49\x60\x26\x8d\xe3\x30\x5a\x25\xec\x21\xb1\x9b\x9a\x19\x27\x58\x0b\x04\xd5\x60\xb5\x8c\x43\xdc\x13\x57\x99\xd1\xa8\x8b\xdc\x50\x38\x21\x8c\xab\xbf\x91\x8d\xaa\x1e\xa4\xac\xd8\x79\xe1\xa8\xe5\x51\x8d\x45\x6e\x2a\x29\x25\x00\x0f\x86\x21\xe4\x99\x7d\x31\xa1\x53\xe0\x39\xe9\xda\xfd\xc0\x4b\x62\x29\xf3\x28\xd4\x05\x85\x43\xcb\xf5\xe3\x34\x89\x01\xfb\x70\x29\x8d\x0d\x99\xe4\x37\xb6\x3c\xd7\x4e\x13\x71\xe1\xd3\xa5\x54\x64\xaa\xe0\x8c\xf7\x9f\x20\x34\x15\x5f\x2c\xa5\xb5\x25\xf9\xe2\xb9\xfe\x6d\x86\x31\xec\xc3\xa5\x34\x5e\x26\xa9\x8b\x01\xa6\x37\x33\x2c\xfc\x78\x29\x9d\x1d\x85\x0e\xa6\x00\x35\x50\xc2\x2f\x96\xd2\x7a\x25\x68\x35\xc3\x00\x52\x48\x05\xd3\xcc\x9c\x45\x71\xe8\xde\x52\xb1\x57\x2f\x9d\xff\x7a\x22\x8c\x31\x01\x91\xf9\x1b\x9c\xf0\x03\x93\x3c\x70\x91\xe2\x21\xb2\x66\x59\xd1\xbe\x34\x34\xb8\xa1\x36\xe8\x2e\x96\x98\x65\xb4\x36\x55\x5a\x52\x3c\x32\x2b\x41\x15\x9c\x65\x24\xb7\x34\x7e\x2c\x12\x9f\x65\x94\xa4\x00\x75\x63\x6a\x39\xf3\x7c\xf9\x59\x46\x48\x4a\xd0\xf5\x72\xf9\x59\x46\xeb\x95\x3a\x3c\x7b\x75\x29\xd2\xe9\x3e\x4b\xe3\x0d\xe0\x7e\xb7\x55\xd5\x42\xae\x38\x4c\xdb\x20\x08\xe9\x7a\x3a\xb0\x01\xf3\x98\xf1\xd4\x9b\x23\xcb\x1b\x30\x65\xa2\xb6\xad\xc7\x0a\x26\xa4\x44\x05\xa6\x38\xd4\xb7\x52\xc5\x20\xe5\x0b\xcf\x9a\xe7\xde\x51\x12\x81\x6e\x3b\xe7\x85\x5c\x9f\x0c\xa6\xe0\xc5\x2a\x88\x7d\x9f\x5a\x9e\x3b\x70\xa9\x43\xd8\x61\x15\x96\xc9\xb0\x4c\xfa\x25\x70\xd8\xab\xa4\x76\xeb\xdf\xc8\xc6\x8e\xea\x38\xc6\x45\x5d\x86\x95\x74\x31\x24\x1b\xdc\xfb\xc9\x1a\xd9\xa8\xca\xe0\x2c\xc3\x36\xa9\x51\x62\x5b\xae\x1b\x46\x31\xb1\x47\xd4\xbe\x45\x2b\x79\x38\xa5\xbc\xd3\x80\x71\xc1\xb1\xe6\xf9\x0f\xb8\xc9\x09\x3d\x82\xec\xa5\xd5\x8a\x64\x39\x02\xfe\x83\x2c\xf8\x1c\x53\x40\xea\x28\x47\xf9\xc3\x80\x2f\xba\x9d\xe6\xd7\xce\xd1\xfe\xee\x82\x1a\x7c\x63\x81\x36\x34\x58\x21\x97\xbc\xd8\x23\x5b\x0a\x96\x4f\x3a\xe1\x21\xee\x5f\x72\xd0\x72\x36\x95\x02\x60\xf8\xc5\x21\xa2\x5a\xa7\xf6\x04\xe2\x3d\x18\x3f\x61\x58\x9a\x3d\x31\x0b\x72\x04\xbd\xa9\xeb\x1f\x41\xfd\xdf\xc5\x58\x17\xc4\x18\xe2\x4f\x2a\xd2\x70\x09\x03\x6d\x15\xc5\x28\x5f\x14\x5e\xad\x26\x54\x72\x36\x0e\x5a\x87\x8d\xab\xd3\x5e\x9e\x74\xfd\x46\x36\x0d\x62\x9a\xac\xb9\x94\x98\x6e\x2e\x12\xd3\xcd\x7f\x37\x31\x35\x0d\x63\xb1\x98\x2a\x9b\xcd\xff\x89\xa9\x91\x81\x76\x16\x6c\x2b\xc3\x81\x15\xb8\x2f\xc5\x52\x90\x32\x9d\x0b\xbf\xef\x91\x57\x55\xf2\xb7\xbf\x81\xf0\xfd\xb6\x47\x5e\xbd\x4c\x66\x79\xc9\x7e\xfa\xaa\x4a\x5e\x90\x9d\xdd\x3c\xb2\xb5\xaa\x4a\xb7\x56\xcd\x10\xce\x5d\x01\xac\x26\x50\x16\x1c\x80\xae\xf3\xa3\x8f\xc6\x07\xa8\x90\x47\xd9\xf7\x8c\x74\x44\x61\xc9\xec\xa7\x95\xa9\x97\x0e\x41\x4b\xbf\x7c\xd3\x18\x1f\x43\xd7\x22\x6e\x98\x21\x02\xa4\x04\xdf\x4b\x1f\xf9\x66\xb8\x04\x28\x83\xdb\xcb\xd9\x05\x66\x1a\x89\x0c\xe2\xc5\x83\x6e\x27\xc7\x38\xb4\x45\xd6\xf4\xc2\x15\xd2\xa1\xd1\xd4\x8b\x49\xf1\xe2\xa4\x44\xdc\x08\x72\x58\x56\x09\x38\xcc\x6f\x93\x35\x41\x32\x6b\x8c\xbd\xec\x94\xc8\xa7\x30\x98\xed\xda\xf0\x24\xf4\x45\x12\xe2\x34\x42\xb2\x4b\x6c\xd2\x31\x8c\xc9\x7f\xf4\x63\x3d\x37\x6e\x6e\xad\xfc\xc8\x50\xf5\x0b\xab\xd9\x4b\xb7\xd5\x1b\x61\x18\xcc\x4c\xb7\xd7\xc4\xde\x5d\x62\x97\x76\x2d\x26\x3e\xbf\x7c\xf2\x52\x26\xaa\x2c\xb7\xec\xc3\x75\x3b\x98\xa9\xb1\xe2\xec\xf7\x8e\xe1\xb5\xe4\x80\x3f\xeb\xf3\x24\xe0\xa1\x0a\xd4\xde\xa7\x84\xfa\x90\xd3\x92\xdc\xb9\x16\x91\x82\xf4\x48\xd1\xf3\xff\x5c\xd1\xdb\x26\x8f\x11\x27\x78\x01\xe8\xb6\xc9\x1b\x45\x90\x48\x6d\x2b\x21\x71\x89\xb6\x4c\xc8\x9f\x3e\x8d\x92\xe2\x35\x26\xbd\xa4\x18\x32\x4d\xbd\x44\x82\xf0\x99\xc0\x0c\x16\x5f\xd7\xd8\xd7\x6c\xf4\x58\x04\x0c\xab\x75\x85\xf0\xd5\xc1\x49\x86\x68\x1d\x89\x22\xfa\x0d\x75\x18\x5d\xf9\x0d\xd0\xe3\x9f\x23\x31\x65\xdd\x9c\x88\xb5\x9f\xa5\xf8\x92\xec\x92\x1a\xd9\x25\x55\xf8\xe7\x93\xe2\x79\x10\xc6\x23\xd2\x18\xd3\xd0\xb5\x2d\x5f\x41\x3b\x86\x64\x06\x56\x14\x43\x3a\x24\x19\xcc\x14\xa1\x9d\x8e\xc4\x01\xb9\xee\x6d\xb2\x0d\x94\x4c\x27\x98\x2c\xd6\xa1\x7e\x10\xd3\x64\xe3\x81\x91\x4a\x72\xac\xc4\xe9\x49\xb5\x06\x2f\x5c\xd4\x66\x9a\x36\x66\x65\x21\x5b\x1b\x49\xcf\x4f\x03\x1b\xb2\x06\xa4\x3b\xbe\x45\x36\x88\x2f\xbf\xb5\xee\x2c\xd7\x63\xa2\x56\x66\x8b\x0c\xfd\x47\xa8\xb3\xe6\xfa\x65\xd9\x9c\x64\xd5\x16\x0c\xf3\x3c\x10\x95\xcb\x98\x9d\xd2\x28\x7c\x6f\x9e\xbc\x49\xfc\x3f\xb5\xa2\x97\x6d\x4f\xb5\xd5\xb7\xbc\x4f\x6f\x6a\xb5\x55\x77\xbd\xfa\x63\xc8\xd6\x57\x27\xbb\xfd\x98\xde\xd6\x77\x6b\xbb\xd5\xdd\x95\x77\xea\xad\x8d\x47\x10\xdf\x92\x64\xb5\xb4\x89\xfc\x99\x58\x04\xa1\xa1\xb3\x6b\x1c\x10\x87\xda\xae\x03\x68\xe9\x00\x34\x19\x07\x64\xc4\xfe\x86\x27\x93\x00\xb7\x99\x24\xa5\x3d\x77\xa4\x9a\x46\xac\xe4\x7c\x92\x9c\xe8\xd7\x10\xab\x8c\x9e\x4f\xd2\x59\x4a\x2e\x57\xc5\x17\xea\x9c\xde\xd1\x30\xd3\x84\xe2\xf2\xf4\x96\x7d\xe5\xa2\xdb\x98\xee\x1c\x07\x3a\x84\x88\x28\xe5\x9b\xbc\xe2\xef\xd4\x00\xbc\x73\x23\xe9\x67\x98\x13\xd1\x0f\xf4\x70\xc8\xa1\x7b\x47\xfd\x32\x67\x85\x4c\x62\xc8\xed\x98\x65\x7e\xa8\xb8\x11\x42\x9f\x3f\xda\x0b\xe3\xf7\xc9\x12\x37\x8c\x60\x10\x4b\xec\x4e\xee\x90\x06\xaf\x74\x3d\xb3\x4b\xcb\xf3\xc9\xe3\x21\xcd\xa2\x60\x10\x77\x0c\xb0\x66\x1d\xc4\x61\x46\x2c\x76\x7c\xaf\x82\x0c\x4c\x67\xab\x25\xb1\x4c\x77\xed\x3f\x73\x86\x9a\xda\xd7\xf2\x8a\xa9\xfa\x63\x16\x18\x1e\x81\x0e\x4f\x9f\xd6\xb3\x5f\x96\x34\x79\x1a\x58\x0e\x39\x6d\x1d\x44\xd0\xcc\xe9\x2a\xad\x10\x82\x21\xed\x7d\xaa\x85\x35\x5b\x11\xb9\x73\xc3\x78\x6a\x79\x48\x2f\xb8\xa3\xa1\x67\xcd\x01\x7c\xe2\x57\x0d\xa7\x95\x49\xb7\xe5\xcf\x21\x49\xb3\x15\x66\x53\xdd\xb1\x7e\x7f\x5f\x81\x53\x1c\x2d\x21\x9e\x7b\x94\x33\xe9\x8a\x29\x20\xd7\xbd\x2d\x0e\x66\x9b\x26\x4a\xbe\xaf\x04\x02\xb0\xd8\xdd\x5b\x98\xff\x15\x97\xef\x1c\xbf\xed\xa7\x84\x98\xe7\xd2\x00\x1b\x78\x31\x79\x2e\x5e\xd5\x05\xfc\x2f\xe8\x84\xd1\x25\x21\x1d\x53\xf0\x67\x05\xfb\x3f\x95\x1d\x9b\xff\xa3\x1d\x59\xc4\x92\x9c\xf3\xf6\x49\xf0\x0b\x4f\xe5\x46\xce\xe1\xfc\xe7\xf7\x21\xc3\x08\x13\x24\x86\x08\x90\x55\x57\x30\x06\xc8\x5a\xe1\xd0\xe4\x81\x02\x16\x68\x25\xa1\x7b\x18\xc4\x1c\x73\x3b\x79\xa1\xc6\x1d\xe0\x31\x29\xde\x60\x7f\x5c\x61\xa3\x41\x67\x70\x76\x00\x77\xe8\x10\x6e\x2c\x70\x4a\xed\x9b\x1d\x1c\xc2\xa7\x02\x8d\x88\xc0\x6e\x8c\x8e\xe9\x05\x13\x01\xb6\x56\xfd\x42\xde\xa4\xb0\xda\xaa\x5f\xca\xa4\x56\x2d\x91\xb5\x1a\x79\x2d\x1f\x8d\x93\xca\xfb\x68\x91\xe7\xf5\x6b\xd9\xfa\x35\x51\x9f\xa8\x04\x32\x33\x7b\xdd\xc3\xb1\xe3\xb8\x8b\xb2\x67\x65\xad\x9d\x45\xe1\x82\x32\x44\xae\x8a\x6f\xab\x06\xb0\xdd\x8c\xff\x05\x80\x92\x3d\xd2\x56\xf2\x26\x5c\x92\x25\x1a\x41\x9a\x14\xe7\x08\xd7\x27\x1d\x6a\xc7\x96\x3f\x9c\x7a\x56\xc8\x73\x04\x1e\xb4\x9a\xcd\x46\xa7\x51\x7a\x54\xdb\xff\xb9\xa4\x6d\x40\x2d\xe6\xb2\x5e\x64\x1a\x47\xa5\xfb\xb1\x5b\x32\x10\x8a\x9e\x8a\x5b\x0c\x2d\xfc\x39\x7c\x8c\x16\x8f\x05\x21\x28\xc9\xd8\xf2\xdd\x89\xf4\x0c\x87\x47\x1d\x27\x66\x75\xca\x22\x44\x95\xfd\x97\xde\xc7\xd4\x8f\xdc\xc0\x8f\x1e\xb9\x2a\xe3\x65\x6e\x46\xf8\xe8\xb6\xc2\x6c\x76\xd8\x6c\x3e\xae\xf1\xff\x5c\xd2\x7a\x77\xf5\x58\x8f\x47\x1a\x5d\x56\x68\x98\x6d\xa0\xae\x3f\x5c\xeb\x33\x16\xdf\xb1\x4b\x29\xdf\xf9\xde\xef\x5f\xab\xaa\xcf\xea\xad\x92\xa5\xcc\xc6\x65\x9a\x11\x60\x13\xb1\xe9\x4f\xc0\x62\xb3\xe1\x8d\xad\x70\xe8\xfa\xd9\xd1\x9d\x3d\x79\x74\xd3\x25\xfb\x42\x30\x99\xe7\xec\x03\x9d\x46\x99\x1b\x57\x10\x8d\xfb\xb1\x62\x74\xb7\x2c\x47\x29\xd8\xf0\x0e\x5d\x8f\x1d\x69\xbc\x0b\x5c\x93\x6d\x1d\x76\x1e\xd9\xda\xe7\xc2\x6c\xd9\x34\xe2\x8d\x47\x26\xfa\xbc\x4c\x6c\x49\xb0\x50\x5a\xef\x7a\x97\x8d\xce\x13\x2f\x40\xf7\xcb\x24\x17\x4e\x70\xb9\x5e\xc5\x76\xdc\x62\x1b\x04\xbf\xf5\x35\x9a\xad\x47\x8e\xf9\xd7\x25\xad\x1e\xba\x00\x93\x6d\x98\xdb\xc3\x4e\xa3\x54\xd6\x81\xea\x1f\x37\xb7\x4b\x5a\xbe\x8b\xbf\xc6\xae\x47\x01\x94\xa7\x68\x25\x46\x87\xf3\xc6\xc5\xc8\xb2\x6f\xa1\xcd\x2b\xff\x9c\xc6\x6f\x2d\xfb\x96\x9d\x04\xa4\x18\x51\x4a\x46\x71\x3c\x89\x5e\xaf\xaf\xfb\x34\x66\xc5\x66\xee\xad\x5b\xb1\x83\xf1\x3a\xfb\x65\xfd\x5a\xa1\x39\x10\x7b\x8f\xeb\x0f\x02\x09\x87\xac\x5f\xc6\x06\x56\x88\x7b\x31\x5c\xb2\x48\x11\x42\x14\x89\x45\x86\xde\x7c\x32\x82\x1e\xa0\xc3\x3b\xfc\x6d\x5c\xcc\x0f\x4f\x0f\xac\x13\x71\x75\x89\xc7\xd6\xe2\xbb\x55\xc6\xb3\x0a\x6a\x83\xd7\x85\xda\xeb\x22\xcf\x07\x89\x82\x8b\xc9\x92\xf1\x1b\x44\x89\x2b\x55\x96\x7b\xe5\xd5\xd3\xf9\xf6\x8d\x2f\x3d\x19\xb0\x5e\xc6\xfb\x03\x04\x59\x4a\x0f\x00\xb1\x67\x16\x84\xf3\xae\xaf\x43\x46\x62\x3e\x0a\x93\x1f\xf6\x92\x16\x85\x82\xa6\x07\x41\xe3\x06\x22\xac\xb1\x68\xba\xc5\x1c\xd7\xad\x66\xeb\xb4\xf3\xb4\x95\xfc\x99\x4f\xfb\x92\x48\x35\xe3\xb2\x6a\x89\x65\x55\x7d\xe2\xb2\x5a\xd2\x34\xdf\x46\xc4\x88\x5b\x77\x10\x81\x0b\xbb\xc7\x69\xeb\xa9\xc3\xfd\xe7\x6a\xfb\xa6\x68\x34\x79\xb6\x00\x83\xd1\xe9\xe5\x53\xdb\xfd\x63\x71\xbb\x3c\x3c\x1b\xed\xce\x38\xc8\x76\xf3\xa7\x36\xad\xcf\x1c\x81\x7d\xc1\xa3\x0e\xc4\x43\x5f\x92\x48\x6b\xf6\xe0\x67\x9b\xfd\x6f\x73\xb3\x6c\x75\x5f\x5c\x75\x9a\x2d\x72\xd8\x3e\x6d\xbd\xc6\x02\xeb\xdf\xa2\x75\xf8\xe5\xeb\x5d\xfc\x55\xde\xf8\xbe\x8e\xad\x49\xe5\x5b\xc4\xaa\xb0\x03\x3b\x44\x2c\x78\xbb\x44\xea\xd5\x5a\x1d\x9e\x48\x9a\xa3\x30\x18\xbb\xd3\x31\xb9\xe8\x92\xc6\x34\x1e\x05\x61\x54\x81\xf4\x41\x50\x36\x02\xf3\x62\x78\xc7\xe6\x62\x7d\x9d\x5c\x45\x14\x95\x35\x37\x22\x3c\x1d\x83\xcd\x4d\xab\xc3\xe0\x8e\x86\x3e\xee\xd6\x16\xd9\xef\x1e\xac\xa1\x7d\xc9\x73\x6d\xea\x47\x14\x21\xc4\x6c\xcb\x27\x7d\xca\x28\x0d\xc0\x3d\x81\xe3\x70\x9e\xb6\x9b\xad\xf3\x6e\x8b\x0c\x5c\x8f\x56\x9e\x3d\x2b\x4c\x23\x84\x6a\xb5\xe3\xc2\xee\xb3\x67\x9e\xdb\xaf\x84\xb1\x43\x27\xc5\x02\x44\x39\x02\xcc\x78\xc6\x7b\x7b\x6c\x4d\x48\xd0\xff\x46\x6d\x99\x70\xe2\xcc\x9a\x4c\xd8\xaa\x06\x25\x9b\xa3\xed\x39\x3c\xb8\x17\xf0\x15\x24\x97\xca\x78\xce\x38\x74\x42\x7d\x88\xa6\x13\x3e\xda\xf0\xcc\x03\x56\xea\x9e\x9e\x1e\x46\xb4\x71\xd4\x61\x0d\x63\x6e\x25\x5f\x13\x63\x89\xe2\x29\x8a\xfe\x1d\xb6\x5f\xf2\x4f\xc4\xdc\xfb\x41\x1c\x1a\xd9\xa1\x3b\xc1\xb0\x23\x32\x9a\x8e\x2d\x1f\x9e\x9c\x60\x6f\x52\xbf\x14\x0c\x67\x53\xa9\x12\xba\x80\xd1\xfe\x20\x43\x8f\x8d\x9d\xcd\xe5\xd1\x29\x2b\x94\x0c\xda\xf5\x27\x53\x08\xd1\x0a\xa6\x31\xfb\x2d\x41\xc1\x4a\xcb\x9b\x92\x7f\x48\x3d\xb9\x94\x6e\x94\xb1\x1d\x0e\x34\xc8\xb8\x4f\xd8\xc6\x32\x0a\xc2\x58\xeb\x2d\x9a\xf0\xdd\x48\xe7\x57\x99\xa3\xc6\xc1\xd7\x0e\xed\x4f\x87\x43\x0e\x4c\xcf\xfa\x21\x52\xff\x2a\x64\xf6\x54\xa2\x1c\xa7\x96\xb7\xc9\x46\x2a\xbd\xcb\xe3\x80\xd8\x10\xac\x13\x88\xfc\x21\xc8\x29\x26\x92\xae\x1f\xc5\x96\xe7\x51\x90\x33\x48\x33\xa1\xb6\x06\x79\x24\xa4\x67\xfb\xfa\xba\x78\x06\xb8\xa5\x74\x42\x2c\x9f\x4c\x7d\xfe\x4a\xec\x10\x09\xca\x28\x42\xd0\x71\x2a\x24\x6a\xb6\xe5\x79\xc1\x8c\x29\x2b\x10\x0e\x67\xf9\x14\x32\x9c\x44\x54\x60\xab\xf3\x04\xd7\x98\x4a\xd6\x83\xc7\x41\xf0\x62\x84\x7e\x00\x5b\xf7\xad\x88\x7e\x25\x7b\xc8\x63\xd1\xa1\xf3\x60\x46\xa2\xb9\x6f\x43\x6d\x78\x92\x90\xb5\x99\x82\xe2\x53\xea\xa0\xb3\x27\xde\x13\xe6\xbe\xfd\x35\x75\x33\x68\x8b\x4a\x23\xea\x4d\x68\x08\xdc\x0f\x29\x2b\xc9\x64\x44\x27\x59\x51\x93\x9c\xcb\x5c\x2c\x5c\x9e\x22\x1e\xc7\x90\x16\x66\x94\xc1\x37\x3f\x48\x30\x89\xbf\xa2\x20\x36\x1c\x07\xf6\x79\xcb\x4b\x2a\x33\x11\x44\xab\x36\x2c\xad\x60\xa2\xc0\x33\x81\x4b\x10\x3b\x19\x79\xe9\x05\xa2\x59\x99\x84\x41\x1c\xc4\xf3\x09\xc5\xd1\xaa\xa2\x2a\x3b\x20\xa1\x30\xdb\x03\x0e\x48\x88\x8b\x13\x16\x2a\xcf\x8f\x89\x93\x83\x79\xb1\x19\x37\xd9\x34\x09\x54\xe3\xe7\xe9\x59\xf9\xdb\xdf\xc8\xf3\x14\xf5\xac\x08\x11\xc0\xb6\x83\x63\x20\xa9\xff\xd5\xf4\x79\x48\xbf\x1a\x9d\xf2\xc1\x63\x14\x3b\x15\x6b\x6b\xb9\x42\x78\xca\xcf\x90\xe2\xc3\x13\xb1\x24\x80\x23\x96\xe0\xa3\xb2\x43\x0a\xa2\x81\xc4\x7c\x3a\xe3\x1b\x22\x3c\xcd\x05\x9e\xc3\xd1\xdb\xc3\x21\x75\x40\x82\x09\x4a\xef\xcc\x9a\xa3\xb2\xeb\x03\x14\x8d\xaf\x09\xaf\xe0\x4a\xc2\x80\x64\xf8\x38\x46\xb2\x47\x50\x0a\x2a\x56\x14\xb9\x43\xbf\xf8\xcf\x1f\xe5\xb4\x64\x97\x13\xf9\x00\x9b\x17\x53\xf8\x0c\x74\x52\xb5\x24\x46\xe7\xd0\x63\x9b\x49\x94\xb4\x74\x4b\xe7\xdc\x39\x09\xeb\x96\x2a\x63\x6b\x52\x2c\xde\xd2\x79\x89\xec\xfd\xce\xd5\xd4\xc2\xe7\xcf\xf7\x05\xf2\x82\x87\xc6\x3f\x4c\x2c\x87\x15\x80\x5c\x6b\xcd\xc0\xa1\x8d\xb8\x58\x2d\x55\xe2\x80\xbf\x81\xd6\xb6\x4b\x0a\x7c\x17\x4c\x13\x9b\x5c\x3a\x23\x1d\x3a\x6c\xdd\x4f\x8a\x05\x78\x96\xe6\x5d\xe1\x50\xd6\x08\xce\xff\xa5\x50\x26\x85\x21\xcf\x7e\x91\x08\x46\x31\x8a\x43\xd6\x1d\x76\x94\x55\x42\x3a\xf1\x2c\x9b\x16\x13\xea\x65\xcc\xbe\xb9\xf7\xbb\xca\x84\x4f\xf6\xe8\x8b\x09\x22\x83\x2d\x2c\xb1\x97\xc8\x7d\x44\x2e\xaf\xa2\xe3\x46\xb6\x85\xf0\xb2\xe1\xd4\x8f\xdd\x31\x25\xd3\x89\x63\xc5\x34\xb1\x1f\x09\xcf\x12\xc4\xc3\xb0\xfc\x39\xec\x9b\xb8\x63\xd1\xf8\xe2\x8e\x86\xa1\xeb\xd0\x28\x01\xae\x45\x92\x59\x25\xcc\xbc\x1e\x51\x62\x32\x16\x0c\x91\xae\x96\x8c\xac\x3b\xea\x17\x62\xd2\xa7\xd4\x5f\x2c\xc5\xb0\x66\x0b\xf0\x56\x3b\xe2\x78\xb9\x40\x5c\x48\xa2\x2a\x32\xcf\xf7\x32\x42\xa3\xc8\xa7\x69\x47\x3c\x63\xe2\x2f\x1a\x16\xb1\x59\xb0\x41\x27\x27\x2c\x8f\x07\xe4\xc7\x27\x63\x3d\xdb\x6a\x31\xaf\xfe\x14\x33\x66\xe1\x1a\xa5\xf7\x6e\x04\x17\x07\x39\x13\x56\x44\x5c\x70\xe6\xe2\xcb\x6c\xe6\xc6\x23\xf1\x8a\x27\x4b\x8b\xdd\x8e\x14\x67\x80\xab\x6a\x45\x7c\xe9\x62\xf9\x52\x85\x90\xee\xb4\x8f\x78\xf3\x71\x32\x4d\xac\x8b\x10\xca\xee\x02\x3e\x6e\x18\xcc\x88\xc5\xd6\xee\x24\xa4\x00\xf8\x0a\x5b\x2c\x9b\x44\x36\xa1\xac\xa1\xc8\xbc\x5b\xab\x1a\x43\x32\x03\x62\x8f\x06\x02\x99\x81\xad\xb8\x29\xab\x82\xa4\xc8\x82\xb2\x73\x2a\x13\x23\xb6\x03\x4d\xd8\x21\x8a\xca\x22\x76\x30\x99\xab\x8a\x8f\x38\x18\x60\x34\x3c\xd6\xea\x9f\xc6\xee\xfc\x20\x0d\x58\xb5\x66\xdd\x06\x54\x82\x2c\xba\x72\xce\x78\x6c\x2f\xc0\xa0\x09\x5d\xa8\x93\xe4\x8d\xb9\x0d\x15\xd3\x0a\x4d\x66\x4b\x94\xe8\xc2\x2b\xc9\x33\x93\x4c\x95\xbb\xda\xe6\xc7\x28\x71\x9e\x80\xf6\xf0\x43\x0b\xe2\xf6\x40\x65\xb7\x55\x45\x79\xd1\x74\x46\x39\x66\x48\x56\xed\xab\x16\x31\xae\xe5\xac\xe4\x2e\xa3\xec\xf7\x7f\xb1\x3e\xc5\x3a\x2a\xd4\xa9\xa4\xe7\xa9\x04\x59\xc1\x2d\x99\x4e\x88\x25\xd7\x0e\x34\x30\x74\xa3\x98\x86\xfc\x70\x4c\x2d\x9d\x2e\xd7\xda\x21\x93\x15\x5b\x39\xf0\x0b\x37\x5c\xf3\xe5\xe3\x05\xc1\xed\x94\xeb\xe8\x4b\x64\xb4\x87\xb5\xc0\x99\xcb\x8d\x0b\x11\xee\x8b\x49\x17\x16\x4d\x90\x22\xa0\x98\x29\x54\x9d\x31\xd6\xad\xc4\xca\x94\x8c\xbf\x32\xb2\xa2\x8b\x99\x7f\x19\x06\x13\x1a\xc6\x73\x2c\xa7\x9a\x9a\x14\x5e\x7d\x62\x5f\x7e\xd1\xce\x69\x5e\x46\x66\x1f\x4d\xad\x5a\xec\x36\xb1\x60\x41\x28\xdc\x6b\xf8\xf3\x7c\x16\x03\x78\x12\x2c\x70\xe0\xa5\xf1\xe0\x79\xcc\x14\x68\x97\xa3\x1c\xbe\x8b\x7d\x8f\xcf\x98\xe8\xd0\x8a\xec\xb6\x1c\xc7\xc0\xee\x32\x91\xbb\x9b\xce\x73\xb2\xb7\xb7\x97\x92\x49\xe5\x74\x12\x0b\x2a\x47\x79\x4a\xaa\xec\x6a\x4b\x10\x27\x47\xe4\x3f\xcd\x28\x0a\xa0\x3e\xc2\xa2\xb7\x7c\x07\x60\x0c\xdc\x38\xe2\xdc\x4e\xeb\x0f\x52\xed\x5f\x61\xe8\x39\xe7\x7b\x6a\xc0\x6c\xff\x5a\xbe\x41\x18\x98\xb0\xca\xae\xb2\xea\x29\x0e\xc3\xcf\x3b\xfa\x80\x13\x0d\xc0\xb6\x0a\x06\x39\x87\x04\x6a\xcd\x0b\x37\xc9\x15\x0e\x3d\xd6\xd2\x5f\x2a\x15\x6a\x20\x2f\x2c\x05\x17\xf6\xff\x48\x75\xe5\x54\x72\x0c\xf3\xac\xc2\xb0\xf0\x77\xa5\xb5\x77\x41\x5e\x61\xb3\xcc\xe1\xa1\x98\x44\xe5\xa6\x4b\xe9\xc7\x14\xfb\x02\x3f\x17\x59\x73\x93\x3d\x85\xd7\xc5\x45\xc5\x57\x52\xfe\x81\x5a\x00\xd7\x41\xa6\x82\xcb\x35\x27\x28\x9b\x7c\x16\x13\x98\x38\x3e\xd5\x49\x56\x95\xd5\x8f\x42\x55\xfe\xc8\x1e\xf9\xa7\xd2\x02\x22\x16\x1d\xa5\x51\x97\xe4\x3e\x34\x8a\xe3\xc9\xeb\xf5\xf5\xbb\xb8\x56\xad\x56\x7c\x1a\xaf\x3b\x81\x1d\xad\xdf\xc5\xf5\x7a\x75\x2d\x1c\xaf\x83\x8c\xd6\xd7\x36\x2b\xa3\x78\xec\xad\xd8\x03\x91\xf6\x30\x9f\x47\xc0\xd6\x02\x87\x82\x2a\x94\xe5\x4c\x16\x3e\xdf\x6f\x57\x0b\xaf\x0b\x9f\xa7\xf5\x2d\x7b\xbb\x50\x86\x93\xf6\xbf\xc8\xda\xef\xc4\x71\xad\x71\xe0\x3b\x4a\xb9\x1a\x2f\xf7\xaa\xce\xcb\x59\xac\xdc\x30\xa4\xf3\xb5\x7e\x70\xaf\x14\xac\x63\xc1\xcd\xea\x2b\x5e\xb0\xcf\x0a\x8e\xd6\x63\xa5\xcc\x86\x28\x63\xf3\x32\x36\x2b\x33\x58\x1f\x28\x65\x36\x45\x19\x87\x97\x71\x58\x19\x7b\x3d\x54\xca\x6c\x89\x32\x16\x2f\x43\x59\x19\x4f\xa3\xb3\x0d\x65\xaa\xd5\x7e\x95\x97\x19\xc0\x00\xe9\x30\xa4\x54\x29\xf6\x52\x14\xab\xf1\x62\x43\x56\xec\xc5\xfa\x9a\x52\x66\x87\x37\x57\xdf\xe4\x65\x46\xac\x8c\xbf\xee\x29\x65\x5e\x89\x2e\xf5\x79\x19\x97\x95\xb9\xd3\x86\x6f\x71\x5e\xd6\x76\x78\x99\x6f\xac\x0c\x46\x7d\xae\x81\x7d\x55\x29\xdc\x17\x85\x45\xff\x6f\x59\xe1\x38\x98\x64\x4a\xda\xbc\xa4\xe4\xaa\x27\x4a\x7a\x74\xa0\x16\x74\x04\x49\x31\x8e\xb1\xd2\x7e\xaa\x2c\xe5\x65\x37\x04\x51\x1f\x58\xec\xfa\x74\x0d\xe2\x64\x95\xa2\x03\x2c\xba\xd1\x17\xb3\x11\xb0\xa2\x91\x6d\xf9\xb5\xa4\xd4\xcb\xaa\x28\x25\x18\x34\x11\xa5\x36\x94\x52\x42\xdc\xaa\x62\xd4\xdf\x45\xa9\x2d\xa5\x54\x5d\xd0\x12\x9d\x0b\x45\xa9\x97\x4a\xa9\x0d\x51\x4a\x48\x52\x24\x4a\xbd\x52\x4a\x6d\x0a\xa6\x08\x5a\x31\x0c\x94\x0e\xe2\xb5\x58\x95\x94\x97\x5c\xe8\xb6\xa4\x14\x4c\x59\x41\x98\x8c\x54\xc9\x6d\xc1\x3b\x51\xf2\x4e\xe1\xb3\x5e\xf4\xa5\x20\x2a\x5a\x9f\x89\xb9\xd3\xcb\xed\x08\xbe\x88\x65\x78\x0f\xe2\xc5\x41\xa0\xd6\x30\xa7\x94\x2c\xcd\x85\xb1\xbe\x2d\x3a\x30\xc7\x31\x45\xd1\x1a\xfd\x3e\xb5\x14\xb9\x7d\x69\x89\xa2\x5b\xbc\xe8\x03\x5f\xdf\x56\x4c\xc3\x4c\x69\x14\xca\xea\x86\x2d\xa6\xe7\x9f\xac\xf4\xc4\x55\x8a\xd8\x82\xa0\x28\xf2\x07\x2c\x96\x20\xce\x10\x73\xf8\xd2\xb3\x36\x78\xc9\x1f\xc0\xa6\xd0\x8d\xdd\x68\xb4\x36\x09\xa6\xea\x46\xf4\x92\x8a\x85\xfa\x92\x97\xfe\x6f\x58\xcf\x01\x0a\xed\x0f\xe5\x11\x60\x1f\x29\x3c\x79\x17\xde\x7a\xdc\x2e\xdc\x58\x69\x17\xe6\xc3\xd2\x77\xe1\xfa\x46\xe1\x35\xd1\x79\xf0\x1f\x66\x1e\xa8\xe3\xbb\xea\x92\x46\xb7\xd9\x6e\xe3\x8d\xc1\x0f\x84\xc6\xb3\xea\xd1\x25\xb2\x3b\x2c\xeb\xf2\x34\x2a\x94\x31\x5e\x53\x79\xda\x9a\xc6\xf6\xd3\x39\xbb\xfd\x38\xce\x6e\xae\xd4\x4d\x87\x75\xe9\x29\x7c\x4d\xca\x6f\x56\x45\xf9\x3e\xe5\xe5\xff\xce\xca\x6f\xac\x6f\x2a\xa5\xb6\xfa\xbc\x54\x6d\x43\xac\xc2\x4f\xac\x54\xc1\xfd\x56\x20\x9e\x3b\x04\xef\x25\x52\xc4\x28\x80\x61\x00\xc6\xb3\x78\x44\x18\xd9\xc1\xe0\x4d\x49\x21\x64\xcb\xe6\xc4\xd6\xf4\x99\x11\xaa\xad\xd7\x95\x42\x8e\x28\xf4\x52\xec\x0d\x5f\xd4\x35\x4f\xfa\x56\xf8\x4c\x5f\x9a\x7c\xc8\x3b\xea\xda\x8c\x67\x01\x5b\x24\x91\xbe\x42\xb1\xe4\xf6\xb6\xba\x44\x07\xfa\xd2\xe4\x1d\xb4\xd5\xb5\x59\x5b\xdf\xd4\x57\x24\x2f\xb4\xa9\x2e\x49\xcb\x9e\x72\xac\x02\x55\x68\x0f\x5d\xdf\xff\x99\x45\xf9\xf2\x71\xa2\xd3\x4c\x81\x6e\xe5\x97\xdc\x5a\x49\xc8\x06\xd8\x7d\x5d\xcc\xa4\x40\x54\xed\x4d\x4d\x20\x1a\x05\x32\x1d\x7b\xd6\x34\x36\xcd\xb9\xb3\xad\xce\x79\xe1\xc2\x50\x56\xb2\xdf\xde\x52\xa7\x9e\xd1\x0d\x31\x09\xa5\x28\x29\xe7\xc0\xb1\xd5\x39\x28\x4c\x25\x55\x5d\xe7\xc3\xc2\xf4\x95\xaa\xf4\x15\x68\x81\x4f\x9a\x49\x9c\xe8\xa6\x2a\x4e\x05\x2b\xdb\xdd\x44\xa0\x06\x9a\x40\x15\x02\x43\x59\x39\x34\xba\xa5\x4a\x16\xa3\xab\x0f\x2d\x11\xaf\x41\xde\xd0\x32\x32\x16\x52\xff\x27\x76\xa7\x9d\xc7\x89\x58\x67\x35\xc1\x81\x3e\xfd\x59\xdb\x13\xad\xaa\xdb\x13\x63\xda\x30\xb4\xee\xa8\x69\x93\x4a\x14\xdf\x4f\xa8\xa7\x68\x72\x23\xa7\x8c\xbe\xd4\xa4\xd1\x2e\x10\x9b\x3a\xae\xe7\x59\x26\x71\xb4\x5e\xaa\xe2\x18\x71\xd7\xf1\x68\x3e\xee\x07\x1e\x29\x3a\xc1\xb4\xef\x51\x12\x95\xcc\x72\xf4\x4a\x93\x23\x29\x73\x26\x31\x7a\xa5\x89\xd1\x54\x8c\xd2\x24\x45\x3b\x9a\x14\xd1\x6c\x51\x9a\xd9\x17\x41\x8c\x16\x8b\x50\xd3\xf2\x2d\xc7\xb5\xfc\x27\xcb\xd2\xab\xc7\xc9\xd2\xbb\x47\xc8\x12\xb1\x79\xe7\x74\xa1\x7a\x9a\x90\x50\xfd\x24\xb3\x0a\xc4\x76\x43\x7b\x3a\x1e\x78\xf4\xfe\xa7\xc5\x85\x5a\xda\xee\x45\x73\x88\xcb\x19\xa2\xe2\xf0\xfd\x07\x1e\xab\x5a\x79\xd3\x3e\x36\xd8\xd4\xf6\xb1\x20\xa7\xc2\xbf\x91\x10\x0e\xfa\xe9\xbd\x2c\xc5\x12\x55\x18\x8f\x68\x38\xfe\x09\x19\xac\x55\x1f\x27\x84\x27\xab\x99\x13\xa0\x53\x79\xb2\x27\x77\x88\xbf\xaf\xba\x43\xfc\xf5\x87\xa8\xa3\xe9\x4f\x85\x2b\xc3\xd1\xf8\xd7\x1f\x77\x03\x4d\x91\x4a\x1d\x62\x29\x21\x71\x06\xaa\x90\xd0\xe8\x81\xc6\xd9\x9d\x0a\xd0\xe5\x7e\x46\x3a\x6a\x8f\x93\x8e\x8f\x2b\x49\x87\x8b\xbd\xfa\xb3\xce\xbb\x9f\x11\xa7\xbf\xe0\xfc\x93\xdb\xc7\x97\x3c\xbd\x49\xd9\x9b\x74\x1d\x6b\x9a\xdd\x85\x15\xa1\xab\xa6\x85\x2e\xbd\x81\x24\x32\x57\x4f\xcb\xdc\x9f\xb1\x2d\x51\x5d\xc5\x72\xd5\xa2\xaa\xd0\x9d\x07\xe1\x8c\x0e\x5d\xcb\x5f\x3f\xb0\x7e\x4a\x9d\xaf\xd5\x1f\x27\x7d\xad\x95\xf5\xf9\xed\x95\xe4\xd4\x97\x03\x71\xac\xac\x62\x9f\x08\xa0\xdc\x93\xfe\x9e\xda\x93\x8c\x1b\xd8\xb6\xbe\x81\xb5\x92\x6b\xa1\x71\x0f\xdb\x49\xef\x61\x51\x1c\x06\xb7\xf4\x4f\xba\x08\xfc\x23\x77\xb7\x53\x2e\x02\xfa\x01\x6a\x2d\xde\x1a\xb7\x75\x29\xa5\xa6\xe1\x29\x92\xba\x93\x96\xd4\xf4\xf0\xfe\xd2\xcb\x40\x77\xf2\x93\x12\xba\xf1\x38\x09\xbd\x59\x49\xee\xa2\x89\x41\xdc\xfe\x35\xfb\xa3\x55\xd3\xa4\xf5\x79\x81\x00\x06\x63\x4c\x1d\xa3\xb0\xd6\x34\x61\x3d\x2f\x90\xd8\xf5\x1c\xa3\xac\xf6\x07\x9a\xac\xbe\x51\x08\x9b\xc4\xaa\xaf\x6d\x7e\xa9\x79\x4f\xa4\xa9\xa6\x49\x93\x9f\x69\x5f\x11\xa6\x97\x9a\x30\xa5\xb6\x74\x4d\x46\x66\xd4\xf9\x29\x19\x79\xe4\x83\xcd\xcb\x95\x77\xb1\xb7\xab\x49\x13\xf6\x3f\x77\xf3\x7a\xa5\x6d\x5e\xad\xec\x71\xf5\x6f\x69\xc1\x58\x69\xe3\xfa\xdf\x69\xc1\xe8\xce\xdc\x28\x7a\xba\x38\x3e\xd2\x72\xbd\xb7\xa2\x90\xb9\x51\x94\xb7\x61\x49\x2d\xe7\x3f\xf2\xb4\x9c\x27\xde\x4b\x5f\x69\xe2\x98\xbd\xa8\xfd\x3b\x5c\x49\x93\xf2\x83\x8c\xce\xf5\x55\xd7\xb9\xfe\x9c\xdb\xeb\xbf\xc1\xdd\x64\xa5\x0b\x2c\x84\x68\x50\x8c\x08\xa9\x58\x8e\x53\x2c\x60\x4c\x8a\x35\x75\xdc\x60\xbd\x4f\x3d\xaf\x50\x26\x05\xfc\x2b\x18\x0e\x77\xfb\x56\x44\xb7\x37\x0b\xe5\x67\x85\x5e\xdd\xf1\xaf\x66\x8d\x66\x43\xfe\x1c\x8c\xbe\xbf\xdf\x3a\x81\x5f\xcf\x0e\xef\x5a\xdf\x3e\xee\xbf\x1d\x1e\xd6\xfb\x1b\xc7\xae\xf5\xe1\x0c\x8b\x7c\x6c\xbe\x94\xc5\xdf\xda\xfb\xf8\x4b\x73\xb3\x40\x5e\x3c\x2b\x34\xae\x5e\xf9\x37\xb5\xb3\x86\xfa\xb3\x69\x79\xd3\xee\xb0\x05\xbf\xd3\xa8\xbd\xd1\x6a\x6e\xac\x67\x7e\x76\x6e\x0f\x9c\xf1\xab\xf9\xc7\xb1\xf7\xf0\xf6\x5d\xa3\xd1\x38\x1c\x4d\x80\xa0\x7d\x34\x9c\xf6\x36\x8e\xfd\xf6\xd1\xfd\xe4\xa3\x77\x73\x67\x8f\x8f\x27\xf6\x7c\xff\xb8\x7d\xd0\x9e\x9d\x1d\xdc\xce\xce\x1f\x1a\x5b\xd8\x4c\xeb\x50\x10\x38\xb9\x3a\x3e\xb8\x1e\xb6\x70\x58\x07\x87\x67\xed\xb3\xf7\x8d\xea\xf1\xfe\x35\xf6\xb0\xd1\x78\xd7\x68\xec\x0f\x8f\x9b\xb7\x17\xb7\xf5\x9b\xe3\x13\xeb\xfd\x55\xd0\x1d\x6d\x8d\x8f\x3b\xed\x6e\x77\xec\x79\x67\x57\x33\xf7\xc6\xbd\x72\xed\xab\x8f\x1f\x37\x67\xf7\xf7\xa3\xd1\xb7\x6f\x07\x6f\x8f\x8e\x8e\x2e\xce\xda\x07\x9d\xdb\x43\x56\xbb\xd1\x6c\x9c\x34\xc6\x17\x40\x30\x78\x71\x73\x6c\x45\x9b\x5b\x37\xf7\x43\xff\x9b\x7f\x32\xbc\x78\xef\x5d\x5c\x9c\xd8\xc3\xfd\xcd\x49\x67\xf3\xe0\xf6\x78\x76\x77\x35\xfe\x58\xdf\x1e\xc7\x27\x37\x61\x3f\xda\x9c\x1c\xbf\x1b\x9e\xbf\x7f\x77\xd5\x68\x34\xda\x8d\x77\xad\xe1\x68\xd4\xe9\x74\xbb\xcd\xa3\xc3\xc3\xa3\x93\x36\x10\x6c\x7f\xfc\xf8\xf1\x63\x30\x1c\x8d\xee\xef\xe7\xf3\xe6\x91\xef\xbf\x6d\x9f\x9c\x7c\x77\x87\xc3\x61\x30\x9f\x37\x9b\x07\xbd\x83\xd3\xc9\xe4\xf8\xfc\xe2\x62\x3a\x0e\x82\xcd\xcd\xed\x6d\xd7\xad\x56\x5b\xed\xd3\xd3\x7e\xaf\xdb\xbd\x9d\xdd\xd7\xae\x6f\xbe\x85\x61\xf5\xe8\xc3\x87\xfb\x07\x20\xf8\xf0\xcd\xf7\xfd\xb7\x97\x17\x17\x94\xda\xf6\xce\xe6\xf1\xbb\xdb\xf3\xf7\x8d\x77\x8d\x21\x63\xda\xbb\xe1\xc7\x9b\x9b\xfd\xfd\x66\x93\xf5\xe0\xf0\xa4\x7d\x62\x59\x1f\x6d\xd6\x50\xfb\xe0\xdd\xed\xe1\x55\x83\x31\x71\x08\xfc\xdd\x7f\x7b\xdb\xe9\x1c\x03\xc1\xa8\xd3\x3b\x8d\x3a\x0f\xe7\xd5\x6e\xe7\x72\xc7\xbd\xef\xb4\x1e\x3e\x74\xce\xaa\xd7\xbd\xeb\x56\xed\x9a\xfd\x38\xd7\xb5\x0f\xce\xf8\xc3\x07\xc7\x67\xff\x6a\x37\xe3\xf6\x75\x7f\xfa\xb6\x76\x33\x6d\x5f\xf7\xeb\xed\x6b\xe7\xd5\xe6\xf5\xe8\xa8\x7d\x03\xff\x80\x20\xfb\xe5\xc5\xdb\x8d\xc1\xab\x0d\xf6\xaf\x3a\x3c\x3f\x7a\x77\xdd\x68\x36\xf6\x1b\x27\x8d\x6f\x17\x37\xfd\x6f\x27\x56\xdb\x3d\xfa\x7e\xea\x5e\x58\xed\x83\x51\xdb\x8a\x1a\xc3\xfd\x5b\xd6\xfb\x46\xb3\x71\x7c\xeb\xb6\x27\xb7\xdf\xcf\x8f\x27\xe3\x9b\xef\xe1\x78\xdc\x07\x82\xf1\xd8\x0d\xe3\xf1\xc6\x69\xe4\x3e\x9c\x46\xc3\x79\x6b\xf4\x7d\xc6\xa4\x61\x1f\x26\x9f\xfd\x9c\xec\x4f\xc6\xdf\x6f\xcc\xff\xc6\x37\x37\xde\xf8\x5a\xfe\x03\x82\xea\x07\x79\xff\xde\x1d\x7d\x6b\x9f\x0c\xf7\x1b\x8d\xe1\x7e\xe3\x7e\xa3\x65\xdf\x6f\xb4\x6e\x3b\xd7\xed\xdb\xfb\x8d\x76\xb4\x3f\xc3\x59\x9f\x37\x1a\x0d\x20\xc8\x46\x77\xe5\x3e\x1c\xda\xdf\x3a\x6f\xed\x87\xde\x5b\xfb\xe1\xe1\xad\xfd\x70\xff\xd6\x69\xf5\x8e\xbd\xd6\xc3\xf9\xab\xd6\xec\xb2\xd9\xa8\xdd\xec\xb3\x0e\x0f\x1b\x6d\xec\xf6\x7e\xe3\xac\xf3\x70\x68\x77\x1e\x8e\x19\xef\xaf\xdc\x8d\x9e\xfd\xed\xfa\x03\xae\x94\x87\x8d\x0f\x76\x75\xe3\x03\x63\xfe\xf5\x63\x7e\x3e\xbe\xc5\x99\x66\xac\x69\x1e\x39\x37\x93\x9b\xef\x40\x70\xd8\x18\x3e\xdc\x1e\xb5\x70\x32\xb0\xfd\x8f\xc1\xbb\xd1\xc1\x41\x43\x08\xf0\xbb\x46\xa3\xed\x8e\xb6\x9a\x4d\xab\x7a\x1c\x3e\x3c\xf4\x6e\x2f\xc6\xd3\xf7\xc3\xef\x9d\x6e\xbf\xba\x73\x74\x7c\x7d\x1c\xf9\x53\x6b\xfc\x71\xbc\x71\x89\x2b\x85\xc9\x5f\xff\x6c\xf3\x66\x73\xeb\xfe\xe1\xc1\xf5\x4f\xc6\xf6\xfb\xe1\xd8\x69\x5a\xf6\xce\xd6\xf1\xc1\xf1\x77\x2f\x38\xf6\xdf\x8d\xfd\xcb\x0b\xda\x39\xe9\xef\x6f\xd7\x27\xd5\xc9\xe4\xe1\x61\xe4\xfb\x7e\xe3\xe5\xd1\xd1\xfb\x23\xdb\xde\xd9\x9a\x54\x27\xc1\xdb\xef\x8e\xf7\x11\x08\x32\xca\xef\x9d\xa6\xb5\xf5\xdd\xdd\x3a\x3c\x8e\x1f\x1e\x82\xf1\xd5\x78\x4e\x6b\xd3\xeb\x6e\xdf\xde\xd9\xdc\xda\x62\x0d\x71\xe1\xff\x7e\xbd\x6d\x3f\x44\xad\xad\xcd\x9b\xfb\x87\x87\xc0\xb7\xc6\xf5\xe9\x56\xf3\xba\x6e\xdb\x3b\x2f\xb7\x6e\x8e\x1f\xa6\xb8\x52\xde\xf9\x23\x65\xa5\x20\x81\xa1\xd7\x7c\x57\xfb\xb8\xdf\x80\x1d\xac\x33\xaa\xef\x7f\x3b\xf2\x3f\xb6\x87\x83\x8f\x9b\x47\x1f\x47\xef\x46\x13\xf7\xa8\xf7\xd6\xef\x5e\x1e\x4c\x2e\x86\x67\xf6\x70\x32\xd9\xdf\x3e\xff\x76\x7b\x73\x02\x04\xbf\x7f\x3c\x7f\x77\x35\xba\xf5\x27\x1f\xba\x4d\xb6\x05\xc1\x5c\x36\x9a\xad\xd6\xe1\x71\xbb\xfd\xf1\xea\xea\xea\x56\x6e\x00\x47\x47\x47\x27\xed\xb6\x45\x6d\x7b\x18\x7c\xff\x7e\xd2\xed\xba\x6e\x78\x72\x72\x7a\x79\x76\x16\x45\x51\xb4\x33\x9b\x03\xc1\xf9\xf6\xc3\xc1\xc3\xb7\x30\x8c\xce\xce\xde\xbd\x9b\xcd\xee\xe3\xf3\xe3\x93\xd3\x83\x0f\xd7\xd7\xe3\x8b\xf3\x98\x5a\xd4\xde\xde\xdc\xea\x1e\x4d\xbd\xd8\xb9\xb1\x4e\xb6\xdf\x5f\x5d\xdd\x06\x93\x49\xb7\x51\xbd\xd9\xe7\x3b\x4e\x73\xff\xf6\xb6\xd5\x3a\x3a\xfa\x78\x75\x05\x04\xa1\x07\x93\xd1\x7c\xee\x8e\xfd\xa0\xdd\x3e\x49\xcb\xdc\x4e\xb3\x77\xd9\xea\x6c\x74\x52\xff\x2e\x77\x3a\xf7\x9d\x96\x7b\xdd\x69\xb9\x1f\x3a\x67\x6e\xad\x77\xf6\x50\xc3\x0d\xf6\xfa\xf0\xfa\x83\x33\xae\xdd\x78\x1b\x1f\xfa\xf1\xe6\xb5\x53\x7f\xfb\x61\x50\xdb\xd8\x18\xd4\x36\x6b\x83\xc3\xcd\x1b\xef\xfd\x4d\xf6\x5f\x93\xef\xd8\xd0\x62\xab\xdd\x6e\x7f\x7c\x07\xac\x01\x82\xa3\x9b\x8e\xfb\xed\xe0\xed\x5b\xbf\x7d\x7e\xf1\x6e\x38\xde\x97\x7c\xe4\x6b\xa2\xb3\xd1\xba\xba\xdf\x6a\xd9\xf3\x9b\xd6\x6d\xf7\x65\xfb\xb6\xe7\xb4\xa3\x87\x41\xbb\xda\x5b\x3f\xab\x56\x3b\xe7\x87\x57\xbd\xce\xf9\xd5\xfd\xb5\x53\xed\x5c\xd7\x80\x60\xf5\xfe\xc6\xbb\x7a\xb8\x71\xaa\x0f\xd7\x5e\xb5\x76\xed\xd5\x3e\xdc\x78\xf5\xfe\x8d\xf7\xfe\xa5\xf3\xea\x7d\xff\xe6\xd5\xc6\xba\xa3\xff\x7b\xe5\xd4\xf8\xd6\x3f\x6c\xbc\x6b\x0e\xdb\x0f\xe3\x6e\xdb\x1d\x77\xdb\xdf\xf8\x11\xb0\x59\x75\xbb\xfb\xed\xee\x51\xd8\x68\x37\x6e\x60\x95\x36\x87\x27\xed\x97\xee\x45\x7b\xf3\x5b\xf7\xa6\x7d\xfb\xfe\xa6\x3d\xa6\x37\x37\xbe\x7b\xf3\x7d\x32\xbe\x79\x39\xf9\x6e\xb5\x4f\x70\x1b\x83\x45\xd4\xe2\x47\xe8\xd0\x6a\x7f\xf7\x51\xb0\xdb\xdf\x7d\xb7\x1d\xfa\x6e\x7b\x33\x70\x6f\x6e\x26\xee\xcd\xf7\xef\x53\xeb\x38\x9a\x7f\x7f\x19\x4e\x1f\xf3\xef\x76\x3f\x40\xb1\x69\x06\x8d\x77\x70\xe0\x38\xf3\x63\xf8\x77\xdd\x3d\x6e\x5d\xcf\x8f\x1b\x76\xfb\xe0\xfa\xf6\xb0\x71\x36\x04\x96\xce\x0e\x5a\xf6\xbb\x5a\xfb\xf6\xfe\x65\x3b\xea\x0d\xce\x38\x0f\xcf\x5e\x55\x7b\x67\xaf\xae\x3f\x74\x0e\x0f\x67\xc3\x73\x20\x28\x4e\x30\xa1\x3a\xcc\x8e\x1b\x67\xdd\x97\x2d\xfb\xc1\x69\xdd\x5e\x5d\xb7\xe3\xda\x75\xbb\x56\xbb\x6e\xc7\xd7\xd7\xef\x5e\x2d\xdb\x80\x50\x6c\x94\x9f\x5a\xaf\x73\x5e\x7d\xe8\xee\x57\x8f\x9b\x6c\xa6\x19\x4b\xbf\xbd\x7b\xf7\xf1\x66\xb4\xdf\x3c\xb1\x27\xfb\xcd\xfe\xb7\xda\xc7\xe6\xc1\xdb\xf1\x71\xe3\xfd\xe8\xe2\x9d\x35\xba\xdf\x77\x5b\x93\xfb\xc6\xc3\xc1\xc1\xed\x79\xdb\xef\xbe\x03\x82\xef\xba\xf6\xab\xe9\x71\x7b\x6b\x36\x7b\x78\xd8\x3c\x6c\x07\x87\x57\x9d\xb3\xe1\x66\xd5\x3b\xdf\xdc\x1c\x1e\xd8\x27\xe3\x0f\x2d\xdf\xbb\x68\x8c\xd8\xda\x6e\x35\x0e\x5b\x6c\x30\xf7\xf3\x83\xb7\xad\xa3\xb7\xa7\x17\x5d\x7b\x3c\xec\x9c\x6d\xde\x37\x6f\xea\x57\xf3\x83\x5b\x9c\x94\xc9\xcd\x65\xb7\xdb\xbd\x8d\xbd\xd1\xf0\xe1\xa4\xfb\x7e\xdc\x1a\x5f\x7e\xf3\x4f\x2e\xbb\x5d\x7b\x7c\xeb\xed\x8f\x4e\xdd\x49\xfd\xb6\x35\xbe\x38\x0e\xdf\xc1\x22\x7f\xcb\xe4\xb3\xb9\xfd\xf6\xdd\xed\xfe\xd5\xfe\x3b\xb6\xa4\x8e\xda\x67\x57\xc3\x60\x32\xba\xe9\x74\x71\xb7\x71\xfd\xf1\xed\xe1\xe9\xc9\x19\xbd\xb2\xaf\x6e\x83\xad\xc9\xd6\x7d\xef\xe1\xdb\x6d\xfb\xed\xc7\xde\xc9\xd9\x3b\xcb\x19\xde\x37\x26\x93\xce\x7d\xef\xc1\xf5\xdf\xbe\x6d\xf7\xce\xde\xd1\xf7\xf6\xf0\xd5\xfe\x3e\x53\xcf\xda\x67\x4c\xca\x0e\x1a\xef\xdc\x61\xf5\xa6\x75\x85\x67\x4a\xab\x69\x37\x36\xdf\x36\x6e\x1f\xb6\xce\xaa\xdd\xfb\x77\x5e\xf7\xfe\xfc\xf0\xe1\xbe\xe3\xd5\xee\xcf\xcf\x6b\x5b\x57\xd5\x87\xde\xbb\xda\xd5\x75\xe7\x7a\x7e\x7f\x7e\x5d\xbb\xee\x5c\xd7\xef\x6f\xce\xaf\xfb\x1f\xbd\x5e\xe7\xfc\xbc\x37\xe8\x5c\x5d\x77\xce\x0f\xaf\x3b\xd7\xd7\xd5\xad\x1b\x9c\xe5\xeb\xfe\x75\xfc\xf0\xd0\xf1\xea\xd7\x9d\xeb\x8d\xce\xcd\x75\xad\x7f\xe3\xd5\xef\x6f\x5e\x5c\x6f\xdd\xd4\x36\x1e\xce\xcf\xdf\xb3\xcf\x1c\x46\xe4\xba\x56\xdb\xba\x79\xf5\xe1\xd5\x4d\xfc\xe1\x66\x28\x1b\xea\x75\x3a\xd8\xd0\xc3\x0d\xce\x72\xed\xe5\xc7\xda\xd5\x87\xce\xf5\xd5\xf5\xb5\xf7\xfe\xba\x73\xfd\xfe\xc3\x8d\xf7\x7e\xe0\x5c\x5f\xff\xff\xd8\xfb\xf3\x66\x37\x91\x34\x51\x1c\xfe\xbf\x3e\x85\xa6\xdf\x88\x6b\xd7\xc8\x65\x10\x68\xed\x1a\xf7\x44\xb2\x89\x45\x08\xb1\x0b\x3a\x3a\x2a\xd8\x04\x88\x7d\x47\xcc\xf4\x77\x7f\x43\xe2\x1c\x2f\xe7\xe8\xd8\xc7\xae\x9a\xe9\xba\x37\x7e\x8e\xa8\xb2\x0c\x99\x4f\x3e\xf9\xec\x4b\x4a\xb9\x31\x37\x72\x7f\x1d\xbc\xdf\x23\x92\xa6\x69\xb6\xa9\x21\x27\xad\xd6\x4c\x73\x33\x3f\x4a\xda\x51\x73\x63\xe4\xe4\x6a\xba\x64\x4e\xf5\x8d\x47\xcd\x4f\xe6\x66\x54\x3d\x29\xb8\x61\x30\xdb\x68\xb3\xeb\x60\xc3\x35\x63\xc3\x76\x67\xe8\x25\xc8\x93\x24\x2e\xb2\x22\x2c\x92\x30\x2c\x8a\x22\x29\xea\x04\x29\xca\x62\x66\x67\x4d\x58\x64\x45\xc9\x55\x89\x57\x94\xc5\xc0\x55\xc5\xb4\x2c\x93\xa1\x1c\x55\x2f\x0c\x8b\xb2\x08\x8b\x2a\xbc\x14\x45\x78\x29\xab\x62\x58\x15\xe1\x50\xd6\x45\x58\x34\x05\xca\x55\x25\x6e\x97\x45\x5b\xd6\xcd\x7a\xd7\x5d\x86\xb2\x49\xf1\xa2\x2c\x96\x65\xd5\x8c\xe3\x9a\x02\x2d\xfb\x94\x2e\x9b\x33\xb6\x1e\xc5\x26\x4c\x77\x79\xd1\x16\x4d\x91\x2c\x9b\x64\x55\x36\x29\xcd\xd7\x09\xec\x64\xcb\xb2\x68\xc3\x72\xd7\x95\x04\x57\x35\x50\xd9\x84\x53\xd8\x95\x29\x49\x3b\x1e\xdd\x98\x42\xcf\x1a\xa2\x99\x1b\x64\x76\x72\x17\x0b\x7b\x33\xd7\x2f\xb6\xd2\x40\x37\x80\xe5\xa9\xe5\x1c\xaf\x59\xc2\xad\xbf\x18\x90\xb5\xd3\xd8\x66\x4d\xef\xf6\xcd\x76\x35\xad\xa7\x6b\x7b\xe0\x86\x4d\x20\x30\xcb\xd8\x5c\x14\x88\x6d\x15\x45\x69\x36\x45\x31\x6d\x2e\x76\xd8\x12\xa5\x50\xe3\xaa\xa6\x6d\x8e\xa6\x16\xa3\x83\xeb\x8e\xba\x2c\xb9\x0d\x3a\x78\x82\xbe\xf1\xf6\x59\x51\x16\x4d\x58\xee\xda\x2b\x56\x67\xda\xe9\x93\xb5\xd3\x0c\xc0\x39\xba\x15\x72\x8e\xdb\x63\x6a\x73\x35\x8e\xce\xce\x97\x83\xc3\x0e\x48\x6b\xf7\x29\xbd\x12\x9a\x03\xe2\x5a\x42\x4b\x80\x94\xbe\x01\x3c\x77\x57\x0d\x20\x6f\x1a\x40\xae\x73\x90\xc9\x64\x09\x32\x30\x07\x22\xd8\x32\x9e\xa3\xaa\x3d\x28\x7a\x19\x83\x49\x6a\x57\x30\x9c\xa4\xf2\xa2\x11\x38\xf0\x82\xeb\xa5\x8b\xaa\x92\x79\xc1\x98\x8a\xca\x55\x86\xaf\x31\x8b\x31\xe0\xbc\xb0\x17\x85\x8c\xf2\x8c\x33\x15\x59\xf5\xbd\x20\xd7\x30\xce\x5a\x6e\xd5\x59\xcc\x96\x95\x65\xab\x46\x03\xfb\x39\x66\x72\x96\x8c\xa8\x70\x9c\x17\x85\x63\xab\x7a\xd6\x49\x46\x0f\x2e\x8b\xa5\x14\x0d\x51\xc4\xe6\xb6\xa8\xcb\x49\x54\x8f\xc1\x12\xbc\xe0\x16\x4b\x3c\x22\x22\x96\xcb\x2d\x51\x95\xe1\xac\xd6\xaa\x9e\xbd\x58\xf8\x19\x8e\x28\xa6\xb0\x44\x59\x85\x93\xbc\xbe\x2d\xa4\x47\x54\x54\x73\xbc\x6d\xa8\x3a\x32\xef\x67\x41\x7f\x5d\x28\x22\xe3\x9a\xe5\x1c\xe3\xc1\x8d\x22\x70\xdd\xe7\xd9\xb9\x0f\xb1\x68\x88\x52\x36\x65\x79\xf9\xba\x5a\xbc\x67\xad\x85\x19\xaa\xd7\x85\x12\x43\x90\xe5\xa8\xa8\x63\x93\x95\x07\xf6\xa2\xdc\x16\x32\x04\x41\x8e\xa2\xbc\xce\x59\x4e\xe1\xb6\xea\x2c\xca\xc7\xc8\xa1\x32\x34\x59\x4f\xba\x7e\x96\xf7\xb2\x4d\xe8\xd7\x6d\xb1\x9c\x63\xc9\x72\xd2\xd5\x7d\x9c\xdb\xca\x4e\x9b\x91\x54\xb6\x1b\xb7\x95\xd4\xb5\x66\x96\x56\x81\x6e\x55\x32\x2f\x59\x4b\x35\x64\xb8\xe8\x6b\xc9\x2c\xed\x33\x9d\x8c\x31\x76\x94\xe7\xa5\x25\xca\x3a\x9c\xe4\xbd\x64\xda\xe7\x10\xdd\x26\xf1\xbe\xdc\x5b\xb6\x6e\x25\xf3\x7e\x11\xe4\xb6\xad\xa0\x7a\x92\xee\xb9\xd2\xb5\x55\x35\xbb\xee\x28\x3f\xdb\x36\xaa\x25\x69\xdb\x32\xdc\x48\xbf\x78\xcf\x86\x37\x80\x56\x88\x6e\x67\x09\x57\x67\xa6\xa2\xcb\x61\xd1\xc7\x26\x6b\xd9\x04\x9d\x20\x71\xc1\x0b\xa6\x22\x1b\x51\x92\xf7\x26\x2b\x9f\xf1\xeb\x42\x75\xd5\x58\x96\x6e\x25\x5d\xbf\xc8\x73\x39\x5c\x1d\x13\x24\xdd\x57\xfb\x93\xad\xea\x45\x37\x32\xa5\xcf\x73\x45\x5e\x1d\x75\x3d\x15\x0e\xcd\x49\xd3\x01\x20\x80\x0f\x78\x20\x32\x80\x35\x2d\x42\x8c\x58\x15\xdc\x0c\x29\xb9\x65\xd4\x6a\xc1\x5a\x12\x76\x19\x88\xa8\xc0\xd5\x1d\x2f\xc8\x5e\xee\x44\x3d\xce\xc9\xb1\x36\x90\xe4\x98\x49\xb1\xf6\xf1\x4a\xdd\xbc\x77\x8d\x05\x8e\xeb\x31\x15\x55\xc5\xce\xd1\x74\xeb\x12\xe5\x57\xda\xec\x44\x00\xb2\x07\x43\x8a\x45\x08\xdb\x8b\x24\x47\x68\x11\x0b\x48\xf1\xfa\x6c\xcb\x5c\x05\x13\x18\x66\x2e\x85\xc4\x18\x39\x60\x61\x44\x6d\x79\x91\x29\x54\xe3\x2a\x42\xb9\x24\x9d\xaf\xdc\xde\xd2\xbc\x20\x86\x99\x69\xac\x17\x18\x87\x27\xa4\x4a\x66\x05\x67\xa8\xa2\x1c\x45\x71\x2e\x5e\xe3\x94\xcc\xb9\x7a\x78\x7b\x8f\xab\x3a\x76\xf1\x61\x16\x3c\x64\xa3\x2a\x50\xaf\xd9\xe8\x75\x2d\xde\x30\x7c\x97\x12\x2f\x5c\xb0\x25\x15\x32\x4b\x0b\x83\x14\x75\xbf\xa9\x5d\xd7\x94\xad\xe5\x91\x1a\xa8\xbc\x28\x6d\xc5\x10\x41\x58\x07\xae\x71\x91\x2f\xc7\xed\x8c\xca\x93\xd2\x91\x0d\x3d\xac\x46\x17\x00\x84\x01\x00\x91\xa8\x3a\x92\xc9\xf6\x5b\x31\x06\x2c\xa0\x01\x09\x8c\xac\x97\xce\xc3\x39\x4e\xc9\xed\x8e\x17\x3c\xdf\xd9\x03\xbf\x5f\x04\x17\x92\x08\xcb\x6d\xca\xf0\x82\xe8\xfb\xda\x15\x7b\x1c\xdf\x92\x03\x11\x5d\x23\xb0\x07\x37\xda\x18\x4e\x70\x4d\x10\xb9\x2d\x41\x92\x0c\x93\x9b\x8a\x2c\x8a\x7e\x10\x50\x2c\xb7\x94\x71\x92\x24\x99\x3c\x3f\x8a\xa2\xe8\x87\x41\x4c\x31\x57\xdf\x54\xdc\xf6\xba\xc3\x24\x93\x16\xf0\xc8\xc2\xae\x2e\x16\x07\x74\xf4\x80\x21\x03\x7a\xf9\x1c\xd1\x99\x29\x6d\x39\xc7\xf0\x63\x96\x95\xaf\xd8\x91\x64\xce\x16\x47\x86\x17\xc3\x28\xef\x35\x63\x81\x2d\xb7\x6a\x4c\x95\x15\xc3\x2a\x57\x45\x98\xb9\x01\xc6\x59\x32\xba\xd5\xa3\x3d\x57\x3a\x9a\x61\x2d\xe7\x63\x7c\x98\xbb\x66\x58\x12\xc7\xe3\x8c\x2a\xf8\xda\xb3\x2c\x0b\xce\xae\x1a\x52\x0e\x76\x04\xc0\xbe\xa3\xb0\x0e\xef\x40\x5f\x53\xfb\xd0\x31\x70\x39\x83\x4d\x5c\x05\x11\x70\x80\x8f\xe3\x11\xb5\x15\xae\x74\x57\x8d\x2c\xeb\x17\x8b\x7e\xe4\x32\x8e\xa7\x54\x42\x1f\x04\xce\x32\x8c\x31\x0b\xb8\x06\xa0\xd7\x34\x42\xe0\xf9\x87\xcc\xa0\xcf\x83\x5b\x6a\x41\x3f\x66\x0b\xf3\x2f\xd3\x8d\xc7\x0c\xe2\x06\x70\x4c\x23\x22\x00\xf0\xbc\xbb\xfa\xee\x8a\xa2\x22\x67\xce\x49\x19\x79\x0d\x7b\x19\x50\x5c\xe3\x6d\x8c\xd2\x8d\xac\xeb\xfb\xc0\xb7\xf1\x87\x7a\x03\xaf\x1a\xf2\xf8\x2c\x38\xdb\x0f\xcf\x6e\x00\x79\xc7\x32\x1e\x5f\x3c\x16\x27\x78\xc7\x78\x56\xb0\x78\xcd\xb3\xd1\x38\x50\x75\x59\xda\x47\x5d\x4f\x9a\xfa\x9a\x3a\x58\x4b\x64\x36\x8b\xf3\xb2\x14\x31\xd0\x76\x19\x0d\x0e\x6b\x7a\x3b\x1b\xf9\x89\x5f\xba\x1b\x0d\x49\x30\x07\x00\x3b\x13\x09\x2d\x08\x82\x68\xb8\x01\x63\xe4\x4b\x4e\x26\x6f\x00\xaf\x22\x94\xa9\x7b\x4e\x90\xfd\x38\xa0\x30\x8e\x93\xe3\x41\x89\x72\x2e\xb7\x64\x55\x8f\x0a\xd3\x99\xb1\x32\x17\xea\x71\x1c\x5f\x5d\x80\xa2\xea\x51\x76\x5b\x18\xbb\xe8\xf1\x2c\x66\x8b\x2b\x32\x82\x1f\xc6\xf5\x5e\xb2\x46\x6b\xb3\x44\x66\x08\x49\x31\x9c\x75\xd4\xf5\xac\xaa\xfb\x18\xe3\xe4\x02\x99\x21\x5b\x8e\xdf\x1b\xa6\xac\x26\x45\xdd\xbb\x41\x58\x12\xdb\x08\x8e\xd9\x6a\x77\xdd\xe6\xf2\x12\xc4\x7b\xd3\xb2\x86\xeb\xd6\xab\x9a\xb3\x8f\xba\x91\x5d\xc6\x2c\xe0\x2a\x22\xb2\x95\xcc\x66\x09\xb7\xdb\xbb\xa6\x85\x77\x84\x6f\xa7\x00\xf8\x64\xd8\x39\x86\xa5\xe5\xbb\x03\x0e\x7b\x0f\xc2\x8b\x93\x18\x00\x12\x3e\x4a\x01\x2f\x8a\xbe\x1f\xa8\x57\x91\x59\xe2\x37\xa5\x18\xeb\x36\xaa\xc4\xf1\x9e\xe1\xb8\x63\x39\x85\x3c\x13\x74\x9a\x31\xe3\xe0\x80\x05\xfd\x22\xe8\x61\x72\x4c\x6e\x44\xa1\x71\x1e\xb5\x8a\x54\xa3\x32\xa5\x69\xf1\x36\x2e\xa6\x30\xfc\xaa\x55\x63\x38\x47\x32\x4c\x66\x48\xb2\x1c\x46\xee\x75\x30\x77\x1b\x9c\xe5\xac\x71\x1d\x9c\xc4\x31\xc5\x72\x9c\xa5\x93\xe3\x38\x51\x96\xc3\x24\x8e\x6f\x40\x1f\xf2\x3e\x53\x94\x47\xa0\xec\xe8\x53\x38\xeb\xfa\x82\x61\x32\x53\x12\x6f\x83\x29\x96\xbb\x62\x3a\x0e\x96\x64\xd9\x8f\x82\x1b\xb3\xac\x11\x00\xf3\x08\xf4\xb6\x90\x7a\x0d\x91\x09\xac\xc3\x01\xc0\x0f\x63\x5a\xc1\x72\x07\x8e\x49\x3a\x78\xee\x30\x84\xba\x3d\x33\xb2\x8f\x03\x02\x00\xe0\xb8\x41\xb1\xbc\xa4\xfa\x05\x27\xa8\x94\x91\x75\x79\x2e\x8b\x4e\x80\x85\xbb\x80\x92\xc3\x73\x4c\x57\xba\xc6\x6c\x1d\xd5\x98\x99\x62\x9f\x4b\x92\xa2\x26\xed\x08\x30\xdd\x72\xbc\xaa\x4e\x5d\x03\xce\xfa\x6e\x79\x51\xb5\x28\xcb\x22\x63\x27\x3b\xc5\x65\xe6\x56\x1d\x76\x4d\x52\x70\x00\x3a\x12\x27\x07\x5f\x05\x18\x85\x9d\x99\x2b\x56\x01\x10\x73\xc0\xe1\x5d\xb7\x07\xfd\x11\x88\xe4\x02\x63\xc6\x7c\x19\xf7\x3b\xae\x9f\x4b\x03\x9c\x44\x04\xc0\x70\xf2\x02\x2e\x52\x48\xf9\x3c\x19\x08\x85\x6f\xb1\xa1\xe0\x63\xc6\x71\x4b\x30\xd8\x1c\xf0\x67\x03\x81\xc3\xae\xcd\xf8\x0a\x50\x47\xb7\x9f\x31\x8c\xe8\x63\xf8\x96\xe9\x45\x52\x8d\x18\x7c\x34\x0e\x24\xb2\x98\xcf\xfd\xd9\xa1\xe1\x49\x56\x88\xf4\x98\xf0\xc7\x34\x74\x0e\x00\xa0\x7d\x00\x22\x1f\xf6\x99\x90\xb3\x04\x63\x2e\x9c\xbb\xa9\x48\xb2\xa4\x14\x05\x9c\x42\x2e\x1e\x2a\x4f\x3b\x80\xf9\x60\x0d\x7c\x5c\xa4\x6e\x00\x43\x26\x64\xcc\x6c\x79\xee\xa6\x3c\xf1\x71\x2c\x10\xe3\xcf\x4b\xa8\x38\x78\x58\x05\x8c\xc9\x22\x0e\x82\x83\x89\xb8\x0a\x00\xa2\x21\x74\x0f\x6f\x84\xed\x58\x32\xb5\xa3\xec\x96\x95\x25\xce\x6a\x4e\x48\xfe\x65\x7f\xe6\x97\x1b\x05\x0c\x82\x12\xad\xe6\x6e\xba\x6b\x6c\xaf\xab\x6c\xcb\x4f\xcc\x70\x9f\xcf\x5d\x98\xb3\x2b\xb2\x97\x0d\x88\x41\x8f\xaa\xd2\xb1\x7e\xe4\x99\x6e\x3a\xa3\x8d\xf9\x90\x9d\x6f\x00\x51\x14\x2a\x36\x04\x55\xb7\xa8\x1a\xce\xa0\x73\xd2\xaf\x62\x5c\xad\x0f\xf5\x6c\x0d\x55\xc6\x69\xc3\x47\x3e\xa8\xc0\x56\xc2\x5c\xd4\xe7\xb7\x87\x79\xa5\x4e\x0b\xfc\x60\x60\x97\x8d\x56\x02\xd4\x28\xd8\xac\xd2\x51\x1d\x81\xbc\xd3\x2c\x1c\xf3\x65\xa8\x41\x1d\x7f\x6d\x6e\xa1\xc5\xea\xac\x4e\xf3\x43\x62\x6f\x49\x56\xf5\xa3\x53\x6a\x31\xe8\x86\xb0\x0f\x45\xef\xba\x66\x1e\xd8\xbc\x94\xe0\xce\xa2\xe4\xe2\x48\xe5\xa3\x4b\xbf\x0e\x99\xac\xf1\x17\x2e\xdb\xce\x04\x83\xde\x58\x8b\x8d\x33\x1d\x31\xdc\x7a\x6d\xe1\xac\x4c\xe4\x48\xb9\xc4\x79\x07\x15\xf4\x50\x4b\xa7\xb3\x4e\xea\x3d\x0b\x59\xe1\xd6\x1b\xce\x59\xd0\x6c\xe8\x0a\x37\x5d\x11\xe3\xec\x90\x86\xb5\x5a\x85\xd0\x64\xbd\x88\x89\x2d\xa2\x40\xd3\x3e\x32\x1d\x23\x3d\x4e\xc9\x11\xa0\x55\x0c\x2d\xd4\x2b\xbe\x90\x29\xd4\x76\xda\xaf\xe4\x7d\x21\xce\xf7\xd3\x0c\x00\x4c\xee\x1b\xed\xd8\xad\x56\xac\xbb\xb0\x93\x44\x49\x1a\xd6\x8a\x8e\xab\x05\xbc\xa1\x69\x38\xda\x1a\x5c\x0b\xa4\x43\xde\x9d\x04\x19\x1c\x2e\xf2\x01\x38\xc8\x28\x36\x51\xea\x11\x1d\x86\xd0\x1d\x00\x6c\x2c\x12\x06\xb7\x58\xac\x97\xfb\xd5\x66\xcb\xe2\xe7\x7e\x3e\xcd\x97\x16\xa1\xba\xc8\xea\x28\xb7\xd2\xe5\xb8\x63\x23\x06\x5f\x18\xe6\xec\xbc\x6b\x17\x71\x2e\x04\xa6\x32\xc0\xd5\x94\x48\x52\x6a\xe6\x8e\xd1\x57\x5e\x97\x29\xbf\x54\x09\x9f\xd1\x67\xb3\x63\xb0\x76\x68\xc5\x85\x21\x39\xb1\x7d\x01\xb8\xbd\x73\xd1\x3b\xfe\x9a\x71\x96\x26\x7a\xda\xcb\x27\xd3\x1e\xb8\xd0\x28\xb9\xf9\xb4\x3e\x14\x75\xca\x6b\x3b\xc1\xd3\x85\x2d\x12\x69\xad\x6a\x8c\x5b\xce\x91\x03\x0b\x05\x11\x1e\x2f\x2c\x4a\x12\xe6\xca\x6e\x6b\x1c\x4c\x87\x51\xd1\xd6\xe0\x67\x41\x16\xc8\xf3\x33\x4d\xc5\xe9\x45\x87\x10\x65\xc1\xae\xa2\x6d\x25\x07\x47\x5d\x59\xef\xe1\x85\x36\x45\x71\x68\x7b\x28\xd8\x99\xe8\xea\x61\xb5\x3d\x8c\x06\x96\x1c\xe8\xe2\xc8\xc8\xd8\x81\x09\x53\x9d\x50\xeb\x15\xe3\xb1\x2d\x74\x5a\x08\xf5\x80\xf5\xb9\x32\x98\xa6\x38\xc5\x0d\x32\xa0\x8f\xa7\x62\x3b\xb7\x00\x26\xc6\xe1\x0a\xd9\xb2\xc1\x7e\x9e\xb1\xed\x34\x38\x3a\x20\x07\xec\x35\x77\xd0\x6f\x00\xd7\x5b\xa4\xb4\xc0\x71\xbe\x57\x1d\x80\xa5\x5a\xbd\x5a\xe1\x83\x09\xb0\xe9\xae\xa2\x1d\xcd\x9b\x8a\xf3\x60\x2a\x62\xb3\x2e\x80\xcc\x92\x55\x0e\xbd\x8c\xb9\xcc\x3a\xf1\x15\x0f\xb8\x4a\x25\x0a\x19\xa5\x92\xa9\xbf\xc1\x68\x47\x3b\x04\xfd\x0d\xa0\x2c\x49\x46\xc4\xe9\x26\x7b\x14\x28\xe3\xb0\xd4\xe6\x80\x2c\xc3\x9c\xcd\xc8\xf3\xd1\x07\x48\xc7\x4a\x26\x2d\x93\x7d\xc2\x12\xc9\x9a\x82\xc1\xd2\x27\x8f\x95\xbf\xb0\xe6\x66\x05\x76\x4c\x5d\xf2\xd8\x6a\x7a\x0a\x56\x2a\xb7\x6b\x0d\x7d\xcc\xe8\xdd\xba\x22\x3a\xea\x34\x4b\x06\x63\x90\x67\xd4\x1a\xd9\xcf\x02\x44\xb8\xd4\x88\xb7\x5a\x62\x33\xd1\x95\x61\x19\x54\x62\xe8\xef\x0e\xbc\xe0\xb3\xf2\x86\x95\xf0\x55\x40\x1d\xc1\x32\x52\xab\x1d\xb5\xe7\x88\x85\x03\x16\x8e\x22\xb5\xbe\x3c\xd6\x60\x0f\x0e\x4a\xc5\x9b\x4d\xaf\xa3\xa2\x12\x42\x3c\x2d\xad\x09\x32\x59\xea\x69\x6b\x69\x22\x50\x3a\xa9\x90\xb8\xf3\xa5\x13\x37\x58\x59\x06\x8d\x2f\x21\x80\x53\xaa\x83\xe8\x89\x4e\x54\x02\xc1\x27\x84\xc0\x56\x48\xf9\x52\x1e\xc5\x05\x8c\xdf\x00\x46\xfb\xfc\xe8\xd6\xfa\x59\x5f\xe9\x08\x84\xaa\x67\xef\x88\xaa\x9b\x85\xcf\xb8\x56\x7c\x92\x40\x06\x92\x42\x25\xc3\x2e\x5f\xa0\x01\xee\x3a\x78\x17\xfb\xf3\xd5\xc9\xb1\x4f\x43\x9c\x88\x3c\xf0\x2d\x2c\x0a\x56\xce\xf4\xe4\x10\x3e\x35\x1d\xe5\xf0\xd4\x11\xc7\xd3\xe0\xf9\xbb\x83\xb3\x33\xd8\x0a\x00\x56\x04\xa5\x72\x3c\xa7\x01\xd4\x1c\xb7\x17\xb4\x9d\xd1\x11\x9a\x6b\x4b\x08\xad\x17\x65\xa3\xaf\x67\xa7\x65\x5e\x9e\x6c\x1e\x11\x51\x7d\xaf\x5d\x36\x6b\xac\x53\x6b\x1b\xef\x02\x2a\x18\xe3\x43\xbd\x39\x78\xed\x52\xf0\xa0\xb9\x69\x51\xa2\xea\xf8\x5c\xa9\x55\x73\xd7\x3b\x0d\xc1\x4c\x01\x04\x98\x11\x64\xb0\xb0\x51\x2d\x26\x2c\x12\xef\x16\xf6\xd4\x3e\x9c\x22\x2e\xab\xd0\x9a\x01\x8d\x87\xb6\xac\x29\x84\x01\xea\x5b\x68\xbc\x1c\xad\x0d\x7a\x90\x4f\x4c\x54\xee\x5a\xf8\x00\xe4\xf5\xf2\x70\x70\x77\x2b\x7f\x9d\x39\x08\x57\x7b\x7b\x8a\xe3\x06\x4e\xf2\x02\xa1\x45\x7c\x36\xa3\x76\xd8\xe1\x98\x58\xc7\xf6\x80\x89\xcc\xce\x67\xb3\x14\xb6\x6d\x1d\xab\x86\xd2\x30\x0d\xa3\x23\x57\x63\x7a\x1b\x23\xe7\x69\xab\xb8\xea\x4a\xcb\x23\x64\xb6\x0b\x55\x58\xb4\xce\x87\xe8\xd2\x01\x40\x17\xb6\x8a\xc3\x90\x51\x19\x82\x6b\xcf\xbd\x25\x26\xe4\x2b\x12\x76\xf0\x10\x9e\x83\x0c\x52\x7c\x62\x6d\x6a\x80\x0f\xdd\x65\x00\x81\x35\xe3\x61\x37\x80\xfb\x28\x5f\x42\x7d\x05\x00\x6e\x92\x3b\xd2\x60\xa2\xe9\xa5\x65\x96\xe2\x30\xdb\xef\x97\x31\x73\xaa\x31\x68\xc9\xf0\xfa\x59\x67\xf7\x42\x71\x50\x78\xcf\x05\xc9\xc5\x3a\x2f\xc9\x0a\x16\xb1\x28\x66\xf3\x50\xd6\x75\x3a\x15\x11\x3c\x33\xc6\xf6\xc7\x56\x07\x49\x3d\x85\xfd\x9d\x88\x51\x1c\x8e\xa5\x39\x22\xaa\xaa\x68\x42\xb3\x3a\xa8\x4d\x02\x63\xd5\x9c\xd2\x8d\x35\x32\xa0\xf3\xcc\xc9\x4a\x6c\x89\x64\xc7\x55\x81\x2d\x2e\x70\x76\x00\x2d\x74\xca\x7a\x1a\x59\x74\x5a\xe2\x33\xf4\x69\x34\x5f\x3d\x25\x94\xeb\xd8\x33\x1d\xac\x98\x71\x3d\x6a\xb6\x78\xb1\xc1\x7c\x6b\x89\x6e\x40\xdf\xd0\xcd\x61\xbf\x83\x56\x33\x03\xa7\xe6\xe4\xa5\x63\xf3\x82\xa6\xc0\x71\x79\xa4\xe0\xea\xac\xd9\x0d\xd8\xa7\x6d\xeb\xee\x9c\xb2\x39\x19\x9d\xc0\x8f\x45\x8c\x90\xb0\x96\x21\x98\x2f\xd7\xc0\x00\x00\x5b\x26\x7b\x8c\x3f\x3a\xbe\x42\xac\x69\x59\x2a\xd8\x79\xdb\xad\xf1\x33\x88\x71\xf2\x00\x70\x20\xc7\x47\x08\x1c\xba\x83\xc0\x72\xf1\xa6\xbf\xba\xd1\x43\x92\x7a\x2d\xe2\xe9\x39\x8a\x1e\xfd\xd1\xd1\x77\x28\xd1\x9e\x86\x65\x72\xd9\x46\x68\x76\x39\xac\x0d\x85\xab\x70\xa1\x1d\x80\x0f\x76\x62\x08\x67\x33\x67\xb9\x1f\x2a\x44\x40\x0e\x3e\x12\xcc\x01\xce\xb0\xc0\x07\xdb\x03\x6c\xed\xd3\x45\x0f\x63\x84\xaf\x9d\xe8\x55\x83\x28\xf5\xe5\x34\x3a\x7a\x47\x62\x1a\x03\x5c\xc4\x00\xa3\xa0\xb8\x95\x25\x50\xd7\x3e\x58\x2a\x07\x5b\x37\xc1\xc6\xb7\xd4\xd2\xd4\x81\x4a\x02\x30\x25\xfa\xf9\x4a\x44\xa1\x72\xbd\xa2\x7b\x55\x2d\xcc\x04\x83\xb1\x44\x6d\xf8\x38\x3b\x53\x67\xba\x9e\xf9\xc4\xd8\x5c\x48\xd3\xb6\x39\xae\x79\x26\xa9\xce\x72\xb1\xd0\xa3\x41\x1e\xb6\xf2\x12\x11\x48\x26\x16\x9a\x93\xae\x7b\x43\xaf\xe7\xed\x92\xc2\x7c\xc2\x67\xb5\xb8\x3e\x1d\x29\xa3\xde\x03\x90\x16\x2a\xdc\x8b\x19\x01\x1b\xbb\xf0\x98\x2d\x1c\x6a\x21\x8e\xc9\xe3\x1c\x4f\x8d\x59\x8d\xed\x40\x64\xe2\x02\xc0\x40\x60\x47\x10\xe0\xa7\x10\xe8\x64\x1c\x77\x63\x1d\x00\xc0\x3b\xd4\x59\x5e\x65\x9d\xbd\xde\x6a\xc4\xd0\x7a\x44\x68\xb6\x43\x6a\xd7\x48\x4d\xcd\xed\xdd\x22\x73\xf7\x33\x83\x8b\xd7\x6b\x65\x4c\xcd\x48\x80\xe1\x66\xdb\x9c\x8a\x8d\x81\x2b\x58\xcd\x77\x1a\x10\x55\x12\x74\xdb\x7a\x1f\xd7\x83\x6c\xd1\x2d\x20\x0c\x1c\x55\xfa\x9d\x76\x2e\x42\x09\x4c\x05\x13\xf0\xc1\xe0\x14\xa4\x2f\x39\x40\xe8\x32\xdc\x6f\x5d\xa5\xaf\x14\x7a\x37\x26\x8f\x24\xb5\x9c\x66\x82\x8d\x4c\x0f\x80\x59\x3b\xe1\x41\x74\x8e\xfe\x2a\x17\x8c\xe9\xee\xdc\x8b\x72\x8b\x9c\xce\x09\xd5\x9c\xd1\xb9\xbf\xed\x06\x74\x06\x43\xf6\x96\x5b\x0e\x68\xef\x2b\xeb\xf5\xca\xcb\x12\x5d\xdd\x91\x16\xe1\xc2\xf3\x8e\xf6\xc6\xbe\x9e\xd1\xbb\x67\xc7\xd7\x10\xb9\x6f\xe5\x2e\x85\xb5\xcc\x3c\xb2\x52\x11\x49\xf8\x02\xc8\x22\x94\x34\x5a\x06\xd4\xea\xb8\x02\x3e\x10\x79\x6c\x6f\x69\x1d\x00\x31\xc0\xa4\x5e\x81\x66\x87\xe4\x54\xec\x0a\x59\xda\x13\x76\x70\xb4\xe1\x51\x97\x6d\xaf\xcc\x31\xd4\xde\xcc\xcf\x79\xa3\x93\xe6\x19\xc3\x09\x44\x70\xdc\x23\x95\xe3\x1c\xe9\xe3\xc4\xc9\xa1\x0e\x7c\xb7\x06\x00\x10\x6a\xa7\xcc\xe3\x54\x4d\x16\x70\x9c\x74\x65\xce\xf3\xc1\x41\x64\xb8\xf3\xb2\x81\xc9\xf5\xa9\x44\xda\x31\x93\xc2\x52\x9f\xdf\xbb\x4c\x5c\x9a\x55\xe8\x9f\xad\x20\x3e\x37\xee\x12\x50\x9a\x3f\xad\x87\x63\xa7\xa6\xc7\x1d\xaa\xb0\xbb\xdc\x3a\x5b\x3a\x07\xe6\xda\xad\xd1\x1e\x52\xa7\x82\xf5\x39\x60\xc2\xeb\x63\x59\xcb\xa8\xdb\xd7\xe2\xde\x70\xc6\x70\xee\xd0\x1a\xe4\x76\x8d\xc7\x6d\x29\x4a\xac\x8f\x79\x79\xd0\xa5\x7b\x9d\x3d\xd7\xdb\x22\xc9\x97\x1a\x79\x90\x5b\xcc\x5b\x91\x58\xa8\xa2\x85\xcf\xda\x22\xe8\x88\xf9\xce\x5b\xef\x00\x4f\xf0\x01\x6d\xef\x01\x00\xb1\xcf\x4d\x6b\xaa\x5a\x8c\xf6\x70\x6a\x5c\x58\x67\x73\xc1\x53\xd6\x42\xcb\x7e\x77\x68\xe2\x6d\xda\x77\xd5\x51\xdb\x50\x55\x84\x44\xf3\x43\x58\xe1\x80\xc6\xd7\x54\xd4\xd9\x5b\x72\xe3\xb3\xb7\x2a\x49\x7a\x89\xaa\x33\x8c\xbb\x14\x6f\xee\x76\x7e\x36\xac\xf9\x29\xf5\xd0\x5f\x0e\x3b\x03\xf3\x99\x7e\x3a\xd0\x21\x8e\x01\x0e\xc4\x18\xb7\xcf\xa9\x59\x25\x6c\xd8\x5c\x73\x2e\x64\xb8\xb1\xca\xd9\xc2\x88\x69\xbf\x6c\xea\xc5\xe9\xc0\xa6\x91\xcb\x2e\x5b\xb2\x33\x0f\x17\x40\x8b\x18\x43\x12\x6a\x19\xf3\x0e\x06\xc0\x58\x90\x44\x38\x20\xc3\x62\x31\x65\x3b\xa9\x22\xe7\x80\x35\x6b\x3e\x05\xc4\x72\x9b\x0a\x46\x67\xc4\x02\x63\xb6\xf5\xa0\xee\xdd\x73\xe9\x61\xab\x53\xc8\x47\x3a\x03\xe3\x09\x86\x2d\x01\x03\x38\x07\x5d\x83\x4d\x56\x91\x54\xac\xc8\x5b\x12\x1f\x0d\xec\xd4\xb1\x3d\x89\xc0\x61\x4b\xca\x77\x74\xb1\x3f\xe4\xb1\xc3\x41\xab\xe5\xae\x4f\x91\x32\x4f\x8a\xcb\xb1\x32\x58\x5d\x0a\x21\x4a\xbc\xb5\x86\xc5\x68\xc3\xe3\x40\x08\xed\x52\xc4\x44\x40\xe0\x44\x55\xe4\x59\x76\x68\x6a\x77\x0a\x8f\x19\x3d\xee\x6d\xfc\x65\x48\xba\xa1\x71\xf4\xb5\x44\x04\xcc\x7c\x3a\xef\xaa\x88\xc4\xc8\x10\x8b\xb3\xbd\xb8\xe4\x42\x18\xe2\x14\x11\x16\xcf\xfa\xe9\xdc\x0f\xe1\x14\x78\xcd\x91\xcb\xf8\x33\xa9\x9d\x44\xc1\x1c\x4a\xf8\xb2\x99\xcf\x8a\x9d\xcf\x23\x0f\xaa\xd7\xb7\xb6\x29\x14\x4e\x6f\x2e\xd9\x65\x54\xc6\xe5\x79\x7e\x41\xce\x1b\xe0\xfa\x1c\xd1\x2f\xb7\x29\x5b\x69\xbb\xc0\x76\xe6\x48\x53\x2c\xd6\xf3\x69\xd6\xc8\xee\x1e\xcb\x33\x3c\xc4\x35\xba\x1c\xa6\xfa\xa0\x02\x88\x20\x6a\x62\x0d\x94\x87\xee\x2d\x1a\xc0\x31\x8f\x03\x30\x38\x54\x3b\x95\xa7\x27\x59\xde\x47\x9e\xa1\xc7\x4a\x6e\xa3\xf3\xe4\x84\x48\xa7\xa4\x28\x58\x8f\xf7\xa2\x38\xa0\xc1\xa9\x59\x69\x19\x20\x01\xee\x03\x90\x73\x52\x54\xef\xa6\x5c\x24\x12\x3a\xdf\x19\x63\xe4\xa0\xde\xce\x7b\xe0\x5c\x95\xaf\xe1\x3e\xc8\x37\x33\xf5\x5c\x88\x58\x87\xf6\xf3\x85\xe3\xd5\x45\x74\x16\xc9\x4b\x83\x6e\x37\xd8\x72\x3f\x95\x96\x0b\x58\x2d\xd6\x82\x16\xfa\xab\x4e\x48\x96\x7a\x93\xc2\x9e\x35\x8f\x39\xe2\x90\x59\x36\x5b\xdd\x00\x2e\xad\x5d\xe1\xdb\xc1\x61\xc8\xdb\x39\x27\xcd\x43\x81\x08\xe3\x6e\xbd\x36\x73\x63\x55\xcc\x18\x81\x77\x6c\x20\x03\x01\x68\x75\xe2\xe0\x69\x66\x3b\x65\xb4\x9d\x73\x5b\x79\x05\x99\x69\x15\x69\xba\xb4\xa7\x36\x2c\x2c\xa9\x34\x27\xa4\x23\x97\x2f\x97\x8d\x0e\xd6\x44\xbb\xdc\x5d\x93\x31\x89\xc7\x45\x15\xcc\xb7\x65\x58\x9f\x34\x1e\x89\x1d\xf3\x44\xa3\x22\xaa\x40\xad\x39\x5f\xb1\x88\x41\x07\x4e\x82\x59\xc3\xf9\xe4\x5e\x1a\x0d\x59\xf8\x3b\x30\x94\x0e\xec\x8c\xd9\xd4\xd8\x5f\xc6\x83\xe5\xc1\xbd\x3e\xd8\x5e\xf4\x33\xa5\xcf\x2f\xb2\x73\xb6\x74\x0b\x49\xb6\x4e\x76\xa2\x7b\xbd\xf7\x3a\x0e\xec\xfc\x58\xc7\xf2\x9d\xda\x76\x5d\x34\x55\x85\x60\xe1\xed\xb7\x17\x55\xa8\x66\x10\x49\x4d\x73\xb3\x9c\x36\xee\x42\x18\xc6\xf4\x76\xdb\x19\x2e\x00\x98\x8f\xe4\x0b\x64\x17\xca\x3e\x30\x20\x53\x8b\x85\x24\x8c\x49\x9f\x4e\x97\x5b\x54\x70\x3a\xe3\x3c\x30\xab\x56\x38\xcf\xea\x65\x5f\xf5\x73\x19\x8d\x31\x63\xb3\x24\x55\x11\xa3\x96\x80\xc1\x40\x72\x30\xe8\xf9\x21\x1b\xad\x8d\x81\x67\x2c\x00\x84\xee\x4d\x05\x93\x35\xc3\x15\xd4\xaf\x96\xd0\x85\x5e\xed\x86\xd3\x86\x5f\x1c\x07\x89\x4b\xa9\x43\xd2\x7a\x7c\x15\xc6\x22\xdd\x69\x0f\x67\x1f\xd0\x9d\x48\xac\x0f\xf8\x35\xa7\x24\x7c\x0b\x16\x9b\x33\xb6\x7b\x70\xa3\x83\xc7\xce\xad\xa5\x09\x91\x92\x86\x01\x35\x06\x24\x51\xb4\x19\xbf\xc2\x44\x0c\x34\xc0\x6f\x06\xaa\x60\x76\x75\x72\xa6\x51\xce\x9d\x77\x27\x2e\xb3\x53\x21\x00\xe8\xb0\x5e\x14\x7a\x26\x1d\x92\x4d\xd0\x65\x02\x9d\x11\x00\xc4\xa3\xd8\xd8\x1d\x01\xc0\x62\x49\xd1\xa0\x39\x9e\x62\x3a\x43\x4f\x1e\x52\xd7\xdb\xcd\x51\x25\x3c\xb0\x31\x12\x03\xc7\x44\x38\x3b\x94\xd0\x4c\xc4\xd7\x4c\xdb\xe0\x57\x7a\xe7\xb6\x0a\x44\x9c\x43\x10\x3e\x21\x51\x61\xb5\xd6\x80\x4d\x8b\xca\xd8\xf1\x39\x30\x87\x7d\xa6\x6c\x86\xbd\x83\xc6\x88\xe0\xad\x14\xa0\xed\xc0\x1e\x6b\x4e\xca\x9a\xbf\x9d\xee\xd8\x0e\xca\xfc\x20\xaf\xaf\x9f\x33\x72\xb7\xa5\x6d\xa4\xb1\xf0\xae\x23\xdb\x19\xa9\x07\x54\x19\xaa\x91\x0d\x2c\x60\x22\x2b\xe8\x34\x36\xb9\xcc\x54\x31\x8f\xb6\x3e\xa0\x58\xa7\xe7\x67\xd5\xe2\x4d\x4e\x3a\xaf\x5c\x13\x66\x21\xc8\x57\x3d\xc5\xcd\x35\xb2\x03\xc0\x14\xa8\x6a\xdf\x73\xe0\x2c\xca\x3e\x98\x02\xec\x90\x19\x6b\xf6\xbc\xb8\x20\xdd\xd9\x5b\xcf\xce\xd5\xd1\x81\xc6\xca\x92\x22\x88\xba\x42\x18\x26\x96\x80\x68\x4f\x84\x85\xd6\x35\x00\xd9\xb3\x9b\x2b\x46\x24\xc6\x81\x7a\xa3\x95\xd5\xa9\x82\x90\xfd\x6c\xc3\x0b\x9b\x99\xbc\x29\xdd\x35\x49\x2b\x26\x9d\x0e\xf8\x82\x37\x92\x93\x48\x02\xfc\x02\x51\x98\xf3\x50\x32\x05\x04\x58\x38\x73\x3f\x9c\x0f\x6b\x09\xec\x2b\x28\x59\x52\xfb\xa3\x96\x6d\x08\x6d\xbe\x64\xb7\x33\x0c\x23\x9a\xa8\x88\x3b\x48\xb3\x16\xdb\x95\x68\x37\x5b\x4d\x66\xa6\x88\x65\x5a\xd9\xee\xc8\x96\xae\x76\x46\x86\x18\xdf\x98\x0b\x91\x7c\x68\x14\x52\x03\xb4\x10\x07\x5f\x33\x47\x71\x87\xb2\xa3\xd3\x5f\xf0\xa5\x7e\x52\x9a\x29\xbc\xd1\x3c\xc8\x59\x2d\x97\xec\x5c\x53\xc0\x56\xa5\x12\xb0\x98\x4d\x35\xb0\xe7\x42\x48\x3c\x64\x87\xce\xf0\x0d\x10\x81\xd5\x6c\x21\xd0\x73\x19\x1e\xbb\x15\x0b\x8e\xa0\xdb\xf3\x66\xc3\xf3\xc5\x5a\x39\x50\x0e\x5a\x66\x9c\x99\x6e\x85\x4c\x99\xd9\x09\x13\x68\xbe\xb3\x3a\x02\x7e\x3c\x2c\xc6\x03\x7d\xa6\xd9\x62\x87\xfa\x56\x3e\x08\x39\xeb\x4e\x39\x17\x39\x39\xf3\x50\x16\x96\xc8\x69\xec\xf8\xb4\x9b\x69\x92\xb5\x4d\x38\xeb\xd4\xfd\x01\x9c\xe1\xc5\x66\x8f\x0a\x5a\x3f\x44\x73\x5f\x5b\xa1\x87\x84\x5c\x53\x0c\x40\xa8\x45\x22\x15\xe8\x8a\x6c\x9d\xd5\xb2\xdd\x1d\x4f\xd4\xbc\x24\x16\x2a\xcb\x82\x6e\xbe\x0c\xf4\xe5\xce\xc4\xed\x45\x35\xb6\x32\x77\x6e\x3f\x8d\x86\xab\x3d\xc4\xa6\xc1\xe9\xb2\x59\x4c\x37\xcb\x85\x89\xef\x0e\x2b\x0c\x85\xb4\x58\xa1\xf1\x96\x20\xb9\x5a\x0c\x94\x64\xce\x85\xb8\x0f\x48\x60\x97\x27\x5b\x57\x0e\x55\x75\x45\xfa\x98\x7b\xde\xac\xd6\xca\x6c\x30\x46\xe3\x90\xce\x67\x1d\x31\xb3\x3c\xa3\x8e\xb8\x53\xd5\xed\x17\x90\x7c\x3c\x08\x30\x4b\xa4\x81\x00\xcd\x63\x4b\xcd\xca\xba\x85\xaa\xf9\x0c\x39\x5d\x6c\x0f\x4a\x85\xbd\x9b\x3a\x19\x4e\xa7\x98\x16\x87\x0d\x8c\x8b\x5b\x4c\x8f\x0f\x06\xb4\xe0\xba\xd1\x38\x24\xc8\x0e\x8a\xca\xe6\xc0\x2f\xc5\x55\x36\xcc\xeb\x96\x10\x2f\x53\xdb\x44\xe9\x41\x08\xa7\xfe\x9e\x06\x73\xc2\x24\x7d\xf0\xe1\x36\xf8\xcd\x4f\x3f\x3f\xfe\x38\xf3\x9d\x93\x7f\x61\x62\xf9\x5e\x05\x85\x4e\x96\xfe\xb2\x59\xbe\x79\x37\x79\x73\x7b\x02\xe5\xe9\xe7\xa7\xff\x42\x0d\x13\xa4\x0e\xe6\xb6\x7e\x76\xdd\xe1\x5e\x56\x03\x52\xf5\xaf\x1a\x74\x3b\x6a\xe4\xe3\xd7\xd8\x1c\x10\x61\x42\x3b\xf3\xdb\x93\xad\x8b\x29\xd7\x90\x77\xb7\x3d\xe0\x50\x1f\xdc\x8e\x89\x00\x6a\x50\x23\x77\xd4\x75\xc0\xad\x04\x5a\x88\xae\x4f\x7d\x03\x0e\x64\x45\x04\xc0\x0b\x0d\x00\x18\x9c\x04\x80\x58\xde\x5e\x08\x3e\x00\xb4\xda\x01\x40\x14\x57\xf0\x42\xee\x03\x80\xb9\x5d\xba\xcb\xa5\xc3\x4d\x3c\xcc\x50\x86\xdd\xb1\x02\x0a\x0e\x6b\x00\x75\x04\x94\xed\x90\x34\xba\x89\x6a\xdc\xc9\x54\x3c\x00\x00\x1a\xa6\x03\x60\x17\xf2\x98\xc7\xa9\x90\xeb\x03\x40\x71\x01\x2b\x91\x94\xea\xed\xcb\xfa\x78\x8c\xab\x23\xef\x2e\x20\x14\x1e\xd6\xcb\xf9\xa6\x21\x86\x11\x60\xd2\x4b\x54\x68\x33\x95\x70\x34\xd7\x1a\x93\x2a\x2c\x65\xc8\x3a\x6a\x39\x35\x39\x73\x6a\x3d\x72\x6a\x92\x5a\x32\xb0\x26\x51\xa4\x0e\xb2\x30\x10\x33\x70\x16\xa9\x24\xc4\x32\x5f\xb7\x18\x12\x10\x14\x9e\x88\xc7\x28\xae\x33\x78\x3e\xba\x59\x01\x4e\x5d\x9d\x99\xdb\xbd\x69\xc5\x3a\xcd\x86\xa9\x62\xd4\x91\xc4\x52\x91\x53\x0f\xf1\x66\x70\x37\xab\xd5\x74\xed\xcc\x37\x53\xf5\xdc\x84\xb9\x8d\x13\xb3\xcb\x74\x33\xb5\xbc\xd5\xa2\x6d\x13\x36\x6e\x51\x5f\x40\x0c\xa9\xb9\xfd\x37\x5a\xf4\xeb\x3f\xd4\x06\xd4\x65\x86\xed\xd1\xf4\xe4\x71\x95\x25\x1f\xf5\xa6\xb4\xca\x56\x6a\xd5\x52\x49\x63\xc7\xd1\xa0\x85\x85\xc6\x84\xe4\x49\x1c\xe5\x3a\x73\xd3\x5a\xa6\x43\xab\x23\xf6\x4a\x60\xf2\xce\x0c\x56\x7b\x74\x15\xd2\xc6\x98\xa0\x1f\x86\xfa\xd2\x5e\xe6\x61\x01\x60\x58\x49\x7d\x48\x3f\xd2\xb3\x13\xba\x15\x2b\x2a\x0a\x61\xd1\x1e\xa6\x0e\xd0\x66\xc8\xd9\x93\x22\xa5\xeb\x54\x17\xb9\x9c\x2a\x8d\x59\x6f\x84\xb3\xbd\x2b\xbb\x34\x63\x99\x5d\xb7\x26\x33\x20\x30\x80\xf2\x47\x4d\xea\x08\x05\xef\x1d\xc0\x62\x24\xcb\x84\x0c\xf0\xb3\x90\xc1\x01\xe3\x33\x3e\x83\xb1\xdb\xdc\x3d\x48\xb8\x54\xa0\xd5\x01\xc7\x00\x0b\xc2\x70\x2d\xfa\x20\x82\x0e\x0c\x15\xc9\x18\x26\xb6\x01\x2a\x4a\x91\x78\xac\x49\x1c\xe3\xf2\xb1\x0c\x43\x6f\xec\x72\x11\xf0\x61\x14\x38\xfe\x5c\xd4\xe6\xae\x11\xf9\x40\xa2\x30\x39\x4a\x62\x35\x49\xf3\xd5\x2e\xd9\x1d\xd7\x65\xbc\x2e\x36\x0b\xe1\xc0\xb1\x30\x21\xe2\xd1\xc1\x53\x48\x47\x2c\x01\x31\x5b\x6d\xa6\xab\xe9\x6a\x57\x1d\xd0\xb6\x1e\x8d\x47\xb7\x01\x33\xb3\xb5\x3b\xea\x24\xf2\x50\x39\x83\xc0\x85\x58\xce\xb9\x1d\xd6\x2e\x58\x9a\xb1\x98\x8e\xc9\x99\xc5\x96\xb1\xbd\xd6\x5d\x23\x25\xcc\xa0\x02\x7f\x6e\xd9\x93\x90\x2d\x4e\x27\xbc\xe8\x66\x64\xc0\x48\xb1\x28\x86\xa8\x85\xae\xc6\x18\x1c\xb6\xea\x93\xa2\x61\x08\x72\x08\x98\x86\xae\x37\x8b\x3a\x4d\xb1\x72\xb5\x18\xe8\x3d\x04\xb6\x40\xce\x8c\xf3\xa5\xd7\x34\x05\x17\xf0\xc3\x49\xd0\xf7\x9b\x6a\x7b\x6a\xbc\xa9\x7b\x82\x76\xf3\x12\x1d\xd6\xbc\xbc\x55\x85\x16\xb5\x74\x83\x18\x7b\x05\xc5\x1c\xc5\xc8\xe3\x91\x14\xa5\x03\x2e\x72\x8b\x82\x8a\x3d\x8a\x77\xdd\x46\xe8\x78\x0d\xd5\x39\x15\x3b\x52\xda\x45\x3b\x06\x75\x82\x9e\xcb\x73\xdd\x76\x33\xb4\x6d\x76\xb3\xe6\x70\xdc\x02\xa0\xfa\x41\xb4\x8d\x77\x87\x23\xbb\x31\x5b\x73\x8c\xc1\x77\x2b\x74\x9d\x0d\x6b\xba\x12\x02\x8a\x42\x1a\xd4\xa2\x61\x72\xcd\x92\x2d\xd0\x03\x6f\x9a\x22\x07\x9a\x58\xc1\xe6\x0a\xea\x13\xc7\x39\xed\x30\x99\xdb\xf0\xb3\xf4\x08\x83\x22\x35\x28\x99\x0b\xb1\xd5\x89\x09\x85\xc1\x47\x23\x64\x86\x8d\x99\x96\x41\xeb\x33\x9f\x8f\xca\x19\x44\x60\xd8\x74\x49\x47\xdb\x9d\xd2\x27\xd2\xc9\xee\x4f\x9b\x69\xe1\x40\x6b\xbd\x1a\xf8\x4d\x3c\x50\x9b\xcd\x7c\xb9\xae\xbb\xde\xc4\x41\xb1\xe8\x6c\x31\xe4\x71\x89\xd4\x0f\x58\x44\x1c\x5d\x0f\xf5\x98\xf9\x7a\xf4\xdb\xd3\xc0\x83\xa6\xb3\x06\xf2\x6a\xc8\x41\x01\x37\x85\x1a\x79\xb8\xec\x94\xd6\xe7\x56\x65\x32\xad\x31\x72\x8e\x9b\x60\x46\x4b\x16\xa5\xac\xb2\x62\x2f\x72\x38\xee\x56\x05\x96\x2f\x67\x5b\x62\xe3\xd1\x18\xb1\x5a\x1d\x9b\x94\x9d\x2d\x33\x68\x2c\x58\x2e\x8b\x29\xe4\xec\x58\x63\x77\x40\x4e\xc1\x70\xda\x6e\x23\xc9\x08\x3b\x4c\xe2\x90\x53\xba\x83\xd0\x50\x1a\x56\x50\xa3\x40\xeb\xf4\xd4\x34\x03\xa2\xf4\xb1\xb5\x9e\x06\x47\xc9\x66\x97\xa2\xca\x61\xd6\xae\x61\x13\x5f\xdb\xb1\x12\xd7\xc8\x63\x23\x31\x66\xb0\xdc\xaa\x43\x92\x02\x39\xc0\x19\x8a\xa6\xa1\x18\x40\xd0\x9e\x3e\xa3\x68\xe1\xc1\xde\xa1\x15\xd9\x23\x69\x41\x6c\x4a\x93\x4c\x06\x30\xc3\xdd\x20\x0b\x68\x10\x0e\xa7\x29\x7b\xc6\x7a\x9e\xc5\x21\xe8\xd2\x1f\xa7\x5b\xc3\x32\x47\x4d\xd9\x02\xb3\xf2\x60\xb8\xf1\x66\x0d\x76\xb9\xe8\xbc\x58\x6e\xc9\xd8\xd5\x34\x0e\xd7\x6d\xd1\x07\x60\x29\xa4\x9e\x2f\x1e\x56\x9b\xcd\x6a\x68\xad\x03\x8d\xf8\xdb\x8a\xc9\xc5\xd0\xd5\x9b\x4c\xea\x00\x94\x21\x90\x4d\x0c\x2b\x38\x3b\x9d\xc6\x2d\xa7\x14\x63\x41\x27\x67\x18\x90\x43\x81\x04\x83\x6c\x4b\x51\xb5\xc3\xfb\x6a\xaf\xcc\x51\x8c\x59\x9d\x0d\x5c\x87\xc2\xc0\x85\x1c\x8c\xd3\x4d\xc5\x0c\x44\x87\xd2\x36\x05\x7f\x16\x61\x3f\x21\xbb\x64\x1e\x44\x45\x25\x68\xe4\x99\xc8\xfc\xb1\xbe\x88\xae\x6c\xe1\xdc\x5a\x64\x8c\x71\xbb\x70\x48\x0c\xcd\xe7\x74\x53\x87\x67\xf4\xd9\x13\x76\x5b\x0b\xd8\x6a\x98\x67\xac\xa2\xd3\x80\xeb\xac\x39\x67\xe4\x09\x8d\xb3\x2a\x06\xc7\x22\x9e\xa9\x70\xe5\x70\xb0\x8f\xf3\xac\x24\x17\x85\x30\xf6\x0a\x68\x2f\x86\xc9\xc2\xcc\x99\x9c\x62\x6c\x42\xf5\xf6\x5d\x27\xf0\xc8\x65\xe5\x0b\x73\x37\xd5\x83\x52\x1e\x34\x0a\x23\xc8\x81\xcf\x23\x75\xb7\xe7\xe1\x39\xc6\xf8\x54\x25\xcf\x7c\xbf\xdf\xab\x03\xa7\xc9\x21\x2e\x55\x24\x46\xaa\x64\xf6\xd0\x1e\x91\x0a\xa4\x5d\xd0\xfb\xe3\x99\x77\x67\xeb\x5c\xa6\x35\xcf\x4c\x9b\x26\x0d\x4d\x2b\xcb\x19\x46\xc4\x00\x13\xa4\x6a\xe1\xb7\xf6\xac\x56\x51\x01\xe3\xa8\x50\xc7\x5d\xfe\xe2\x02\x4c\xc7\xe8\xa9\xcd\x64\x78\x0b\x50\x69\xaf\x6e\xb8\x31\xc2\x25\x84\xd0\x0a\xb6\xc8\x11\x00\x30\x54\x83\x30\xdf\xd3\x91\xc9\xec\x1d\x0e\xec\x1a\xd7\x95\xe8\x10\xd5\x74\x4a\xf2\x76\x8e\x7e\x59\xbb\x41\x2f\x2c\x2c\x2a\x6f\xa3\xc0\x4a\x88\x05\x4d\x75\xa2\xd8\xc8\xb5\xdf\xed\x0e\x79\x25\x0c\xd6\x78\xe6\x7d\xb1\x25\xa0\x0b\x31\xe7\x89\x0e\x39\x6b\x78\x89\xf3\xb4\x1c\xa9\x5d\xd2\x55\x68\x84\xf3\x80\x20\xe0\x2d\x6e\xe6\xa1\x15\xf3\x5b\xd4\x0e\xad\x79\x5d\x6a\x15\x3b\xed\x23\x16\x70\xb2\x2a\xd7\x3c\x9c\xe9\x95\x2c\x96\xbe\xb2\x75\x1f\x5c\x00\x7f\x8c\x63\x32\xf1\x06\x0a\xa2\xa5\x60\x98\xe2\x73\x7b\x19\x5c\x48\xbf\x4c\x2f\x67\x6d\xb7\x1b\x02\x27\xc8\x66\x21\x55\x11\xe1\x36\x4b\x84\xa1\x9e\x12\x15\xb4\x1e\x56\x07\x66\x48\x4e\x12\xba\xf1\x0e\x33\x57\xd3\x64\x81\x0c\xcf\x12\x3c\x9e\x5c\x93\x2a\xaa\xf4\x67\x8c\x9c\x27\x51\x26\x6e\x1c\xa5\x39\xf5\x5c\x89\xd9\x74\x92\xa9\x19\x6b\xea\x49\x7c\x20\x8e\x92\xe9\xbb\x3c\xb1\xaf\xfa\x35\xdd\x1c\xed\xba\x47\x87\xb6\x0d\x24\x91\x53\x5c\x2a\xd9\x89\x00\xcf\x14\xc4\xed\x8c\xcd\x68\x1c\x4e\x92\x1e\xb7\x60\x96\xcc\x7a\xf6\x82\x30\xa4\xef\x47\x87\x32\x55\xdb\x23\xb6\xe1\xe1\x78\x1b\x59\xa1\xd6\x4f\x7b\x09\x02\x84\xd8\x1c\x24\x11\xe4\xb9\x65\xc0\xec\x69\x10\x30\x0c\x3e\x67\x14\xa8\xe6\xc2\xc5\x5e\x6c\x48\xd8\x58\xe5\x23\x97\xe7\x04\x41\xb8\x49\x37\x5f\xed\xfc\x8b\x2f\xd2\xb6\x5d\xad\x98\xf3\x9c\xcd\xb7\x3c\xd3\x9d\xb7\x12\xe5\x50\x70\x4f\xb1\x0e\xe1\x92\x70\xae\xda\xa8\x21\xce\x02\x43\xaf\x08\x4a\xee\x4f\xa7\x55\xeb\xd3\xfc\x45\x40\xa3\x88\xdf\x86\x16\x18\x9b\x0f\x83\xec\x80\x6e\xc0\x60\x43\x8b\x13\xd0\xd0\x19\x3a\x88\x74\xc4\x59\x6a\x9e\x2b\x34\x50\x45\x6c\x27\xa6\xc0\x48\xe6\xec\x7c\x76\xf2\xf0\xd8\x05\x5b\x8f\xf6\x10\xca\xc2\x8b\xcd\xc9\x3d\x8a\xfc\x61\x5d\xd4\x8b\x0a\x5b\x0a\xf1\xd6\x1e\x01\xce\xf3\x08\xeb\x06\xcc\xdf\xd2\x19\xc7\xbb\x0e\xb3\x5d\x23\x64\x07\x4b\xdc\x52\x2d\x94\x9e\x06\x2c\x49\xcb\x18\xbe\x4b\x34\x1a\xb7\xda\x63\xa7\x3a\xdd\x36\x3f\xf2\x2c\x23\x23\x46\xaa\x05\x65\x01\xcf\x1c\x20\x88\x7d\x84\xaf\x0c\x7e\x4c\xdd\x16\xe1\xb2\xed\xc2\xe5\x62\xa7\xcd\xeb\x92\xe1\x66\xf0\x96\xbd\xd0\xbb\x36\x57\x14\x09\x26\x4c\x33\x66\x6b\x92\xe4\x7b\x69\xca\x68\x2c\xab\xc8\x31\x05\x28\xd7\xdc\xcd\x57\xe7\x8c\xf2\xab\xae\x24\x4d\xf4\x08\x2f\x89\x16\xf5\x00\xbd\x1a\x0f\x9a\xad\xb4\x64\x0d\xd5\x70\xb5\x4e\xf9\xd8\xdd\x1c\xce\x58\x40\xe3\xfb\xd9\x76\xe5\xc6\xc9\x7c\x03\xfb\x68\xc9\x0c\x78\x0d\x2d\x2e\x34\xa3\x87\x60\xe1\xf6\x5b\x71\x41\x0b\xce\xd5\xe4\x35\xc6\xd6\x2c\x9a\x4e\x91\xf7\xca\x91\x07\x99\xaf\x8d\x01\xa9\xdc\x44\x0d\x38\x76\xf1\x40\xa9\xb9\x2c\xe1\x97\x78\xe6\xf4\x53\x2d\x13\xb0\x01\x32\xc3\x0d\xda\x5e\x3c\x82\x9c\x2d\xed\x7e\x16\x36\xbb\x8a\xa9\x04\x79\x27\xeb\x78\xd3\x75\x64\x00\x5b\x9b\x00\x6a\x7a\xa2\x9a\x22\xbe\x9e\xf6\xc4\x79\x34\x5f\xab\x8d\x2b\x72\xe7\x20\xf6\xe7\xb6\x19\x43\x6d\x14\x5a\x44\x52\x47\xed\x71\x4f\x85\x49\xa2\x4a\x3c\x3b\xd7\x0c\x21\xc2\x72\x39\x76\xe5\xc6\xdf\xcc\x14\xc2\x08\x19\xc2\x3d\x76\x35\xd9\x2a\x1e\xb1\x8f\x7b\xb3\x43\x2f\x10\x3a\x3f\x10\xa3\x60\xbb\xcd\x0e\x0f\x21\x7e\x3e\xf5\x44\xd8\xac\x17\x0e\xee\x32\xb3\x2d\x44\x71\x54\xef\x2f\x12\x9e\xdc\x48\xab\x52\xe2\x75\x25\x84\x40\x3d\x08\x87\x94\xdc\xef\xb8\xa3\x86\xd4\x97\x12\x4c\x63\xaa\x18\x22\x2e\x42\xb1\x3d\x03\x47\x28\xa6\x8f\xf1\xe1\xa2\xea\x88\x23\x58\x75\x71\x02\xdb\x14\x19\x91\x02\x61\x9f\x07\xfd\x30\x24\x44\xa1\x74\x73\x9a\x48\xed\xf3\xb0\x58\x55\x9d\x4b\x3b\x5c\xbe\x58\x4e\xcf\xb5\x07\x45\xb0\xd6\x94\xb5\xa4\x32\xa9\x7c\x60\x8f\x04\x6a\x6c\x60\xe3\x74\x74\xc6\x4a\xbc\x59\xaf\x98\xf9\xa6\x86\xf8\xf9\x62\xc7\x2e\x4c\x9f\x5a\xc5\x3c\xb0\xab\xfd\x06\x3b\x85\x47\x72\xd1\xd4\xc1\x91\x1c\x28\x8c\x9b\x2a\x39\x08\x4a\xad\x49\x01\x20\x3d\x32\x9f\x13\xe2\x3c\xbb\x5c\x44\x66\x7a\x8a\xe4\x73\x0a\xd5\xdb\xca\x1c\xb3\x55\xdd\x01\x9b\x33\x7a\x3c\xb7\x11\x04\x1b\xb5\xb7\x42\x5a\x62\x4d\x5d\xcc\x0e\x32\x10\xcd\x6a\xa4\x0a\x80\xf9\x1a\x65\x12\x22\x9d\x66\x14\xb2\x26\x76\xd0\x50\x50\x29\xda\xa5\x21\xd4\x3b\xa4\x2c\x67\x4a\x1b\x91\x7d\xef\x62\xd8\x3e\x8c\x6f\x00\xa9\x14\x07\xf1\x0e\xe3\xf9\x29\x1d\xb8\x11\x4a\xd7\x4a\x90\x31\xe4\x4c\x69\x62\xa5\x21\xe2\xca\x01\x3e\x68\xf6\x3d\x0e\x96\xc7\xfd\x82\x3e\x4c\x0f\xd6\x3a\xf0\xf4\x8a\x06\xbe\x2c\x5e\x00\x6c\x0e\x54\xb9\x66\xb6\x74\x40\xe3\x4d\xe4\x3d\xb8\x00\xf7\x94\xf0\x42\x6e\xaf\x3b\x3f\xbe\xc0\xc8\xec\x7c\x8c\x94\xea\x6c\x24\x1b\x1c\x36\xce\x7b\x56\xf6\xa9\x96\x6e\xc0\x61\x55\xd8\x3c\x40\x95\xdc\xe9\x40\x36\xcb\x32\x42\xe8\xba\x33\xa7\xd0\x88\x48\xb4\x0d\x14\xfb\x68\x8c\xa7\xdd\x58\xca\x5a\x6e\x9c\xde\x91\x73\xd6\x59\xbb\x26\x7b\xf0\x01\xee\x79\x0d\x30\x02\xff\x04\x1f\xdc\x25\x7b\xbe\xf0\xa0\x3c\x2e\xa0\x6d\x6c\xae\x2b\x1f\x41\xd5\x85\x82\x9f\xa6\xa4\x5c\xc3\x22\x85\xe3\x54\xa8\x1b\x0e\x35\x43\x67\x91\x32\x8f\x83\xb1\x50\x94\x13\xf2\x11\xf0\x97\x29\x59\xcc\x0e\xe0\x68\x00\xc6\xa0\xb1\x66\x23\xdc\xb4\xc4\x6b\x9d\x98\x3f\xad\x2e\x20\x5a\xad\x17\x83\xdc\x1c\xd7\xe1\xca\x58\xae\x4d\x21\xc3\xc1\xb2\x77\xf5\xf5\x1e\x81\x9a\xb9\x22\xb9\x88\xdb\xad\x16\xd4\x58\xda\x3f\x1c\x8a\xb4\x41\x89\xa4\x59\xed\xe7\x1b\xa9\x1a\xf4\x5d\x78\xd9\xb6\xfe\x56\x3a\xf1\xf3\x15\x7d\xde\xbb\x43\xe2\x2f\xd5\x65\x24\xed\x40\x05\x23\xdd\x16\x1c\xbb\xd0\xc3\x3a\xdf\xf7\x33\x8b\x57\x89\x55\xc6\x2c\x57\xa7\x84\xa4\xed\x73\x3b\x1e\x27\xf4\x4f\x49\x89\x29\x03\xba\x59\x9c\xba\x45\x54\xed\x38\x0e\x59\xe6\x89\x3f\x08\x70\x87\x57\x94\x63\x2e\x56\xcb\x63\xef\x29\xb9\xe9\x0e\xbd\x85\x9f\x9a\x29\x0d\x8e\x92\xbf\x44\xe6\x9e\xac\xc0\x43\x00\xb9\xd8\x92\x3a\x12\x67\x0e\x55\xd4\x31\x14\xd1\x3a\x51\x22\xd5\xac\x86\x01\x85\x93\x64\x8f\xaa\x6b\x33\xc3\x7c\x12\x68\x9d\x9b\xa9\x69\xe0\x51\xa9\xbe\xdd\x0d\x35\x98\x5d\xe6\xca\x19\x1a\x7a\x9c\xb9\xa8\x1d\x33\xf5\x92\xca\x3a\xa4\x8b\x94\x5a\x17\x97\x96\xa2\x2a\x98\x80\xf0\xd1\xda\xc0\x0b\x33\x0d\xd1\x73\x5e\xcc\x78\x03\x9a\x92\xf8\xea\x9c\xca\x3e\x74\x9a\x2e\x7c\x6c\xb9\xb9\x1c\x3b\x08\x73\x52\x03\x3b\x11\x8c\xc7\x97\x86\xb5\xd3\x97\x00\x07\x06\x95\x24\xe7\x3c\x5c\x19\x45\x9e\xe0\x92\xce\x17\x48\x62\xed\x7c\x66\x2c\x4b\x17\x94\xa3\x8a\x2b\x9e\x2c\xf3\x85\xd9\x17\x49\x6a\xc2\x6c\x0f\x4f\x19\x56\xdf\x63\x4c\xb9\x28\xf2\x6a\x88\xd7\x0b\x04\x3a\x75\xf9\x0a\x35\xf7\x38\x7a\xe8\x92\x80\xc3\x45\xa0\xea\xf8\x16\x34\x0b\xbe\xd9\xc7\x65\x48\x8a\xe4\x65\x39\x8c\x27\x86\x28\xab\xd9\x05\xb4\xbf\x14\xf1\x78\xef\x9d\x6b\x6f\x63\x88\x0c\xee\xec\x66\x21\x1a\xad\xa1\xb9\xca\xba\x90\x6d\x9a\x34\xa9\x6c\xbb\x2d\x6e\x70\xeb\xcb\x70\xee\xd0\x60\xde\xd2\x54\x02\x8e\x97\x64\xb6\x71\xfb\xd3\x9e\x84\xc9\xda\x29\xa2\x31\x4f\x51\xb4\x83\xe2\xba\x70\x41\x81\x5c\x3a\xec\x2d\xb2\x76\x7a\x11\x84\x00\x56\xbc\x18\xf7\xb8\x56\x22\x14\x39\x3b\xea\x8a\xc1\xda\x8b\x20\x5b\x2d\xa4\x02\x8e\x40\x6e\x77\x44\x99\x07\xa5\x20\x91\x2e\xcc\xe4\x0b\x20\x60\xcd\x25\x08\x47\x17\x40\x57\x75\x9d\x63\x73\x2c\x0b\x42\x35\x29\xcc\xdc\xf7\xe2\x39\xdf\xcf\x8a\xac\x29\x53\x03\xb7\x1d\xd5\x9f\x77\xf9\xce\x71\x54\xab\xd2\x4c\x0d\xdf\x01\x56\x35\x03\xce\x52\x95\x7c\x11\xb4\x8a\x8e\xe7\xc7\x14\x38\x24\x23\x54\x5b\x78\x2c\xc3\x9c\xfa\x46\x33\xa4\x62\xc9\x03\xd4\x3d\x2e\xd8\x06\xdf\xd6\x8b\x3e\x20\x41\xa1\x47\xc5\x9c\xc1\xe7\xfc\x74\x6b\xd8\x1a\x0c\xd9\x3b\x76\x19\x6c\x10\x37\x89\x2d\x96\xd9\x6e\x94\x20\xba\x0c\x36\xb9\xf1\x45\xb8\x34\xb0\x65\x9c\xcb\xbe\xea\x8c\x5c\xc6\x95\x35\x0e\xa7\xe2\x70\x50\x5b\x9c\x88\x90\x6c\x15\x5e\x2a\x55\x85\xfd\xa4\xa2\x1c\x19\xc7\x53\xd6\xac\x72\xaf\x58\x62\xf5\x41\x8d\x50\x5a\xee\xcb\x2d\x1e\x70\x66\x9e\x34\x90\x8a\xf8\x1d\x57\xf1\x87\x0c\x31\x21\x72\x8a\x6e\x56\x0f\x75\xee\x1d\xb5\x9b\xaf\x49\x9e\xa6\x8a\xad\x0b\x41\x3d\x1c\xcd\x37\xbe\xd1\x49\x53\x4d\x57\xb7\x6d\x02\xc4\x9e\x98\x21\x5b\xd3\xf4\xb3\x7e\x56\xe7\x61\x23\x5b\x4b\x5a\xc0\x59\x86\x5d\x37\x49\x9f\x2d\x02\x72\x27\xf4\xad\x4c\x1d\xc8\x70\x54\x3d\xa6\x77\xa4\x45\xe8\x1e\xf7\x83\x56\x14\x5d\x2a\x1e\x31\xd3\x0f\xca\x75\xb9\x48\x20\xce\xa6\xfd\x7e\xa8\xa6\xd9\x9e\x9c\x29\x50\x85\xb5\x81\xef\x87\xc0\xb9\x08\xe5\x14\x83\xa0\x29\x75\x51\x87\xea\x44\xc0\xa4\xc4\xaf\x24\x8a\x89\xce\x0f\x85\xf3\x33\x82\xed\x95\xc4\x4f\x03\x55\x3d\x3a\x2e\xb2\x9f\xcb\x39\xa6\xe6\x73\x7c\x49\x68\x34\xc0\x12\x8b\x2c\x17\xd3\xf5\x6e\x5a\xd6\xe1\x36\x56\x00\xa1\x72\x73\x66\x1d\xb1\xeb\xa3\x47\x10\x5e\x05\x71\xa0\x43\x57\xc3\x41\x95\x4b\x43\x1d\x9d\xd4\xa2\xce\x59\x81\x2d\xc8\xb9\x12\x08\x32\xc0\xd3\xa9\x34\x80\x6b\xec\x07\xe5\x2b\x90\xf8\x0c\x92\x07\x7a\x74\xf1\xb0\xb9\x59\x88\x21\xa8\x28\xb3\x8e\x28\xc1\x64\xa6\x20\x5b\xc9\xfe\xa5\xd6\x7c\x8f\xcd\x44\x0d\x8b\x4e\x53\x5a\x1a\xc5\xa6\xec\xb5\x40\xc3\xa8\x6d\x41\x9f\x91\x79\x98\xc8\x07\x34\xaf\x28\x15\x5c\x62\x03\x97\xc9\x4a\x97\x09\xb7\x41\x2e\xeb\xa5\xbe\x17\x9b\xa8\xb9\xd4\x09\xe3\x76\x5a\x81\xd6\x32\x9b\x2d\x86\xb2\x66\x60\x56\xe5\xcf\x21\x60\x07\xbb\xc4\xa0\x87\xfa\xe2\xda\x90\x52\x5c\xdf\xa7\x3b\x61\x8f\xb2\x0d\x75\x21\x43\xe6\xbc\x06\xa6\x97\x6e\x34\x07\xee\x76\x30\x1b\x49\x35\xef\x6f\xe3\xd3\x99\xa0\xb1\x8e\x90\x77\xdc\xd0\xe5\x2b\x57\x32\x77\x53\xcb\x08\x5b\xb3\x03\x20\x37\x63\x3d\x7d\x88\xbe\x6a\x58\xe9\x1b\xd9\xc0\xb8\xcc\xc1\xc1\x0c\xe3\xd4\x9e\xf1\x79\xec\x02\xd7\x96\x0a\x04\x3c\xd4\xc2\x28\x8c\xd5\x28\x4c\x61\x88\xb2\xa9\x94\x1c\xd0\xbe\x17\x77\x5b\xde\x5f\x96\xb9\x97\x1c\x37\xb9\x25\x26\xe8\xaa\x47\x88\x78\xb7\x1b\x0f\x3c\xaa\x4b\xc6\x64\x18\xa5\x13\x54\xbc\xb4\x48\xa0\x91\x52\x56\x4b\x73\xc7\xc9\x08\x91\x05\xcc\x8a\xd8\x62\x65\xd5\xaf\xf9\x03\x9a\x4d\xd3\x16\xd2\x36\x2e\x7d\x42\x31\xe0\xcc\x98\xb3\xdf\x08\x30\xec\x4e\x85\x9c\x3e\x9d\x8c\xb2\x5b\x84\xe3\x31\x7f\x78\xa3\xf3\xe1\xa2\x73\xe7\x07\x7c\x2d\xee\x08\xfa\x48\x6f\x13\x86\x2e\x67\xdb\xb5\xeb\x57\x82\xe0\x67\x17\x81\xc5\x36\x2b\x74\x77\x96\x20\x4e\xde\x19\x94\x51\x37\x97\xa4\x37\x70\x53\x50\xd5\x9a\x5f\x0f\x48\x08\x75\xf3\xb5\x73\xf0\x95\x51\x6c\xf8\x03\x41\xcc\x97\x9e\x78\x9c\x25\xdb\xd5\x72\x2d\x27\x45\x31\x2d\x00\x45\x4a\x42\xc7\x88\x32\x90\x4d\xcd\xc5\x40\x28\x32\xa2\xef\x33\xeb\x62\x35\x75\x20\x70\x96\x71\xd2\x37\x31\x3f\x81\x14\xdf\x44\xab\x3a\x6b\xb9\xcb\x5c\xaa\x8a\x87\x8c\x1e\xe3\xcf\x42\xe7\x49\x72\x78\x0c\xf6\x02\xd5\x49\x21\x8c\x27\xac\x1d\x90\x08\xa6\x24\x10\x57\xe5\x7b\x11\xce\x9d\x92\xd7\x2c\x35\x22\xce\x10\x7c\x4a\x07\x1f\x3e\xc0\x59\x1c\x15\x41\x35\x9d\x5b\xab\x59\x9f\x79\x00\xde\x71\x78\x33\x6e\x99\x29\x83\xe4\x84\x94\xec\xe0\x58\x1b\x27\x86\xd5\x04\x55\xe1\xc2\xcc\x40\xb1\xef\x34\x64\x01\xe4\x4d\x4e\xba\x29\x40\x18\xbf\xe1\xe7\x11\xb5\xc3\x37\x0b\xdb\xd8\x1d\xc2\x90\x35\x98\x73\x4d\x32\x6b\x14\xf3\x7d\x9d\xb3\xf2\xab\x90\x8d\x87\x02\x50\x12\xa9\xfb\x30\x8d\x0f\xac\xd0\x6f\x86\x75\xb4\x02\x36\xa6\x2a\x98\x2c\x45\x65\xbc\xae\xdb\xe9\x56\x75\x09\x06\x8f\xa3\x2a\x0f\xa8\xaa\xdd\x4d\x4d\xcb\xe1\x76\xe9\xcc\xdf\xa1\x1a\x4c\x30\x78\x29\x34\xe2\xb1\x95\xb3\x40\xdd\x8f\xd1\x17\x52\xa6\xc3\x7c\x26\x16\x8e\x7b\xd8\xd7\x5a\x25\x6d\x49\xcc\x16\xfc\xd4\x76\xa3\xb3\xa2\x71\xaa\xa9\xfb\x7a\x21\xa5\xf3\x13\x0d\x30\x21\xd3\x30\x67\x4f\x22\x43\x4d\x1f\xd2\x6c\xb7\xda\x83\x13\x0d\xf6\xb4\xbc\x76\x0f\x03\x09\x57\xfd\x28\x36\x6e\xc5\xec\x8a\xb6\xda\x96\xc7\xcc\x21\xb7\x92\x71\xa4\xfa\xe5\xea\xa4\x0e\x8b\xcb\x0a\xd9\x78\x2b\xa3\x9b\x03\xe2\xdc\x24\x36\x02\xd8\x4c\x2f\x90\x1e\xaf\xcb\xce\x0d\x60\x45\x94\x86\xd5\xdc\x48\x76\xb9\xc9\x6c\xe8\xb0\xa6\xcf\x0a\x3e\x56\x38\x2d\x98\x33\xc1\x9e\xdb\x66\xc7\xf5\x3a\x56\xb3\x69\x8e\x27\x71\x80\x01\xd9\xe0\x13\x70\x26\x57\x4b\xd2\x9a\xe3\xd9\xfe\xe2\x95\x84\xd1\xa8\x26\x2d\x1d\xbb\xb0\x40\x0e\x56\xba\x2e\xa1\xcb\x3e\x72\x78\x10\x16\x6d\x3b\xcd\x3b\x8a\xd2\xc7\x53\xf9\xb9\x58\xd8\xf1\x32\xac\xac\x22\xd3\xb4\xda\x3a\x57\xec\x09\x83\xf3\xf0\xd8\xe1\x64\xe8\x06\x17\x3a\x5f\x42\x07\x3a\x6f\xdc\xf4\x54\xad\x7d\x22\x99\xdb\xf0\xaa\x3f\x4e\xfb\x23\x96\x92\xfa\x1c\x3d\xb7\x88\x70\xce\x56\x28\x84\xc0\xfd\x74\x8c\xbe\x06\x67\xbe\xa2\x2e\x4b\x7e\x0f\x31\xc2\xd1\x9c\x9a\x3d\xd6\x32\xe4\xd2\xf3\xf0\xac\xb5\x53\x98\x3a\x0e\xe7\x63\x51\xcf\x9b\x92\xac\xb4\x78\x5b\x1d\xc4\xf5\x9e\xa2\x0f\xb0\x74\x80\x5c\x6f\x98\x57\x2d\xb4\xd9\xae\xcd\x86\x5b\x77\x05\xd2\x8c\x87\x46\xfb\x3a\x92\xaa\xe9\x7c\xee\xec\xab\x95\x87\xd6\xcb\xd9\x9e\x3c\x1e\x3b\x8d\xd1\xd4\x8b\x37\xcb\xa6\xa7\x69\x9a\x1e\x2b\x65\x66\xc6\x65\x17\xd2\x1b\x97\x3b\xef\xf2\xa9\x62\x6a\x41\x26\xed\x2f\x10\x6b\x2f\x0e\xe5\xe1\x1c\x5f\x4e\x60\x20\xc2\x31\x9c\x3b\x21\xeb\xd6\x27\xe6\x40\x9b\x82\x46\x5e\xb8\xc5\xc2\x6a\x50\xaa\x91\x21\x06\x66\xb0\x25\x86\xda\xfc\x6a\xb7\xea\x2a\x1d\x65\x58\x19\x3b\xb7\x36\x12\x57\xb0\x6f\xa3\x86\xcf\x84\x97\x04\x0e\x42\x68\xcf\x24\x18\x94\x2f\xf8\x3c\x84\xc7\xca\x92\x50\x4e\x3b\x0f\x2b\x9a\x29\x1e\x87\xb4\x51\xf7\x50\xd9\xe0\xf9\x56\x37\x1b\xd4\x11\x08\x48\x76\xbc\x06\x5e\x87\x99\x1a\x52\x81\x73\x9c\x21\x25\xad\x5c\x60\x91\x3c\x2a\x6e\xc7\x69\x3b\x6d\x85\x41\x28\xb2\xac\x6b\xf4\x44\xa7\x6d\x32\x66\xa3\x92\xc8\x37\xeb\x16\x46\x2d\x40\x4a\xcc\x59\xb9\xe0\x0b\x06\xd4\xec\xd6\xf5\xa1\x6a\x25\x9c\x77\x89\x4d\x1b\xd8\x51\x43\x36\x8a\x56\x2f\x1b\x4a\xc3\x66\xa8\xc6\x1f\xcd\x9a\xea\x4a\xa6\xe3\xf7\x00\x75\x5b\xdb\xd9\xf6\x16\xa0\x0c\x71\xcc\x02\x36\x3b\x72\x21\x02\x8a\x59\xed\xa3\x8d\xe3\xbb\xe0\x22\x78\x3b\x04\xa7\x62\x79\x7d\x3c\x94\x36\xa1\x66\xa6\x82\xcf\x63\xc6\xeb\x35\x86\xed\xe0\xc3\x86\xe9\x08\xd9\xc1\xb4\x7e\xd0\x04\x65\x23\xfa\x7e\x6b\x87\x4d\xab\x0b\x67\x63\x93\x8e\xaa\x77\xc0\xfa\x64\x87\xc3\xb5\xed\x4c\xb7\xb3\x0e\xe4\xac\x7e\xa1\x79\x45\xb0\x7b\xe7\xdc\x19\xd8\x14\xec\x7c\x4c\xc1\xf7\xeb\xa9\xae\x18\xb9\x05\x8b\x40\x54\x15\xa2\x81\x3d\x7a\x7a\x71\x92\x7c\x81\x09\xf5\x65\xab\xc9\x09\x5c\xce\xb1\x70\x8c\x0f\x97\x9d\x91\xb0\x85\xd1\xed\xf7\xca\x89\xb1\x8e\x55\x85\xa0\x2b\x82\x64\x24\x8d\x37\x28\x55\x64\xc8\x34\x25\x3a\x61\x8b\x75\xd9\x76\x73\x3a\xcd\x36\x87\x69\x7d\x54\x16\x08\x66\x86\x5a\x8d\x4b\x3b\x79\x49\xac\x3b\x1e\x1e\xa4\x7e\x79\x62\xc7\xc3\x29\x90\x30\x6c\x36\xb3\xb3\x2b\x0c\x39\x7a\xcc\x11\x6b\x13\x6a\x5c\xac\xc4\xd6\x45\xa4\xa4\xf5\xe6\x60\x1c\x94\x7c\xdd\xed\x58\xfe\x52\xcd\x6b\xa6\xde\x37\x06\xbd\x98\x9e\x8a\xb6\xdf\xac\x0c\x9a\x11\x45\xf8\xe8\x9c\xd4\x5a\x4a\x22\xd5\x4f\xc7\x52\xd5\x6a\xba\x76\x1b\x25\x9b\x95\xd6\x56\x38\xcf\x40\x8c\xc1\x4a\x0a\x84\x64\x63\x2c\x05\x74\x71\x64\x17\x3c\xa8\xa2\x68\x1d\xd7\x6b\x9b\x17\x12\x7e\x10\x3a\x9a\x34\x6e\xb4\xbc\xb8\x42\x7a\x36\xa4\x65\x86\x2f\x31\x40\x70\x8b\x8e\x18\xc5\xc6\x5b\xbb\x08\xa1\x2d\x17\x82\x8f\xba\x3c\xb7\x55\x9b\x46\x55\x1d\xbc\xa5\x22\xe7\x00\xa0\x43\x87\x4b\xa9\x21\x10\x80\xcd\x00\x0a\xdc\xbd\x74\x99\x59\xe9\x16\x60\x38\x58\x09\x9b\x96\xbe\xbe\x73\xcb\x7e\x3d\xaf\x5c\x1f\x6b\xec\x51\x97\x17\xa5\xb1\x60\x70\x6b\x9e\x40\x6b\x39\x9a\x79\x29\xaf\x88\x30\x0c\x10\x7f\xbb\xc6\x6c\x4e\x70\x70\x2c\xc9\x07\x1f\xc8\xfe\x79\x3e\xe7\x57\x53\x28\xb3\xd8\xd3\x31\x4f\x4e\x12\x5a\x2f\xfa\x0b\xbc\x02\x7a\xa5\x52\x81\xca\x48\xf1\xc5\x1b\x01\x3a\x82\xe3\x7a\x1b\x21\xd7\x68\xd6\xb7\xf4\x74\x41\x59\x5d\xe0\x17\xbb\x53\x10\x25\xc2\xd9\x43\x96\xa9\x99\x48\x97\xfe\x28\xd6\xde\x21\x39\xa9\x68\xaf\x65\x54\x9e\xd8\x3e\x72\x30\x6a\x5e\x9f\x95\xe5\x72\x8a\x7a\xde\x71\x91\x0b\x56\x31\x1a\x58\xff\xa2\xb3\x72\x40\x47\xec\x26\xef\x91\xcd\x4a\x3a\xba\x6e\x5a\x85\xa1\x6e\xe3\x5d\xb3\x6b\x17\x6a\xc8\x6e\xac\x23\x64\x1b\x32\x16\x93\xab\x54\x5b\x08\x86\x87\xb8\xa0\x20\xc0\x0a\x59\x0d\xf1\x66\x5e\x2d\x18\x60\xca\x4c\xc6\xb5\x9b\x51\x53\x98\x84\xae\x91\x72\xbf\xca\x89\x6a\xb5\x9f\x43\xf1\x42\xd7\x18\xc1\xab\xa4\x8e\x5e\x2b\x76\x85\x14\x7e\xd7\x1e\xc3\x65\xc3\x95\x9b\x03\x36\x6d\xd6\xcd\x39\x4b\x64\x8f\x8b\xb3\xd4\xdc\xc2\x52\x22\xc5\x4b\xe0\x1c\x68\x47\x01\x22\xbe\x7e\x38\x3e\x03\x35\x5b\xd2\x5e\x48\x07\x25\x0b\xe6\xcb\x33\x6a\x07\x78\xef\xa0\x81\x8f\x6e\x30\x3f\xdd\xa4\x76\xd5\x1d\x72\x0d\xe3\x16\x28\x59\x9a\x12\x52\x17\x82\x86\x2e\xd6\x9e\xd6\xcf\x8f\x48\x37\x48\x52\x8f\x70\x33\x18\x2d\x66\xc8\x85\x3c\x8e\x45\x8c\x05\xd6\x3a\xe5\x65\xb3\x61\xe6\x5e\xd7\x30\x8b\xc8\x70\xab\xf3\x52\x66\x84\x5e\x5b\x64\xc9\x51\xe8\xf2\x40\x5e\x36\xe7\xcc\x0f\x78\xa2\x83\x49\xd0\x1e\xc9\x36\x93\x7d\xe5\x04\xb8\xf2\x64\xa9\x3c\xd8\x50\xf0\x59\x5c\xb9\xa8\x8b\x3a\x63\x95\x38\x82\xd3\x73\x26\x4e\x37\xf6\x1a\xdd\x87\x1c\xac\x29\x29\xed\xa5\xae\x50\xb8\xe9\xce\x65\x18\x63\xc5\xa1\x06\x0b\xef\xd7\x79\xee\x85\xbd\xed\x39\xbc\x11\xf6\x54\x4e\x5b\x7b\x82\x99\x26\x2a\x9c\xa2\xb9\x1b\xaf\xad\x4d\x3a\xdd\xf7\xec\x43\xdd\xa6\x39\xb7\x2b\x18\x85\x5d\x61\x6d\xb4\xf4\x6e\x96\x94\xeb\x41\xaf\x0c\x2c\x36\x4b\xf3\x92\x28\x32\x67\xa9\xb1\xb8\xdf\x01\x2d\x83\xda\xa4\xaf\x98\x1e\xd7\xe0\x7a\xe7\xb1\x43\xb5\x42\xec\x6c\x0d\xec\x4c\xa6\x57\xb3\xa2\xcc\xe4\x7a\x3c\x75\x25\xaf\x9b\xc5\x72\x75\x18\x2e\xdc\x7a\xb9\xdd\x64\x3d\x8a\x5c\xce\xfa\x2c\x56\x97\x50\xa5\x94\x06\x15\x24\x62\xa1\x9b\xf2\xd6\x95\x13\xb3\xc8\x35\x33\x2e\x34\x94\x19\x9c\x3e\x32\x97\x5e\xab\xe8\x54\xee\xd9\x7a\xa2\x20\xd3\xfa\xbc\xe4\x47\x2e\xaf\x96\x42\xed\xda\xf2\x6e\x39\xf3\x2f\x03\x71\x54\x62\x13\x0e\x38\x72\x23\x6e\x4a\x72\x5b\x96\xdc\xba\x21\x77\x9e\x33\xd3\x9c\xa9\xed\xb0\x4c\x7b\x92\xba\x0b\x3f\xeb\xf2\xb0\xbc\x20\x95\xba\xc8\xf2\x56\x2a\x8c\x1a\x77\x1a\x95\xc3\xe4\xd1\xa7\xb0\x86\x78\x82\xc4\xc1\xa1\x8e\x30\x2e\xed\x61\xc9\x59\xbb\x87\x94\x58\x14\xac\xb9\xca\x22\x8d\xc3\x69\xc3\x5d\x6b\xc8\x0a\x92\x24\x87\xdf\xf8\x00\x78\x9d\x03\x21\x76\xb5\xa3\xa7\xdb\x14\x3f\x4d\x8f\x39\x74\x48\xa8\x8a\xaa\x49\xac\x19\x35\x65\x57\x54\xd5\x3a\x53\x98\xe3\x26\x1e\x54\x0a\x17\xd9\x4d\x09\xc2\xb3\xa4\x6d\x10\xad\x3e\x2b\x3d\x7d\x29\x9a\x22\xe7\x86\xdd\x39\x9d\x52\xcd\xb4\xaf\xb8\x8b\xba\x1b\x76\xc3\xa5\x0f\x9a\x63\x1a\xc9\xfb\xdd\x72\xa9\xa7\x86\x84\x4d\xb9\x74\x74\xf4\xc4\xfe\xe2\xd2\x07\xc8\x35\x87\x1c\x57\x57\xba\xae\x36\x60\x3b\xf4\xdd\xb9\x8d\x0d\x73\xe3\xec\xf4\x64\xee\xd8\x3d\xaf\xe6\x04\xd2\x46\x85\x38\x0c\x91\xd6\x91\x2a\x83\xaf\xb6\x36\x14\x1e\xc5\xd6\x1b\xd0\x93\x6c\xc4\xba\x04\x1b\xe6\xc8\x94\x46\x55\xdb\xc8\xa0\xbb\xf9\x02\x9d\xb2\x5b\x6e\x43\x72\xae\x52\xba\x0a\x4c\xd8\x88\xa2\x6f\x70\x61\x49\x78\x5b\xf9\x12\xd0\x5e\xad\x1f\xb5\x42\x38\xb5\x47\x50\xac\x12\xb8\x35\x36\x7d\x8b\xe9\x53\x64\x2d\xb5\x2c\x7a\xf1\x0f\x73\xc7\x42\x6f\x00\x39\x27\x67\x55\x75\xd5\x91\x12\xa4\x01\x11\x2b\x38\x84\x86\x08\xc9\x9c\x06\x55\x4e\x78\xeb\x19\x69\x70\x95\x58\x99\xda\x4c\xf3\x57\x19\xb7\xe7\xce\x97\xad\xe7\x57\xc7\x7d\x43\x09\x24\x0a\x23\x46\x57\x42\xdb\x35\xe5\x21\x79\x31\x3f\x8d\x06\x96\x39\x99\x89\xd8\x9e\x6d\xda\x36\x97\x60\x3b\x10\xfb\x64\xfc\x0f\xe9\x95\x29\x3d\x5d\xa8\xca\x4a\xb9\xf4\x0e\x42\x03\x00\x00\x7b\x94\x28\x9d\x96\x22\xe3\x28\xc5\x42\xb2\xbf\x98\x3a\x05\x9b\x22\xb8\xf0\x04\x89\xec\x14\x30\xd6\xb1\x77\x0a\xdf\x69\x04\xd9\x0b\x67\xb5\x13\xce\xe0\xb2\x53\x00\x2c\x9c\x41\x27\x58\x72\x84\xfb\x00\x00\x5c\x83\x25\x2d\x80\xcd\x2d\x05\x9b\x4a\x5e\xdb\x88\x94\x9b\x69\x04\xf8\x33\xe8\xf9\x0b\xdc\xf3\x32\xdc\xf1\x9a\xd8\xf3\x44\x36\x86\xc4\x02\x91\x5d\xf6\x38\xdc\xed\x89\xac\xe3\xf7\xb6\xb5\xc6\x6e\xad\x79\x20\xab\x9a\x20\x71\x0b\xdc\x60\x98\xd7\x74\xc7\x9d\x2c\x75\xac\x1a\x72\xad\xda\x7b\xf3\x6e\xf2\xa6\xf6\xfa\x1a\xca\x63\x2b\x4c\x6f\x3f\x89\xd3\x78\xef\x26\x08\x32\x01\x8d\x3f\x41\xe0\xd9\x6a\x02\x2f\xff\x3a\x47\xfe\x8a\xce\x26\x53\x18\x7e\x48\xb3\xbf\x01\xfe\x76\x3f\x40\x9c\xf9\x50\xeb\x95\x55\x98\xa5\xcf\x17\x99\xbd\x5f\x7d\x1f\xa4\xfb\xb8\x5e\xf1\xfb\x05\x5e\xff\x32\x5b\xbe\x02\x98\x1f\xd6\x10\x4d\x02\xe2\x39\x18\x3f\xac\x27\xa5\xd7\xfe\x72\xbb\x20\x7e\x72\x1b\xf3\x09\xdc\x37\xae\xbb\xf6\xfa\x3c\x2b\xeb\xf7\xe7\xea\xa7\x24\x73\x9b\xd8\x7b\x3f\x3e\xb8\x5d\xd8\x73\xfb\x81\xa2\xdb\xb0\x87\x69\xef\x6e\x4f\xe2\xd0\xfe\xeb\xf5\x7f\xb7\x2b\x83\x6e\xbf\xc5\xf5\xef\xd0\xe4\x9f\x3f\xbf\xfb\x09\xfa\xf7\xc9\x6c\x31\xf9\x77\xe8\xe1\xd1\xdb\x4f\x97\x39\xdd\x40\xbf\x9b\x3c\xc0\x7e\x37\xf9\xed\xb7\xce\xb3\x73\xcb\x89\x7e\x2b\xbd\xa2\x09\x4b\xef\xb7\xdf\x7e\x9e\xfc\xd7\x4f\x3f\xfd\xe5\xd3\xdd\xd5\x7f\xf9\xf5\xa7\x9f\x1e\xae\x71\x1a\xef\x56\xfa\x78\xf9\xda\x47\x28\x7f\xf9\xed\x37\xaf\xe2\x6f\xb0\xff\xf2\x6e\xf2\x5f\x93\xd6\x8a\x1b\xef\xaf\x93\xba\x6c\xbc\xdb\xef\x2a\xb5\x56\x39\xe2\xfd\xdb\x6c\xf2\xe1\xde\x9a\x6f\x67\xf0\xc3\xb0\xfe\xeb\xc3\xd0\x87\x61\x9d\x67\xd7\xf5\xe5\xe5\x71\xc8\xa7\x71\x55\xe6\x44\x5e\xfd\xf2\xd0\xd9\xc3\x50\x2f\xf6\x92\xc9\x87\x89\x9b\x39\xcd\xed\x2a\x73\xdf\xab\xc9\xf1\x56\x73\xec\xc2\xb8\x6f\xff\xf2\x78\x57\xff\x5f\x7e\xfe\xf5\xa7\xf0\x34\x79\x7b\x1b\xff\x6f\x1f\xc6\x9b\x73\x3f\xbf\xac\xea\x3a\xf0\xd3\xcd\x54\x7e\x76\x45\xf4\x76\xb7\xc2\x87\x0f\x93\xbf\xdc\xc8\xf0\x97\x4f\xb7\x53\x4d\x26\xe3\xab\x4f\x3f\x67\xf6\xdb\xec\x3d\x7d\xfd\xfb\xb6\xc0\xe3\x75\x53\xb7\xff\x7b\x71\xe5\xdd\x9f\xf8\x40\xb5\xf7\xc7\xfb\x13\x47\xfa\xd7\x79\x45\xa6\x96\x1d\x7b\xee\xe4\xc3\xa4\x0b\x53\x37\xeb\xde\xc7\x99\x63\x5d\x25\x63\xbc\x08\xcc\xc9\xe2\x07\x24\xeb\xbc\xfa\xeb\x5f\x7e\xfd\x38\xb9\x29\xe3\xc9\x87\xc9\xdb\x2f\x60\xfc\xe7\xe4\x4d\x57\x55\x7f\x85\xa0\x37\x93\xbf\x5e\x3f\x5e\x3f\xfd\x3c\x99\x3e\x83\x1c\x64\x55\x7d\xe7\x71\x6e\xd5\xc1\xed\xba\xaf\xe9\x75\xf2\x9b\x4f\x6b\x59\xa5\x5f\xdd\x41\xb0\xf2\xac\xd2\x09\x3e\x0d\x3b\x59\x4e\x9d\x95\x97\x07\x02\x7c\xc6\xe7\xf7\x78\x96\xa6\xe3\x2f\x4a\x52\xe3\x98\xb7\x4d\x19\xbf\xfb\x28\x32\x1f\xb7\x5a\xfd\xfc\x09\x5a\x57\x7f\x02\x34\x8e\xd2\x3d\x5b\x51\x8c\xb7\x37\x6d\x7b\x5c\xec\xdd\x0d\xb9\x77\x93\x91\xa7\x56\x53\x07\xbf\xd5\x59\xe4\xa5\x9f\x01\x72\xe2\xac\xf2\xca\x9b\xb4\x75\xf5\xfb\x2c\xf7\xd2\xc7\x3b\xc6\x1e\x36\x64\xb9\x2e\xd9\x7a\x69\xbd\x0b\xab\xda\x4b\xbd\xf2\xed\x5f\x9a\x34\xce\x2c\xf7\x2f\xef\x3e\xdd\x06\xfe\xf6\x73\xf9\x78\x84\xf8\xe9\xae\xb2\x91\xf5\xef\x6f\x2f\x1e\x9f\x5e\xd5\xec\x9f\x3f\xfd\xfa\xcc\x0c\x2c\xff\x64\x66\x00\xcf\x92\x3c\xab\x6e\x37\x6b\xd3\xe3\x65\xde\x1f\x3e\x21\xf6\x69\xe3\x1f\x9f\x3c\x1b\xff\xf6\x6a\x72\xad\xd2\xb3\xde\x4d\x9c\x4f\xef\xb4\xd0\xeb\xde\x4d\x1e\x55\xf4\x0b\xf5\x0a\xc2\xea\xfd\xe3\x9c\xc9\x87\xc9\xe3\xc7\x5f\xbf\x1c\xf1\x04\xd6\xe4\xc3\x53\xe8\xbf\x3e\x85\x38\x2e\x75\x83\x38\x7e\x7c\x32\x22\xac\x1e\x70\x4f\xfd\xc9\x87\xc9\xc9\x8a\x2b\xef\xd9\x08\x79\xbc\xa8\xff\xb3\x4d\xbe\x30\xf4\x33\x64\x0e\x9f\x46\xfe\xd7\xa4\xaa\xad\xb2\xfe\xeb\xcd\x04\xbd\x9b\x78\xa9\x3b\x7e\x9c\xfc\xf3\x73\xed\x7f\x46\xc2\xcf\xaf\x86\xfd\xf4\xee\x06\xea\xb3\x9b\xff\xbe\x94\xc2\x3b\x5b\xba\xf2\xf5\xdb\x68\xbe\x7f\x84\xfb\x05\x23\xde\xdf\x64\xe3\x7d\xec\xa5\x7e\x1d\x7c\x9d\x15\xb7\x39\x78\x96\xd6\x5e\x7a\x05\xf3\xe6\xcd\x37\x86\x3b\xb1\x55\x55\x57\xed\x1a\x7d\xb6\xe5\xd4\x61\xeb\xbd\x79\x54\x93\x5f\xbf\x87\x24\xe3\xe5\xd3\x5f\xd0\xc4\x6b\x3f\xa7\xca\x55\xa2\x7f\xbb\xdd\xd6\x38\xee\xef\xbb\x76\xe2\xb5\xef\x5d\xab\x7e\x2a\x88\xe3\x9a\x9f\x21\xf8\xe0\x84\xaa\xcf\xf5\xbf\xf2\x6a\x25\x4c\xbc\xac\xa9\xef\xe8\xce\xe3\x9f\xdf\x5e\x64\x89\x97\x5e\x5d\xc0\x6f\xaf\xe1\xc8\x3f\xdf\x4d\xe0\x1f\xa2\xdd\xb8\xc6\x57\x84\xe9\x74\xd5\x99\x70\xf8\x7c\xab\x6f\xaf\x22\xf5\xfa\xd5\x22\xef\xe2\x66\x5d\xfa\x15\xfe\x7c\xbc\xb2\xf2\x73\xc9\xfd\xef\xff\x7e\x59\xfd\x9e\xd2\xf0\xe6\xe8\xdb\xeb\x4a\x78\xe6\x7a\xb7\x3b\x2f\x11\x64\xf3\x74\xd4\xe4\xd3\xd5\xb2\x4f\x94\xf7\x93\x16\x3e\xfe\xb9\x39\xf1\x3b\x60\x67\xcb\x2b\x62\x4f\x1f\xae\xee\x3d\x5c\xff\xee\xf5\x9f\x4f\x7f\x91\x25\x37\x80\x3f\xbf\x04\xf1\x9f\x3f\x7d\x1f\xa5\x6e\xcb\x04\x56\xea\xc6\x1e\x48\x2f\xca\x83\xec\xe1\xe3\x45\x60\x6f\x9f\x2c\x73\x7f\x4b\x9f\x96\x7c\xbc\xf1\xf7\xa3\x1d\x7a\x85\xcc\xdc\xd9\xe2\x17\xf2\xd3\x59\x61\x4d\x65\xe5\xd5\xb9\x65\xbe\xf5\x54\x24\xbe\x53\xdf\x3f\x99\xa2\xd2\x4b\xb2\xd6\x7b\x6a\x8d\x26\xaf\xf7\x15\x4e\xec\x59\xe5\x23\xbd\x1e\x15\xf9\x73\x82\x5d\xe9\xff\x6f\x5f\xc7\x7e\xf2\x7d\x8e\xe7\x71\xc3\xe3\xfd\xf1\xf7\x0d\x78\xd5\xd8\xd5\xed\x3e\xe3\xb7\x5f\xb7\xff\xef\x5e\xf6\x0f\x5e\xea\x3e\xe1\xfb\x17\x0e\xf6\x41\x5a\xca\xb7\x37\x34\x7e\xbe\x27\x07\x77\x44\xfa\x16\x8a\x35\x65\xe9\xa5\x35\xfe\x7c\xcd\x5b\x78\xf6\x5c\x07\x1e\x9c\xe9\x37\x76\xf2\x6c\xda\xcd\xed\x7e\x6d\x7b\x5f\x4e\xf9\xe7\x9d\xcd\xbe\xc0\x90\x2f\x3d\xec\xe4\xb5\x86\xff\x51\x1c\x7e\x7b\xb5\x99\x7b\xfc\xf3\xf2\x8c\xfb\xe2\x71\x4f\x4c\xda\x2c\x74\x27\xf0\xfd\x71\x9f\x63\xf5\x51\xe2\x5f\x42\xe6\x36\xe1\x01\xe8\x5d\x5f\xf5\x49\xf8\xbe\xc6\xea\x47\x01\xfc\xea\x98\xe7\x42\xf8\x91\x5d\x77\x9f\xbe\x60\x45\xff\x70\xb4\xbf\x0b\xa9\xdf\x5e\xa7\x38\xf7\x81\x7c\xe6\xe8\x3f\xbd\x7c\x85\x41\x7d\xc9\x98\xbf\xe8\xfc\x5f\xb6\xa1\xd7\x37\x59\xec\x6a\x57\x2a\xdd\xb7\x37\xdf\x19\x01\xdd\x6c\xe2\xab\xe4\xed\x76\xf9\xb4\xd7\x3d\x2e\x7d\x8f\x6f\xcf\x09\x78\x9d\xe4\x86\xa7\xd3\x98\x3a\xde\xe6\xbe\x2f\xbd\x3c\xb6\x1c\xef\xed\xe3\x3e\xde\x4d\xde\xbc\xb9\x43\xfb\x2b\x66\xd7\xa9\x0f\xf1\xd6\xe4\x6f\x13\xf8\xeb\x3a\xf9\x8c\xab\xd7\xd9\xdf\x66\xea\x0f\xc6\x71\x2f\x06\xa1\x5f\x70\xd5\xcd\xd2\x5a\xf2\x9c\xa6\xac\xbc\xd7\x31\xf8\xc6\x8f\x6f\xb1\x63\xf4\xea\xf7\xec\xfc\x83\x51\xaf\xb2\xf2\x93\x74\x3c\x50\xc5\x1b\xf1\x7b\x5f\x34\x5e\x79\x91\xbd\xd8\xbb\xe6\xeb\x6f\xdf\x7c\x1c\xf0\xcb\x38\xef\xcd\x13\x87\x39\x3e\x7d\x8a\xc1\xc7\x3a\x94\x94\x75\xd5\xab\x97\xba\xcd\xf8\xa5\xcc\xba\xea\x29\xc3\x3f\xe1\xad\x64\xf9\xe4\xc3\x27\xd8\xef\xb3\xd3\xe9\x2a\xc8\x59\x3e\x99\x3e\x8c\xf8\xf4\xe8\x8e\x9b\x78\x1a\x5f\x54\xf5\x25\xbe\x86\xec\xa7\xab\xad\xf9\x62\xfe\xee\xfa\x6c\x3a\x79\x93\xf7\x6f\x5e\x0d\xa7\xbe\x21\xf7\x09\xd1\xef\x9c\x1e\x78\xa1\x1f\x3c\x43\x84\x1e\x9f\x7e\x27\xac\x38\x4c\x3d\xfa\x7b\xe1\xdd\xc8\xfc\x25\x38\x2c\x6b\x52\xf7\x23\x0b\x9f\xae\xe5\x7b\xf5\x6d\xc0\xd5\xd3\xc5\xa1\x77\x13\xe6\xfa\x69\x10\xfa\xa5\x25\xf8\x51\x8a\x3f\x01\xf0\x6a\x52\x3f\x99\xd7\x85\x6e\x1d\x3c\xaf\x4d\x8c\xdb\x7c\x78\xfb\x5a\x58\x9f\xf8\x75\x17\x58\xf0\x0d\xc6\x3d\x25\xc9\x17\x1c\xfb\x1e\x88\x5f\xa6\x10\xff\xf6\x82\x51\x99\x7c\xc5\xe6\x3f\x26\x02\xbf\x7d\x23\x81\x1e\xb3\xcb\xaf\x7a\xba\x57\xa4\xb8\xf7\x02\xf1\xaf\x67\xba\xf7\xa5\xe7\x59\x21\xe3\xae\x8c\x3c\x8e\xfa\x02\xbf\x87\xfd\x3e\x43\xf3\xd7\x9f\xfe\xf9\xf6\xe7\x9f\x7f\xfd\xe9\xa1\x22\xf7\xfe\x5e\xb1\xed\xce\xa4\x9f\x20\xe8\xff\x37\x19\xfb\x1c\xbc\x95\xe7\x61\xea\xab\xd2\xee\xc3\x73\x22\x9c\xab\xf7\x89\x95\x3f\x2b\x31\xae\xfe\x64\x25\x46\xb2\x72\xac\xdc\x93\xbd\xa2\xf1\x52\xc7\xab\x5e\xac\xfc\x3f\xf6\x08\xf0\xc0\x2a\x2b\xaf\x7e\x79\xe0\x63\xd3\x81\xb9\x06\x52\xf4\xe8\x7f\xbf\x51\xb6\xfc\x7c\xe8\xdb\xdf\x5e\xac\x4b\xfe\xf6\x59\x19\xf1\xb7\x2f\xeb\x88\xa3\x58\x7e\x0e\xe7\x33\x21\xb4\x5c\xf7\x8a\xf5\x17\x62\xe7\x04\x56\xf9\x6e\xe2\x64\xae\xf7\xb4\x02\x72\x7d\x33\xf9\xdb\x87\xc9\x9b\xc9\x9b\x7b\xae\xce\x09\x7e\x7b\xb4\x2b\x9d\x73\xfb\xf4\xf6\x06\xe5\xd7\x67\xb1\xd4\x97\x38\xbf\x77\x46\xc2\x4d\xfe\xcf\xff\x99\xdc\x7f\xf3\xf7\xeb\xdf\xff\xb8\x17\xd8\x38\x23\xf6\x5f\x9b\xf6\xb5\x22\xc6\x15\xed\x32\xeb\x9e\x43\xb8\x4c\xa6\xcf\x1e\xd9\xd6\xd3\xb4\xe5\x66\x68\x3e\x6e\xfb\x39\xfa\xfd\x4b\x19\xd5\x93\x71\x57\xa3\x57\x5d\xdd\xc8\xdb\x32\xeb\x7e\xfe\xfb\x53\x28\x93\x5f\x26\xb3\xbb\xbb\x9f\x7c\x11\x0b\x7d\x1f\xbc\xbf\x23\x2f\x82\xfc\x61\x2c\x91\x7f\xfc\xfc\x22\xc0\xc9\x33\x59\x7d\x15\xc0\xbf\xcf\xfe\x31\x99\x7e\xb8\xf1\xf9\x0f\xcc\xab\x7e\x84\x5e\x3f\x86\xc8\x13\x58\xa3\x53\x91\xae\x99\xcd\x53\xf2\x5e\xbe\x19\x85\x4f\xee\x44\xb5\xcf\x47\xdd\xe1\x5c\x7f\x0d\x0b\x1f\xc5\xf4\x97\xc9\xec\xaa\xc4\x4f\x55\x26\x8b\xab\x57\x4a\x6b\x57\x5a\xb9\x55\x5e\x7d\x31\xff\xc4\x48\x7c\x65\xe3\xfd\xe4\xc3\x4b\xc9\xfc\x53\x3a\x4c\xa7\x2f\x27\xfd\xcf\xd4\xf4\x6f\x4f\xa7\x57\x4e\x99\xc5\x31\x96\xd5\x75\x96\x7c\x4d\xc0\x9f\x42\xfa\xe5\x97\xfb\xab\xde\x19\x3b\x2e\xf1\x79\x91\xf9\xe9\x9f\x3f\x56\x28\x9f\x09\xca\xfb\xb0\xd2\x4b\x2b\xcf\x6f\x1d\xd8\xe7\xc5\x9d\x97\xb1\x78\xfe\xe4\x2b\x38\x8d\x26\xff\xd1\xa6\x7f\xf8\x30\x41\x5e\xd6\xee\x7b\x62\xf9\x7c\xc1\x2f\xff\xf5\x3b\x0d\xef\x93\x51\x61\x5a\x79\x65\xfd\x92\x44\x9e\xb2\x72\xf2\xf6\x6a\xed\x93\xac\xbd\xd5\x14\xe0\x5f\x1f\x3e\xfe\xc7\x47\xcd\xf8\x75\x32\x9d\xde\x9e\xbd\x24\x36\x37\x6f\x71\x2b\xc0\xba\xcf\x11\x7f\x99\x5d\x2f\xec\xe8\xe7\xf7\x79\x96\x3f\xcd\x12\x3e\xdf\xe0\xc3\x52\x7f\x47\xfe\x71\xa3\x3e\xfc\x22\xf1\x9f\x3b\x9e\xaf\x1b\xb4\xab\xae\xdf\x8c\xeb\x1f\x0f\xf1\x11\x59\xe4\x3b\x54\xef\x95\xa0\x27\x1f\x26\xcf\xde\x35\x25\xa8\xeb\xf2\xdd\x35\x22\x79\x37\x99\xfd\xe3\x77\x18\xe6\x2f\x91\x78\x5f\xe5\x71\xe8\x3c\x33\xd1\xfd\xbb\x09\xfc\xee\x9b\x58\x7c\x47\x35\xe5\xbb\xa9\xd1\x7f\x95\x0c\x0f\xa1\xdb\x83\x3c\xff\xe3\x4e\xb6\xf5\x19\xa4\xa7\x66\xf6\xc7\x3d\xd5\x1d\x43\xf1\x52\x67\xe8\x8f\xd9\xe7\x9b\x37\xef\x26\xf0\x1d\x6e\x7f\x6b\x8b\x4f\xfb\x4d\x0f\xc9\xd0\x0b\xc1\xb1\xed\xc5\xf1\x0f\x54\x1f\xef\x05\x64\x6d\x58\x35\x56\x8c\x79\x71\xfc\xfa\x2a\xd5\x13\x10\x8f\xe5\xa2\x31\xa9\xb3\xb3\xd2\xf5\x4a\x3c\x8b\x6f\x35\xac\x37\x5d\x10\xd6\xde\x9b\x6f\x57\x35\xbf\xcc\x70\x5f\x09\xfc\xcd\x2d\xd5\x9d\xc1\x4f\x6a\x5e\x4f\x40\xe4\x59\x2e\xa4\xf7\x76\xf8\x64\xdc\x29\x73\x9a\x2f\x3a\x74\xaf\x61\xc5\x55\x58\x28\xcf\x7b\xb9\x13\x7c\x2f\xab\xc8\x6e\xb7\xae\x92\xd9\xb7\x30\x7a\x12\x9a\xbc\xc8\x81\x2f\x02\x93\xdf\x1f\x8c\x7c\x2b\x00\xb9\x1f\x74\xdc\x6d\x5c\xdd\x0d\xf9\x5e\x17\xe3\x3d\x9d\xf6\x39\x16\xaf\xe1\x8c\x63\x95\x65\x68\xf9\x9e\x34\x0a\xd6\x57\xeb\x17\x77\x49\xfe\x0d\x1d\xb4\x9c\xa8\xca\x2d\xc7\xfb\x1e\xce\xf7\xf7\xca\xe0\xbf\x77\xa3\xb5\x65\x7f\xcf\xee\x9e\x3c\x4a\xbd\xbe\x96\xeb\x4f\xfe\xfe\xeb\x6b\x55\x41\x78\xaa\x85\xe6\x1b\xa7\x68\x3e\x93\x0d\xaf\xf6\x77\x5e\xeb\xc5\x6f\x67\xaf\x87\xcf\xbc\x9a\x5b\x9f\xc0\xc3\xaf\x02\x3f\x86\x62\xb7\x72\xc8\x17\x4b\xe4\x56\x69\x25\xd5\x53\x2b\x7a\x7b\xfa\xee\x1a\x0d\xbe\x9b\x9c\xaf\xde\xeb\x13\x5f\x6e\xaf\x26\x1f\xc6\xbf\xab\xbf\x7f\x6e\xf2\xaf\x6c\x1f\x5f\xff\xc7\x64\xf6\x65\x5c\xfa\x38\x6b\xf6\x69\xf4\x0f\x86\x9a\xe7\xe7\x93\xfa\x4f\x6f\x9d\xe0\x8e\x8f\xf2\x4a\xab\xf2\xae\x5e\xea\xed\xcf\x77\xc2\x92\x2e\x08\x63\xef\x01\xf1\x5f\x7e\xb9\x86\x59\xe7\xc9\x7f\xfc\x80\x9a\xde\x8f\x56\xce\xd3\xe9\x2d\x40\x71\x82\x7b\xb5\xe7\x17\x67\x3f\x09\x43\x5f\xa5\xf5\xb7\x8a\xb3\x9a\xbf\x96\xbd\xaf\xe1\xe1\x93\x1d\xdf\xe1\xe2\xcb\x96\x79\xf2\xcb\xc3\x02\xdf\x30\xd0\xff\xf1\x4d\xbb\x70\xb9\xe7\x0c\x5e\x43\x0c\xe2\xe9\x09\xa2\x7f\x25\x39\xa6\xaf\x23\xc7\x73\x17\x51\x66\xdd\xb7\x64\xef\xf2\x5c\x29\xae\xb3\x26\xbf\xdc\xc7\xed\x5f\xe9\x9b\x6e\x8c\xa1\xb2\xb2\xb3\x4a\xf7\x4f\xc2\x9b\xfe\x75\xbc\xf9\x51\x12\xdd\xa9\x85\x8e\xf9\xd3\x33\xdc\x5e\x43\x3a\xcc\x72\xa2\x7f\x25\xed\xfe\x47\x65\xe7\x2e\xf9\x5e\x65\x47\xfa\x57\xd8\x91\xbb\x41\xe5\x6b\x68\xbe\xf7\xfa\x7a\x17\xa6\xde\x9f\x44\x5e\xff\x54\xb6\xe4\x9b\x51\xe4\x2b\xe8\x7b\x28\x3d\xc7\x73\xc3\xd4\xff\x53\x11\xf9\x7f\xd6\x7f\xfd\x51\xb4\xbb\x86\x74\xc0\xae\xb2\xb8\xa9\xff\x2c\xa4\xeb\x1f\xe1\x7f\x92\x99\xd7\x68\xd9\xdd\x86\xeb\xfd\x5d\xdc\x02\x53\x27\x8b\x9f\x46\x93\x1f\x77\xf5\xa5\xb4\x7e\xdc\x59\xf5\xf1\x4c\xce\x9d\x82\xc8\xed\x1b\x32\x8f\x20\x66\xff\x78\x49\xe0\xef\x54\x67\xc7\x99\x77\x59\x7c\x2b\x1a\x66\xdd\x3d\x29\x19\x51\xbe\x3b\xeb\xe3\x41\xe2\xeb\x98\xd7\x69\xf1\xdd\x70\xfa\x5b\x41\xc0\x15\xf1\x3b\x98\x7d\x65\x3f\x1f\x31\xbb\x8e\x79\x9d\xd9\x1f\xa1\xbd\xd2\x05\x4e\xee\x8b\xd3\x17\xbc\xbe\xa3\x5e\x65\xd6\xbd\x5e\xd0\x1e\xa2\x0f\xe5\x49\xf6\xf8\x4a\x85\x99\xfc\xf7\x7f\x7f\x8e\xf6\x97\xe9\xc3\xf7\xc7\x02\x4f\xb3\xd0\xc9\x2b\x3d\xd3\x2d\xa9\x61\x52\x22\xac\xf2\xd8\xba\xbc\x62\x23\xe7\xcf\x4a\x51\x5d\x58\x3b\xc1\xe3\xc0\xbf\xc3\xcf\xba\x8e\x8e\x55\x79\x13\xf8\xaf\x5f\x3c\xbb\xb3\x9d\x1b\x0e\x52\xe8\x07\xcf\x0a\xec\xfd\xbb\x67\x5c\xba\x53\x82\xbd\x93\xcb\x5d\x13\xc0\xd9\xf3\x91\xb7\x5e\xc1\xaf\xf7\x32\xb3\xab\x88\xff\x3a\x39\x4f\xa7\xaf\x6c\x7a\xdd\x70\xbe\xfa\x99\xb7\xe7\x57\x35\xf7\xec\xd2\xb3\xa2\x5f\x9f\x53\x67\xf6\x3a\xea\xec\xbc\xd3\x1f\x48\x9c\xe7\xa3\x1e\xc4\xef\xfc\x5c\xf4\xfe\x87\xf7\x8f\x3c\xdf\xff\x1d\x8c\x6f\xdc\xf9\x1a\xd2\xbf\x1f\xe5\x97\x10\x44\x9f\x23\x78\x55\x83\x87\xf2\x9f\xe5\x44\x72\x38\x78\x2f\xf5\x8c\x1e\xdc\xc4\x2f\xaf\xdb\xcf\xd5\x1e\x3e\x81\xfb\x95\x43\x9f\x77\x17\xac\xcb\x30\x91\x6b\xab\xac\x9f\x00\x7a\xa1\x17\x75\xaf\x46\x32\xf9\x30\xe1\xad\x3a\x78\x9f\x58\xfd\xb3\x28\xe5\xf6\xfe\x97\x27\x9b\xff\xf2\xac\xd4\xd7\xc0\xbb\x61\x95\x7f\x0d\xfc\xed\xfd\xeb\xc0\x7f\x53\xc2\xbe\xc3\xf8\xbd\x22\x5c\xfc\xb3\x98\xba\x7f\x99\x19\xf9\x0e\xfd\x7d\x51\xed\xbe\x7f\x99\xd7\x30\x71\x2c\x49\x5e\x17\xf8\xee\x92\xe4\x0f\x94\x23\xbf\x27\x9e\xfd\xe3\x4a\x93\x8f\x01\xd8\x73\x4b\xf2\x79\x1b\xe2\x75\x20\xee\x2f\x3f\xf9\x65\x72\xfe\xd2\x67\x7e\x3d\x22\x79\xf1\x10\xd1\x83\xc9\xfb\xf0\xe1\x05\x93\x98\x58\xfd\xee\x36\xe4\xd5\x8d\xc4\x4f\x36\x6d\x76\x47\x62\xee\x6d\xe6\xde\x81\x8f\x7b\xb6\xe6\xde\xb8\x32\xeb\xee\x3d\x3e\x3f\x7d\xf8\x8a\x4e\xef\x43\xed\xf6\x26\x6b\xf0\x33\x2d\xb3\x63\x2b\x8d\x46\xbd\x28\x1b\xef\xe7\xd7\xd4\x75\x1f\x8b\xc1\xef\x26\xb3\xbb\xcd\xa2\x1f\xeb\xf3\xbe\x7e\xd6\x17\x3d\xaf\xd7\x04\xca\xae\x17\x7b\xb5\xf7\xff\xe9\xe6\xef\xd7\xcd\xff\x27\xf4\x72\xf2\xcb\x87\x7b\x51\xf9\xfd\x30\xe0\xd9\xd0\xd7\x6b\xdc\xcd\x92\xfd\xb1\x3a\x77\x13\xca\xff\xab\xb4\xee\x47\x9a\x74\x3f\xd4\xa1\xfb\x5f\x50\xbb\xdf\xdd\x8f\xfb\xa1\xa6\xdb\xf3\x40\xe9\xa9\xa0\x7f\xa3\xfb\xd6\x54\xc1\xdb\x2f\x3a\x76\xaf\x89\x67\x46\x76\xff\x58\x03\xee\xf7\x14\x15\xbe\x10\xf7\xbb\xda\xfb\x8c\x4b\x23\xaa\x4a\x96\xbf\x92\x32\x3f\x00\x7c\x14\xfb\xaf\xeb\xf2\xcf\xbf\x53\x2d\x3f\x6e\xe3\x7f\x47\x3d\xc7\x09\x3f\xda\x54\xfc\x97\xb0\xf8\x91\x0b\xff\x53\x5c\xbe\x89\xd0\xff\x43\x2c\xbe\x99\xa6\xff\xcd\x53\x12\xff\x9a\xd0\xe7\xcf\x78\x62\xe2\xef\xe7\xe9\xf4\x1f\x93\x0f\x5f\x90\xf1\xfb\xdb\xa2\x7f\x8e\xa2\x6e\x5e\x7a\xed\x8f\x14\x75\x9d\xc0\x2a\x0f\x59\xf5\xe7\xef\xe7\x4c\xfe\x9c\x2d\x72\xfa\xb1\x87\x24\x79\xb1\x55\x87\xed\x9f\x87\x82\xff\x57\x9c\x30\x28\xbd\xdc\xb3\xea\x8f\xdd\xd8\xab\x1d\xb4\x9c\xda\x2b\x7f\x58\xa3\xde\x4d\xe2\xb1\x44\xf7\xa2\xe6\xbf\xce\xd9\x5c\x7e\x7e\x37\x1a\xaa\xeb\xc4\xfb\xdf\x05\xba\xae\xf7\xf4\x8d\xeb\x9d\x5e\x38\x8b\xfe\x75\x05\xbf\xbb\xca\x8f\x59\xa7\xca\x4b\x5d\xc2\x6b\x43\xe7\x66\x4e\x43\xbb\xa9\xbf\x99\x51\x7f\xea\x56\x5e\xc9\x78\xa7\x90\xfc\xf2\xf9\xe4\x7b\xe7\x9c\xf3\xd2\x3b\x85\xcf\xbe\xf5\x76\xef\xdb\x1a\xd5\xdb\x37\xb7\xaf\xaf\xbf\xf9\xf9\xe3\xef\x28\x7d\xf9\xb6\xec\xdb\xfa\x97\x26\x0d\x9d\xcc\xf5\x5e\x1c\x54\x39\xa5\xe7\xa5\x6f\x7e\x7e\x45\x3a\x7a\x25\xce\xdb\x67\x5f\xe9\x7c\x8f\xc3\xef\x49\x19\x9f\x4c\x27\x6f\xfe\xfe\x9f\xb3\x5f\x11\xe7\xe9\x77\xee\x5f\xf8\xd1\xa5\x3b\xb8\xc4\x61\xda\xf4\x7f\x14\x2a\xcb\xaf\x20\x72\xa7\x41\x7a\x97\x0d\xb7\x34\xfe\xcd\xdf\x9e\x7d\x57\xf3\xeb\xec\xf8\x43\xf0\xff\x1b\xfc\x2b\xb2\x5a\xfe\x0a\xff\x0e\x72\x7e\xc9\xff\x3f\x06\xab\xf5\xe2\xd7\xcd\xe2\x77\x61\xf5\x9d\x4c\xfe\xa4\x5a\xd3\xc9\x9b\xdf\xb1\xec\x1f\x2a\xe7\x7f\x5b\xa3\xbf\xce\x61\x18\x46\xbf\x4a\x89\xd7\x1e\xcb\xff\xf3\x85\x10\x97\x57\x87\x10\xff\xf3\xa7\x96\xbe\x4e\x3f\xed\x4f\x1a\x42\xfc\xa9\x0e\x7d\xfd\x0b\x0f\x90\xd2\xda\x2b\xcf\x09\x7d\xe9\x46\xef\x9f\x48\xbf\xbd\xfa\x70\xff\xa8\xd0\xdf\x67\x2f\xcf\x9a\x3d\x99\xf5\x92\xb4\xdf\x3f\x8a\xf4\x2f\x61\xd9\x4b\x31\xfd\xf3\xa3\x4e\x7f\xc2\xc0\xb4\xb6\x6c\x3c\xf6\xac\x1f\x0a\x44\xef\xea\xe2\x87\xe7\x51\xd5\x58\x7c\x7d\x8a\x6f\x6d\xd9\xd5\xf3\x2f\xc2\xdd\x23\xf0\x47\x5f\xf1\x80\xc1\x87\x0f\x13\xf4\x1b\xf4\xb9\x02\x9f\x7c\x98\xfc\xd7\x3f\xbf\x37\xa6\xbc\x7d\xa7\xf6\xd5\xf2\xff\xe9\x87\xa8\x9e\x59\xa0\x8f\xdf\xc1\x0d\xc7\xef\xdf\x86\x93\xff\x98\x7c\x31\xe9\xd7\x49\x78\xff\x68\xcd\x6d\x2b\x0f\x98\xbc\xfd\xfb\x03\xb5\xc3\x7f\x3c\xfd\xa6\xe5\x3f\xff\xf0\xc8\xf5\x9b\x1d\xfd\xc9\x63\x8b\x7b\xfe\xbc\xc5\x7d\x87\x09\x9f\xbe\xa4\xfc\xd5\x2f\x6e\xdf\xe9\xa3\x7f\x5c\x08\xb9\x73\x7e\xe0\x85\x39\x3f\x1a\x32\xfe\xe7\xb3\x90\xf1\xf5\x74\xb8\x73\xc6\xe0\x0e\x1d\xac\x3c\x8f\xc3\xf1\x07\xb9\xf1\x8f\x3f\xc4\xf5\x63\xe4\x78\xd5\x7a\x95\x57\xfb\x0f\x3f\xcf\xf2\x16\x7e\xf7\xd9\x2f\xb5\xbc\x27\x48\x0a\xa8\x3b\xe5\x37\x9c\x06\x92\x4c\x2a\xaf\x3b\xa3\xf2\x39\xb8\xd9\x1f\x0b\x0e\xf9\x63\xc1\xa1\x3f\x00\xee\x6b\xe4\xbe\x73\xd0\xe9\x1e\x06\x56\xeb\xb9\xf8\xd5\xfa\xde\xb5\xc9\xaf\xda\x45\xe9\x55\xe1\xe0\xbd\x9d\xa1\xc8\xb3\x8a\xef\xcd\x61\x7d\x3f\xee\xcb\x57\xe1\x9e\x95\xa1\xff\xff\x67\xef\xdd\xdf\xda\xc8\x91\x05\xd0\x9f\x37\x7f\x85\xc2\xce\xc6\x76\x30\xc6\x36\x6f\x88\x93\x63\x1b\x33\xe1\x0c\x79\x5c\x60\x5e\x17\x38\x3e\x8d\x5b\xb6\x7b\x62\xba\x3d\xdd\xed\x00\x9b\xb0\x7f\xfb\xfd\xf4\x6c\xbd\xbb\xdb\x90\x99\xb9\x7b\x96\xef\x9b\x09\xa8\xa5\xaa\x52\xa9\x54\x2a\x49\x55\xa5\x20\x7c\xd4\x14\xdd\x29\x84\x48\x4e\xa3\xb1\x34\xb2\x96\x65\x06\x38\x39\x51\x8c\x15\xb3\x68\x52\xad\x9c\xc1\x38\xf0\x66\x60\x1e\xc5\x29\x88\xd1\x86\x22\x49\xa1\x0f\x84\x09\x0c\x3e\xc1\xfb\xb9\xe7\x37\x4c\xe9\x09\x0d\x40\x85\x96\x3f\xe0\x86\xce\x9e\x2b\x8d\x3f\x07\xf0\x16\x3f\x6f\x91\xdc\x87\xa3\x33\x7c\xe0\xde\x8d\xa1\x67\xcb\xa2\xe0\xe2\xc1\x9e\xce\x02\xc2\xcf\x66\xd3\xa0\x61\xd9\x27\x03\xb3\xd9\xa7\x62\x53\xe3\xae\xd5\x7c\x17\x2d\xb0\x03\x9d\x60\x15\x76\x3a\x60\xaf\x18\x03\xd2\x76\xd3\x02\x00\x11\x5e\x08\x46\x18\xc5\x37\xde\x4c\x07\xf2\xba\x38\x88\x1b\xd4\x18\x3f\x3f\x90\x94\x19\x3e\x16\x66\xae\xa4\x56\x87\xf8\x25\x88\x35\x0c\x74\x0d\x62\xa8\x05\x85\x29\xc1\x69\x13\x83\x28\x7c\xe7\x85\xde\x04\xc6\x0d\x3f\x48\x10\x2c\x9b\x40\x98\x04\xbc\x17\xe0\xcc\x7d\x20\x8d\x00\xa6\x00\x10\x0a\xac\xf2\xec\x9c\x8c\xcd\x66\x31\x43\x00\xed\xd2\x8f\xa2\xd1\xc2\xcd\xbe\x1c\x54\x5b\x85\x50\x2d\xd2\x31\x1b\xeb\xa5\x31\x15\xd3\x17\xc9\x24\x7e\x2c\xa6\x56\xc1\x3e\xc5\x77\x9f\xd3\xc7\xe1\x6a\x17\xc3\x44\x6e\x7c\xde\x06\xbe\x0f\x73\x72\x17\xbb\x3b\xb6\x69\xd0\x37\x80\x47\xdd\x68\x0d\x36\x0d\x6b\x08\x83\x64\x59\x5e\x4c\x56\x2d\x99\xea\xae\x5c\x2c\x38\x61\x2d\xae\x65\x4c\x65\x2d\xfe\xe0\x83\xf4\x7d\xe3\xf1\xba\x9e\xcc\x5a\xfc\xc1\x07\xed\x5a\x43\x5c\x9a\xd3\xd0\x0f\x92\xb9\xde\x10\x95\xba\x1b\xde\x69\x8d\xee\x72\x30\xe9\x58\xdc\x0d\xf8\x5d\xb1\xd6\x30\xbb\xac\x2e\x00\x80\x5c\x17\x5b\x60\xd0\x0b\x75\x27\x18\xb4\xad\xd3\x9a\xa3\x42\x6b\xab\x07\xb3\xf8\x02\xa3\x09\x06\xb5\x3c\xa6\x8e\xfa\x25\x57\x67\x03\x04\x2e\x89\xe4\x97\xc2\xed\x92\x69\x74\x4b\x36\x12\x36\x64\xe6\x24\x40\x05\x36\x4d\x79\xb7\x58\x7f\x9d\x0d\x32\xa7\xe5\xdf\x67\x8b\xbc\xa4\xba\xfd\xb7\xdd\x23\x2f\xc9\x0f\x8b\x69\x6a\x4c\x9a\x83\x36\x6d\xc8\x9a\xdc\x68\x1b\xb2\x80\xf1\x8d\x5d\x89\xf4\x5e\x74\x23\x67\x83\x54\x66\x77\x67\x9e\xc4\xe6\xc3\x34\x8e\xe0\x0f\xd9\x28\x2e\x39\x30\x4b\xee\x14\x97\xb5\x42\xbe\xf5\x56\x11\xcf\x00\x64\x4b\x5f\x7b\xa3\x4f\xc8\xa0\xa6\xfa\xfc\xf1\x3b\x44\x47\x8f\xff\x9d\xb7\x88\x25\xba\x2d\x6e\x0c\x8b\x37\x93\xf7\x82\xc5\xdb\xc9\x1b\xc0\xe2\xed\xf4\x1d\x20\x7b\xd1\xe6\x09\x37\x81\x04\xd4\x32\x23\xbe\xd4\xfe\x6d\xe9\x3d\x41\xf9\x0d\xdc\xf2\xa8\x4a\xef\xe0\x96\x46\xb5\xcc\x16\x6e\xd9\x75\x7e\xa9\x3d\xdc\xb2\x7b\xd3\x3f\x66\x0b\x57\x7a\x07\x67\xda\x8f\x19\x42\xbf\x31\x1c\xf2\xb5\xb0\x59\xcd\x42\x3d\xcd\xb0\x0c\x79\x59\x5d\xb0\x68\x5c\xa7\x05\x16\xfa\x5a\x18\x96\x29\xb4\x9d\xc0\xb9\x2b\x4e\x8f\x9d\x96\xe2\xdb\x0e\xb6\xd5\xb3\xc2\xe2\x35\x4a\xc2\x24\x5b\xbf\x1c\xb0\x6a\xd0\x50\x0e\x64\x7a\x03\x68\x86\x88\x3e\x2e\xb1\x4d\x5b\xcc\x4a\x6c\xd2\x54\x3d\x9d\xc0\xb4\xb7\x18\x8f\x61\x6c\x0c\x46\x2a\xbe\x6b\x8c\xe1\x38\x86\xc9\xb4\xaa\xfb\x86\xb3\x4b\xea\x3f\x72\x0f\xfb\xa7\xed\x45\x47\x53\x2f\x5e\xc2\xf1\x4f\x0c\xfa\x6a\x21\x9b\x5f\x3e\x56\xce\x4b\x38\x43\x93\xb2\xea\x82\x45\x1d\x22\x0f\x0a\xee\x38\xd1\xbe\x37\xcb\x89\x42\x89\xaa\x93\xad\x70\x1d\x8c\x67\xde\xc4\x74\x9b\x44\x91\xbf\x7e\x0d\x5a\xbb\x75\x30\x9e\x80\x8e\xbe\xa5\xc9\xea\xec\xd5\xc0\x0b\xd0\xbc\x6b\x8d\xc7\x75\x70\x3d\xb1\x83\xe3\x95\x84\x69\x4b\xb3\x42\xa0\x3d\xf9\xcc\xb8\x0f\x9f\x67\x87\xe9\x81\x92\x9b\x16\x33\x1b\xbc\xee\x80\x8d\x26\x66\x30\x78\xd5\x01\x1b\x3b\xc6\x3c\xd5\x88\xaa\x39\x58\x03\x1b\x4d\xd7\xc6\x3d\xbb\xff\x47\x50\x37\x33\xa8\x9b\x46\xa8\xd7\x0c\xea\x66\x09\xa8\x7b\x19\xd4\x3d\x23\xd4\x39\x58\xed\x80\x5d\x5d\xc4\x79\x1f\xf6\x4a\x60\x6b\x35\x33\x74\xad\x66\x29\x7c\xbc\x77\x2d\xf5\xf6\xc2\x8a\xd0\x28\xd8\x98\x76\xb3\x9c\x51\x59\x26\x72\x66\xe9\xb1\x2a\x77\x42\x9b\x4c\xee\x2c\xd4\x5b\x9a\x1a\x1b\x39\x3b\xa5\x9d\x29\x65\x9d\xfa\x9a\x13\x2b\xa9\x40\xda\x74\x42\x6a\x97\x80\xb4\xe5\x84\xb4\x59\x02\x92\x79\xca\x30\x48\xbb\x25\x20\x19\x9f\x3e\xcd\xf8\xb4\x5d\x02\x54\xdb\x98\xed\x9a\xc0\x7a\xd1\x01\xff\x2a\xc3\xf4\xb6\x83\xeb\x08\x56\x19\xb6\xb7\x1d\x7c\x47\xb0\xca\x30\xbe\xed\xe0\x3c\x82\x55\x86\xf5\x6d\x07\xef\x31\xbf\xca\x30\x7f\xc3\xf8\x86\xee\xb2\xf3\xd1\x3d\x21\x8c\xa8\x9e\x76\xfa\x6e\x18\x79\x23\xf8\x09\x06\x60\x15\xb4\x72\x52\xec\x07\x48\x4f\xb6\xcd\xa6\xc7\xd8\x40\xee\x8d\x97\x8e\xa6\x38\xdb\x37\xc7\x72\x85\x69\xc7\x2b\xa0\x84\xd7\x50\xda\x66\xa5\x8e\x97\x0c\x10\xd6\x4e\x07\xac\xb5\xec\x0f\x48\x60\xc2\x2c\x2a\xd2\xd5\x29\xcb\x8b\x16\x66\x96\x19\x67\x44\x1e\xcb\xa4\x75\x9d\xf6\xd5\xc1\x5c\x83\xa5\xef\xca\xfe\xaf\x0a\xd9\xb7\x16\x00\x93\xbc\x7e\x7b\x01\xb8\xce\x17\x80\xeb\x7f\x03\x01\xb8\x7e\xbc\x00\xb4\x9a\x66\xbb\xe4\x4f\xb6\x30\x72\xc3\x0e\x60\x1c\x47\x71\xb5\xf2\x63\xf8\x29\x8c\x6e\x43\x70\xf6\xfd\x29\xf0\xd8\x5e\x64\x1f\xfc\xc3\x6f\x54\xea\x60\x5e\x20\xa4\xc5\xba\xbb\xa8\x92\x15\xe2\xd5\x2b\xfc\x6e\xf9\x57\xac\x54\x5e\xbd\x42\x1d\xff\x0a\xae\x27\x07\x05\xf6\x47\x3e\x0e\x8d\x3a\x4b\xbd\x74\x51\x64\x77\xf4\xd4\xd7\x5f\xc5\xce\xaa\xf2\xc3\x37\x9a\xe1\x32\x9e\x29\x05\xcf\xff\x72\xb1\x57\xac\x13\x78\xd5\xe0\x6c\xbe\xaa\xfa\xb4\xcb\x0d\x2a\x07\x65\xc0\xdd\xe5\x82\x3b\x2d\xc1\x99\x3f\xe3\xe2\xef\xa9\x06\xe1\xcd\xbf\xcd\x28\x00\x7e\x28\x6a\x99\x1e\xcb\x1c\xff\x3a\xdb\x58\xc6\xc0\xd5\x66\xcb\x72\x6f\xf3\xe8\x13\x9b\x24\x1a\xa7\xa7\x30\x81\x69\x8e\x3a\x2a\xe5\x93\x54\xe2\x3e\xbd\xc4\x8d\x66\x39\xe7\xd5\xf2\x37\x7a\xe5\x8f\xe1\xca\x5f\x97\x3b\x4e\x6f\x9b\x39\xb5\x6c\xe7\xb1\x7a\x14\xcc\xd2\xc7\x63\xf9\x67\xdc\xf7\x4e\x42\xd9\x2b\x9a\xea\xa9\xac\x52\x6d\x32\x83\x9f\xe1\xac\x08\x24\xb4\x48\x5e\x20\x58\x57\x45\x56\xd7\x04\xa6\x84\xef\x67\xe9\xfd\x6c\xa9\x40\x36\xf0\x0a\xb4\xc0\x1b\xd0\x02\xfb\xa6\x80\x1a\x49\xcb\x1a\x13\x2b\x2a\x6e\x15\x05\x33\x0f\x26\x30\xfd\x30\xc7\x4f\xcd\x56\x46\x19\xfd\x95\x3a\xa8\x5c\xcf\xa2\xd1\x27\x93\x2e\x2b\x98\x05\xd4\xe6\xf4\x52\x98\x80\x45\xe8\xc3\x78\x16\x84\xb0\x0c\x11\x5b\x06\x22\x0c\x3a\xaf\x38\x17\xbc\xb8\x00\x7a\xf9\x1c\x37\x48\x7a\xb3\x20\xfc\x14\x84\x13\x1e\x8a\xf9\x0f\xd0\x26\xf6\xad\x7d\xa2\xa9\x24\x60\x18\x95\xba\x00\xad\x58\xe6\x1c\x98\x12\x85\x71\x0a\x27\xc5\x22\xf7\xcc\x86\x9e\xd4\x65\xf5\xdc\xda\xa1\x4a\xaa\x72\x5a\x82\x9a\x53\x3d\x28\xda\x45\x08\x07\xcc\x0e\xe2\x5b\x57\xe0\x95\x59\xf1\xbc\x11\xaa\x68\x4e\x80\x24\xac\xcf\x85\xfc\xce\xa9\x05\xee\x8b\xbe\xd1\x94\x78\x9f\x61\xa6\x72\x8b\x2f\x63\xd8\x43\xe7\x17\x67\xc2\x18\x53\x8b\x5f\xad\xb9\x8a\x73\x5d\xf5\xd2\x28\x5e\x8a\x52\x83\x2e\xa6\xc4\x7f\xfd\x9a\xc3\x41\x73\x0f\xb2\x66\x94\x66\xfa\x2e\x9b\x48\xba\xfa\x08\xb7\xf2\x6a\xb4\x5c\x15\xcd\x3a\xfa\xe8\xb2\xfc\xa2\x74\x34\x4f\x79\xcf\xf0\x23\xd5\x1f\xde\xf5\x8e\xdf\x1f\xbf\xff\x1e\x29\x77\x4e\xf8\x45\xf3\xae\xb9\xd1\x6c\xd6\x01\xfa\x77\xfb\xe8\xaa\x8e\x4b\x36\x77\x37\x70\xc9\xe6\xee\x36\x2f\xd9\xa5\x25\x7b\x57\x75\xa9\xf5\xd6\x5e\x0b\x7f\xd9\xea\x1d\xd2\xba\x5b\xbd\x23\x5a\xc2\xe0\x6d\xf5\x69\x9d\x7e\x5b\x6d\xdd\xdf\xa4\x5f\xb6\x78\xdd\x1d\x5a\xb2\x43\x4b\xb6\x29\x7d\xdb\xcd\x0d\xa5\xf5\x76\x8b\x7e\x69\xb1\xd6\xdb\x9b\x3d\x52\xb2\x35\x60\x25\x3b\xb4\xce\x4e\x53\x6d\x7d\xb8\x4d\xbe\x0c\x36\x59\xdd\xc1\x0e\x2d\xd9\xe5\x25\x5d\x5a\x72\xa8\xb4\xde\x69\x92\x5e\xee\x34\x59\x2f\x77\x5a\xa4\x97\x3b\xad\x16\x2b\xd9\x20\xb8\x77\x36\xbb\x6a\xeb\x2e\xc1\xbd\xd3\x6b\xb2\xba\x03\x42\xf9\xce\xd1\x06\x2d\xd9\x6b\x12\x78\x7b\x4d\x95\x6b\x7b\x1b\x7d\xf2\x65\xa3\xcf\xea\x6e\xd2\xba\x9b\xbb\xbc\xe4\x90\x96\xa8\x94\xef\x6d\xd1\xba\x5b\xac\xdf\x7b\xdb\x6d\x52\xb2\xcd\x71\xef\xd2\x3a\xbb\x2d\xb5\x75\x8f\xe2\xee\x71\xdc\x74\x74\xf7\xfa\x1c\x5e\x9f\xe2\xee\x6b\xb8\x07\x14\xd3\x80\x61\xea\xd2\x5e\x76\x51\x2f\x49\x09\xed\x5d\x17\xf5\x4e\x6a\xdd\xa5\xbd\xec\x6e\xf2\xba\x9b\x3b\xb4\x64\x97\x97\xf4\x68\x89\x8a\xbb\x4b\x25\xa1\xbb\xc3\xc6\xa7\x4b\x7b\xd9\xdd\xe5\xf0\x68\xef\xba\x3d\x0d\x37\xed\x65\x97\x4b\x6a\x97\x4a\x6a\xb7\xcf\x71\xd3\x7e\x77\xb5\x7e\x77\x69\xbf\xbb\xbc\xdf\x3d\xda\xef\x5e\x93\x51\xd3\xa3\xfd\xee\x69\xfd\xee\x6d\x1c\xd1\x2f\x4c\xd6\x7a\x94\x13\xbd\x4d\x0e\x8f\x8e\x77\x4f\xeb\x77\x6f\x8b\xc8\x5a\x6f\x8b\xcd\xe6\xde\x2e\xa1\xa6\xc7\xfb\xdd\xeb\x13\xde\xf4\xfa\xea\x2c\xe9\xd1\x3e\xf5\xfa\x6c\x7e\xf7\x37\x06\xb8\xa4\xbf\xc9\x64\xb7\xbf\xb9\x4d\x4b\x76\x95\xd6\xfd\xcd\x2e\xfd\xc2\x5b\x6f\x6d\x91\x12\x4e\x4d\x9f\xf2\xbc\xaf\xf1\xbc\x4f\x35\x49\x9f\x6b\x92\x7e\x9f\x62\xea\xf3\xd6\x7d\xda\x5a\xe3\x79\x9f\xf2\xbc\xcf\x79\x7e\x48\xb9\x76\xb8\x99\x95\x1c\xd2\x12\xb5\xf5\x61\x9f\x50\x7e\xd8\xef\xb2\xba\x87\x04\xde\xe1\xe1\x26\x2f\xd9\xa6\x25\xdb\x4a\xeb\xc1\x06\xc1\x34\xd8\x60\xa3\x3b\xd8\xd8\xa4\x25\x0c\xde\x80\xca\xee\x60\x73\xa0\xb6\xee\xd1\xd6\x3d\xde\xba\x47\x5b\xf7\xf6\x78\x49\x8f\x96\xa8\x5c\x1b\xf4\x89\xae\x1e\xf0\x11\x3b\x6a\x91\x92\xa3\x16\x6b\x7d\xb4\x41\x46\xe1\x68\x63\x4b\x69\x7d\xb4\xb1\x43\xbf\xec\xf0\xba\x7b\xb4\x84\xb7\xde\x21\xf4\x1d\xed\xa8\x94\x1f\xed\x12\x39\x3a\xda\x65\x3c\x3a\xda\xdd\xa6\x25\x1c\xde\x1e\xad\xb3\xb7\xa3\xb6\xde\xa3\x98\xb8\x6e\x39\xa2\xe3\x7d\xc4\xc6\xbb\xd5\x6c\xe3\x11\x6b\x35\x37\x14\x49\x6d\x35\x37\xda\xf4\x4b\x9b\xd5\xdd\xd8\xa6\x25\x3b\xbc\x64\x8f\x96\xec\xa9\xad\xb7\x76\xc9\x97\x2d\xda\xcb\x56\x6b\x1b\xd3\xd9\x6a\x1d\x51\xe9\x6b\x6d\x6c\x61\x79\x44\xff\x2a\xad\x77\x5a\x04\xf7\x4e\x8b\xf6\xbb\xb5\x43\xa9\xd9\xd9\xe0\x25\x5b\xb4\x64\x6b\x43\x6d\xbd\x43\xbf\xec\x6c\xb0\xba\x64\xbc\x5b\x3b\xbd\x2d\x5e\xb2\x43\x4b\x0e\xd5\xd6\x84\x47\xe8\x5f\x56\xb7\x4f\x7a\xb9\x73\xc8\xe1\x1d\x1e\xd2\x12\xb5\xf5\x6e\x13\xcb\x51\x6b\xb7\x49\xa5\xa5\xb5\xdb\x25\xad\x77\xbb\x8c\x13\x7b\x6d\xc2\x89\xbd\xb6\xb2\x12\xb5\xf6\xda\x3b\xf4\xcb\x2e\xab\x4b\xfb\xbd\xc7\x47\x61\x8f\xf2\x7c\x6f\xa3\xa7\xb4\xee\xb6\x48\xeb\x6e\x8b\xb5\xee\x91\xb5\xbe\xd5\x6b\x32\xca\x7b\x64\xde\xa0\x7f\x95\xd6\x3d\x3a\xba\x3d\x36\xa3\x5a\x54\x83\xb6\x7a\x6c\x5d\x6c\xf5\x36\x09\x35\xbd\x4d\x95\xf2\xde\x36\xe9\x77\x8f\xf3\xfc\x90\xe8\xc0\x16\x9f\xf1\xad\xc3\xa3\x01\x29\x39\x52\xc6\xbb\xdd\x24\x5c\x6b\x37\xd9\xea\xdf\x6e\xb6\xbb\xa4\xa4\x3d\x60\x25\x44\x7e\xda\xcd\xed\x0d\xb5\xf5\x36\xad\xbb\xcd\x5b\x1f\xd2\xba\x03\x5a\xb2\x41\xe1\x6d\x34\xdb\x0a\xee\x8d\x26\x99\x25\x1b\xcd\x3d\x4a\x67\x77\xb7\x89\x39\x81\xfe\xe5\x25\x3d\x5a\xa2\xf0\xbc\xbb\xdb\xde\x22\x5f\xda\xb4\xee\x51\xaf\x85\x7b\x89\xfe\xa5\x25\x03\x32\x0a\x47\x83\xa6\x82\xfb\x68\xd0\xa6\x5f\xda\x1b\xac\xee\xd1\x11\x29\x61\xb3\xe4\xe8\xe8\x08\xd3\x77\x74\x74\xa4\x8e\x37\x5b\xec\xd1\x2f\x8c\xeb\xcd\x6e\x73\x8b\x95\x6d\x67\x65\x7d\x56\xa6\xce\xb4\x66\x77\x83\x4e\xd4\x2e\x1f\xf7\x66\x97\x2c\x90\xf8\x17\x36\x76\xad\x6d\x22\x5c\x87\xad\x6d\x75\xae\x1f\xb6\x76\x36\xe8\x37\xb6\x02\xa2\x5f\xb7\x58\x59\x8f\x97\x75\xbb\xb4\xac\xab\xce\x9b\xc3\x36\x15\xad\xc3\xf6\x26\x9d\xe1\x83\x66\x93\xf4\x0f\xff\xc2\xcb\x08\xcb\x06\xcd\xe6\x8e\xd2\x97\x41\xb3\xd5\xa4\xdf\x5a\x83\x23\xf2\x28\x3b\x3d\xf8\xe0\x76\xfc\x75\x90\x40\x2f\x1e\x4d\xab\x8b\x91\x76\x90\x72\x13\x84\xf2\x46\x0e\x17\x7a\x68\xd3\xc2\xad\xfd\xec\x91\x91\x96\x52\x2f\xf0\x0f\xa4\xcd\xf0\x62\x94\x80\x57\x59\xc3\x8b\xe6\x15\xdd\xc9\xa2\x0f\xaf\x85\x0f\x37\xde\xdd\xd5\x45\xeb\xca\xb4\x4f\x56\x0f\xde\x68\x06\x3c\x44\xd3\xeb\x0e\xa2\x57\x3d\xbf\xb9\x09\x7c\xf6\xe4\xc7\x78\x16\x45\x71\xb5\x8a\x3a\xb5\x8a\x7a\x51\x03\xeb\xa0\x6d\x78\x70\x5c\x23\x27\xf0\x75\x72\x08\x6c\xc4\x1e\x84\x41\x7b\xed\x87\x9f\xf7\xab\x9d\xc6\xc0\x9a\x26\x60\x98\xad\x08\xd8\x9a\x09\x98\x56\x9f\xf2\x43\x3e\x1d\x15\xb2\xac\x6a\xec\x7a\x90\xc7\x9d\xee\xe9\xd4\x61\x67\x34\x13\x3f\x26\xd3\x08\xa0\x7d\x5f\x23\x5c\xcc\x4c\x83\xbb\xd1\x46\xe3\x49\x38\xd8\x01\xcd\xbb\x9d\x31\x78\xf1\x02\x90\x6f\xcd\x3b\xaf\x59\xb3\x43\x1c\x45\x61\x1a\x47\x0a\x54\x49\x38\x8d\x6d\x9b\x72\x83\x20\xf9\x39\xf0\x21\xa9\x6e\xcc\x37\x28\x5e\xc5\x6a\xdc\x6a\x19\x39\x25\xc0\x14\x40\xd2\x26\x59\x5f\x5b\xd4\xd1\x8c\xb0\x82\x94\x6c\x8d\xc1\xd7\xaf\x12\x15\x9c\xb7\x77\xed\x8d\xf6\x9e\xf3\xab\xa7\x7e\xcd\x70\xb5\xe1\x6e\x93\x73\x16\x15\x78\x9b\x23\xce\xea\xe7\x18\xc0\x46\x73\x63\x5c\xb3\x43\xf0\x46\x4d\x19\x82\xbf\xe3\x6d\x38\xea\x8f\xf7\x94\xfa\x63\x6f\xec\x82\x3f\x86\x2d\xa5\x3e\x6c\xed\x39\xeb\x6f\xa8\xf5\xb7\x9d\xf0\xc7\x2a\x3d\xe3\xed\xa6\xb3\x3e\x54\xeb\xc3\x6d\x47\xfd\x76\xb3\xa9\x20\x68\x8f\xc7\x63\xdf\xd1\x62\x43\x6b\xb1\x81\x5b\xb0\xdc\xd1\x0f\xe2\x71\x0c\x9d\x7d\x07\xcf\x1e\x6a\xd5\x2f\x20\x5c\xcc\xf6\xf1\xf3\xca\x64\x0e\xec\x83\x26\x78\xa8\x1d\x3c\x7b\xb6\xbe\xfe\x77\x90\x44\x8b\x78\x04\xdf\x79\xf3\x79\x10\x4e\x7e\x3c\x3d\xe9\x48\x87\x50\xbf\x25\x8d\x1b\x6f\xfe\xec\xd9\xb3\xf5\x97\x2f\x5f\xae\x83\x87\x5a\xfd\xd9\xfa\x4b\xd0\xda\x05\x2f\xd7\x69\x11\x3f\xb1\xa9\xde\x44\xfe\x62\x06\xeb\x80\x1e\xfb\xd4\xc1\x70\x78\x0b\xaf\xe7\xde\xe8\xd3\x30\x86\xbf\x2f\x82\x18\x0e\x87\x48\xc2\x9f\xad\x2c\x12\x08\x92\x34\x0e\x46\xe9\xca\xc1\xb3\x67\x1f\xae\x7f\x83\xa3\xb4\xe1\xc3\x71\x10\xc2\x8f\x71\x34\x87\x71\x7a\x5f\xe5\x50\x56\x86\x43\x98\xbc\xc3\xb0\x57\xea\xe0\x0b\xf8\xec\xcd\x16\x70\x1f\x2b\x26\xdc\x0b\xb4\x16\x1c\xbf\xff\xa9\x7b\x72\x7c\x38\x3c\x39\x7e\xff\xc3\xb0\x7f\xd2\x3d\x3b\x03\x1d\x40\xf2\x42\xae\x05\xe1\x67\x6f\x16\xf8\x6b\xf8\x4c\x96\x54\xc7\x47\x6b\xa3\x68\xd6\x9f\x79\x24\x8a\xa3\x52\x9d\xa6\xe9\x3c\x79\xb3\x7f\x79\xb9\x7e\x79\xb9\x5e\xa3\xf5\xfc\xe8\xc6\x0b\x42\x9e\xe0\xf5\x0c\xdf\x51\x54\x2e\x2e\x2f\x7d\x6f\xed\x9f\x97\x97\x8d\xb5\xab\x55\x5a\x33\x84\x13\x2f\x85\xfe\xa1\xb9\xc1\xff\x18\x5a\x10\xd8\xbd\xc8\xbf\x17\xa8\xa8\x80\x55\x13\xd2\x55\x50\x61\x24\xa5\x33\x5f\xa8\x7f\x41\xa0\x5e\x7d\x69\xd7\xb7\x1f\x58\x95\x60\x2e\xd4\xa8\x5e\x5e\xfa\x5f\x5a\xf5\x8d\x87\xcb\xcb\x46\xed\x0b\xfa\x87\xfc\xc9\x2a\xcf\xa2\x91\x37\x7b\x1b\x25\xa9\xd0\x06\x97\x4d\xa3\x24\x65\x95\xd0\x48\x08\xdf\xf7\x09\x90\x2d\x0e\x64\x2a\xb7\x17\xba\x21\xf4\x6f\x15\x54\x2e\x2f\x1b\xe8\x53\xd6\x07\xd4\xb1\xaf\xa8\x88\xd3\xbc\x0a\x2a\xb8\x40\xa5\x0b\xb3\x00\xac\x8a\xa4\xac\x82\xca\x1b\x46\xa0\x97\x4e\x05\x02\x2e\x2f\xd7\x2f\xf0\x48\xde\x5e\x5e\x36\x2e\x2f\xd7\xfe\xf1\xaf\xab\x97\xb5\x97\xb4\xee\xef\x0b\x18\xdf\x9f\xa5\x71\x10\x4e\xde\x7a\xc9\xf4\x28\xf6\x26\x37\x30\x4c\xb5\x41\x6b\xae\xed\x61\x00\x17\x97\x97\x57\x97\x97\xd5\xcb\xcb\x1a\x06\xf9\xe6\xf2\xf2\xf9\xdf\xff\xeb\xbb\x7f\xbc\xb8\xac\xbc\x5c\xad\xef\x1f\xfc\xeb\xf2\xb2\x43\xb0\x5c\x19\x30\x48\x44\xbd\x41\x1d\x28\x82\x1e\x75\x96\x75\x6d\x2a\x56\xca\xa0\xfd\x7d\x19\x58\x54\x4a\x3f\x22\x6e\x19\x64\x54\x60\x18\x17\xd3\x6b\x51\x40\xa7\xe2\x78\x08\x3c\x5f\x35\x74\x79\xd5\x40\x39\x01\x99\xa4\x5e\x8c\x71\x56\xdf\xec\xff\x0f\x1e\x6c\xfb\xec\x41\xd4\x57\x29\x29\x30\x44\xa6\x56\xa5\x56\xfd\x4e\x6c\xa4\x75\x46\x98\x2c\x44\xc7\xfc\x18\xcf\x4e\xe1\x04\x22\xf3\x27\x84\xb7\xe0\x14\x4e\x06\x77\xf3\x2a\xa1\x62\x55\xd5\x05\xab\x62\x8f\x57\x11\x4e\xaa\x62\xde\xfe\xfa\x71\x70\x7a\x3e\xf8\xe5\x9c\x28\x99\x77\xdd\xf3\xfe\xdb\xc1\xe9\xf0\xf8\x90\x58\xb0\xa8\xca\x49\x10\x7e\x0a\xc6\x01\x8c\xe5\x83\x6c\xb6\xaa\xf3\x12\x5e\xaf\xaa\x9f\xdc\x87\xe4\x11\xe5\x4f\xef\xbc\x74\x34\x85\xf1\x31\xea\xb2\x15\xb5\x7a\x7e\x1f\x47\xb7\xe7\xc1\x0d\x8c\x16\xe9\xb1\x8f\xef\x40\xaf\xd4\x1a\xb3\x0c\xb4\xb1\x42\x0c\x27\x41\x92\xc2\x58\x20\xa1\x2a\x73\xb1\x8e\x2f\x69\x91\x22\xc6\xce\x77\xc7\xa1\x0f\xef\xf6\x41\x0b\xab\xe2\x6c\x19\xe2\x5d\x14\xae\x31\xbc\x34\xf5\x46\xd3\xf3\xe8\x10\x5f\x18\x65\xfc\xf1\xa3\xd1\x02\xc9\x08\x7e\x23\xc0\x70\x99\xc1\xbe\x83\x0e\x60\xbf\x1a\x3a\x9e\x90\xf7\x4d\x13\xe9\x72\xc2\x44\x06\xbe\x91\x1b\xdf\x9f\xe2\x67\x02\x32\x2a\xe2\xe8\x16\xf7\xc5\xe2\x4c\xc5\x30\x17\xcf\x32\x8d\xb5\x35\x1b\x0d\x7e\x9f\x22\x0d\xd1\x05\x43\xaa\xa4\x5f\xe4\xcd\xb4\xdb\xe2\x19\xf4\x62\xda\x5e\xa8\x65\x42\xef\x44\x07\x3a\x20\x81\x29\x07\xc4\x45\x83\xf0\xa5\x71\x1d\x84\x3e\x2e\xc5\x43\x42\xd8\x52\x17\x98\x79\x7e\xfc\x6e\x30\xec\x0d\x8e\x3e\x9c\x0e\xb0\x48\x1e\x1f\xfd\x5a\xcb\xe5\x7b\x02\xd3\xb7\xf7\x68\x6d\xa7\x12\x9e\x5d\x08\x65\x83\x30\x25\x65\xba\x0c\x88\x72\x7b\x61\x9d\x0f\x57\x8d\x29\x07\x3a\x65\x17\x4c\x25\xc8\xfa\x09\x19\x0a\xc4\x11\xc3\x9b\xcd\x70\x28\xb8\x48\xdd\x88\x16\x2e\x4f\xde\x67\x13\x02\x06\x36\x97\x54\xc3\xe4\x94\x45\x98\xcc\x4f\xda\xf3\x3a\xda\xf7\x04\x51\xa8\x6d\xbf\x68\x31\xde\x08\x7c\x8e\x02\x1f\xc7\x93\x00\x5e\x0a\xbe\x3c\x1c\x18\x93\xd8\xea\xaa\x09\xed\x04\xec\x7a\xf1\xc5\x0b\xf0\xdc\x30\xa0\x84\x6b\x71\x74\x8b\xb5\xf1\x80\x78\x5f\xb2\x71\xbb\x59\x24\x29\xb8\x86\x80\x18\x83\x7e\xc5\x28\xda\xe4\x94\x80\xf5\x5f\x49\x11\xee\xef\xdb\x34\xe9\xea\x6a\x5d\x99\xba\x13\xa4\xba\x08\xd7\xa4\x2f\x94\x9a\x7d\xce\x4a\x79\xcb\x2f\xe8\x3d\xca\xb5\x46\x56\x26\xd7\xd5\x07\x3c\x6b\xa3\x7f\x93\xdb\xce\xe3\x20\x8a\x83\xf4\x3e\x6b\xc1\x4a\xf0\x2d\x6c\xc6\x18\x55\x1b\x7a\xbe\x2f\x74\xfc\x3c\x3a\x09\x92\xb4\x4a\x19\x26\x30\x94\x6e\x15\xe8\x87\x06\x3b\x4e\x71\x08\xa0\x11\xb2\x24\x82\x0c\x8b\xd1\x4f\x41\x9c\x25\x62\xec\x9e\x25\x50\x4f\xaa\x8e\x1f\x9b\xd2\xfb\x00\x9c\x2a\x58\x4a\x4b\x63\xa7\x61\x0d\xb4\x0e\x40\x80\x77\x59\x07\x20\x30\x3f\x3a\xc7\xb8\xc4\x87\xe0\x95\x09\xe2\x45\x70\xc5\x6b\xd8\x33\x9e\x4b\x34\xd0\xe7\x84\x02\xfe\xa6\x9b\xb9\x93\xa6\x8e\x02\xa7\x27\xb2\x09\x4b\xd3\x80\xc1\x31\xde\x3e\xcc\x53\x39\x37\x6c\x72\x89\xbd\x95\xd8\xde\x22\x91\x87\x56\xee\x1b\x23\x12\xcd\x32\x83\xb8\x1b\xf8\x58\x64\x8c\x78\x0b\x70\x59\x7f\xe3\x09\xd8\xce\xba\x6c\xdc\x35\x9c\x7c\x39\x66\x4c\x09\x6b\x83\x3e\xd9\x2f\x9a\x0a\x56\x0b\xe1\x79\x1c\xdd\x96\x34\x45\xe0\x5d\x4a\x4c\xa4\x06\xfa\xb5\x1f\x85\xa9\x64\x48\x99\x52\x38\x95\x1b\x34\x59\x2d\x1b\x87\xef\x40\x6b\x80\x2a\x0c\x48\x6a\x8d\x2c\x7a\xd1\x8f\x4e\x38\xdb\xc8\xd3\x84\xe6\x49\x81\x38\x21\x02\xc8\x32\x54\x19\x43\x11\xc4\x79\xac\x2b\x5f\x5b\x80\x05\xa2\x72\x38\x8b\xa2\xf9\xb0\x25\x0d\xe1\x6f\x79\xc9\xe9\x68\xc6\x10\xf2\x1e\x0b\xa7\xf1\xe2\xb7\x2b\xb3\x8f\x31\x60\x4b\x8b\x91\xba\x2a\xcb\x3f\x22\x0c\x5e\x9d\xa1\xa8\x0b\x64\x05\x09\xb6\x62\x5c\xc4\x31\x5e\x3c\x2f\x58\x17\xe0\x33\x62\x53\x02\x4c\xfd\xdc\xc5\x11\x6d\x0e\xac\x01\xe4\xf8\x8b\x2d\xe4\xdc\x12\xb1\xc4\xc4\xf5\x37\x22\xae\xbf\x81\x57\xc0\x20\x0a\xce\x37\xef\xd1\x0f\x1d\x59\xe3\x9b\xe9\x66\x82\xf5\x92\x22\x7a\xd9\xa5\x23\x44\x71\x57\xb5\x44\x26\xfa\xaa\xa6\x80\xc9\x62\x96\x2a\x7b\x38\xe2\xc2\xf8\x36\x4d\xe7\xb2\xc2\xce\xd6\x78\xac\x3d\x0b\x6c\x28\x49\x76\x45\x1f\xd2\x6d\x55\x63\x34\x0d\x66\xfe\x7b\x54\xa0\xde\xd6\xa4\xf8\xc9\x21\x45\xaf\x10\x83\x88\xcf\x36\x6c\x63\xd5\x14\x15\x46\x9a\x7e\xfd\x4a\x60\x38\x0d\x02\xaa\x73\x49\x9f\x6d\x1a\x6e\x11\x07\xac\xab\x17\x88\xb1\xd1\x98\xf7\x3b\x33\xcf\xb0\xcd\x5a\x09\x17\x37\xd7\x30\xae\x80\x37\xa0\x09\xf6\x0d\xb5\x14\x96\xc6\xd1\x2d\x7e\x09\x96\x40\xa0\x38\x1a\x01\xfe\x6b\x15\xe1\x65\xd2\xe6\xd4\xa6\x98\x9d\x79\x0a\x34\x24\x4e\xe9\xb8\xae\x51\x61\x92\x0b\x0b\x46\x09\xaa\x27\xf1\x1d\x13\xf5\x61\x5c\x5d\xc4\x81\x41\x59\x8a\x8d\x5f\x5b\x02\xc9\x15\xad\xcc\x95\xf2\x28\x86\x5e\x0a\xbb\xe1\x68\x1a\xc5\xf4\x1b\xc2\xc2\x05\xb4\xc1\xf7\x1d\x9a\x04\x1a\xe6\x16\xa2\x46\x23\x5e\x10\x81\x8c\xa9\xd6\xc0\x37\x06\x01\xfd\xef\xfc\x7e\x0e\xcd\x8f\x09\x88\x3f\x74\x5d\x85\xf3\x99\x37\x82\x48\x98\x31\x80\xba\xd8\xdd\x52\x89\x2f\x2c\x01\x66\x22\x27\xb3\x45\x00\xa1\xb2\x2b\x47\xd4\x1b\xa6\x63\x51\xcd\xf7\xde\x0d\xe9\x50\xa5\xab\x85\xed\xa8\x3f\x96\xd9\x51\xac\x0f\x40\x50\xee\x41\x18\xc2\xf8\xed\xf9\xbb\x13\xd0\x01\x95\x8a\x1d\x12\xab\xef\xcd\xe7\x30\xf4\xfb\x48\x35\x54\x97\xe1\xa1\x23\x02\x12\x8f\x6c\xa6\x74\x1c\xb9\x27\xd9\x8f\x69\x45\x30\x43\xc9\x5d\x14\x10\x14\xde\x8a\xcd\xb2\x0c\x8c\x73\x09\xe7\x6d\xcf\xa4\x89\xca\x5b\x17\x9c\xad\xe2\x0f\xe2\x87\x06\xf2\x39\x89\x4a\xcd\x11\x0d\x4d\xe2\xcf\x16\xd7\x09\x3e\xa6\xfd\x39\x48\xa7\x78\x0a\x70\xca\xa4\x79\x50\x07\x78\x6e\xab\x68\x73\x96\x77\x4b\x2c\x12\xfb\x31\x4b\x60\x61\xb9\xb0\xdb\x67\x58\x5d\x76\x7d\x1f\x0a\x07\x6d\xae\x3e\x6b\xd3\x9e\x76\x37\xc9\xed\x29\x0e\xb7\xcd\xd0\xe9\x95\x4c\xe6\x01\x9a\x97\x64\x07\xeb\x9e\x25\xb6\xc5\x34\x61\x1d\xa8\x4a\x2b\x51\x2d\x67\x95\xe5\x34\x97\x5c\x6d\x33\xc2\x9d\x7a\x45\xef\xe9\xb7\x59\x81\x39\x39\xd2\x2a\xbc\x5a\x64\x19\x06\xee\x3d\x9c\xd8\x33\x97\x81\x66\x58\xfa\x24\x3b\x0d\xcb\x8e\xb8\xfc\x19\xce\x39\x55\xfb\x0d\x2a\xcb\x2b\x3b\x60\x6e\x10\x64\x6c\x85\xad\x78\xe2\x19\x98\x61\x13\x00\xf0\x5a\xa9\x57\xf1\x63\x6f\x32\xf1\xae\x67\x86\x88\x38\xe2\xc8\x90\x47\xa4\x08\x6c\x1a\xc3\xb1\x8a\x48\xa2\xc7\x8b\x27\xe4\x1e\x69\x88\x1f\x35\xae\x98\xab\x79\xbe\x8f\x33\x2f\xa2\xfd\x03\x0c\x61\x5c\xad\x8c\x66\xc1\xe8\x53\x45\xdc\xbf\xe0\x04\x8a\xb6\xdd\x9b\xe5\x38\x51\x19\x56\x5a\x8b\x80\xc2\x33\xdb\x30\x29\x94\xc8\x76\xe3\x41\xa3\x41\xeb\x3c\x59\x57\xf4\x0d\xd5\x28\x0a\x53\x2f\x08\x13\xd3\xae\xca\xdd\xe3\x62\x5a\xa8\x18\x6f\xcc\x9c\xa0\xad\x29\xd1\xf9\x33\x46\xd0\xbe\xd2\x4c\x89\xc8\x52\xa3\x4e\x86\x10\xde\xbe\xa7\x9b\x0d\x71\x3b\xc3\x97\xf4\x21\x3d\x49\x1a\x22\x3b\xda\x8b\x27\x0b\x79\x8f\x37\x34\x18\xd3\x0c\xe4\xc5\x30\x20\x2f\x9f\x76\xb2\x86\x17\xc3\xc0\xf8\x38\x15\x0d\xee\x23\xb3\x8a\x92\xda\x20\x05\xef\x25\xeb\xcd\x68\xde\x53\x84\x2e\x0b\x9f\xc0\xa2\x91\xad\x3d\x38\x8e\x62\x58\xe5\x84\x06\x57\x75\x86\xd4\x38\x06\xb4\x31\x49\x3b\x4a\x8c\x2e\xb9\x7a\xc1\x01\xd1\x96\x43\x69\x84\xc8\x54\x26\xf6\x00\x25\xad\x0e\xf8\x02\x24\xfc\x6a\xbc\x2d\xcb\x5a\x1b\x8c\x37\x63\x9a\xa7\xac\x05\x52\x85\xa6\xe6\x52\x30\xe5\x83\x0d\x1d\xdf\x05\x3c\x37\x3f\x29\xa6\x5c\x38\x08\x68\xd9\x9d\x83\x47\xce\xc8\xf0\x0e\x2c\x8a\x41\x14\xce\xee\x01\x9d\x93\xc0\x03\x49\x10\x4e\x66\x30\xab\x62\xbf\x9a\x18\x2f\x66\xb3\x73\x72\xda\x26\xd0\x67\x3c\x74\xc3\x7b\x32\x89\xa1\xe6\x15\x19\x6f\x42\x83\xc9\x34\x45\x70\xe9\x39\x14\x41\x22\xd8\x06\xfc\x37\xb6\x71\xd2\x37\x8f\x1c\x06\x22\x09\xc3\x31\x2e\x3e\xac\x46\x55\xc0\x69\x7c\x1a\x5f\xdc\x4a\x19\x05\x47\x41\x68\x3c\xb9\x17\x7d\xec\x1e\xf2\x58\x63\xe6\x68\x76\x92\xaf\x31\xc1\xc0\xc9\x19\x1c\x3b\x19\xd9\xd4\xa4\xdc\x70\x6e\x49\x61\x14\x64\x64\x86\xb2\x14\x1f\x65\x2c\x9c\xaf\x25\xd8\x28\xd2\x5a\xbe\xb7\x6a\x4f\x0b\xf7\x53\x81\xc1\xc5\x20\x47\x72\xa9\x69\xa7\x8f\xa2\x05\x5c\x21\x9a\x78\x6d\x2d\x04\xbf\x08\xdb\x6d\xc2\xac\x5f\xa4\xb5\x4c\x71\x91\x5c\x19\xb3\xa0\x48\xe7\x2d\x3a\xe8\x80\x76\xb3\x99\x45\x4e\x8a\x1e\x25\x02\x24\xb3\xe3\x5e\x06\xd9\xe2\xb5\xb7\xf7\x17\xf3\xda\xd3\x32\x85\x80\x8e\x09\x7b\xb5\x4d\xeb\x67\xef\xc1\x59\x2a\x6e\xd0\x8a\x24\xcb\xeb\x59\xea\xa5\x30\xf3\x32\xf8\xf2\x70\xf0\x4c\xff\x70\x61\x4c\x57\xd2\x1b\x9c\x5c\xa9\x81\xb6\x09\xb2\xed\x33\x03\x54\x31\xa8\x1a\xd7\x70\x36\xab\xd6\x0e\x40\x09\x2c\x27\x47\x65\x91\xcc\x82\x10\x1e\x41\xe8\x97\x44\xf4\xd3\xf9\x15\x7f\x99\xa4\x10\x59\xc5\x41\x1f\x1d\x7d\x33\xd0\xfd\xd3\xb2\xec\x19\x79\x71\x1c\x78\x13\x78\x8a\x8b\x4b\x32\xa9\x77\x56\x7a\xc8\xbd\xd1\xa7\x64\xee\x8d\x60\x49\x4c\x6f\xcf\xcb\x62\x4a\xbd\xeb\x92\x38\xce\x3e\x94\xc5\x91\x4c\x83\x71\xfa\x61\x91\x96\x45\x74\xbc\x14\xa2\xe3\xb2\xc3\x33\x38\xeb\x17\x45\x44\xbe\xe0\x74\x0a\x08\x6c\xf5\x23\xfe\x1b\xff\x8e\xc0\x74\x3f\x0e\x0e\x09\x6e\xbc\x0f\xc7\xc8\x7c\x83\xb2\x30\x7c\xb9\xa8\x5c\x54\xcc\x54\xb0\x38\x79\x66\x6f\x64\x39\x19\x70\x88\xbe\xb0\xb1\x11\x13\xac\x20\x83\xfe\x23\xcd\x26\x42\x97\x6f\x17\xf1\xfd\xb3\xe3\xe1\xc7\xee\x69\xf7\x5d\xed\xe0\x99\x8d\xc0\xab\x3f\x93\xc0\x0f\x67\x7d\x07\x69\x1f\xff\x4c\xd2\x0e\xfb\x67\x0e\xd2\x86\x05\x49\x73\x61\x38\xfe\xfe\xfd\x87\xd3\x81\x03\xc9\xff\xfc\x11\x48\x46\x65\x99\xcc\xdf\xca\xb2\x41\x1c\x94\x85\x28\x64\xe7\x10\x92\x39\xf9\xf0\x8e\x25\x41\x72\x75\xf0\xfd\x87\xd3\x77\xdd\x13\x07\x39\x87\x65\xc9\x79\x3a\xd4\xef\xca\xf3\xf6\x33\x8c\x13\x78\xfc\x64\x14\xfc\xa3\x2c\x05\x09\x4c\x27\x27\xf0\x33\x9c\x55\x9b\xb5\x03\xfd\x53\x99\xa7\x85\x0b\x11\x2e\x56\xfc\x14\xcc\xdf\xa3\x3d\xda\xd4\x8b\x1d\xf2\x65\x5e\xfb\xbb\xef\x4d\x1d\x2d\xa8\xe4\x19\x35\x4c\xc7\x8f\x92\x00\x6b\x0a\x83\x92\x37\x7d\xba\xa8\xbc\x31\xb2\xd9\x88\xfd\x23\xce\xb9\x53\xad\xbc\xa9\x10\x7c\x66\x80\xaf\xcb\x03\x7c\xed\x04\xf8\xbc\x3c\xc0\xe7\x4e\x80\xcd\x12\x00\x51\x6b\x5a\xa1\x31\x61\x7f\xd7\xc0\x4b\xd0\x6a\xba\x50\xb4\x9e\x06\x05\x4e\xe3\xe7\x40\xd3\x7e\x32\x34\x6d\x17\x9a\x8d\x27\x43\xb3\xe1\x42\xb3\xf9\x64\x68\x36\x5d\x68\xb6\x9e\x0c\xcd\x96\x0b\xcd\xf6\x93\xa1\xd9\x76\xa1\xd9\x79\x32\x34\x3b\x2e\x34\xbb\x4f\x86\x66\xd7\x85\x66\xef\xc9\xd0\xec\xb9\xd0\x7c\x57\x02\x4d\x94\xa4\x58\xa7\x7c\xe7\xd4\x29\x2b\x4b\x40\x5c\x71\x42\x04\x4b\x40\x04\x4e\x88\x97\x95\x25\x40\x5e\x56\x9c\x30\x0f\x0a\x82\x1c\xa3\x75\x38\xf8\x27\xa4\xa3\x64\x87\xf8\xc7\xac\x91\xe6\xe5\x51\xee\xda\x7f\x29\x5d\xe3\xb7\x9e\xc4\x56\xaf\x03\x9e\x6c\x58\xdd\xf6\x91\x4b\x0f\x6c\x65\xb0\xbc\x65\xac\xc3\x32\x8a\xee\xd2\x28\x48\xf6\xbd\x1f\xe7\x6e\xf8\xbd\x47\xc2\x3f\x8c\x6e\x43\x37\x86\xfe\x23\x31\x1c\x45\xf1\xad\x17\xfb\x6e\x24\xaa\x1d\x5c\x16\x49\xcf\x1b\x7d\xca\xc7\xa2\x1a\xff\x65\xb1\xbc\x27\x17\xcc\xd0\x8d\xe5\xe8\x91\x58\x3e\xc6\x70\x04\xfd\x20\x9c\xe4\xa3\xfa\xfe\x91\xa8\x90\x00\x77\xaf\x93\x68\xb6\x48\x73\x30\xbd\x7d\x6c\xa7\xa2\x24\xc0\x47\xb4\x4e\x2c\xc7\x4f\x23\x6b\xe7\xde\xb5\x1b\xcf\x7f\x2f\x8d\x07\xc6\x1e\xda\x02\x1d\x06\xc9\x7c\xe6\xdd\xbb\xb1\xfc\xf0\x58\x2c\xf9\x02\x70\xf2\x48\x0d\x86\x30\xe4\x68\x30\x75\x9f\x58\x1c\x05\x79\x11\xb6\x00\x0a\xf5\x2c\xa5\x2c\x8a\x02\x7a\xf8\x6c\x69\x14\x24\x37\x68\x9e\x1e\x3e\x2f\x0c\xff\x19\x30\xbe\xfb\xf5\x0a\xe0\x97\x7e\x9f\xeb\xf9\xed\x65\x42\x24\x85\x4d\xee\x68\x9e\x99\x08\xfa\xe5\x71\xc2\x57\x80\xa5\xff\xef\x13\xe9\xec\xdc\xd9\xfa\xbf\xcb\x23\x9a\x7a\x48\xf3\x14\x53\x71\xde\xd2\x68\xde\x32\xed\x76\x0a\x67\x5e\x1a\x7c\xce\x41\x74\xbd\x34\xa2\x18\xce\xa1\x97\xf2\x05\x82\x87\x8a\xbb\xf1\xa9\xa7\x68\x25\x64\x1f\x86\xfe\x21\x7e\xaf\x21\x7b\xd1\xce\x8d\xcb\x5f\x1a\xd7\x2c\x08\x61\xe1\xb1\x82\x4b\xa3\xf9\xa9\xdc\x58\x8d\x97\x17\x8a\x9f\x8a\xad\x79\x93\xa5\x31\xa4\xde\x75\x7f\x06\xbd\x9c\xd1\x9f\x3e\x62\xf4\xc9\x3b\xf6\x4e\xf0\xb3\x47\x08\x73\x21\x04\x37\x8f\x9a\xfd\x45\xe5\x36\x7c\xc4\x12\x94\xbd\x67\xe2\xc6\x31\x2f\xb7\x46\xf0\x54\xeb\xda\x8a\x80\xb3\x89\x57\x9e\x57\xe4\x7c\xe2\x7c\xd8\xd8\x73\x06\xf2\x32\xc1\x7e\x04\xb7\x66\xf3\xca\xf1\x7b\x31\x32\xeb\x60\x4e\x76\x90\xd2\x9a\x46\x8a\x88\xb3\x3f\xa8\x18\x97\x31\x29\x43\x7d\x91\xa5\x2c\x76\x13\x64\x96\x5c\x31\xf9\xb8\x7b\x58\x92\xf2\xe0\x79\xaa\x6d\x37\xe4\x45\x69\xc8\x52\x76\x6c\x27\xf0\x62\xbb\xe8\xbc\xb1\xab\x83\x47\xed\xb3\x85\x6f\x07\xcf\x84\x2c\x21\x42\x39\x13\x01\xa1\xe8\x42\xfc\x7d\x85\xc0\x5c\x41\x74\x37\xd1\xff\x58\xc1\x81\xbb\x19\xbd\xfb\xc4\xed\xb0\x43\x24\x2f\xc9\x69\xc8\xef\x1d\x71\xd3\x36\x6e\x9a\x95\xe5\x37\xc6\xcd\x36\x58\xb3\xbc\x06\x1f\xce\xfa\xb8\xc1\x26\x6e\x80\xfe\xca\xc3\x40\xae\x29\x70\xa3\x2d\x82\x85\x96\xe4\x34\x3c\xec\x9f\xe1\x46\xdb\xb8\x11\xfa\x2b\xa7\x01\xb9\x7d\xc3\x6d\x76\x70\x1b\x5a\x80\xf3\x6c\x09\x35\x71\x96\x3a\xf1\xef\x0e\xf8\xf2\x50\xab\x89\x12\x90\x93\x23\x86\x54\xaa\x0e\x03\x21\x1b\x57\x1d\x0c\xd5\x7b\x9e\xcc\x97\x29\x90\x93\xac\x4b\x7f\xab\x7e\x4f\x0c\x0a\xaa\xc7\x7e\x57\xeb\x24\x94\x6e\x5d\x96\x99\xde\xc9\x38\x25\x38\x9a\xe2\xa9\x20\xa7\x77\xf1\x52\x4f\xf5\xf7\x45\x98\x51\x39\x7f\x2c\xf7\xb7\x3a\x18\x25\x75\x30\x9a\xd6\xc1\x88\xb8\x60\x45\xb7\x2a\x45\x73\x6a\x1b\xc8\x29\x23\x0d\xcf\x20\x24\x8b\x38\x8e\x26\x5e\x0a\x87\xd3\x60\xa2\x79\x00\x22\xbc\x86\xf4\xf6\x52\x1b\xb0\x8a\xab\x99\x5c\xf5\x6c\x2d\xe4\x88\x29\x25\x07\xc1\x81\xda\x05\xfc\x14\xaf\x5c\xa6\x7b\x0b\xe3\x58\x10\x44\xc7\x85\x5c\x53\x89\x8d\x18\x11\x27\x38\xcc\x4f\xb4\x7e\xf7\x23\x1f\x76\x59\x56\x17\xd6\xc6\x10\x0c\xd8\xbc\x3b\xdc\x6d\x36\xc1\xab\x0e\x81\xf0\xe2\x05\xf9\x17\xa7\x96\x3b\xec\x1d\x1d\x99\x7c\xce\x67\x38\x42\xd5\x8d\x8a\xdc\xcf\x18\x9d\xde\x83\xe4\xbd\xf7\xbe\x3a\x8b\x6e\xad\x0e\xed\x79\x4c\x1e\x4d\xcd\x71\x39\xa3\x28\x4c\x83\xd0\xf4\x3c\xbe\xee\x0a\x4f\x19\x56\xad\xe2\x5f\xd6\x00\x61\x44\x0d\xbc\x04\xcd\xbb\x4d\xf4\xcb\x2a\x40\x34\x92\x2f\x7d\x52\xd0\xbc\x6b\x35\x9b\xea\x2b\xbd\x74\x90\x56\x05\x8e\x14\xe1\xc6\x83\x69\x28\xfa\xd6\xa1\x38\x3a\x3a\xd2\xd3\x79\x9a\xfb\xcb\xec\x1f\x61\x0a\x5b\x9f\xf4\xd2\x27\xb6\xfd\x69\xff\xd1\x14\x04\xa1\xc1\xcb\xcb\x15\x7e\x66\x70\xec\x19\x4d\xaf\x68\x5a\x21\x5d\x67\x3d\x65\xe0\xa5\x0e\xbd\xe1\xf9\x3e\xbe\x87\x66\x1a\xe6\xb1\x0f\x9c\x03\x13\x1b\xe9\x72\x9a\xc7\x47\xc3\x2d\xb8\x8b\x91\xa6\x4b\x73\x95\x93\x7c\x5d\xb0\x07\xdf\x39\x62\xf3\xcc\xbd\x66\xc2\x34\xb2\x86\xe0\x72\x26\x54\xaa\x15\x73\xa7\xb3\x1a\xb5\xdc\x1a\x2f\x73\x6b\xac\xe6\xd6\x58\xcb\xad\xd1\x70\xd4\x00\x85\x7b\x2d\xc3\x74\xf5\x5e\xfc\x51\x1f\xb4\xca\x1e\xbe\x32\x28\x16\xd3\x4f\x4e\x7c\xa5\x4c\x95\x8b\xe3\xc5\xa8\x6a\x7d\x03\xaa\x5c\xa3\x5c\x8c\x2a\xcb\x63\xa7\x8f\xa2\xca\x25\x59\xc5\xa8\xda\xf8\x06\x54\xb9\xa4\xb9\x18\x55\xdf\x62\x04\xf3\x66\x50\x3e\x55\x4f\x37\x82\xf6\x98\x76\xe0\xb4\x64\xe9\x06\xe1\x51\xd1\xcc\x84\x1b\xeb\x39\xdc\x58\x5a\x62\x1e\x49\xbc\x6c\x85\xac\xad\x3d\x41\x57\xdf\xe7\x74\xb5\x10\x90\x0f\x4f\x01\x24\x2c\xc7\xf4\xcc\x09\x4e\xcd\xc7\xbe\x14\xf6\x68\x59\xec\x1b\x4f\x81\xfd\xeb\x9f\x8a\xfd\xe1\x4f\xe5\xfc\xbf\x96\xc5\x6e\xda\x90\x94\xc6\xbe\x53\x08\xbb\x64\x76\x0a\xc7\x5e\x39\x14\x14\xdb\x75\x3f\x8a\xfe\xdd\xf2\xf4\xcb\x87\x6b\x7f\x7e\x17\xfe\x5e\xa8\x0b\xcb\x92\xa0\x6e\xc8\x9f\x80\xe0\xb7\xe5\x24\x36\xf5\xae\xcf\x88\x37\xf6\xb7\xeb\x65\x21\xba\x3b\xe5\xe8\x9e\x45\x93\x6a\xe5\x0c\xc6\x81\x37\xc3\x29\xba\x41\x0c\x7f\x5f\xc0\x24\x85\x3e\x10\x9e\xb7\x05\x9f\xf0\x1b\xba\x0d\xdb\x33\xcb\x16\xe0\xa6\x47\x78\xf5\x5c\x7d\x39\x40\x0a\xbc\xcb\x6b\x87\xf2\x4d\x59\xfd\x7a\x19\x56\xe3\x5d\x4a\x10\x4e\x00\x4e\x22\x9b\x46\x74\xbb\xfd\x84\x1c\x56\x92\x46\x14\x80\xf2\x57\x64\xb1\x0f\xc7\xde\x62\x96\x7e\x7b\xad\xc1\xb9\x00\x49\x80\xf9\x8f\xe1\xa7\x30\xba\x0d\xc1\xe0\xac\x9f\xbd\xbb\xf0\x8f\xa4\x51\xa9\x83\x91\x1a\x9a\x5d\xa2\x4f\x8f\x3b\xa0\xa0\x96\x63\xde\x01\x85\x10\x0a\x40\x5b\x9c\x39\x8f\x00\x12\xd0\x31\xb5\xb9\x18\x4d\x1d\x89\x92\x28\x3a\x7c\xed\xb5\x9e\x9b\xe3\x0a\x33\x59\x8d\x28\xb0\x55\x2e\x9a\x67\x08\xe4\x1f\x25\xa9\x7d\x53\x42\x23\xca\x0c\x92\xc1\x38\x61\xe1\x17\x96\x4d\x42\x1d\x8c\xd4\xab\x48\x0b\xb0\x89\xed\x0d\x6d\xbd\x4d\x59\x31\x2f\x2a\x5b\x1f\xce\xfa\x4e\xb9\x42\x03\x6d\x8b\xec\x03\x5f\xbf\x02\x57\x95\xde\xe0\xc4\x25\x20\x05\x30\xd8\xdf\xfd\x07\xa5\x16\x7e\xf5\xc5\x65\xe2\x90\x84\x73\x3b\xe9\xef\xa7\xf3\x10\x35\x87\xac\xca\x47\xb6\x0a\xe0\x8b\xe6\x55\xde\xc4\xc0\xe3\xd0\x74\xeb\x37\xd3\x23\xe3\xc6\x3a\x86\x47\xc7\xd5\x1f\xd3\xb3\xd3\xec\x29\xe7\x22\x27\x66\xc0\x60\xf4\x04\xe9\x0c\xea\x57\x32\x1c\x6c\xb1\xd3\x02\xa5\x35\xb9\xc6\x3d\x47\xa0\x55\x7a\x31\xbe\x1c\x15\x0c\x72\x0f\x17\x40\xb1\x13\x0a\xd3\xfb\xea\x8f\x01\x65\x78\x96\x5d\xab\xb3\xf5\x74\xe8\x5a\x85\x44\xab\x88\x6c\xb5\x72\x84\x8b\x54\xca\xe1\x14\xa9\x54\x84\x07\xad\x1c\x26\x90\x4a\x86\xf7\xe5\xf5\x4a\x3b\x45\x2a\xed\x16\xa9\xb4\xf7\x84\x72\x90\x43\x7a\x19\x58\x5b\x39\x83\x5c\x0a\x56\x8e\x2c\x94\x82\x55\x40\x1f\x15\x17\xe4\x42\x52\xd3\x2c\x24\x36\x05\x67\x45\xa1\x69\x51\x6c\x5e\x14\x9b\x18\xc5\x66\x46\xb1\xa9\x51\x6c\x6e\x14\x9b\x1c\x79\xb3\x03\x2c\x9b\x3b\x12\xd8\x96\x64\x25\x93\x58\x4e\x1b\x73\x38\xb9\xbd\x61\x59\x1b\x6a\x29\xd3\x53\x78\x7d\x46\xb5\x37\xdc\x99\x71\x45\x00\xa3\x29\x78\xdd\x01\x95\x66\x05\x5f\x2a\x4f\xc1\xab\x0e\xa8\xec\xe5\x5a\xdb\x20\x8f\x45\xcb\xac\xc8\x12\x04\x1a\x90\x36\x9a\x8a\x7e\x04\xcd\x1a\x58\x03\x9b\xbb\x8f\x39\xf2\xe7\x09\x64\xd9\xd6\xe2\x60\x99\xce\x3e\xde\xac\x2b\xc2\x03\x77\x92\x5d\x77\x5f\x5d\xc9\x7c\x9d\x52\x95\x47\xd4\xaa\xdd\xc7\xc2\x8e\xf7\x91\xbb\x52\xe6\x4a\x96\xb7\x2f\x35\xc5\xc6\xb9\x37\xa6\x86\x58\x3a\x76\x75\xfe\x94\x57\xe5\x98\xa1\x6a\x34\x5f\xc9\x3d\x58\xff\xec\xb8\x18\xaf\x0a\x70\xa9\x04\x83\x8c\xbc\x69\x28\x7e\x67\xc6\xe9\xa1\x17\x53\x47\x49\xb5\x98\xf9\x4d\x3a\xb8\xfe\x08\x37\x0f\xdb\xc1\x4b\xff\xec\x18\x7b\x7a\xe4\x9e\xba\xb8\x76\xeb\x65\x15\xbd\x91\x23\x8e\x89\x6e\x66\x95\xa3\x41\xd1\x39\x75\xd8\x3f\xfb\x3f\xb0\x1b\xc7\x09\x3b\x53\xc0\xde\xb1\x72\x57\xc4\x8f\x6a\x14\xa8\x6b\xdb\x91\x6b\x3e\xe5\xa6\x1f\x72\xa4\x5b\xe0\x86\xbc\xa8\xdd\x5a\xf9\xee\xf7\x02\xd0\xe6\xa9\xbe\x7f\x16\xd5\x7a\xfe\x42\xc5\xb8\x53\xe0\xd8\x17\x88\x9e\xf6\xc6\x04\xb7\xf6\xde\xac\x14\xe9\x8d\xd4\xab\x4a\x73\xe5\xf7\x9c\x65\x52\xfc\x29\xe8\xca\x20\x50\x34\x2f\x4d\xd1\x76\x6b\x65\xfe\x2d\x49\x8a\x4b\x53\x54\x29\x5c\x1f\xfd\xac\xea\x2e\xb3\xf8\xb4\xfe\x3c\x9a\x63\x77\xc5\x92\xc0\x2a\x07\x4f\x83\xbe\x17\xa5\x69\x74\xb3\x14\x05\xf1\xb7\x1c\x8e\x9b\xf2\x22\x7b\xf3\x6d\xe8\x29\x74\x9b\x21\xfe\xb8\x97\xc8\xc3\xfe\x19\xf8\x98\xb2\x05\x72\x6e\x7b\xb8\xc1\xf4\x43\xc5\xee\xc9\x7b\x99\x7f\xe6\xa6\x1d\xa3\x87\x7e\xd5\xba\x92\xad\x82\xca\xc7\x0a\x58\x05\xab\x44\xbd\xad\x82\xca\x77\x31\x7e\x46\x38\x05\xab\xf6\xf5\x0f\x3f\x55\x9c\x77\x85\x56\xb0\x53\xd4\xbf\xac\x88\x92\x29\x0e\xed\x2f\xb9\x24\x3c\x72\x60\x56\xff\xe0\x81\x29\x3c\x97\xf2\xe7\x10\x31\x0d\xd8\x3c\x32\xdb\x0d\x8f\xa6\xb9\xf0\x01\x48\xd9\xc3\x8c\xe2\xd6\x2a\xf8\x16\x07\x20\xa6\x63\x0e\x69\x93\x5d\xf6\x88\x84\xf4\x82\x1c\x77\xe0\xb7\x26\xbe\xab\x88\x7f\xad\x16\xbb\x6b\xb4\xf2\xb3\xfc\xee\x58\xea\xaa\x91\x5a\x31\x43\x7a\xfb\x4f\x23\xaf\x14\x5a\xca\xe6\x27\x3c\x2e\x28\xb7\xdb\x2b\x7a\x68\xf1\xb8\xa3\x09\x12\xdf\xf5\x7f\x60\x27\xf5\x94\xd3\xda\xc0\x5c\xc7\x23\x2c\x02\x66\xd2\x86\x26\xd0\xd6\x42\xcb\x58\x78\xa5\x14\x5d\xa6\xc5\xb8\xc8\x1d\x29\x06\xf6\x23\x53\x7c\x42\x2e\x25\x6d\xb7\x67\x53\x96\xe4\x97\x7c\x1c\x7c\x6b\x2f\x20\x91\xa3\x81\x4d\x58\x78\x2b\xfa\x5b\x3e\x1e\xaa\x07\xa4\xb4\x50\xb2\x16\x75\x2b\x90\x79\x66\x1c\xd8\xd0\x4c\x4c\x68\x44\x0c\xd2\xd0\x3a\xac\x0f\x1b\x02\xe9\x28\xcd\x8a\xe5\xd1\x87\xb6\x85\x16\x4e\x2b\xaf\x05\x67\x94\x1c\x12\xd5\x09\x28\xa7\x88\x27\x90\x59\x7e\x78\x96\xfa\x9d\x47\x89\xb2\xcf\xe6\xa4\xef\x94\x2c\x73\xc6\xf7\x76\xf3\x2f\x96\xf1\xfd\x30\xba\xa1\x0f\x1b\x11\x60\x1f\xa3\x68\x66\xcf\xe6\xce\xd2\xb9\xbf\xeb\xfe\x32\x3c\x1d\x1c\x9d\x0e\xce\xde\x0e\x8f\x4e\xbb\xef\x06\xc3\xb3\x1f\x8e\x3f\x82\x0e\xd8\x22\xdf\x8f\x4e\xba\xdf\x9f\x49\xc1\xd4\xb8\x84\x8d\x03\xfe\xe3\x82\xfc\x7f\xa5\xf7\xe1\x44\x0c\x80\xc6\x7f\x1e\xe8\xd5\x7e\x7c\x7f\x38\x38\x3d\x39\x7e\x3f\x10\x22\x9e\xb3\x32\x43\x83\xde\xc9\xf1\xfb\x1f\x84\xb0\x65\xf2\xb7\xa1\xe2\xf1\xfb\x9f\x06\xa7\x67\x04\xee\x2e\x89\x21\xa6\x25\xe6\xca\xc7\x67\xc7\xbd\x13\x52\xbd\xb5\xcd\xea\xd3\x42\x1c\x76\x8c\xab\xe2\x80\x63\xf2\x1b\x0b\x35\x26\xbc\xb9\x8e\xa3\x4f\x30\xec\x45\x33\x9f\xbb\x06\xa1\xe2\x53\x18\xfa\x30\xce\x8d\x42\x66\xd5\xaa\x8e\xc0\xe3\x22\xc1\xc4\x31\x1c\xc7\x30\x99\x9e\x46\xb7\xc9\xff\xb3\x80\x0b\xa8\xdc\xce\x49\x95\x8e\x62\xef\x06\x26\x67\x9f\x82\xf9\x1c\x3f\xe7\xd6\xb4\xd4\xeb\x86\xc1\x0d\xf6\x58\xc4\x0d\x34\xc7\x27\xba\x0e\xcc\xbd\x50\x93\x38\x54\x17\xde\x5a\x84\xb1\x61\x2a\xae\x56\x10\xa0\x8a\xf2\x82\xa9\xc8\xdb\x0e\xc1\xaf\xae\xe6\x12\xfb\x47\x53\x38\xfa\x84\x7e\xef\xe1\x52\x55\x49\x41\xed\x5d\x38\xf5\x49\xef\x6f\xd2\x1b\x82\x84\x8d\xb4\xa0\xe0\x7e\x47\x23\x75\x4a\x98\xad\xae\xb9\x71\x5a\x07\x30\xf4\x75\x69\x50\x47\x9a\xa8\xe3\x2f\x00\xb7\xd9\x07\x59\xd3\x7d\xf4\x3f\xe9\xb5\x29\xc1\x98\x37\x0e\xb1\xf9\x95\x78\x9b\x34\xdc\x06\xa1\x1f\xdd\x36\xa8\x1f\xb2\xfc\xb9\x2a\x35\x3d\x89\xa2\x79\xe3\x3a\x08\x7d\x72\x2d\xa4\xf1\x9f\x6a\x6b\x03\x87\x44\x08\xd6\x25\x00\x3f\xda\xfa\x29\x98\x33\xc2\x94\x51\xbf\x8d\x83\x14\xf6\x16\xe3\x31\x8c\x85\xe7\xab\xd1\x86\xc5\x3e\x2b\x56\x57\xc1\xab\x8e\x45\x2d\xca\xfc\xe4\x88\xff\x78\xe6\x01\xe7\x93\xe4\x45\xa7\x3c\xe6\x1e\x12\x1a\xb9\x08\x86\xbe\xdc\x51\x8b\xf4\x71\x8e\x6e\xaa\x0c\xc0\x40\xf5\xed\x31\x12\x4a\x6d\x8c\xe2\xe8\x36\x01\x6b\x62\x30\x9d\xf3\x8d\x38\x06\xda\x4c\xd3\x45\xf3\xaa\xa1\xf4\x48\x45\x6c\x6a\x22\xf5\x18\x38\x5f\xd9\xb7\x70\xc1\xf8\x22\x99\x9b\x7f\x17\x01\xa5\x15\xbc\x22\xbd\xb2\xed\x56\x72\xba\x1c\x18\xbb\x0c\x8c\x3b\x08\x37\x35\x88\x4d\xaf\x55\xd5\x53\x98\x8f\x81\x81\x8f\x3a\x15\xa6\xcd\x4a\xf9\x75\xac\xd0\xfa\x44\xeb\x8a\x2a\xf5\xa0\xa0\xd2\x29\xa0\x92\xb3\xf7\xec\xe4\xc9\x82\x78\xb4\x46\xc7\xec\xb5\x59\xda\xd7\xf5\x73\x08\xfe\x32\x9e\x79\xdd\x32\x3e\x94\x07\xb2\xc4\x7d\x96\xb7\x10\x2d\xc0\xc4\x57\xee\x74\xfa\xfa\xe4\x59\x36\x2d\x6b\x80\x69\xe4\x10\x13\x6e\x03\x3f\x9d\x1a\x8e\x43\xa3\x99\xf2\x9c\xf9\x3d\xd9\x33\xc6\x06\x86\x99\x19\x65\xd6\xab\x72\xb0\xc6\xff\xc2\xd0\xff\x5f\x10\x24\x20\x8d\x22\x30\xf3\xe2\x09\x6c\x80\x77\x51\x92\x82\x59\xf0\x09\xce\xee\x81\x07\xae\x3d\x1f\xf4\xcf\x4e\xb5\xb0\x8d\xd2\xda\x88\x66\x1b\xb9\x47\xeb\x03\x92\x74\x70\x6f\x7e\x66\x3c\xc6\x79\x3c\xee\xc1\xaa\x0a\xfc\xde\x0f\x92\xf9\x81\x56\x7f\x16\x84\x86\xb5\x0b\x95\x26\x68\x37\x58\x8d\xa3\x5b\xc3\x23\x69\x77\x96\xdb\x56\xc3\x39\xd8\x3d\x36\xa1\xee\xc1\x9a\xfe\xe5\xda\x4b\x20\x58\x33\x12\x5a\x03\x2f\x5e\xe4\x49\xd4\x88\x66\xce\xf2\x52\x68\xaa\x6d\x38\x7a\x4c\xa2\xf8\x6d\xe0\xfb\x30\x34\xc9\xeb\x9d\xce\x86\x3b\x9b\x10\x02\xfb\xa9\x16\x02\xb3\xd6\x72\x35\x44\x0c\xf4\xd2\x34\xd6\xf1\xf9\x70\xdc\x4d\xd3\x58\xe7\x37\x7b\x01\xed\x28\xf6\x26\xf4\x71\x59\xe5\x51\xb4\x43\xa5\x86\xea\xa6\x82\xd7\x13\xc7\x2b\xe0\x38\x53\x34\xd9\x26\x67\x0f\xe1\x9a\x86\xf8\x76\x1a\xcc\xa0\x36\x96\xf8\x51\xc7\x18\x86\x17\xf7\x57\xfc\x77\x87\x33\x1b\x7f\x4b\xdb\x30\x75\x0d\x90\xa4\x87\x22\xd9\x8f\xa3\x9d\xa8\x63\x70\xb9\xe1\x90\xde\x61\x78\x37\x62\x38\x83\x5e\x02\x8d\x6d\x1f\xec\x6b\x35\x7d\x2f\x14\xeb\x24\xeb\x9a\x8c\x87\x93\x64\x2a\x42\xb3\xec\x22\xb8\x32\xf6\x8e\x70\x48\xa8\x64\xf2\x96\x27\x95\x86\x4c\x09\xb2\xaa\x6d\x43\x55\x6c\x83\xb3\xba\xb6\x25\xb6\x4c\xae\x1d\x9c\xf5\x07\xcf\x6d\xab\xeb\x04\xed\xa6\x3a\x1b\xec\xf0\x70\x83\xe7\x9d\x0e\x9e\x1e\x36\xa8\xa8\x22\x9e\x3e\xa8\xa2\x79\x02\xe5\x1d\xbd\xf2\x89\x90\xeb\xf4\x21\xcd\x08\xe9\x19\x7d\xfe\xbb\xfb\xfe\xa7\xe8\xcb\xfb\xf6\x13\x7c\x75\xee\x4b\x8f\xf3\xcb\x04\x3a\xee\xa2\xb4\xb9\x6d\x8f\x26\x32\x93\x22\x8d\xcf\x23\xd9\x8e\x93\xfb\x2a\xa4\x97\x1a\x09\xae\x36\xcc\xf3\xd7\x1b\xe1\xa3\xa6\xf2\x91\x64\x8c\xd2\x72\xb4\x95\x12\x29\xbd\x33\xcb\x88\x15\x28\x21\x5a\x20\xf7\xf6\xfd\x69\x44\xcc\x8e\xe3\xa9\x07\x8f\xcb\x22\x52\x3f\x6b\xda\xcb\xc3\x6e\xf4\xc2\xc3\xdc\x9e\xef\x57\x2b\xf4\x29\xa7\xb5\xcf\x81\x0f\xa3\xbc\x2b\x68\x37\x28\x36\x21\xd6\x88\xad\xe1\x02\xf6\xa8\x1b\x3b\x7c\xfe\x37\xa1\xf9\xda\xc0\x0b\xd0\xbc\x6b\x8d\xc7\x6e\xc2\xf1\xfb\xc5\xa8\x09\x61\xdc\xeb\xd7\x60\xaf\x56\xa2\xe5\xcc\x9b\x24\x0c\xdf\xeb\xd7\xa0\x95\xe3\xca\x8d\x06\x88\xb4\x79\x41\xce\x3d\x1b\xbd\x0f\x27\x87\x45\xa6\x06\x5e\xa7\xb2\xc3\xb5\xc2\x3e\x68\xce\x71\xb9\x43\x03\xb3\x76\x1d\xcd\xfc\x22\x2e\x06\xf9\x9e\x2a\xb8\x7b\x13\xf0\x0a\xec\x16\xa5\x6f\x3c\x01\xab\x1d\x90\xc3\xb5\x7c\xe4\xee\xaf\x3a\xd7\xf9\xc9\xf6\x12\x5a\xc9\xc8\xc3\x05\xda\xb5\x22\x3b\x23\x8f\x91\x65\x29\xc5\xc7\xea\x4f\x45\xe5\xf5\x2c\x08\x3f\x3d\x35\x85\xf4\x34\xbf\x08\x8d\x68\xca\xa4\xf0\x66\x0e\x3a\xe0\x7a\x52\xc0\x3f\x04\xcd\xcb\x71\x81\x8a\x78\x02\x23\xc0\x05\x16\x87\x31\xa8\xf2\x0e\xb4\xd0\x76\x0a\xfc\xff\x42\x62\xf9\x1d\xc8\x53\xc9\xc2\x14\x6f\xf8\xfe\x44\x61\xc0\x17\x0a\x13\xe2\x01\xb2\xb5\x53\x94\xfd\x58\x26\x5a\x5b\x4f\xa8\xad\x08\x01\xdb\x25\xc6\xbf\x50\xf6\xba\xc7\x0e\xff\x35\x92\xca\x82\x74\x39\xc7\x7b\x85\xce\xfd\xc9\xda\x28\x9a\x45\xf1\xda\x0a\x58\x05\xd7\x93\xc7\x8f\xfb\x13\xd3\x97\x11\x37\x5e\x9e\xb8\xa2\xde\x37\xe6\x6d\x56\xb6\x65\x74\x79\x25\x65\xe6\xe5\x6a\x07\xac\xbc\x42\xc6\x1a\xc0\x3d\xea\x5c\xd2\xae\xdc\x06\x3e\x5c\x1b\x4d\xbd\xf8\x72\xe5\xf5\x0a\x8e\xf9\x02\xab\x60\xe5\xd5\x3a\xaa\xfa\x7a\xa5\xc8\xa6\x4f\x08\xea\x52\xc2\xc5\x5e\x83\xf6\xd6\xd6\xf2\xa4\x91\xa4\x29\x4f\x40\x9c\xe5\x54\xbc\x44\x06\xcd\x17\x39\x2e\x9d\x52\x67\x2a\x2f\xbc\x9b\xf9\x41\x8e\x31\x5f\x28\xf9\xcc\xab\x72\x68\x67\xe9\x93\x60\xcd\x4b\x79\xa3\x60\x9d\x3c\x16\x6b\x21\x5f\x4f\xea\x6d\xf5\x4a\x4b\xc3\x5f\x90\xca\xf0\x3a\xc9\x1d\x93\x02\xc1\x8b\x25\xf1\xba\xbc\xef\xf2\x31\x96\x8a\x74\xd3\x4b\xe8\xf9\xa4\x9e\x2b\x5b\x4f\x71\x5c\x76\x57\xff\x14\x9b\x41\x9d\x8a\x7c\xbc\x85\x76\xe9\xcb\xef\xcc\xf3\x76\xe3\x3a\x8f\x1f\xb7\xeb\x2e\x70\xa0\x23\xa3\x74\x9c\x97\x8a\x88\x55\xaa\x8c\x5e\x0b\xf6\x9b\x1f\xcb\xad\x8f\x88\xa1\xd8\xad\x8f\x7a\x43\x97\x81\xbc\x09\x52\xb4\x6b\xc7\x77\x65\x95\x3a\xf8\x02\x28\x92\x7d\x0b\xf2\x7a\x9e\x8f\x02\xbd\x92\xb3\x5e\xcc\x51\x5c\x67\x70\x06\x47\x34\x4f\x7d\xde\x05\x9d\xf9\x94\x3c\x61\x10\x78\x87\xf3\x0e\xcb\xf3\x01\x38\xee\xd3\x1c\xe8\x2e\x9a\x57\xd6\x81\x7d\x4e\xee\x0f\xbf\x7e\x05\xcf\x0d\xd7\xb1\xf6\x9b\x7f\x1c\x8a\x47\x33\x85\x9d\x21\x10\xa7\xf8\x2e\x0a\x43\xbb\x68\x5d\x59\x6e\x7a\x0e\x8c\xed\x07\xa1\x4f\x5a\xc3\xd0\x2f\xdb\xb6\x8f\x84\xcd\x17\x28\x78\xe7\xa5\xd3\xc6\x8d\x77\x57\x55\xa9\xab\x83\x66\xcd\x05\x83\x53\x41\x20\x04\x61\x55\xa6\x4f\x0b\x09\x60\x37\x78\x8a\xf3\x8b\x85\x32\xcb\x0d\xed\xd7\xaf\x66\x32\x5e\x81\x66\xb9\xc1\x78\xdc\xad\x11\x77\xd0\xe8\x63\x57\x24\x7d\x64\x3b\x1d\x1b\xcb\xdf\xd0\x41\x6f\x5e\x81\x7d\xd5\xe7\x03\xa9\x01\x09\xa0\x3a\x5c\x1a\x58\xda\xfd\x37\x58\x16\x30\x48\xe7\x6d\xaf\x53\xad\x92\x96\xa4\xf3\x7c\x3e\x53\x1d\x6a\x19\xa6\x3a\xe7\x42\x9d\x12\x5f\x53\xb8\x74\x13\xf8\xfe\x0c\x9e\x46\xb7\x49\x3f\x5a\x90\x8b\x33\x53\x07\xd6\x6c\x5d\x96\xae\x7c\x9f\x9a\x7c\xb0\x0a\x5a\x75\xd0\xd4\x44\x15\x31\xad\xae\x92\x5e\x2b\x26\xb8\xcf\x2d\x63\x64\xba\x90\x26\x2c\xc3\xbe\xa0\xea\xe4\x7e\xec\x48\x3f\x25\xbb\xd8\x84\x6e\xd6\x39\xc5\xba\xc3\x58\x31\x8d\x5c\x60\x35\x75\x38\x81\x98\xa9\x95\x96\x9c\x18\x11\x3a\x8a\x66\x67\x64\xe9\x19\x45\xb3\x41\xe8\xd7\x01\x5e\x48\x17\xf2\x92\x8c\x06\x91\x95\x13\x86\xe3\x2b\x5d\xfc\xc4\x11\x2f\x06\xad\x03\x45\x73\x40\x8e\x55\x51\x18\x8c\x79\x15\x3f\xf8\x2c\x9e\xa9\xb0\x75\x3e\x49\xef\x67\xb0\x31\x85\xc1\x64\x8a\x5a\x73\x1c\x2f\x75\xf3\xc3\x8b\xdf\x41\x2f\x59\xc4\xbc\xfa\x2a\x58\x99\xdf\xad\xd8\x60\xa6\xd8\x13\x2f\x8e\x6e\x9f\x00\xd6\x0c\x8e\x11\x75\x8c\x85\x6e\x88\x64\xab\xec\x06\x68\x73\x43\xd1\xc0\xbc\x04\x55\x32\x5c\x60\x8d\xa3\xaf\x69\xc0\xa9\xff\x38\xc5\x61\x72\x2d\x67\x92\xa3\x3a\x97\x0b\xee\xbf\x59\x15\x2e\x39\x9a\x9f\xaa\xe2\xfb\x2b\x2e\x1a\xf8\xa4\x91\xf6\x23\xba\x0d\x61\xcc\xd6\x8a\x83\x67\x99\x94\x38\x04\x44\xf4\x44\x85\x33\xc9\x92\xae\x4c\xe1\x6c\x16\x81\xdb\x28\x9e\xf9\xd4\x52\x16\x13\x96\xf2\xc9\x03\xd9\xab\x17\xd8\xd3\x07\x69\x10\x38\x6b\x44\xe3\x71\x02\xd3\x9f\xf1\x1d\x3b\xff\x38\x95\x3e\xbe\xc5\x32\xc0\x51\x93\x21\x1a\x47\x61\xfa\x33\x93\xcb\x0a\xbe\x0b\x10\x80\xb7\x5d\xc0\xdb\x36\xe0\xd9\xba\x2d\x18\x61\x9c\x6a\x3a\x54\xb7\x2d\xac\x2f\x6f\xdb\x68\x61\x9f\x92\x3f\xa6\xed\x83\x67\x0f\x16\xc7\x7f\xae\x14\x2c\xae\xff\xad\xa7\x74\xfd\x47\xfd\x1b\x0e\xe1\x5d\x0a\x43\x3f\x01\x1d\x62\xb1\x66\x3e\xaa\xec\x4b\x0d\xbb\xa1\xeb\x6e\xb0\x58\x0a\x70\x95\xb3\xd4\x4b\x03\x9c\x53\x93\x46\x13\xe0\xe8\x1b\xaa\xd5\x3e\x8c\xc1\xd7\xaf\x5c\xba\xab\x5f\xc0\x70\x88\x35\xde\x70\xb8\x0f\x2e\xae\xc0\x03\x08\xc2\x24\xf5\xc2\x11\x8c\xc6\xa0\x1b\xc7\xde\x3d\x3e\xae\xce\x1e\x9a\xaa\x83\x6b\xa4\xb1\xfc\x06\x6f\x07\x3a\xe0\xfa\x00\x3c\xd4\x44\xb8\x7a\x03\xee\x9d\x31\x07\x41\x88\x8a\xf0\x81\x63\x63\xea\x25\x1f\x6e\x43\x1e\xe8\x30\xaf\xd5\x80\x7f\x31\xbf\x42\x30\x2f\xe6\x57\x07\xca\x54\xd3\xc0\x66\x3a\x40\xec\x39\xf9\x7a\xa0\x53\x33\x1c\x22\x76\x11\x86\x8e\xa2\x30\x49\xe3\xc5\x28\x8d\xf0\xee\x5a\x54\xbb\x7e\xb6\x08\x20\x42\xb8\xe3\x39\x78\xc3\x38\x4a\x26\x58\xf5\xba\x06\xf6\x41\x75\x38\x94\xeb\x67\x7f\xd5\xb1\xd7\x38\xc2\x9a\x2d\x36\x0f\x35\x64\xd9\x3d\x41\x9c\xc7\xbb\x68\x81\x5f\x01\x33\x85\x75\xec\xd1\x3a\x3d\x64\xc5\x92\xb7\xca\x0c\xb5\x76\x69\xad\xc1\x67\xb4\x7b\xbd\x09\xd2\x14\xc6\xd6\x48\x91\x16\xad\xcc\x97\xc3\x77\x91\x0f\xed\x81\x25\xed\x36\x0b\x47\x39\xed\x7e\x3f\x3c\xeb\x9f\x7e\x38\x39\x19\xbe\xeb\xfe\x32\x3c\x7f\x7b\x3a\x38\x7b\xfb\xe1\xe4\x10\x74\xc0\x56\xd3\x5c\xe7\xec\xe3\x60\x70\x48\x0f\xdd\xd5\xef\xc7\xef\xcf\x07\xa7\x3f\x75\x4f\x84\xe6\xfd\x93\x41\xf7\x74\xf8\xee\xc3\x8f\x67\x83\xe1\xe1\x87\x9f\xdf\x0f\xcf\x8f\xdf\x0d\x40\x07\x6c\x36\x4d\x15\x8e\xcf\xce\xbb\xef\xfb\xe8\x7b\x8b\x7e\xfe\xf9\xc3\xe9\xe1\xf0\x6c\xf0\xb1\x7b\xda\x3d\xff\x70\x7a\x86\x94\x12\xa8\xd6\x2e\xae\xbe\x3c\x5c\x56\x56\x2a\xa4\xce\xc9\xf1\xfb\xc1\xf0\xb0\x7b\xde\xc5\x59\x69\x87\xc7\xef\x0f\x07\xbf\x90\xb7\x3f\xe4\xaf\x3f\x1f\x1f\x9e\xbf\xe5\x9f\xdb\xe4\xf3\xfb\x0f\xef\x87\xbd\xd3\x41\xf7\x87\xe3\xf7\xdf\x0f\xcf\x3e\x76\xfb\x03\x0c\x05\x74\xc0\x59\x1a\x07\xe1\xa4\x31\x8e\xa3\x9b\x3e\x3d\x74\xad\xb6\xb6\x9b\x94\x77\xdd\x93\x93\xa1\xa1\xed\xe9\xe0\x7b\x0c\x1d\x09\xd7\x29\x9c\x0c\xee\xe6\x55\x0b\x86\x3a\xa8\x4c\x2a\xa6\x81\x93\x22\x79\xa4\x2f\x6c\x56\x49\x85\x17\xf2\x5f\x39\x8f\x23\x3a\x9b\x22\x66\x0b\xc1\x41\xf8\xcf\x02\xcd\x94\x38\x21\x1a\x22\xf4\x50\x93\x89\xc7\xba\x51\x2e\x11\x5f\x05\xcc\xbe\x78\xa1\x37\x51\x23\x73\x86\xc9\x62\x9e\xa5\x72\xe2\x0a\xb7\xaa\xb6\xaa\x03\x5a\x93\x90\xcd\x01\xa8\xf5\xb2\x80\x9e\x3a\x18\x5e\xe3\xe8\x83\x3a\x18\x8a\x67\x2c\x75\x30\x14\xec\x12\xd5\xab\x78\x88\x17\x80\x0e\xc5\xd6\x18\x79\xb3\x19\x09\x00\x40\xbd\x44\xbf\x64\x1a\x6e\x58\x24\x4c\x88\x56\x22\x94\xa0\x2a\xe4\x37\xad\x82\x48\x21\xaa\x26\xfe\xad\x55\x16\xe8\x47\x75\x85\x3f\xb5\xaa\x41\x18\xa4\x27\x41\x92\xc2\x10\xc6\x89\xb8\xbd\x25\xdf\x61\xe8\x5d\xcf\xa0\x5e\x3e\xbc\x41\x8a\x86\x8a\xbb\xaa\x7d\x1a\x72\x41\xd5\xf4\x48\x17\x05\x33\xf3\x92\x14\xeb\xcc\xc3\xe8\x36\x3c\x0f\xb0\xbb\x78\x53\xab\xe5\x8d\xd2\xe0\x33\x54\x45\x48\xfa\x5b\x8b\xd6\xa5\xab\xd3\x30\x1b\x93\x07\x45\xa0\x89\x40\x88\x7b\x0b\x89\x19\xce\xb8\x16\x26\x06\xf2\x88\x8b\x63\x79\x1e\x07\x37\x0c\x96\x04\xca\xbb\xa1\x9b\x10\x89\xc4\xc6\x30\x0a\x51\x13\xf6\x99\xaf\xb2\x19\xdc\x1b\xc4\xa7\x77\xd1\x67\x68\x04\x0b\x3f\x43\x33\xd4\x77\xac\x19\xad\x62\x83\x8c\x46\x60\x09\xc8\xf8\x8d\x79\x37\xe4\x1f\xe7\x4b\xc0\xfd\x71\xae\x42\x7d\x50\x35\x92\x36\x80\x7e\x90\x20\x71\x75\x07\xa5\x8e\x66\xd0\x8b\x39\x90\xaa\x16\x15\x4b\x86\x0f\x59\xb3\xd5\x4a\x1a\x07\x37\x3c\xb1\x85\x3e\xae\x5a\x5b\x71\x56\x52\xa3\x17\xaf\xe3\xac\x41\xb5\x82\x19\xe2\x47\xb7\x21\x07\xab\x31\xbf\x56\xb4\xbb\x64\x72\xe6\x84\xe0\xb2\xee\x84\x8f\xec\x8d\xe7\xfb\xdf\xb0\x2b\x09\x4c\x7b\x4c\x05\x66\xbd\x21\x34\xda\xfa\x84\xcc\x3a\x45\x59\x3a\x06\x98\xd2\x60\xb6\xf1\xec\x94\xd5\xc1\xca\xd4\x4b\xf8\x77\x64\xf8\x71\x6c\x13\x98\xee\x5b\x78\x0f\xc4\x03\x42\xbe\xf1\xc5\x4a\x93\xc4\x78\x73\x88\x67\x7a\x78\x10\x3d\x16\x72\x36\x1b\xa8\xd1\x3c\xf9\x27\xd3\x82\x56\x34\x24\xb6\x79\x30\x1c\x9c\x66\xc7\x94\x68\x53\x46\x0f\x9d\xbe\x7e\xcd\x8e\xac\x59\xb1\xe8\x7c\xfd\x50\xcf\x36\x00\xe1\xe2\x06\xc6\x48\x48\x89\x99\x9c\x7d\x19\x45\xe1\x38\x98\x2c\x84\x6f\x64\x90\x6a\x4b\x8f\x12\x3f\x68\x3a\x87\x77\xe9\xbf\xc9\x30\xa9\xf7\x64\x7a\x9c\x44\x42\x8f\x1c\x07\xec\xd4\x98\x0f\x4d\x87\x0f\x8d\x78\x5e\xa8\x5f\x82\xe1\xa0\x18\x98\x2c\x66\xa9\x21\x73\x30\xf9\x20\x65\x16\x88\xbd\x30\x99\x79\x2c\x72\xf3\x24\x08\xe1\x79\x44\x0c\xe6\xaa\xa4\x70\x26\x30\xad\x32\x62\x6a\x75\x32\xfc\x5c\x9e\xea\x0a\xe1\x6a\xf8\xa4\x14\x36\xc0\xbb\xb4\x4a\xa3\xfd\x84\x5b\x8f\x96\x33\x8e\xe0\x9a\xd3\xc8\x07\x49\xa0\x2e\x30\xdc\x1a\xb2\x90\x1f\x24\x44\xd9\x79\x95\xa3\xcf\x19\x0a\xd2\x47\xcb\xfb\xbf\x59\xb5\x46\x90\xfc\x1c\xe3\x23\x55\xdb\x1d\x2b\x61\xfa\x05\xe5\x3d\x0d\xe4\x5c\x43\xa6\xf9\x6a\x87\x13\xf7\x48\x07\x0d\x71\x60\x19\x48\x03\xe9\xb6\xf0\x40\xd6\x2d\x83\x22\x58\x6e\x2c\x68\xdb\x6f\x30\x20\xec\xc8\x5a\xbe\xd1\x13\x3b\xf1\x6f\x38\x36\xd8\x27\x39\x8a\x6f\xbc\x34\x85\xfe\x29\x9b\xdd\x14\xf0\x8d\x37\x17\x36\x58\x08\x83\x43\x05\xa1\xcf\x8d\x18\xce\x67\xde\x08\x56\x5d\x5b\xdf\x3a\x76\x1e\x51\xf4\x55\xad\xf1\x5b\x14\x84\x55\x7a\xe2\xd1\x08\x92\x77\x67\x3f\xe3\x08\xeb\x04\xbc\x01\x95\xcb\xf8\x32\xac\x80\x7d\x50\xb9\xd4\xfc\x0f\xd9\x3a\x25\xf7\xe1\x69\x17\x19\x87\x39\x22\x9b\x10\x39\x16\x16\xd1\xfb\x79\x66\x25\xb1\x06\xdf\xa9\x16\x52\xa2\xd5\x64\x91\xb1\x85\x6d\x27\xd7\x74\x90\x48\x9f\xd1\x49\x11\xdc\x9c\x06\x93\x69\x6a\xb8\xb8\x53\x6e\x46\xb2\xeb\x4d\xe9\x66\x44\xb8\xf5\x6c\x1e\x28\x97\xe3\xec\xfa\x52\x6a\xc0\xef\x34\xf1\xf2\xa3\xdc\xa5\x20\xaa\x38\xb1\xe2\x8a\xc7\xe3\x57\xbb\xfe\x6f\x8b\x24\xa5\xf7\x6b\xc2\x32\xd7\x8f\x66\x8e\xda\x7c\x49\x24\xd8\x85\x93\x47\x43\x4c\x1a\x16\x73\x47\xb4\x38\x89\x24\xc3\xf9\x6e\x68\x14\x99\x2c\xaf\x42\x27\xb0\x6b\x92\x17\x5f\x98\x0e\xa7\xae\x74\x63\x40\xa9\x2b\x1c\x55\x91\x35\x5c\xbb\xd3\xd6\x06\xe7\x75\x07\x04\x36\x7d\x65\xe4\x9f\xe9\x4d\x54\xb3\x27\x24\x1d\xb8\xc2\x18\x08\xcf\xf3\xe1\xdb\xc2\x95\xb1\xf1\xc4\x07\xce\x34\x9c\x5f\xbf\x4a\x63\x25\xc9\x1e\x97\x6c\x63\xe0\x2f\xfa\xf0\xf3\x34\x48\x61\x32\xf7\x46\xf0\x38\xf4\xe1\x1d\x1d\x4d\x7a\xde\x97\x40\x2f\x1e\x4d\xab\xeb\x97\xc9\xea\x77\xeb\x35\x7d\xa4\x8c\x10\x9e\x5b\x23\x6c\xe4\xbe\x70\x0f\x09\xa1\xb8\x6e\x24\x2a\xd7\x95\x4b\x04\xfc\xaa\x63\x1e\xe2\xa5\x8c\x4a\x2d\x43\x99\xc8\x9c\xc5\x75\x42\x16\x58\x23\xbe\xba\xd8\xdd\xc2\x9a\xcb\x14\xd0\x1f\x24\xef\xe1\x2d\x6f\x53\xec\xdc\xe5\x0f\x4c\xa0\x22\x2d\x04\xca\xc9\x45\xa6\xb9\xa5\xf4\x2e\xb2\x82\xcc\xd6\xc2\x93\x20\x5c\xe0\x74\x8d\xf6\x2e\xb3\x6e\x4b\x9b\x1b\x66\x06\x49\x85\xba\xb8\x4a\x9f\x1d\xb1\xc6\xe4\x9c\x0f\x3b\x8d\x85\xf0\x96\xb7\x62\x9b\x7a\x09\x4c\x4e\xd6\x81\x02\x6b\x95\x69\xc8\xad\xc9\x74\x8a\x64\x92\xd0\xdd\xdd\xa8\x37\x5b\xce\x5e\x8e\xfa\xb9\x39\xb7\x6e\xaa\x07\x9c\xf3\x00\x03\x7d\xea\xce\x66\x85\x8c\x85\x80\x9e\x28\x74\x67\xb3\x2e\x3e\xdb\xd4\x1e\xf6\x5c\xd2\x14\x20\x87\x88\xe6\xf3\x46\x69\x22\x85\x10\xfa\x49\x96\xe3\x48\x24\x4e\x39\x88\x94\xa4\x57\x6c\x66\x9c\x55\x0a\xc9\xa5\x64\x63\x02\xc9\x59\x30\x31\x63\xfa\x51\x14\xfb\x89\xf1\xc4\x50\xea\xc9\x88\xd5\xc3\x6d\xd1\x6e\x82\xb4\x24\xb5\xeb\x86\xb3\x2c\x56\x26\x9c\x8b\x5b\xdc\x7f\x0c\xee\x67\xda\x36\x8f\xe0\xbf\x68\x5e\x89\xcb\x1e\x2d\x6c\x99\x0b\x91\x8d\xe0\xf6\xd7\xa3\x8a\x85\xb4\x28\x3c\xfa\x8c\x81\xf8\xa0\x8e\xbe\x43\x7a\x43\x7d\x58\x72\xb8\x48\x2e\xef\x75\x2e\x9e\xc2\x99\x87\x04\xf4\x3c\x62\x9e\x0b\x56\xb6\xd6\xa4\x63\x20\x12\xe3\x45\x7a\xf7\x96\xf9\x15\x98\xdc\xf9\x5e\xea\xa3\x41\xbd\x54\x64\xd1\xa3\x14\xbe\xee\x90\x24\x51\xf4\xcf\x57\x1d\x05\x8b\xd9\x05\x50\xbc\x54\x78\x30\x82\xcd\x01\x43\xab\xad\xa9\xe8\x4c\x60\x33\x5e\xb2\x45\x9f\x7b\x58\x92\x4f\x75\xb0\x66\xbd\x81\xad\xd5\xed\xb7\xb3\x82\xd4\x51\x1c\xeb\x1d\x7b\x6d\x4d\x9a\x58\x5f\xd7\x09\x61\xde\x75\x42\x4b\x6a\x35\xb0\x4a\xca\xe2\x68\x11\xfa\xac\xde\x4b\x50\x35\x5f\x02\xaf\x81\x56\xad\x8c\x4e\xe2\xbb\x1e\xb7\x1c\x62\x8b\x13\x15\x36\xae\x17\x69\x1a\x85\xd8\xb8\x2a\xe1\xd3\x49\xda\xce\x63\xfc\xef\x21\x89\x7c\xd0\x37\x62\x7e\xec\x4d\x94\xb9\xa1\x65\xda\x4b\xe8\x44\xea\xcf\x82\xd1\x27\xec\xa1\xc5\x2e\x23\x0c\xc4\x26\xd3\x60\x9c\xfe\x00\xef\xcd\x56\x46\x14\x9e\xa1\xef\x18\x92\x06\xc4\x99\x4d\x2b\x4b\x16\x33\xe2\x64\xe0\x2d\x81\xd1\xdc\xe4\xd8\x82\x70\x32\x83\x66\x74\xc0\x9c\xa4\xc5\x8a\xc8\x18\xfb\xc4\x10\x1d\x46\x8b\xeb\xa7\x42\xb4\xe1\x42\x74\x1e\x07\xf3\x62\x88\x54\x2f\x44\xcf\xf7\x4b\x6c\xb8\x05\xbd\x5e\x40\xaa\x8d\xb0\x97\xbe\x33\x94\xae\x5a\x24\x77\x32\xdb\xc5\xcb\x4d\xf4\x19\xca\x17\x2f\xe2\xd5\xa0\xfb\x2e\xa7\x10\x82\xc5\x5c\x06\x9f\xdd\xe2\x39\xa6\xd4\x71\x98\xc2\xf8\xb3\x37\x3b\x0f\x6e\xf0\x05\x4d\x02\x53\x56\xe4\x34\x9d\x33\x08\xd8\x7a\xae\x1b\xbd\x4b\x8a\x0f\x8e\xed\xb0\x25\xcf\xec\xb4\x33\xc9\x7e\x99\xf7\x74\x03\x61\xc7\x51\x68\x2c\xf0\x09\x14\xe7\xb6\x73\x64\x4a\x8c\x60\x66\x72\x17\x52\xf5\x99\xb2\xcb\xd7\xf5\xa2\xd1\x99\x48\xc6\xb9\x59\x95\x2a\x35\x07\xc2\xdd\x8b\xc9\x74\xb4\x68\xdb\x62\xdd\xc8\xb4\xa8\xbb\x1f\xf6\x3e\x9c\xd0\xcc\xf6\xfa\xea\x62\xdf\x03\x28\xf7\x72\xcb\x7b\x3f\xd8\xc9\x2a\xc7\xb2\x27\x1b\x26\xf3\xc5\x13\x3d\x52\xd3\xae\x03\xec\x28\x2f\x5a\x57\xb5\x0b\xc7\xe7\xe6\xd5\x53\x9d\xb1\x39\x91\xa8\x19\xe5\x97\xd8\x09\x4b\x2b\x68\x89\x6d\x4e\xc9\xd1\x23\xed\xcc\x23\x55\x44\xb2\x7e\xfe\x70\x7a\x78\x60\x68\x4b\x58\xf2\x73\x14\xfb\xdd\x94\x21\x59\x6a\xaa\x09\xcb\xfb\x5f\x97\x0b\x48\x78\xec\x5c\x38\x09\x42\xc8\xb9\x20\xdf\x63\x15\x66\x84\x6e\x72\x16\xe0\x06\x89\x71\xa4\x7e\x53\x55\x9c\x0d\xd9\x4b\x61\xb5\x56\x43\xb3\x08\x15\x57\x55\x3e\x08\x2d\x58\xcc\x98\xee\x83\xf5\xda\xe2\xbd\x49\x5d\xdc\x1a\x43\x3f\x20\xfe\xc8\x47\x71\x74\x73\xc2\x9a\x7f\xa4\xc9\xde\x19\xad\xaf\x8d\x2e\x9e\xe6\x31\x10\xed\x41\xf3\x5e\xcd\xee\x2f\x26\xf4\x49\x55\x80\x33\x95\x36\xd0\x01\x17\x74\x9b\xe0\x4d\xe0\x2f\x75\x90\xfd\xf1\xab\x96\xcf\x34\x23\x4a\xc9\x5f\xef\x1a\x47\x27\x6b\xf2\x87\x94\x5f\xc5\xf3\x2d\x23\xdf\xab\x59\xba\x74\xd1\xbc\x02\x6b\x42\x3f\x7e\xa9\xd5\x41\x6e\x9b\x96\xdc\xe6\x57\xf1\x02\x9e\x5a\x66\xb1\x70\xe5\x56\x7c\x97\x87\x6c\x9f\xfc\x5e\xa2\x3d\x5a\x10\x2d\x92\x33\xd3\x5a\x6e\x58\x3f\xde\x00\xb3\xce\x1f\xe0\x7b\xdd\xba\xb5\xe1\x45\xeb\x4a\xf7\x7a\x78\x1a\x63\x22\x5b\x19\x8d\xfa\xa3\x63\xd2\x20\xaa\xec\x5b\x57\x57\x42\x3a\xcf\x6b\x6c\x5b\x08\x8b\xae\x5a\x84\x4d\x7a\xbe\x92\x42\x09\x3b\xdd\x10\x0d\xc7\x66\xf9\xbb\x33\x65\x33\x58\x8c\x81\x68\x21\x32\x2b\x0f\x42\xd5\x79\x44\x17\x23\x1b\xc1\x8e\x70\x35\xc3\x99\x80\x2c\x0a\xda\x89\x9a\x43\x1e\x34\x60\xaf\x75\x03\xa3\x34\x53\x9d\x59\xb8\x1d\xb8\x0d\x41\xb1\x85\x45\xe4\x21\xdf\x0c\x54\x04\xf5\x5a\x4c\xe7\xee\xb8\x43\x2d\x66\xf0\x11\xe0\x16\x73\x8f\x10\x6c\x31\xf6\xc8\xb3\x57\x5e\x7c\xd1\x2e\x6b\xe0\x11\xb0\x79\xe6\x1d\xc3\xf5\xdc\xa8\xc8\x84\x98\x1b\xf4\x63\xaa\xc3\x7c\xea\x5c\x63\x51\x04\x4c\x2b\x07\x8c\xae\x24\x6c\x47\x1e\xa0\x8c\xb1\x92\x89\x99\x75\x47\x6d\x97\xc9\xbc\x18\x7e\x5c\xf5\x30\x48\xe6\x96\xf6\x75\xb2\x4d\x32\xdc\xd0\x16\x9f\x7f\xae\xf1\x47\x36\x82\x65\x06\x6a\x37\x02\xf8\xd8\x5e\x4f\x26\x1d\x47\xb7\xc9\xd5\x13\xea\x5a\x44\x92\x1e\xa2\x8c\x91\x3b\xd1\x3c\xfa\x4a\x86\x3b\x63\x17\xd9\x05\xe7\xb9\xb8\x14\xc0\x37\x8a\xc2\xcf\x30\x4e\x7f\x62\xb1\xc7\xd1\xec\x3c\xea\x4f\xbd\xd8\x1b\xa5\x30\x66\x77\xf6\xaa\x83\x30\x71\xf6\xd2\x4d\x7c\xa6\x70\x58\x3b\x7e\x53\x63\xf7\x05\xe1\x55\xb0\xcf\x43\x9e\x2b\x48\x86\x5e\x73\x08\x59\x7a\xdb\xc9\x09\x56\xbd\x28\x1c\xf7\xf4\xbc\x4d\x99\x9b\x22\xb2\x5a\x4a\xec\x34\xb3\xd0\xed\xb9\x67\xda\xf4\xe8\x89\xd3\x0b\x3a\xec\xa9\x13\x9b\xba\xd8\xb2\x01\xa4\x66\x79\xae\x8c\x98\xe4\x42\x06\x8a\xef\x88\x19\x58\x86\xe1\x40\x93\x9c\x0f\xec\x26\x27\x93\x8b\x35\xa1\xad\xd2\x63\x38\x4e\x7f\x0e\x7c\x48\x62\xc6\xb4\xad\x4c\xe6\x84\x62\xaf\x83\xa4\x06\xbb\xb7\x20\xe4\x5d\xea\x40\x4b\xbc\x42\xb0\xc4\x18\xf2\x33\xd1\x4c\x2a\x42\x87\xe8\x2b\x2a\x66\x38\xf8\xee\xc6\x06\x0b\xb0\x07\x2d\x72\x04\x50\xc0\xcb\x47\x47\xf2\xa1\x52\xf1\xf3\x5a\xab\x39\xd8\x59\xc5\x22\x0b\xb0\x41\x87\x2a\x39\x39\x0c\x13\x1e\xa8\x69\x36\x2c\x75\x64\xc7\xd0\x0b\x06\xf4\xaa\xf4\x7c\xd6\xa4\xc2\xf4\x18\x61\x62\xf1\xcc\xd2\x9d\x7f\x04\x9a\x48\x17\x9c\x14\x19\x2f\x70\x74\x21\x34\x91\x44\xa0\xdb\xc7\x01\xb8\x64\x8f\x3a\xe3\x04\x09\x42\x81\x14\xcd\x19\x9c\x7b\xb1\x97\x46\xb1\x45\xbc\xc9\x95\xa2\xcd\xd5\xcd\x30\x10\xd8\xe9\xb6\xf4\x60\x14\x1e\x10\xd7\xa0\xe8\x7c\x00\xce\x79\xe3\x82\xe5\x9e\x53\xab\xa0\xa5\xcf\xab\x82\xbc\x95\xa6\x5c\x11\xce\xd2\x19\xb1\x9a\xc3\x57\x6b\x3e\xc4\x62\x62\x05\xac\xa2\x65\x66\xab\x4d\x21\xd8\xe1\xd8\x7c\x0b\x59\x8c\x87\x20\x74\xab\xa2\x92\x5f\xd3\x25\x43\xd5\xef\xf4\x40\x9f\x5f\xeb\x73\x1e\xaf\xc9\x50\xf5\x95\x60\xd5\xa4\xfa\x57\x0d\x06\x25\xb2\x34\xf5\xb3\x18\xf5\x19\x31\x42\xca\x3e\x23\xa9\x70\x80\x9c\x74\x6a\x5b\x60\xe9\xbf\x8d\x62\x5f\x38\xbb\xe2\x7b\x62\xdb\xb1\xaf\xf3\xda\xe1\x42\x84\xd6\x48\x58\x72\x16\x6a\x3e\x68\xa7\x6f\xce\x3b\x15\x09\x94\xe8\x0b\x5a\x98\x07\xec\xb8\xe0\x8f\xe2\x82\xb4\xb1\x20\xdf\xbc\x38\x3b\xf4\xf8\xc9\x9b\x2d\x60\x72\x4a\x72\xad\xfb\xd5\x1a\x78\x03\x74\x76\x81\x7d\x50\x35\x94\xae\x9a\xd8\x51\xd3\x79\x5b\x80\x37\x06\xad\x22\x33\x68\xea\x49\xf1\x78\x54\x3e\x95\x60\xfd\x46\x80\x26\xc2\x87\x31\xad\xfe\x5a\x7d\x52\x34\x7f\x74\xc8\x89\xba\xe6\xbd\x5e\xec\xe6\x8d\xee\x96\x50\x83\x72\x52\x65\x3d\xcc\x92\x33\x5e\xa8\xe4\x1f\x3c\x7b\xa8\xca\xe9\x1a\x1a\xe2\x9f\x62\xfe\x19\x43\xb0\xbb\x0e\xcd\x9c\xf7\x44\x63\x9a\x25\xff\x49\xfb\x2f\xf6\xf4\xa9\x1c\x0c\x9e\xf3\xee\xa6\x35\x72\x5c\x1b\xf8\x02\xaf\x6f\x5a\x02\x41\x15\x11\xc4\x02\xb1\x5c\xe8\x87\x26\x76\x86\x83\x66\xe7\x3d\x28\xae\x51\xf4\x22\xd8\x7d\xbd\x5c\x30\xbe\x55\xee\x6d\x1d\xac\x18\x5c\x63\xcb\x44\x4f\xf2\x63\x17\xad\x17\x0e\x17\x74\x34\x3b\x55\x83\x5b\x37\x75\x9f\xeb\xfc\xfb\xfa\x15\x3c\x37\xf0\xc2\x81\xca\x50\xdb\x85\x57\x6c\x95\xa3\x9e\x75\xea\xf6\xdd\xd8\xfe\x88\xc0\xd8\x9c\xe1\x1d\x84\xfe\xb7\x1f\x5c\x83\x16\xd5\x8f\xae\xf0\xdb\x66\xc6\x73\x33\x6c\xd9\x97\x94\x8d\x3c\x29\xc8\xcb\xfd\x6a\x17\xb7\x5c\x49\xc8\xe5\x84\xe6\x3b\xc0\xba\x6d\x9a\xcf\xaa\xd3\x3d\xbb\xea\xc9\x65\x88\x15\xa2\xcd\xf2\xd7\x7a\xcb\x82\x86\xcd\x04\xd8\x03\x22\x49\x57\xf9\x75\xe5\xe3\xfb\x4c\x8e\xbf\x6b\xa6\x62\x8d\x11\x3a\x33\xec\xf3\x59\x84\xf4\xb4\xb3\xd2\xba\x98\xd8\x05\xc7\xfd\x6a\xae\xe8\xa8\x63\x53\x27\x4a\xf8\xb9\xb9\x77\x52\x1c\x7f\xeb\x8a\xbc\x20\x8a\x7e\xf9\xfa\x55\x88\xde\x15\x62\xc5\x5f\xbc\xc8\x82\xfe\x5f\xcb\x71\xb3\x9a\xf1\xa6\x74\xb6\x50\xec\x81\x45\x56\x8d\x77\x02\x9a\x10\x82\xb5\x0e\x20\x20\x9d\x97\x54\xd2\xa5\x9f\x13\x30\x15\xfb\xf2\x60\x79\x0a\x38\xfd\x26\xcc\x7c\xdf\x66\x0f\x0f\x15\xc5\x54\x0a\x01\x71\x91\x40\x0c\x0e\x8d\x08\xce\x28\x1b\x19\x7a\x4d\xcb\x8d\x9f\x9e\x28\xc2\x66\x03\x23\x29\x50\xd3\x2c\x6a\x36\x9f\x5a\x3d\xcf\xc4\xc5\xa2\x65\x31\x70\x37\xfe\x62\x06\x2e\x3b\x88\xce\x31\x6d\x59\xb5\x6a\x96\x80\x8a\x27\x7c\xe5\x89\xb8\xc9\xb5\x55\x0c\xbd\x3a\x28\x90\x84\x2a\xd5\x3d\x89\x05\xb3\xd8\x62\x15\x2b\x48\xc5\xbc\xb3\x62\x3e\xcd\x4c\x64\x38\x4d\xa0\x23\x10\xa8\xda\xda\x52\xca\x29\x63\xc6\x29\x52\x8f\x38\xeb\x9c\x46\xb7\x3c\x28\x44\xf5\x8f\x9c\x79\x49\x7a\x0a\x47\x51\xec\x43\x9f\xde\x17\xd8\x5c\x29\xc5\xaa\x8c\xbf\x56\xb8\x59\xba\xce\xb0\x5a\x21\x1d\xe1\x41\x6e\xf7\xe1\xe8\x8c\x77\xcd\xfc\xac\xb7\x0e\x23\x86\x49\xf0\x4f\x58\x1a\x86\xc2\x6e\x83\xff\xb5\x4c\x5c\x14\x12\xb0\x66\x90\x09\x71\xf4\x8a\x16\xa9\xcb\xc1\x5a\x26\x8e\xfa\x58\x37\xa5\x1d\x11\xe3\x5f\x4e\x7c\xa6\x51\x99\x1b\x32\xcc\x1a\x2e\x5d\xe9\xfb\xbb\x64\x80\xfa\x53\x2f\x9c\x40\xbe\x7c\x19\x20\xf0\x8b\x6d\x55\x66\xf4\x93\x7a\x15\xaa\xf5\xba\xd7\x20\x7e\x16\xf4\xba\x9d\x61\x1c\x3c\x9a\x30\x37\x08\x61\x1e\x40\xb0\x0a\x2a\xf3\x3b\xc3\xcb\x07\xb2\x60\x49\xfe\xe1\x8f\x84\xae\x27\x85\xf8\x2c\x4d\x12\x65\x0c\x1c\xb3\x89\x8f\x85\x64\xaa\xe7\x0f\x84\x98\xac\xbd\xd8\x08\x39\xa7\x74\x1e\x09\x39\xc3\x34\xcd\x63\xe2\x4b\x03\x86\x82\xe3\x66\x48\x74\x6d\x42\xea\x22\x2c\xf7\x26\x3f\xd3\xbe\x2a\x6c\xeb\x34\x7c\xe9\xd6\xa9\x35\xad\x77\x92\x6b\x80\x41\x27\xc8\x9a\x24\x5f\x35\x58\xb5\xb9\x2e\x52\xe4\x55\x6d\xc7\x43\x0f\x8e\x95\xc1\x0e\xc9\xe0\xb6\x6b\xf5\x88\x00\x9a\x47\x55\xe9\x39\x51\x2e\x2a\x16\xe4\x84\x7e\x95\x51\x8b\xd6\x29\x65\xc0\x0e\x5c\x17\x25\x78\x74\xcf\x71\x3e\x71\xb9\x7f\xc4\xdb\xe5\x65\x9e\x56\xe6\xd4\x6b\xc2\xce\x21\xa3\x4e\xf0\xbf\x8c\x2c\xb3\xb7\x15\x5a\x16\x17\x5b\xb6\x88\x2a\x7e\x2c\x7a\x58\xf4\xad\xf0\xa2\x05\x89\x86\xcc\x21\x67\xdd\x32\x1a\xf2\x4e\xcd\x0f\xc6\x63\x92\x2e\x93\xbc\x68\x60\x60\xac\xcd\xd4\x10\x1c\xa2\x10\x14\x29\x00\xd9\xd5\xe1\x9f\xa7\x10\xba\xfa\x4b\x22\x18\x1b\x3e\x9c\xa5\xde\xaf\xe6\x3b\x53\xf7\xfb\x19\x37\x8b\x59\x1a\xcc\x67\x01\x3e\xc6\x6e\x1d\x18\x01\x73\x67\x4e\x4c\x0d\xb6\x73\x1a\x87\x1f\xde\x0d\x0f\x07\x27\xe7\xdd\xa1\xc9\x29\x56\x82\x9a\x23\x69\x86\x59\x5b\x0c\xf1\xc7\xee\xf7\x4b\x20\x36\xae\x0f\x56\xaf\x52\xbb\xc8\xac\x76\x40\xc6\xf8\x97\x02\xe2\x0c\x16\xfc\x6c\x09\x64\x95\x1e\xe3\x31\x8e\xfb\x79\xb4\x18\x4d\xd9\x89\xb4\x6d\xf0\xb9\x72\xc3\xb5\x7f\x05\x98\xa2\x14\xfd\x0e\x93\x8b\xe6\x15\xf1\x0a\x2f\x85\xd1\xe0\xf9\xad\xce\x2e\x26\x6a\x1a\xf6\x35\x3b\xf6\x92\xc4\x32\xf9\x5b\x4e\xaa\xf3\xc7\x8d\xc0\x2d\x3b\x4e\xd4\x16\x67\xcc\x53\xb7\xcb\xc2\x0e\x32\xab\x62\xde\x22\x73\xfe\x5b\x36\xc7\x9b\x8f\xda\x1c\xe3\x59\xed\x21\x15\xfb\xe5\xd9\xdf\x56\x1a\xeb\x5e\x9a\x7a\xa3\x29\xfd\x67\x65\x1f\x6c\xd6\xf5\xe2\xc6\x6f\x89\xf6\x05\x81\xf6\x26\xb0\xf1\x5b\x12\x85\x2b\xfb\xa0\xbd\x45\xbe\x8e\x83\x14\xfd\xb7\xb2\x0f\xe4\x02\x02\x42\x28\x53\xdb\x6f\xd3\x4f\x8b\xd9\x2c\x19\xc5\x10\x86\xc2\xaf\x2b\xfb\xc0\xf5\xb9\x31\x4a\x10\xf0\xf6\x8e\xab\x0e\xc6\xaf\x43\x51\xc9\xd8\x25\x35\xe8\xf4\xf7\x23\xad\xc2\x9e\x5a\x81\xff\xb6\xb2\x0f\x76\xac\x1f\x09\xfe\x9d\x67\x0f\xc2\x5b\x14\x74\x80\x90\x35\x09\xef\xd2\x6a\x0c\x7f\x47\x23\xf4\x37\xb6\xab\x33\x64\x77\x97\x5b\x9c\xc2\x24\x9a\x7d\x86\xb8\x61\xed\xc0\x01\x5a\xac\x88\x30\x60\x6f\x48\xb4\x27\xb8\xf1\xe6\x17\x31\xfc\xfd\xea\xe0\xd9\xdf\x82\x71\xf5\x79\x35\xf0\x89\x2f\x09\x58\x5f\x27\x2f\x65\x60\xef\xc9\x70\x71\x73\x0d\x63\x10\xc5\x80\xe4\x07\x7a\xf6\xb7\xbf\xa5\xd3\x38\xba\xc5\x99\xa1\x07\x71\x1c\xc5\xd5\x95\xbe\x17\x86\x51\x0a\xc6\x41\xe8\x03\x22\x8b\xa0\xb2\x02\x56\x41\x0c\x7f\x07\xab\x60\xa5\xd2\x58\xa9\x1d\xf0\xae\x05\x3e\xa6\x56\x26\xb2\xf1\x09\xde\x4b\xd1\xbb\xf2\xe7\x1f\xe0\x7d\x52\x15\xf9\x43\x8f\x75\x50\xab\xea\x8d\x37\xaf\x99\x40\xc6\xa4\xe3\xa0\x63\x66\xc8\xc1\x33\x42\x6a\x83\xce\x1a\xad\x9e\x06\x10\x73\xad\xbd\x79\xa0\xce\xc9\xad\x02\x73\x12\x4f\x3f\x0d\xe1\x97\x95\xd0\xbb\x81\x2b\xfb\xe4\xd5\xce\x06\x9d\x87\xf5\x95\x1b\x2f\x08\x57\xf6\x57\xb2\x09\x58\x5f\x99\xc7\xc1\x67\x2f\x85\x2b\xfb\xc8\x3a\x78\x50\x49\xd8\x7e\x2a\x12\xd0\xf4\xe5\xf8\xe9\xd4\xcd\x43\xbe\x53\x14\xb9\x26\x38\xe4\xe4\x0d\xcc\xbd\x38\x81\x60\xec\x05\x33\xe8\xef\x83\xf5\x69\x74\x03\xd7\xef\x17\xbe\x17\xac\x7b\xf1\x68\x1a\x7c\x86\xeb\xf3\x38\xf2\x17\xa3\x34\x59\x6f\x37\x5b\x5b\xeb\x93\x28\x4d\xef\xd7\x93\x78\xb4\x3e\x09\xd2\xe9\xe2\xba\x31\x8a\x6e\x68\x03\xf2\xe9\xb7\x64\x3d\x8c\x7c\x38\x24\x44\x24\xeb\xb8\x6f\xeb\xb3\xe0\x7a\xdd\xf3\xfd\x28\x4c\xec\xaa\x04\xfc\x18\xc2\xbb\x39\x1c\xa5\xd0\x07\x69\xf4\x09\x86\xa0\xda\xda\x6f\xd6\x2e\xc3\x5f\xa3\x05\xb8\xf1\xee\x71\x62\x1d\xe0\x85\xc0\x9b\xcf\xe3\x68\x1e\x07\x5e\x0a\xc1\x2c\xf2\x7c\x18\x83\x34\x02\x53\x2f\xf4\x67\x10\xaf\x33\x60\x1c\xa0\xdf\xd0\x0a\x7a\x19\x7e\x05\x0d\xca\x5f\x8e\x0d\x7c\x41\xc5\xe8\x67\x4e\x3d\x3b\xf6\xc1\x38\xb8\x83\xfe\x01\x2b\x4f\xa3\xf9\x3e\x68\x1e\xa0\xc9\xa3\x70\x7c\xf7\xc9\x86\x3b\x53\xb3\xd9\xa8\x4b\x7a\x33\x6f\xf0\xf7\x9e\x8a\x94\x4c\x95\x72\x4a\x24\x05\x9a\x43\xc8\x46\xf3\x2f\x74\x6c\xcc\xd5\xd8\x3c\x86\x73\x2f\xc6\x29\x3e\x8f\xa2\xf8\x9c\xda\x95\x55\xa4\x4e\xea\x40\x48\x97\xc9\x4c\x18\xfc\x48\xa7\x5e\x2c\xd8\x18\x54\xb5\x91\x84\x9d\xeb\x97\xf1\x9b\xcb\x70\x7d\x52\x07\x95\xcb\xb8\x22\x1d\xf7\x09\xd5\x0f\x9e\x3d\x70\x53\xc4\x4c\x10\xe8\x58\x28\x15\x1f\x4f\x8a\xe6\xf7\x6f\xb1\x78\xc7\x55\xf8\xb9\x8e\x8f\x9f\xeb\x59\xe6\x32\xea\xb5\x22\x76\x04\x0f\xeb\xb5\x90\x1b\xf4\x58\xb2\xc9\x69\x1e\xb6\xd1\x2c\x98\x5f\x47\x5e\xec\x1f\x7a\xa9\xd7\x48\x60\x8a\xfe\xad\x56\x10\x21\x15\x1d\xbe\x31\x5f\x19\xe9\xb1\xb2\xcf\x86\x9f\x6d\xa0\x11\x4f\xd6\xe7\x33\x2f\x08\x4b\x22\x30\xd9\x82\x19\x6b\x05\x06\x61\xbf\x63\xfe\x97\x28\x0f\x5e\x92\x42\x95\x8b\x8c\x29\xf0\x73\x23\x49\xa3\x39\x12\x37\x6f\xe2\x89\xf7\x48\x24\xd9\xd2\x9d\xf0\xf6\x14\xda\x50\x7a\xe9\x68\xfa\x11\x01\x94\xcc\x72\x54\x4f\xda\x09\x90\x94\x72\x4e\x49\xd4\x46\x8a\xc9\x9f\x60\xa3\xa3\x2a\x53\x4a\x79\x2a\xe7\x8a\xa3\xf3\xf7\x2e\xf5\x62\xe8\x35\xf0\x64\x50\x72\x7d\xe2\x1a\x24\x95\x1b\x66\x41\xa5\x0e\x14\x18\x5c\x5e\xe3\x9b\xc6\xc8\x0b\x47\x70\x86\x36\x18\x92\xad\x5d\x40\xa6\x50\x15\x93\x5c\x69\x47\x10\x84\x29\x46\x11\x9c\x48\x22\xa8\x1c\xaa\x48\x7c\x57\xf9\xf0\x60\x97\x46\xba\x75\x2d\x42\x94\x26\xb8\x13\x83\xe0\x2e\x43\x96\xa0\x05\x04\x31\x44\xb2\x21\xfc\x29\x08\xeb\x4d\xf4\x19\xcb\x4b\x37\x86\xde\x8f\xa1\x0f\x63\x12\xc0\xbe\x88\x93\x88\x09\x2f\x19\x72\xd6\x11\x2e\x02\xe4\xf4\x72\x9e\xf9\x54\x56\xf0\xca\xc6\x1f\x3b\x93\xaa\xb1\xc7\xe3\x2a\xed\x26\x3f\xa9\x54\xaa\xf0\x73\x50\x47\x1d\xfa\xa8\x1d\xe5\x32\x0c\xd3\x5f\xc0\x1a\x68\x35\xe5\x13\x50\xa5\x0d\x79\x54\x2f\x6b\xf2\x6b\x7e\x93\x7f\xb2\xa8\x92\x4a\xab\xd9\x6c\xaa\x75\xc6\xd1\x68\xc1\xe3\xa1\x6c\x57\x37\xd2\xd4\x34\xf3\x4b\x71\x23\x33\x33\xcc\x59\x89\xb3\xcc\x59\x8b\x32\xcd\x59\x87\x30\xc9\x59\x85\x33\x45\xc8\x26\x53\x07\x9b\x92\x7a\x74\x49\x13\xda\x8d\x38\x3e\x0b\x32\x89\xdd\xac\x71\x0e\x05\x59\x8b\x12\x72\xec\xeb\x51\x71\x59\x56\x46\x94\x69\x33\xf7\x3a\xa1\x8a\x0a\xfe\x26\x2f\x0f\x1a\xe5\xa0\xa3\xf7\xc6\x76\x2c\xd0\x67\x0a\xc1\x72\x2e\xb0\xf1\x9f\x57\xf1\xfe\xf3\x2a\xde\x9f\xf6\x2a\x9e\xe4\x1c\xfd\x5b\x92\xfb\x9c\x5d\x5f\x72\x26\x28\xf0\x1a\x58\x5f\xcc\xe4\x69\x7e\x08\x4c\xa8\xc2\x5f\x9d\xad\x03\xf2\x48\xbb\xe1\x55\xfc\xe5\xde\xfa\x12\x1e\x07\xf5\xa5\xe7\x40\x85\x3a\x12\x4a\xbc\xb8\x0a\x7f\x6b\xf6\x8e\xf6\x7e\x95\x79\x38\x84\xde\x49\xee\x9f\x78\x29\x28\xe3\xf2\x29\x3a\xcc\x0d\x6f\xb3\x87\x3e\xc1\x37\x75\x60\xb5\x91\x4f\x16\xa9\xa5\xe9\x57\xaf\x55\x9f\xa2\x03\x46\x52\x1b\x37\x5c\x5a\xcb\xe6\xff\x13\x72\x57\x53\x20\x06\x69\x04\x59\xfc\x82\x54\x87\xc7\x2c\x14\x79\x65\xd6\x05\xc8\x60\x91\x79\xd7\x49\x34\x5b\xa4\xb0\x52\xb8\x35\x31\x04\x2a\xcd\xe2\x2d\xa8\x79\x51\x59\xdb\xdb\xdb\xdb\x83\x37\x45\x1a\xa2\x35\x14\x1f\xb8\xe1\xde\x57\x7e\x2e\x84\x0c\xa6\xdd\x34\x8d\x83\xeb\x45\x0a\xab\x15\x2f\x0e\xbc\xb5\x69\xe0\xfb\x10\xed\xef\x2a\x68\x84\xcd\x2c\x92\x66\xa6\xe1\xe1\x6c\x65\xbc\x64\x10\xc5\xfc\x72\x86\x7e\xc4\x94\x92\xec\x93\x03\xf2\xae\x88\xf5\xe6\xaa\x3d\xef\x92\xd7\xac\xa1\x53\x64\x27\x30\xba\x81\x69\x7c\x9f\xe5\xe6\x91\x19\x3b\x81\x69\x2f\x5a\x84\x7e\x10\x4e\xfa\xd8\x40\x3e\xa5\x66\x8d\x28\xdd\x0c\x08\xb3\x4b\x3b\x1d\xd0\x44\x1a\x94\x97\x33\x53\xb4\xdc\x5d\x4d\x96\xf0\x81\xc0\x7d\xde\xe9\x00\x05\x15\xcf\x57\x25\x5c\x9d\x2b\x58\xcd\xb3\x8c\x59\xd0\x32\x3c\x93\x8c\x70\x33\x5a\x81\x6b\xa8\x4b\xb6\xb7\xa3\xa9\x17\x27\xc1\x3f\xe1\x88\xf8\xc1\x54\x6c\xe3\x46\xc5\xa4\x2f\x7a\xd2\x29\x61\x46\x68\x25\xb5\x46\x1a\xc9\x6b\xa8\x04\xc6\x62\x42\x0a\x82\x62\x31\x22\x9f\x34\xb4\xe8\x3f\x46\xe4\x7f\x8c\xc8\xa5\x8d\xc8\x5c\x0b\x32\x88\x47\x8b\x99\x17\x9f\x04\x49\x5a\xd0\x84\x14\x5a\x58\x6d\x48\xa1\x4e\xf5\xc6\xbb\xd3\x23\x2c\x96\x33\x1b\x3d\x2c\x78\xe4\x31\x55\x2c\x84\x02\x70\xad\xb2\x94\xba\x42\x7f\x2b\x75\x66\xf0\x95\x2d\x69\x4b\x0a\xbd\x94\xac\x31\x4e\xd4\xd2\x06\x19\xee\xa8\xe6\x97\x25\x98\x65\x89\x0c\x2c\x84\xb7\xef\x4c\x6c\x06\x99\xbb\x4e\x57\xe3\x9d\xd4\x48\xd6\xc3\xa6\xa7\x7f\x78\x34\xb7\xd8\x8e\xba\xde\x52\x5f\x34\xeb\x23\x73\x0c\xff\x45\x90\xa5\xed\xc2\x7d\xa4\x41\x50\x13\x98\xf6\xef\x47\xb3\x60\x44\xd2\x92\x04\xb5\xfc\x6c\x3d\xa2\x30\x60\xd8\xa6\x55\xc7\x26\x03\xdf\xd0\x42\xb7\x09\xc5\xec\x71\x12\x51\x4a\x16\xcc\x82\x40\xde\xa5\xa0\x1f\xc1\x6b\x09\xb0\x69\xd0\x24\x21\x90\xa8\xc0\xf2\xc0\x41\x59\x47\x5d\x19\x2b\x32\xf8\x8b\x90\x70\xcc\xd7\x1d\x45\x5d\x01\x4a\xca\xa4\xcd\x90\xff\x99\x63\x3a\x8e\xe2\x01\xbe\x68\x2e\x3e\xa8\xf6\x0d\x0e\x30\xad\x67\x48\x29\x5e\x7b\xa3\x4f\x63\xed\xb9\x1b\x06\x2c\xd0\xd3\x15\x02\x35\x11\xc3\x50\x98\xa4\x7a\xd5\x6c\x9c\xf1\x72\x81\xa6\xfb\x10\xe7\xd3\x60\xa3\x3b\x6c\xd9\xc7\x37\x23\xb0\x4a\xb0\xe0\x17\x23\x87\xad\x5a\x1d\xb5\xcb\x7f\x8e\xef\x89\x37\x9d\xc6\x91\x42\x34\xc9\x6f\x27\x91\x4c\x41\xfa\x9d\x60\xae\x62\xc2\x0d\xe5\x34\x01\x16\x9c\x89\x09\x67\x9d\xac\xd8\x7a\x94\x76\x3e\x4e\xd0\x21\x6d\x8b\xe0\x9e\x2f\x94\x60\x84\xf2\x58\x25\xe5\xa0\x20\x07\xd2\xae\x82\x49\x19\x73\xb7\x35\xae\xf7\xc0\xa0\x92\xd5\x84\x24\x19\x48\x51\x6d\xe7\x82\x35\x81\xce\x4b\xe1\x29\xec\x33\xe8\x63\xcf\xad\x72\xfb\x49\xd2\x69\xb1\x07\x0f\x45\xc6\x25\x9a\x5b\xb7\x91\x45\x45\x50\xc4\xbf\xb6\x86\xf3\x01\x15\x93\xc7\xf9\x2c\x18\xc9\xbb\x58\x9a\x5a\xc4\x87\x33\x98\xc2\xbe\xe9\xf5\xa3\x20\x85\x37\x89\xf2\xde\x2d\x57\x17\x43\xa4\x7a\xda\x07\xe8\xdf\x57\xc0\x8b\x27\xf8\x60\x85\xab\x19\x30\x34\xac\x0a\x18\xde\xc5\x30\x00\x6b\xa0\x8d\x84\x8a\xb7\xba\x18\x8a\x89\xe1\xe4\xcd\xab\x85\x3e\x60\x7c\xff\x96\xac\x4d\x92\x64\xae\x89\x3d\xb4\x2e\x56\x45\x8c\x92\x42\xb6\x0b\x58\x95\x38\x5a\xc0\x92\x61\x74\x76\x24\x42\x2d\xdc\x20\x43\xf2\xe2\x05\xe1\xa5\x25\x0a\xc0\xba\x74\xd3\xa7\x80\xc1\xeb\x8c\x5d\x6b\x6b\xcb\xb1\x03\xac\xca\x24\x3c\x85\x65\x67\xb2\x3b\x45\x24\xcb\x8f\x1e\xcb\x00\x43\x46\x91\xc8\xa1\x9a\x8b\xd0\x12\x2d\xce\x58\x27\xf7\x97\x19\x50\x4e\xbd\x44\x52\xb1\x2f\xc2\xf4\x3c\xa2\x31\xbf\x2e\x90\x35\xe6\xef\xce\x61\xea\xcb\xa7\xa6\xe9\x56\x3b\x22\x06\x5b\x83\x99\x14\xff\x91\x07\x5f\xd2\x8c\x02\xf4\xfc\x97\x6b\x6c\x23\xc3\xfa\xdb\x91\x87\xd3\x02\xae\x88\x2e\x45\xd4\xe9\xce\xdb\x23\x53\x1c\xf5\x88\x66\x37\x75\x19\xbc\x23\x29\x9d\xb1\x66\x6d\x3f\xcb\xe5\xbf\xe2\x85\x2d\x4c\x6a\xd3\x67\x9d\xc3\xb5\x42\x4a\x7c\x1a\x8c\xd9\x41\x6b\x62\xd2\xe5\x23\x92\xf8\x95\x3e\x57\x65\xe4\xc3\xab\xd2\xa7\x87\x64\xee\xbc\x22\xa7\x91\xe4\x8f\xd7\x1d\x27\x37\x55\x07\xc5\x0a\x69\xc5\xd4\x3d\x88\x16\x29\x88\xc6\x20\xf6\xc2\x09\xd4\x4f\xf6\x64\xbc\xab\xfc\x09\x33\x53\xac\xb6\x82\x87\x7a\xd0\x62\x3e\x01\xc8\x18\x15\x84\x60\x16\x24\x29\xb8\x86\xf7\x51\xe8\x03\x6c\x51\x81\xa6\x1d\x31\x7f\xeb\x4c\x43\x28\x29\x28\xc2\xcf\x4c\xa3\x36\xdd\xda\x34\x61\x2f\xbd\xa3\x69\xcf\xbb\x45\x77\xd0\x13\xf1\xa3\xfa\xcc\xbb\x1e\x9f\x08\xef\xe6\x5e\xe8\x23\xe9\xe8\xa1\x3d\x30\x6f\x3a\xa2\x09\xd3\x98\x00\xac\x59\x04\x9a\xf5\x54\x82\xe3\xcc\xff\x9b\xcd\x60\xb1\x8d\xae\x40\x68\x6e\x3e\xa9\x51\x11\x55\xa9\x62\x32\x65\x07\x04\x05\xac\x48\xa9\x9e\xd5\xc4\x33\x73\xb6\x60\xf6\x4c\xd3\x2a\x35\xca\x37\x2e\x9e\x62\xfc\x8b\x68\x46\x65\xe9\x2b\xb4\xf3\xd1\x0d\xef\x55\x40\xeb\xfe\xc3\xb8\x66\x28\xa7\xef\x02\x25\x25\xb2\x7c\x29\xa7\x8f\x32\x14\xcb\xe9\xbb\xd8\x67\xcb\xf1\xfb\x5f\x2d\xf1\xc1\x61\x74\x43\x75\x36\x01\xf6\x31\x8a\xf2\xf2\x7b\x99\x9a\x54\xd1\xe8\x6a\x9b\x38\x7a\xba\x8c\xfe\x51\x97\x20\xc7\xa7\x39\x21\xe1\x42\xcb\xfb\x16\x84\x3f\x26\xa8\xd1\x97\x07\xf1\x00\xd4\x44\x8e\x98\xbe\x65\x84\x19\xe8\xbc\x22\x83\xea\xc5\x7d\x66\x5f\x21\x62\x1a\xc2\x36\x52\xd3\x42\x50\xb9\xc5\x25\xc7\xec\xef\xe1\x6d\xe1\x40\x51\x15\x02\x46\x39\x8f\xe6\x66\x00\x02\x2b\x2e\x60\x76\x85\x97\xdd\x8d\x1a\xf9\xf1\xa1\xf7\xdf\x83\xfe\xf9\xf0\xf8\x70\xd8\x3d\x3f\x3f\x3d\xee\xfd\x78\x3e\xc0\xc6\xa6\xd6\x73\x3a\x69\xa4\x72\xca\xee\x1c\x46\xc7\x70\x06\xbd\x44\x09\x1f\xd3\xaf\xc1\x85\xbb\xf2\x27\xe9\x44\xfe\xb2\x1b\x2d\x66\x3e\x40\x2b\x2f\xa3\xd0\xe3\xfd\xc3\xc5\xf7\x30\x05\x54\x4a\x0c\x57\x79\xe8\x87\x6c\x7d\x9e\x92\xf5\xaa\x68\x8f\x66\xd0\x0b\xf9\xeb\xac\xda\x65\xb4\x28\x18\x8b\x64\xaa\xd4\x28\x36\x3e\x99\x64\x16\x99\x0b\x82\xf7\x8b\xe2\x8f\x90\xcd\x5f\x25\x3c\x16\x87\xce\x18\x89\x18\x46\xf8\x77\x2d\xa1\x2c\x34\xdd\xed\x17\x65\x62\x1d\x04\x7e\x23\x65\x19\xc8\x5b\x4d\xc3\xf3\x37\x4b\x48\xb1\x34\x12\x79\xb2\xcc\xe8\x1f\xcd\xbc\x24\x79\x4f\x9e\xb7\x16\x3d\xa2\xd9\xf7\x20\x0c\x61\xfc\xf6\xfc\xdd\x89\xf0\x5d\x5e\xa4\x4c\x54\xb1\x08\xc3\xa2\x0c\x41\xc0\x7d\x2f\xf5\xd6\xa2\xeb\xdf\xd6\x02\xbf\x62\x69\x29\x0e\x06\x39\x8b\x62\x4b\x9e\x65\x2d\x30\xd3\x66\x5e\x02\x8d\x18\x2d\x4b\xe1\xe3\xc2\x1c\xbf\x51\x30\xc7\x88\x64\x7e\x48\xaa\x5e\x1c\xd7\x01\xe4\x49\x2b\xe9\x38\x79\x71\xcc\x13\xa3\xa2\x8f\x24\x2d\xaa\x18\x1f\x40\x9a\x63\x0b\x9c\xfc\x7a\xf0\xcc\xc6\xac\xef\x61\x08\xe3\x60\xa4\xf3\x07\xff\x82\x7f\xbf\xaa\x1d\x98\xdb\xe2\x18\xa8\xb5\xeb\x45\xe8\xcf\xd8\x55\xff\xff\x17\x00\x00\xff\xff\xad\x5e\xe1\x40\xb3\xcc\x0b\x00") +var _staticJsGottyBundleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x6f\x23\x4b\x96\x20\x06\xbf\x81\xf9\xe0\xf7\xfb\x49\xc5\xed\xe1\xcd\x2c\x86\xa8\x4c\xbe\x24\x91\xca\xd2\xb0\xc4\x52\xdf\xda\xae\xba\xf7\x4e\x55\xdd\x7e\x2c\x8b\x5d\x9d\x22\x83\x52\x76\xa5\x32\xd9\x91\x41\xa9\xd4\x22\xdb\x0b\x63\xbd\xc0\x00\x86\xb1\x36\x16\xeb\xfd\x30\x80\xd7\xf6\xac\x67\xc6\x58\x18\xbb\xc6\xc0\xaf\x99\xb5\x81\xb9\x3f\xc0\xff\xa1\x7f\x89\x11\x27\x1e\x19\x91\x0f\x4a\xf7\xf6\xed\xc1\x7e\xd8\x52\x91\xcc\x8c\x13\x8f\x13\x27\x4e\x9c\x38\x27\xe2\x44\xc4\xde\x72\x9d\xcc\x59\x94\x26\x0e\x71\xef\xd5\x73\x83\x39\x91\x7b\x1f\x2d\x1d\x3a\x8d\x66\x2e\x25\x6c\x4d\x93\x06\x7f\x6e\x93\x8f\xab\x94\xb2\x6c\x74\x13\xd2\x46\x1a\xf0\xa0\xe0\x3e\x1a\x46\x38\x1e\xee\xf9\x58\x02\x87\xf7\xdb\xed\x48\x26\x22\x3c\xd1\x3c\x8c\x63\x27\x55\x69\x71\x8a\xf3\x67\xe6\xe2\xb4\x1d\x07\x7b\x5e\x1e\xb6\xe5\x79\xd3\xe0\x7e\x3b\x62\xed\xeb\x80\x60\xd6\x9e\x07\x14\xb3\x76\x14\x98\xa8\xaa\xfc\xb7\x98\xb5\x17\x06\x04\x53\x1c\xb9\xf7\xac\x9d\xf2\x47\x77\xb3\xf9\xe2\xe2\xe7\x64\xce\xda\x0b\xb2\x8c\x12\xf2\x25\x4d\x57\x84\xb2\x3b\x88\x76\x3f\x4f\x93\x65\x74\xb9\xa6\xe1\x45\x4c\x00\xfd\x64\x7d\x4d\xe4\x9b\x87\x2f\x09\x1b\x46\x5b\x97\xe7\x9f\x58\x25\x0b\xf4\x48\xb3\x49\xda\xef\xdf\x93\xec\x55\xba\x58\xc7\xe4\x54\xc7\xc8\x51\xe3\x85\x86\xeb\x98\x6d\x87\x15\x40\x4d\x21\xd6\x5e\x38\x14\xa3\x10\x61\xea\x62\xca\x8b\x4b\xcd\xea\x30\x9d\x44\xd6\x64\x45\x53\x96\xb2\xbb\x15\x69\x5f\x85\xd9\x17\xb7\x89\xaa\x93\xa0\x32\x4f\xc0\xf3\x58\x05\x08\x61\xe6\xb0\x76\x16\xf8\x7d\x77\xeb\x4c\xcd\x2c\x31\x75\xef\xd1\x3a\x23\x8d\x8c\xd1\x68\xce\xd0\x48\xb7\x7b\xa4\x2a\xc8\x02\x76\x15\x65\xa3\x68\xe9\xec\x39\xfc\xa9\x11\x25\x19\x0b\x93\x39\x49\x97\x8d\xc8\x55\x2c\x91\x90\xdb\x46\xe4\x84\xf4\x72\x7d\x4d\x12\x96\x4d\xbd\x19\xce\x5f\x7c\xf3\xa5\x33\x73\x47\xac\x7d\x41\xd3\xdb\x8c\xd0\xe0\x0d\x6f\x54\x9e\x5b\x1c\x44\xf2\x01\xaf\xdb\xcf\x6f\x48\xc2\x9e\x5f\x47\x8c\x11\x2a\x6a\xc3\x4b\x76\x31\x4a\xd6\xd7\x17\x84\xa2\x20\xe0\xd5\x4e\x97\x0d\xd2\x6c\x3a\x24\xb8\x9f\xa7\x71\x36\xb4\x0a\xe7\xd9\x0f\x2d\x0c\xae\xc2\x64\x11\x13\x3a\x34\x31\xd9\xba\x98\x04\x64\xb3\xb9\xdf\x62\x49\xd3\x0f\xe4\x2e\x73\x22\xd5\x5e\x99\xdb\x5e\xa6\xf4\x79\x38\xbf\x72\x34\xd5\xa8\x7b\x9f\xac\xe3\x38\x08\xc8\x94\xce\x78\xf1\x53\x3a\x0b\xa2\x76\xba\xe2\xd0\x6c\x4a\x67\x38\x9a\xd2\xd9\x5e\x10\xe4\xb9\x98\x11\xa7\x74\xe6\xba\x98\xf1\x67\x1e\xb0\x75\xf1\x51\x10\x04\xa4\x3d\x4f\xe3\x94\x66\xed\x98\x24\x97\xec\xea\x54\xbd\xe7\x80\x79\x9a\xcc\x43\xe6\x44\xed\xf7\x32\x20\x8b\xa3\x39\x71\x8e\x5c\x77\xe8\x0f\x7e\x93\x1c\xfc\x01\xcf\xc2\x7b\x54\x16\x22\x85\x87\xf7\x3b\x6e\x2d\x42\x1c\x88\x0b\x29\xf6\x3b\xbc\x8c\x8a\x8a\x72\xb2\x3c\x1e\xd1\xba\xac\x5d\xcc\xd9\xa3\x98\x8f\x08\x94\xed\xc2\xa5\x07\x7f\x5d\x85\x94\x24\x2c\x20\xed\x8b\x74\x71\xb7\xd9\x10\x19\xb0\xd9\x38\xe3\xd3\x71\xfb\x92\xb0\xe7\x31\x01\xee\x78\x76\xf7\x36\xbc\xfc\x3c\xbc\x26\x0e\xe2\x51\x91\x3b\xf5\x66\x43\xde\xf0\x79\x61\xb2\xa8\x8c\x67\x73\x49\xd2\x6b\xc2\xe8\x1d\xe7\x3d\x80\x73\x06\x0c\x08\xfc\x58\x70\x5f\xc2\x55\x40\x30\xd5\xd9\xe5\x09\x67\x98\xf7\x69\xe0\xd7\x66\x53\x54\x23\x71\xd0\x22\x64\x21\xca\x21\x12\x91\xbb\x8b\x30\x23\x81\x27\x5f\x16\x51\xb6\x52\x2f\x1f\x75\xa8\x7a\x98\xaf\x69\x96\xd2\x37\x2c\x64\xc4\x0e\xfa\x2c\x5a\x2c\x48\x12\xec\xf9\xaa\x72\xc9\x0d\xa1\xec\x79\x1a\x8b\xf7\x5f\xac\xc9\x9a\x80\x1c\xe1\x6f\xd9\x9c\xa6\x71\xfc\x36\xd5\x05\x89\x80\x67\x29\x63\xe9\x75\xa0\x2b\xb1\xaf\x32\x5b\x67\x2c\xbd\xfe\x01\xb9\x83\x5e\xfd\x99\x40\x3e\xe0\xa4\x34\x31\x78\x16\x47\xc9\x87\x17\x09\x23\xf4\x26\x8c\x0d\x68\xb8\x5a\xc5\xd1\x3c\xe4\x8d\xf8\x03\x72\xb7\x0a\x17\x1a\x49\x03\x72\x06\x59\x68\x48\x4a\xa3\xcb\x28\x79\x95\x2e\x88\x0e\x8a\x92\x8c\x50\x66\x05\xdd\xd2\x70\x15\xd2\x74\x9d\x2c\x44\xb0\xac\x4c\x92\xd2\x6b\x0b\x83\xf9\x55\x48\x33\xc2\x8c\x90\xcb\x8a\xa0\x98\xdc\x90\x58\x13\x55\xc0\xb3\x60\xca\x63\xc8\x16\x5f\x90\xf9\xcb\x74\x1e\xb2\x94\xca\xe6\xf1\xbd\x57\xe9\x3a\x93\x8c\x79\xc3\x3a\x9e\xfd\xde\xb5\xde\x05\x5a\x46\xc0\x35\x7f\x04\x92\x4a\xc6\xc9\x48\xb2\x38\x4f\xe7\x6b\xf9\xba\x66\x4b\x23\x76\x76\x49\x8d\xb7\x35\xfd\x78\xc3\x8c\x77\x22\x98\x5e\x21\x1f\xc5\x0b\x4a\x12\xc9\x8e\x64\x49\x49\x76\xf5\x86\x85\x94\x59\x21\xcf\x93\x85\xcc\x3a\xbc\x21\x8b\x1f\x1b\xcf\x3f\x31\x9e\xcf\x72\xbe\x26\xe1\x82\x8f\xa8\x9a\xd0\xb7\x34\x62\x56\xc0\x82\x2c\xc7\x8c\xd1\xc0\xef\xfa\x47\xbd\x9c\x3d\x21\xcc\x8c\xa0\x7b\x72\x78\x9d\x05\xd3\x99\x8e\xc8\x3b\xf2\x97\x3c\x54\x35\xc3\x8a\x92\x65\xf4\x51\xf3\xed\x2a\xcd\x98\xf9\x1e\x25\xab\x75\xce\x8f\xe4\xb6\x71\xdd\x7e\x61\x04\xc9\x31\x47\x15\x96\xc9\x48\x77\xed\x2f\xe1\xc5\x29\xe5\x81\x8d\x04\x94\x24\x0b\x42\x89\x44\x5c\xbd\x6d\x36\x39\xc7\x64\x24\x26\x30\xa2\xbc\x0a\x93\xf0\x52\xc5\x2c\x86\x9a\x29\x78\x0f\x89\x96\x91\x8a\xaa\x5f\x37\x1b\x8e\xd7\xfb\xf6\x4b\x15\x90\xd3\x97\x3c\x5b\x2f\x97\x84\x6a\x2a\x41\xd8\x0b\xae\x29\x5c\x52\x92\x65\xba\x2f\x7c\x4c\x97\xcb\x37\x24\x61\x6f\xd3\xb3\x90\xcd\xaf\xbe\x5a\x19\xbd\x24\x62\xe4\x0d\x4b\x57\x2b\x92\x77\xbd\x6c\x4d\x69\x7a\x19\x32\xf2\xfe\x2a\xba\xbc\xd2\x04\x8d\xa3\x84\x64\x40\xa4\x65\xfb\x2c\xa2\xf3\x75\x1c\xd2\x97\x51\xc6\x1c\x43\x4a\x5c\x84\xf3\x0f\xee\x68\x99\x52\x47\x68\x4f\x5a\x5c\x8c\xe8\xfe\xfe\xc8\xcd\xf3\x69\xaf\xd6\xd9\x95\x48\x79\x11\x87\xc9\x87\x97\x51\x42\x1c\xd7\x1d\x55\x92\x49\x4a\xc9\x62\x70\x3b\x23\x4c\x50\xc0\xc9\x33\x96\x2d\xc4\xc2\x0b\xdd\x71\xd8\x7a\xc5\xab\x98\x39\x12\xb6\xce\x08\x7d\x03\xe8\x46\xc9\x65\xb0\xe7\x6f\xb5\x5a\x94\x0a\xad\x89\x6b\x96\x63\x4a\xc3\xbb\x76\x94\xc1\xaf\x43\xdc\xcd\xc6\x21\xc1\x94\xcc\xf8\x10\x55\xd2\x1a\x88\x7b\x4f\xda\xe1\x62\x01\x1d\x96\xd3\x84\x24\x1c\x29\x9e\xd3\x66\xb3\xe7\xbb\x5b\x37\x2f\x23\xcb\xcb\x20\x6d\x4a\xae\xd3\x1b\x52\x9b\x4c\x27\x92\x1a\xa2\x7e\xa7\x8e\x7b\xaf\x64\x79\xc6\xe8\x7a\xce\x52\x1a\x90\x2d\xcd\xb5\xc6\xc0\xd0\x20\x31\x31\xc2\x79\x03\xd2\x3c\xe7\x50\xe4\x2c\x95\x5d\xa5\xb9\xb5\xa3\xec\x55\x38\x6f\x36\x59\x3b\x8c\xd9\x0f\xc8\x5d\xb3\xb9\xc7\xda\x73\x46\x63\xf5\x7c\x4d\x58\xf8\x03\x02\x63\xac\x91\xe4\xcd\x8f\xa2\x64\x91\xde\x66\x66\xc2\xca\x74\x52\x29\x46\x1f\xc8\xdd\x8a\xb3\x2a\xd7\xf9\xda\x1c\xbd\x53\x3a\xa4\xcd\xa6\xb3\x07\xba\xda\x59\xba\x20\x9b\x8d\x7e\x7c\xda\x3b\x34\x48\x12\x2b\x0d\x57\x98\x28\xe4\xe4\xc4\x1f\x6c\xd8\xc9\xc9\xd1\x86\x72\x75\x96\x77\xac\xbd\x20\x6e\xbf\x9f\x87\xf3\x2b\x32\x4d\xb5\x79\x63\x04\x69\x46\xcd\x70\x82\x43\x7c\x85\xe7\x78\x1d\xf8\x07\x1e\x5e\x05\xfb\x3e\x5e\x04\xde\x68\x71\x12\xb5\x6f\x2c\x9d\x66\xb4\x68\xb5\xc0\x64\xca\x02\x0d\x9a\x2e\x66\x38\x09\x84\x5a\x1c\x08\x75\x34\xe0\x0a\x28\xe6\x7a\x97\x33\x0f\xe2\xf6\x22\x12\x5a\xb5\x6c\x7b\x28\xcd\x75\xdd\xfb\x55\xb0\x18\x5d\x50\x12\x7e\xd8\xce\x4f\xd6\xcd\xa6\xb3\x0e\xe6\x78\x15\x2c\xdc\x6d\x19\xd9\x60\x95\xd7\xfd\xca\xb0\x8c\xa4\x7e\xa8\xc9\xe5\x1f\x16\xde\x8f\xcc\xf7\x6d\xb5\x9d\xc4\x30\xca\x6d\x1c\x84\xef\x6f\xc2\x78\xcd\xad\xa3\xad\x0b\x16\xe0\x3c\xa0\x5c\x93\xc4\x6b\xfe\xeb\xe2\x55\x40\x9d\x4e\xd7\xc5\x8b\x80\x3a\x5d\xcf\xc5\x4b\xfe\xdb\x71\xf1\x25\x0f\x77\xf1\x35\x8f\x75\xe8\xe2\x3b\xfe\x7b\xec\xe2\x0b\x1e\xec\xb9\xf8\x3d\x7f\x3f\x72\xf1\x19\x7f\xf7\x5d\x7c\xcb\x93\xf9\x2e\x7e\x13\x50\xe7\xc8\xc5\x37\x01\x75\x8e\x5d\x3c\x0e\xd0\x3a\x11\xe8\x2d\xd0\x9e\x32\x05\x6e\x81\xb1\x4e\xc5\x4f\x7b\x91\xce\x41\xcb\x07\x95\x6d\x94\x38\x51\xc1\xaa\x70\x71\x64\xd8\x4f\x84\x86\x19\x81\x71\xa6\x64\x9f\xed\xf7\xfd\x4e\xd3\x1c\x7d\x36\x7d\xdf\x6f\x9a\x63\xd3\x16\x47\x6d\x16\x26\x97\xe9\x99\xd0\x3f\xa7\xe8\x93\x0e\xe9\xf6\xba\x03\x84\xd1\x27\xf3\xb9\xe7\x79\x1e\x7f\xea\x91\xe3\xd0\x13\x61\xbd\x50\x86\x75\x7b\x83\x7e\xd8\xe3\x4f\x87\xfd\xbe\x77\x78\xc1\x9f\xbc\xc1\xf1\xd1\x71\xc8\x9f\x16\xdd\xc5\xe1\x7c\xc9\x9f\xfa\xfd\xfe\x61\xbf\xcb\x9f\xc8\xb2\x73\xdc\x39\xe6\x4f\x47\x21\xe9\x74\x21\xed\x72\x4e\x8e\x7b\x10\xef\xb0\x73\xbc\x14\x29\xc2\xc5\xe1\x32\x3c\x12\x65\x90\x0e\xe9\x40\x5a\xfe\x6f\x8e\x66\x38\x52\xaa\xb2\x51\x5b\xcd\x39\x44\x59\xce\xa9\x90\xc0\xe8\x13\xd4\x62\x0e\x71\x5b\xcc\xa1\xfc\x2b\x72\x8d\x2e\xc6\x72\x36\x73\x48\x40\xda\x2c\x7d\xc3\x68\x94\x5c\x82\x55\x21\xfb\xc3\x49\xe7\x14\x79\xa8\x45\x86\x44\xd8\xf3\x38\x0d\x2c\x82\x49\x45\xde\xc5\x59\x30\xf5\xf0\x71\x1f\xfb\xdd\x3e\xf6\x0f\xfb\xb8\xe3\xf7\x71\xa7\xdf\x17\x9d\x90\x06\xde\x88\x9e\x74\xfc\xc1\x88\xb6\x5a\x2e\x71\xb2\x29\x3d\xe8\x0e\x7e\x77\xb0\xf1\x66\x98\x3f\xe7\x8f\xbf\x3b\x98\xb9\x66\x92\x9e\x4a\x11\x1c\xb5\x7c\xef\x09\xc5\x19\xce\x5c\x65\x73\xa7\x5b\x87\xb3\x82\xb4\x34\x82\xc8\x36\x2e\x38\xe8\xa6\x82\x56\x52\x28\x10\xcc\xf8\xc8\x4a\x75\x32\x9c\x06\xde\x28\x3d\xe9\xf4\x07\xa3\x94\x97\x19\x80\xde\xf0\x22\x61\x0e\x9d\xa6\xb3\x76\xb6\xbe\xc8\x24\x79\x5c\xcc\x7b\x0b\x13\x24\x9e\x92\xa7\x4f\xfd\x41\xb3\xd3\xef\x63\xf2\xf4\xe9\x11\x3c\x74\xfa\xfd\x26\x99\x69\x3c\x99\xc0\x53\x59\x94\x60\xf2\xa6\x34\x1b\x46\xb9\xb1\x43\xae\xc9\x10\xc9\x08\x08\xe7\x2a\xfc\x90\x8f\xda\x84\x5e\x73\x63\x66\x88\x3e\xf2\x47\x84\x95\xf9\x31\x9c\x1e\x79\xb8\xd3\x9b\x61\x43\x0b\xe7\x09\x94\xa5\x70\x17\x93\x21\xba\x88\xd3\xf9\x07\x84\x6f\xa2\x6c\x1d\xc6\xcf\x48\x0c\x59\xae\xd2\xd5\x17\x89\x7a\xc9\xc7\xf6\xa1\x4f\xba\xfc\x95\x10\xae\xaf\x67\x1c\xb8\x20\x17\xeb\x4b\xc8\x14\xec\x7b\xa1\xb3\x02\x20\xca\xb8\x02\xf8\x86\x2d\xa2\x84\xbf\xaf\x33\x72\x1e\xa7\xb7\x67\x69\xc2\xa8\xc4\x3b\xbc\xe0\x03\xf3\x8f\xa2\x05\xbb\x1a\x1e\xf1\x9e\xa6\xec\xb9\x7b\xfe\xb2\xe4\xea\xae\xd0\xc2\x8b\xb3\x1a\xd1\xd2\xd1\xc3\xb0\xab\xe7\x61\xd4\xb8\xcc\xa3\x68\xd9\x1e\x05\xde\x28\x3a\x21\x4a\x7c\x47\xad\x96\xcb\xc4\xac\x03\xc5\x64\x1a\xcd\x70\x84\x89\xbb\xb5\xc6\xf2\x68\xe9\x18\x13\x06\xae\x3d\x2f\x03\x73\x08\x44\xc8\x45\x86\xb9\xf2\x05\x45\xb1\x46\x94\x34\x88\xfb\xe8\xc9\x9b\x66\x93\x4a\x1d\x48\x73\x01\xdd\x9a\x73\x13\xd8\xc2\x68\x4a\x66\xe6\x94\x03\x99\xe5\xc4\x2a\x81\xb6\xb6\xf8\x13\x64\x2c\x4f\x4d\x09\x3d\x89\x7c\x64\x21\x25\xa1\x88\xe5\xb8\x5b\x2b\xe9\x25\x61\x5f\x40\x21\x85\x99\x2a\x98\x2e\x22\xbc\xc6\x06\xc2\x2e\xbb\xa2\xe9\x2d\xcc\x15\x3d\xa7\x34\xa5\xce\xa7\x9f\xa7\x0d\x81\x63\xe3\x36\x62\x57\x8d\x0f\xe4\xae\x81\x3e\x6d\x91\xd6\xa7\xe8\x53\x5d\xe9\x9b\x34\x5a\x34\xbc\xbd\x20\x30\xed\xf9\x29\x99\x9d\x16\xde\x87\xfc\x9d\x57\xce\x42\x30\xfb\x2d\x22\x98\xdd\x46\x6c\x0e\x23\xed\x3c\xcc\x08\xca\x3b\x01\x1a\x46\x4b\x87\x9d\x68\xdd\x56\x69\x4f\xe8\x0d\x61\x2c\x4a\x2e\x1b\xec\x8a\x34\xf2\xe8\x0d\x18\x4c\x1b\x31\xc9\xb2\x06\xbb\x0a\x13\x00\x8b\xa9\xae\x46\xba\x6c\xf0\x1c\x1a\x48\xf3\x40\x2b\x40\x0e\x6a\xe9\xbc\x5b\xc8\x6d\x44\x59\x23\x49\x59\x23\x8c\xe3\xf4\x96\x2c\xda\xd0\xfb\xb3\x34\x26\xed\xdb\x90\x26\x0e\x75\xf1\x9e\xbf\xe5\x18\xd9\x04\xe3\x24\x05\x42\x18\x4a\xb7\xe8\x03\x4f\x99\x52\x9a\x4a\xa0\x7d\x86\xb3\x20\x9f\x6b\xd8\x4f\x4f\xbc\x91\x11\x89\xd1\xe8\x1a\x6c\x45\x27\xb5\xe6\x27\x5e\x85\xec\xaa\x7d\x1d\x7e\x74\xf2\xb0\xfd\x14\x7b\xae\x39\x6d\x51\x88\x23\xb2\xe7\x71\x32\xa9\xde\x4b\xcb\xd3\xf1\xb0\x31\xc9\xe0\x6e\x8d\xe2\xaf\xc3\x8f\x2f\x01\xcd\x40\x1a\xab\x37\x11\xb9\x5d\xa5\x94\xb5\xb3\xbb\x64\x2e\x54\xfa\x31\x25\xa1\xe3\x6e\xb7\xb2\xf5\x24\xd7\xa8\x04\x46\x97\x61\x58\xb5\xac\x21\x1c\xd1\x50\xd9\x0c\x67\x79\x20\x17\xe9\xcc\x15\x7a\xda\xc8\x48\x01\xf2\x53\xa6\x90\x36\x76\x7b\x1e\x87\x59\xc6\x55\xf9\x36\x4b\x2f\x2f\x63\xe2\x08\x91\xbc\x2f\x52\xec\x67\x3c\xc9\x3e\xd7\x6f\x28\xaf\x12\xc2\x28\x7f\x0e\x78\x83\xe1\x6f\x9e\xdb\x45\x48\x11\x46\xfc\x1b\x72\x30\xf1\x34\x05\x6c\x5e\x35\x6d\x0e\x6d\xed\xce\x44\x49\xc6\xdb\xd6\xae\xb9\x29\x38\xea\x68\x63\x50\xd6\x9c\xef\x71\x4b\x7d\xb5\x2e\x6b\x92\x33\xea\x23\xab\x7e\x01\xad\x85\x89\x9a\xaf\x8b\x49\x48\xed\xdc\xd5\x6c\x93\xe3\x62\x7b\xae\xbb\x76\x5a\x2a\x23\x4c\x27\x32\x6b\xfd\x8d\x70\xda\x4f\x13\xe4\x6e\xf1\xc0\xf3\x8a\xe4\xdd\x81\x63\x89\xc8\xe5\x12\x85\xa5\x58\x5b\x62\xed\x64\x5b\xb3\xe9\x40\xc1\xba\x66\x75\x11\xeb\xb3\x80\x21\x18\x1a\xf3\x22\x92\x93\x50\x56\xd3\xa5\x0e\xd1\xe3\x08\x46\x30\x90\xa0\x7c\xf4\x62\xdc\xce\xd5\xb3\x57\xcd\xa6\x78\x71\x2e\xdb\x67\x5e\xfb\xf9\x9b\xb3\x16\x9a\xbe\x40\xdc\xa8\x2e\x57\x39\x5c\x2c\x1c\x99\x1d\x8f\x90\x5d\xa5\xb7\x82\x7c\xbc\x49\xab\xb9\x15\xa6\x0d\xb9\xb9\xae\xd5\x07\x6e\xfc\x92\xeb\x88\xa9\x9c\xf0\x3d\x27\x60\x94\x84\xf1\x90\x6c\xb9\x61\x6e\xb5\xd1\x45\xbc\xae\xb0\x12\x0a\x43\x25\x8f\xe4\x68\x7a\x3c\xb3\x92\x94\xc8\xc1\x23\x17\xa9\xa1\x24\x1d\x69\xdf\x61\xd2\xbe\x83\xca\xed\x22\xd0\x17\x35\x04\x52\x3c\x91\xd3\x68\x07\x8f\x95\x49\x03\x9a\x95\xa2\x8e\xc0\x73\x27\x71\xa2\x24\x62\xdf\x8f\xd3\x0b\x9b\x5f\x41\x55\x86\x9e\x85\xd5\x62\x12\xd0\x85\xeb\x87\x72\x92\xcd\x60\x1c\x2b\x84\x93\x4e\x06\xa4\x56\xef\xc7\x68\x9e\xae\xee\x0c\xb2\x51\x4e\x36\x63\x4e\x74\xb3\x59\xb4\x79\x14\x35\x99\x47\x31\x03\x22\xda\x13\x44\xae\x34\x5f\x69\xd5\x8a\xe2\xa2\xbd\x0a\x33\x46\x54\x0e\xb0\xa0\x36\x92\x68\xe4\xcd\x07\x71\x60\xc9\xae\x88\x61\x0e\x61\xc6\x14\xc8\x79\x44\xc9\x32\xfd\x78\x5a\x8c\x0d\xb8\x2f\xd2\xdb\xc4\xe6\x85\x4e\x10\xb0\xf6\xc5\x9a\xb1\x34\x69\x36\x17\x6d\x1a\x5d\x5e\xb1\xb3\x38\x9a\x7f\xd0\xb3\x94\xd8\x60\xa6\xca\x1a\x0e\xcb\xa4\x4b\x78\x8a\x6b\x92\xac\xed\xc2\xbe\x5d\xfe\x56\xf5\x5e\x46\xc9\xfa\x63\xb3\x59\x2c\x32\x5c\x7f\x9c\xf3\x5c\xed\xf2\xfc\xc0\xae\x1d\x67\xd6\xb7\xe4\x23\xe3\x43\xf4\x57\x7c\xd8\x83\x39\x6a\xd9\xa5\x1f\x46\x44\x75\x38\xce\x58\xa5\x0e\xa7\x51\xf9\x40\xee\xca\x64\x1e\xb7\xc3\x39\x8b\x6e\x88\x5c\xfe\x11\xca\x26\xef\x69\x1f\xc8\xdd\x24\xbd\xe5\x71\xb6\x78\xcf\xe3\x8d\x6c\x67\x25\x26\xa7\x1e\x9d\xd7\x97\x3c\x7a\x6d\x66\xeb\x95\x9d\x13\xd7\xfd\x37\x1b\xa9\xa0\x3b\xc4\x48\x95\xf3\x5f\x65\x75\xaa\xf1\xb6\x12\x55\x20\x6e\x61\x28\xf5\x27\xae\x99\x06\x08\x55\x65\x32\x4f\xaf\x57\x69\x16\xc1\xa8\xce\x05\x2d\x82\xb5\x39\x1d\xf6\x19\x89\x57\x84\xb6\x8b\xb1\xa0\x85\x9c\x8a\x98\xee\x8e\xfc\xd7\xab\x45\xc8\xfb\xd2\x03\x05\x88\x68\xdf\xaa\x04\x92\x2c\x1e\xcc\x9e\x24\x8b\x5d\x79\x13\x58\xa5\x93\xa2\xbb\x3a\x33\x81\xe0\x59\x1e\xae\x96\x1b\xbf\x41\xbe\x76\x8b\xc1\xd2\x9c\x9c\xf9\x17\x8b\x61\x0e\x6b\x67\x62\xb5\xa6\x4d\x92\x45\x85\x8c\xce\x08\x65\xaf\xd3\xdb\x0a\x91\x87\x52\x30\x4e\xf3\x49\x35\xb1\xbe\x3e\x6e\xcf\x29\x09\x99\x62\x68\x07\x2d\xa2\x1b\xa4\x56\x5d\xa9\x30\xd8\xc3\x28\x21\x94\x8f\x20\x24\x59\x9c\x5d\x45\xf1\xc2\xd1\x9a\x97\x5c\x4f\x12\xc6\x2c\x71\x31\xb1\x11\x4a\x57\xa4\x68\x9c\xe5\x4b\x03\x38\x12\x3f\x19\xb7\xd1\xa5\x02\xa8\xd6\x70\x37\x1b\xe3\x15\xef\x19\x2f\x25\x3b\x0e\xbd\x95\xa3\x56\x83\x92\x5f\xac\x23\x4a\xb2\x46\xd8\x10\x71\x1b\x6a\xd4\x44\x62\x46\x40\x4d\x9a\x73\x2e\x09\x8c\x3c\xdb\xe9\x6d\x42\xe8\x44\xce\x2b\x2a\x9b\xf1\x87\x11\xb9\x95\xab\x57\x12\x52\x9f\x46\xc4\xbb\x48\x17\x77\x81\x95\xe2\xa1\x65\x67\x4b\xe3\x2f\x24\xad\x6a\x98\x3a\x0b\x01\xb4\x25\x35\x7c\x3f\x10\x4d\x4c\x13\x3d\x22\xce\x3e\x4c\x3c\xed\x4b\x83\x14\x5e\x5c\xfc\x4d\xcd\x00\xbb\x98\x8c\xb0\x31\x63\x34\xba\x58\x33\xe2\x70\x0b\x25\x4a\x16\xe4\x23\xd2\xd6\xa2\xb2\xe9\x94\x7c\xad\x66\xcf\xca\xb8\xd5\x55\x50\x91\x8a\xf5\x35\xb9\xb9\x2a\xb7\x42\x19\xb9\x79\xf9\x28\x94\xf2\xe8\xd5\x58\x89\xf9\x81\x7d\x2e\xa9\xea\x6a\x53\x8b\x60\x9e\xb7\x5b\x58\x6d\xd4\x7d\x75\x27\x8e\xe5\xe8\x35\x38\xaa\x78\x0f\x92\xae\x9c\x63\x85\xfc\xd8\x89\x93\x25\x68\x2a\xb1\xe1\x4a\xc8\x83\x88\x98\xd9\x14\x24\x94\x5e\x26\xd5\x4b\xab\xed\x90\xb1\x70\x7e\xf5\x36\x9d\xa4\xd7\xce\xd8\x8e\x2d\x13\x5f\x81\x98\x7e\x5c\x15\x0a\x71\xab\x6b\x21\x22\x3d\x5c\x91\x42\x66\x6a\x59\x53\x0e\x6e\x65\x3c\x14\x04\x15\x62\xee\xc2\x62\xbf\x36\x91\xdd\x49\xc3\x35\x4b\xe7\x29\xa5\x7c\xf0\xc0\x28\x5d\x2e\x1f\x13\x3f\x5c\x45\x2c\x8c\xa3\x5f\x92\x47\x25\xc9\x56\x24\x8e\xe7\x57\x84\xeb\x90\x68\x19\xc6\x19\x29\x25\x60\xe1\xc5\x0b\x2e\x2a\xd4\xfa\xbf\x06\x94\x16\x5e\x4b\x36\xa8\x7b\x1f\xd5\x19\x81\xd1\x16\x74\xdc\x07\x32\x2c\x58\x71\x79\x7e\x45\xb3\xc9\xc8\xae\xc8\x0e\xa5\x26\x56\xe5\x69\x9f\x23\xad\x1c\xf0\x71\x67\x27\xab\x15\xe2\x16\x1b\xd9\x00\x83\xf8\xab\x48\x26\xf4\x0f\x58\x0d\x9e\xb7\xcf\x8a\xe1\x05\x33\xa8\xaa\x4c\xd3\x1f\xe2\xc1\xaa\x16\xd2\xba\xb9\x23\xcd\x9b\xe8\x97\x04\x26\xd2\x6a\xe5\x3d\xcc\x72\xd5\xf5\xb1\x72\x49\x15\x79\xba\xa3\x2c\x9f\xad\x1d\x65\xad\x96\x70\x44\xd0\xba\x92\xe3\x16\xb4\x8f\x72\xb6\xc4\x1a\x13\x78\x21\xaf\x48\x98\xad\xa9\x58\x4f\xbf\x6d\x9f\xe5\x21\x4a\x92\x54\xf7\x60\x23\x29\x28\x7e\xe0\x4c\x14\xfd\x92\xcc\xaf\xc2\xe4\x92\x2c\x0a\x4c\x26\x35\x4a\xb3\x4e\x99\xa3\x39\xcc\xcc\xeb\x5a\x16\x5e\x18\x4b\x00\xbd\x55\xfb\x87\xf2\xd5\x11\x76\x7a\xc5\x68\x53\x37\x7a\x95\x4a\x2a\xba\xc0\xf0\x02\x2e\xda\xaf\xe5\xab\xe9\x56\x53\xf2\x81\xe1\x51\xcf\xda\x6f\x0a\xc1\x06\x4e\x30\xcd\x5b\x1e\x0f\xea\x70\x28\x39\x84\x54\x6b\xd2\x5c\x01\xd6\xf8\x6a\x97\x27\x95\xd6\x21\x52\xa1\x26\x52\xa1\xde\x91\x77\x42\x6e\xf3\x31\xb1\x50\x80\x96\x1e\xc2\xa8\x22\x98\x96\x16\x57\xcc\x20\x91\x4f\xde\x96\x3c\x7b\xa1\x13\x58\x2c\xa0\x96\x05\xca\xf8\xa8\x49\x24\x9d\x43\x49\x7d\x28\x49\xb1\xdf\x2c\xff\xea\xf9\x79\xe5\x6c\xa5\xa6\x86\x1c\x17\x8b\x25\x1d\x98\x8c\x06\x5d\x3f\x09\xd0\x4f\xd2\x75\x63\x11\x2d\x60\x1d\x63\x15\xc2\x42\x08\x69\xfc\x0c\xc8\xf2\xb3\x86\xf2\xd9\x6d\x44\x49\xe3\x67\x4a\x95\x2f\x98\x10\x8e\xfb\xb3\xf6\xbb\x04\x8d\x92\x56\x80\xde\x56\xa5\x4d\xd2\xdb\x86\x5a\xe9\x69\xb0\xb4\xf1\x33\x46\xd7\xe4\x67\x8d\x8b\x35\x6b\x40\xf3\x46\xc9\xa5\x58\xe4\x81\x01\xb0\xfd\xf3\xac\xd1\x6d\x7b\x0d\x84\x79\x86\x11\x6b\xdc\x46\x71\xac\xd2\x43\x72\x18\x83\x7e\x56\x5c\x6c\xe1\x6a\x41\xb0\xe7\x6d\x99\x5c\xb3\x50\x0d\x5b\x9a\x83\x29\xcc\x86\xa8\x69\x32\x70\x42\xcd\x59\x8f\xe7\x46\xda\x51\x76\x96\xc6\x71\xb8\xca\xc8\x62\xc4\x0d\x83\x34\x26\x61\x92\x7b\x41\xb3\xd3\x3d\x36\x44\xaf\xb9\x78\x40\x41\x40\xc0\x4d\xc6\xdd\x6c\x22\xbd\x64\x27\xdb\x80\x2b\xd2\x30\xa3\xa2\x64\x80\x18\xa1\x38\xf5\x10\x58\x89\x71\x1a\x2e\xc6\x8b\x45\x69\xb1\x4c\xf1\x80\xd3\xe9\xb9\x0e\x6a\x1f\xa0\x16\x69\x21\xfe\x5d\xb0\x2d\xab\x84\x51\x69\xe6\xba\x4a\xfe\x02\xd7\xf3\xde\xcc\xe5\x3b\x6a\x0b\x15\xe4\x36\x5a\x90\x7d\x1e\xfb\xfe\x16\xd6\x7f\x51\xab\xf3\xa4\x24\xd5\x00\xd4\x42\xab\x8f\xa3\xad\x4c\x26\x3c\x25\xed\x84\x8f\x48\x06\xab\x6c\x4f\x1b\x8b\xe8\xe6\xfe\x8a\x44\x97\x57\xac\x2a\x99\x80\x88\x74\xa8\x30\x31\xac\x88\x5b\xe7\x55\x21\x97\x18\x30\x38\x1f\xb1\x80\x0b\x05\x4c\x83\x1b\xde\xde\xaf\xc3\xdb\x67\x77\x8c\x9c\xa5\x29\x5d\x64\x0e\xc1\xb1\x2d\xdc\x62\x13\x07\xfe\x96\xc6\x99\x88\x93\xb9\xae\x5c\xc6\x8a\x60\x4d\x1b\x93\x76\x7a\x43\x28\x8d\x16\xe4\xed\xdd\x8a\x6c\x36\x92\x19\xc4\x32\x56\x3e\xc5\x38\xbc\x0a\x98\xb9\x0c\x04\x90\xf5\x8a\x87\x77\x3b\xdb\x82\x7f\x87\x5a\xc7\xbe\x1a\x39\xec\x37\xc7\xb7\xd9\x8c\x1c\xda\x0a\xba\x1d\xcc\x0c\x47\x12\xaa\x57\x65\x63\xed\xb9\x0a\xaf\x1d\xaf\x77\x08\x82\x42\xaf\xe1\xc3\x34\x82\xe7\x8e\xd8\x89\xdf\x39\x3c\x25\x6a\x8d\x7c\xe8\xb0\xa7\x3c\x72\xb3\xe9\xb0\x80\x3f\x70\x62\x00\xcc\x3f\xee\x6c\xd8\xd3\xa7\x83\x3c\xa0\x73\xb4\x19\x74\x9b\xcc\x75\xb7\x24\xce\x08\x14\xd3\xef\xd7\x94\xf2\xd4\xef\x88\x3c\xfd\x4e\x9e\x25\x73\x0d\x22\x45\x06\xee\xb9\xdb\xae\x7b\x4f\x9a\x41\x17\xb3\xf6\xc7\x7d\xa8\x6c\xfb\x8e\xff\x8e\x84\xc3\x81\x31\x75\xdf\xe9\x21\xce\x10\xe0\x80\xef\x46\xad\x00\xf9\x68\xc4\xb1\x6a\x44\x4b\xc7\xd7\x81\xdd\x3c\xb0\xa3\x03\xfb\x22\x90\x97\xdc\x85\x40\x81\xfd\x88\xc3\x3c\xa4\x3c\xc4\xf8\xdb\xaf\xa6\xa8\xc5\xda\x1f\x5b\x08\xf3\xdf\xbb\x16\x9a\xbd\xa3\x48\x88\xe1\x58\x2c\x26\x44\x86\x47\x59\xee\xa9\x7c\xea\x54\x55\x02\xbc\xd6\xc8\x29\x09\x3a\x43\x5f\x3e\xf5\x86\x1d\xf9\x34\x18\x02\x2e\x30\x71\xd4\x75\xad\x32\x8c\x5a\x83\x04\x19\xa1\x96\x40\xfc\xb4\x37\xf4\x5c\x78\x07\xe4\x46\x12\x59\x0e\x67\xed\x55\x78\x49\x36\x1b\x0e\x6f\xde\x22\xd7\x1d\xc6\x86\xfb\xf2\xa9\x53\x44\x8d\x27\x6c\xf1\xb7\x56\xeb\xa1\xb2\x55\x19\x50\xe6\x2b\x91\xb5\xf2\x93\x2e\x67\x5c\x93\xd9\x09\x6a\x39\xbc\x12\x4e\xb7\x49\xdc\xd3\xfd\x5e\x93\x0c\x89\xbb\xdf\xed\xb8\xa5\x22\xf2\x58\xe8\x1a\x0d\xa1\x40\x77\xe8\x50\x27\xe2\x66\x27\x97\x05\x4e\xc4\xb1\x57\x0f\x77\xb5\xb4\x7b\x85\x5a\xc2\xcb\xaa\xbd\xa4\xe9\x35\x97\xb6\x67\xe9\x82\xc8\xd5\x1b\x01\xc1\x91\xeb\xda\xce\xa1\xba\x1b\xe3\x08\xa7\x38\xd3\xbe\x0b\x8f\x94\x17\xc2\xd7\x7d\x2f\x20\x72\xb6\xfe\xb4\xa5\x9e\x86\x0a\x70\x7b\x15\xcd\xaf\x4e\xe5\xef\xbe\x0f\xe1\x38\xb6\x9c\x3f\x5f\x3c\x17\x3d\x89\x77\xb5\x53\x6f\xd8\x83\x5f\x7f\x68\x2f\x49\x6b\x59\xc4\x82\xae\x19\x3e\xf9\xe2\x15\x34\x8d\xd0\x3c\x39\x98\xb4\x17\x84\x85\x51\x7c\xe2\x9d\x0e\x7a\xc3\x41\xdf\x8c\x7d\x7b\x45\x88\x8c\x04\x8f\x13\x12\xb3\xf0\x27\x4f\x65\x4c\xc5\xeb\x34\x20\xed\xec\x2a\x5a\xb2\x1f\x90\x3b\xce\x84\x38\x0a\x88\xf2\x40\x3d\x3d\x1a\x7a\x38\x0d\x88\xf2\x4e\x3d\xf5\x07\x43\x0f\x67\x01\xdd\x44\x9b\x14\xc7\x86\xc7\xfe\x69\xd6\x0c\xd2\x61\x6c\xfa\xe8\x6f\x36\x4e\x16\x78\x7c\xf4\xee\x76\x5a\x4e\x76\x72\xd2\x71\x5b\x0c\xfc\xdf\xc2\xc0\x52\x04\x62\x31\xbf\xc9\xe5\xee\x28\x75\xc2\xea\x75\x20\x2a\xa5\x8b\xb1\xbe\xa5\x25\x95\x43\x5d\x1c\x6b\x35\xc3\x42\xcb\xa1\x56\xeb\x06\x9a\xb4\x58\xa6\x12\x0e\x59\x0e\xe5\x8c\x68\xa1\xdf\x6c\xa6\x4e\xac\x67\x19\x25\x52\xd7\xe9\x0d\x41\x98\xf1\x84\x6a\xef\xc2\x66\x53\x11\xcf\x5c\xc5\x68\x50\x27\xca\xb7\xba\x39\x11\x4f\x6c\x95\x93\xed\x28\xa7\x02\xc6\xf3\x36\x51\x8f\xb8\x72\x63\x56\x64\xcb\x55\xad\x10\xcb\xf6\xb7\x26\xcb\x8b\x24\x6c\x36\xf7\x1c\xb3\x2a\xa6\xf4\xe6\x6f\xb9\x18\x74\x73\x6a\x33\xa3\x38\x56\x5b\x9a\x18\xbb\xf6\x2a\x5b\x2c\xce\x9d\x52\xd2\xe4\x47\x3c\x21\xd7\x04\x74\xa6\x44\x67\xca\xd2\xf5\xfc\x4a\xae\xac\x7c\xf3\x9c\xdf\xf2\xd4\xc2\x15\x67\x47\xf6\x82\xd6\xdf\x32\xf7\x57\xe9\x0d\x29\x65\x6e\x6b\x45\x0b\x92\x31\x9a\xde\x95\x94\xc0\x7c\x37\x88\x5f\xdc\x0d\x22\x03\xde\x13\x28\x3d\xb8\xdf\x4a\x63\x59\x6e\xd4\x30\x72\xda\x1a\x5b\x14\x2a\xc2\x65\x17\x93\x8a\xb8\x9a\x47\x13\xf6\xfb\xe7\xe9\x82\xd4\x02\xe4\xb2\x79\x85\x71\x5f\x74\x87\x01\x7b\xa7\xa0\x2c\x5b\xc6\xaf\xf6\x5c\x92\xb6\x25\x2c\xd7\xbc\x56\xab\xfb\xb8\x98\x63\x79\x35\xa7\xec\xb6\x66\xcf\x50\xba\xf9\x56\x0a\x32\xa2\x27\x01\x03\x6f\xd7\xc2\x2c\xa6\x78\xba\x7b\x9d\xde\x3a\xb4\xe8\x73\xa3\x7d\x26\xca\x8a\x7a\xbe\x5b\x6c\xb3\x71\x8a\x41\x81\x6f\x1b\x7d\xf0\x72\x27\xfd\xb9\xdc\x62\x29\x20\xb3\x4b\x9b\x67\x99\xe9\x3a\x26\xfc\xcb\x82\xc0\xf4\x39\xd3\xfe\x5c\x7c\xdc\xb8\xaa\xf0\x32\xf3\x4d\x2f\xb3\xfd\x7d\xac\xfd\x04\xc1\x7d\x4c\x52\x5f\xb8\x92\xed\x9b\x51\xb9\x8e\x70\x55\xdc\xe9\xa1\x6a\x29\xdc\xd1\xf2\xc8\xae\xf4\x5b\x90\x49\x0d\xe3\x16\x3b\x6c\xdf\xdc\xf1\xb6\x2f\x66\x06\x8c\xfd\x70\xae\x5d\x21\xb9\xb5\xd2\x08\xa9\xda\xe6\x22\xec\x63\x4c\x5c\x77\x68\xc4\xcc\x56\xe0\x94\xcc\xb0\xb4\xaf\xab\xe2\xe7\x04\xd0\xbb\xf4\x9a\x4d\x27\xa7\x0a\xaf\x80\xa2\xa5\xa2\xd9\x37\x20\x84\x8b\x2b\xf0\x29\x50\x46\x17\x8c\x7d\x15\x5f\xd8\x85\x60\xa0\x3a\x76\x9c\xdd\x11\x24\x09\x4d\x63\x55\xcd\x50\xe4\xf8\x55\xb2\xda\x84\x23\x5e\xea\x3a\xe4\xc4\x83\x5f\x2f\x30\xb9\x44\xa9\xcd\x65\x3a\x70\x43\x1e\xd4\x6e\x59\x35\x88\xfe\xb4\x82\x94\xc5\x0d\x43\x72\x9b\x12\xc4\x6f\xa9\xbd\xa7\x22\x75\x9e\xf8\xb4\x92\xc6\xc3\x3c\xf4\xc4\xd3\x4d\x25\xf6\x75\xba\x98\xc9\x45\xcf\x5a\x62\xec\x9a\x89\xa9\x22\xd4\x97\xe1\x25\xb1\x9d\x25\x0c\xfa\x73\x2a\x3a\xe4\x89\x63\x66\x52\x99\xcb\xdb\xf4\x6d\xba\x2a\x3b\x02\xe6\x99\xec\x3f\xd0\x5e\x6f\x53\xb9\x7d\x74\x47\x1e\x06\xd3\xd6\xe6\x56\x18\x0b\x0c\xb7\x41\x63\x3b\x9c\x5e\x89\x16\xf3\x6a\x72\x41\xd2\xf6\x3e\x6f\x36\xc5\x82\x72\x69\x67\x9c\x94\x29\x66\x76\xd2\x69\x36\xe8\xab\xe6\xca\x35\xf6\xc9\x59\xd7\xad\xdd\x62\xe7\xb9\x72\xd5\xba\xb0\x2d\xaf\xbe\x08\x4f\x52\xa5\xb4\x8f\xcf\x1b\x19\xfe\x8b\x19\x61\x6f\xa3\x6b\x92\xae\x99\xed\xa5\x18\x25\x09\xa1\x3f\xe2\x49\x1d\x3e\x50\x17\xfd\x02\x14\xb0\x72\xab\x43\x50\x42\x49\x76\x7f\x0f\x77\x3d\xcf\x1d\x11\x8d\xe2\x48\xf9\x52\x4a\xd5\xda\x71\x47\x4c\xf9\xd6\xd7\x91\x54\x6c\x3f\x57\x7b\xc2\x75\xf7\x2c\x53\xa0\x8a\xc2\x7e\x3d\x85\x7d\xbb\x3f\xc0\x98\x11\x98\x23\x55\xbe\x99\x55\x06\x8f\x8c\x6d\x89\x62\xd7\xa7\xf8\x71\x98\xec\xd3\x32\x30\x23\x0c\x86\x41\x87\xd6\x89\xb0\x3b\xb7\x62\x80\xdc\xb5\x9d\xd6\xdd\x56\xf1\x6a\xde\xf2\x62\xea\x60\x47\x0b\x47\x76\x0b\x63\x4f\xcc\x6f\x34\xaa\x59\xc6\xaf\xe8\x39\x71\x52\x16\x05\x00\x70\x48\x0b\xbd\xa3\xef\xe4\x3c\x61\x9e\x4a\xac\x8f\x9e\xa9\x2d\xde\xdc\x6e\xf9\xac\xa8\xa8\x71\x73\xd2\x9c\x22\x45\xf5\x89\x1c\xf0\x65\x9f\x3c\xff\xf2\xf5\xf3\xb3\xf1\xdb\xe7\x93\x46\x98\x2c\xc4\xcc\xeb\x05\x69\x08\xad\x6c\xd1\xc8\xd2\x34\x69\x37\xbe\x8c\x49\x98\x91\xc6\x3a\x23\x8d\x42\x7e\xe6\x3e\x73\x9e\x61\x92\x31\x12\x2e\xda\x6a\x81\x68\x57\xec\xe2\x84\xe6\x8e\xb8\x65\x42\x55\x6f\x74\x27\x25\x1f\xe7\xcf\xee\x56\x84\x32\xf2\x91\x71\x45\xaf\x2a\x37\xae\x82\x17\xb4\xbc\x92\x43\xcb\x59\x98\x80\xcb\x3f\x20\xd8\x08\x1b\x57\x2a\xd3\x06\x4f\xd4\x90\xda\x72\xe3\x82\x2c\x53\x4a\x1a\x7a\xce\x3c\x5d\x91\x84\x93\x78\x1e\xc6\x31\x59\x20\x77\x54\xd0\x14\x6b\xd0\x73\xc8\x37\x19\x58\x8c\x3c\x7e\x18\xc6\xd1\x42\xec\xd1\x0f\xc5\x66\x87\xef\xb0\xa6\x37\x3a\x73\xa8\x0f\x6c\xa5\xf8\x4d\x2a\x5c\x46\xf6\x1b\xd5\x9b\x92\xcb\x28\x63\x84\x72\xba\xbd\xe2\x12\xc8\x6a\x56\xbd\x2d\xa9\x50\x5f\xa3\x5b\x1b\x68\x55\xe4\x25\xb3\x18\x99\x1e\xc7\x35\x2b\x2e\xd1\xb6\x68\x85\xed\xc6\x4d\x32\xb0\x2e\x5e\x0e\x40\x39\x3a\x95\x19\x38\xc4\xdd\xbd\x31\xc3\xc2\xe1\x2a\xcc\xf4\xb2\x46\x9d\x03\x75\x69\x89\xc9\x4c\x54\xda\x78\xf4\xcd\xb3\xd3\x01\x6f\xc9\x47\x56\xe1\x7b\x5f\x99\x63\x75\x56\x76\xfc\xe2\xb6\x28\x11\x7d\x1c\x97\xfd\xf6\x6b\x70\x1a\xc7\x71\x31\x0f\xe9\xc1\x59\xa9\xcc\x54\x8a\x9a\x66\x73\xcf\x57\x23\x67\x65\x04\x87\xa8\x89\x8c\x3d\x5f\xaf\x67\x57\x7a\xc9\x3b\x4a\x33\x29\xbb\x30\x4a\x7f\x53\xe1\xb0\x58\x1d\xc7\xcd\x0b\x6a\xe4\x4a\x5b\x95\x65\x66\x2b\x7f\xbc\x54\xdf\x50\x64\xda\xe4\x26\x8c\xd7\x21\x23\xbc\x1e\xd9\x3c\x5c\x91\x37\xe4\x17\x6b\x02\xbb\xa4\xf3\x7e\xc0\x31\x0a\x82\x40\xa9\x5b\xa7\xf9\xa0\xa5\x8f\x2d\xf0\x86\x85\x58\xbe\xd2\x23\x0a\xc7\x1b\xb8\x98\x19\x1a\xe7\xa9\x53\x52\x41\x8d\x17\xb5\xc4\x2e\xa7\x3e\xf0\x9e\xe7\xba\xc3\xbd\xbd\x50\xac\x56\xc3\x79\x00\xea\x6c\x23\x59\x5b\x33\x2a\x16\x1b\xd8\x95\xa5\x25\xf4\x79\xed\xcb\x4b\x2c\x9b\xe7\x03\xb9\x43\x18\xa2\x6b\x80\xb5\xd5\x01\x42\xae\x94\xbf\x36\x8f\x57\x85\x5b\x81\xbd\x6a\x69\x5b\xb6\xd2\x83\x7b\x91\xd1\x70\xcf\xc7\x1f\xc8\xdd\x50\x9a\x9b\x39\x29\x64\xc8\x16\x9b\xf3\xa9\x27\x27\xde\x86\xc8\x4d\xfe\x27\x27\xfe\x46\x4f\xa4\x9e\x9c\x74\x36\x7a\x96\xf5\xe4\xa4\x9b\xcf\x45\xcb\x2d\xe8\x62\xfa\xb9\x71\x34\x84\x4d\x9c\x2a\x3f\xae\xc1\xf2\x46\x84\x26\x7c\xf6\x46\xee\x8a\x37\xc2\x26\xcf\x5f\x1a\x33\xc0\x8d\xe3\x1d\xc9\xc5\x44\xfa\x5f\x47\xe5\x4c\x3e\x7b\x9b\x9f\x48\xb5\xe7\x99\xf9\xf9\xdd\xa1\x11\xef\xec\x75\x5d\xbc\xce\xe1\xd0\x2e\xa9\x2e\x62\xf7\x70\x48\x4f\x9d\x12\x56\xfe\x08\xb5\x1c\xda\xf2\xdd\x16\x9a\xc8\x66\x0f\x6c\x78\x77\x82\x38\xff\x02\x44\xcc\x04\x98\x67\x32\x9c\xe6\x71\x2f\xd0\xd0\x4a\xd8\x9f\x20\x35\xa5\x50\x3a\x3d\xe7\xb4\x88\xc8\x17\x13\x34\x2c\x21\x37\x41\x56\x0d\x8e\x1f\xaa\xc1\x59\x4d\x0d\xce\x1e\x59\x83\x65\xb1\x06\x67\xdf\xa4\x06\x67\x15\x35\x38\xb3\x6b\x70\xf4\x50\x0d\xc6\x35\x35\x18\xe7\x35\xb0\x31\x1c\x7f\x13\x0c\xc7\x15\x18\x8e\x2d\x0c\x7b\xde\x43\x18\x3e\xab\xc1\xf0\x59\x1d\x86\xcf\xbe\x09\x86\xcf\x2a\x30\x7c\x66\x63\xd8\x1f\xe6\xdd\x6c\x93\xf7\x73\x10\x80\x85\x94\x9d\x5f\x21\xd7\x4a\x3b\x90\xb9\x53\xa3\xd1\xa7\xdd\xbc\x72\xbf\xb2\x18\xa0\xfb\x2b\xbb\xf5\x06\xc3\x32\xc6\x26\x69\x3e\x43\x8f\xae\xe7\x67\x15\xf5\xfc\xcc\x2e\xad\xff\x40\x69\xe7\x8f\x2f\xed\xbc\xa2\xb4\x73\xbb\xb4\xae\x41\xd5\x53\x73\xe0\x09\xf6\xad\x09\x99\x72\x46\xfd\x02\x95\x7a\xb5\x39\x19\xf9\x94\xb3\x19\xd8\xd9\xf8\x7e\xa7\xaa\xad\x8c\xfa\x7f\x69\xb6\xd5\x17\x5f\x16\x52\x77\x1f\x48\xfd\xfb\x56\xea\xdf\x2f\xa4\xee\x3d\x90\xfa\xb5\x95\xfa\x75\x21\x75\xff\x81\xd4\x6f\xac\xd4\x6f\x0a\xa9\x2b\x79\xd4\xef\xd7\x31\xa9\xdf\x2f\x12\xee\xb0\x32\x83\xc3\xda\x0c\x0e\x8b\x19\x1c\x55\x66\x70\x54\x9b\xc1\x51\x31\x83\xe3\xca\x0c\x8e\x6b\x33\x38\x2e\x64\xd0\xf1\xaa\x32\xe8\x78\x75\x19\x74\xbc\x62\x06\x7e\x65\x06\x7e\x6d\x06\x7e\x31\x83\x4a\xee\xeb\xd4\x8a\x8a\x4e\xb7\x98\x41\x25\x03\x76\x7a\xb5\x19\xf4\x74\x06\xd2\xed\x6b\xb8\x67\xc8\x36\x5b\xe4\x09\x35\x67\x93\xeb\x35\xa7\xe5\x61\x6d\xb3\xd9\x33\x23\x1a\x39\xd5\xa7\x69\x36\x75\x1a\x78\xd4\x27\x25\xe9\x44\xcd\xe6\xa0\x6f\x9e\xdf\x63\x1d\x85\x05\x66\xc5\x50\xc3\x9e\x06\x83\xbe\xdc\x88\xc6\x5f\x4f\x82\x63\xaf\x28\x9a\x2a\x3c\x0b\x72\xc5\xac\xd5\xed\xb8\x43\xff\xb8\x63\x96\x57\x92\x6d\x3f\x43\x66\x81\xbd\x23\xab\xc0\xfe\x61\x79\x4c\xca\xf3\xdf\xef\x1d\xb9\x8f\x42\x77\x27\x96\xfb\x83\x9e\x3b\xec\x56\x21\x59\x95\xcc\xb3\x0a\xec\xfb\x36\xba\xfd\x47\x15\xd8\xf7\x5b\x9d\x43\x77\xd8\x1f\x3c\xb2\x4c\x9f\xc7\xee\xf8\xc7\x8f\x8c\x0e\xb1\x3b\xde\x63\x63\x1f\xf1\xd8\xbe\xcd\x13\xce\x8e\xf8\xc7\xae\xf6\xfd\x61\xa5\x99\x9c\xcb\x97\x70\xb0\x61\x69\xae\x40\x1e\x78\x48\x72\xcf\xdb\x8c\x48\xab\x4d\x9d\x7e\x58\x75\x16\xc7\xe5\x99\x8c\x59\xb1\x66\x6a\xa4\x53\xa7\x31\xc8\x52\x84\x3f\x91\x5d\x52\xd9\x5a\x86\x9d\x8b\x15\x6b\x8c\xbf\x05\xa3\x59\xaf\x77\x63\x02\x18\x81\xd5\xc2\x82\xfc\x45\x7b\x6b\xc9\xb3\x62\x85\x57\x0c\x44\x91\x6d\xa2\x5d\xb7\x44\xbb\x02\x7c\xb3\x91\xe7\xb0\xaa\x2c\x75\xc1\x4c\x45\x91\x2d\xb5\xe7\xec\xb1\xcd\xc6\xd9\x2d\x4f\xdc\x66\x33\x37\x47\x5d\x70\xbd\xa9\x62\x00\x56\x34\x36\xe5\xd6\x50\x56\x69\x86\x3e\xc6\x04\x75\xb9\xc1\x59\x6c\xfb\x64\x51\x61\x59\x32\x7d\xde\x02\x2c\x7d\x6f\x36\x75\x6b\x17\xb9\x79\x0b\x11\xb9\xa1\xae\x4e\x25\xdd\x62\x35\xcd\x0f\x21\xad\xe2\x94\xeb\x05\xb1\xe7\x61\x54\x23\xe6\xe7\x19\x99\x7b\xd4\x05\x36\x7a\x2f\x1a\xbb\x8b\x49\xfb\x22\xa5\x0b\x42\xe1\xb8\xaa\x00\xdd\x5e\x45\x8c\x20\x5c\x8d\x28\xd9\x95\x92\x63\xaa\x36\xb1\xe9\xe3\x93\x6c\x3f\xe1\xc2\xc4\x5d\x9c\x5e\x56\x61\x0e\x27\x2a\xa9\x49\x05\xb1\x55\xb1\x2d\xa7\xd8\xab\x43\x79\x46\xda\xc3\x18\xce\x2d\x34\x5a\x26\x8e\xe6\x44\x1c\x3b\xa4\xcf\x46\x96\xd3\xa4\x15\xb9\x48\x37\xb3\x2a\x30\x26\x45\xf4\x09\xa5\xb6\x5f\xc1\xb7\xaf\x00\x64\xf5\x1d\x54\x01\xf2\xf9\x46\x95\xa0\x24\x8b\x7e\x49\x2a\x8e\x0f\x8a\xb2\xcf\xc3\xcf\x61\x12\x54\x3e\x32\xd7\xbd\x67\x62\x81\x57\x9f\x8b\xe4\x98\xc7\x02\xb9\x7a\x70\xae\x82\x62\x26\x0f\x23\x10\x2e\x7a\x38\xe1\xe2\x46\x4f\x9b\x89\x93\x86\x99\x7a\x15\xc7\x0a\xc1\x9a\xb6\x0f\xbe\x96\xbc\x0f\xc0\x23\xe3\x8f\x4e\x9a\xa7\x72\x4f\x08\x78\x89\x64\xf2\xac\x61\x75\x8c\x2a\x6a\x20\xec\xcf\x70\x54\xf6\x4f\x18\x45\xfb\xfb\x23\x48\x63\x3a\x68\x5c\x12\xe6\x44\xfa\x54\x37\x62\x1d\xd6\x29\x61\xb0\xb0\x9a\xe5\x9b\x65\xc4\x29\xc9\xa5\x63\x36\x73\xd4\x70\x9a\x57\x07\x27\x81\x87\xd3\x13\xe6\x8a\xc3\xdb\xcc\x7e\x38\x4a\x5b\xad\x13\x66\x95\x28\xd1\x60\xad\x7c\x86\xd1\x72\x6c\x78\xea\xe5\xb3\xd8\x79\xf4\x92\x1f\xc7\x5d\x2b\x69\xf9\xa7\xb6\x43\x44\xa2\xbc\x43\xc4\x8a\xbd\x57\x70\x23\x31\x7d\x32\xaa\x0f\x29\x2d\xee\x7c\x56\xb8\xca\x8c\xcc\x6d\x45\x30\x4e\x00\xa5\xd3\xfd\xfd\xc6\x53\x36\x72\xab\x0f\x64\xaa\xa8\xa6\x1d\xa1\x54\x2f\xdf\xf2\x32\x49\x57\x8e\x3b\x34\x7d\x35\xcc\x2a\xb6\x5a\x35\x28\x3f\x55\x27\x65\xd1\xc0\x06\xcb\x95\x5d\xd7\xe5\xdd\x27\x4a\xd6\x64\x44\xeb\x1c\xa8\xa8\x3c\xa1\x09\x4e\xc4\x96\xe3\xfa\xdd\xd3\x80\xe9\xd6\x0a\xd8\xbe\xef\xe2\x44\xbf\xb7\x02\xb5\xb7\xf2\xe3\xd3\x7c\xe0\xff\x18\x10\xbd\x99\xe4\x81\x13\xa8\xf5\xc9\xd3\xf5\xbb\x9f\x76\x6d\x55\x29\x9d\x00\xfd\xc0\x59\xdd\xc6\x10\x29\x64\x85\xb9\xdd\x0f\x46\x5f\x38\x9f\x9e\x88\x43\xe9\xd9\xd6\xdd\x6e\xab\xb6\x4d\xc0\xd2\xb1\x35\x44\x92\x13\x13\x57\x58\x33\x56\xd4\xb0\x16\xb4\xb9\x1a\xf2\xd4\x0c\x7e\x9e\x2c\x0a\x11\x9f\x27\x8b\xa0\xb8\xb8\x79\x1d\x7e\x2c\x94\xa9\x9d\xd7\x8c\xcc\xbd\xea\x85\x72\x41\xb1\x92\x7e\x27\x7b\xb8\x55\x0d\xce\xdd\xd2\x49\x58\xb0\x24\x0b\x2f\xb8\x92\x07\x07\xe6\x8a\xc1\x90\x92\x1b\x9e\x8e\xeb\x5a\x92\x49\x79\x9c\xe0\x7e\x8b\x49\xe0\xb9\x23\x49\x08\x4e\xc6\x11\x69\x05\x45\x09\x6b\x1d\x62\xe5\xba\x66\x19\xc1\x9e\x67\xe3\xa8\x8a\xaa\xc4\x50\xf9\xad\x0b\x86\x73\x47\x7b\x79\x56\xfb\xfb\x64\xd6\x6c\x92\xa7\xde\x48\xaf\x3c\x90\xa7\xb9\x8c\x3d\xd5\x4f\xfb\xfe\x90\x9c\x78\xa7\xde\xb0\xa0\x85\x24\xe4\x23\xfb\x36\x05\xb7\x5a\x50\xb0\x41\x81\x6f\x89\x00\x1c\x72\xfa\x3a\xba\xbc\x2a\x2a\xdf\x86\xc7\x43\x2e\xcc\x4d\x79\x02\xf2\x9c\xe6\xce\x20\x91\xec\x08\xfa\xd8\x54\xc7\x95\x83\x49\xa1\xa5\x5a\x2e\x85\xb3\x07\xa5\x6b\x95\xe9\x21\x51\x56\x15\xc2\x8c\xbc\x24\xcb\x6f\x8d\xdc\x03\x88\x71\xdc\x49\xab\x35\x22\x7c\x64\x7b\x34\x56\xb0\xca\x57\x50\x60\x6c\x67\xba\xcd\x26\x7f\xcf\x97\x51\x09\x0c\x77\x4a\xba\x54\x23\x2e\x92\x58\x1e\x75\xd2\x05\xd2\x37\x44\xb3\x3e\xc3\xdf\x3a\xe6\x3f\xf0\x46\xb9\x67\x8e\xaf\xa8\x0e\x9b\x57\x89\xe1\xfe\xf9\xc0\x29\xda\xbb\x84\x60\xbd\xb7\x5d\x55\xbb\x45\x09\x29\x9b\x88\x39\xc3\x39\x1e\x2e\x0a\x1f\x8d\x4d\x65\x7b\x4f\xa5\xa4\x30\x1a\x72\x58\xad\xbb\x4c\x67\x70\xe8\x2a\x9c\xdc\xd1\x6c\x3a\x51\x3b\xca\x7e\x44\x43\x58\xce\x63\xee\x28\x35\xd8\x31\x6d\xb5\xdc\x68\x9a\xce\x02\xaa\xfa\x4f\x54\x68\xec\xab\xca\x7b\x65\x4e\xeb\x78\x6a\x58\xa5\x4e\x15\x9c\xaa\xb2\xaa\x2c\xe1\xd0\x67\xd1\xc3\xe5\xb9\xac\x2d\x84\xdc\x36\x1c\x73\xf1\xc5\xb2\xe4\x84\x52\xf2\x7c\x56\x04\x56\x9e\x6b\xe6\x39\xaa\xda\x75\xf3\xd1\x4b\xae\x46\x73\xcb\x1b\x26\x8a\x4b\x85\x02\x81\xb7\x11\x8b\xab\x5a\x19\x52\x32\x0e\x44\xa5\x56\x86\x2a\x99\xfd\xa7\x25\xf9\xfe\x69\x69\xd8\xd6\xc3\xbf\xf2\x48\x15\x40\xc7\xcd\x75\x01\xdd\x96\xb2\x2a\x1f\xf7\xf7\x8b\xaa\xfa\x0d\x81\x03\x77\x0b\xa5\xca\x4e\x53\xf4\x8c\x3d\x35\xf5\x28\xd0\x68\xd4\x31\x2c\x4a\x13\xc9\x49\x69\x76\x11\x6d\x6f\xe6\x3d\xbd\x26\x7e\xde\xe7\xf6\xbc\xef\xc8\x19\x56\x76\x84\xbb\x72\xdd\xad\x69\x95\x02\x8b\x08\xe5\x4b\x6b\xda\x16\x0c\x94\xf4\xbc\x9f\x18\xee\x7e\x95\x13\x22\xca\x19\xba\xe2\x1c\xc0\x51\x94\xdf\xd6\x63\x95\xa1\x8f\x0e\xac\xf4\x90\xc2\x75\xf9\x05\xec\x61\x6d\xad\xfe\x84\x4f\x8b\x3c\x5c\x47\xa8\xa0\x0f\x0c\xb1\x82\x99\xca\xba\xc2\x75\xc8\xe6\x57\xc2\x76\x8f\xb1\x3a\x68\x9d\x2b\x25\xf9\x71\xed\x05\x07\x1f\x61\xb9\xe9\x8e\x0e\x27\x9a\xae\xd2\x5b\xa7\xeb\x3d\x71\xc8\x7e\xe4\xe2\x8e\xdb\xd2\x81\xfd\xe3\x27\x0e\xdb\x4f\xed\x40\xdf\x7f\xe2\xd0\xfd\x8c\x07\x72\x64\xcc\x33\xcb\x03\xfb\x08\x73\x1c\xb5\xa3\xe4\x8a\xd0\x88\x65\x41\x82\xa3\x76\x9a\x04\x29\xff\x59\x2e\x83\x0c\xab\xcb\x94\x6a\xb6\x0f\x98\x27\x31\x6f\x36\xe6\xb6\x47\x0a\xdb\x2e\x26\x62\xc2\x1b\x8e\x51\xcc\x58\xba\xfa\x92\xa6\xab\xf0\x32\x94\x5b\x92\xf7\xfc\x2d\x26\xea\x92\xae\x20\xda\x96\x0e\x5f\xb6\xae\x94\xfa\x56\xe7\xc9\x47\x35\xbb\x68\x65\xb3\xa9\xcd\x21\xe6\xcb\x66\x73\xbf\xdd\x1a\x15\xd1\x9b\xc3\x8b\x7b\x28\xcc\x44\x30\xd7\x68\xbf\x6f\x36\xea\x18\x98\x3c\x4c\xef\xfa\xc4\x56\xce\xcb\x65\x0d\x7d\xf3\x94\x6e\xe1\xaa\x8b\x1c\x82\xa3\x80\x5a\xf6\xb6\xbc\x65\x8d\x8b\xa9\xcd\x06\xee\x58\x8b\xe5\xc6\x7c\x73\x6b\x2a\xb8\x5a\x68\xef\xdb\x08\xfb\x05\xa4\x84\xe9\x35\x8e\x63\xb5\xab\xbf\xc2\xbb\x3b\x47\xa2\xd9\x5c\x90\x98\x30\xe9\x23\x9a\x87\x17\x2a\x5a\xe4\xf4\xc2\x45\x13\xa2\xc5\x1e\x37\x2b\x63\xfa\x05\xa5\xcb\x25\x5c\xce\x86\x99\x31\x23\x83\xf3\xad\xa8\x34\xa7\x00\xd3\x87\x20\xf0\x04\x36\x7a\x7c\x08\x2a\xa9\xd5\x62\x7e\x11\x8e\x67\xf7\x47\xf4\x44\x63\xa0\x48\x0e\xdb\x64\xa6\x74\xdf\x9f\x05\xf9\x95\x60\x74\x36\xda\xd1\x84\x51\xa9\x09\xc5\x79\xef\x91\xca\x53\xa9\x18\x66\x6d\x8a\x4c\x13\x57\x36\x8b\x49\x15\x9b\x15\xb7\x98\x6c\xc1\x85\xda\x12\x05\xdf\x79\xa7\xb3\x6e\xff\x23\xed\xcf\xbf\x7a\x19\xa0\x77\x1e\xc2\xa4\xfd\xe6\x8b\xcf\x02\xf4\xcf\xc1\xd3\xdb\x1f\x07\xe8\x9f\xe7\x4f\xcf\xf9\xd3\xbf\x00\x4f\x5f\xbc\x0d\xd0\xbf\x08\x4f\x9f\xff\x7e\x80\xfe\x25\xfe\x34\x3e\xfb\x41\x80\xfe\x65\xfe\xf4\xec\xf9\xcb\x00\xfd\x2b\xf0\xf4\x26\x40\xef\x2e\xf8\xd3\x67\x6f\x03\xf4\x0e\x0e\x0b\x7c\x79\x1e\xa0\x77\x09\x7f\xfa\x21\x0f\xbb\xe1\x4f\xe7\x3c\x6c\xc9\x9f\xce\x5e\x07\xe8\x1d\x15\x18\x04\xe8\x5f\x85\x87\x17\x01\xfa\xd7\xf8\xc3\xe4\xe5\xf3\x00\xfd\xeb\xf0\x74\xe6\x07\xe8\xdf\x10\x4f\x9d\x00\xfd\x9b\xe2\xa9\x1b\xa0\x7f\x4b\x3c\xf5\x02\xf4\x6f\xf3\xa7\xcf\xc7\x3f\x08\xd0\xbf\x03\x99\xfc\xe4\xf3\x00\xfd\xbb\xa2\x16\xcf\x02\xf4\xef\x41\x59\xe3\xcf\x03\xf4\xef\x43\xd8\xab\x00\xfd\x07\x10\xed\xab\x67\x01\xfa\x0f\x21\xe8\xcd\x59\x80\xfe\x23\x40\xee\x4d\x80\xfe\x63\xfe\xf0\xfd\x37\x01\xfa\x4f\xf8\xc3\xeb\x37\x01\xfa\x4f\xf9\xc3\x57\x6f\x02\xf4\x9f\x41\xba\x2f\x03\xae\x09\x92\xf6\x84\xd7\xfd\x3f\x47\x5b\x87\xb5\xcf\x3c\xf0\x85\x38\xf3\x82\xfb\x2d\x57\xae\xbe\xd3\xa6\xc3\xac\x7d\xf6\xd9\xf8\xf5\x9b\xe7\x6f\xdf\xc0\x66\xb9\xf6\xe4\xf9\xf9\xf8\xab\x97\x6f\xdf\xcb\xd0\x20\x87\xb7\x9f\x19\x91\xa7\xde\x2c\xb8\x47\x3f\x43\x43\xf4\xeb\xff\xee\x6f\x21\x1c\x0e\xd1\xaf\xff\xee\x7f\x8b\xf0\xc5\x10\x5a\x67\x3e\x84\x66\x58\x0c\x45\x1b\x0c\xa1\xa1\x96\x43\xf4\x97\xff\x08\xe1\xcb\x21\xfa\xcb\x7f\x8c\xf0\xd5\x10\xfd\xfa\x6f\xff\x11\xc2\xd1\x10\xda\xee\xe7\x43\xf4\xeb\xbf\xf3\xf7\x10\xfe\xc0\x7f\xff\x36\xc2\x31\xff\xfd\xaf\x10\xbe\xe6\xbf\x7f\x07\xe1\x84\xff\xfe\x05\xc2\xe9\x10\xfd\xfa\xbf\xfe\xbf\x11\x5e\xf1\xdf\x3f\x47\xf8\x17\x3c\xfc\x6f\x20\x4c\xf9\xfb\x5f\x20\x9c\xf1\xdf\x7f\x82\x30\xe3\xe1\x7f\x88\xf0\x9a\xff\xfe\x11\xc2\x37\xfc\xf7\xcf\x10\xbe\xe5\xbf\xff\x10\xe1\x8f\xfc\xf7\xbf\x40\xf8\x6e\x88\x7e\xfd\x07\x7f\x84\xf0\x2f\xf9\xef\x3f\x40\x18\xdd\xa3\x21\xfa\xff\xfe\x06\xc2\x68\xc3\xeb\xf6\x07\x7f\x1f\x61\xb4\x45\x43\xf4\x97\xff\x13\xc2\xe8\x57\xfc\xe1\xff\x40\x5b\x83\x0e\xed\x71\x70\x8f\x3e\x11\x11\xac\xf0\x67\x72\x0a\x28\xa7\x58\x6f\x96\x47\xc5\xe8\xf7\xf8\xc3\xff\x83\x30\x9a\xa2\x21\x8a\x7e\x8e\x30\x7a\xf7\x8e\x07\xfd\x13\x84\xd1\x0c\x0d\xd1\x46\xe2\xf2\x97\x7f\x22\x71\x59\x2a\x4c\xfe\x42\x61\xf2\x67\x76\x89\x67\x46\x5b\x4d\xfb\xbc\x30\x9e\xf5\xd7\x7f\x53\x65\xfd\xf5\xdf\x95\x59\x7f\xfd\x5f\x22\x8c\x7e\xca\x1f\xfe\x10\x61\x68\xc3\xaf\xff\x54\x96\xf6\xf5\x1f\xc9\xd2\xbe\xfe\xdf\x65\x71\x5f\xff\x03\x59\xdc\xd7\x7f\x61\x17\xf7\xba\x58\x9b\xaf\xff\xbe\xac\x0d\x6f\x65\x59\xe4\x1f\xcb\x22\xff\xf2\x8f\x55\x01\x7f\xaa\x0a\xf8\xbf\x54\x01\x7f\xa2\xea\xf3\x27\x76\x01\xbf\x1f\xdc\xdb\xf9\x7e\xfd\x3f\x96\xf2\xfd\xfa\x7f\x51\x55\xf9\x5f\x55\x55\xfe\xec\xe1\x92\xbe\xfe\x73\xbb\xa4\x1f\xc8\x92\x00\xcb\x3a\xa2\xfd\x61\x3d\x89\x54\x8b\x7c\xfd\xdf\xdb\xf9\xfe\xa4\xd4\xe0\x7f\x5c\x4f\x22\xc0\xf7\x67\x0a\xdf\x7b\x55\x71\x28\xe9\x7f\x2b\xd5\xe0\x1f\xda\x25\x3d\x37\xdb\x7e\x30\x53\x94\xfb\x9b\xaa\x3e\x7f\x4b\x17\xf7\xf7\xea\x99\xe0\x8f\x54\xb9\xff\xb3\x2a\xf7\xff\x7c\x88\x09\xfe\x7a\x7d\x0d\xff\x07\x5d\xe4\x7f\xa3\x98\xe0\xff\x55\x3c\xfd\x8f\x54\x01\xff\x58\x15\xf0\xc7\x76\xbe\x9f\x99\xf5\x39\xd4\xf5\xf9\x83\x1d\xed\xf3\x5d\x30\xf5\x14\x05\x48\xf5\x52\x68\x06\x9b\xff\xfe\x74\x37\xff\xbd\x97\x0d\x64\xb3\xe1\x0e\x76\xf9\x73\xb4\x2d\x8b\xf3\x83\x27\x4f\x7e\xa7\xf1\xa4\xf1\xe2\x7a\x25\xcd\x49\x38\xcc\x48\x6e\x60\xb8\x26\xec\x2a\x5d\xe0\x06\xbb\x0a\xd5\xa6\x06\x22\x22\xa8\x39\xe3\x06\x4b\x1b\x61\xe3\x47\xe4\xe2\x4d\x3a\xff\x40\x18\x1f\x18\x48\x78\xdd\xe6\x59\xfe\xde\x35\xc8\x7f\x71\x44\xd1\x41\xb8\x58\xa4\x49\x76\x20\x32\x91\x3f\x10\x8b\x2b\x5e\x49\x46\x1a\xaf\x5e\xbc\xfd\x9d\xc6\x93\x83\xdf\xd9\xb3\xcf\x8c\x55\x9a\x3b\x73\xa8\xe3\xb9\x85\xab\x4d\xac\xb1\x48\xba\xff\x1a\x57\xd4\x8a\x52\x4a\x66\x8f\x7b\x4f\x03\x7d\xaa\x13\xdd\x6c\x28\x37\x1c\x00\xfd\x80\x61\xd2\x7e\xbf\x8c\xd7\xd9\x95\xbc\x8c\xce\x5a\x2e\x95\xbb\x8b\xda\xef\x45\xc6\xa2\xca\x22\x22\x37\x3e\x2a\x82\x85\x54\x86\x99\x39\xb5\x00\x5b\x19\x8f\x03\xeb\xf2\x00\x18\x64\xc4\x95\xb3\xf7\x5c\xbb\x7f\x9b\x16\xd1\x03\x5a\x55\x24\x3e\xad\x0c\x6d\x05\x6c\x58\x8d\x48\xc0\xcc\xc5\x62\x9b\x18\xd8\xe7\x0d\xc0\x71\xb8\x24\xec\x15\xc9\xb2\xd0\x9c\x8f\xe7\x16\xc5\x69\x01\x3f\x87\xb5\x17\x21\x0b\xdd\xa1\xa2\x9d\x7c\x87\x4c\x32\x92\x2c\x26\x21\x0b\x6d\x95\x5f\xec\x96\x23\x70\x1d\x70\xf9\xcc\xaf\x6b\x51\x2a\xb2\x91\x70\x31\x6d\x36\x89\x75\xef\xa8\xce\xdd\xad\xcc\x67\x1e\xa7\x19\xe4\xb2\x20\x9c\x02\xf2\x44\x63\xcc\xdc\xea\xe8\xb0\x10\x5b\x19\x1d\x2e\x72\x26\x25\x36\xe3\xad\xc1\x0d\x86\x2a\x7c\x1c\x96\x73\x1f\x3b\x55\xac\x37\x64\x6e\xb3\xc9\x2a\xaf\xd0\xab\xad\xb5\x34\x87\x54\x16\xb6\xee\x5e\x66\x7e\xc1\xfa\x76\xe7\x90\x1e\x17\x00\xb3\xd3\x97\x6a\x65\xa4\x15\x30\xe5\xad\xb1\xc5\x6c\x5b\xa1\x28\x4a\xc9\x72\x1e\xb1\x5c\x5a\xcc\xd3\x78\x7d\x9d\x64\xb0\x55\x0e\x0e\xb1\x62\x29\x88\x93\x45\x74\x4d\x92\x2c\x4a\x93\xac\x91\x2e\x1b\x11\xcb\x1a\x93\x2f\x5e\xe9\xd3\x8e\x7f\xa7\x01\x39\x7d\xf2\x49\x63\xbc\x5a\xd1\x54\x4a\x8e\xfd\xc6\xeb\xf4\x36\x1b\x36\xde\xd2\x75\x32\x0f\xc1\x2c\xe4\x19\xdd\x44\x19\x5c\x7e\xb8\xb4\xe5\x94\x7d\x80\x72\x43\x1c\x8e\xd5\xb8\xb8\xb3\x63\xd1\xf4\x56\x82\x54\xa1\xfb\x8d\x33\x81\xf3\xb7\x2c\x08\x0e\xef\x2a\x95\x33\xbf\x0a\x69\x38\x67\x84\xf2\x22\x44\x14\x07\xec\xb0\xc6\x22\xca\x56\x71\x78\x37\x6c\x44\x49\x1c\x25\x5c\x12\x97\x31\xe4\xd4\x63\x0a\x19\x4e\x2c\x91\x03\x1c\x08\xc7\x23\xcb\xfb\x45\x79\xde\xf9\xcd\x3c\x92\xf4\x6e\xbd\x6c\x5e\x46\x8c\x7f\x7e\x63\xa9\x5c\x16\xc4\x2b\x9a\xae\xd2\x8c\x7c\x5f\xad\x4d\x16\xb7\xd5\x91\xc2\xc1\x16\xea\xa4\x4b\x75\x61\xf7\x3a\x8e\x47\xd6\x91\x40\x81\xbc\x3a\xef\x92\xb0\xb3\xf4\x7a\xb5\x66\x64\x01\x47\xb4\x39\x75\x39\xe1\x24\xbf\xdf\x0c\x96\x37\x94\xb1\xf2\x43\x6e\x9b\x38\x48\x34\x3a\x72\x5d\x1c\xe6\x77\xfb\x78\x78\x67\x9a\x5b\xb9\x86\xb7\xef\x1f\xba\x38\x7e\x18\x25\x17\x5f\x05\xc9\xbe\xa3\xf3\x8c\x2b\xf2\x5c\x85\x8b\x45\x94\x5c\xee\xb3\x74\x85\x5c\xb7\xf5\xa8\xb8\x17\x30\xd9\x8a\x5c\xd7\xc5\xf3\x20\x7c\x64\x01\x54\xd6\xf7\x71\x45\xc4\x64\xc9\xa0\x80\x75\xe0\x10\xfb\x00\x35\xfb\xb5\xbd\x8c\x68\xa6\xa8\x0e\x6b\xea\x2e\x5e\x05\x6b\xb1\xd9\xf7\xb3\xb7\xaf\x5e\x2a\xa6\x58\x4b\xa7\x23\xc9\xef\x01\x12\xfc\x8e\xb0\x11\x37\x40\x3f\x42\x38\x0a\xd6\x1c\xb1\x67\xe9\x3a\xe1\xa8\x9c\xc5\x11\x49\xd8\x6b\x38\x6d\x52\x9c\x8c\x87\x4b\x59\x21\xcc\x76\x24\x12\x4d\x6d\x95\xb3\xc2\x34\x67\x8f\xab\x03\xe6\xe2\x34\x7f\x9f\x1f\x44\x2e\x16\xd7\xb6\xa7\x62\x59\x9c\x6e\xb9\xd8\x5f\x16\x26\x72\xe4\xc4\x59\x91\xd9\x61\xfb\x17\x1f\x9e\xc4\x7a\xbb\x43\xc5\x9a\x3c\x15\x5e\x31\xb6\xcc\xad\xed\x27\x86\xec\x2d\x66\xcf\x85\x70\x21\x1b\x0b\x33\x23\xe9\x32\x62\x2a\xfa\x4e\x89\xbd\x8e\x63\x71\x2b\x5e\x03\x24\x43\x63\x99\x52\x7d\xd0\x64\xbd\xf4\xd0\xa9\x8c\xc7\xdf\x82\x2c\x11\x97\x15\x71\x1c\xdf\x40\x11\x55\x6b\x72\x23\x6a\x0f\xb1\xe5\x43\xe1\xe7\x82\x61\x33\x07\xe5\xc8\x22\xf7\x14\x89\xf1\x17\x0d\x51\xb8\x58\xa0\x21\x3b\x15\xbf\x2a\xb8\xea\xde\x9a\x29\x9d\xd9\x99\xd8\x6d\x91\xa3\x9b\x15\xd1\xe5\xda\x4e\xb1\x36\x8f\x1b\x53\xdf\x5e\x45\x59\x43\x36\xc2\x8a\xa6\x37\xd1\x82\x64\x52\x59\xcf\xa0\xb5\xc4\xe0\x1e\x25\x97\x8d\xb0\xa0\xaa\xcb\xb7\x45\x5a\xa9\xb4\xd7\xb6\xae\x4e\x96\x3f\xfd\xb6\xb5\x77\x5d\xd0\xf8\x9f\xa9\xf1\x7f\xa5\x6a\xbc\x10\x64\x7f\xed\xcd\x17\x9f\xab\xe3\x24\x84\xd6\x3e\x42\x19\x5b\xa4\x6b\x86\x82\x80\x4e\xbd\x59\xb3\xe9\x94\x15\x7e\x3a\xf5\x67\xb9\xba\x0f\x6f\x0f\x6b\xfb\x50\x94\xb8\x6d\x34\x5a\xde\x39\x53\x5e\x4e\x94\x20\x4c\xf2\xc4\xec\x8d\xed\xd7\xb8\x23\x2d\x61\xef\x85\x63\x13\x11\xeb\x87\x04\x04\xee\xcc\xfd\x0e\x4d\x0a\x75\xcb\x89\x2a\x47\x21\xf8\x80\xb1\xa1\x39\x7a\xf2\xcd\xac\x8e\xfa\x74\xbc\x4a\x05\xe8\x3f\x6d\x76\xc8\x8e\x6e\x6c\x1b\x24\x85\x88\xf5\x96\x49\x7d\x85\xab\x72\x9b\x3c\xc6\x56\xf9\x2e\x16\x01\xa9\xd3\xed\x71\xc5\xc1\xb8\xf0\x59\x9f\x7a\x9c\x84\x37\xd1\x65\xc8\x52\x8a\xb3\x20\x3d\x45\x49\xba\x20\x68\xa8\x03\xe1\x48\xa6\xf1\x25\x49\x18\x4e\xaa\xc0\xab\x38\x64\xcb\x94\x5e\x8f\x58\x7e\x27\x57\xb0\xb7\xf7\xab\x4c\xbb\x61\x20\x19\x8a\x38\x27\x89\xd3\x2b\x0b\x11\x78\x10\x72\x37\x1b\x3b\xf4\x2d\x8d\x16\x24\x61\x2a\x59\x38\x87\xeb\x81\xe5\xd0\x38\x45\xaf\xc2\x79\x94\xb0\x34\xbb\x42\x98\x3f\xbf\x48\x18\x89\xc5\xe3\x97\x5f\x9e\x89\x87\xc1\xd1\x0f\xd0\x0c\x27\x22\x83\x17\xab\x70\x11\xa0\xe8\xcb\x90\x57\x3d\x48\x64\xd8\x55\x9a\x10\x1e\xca\x7f\xf3\x70\x7d\xbd\xba\x5d\xa4\x0c\x44\x98\x3f\xf9\x03\xf1\xdb\xed\x88\xdf\xb3\xe7\x79\x59\x70\x79\x57\x90\xe4\x75\x81\x00\xe4\x3e\x0d\xbc\x07\xda\xb7\xe2\x30\x5c\xb5\xf3\x61\x15\x5e\x92\x1f\x5b\x66\x87\x71\x64\x9d\x80\xc2\xb1\x9b\xfc\xe9\x27\x23\xd6\x6c\xb2\xbd\x20\xc8\x48\xbc\xcc\x6f\xb9\x51\x0f\x52\x07\x1e\xb9\x74\x3f\x60\xbc\x13\x66\x84\xbd\x24\x4b\x86\xa3\xfc\xfd\x6d\xba\xc2\x2c\x40\xe2\xe5\x4b\x30\x58\x50\x94\x34\xd8\xa9\x8a\x20\xc2\x86\x05\x6b\x46\x8e\x91\x53\x8a\xa3\x59\xf9\xba\x7f\x70\xc7\x16\x52\x3c\x0c\x44\x15\xd5\xa0\x1a\x4e\xbd\x99\x30\x6f\xe6\x24\x8a\x1d\x87\xbf\xb7\x9c\xe4\x94\x0a\x4d\xfa\xa0\x33\xf4\x5c\xf7\x40\xbe\xb9\x38\x9c\xfa\x66\x74\xfe\x7a\x40\xa5\xfe\xcc\xa1\x2a\xb3\xeb\x28\x71\xb4\xd1\xc4\x83\xb1\xef\xe2\xb4\xe5\x9b\x39\x14\xe2\xf8\x10\x27\x83\x38\xdf\xf8\x16\x77\xcc\x84\x95\x95\xd2\x45\xf6\x9a\xc4\x21\x8b\x6e\xc8\xdb\x54\x5d\xb9\x10\x99\xe0\x20\x15\x6f\xd6\x29\xd0\x65\x47\x88\x4c\x9d\xed\x9e\x1a\x41\x38\x0c\x12\x5e\x99\x38\x48\xa6\xfe\x4c\xd3\x10\xce\x83\x8e\xe1\xfb\xfe\xe3\x30\xc4\x77\xc3\x78\x5b\x31\xb1\xfa\xdd\x88\x14\x1f\x44\x4a\xed\x29\xdd\xc2\xab\x29\x26\xd7\x01\xc1\x51\xfb\x0a\x74\x74\xb9\x01\xf0\x0d\x4b\x29\x1f\xd9\x13\x72\xdb\x88\xda\x71\x74\xd1\x96\x21\xed\x57\xe4\x3a\xa5\x77\x58\x3b\x75\xc9\x28\x22\xb5\x3a\x8c\x26\x07\x0b\xb3\x90\x2c\x33\xc7\x05\xf7\x21\xc4\x87\x90\x7d\x92\xcc\x53\x6e\x5a\x21\x8c\x68\x78\x9b\x5f\x6f\x02\x08\xcc\x53\x1a\x32\x92\x1f\x47\xa9\xce\xd5\x97\x0e\xf4\x10\x2b\x92\x77\xb6\x9b\x29\xa3\x24\x63\x61\x1c\xff\x80\xdc\x5d\xa4\x21\x5d\x38\x6e\x95\x8f\x44\x94\x2c\xd3\xb2\x79\x73\x2f\xe7\x37\x86\xca\x39\x88\xbf\x48\x2f\x66\xe5\x87\xb3\x2d\x78\x0a\xac\xd9\x6a\x6d\xdb\x70\xc2\xf5\xd7\x44\x52\xba\x6f\x29\x94\x41\xaf\xf9\xea\xed\xb9\x3f\x80\x39\x4a\x52\x38\x9d\xb2\xa4\x4e\xe5\x4e\x1c\x72\xf0\x0c\x08\x66\x4f\xbd\x53\x2b\x53\x9e\xf2\x8b\x1b\x42\xe3\xf0\x0e\x12\x0c\x77\x40\xe5\xed\xa5\x65\x2f\x8a\x52\xd1\xca\x6b\xa8\x22\x1b\x13\x21\xec\x15\xeb\x41\x98\x10\xc2\x35\x4e\x74\x90\xa1\x1d\xa9\x4c\x0b\xc1\x32\x84\x92\x64\x4e\x2a\xf6\xb9\x89\xdd\x4b\xf6\x1d\xe4\xfa\xc2\x73\xf3\x28\x61\x56\xc9\x82\x14\x93\x29\x9d\xc1\x01\xae\xb6\xeb\xc7\x8b\xa4\xd8\xa2\x92\xf1\xda\x69\xf2\xc3\xb7\x3f\x20\x77\x19\xa3\xe9\x07\x5b\xdd\x05\x57\x5a\xc5\xa0\xa0\x54\x8a\x8d\x67\xe5\x48\xc5\xd2\x5e\x17\x77\xdb\x94\x77\x8a\x41\xc9\xaa\x4f\x15\xe3\x83\xfe\xc3\x14\xb3\x06\x14\x33\xe1\xfb\x16\x61\x02\xb0\x6d\x71\x46\x16\xee\x6a\x0c\x59\xb9\x91\x4b\x15\xcc\x37\x04\xd8\x75\xb2\xc2\x4b\x98\xe5\x50\xa0\xfa\x3a\x29\x77\xc8\x02\xe7\x55\xf9\xf1\x59\xfc\xf8\x40\xff\xb6\xb2\x03\x45\xb9\x9a\x81\xab\x51\x11\xce\x26\x9f\x81\x10\x4b\xff\x2a\x5d\xbb\xf2\x6e\xbd\xa6\x7a\x63\x29\x54\x44\x38\x28\x56\xc9\x2d\x71\x11\x50\xc5\xc4\x0c\x17\xbf\xf2\xca\x8d\x35\x8d\x0b\x79\xe5\xd5\x3c\x4b\x93\x44\x1c\xc7\x74\x1e\xce\x59\x4a\xef\x82\x68\x24\x2e\x3e\x7f\x08\xc7\x8b\x50\xde\xec\xa3\x4d\x7e\x71\x9c\x6f\x95\x03\x9a\x75\xc1\xa1\x7b\xff\x98\x06\xe2\xd9\x0b\x50\xb1\x41\x4b\x1b\x29\xf3\xf8\x7a\x99\xc7\x12\xed\xd9\x17\x85\xf2\x4d\x5f\x23\x48\x47\x49\xb8\xb8\x13\x87\xfa\x06\xba\x3a\xed\xb3\x2f\x3e\xff\xfc\xf9\xd9\xdb\x17\x9f\x7f\x5f\x9e\x39\xba\x23\xee\x17\x5f\x3e\xff\xbc\xd8\x93\xed\x62\x2d\x44\xd3\xc4\xa6\x09\x08\x83\x2a\x59\x30\x27\xd1\x4d\x85\xb8\x94\x99\x5c\x57\x18\xda\xf9\x7a\x58\x31\xb7\x33\x9b\xd0\x85\xbc\x0a\xcd\x90\x63\x54\x64\x94\xef\xbc\x53\x60\x66\x70\xf9\x14\xdd\x92\x0b\xc6\xee\xd0\x0c\xb3\xf6\x75\x76\x09\xc2\xf7\xab\xe4\x43\x92\xde\x26\x01\xf2\x90\x11\x1a\x20\x5f\xbe\x7e\xc9\xa5\x10\xea\xc8\x37\x21\x77\x94\x14\x0a\x50\x57\x86\xcb\x5c\xbe\x10\x23\xb4\xce\x4b\xbd\xeb\xcc\x52\x33\xb3\x37\xf6\xc0\xa5\x33\x7b\x63\x0f\x46\xa8\x97\x87\xbf\x26\x73\x41\x2c\xb8\xa0\xe2\x81\x1e\x2f\xec\xd5\x5c\x6d\x52\xbe\xc0\xa5\x7e\x29\xfd\xff\x42\x7a\x09\x42\x1d\x9e\xd7\xec\xea\x6d\xfa\x81\x24\x5c\x3d\x15\x42\x52\x95\xbc\xef\x3f\xa6\x23\x82\xa7\x33\xc7\x40\x9c\xc1\xaf\xb7\x4c\x16\xca\x96\x52\xc6\x71\xb1\x75\x99\x4d\x2a\x79\xdc\x29\xe4\x48\x83\x48\x49\xe6\x65\xea\xb8\xa3\xb4\x72\x52\xe5\x7e\xac\x9c\x0e\x87\x11\xd4\x0a\x8f\x55\x75\x78\x80\x7a\xde\xba\x42\x68\x5a\xfa\x35\xe5\x85\x43\xa6\x15\x0d\xde\x2a\x16\xa4\x94\x38\xa2\x26\xda\x5d\x77\x3b\x92\x28\xaa\xf1\xd6\xc9\x5c\x9c\x89\x69\x74\xa1\xe3\x89\x99\x74\xac\xa3\x01\xc7\x59\x33\x8d\x26\x06\x00\x6d\xc1\xd1\xf2\xa4\xee\x92\x7c\x33\x3e\x67\x58\x77\x8b\xbb\xa4\x07\xa7\xd1\xe7\x5d\xbd\x34\x4f\x0d\x07\x8a\x81\xa7\xab\xef\xea\x73\xc2\xa6\xde\x4c\x1e\x11\x66\x70\xf0\x50\xe1\x0a\x6f\x0e\x57\x98\x17\xe4\xab\xd7\x2f\xe0\xe6\xba\x84\x24\xcc\x29\xfa\xa7\x5e\x87\x2b\xe9\x9d\xca\xd2\x0b\x87\xba\xb8\x3c\xe9\x81\x7e\x17\xb5\x1c\xe4\x79\xa8\x95\x6f\xca\x1f\x33\xc7\x73\xdb\x2c\x15\xa3\xbf\xe3\x0f\x5c\x57\xa2\xb8\xdf\x71\xb7\x6e\xfb\xe7\x69\x94\x38\x08\xb9\xae\x75\xd0\x91\xee\x5b\xc3\x62\xa0\xdd\xc5\x54\x35\x0a\xca\x20\x2d\x67\x66\x77\xc1\xa1\x18\xb6\x8c\x19\x46\xea\x8e\xf2\xbc\x8c\x98\x4e\x5a\x99\x97\xee\xb6\x43\xc1\x6f\x76\x4e\xc6\x0e\x70\x07\x3d\x4f\xc2\x8b\x38\x4a\x2e\x1b\xba\xc3\x0d\x1b\xa8\x95\xb5\x50\x23\xe3\x01\x8b\x0c\x71\xce\xc9\x7b\x63\xb6\x95\xad\x0c\x22\xd8\x64\x0a\x98\xfe\xd5\xdc\x42\x34\xc3\xe5\x6a\x99\xa3\xc3\x0c\x5b\xc0\x41\xb9\x3c\x6e\x40\xa6\x0b\xb8\x1e\xd6\x28\xf4\xa9\xd7\x6c\x3a\x34\xa8\xde\xa5\x9f\x8a\xf9\x91\xba\x6e\x2e\x0b\x04\x4d\x8c\xf7\x7a\x3e\x04\xfb\xa4\xfb\xc4\xc8\xde\x95\x8c\x0b\x17\x8f\xe9\x09\xf6\xcc\x71\x71\xb1\x76\xaa\x78\xca\xe3\xab\x11\x5d\x8f\x2b\x3f\x22\x17\x6f\xdf\xfe\xe4\xb7\xe5\x43\x4f\x1d\x8f\x33\x81\xbe\xd6\xcb\x41\xcb\x88\x21\x77\xb7\x8a\x53\x56\xb8\xa5\x31\x5c\x30\x6e\xb1\x6d\x82\x15\xee\x47\xae\xbf\x99\x52\xa6\x10\xab\x3d\x9f\x87\xd7\x24\x90\x57\x8e\xa6\xc2\x92\x42\x56\x34\x49\xbe\xa0\x43\xba\x4a\xc8\x73\x81\xa5\x26\x50\x2d\xc5\x49\x34\xdb\x32\xe2\x8d\x26\x5f\xca\xbb\x9d\x2c\x3e\x92\x7d\x58\x46\x06\xdd\xb0\x85\x3e\xaa\xfb\x75\x54\xb8\x90\x85\xac\x80\x92\x32\x70\xa4\x84\x94\xf7\xa8\x61\x0b\x21\x1b\x59\xc7\xc5\x72\x41\xbb\x3c\x31\xad\x26\xbe\x77\x26\x37\x6f\x22\xe5\x85\x72\xee\x83\xc3\x1d\xbf\xad\x4d\xaf\xab\x6d\x58\xf5\xba\xca\x0f\x9b\xf6\x79\x7c\xb9\xfe\xf3\x68\xf3\x3d\xdf\x11\x31\xb2\x98\xc2\xbc\x07\x8e\xe4\xd7\x78\x94\xaf\xdb\xbc\x56\x13\xe5\x45\x66\xa1\xcd\xa6\xd5\xef\x4a\x70\x17\x0b\xe1\x50\x02\xd4\x08\x0b\x2a\x30\xb0\xb6\xb4\xeb\xe2\xb7\x62\xc5\xe0\xf1\x53\x07\xaa\xa2\xf9\x66\xf9\x20\x3f\xe9\xc0\xb8\x91\xa4\x7c\x07\x49\x5e\xe4\x23\x67\x16\xf4\xf4\x29\x6c\xce\x0b\xc8\xa3\xa7\x13\x1e\x39\x03\xa0\x19\x5f\x2c\x84\x94\x4c\xfb\xd2\x4c\x42\x85\x6d\x6f\x67\x54\xea\x04\x52\xa1\x17\x3b\xee\xe5\xea\x7e\xc9\xa7\xaa\xd6\x82\x17\xf9\xea\xa5\x1a\xab\xeb\xf0\x50\x59\x9c\x19\x7e\x11\xaf\xe9\x6f\x6a\x91\x03\xfb\x3d\x68\x87\x4b\x49\x50\xb9\x28\xa4\xe8\x50\x21\xf0\xec\x49\x41\xb8\x5c\xc7\x30\xdb\x7f\xfc\x28\xb3\x3d\x5a\xca\x1b\x43\xf6\x82\x20\x2a\x1d\xb8\xfd\xa9\xb8\xa6\xb3\x81\xe2\xe8\x02\x35\x52\x18\x79\x1a\x61\x0c\x86\x5f\x83\x7c\x8c\x32\x96\xb5\x3f\x55\x23\xcc\x3d\x57\x25\xe9\x3a\x61\xd1\x35\x99\x10\xde\x47\x49\x32\x8f\x48\xf6\x3e\xb8\xdf\xc2\x06\xb5\x88\xa9\xb3\xb4\xb3\xf7\xc1\x74\xc6\x87\x68\xb6\x20\xab\xaa\xab\x60\xe8\xdd\x7d\x01\x97\xed\x3c\x04\x85\xcf\xd0\x05\x59\x38\xff\x00\x9b\x9f\x98\x83\xde\x25\xc8\x1d\xb1\x20\xbf\x80\xa1\x7b\x4a\xa7\x9d\x59\x9b\x92\x55\x1c\xce\x89\x73\xf0\xd3\x77\xd9\x93\x90\xbd\xcb\x5a\x07\x18\x21\x77\x48\xa7\x7e\x01\x78\x29\xaa\xca\x55\xc5\xdf\x83\x38\x5b\xb5\x36\x21\x76\xf6\x94\x76\x0d\xa5\xad\x96\x40\x26\x33\x76\x0d\xa5\xb0\x6b\x28\x83\x93\xe6\xc3\x64\x4e\xd2\x65\x03\x74\x4d\x57\x56\x56\x6e\x07\x8a\x70\x26\xce\xfb\x90\xf3\xe2\xa2\x75\x2b\x68\x37\xcd\x66\xa3\x64\xb3\x71\x76\x47\x09\xa6\x33\x17\x27\xf9\x7d\x84\x9c\xde\x24\xc9\xd6\x94\xbc\xae\x6a\x8f\xa2\xdd\x13\xec\xe5\x7b\xc8\xe1\x62\xd5\xea\x76\x34\xf6\xaf\x55\x47\x98\xb2\x19\xb7\x9c\x54\x9b\xb4\x91\xab\x5d\xc9\x36\x9b\x8c\xc4\x4b\x9c\x04\xde\x28\x39\x49\x15\x09\x13\x4e\x42\x38\x54\x24\x9d\x26\xb3\x28\x69\x64\x6e\xe1\x82\x80\x4f\x5f\x45\x59\xc6\xf5\x4b\xf4\x69\x8b\xb5\x3e\x45\x8d\x28\x6b\x24\x84\x2c\xc8\xa2\x71\x71\xf7\x29\x5c\x73\x19\xec\xf9\xf2\xec\xde\x2c\xc8\xa6\x3c\xa3\xd9\x16\xbc\xde\xca\xe7\xc7\x9f\x87\x51\x4c\x16\x0d\x89\x7b\x63\xa1\x90\xbf\x6b\x88\xdb\xc4\x61\x9f\xa5\x3a\xde\xfc\x45\x12\x15\x4f\x20\x50\x9b\xc5\x0b\xcc\x2c\x08\x3f\x25\x98\xcd\x5c\xcc\x14\xb3\x57\x0e\x73\xc5\xa4\xf6\xea\x43\xb4\x74\x14\x07\x2b\xd6\xa2\xf9\xcd\x19\xcd\x26\x73\x10\x4f\x0e\x2a\x36\xb7\x7c\x70\x36\xf5\x67\x4e\xd4\x5e\xb6\xc3\x38\xa4\xd7\x4e\x2a\xaf\xb1\x6c\x70\xc5\x92\x33\x22\x52\x99\xa3\x3d\xb5\x56\x5a\x41\x16\x45\xe3\x94\x36\xa2\x04\x4e\xd2\xd7\x57\xe5\x0e\x1b\x5c\xe6\x83\xa6\xb8\x8b\xa5\xb8\x6a\x9c\x8f\x98\x29\x4c\x7a\xcb\xf3\xc5\x0c\xf7\xab\x70\x01\xe7\x88\x6c\x36\x4e\x2d\xac\x92\xe0\x0e\x91\x37\x2b\x49\xd2\x9c\x04\xde\xa9\x52\xcb\xae\xa2\xcc\x1d\x3a\xf9\x4a\x3b\x9c\x7a\x84\x1a\x08\xce\x41\x31\x6e\x0a\x09\xb8\x0a\xb5\x22\x21\x73\xc8\x81\x0a\x6f\xc1\xad\x44\xd2\x62\xf3\x30\x71\x5b\x66\xae\x5c\xc1\xaa\xc2\xf3\x79\xb2\xa8\xa9\xc1\x73\x6b\x3a\xee\xaf\x08\x7f\x33\xa3\x96\x59\x19\x8e\x3f\xb7\x6d\xe2\x94\x66\x42\x04\x8b\xe7\x36\x25\xef\x83\xfb\x2b\xf2\xd1\x1f\x0c\x0f\x3e\x71\xa6\xe1\xfe\xd2\xdb\x3f\x9e\xb9\x55\x4f\x07\x11\xbe\x22\x1f\x3b\x3d\x33\xe2\x7d\x67\xeb\xd6\xbf\x1c\x44\x98\x5e\x5e\x0c\x39\x77\xbd\x26\x97\xcf\x3f\xae\x1c\xf4\xd3\x83\xec\x09\xbd\xbc\x38\xc8\x9e\x1c\x38\x07\xd9\x13\xe7\x60\x71\xef\xe3\xee\xd6\x3d\xc8\x9e\xe0\x07\xde\x0f\xf8\xd7\xf7\x50\x2e\xa9\xdf\x1d\x1c\x5c\xc2\xb6\x0d\x17\xa3\x08\xb9\xbc\xac\xb0\xaa\xb0\xf0\xdb\x94\xe6\x9c\x0e\x65\x50\xcb\x39\x1d\x1e\xb4\x0f\x16\x2d\xf7\x94\x03\xdc\xc7\xe0\xf1\xb1\x12\x8f\xd3\xef\x16\x91\xd3\x07\x31\xf9\xe8\xfb\xbc\x01\x60\x4c\xe3\x0f\x79\xeb\xf8\xb8\xb7\x75\xdf\x1d\x3c\x18\x90\x3d\xf9\xde\x41\x84\x93\xf0\x9a\x0c\x0f\xa6\xe1\xfe\x2f\x67\xfc\xcb\xdb\x3f\x7e\x97\xcd\x5a\x07\x26\x1f\x5d\x5e\xbc\x4d\x7f\xec\xfb\xf6\x7e\x5b\x65\x3e\x32\xf3\xe0\x8c\xc0\xe9\xf4\x0f\x9f\xe8\x95\x6a\x82\x3b\xfd\xbe\x6b\xcf\x9c\x60\x2e\xc6\x7e\xb9\x0a\x17\x0e\xc1\x3d\x77\xab\x46\x79\xd8\x78\xef\x98\xbc\xcb\xcb\xfd\xa8\xd7\xdc\xe9\x29\xe2\xb5\x44\x2d\x26\xdc\xa1\xe0\x32\x6a\xfe\xdc\x31\x9e\xbb\x33\x77\x28\x5c\xc3\x74\x46\x1f\x7d\xff\x33\xf2\xf1\x6d\x7a\xf6\xe6\x4d\x85\xbf\x34\xdc\x83\x90\xfd\x28\x62\x57\x0e\xfa\x04\xb9\x96\xcb\x42\xb4\x74\xb8\x8d\x9b\xad\x2f\x32\x46\x1d\xdf\xc5\xfb\x7e\x10\x4c\xbb\x78\x80\x8f\xb1\xdf\x99\xe5\x67\x77\xa8\xee\x5e\x4a\x2d\x2b\x75\x30\xfd\xa9\x24\xfc\x41\xe4\x96\x9d\xb1\xf5\x2d\x48\x07\x5d\x71\x98\xbe\x28\xd0\xc3\xe0\x3f\xab\xdf\x19\x5c\x8f\x69\xbc\xb7\x98\xe1\x92\xa0\xeb\x1b\x72\x2d\xe4\x6d\xfa\xfa\xfb\xcf\xc6\xce\x14\xbc\x18\x66\xed\xeb\x70\xe5\x54\x78\xf7\x90\xdc\x39\x97\x60\xde\x32\x1d\xf0\x60\x1a\xfa\xf0\x73\x72\xd2\x1b\x92\xa7\x4f\x7b\x4f\x1c\x06\x93\x5c\xae\x4d\xd4\x32\x45\x55\x65\x2a\x5a\x52\xf0\x6a\xbe\x11\xfc\xd4\x61\xf9\x5d\x52\x7e\x2e\xbe\x2c\xec\x59\x1d\xde\x7e\x7e\x71\xd4\x69\x5e\x83\x16\xd4\x61\xd8\xa9\x04\x02\xc8\xe9\x9a\x37\x4e\x39\xa4\x95\x13\xb3\xe3\xba\x18\xb8\x96\xa6\xeb\x64\xe1\xd8\x09\x0f\x3a\xfd\x43\x2e\x65\xe1\x9c\xda\x02\xc7\x9c\x56\x31\x9a\x43\xdc\xa1\x0e\xe7\xfd\x0b\x6a\x24\x0f\x79\x91\xc1\x57\x3c\xee\xeb\xef\x3f\xdb\xd1\xa9\x7a\x36\xba\x01\xd1\xc2\x80\xe2\x0a\x2f\x4e\x31\x7b\xf9\x09\x6a\xb1\x16\x6b\xd1\x16\x6d\x45\xad\x48\xcd\x25\xe7\xed\x92\x1a\xad\xc0\x7b\x94\x83\x72\xd7\x75\x06\xfe\x24\x03\xb7\x85\x70\xc3\x0a\xee\x54\x07\x77\x65\xb0\x8b\x44\xaf\x53\xaa\x8f\xd1\xf2\x30\xfc\xe0\xb4\x14\xd8\xe9\x41\x0f\x29\xeb\xcf\x4a\xf7\xcc\x02\x6f\x94\x9d\xa8\xfa\x8f\xb2\x56\xcb\x25\x5c\x03\x66\x0e\xff\x91\x87\xe8\x11\xfe\x9a\x9f\x8d\x55\x94\x59\x9f\x99\x47\xc2\x94\xc8\x2b\xe8\xa2\x53\xcc\x69\x38\xff\x20\x9a\xc9\xa0\xd0\x27\xa8\xa5\xe5\x95\x63\x54\xdd\x9b\xb9\x27\x27\xfe\x60\x63\xd1\xce\x3d\x39\x39\xda\x58\x64\x73\x4f\x4e\x0a\x13\xc7\x78\x20\x45\xd4\xee\xea\xd3\xc0\x1b\xd1\xbc\xfa\x14\xaa\x4f\x45\xf5\xe9\xc3\xd5\x17\xe7\xd9\x45\xbf\x24\xc5\x4e\xaa\x27\x8d\x6a\xf9\x58\x31\xa6\xc5\xc4\x4a\x1c\xb7\x19\xc9\x78\x99\xa7\xe4\x41\x06\x37\xba\x72\xa5\x98\x90\x06\x5c\xf7\x94\x4c\xbb\xb3\xa1\x2f\x6b\xc1\x59\x32\x74\x50\x8b\x4c\xbd\x99\xe0\x37\x32\xf5\xf5\x53\x47\x3e\x31\xce\x73\x46\x59\x19\x61\xe3\x78\x75\x15\xd6\xa8\xe2\xf5\x2d\xcc\x87\x8c\x80\x55\xcb\x1f\x6a\xd6\xe6\x3a\xfa\x58\xba\xd8\x29\xb7\x1b\xab\x8a\xc0\x59\x45\x30\xec\xa0\xe1\xa6\x51\x6f\xd4\x6a\x69\xef\xb2\x6c\x9a\xcc\xf6\xb9\x41\x33\xe2\x5f\x41\x95\x20\xe2\x00\xb7\x15\x3e\xa1\x7a\xde\xaf\x12\xe7\xd4\xc4\x59\x95\x5a\x1c\xf7\xec\xc6\xe7\x04\x47\xae\x38\xc7\xa4\x76\x1c\x0e\xf3\xcb\x7d\x94\x9d\x82\xd9\x56\x1b\xb6\xf5\x09\xc5\xb9\xa0\x15\x89\xe5\xb5\xfc\x3c\x1b\x09\xb4\x8e\x6b\x75\xd0\x59\xba\x8e\x17\xc9\xa7\xac\x01\xd5\xe0\xa6\x10\x71\x71\x61\x70\xd7\xac\x57\xc9\xe3\xc2\xc2\x55\xc4\xe0\x3f\x9f\x87\xd7\x24\x3b\xad\x08\x9b\x92\xd9\x10\x24\x2c\x4b\x5f\xa6\xb7\x84\x9e\x85\x19\x71\x5c\xf7\x5b\x64\x90\xeb\x6b\x59\x8b\x2b\x6c\xe8\x9b\xe6\x52\xa8\x62\xc6\xd2\xf9\x07\x38\x90\xe8\xcb\x30\x26\x8c\x91\xa0\xdc\x53\xa7\xe8\x13\x0f\xfe\x21\x8c\x3e\x39\x3b\x53\x4f\xbd\xe7\xc7\x63\x6f\x00\x61\xbd\xb1\x0c\xeb\xf6\x06\xfd\x71\x8f\x3f\x1d\xf6\xfb\xde\xe1\x33\xfe\xe4\x0d\x8e\x8f\x8e\xc7\xfc\x69\xd2\x9d\x1c\x9e\x9d\xf3\xa7\x7e\xbf\x7f\xd8\xef\xf2\xa7\xe7\xe7\x9d\xe3\xce\x31\xc4\xf3\x9e\x8d\x7d\x08\x3b\x3f\x7b\x7e\xdc\x83\x78\x87\x9d\xe3\x73\x91\xe2\xbc\xe3\x79\x67\xcf\x64\xbc\xfe\xb3\x09\xa4\xe5\xff\xce\x44\x98\xc2\x8a\xff\xf6\xcf\xd5\xd3\xd1\xa1\x7a\x1a\xeb\xb0\x89\x0e\x3b\x97\x61\xfd\x73\x95\xb6\x7f\xde\xd7\x61\x2a\x6d\xff\x7c\xac\xc3\x26\x3a\x4c\xa5\x3d\x3a\x54\x69\x8f\x0e\xfb\x3a\x4c\xa5\x3d\x3a\x1c\xeb\xb0\x89\x0e\x53\x69\xc7\xba\xdc\xb1\x2e\x77\xac\xcb\x1d\xeb\x72\xc7\xba\xdc\xb1\x2e\x77\xa2\xcb\x9d\xe8\x72\x27\xba\xdc\x89\x2e\x77\xa2\xcb\x9d\xe8\x72\xcf\x75\xb9\xe7\xba\xdc\x73\x5d\xee\xb9\x2e\xf7\x5c\x97\x7b\x2e\xcb\xe5\x94\x12\x69\xf9\x53\x5f\x87\x89\xb4\xfc\x69\xac\xc3\x26\x3a\x4c\xa5\x55\x74\xe6\x4f\x7d\x1d\xa6\xd2\x2a\x3a\xf3\xa7\x89\x0e\x53\x69\x15\x9d\xf9\x53\x5f\x87\xa9\xb4\x8a\xce\xfc\x69\xa2\xc3\x54\xda\xb1\x2e\x77\xac\xcb\x1d\xeb\x72\xc7\xba\xdc\xb1\x2e\x77\xac\xcb\x9d\xe8\x72\x27\xba\xdc\x89\x2e\x77\xa2\xcb\x9d\xe8\x72\x27\xba\xdc\x73\x5d\xee\xb9\x2e\xf7\x5c\x97\x7b\xae\xcb\x3d\xd7\xe5\x2a\x3a\xf3\xda\x8a\xb4\xfc\xa9\xaf\xc3\x44\x5a\xfe\x34\xd6\x61\x13\x1d\xa6\xd2\x2a\x3a\xf3\xa7\xbe\x0e\x53\x69\x15\x9d\xf9\xd3\x44\x87\xa9\xb4\x8a\xce\xfc\xa9\xaf\xc3\x54\x5a\x45\x67\xfe\x34\xd1\x61\x2a\xed\x58\x97\x3b\xd6\xe5\x8e\x75\xb9\x63\x5d\xee\x58\x97\x3b\xd6\xe5\x4e\x74\xb9\x13\x5d\xee\x44\x97\x3b\xd1\xe5\x4e\x74\xb9\x13\x5d\xee\xb9\x2e\xf7\x5c\x97\x7b\xae\xcb\x3d\xd7\xe5\x9e\xeb\x72\x15\x9d\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\xc7\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\x27\x9a\x9f\xcf\x35\x3f\x9f\x6b\x7e\x3e\xd7\xfc\x7c\xae\xf9\xf9\x5c\xf3\xf3\xb9\xe6\xe7\x73\xcd\xcf\xe7\x9a\x9f\xcf\x35\x3f\x9f\x6b\x7e\x3e\xd7\xfc\x7c\xae\xf9\xf9\x5c\xf3\xf3\xb9\xe6\xe7\x73\xcd\xcf\xe7\x9a\x9f\xcf\x35\x3f\x9f\x6b\x7e\x3e\xd7\xfc\x7c\xae\xf9\xf9\x5c\xf3\xf3\xb9\xe6\xe7\x73\xcd\xcf\xe7\x9a\x9f\xcf\x35\x3f\x9f\x6b\x7e\x3e\xd7\xfc\x7c\xae\xf9\xf9\x5c\xf3\xf3\xb9\xe6\xe7\x73\xcd\xcf\xe7\x9a\x9f\xcf\x35\x3f\x9f\x6b\x7e\x3e\xd7\xfc\x7c\xae\xf9\xd9\x3b\xe2\x7f\xfc\xc9\xef\xf0\x3f\x78\x3a\xe3\x7f\xfc\xa9\x33\xe0\x7f\xfc\xa9\xeb\xf1\x3f\x78\x1a\xf3\x3f\xfe\xd4\x83\x7f\xf0\xf4\x9c\xff\xf1\xa7\xfe\x11\xff\xe3\x4f\x90\x14\xf2\x1b\x9c\xf1\x3f\xfe\x74\x38\xe0\x7f\x20\xb9\xa0\x60\x78\x1a\xf3\x3f\xfe\x74\xdc\xe3\x7f\xf0\xf4\x9c\xff\x41\xcf\x03\x30\x7f\x7a\xd6\xe1\x7f\xf0\x74\xc6\xff\xf8\x13\x64\x0c\xf9\x4d\x3c\xfe\x07\x4f\x63\xfe\xc7\x9f\x00\x29\xc8\x0f\xf4\xab\xe7\x68\x66\xcc\xa0\xcc\x2b\x55\xc5\x92\x16\x89\x2b\xb4\xcf\xe0\x3e\x8c\xa3\x39\xb9\x88\xd7\x64\x08\x53\x03\x9d\x9e\x87\x1b\x9d\xde\x11\x6e\x74\xfa\x7d\x17\xe1\x30\x61\xd1\x2f\xd6\x04\x6e\xc3\x90\x31\xfa\x3c\x46\xb7\x8f\x1b\x1d\xbf\x18\xc3\x57\x51\x38\xb4\x7b\xcc\xa3\x1c\x17\xa2\x74\x64\x94\x2e\x2f\xa2\xd3\xc5\x8d\x8e\xd7\x2b\x44\xe9\xca\x28\x5e\x1f\x37\xfc\xe3\x0e\x6e\xf8\x87\x83\x42\x94\x9e\x88\xe2\xf3\x32\xfc\xae\x8f\x1b\x7e\xc7\xe3\x51\x7e\xb1\x0e\xaf\x43\x1a\x25\x12\x57\xbf\x73\x08\x15\xe1\x88\x74\x2c\xb8\xff\x50\x04\x89\xa7\xef\x73\x3c\x39\xb2\xfe\xf1\x91\x15\x41\x62\xe9\x7b\x1d\x5e\x07\x8e\xea\xa1\x8d\x82\xc4\x71\x00\x28\xf2\x2f\x1f\x6a\xf1\xcb\x35\xb5\x68\x0d\x85\x0b\x5a\x73\x90\xbf\x03\xa6\x68\xd7\xe9\x49\x9c\x3a\xdd\x23\x05\x53\xe8\x1c\x77\x25\x3a\x1d\x4f\xa7\xd3\xd4\xf2\x15\x2a\x5d\xde\x2c\x17\x24\xba\xd4\xa8\xf0\x14\xf0\x05\x84\xbc\x88\xb2\x5f\x68\x96\x00\x2c\x3a\x40\x82\x81\x86\xf9\xbb\x80\x56\x23\xfb\x5d\xdc\xf0\x8f\xba\x1a\x68\x35\xef\x11\x07\xf6\x8f\x34\xd0\x6a\xd8\x0e\x8f\xe1\x1d\x72\x60\xcc\x0d\x42\x00\x79\xb8\xc1\xff\x8b\xc0\x64\x7e\x45\x16\x61\x7c\x9d\x26\x0b\x8b\xf5\x74\xfd\x73\xce\x16\xe9\x04\x35\x79\xa8\x5f\x1d\xdc\xb1\x82\x81\xbe\x3c\xb8\x6b\x05\xeb\xac\x7b\x66\xb0\xa4\x6a\xbc\x26\x37\x51\x1a\x13\xa6\xaa\x72\x84\x1b\x3d\xde\x2a\x1d\x20\x10\x4d\x6f\x13\x09\x19\xf4\x71\xa3\xd7\xe1\x1f\x05\x30\xa9\x3a\xe8\xf1\x8f\x82\x98\x24\xed\x1f\xf3\x8f\x82\x98\xf4\xec\xfb\xfc\xa3\x20\x26\x31\x39\x49\xba\x80\xf6\x9a\xc6\x77\xb7\x69\xaa\x08\xd6\xe1\x1d\xec\xa8\xc7\xd1\xb7\xc0\x56\x03\xfb\x9c\x73\xfa\x16\xdc\x44\xc8\x3f\x3e\xc4\x0d\xbf\x67\xc1\xad\x66\x3e\xf4\xa0\x39\x4d\xb8\xd5\xd2\x7e\x1f\x37\x8e\x38\x78\x1e\x2e\x08\xcb\x1b\xed\xb8\x0f\xec\x81\x1b\xfe\xc0\x33\xa1\xaa\xfb\xf6\x3b\x8a\x6d\xfb\x56\x6a\xd5\x7b\x39\x75\x3b\x9d\x63\xd5\x92\x1a\xae\x7a\x0b\x54\x9e\x23\x2f\x9a\x54\xc3\x25\x72\xc0\x9d\xdd\x9e\x6a\xda\xf9\x55\x48\x19\x25\xeb\xac\x24\x5e\x3c\x0b\x5a\x12\x2e\x36\xb8\x24\x5a\x6c\x70\x49\xb0\xd8\xe0\xa2\x58\x11\xd0\x74\x9e\xc6\xa1\x16\xd1\x3e\x27\x37\x4f\xda\xb5\xa0\x66\x93\x02\x72\xdd\x81\x09\xb6\x5a\x94\x23\xd7\xed\x9a\x60\xab\x41\x01\xb9\x63\x13\x6c\xb6\x27\x20\x07\xd0\x94\x86\x71\xb1\xd4\x23\x4f\x41\x2c\x84\xfc\x1e\x6e\x1c\x0d\x14\xc8\x42\xc6\x1b\x98\xa9\x4c\x44\x8e\x7d\x5e\x9a\x82\x58\x38\xf0\x8e\x75\x28\x20\xc9\x32\x4e\x6f\x09\xcd\xf9\xca\xf7\x38\x85\x7a\xc0\x18\x2a\x4e\x16\xc5\x1f\x4c\x9e\x87\x41\xb0\xe3\x19\x50\x7f\x37\xd8\x92\x7a\xdd\x8e\x66\x2a\x09\x36\xd1\xee\x40\xf9\x87\x66\xd1\xf6\x90\x36\x50\x43\xda\xfc\x2e\x4c\xb4\x90\x31\x06\x04\x1e\xee\xd7\x01\x72\x21\x66\x0c\x13\x1c\x90\x8b\x31\x63\x8c\xe0\x80\x5c\x90\x19\x03\xc4\x22\xa4\x1f\x8a\x02\x34\x87\x58\x98\x15\x52\x5d\xa6\xf1\x82\x24\x54\x09\x19\x29\x5f\xf8\x97\x5f\x8c\x61\xf1\xc0\x11\xf4\xf7\x62\x14\x8b\x17\x0e\x79\x9f\xec\x15\xa3\x58\xcc\xd9\x83\xc1\xa3\x18\xc5\x22\xb0\xe7\xe3\xc6\x91\x8a\x41\xc3\x3b\x25\x91\x39\x4c\x7e\x69\x28\x21\x46\x3d\x3d\x39\xf8\x48\xd0\x8e\x84\x1f\xae\xc2\x0f\x91\xaa\xff\xb1\x1a\xeb\x60\x38\xe3\xe0\xeb\xf0\x92\x24\x2c\x34\x90\xb2\xa8\x9b\xc6\xd1\x0d\x31\xca\x3e\x12\x63\xa1\xe4\x69\x3b\x86\x22\x21\x74\x4a\xd1\x97\x3a\xa5\x48\x4a\xea\x1c\x69\x85\xc6\xeb\x95\x22\x29\xd9\x33\x50\xb2\xe7\xd8\x2b\xc5\x51\x74\xf4\x55\xb3\x0f\x54\x9b\xa6\x34\x4c\x2e\x4d\xad\xc1\xef\x19\xd4\x12\xd0\x92\x0c\xb2\xc1\x25\x19\x64\x83\x4b\x32\xc8\x06\x17\x65\x50\x0e\x9d\x5f\x45\x8a\x17\xfb\x5d\xdc\x00\x1d\x36\xaf\x3f\x80\x95\xd4\x06\x91\xd2\x51\xdd\x29\x87\x2b\x02\x1e\xf2\x11\x58\xf7\xaa\x1c\xae\x68\xd7\xef\xa9\xfc\xed\xf4\x0a\x39\xaf\x87\x1b\xf9\x98\xc2\xe1\x94\x2c\x6c\x36\x50\x78\x67\xa0\xda\x28\x92\x80\xaa\x04\x03\xa9\x6a\xdd\x8c\x84\x06\x8b\xf8\x3d\xd0\xb4\x38\xe5\x7a\xdd\x42\x0c\xdf\x54\x0f\x81\xf6\xc7\xc5\x28\x9a\x41\x94\xd8\xf0\x8f\xbc\x42\x14\x5d\xc5\xbe\xd2\x79\x35\x8d\x54\x14\x5d\xcb\xbe\x12\x0a\x9a\x0c\x19\x1f\x26\x72\x79\x72\xd8\xe1\xac\x63\xd2\x01\x22\xe4\xbd\xb1\x77\x88\x1b\x87\xc7\xfc\x53\x84\xeb\xe1\xdf\xb7\x44\x9f\x15\x47\xab\x00\xbe\x25\x05\xad\x38\x5a\x0d\xf0\x2d\x81\x68\xc5\x51\xaa\x40\xa7\x24\xe4\x64\x14\x52\x87\x2e\x5b\xd3\x5f\xac\xd3\x28\x23\x86\xd0\x1d\xf0\x2f\x15\xc1\x52\x13\xf9\x78\xe2\x81\xaa\xc5\xa1\xe4\x22\x0a\x13\xcd\x17\x1d\xae\x1f\xf1\x91\x53\xc0\xc8\x6a\x15\x25\xd6\x58\x05\xa3\xd9\xa1\x01\xf4\x77\x42\xad\x5e\xc6\x3f\x5d\x13\x6a\x75\xb2\x01\xf4\x43\x03\x6a\x8b\x51\x39\x2e\x73\x60\xf6\xe1\xce\x1a\x2c\xa0\x23\xc9\x86\xc9\xc1\xfe\x03\xf0\x7c\xe8\x82\x8e\x26\x1b\x2d\x87\xe7\x23\x18\x74\x34\xd9\x60\x39\xdc\x18\xc8\xbc\xbc\x93\x45\xd7\x86\x90\x17\xc2\xa3\xaf\x59\x93\x03\x49\x1d\x30\x5d\x5c\x9a\x8a\x43\x17\x68\xd9\xd3\x88\x6b\xb0\xff\x00\x5c\x91\xfc\x48\x0e\x84\xb2\x62\x1a\xae\x88\x0e\x63\xe4\x40\x57\x4c\xc3\x15\xd9\x07\xb8\x71\x78\xa4\xea\xb5\x8c\x28\xb9\xa0\x91\x32\x8d\x80\x62\x5d\x10\x2f\x26\xd0\xe4\x05\xce\x65\xbd\x23\x13\x6a\xf2\x02\x47\xbc\x67\xa5\x35\x79\x81\xc7\xe8\x5a\x69\x4d\x5e\xe8\x70\xa4\xb9\xfa\xb6\x8c\xb9\x2a\x66\xcd\x18\x40\x0f\x85\x89\x05\xce\x2c\xcb\x94\x92\x8c\x19\x82\x4b\x4a\x43\x89\xf7\x65\x18\x25\xd9\x45\x4a\x53\x65\xa0\x78\xa0\x68\x29\x6d\xeb\xf2\x2a\xcd\x98\x99\x3b\x28\x62\xf9\x8c\x05\x1f\xef\x2d\xd3\x45\x6a\xd0\x3c\xdc\xaf\x03\x58\xaa\x1b\xd7\x0d\x14\xc0\xb6\x62\xba\x39\xc0\x36\x5f\x0e\x73\x80\xa1\xf6\x74\xa0\x6f\x71\x2b\xaf\xdb\x31\xa1\xd6\x18\xc8\x25\x32\x74\xbf\x6a\x75\x87\x4b\x63\x41\x96\x4a\x55\x07\x6a\x72\x6c\x82\xed\xfe\x09\xdd\x9f\x83\x73\xf6\x3f\x86\xbe\x27\xbe\x24\xc4\x33\x35\x3c\x15\xa8\x38\x1a\x37\xf8\x7f\x15\x28\xa3\x8a\xd6\x96\x2d\x2e\x00\x9e\xd5\xda\x5a\x28\x03\xd0\xcf\xb9\x5f\x7c\x14\x40\xd6\xb5\xeb\xe3\x86\xf8\x28\x80\xac\x25\x1f\xf4\xc4\x47\x01\x64\xfd\xb8\x86\x2c\x3e\x0a\xd0\x97\x80\x23\x83\x53\x01\x30\x90\xf2\xd9\xc7\x0d\xf1\x51\x80\x43\x09\xe8\x0a\x03\xbd\xa7\xcb\x38\x92\x80\x01\x6e\x88\x8f\x02\x1c\x4b\xc0\x91\xd1\x93\x8c\xc1\x86\x5b\xe0\xb8\xa1\x6a\xdd\x91\x14\x11\x46\xb9\x34\xcc\x01\x20\xc9\x01\x9a\x02\x7c\x14\x40\xe5\x33\xc0\x0d\xf1\x51\x00\x49\x0e\x61\xf9\x4b\xeb\x1f\x00\xca\x1c\xf4\xc5\x60\x3a\xd0\x65\x48\x72\x88\x59\x04\x39\x93\x00\x00\x49\x8e\xc1\x00\x37\xc4\x47\x01\x0e\x73\xcb\x52\x7c\x14\x40\x92\xe3\xd0\xc7\x0d\xf1\x51\x00\x49\x8e\xc3\x1e\x6e\x88\x8f\x04\x48\x6c\x8f\x70\xe3\x48\xa8\xd9\x10\x28\xc9\x71\xc8\xc7\x49\xf8\x28\x80\x24\x87\x18\x3c\xe5\x00\x0a\x80\x4e\x3e\xf6\x8a\x8f\x02\xa8\x02\xb8\xc9\x08\x1f\x05\x50\xa3\x35\x1f\x2c\xe1\xa3\x00\x92\x1c\x5c\x11\x17\x1f\x05\x90\xe4\x38\xee\xe0\x86\xf8\x28\x80\x24\xc7\x71\x0f\x37\xc4\x47\x01\x24\x39\x8e\x0f\x71\x43\x7c\x14\x40\x92\xe3\xf8\x18\x37\xc4\x47\x02\xb4\x4e\x24\x46\x4c\x5f\xf5\xb0\x9e\xa7\x00\x1d\xa9\xce\xfa\x9e\x2a\xbe\xe7\x57\x0f\x48\x00\x53\xba\x0d\xb7\x07\xd4\x97\x82\x75\x4d\xf5\x5c\x7e\x29\x98\x56\xdd\x3b\x60\x23\x28\x43\x01\x60\x7d\x05\xeb\xcb\xf9\x18\xdf\xd7\xe5\x0d\x14\xec\x50\x0a\x3b\xdf\xd7\xe5\x1d\x2a\x1d\x0a\x34\x53\x4f\xd9\xad\x00\x3b\x52\xb0\x0e\x68\xad\x4a\x75\x05\xd8\xb1\x82\xf5\xd5\x4c\x5f\x47\x95\xa7\x50\x81\xd9\x17\xfe\x51\xe1\x8a\x5e\xdc\x6e\x50\x5f\x0a\xa6\xe8\x05\x23\xb0\xfc\x52\x30\x45\x2f\x50\xa1\xe5\x97\x82\x29\x7a\x75\x41\x61\xed\xab\x79\x30\x80\x69\x59\x0a\x23\xae\xf8\x52\x30\x85\x64\xcf\x93\x76\x8e\xdf\xd3\xe5\x0d\x4c\x85\x5c\x7e\x29\x98\xa2\x57\x0f\xec\xa3\xbe\x9a\x37\x03\xd8\x91\xa1\x0b\xaa\x2f\x05\x53\xf4\x02\x0b\x40\x7e\x49\x98\x2a\x0e\x06\x04\x69\x40\x43\xb8\x67\x98\x3c\xea\x4b\xc1\xb4\x0e\xcd\x35\x3c\xf9\xa5\x60\x8a\x5e\x30\xf3\x26\xbf\x14\x4c\x9b\x88\x5c\x75\x97\x5f\x0a\xa6\x95\x14\x5e\x94\xfc\x52\x30\x45\x2f\x2e\x73\xd4\x97\x82\xa9\x0a\x0c\x60\xbc\x14\x5f\x0a\xa6\xe8\xc5\x25\x8f\xfa\x52\x30\x45\x2f\x98\x13\x90\x5f\x0a\xa6\xe8\x75\x38\x80\x05\x04\xb5\x8a\xc0\x61\x2a\x4b\xa5\xfd\xaa\xb2\x0e\x15\xbd\xb8\x14\x52\x5f\x0a\xa6\xe8\x75\xc4\x51\x90\x5f\x0a\xa6\x4d\xa7\x9e\x9a\x4b\xd5\x12\xe9\x50\xd1\xeb\x88\xa3\x20\xbf\x14\x4c\xd1\x4b\x4c\x0f\x88\x2f\x05\x53\xf4\xe2\x5a\xb2\xfa\x52\x30\x45\x2f\x2e\x97\xd4\x97\x82\xa9\xca\x1d\x0f\x60\x4e\x5e\x4d\xcc\x03\x4c\xd1\xeb\x18\xe6\xe7\xc4\x97\x82\x1d\x2b\xb5\xc2\x97\x2a\x50\xc7\x53\xe5\x1d\x29\x90\xb0\x25\x74\xff\x3e\x52\x43\xbe\x07\x9a\x78\x4f\xd9\xd4\x00\xd3\x93\x12\x30\xbb\x2a\xbe\x14\x4c\x69\x38\xde\x31\x98\x43\xca\x26\x02\x98\x52\x6f\xb8\x78\x52\x5f\x0a\xd6\x53\x30\x5e\x94\xfc\x52\xb0\xbe\x82\xf1\xa2\xe4\x97\x82\x0d\x14\x4c\x2c\x49\xa9\x75\x29\x80\x1d\x2a\x35\x13\xa6\x8a\xc5\x97\x82\xa9\x8a\xc3\x82\x8b\xfc\x52\x30\x45\x2f\x98\xe4\x95\x5f\x12\xa6\x40\xdc\xd6\x86\x8f\x0a\x57\xf4\x82\x19\x69\xf9\xa5\x60\x8a\x5e\x30\x71\x28\xbf\x14\x4c\x6b\x84\x7a\x71\x43\xcb\xa8\x63\x45\xaf\xee\x21\x4c\x66\xaa\x19\x4d\x80\x29\x7a\x89\x45\x3d\xad\x80\x03\x4c\xd1\x0b\xa6\xc8\xe5\x97\x82\x29\x7a\xe5\xab\x42\x5a\x46\x1d\x2b\x7a\x71\x73\x57\x7d\x29\x98\xa2\x17\xe8\xfa\xf2\x4b\xc1\x14\x51\x60\xca\x5e\x7e\x01\xcc\x9c\x5e\xd3\xb3\xe5\xe6\xa4\x45\x29\xbc\x30\xbd\xa9\xc3\x0b\xb3\x9b\x3a\xbc\x30\xb9\xa9\xc3\xef\x48\x1c\xa7\xb7\x86\x0c\x11\x26\x92\xa8\x0e\xa9\xd5\x97\x49\x95\xbe\x4c\xaa\xf4\x65\x52\xa7\x2f\x93\x5d\xfa\x32\xa9\xd3\x97\x49\x9d\xbe\x4c\xea\xf4\x65\x52\xa7\x2f\x93\x3a\x7d\x99\xd4\xe9\xcb\xa4\x4e\x5f\x26\x75\xfa\x32\xa9\xd3\x97\x49\x95\xbe\x4c\xea\xf4\x65\x52\xa7\x2f\x93\x3a\x7d\x99\xd4\xe9\xcb\xa4\x4e\x5f\x26\x75\xfa\x32\xa9\xd3\x97\x49\x9d\xbe\x4c\xea\xf4\x65\x52\xa7\x2f\x93\x2a\x7d\x99\xd4\xe9\xcb\xa4\x4e\x5f\x26\x75\xfa\x32\xa9\xd3\x97\x49\x9d\xbe\x4c\xea\xf4\x65\x52\xa7\x2f\x93\x3a\x7d\x99\xd4\xe9\xcb\xa4\x4e\x5f\x26\x35\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xa9\xd1\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\x49\x8d\xbe\x4c\x76\xe8\xcb\x64\x87\xbe\x4c\x76\xe8\xcb\x64\x87\xbe\x4c\x76\xe8\xcb\x64\x87\xbe\x4c\x76\xe8\xcb\x64\x87\xbe\x4c\x76\xe8\xcb\x64\x87\xbe\x4c\x6a\xf4\x65\xb2\x43\x5f\x26\x3b\xf4\x65\xb2\x43\x5f\x26\x3b\xf4\x65\xb2\x43\x5f\x26\x3b\xf4\x65\xb2\x43\x5f\x26\x3b\xf4\x65\xb2\x43\x5f\x26\x3b\xf4\x65\x52\xa3\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1d\xfa\x32\xd9\xa1\x2f\x93\x1a\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\xc9\x0e\x7d\x99\xec\xd0\x97\x49\xad\xbe\x7c\x95\x26\xe4\x6e\x41\x6e\x4d\x4c\x85\x3f\x82\x67\x40\xcb\x5e\x64\x16\xb8\xec\x48\x06\xed\xa4\xc0\x25\x5f\x32\xb1\x58\xa8\xc0\x15\xee\x64\x3e\x80\x59\x61\x59\x4a\x0c\xc3\x47\x5e\x0e\xb4\x1d\x3e\xbc\x02\xb4\xe4\xf3\xe1\x0f\x0e\x73\xa8\xe5\xf6\x31\x80\x65\x96\x1c\x68\xce\x7a\x73\x01\x0c\xce\x7a\x51\xb2\xb0\x56\xd1\x20\xa5\xd2\x59\x34\xd0\xc2\x09\x4a\xf5\x06\x26\xdc\xc4\x4a\xab\x29\x1a\x6a\x62\x75\xa4\xbc\x98\x34\xb4\x88\x16\x0c\x0b\xd1\x4d\x4a\xef\x4a\xca\x3f\x34\x10\x80\xfc\x1d\x30\xdb\xc7\x44\xb7\x1c\xc0\x6c\x07\x13\xdd\x6c\x00\xb3\xbd\x4b\x74\x9b\x19\x3e\x0a\x82\x57\xba\x7a\x60\x06\x90\xed\xf1\x32\x50\x03\x33\xc0\x6c\x54\x3c\xa5\x24\x00\xcc\x76\xe1\x3c\x52\xca\x11\xc0\x6c\x54\xb8\x1a\xcc\x89\x12\x87\x37\x24\x59\x10\xaa\x32\x55\xc8\x88\x1e\xa1\xa0\x17\xf1\x3a\xbb\xb2\x70\xf2\x54\x67\xb3\xa2\xf8\x8f\x88\x63\x7b\xa2\xf6\x94\x70\xb1\xe2\xd8\xf5\xe8\x82\xb3\x58\x31\x4e\xd9\x17\x15\xd6\x6b\xe2\xf0\x36\x31\x17\xe7\xa1\x84\xbe\x74\x59\x88\xc9\x75\x9a\xcc\xaf\xa2\xe5\x52\x2f\xef\xe7\x8b\x64\xa0\xb7\x9a\x31\xfc\x87\xa3\xd8\x8d\xd1\x55\xa3\x9f\x19\xc5\x66\x0f\x50\x44\x8a\xb9\xd8\x55\x39\x54\xfa\x6e\x1c\x5d\x5e\x19\x4e\x79\xc2\x54\x86\x45\x4a\x50\x19\x35\xd8\xf4\xa0\x10\xee\xbf\x60\xd1\x6a\xb8\xe9\x41\x21\x7c\x7f\x41\x3d\xd4\x70\xd3\x83\x02\x1c\x7f\x65\x3d\x15\xdc\xf4\xa0\x50\xd2\x47\xc1\x4d\x4f\x33\xd0\x2e\x61\xa5\xb5\xa3\xf3\xcf\xbd\x95\x44\x5b\xe7\x06\xb7\x06\xfb\x0f\xc0\xad\x51\x38\xf7\x28\xd0\x70\xad\xb9\xd8\xee\x55\x1a\xde\x33\xb5\xfb\xdc\x95\x00\xe0\xc5\x95\x43\xc1\x94\xbe\xd2\xca\xed\x38\xb6\x9b\xf5\xa0\x3a\x23\x9b\xbd\xbd\xea\x9c\x6c\xfe\xf6\xac\x06\xaf\x5e\x51\xe4\xa3\x30\x28\x86\x76\x1c\x73\x2a\xc5\x18\xce\xfc\xbc\x48\xbd\x00\x09\xce\xa4\xea\x2b\x07\x1b\x6e\x2c\x6a\x54\x12\x12\x5e\xc1\x77\x25\x2f\x0e\x3c\xe0\xad\x01\xd2\x4f\x83\x2d\x31\x7f\x08\x3a\x67\xdf\x84\x5b\x83\xcf\xa0\xa3\x74\x63\x0d\xb7\x3d\xcc\x84\xfb\xa0\x09\x37\xa9\x04\x6e\xab\x9e\xc6\xce\x72\xe3\x81\xf2\x07\xda\x8d\xc7\x88\xe0\x3f\x18\xc3\xc2\x11\xbc\xdc\xfc\x9e\x1d\xc3\xc2\x92\xb7\xd5\xf1\x91\x1d\xc1\x44\x93\x5b\xfc\x03\xdd\x96\xb6\x33\x51\xb7\x23\x3d\x30\x84\x5b\xbb\x88\x61\x7a\x78\xf8\xc2\xc9\x7a\xa0\x45\xb4\x11\xc3\x37\x6c\x89\x0e\x4c\x7b\xe5\x3d\xc9\xf6\xf3\xf0\x07\x3d\xd5\x9a\x79\x67\xb2\x5d\x3d\xc0\x83\x07\x5a\xd4\xe8\x4f\xb6\xb7\x07\xa8\x03\x9d\xae\xd5\x11\x0a\xde\x46\x7e\x57\xd9\xf0\x26\x2e\xb6\xc3\x91\xef\x6b\xdf\xcb\x7e\xb7\x10\x87\xec\x8c\xc3\x08\x89\x4d\x01\xa9\x6c\x89\x8e\xd1\x82\x2a\x8e\xe5\xad\xd7\xb1\xc5\x8c\x8e\x64\x79\xeb\xf9\x9e\x4d\x1e\x15\xc9\xf4\xd6\x03\x13\xcb\x24\x90\x8a\x64\xb9\xeb\x15\x68\x64\xf7\x5a\xad\x6e\x74\x7a\x76\x84\xb2\x42\x52\x8c\x51\x56\x4b\xbc\x42\x21\x65\xe5\xe4\xc8\xb3\x63\x94\x55\x14\x49\xbc\x6b\xd3\x0f\xb2\xaf\x84\xab\x64\xba\x84\x24\xa6\xd4\x91\x4a\x8c\x8b\xb0\xe5\x5f\x29\xe6\x8f\x15\xa9\x25\xc8\xdf\x01\x33\x2b\xa4\xa9\x2f\x61\x66\x55\xf4\x60\x2c\x61\x66\x25\xb4\x3f\xe7\x75\x48\x53\xd5\xff\x81\x37\x7a\x5c\x95\x1c\x68\x88\x89\x48\xbf\xa3\xac\x68\x01\xb3\xdc\x73\x8e\x94\x4a\x2c\x60\x26\x22\xd0\x49\x40\x5e\x0a\x98\xe5\x9a\xa3\x14\xe2\x6b\xb2\x88\xd6\xd7\xa5\x5d\x32\x85\x2d\x2c\x22\x56\x69\xe7\x84\xa8\x26\xc0\x2c\x7f\x4a\x6e\xa3\x1f\xf5\x95\x38\x36\x23\x98\x03\xaa\xef\xe9\xae\x67\x46\x31\xc7\xd4\xe3\xbe\x26\xb4\x11\xc3\x1c\x55\x73\x21\x60\xc6\x30\xc7\xd5\x7e\x5f\x13\x1d\x62\xac\xd6\x74\x15\xab\x7a\xf6\x0e\x95\x08\xf0\x8b\x31\xb4\xc4\xf2\xe5\x6c\x98\x89\xaa\x88\xa2\x27\x79\x80\x35\x7d\x1b\x57\x11\x45\xcf\x8d\x1d\x4a\xf7\x33\x13\x59\x11\x45\x49\xac\xae\x98\x1b\x36\x71\xb5\x05\x30\x0c\x00\x30\xa7\x02\xf3\x79\x32\x4a\x41\xa8\x41\x7f\xf6\x7a\x36\x2e\xd9\x8a\x46\xc9\x65\x71\x61\x45\x78\xcc\xe9\x48\x05\xe7\xc4\xc3\x8e\x9e\x59\xc8\xe3\x08\xff\xc4\xdc\x3b\xf5\x18\x66\x02\x94\xa2\x7f\x1d\x2d\x12\x5b\x31\x14\xc2\x4c\x29\x11\xd7\x51\xc2\xe6\x94\x84\xd7\xa6\x71\x2c\x55\x58\x00\x67\xec\x8e\xa6\x59\x69\x97\x51\x07\xe6\x35\x35\xb8\xb4\xd1\xa8\x00\x2f\xed\x35\x12\x4a\x87\x86\x97\xb7\x1b\xc1\x3c\x94\x86\x97\x77\x1c\xc1\xfc\xc3\x75\x3a\x9f\x87\x59\x94\x14\x4b\x17\xa9\x93\xf0\x26\xfc\x79\x5a\xf2\x71\xeb\x68\xb5\xc1\x88\xe0\x3f\x18\xc3\xf6\x3e\x3b\x54\x53\x84\x46\x0c\xdb\x0d\x4d\xab\x8e\x46\x0c\xbb\x1a\xbe\x9c\x7f\x4f\xc2\x9b\x3b\xb3\x13\x0b\x85\x98\x87\x96\xfc\xfa\x01\x92\xc6\x8b\x38\x9c\xeb\x3a\x75\xd5\x74\x06\x48\x54\x70\x01\x5f\xd0\xf0\x42\x89\x0d\xd8\xf4\xd3\x91\xfb\x8a\x34\x54\x5b\x01\xca\x1b\x7d\xd0\x31\xc1\xda\x08\x50\x5a\x74\xff\xc8\x04\x9b\x36\x40\x2e\xe7\x35\xb8\xe4\x5e\x0c\xb6\x56\xd9\xf1\x7c\x20\xd7\xff\x2a\x9c\xce\x6d\x90\xa5\x52\xf1\x42\x73\x90\x45\xf4\x6e\xd7\x04\x59\xca\x9e\x67\x42\xf2\xd9\x06\xa8\xfa\x71\x01\xe6\xef\x02\x9a\xb8\x0c\x7a\x05\xa0\xb5\xcd\xab\x5f\x00\x5a\x3b\xbd\x0e\x15\x30\x17\xd2\xc2\x13\x51\x88\xbe\x9e\x86\x59\x64\xe9\xfa\xaa\x67\xda\x92\x19\x08\x03\xf3\x7c\xd0\xeb\x2d\xa1\xdc\xd1\x8b\x2d\x62\xf2\xd3\x96\xc7\x1c\x19\x21\xe3\xf8\x90\xb5\x0a\x63\x52\x69\xe5\x08\x4d\xd3\x53\x51\x0c\x43\x40\xcc\x7a\xc1\xd6\xb3\x8e\x09\xf6\x4d\x1e\x01\xe4\x41\xb0\x69\x78\xa7\xda\x90\xd0\xf0\xae\x69\x92\x0b\x4d\xd9\x82\xab\x45\x31\xe5\x96\x7a\xa4\xa0\x05\xa1\xe9\x1f\xf6\x2d\x4b\xd0\x8a\xa2\xe7\xbf\x0f\x2d\x6b\xd2\x8a\xa3\xfb\x42\xaf\x3e\x1f\xdd\x21\x6c\xab\xd2\x8a\xd3\x33\x06\x72\xc3\xb2\xe4\x71\x0a\x32\x1c\x66\x73\xc5\x52\x56\xef\xb0\x18\xc5\xe6\x07\x4f\x2d\x1d\x58\x71\x6c\xb6\x80\xb6\x29\x15\x65\x73\x47\xcf\xe4\x00\x1d\xa7\xc8\x24\x60\xac\xad\xc2\x55\x78\x17\xde\x5e\x45\x2b\xcb\xc2\x85\x61\x07\xe0\x24\x9c\x5f\xad\xd6\xcb\xa5\x09\x16\x4b\x12\x7d\x13\xec\x3f\x00\xb7\x05\xae\x5e\x07\xd1\x70\x5b\xdc\xf6\x95\xad\xa7\xe1\xb6\xf3\xef\xb1\x32\xf6\x56\x84\xae\x8b\x32\x03\x16\x74\x8a\xe6\xa9\x98\xdb\x50\x10\x7b\x07\x94\xaf\x26\x99\xca\x46\xe9\xb1\x5a\x28\x29\xdb\xa3\x7d\xb5\xe6\x54\x32\x45\x01\x3b\x80\xc4\x6b\x35\x14\x43\xbb\x0d\xc0\xa5\xda\x97\x10\x1b\x89\x43\xcd\xae\xf1\xfa\xda\xde\x7e\xa5\x95\x0d\x0e\xb2\x7d\x91\xb5\x96\xc8\x41\xb6\x1f\x72\x47\xf3\x64\x7a\xbb\xb0\x76\xe2\x09\x1b\xb1\xa7\x06\x19\x4b\x61\xe3\x28\xc2\xd4\x7e\x2f\x07\xe9\xce\x2f\xbd\xd9\x25\x9e\x96\x8a\xc6\xc9\xd1\xcb\x11\xb5\x74\xb3\x8e\xf4\x64\x97\x98\x9a\x4a\x19\x68\xb1\x7a\x3a\xc5\x96\xe4\x52\xc8\x17\x7a\x49\x1e\x5a\x30\x18\x64\x68\xc1\x54\x90\xa1\x05\x23\x01\x42\xd3\xec\xce\xdc\x1a\x2c\x77\xf1\xa8\x09\x57\x0d\x2e\xb9\x8e\x8b\x59\x0e\x0d\x2f\xf9\x8e\x0b\x33\x4b\xc3\x4b\xce\xe3\x62\x07\x8f\x86\x97\xbc\xc7\xc5\x2a\x3a\x4d\xef\x42\xc3\xc0\x1d\x68\xb1\xdf\xb1\xa0\x7e\xae\x4c\x8a\xdd\xad\x7d\x0b\x2c\x91\x1b\x1c\xca\xc9\x7f\xd1\x3c\x1a\xac\x7c\x36\x8e\xa4\x29\x60\x97\xac\xfc\x58\x8e\xc5\xd8\x28\xda\x28\x0b\x17\x8b\x98\x98\x84\xb3\xb6\x9f\xda\x13\x2f\x7a\x56\x10\x86\xc0\x8a\x39\x97\x9e\xa7\xea\x5b\x31\xdd\xc2\xe5\x21\x18\x51\x15\x13\x2d\x5c\x9e\x1e\xe5\x99\x5a\xb2\x6d\x80\x1b\xfd\x43\x00\x25\x0b\xb3\x89\x3b\x9c\x41\x61\xfa\x03\x2c\x41\x5b\xf9\xef\x0d\xd4\xd0\x73\x68\xc0\xfc\x7c\x5c\x92\xc3\xde\xb1\x01\x95\xd8\x1e\xea\xfd\x7d\xb0\x16\x5e\xd8\xba\x35\x38\xd4\x43\x9e\x09\xed\xd5\x14\x9b\x5d\x91\xd8\xdc\xbf\x2b\xb5\xc1\x23\x03\xea\xef\x06\xdb\xd3\x90\xc7\x6a\x4a\x44\x81\xed\x09\xc8\x43\x35\x6f\xad\xc0\xa5\xb5\x02\x31\x89\x99\x45\x24\x49\x42\x43\x48\x70\xc3\x10\x66\xf8\x05\xa4\x34\x90\xc1\x38\x26\x60\xa5\x01\x0c\x66\xc0\x04\xac\x34\x70\x89\x96\x03\x58\x71\xc0\x12\xb5\xac\x99\x11\x03\x8d\xb8\x30\x19\x66\xcc\x97\x19\x50\x25\xb2\x40\xee\xc0\xb8\x60\x66\xac\xf7\x82\x1f\x49\x27\x00\xd1\x29\xec\xd9\x2f\x98\xcc\xf4\xb5\x84\x2d\xda\x88\xbc\xc8\x63\x2d\x9a\x35\x54\xa3\xc5\xc7\x02\x5f\x6f\xc5\xd2\x70\x8d\x18\xb8\xd9\xe8\xc9\x7a\x0d\xef\x1a\x9a\xf8\xd1\x71\x29\x7b\x85\x1b\x27\xb0\x67\xa1\x66\xce\xb7\x75\x54\x97\x04\x05\xad\xb4\xbf\xef\xf8\xc8\x9a\x3f\x2c\xed\xed\x3b\xea\x5b\x93\x87\xa5\x7d\x7d\x60\xaa\xe7\x93\x06\xc5\x3d\x7d\x82\xac\xf9\x9c\x58\x69\xaa\xaf\x80\x5e\x52\x98\x2b\xd3\xcb\x53\x1c\x52\x5e\xa4\xd1\xa0\xd2\xe2\x8c\x50\xa5\x39\xa8\xb4\x28\x23\x14\x69\x0e\x2a\x2f\xc6\x80\x16\x55\x6d\xdd\xf7\x95\x6f\x8f\x01\xf6\x1f\x80\x17\xdc\x28\xc5\x36\x3f\x03\x5e\x70\xa7\x14\xbe\x56\x06\xbc\xe0\x56\x09\xfe\x6f\x85\x99\xd0\x43\xed\x5c\x04\xc3\x50\x71\x0e\xf4\xf8\x58\xfa\x7f\xc8\xf6\x2d\xcc\x7e\x8a\xb3\x5f\xf2\x3e\x51\x98\xf7\x04\x3b\xb8\xa7\x87\xf2\xe2\x8c\x27\xac\x22\x79\x9a\xf7\x98\x5e\xff\x91\xeb\xce\x6a\xa1\x93\x85\x49\xc9\x3e\x3c\x94\x29\x4a\xd6\x21\xe8\x89\x2c\x4c\x4a\xb6\xe1\x40\x02\x8a\x96\x21\x0c\xdf\xec\x2a\xca\x58\xac\x4f\x67\x18\xa8\xcd\x8f\x70\x22\x8c\x04\xda\xd3\x04\xda\x5e\x90\x50\x7b\x96\x43\x8f\x9d\x12\x6a\xcf\x71\xe8\x89\x60\x09\xb5\xa7\x06\x34\xb7\xb3\xf4\x3a\x64\xa9\x51\xea\xf1\xb1\x14\x94\x02\xe2\xd7\x83\xac\x25\xf1\x8e\x14\xa1\x02\x64\xa2\xc2\x1b\x08\x24\xa8\x00\x59\x8b\xe1\x3d\x29\x41\x0b\x26\xd5\x40\x7b\x8e\x78\x16\xd4\xe0\xe5\xfc\xb8\x8f\xa2\x1d\xe5\x59\x87\x7d\x14\x2d\x28\xcf\x3a\xea\xa3\x68\x3b\x79\xd6\x49\x1f\xe6\xce\xdc\x7c\xf8\x17\xf9\x16\x2d\x2a\x2e\x44\xc0\x86\x05\x21\x51\x69\x4c\xc1\x04\x3d\x88\x83\x4a\x3b\x0a\x3c\xc6\x7a\x16\xd8\xb2\xf6\xb5\x93\x60\xa5\xf5\xc4\xb1\x06\x4f\xcf\xdb\x2b\x12\x2a\x9c\x7b\xf9\x64\xd3\xb1\x02\xd9\xcb\x86\xbe\xf2\xac\x02\x98\xcd\x5f\xe0\xfd\xd5\x53\x30\x9b\xbb\x06\xaa\x2a\x00\xb3\x79\x6b\xa0\xa4\x44\x79\xf7\xa7\x6e\x34\x00\x65\xd7\xe9\x87\xf2\xd1\x43\x30\x82\x57\xaf\x49\x78\x1a\x52\x5a\x8c\xc8\x41\xa5\x55\x88\x1c\x54\x5a\x7e\xc8\x41\xa5\x75\x87\x1c\x64\x4d\x46\x98\x13\x52\x5b\x1c\xb5\x97\xe2\xe6\x85\xa5\xba\x04\x2d\x59\x5f\x57\x9d\x49\x9b\x90\xdb\x86\x3c\x0b\x5a\x1c\x96\xbc\x54\x07\xc6\xfe\x30\xa4\x59\xf5\x2d\x24\xc6\x99\xb2\xbf\xeb\xc0\x39\xfd\x4f\xdc\x77\x8e\x33\xfd\xe9\x3b\x77\xd6\x72\xdf\xb9\x07\x97\x91\x79\x1c\x38\xc5\x29\x1c\xe6\x9b\x5f\x35\x31\x4d\x67\xe2\x2e\x10\x24\xef\x03\x6d\xdc\x84\x34\x0a\x2f\x62\x32\x6c\xa0\x56\x2a\x2f\x9b\x64\xf2\x4e\x1b\x2a\x8e\xcd\xb5\x10\x6b\xab\xfc\x33\x37\x0b\x6a\x61\x53\x3a\x73\xe4\x75\x37\x0d\x9e\x51\xa1\x50\x92\xcd\xc3\x15\x69\xa8\xe8\xbc\x6c\xaa\x6f\xd1\xdb\x96\xa9\x91\x67\x1c\xdc\xc3\x35\xe9\xe4\xab\xd7\x2f\x86\xfa\x09\xeb\x27\x7d\xdd\xe3\xb0\x1c\x84\x45\xa9\x9f\xbd\x7d\xf5\x72\x58\x3e\x85\xfa\x1e\x9d\xa0\x21\x6a\xc6\x6c\x84\x30\x7a\xca\x1f\x2f\xe1\xb1\xc9\x1f\xc3\xeb\xd5\x08\xe1\x4f\xd1\xa7\x43\xd4\xfc\xc5\x3a\x05\xc0\xa7\x1c\xf0\x49\xf7\x78\x84\xf4\x05\x80\x46\xf3\x4c\x4f\x9e\x36\xdf\xa1\x77\x9f\xce\x0e\x2e\x2b\x2e\x96\x6c\xb0\x29\x99\x6d\xdd\xad\xa8\xe8\x25\x61\xe3\xf9\x9c\xac\xd8\xcb\x30\xb9\x5c\x87\x97\x85\xfb\xb8\xaa\xa3\xb4\xe7\x57\x34\xbd\x26\x6f\xd6\xab\x55\x4a\x19\x59\x38\xee\xa9\x08\x69\x47\xfe\x51\x52\x91\xc0\x21\xee\xb0\xfa\x8a\x33\xe2\x4c\x93\xf0\x26\xba\x0c\x59\x4a\xdb\xb1\x8c\x9f\x57\x65\xff\xe0\x12\xa3\xf7\xc8\x9d\xb9\x5b\xb8\xe4\xe5\x71\xf8\x54\x5c\x39\x2c\xef\xbc\x12\x11\x9b\x4d\x03\x5d\x91\x29\x9c\x70\xfd\xfb\x6b\x42\xef\xac\xfa\xdb\x67\x54\x9f\x22\x57\x9e\x80\xaf\x6f\x63\x70\xf3\x9b\x8c\x78\xd7\x83\x8b\x13\xc4\x75\x44\x4d\xe4\xe2\x28\xf0\x46\xd1\x89\xba\x63\x67\x14\xa9\x2b\x9c\xd2\x80\x4e\xa3\x99\x8a\x19\x20\x77\xc4\xa6\x15\xd7\x86\xa6\x53\x6f\xe6\xce\x82\x4a\x88\x3f\xd3\x47\x70\x33\x4d\x97\xaf\x5e\xbf\xac\xea\xee\x39\xb4\xbe\xe5\xe4\x25\x45\x32\x1e\x6f\x30\x62\x66\xfb\xad\x49\x2c\xf3\x2d\xbe\xcb\x6c\xa5\xb0\x8a\xc3\xeb\x55\xe9\x5c\x73\xc5\xd8\x27\xec\x94\x0d\xc9\x53\x7a\x4a\x15\x4a\xbf\x5c\x85\xd5\x37\xdf\xe4\x42\x4d\xdf\xf0\xe3\x30\x8c\x3c\x94\xb3\xce\x8f\x40\xd4\xaf\xc2\x39\x29\x9d\x47\x7e\x12\x78\xf2\x84\x70\x84\x46\xf9\x4d\x94\x76\x2a\x68\x6f\xd6\xbe\xd5\x01\x9b\x8d\xf5\x1a\xa0\x86\xfe\x87\xdc\x11\x79\x6a\x02\x15\x23\xb8\x66\x60\x2b\x30\xdf\xf4\xa1\xff\x66\x32\x7d\x17\x87\x92\xd6\x70\xff\x52\xf5\xc5\x86\x9b\x4d\x9f\x74\xe1\xaa\x03\xa8\xef\x1b\x16\xce\x3f\x38\xbe\x3e\x6a\xbe\x70\x19\x17\xab\xb9\x7a\x50\xdc\xb1\x86\xc4\x65\xbe\x28\xd0\xb7\x39\x9d\x46\x43\x02\xe7\x9d\x8f\xa2\x20\x3a\x45\x5c\x7a\x46\x43\x84\xb0\x75\x8b\x16\x8a\xa3\x0b\x85\xe4\xb0\xc1\x44\xee\x0d\xf2\x71\x15\x71\x0d\x85\x0b\xdc\x03\x9f\x74\x5b\x28\x43\xad\xc8\xc5\xe6\x05\xaf\xa9\x8b\x59\x20\x8e\x1e\xa7\xbc\xfb\x54\x30\x73\xc5\x75\xe2\xcd\xa6\x63\x5f\xbc\xa8\x72\x71\x31\x91\x37\xa0\xc1\x5d\xf8\xfa\xde\x34\x77\xab\xe4\x66\x65\x0d\x23\x3e\x2a\x3a\x39\xcf\x00\x0d\xcb\xb7\x07\xf0\xde\x7e\x4a\x5a\x9d\x61\x67\xf7\x0d\x72\xac\xea\xf6\x38\x7d\xdd\x5b\xc4\xe5\x46\x1a\xd0\x51\x7a\xc2\xcc\xbb\xde\xa2\x69\xba\x4f\x67\x30\x1e\xd6\x5d\x2b\xa7\x6f\x5d\x11\x98\x66\xd7\x21\x65\xe7\x71\x9a\xd2\x49\x74\x13\x2d\xaa\x2f\xbe\x24\x07\x0c\x47\xe2\x6c\xff\x39\x89\x62\x87\xe6\xb9\xec\xd3\x13\x9f\xec\xf7\x4e\xa3\x21\x80\x97\x3c\x27\x79\xfd\xc0\xb2\x4d\xc3\x64\x91\x5e\xbf\x48\x6a\xee\x28\x33\x52\x88\x7b\x03\x20\xba\xe3\x3e\x71\xd8\x3e\x69\xf9\xae\xdb\x82\xbe\x2b\x2f\x2d\x7c\x15\x26\xe1\xa5\x79\x85\xaa\xba\x8f\x51\x8d\x00\xd9\x7b\x38\xca\xbf\xfa\xbe\x98\xf2\xf0\xb0\x15\xb7\xe2\x14\xb2\xd0\x57\xe3\x20\x92\x70\xc9\x5d\x04\xaf\x13\x71\x0d\x00\x80\xad\xdb\x3c\xb3\xe0\x7e\x5b\x46\xd7\xb8\x7d\x2b\x5c\x2c\x5e\xa9\xa8\xd6\xd5\x1e\xe6\xb5\x76\xf9\xe5\x81\x53\x36\x1b\xd1\x36\x20\x7d\x95\xc6\x0b\x42\xb3\x53\xab\xb8\x29\x9b\x05\xfa\x66\x4f\xe3\xec\xfe\xef\x09\x45\x6b\xfa\xd3\x77\xd9\xbb\xef\x71\x2d\xeb\x7b\x96\x96\x65\x5c\xb8\xd2\xe0\x65\x58\x25\x4c\x23\xfb\x16\x81\x59\x7b\x2e\x6e\x37\xdd\xba\xc3\xfa\xc2\x77\x57\x7b\x19\x25\x8b\x71\xb2\x78\x99\x86\x55\xd5\xe7\xec\xa0\xef\x36\xa1\x30\x7c\x9e\x72\x39\x24\x2f\x5b\x18\x66\xf9\x33\x8e\xd4\xe5\x38\x89\xe3\x0e\x99\x93\xe2\x4c\xdc\xc1\x14\x95\x1a\x71\x9e\x26\xf3\x90\x27\x49\x83\xe9\x0c\x67\xfc\x2b\x29\x5d\x89\x19\x1b\x18\x39\xf2\xee\x4a\x20\xc6\xeb\xfc\xf2\x69\x82\x23\x17\xd3\xf6\x45\x94\x88\x6b\x4d\xf1\x9e\x57\x78\xf7\x5d\x77\x9b\xbf\xbb\xa3\x44\xc8\x80\x5a\x72\xc4\x75\x74\xe0\xc3\x97\xa8\x0d\x17\x07\x3f\x7e\xf5\xf2\x33\xc6\x56\xaf\xc9\x2f\xd6\x24\x63\xa3\xa8\x9d\x26\x3c\x25\x49\xac\x51\xb4\xe3\x79\x01\x27\x10\x0b\xd9\x3a\x3b\x15\x95\x30\xd8\xcc\x31\x6e\xc5\x8e\xda\x94\x64\xab\x34\xc9\xc8\x5b\xf2\x91\xb9\x2e\x66\x8e\xeb\x0e\x69\xb3\x49\x1d\x95\x81\x55\x11\x1c\x89\x0b\x7b\xd1\xf7\x9f\xbf\x45\x18\xee\xba\x86\x1b\xd1\xab\x6a\x57\xa2\xdb\x83\xd6\xc0\xbb\xef\x39\xef\x16\x2d\xd7\x52\x36\x8d\xf1\x9b\x4d\xe9\xbe\x3f\xdb\xee\xa6\x64\xb9\xd4\x87\x11\xdb\x95\xdf\x25\x61\xd5\x0d\xa2\xae\xfb\x69\x58\x5d\xc0\x95\x6c\xa7\xbb\x04\x99\x69\xfb\xc1\x52\x6b\x40\x63\x6c\x36\x9d\x28\x28\x28\xbc\xea\x36\x56\xe2\xba\x78\x2f\x72\x0b\x77\x89\x88\x51\x51\x59\x20\xb2\x14\x79\x97\x88\x36\x90\xe8\x29\x19\x52\xf3\x6e\xaa\xd2\xb5\x3c\x5c\xd5\x08\xa6\x70\xeb\x63\x35\x8b\x47\x98\xb9\xee\x30\xda\x49\xea\x15\x4d\xe7\x24\xcb\x5e\xf8\x47\xc9\x98\x31\x1a\x5d\xac\x59\x9d\x10\x0b\x48\xfb\x17\x5c\x25\x7e\x43\x62\x32\x67\x29\x1d\xc7\xb1\x83\xa6\xbc\xca\x33\xe4\x62\x71\x37\x10\x33\xef\x06\x02\xb4\xaa\x0a\x70\xd8\x94\xce\x76\xb3\x40\x55\xb2\xca\x1b\x7b\xb8\xfe\xaf\xf3\x45\x1c\x1b\x24\xaf\x77\xb9\x87\x61\xd8\xbc\x3f\x9e\xb9\x72\x18\xa6\xae\x1c\x9f\x8b\xd7\xbb\x84\xc9\xa7\xac\x01\x91\x79\x73\xb4\x59\x78\xf9\x79\x78\x4d\x5a\xe8\x13\xfe\x16\x2d\x5a\xa0\xe2\x30\x17\x53\x3d\x60\x83\x65\xca\x54\x07\xa7\x38\x0d\x78\xe5\x46\xa9\x65\x2a\x04\x60\x2a\x00\x28\x48\x73\x73\x61\xe6\x62\x3b\xde\xf7\x64\xbc\xc7\x8d\x73\x6d\x96\x7e\xb5\x5a\x29\x89\xbe\x75\x0a\xc4\x30\x0a\x72\x5b\xe8\x3d\x6a\x51\x79\xef\x56\xa6\x15\x59\x27\x75\x47\xe8\x3d\x0a\x82\xe8\xd4\xbe\xf2\x3a\x1b\xc2\xc5\xcc\x79\x66\x11\x17\xc9\x30\x1c\xe4\x97\x35\x97\xc7\x6d\x2e\x12\x20\xef\x8c\xa5\x14\x6e\x63\xc7\xe6\xeb\x17\x17\x19\xa1\x37\x84\xbe\x17\x08\xa4\xc9\x1b\x11\x7e\x76\x15\x26\x97\xe4\xbd\x29\xa3\x20\x42\x94\x8d\xe7\x2c\xba\x21\xef\x83\x3d\x5f\x84\x18\xb7\xf1\x8b\xeb\x87\x29\x57\xb2\xf7\xfc\x91\x56\x77\xd1\x01\x1a\xd1\x36\x49\x16\x92\xa4\x07\xc8\xdd\x6c\x1c\xda\x0a\xf8\x13\x96\x2c\x49\x96\xd1\xc7\x80\xe6\x6f\xaf\xc9\x3c\xa5\x0b\x71\x59\xb0\xa0\x0d\xdc\xc7\xab\xf0\x15\x37\x06\x03\x60\x7e\x15\xc5\x0b\x71\x51\xbf\xba\x5d\x38\x0f\x7f\x19\x65\x0c\xc2\x2a\xe9\x64\x70\xf7\xe4\xf9\xf9\xf8\xab\x97\x6f\xdf\xff\x70\xfc\xf2\xab\xe7\x81\x3d\x43\xe3\x20\x09\xe5\x16\x63\x45\x2e\x02\xd7\x2a\xa2\x73\x45\x5c\x51\x7c\x41\x96\xe1\x3a\x66\x3f\x0c\xe3\x35\x09\x98\xc4\x71\x4d\x29\x49\x54\x18\x0f\xb1\xf0\x10\x91\x52\x55\xe7\x60\x3a\xab\xae\x86\x40\x60\x47\x6d\x1e\x5d\xf3\xc7\x65\x1f\x2e\x16\xaa\x21\xca\x2a\xa2\x46\x57\x5c\xdd\x24\x2c\xa2\x47\x64\x2a\xae\xbb\xae\xcc\xd7\xb0\xf5\xf2\xdc\xf5\xbd\x8a\xee\x88\x3d\x0d\x3c\xa9\x3e\xe6\x70\x79\x71\x20\xc3\xfe\x63\x31\xb8\xb4\xef\xf2\x56\x92\xbe\xd4\x50\x41\x45\x53\x9d\x1e\xfc\xd4\x11\xa6\xca\x26\x59\x5f\x5f\x10\xea\x7e\xef\x40\xdc\x82\x26\xed\x96\x12\x0f\xb8\xa7\xa5\xa0\x21\x12\x77\x6a\xe7\xd6\x4e\x29\xca\xa9\x21\x3c\xe1\x51\x14\x1a\x2d\xef\x9c\x72\x09\x52\x91\xb4\x8a\x28\x55\xe7\xa1\x9e\x51\x7d\x8b\x7a\xb4\x74\xf6\x6c\x89\x50\xbe\x47\xf8\xf3\x94\x35\x54\xda\x05\x72\x47\x35\x12\x44\x8a\xa2\x02\x03\x38\x95\x62\xaa\xa6\x29\x0d\xd6\xac\xc6\xf5\x21\x54\xc7\xf2\x12\xf3\x5d\xe8\x7a\x36\xba\x46\x27\xf8\x96\xb8\xf2\x22\xa5\xbc\xad\xbb\x7f\xd0\xbd\xf7\x82\x60\x7f\x9f\x36\x9b\xa4\xd9\xe4\x43\x8a\xbc\xf4\x0f\x47\xc1\x17\xc0\x2a\xed\x0f\xe4\x4e\x6a\xd4\xa6\xd8\x74\xeb\x8c\x33\x43\xdc\xb6\x88\xa9\x83\xca\xfa\x82\xf8\x6e\x36\x4d\x9b\x1f\xe5\x75\xc8\x1a\x1c\x67\x18\x71\xf3\x7c\x5c\x9b\x2e\x97\x84\xbd\x60\xe4\x9a\x2b\x3b\xba\xfc\x48\x4d\xab\x19\xc9\x94\x5e\xa2\x6f\x72\x84\x09\x65\x57\xde\x80\x1e\x4d\xb3\x19\x0e\x83\x4c\x8d\x98\xa9\x8b\xe3\x20\xd4\x8a\xa1\x21\xdc\x9b\xcd\x42\x3f\x48\xdc\xbd\xa0\xaa\x6b\x98\xf4\x99\x86\x33\xab\x13\xc8\xda\xef\x8a\x12\x24\x38\x6e\x36\x1d\xda\x6a\xc9\xfa\xde\x25\xf3\x33\x85\x86\x13\x72\xcd\x6e\xeb\x05\x81\x68\x2a\x63\xd2\x86\x58\xaa\xfe\x83\x4c\xb1\x20\xcb\x28\x21\x79\x8c\x4a\x35\xd9\x20\xa4\x46\x97\xcc\x46\xe9\xa9\x24\x0e\x1f\xbc\x27\xa2\xd7\xc3\x68\x34\xac\x4e\x00\xd6\x4f\xbd\x68\x84\xa4\x98\x36\x9b\xa9\xc5\xec\xf4\x1b\xd7\xa1\x4e\x7d\xf5\x46\x2c\xbf\xbb\x92\x29\xfd\xb4\x98\xda\xe1\xa6\xf3\xd4\x9b\x61\xf8\xf5\xe5\x6f\x67\xf6\x48\x34\xa0\x8d\x28\x49\xaa\xc6\xe7\x72\x51\x58\xa9\x15\x69\xa2\x1b\xb7\xa4\x0c\x61\x6e\x45\x54\x29\x1f\x9c\xa6\xac\xa4\x7e\xf0\xd0\x87\x35\x10\x83\xc4\x45\x9b\x8e\xdb\x44\xcd\xe6\xe3\x2e\x6f\x7f\x21\x6f\x6c\x5f\x85\x34\xbc\x1e\x36\x84\xda\x94\x09\x0d\x9c\xc8\x41\xb2\xa8\x4b\xa9\x91\x1a\x33\xb7\xa8\x44\xc3\x6d\xfc\x54\xf7\x3b\x4b\xc6\x94\x0b\x57\x16\xd4\x4a\xd7\x13\x66\x13\xab\x7a\x17\x9d\xd9\x12\x14\xec\x8f\x87\x68\x94\xa4\x2c\x5a\xde\x8d\xe3\xd8\x14\xef\x0a\x65\x52\x8d\xa5\x50\xc4\x20\xa1\x6c\xc8\x5a\x9d\xa4\x58\x90\x8c\x5f\xa7\x8b\x14\xbb\x1f\x8c\x89\x8f\x25\x0a\xc9\x57\x26\x68\xc0\x40\xf5\x57\xeb\x11\xd5\x6d\x64\xac\x51\x54\x46\x98\x46\x33\xb0\xeb\x21\x5b\x99\x91\xa1\x0e\x99\xc9\xf3\x60\x9e\x88\x62\xa1\xa1\x3e\x48\x14\xa1\x11\x43\xb7\xa8\x96\x4a\xd8\xb0\x63\x08\x70\x1c\x05\x0e\x4a\x03\x8a\xf7\xfd\xbd\x20\x57\xda\xd2\x0a\xe6\x99\xac\xb9\xc6\x16\x32\xd2\x80\xbe\x03\x44\x12\xe6\x5d\xea\xc2\x1d\xa2\x0d\x5e\xb3\xd1\x5e\xba\xd9\x14\x33\x1b\xb9\x62\x3e\x5d\x4f\x82\x3a\x3e\x1e\xf4\xfb\xdd\x7e\xe1\x52\x5d\x11\x0b\x6e\xe9\x4d\x71\xcf\xc5\x4c\xd8\x80\x2d\x34\xe4\x85\x8c\xc4\xd0\x53\xd3\xb1\x45\xcf\xcf\xef\x45\x4e\xa4\xa9\x93\x0f\x9b\x38\x69\x53\x02\x77\xcc\xc6\x8e\x5b\x25\x05\xa6\xe9\x2c\x48\xb0\x54\x8c\x53\x35\x6e\x72\x62\xe1\xcc\xc5\xc9\xc3\xfa\x02\x57\x90\xca\xf4\x97\xc2\xec\x92\x30\x80\x41\x90\x81\x89\xb2\xc4\xf2\x96\xc1\x51\x40\x35\xf5\x98\x3b\xe2\xe4\x8c\xf8\xd8\xa6\x94\xe6\x08\xfb\x16\x76\xd4\x75\xf1\x82\xc4\x84\x91\xd2\xf0\xcb\xab\xc5\x6a\xec\x12\x4b\xb5\xae\xe6\x1b\x90\x2f\xa4\x6a\x5c\xdf\x21\x5e\x20\x56\x23\x8e\x32\x26\x7b\x92\x31\x33\x69\xa3\x06\x7d\x12\x66\x6a\x1a\x91\x6b\xaf\x77\xd3\x52\xfe\x9f\xaa\xfc\xd1\xa7\x2d\xd2\xfa\x14\x29\x3e\xfc\xb4\x95\x5f\xa0\x4e\xf5\xbd\xba\xb5\xb5\x5e\x44\xcb\xa5\x1e\x3b\x4a\xf3\xaf\xba\xcf\xdf\x87\x8b\x05\x59\x0c\xef\xb7\x58\xb4\x2b\x3c\xce\xd3\xeb\xeb\x34\x19\xc2\x68\x01\x5d\x98\x98\x1d\x97\xb7\x13\xcb\x0d\x9f\x69\x34\x73\x4f\x69\x5b\xa4\x99\xf2\xd7\x59\xb0\xe7\x0d\x69\x1b\x72\xd6\x01\x96\x40\x30\xc5\xc0\x34\x9a\x45\x49\x43\x46\xdf\x6c\xf4\xbb\xc8\x90\xdb\xe8\x92\xe5\x16\x53\x26\xf3\x32\xe8\xf0\x40\x8b\x5b\xea\x51\x2d\x11\x3c\x9c\x5a\x8c\x99\x95\xd5\x5a\xbb\x41\x5d\x9c\x04\xce\xc3\x54\x87\x09\x6b\xec\xb9\xa3\xe4\x24\x55\x75\x4e\xd4\xea\x6e\x18\xa4\xd3\x64\x86\x63\x43\x84\x84\x20\xad\x62\xb0\x23\xb5\xe9\x18\xf3\x5e\xb0\x57\xc5\xf0\xe1\x4c\xe4\x74\xb5\x5b\x58\x88\x5c\xf7\xae\xdc\xfb\xe2\x44\x63\x78\x11\x93\x06\x4b\x1b\x94\x70\xb5\xb9\x2c\xf1\x42\x77\x34\x4f\x13\x16\x25\x6b\xb2\xbd\x2a\x0b\x9a\x6a\x9c\x82\x2b\xcc\xb5\xd3\x2b\xd3\xb0\x30\xd7\x0c\x95\x29\xc1\x9a\x4d\xe6\xb8\x5b\x77\x0b\x53\x66\xe2\xa2\xe9\xcc\xa4\xd2\x8e\xae\x9e\x4d\x93\xd9\x6c\xb4\x27\x72\x31\xb4\x5c\xf6\x08\x6b\x27\xb3\x26\x7d\xbf\xd3\xa1\xb4\xc2\x90\xe4\x46\x88\x63\x99\x3b\x2e\x66\x96\x46\xbf\x57\x65\xc8\x37\x9b\x0e\x7b\xdc\xbc\x4c\x51\xa7\x78\x1c\x05\x0a\xca\x0b\x28\x2e\xc1\x74\x36\xb2\x56\xa6\x4a\xb2\xf0\xde\x90\xe1\x66\x8b\xb0\x3c\x61\xc4\x13\x52\x17\x1c\x17\x72\xe1\xaf\x67\x45\xd3\x1d\xda\x91\x45\xfd\x74\xf6\x38\x22\x3d\x94\xb0\x8a\x6e\x44\x0d\x7d\x6a\xda\xf3\xb7\x63\xc4\x96\x19\x21\x73\x32\x17\x93\xf6\x32\xa5\xcf\xc3\xf9\x95\x53\x6e\xbf\x6f\x64\xa2\x45\xcb\x65\xf5\xaa\x8b\x52\xcb\xb5\x82\xce\x36\x9b\xbd\x83\x9f\x3a\xeb\x44\x58\x1a\x8b\xcd\x45\x9a\xc6\x24\x4c\xe4\x24\xd1\x46\x98\xa8\xc5\xb9\x22\xe2\x6e\x36\x40\xf8\x07\x35\x32\xd3\xd2\xab\x76\x37\xa8\xeb\x5d\xe5\xe1\xef\x81\xde\xc5\x6b\xed\x50\x6b\x32\x09\x33\x17\xb4\x86\x87\x67\xc7\x0a\x09\x95\x91\x54\xea\x42\xc3\x62\xbc\x87\x95\x52\x93\x04\x3b\x17\x7b\x2b\x6c\x63\x06\xb6\xe4\x83\x65\x64\xe4\xb7\x48\x5c\xb9\x4c\x21\x2c\x00\x83\xd4\x91\xa0\xee\x0e\xda\x9f\x16\x49\xcf\xec\x99\x98\x4c\xcc\xc4\xd8\x42\x10\x56\xa0\x4a\x09\x6b\x44\xdc\x83\x12\xd5\xc5\xe6\x18\xb0\xa3\x57\x61\xc2\x87\xe3\x07\x29\x7d\xf9\xdb\x1b\x22\xb4\xdf\x0e\x10\xfa\x21\x44\xc8\xc7\x55\x4a\xd9\x38\xfb\x6b\x59\x9a\x94\xe5\xf5\xfd\xb6\x42\x5e\x5b\xa2\x2b\x5a\x3a\x35\x92\x9c\x73\x9c\x29\xf0\x0d\xcd\x9c\x3d\xe4\x91\x36\x12\x5e\x04\x5c\x86\xde\x47\x8b\x61\x8a\x7f\x9e\xa5\xc9\xd0\xd6\xfe\x19\x4e\x5d\x0b\x7d\x31\xd4\x73\x03\xea\xde\x58\x6b\xb2\xc8\xc9\x66\xa3\xac\x20\xf5\x2b\x85\x3e\xe0\x6e\xc7\xd4\x5e\x6e\x0f\x4e\x24\x47\xd7\x1c\xa7\x73\x9a\x5e\xdb\x44\x2d\xf7\xd4\x5a\xe2\xe5\x34\xe3\x98\x3c\xe4\xbe\x17\x2d\x94\x41\x6a\x0f\x99\xd3\x74\x36\xca\x36\x1b\x47\x01\x73\xb3\xd6\x61\x18\x1c\x91\x52\xce\xd8\x05\x84\x1d\xc8\x93\x13\x5c\x5a\xa3\xda\x3e\x7a\xa4\x14\x29\xcf\x28\x95\x17\x4f\xec\x49\xc5\x87\xe7\x29\x8a\x0b\x76\x0f\x50\x75\xcf\xe8\xbd\x9b\x8d\x17\x04\xac\x1d\x87\x19\x7b\xa1\x4c\xc1\x1c\xca\x3b\xab\x92\x72\x6a\x0e\xb6\x3c\x79\xeb\x6a\x4f\xe0\x72\x0f\xb8\x37\x8c\xb2\xc2\xcc\x0f\x4e\xa1\xfd\xda\x09\xb9\x15\xb2\x2c\x0b\x22\x8b\xa9\x46\x59\x10\x04\x51\x89\xfd\xb2\x40\x58\x6f\xd2\x36\x05\xa9\xc8\x4d\xf2\x66\xd3\xb1\xd3\x07\xda\xca\x4b\x37\x1b\xde\xa2\xfc\xe9\xb4\x90\xe1\x30\xad\x1a\x84\xa8\x2b\x57\x55\x29\xc9\xd2\x35\x9d\x93\xe0\x5e\x3d\x65\xef\x85\x61\xa6\x41\xdc\x72\x2a\x5b\xb4\x39\x38\x4f\x08\x53\x80\xbc\xc5\x86\x0c\x27\xe1\x35\x19\x12\xbc\x08\x59\x38\xa4\x76\x7e\x45\xb7\x08\xd3\x3e\xae\xcc\xb7\x60\xd3\xb2\x82\x2f\xb5\x8a\x08\x22\x50\x4b\x40\x6d\xc2\xd6\x60\x5a\x44\x69\x12\xb2\xf0\x9f\x02\xb4\xda\x9c\x62\x55\xb8\x7d\x45\xe3\xca\xe1\xd9\x8e\x09\x10\xe5\x55\x08\xc4\x47\x2d\xda\xe6\x6d\xd2\x42\x98\x3f\xaa\xec\xd5\x92\x0c\x1f\x54\x84\x7e\x9a\x07\xb6\xcf\xc0\xad\xa4\xa2\xe3\x0a\xf8\x7b\xb5\xda\x9b\x5a\x0b\xd5\xd2\x19\x45\x0d\xa7\x5c\x12\x70\x6e\x5b\x70\x06\xe2\x3d\x9d\x24\x6a\x11\x49\x83\x4a\x1a\xa9\x8d\x41\x41\xae\x88\x24\xe5\x46\xb2\x0b\xe6\xd2\x3b\xb0\xd0\x35\x24\x2a\x38\x8b\xd8\xa8\x97\x5c\x47\x72\xd0\x94\xce\xa4\x78\xaa\xc5\xeb\x71\xab\xc4\xef\xcd\x65\xe2\xda\xbc\xbe\xe1\xe2\xf0\x7b\x73\x75\x18\x66\x4d\x8a\xcb\xc3\xef\x8b\xeb\xc3\xb5\x45\x83\xe7\x6a\x7d\x83\x0b\xb8\xe3\xe2\xc2\xaa\x8f\x74\x87\xaf\xcd\x56\x2e\x93\xed\x70\xd5\x78\xaf\xb9\xf6\x31\x19\x15\x27\x9a\xbe\x45\x4e\x59\x05\x4a\xb9\xa7\xdc\xfd\x76\x14\x19\xeb\x1b\x3a\x6b\x3e\x02\x46\x98\xfe\xff\xec\xfd\xdd\x76\xdb\xba\xb2\x28\x08\x5f\x7c\x17\xdf\x5d\x5f\xf6\xcd\xbc\x68\x9a\x7b\x2f\x85\x5c\x82\x14\x92\xfa\xa3\xe8\x30\xde\x8e\xe3\xcc\x99\x13\x27\xf1\xb2\x9d\x64\xed\x25\x6b\xe6\xd0\x12\x64\x73\x87\x22\xb5\x41\x28\x8e\x57\xec\xb5\xc7\xe8\xb7\x38\x63\xf4\x13\x9c\x77\xe8\xd1\xef\x72\x5e\xa0\x5f\xa1\x47\x15\x00\xfe\xcb\x96\x33\xe7\xdc\xdd\x17\x27\x6b\x4d\x19\x04\x0a\x85\x42\xa1\x50\x28\xfc\x15\xb6\x42\x7d\x3f\x91\xe9\x36\x44\xe6\xa6\xe8\xbd\xb8\x04\xd8\x63\xd0\xdd\x4f\xdb\x06\x7c\x47\xc9\x2c\x88\x6a\xa7\x1d\x93\xfa\x29\x95\x4c\x3f\xc8\xe3\x6a\x11\x64\x94\x58\x88\x8c\x0b\xe6\xf3\xc3\xaf\x34\xe6\x99\x46\xd0\x65\x2e\x5d\x6d\x49\x9d\x2a\x72\x36\xe8\x06\x24\xa7\xc9\x3c\xf8\x5c\x3b\x4c\xaf\x28\xda\x67\x34\xa8\x2a\x85\xec\x28\x57\x12\xcd\x6b\xa7\x0e\xf2\x58\xd3\xcb\xc3\x78\xb3\x42\x8d\xe7\x65\x70\x15\x0b\xe0\xd9\x88\xaf\xe4\x09\xa6\xfe\x53\xff\xbb\x42\x03\xc3\xa3\x04\xf1\x58\x6e\x64\x27\xbe\xb5\x9b\x6c\xd2\x4e\x49\x83\x76\x4a\xa6\x46\x28\xb6\x93\x36\xb1\xe6\x37\x68\xa7\x2a\xaa\xff\x3c\xe5\x54\x2d\xf9\xf7\xd1\x4d\x55\xac\xcd\xaa\xa9\x30\x57\x29\xaa\x15\x9c\x14\x8a\xcd\x9e\xda\x59\x7d\x66\x72\x76\xf3\x9d\x15\x0f\xfc\x31\x33\x3f\x77\x7f\x57\x9c\x3b\x0a\x91\x46\xeb\x9b\x99\xdb\x11\x78\xcf\xda\xfa\x1d\x09\x7d\xb5\x74\xde\xb1\x77\xc3\xe7\x30\x53\xe8\x74\xd4\xf4\x80\x4e\xc2\xa9\x9a\x1b\xd4\x2a\x93\x34\x57\x26\x15\x95\x99\x24\xd3\x62\x7d\xd2\x42\x7d\x30\x2d\x15\x93\x03\x5a\xdc\x4a\xf9\xe1\x8a\x6e\xd2\xc8\x35\xbd\x29\x5a\x81\x54\x8f\x3d\x98\xb8\x7d\x5f\x28\x9d\x6d\x57\xe0\x46\xce\x16\x56\x52\x6a\xc5\xb3\x6a\xf1\x74\xc2\xa6\xa6\xb9\x5b\x59\x28\x7e\x80\x82\x47\xe9\x77\x29\x7c\xe4\x47\x8b\xd8\x2c\x41\x60\x0d\xd1\x9a\xfd\xd3\x58\x3c\xd4\xf2\x81\x4a\xbe\xa5\xcb\xa4\x78\x73\x6d\x8b\x71\xe2\xfb\x5d\x1d\xc1\xef\xa3\xbe\x6a\xb8\xfe\xf3\xf4\x57\xad\xe8\xba\x02\x53\x57\xf5\x76\xcb\x27\x11\x4a\xe3\x13\x9f\xb0\xd2\x98\x51\x4c\x84\xe9\x65\x36\x84\x88\x19\xc8\xdd\x6e\x95\xb5\xa4\xf9\x52\x55\x76\x92\xc0\xb7\x76\xe9\xa6\xe1\x86\x36\x0c\x37\x74\x6a\xf0\xf2\x89\x7e\xeb\x21\xa5\x5b\x63\xc5\xd6\x5a\x57\x2e\x7e\xfd\x61\xda\x76\x13\x65\xbf\xaf\xba\x95\xd7\x88\xff\x5f\x51\xb3\xb5\x1a\xde\x6f\xf9\xd6\xb8\x5f\x8d\xa8\x1d\x37\x13\xab\xba\x09\x88\x71\x82\x53\xff\x4c\x56\xc3\x5c\x38\xf9\x1f\x21\x86\x49\x4d\x0c\xef\x1f\x00\x36\xb1\xa2\xda\xd8\xaa\xa1\xcb\xdb\x4d\x14\xb7\x9b\x36\x76\xc5\xb0\xd0\x15\x41\x06\xee\x48\x35\xbd\xca\x39\xdc\xd3\xde\xfd\xfd\xd9\xc2\xca\x87\xf0\x1e\x18\x30\x36\x68\xc8\x86\xee\x59\xdc\x29\x2d\x08\xc4\x8f\xe3\x7f\xc4\x88\xd4\x5c\xf6\x84\x4d\xa7\x1b\x46\xa3\x33\x9a\xf2\xcd\x37\xfb\x92\x4b\x9f\xde\xde\x8a\x13\x81\x05\xc8\xee\x51\x72\x59\xc9\x5c\x3b\x12\x04\x69\x27\xeb\x78\x93\x27\x83\x72\x66\x09\xac\x76\x05\x36\xe3\x4e\x62\x09\x7a\x90\x2c\x57\x50\xd5\x12\xfe\xcd\xf9\x38\x4d\xf9\x31\xa3\xc1\xf2\x22\xaa\x5e\xb1\x7c\x20\x53\x92\xf2\x6d\x72\x1d\x25\x97\x05\x08\x5f\xee\xed\x2b\x0b\x25\xf8\x4a\xb3\xa3\xcd\xf3\x80\x07\xbe\xae\x17\x2f\x39\x7c\xae\x7c\xe3\xdd\xd5\xcf\xbe\x3c\x5c\x2c\x71\x7d\xf6\x29\x99\xe8\x51\x72\xa9\x13\x7d\x4e\x2f\xd6\xf0\x37\x8c\x17\x89\x4e\xf4\xeb\x80\xc5\x3a\xd1\xf1\x7a\x8c\x3e\xcd\x76\x34\xa9\xff\xfc\x7b\x44\xb9\xc6\x7d\x5d\xdf\x4d\xaf\x43\xa9\x2b\x67\x41\x4a\x25\x06\x0f\xc3\x98\x5d\x04\x05\x0a\x0f\xe6\x79\xa5\x6b\x2b\x78\x02\xe1\x0e\x28\xe1\xd9\x96\xb3\x24\x4b\x29\x3f\x5c\x07\xa8\x24\xf8\x86\xd1\xed\x76\xa9\xe9\x3f\xcf\x19\x91\xed\x5f\x05\x3c\x68\x17\x0f\xff\x7e\x6e\xf3\x36\xed\xfe\x5b\x12\xc6\x86\xae\xe9\x66\x1b\xaf\xdc\x12\x26\x2f\x03\x97\x50\x83\x8c\x98\x77\x26\x99\xe8\x97\x2c\x59\xaf\x74\x22\xfe\x1e\x24\x51\x14\xac\x52\x3a\xaf\x30\x41\xd0\xcd\x1f\x45\x37\xf5\x75\x1d\xe9\x46\x5b\x72\x0b\xe2\xa9\x24\xb8\xdc\xae\x9a\xa6\x77\x19\x5d\xd1\x80\x1b\xed\x76\xad\x89\xb1\x16\xbb\x8d\xe4\x75\xb1\x46\x87\xf1\x5c\x8c\x2c\xea\x6b\x03\x90\x6f\x18\x82\xd8\x7b\xca\xef\x74\x1a\xcb\xaf\x08\xf2\xe9\x3a\xe4\x1b\x8f\x9e\xe7\x13\x0d\x9e\x67\xf9\x9c\x2d\xff\x40\xd6\x77\x85\xeb\x2d\x29\xe5\xeb\x15\xe8\xd9\x6c\x9f\xad\x04\x02\x06\x2b\x14\xed\x37\x50\xa0\xd2\x08\xef\xce\xc3\x34\xb8\x88\xe8\x46\xc8\x42\x3a\xc1\x9d\xbc\x8d\x90\x32\x2d\x87\xc2\x73\x48\xf7\x40\x42\x3a\xe1\x58\x59\x08\x0a\x93\x5c\xd6\x7d\x25\xae\x15\xe5\xfa\x42\x1d\x5c\x10\xfa\xcf\x68\x42\x9b\xc1\xe2\xb1\x13\x68\x76\xb6\x9e\xf1\x84\x35\xd1\xd0\xd4\x2e\xdd\x74\x7d\x31\x8b\x82\x34\xa5\xf2\xc0\x20\x37\x09\x6f\x6c\xc1\x02\x24\x10\x7d\x0f\x87\x1b\xce\x15\x67\xd6\xb5\xaa\xa9\x5c\xab\xcf\x4f\x63\x42\x82\x86\x9b\x16\xb8\x5c\x2f\x46\xa3\x66\xbd\x2e\x95\x3a\xe1\xea\x36\x81\xc4\x09\xdd\x4c\x5e\xee\xca\xf8\x2b\x2a\xc5\x9a\x85\xb2\x24\x08\xff\x79\x44\x97\xae\x3d\xbc\x14\x24\xcc\x11\x17\x9e\x63\xee\x2e\xd6\x51\x04\x12\xbd\x81\x68\x25\x8f\x9b\x8e\xac\x14\xd8\x71\x2f\x82\xf2\x91\xb9\x3a\x0e\xe4\x5f\x33\x86\x92\x21\xd7\x70\x2a\xa2\x36\x9b\xe7\x68\x2e\xc1\x84\x4a\x4c\xee\xf7\xc0\x82\xf0\x60\x86\xb5\x45\x01\xeb\xd5\xbd\x63\x72\x35\xc7\x6a\xbb\x51\xb9\x96\x6d\xcb\x71\xb9\x26\x2c\xf9\x52\x09\x60\x3c\x80\x2e\xa2\xd4\x15\xb0\x11\x75\x93\xd4\x67\xaa\x65\xd1\x77\x8c\xd4\x5b\x6d\x7d\xa2\xb7\x79\x5b\x9f\xea\x79\x9e\x57\x12\xfd\x67\x9f\x35\x15\x5f\xb4\xe9\x2a\x06\x91\x70\x41\x51\x45\x23\x47\x3c\x59\x2a\x99\x50\x22\x6c\x91\x93\x75\xdc\x9d\x7d\x9b\xaa\x69\x8f\x90\xfb\xd2\x8d\xe3\x72\xe1\x27\x34\x5d\x47\x1c\xa3\x94\xb9\x24\x2f\x39\xef\x02\x2b\xc3\x98\x47\xb1\xa1\x43\xb2\xc6\x82\x30\xa5\x73\x2d\x88\x35\xfa\x6d\x46\x57\x5c\x3a\x59\x02\xf5\x22\xdc\x60\xe0\x11\x38\x0c\xd5\x6e\x38\xef\xe5\xc8\x24\x88\x1c\xc4\x61\x38\x34\xbd\x5a\xaa\x69\x12\xda\x9d\x49\x82\xa0\xf4\xcf\x06\xed\xbe\xda\x7f\x7d\x74\xf8\x92\xec\xd8\x62\x85\xb6\xc1\x38\x6c\x5a\xfa\x29\x8c\x42\xaa\x11\xd1\x66\x85\x5f\x69\x3c\x7d\xf3\xf9\xed\xad\xba\xff\xb9\x08\xc2\x68\xcd\x84\x4a\x14\x83\x61\xa6\x21\xa5\xc9\x1c\x30\xfe\x32\xe0\x14\x3d\x91\x48\x7b\x6d\xcd\x02\x28\xb6\x10\x25\xb7\x95\x05\x7f\x0b\xf1\xcb\xe0\xdb\x2b\x55\x82\xa5\x0a\x88\xc3\x59\x66\xfb\x01\xbd\x7f\x59\xd3\x35\xfd\x2c\xef\x6d\x36\xd4\xb3\x20\x2e\xfb\x47\x47\x9f\xcf\x0e\x4f\xcf\x4e\x6b\x97\x4f\x9f\x05\x51\xd4\x01\x6c\xe9\x73\xbc\x80\x7a\x3f\x9e\x14\xef\x82\xd7\xd4\x50\x85\xa4\xe2\xba\xd0\x36\xf8\xaa\x96\x42\x79\x6a\xc2\x6f\x6f\x11\x7f\x56\x07\x12\xe2\xc9\xde\x92\x42\x33\x4c\x92\xfa\xd6\x6e\x9a\x1f\xc8\x4d\xd5\x79\x8d\xd8\x4f\x26\xa9\xf0\x2a\xa6\x8e\x1b\x66\xa8\x4c\x79\xc2\x20\x93\xc3\x13\x7a\x79\xf8\x6d\x25\xb6\xa0\x99\x38\x36\x17\x67\xdd\xd9\x34\xb3\x63\xb3\xca\x3f\x40\x9e\xb8\xe3\xb3\x2c\x59\xce\xe1\x33\x66\x19\xb1\x49\xc2\x76\xfb\xae\xe8\xb1\x65\x1b\xc6\x1c\x07\x9c\x53\xb6\xe1\x34\x8b\x6f\xc9\x4b\xf8\x0f\x0c\xef\xc5\x65\x46\x69\x69\x16\xd8\xde\x68\x5d\xe4\xb9\x27\x6c\x4a\x0a\xc7\x9b\x64\x53\x44\xc9\xa5\x3c\x6c\xfc\x2e\xc1\x01\x2c\xd5\x96\xa0\x49\xe8\x5c\x13\xa8\xc1\xc8\x9b\xb1\x90\x53\x16\x06\xd2\xd3\x41\xcd\xba\xa8\x57\x3a\x89\x3f\xc4\xb3\x60\x7d\x79\xc5\x0f\x95\xee\xf8\xdc\x74\xa6\xdf\xf2\x7d\x9a\xbb\x77\x51\x79\xb4\x28\xbc\x78\x48\x6b\xe9\xa6\xb8\xde\x51\xc8\x2e\x3c\x66\x78\x1a\x76\xe0\xb9\x6e\x4a\xc5\xb6\x63\xed\xaa\x9b\x9d\xa5\x4e\xda\x6a\xd1\x1d\x3f\x2f\x53\xde\x55\x2c\x81\x74\xe9\xb7\x15\x9d\x71\x3a\xc7\x43\x63\xd2\xe5\x41\x76\x64\x45\x9f\xaf\x71\x4d\x6a\xb7\xe1\x06\xb0\xcc\x2f\x48\x92\xa7\xa4\xca\x49\xc7\x87\xef\x5e\xbe\x7e\xf7\x33\x3a\xa1\xd0\x83\x05\xa7\x4c\x4d\x14\xa0\x4d\xa8\x3a\xa5\x26\xa9\xcb\x54\xb0\xa6\xb7\xc3\xb6\x2e\xec\x16\x98\x9e\x79\xcd\x84\x43\x7a\x6e\x86\x54\xf1\xd2\xb6\x4e\x34\x1c\xb3\x3c\xbd\xcd\xcc\x06\x0d\x56\x51\xc6\x0d\x00\xb9\x76\x26\x3b\xf6\x26\x05\x7d\xdf\x34\xbd\xbc\xd7\x48\xa5\xab\x94\x5c\xb5\xd2\x6b\x0d\xd4\x6e\xa7\xac\x85\xf3\xaa\xa8\x79\x8e\x51\xa8\x1e\x4c\x7e\x8d\x82\x16\x97\x5d\xa6\xad\x4b\xa1\x20\x8a\x5b\x4a\xeb\xe7\x00\x10\x53\x00\x58\xa6\x67\xc9\x29\x9d\x25\xf1\x3c\xfd\x5c\xa6\x4c\xdd\xe9\x4b\xd7\xcb\x65\xc0\xc2\xbf\x53\xc3\x54\x3b\xb3\x49\x8c\xfc\x2d\xa8\xff\xc2\x68\x54\xe7\x80\x5c\x65\xf2\xaa\x67\x23\xeb\xac\x2a\xad\xd5\x91\x9d\xda\x3a\x4d\x23\xbf\x45\x43\x35\xae\x8a\x94\x8c\x0c\x85\xa3\xb4\xb6\x61\xa8\xdb\x03\xdf\x60\x68\x4e\x85\xa9\x55\x4b\xe4\xdf\x0a\x0b\xae\x75\xe1\x55\xdd\xa7\x20\xbe\x61\xac\x65\x68\x40\x76\x0d\xe9\x53\x6b\x4f\xfe\xf5\xb2\x3b\x93\x72\x98\xb4\xee\xe4\x36\xb4\xe8\x49\xb4\x7b\xbc\x7f\x7a\x7a\xf8\x72\xaf\x2a\xd2\xca\x61\x8e\x47\xb3\x96\x7a\x3e\xb0\xd4\x7d\xff\x5c\xcf\x9d\x46\xc9\xb5\xe8\x3e\x3c\x49\xbe\x34\x36\x37\xad\xb5\x75\x45\xde\x54\x61\xa0\xbd\x44\x3f\x30\xcb\x52\x95\x5d\x94\x2c\xf4\x1b\x31\x36\x82\x68\xa0\x4f\x9a\xef\x8d\xd5\x32\x8b\xba\xa4\xc4\xcb\xec\x48\xd4\x3a\xe2\x9a\x52\x75\xe8\xea\xa4\xd8\xd5\xc5\xb5\x90\x8c\x19\x65\x4e\xee\x16\x7b\x86\x1a\xd9\x31\x8e\xad\xe3\x77\xf4\x1b\x17\x9d\xfd\x11\xc2\x75\x42\x1b\xc4\x2b\x33\xc5\x0a\xf4\x1f\xe1\x7d\x3d\x09\xab\x2d\x12\x96\xcd\x96\x1a\x2b\xc0\x4b\xb7\xd1\x24\xc5\x85\xed\x24\x86\x37\x70\x4a\x3d\x5d\x2e\xf0\xb3\xec\x4a\x5a\xb5\x31\xb6\xa8\x56\x91\x0d\x4d\x9e\x01\x90\x91\xb7\xb7\x3b\x55\x2b\x49\x9e\x72\x2c\xb6\x5d\xbd\x0f\x1b\x66\x36\x0e\x15\x8c\x42\x29\x9f\x15\x7d\xf4\xdc\xaf\xc2\x6d\x12\x8c\xb7\xc1\xb7\x70\xb9\x5e\x6a\x12\x81\x36\x4b\xd6\x31\xd7\x18\x0d\x60\x0c\x27\x5a\x70\x91\x30\x1e\xc6\x97\x42\xe2\xd9\x3a\xee\xaa\x51\xa6\x91\x40\xb1\x6e\x5e\xa9\xde\xc4\x9a\x12\xde\x30\x84\xed\x35\x0d\x78\x20\xe4\x1e\x0a\x39\xea\x98\x56\xab\x34\x19\xa1\x85\x29\xd6\xed\xad\xc1\x0b\xbd\xb3\x49\x9d\x63\x9c\x51\xcc\x94\xcf\xba\xd0\x37\x20\xbd\x2e\xa1\x34\xaa\x3a\x2d\xd3\x61\xc5\x7d\xa1\x66\x46\x66\x86\x8a\x26\x86\x75\x0d\xe7\xad\xdb\xa9\x28\xe1\xfc\x69\x23\x5b\xef\x32\x75\x5b\xac\x54\x66\x8b\x36\x4e\x20\x6a\x4b\x10\x22\x41\x2c\x42\x70\xa2\x72\xd5\xf4\xb7\x9c\x3a\x37\x8c\xd8\xb9\x3e\xe7\xd9\x0c\xfb\x7e\xb0\x8a\x94\x4b\x9f\x6f\x0f\x72\xb2\x51\xef\x4b\xa6\xa2\x18\xaa\xd2\xef\x67\x6e\x93\x50\x3c\x9a\xe1\x65\xe9\x64\xeb\xd8\x78\xec\x80\x55\x24\x9c\xad\xe3\x2d\xc7\xac\xad\x74\x4d\x83\xfb\x3b\x69\xc2\xe8\x27\xeb\x38\x86\x62\xe5\xf0\x54\xd3\x35\xd2\x04\x34\x52\x53\xaf\x59\x1f\x92\x2d\x75\x0b\xbc\xe6\xa6\xa9\x30\xb7\x95\xd6\x16\xf9\xa1\xe1\xa0\x38\x7a\x36\xac\x6a\x19\xf4\xa9\x4d\x7b\x66\x97\x27\xaf\xc2\x6f\x74\x6e\x38\x66\x5b\x4f\xf5\x2d\xa6\x4e\xca\xc2\x6a\xd2\xc5\x15\x8d\x69\x36\x6c\xfb\x55\x40\xf2\x4d\xbf\x42\x9b\x8b\xe1\xdb\xab\xda\x85\x13\x3a\xad\xd8\xd0\xbb\xcd\x0d\x51\xb3\x2f\xce\xa4\xa0\x68\x61\xac\xc6\x3b\x6f\x8b\x66\xd4\xae\x29\xa3\x5a\x9c\x28\x25\x5d\xe5\x8e\xd4\x0b\x8d\xcb\x56\x72\x21\x28\x5b\x62\x47\x43\x83\xe7\xfd\x57\xad\xa9\x6e\xb9\x94\x21\x6d\x1b\x0c\xcb\x59\x8a\x48\x68\x9c\x0d\x49\x37\xaf\x8d\xcb\x4c\x79\x53\x4a\x3c\xbe\xbe\xa2\xf1\x1c\x26\x4d\x0f\x65\x10\xed\xe2\xcb\xf6\x79\x10\x5c\x58\x4f\xbe\x2e\xe7\x7e\xcd\xe0\xc5\xf9\x63\x7d\xd5\x43\x98\x56\x3e\xdd\x50\x97\x62\xe6\xe2\x86\xa0\xf4\x1b\x50\x5f\x87\xd5\xb7\x98\xc5\x66\x92\xc1\x1a\xa6\x6d\x30\x49\xcb\x0d\xbd\x22\x98\x88\x7d\x90\xe9\x4d\x2a\x66\x53\x97\xc7\x92\x99\xdc\x6f\x35\x8b\x82\xb0\x53\x92\x04\xb9\x6e\x20\x9d\x01\x7f\x86\x41\x1c\x15\x5f\x69\xe9\x70\x1e\xce\x85\x28\x8b\x01\x22\xd0\xbe\x06\xd1\x9a\x6a\x41\x3c\x2f\x24\xa1\x17\x4d\x6d\x99\x30\x8a\xae\x85\x33\xc3\xa4\x61\xe6\x99\xcf\x35\x37\xf4\x8b\xf2\x8d\x2c\x3a\xe3\x45\x11\xad\x37\x75\xb3\x20\x6f\x6a\xf9\xd2\x1c\x56\xd6\xbb\xc6\x57\xc5\x90\x7a\x3f\x2a\xb1\x2f\xbf\x11\x5b\xe4\x17\x64\x9e\x6b\xc9\x9a\xff\x5e\x4c\x90\xdc\x05\x6a\x1b\x96\xf7\x24\xa9\xad\x56\xd9\xdb\x72\x31\x4d\x8d\xfe\xaa\x56\x0d\x53\x54\x99\x54\x1c\x54\xea\x0b\x85\x35\xca\x4a\x15\xab\x6f\xd9\x6c\x64\xdc\xa3\x96\x07\x24\x82\x82\x68\xc3\xc0\x52\x9d\x11\xab\xe9\x77\x23\x50\x3e\xb3\xc9\xee\x25\x66\x6e\xa7\xa5\xf2\x7e\xe6\xdc\xde\x16\x6f\x16\x3e\xa8\x36\x44\x81\x0f\xb2\x28\x60\x2c\xb8\x39\xfc\x4b\x03\x77\x76\x28\x4c\x3e\xd4\xba\x16\x6d\xb5\x76\x38\xfa\xeb\x91\x04\xed\xf8\xbc\x3c\x15\xd9\xb1\x77\x37\x1c\x0c\x69\xb7\x99\x09\x39\x27\x6c\xba\x83\x7e\x2f\xf3\x1c\x6a\xd5\xec\x61\x3a\xd3\x94\x32\x7e\xf8\x97\xda\xa0\x94\xed\x0e\x87\xf2\x14\xb9\x2e\xae\x31\x17\xbc\x73\xab\xe9\x0c\x95\x0e\xda\x73\x87\xef\x05\xdf\xda\x9b\xee\x75\x57\x0f\x03\x99\x77\x85\x6b\x9b\x72\x02\x65\xef\x01\x8a\x36\x2f\xec\x3b\x78\xc5\x0f\x5c\x55\xd8\xf1\x7d\xde\x6a\xed\x34\xb8\x68\x95\xc3\xba\x6a\x0a\x6c\x01\x33\xbb\x35\xb8\xa7\x4f\xf4\x36\x6b\xeb\x53\xdd\xd3\xf5\xdd\xcc\x70\x30\x74\xc5\x12\xbd\x9d\xc8\x89\xec\x95\xbc\x73\x19\x44\x11\x65\x47\xc9\x0c\xa5\xf7\xb3\x61\x8b\xe3\x13\x6d\xe0\x50\x5b\xd7\x76\x7c\x1f\x3f\xb8\x59\xdf\xeb\xd8\xc0\xf7\x06\xe9\xb0\x76\x7c\x3f\x73\x56\xcd\xf7\xb2\x6d\xa9\x46\x22\xb1\x02\xdb\x90\x98\x35\xcd\x16\xa4\xd5\xd1\x34\x2c\x3b\x35\xb9\x57\x67\xea\x44\x27\xab\xbb\x58\x9f\xd0\xb6\x33\xed\xe2\xb2\xb4\xf1\xd4\x98\xfc\xfa\x74\xda\xf6\xce\xe7\x6d\x13\x7e\xce\xcd\xbd\x7f\x7e\x9a\xb7\xfe\x1e\x9f\xd8\x53\x4f\xdf\xdb\xdb\xd3\x1f\x26\x56\xea\xe0\xe6\xfd\x0f\xd0\x05\x99\x39\xbe\x85\x5e\x03\xd6\x96\x30\x55\xb5\x85\x94\x28\xa5\xf8\xe9\xc3\x8a\xbe\xbe\xca\x57\xaf\x42\x90\xa6\xb5\xa1\xa8\x01\xa5\x30\x8f\x14\xca\x0f\x67\xaf\xdc\x97\xf8\x18\x05\xab\x65\xbe\xb8\xe1\x34\x3d\xa2\x0b\x9e\x1f\x35\x9a\xd3\xe3\x24\x8c\xb3\x88\x28\xb9\xa6\xec\x45\xb2\x8e\xe7\xbe\x55\xc1\x56\x72\xaa\x06\x31\x1b\xf6\x3b\x74\x9d\x34\x1c\x54\x93\xcb\xea\x78\x57\x9f\x1d\x24\x73\xba\xcf\x0d\x86\x8b\x26\x96\x1c\x0b\x32\xe2\xcc\xf0\x99\x6f\x3b\xa3\x3d\xde\x96\xe0\x08\xea\xd9\x63\xe7\x99\x1f\xb6\x5a\xe1\x33\xdf\x71\x7a\x7b\x46\xa5\x02\x61\xc7\x1e\x3b\xa4\x52\x4d\xbb\x56\x2b\xdb\x71\x4d\xcf\x71\xfa\x19\xaa\xde\xb8\x01\x95\xe3\xf4\xab\xa8\x9c\x1a\x2a\xc7\xea\x03\xae\xbe\x95\xe1\xea\x8f\x9a\x70\xf5\xad\x2a\xae\x5e\x0d\xd7\x70\x30\xe8\x0d\x01\x99\x9b\x21\x1b\xd8\x8d\xc8\xdc\x2a\xb2\x7e\x03\x61\xe3\x91\x3d\x70\x4c\xcf\x19\xe4\x2c\x1b\x34\xb1\xcc\x19\xd4\x58\x36\xa8\xd3\x36\xb2\x2d\xd7\x1d\xf6\x4d\x8f\xb7\x7d\xfd\xff\xfe\xbf\xfe\x4f\x3d\xf3\xbb\x6d\x3b\x19\xbd\xf6\xd8\xce\x07\xf9\x0c\x5d\xa7\x53\x15\xb4\x0a\x11\xcf\x9e\x0d\xcd\xb6\x11\x76\xa0\x5d\x48\x5d\x14\x8a\x9e\x0e\xb3\x3c\xea\x1a\x50\x4e\xe3\xed\xed\x60\xe0\x8c\x87\xcf\xfc\xa4\xd5\x4a\x9e\xf9\x83\x51\xaf\xdf\xbb\xbd\x4d\x9e\xdb\xb6\xdd\xb7\x6d\x7b\x4f\x11\xee\x25\xcf\x90\xd3\x10\x21\x54\x5f\x77\xc1\x92\xe5\x81\x94\x49\x23\x31\x3d\x23\xe9\x88\xd6\x20\x1b\x60\xb0\xa4\xb6\x91\x3c\x7f\xfe\xdc\xb6\x5a\xb6\xe5\xf4\x4c\x32\x18\xf6\x1c\xab\x6d\xc0\x47\x2b\x31\x4d\x79\xd5\x5e\x53\xc5\x56\x79\x6c\x11\xd6\xe9\x94\x5e\x86\x91\xcf\xc7\x9c\xbd\x72\x9b\xa6\xd8\xc2\x00\x29\xf4\x45\x53\x66\x90\xca\x4b\xbe\x65\x54\xcd\xfd\xe3\x7d\x12\xeb\xa3\x5a\x16\xb9\x69\x86\xc8\x95\x5e\xd6\xf4\x92\xe1\x12\x64\xd8\xb3\xc7\xb8\x4b\xdb\xb6\xb3\x32\xb2\x93\xdf\x25\xfc\x6d\xdb\xdc\x95\xe8\x0b\x8d\xb5\x67\x08\xfc\xc3\xb6\x21\xb8\x18\x9a\xcf\x9e\xd9\x96\x99\xf1\x94\x00\xc1\x9e\x24\x42\xee\xeb\x4a\x8a\xd0\xa1\x01\x50\x2d\xf4\x86\x59\xd6\x1b\xbb\x99\xd7\x38\xe8\x05\x16\x76\xd1\xe6\x86\xb5\xc7\xce\x6d\xf8\xfc\xf9\xf3\xa1\x49\x52\xdf\x36\xbd\xf0\x19\x16\x30\xd8\x98\xc1\x71\xfa\x98\xc1\x76\x20\x87\x63\x7a\x1b\x01\xfb\x96\x00\x74\x01\xb0\x67\xee\xa6\xcf\xad\x5d\x33\x85\xce\xb1\x81\x14\xc7\x15\xa4\xfc\x39\x6d\x0d\x7b\xe5\x47\x84\xae\x67\xe2\xfd\xb0\xeb\x59\x37\x5e\x47\x9f\xc2\x39\xbf\xf2\x2d\xf1\x3d\x4b\x62\xce\x92\x72\x1c\xa3\x97\x01\x9b\x1f\xfc\xdb\x97\xfd\xe5\x45\x78\xb9\x4e\xd6\xa9\xbf\x63\x4b\xf0\x42\xa4\xc8\xe3\x28\x3c\xcb\x8b\x30\x86\x89\xef\x64\x32\x1a\xba\xc4\x1d\x8d\xa7\x64\x62\xdb\x83\x01\xb1\xed\x81\x8b\xe1\xa1\x45\x6c\x7b\x68\x43\xb8\xef\x0c\x88\xdd\x1f\x22\x4c\x7f\x64\x13\xf8\x11\xe1\x1e\x84\xfb\x22\x3c\x84\xf0\x48\x84\xc7\x10\x46\x78\xe8\x68\xf6\xa0\x27\xc2\x03\x87\xd8\x83\x01\xc2\x0c\x6d\x9b\xd8\xc3\x9e\x85\xe1\xbe\x4b\xe0\x07\xc2\xa3\x81\x45\xec\xd1\x10\x71\x8e\x86\x23\x08\x8b\xf8\x11\xc4\x8f\x7a\x10\x76\xad\x11\x81\x1f\x11\x1e\x43\x18\xf1\xbb\x7d\x8b\xd8\xee\x70\x08\xe1\xf1\xc0\x25\xf6\x18\xf3\x3a\x96\x33\x22\x8e\xd5\x1b\x40\xb8\x67\x0d\x88\xd3\xb3\x86\x18\x1e\xf6\x09\xfc\x88\xf0\x98\x38\xbd\x91\x88\x77\x6d\x02\x3f\x22\x0c\xf0\x2e\xe2\xe9\x5b\x0e\x71\xfa\x56\x0f\xc3\xbd\x1e\x81\x1f\x0c\x8f\x21\x7e\xec\x88\xf0\x88\x38\x03\x0b\xea\xe5\x0c\xac\x31\x84\xc7\x18\xee\x59\xc4\x19\xf4\x10\xe7\x60\x68\x13\x67\x30\x44\xf8\xa1\x63\x11\xf8\x11\xe1\x01\x84\x91\x86\x61\xcf\x26\xce\xb0\x27\x60\x7a\x10\xdf\x1b\x61\x78\xe4\x10\x67\x88\x7c\x70\x86\xee\x98\x38\xc3\x31\xe6\x1d\xf5\x5d\x02\x3f\x18\x1e\xf4\x88\x33\x42\x3e\x3b\xa3\xc1\x98\x38\xa3\xa1\x80\x19\x0e\x20\x8c\x7c\x18\xb9\x43\xe2\x8c\x5c\x84\x71\xed\x11\x81\x1f\x0c\x8f\x86\x04\x7e\x44\x78\x0c\x61\xa4\xdf\x05\x9e\xb8\x2e\x96\xeb\x8e\x7b\x04\x7e\x20\x3c\x06\x9e\x8c\x2d\xa4\x73\xdc\x1f\x12\xf8\x99\x92\x49\xcf\xb2\x5c\x02\x3f\x18\x76\x6c\x02\x3f\x10\xb6\x7b\x7d\xd2\xb3\x7b\x08\x63\xf7\x1d\xd2\xb3\xfb\x7d\x11\x1e\x42\x78\x8c\xe1\xc1\x88\xf4\x84\x1c\xf6\x9c\xa1\x45\xe0\x47\x84\x7b\x10\xee\x61\x78\x04\xf1\x23\x11\x3f\x1a\x42\x78\x84\xe1\xb1\x4b\x7a\xce\x18\xf1\xf4\xc6\x3d\xd2\xeb\x8d\xa1\xbe\xbd\xbe\x35\x20\xf0\x03\x61\x68\x0b\xf8\x11\x61\x97\xf4\x06\x7d\x11\x06\x7a\x06\x7d\xa8\x4b\x6f\xd8\xeb\x11\xf8\x11\xe1\x21\xe9\x0d\x65\xfc\x60\x40\x7a\x43\x6c\xbb\xde\x68\x68\x13\xf8\x11\xe1\x3e\x84\xb1\xdc\xd1\x08\xe2\x47\x02\xc6\x85\x78\x17\xe3\x5d\x80\x71\x91\xff\x3d\xe0\x61\x4f\xf0\xb0\xe7\x8e\x07\x10\x96\xf1\x23\x08\x63\x5d\xc6\x83\x1e\xe9\x8d\x51\x9e\x7b\xe3\xa1\x4b\x7a\x63\x81\x73\x3c\xea\x43\x18\xe1\xc7\x80\x7f\x3c\x46\x1a\xc6\xe3\x1e\xe9\x5b\x0e\xf0\xad\x6f\xf5\x5c\x02\x3f\x10\xb6\xfb\x36\xe9\x0b\x3e\xf7\x81\xcf\xf0\x83\xe1\x81\x45\xfa\xf6\xc0\x16\xe1\x1e\x84\x7b\x18\x76\xfb\xa4\x6f\xbb\x80\xbf\xdf\xef\xbb\xa4\x3f\xc4\xbe\xd6\x1f\x0f\xc6\x04\x7e\xa6\x64\x32\x18\x5b\x43\x32\x18\x63\xfb\x0e\xc6\x3d\x97\x0c\xc6\xc8\xc3\xc1\x78\x64\x91\xc1\x18\xf5\xc3\xd0\xb2\x1c\x32\xb4\xb0\xbf\x0c\xad\xa1\x4b\x86\x16\xf2\x67\x68\x8d\x6c\x32\xb4\xb0\xbd\x86\x96\x3b\x24\xf0\x23\xc2\x63\x32\xb4\xb0\xed\x86\xb6\x35\x26\xf0\x83\xe1\xc1\x80\x0c\x6d\x94\xe7\x61\xcf\xee\x11\xf8\x81\x70\xbf\xe7\x90\x61\xbf\xd7\x17\xe1\x31\x19\xf6\x91\x86\x61\x7f\x60\x11\xf8\x11\xe1\x11\x84\x11\xcf\x70\x34\x26\xc3\xa1\x8b\xf1\x63\xdb\x21\xc3\xb1\x3d\xc0\xf0\xb0\x4f\xe0\x47\x84\x87\x64\x38\x1e\x09\x98\x11\xc0\x20\xcf\x87\xe3\x91\x0b\x61\xa8\xef\xc8\xb2\xc7\x64\x64\x39\x40\xcf\x68\x68\x0f\xc9\x48\xf4\xd9\xd1\x70\xe4\x92\xd1\x10\xfb\x8b\xeb\x58\x3d\xe2\x3a\xc8\x37\xd7\xe9\xf5\x89\xeb\x60\x5b\xb8\x8e\xeb\x12\xd7\xc1\xf6\x72\x41\x56\xdd\x1e\xf2\xc7\xed\x5b\x16\x71\xfb\xa8\x1f\x6c\xa7\xd7\xb3\x08\xfc\x0e\xf0\xab\xdf\xb7\x09\xfc\x02\x1d\xfd\x9e\x65\xf7\x09\xfe\xca\xaf\x31\x7e\x8d\xc5\x57\x7f\x00\x5f\xd8\xba\xc3\xbe\x03\xac\x85\x5f\xf8\x1a\x58\x4e\x9f\x0c\x07\x16\x6a\xe2\xe1\xc0\x1a\x0c\xe1\x4b\xf0\x65\xe0\x00\x63\xe0\x17\xbf\x06\xce\x18\x1d\xab\x62\x1b\xba\xd6\x78\x44\xe0\x17\xd3\x5c\xdb\xb2\x09\xfc\x3a\xf2\xcb\x85\x2f\x5b\x40\xda\x03\x07\xbe\x06\x7d\xf9\x35\xc6\x2f\x31\xb2\x8c\xed\x7e\x8f\xe0\x9f\x81\xfc\xc6\xb1\x66\x6c\x23\xa7\x31\x20\xd2\xe5\x48\x34\x76\x6c\x18\x7f\xc6\x0e\xb6\xb4\x6d\x8f\x7b\x43\x87\xe0\x1f\xc0\x3e\x86\x61\x62\x40\xc4\x1f\xf9\xdd\x1b\xc2\xf7\x10\xa9\x1e\xdb\xa3\xd1\xd0\x82\xef\xf1\x78\x3c\x9d\x8a\x41\x2f\xc8\xc6\xc7\x09\x0c\x3f\x44\x0e\x6e\xc3\x3e\x8c\x3d\x18\x1a\x11\x5b\x0e\x36\x30\xd6\x20\x61\xa3\x3e\xb1\x47\x72\x30\x82\x71\x06\x87\x19\x07\x46\x19\x0c\xc1\x18\x83\x58\xc6\x10\x12\x83\x8d\x4b\x1c\xec\x16\x8e\x3d\x20\x8e\x8d\x8a\xd4\x71\x88\xe3\xc8\xe1\x07\x46\x1f\x0c\x39\xc4\xe9\xc9\xa1\x07\x46\x1e\x31\xc0\xc0\xf8\x82\x21\x18\x51\xc4\xe0\x82\xe3\x09\x0e\x1b\x0e\x71\x06\xa8\x68\x07\x7d\xe2\x20\x9b\x9d\x01\xa4\x0a\x45\x0f\x3a\xbf\x27\x54\x3e\x68\x7f\x54\xd4\xa0\xa7\x85\x9a\xee\x13\x07\x15\x8c\x33\x1e\x13\xa9\x1e\x41\x23\xa2\x80\xf6\x6c\xd0\xc3\xa8\x5a\xec\x31\xe9\x39\x18\x72\xfa\xa4\xe7\xa0\x6a\x76\x5c\xd2\x43\xb6\xf6\x40\x27\x0a\x95\x08\x5a\x13\x45\xa9\x37\x00\xfd\x39\x16\x6a\x12\x34\x26\x08\xe2\xd0\x21\x7d\x54\x91\xfd\x61\x9f\xf4\x91\xbb\xfd\xe1\x90\xf4\x51\x95\xf5\x87\xa0\x51\x50\x31\x8d\x2c\xd2\x47\x3e\xf7\x47\x0e\xe9\x63\x47\xeb\x8f\xfa\x44\x98\x14\x60\x51\xf4\x71\x20\x1a\x8c\x7b\x64\x30\x16\x6a\x04\x35\x04\x76\x42\x97\x8c\x90\xcf\x23\xdb\x26\x23\x14\xc1\x91\xdd\x23\x23\xec\xd2\x23\x7b\x44\x46\x38\xa0\x8d\x1c\x8b\x8c\x70\x78\x1d\x39\x2e\x19\x61\x3d\x46\xbd\x1e\x19\x61\x3d\x46\xbd\x01\x19\xf5\x84\x08\xf5\xc8\xd8\x01\xcc\xe3\x9e\x4d\xc6\xd8\x1e\xe3\xfe\x80\x8c\x51\x4a\xc6\xc3\x1e\x19\x0b\x03\xc8\x02\x63\xc8\xc2\xd6\xb4\x2d\x30\x38\x6c\x4b\x88\xa8\x05\x02\x8d\xe2\xe8\x82\x10\xb8\x42\x0a\x5c\xc7\xb6\x89\xeb\x60\x77\x75\x1d\x7b\x08\x61\xa1\x14\x1c\x8b\xb8\x8e\x23\x14\x81\x03\x0a\x02\x95\x88\xeb\x38\x90\xb7\x27\xe2\xfb\x00\x83\x12\xe1\x82\x48\xb8\x42\x26\x5c\xa7\x3f\x80\xb0\x28\x6b\x00\xf8\x07\x02\x7e\x00\x78\x50\x32\xdc\x9e\x85\xca\x05\x69\x80\x66\x85\x1f\x0c\x3b\x36\x71\x45\xcb\xba\x60\x00\xb9\xa2\x4b\xb9\x7d\xc0\xd3\x17\x78\xfa\x83\x1e\x84\x85\x62\x1a\x8c\x20\x8c\x34\xf7\x87\x10\x1e\x8a\xf0\x08\x14\x16\xb6\x9e\xdb\x77\x21\xaf\xeb\x88\xf0\x10\xc2\x58\x97\xfe\x18\xe2\x85\xb2\x1b\xf4\x6c\xe2\x0e\xd0\xa0\x71\x07\xbd\x31\x71\xc5\x40\xeb\x0e\xfa\x7d\xe2\x0e\x06\x58\x97\xc1\xd0\x22\xee\x00\xf9\xec\x0e\xc6\x0e\x71\x87\x16\xe6\x1d\xf6\x20\x8c\x2d\xe6\x0e\x07\x2e\x81\x1f\x0c\x03\xfc\x10\x8d\x03\x17\x94\xbb\x2b\x95\xef\xc8\xea\x13\xf8\x11\xe1\x21\x84\x91\x66\x10\x15\x77\x84\x92\xee\x8e\xec\x01\x84\x07\x22\x3c\x86\xb0\xc8\x0b\xfc\x19\x89\x76\x19\x39\x00\xe3\x08\x98\x9e\x45\xe0\x47\x84\x7b\x10\x1e\x8a\x30\xe4\xed\x89\xbc\x7d\xc8\xdb\x17\x79\xfb\x00\x83\x06\x99\x0b\x46\x2d\xfc\x88\x30\xd0\x33\x10\xf0\xc0\x7f\x61\x90\xb9\xa3\x11\xc4\x8f\x04\x4e\x17\xe0\x5d\x01\x0f\xfc\x1c\x09\x7e\xba\x30\x48\xb8\x82\x27\x2e\xd4\x51\x18\xc1\xae\x6b\x43\xbc\x2d\xe2\x6d\x88\x17\xf5\x72\x61\xe0\x71\x7b\x32\xec\x42\x18\xcb\x75\xa1\x7d\x5d\xd1\xbe\x2e\xb4\xaf\x2b\xda\xd7\x1d\x8e\x09\xfc\x60\x78\x3c\x20\xae\x30\x4a\x5c\x18\xfc\x5c\x31\xf8\x8d\x41\x59\x8c\xfb\x68\xa8\x8d\x41\x66\xc6\x83\x3e\xf6\x15\x30\xee\xc7\x03\x34\x28\xc7\x43\xcb\x82\x8e\x83\xfd\x6a\x68\xbb\x64\x3c\x74\x64\x2f\x72\xc8\x58\xb4\xe3\x18\x8c\xda\xf1\xb0\x2f\xe2\x07\x00\x3f\x90\xe1\x3e\x84\x45\x5e\x50\xe2\x43\xd9\x03\x87\x10\x3f\x14\xf1\x23\x88\x47\x7d\x31\x1e\x8e\x00\xcf\x48\xc6\x43\x59\xae\x80\x1f\xbb\x64\x3c\x42\x5e\x8d\xa1\xdd\xc7\x42\x47\x8c\xa1\xed\xc6\x23\xd4\xbc\xe3\x51\x6f\x04\x61\xa4\x79\xd4\x77\xc8\x78\x84\xfd\x6b\x0c\xc6\xf4\x78\x24\xea\x08\xed\x05\x3f\x22\x0c\xf1\x28\x7b\xe3\xd1\x18\xe0\xd1\xe8\x1f\x8f\xc6\x7d\x08\x23\x4e\xd7\xe9\x93\xb1\x8b\x32\x33\x76\x9d\x11\x84\x11\x8f\x0b\x6a\xc5\x15\xe5\xba\x30\x58\xb9\xa2\x5c\xb7\x37\x86\xb0\xd0\x2d\x30\x80\xe3\x2f\x7e\xd9\x96\x43\x6c\x4b\x0c\xaf\x30\x8b\xee\x93\x61\x4f\x50\x88\x13\x63\x1c\xa4\x7b\x02\x07\x6a\x22\xab\xef\x0e\xc4\x0c\x09\x43\x43\x82\xcb\x23\x56\x36\x02\x86\xe9\x69\xed\xcd\x55\xf5\x88\xa6\x85\x7e\xd3\x8b\x73\xc3\xc2\x55\xef\x85\x41\x9f\x95\x13\x27\xd6\x74\x62\x4d\x6f\x6f\xe9\xf3\x4a\x7c\x32\x9d\xd8\xd3\xf2\x0e\xc6\x6e\xf2\xdc\x67\xbb\xe8\xf0\xcf\x2f\x3c\x51\x69\xb0\x76\x62\x3e\x75\x4c\x52\xc3\xc1\x05\x0e\x9f\xb7\xed\xec\xb4\xdd\x4e\x9d\x04\x7c\x30\xa2\x70\x50\x38\xf1\x79\xc7\xbe\x53\x45\xdf\xa9\x3a\x97\xa6\xc6\xf7\x56\x3d\xb3\x10\x9a\xaa\x9e\x25\x56\xaa\x9e\xc7\xff\x78\xd5\x73\x1c\xf7\x56\xbd\x04\xf6\x70\xd5\x67\x57\x01\x13\xd3\xfe\x86\x6d\x98\x0d\x6b\x07\x7b\xe5\x9c\x27\x08\x90\xa5\x1a\xd4\xf4\xca\x00\x2f\xc3\x94\xd5\x60\xaa\xe5\xd7\x81\x9a\x28\xb2\x7c\xdf\xa7\x7b\xa5\x75\x0f\x8f\x3e\xeb\x39\xc0\x69\xdf\x76\x46\xad\x16\x7d\x66\x0f\xad\xbd\xda\x4a\x88\x47\x9f\xd9\xce\x68\xcf\xf6\x8a\x42\x6e\x50\x73\xcf\xf2\xec\xb6\x41\x9f\xfb\xfd\xde\xc0\x69\xb5\x0c\xfa\xcc\xef\xf7\xfb\xa3\xdb\xdb\xb1\x65\xd9\xbe\x4f\x31\xe0\x60\x00\x4a\xb0\xc7\x56\x1f\xca\xf0\xfb\x8e\x3d\xb6\x5b\x2d\xdb\xe9\x0d\xec\x1d\x99\xda\xef\x5b\x3d\x07\x53\x07\x03\xc7\xea\x61\x1c\x74\x46\x91\x63\xd8\x77\x06\x03\x11\x37\xb0\xfa\x96\x88\x1b\x58\xfd\xb1\x8a\x1b\x39\x32\xce\xee\x29\x38\xc7\x55\x70\xbd\xd1\x50\xc6\x0d\x24\x05\xc3\xc1\xc0\xb6\x04\x55\x3d\x5b\x65\xb6\x41\x1d\x8a\xdc\x18\x74\x31\xd6\x19\x3a\x76\x5f\xee\x2a\xdf\xd3\x72\x1b\x45\xa0\xdc\x3f\x80\x6b\xcd\x4b\x47\x8f\x68\xf7\x94\x37\x88\x5d\xb6\x56\x29\x3b\x9c\xb5\x9b\xe4\x8b\x95\xa6\x74\x5a\x4a\xf3\x35\xe0\x7d\x2e\x7d\xf4\x18\xdc\x2f\x17\x6d\xa4\xa6\xf9\x4c\x3d\x12\xdd\xb1\x77\x59\xdb\xe7\x24\x69\xfb\xa9\x5a\xce\xb3\x3d\xe7\xae\xe8\xc1\x1e\x48\x42\xe7\x96\x9b\x1e\xb4\x20\x31\x76\xd6\xc4\xb7\x48\x5c\x22\xac\xd5\xda\x31\x8c\xb8\x5d\x25\xa0\xb4\xe0\x99\x98\xa6\xf9\x9c\x9b\xe8\xa1\x6a\x37\x73\x88\xb8\xe3\x33\x51\xe7\xd4\x4f\x10\x69\x5a\x40\x1a\x3f\xf3\xd9\xee\x03\x68\x53\xd3\x24\x29\xa0\x54\x77\xec\x9f\xb3\x56\x2b\xed\x74\x88\x7a\x88\x3a\x8c\x2f\xc5\x8b\xad\xd9\x4b\x85\xd9\x2b\x4a\xa5\x4a\x97\x8e\xb7\x94\x5f\xf5\x2e\x40\x89\x94\x8e\x70\x7c\x56\x74\x7d\x89\xef\x48\xcf\x13\xfe\x54\x38\x55\x8e\x92\xcb\xa7\x5f\x29\x4b\xc3\x24\xd6\x89\xce\xe9\x37\xfe\x74\x15\x05\x21\x7c\xd8\x5d\x7b\x88\x77\x97\x1e\xc8\x3e\x0f\x38\xad\xe6\x75\x2c\x7b\xd4\xb1\xdc\x8e\xc2\xc0\xe7\x74\x25\x5e\xb0\x96\xee\x14\xf4\xa2\xb7\x8d\xae\x38\x33\x77\x76\xb3\x92\x87\xa1\x92\xee\xdf\x93\x64\xf9\x29\x60\x30\x2e\xa8\x83\x23\xfa\xdf\xde\xbf\x7f\xab\xed\xf8\x9a\x6d\x59\x7f\xd2\x49\xa2\x7c\x80\x26\xab\x9b\x0c\xe4\x7f\xfc\x1f\xff\x3b\xa4\xcc\x69\xfa\x85\x27\xab\x77\x00\x10\x8a\xbd\xcf\xb3\x90\x47\x00\xf0\xdf\xfe\xbb\xf6\x27\x83\xc3\x87\xa9\xfd\x8f\xff\xf6\xdf\x01\x9a\xd3\x94\xbf\xa4\xab\xd4\x9f\xe8\x57\x9c\xb2\x65\xf7\x74\xc6\x92\x28\x3a\x4e\x98\x38\x31\x90\xea\x24\x4f\xa0\x34\xae\x44\x9e\x51\xb6\x0c\xe3\x20\xaa\x44\x7f\x3c\xab\x47\x1c\x04\x71\x4c\xe7\x22\x7a\x8a\x9c\xbd\x0c\x53\x4e\xd9\xeb\x38\xe4\x86\x00\xd3\xc9\xa6\xab\xdd\xe6\xf7\x12\xa3\x38\xba\xc1\x24\x55\x6f\x35\x89\x72\x38\x2d\x19\x7d\x7b\x6b\x34\xbf\x21\x2f\xbd\x4f\x54\xbf\xd1\x9b\xed\x5e\x15\x8b\x3c\x02\x5b\xf6\xc8\x67\x34\xe4\x34\xbd\x07\xb2\xa2\x5f\x27\x75\xa0\x7c\x07\x07\xe4\x47\xbf\x71\xff\x36\x88\xc3\x05\x4d\xb9\x52\x33\x9b\x21\x0c\x73\x97\xf9\x69\x37\x58\xad\x5a\x2d\xfc\xd3\xbd\x08\x66\x5f\x2e\x59\xb2\x8e\xe7\x77\x6c\x6f\x83\xef\x19\xe1\xf4\x55\x5f\x25\xab\xf5\x4a\xbf\x33\x89\x65\x7a\xcd\x34\xf2\xe0\x22\xdd\x2b\x84\x71\xcb\x5d\x1c\x72\xcd\x8f\x4a\x40\xff\x6c\xb5\x4a\x08\x54\x1e\x11\x29\xfc\x48\x33\xf9\xf5\x7a\x2e\xdc\x19\x73\xd3\x33\x4a\x0d\xae\xc7\x09\x5b\x06\x91\x5e\x6d\x72\xf3\xae\x7c\x69\xa5\x5e\x11\x99\x11\x6b\x72\x67\x92\x04\xc9\x8c\x42\x1a\xf3\xd3\xd2\x79\xce\xe2\x33\xa9\x97\x94\xe3\x4e\x5d\x18\x5f\x0a\xd0\x13\x3a\x43\x17\xdc\x85\xdc\x1b\x8d\x91\x8d\xd9\xbb\xd7\x90\xa5\x84\xe4\x17\x1a\x5e\x5e\x35\x5e\xbf\xde\x8c\xe5\x0a\xf3\x00\x9a\x59\xb2\x92\x2f\xe9\x42\x1f\x4f\x0e\xa2\x70\x75\x91\x04\xa5\x87\x3d\xc5\x49\x07\xda\xa5\xdf\xe8\xec\x20\x59\x2e\x83\x78\x6e\xe8\x90\x4f\x2f\x3a\x5a\x02\x64\xab\x20\xe5\xf4\x15\x4b\x96\x9b\xd1\x64\xa4\x95\xb0\x61\x46\xbd\x76\x18\x1b\xaf\x62\x29\x3d\xd5\xe0\x30\x0b\x0f\x8b\xf8\xcf\xd5\x08\xe3\xd3\x3d\xea\xf1\xdd\xfc\xb3\xd5\x82\x56\xdc\x41\x8b\xc6\xa0\xfe\xf7\x3b\xd5\x6f\xbe\x5f\x24\xf3\x1b\x8f\x76\xe1\x0f\x09\x67\x49\xec\x71\x83\x76\x21\xd0\xec\x69\x57\xea\x96\xa7\xe1\x32\xb8\xa4\xe9\x53\x00\xec\x8c\x87\x3a\x58\x19\xa9\x0f\x59\x51\x21\xaa\xa3\xcb\xf3\x64\x86\x87\x25\x44\xac\x29\xdd\x6e\x4b\xf5\x64\xa2\xdf\xe7\x85\x7a\x46\xf7\x63\xc0\x52\x63\xb3\xc2\x25\xdf\x11\x87\x97\xde\xa9\x87\x9a\x40\x1b\x14\xc1\x8c\x94\xb0\xc2\xf3\x4c\x49\x3c\x8b\xc2\xd9\x97\xe2\x49\x08\x49\xd5\x22\x99\xad\xd3\xec\x89\xa6\x28\xc1\xc7\x7a\x49\x0c\x0c\xae\x48\x71\x76\xe5\x05\x85\x4d\x1d\x3c\x13\x32\xe3\x73\x95\xa1\xfc\xc6\xc7\x6f\xc4\x30\x8b\x92\x98\x36\xdc\xfe\x87\xda\x0a\x60\x23\xc7\x57\xc4\x66\x36\x20\x83\xce\x9c\xd4\x0f\xc2\x48\x5a\xea\x38\x7c\x5a\xe8\x10\x15\x5c\xf4\xdf\xd7\x41\xd4\x68\x2d\x16\x70\x2a\xa4\xf2\x54\x8c\xc4\x7a\x1f\xda\x7b\x0e\xda\x4e\xe4\x50\x19\xfe\x3d\x3f\x50\x8b\xd8\xe5\x35\xc7\xbc\x84\xb6\x3e\xd5\x01\xf7\x49\x72\x7d\x90\x44\xcd\xa7\xa9\x59\x72\xad\xd8\x3f\x4b\xa2\xf5\x32\x56\x47\xa9\x93\xaf\x94\x2d\xa2\xe4\xda\xdf\xd9\x61\x39\x92\xe2\x31\xf8\xe4\x6b\xfd\x1d\xc6\xdf\x88\xf3\xfe\x66\x16\xe0\x86\x2a\xa3\x58\x42\x19\xbf\xd9\x88\x7c\x43\xb3\x23\xb5\x55\x7c\x68\x59\xd7\x11\xfb\x34\x0b\x36\x16\xf1\x80\x34\x40\x51\xa2\x2c\x29\x09\xb2\xb0\xac\x34\xe5\x33\x50\x15\xf7\x50\x79\x0f\x8b\x89\xc8\x92\x1f\xa9\x4e\xae\x0b\x62\x22\x0a\x2d\x44\xa8\xc2\x84\xe4\x94\xec\xca\x85\x0e\x03\xdb\x2b\x16\x2c\x37\xb4\x3a\x97\x66\x5a\xe6\xed\x7b\x1e\x7e\xfd\xec\x53\xfc\x23\x22\xd6\x2c\xca\x24\x01\xef\x68\xa4\x3e\xcb\x5d\x13\x84\x0b\xc0\x5d\x3c\x52\x0c\x73\xd6\x20\x8c\x29\x2b\x46\xca\x77\xe8\x0f\xae\xc0\xd4\x8b\xd4\x81\x7c\x49\x59\xe9\xf4\x72\x76\xd4\xb9\xd8\x1c\xca\x0b\x14\x3a\x30\xc2\xa7\xa8\xa5\x3f\xa8\x70\x35\xeb\x84\x71\xc8\x3b\xc9\x17\xdd\x93\x8d\x96\xdf\xbb\x49\x69\x3c\x57\x76\xe8\xeb\x78\x91\x7c\x36\xcc\x5d\xcc\xa6\x6a\xdd\x09\xe3\x45\x52\xcc\x5b\xa9\x41\x37\xe5\x37\x11\x7a\x70\x59\x45\xc1\x8d\xaf\x2f\x22\xfa\x4d\x6f\xac\x51\x77\x95\x30\x6e\x77\x93\x58\xc6\xab\x1b\x2e\xb2\x3a\xc5\x13\xc8\xc5\x7b\x41\x47\x49\x30\x37\xcc\x5d\x69\x1b\x96\x6a\x50\x72\xe0\x52\x79\xcf\x5f\x5b\xb0\x64\xa9\x21\xeb\x3d\x9d\x08\xb6\x98\x77\xf7\x32\xb4\x28\x6c\xcd\x80\x40\x4b\xfd\xd0\x78\xad\xe5\xe8\xb5\xf6\xb6\x14\xf7\x23\xfc\xa8\xdf\xf3\x69\xce\x8f\x87\xa6\xd5\xf0\x26\x65\x0d\xdb\x07\xed\x2c\x1c\x01\x57\x49\xca\x25\x56\xe3\x3b\xba\xc9\xc9\xa4\x42\x27\x01\xbb\xfc\xea\x4d\xbe\x4b\xe4\x30\x77\xf1\x36\x96\xe6\xdc\x29\xaf\x7e\x6b\x16\x91\xc9\x66\xb8\xa9\xb9\x99\x81\x0f\xb1\xb9\x26\x92\xa5\x7b\x43\xdd\x05\xbe\xb2\x3f\x9b\xd1\x15\x3f\x0a\xe2\xcb\x35\x18\x26\x46\x4d\xf9\x15\xab\x5c\x96\x65\x9d\x4c\xbe\x07\xe5\xec\x1e\x25\x8b\x84\x51\x61\xdd\x1f\x24\x51\xc2\xbc\x72\xcf\x87\x22\x5f\x95\x21\x0c\x93\xe4\x33\x82\x4d\x79\x5e\x94\x21\x0c\x93\xcc\xd6\x2c\x4d\xd8\x26\xf8\x83\x3c\xd5\x30\xc9\x22\x11\x76\x76\x23\x31\x22\x49\x42\xbd\x0a\x96\x61\x74\xb3\x01\x4e\x24\x22\xbd\x29\xfd\x70\x72\xe4\x49\x1e\x7e\x38\x39\xc2\xe7\xf9\xef\xa6\xd5\x37\x8b\x9b\x5a\xee\x00\x0c\xa7\x03\x30\xb1\x68\x43\x17\xc8\xcc\xaa\x7a\x56\x4c\x6a\x38\xdd\xaa\x14\x48\x36\x62\x64\x1a\x65\x15\xc0\x3c\xe8\x5d\x32\xcf\x9c\xb2\x35\x26\x16\x5f\xc8\xac\x82\x65\xb7\x63\x0f\x04\x61\xf7\x55\xea\x21\x79\x2c\x88\x52\xc3\x69\xed\xa6\x3e\x50\x7f\xa7\x48\xe6\xd7\x66\x02\x42\x0b\x53\xbc\x3e\x93\x52\xae\xad\x57\x5d\xf5\xfc\x78\x73\x07\xaf\xf7\x5e\x2a\x3a\x2d\xbf\x6b\xac\x56\x7a\x95\x5c\x17\xeb\x94\x2d\x05\x50\x7c\xdb\x33\x9b\x89\xa0\x3f\x28\x35\x60\xed\x65\xa1\x09\x9d\x7a\xec\x2e\x77\x05\x2c\x2f\x0d\xe7\xde\x37\xb6\x6a\x39\x53\xe9\x66\x75\x41\x0f\x88\xd4\x02\xf9\xf0\xfa\xd7\x30\x0d\x2f\x22\xaa\x8b\x33\x7b\xf2\xa8\x7b\x65\x76\x69\x64\x63\xad\x49\x42\x9f\x1a\x3a\xda\x82\x3a\x19\xf6\x2d\x98\x4a\x50\x43\x17\xc6\xa0\x4e\xfa\xae\x85\x0f\x45\x32\x69\xe1\x32\x69\x26\x92\x4a\x7f\x50\xd3\x93\xcf\x26\x09\xfc\xda\x40\xac\xbc\xf0\x44\x14\x60\x0c\x7d\x1e\x7e\xd5\xcd\xdd\x40\x8e\x6f\xb3\x34\x3d\xa3\xdf\xb8\xaf\xaf\x92\x34\x14\x4e\x94\x82\x8b\x34\x89\xd6\x9c\xee\xca\xb1\xcf\xd3\xe2\x24\xa6\xbb\x30\x00\x76\xe6\x21\x13\x33\x4b\x4f\x13\xb6\xc8\x2e\x4f\x56\x9e\x66\x5b\x7f\xda\x8d\xe8\x82\x7b\x5a\xff\x4f\xbb\x48\xac\xa7\x8d\xad\x3f\xed\x0a\x7a\x3d\xcd\xb5\xfe\xb4\xbb\x0c\xe3\x8e\xfa\x76\xe0\x3b\xf8\xd6\x29\xa6\x5f\x24\xdf\x3a\xe9\x55\x30\x4f\xae\x3d\xcd\xd2\x2c\xcd\x59\x7d\xcb\x2f\x26\xde\xa7\xaf\xda\xfa\xee\x45\xc2\xe6\x94\x79\x8f\xc9\xa3\xa5\x49\x14\xce\x77\x75\x9c\x85\x45\x7e\xd9\xa2\xa9\xf2\x4c\x24\xe8\xe6\x6e\xd4\x4d\xe2\x08\x74\x7d\x61\x10\x2f\x0d\x68\x51\x95\xaf\x19\x13\x81\x7f\xc8\x44\x4f\xb3\x15\x8f\xc4\xc2\x5d\x04\x96\xee\x3e\xe7\x2c\xbc\x58\x73\x6a\xe8\x29\x9b\xe9\xd9\x68\x64\xd6\x93\x69\xb0\x8c\x68\x9a\xea\x64\xc7\x32\x49\xd0\x0d\x56\x2b\x1a\xcf\x85\xba\x88\xcc\xdc\x94\x2b\x25\x04\xe2\x7a\x84\xb4\x0f\x85\xa9\xf9\x86\xde\xe0\x9c\x1e\x02\x6f\x83\x15\xda\x8b\x2a\xae\xe9\xda\x81\x60\xa8\xb2\x16\xbf\x48\x48\xc9\xa4\xa2\xc9\x77\x15\xc4\xf3\x48\x38\x04\x9f\xe8\x38\x4d\x4d\xd6\x3c\x7b\xfe\xe1\x15\x44\xbc\x2f\xdf\xcd\x9a\x92\x89\xfe\x85\xde\xcc\x93\xeb\x38\x83\x7b\x43\x6f\x5e\x26\xd7\x71\x03\xd8\x8a\x61\xf5\x73\xb8\x63\x88\x68\x00\x5c\xaf\x8a\x50\x1f\x56\x55\x10\x4e\xbf\xf1\xd7\xf1\xaa\x40\xdc\x99\x8a\x29\x81\x4e\xb3\x2a\xbf\x0d\x56\xbe\x98\xdc\x54\xb8\x57\x34\x68\x20\x67\x18\x5f\xa6\x55\xc8\x17\x32\xbe\x08\x1b\x44\xfc\x67\xf6\x36\x99\xe3\x72\x56\xac\x1e\xc9\xc0\xcb\xec\xaf\xe3\x94\x32\x7e\x1c\xa4\x9c\xfa\x3b\xf2\x08\xfe\x55\xb2\xa4\x6f\xe8\x4d\x2a\x56\x64\x33\x37\x5d\xab\xe0\xb2\x29\x7a\xc6\x59\x74\x1c\xad\xd3\xb7\x61\xbc\x4e\xff\x46\x59\xf2\xb7\x24\x59\x66\xb8\x20\xf5\xe0\x20\x59\xdd\x94\xe0\x3f\xca\x02\x65\x54\xb0\x12\xce\x08\x43\x64\xe1\x2a\x98\x37\xa5\x88\xf1\x3d\x4b\x01\x03\x22\x5d\x05\x33\x7a\x4a\xe3\x79\xfa\x42\x7d\xe5\xc5\x5c\x05\x2c\x98\x71\xca\x0e\xe3\x59\x02\x1c\xf1\xf5\x35\x5f\x74\xdc\xcc\xbe\xe6\x01\xe6\x3c\x4c\x67\xc1\x2a\xaf\xfb\x2a\x48\xd3\xb7\x94\x07\x1f\xb3\x98\x20\xe2\x08\xf8\xe9\x2a\xe0\xbe\x4e\x11\x5c\xcf\x92\x5e\x23\x74\x4e\x6f\xc4\x33\x52\x44\x52\x9d\xb2\x20\xe2\x4a\x9c\xe8\x5c\x5d\x29\x59\xd2\x79\x18\x00\x77\xf7\x19\x7d\x05\x7f\x73\xb6\x33\xfa\x35\x4c\xd6\xe9\x7e\x81\x8e\x7c\x86\x53\x94\x90\xfd\x99\x98\x3f\x7d\x3f\xd8\x7f\x77\x70\x28\x6c\x95\xa2\x7b\x34\x11\xad\x9b\x44\x3e\xee\x55\x03\x90\xf1\xba\x49\x8e\xf7\x4f\x4f\x6b\xc9\x10\xa9\x9b\xe4\xf4\xec\xe4\xf5\x71\x2d\x11\x63\x75\xb3\x44\x53\x61\x0e\x1c\xd7\xee\xc2\xc8\x29\xa9\x68\x14\xdf\x6f\x6e\xb4\xbd\x92\x5a\xe8\x7e\xe5\x85\x53\xfc\x06\x35\x3d\xba\xa1\x3c\xbc\xcc\x16\x45\x8d\x9a\x46\x5c\x7b\x6b\xd4\x2f\xe6\x77\xf5\xf0\x7f\x35\x45\x46\x57\xf0\xe2\x82\x6f\xfe\x3c\x3d\xf7\xad\x5d\xfe\xac\xac\x9e\xd4\xee\x1c\x57\x57\x09\xa4\x77\x82\x0c\x60\xc2\xa7\xbb\x74\x8f\xd6\xdf\xb4\x61\x13\x6b\x4a\xd8\xc4\x9e\xca\xfb\x99\x55\x92\xa4\x0d\xb7\x29\xd3\x5d\xb3\x06\xa5\x77\x1b\x58\xb6\x8e\x37\x32\x4d\x6a\xe7\xc6\xca\x6f\xc0\x56\xd4\x72\x65\x2f\x57\x38\x9b\x6c\xb5\xe4\x64\x5b\x5e\x72\xd3\xcd\xf2\x8b\xb3\x59\x8b\x27\xf1\xc7\x33\xe8\x0e\x9c\x25\x5f\x0a\xd3\xdc\x0c\xc0\xdc\x4c\x40\xa6\xb3\x1b\x16\x81\x9b\xae\x13\xd0\xee\xf5\x55\x38\xbb\x32\xbb\x3c\x39\x4a\xae\x95\x8f\x67\x7c\x3d\x93\xa2\xd6\x7a\x43\x6f\x5a\xad\x1d\x8a\xba\xe3\x0d\xbd\xb9\xbd\xd5\x67\x3a\xbe\xe9\xa0\x7f\x85\xbf\xf2\xb5\x20\xd1\xbd\x5b\x2d\xfd\x82\x25\xd7\x29\x65\x9d\x2f\xf4\x46\xc9\x77\x51\x97\xb4\x5a\xe8\xfa\x4d\xed\x56\x2a\xe1\x68\xa6\xec\x0b\xbd\x41\xa0\x5d\x2a\xd4\x36\x16\x6f\x30\x9f\x95\x89\x35\x09\x2b\x6e\x7f\x5a\x66\xdb\x76\x5c\xe5\xff\x5f\x25\x3c\xf7\x7b\x4e\xab\x65\xb0\x62\xe1\xbb\x4c\x0a\x78\x33\xe3\x8d\x26\xaa\x18\xba\xac\x04\xf5\x44\x63\xe5\x40\x55\x7a\x86\x4a\x56\xc7\x2c\x59\x05\x97\x62\xb1\xd9\xdc\x24\x72\x32\xaf\xd8\xd8\xda\x5f\xad\xde\x25\xf1\x01\x67\xd1\x29\xd4\x50\x22\x2c\x37\x5e\x65\x43\xa8\xf4\x29\xf6\x9b\x6a\x51\x72\x33\xa7\xd5\x32\x0a\x8d\x58\xe4\x62\xbd\x0a\x9b\x45\x2a\x33\x2b\xea\xa6\x4b\x45\xab\xdf\x27\x95\x1f\x56\xe5\xfc\xb6\x0b\x82\x20\x9b\x58\x4d\xdb\xca\xf8\xea\x51\xad\x7f\x18\xf6\xb3\x67\x14\x9f\xc7\x02\x44\x1d\xdb\x34\x89\x33\x2a\x61\xca\xc6\x8f\x87\x98\x8c\xc7\x0e\x36\x13\x8c\x26\xd2\x26\xef\xd7\x89\xf9\x3d\xf4\x13\xb9\xd1\xc0\x26\xc9\x54\xbd\x1c\xa8\x60\xf2\x3b\xcf\x71\xab\x65\xc4\x7e\x2c\x3d\xb9\x2a\x5b\x87\x4c\x28\x61\x53\x13\xa6\x21\xbe\x1f\xb4\x5a\x6a\xe7\x6c\xc7\x4f\x10\x9e\x1b\x2a\x06\x60\xee\x7e\x88\x5b\xb7\x55\x5e\xfd\x16\x56\x15\x1d\x73\x89\x2a\xc0\x9f\x97\x74\x91\x4e\x32\x8c\xc2\x47\xa7\xba\x3c\x86\x66\xab\xf0\x27\x42\x62\xbf\x71\xd4\xee\x8a\xd1\x99\x04\x1b\x92\xe5\xd8\x4c\xa2\x0d\xe9\x30\x38\x93\xab\x0d\x89\x38\x38\x93\x99\x9f\x75\x01\xb2\xf6\x77\xca\x26\x0c\x74\x0a\xc1\x32\xb2\xf2\xcb\x49\x7b\x2a\x05\x3a\x8b\x54\x7e\x5e\x16\x22\x73\x7f\xe7\xe9\xaf\xe7\x93\xf3\xeb\xf6\xf9\x54\x3d\xcf\xcd\x90\x0f\xc1\xca\x54\x1e\xf6\xcb\x76\xa8\x5c\x5e\x05\x62\x3a\x41\xc4\x75\x6f\xde\x6a\xcd\x5a\xad\x75\xab\x65\xa0\x5b\xd8\xb5\xbf\x63\x9b\xbb\x17\x8c\x06\x5f\xc4\x8a\x2a\x83\x39\x5c\x06\xea\x54\x74\x95\x1a\xe4\x2a\x3d\x64\x13\x32\x98\x45\x66\xb8\xec\xc7\xe3\xc2\x09\xfe\x62\x77\xe1\x73\x63\xb6\xa7\xcb\x43\x54\xba\xb7\xde\xd3\x11\xe9\x6a\x4f\x07\xd6\xe8\xd9\x16\xb0\x10\x98\x4b\x1f\x86\x8e\x20\xfd\x72\x2a\x55\x4f\x51\x0d\x91\xa5\xff\x5d\x4a\x8e\x97\xc9\x10\xc1\x54\xaf\x00\x05\x0c\xf3\x66\x24\x88\xb8\xb7\x26\x50\x88\xb7\xba\x23\x37\x7e\x69\x42\x80\x6b\x67\x22\x6c\x2c\x71\xf8\xba\x69\xb5\x8c\x4b\x7f\xe6\xaf\xfd\x15\xde\x6a\xcb\x37\xb5\xeb\x7d\xd4\x58\xf8\x37\xdd\x00\xe3\xcc\x56\xcb\x58\xf8\x8b\xee\x2c\x88\x22\xe9\x74\xab\xc8\x29\xb2\x34\x4d\x93\xac\xb7\x19\xe8\x16\xd8\xaf\x8d\x85\x1f\x99\x64\xb1\xe3\xfb\x11\x7c\xec\xf8\x7e\x70\x7b\x3b\xbb\xbd\x5d\xdf\xde\xae\x44\x59\xbe\x7f\xd5\x6a\x19\x6b\x1f\x59\xdd\x48\x1b\xeb\x0a\xd2\x15\x6d\x85\x57\x10\x2a\xca\x44\x94\xe9\xf8\xbe\x12\xc5\xec\xe0\x10\xa2\x91\x71\xf2\xdc\xce\xe5\x9e\xed\x59\xc4\x36\xb7\x1e\xd1\xb0\x1a\xb1\x69\x86\x0b\x24\x3b\xb8\xbd\xad\x3d\xcf\xb3\x10\x7e\x1f\x94\x78\xf8\x7e\xb8\x07\xf5\xf2\x50\x48\xe0\x6b\x8d\x5f\x28\x2a\xbe\x1f\xb6\x5a\x06\xb4\x8e\x49\xf4\x9f\x26\xba\xef\x2f\x14\x69\x16\x71\xa0\xb2\x6b\x64\xd5\xa5\x74\xc0\x70\xb1\xbb\x73\x89\x8c\x9b\xed\xed\xac\x6f\x6f\x2f\x21\x70\x89\xfd\x67\x67\xb6\x77\xe1\xeb\xbb\x7d\xdd\xdb\x99\x61\xc2\x1a\x12\x66\xad\xd6\xce\x1a\x13\x86\xba\xb7\x16\xdf\x97\xf8\x3d\xd2\x3d\x91\x71\xd6\x6a\x19\x10\xe1\xea\xa6\x07\x7f\x07\x3a\xfe\xe9\x89\x3f\x8e\x4e\x16\x7e\x0f\xc8\x12\x5c\xdc\xd3\x7f\x9a\xd8\x7a\xfb\xa2\x9d\xd1\xe9\x10\xdb\xf4\x0a\x54\x2f\xb2\xe3\x9f\x66\x11\xac\x10\x7d\xa7\x8e\x66\x2e\x7c\x25\x1f\x9b\xda\x85\x00\x75\x9f\x6b\xc9\x90\x54\xb6\x77\xcc\xe7\xfe\xb0\xdf\x6a\x7d\x7e\xe6\x8f\x07\x88\xb1\xc9\x70\xf9\xdc\x19\xf6\x95\xec\xba\x9d\x8b\x90\x37\x4b\xad\x9d\x57\x57\x70\xfd\x33\x74\x86\xaa\x75\xb5\xbb\xa1\x0c\xf3\xce\x00\xfc\x72\xbe\xd8\x50\xc0\xed\xed\x4a\x0e\x3b\x95\xb9\xa8\x90\x6d\xfd\x27\xbd\xbd\x90\x46\xfc\x06\xa3\x6c\x21\x9f\xd7\x56\xcb\x85\xc2\xfb\xd6\xeb\xf8\x6b\x10\x85\x73\x2d\x90\x6b\x68\x7a\xbb\xe2\x2c\x64\x61\x36\xe6\x7b\x97\x68\x73\xba\x08\x63\x5c\xa1\x43\xff\x94\x4a\x21\xa1\x8b\x4a\x65\x81\x96\xec\x04\xb5\xd8\x50\xf7\xa1\x20\x13\xc4\xeb\x6c\x0d\x39\x36\xbf\x6c\xf6\x03\x18\x82\xf9\x5c\xc6\x56\x3d\xc6\xc8\xd7\x0c\x60\xf8\x0d\xcb\x6a\xf2\x73\x65\xac\x0e\x33\xf7\x69\xc2\xf7\x76\x58\xf4\xbd\x0d\xe9\x93\x74\x0a\x19\xa4\x1b\x6b\xe1\x8c\xe3\x4d\xf6\x6d\x50\xd3\xfc\xce\x7c\x80\x12\x43\xcd\x1d\xdb\x63\x52\x91\xfa\xdc\x33\x18\xea\x77\x09\xec\x51\x22\x5b\x87\xdf\x91\x50\x7a\x1c\x68\x22\x4c\xbd\xfc\x40\xc2\x6e\x9a\xb0\xc2\xf1\x26\xac\x9c\x5c\x8c\x2e\x0f\xf9\x8a\x3e\x80\x3f\x48\x96\xab\x80\xc9\xf9\x83\x4c\x20\xbc\xf0\x61\xde\x29\xe7\x3f\x4d\xa5\xfb\x13\x36\x6d\x6e\xef\x46\xde\xd7\x17\xf8\x6b\x3a\x31\x9b\xe5\x88\x45\xab\xe3\x80\xa5\x94\xed\xb2\x2e\xa3\xf8\xa2\xad\x18\x28\x43\xf4\x9b\x19\xfa\x4c\xbc\x68\xf6\x86\xde\x9c\xd2\x7f\x5f\xd3\x78\x46\x1b\x3c\x2f\x96\xf6\x32\xa5\x1f\x5c\xf4\x6c\xc3\xba\x61\x9a\x79\x1d\x32\x9b\xc9\x01\x1e\xca\xb2\xb9\x29\xbc\x75\x16\x4a\xdd\x97\xf2\xb8\x65\x99\x77\xe5\x12\xc5\xca\x45\x41\x32\x8d\xfa\x92\x9e\x92\x9d\xd0\x24\xdc\xf4\xca\x18\x59\xee\x95\x53\x39\x64\x8c\xe7\x5a\xb2\xd0\x52\xc9\x0c\xf4\x9d\x53\xed\xca\x3f\x92\xb7\x46\xa8\x78\xba\x77\xdb\x66\x4f\x9b\x4f\x28\x17\xde\xbf\xcc\x61\x0d\x4e\xe8\x84\x3f\x2c\x54\xb9\x09\xb3\xe9\x8d\xc5\x4d\xdd\x38\xf3\x0d\xa5\xa1\x07\xd6\xca\xa3\xdd\x0d\x7e\x1d\xf8\x84\x89\xfe\xdf\xd4\xb9\x61\xe2\x03\x3d\x3b\xf3\x75\x5f\xc0\x7d\xef\x52\xb7\x34\xbc\x4b\xcb\xdd\x72\x11\xb7\x3e\x75\x54\x26\x67\x61\xd5\x1b\x26\x13\xbe\x3a\x04\x21\x24\xd4\xac\x2e\xf7\xc1\xbc\xa3\xd4\x20\x6f\x30\x5f\xa5\x1b\xe6\x2f\xc0\x48\xb4\xad\x56\x59\xef\xe7\x2f\xc1\x14\xf5\xbd\x59\x22\x05\x5f\x83\xda\xb2\xfc\x0d\xf2\x80\x4b\x63\x55\x8f\x40\xb8\x2a\xa6\x64\x44\x64\x37\x32\x18\x71\x3f\x83\x7c\x17\x63\xbe\x57\x8a\xb7\xa7\x44\x18\x82\xe5\x68\x67\x4a\xa4\xbd\x55\x8e\xef\x4d\xd1\x66\x2e\xc5\xf5\xa7\xc2\x82\x2e\x45\x0e\xa6\x77\x0f\xf0\x19\x1b\x63\xe3\x16\x61\xe1\x60\x78\xc3\xfc\x17\x97\xf9\xd0\x62\x9d\x91\x09\x07\x3b\xd5\xa3\x77\xd5\x87\xa4\xa4\x88\x65\x25\x84\x24\xc9\xf7\x1d\x8d\xb0\xb0\x72\x11\xaa\xd9\x1c\x04\xd5\x0c\x2d\xcc\x97\xa7\x76\x66\x85\xd9\x4c\x75\x21\x7d\x8f\x7b\x8c\x00\xee\xbb\x9c\x02\xb6\x0d\x05\x05\xa4\x1b\xd6\xe0\xf7\x98\xc7\xab\xa8\xc3\x7b\x50\x8b\x41\x37\xaf\x19\xe4\xdf\xcd\x4e\xd7\x17\xa7\x4c\xfe\x8e\x45\xa8\x91\x56\x91\xa7\xdb\x71\x4e\xb0\xa8\x89\xba\xf8\xf7\x65\x7d\x53\x11\x41\x61\x00\x69\x5e\xe3\x2b\x99\x96\x60\xa2\xe6\x99\xa3\x42\xe6\x8c\xba\x22\xc9\x5c\x3c\xd9\x86\x71\x85\x42\xf1\x39\x9c\x6a\x3e\x46\xc2\x2c\xb2\xd0\x98\xb5\x1d\x88\x3d\x0a\xe8\x48\x68\x7a\xf6\x70\xa8\xe6\x51\xc9\x9c\xde\xde\xda\xc3\x51\xe5\xdb\x2d\x7c\xef\xdd\xb7\xbe\xe1\x6d\x5e\xbd\xb8\xbb\xab\x68\x3f\xb4\x06\x66\x62\xd5\x64\x7d\xff\xaa\xc9\xea\x81\x55\x93\xf9\x7d\xab\x26\x8b\xfb\x56\x4d\x76\xcb\xea\x29\x35\x26\x16\xd1\x27\x1f\xde\xbd\x79\xf7\xfe\xd3\xbb\xa9\x4e\xe6\xe2\x7f\x78\x65\x9c\xe8\x93\xc3\xd3\x83\xa9\x4e\xf4\x9f\x74\xb2\x82\xff\xe1\x9d\x66\x87\xe8\x93\x57\xf6\x54\x27\xb1\xa1\xff\xf4\xfe\x18\x92\x27\xc7\xba\x49\x56\x10\x70\x7a\xff\xd0\x25\x5c\x0f\xe0\x1c\x05\xf7\x17\x84\xfb\x4b\x06\xd7\xcf\xe0\xfa\x00\xd7\x53\x70\x27\x08\x77\x92\xc1\x0d\x32\xb8\x01\xc0\xf5\x15\xdc\x29\xc2\x9d\x66\x70\xc3\x0c\x6e\x08\x70\x03\x24\x7b\x62\x63\x76\x04\x70\x33\x00\xa8\xd8\xab\xa1\x04\x18\x65\x00\xe3\x0c\xc0\x05\x80\x91\x04\x70\x15\x40\xcf\xce\x00\xc6\x00\xe0\x4a\x80\x71\x06\xe0\x28\x00\x07\x98\xfa\x6a\x2c\x00\x1c\x2b\x03\xc8\x98\xe3\xd8\xc8\x44\x4b\x42\xd8\x19\x44\xc6\x16\x47\xb0\xd9\x96\x10\x3d\x05\xd1\xcf\x0b\x41\x06\xdb\x8e\x84\xe8\x67\x10\x59\x29\x63\x87\xe8\xff\x15\xa3\x43\x23\x30\xf4\x7f\xd1\x4d\x12\x18\xfa\xaf\xba\x09\x4c\x9b\xa3\xf7\x0e\xa2\xdb\x3b\x00\x10\x19\xba\x58\x1d\x7c\xb7\x5e\x7e\xd6\x4d\xf1\xbd\x1f\xf1\xe2\xe7\x5b\xca\x03\xf1\x3d\x25\x93\x81\x45\x74\xe7\x5f\x7e\x2c\xab\x4d\xf4\xde\x3f\xfd\x58\x56\x87\xe8\xfd\x7f\xfe\xb1\xac\x3d\xa2\x0f\xfe\xf4\x63\x59\xfb\x44\x1f\xfe\xfa\x63\x59\x07\x44\x1f\xb5\x7e\x2c\xeb\x90\xe8\xee\x9f\x7f\x2c\xeb\x88\xe8\x63\xe3\x87\xb2\xf6\x5d\xa2\x5b\x66\x96\xb5\xb4\x15\xbe\x09\x41\x15\x08\xdd\x60\x8c\x89\xde\xf9\xbc\x19\xcf\x86\x78\xcc\x3a\x22\xba\xdf\xfe\xa1\xac\xa3\xde\x8f\x96\x3a\xb4\x7f\xbc\x50\x9b\xe8\xed\x3f\xff\x48\x56\x50\x34\x2f\xde\x9c\x1e\x4f\x75\xc2\x0c\xfd\x3f\x74\xa2\x9f\x5f\xe8\x26\x84\xcf\x2f\x74\xa2\xff\x07\x66\x86\xae\x0c\x0a\xe7\x6c\xff\xc5\x54\x27\xa1\xa1\x9f\x73\xec\xf1\x7f\xd3\x4d\xb2\x20\x73\x4c\x77\x6d\xa2\xff\xfb\x5f\x80\x84\xc0\xd0\xff\x92\x65\x03\x4e\x5e\x7f\x92\xd1\x9f\xb2\xe8\xe1\x98\xe8\xf4\x50\x46\x1f\xe6\xd0\x0e\xd1\xd9\x89\x8c\x3e\xc9\xa3\xfb\x44\xe7\x67\x32\xfa\x2c\x8f\x1e\x13\xfd\xe6\x5f\x65\xf4\xbf\xe6\xd1\x03\xa2\xaf\x3f\xc8\xe8\x0f\x59\x34\x34\x4c\xf8\x5a\x46\xbf\xce\xa3\xc7\x44\x4f\xde\xcb\xe8\xf7\x39\x12\x8b\xe8\xab\x63\x19\x7d\x9c\x45\x3b\xa8\x78\xbf\xcb\xf8\x49\x1e\x0f\xea\x74\x7a\x27\xe3\xa7\x85\x78\x8b\xe8\xe7\xe7\xb7\x32\xe1\xfc\x3c\x4f\x01\x05\x7d\xb0\x7f\x7c\x9a\x0d\x79\xc8\x97\x01\xd1\x83\x7d\x09\xbd\x9f\x53\xd3\x23\x7a\x7a\x2a\xa3\x4f\x73\x2e\xba\x44\x9f\xbf\x94\xd1\x2f\xf3\x2a\x59\x44\x5f\xbc\x92\xd1\xaf\xf2\x68\x9b\xe8\x97\x3f\xcb\xe8\x9f\xf3\x68\x87\xe8\x57\xbf\xc8\xe8\x5f\xf2\xe8\x3e\xd1\xff\xed\xbf\x64\x9a\xfb\xbf\xe8\x26\x99\x67\x69\x03\xa2\x7f\x79\x93\xa5\xbd\x51\xbd\xf0\x20\xa2\x01\xfb\x2c\x94\x3b\xc2\x0d\x89\x1e\x1d\x65\x70\x47\x45\x1c\xb6\x3b\x24\xfa\xae\x07\x89\x8b\x8c\x59\x0e\xd1\x9f\x9c\xeb\xc5\x38\x1c\xc3\x0f\xdf\x9d\x1d\x9e\xc0\x20\x73\xce\x74\xb2\x26\x6b\x91\x02\xa3\xec\xe9\x2f\xaf\x5f\x9d\x95\x38\x38\xb6\x88\xfe\xf7\xbf\xc9\xea\xfc\x2d\xe7\xa0\x4b\xf4\x6f\x7f\x95\xd1\x7f\xcd\x39\x38\x22\xfa\xec\xa0\xa4\xa6\x0e\x0a\x1d\x06\xf4\xd2\x81\xec\x28\x43\xa2\x7f\xfd\x58\x82\xfc\x58\x81\xfc\x28\xfb\xf1\x90\xe8\x17\x2f\xb2\x5a\xbf\x50\xb5\x0e\x8d\x15\x99\x03\xc0\xc8\x25\x7a\xfc\xae\xac\x1b\x2b\xa8\xde\x09\x54\xa3\x11\xd1\x97\x6f\x25\xd5\x6f\xf5\x9c\x77\x2e\xd1\xc9\x33\x88\x4f\x8d\x45\x81\xa7\x50\xf9\xee\xf3\x86\x78\x9b\xe8\x4f\xf7\x32\x92\x3e\x8b\x61\x78\x2f\x6f\x29\xb4\x48\x0e\xce\x4e\x8e\x4a\x06\x18\x9a\x21\xfb\x47\x67\xa5\x48\xc0\x35\x39\xda\x3f\x2e\x83\xf6\x1c\xa2\x6b\x92\xd0\x7f\xc9\x95\x06\x98\x10\x27\x55\xd8\x31\xb4\xe9\xc9\xdb\xc3\x77\x1f\x4a\xd1\x7d\x00\x3e\x3e\x39\x3b\x3d\x38\x29\x53\xd1\x07\xbb\xeb\xf4\xe0\xe4\xe8\x4d\x39\x1e\xba\xe2\x8b\x93\xc3\xfd\x72\x34\x42\xbf\x7e\x77\x7a\x78\x02\x74\x23\x47\xdf\xd0\x1b\x71\x2c\x4b\x70\x59\xd0\xd6\x03\xf9\xf9\xe5\xfd\xdb\xc3\x02\xd4\x2f\xc9\x92\x96\x60\x80\xd2\xe3\x9f\x3f\x1c\x17\x60\x8e\x83\x4b\xfa\x61\x55\x84\xea\x03\xa6\x97\x87\x47\x05\xa0\x97\x34\x2a\xe1\x19\xa0\x14\xbf\x2c\x40\x1c\xc6\xf3\x12\x44\x1f\x4b\x7a\x29\x6c\xe0\x62\x59\xb8\x57\x5c\x84\x84\x46\x29\x51\xb4\xcf\x58\x72\x5d\x21\x09\xb4\x4b\x05\x19\x82\xd5\xb0\x01\x13\x4f\x5e\xff\xfc\x0b\x30\x8b\x1b\xfa\x4f\x93\x03\x50\xed\xef\x0f\x8a\x30\x20\x1c\x47\x87\xaf\x32\x90\x97\x08\xf2\xb2\x00\x62\xf7\x81\xfe\x77\x1f\xde\x1e\xbd\x3f\x28\x37\xc7\x18\x98\xf3\xe6\x18\xec\xcc\x55\x06\x3e\x1e\x61\xa4\x5d\x8e\x74\x31\xd2\x29\x47\x8e\x31\xb2\x57\x8a\xb4\x2d\x0b\x63\xfb\x95\x58\x1b\x63\x07\x95\x58\x07\x63\x87\x95\xd8\x1e\xc6\x8e\x2a\xb1\x7d\x8c\x75\x2b\xb1\x03\x8c\x1d\x57\x62\x45\x1d\xda\xd3\x1f\x1a\xb1\x2d\x51\xaf\xce\x0f\xe6\x16\x4c\xfd\x73\x99\x22\x5b\xd4\xff\x69\x25\x56\xf0\xaa\x5b\x8e\x05\x25\x35\x79\xb1\x8f\x8d\x75\x65\x94\xe7\x51\xb5\x89\xd4\x10\xe7\x2b\x9f\x5e\xe6\xb0\xd9\x5c\xaa\x36\x99\x82\x31\x69\x72\x72\x78\xf4\x7e\xbf\x00\x9e\x4d\xa9\x6a\x73\x2a\x17\xa7\x10\xa2\xcb\x4b\xe0\x6c\x5e\x55\x9b\x58\x81\x79\x30\xf9\xf4\xfa\xdd\x29\x02\xcb\xc9\x95\x59\x99\x5d\x39\x38\x30\xbc\x38\x79\x7d\xd6\xc9\xc0\x46\x39\xd8\x38\x03\x1b\x49\xb0\x76\x06\xe6\x66\x60\x72\xa6\xf5\xc0\xd2\x55\x51\xb3\x6c\xbc\x8e\x96\xad\x07\x54\x8f\x87\x16\xb7\xab\x37\x4c\xf1\xf1\xd4\x20\x50\xfd\x0f\x7d\x0b\x4a\x50\x7b\x35\xd0\xb1\x53\xa6\xa3\x7c\x1a\xf5\xd7\x02\x11\x78\x2c\x41\x9c\x4a\xc8\x56\x63\x8a\x27\x7b\x2a\x88\xea\x4b\x60\xfa\x4f\x93\x5f\x74\x4f\xff\xe9\xfd\x2f\xba\x67\x94\x81\xb3\x2d\xb7\x14\x8b\x05\x5a\x8d\xea\x62\x6e\x79\x0d\x62\x1b\xe6\x83\x16\xfd\xcd\x35\x7e\xf3\x1b\xab\xfc\x0a\xab\xfc\xea\xa1\x2a\x8b\x37\xa7\x7e\x6b\x8d\xe5\xf0\xf3\x70\xa5\xcb\xa7\x8b\x8b\x95\xd6\x7f\x9a\x0c\xfe\xf1\x10\xb5\xa2\x9c\xdf\x81\x60\x18\x0a\x1f\xee\x1c\xf7\x9c\xf3\xad\x1c\x20\xad\x9e\x23\xd9\x51\x6d\xb8\xa7\xff\xf4\x1f\xd0\x12\x93\xde\x56\xbd\x25\x1b\x5b\x7f\x23\x2b\x87\x5b\xb1\x12\x37\x3e\x7e\x3b\x33\xd5\x50\xff\x30\xcd\x35\x49\x2d\xa9\x9b\xfb\x09\x3e\x0a\xe3\x2d\xda\xde\x2b\x1f\xfa\x2b\x74\x9f\xda\xe1\xa6\xed\xfa\xd1\x3e\xf6\xa3\xfd\x6d\x1a\x2f\xb7\x65\xfe\x78\x4e\x6c\xd3\x74\xbf\x3b\x2f\x5e\x20\x2f\x5e\x3c\xc8\x0b\x31\xe5\xf2\x1b\xf7\xb1\x37\xd4\xec\x3a\x5c\xd1\x03\x71\x25\x33\x7d\xa0\x5e\x0f\x96\x2e\x97\x75\xaa\xcf\x73\xe7\xfb\x1f\x8f\x5f\xa3\x57\x57\xbb\xea\x84\xaf\x82\x34\x95\x25\x5e\x50\x86\x3d\x5f\x31\xdd\x6c\xdc\xba\x2f\x0e\xa3\xd9\xb9\xb9\x86\x23\x2f\xf2\xf4\x9c\xad\xae\x15\xeb\xb6\x2e\x0e\xb6\x39\xd9\x45\x63\x86\xd3\x1a\x11\xdb\x2b\xc6\x4e\x54\x6c\xbf\x18\x0b\x13\x7d\x11\x3d\x28\x46\x4f\x55\xec\xb0\x18\xfb\xab\x8a\x1d\x15\x63\x3f\xab\x58\x37\x23\xeb\x3f\x24\x59\xe3\x2c\x66\xac\xdf\x3d\xd4\x46\x72\xa5\xec\x51\x22\x02\x9c\x16\xf9\xaa\x8c\xbe\xcf\x50\xb9\x77\xc7\xe0\x21\x32\xd5\x12\xe0\xa3\xe9\x94\x19\xff\xd3\x08\x15\x6b\x04\x8d\xc7\x62\x36\x50\x79\x49\xf9\x4b\x79\xdb\xcf\x30\xe1\x2b\x73\xf5\x22\x4f\xc3\x8b\x83\x0e\x51\x14\xac\x52\x3a\xcf\x9f\xb3\xc8\x30\x65\x77\x7e\x1a\x65\x7e\x43\xa9\x78\x0a\x28\x2b\x69\x7f\xc1\x29\x13\x28\x0a\x5e\x76\x58\x77\x26\x8b\x3d\x4b\x0e\xe3\xb9\xb8\x0e\xc0\x4c\x32\xb0\x36\xe9\x05\xec\x4a\xd9\x55\xd3\x26\x0a\xff\xd3\x08\xdc\x84\x76\x83\x2f\x9d\x87\x54\x9d\xec\x51\xff\xbf\x87\x55\x2e\xae\xd7\x34\xcb\x69\x71\x60\x51\x4f\x68\xae\x68\x6c\x64\xce\x68\xd4\x89\xe9\xee\x15\xa3\x0b\xa2\xeb\x44\x17\x27\xeb\xfd\x38\x21\xe2\x72\xf2\x0d\x4d\x89\x74\xe5\x02\x41\x31\x0e\x5d\x04\x2c\xc5\xcf\x65\x18\x87\xcb\xf0\xef\xc1\x45\x24\x92\x85\xeb\x13\xbd\x2d\x0b\x0b\xe3\x98\x0a\xbf\x6d\x6d\x9d\x48\x0f\x28\xe5\x44\xe1\xa8\xe8\xa1\xe1\x4c\xff\x5f\xb6\x62\xc3\xc7\x66\x36\x14\x84\xb4\x6a\xbc\xe5\x97\xd5\x8a\x76\x76\xab\xd5\x20\x4f\x02\x6c\x6f\x73\xd7\xc7\x53\x41\x3f\xb8\x37\xea\xe9\xff\xeb\x83\x35\x14\x0b\x71\xff\xdf\x6c\xe8\x64\xcd\x37\x37\x34\x26\x6e\xd7\xd0\xbf\x59\x67\xff\x06\x55\xb8\x5b\xe3\xe5\xed\x2d\xab\xe8\xc7\xa2\x66\xdc\xab\x8e\xdd\x85\x46\x10\xc7\x5a\x37\x1a\xe2\xdb\xe8\x9a\xa2\x77\x97\x2a\x15\x25\x2d\x64\x98\x77\x0f\x68\xc8\x07\x4d\x79\xb1\x5c\xfc\xa0\x68\xdd\x23\xbf\xd5\x19\x8a\xbc\x65\xf9\x87\x0d\x7b\xe5\x65\xa8\x06\xdf\x03\x0d\x63\x56\xed\x16\x6b\x61\xea\xa4\xce\x80\xe9\x9d\xcf\xba\xef\xab\x96\xdd\xd3\xff\x37\x7d\x03\x9d\x42\x62\x61\xec\xb1\x77\xee\x11\x2f\x28\xe6\x55\x30\xe3\x09\x33\xcc\x2d\xac\x42\x29\xad\x0d\x46\x21\x94\xa4\x5b\xba\xef\x33\x73\xd3\x14\xa1\xe0\xfa\xc2\x2a\x78\x0f\x08\xef\x21\x2f\xf7\x95\xb1\xab\x77\x00\xf9\xed\xad\x5c\x07\x2c\x30\x21\xec\xf8\xb6\x17\xb6\xd5\x3b\x62\xf7\x97\x1c\x66\xbe\x36\x1f\x63\xc9\xcb\x83\x79\x4d\xfe\xb9\xa2\xf9\x2c\x60\xf3\x83\x64\x9d\xbf\xcf\x26\x0f\xa2\xe4\xf7\x7b\x9a\xb1\x75\x97\xc9\x3c\x5c\x84\x94\xa5\xd9\xe5\xc3\xfc\x70\x8d\xc0\x3f\xe1\x53\x9f\x4e\xf8\xf4\xf6\x76\xc7\x26\xfa\x9f\xe5\x39\xee\x09\x9f\xca\x81\xa2\x54\x7c\xbb\x5d\xf3\x05\x72\x6f\xa9\xfe\x44\x47\xf1\x02\x65\xcb\x59\xa4\x13\xbc\x1a\x40\xc4\x95\x80\xe9\x86\xdc\x85\x73\xbd\x9b\xfa\x63\x89\xa8\x67\xbc\xfc\xbd\xd7\xb1\xbd\x0a\xc8\xf3\x2a\x88\xed\x59\x9b\x88\x2f\xb8\xfa\x0a\xf8\xec\x6a\xd3\xfb\xa5\x92\xef\x3b\x79\x13\xe4\x2e\x9d\xa5\x17\x4a\x6b\xf7\xde\xf3\xcb\xf7\xb4\x4d\xa8\xde\xcc\x0a\xf1\x90\x69\xab\x45\x27\xe1\x74\x97\xb5\x5a\x06\xbf\xbd\xd5\xff\xac\x8b\xfe\x36\x09\xa7\xa6\x68\xa5\x49\x38\x15\x77\xc9\x18\xde\xde\x29\xb6\x11\x61\x5b\x56\x54\x1e\x06\xdd\xb8\x32\x24\xb8\x61\x50\x02\x25\x6c\x8d\xb2\x49\xac\x9b\xb1\x5a\x88\xf5\xbd\xf4\x90\x55\xef\x06\x2c\x58\x05\xe8\x7c\xc2\xdf\x41\x53\x25\x8f\x50\x67\x48\xbf\x52\x96\xd2\x4f\x05\xb8\x1d\x5c\xd2\xad\x25\x48\x2f\x05\x2c\xbc\x0c\x63\xf4\x19\x20\x01\xf3\x18\x79\x8d\x7d\xcd\x93\x83\x80\xb1\x30\xb8\xa4\x27\x48\xb3\x82\xac\xa7\x64\xef\xfb\xa7\x09\xfb\x28\xfc\x97\x28\xe0\x52\x64\x11\xee\x45\x14\xc6\x5f\xca\x50\x18\x45\xd4\x5d\x64\xca\x78\x91\xbe\x3c\xa6\x54\xe3\x8f\xe1\x9c\x26\x95\xca\x62\x9c\x74\x23\xc0\x82\xd9\x17\xca\xe9\x5c\x7a\x24\x10\x70\xe5\xd8\xad\x4f\xfa\x8a\xf3\xec\xf5\x07\xa7\xd1\x33\xa4\xaf\x4b\xaf\x01\xab\x24\xcd\x5e\x96\xbc\xca\x2e\xf2\x8b\xbc\xc5\x2b\xf3\xf8\x92\x7d\x83\x64\x14\x5c\xe3\x60\x26\x0d\x21\xb5\x80\x2b\xb7\x24\xab\x24\x15\xef\x96\x8a\xdb\x1a\x35\xcc\xf9\x31\xf5\x06\xaf\x7a\x19\x89\x7e\x81\x76\x79\x5c\xb7\x11\x5b\xe5\x40\x6c\xee\xc6\x51\x56\x9b\xe6\xb5\xe6\xb7\xb7\x79\xc5\x69\x71\xf4\x6a\xc4\x5c\x3d\xfe\x5f\xa4\x56\xbc\x73\x9f\xdd\x99\x43\x2e\xee\x96\x0e\x9f\x67\x08\xc3\x39\x8d\xb9\xd4\x25\x4a\xab\xbc\xa1\x37\xa9\x49\x27\x0f\xc2\x4c\xf8\x74\xea\x2b\x37\xf4\xaa\x1e\xcf\xea\x9c\xd9\x55\x75\xfe\x12\xae\x84\xe7\xf4\xd2\x2d\x51\xac\xc9\x59\xf2\x85\xca\x29\xb4\x1e\xc6\x9c\x5e\xe2\x73\xc0\x0c\x3d\x0a\x9b\x99\x9e\xf4\x59\x17\x9f\x0a\xcf\x9e\x10\xd4\x73\xda\x72\x70\x39\x70\x4b\xd8\x2e\x4f\x3e\xac\x56\xc5\x1b\xeb\xe1\x56\x1c\x68\xb5\x1e\x04\xe9\x5e\x05\xe9\xfb\xeb\xf8\x98\x25\x2b\xca\xf8\x8d\x11\x9a\xea\xbc\xee\xc3\xbc\x0b\xf1\x60\x3d\x9d\xa4\xd3\x56\x0b\xd5\x32\x04\xa5\x7f\x27\x64\x8b\xbc\xa5\x90\x9f\x40\x57\xd9\x41\x78\x65\xdd\xcc\x5d\xc8\xe5\xef\x58\x77\xb9\x27\xff\xcd\xb5\x93\x4c\xdc\x54\x33\x95\xdc\x50\xab\x06\xba\x94\x57\xbc\x2f\xf4\xa6\x4c\x50\xd6\x56\xf7\x16\x32\x09\xa7\x77\x19\xd1\x7a\x7a\xb3\xbc\x48\x22\x7d\x47\xb5\x60\xbd\xb8\xec\xb2\x86\x14\x0e\x2d\x61\x5a\xa1\xed\x85\xe0\xfc\x19\x31\x08\x42\x9a\x28\x56\xef\xba\x6b\xa2\xbc\x12\xdd\xaa\x7b\xc4\xdb\x75\x0f\x6c\xe7\x60\x8b\x76\x8e\xa7\xbb\x74\x12\x4c\x6f\x6f\x0d\xf8\xe3\xeb\x7f\xd6\xcd\xbb\x6c\x5d\xb4\xd0\x23\x88\xde\x91\x63\x73\x77\x76\x65\x8a\x0b\xb9\xe1\xc2\x10\xee\x76\x73\x43\xa1\x89\x33\x9c\x05\xc5\xdb\x69\x01\xcc\x88\x34\x1e\xb0\x4b\xca\xa1\x79\x94\x13\xb0\x60\xfe\x35\x88\x67\xd4\xb0\x71\x5d\x16\x10\xfb\xf7\x22\x7e\x1b\xa6\x69\x18\x5f\x96\x31\x29\x3b\xea\x5e\x9d\x24\xd4\x7e\x5d\xd5\x57\xfa\x3f\xdd\xd0\xff\xb3\x9b\x48\x54\x48\x43\x66\xbb\x89\xbe\x5f\xeb\xf6\x12\x4c\x78\x98\x40\x98\x8d\x6d\x28\x6e\x96\x6d\xea\x01\x32\xb5\xda\x01\x24\xd2\xc2\x14\x64\x73\xde\x89\x04\x9e\xee\xde\xdb\x65\x0a\x17\x10\x15\xf6\xbb\x7b\x84\x5e\x70\xa4\x2a\xf3\xcd\x6d\x40\xe9\x97\x8d\x2e\x4e\x9f\xe4\xbe\x64\x6e\x6f\x9f\xe8\x4f\xb2\xaf\x8d\xa8\x5e\x67\xe5\x6d\x1a\x0e\x67\x57\xea\xed\xed\x49\xd0\xf9\xfb\xe7\xe9\xd3\x70\x33\x61\xaf\x45\xe7\xdd\x02\x95\xd5\x19\x4f\x9f\xde\x33\xf2\xa1\xbc\x94\xfc\x37\x62\xff\xcf\x2a\x94\x0d\x82\xc2\xdf\xb8\x54\x30\x04\x59\xed\xa9\x4a\xef\x16\x0b\xcf\xbb\x07\xa1\x59\x07\x2d\xb3\x20\x9b\x85\x4a\xac\x85\xc6\x28\x62\x46\x02\x8b\xb9\xee\x76\x8b\xf8\xe4\x83\xe9\x15\x5c\x52\xe8\x6b\x78\x14\x74\x19\x87\x64\x64\x8d\x20\x39\x72\xd6\xa9\x51\xf0\x77\x8d\x72\x99\x29\x46\x0e\x6c\xdd\x24\x59\xe5\x6a\x55\x98\xbf\xd3\xcc\xaf\xfb\x34\x79\x51\x7d\x97\x0c\x2c\x28\x48\x5d\xff\x43\xa9\xb2\x3a\xe3\xcf\xd3\xf6\xd3\xcb\x4d\xa2\x55\xa8\x62\x83\xd4\x5b\xb9\x58\x28\x5f\x16\x8d\x76\x4a\xc7\x6e\xb5\xf4\x6f\x7a\xd9\xb8\x93\x76\x58\x66\x3b\xda\xc4\x36\xf7\x54\x81\x46\x03\xbd\xd6\x37\x10\xde\xa0\xb3\x10\x04\x9b\xde\x7d\xc0\xe7\xf3\xf6\xd3\x4b\xf3\x9e\x5a\xd5\xbb\xb2\x90\x6b\xb0\x97\x55\xa5\x40\x32\x9e\xe8\x4f\x84\xb7\x9d\x27\xe8\x6d\xa7\xce\x76\x81\x48\x53\x2d\x5d\x1f\x14\x0a\xd7\x01\xc1\x88\x3e\xa1\x97\x87\xdf\x56\x86\x3e\x39\x3f\x3f\x3f\xd7\xdb\xe8\x1a\x9b\xe8\x97\x2a\xdf\x46\x4b\x0f\x6f\x97\x46\x41\xca\x5f\xc7\x73\xfa\xcd\x57\xc0\x64\x87\xa1\x83\x7a\xa3\x90\xa9\xd9\xac\x90\x0b\x23\x05\xb5\x17\x85\x9c\x32\x74\x15\x01\x1a\xbe\xdd\xd0\x3c\x78\x7b\x52\x95\x54\x28\xbe\x63\x2b\x27\x6f\xb2\x9a\xc5\x34\x95\x01\x80\x04\xfb\x6e\x6f\xf5\xf3\xf3\xc2\x28\x0c\x3a\x05\xf9\x59\x4d\xc8\xa6\xf2\xb3\x2b\xdf\xe7\xe6\x46\x35\x22\x9c\x0b\xb5\x55\x3e\x52\x65\x79\xf1\x8a\x69\x9e\xad\x5d\x18\x17\xc5\xad\x77\xa3\x69\x74\xb8\x97\x55\x9b\x25\x4a\xfa\x74\xab\x4f\x17\x9e\xe8\x4f\xbc\x27\xfa\x13\xa2\x3f\xd1\x3d\xfd\x89\x4e\xa0\xca\x1e\xfc\x90\xc0\xd3\xff\xff\x3a\xb9\xf0\xf0\x1c\x39\xf5\xf4\x9f\x74\xb2\xf0\xf4\xf3\x85\x4e\x62\x4f\x3f\x8f\x75\xc2\x3c\x3c\xce\xcb\x3d\x3c\x4d\xfe\xd5\xd3\xcf\xbf\xea\xe4\x9b\x57\x2b\x63\x73\xf7\x9e\x7e\x77\xee\xa0\xbb\xec\xde\xb3\xc3\x9c\x75\x24\x4a\xec\x21\x74\x9a\xf5\xe3\x4a\xe8\x3f\xba\x04\x54\xba\x3b\xaa\xa9\xd5\x82\x4a\xd5\x3e\x50\x52\x71\x9f\x99\x2c\x5c\x1d\x64\x5e\xc5\x67\x57\xc2\x04\xe2\x3e\x9d\xc8\x88\xe9\xa6\xd1\xa8\xe1\xae\x24\x6f\xb5\x0c\xee\xf3\xdc\xfb\x88\x69\x12\xbe\xb9\xc9\x9b\x56\x52\x84\xe7\xae\xcb\x28\xb9\x08\xa2\x06\xba\x41\x9b\xb2\x38\x88\xc4\xfc\xd9\xd3\x4e\x57\x41\xac\xad\x04\x9e\x54\x5b\xae\x53\xae\x5d\x50\x4d\x64\xd7\xc1\xea\xaf\x77\x79\x55\xc1\x7a\xbf\x17\x9b\x8e\xb7\xb7\xb4\xd8\x1b\x27\xd6\x54\x6a\x91\x9d\x0c\xc5\x7d\xc3\x07\x5a\x0a\xda\x22\x61\x62\x32\xbf\x5b\x9d\xa2\x17\x91\xdb\xd5\x9e\x47\xa0\xb8\x46\x86\x49\x98\xfa\x2a\x12\x28\xff\xcc\x49\xff\xd5\x7d\x63\xc4\xa6\x29\x7b\x66\xff\x56\x1b\xe2\xe9\x79\x2a\x5d\x03\x65\xa2\x24\xaf\x73\x3f\x3d\x4f\xdb\x4f\x2f\x97\xbb\x7c\x13\x7f\x59\x91\x10\x34\x11\x04\xbb\x99\xa9\xbc\x3f\xe1\xda\x42\x9e\xdd\xdc\xb2\x06\x84\xb6\x5a\x1d\x3b\x1b\x38\xbb\x21\x64\x7e\xbf\x30\x1a\xb5\x76\xd6\x28\x49\x4c\xb5\x64\x01\x0d\xd2\xd6\x89\xb6\x48\xd6\xf1\xbc\x28\xf3\x77\x05\xbe\x14\x8c\x67\xff\x7b\x73\x7c\x69\x26\xe5\x7f\xc7\x0b\x02\x9e\x5a\x16\x3e\x38\x3b\x39\xf2\xe4\xda\xf0\xc1\xfb\x77\x67\x27\xef\xb3\xcf\xfd\xa3\x33\xe1\x49\x86\xbc\x3d\x3c\xdb\x97\x6e\x64\x36\x14\xa1\x26\xa4\xfe\xf7\xc3\xd3\x83\xfd\xe3\x43\xcf\x19\x91\xc3\xd3\x03\xf8\xf3\xca\xf6\x6c\xdb\x21\xaf\x1c\xcf\xb6\x7b\xe4\x55\xcf\xb3\xed\x3e\x79\xd5\xf7\x6c\x7b\x40\x5e\x0d\x3c\xdb\x1e\x92\x57\x43\xcf\xb6\x47\xe4\xd5\xc8\xb3\x6d\x97\xbc\x72\x3d\xdb\x1e\x93\x57\x63\xcf\x76\x2c\xf2\xca\xb6\x3c\xdb\xb1\xc9\x2b\xdb\xf6\x6c\xc7\x21\xaf\x6c\xc7\xb3\x9d\x1e\x79\xff\xee\xd0\xeb\x8f\xc9\xd9\xa7\xf7\xde\xc0\x22\x67\xbf\x9c\x1c\x1e\x7a\x03\x9b\xbc\x7a\xff\xe1\xc4\x1b\x38\xe4\xd5\xeb\x8f\x87\xde\xa0\x47\x4e\x5f\xff\xd5\x1b\xf4\xc9\xe9\xe1\xc7\xc3\x77\xde\x60\x40\x0e\x5f\xff\xfc\xcb\x99\x37\x18\x92\x77\xaf\xdf\x1d\x7a\x83\x11\xf9\xdb\xe1\xc9\x7b\xaf\xef\x92\x17\xfb\x07\x6f\x4e\x8f\xf7\x0f\x0e\x3d\x97\xbc\x78\x73\x7a\x0c\x7f\x4e\x3d\x97\x9c\xed\xbf\xf0\xc6\xe4\x2f\x9e\x6b\x93\x4f\x9e\x3b\x22\x87\xde\x70\x4c\x4e\x3c\xd7\x21\x67\x9e\xdb\x27\xff\xea\xb9\x63\xf2\xc1\x73\x07\xe4\xb5\x37\xea\x91\xf7\xde\x68\x4c\x8e\x3d\xd7\x22\x07\xfb\xc7\xa7\x9f\x8f\xde\x1f\xbc\xf1\x1c\xf1\x51\x0c\xc3\xdf\x7d\x6f\x38\x20\xa7\x9e\xdb\x23\x2f\xbd\xa1\x4b\x5e\x79\x23\x8b\xfc\xec\x8d\x6c\xf2\x8b\x37\x72\xc8\x7f\xf1\x46\x7d\xf2\xc6\x1b\x0d\xc8\x91\x37\x1a\x12\xbc\xef\xe1\xd9\x3d\x08\xc0\x9f\x93\xc3\xb3\x0f\x27\xef\x64\x08\xfe\xfc\xcd\x1b\x5b\xe4\xaf\x9e\xeb\x92\x03\x6f\x38\x22\x1f\x3d\x77\x48\x5e\x78\xc3\x21\x79\xe7\x8d\x5c\xf2\xd6\x1b\x8d\x88\xa8\x5d\xcf\x21\xa7\xc7\xf0\x7b\x7c\xf2\xfa\xdd\xd9\xe7\xd3\x83\x93\xc3\xc3\x77\x5e\x1f\xbe\xcf\x4e\x0f\x20\x70\x7a\x70\xf2\xfe\xe8\x48\xd0\x6e\xf7\x07\x04\xef\x19\x60\x08\xaf\x16\x78\xf6\x98\xbc\x38\xc1\x3f\xe2\x4e\x81\xd7\x1f\x40\x08\xfe\xfc\xf2\xfe\xed\xa1\xd7\x1b\x92\xe3\xfd\x9f\x0f\x3f\x7f\x38\xf6\x7a\x3d\x72\xfc\xb3\xf8\xfb\xf2\xf0\xe8\xf0\xec\xd0\xeb\x0f\x21\x04\x7f\x0e\xdf\xbd\xf4\x7a\x03\x01\xfa\xf2\xfd\xa7\x77\x5e\xaf\x4f\xc4\x71\x7f\x19\xc2\xbf\x90\xd9\x25\x18\xdb\xb7\x08\x1e\xcb\xf7\x7a\x63\x72\x74\xf8\xea\xcc\xeb\x8d\x88\x3c\x5f\xef\xd9\xfd\x3e\x79\x73\x6c\x79\xe3\x21\x79\x73\x6c\x7b\xe3\x11\x79\x73\xec\x78\x63\x97\xbc\x39\xee\x79\xe3\x31\x79\x73\xdc\xf7\x6c\xcb\x22\x6f\x8e\x07\x9e\x6d\xd9\xe4\xcd\xf1\xd0\xb3\x2d\x87\xbc\x39\x1e\x79\xb6\xd5\x23\x6f\x8e\x5d\xcf\xb6\x00\xc7\xd8\xb3\xad\x01\x79\x73\xfc\xf9\xf8\xe8\xc3\xa9\x67\x5b\x80\xe9\xf3\xfe\xcb\x97\x2a\xf8\xf6\xf5\x3b\x8c\x07\x9c\x9f\x4f\x3f\xbc\x38\x3b\xd9\x3f\x38\xcb\xbe\xcf\xf6\x4f\x3c\xdb\x1a\x22\xe0\x87\xa3\xb3\xd7\xc7\x47\xff\xaa\xbe\x5f\xbe\xfe\xf8\xfa\xe5\xa1\x67\xdb\x36\x7e\x1d\x1e\xbc\x7e\xbb\x7f\xe4\xd9\xb6\x85\x85\x1d\x9e\xbc\x7e\xff\x12\xbf\xde\xed\x7f\x7c\xfd\xf3\xfe\xd9\xe1\x67\x90\x48\xcf\x86\x26\x54\x31\xaf\xde\x9f\x7c\xda\x3f\x79\xe9\xd9\xc3\x11\x11\x07\xca\x3d\x1b\x44\xe7\xc3\xd1\x91\x6a\x48\xdb\xed\x91\x4f\xaf\xdf\xbd\x7c\xff\xe9\xf3\xfb\x8f\x87\x27\x1f\x5f\x1f\x7e\xf2\x6c\xd7\x21\x2f\x90\x75\xef\x0e\x4f\x4f\xa1\x5d\x1c\x7b\x58\x8c\x41\xf6\x3a\xf6\x68\x43\xe7\x96\x93\xf2\xcc\xe9\xeb\xbd\xd7\xa4\x95\xe3\xd7\xfb\x2f\x4b\xdf\xb3\xfb\x8a\xf7\xa5\x8b\x27\x6e\xbd\xc6\x27\xa4\x1e\x71\x26\xf7\x8e\x94\x4f\x9d\x3e\x84\x70\x8b\xe3\x8d\x0a\xe5\x59\x72\x96\xdc\x4b\xe0\xc3\x47\x9c\x73\x54\x2f\x12\xce\x93\xe5\x6f\xc5\x26\x36\xf6\xe5\xd1\x89\xd9\x97\x66\x74\x8f\x39\xf1\x58\x7b\x90\x85\x94\x1f\xfc\x03\xa1\x61\x74\x41\x19\x8d\x67\xf4\x6d\x10\x07\xa5\xf9\x23\x8c\xcd\xf5\xf4\x82\xc7\xb7\xea\xbb\x72\x44\x7f\x2a\x1e\xb5\x5a\xb1\x64\x11\x46\x34\x7d\x8a\x86\x89\x18\xc9\x1b\x8a\x52\xd9\xf3\x84\x74\xf7\xfd\xc5\xbf\xd1\x19\x6e\x1e\xa7\x06\x37\xeb\xdb\x7b\xca\x1a\xc1\xf5\x3e\x9a\xe7\x34\x28\xe1\x13\x8a\x4f\xbb\xd6\xf6\x59\x9b\xea\xc0\xe9\x65\xc2\x42\xaa\x86\xde\x7b\x20\x32\x06\xfb\xba\x0a\xe9\x0f\x65\xd9\x5f\xad\x68\xc0\xd0\x8e\xd2\xf3\xf0\x83\xd9\x0e\x92\xd5\x8d\xd8\x6a\xd2\xb3\xe0\x83\x99\x4e\xc1\xc8\x48\x7d\x5d\xfc\x7d\x18\x1c\xe5\x0b\x5d\x5e\x67\xc1\x07\x33\xe5\x6e\xb2\x55\xe8\xc1\x2c\x6f\xc3\x74\x46\xa3\x28\x88\x69\xb2\x4e\x7d\xbd\xf4\x79\x6f\xe6\x9b\x97\xd9\x52\x6e\xea\x4f\xbe\x87\x73\x6f\x6b\x66\x13\x4e\xbf\x71\xaf\xc0\x71\xcd\x58\x24\x31\x4f\x89\x36\x4b\xa2\x84\xa5\x44\x13\xcf\xad\x99\xfa\x1d\xd9\x02\x71\xd6\x06\x12\x2f\x7c\x6b\x2d\x4d\x34\xcb\x56\x18\x14\xb7\x24\x82\x8c\x79\x5b\x65\x56\xd2\x26\x33\x67\xc2\xb7\x55\xe6\xac\x6d\x65\xee\xbc\xad\xb7\xcb\x8e\xc2\xa4\xf2\x0a\xc9\xda\x2a\x63\xa9\x9d\x65\x7e\x88\xeb\xea\x77\xd3\xc6\x56\xaf\xeb\x00\xff\x3b\xd8\xae\x9d\x4b\xd6\x59\x26\x73\xaa\x7b\x93\x6d\xf9\x84\x9e\xdc\x26\xf8\x2b\x5d\xd9\xe7\x4e\x44\x49\xee\xd8\x93\x14\x1c\x86\x4e\x89\x2e\x8e\x46\x69\x41\xac\xed\x47\xfc\x67\xa6\xcd\x29\xa7\xd2\x41\x4a\x30\xfb\xf2\xeb\xa7\x2b\xba\x66\x61\xca\xc3\x59\xf7\x3c\x3e\x8f\x9f\x00\xfa\x27\x9e\xb6\xbf\xe6\x89\x80\xd4\x2e\x82\x14\x2d\x7f\x2d\x0e\xbe\x86\x97\x01\x4f\x58\x37\x92\x0f\xe0\x78\xe7\xb1\x86\xff\x9e\xd0\xb8\xb3\x4e\x9f\x68\xfe\x73\xed\x09\x90\xf6\x84\x68\xb8\xf6\x01\xdf\x19\x35\x4f\x00\x3d\x24\x7a\xda\xcb\x30\x0d\x2e\x22\xaa\x05\xf1\x8d\x24\x8b\xd1\x08\x17\x3a\x96\xeb\xf8\x12\xe6\xed\xe7\xf1\x13\x55\x39\x20\x27\x4d\xd7\x4b\xaa\x1d\x70\x16\xb5\xf7\x23\xae\x2d\x69\x10\xa7\x22\x27\x40\xaa\xba\xe7\x90\x10\xa3\x35\x40\xe6\xc4\x64\xa0\x18\xd5\x00\x0b\xcc\x83\x86\xca\x1c\xfd\x74\xc2\xb4\x03\x53\x8d\x3c\xe6\x11\x8d\xb7\x63\x13\xfd\x22\x49\x22\x9d\xe8\xaf\x17\x5a\x4a\x39\xd1\xd6\xf1\x3c\xa1\xa9\xc6\xaf\xa8\x26\xbc\xee\x6a\xef\x4f\xa1\xf4\x4e\x76\x9d\xa6\xf3\xfc\xe5\xe1\x91\xc6\xe8\x32\x58\x11\x2d\x4d\x34\x7e\x15\x70\xad\x44\x93\x06\xf3\x36\x3a\xd7\xc2\xb4\x1c\xdf\x55\xd4\x4b\x9a\x7f\x8c\xd2\x53\xca\xb5\xeb\x2b\xca\xaf\x28\x43\x32\x83\x88\xab\xdd\x8d\x54\x0b\x52\x2d\xd0\x00\x37\x46\x25\x4c\x44\xcc\x41\x96\xe2\x19\x57\xb0\x19\x21\x29\x8d\xe7\x69\xe7\xfa\x2a\xe0\x8f\xa0\x25\x7b\x72\x60\x92\x85\xa4\xd7\x4a\x52\xf2\xbc\x3a\x25\xfa\x81\xf0\x7d\x95\x6a\x57\x38\x79\xcd\x89\x0d\x53\x4d\xf8\x9b\x9f\xa3\x84\x6b\x72\xad\xa6\x2b\xfe\x69\xa7\x34\x9e\x43\xef\x38\x3c\x3d\xd0\x56\x8c\x2e\xc2\x6f\x5d\x00\xc2\x52\xba\x0a\x68\x7f\x3e\xd7\x6c\xc7\xd5\x78\x82\xa8\xd7\x31\x4e\x52\xe9\x5c\xcb\x9c\xf6\x43\xed\xc3\x58\xfb\x86\x67\x24\x00\x41\x81\xbc\x6e\x57\xfb\x14\x84\x1c\xfd\x4a\x42\x76\xf5\xc2\x86\x86\xbe\x56\xb5\x20\x9e\x6b\x29\xa5\x1a\xf0\x06\xd3\x65\x56\x4d\xf5\xae\xfc\x5f\x1a\xdc\xa4\x5d\x4d\x33\xce\xae\xc2\x54\xbb\x4e\xe2\x27\x5c\xbb\x4e\xd8\x17\xed\x9a\x46\x11\x74\xd1\x55\x14\xf0\x45\xc2\x96\x29\x34\x1b\xa3\x88\xad\x8e\x45\xe1\x5f\x51\x26\x80\x71\x7f\x11\xd4\x94\xdc\xb7\x42\x4a\xd3\x64\x29\x98\xa8\x1c\xe7\xa5\x5d\x13\x1b\x73\x3d\x0f\x2f\x22\xda\xb9\xa0\x51\xd4\x49\x41\x77\x3e\xdc\xa0\x52\xdf\x82\x79\xd6\x51\xaf\x85\x7a\xc2\x98\x02\x74\xc9\x53\x40\xa6\x13\x7d\x8d\x27\xc1\x3e\x9c\x1c\x69\xc9\x02\x89\x57\xc7\xe8\x34\x00\xd0\xb0\xb4\xae\xa6\x1d\x2e\x57\xfc\x46\xad\x89\x02\xad\x71\xa2\x49\xb2\x10\x10\x85\x4e\xbe\x10\xda\x89\x0b\x6f\x7f\x22\xd1\x5b\x93\x9b\xf7\x84\x27\xaf\x17\x1a\x67\x6b\x4a\xca\x04\xa5\xc2\xbf\x1c\xd5\xf2\x17\xbd\xb4\xeb\x30\x8a\x34\xf1\x38\x84\x16\x68\x9f\xe8\x45\xe9\xf1\xd1\xae\x76\xc5\xf9\x2a\xf5\x9e\x3e\xbd\xbe\xbe\xee\x5e\xf7\xba\x09\xbb\x7c\x7a\x76\xf2\xb4\x48\x64\xfa\x14\xe4\xf4\xa5\x78\xd7\x06\x6a\x58\x4a\xd4\x18\xfd\xf7\x75\xc8\x68\x0a\xcd\xb7\x0c\xd3\x14\xdb\x8b\x25\x4b\x21\x99\x30\x45\xd2\x3e\x5d\x51\xb1\x52\xa6\x89\xb7\x99\xa0\x0f\xa4\x94\xa3\xf8\x62\x2d\x90\xf5\x82\xd4\x80\x73\xba\x5c\x61\x5a\x90\x7e\xc9\x90\x20\x5b\x0b\x25\x84\x0b\x2d\xa6\x33\x9a\xa6\x01\xbb\xe9\x42\x95\x32\x31\x4d\xb5\x65\x70\x23\x5e\xa5\xba\x92\xeb\x46\xc5\x8c\x40\x2e\x4d\x39\x20\x08\xb9\x36\x0f\xe7\x08\x2a\x0e\x54\x01\x8f\x90\xf4\x40\x94\x29\xa4\x0f\xbb\xa9\xd4\x88\xf4\x1b\xa7\x71\x8a\xf5\xbe\x0e\xf9\x15\x92\xa7\x97\xf8\xa1\x17\x0b\xbb\x0a\xbe\xd2\xe2\x37\x4f\x34\xf9\x3e\x50\x99\x89\xdd\x27\x53\xa2\xe7\x8d\xd6\x41\xfb\xe9\x61\xb9\x28\x98\x62\x3a\xbb\xbc\x30\xec\x21\xd1\xc4\x7f\x26\x0c\xc6\x88\x84\xe8\x67\x65\x81\xc0\x68\xd1\xf7\xe9\x37\x2e\xaa\x11\x27\x5a\x82\x5a\x55\x24\x06\xea\xf1\xa1\x14\x25\xb7\x40\x18\x1a\x74\x8f\x23\x4c\x27\xd9\x66\xa3\x7e\x70\x7a\xaa\x89\x1d\x73\xd9\x9f\x0a\x74\x21\xea\x0d\x9d\x49\xa4\x41\x3b\xbc\x4a\x98\x46\xbf\x05\xcb\x55\x24\x46\xfb\x35\x8b\x0c\x25\xc2\x97\x49\xd2\xbd\x8c\x9e\x06\x31\x9d\x9f\xbd\x31\x21\x35\x0a\x63\x1a\xb0\xce\x25\x0b\xe6\x21\x8d\xb9\xc1\x93\x95\x76\x81\x93\x47\xa2\x5d\x44\x20\x79\x8c\xce\xcd\x4a\x1d\xd3\xf0\xef\x7f\x64\x15\x35\xc0\xdf\xd5\x34\xe9\xd3\x3a\x05\xa1\x00\x33\xa4\xca\x6a\xf5\x40\xd7\x1f\x49\x8a\x2a\xa3\x91\xb5\xb6\xf5\x27\xf8\x0f\x82\x33\x1a\x73\xca\x14\x81\xc2\x16\x10\x03\xe8\x6f\xb7\x3d\xa4\x1e\x93\xe4\x09\x2b\x22\xbd\x4a\xd6\x11\x8c\x42\xf1\x5c\x7b\x71\xaa\x19\x4f\xce\xcf\xbf\x59\xee\x13\xa2\x05\x5f\x02\xed\xd7\x5f\xcc\xae\xa6\xbd\x07\x79\xbd\x0e\x53\x5a\xc9\x0a\x43\x6c\x31\x3b\x64\x1d\x2d\x9e\x20\x77\xb3\xd1\xb1\xb3\x0c\x56\x9d\xe4\x2b\x65\x2c\x9c\xd3\xf4\x51\x1c\x16\xf6\x2e\xb2\x55\x27\x4f\x70\xe0\x03\x6d\xb6\xa2\xb3\x70\x11\xd2\x39\x5a\x1d\xb1\x96\x88\x79\xb5\xf6\x9a\xa3\x29\xa4\xa5\xb8\x31\xa2\x05\x8c\x05\x37\x44\x0e\x86\x34\x98\x5d\x69\x2b\xb9\xab\x03\x60\x50\x91\x7c\x00\x07\x05\x39\x4b\xe6\x14\xc7\x63\x48\x92\x47\x4d\x0a\xf8\x85\x01\x56\x2b\x40\x0b\x79\x4a\xa3\x45\x57\x7b\x1d\x0b\x88\x72\xe9\x8d\xe5\x32\x3a\xa3\xe1\xd7\xb2\x05\x51\x2d\x17\x3e\xa4\xfa\x2a\x02\x36\x0a\xcf\x77\xdd\xd2\xbd\xef\x7a\x1b\xb7\xf4\xd6\x8e\x3d\x76\x74\xa2\x93\xec\xcb\xd2\x89\xde\xc9\xbe\x6c\x9d\xe8\xdd\xec\xab\xa7\x13\x0d\x72\xe3\xe7\xc0\x75\xf5\xbb\x3b\x50\x8f\x78\xf3\xa5\x93\xc4\x1d\xfa\x2d\xdc\xc2\x66\x2b\xcf\x8c\x76\xac\x4c\xe4\x3e\x49\x03\x12\x35\x0b\x8e\x33\x88\x19\x6b\x27\x2e\xc1\x40\xfb\x88\x71\x74\x26\xde\x37\xd7\xa0\x48\xa1\x0b\xc5\xe1\xd7\xce\x45\x14\xc6\x5f\x1e\x25\x37\x05\xa1\xaf\x53\x80\xe8\x44\x89\x88\x5f\xbb\xb8\x51\x26\x50\xad\xd4\xce\xec\x66\x16\x3d\x4e\x41\x4d\x6c\xda\x23\x03\xcb\x9a\x66\x82\x8b\x83\x82\x2a\x0b\x0b\x67\x30\xf8\x85\xb1\xb6\x0c\xa3\x28\x4c\xe9\x2c\x89\xe7\x29\xb6\xec\xbe\xc6\xaf\x13\x8d\x8a\x37\x8b\x94\x0c\x01\xa9\x8b\x90\xa5\x1c\x54\x0b\x3e\xd5\x83\x76\x6d\x72\xad\x45\x49\x7c\x59\xac\x89\xec\x8b\x17\x54\x4b\x62\xa2\x09\xc4\x25\xd8\x90\x17\x61\x16\x8b\x62\x85\x7f\x6c\x1c\x0c\x0c\x67\x30\x20\x9a\x25\xfe\xdf\x1d\x54\x07\x43\x31\xc8\x49\x9d\x28\x9f\x70\x94\xe4\x8a\xc2\x21\xbd\xb3\x0a\x22\xca\x39\xfd\x3d\xd4\x84\xfe\x5e\xe2\x90\x0b\x23\xca\x4c\x53\x56\xae\x2c\x0a\xd9\x8d\x1a\x65\x16\xc4\xc0\x8d\xaa\x56\x11\xbd\x1b\x06\xe8\x5c\xc3\x68\x30\x7d\x6b\xd4\x3e\xc0\x59\xd0\x0d\x38\xad\x9c\xa3\x98\xd1\x6d\x55\x51\xa0\xc5\xeb\x25\x65\xe1\x0c\x27\x74\xdf\xb4\x30\x96\x53\x0d\xc1\xbb\x22\xc1\x1f\xa1\x8e\x1b\x48\x8e\x96\x49\xca\x71\x56\x3d\x4b\x53\x99\x57\x9c\x92\xd5\x34\xa1\x3a\xe3\x59\xb4\x9e\xd3\x54\xfb\xa7\x93\x9f\x5f\x10\xed\x9f\x4e\x4e\x7e\xfe\xf9\xc5\x0b\xa2\x81\x35\xd3\xed\x76\x4d\x0c\x05\x32\x18\xe0\xcc\xe8\x46\xe2\x89\x83\x25\xce\x56\x61\x0a\xca\x60\x66\x90\x26\xda\x2a\x60\x5c\x35\x6c\xca\x93\xd9\x17\xed\xaf\xb6\x0d\x28\xba\xfc\x1b\xd7\x16\x61\x24\x48\xfe\xd7\x64\x8d\xf4\xae\x53\xaa\x89\x15\x06\xe0\x8e\x20\xfd\x46\xa0\x2c\x36\x8f\x50\x80\xb9\x90\x42\xa7\xbd\x10\x6f\xa0\x5e\xd2\x79\x56\x95\x14\xf0\x2d\xd6\x91\x98\xad\x7c\x09\x57\x2b\xb0\x60\x02\x2d\x5d\x06\x51\x04\xfc\xbc\xa0\x28\x75\x61\x3c\x0f\x67\x34\xcd\xb5\x4c\xa6\x60\x1b\xdb\x5b\x8a\xe4\xea\x06\x74\x5f\x8a\xab\x27\x0f\x4b\x62\xbe\x96\x56\xd0\x7c\xfb\x6b\x9e\x2c\x03\x1e\xce\x82\x28\x02\x2e\xae\x6e\xb4\x65\x02\x3c\x48\xd5\x75\x35\x35\xa1\x9c\xa9\x9b\xaf\x58\xf8\x3a\xa5\x1d\xc9\x8b\x8e\xd0\x90\x1d\xc8\xfc\x28\x2a\xea\xda\x8f\x27\xc8\xff\x22\xa3\xa5\xfa\x45\xca\x2e\xe8\x55\xf0\x35\x4c\xd0\xe8\xc0\x95\xfa\x4e\x46\x65\x07\x8f\x9c\x3e\x9e\x86\xfa\x18\x80\xca\x9f\x06\x62\x1a\x9c\x73\x41\x1c\x69\x05\xfc\x61\x7c\x29\xf8\xcf\x59\xd4\x59\x45\xeb\xb4\xb3\x0c\xe3\x75\xda\xf9\x3b\x65\x49\xe7\xef\x49\xb2\x7c\x8c\xd9\x63\xd5\xcd\x9e\x03\xc0\x7b\x1c\xad\xd3\xa7\x78\xd9\xed\xe9\xdf\x28\x4b\xb4\x99\x5a\x3a\x80\x02\xba\xe7\xf1\xeb\x85\xb6\x08\xa2\x54\x81\xa3\x03\xe6\xfb\x33\x49\x48\x4c\x46\x33\x28\xd5\x7e\xfd\x5c\x2c\x0d\xb3\xcc\xc1\xf0\xe4\x57\xa5\x3a\xce\xb6\x64\x6b\x93\x31\x87\xcb\x61\x07\xc0\xb7\x90\xa6\x30\xc1\x12\x75\x44\x33\xec\xd7\x03\x60\xf6\x55\x22\x66\x5e\x58\x9d\xee\x39\x5e\x04\x6e\x63\x7d\xda\x07\x8a\xce\x12\xa0\xc0\x90\x63\x14\x19\x33\x6a\xbf\x76\xf0\x2e\xef\x6f\x20\xf7\xa3\x86\x18\x6a\xe4\x7e\x7c\x80\xdc\x8f\x8a\xdc\x8f\x75\x72\x73\x8c\x39\xb9\x34\x48\x79\x27\x48\xc3\x20\xee\x04\xcb\x8b\xf0\x72\x9d\xac\xd3\x4e\x90\x76\xf8\x75\xd2\x11\x2f\xeb\xfe\xf6\x25\xb1\xc3\x20\xe5\xda\x3e\x94\xa1\xed\xab\x32\x72\x33\x2d\x15\xb3\x51\x18\xcc\x45\x81\x1a\xde\x0b\x16\xd4\xc5\xc1\x45\x44\x3b\xb8\xc8\xd4\xc9\x1e\x51\xfa\x11\x7a\xce\xd8\x9a\x02\x47\x04\x46\xb1\x6c\xa5\x64\xb3\x40\x0b\x11\xac\x01\xc8\xf0\x32\x4e\xc4\xd2\xd0\x12\x95\xf3\x27\xfa\x24\x8a\x34\x46\x41\x19\x0a\x3d\x0c\x3c\xba\xb8\xe1\x54\xfb\x4a\x99\x98\x7b\x0b\x15\x2f\xde\x5a\xa8\x60\xd6\x18\xbd\x0c\xd8\x3c\xa2\xa9\x04\x13\x6b\x0d\x5c\x49\xb9\xac\xea\x45\x12\x6d\xb1\x4e\x54\x1b\xd0\x39\x0b\x53\x1e\x70\xaa\x6a\x1a\x2e\xb4\xeb\x6c\x68\x00\x75\x06\x78\xb5\x6b\xbc\x3f\xad\x2d\x92\x98\x57\x26\xda\x38\x57\x49\xa2\xf9\xd3\x0b\xb1\xcc\x9b\xcd\xb4\xbb\x9a\xf6\x4a\x71\x44\xa9\x45\xe1\x55\xbf\x88\xad\xab\x69\xef\xd6\x51\x84\x8b\x23\xd9\x8a\x78\xb5\x5a\x20\x56\x02\xfd\xe3\x0c\x54\xab\xdc\x88\xf5\xaa\x09\x92\xa5\x09\x63\xb8\x1d\x7b\xa0\x81\xb2\xd4\xec\x61\xd9\x2c\x30\xb1\xd2\x30\x52\xd7\x2b\xde\x50\xe3\x44\xcd\xe4\x4a\x15\x79\xbc\x81\x7d\x1f\xfd\x45\x71\x12\xf6\x6e\x23\xe7\xa5\x2c\x86\xc0\xe8\x02\x31\xd9\x70\x88\x8b\x77\xdb\xcc\x75\x1b\x47\x9d\x53\xb0\x79\x03\x4d\xbe\x8e\xae\x8c\xc0\x6c\x05\x2f\xb3\x07\x50\x9b\x5c\xb3\x10\x94\x48\xe3\x80\x5c\x23\x0b\x81\x7f\xd4\x2a\x88\x22\xb9\x42\x8d\xe5\xf2\x44\x14\xad\x89\xa7\xbf\xa3\x1b\x45\x42\x7a\x93\x72\xba\x6c\xa6\x64\x4e\x67\xb6\xf3\xe8\x39\x59\xae\x35\x4e\x0a\xcd\x03\x54\x3c\x49\x8b\xeb\x80\xc2\xd0\x2a\x4d\x8f\xb0\x09\xa1\x27\xae\xc1\xea\x02\x3b\xeb\xe5\xe1\x81\x76\xcc\xc2\xaf\x30\x8d\x79\x0b\xd3\x66\xdb\x01\x0a\x69\xfc\x35\x64\x49\x0c\x73\x97\x47\x92\xf7\xfd\xec\xf0\xe4\xad\xa7\xe3\x0a\x7a\xc7\x19\x0c\xc5\x0c\xe2\xae\x3c\x85\x52\x96\x4b\xa1\x18\xed\x6b\xc0\x42\xe0\x4a\x4a\xca\x8b\x01\xc0\x2f\xe8\xc4\x9d\x45\xb0\x0c\xa3\x2d\xc6\xd8\x82\x70\x3f\xd1\x5f\xd2\x7f\x0b\x3e\xae\xb5\xd3\x20\x4e\xb5\xb7\x49\x9c\xc0\x24\xf9\x10\x14\x62\x12\xab\xef\x57\x8c\x52\x08\x12\x4d\x7f\x4b\xe3\x08\x41\xce\xa4\x74\xe9\x44\x5b\x26\x71\x82\x6b\x24\x4f\x0a\x6b\x44\x72\x15\x4a\xea\x2a\x24\x2c\xdb\x17\xc8\x24\x13\xba\x71\x4e\xfe\xa3\xd7\xc7\xec\x01\xd1\xc3\x98\x57\x58\x86\x25\x02\x2e\xe8\x08\xab\xf0\x1b\x8d\xd2\x42\x19\xcb\x44\x58\x26\x8f\x9b\xfc\x05\x31\x0f\x83\x28\x0c\x52\x3a\xaf\x2e\x84\x95\xd1\x66\x93\x1d\x59\xa4\x7a\x2e\xfe\x47\x57\x5e\x9d\xbe\x45\x34\xf5\x53\x9d\x6f\xe6\xe8\x7f\x60\xf1\xf5\x2a\x59\xd2\xce\x17\x7a\x93\x76\xc4\xc9\x96\xdf\xb8\xce\x06\xe8\x9e\xd2\x6c\x5f\x40\x0e\x9f\xa5\xd6\xce\xbc\x89\x88\x9d\x20\x30\x77\x2a\xd9\xd0\x44\x82\x3c\x1f\xcf\xb4\x2f\xf4\x66\x86\xd7\xf8\x70\x26\x2a\x47\x75\xd0\x64\x59\x16\x61\x28\x7d\x3c\xc3\xd5\xac\xb4\x09\xa9\x28\x11\xeb\xfb\x85\xde\xa8\xe7\x84\x1e\xb9\x13\x9d\xad\xc9\xed\x6b\xcb\x60\x05\x63\x3f\x2e\x05\xca\xcd\x22\xd0\x23\xf9\x45\x28\xa0\xf6\x4d\x21\x35\x9b\x88\x6a\x60\xd8\xc3\x0c\x7b\x09\xe3\x80\x3a\x0f\x0a\x39\x53\x6d\x91\x80\xa6\xa4\x73\xed\xe2\x46\x13\x9b\x8c\x50\x21\x89\x49\xd4\x4d\x4e\x82\xe7\x74\x16\xc2\xc8\x9d\x30\xed\x8a\x7e\x0b\xd4\xa7\x98\x02\xa6\x04\x67\xf0\x62\x2f\x30\x3b\x3c\x26\xd1\x48\xf2\x1a\x66\xd3\x6a\x45\x1c\x26\xaa\xc8\xfe\x24\xd3\x96\x44\x2e\x09\xc8\xcd\xb2\x12\xd2\x57\x58\xd6\x02\x8c\x06\xfa\x6d\x15\x05\x31\x6e\x38\xa8\x39\xf2\x02\x2c\x0c\x4e\x70\xbb\xaf\xb2\x8a\x7e\xf4\xe9\x24\x9e\x8b\xb5\xbd\x53\x5c\xd6\xd3\x8a\x4d\x73\x1e\x7f\x3f\x8f\x35\x0d\x6d\xe8\xce\x7e\xc4\x3b\x6f\x74\x4f\xd3\x2b\x27\xaa\x74\x92\xc3\x88\x49\xcb\x11\x40\xe1\xd3\xe5\x85\xa4\x5f\x20\xf2\xfc\xc9\x2f\x87\x47\x47\xef\xcf\xcf\xe3\xf3\x27\xfa\x79\x8c\x2b\x7e\xcb\xe0\x5b\x47\xd4\xba\xa3\x1a\xea\x61\xe9\xcf\xce\x80\xd8\x34\x53\x3b\x6f\x83\x6f\x9a\x38\xeb\x0d\x15\x0f\xb4\x97\x07\xa7\x44\x7b\x7f\x7a\x40\xb4\xe3\xb7\xc8\xbc\xfd\xe3\xd3\x5c\x52\x2e\x28\x74\x58\x30\x1e\x2e\xc3\xaf\x54\x5b\xaf\x50\x64\x73\x33\x55\x34\x3b\xf4\x4d\x7c\xa6\x45\x74\xce\x80\xd1\xce\x02\x42\xbf\xb1\x7f\xce\x92\xf8\x2b\x65\x5c\x43\xd4\x42\xee\x44\x4b\x87\x4c\x7b\x05\x22\x43\xff\x7d\x1d\x7e\x0d\x22\x0a\xc6\x60\x3e\x31\x8c\x68\x79\xab\x56\xec\x30\xab\xdd\xdd\x54\x52\xcb\x03\xb9\x6a\x2f\x37\xaf\x7f\x68\xee\x5a\xdd\x84\xcf\xb6\xdc\x45\x3f\x0f\xb4\x88\x06\x73\xbc\xfb\x83\x85\xc8\x55\x4e\x41\x41\xb2\x4e\x69\x47\x9c\x79\x98\x45\xe1\xec\xcb\xb6\xd3\xb7\x26\xc3\xe5\x09\x46\x80\x05\x2a\xec\x52\xb1\x94\x71\xb1\xe6\x3c\x89\x35\xc4\x9e\xe6\x0b\x6a\xf9\xbe\x23\x74\x92\xaf\x62\xad\x73\x4e\x57\x34\x86\xce\xa2\xba\x83\x24\x10\x89\xea\x08\x4c\x7a\x36\x79\x00\x5c\xef\x12\x4e\x3d\xb1\xdc\x83\x8a\x50\xb2\x19\x4f\x77\xb4\x24\x1d\x10\x47\xe7\xda\x32\x9c\x81\xa4\x30\x61\x44\xe1\x06\x5f\x03\xf6\x47\xd4\xbc\x70\xdc\xc6\x22\x36\x71\x48\x8f\xf4\xc9\x80\x0c\xa7\x44\x7f\x8b\x55\x47\xc4\x92\x01\x28\xd5\x71\x7d\xaa\xa0\x96\xea\xf3\x28\xa2\x5d\xe3\x84\x4b\x4d\x3a\x96\xe1\x1c\xaa\x54\xe2\xa6\xd8\x85\x8b\x3b\x7f\xb5\xed\xc2\x96\xbe\x21\x74\x26\x34\x75\x76\x5e\x04\x77\x66\x62\xed\xaf\xb6\x5d\xc5\xdb\xd0\x48\x46\x1a\xa2\x66\x86\xa9\x4e\xc0\xa1\xaf\xc9\x05\xa0\xa5\xe0\x83\x32\xde\x45\xc5\xbe\x86\xc1\x26\x02\x4d\xac\x97\xa5\xf9\xbe\x68\x0a\x63\xc5\xc2\x65\xc0\x6e\x4c\x99\xde\x3d\x8f\x6d\x48\x94\x59\x8d\x60\xfd\x2d\x8c\xc2\x32\x80\x03\x00\x82\x48\x43\xac\x52\x97\xd3\x1f\x25\x48\xe7\x9b\x44\xfd\xfc\xf7\x92\x27\xe8\x4e\xd7\x09\x9b\x77\xf0\xea\x76\x07\x6f\xa7\x74\x20\xdf\x63\x44\x4a\x9f\xfc\x7a\x7e\x9e\x9e\x9f\x4f\xce\xcf\xa7\x86\xf9\xfd\xee\xd9\xf3\x73\xfd\xc9\xf9\xf9\xaf\x3b\xff\xf2\x4f\xff\xfc\xa7\xd6\x9f\xc9\xae\xf7\x5f\xa7\x05\x3b\xea\xc9\x09\xbd\x5c\x47\x01\x83\x91\x84\xd1\x6c\x47\xfb\x2a\x88\xb8\xb8\x1e\x23\xc7\x27\xe0\x80\x68\x87\x94\x07\x8c\x9b\x42\xe9\x66\xcb\x6b\xb2\xe6\x30\xb7\x85\xd9\x85\x5c\x3b\x0d\x0a\x3b\x4f\xb3\x28\x48\x51\xef\x31\x8a\x0b\xd9\x72\x18\x9c\x15\xa6\xf9\xdd\xf3\xf8\x13\xd5\x02\x9c\xbb\xe8\xff\xd0\x51\x45\xeb\x5d\xbd\xb0\x71\x02\xc6\xf7\x2a\xe0\x57\xa9\xb6\xc0\x3d\xff\x18\xe6\x32\x48\x90\x9a\x91\x26\x29\xc5\x7e\x59\xe3\xe3\x96\x93\xe7\xc7\x30\xf2\x1f\xdd\x12\x2b\xf5\x47\xb0\x52\x0a\x25\x8d\xe7\x7f\x0c\x27\x1b\x45\x49\x74\x95\xdf\x83\x07\xd3\x3f\x3f\x5c\x6f\x71\xb9\x2a\x88\xa2\xf2\x1e\x68\xb6\x51\x22\xa8\xf9\xbd\x04\xe7\x3c\xfe\x90\x8a\x0d\x11\xfa\x6d\xa5\x76\x39\xf3\xd5\xdf\x74\xcd\xd0\x58\x0f\xe5\x46\x16\xca\x0c\xce\x19\x92\x30\x16\x03\xd9\x2a\xb8\xfc\x3d\x8d\x72\x40\xa7\xad\x57\x4f\xe7\xc9\x75\xfc\x48\xc3\xbc\x9e\x75\x2b\xe3\xbc\x94\x6d\xa3\x81\x5e\x86\xca\x8d\x74\x7d\x15\xa4\x69\x27\x88\x78\x47\x98\xb4\x8f\x3d\x34\x5a\x5c\x46\x2b\x9a\x13\xf9\x7a\x0d\x14\x80\x67\x0f\xed\x6e\x77\xac\x3a\x82\x34\x6e\x72\x65\x2c\x8f\xd2\xdd\x88\xa5\x13\xb6\x8e\x63\x68\x26\x71\x98\x28\x8c\xb5\x20\x33\x87\x78\x70\x91\x1f\x58\xbc\x49\xd6\xda\x1c\xcf\xaa\xe1\xbe\xaf\x18\xbb\x9e\xa4\xda\xb9\x2e\xfc\xfc\x62\x71\xc1\xc5\xb9\xae\x29\xef\x69\x5a\x30\x9b\xd1\x88\xb2\x80\x27\x0c\x78\x89\xe7\x99\xe2\x84\x67\x45\x62\x61\x3c\xb8\xd0\x42\xfe\x24\xd5\x2e\x28\xe7\x62\x73\x41\xb5\x45\x4a\x8b\xa6\x9c\x58\x68\x41\x72\x60\xe6\x20\x4c\xfd\x75\x8a\xde\x46\xb4\xaf\xe1\x12\xc6\x6e\xba\x0c\x66\x42\x56\x33\x29\xc9\xd8\x81\xcd\x7c\x41\xd5\x31\x42\xd0\x79\x45\xf6\x68\x05\xbb\xb0\x96\x27\x85\x51\xaa\x40\x86\x80\xc6\x56\x29\x18\x05\xf9\x21\xdb\xec\x6c\x9e\x1c\xf6\x51\x3a\xe4\x30\x8d\xb7\x0c\x33\x71\xc0\x05\xf9\x3f\x54\x1e\x70\xb6\xf0\x3f\x05\xa2\xbc\x79\xf4\x58\x89\xa8\x67\xfa\xe3\x44\x02\x67\x1c\x7f\xa8\x48\xbc\x85\x12\xfe\xa7\x48\x64\x22\x91\xf3\xe3\x11\x22\x51\xcf\xf4\x07\x8b\xc4\xd7\xdf\x3e\xf3\x44\x3c\x1f\xb5\x4b\xca\x53\x94\x04\x31\x9e\x23\xad\x50\x96\x3c\xce\xd4\xa1\xea\x0a\xc8\xf6\xeb\x06\xfa\x9a\x2f\x3a\xae\x4e\x26\x2a\xa0\xb3\xe0\x5a\xdc\x5c\x10\x73\x6c\x9a\x3f\xe4\x2d\xb2\xe0\xfc\x68\x1e\xf0\x20\x3f\x45\x95\x1d\x80\x45\x8a\xe4\x31\x89\x70\x2e\xb6\xfa\x53\x3c\xb0\xf0\x04\xd1\x3f\x41\x56\x3d\x61\xc1\xb5\x38\xa2\x26\x46\xd9\x4e\x12\xa3\x79\xc1\x59\xf2\x65\x0b\x23\x2c\xbf\x7d\xd2\xb4\xc7\x2c\x50\x66\x1d\x04\x8f\x3f\xe2\xc6\x4d\x7c\xa3\x65\x85\x54\x0a\x4f\xd6\x7c\xb5\xde\xc2\x04\x2e\x94\xdc\x60\xd7\x6c\x2a\x39\xb3\x68\x44\x31\x85\xb2\x2f\x02\xd6\x91\x27\x72\x7e\xb0\xda\x67\x57\xb8\x4f\x88\xa7\x1c\x0a\x16\xd3\x52\xad\xd9\xc8\x3a\x5e\x5f\x51\x1a\x75\x96\xc1\x0d\xae\x88\x74\x02\xc6\x92\xeb\xce\x76\xeb\x37\x8d\x75\xc6\xee\x2e\x76\x22\xe4\x61\x7f\xca\xe4\xa4\x36\x9d\x31\x4a\x63\xed\x62\xbd\x58\x50\x26\x4e\xb1\xbc\x3c\x3c\x38\x78\xf3\x56\x33\xf6\xf3\xf7\x1b\x34\xf1\x80\x83\x86\xee\xbe\xb2\xf9\x25\x25\x72\xa2\x8b\xf4\x2a\x86\xe2\x39\x7d\x39\x65\xa4\xcb\x75\x84\x67\xbb\xa1\x06\x62\xb1\x07\x35\x02\x57\x4a\x83\xd3\xe5\x2a\x61\x01\x0b\xa3\x1b\x6d\x2e\xee\xb9\xa0\x36\xb8\x4a\xa2\xdc\xc4\x45\x73\xef\x0b\xbd\xc9\xf5\x66\x61\xd2\x34\x4b\x96\x34\xd5\xd6\x2b\xa1\x42\x45\x25\xc1\x34\x64\xa9\x66\x44\x34\x4d\x4d\x50\x46\x4c\xae\xfa\x2c\x03\x61\x5d\xa6\x9a\x5a\xe4\xa6\xf3\x90\xe3\x8e\xe1\xd7\xf0\x69\x1c\xc4\x09\x82\x0b\x2c\x82\x35\x4f\xf9\x72\xfd\xad\xa1\x71\x92\xaf\xb4\xb3\x5c\x47\x3c\x5c\x45\xe1\x36\x23\x48\xde\x30\x76\x71\xc3\x21\x47\x91\xed\x6c\xe0\x76\x83\x36\xa7\x11\x0f\x40\x9f\x0a\xe6\x4a\xae\xce\x02\x54\xb3\x52\x5f\x4a\x8e\x23\x44\x17\xcc\x29\xdc\x48\x4f\xae\xb5\x45\x90\x0a\x75\x80\x46\x72\xd1\x38\x46\x81\xfa\x43\x14\x4f\x4d\xdf\x28\x3d\x9d\xe9\x3d\xd5\xb3\x7e\xa8\xfc\x30\x4d\x3a\x8e\xe5\x38\x40\x42\x1e\xce\xa8\xc1\xbf\x9d\x28\x99\x7d\xa1\x73\x28\xab\xb8\x99\x93\xf5\xe8\x8c\x46\xe3\xe5\xfb\x83\x53\xb1\x30\xf3\xfa\xf4\x3d\xe2\x92\x87\x02\x0a\x67\x12\x70\xa5\x9e\xb3\x20\x4e\x23\x79\x9b\xc0\x88\xc2\x2f\x54\xbb\x64\xc1\xea\x2a\x9c\xa5\x90\x9e\x02\x92\x0f\x67\xaf\x3a\xae\x12\xdf\x54\x4b\xd7\xab\x55\xc2\xd4\x0d\x96\x24\x55\x47\xe7\xa8\x26\xc8\x13\x7b\x70\xb1\xba\x42\x55\x62\xde\x2c\x88\xcb\x07\xb8\xb4\x00\x07\x69\x1e\x2e\xe5\x22\x53\x56\x17\xb1\x80\x99\xdf\x37\x51\x67\xc7\xd4\xf9\x62\x1e\xce\xbe\x88\xc5\x04\x41\xdf\x3a\xc6\x63\x07\x60\x3c\x88\x8d\x62\x18\x18\xbf\x80\xd9\x41\xe3\x39\xc5\xe5\x7b\x84\x8e\xe8\x65\x30\xbb\xd1\x0a\xaf\xb7\x48\xc9\xc1\x45\x72\xe1\x3c\xf5\xf1\x27\x5b\x8a\x1b\xcd\xd0\x9d\xdb\x9a\x78\x31\xac\xe9\x84\x0b\xaf\x1f\x6f\x91\x27\xbd\x58\x67\x96\x3e\xee\xa8\xa3\x5e\xbd\x28\x83\x77\x27\x52\x7e\x13\xd1\xf4\x8a\x8a\x6b\x1e\x6a\x7b\xa5\xba\xe7\x9d\xf9\xbc\x2f\x96\xde\x01\xb5\xf1\x68\x12\xb0\x9b\x47\x61\x4c\x3b\xf9\xbe\xdf\x3a\x85\x11\xe7\xe0\xf4\x54\x68\x22\x3c\x98\xc7\x6f\x22\xa5\xf6\x32\xa7\xd8\xfa\xb4\xf9\x5a\x72\xe6\x4c\xc5\x97\x17\xa5\xc5\x45\x1a\xa3\xe9\xa2\x76\x06\xdb\x78\xcf\xbb\x3b\x4b\xe2\x94\xb3\xf5\x8c\x27\xac\xe9\x72\x36\xe4\x59\x5f\x9c\xae\x2f\x6a\x6e\x0c\x93\x8b\x94\xb2\xaf\x94\xa5\x9f\xfd\xef\xc2\xa1\x09\xc2\x75\x83\xf9\xfc\x85\x3c\x23\x57\xba\x44\x2e\xee\x7f\xc7\xf4\x5a\x53\xa0\xb9\xab\x2d\xe9\xa8\x50\x20\xc8\x09\xa6\x13\x36\xf5\xeb\xf1\x13\x36\x95\x77\xbb\xcd\x42\xb9\x05\x07\x33\xeb\x8b\x74\xc6\xc2\x8b\xaa\xf3\x6b\xd9\xcc\x25\xda\x6f\x6f\x8d\x4a\xcc\x84\x4e\xfd\xc9\x54\xfa\x87\x29\x45\x77\x57\xeb\xf4\x6a\x53\xa1\xeb\x78\x53\xb1\x05\xff\x34\x25\x74\xe2\x9d\x14\xe1\x46\x46\x7f\x1d\x7f\x45\x43\x2c\x5d\x63\x83\xa2\x33\x9f\x5d\xe5\xc0\x55\x39\x9d\xe1\xc2\x6f\xeb\x33\x4b\x66\x7a\x97\x70\x2d\x2b\x75\x2e\xf2\xb0\x6e\x0a\xbd\x97\x1a\xa1\xf2\xbf\x53\xa5\x74\xb5\xbe\x88\xc2\xf4\xaa\x44\x25\x61\x85\x27\x8e\x42\x68\x2e\xfa\x2c\x29\xf8\x83\x2b\xbc\x29\x10\x12\x8b\xd0\xb6\x6d\x92\x64\x42\xa7\xc0\x0d\xe1\x67\xbb\xa1\x7e\x49\xab\x65\x24\xfe\x64\x0a\x32\x36\x0b\xb8\x91\x98\x26\x61\x10\xb7\x97\x08\x56\x32\xd3\x4b\xfc\x09\x9b\x9a\x24\xa9\x15\x61\x99\x1b\xdc\x16\x5c\xcf\x74\x22\x7d\x2c\x9f\x24\xd7\x07\xa8\x58\xc4\xe7\x69\xf8\x77\x9a\x7d\x9c\xd1\x6f\x7c\x3f\xdb\xb2\x46\x27\x07\xa7\x38\xaa\xd7\x5d\x1a\xc1\x24\x61\x9f\xb1\xe0\xc6\x9f\x4c\xa5\x5b\x20\x3c\x88\x86\x8e\xce\x3f\xfb\xf4\xf6\xd6\x95\x2e\x89\x79\x09\xa9\x14\xe6\x72\x49\xea\xe9\x0c\xa5\x41\xcc\xa2\xbf\xea\x63\x79\xaf\x45\xe6\x14\xf4\x1b\x50\xd9\x22\xd4\x49\x72\xfd\x2e\x99\xd3\xcf\xe8\xf7\xb9\x98\xd0\x1c\xfb\x7e\xb1\x48\x29\x2f\xc6\x5f\x27\x6c\xfe\x82\xd1\xe0\xcb\xdb\x80\xcf\xae\x8e\xe8\x82\x6f\x4c\x3c\xc1\x67\x36\x36\xa5\xbe\xc5\xf5\xcd\xcc\xff\xb4\x60\x60\x41\x94\x2e\x29\x3a\xec\x6f\x70\x64\x29\x2a\x88\xde\xfc\x6b\x1c\x25\x65\xae\x4b\x31\x33\x37\x95\x20\x5e\xfd\xd8\xe4\x2c\xb3\x8a\x66\x13\x16\x7c\x58\x64\xa3\xc7\xcd\x02\x75\x8d\x08\x52\xca\x0f\x72\x98\xba\x08\x95\x05\xa6\xa9\xc9\x25\xc8\x73\x5f\x3d\xfe\x07\x28\x4b\x10\x46\x53\x2e\x96\x5c\x13\xda\xb1\x9b\x99\x83\xe3\xf2\x49\x72\xbd\xa9\x5a\x2a\x3d\x35\x6c\x53\x3a\xfa\xda\x88\x23\xdd\xe8\x60\x3e\xe7\xb0\xd4\x2c\x16\xa1\xcd\xf4\xc8\xfb\xbe\x25\x8a\x6a\x9d\x2c\xc7\xb2\x05\x9e\x06\x37\xf6\x39\x22\x09\x86\xaf\xcd\x49\xf7\x73\x59\xe2\x26\xd4\xab\x64\x75\x0f\xc3\x44\xea\x7d\xec\x92\x10\xdb\x33\xab\x51\x48\x3b\x74\x23\x7d\xeb\xf4\xea\x01\xfe\xa1\xea\xbc\x3f\x7b\x99\x3e\x11\xfd\x28\x36\x09\x5b\xaf\x4c\x48\xe6\xb4\xbd\x56\x47\x4a\x2c\xc2\x1f\x40\x94\x56\x1f\xd4\xcb\xdc\x6c\x5a\xbb\xec\x19\x57\x9e\x33\x59\xbb\x6d\x6e\x28\xa4\xcd\xa0\x18\x18\x2e\x1a\x4b\x62\x14\x26\x66\x55\xde\xdd\xdb\x36\x94\x6c\x6e\xe8\x0c\x5d\x95\xf0\x07\x30\x6e\xe4\x03\x8e\xef\x01\xa7\xe5\x4e\x5f\x33\xab\x2a\xfd\x1f\x88\xf8\x3d\x07\x88\x46\xe2\xf0\x7c\xcc\x81\x42\xbd\x81\x24\x55\xa8\x7c\x73\xeb\xec\xed\x51\xf6\x5a\x41\x05\x40\xb0\x2e\x1b\x12\x61\xf8\x8e\xc5\x7d\xa5\x45\x94\x5c\xeb\x66\x13\x6d\xd6\x3d\x3a\x73\x43\xa2\x42\xe8\xcb\xf7\x42\xe8\xae\xf4\x7b\x59\x1e\xa5\xbb\x61\x2a\x0f\x13\x1a\xe6\x9e\xae\x7b\x61\x77\x81\xe3\xc1\x55\xc8\x29\x1e\x3b\xac\x0f\x50\xca\x59\x51\x23\xb6\x18\x9f\x87\xd8\xbd\x27\xcd\xdf\xb1\x9b\xcc\x85\x6e\x7a\x13\xcf\x0e\xf0\x94\x72\xd9\xf3\x7f\x05\x4c\xd8\xf2\x07\x49\xcc\x83\x30\xa6\xcc\xa0\xd2\xd7\x6c\x85\xcb\xc1\x6a\x45\xe3\xf9\xc1\x55\x18\xe1\xf3\x71\x35\x29\x60\x8d\x34\x28\x12\xf9\x83\x14\x36\x4b\x4a\xb2\x5c\x86\xfc\x28\x8c\xe9\x7b\xc5\xfd\x07\xa4\x25\xa5\x7c\xa3\x24\xa8\x27\x4b\x1a\x87\xdb\x0d\xdd\xa4\xf4\x84\x4c\xcd\x86\xf8\x4e\x9f\xfb\x8d\x29\x7b\x06\x4c\x74\x92\x88\x2a\x5f\x8d\x27\xc9\xb5\x96\xac\xf1\x64\xc4\x05\xba\x31\x10\xfe\x33\x09\x6d\xce\xdf\xb1\x4d\x8f\x3e\xb3\x5a\xad\xed\xf1\x40\x9f\x95\xd4\x14\x85\xab\x46\x89\x30\x2c\xea\x48\xc0\x74\xac\x67\x07\x42\x78\x13\x21\xf7\xa2\xb1\x1a\xcd\xd0\x5a\x17\x62\x95\xca\x4f\xe8\x94\xc0\x04\x04\xaf\x54\xa2\xa8\xed\x86\xb7\xb7\x06\x44\x25\xd7\x31\x65\xea\xe1\x33\x29\xb3\x60\x09\x43\xab\x1b\xba\x6e\x12\x56\x92\xd0\xd0\x14\x22\x9f\xfa\x16\x4e\xfb\x98\x72\xa9\x59\x92\x96\xbd\x8c\x61\x4d\x7a\xa0\x53\xd7\x1b\xad\x96\x11\xfa\x55\xd1\x27\xe9\xe3\x90\x98\x5e\x93\x6e\x65\x8d\x1c\x43\x7d\x0c\x32\xb8\x1b\xee\x8a\xa9\x5d\xec\xf3\x4e\x4a\x02\xbf\x3a\x11\xe8\xc6\xc9\x9c\xa2\xd5\x69\x84\xc2\xd5\x6b\xd8\x8d\xe9\x37\x7e\x1a\x5e\xc0\x44\xff\xf6\x36\x78\x1e\x97\x5c\x26\x17\x3b\x6f\x48\xbe\x26\xe1\xdc\x68\x52\xe2\xe6\x6e\xda\xf6\x03\x12\xfa\x25\x74\xe2\x15\x09\x4d\xc9\xc4\x75\xc0\x62\x43\xdf\xcf\xcf\xaa\xe3\xad\x6d\xb1\x92\xab\x2e\xd7\x6b\x49\xac\x51\xe1\xd4\x40\xf4\x3f\x7d\x43\x67\xbc\x89\x67\xd9\xc3\x71\x07\x01\xa3\x15\xfb\x97\xdd\x7c\xa7\xd9\x6b\x72\x46\xad\x31\x1a\xf8\x7d\x37\x43\xf7\xf6\xd4\x14\x0b\x07\xf5\x12\x57\x51\xc8\x05\x23\x9a\xa6\xd2\x30\x60\x25\x31\x45\x49\xdb\xb1\x4d\x92\xfa\x14\x15\x99\xf4\x87\xb7\x5b\xfa\x6a\x6e\x97\x53\xf9\xda\x1e\x1a\x2e\x84\x95\x32\x84\xdd\xeb\x99\xf2\x04\x9b\xd6\x92\x5b\x2d\xf4\x26\x4c\x63\x24\x50\xda\x37\x2f\xf0\x68\xa6\xc1\x08\x2d\xb6\x89\x49\x4a\x94\xdc\xde\x96\x72\x8a\x51\x52\xf4\x8e\x0d\x56\xd8\x32\xb8\xb9\xa0\x07\x51\xb8\x3a\x58\x33\xc8\x57\x19\x9c\x85\xab\xe7\x7b\xe4\xae\x41\xac\x85\xf3\xf0\x67\x75\xbd\x62\xde\x37\x67\xa9\x41\x2b\xaf\xba\xdb\x4f\x62\x9a\x14\xd9\x03\x3a\xa9\xf8\x00\x1d\xbf\xa7\x4b\xef\xfe\x1e\xa4\x6c\xcb\x48\xc1\xc5\x06\xa9\x7e\x46\x3b\xb6\x62\x4b\x01\x74\x6b\x59\xac\x75\x1c\xab\xa1\x90\xb6\x6d\x16\x3d\xd4\x37\x34\x30\xa9\xeb\xc3\xa2\x4c\x82\xda\x62\x25\xd9\x0b\xcd\x87\xb2\xf0\x67\xf5\x41\xec\xb1\x2c\x2f\xe9\xd8\xa6\xb6\x6e\xd6\x04\xa2\x7b\x55\xbd\xff\x67\xab\x89\x35\x9e\x31\x9f\x97\x54\xc1\x8f\x98\xa7\x72\x9c\x12\x6a\x80\x8b\x17\x49\x2b\x46\x58\x45\x00\xdb\xbe\xf0\x42\x1d\xfb\xf5\x16\xbb\x7f\x64\xe0\x66\x27\x86\x1e\x19\x3c\xb3\x44\x9d\x22\xbf\x6e\x9f\x76\x02\x33\x7b\xf5\xa2\x62\xb0\xad\xe3\x39\x65\x40\xff\xed\x6d\xa3\x3d\xc7\x59\xf8\x85\xf2\x2b\x96\xac\x2f\xaf\x9a\x41\x72\xdf\x2b\xcd\xe9\xd7\x33\xe0\x9a\x7a\xe1\xbd\x92\x18\xa4\xb3\x30\x14\xe9\xe2\x85\x9e\x26\x20\x1e\x46\xf4\x65\xc0\x03\x33\x5c\x18\xbd\x1d\x9f\x63\xf5\xcf\x6e\x56\x14\x7a\x4b\x01\x7f\x11\x1b\xc7\x5c\x2a\x8c\x6b\xf6\x88\xf6\x25\x9d\x25\x0c\x77\x26\xf2\xf8\xbc\x06\x68\xba\x4a\xa7\xe1\x57\x3e\xbf\xdf\x46\x89\x9a\xcd\xea\x92\x42\xbf\x22\xbc\xac\xd0\x6b\x03\x35\xf7\xaf\x1a\xa7\x5a\x7e\x27\x20\xcc\x8f\xc4\xa8\x5c\x92\x49\x9f\xb5\xfd\x48\x3c\x79\x40\xfd\xa8\x4d\x77\x03\xdf\xba\xdb\xd0\xbc\x78\xfe\x90\xa6\xf9\x5c\x80\x67\xaf\xef\x94\x71\x5a\xbe\x1f\xec\xb1\x36\xf5\x2c\xdf\x8f\xf7\x68\x9b\x79\xf7\xaa\x1a\x62\x91\xd8\x6c\xd3\xf6\xfd\x40\xb1\xb9\xc9\x0a\x69\xfb\x29\x8a\x24\x94\x26\xd8\x3d\xf3\x79\x77\xc5\xe8\xd7\x30\x59\xa7\x99\xaa\x59\x18\x33\xb9\xd8\xf5\x50\xbd\x66\x59\xbd\x66\xc5\x7a\xb5\xcb\x6b\x69\x82\xe5\xb3\x8d\xb6\x51\xb9\xcb\x96\x30\x99\xe6\xee\x6a\xdb\xd9\x56\xdd\x28\x6b\x96\x8e\x15\xe1\x0d\x12\xb1\xda\x48\x5e\x8a\x2f\x4e\x41\x53\x09\x9e\xad\x7d\x5e\x56\xcd\x0b\x63\xbd\x25\xbf\xd6\x19\xbf\xd6\x25\x39\xa0\xed\xd2\x77\x9d\xba\xf5\x96\xcc\xa3\x7f\x0c\xc3\xd6\x8f\x62\xd8\x3d\x8a\x73\x65\x9a\x77\x62\x0c\xca\x6c\x45\x94\x58\xd4\xc3\x5b\x13\xbe\x4d\x13\x3f\xa0\x00\x56\x4d\xdd\x3f\x6d\x1c\xcc\x60\x88\xc1\x3b\xac\x0f\x8c\x67\x45\xcb\xe4\x1e\xab\x07\x5f\x8f\x90\x62\x30\xa1\x53\x39\x81\xab\x0d\x5b\x5b\xab\x96\xaa\x8d\x23\x45\x71\x83\x2d\x53\x7a\x2b\xa1\x6c\xde\xfb\x3e\x6d\x98\xd8\x64\xaa\x83\xd5\xda\xbb\x36\x9c\x32\xd9\x34\x73\x1a\x51\x4e\x0f\xae\x02\x96\x1a\x6f\x03\x7e\xd5\x5d\x86\xb1\xc1\x08\x37\xcd\xe2\x0b\x9f\xf2\x6d\xa8\x0d\x46\x74\x01\xc7\x96\x16\x44\x7d\x0c\x0f\xef\xb3\x3e\xf1\x6d\x14\xea\x67\xf4\xd1\x06\x03\x33\x34\xb3\x0e\x6b\x65\xf6\x5b\x4a\x62\x12\xf8\x74\x17\xe6\x14\xe2\xc9\xa0\xf4\x7e\x5b\x81\xf0\xed\xad\x49\x62\x11\x66\x3e\xa0\xe0\x59\x9b\x9a\x24\x7e\xa0\x4c\xda\xf1\xd3\x4e\x4c\xd8\xb3\xb4\xd5\x8a\x5b\xad\x34\x53\xf9\xd1\x56\xbd\x4c\xd7\x74\x73\x97\x6f\x9c\x32\x45\xb5\x0e\x56\xaa\xa2\xae\x93\xd8\xb7\x80\x06\xfb\x4e\x8d\xea\x45\x95\x09\x03\x50\xab\xc5\x77\x6a\xed\xd8\x6a\xf1\x4d\x93\x2d\x5c\x10\xb9\x22\x4c\x0c\xbb\xbd\x7a\xde\x82\x81\xb2\x73\x5f\x17\xc8\x46\xbe\x0a\x0c\x0e\x7c\xd5\xd1\xd0\xac\x8f\x63\x55\x90\x26\x4d\x72\x4f\xdb\xd4\x8b\xc8\xde\x03\x9d\x95\x78\xda\x50\x72\x21\xb9\x71\x35\x36\x9f\x78\xad\x9b\x26\x19\x0f\xae\xfe\x3c\xb8\x62\xd9\x34\x10\xac\x1b\x49\xb9\xdb\x6c\xc3\x0b\x54\xb3\xec\xb5\xf0\x60\xd3\xe6\xdf\x51\x18\xd3\x53\x1e\xe0\x46\xc4\xe7\x92\x16\xc0\x47\x5b\x69\x95\x93\x38\xc9\x2f\x47\x75\xaf\x82\xf4\x9e\x39\x83\x49\xfd\x5a\x96\xd2\x2b\x91\x9b\xc8\x02\xae\xd5\x49\x12\xca\x49\xd7\x77\xd1\x48\x6e\x97\x17\x38\x08\xbd\x9f\x18\x49\x4d\xb1\x9f\x28\x75\xbc\x89\x92\xbf\x9e\x24\xd7\xfb\xf1\x8c\xa6\x3c\x61\x4d\x0c\x6a\xb5\xf4\xbf\x76\x4e\xde\x7f\xd2\x77\x7c\xc0\x9c\xcc\xe9\xbb\x60\x49\x65\xad\xb3\x6e\xf6\x60\x85\x95\xea\xfc\x14\xf2\x2b\xb5\x80\xfc\xb9\x76\x10\xa1\x38\xb0\x75\xec\xdd\xc2\xfb\xf3\x55\x4a\xe5\x89\x88\x9d\x30\x87\xce\x94\xab\x6f\xed\x86\x3b\xbe\x52\xac\xed\xfb\x7a\x12\x35\xc9\xce\x03\x3c\xbd\xbd\xdd\x29\xaf\xed\x64\x05\x56\x58\xad\x64\x31\x6d\x2b\x8a\x8b\x95\x0e\x63\x90\x40\x59\xd1\x6d\xb8\x24\x32\x34\xb1\xa8\xa8\xdf\x76\xf2\x11\x57\x3c\x68\x5a\x4c\xdc\xeb\xd8\xde\x3d\xb4\x14\x41\x11\xf9\x03\x84\x17\xc1\xad\x7c\x31\x22\xf4\x2d\x02\x3c\x4f\x9f\xd1\xee\x0c\xfa\xe5\x3b\xbc\xe0\x23\xb7\xf5\xd2\x76\x5b\xad\x96\x16\x93\x27\x29\x9e\x82\x89\x0b\xaf\xc7\x85\x6d\xb6\x1b\xde\xdb\x5a\xb1\xea\xef\x1d\x7b\x13\x07\x01\xf9\x7e\x3c\x17\x3a\x64\xb3\xb0\xe5\xd2\xcd\x9f\xdf\x2b\x1e\xbb\xea\xa1\xb0\x1f\x94\x11\xde\x79\x40\xfc\x36\x08\x91\x6a\x89\x5a\x7d\xf2\xe6\xd8\x28\x45\x1b\xf2\xdc\xbb\x0d\xdb\xd4\x74\x4c\x35\x5d\x58\x6e\x3a\x36\x25\xf7\x9a\x2b\x62\xd1\x9b\x3f\xf3\x53\xc9\x07\xfd\xf4\x78\xff\x9d\xee\xfb\x7e\x98\x29\x90\xbd\x87\x2a\x18\x12\x6e\x7a\x93\x90\xf0\x29\xf0\x30\xbd\x2b\x08\xf9\xa6\x8d\xa3\x93\x20\xbe\xa4\xd5\x1e\x43\x42\x51\x87\xc4\xdf\x58\x62\x26\x22\x72\x79\x5f\x3d\x3a\x9c\xa8\xc7\xac\xb7\xca\xc9\xcc\x5d\x91\x2d\x6d\xb5\x8c\x10\xe8\xc1\x71\xc7\x48\x26\xd6\x94\x24\x13\x7b\x6a\x12\x8c\x3d\x8c\xe7\x46\x0a\x71\x29\xc4\x99\xcd\xab\x5f\xe2\x1a\x60\xb6\xf6\x5e\x7d\x2f\x2d\x33\x62\xb1\xbd\xb1\xde\xfb\xdc\xb0\x04\xdf\xc1\x76\xe9\xf2\x44\xbd\x9b\xaa\x5e\x94\x3d\x4f\x9f\x9a\xa5\x23\x69\xd5\xd1\xd1\xd8\xa0\x68\xbb\x78\xdd\x30\xb3\xeb\x4c\x2c\x85\x55\xb9\xda\xa8\xe0\xc1\x62\xaf\x64\x57\x11\x82\x89\x88\xab\x63\x37\xf0\x7a\x33\x3e\xb0\x24\x0a\xd8\xa8\x6a\x90\x0c\x57\x9a\x6d\xcf\x5c\x35\x1e\x89\x22\x41\x53\x0a\x9e\x87\x22\x51\x53\x92\x38\x0c\x45\xae\x4a\x7c\xc3\xe1\xdb\x60\x26\x99\x15\xf7\x0d\x80\xe5\x57\xc4\x22\xa9\x49\xd6\xc5\x67\x44\xe3\x76\xd4\xd6\xff\x59\x37\xc9\xca\x9f\x75\x53\x1a\xb0\xd9\x95\xb1\x16\x43\x98\xd1\xb1\x7d\x7f\x75\x7b\xbb\x7a\x9e\xc8\x06\x9a\xd7\x31\x26\xa4\x3c\xbd\xbb\x32\x4d\xb2\x28\xbd\x53\xfa\xab\xde\x8e\xda\x81\x49\x2e\xfd\xb9\x6c\xf2\x05\xe2\xbf\x14\x38\x97\x7e\xd2\x2e\xa3\xb8\x9c\x58\x53\x73\x17\x0a\x5f\xde\xde\x2e\x9f\xa5\xea\x40\x64\xd6\x93\x0c\x46\x56\x64\x49\x60\x26\xd0\x0d\xe6\x73\x8c\x34\x38\x88\xac\xf8\x57\x3f\xa5\x27\x0e\xe0\x89\x73\x87\xe5\xc3\x79\xf2\x14\x5e\x12\x45\xc7\x09\x2b\x6f\x23\x35\x9d\x1f\x15\x8f\xf7\x64\xc7\xc5\x8e\x59\xf2\x35\x9c\x53\x96\x9f\xb0\x52\xe7\xb5\xf1\x10\x5a\xe1\xc8\x99\x6d\x11\x5b\x6d\x79\xb2\x75\x04\x59\xf2\x43\x11\xd9\x8d\x5a\x95\x23\x23\xa8\x9b\x75\xb5\x62\xc9\xb3\x6c\xf3\x05\x7a\xfe\x41\x30\xbb\x2a\x9d\xb1\x50\x46\x5f\x39\xfd\xfb\x9d\x48\x8d\x82\x94\x8b\x7e\x8d\xec\x2e\x66\xcc\x93\xc4\x09\xb7\x46\x1a\x0f\xf1\x68\xfa\xfc\xb3\xbf\x63\xe5\xb9\xf0\xdc\x20\x1e\x35\x93\x91\xe2\x98\xff\xa7\x2b\x4a\xa3\xb7\xd9\xad\x82\xcf\xbe\x9d\x67\x39\x4b\xd6\xb3\xab\x9c\xac\x30\x15\xb5\xa6\xf3\xc3\x78\x9e\xe1\x96\x35\x55\x9e\x52\x84\x84\x1c\x7f\xf3\xed\xa1\x4c\xe7\x2c\xfa\x28\x5e\x26\x52\x47\x1c\xe6\xe1\xd7\x22\xdd\xea\xd4\x63\x31\x8e\x8b\x53\x9d\x69\x5e\x7a\xe9\xe8\xb0\x88\x7a\x79\xf8\xe2\xc3\xcf\x9f\xfd\x1d\x35\xa4\xd7\x5a\xa4\x7e\x22\x2a\xcd\xa0\x32\x81\x48\xa5\x16\x2b\x94\x4e\xe3\x79\x39\x22\x4c\xdf\xaa\x13\xd9\xa5\xd8\x03\xb9\x83\x39\x2f\x9e\x93\xa9\x91\x51\xd0\xce\x8b\x30\x9e\xbf\xca\x36\xc6\x37\x8e\xab\xb4\xb8\x7b\xce\x84\x25\x01\xfa\x89\x67\xc7\x7a\x59\xb6\x36\xc0\x50\xa9\xd6\x07\x61\x35\x00\x23\xa9\xe5\x72\x71\x39\x04\x8f\x05\x67\x16\xd4\x1d\xf3\x59\x93\x35\xb1\x65\xbd\xd2\x9b\x78\x56\xdc\x66\xcc\xce\x05\x53\xc3\xfc\xce\x72\x1e\x27\x44\x7e\x00\xa5\x7e\xd8\x0d\xe2\xd9\x95\x98\xca\xa9\x04\xa1\x91\xb3\x24\xf1\x49\x98\x6a\x93\x54\x04\x65\xf6\x45\x32\x5b\xa7\x32\x77\xa6\xcd\x55\xbc\xf8\xba\xcb\x48\xe1\x65\x52\xd2\x0a\x29\x45\x5c\x65\x4a\x0a\xd8\x72\x42\x92\x12\x21\xa5\x7a\x14\x29\x29\xd6\xe2\x2e\x1f\x42\xd5\xea\x50\x41\x1e\x61\x74\x50\xb3\x63\xc3\xc4\x63\xb2\x99\x66\xc9\x57\xe4\xfe\x1f\xf2\xde\xad\xb9\x8d\x65\x5d\x0c\x7b\x4a\xf9\x2d\xa9\x54\x5e\x5c\x39\x2f\xe0\x9c\x7d\xb8\x66\x16\x06\xd0\x0c\x48\xea\x02\x68\xc4\x0d\x82\x14\x05\x51\x14\x25\xf0\x22\x89\x14\xb7\xd6\x00\x68\x80\x23\x0e\x66\xa0\x9e\x06\x6f\x22\xb7\x5d\x29\xdb\x95\x93\xd8\x8e\x93\x72\xd9\xae\xe4\x24\x76\x92\xe3\x1c\x3b\xe5\x4a\xd9\xae\x53\xb9\xf9\x38\xa9\xda\x2b\xef\xf9\x0f\xfb\x97\xa4\xfa\x36\xd3\x3d\xd3\x3d\x00\xb5\xd6\xde\x3e\x55\x51\x2d\x2e\x00\x33\xdd\x5f\x7f\xfd\xf5\xed\xeb\xef\xfa\xf3\xcc\xd6\xa5\xe0\xf6\x36\x10\x9f\xd8\x4b\xf9\x32\xd9\x74\x8c\xa5\xfe\xb5\xe2\xe5\xe5\x25\xd3\x80\xf1\x25\xc9\x89\x6a\x04\x51\x25\xb6\x5a\x56\xec\xc5\xe2\xa5\x2e\x18\x99\x71\x06\x21\x11\xc9\xdb\x4a\x0a\x00\x12\xab\x65\x25\x5e\x92\x03\x90\x90\x69\x1f\xd7\x79\xc9\xa7\x49\xfa\xd5\x02\x66\x26\xb8\xc8\x4a\x3c\x13\x4a\x20\xa1\x84\xd0\xba\x27\x75\xc6\x92\x07\xe8\xa9\x34\xd6\xeb\xc0\xb4\x9a\x1c\x8c\xc8\x17\xe4\x16\x53\x6c\x9f\x48\x13\x40\x68\xed\x94\x9e\xd3\x11\xcb\xfb\x8a\xcf\x8e\xad\x42\xe2\x78\x62\x8b\x53\xc1\x2b\x88\xb8\x91\xa5\xab\xcb\xb0\x5a\x91\x8c\x2e\xc7\xe8\xae\x30\xcc\x19\x0d\x96\xbc\x8c\x08\xb2\x7d\x07\xcf\x66\x9e\x06\x87\x20\x68\x56\x82\x84\xba\xf6\xc6\x31\xa2\x1e\xb9\x7e\x85\xe0\x1a\x0f\x49\xce\x65\xa1\x37\x29\x0b\x6e\xcd\x01\x4c\x31\x9e\x0f\x39\xeb\x99\x00\x3a\xb7\xdb\x88\x42\x59\xa2\xc7\x53\xe4\x17\x26\x07\x0a\xdb\xce\x83\x11\xf4\x27\xe0\x93\x07\x94\xf2\xa6\x2d\x1a\xfa\xdd\x34\x68\x31\x6e\x57\xc8\x2a\x31\xe5\xe0\x20\x49\x30\x8b\xe6\x19\xfd\x18\x0e\x01\x6c\x56\x9c\xd6\x19\x39\x6d\x9b\x15\xd7\x71\xfe\xa8\xc5\x8d\x61\x9a\x15\xbf\x9f\xc4\xe1\x0c\x81\x16\x09\x3f\x4b\x5f\x1b\xb6\x31\x89\x6f\xba\x51\x04\x20\x3d\xa9\xdf\xe3\x29\x4e\x2d\xfc\xb9\xae\x3f\x6d\x0f\x0e\x3c\xe3\x0f\x0d\xc2\x26\x09\x82\x2e\xb1\x4c\x0e\xc3\x01\x15\xe7\xbc\xa3\x0e\x03\xfe\x70\xb8\x75\x01\x22\xf4\x2a\x48\x10\x20\x92\x53\x08\x48\x48\x43\x76\x66\x46\x3d\xf2\xf3\x93\x98\xd6\x50\xb4\x53\xcc\x8e\x5e\x55\x23\x9c\x76\x2d\x54\xef\xc7\xc3\xeb\x3c\x75\x26\x3e\x1c\x07\x51\xb3\xe2\x4c\xaf\x5a\x53\x7f\x38\x0c\xa2\x31\xfd\x21\x11\x4b\xa0\x4c\x8b\x5f\x7b\x9b\x95\xb3\x60\x38\x04\x51\x8b\x4a\xe8\x9a\x95\x0b\x1f\x9a\xb5\x1a\x61\xfa\x6a\x34\xda\x10\x0b\x9a\x4f\x9a\xb4\x5a\xb5\x4b\xd0\x3f\x0f\x50\x8d\x78\x55\xd1\x15\xd2\x24\x89\x46\x5a\xb5\x49\x7c\xa3\x78\x6c\x88\x1c\x02\xa7\x7a\xda\x5b\xb1\x3b\x0c\xf3\x83\x78\xea\xcd\x2d\x44\x73\x75\x7a\xc6\xc0\x0f\x07\xa6\x88\x33\x66\x2a\x31\xa1\x6b\xb4\xeb\x56\xe5\xfb\xca\x8a\x65\xa4\x06\x9b\xf9\xc9\x47\x80\x1a\x56\x4b\xb6\x21\x32\xae\x6a\x78\x79\x7c\xad\xf0\xc4\x14\xcd\x4a\x3f\x8c\x07\xe7\xad\x4a\x85\x53\xb4\xac\xcd\x16\x4d\x11\x53\x5b\xa8\xec\x9d\x61\xa3\xfa\x19\xf0\x87\x4a\x93\x50\x4c\xcf\x4e\x92\xbc\x0a\xa2\xf3\x4f\x45\xec\x49\x34\x5b\x45\xc9\x9c\xd9\x26\x04\x21\x09\x96\xc3\x5d\xe7\x72\x55\xa8\x0c\x53\x47\x1a\x15\x76\x85\xda\x56\xca\xc8\x02\x10\x29\x60\x5d\xd5\xe8\x2b\x43\x2e\x98\xc3\x93\x4d\x76\x30\x0c\x10\x66\x9b\x0d\xdb\x40\x70\x06\xca\xeb\x24\x53\x10\x86\x83\x33\x30\x38\x37\x6c\x83\xb8\x1c\x96\x97\xf7\x67\x28\x1e\xc4\x93\x69\x08\x48\x10\x88\x78\x34\x5a\xa4\x3c\x89\x8f\xb5\x70\x71\x7f\x8a\xfc\x90\x7a\x33\x91\x0c\x86\xa5\x35\x60\x4c\x7b\x0a\xae\x50\x3f\xbe\x2a\x2f\x8b\xfc\x3e\xe1\x3a\x0d\xdb\xa8\xb9\x85\xa2\xf2\x9e\x30\xf0\x21\x40\x34\xf0\x68\x93\x3a\xc3\xd2\x33\xbd\x95\x9b\xd2\x42\xec\xd8\x66\x16\xcc\xb5\x95\xc6\x64\x6d\x56\xdc\xb5\xe9\x15\xfd\xcd\xfc\x5f\x6b\x61\x30\xf6\xd1\x0c\x82\x84\xad\x71\x69\x9b\xe1\x5b\x4b\xed\xba\xc9\x1c\x98\x5b\x95\xf4\xd9\x55\xba\xe1\x5c\x9e\x05\x08\xd4\x48\x63\xcd\xca\x14\x02\x79\x7b\x9a\x21\xbc\x82\x28\xf8\xca\x52\x30\x99\xc6\x10\xf9\x11\xc2\x6b\x85\x6c\x06\x85\xd9\xc8\xa8\x90\xa3\x49\x71\x57\x66\x91\x95\xf8\xae\x4c\x8f\x37\x69\x57\x9e\x07\x81\x38\x6d\xe7\x00\x90\xbb\xdb\xbd\xa0\x20\x7c\xa3\x23\x2c\x64\x0a\x8a\x5e\xf2\xee\x0d\x64\x12\x5f\x80\x9f\x0a\x03\x44\xc3\x9f\x0a\x62\xe0\x47\x03\x81\x2e\xf7\x87\x42\x32\x04\xf0\xea\x9d\x78\x7a\x7d\xaf\xda\xd4\xaf\x99\x57\x27\xb7\xdc\x7b\xd5\x1f\xc2\x78\x6a\xd8\xca\x64\xcd\x53\x48\x7c\xf8\x53\x37\x04\x7b\xc9\xbd\xb3\xd2\x89\x58\x80\x74\x0e\xae\x87\xf1\x65\x94\xe2\xb2\x11\x0f\xaf\x77\xc0\xf5\x66\x7c\x19\x29\x30\x82\x54\xee\x90\x28\x36\xcd\x61\x70\x61\xe4\x4b\xd5\x83\xa1\x47\x45\x32\x4d\x18\x5f\xd6\x30\xaf\x96\x18\xf9\x32\xb9\x9d\x20\xb7\xe0\x33\x9e\x69\x14\x5c\x81\x61\x91\x15\x50\x1e\xf1\x78\x7f\x52\x1c\xf1\xe4\xb1\x91\x23\x6e\x7e\x6d\xa6\x98\xb1\xde\xa0\x78\x4a\x39\xd4\x0d\x7f\xac\x3e\x2c\xc8\xdb\x5a\xdf\x1f\x1b\xaa\x2a\x73\x3a\x58\xe8\xd0\x42\xe7\x70\x61\x3f\x62\xbd\xa2\xf1\x45\x44\x7c\x8b\xf8\x64\x06\xcd\x19\xba\xcf\xe3\x70\xa8\xec\xdc\x28\x0e\x87\x46\xae\x9c\x30\xac\x28\x9e\x92\x22\xb5\x51\x0c\x31\x17\x92\x25\x28\x31\x72\x75\xca\xa9\x50\x98\x15\x85\x61\xe1\x80\x2c\xb1\xa3\x0c\x6d\xa9\xa1\x42\xf7\x84\xa2\x02\xe6\xf4\x69\x39\xf2\x25\xe8\x08\x40\x2d\x51\x2e\xd6\x86\xc0\x2f\x5f\x1d\x42\x39\x01\x1d\xfa\xd4\x87\xc0\x37\x8a\xc5\x72\xb4\x23\xc1\x61\x82\x30\x40\xd7\x7c\xd2\xcc\x9b\xd3\x02\x30\x8b\xe9\x38\x8d\x33\x84\xa6\x72\xce\xcb\x86\xe3\x38\x0f\x92\x8b\xb1\xc1\x8c\x9c\x2f\xf8\xfc\xc1\xf7\xa4\xb2\x6b\xd1\xeb\x7d\x33\xb0\x0d\x5c\x93\xf7\xf1\x62\x2c\x76\xee\x26\x8e\x27\x35\x1a\x2f\x29\x86\x86\x50\x44\x66\x18\xae\x26\x61\x94\x18\x76\x60\x69\x4b\xb0\xe4\x17\x86\x6d\xb8\x75\x57\x6a\x2c\x47\x22\xc5\x55\x0b\xc5\x53\x7c\x23\x0b\xc1\x08\xe1\x4f\x2d\x11\xc9\xde\x7c\xe0\xc3\x31\x50\xf1\x99\x78\x0b\x21\xa3\x64\x15\x4b\x0b\x3d\x16\x33\xb3\xd4\x10\x79\xad\x00\xbf\x08\xc3\x24\x97\x9f\xdb\xcb\x94\xb9\x99\x5e\xa5\x3c\xca\xf4\x8a\xf7\x7a\x7a\xd5\x62\x21\x88\xe8\x8f\x78\xea\x0f\x08\x05\x1c\x15\x76\x8c\xc3\xdd\x62\x1c\x6e\x2a\xba\xd5\x4e\x33\xb1\xb6\x0a\x7d\xc5\x61\x0c\xae\x50\x37\x9a\xce\x38\x75\x68\xa4\xae\x37\x59\xa5\x03\x5e\x40\x75\x1a\x91\x4b\x6a\xea\x3d\x56\xbc\xf9\x27\x00\x3d\x8f\x23\xf4\x9c\xf0\x8b\x2a\xef\x52\x99\x1b\x1d\x65\x65\x81\x8a\x5b\xa5\x27\x0d\x86\xb8\xcf\x63\xe8\x7b\xe8\xf6\x96\x7b\x26\x12\x87\x36\x51\x4b\x50\x82\xd9\x58\x8d\x59\xce\xa5\x5a\x83\x5d\x59\x7f\x0f\xe9\x3d\xe7\x10\x86\xb2\x5b\xee\xba\x39\xef\xde\x75\x06\xc1\xc8\xb0\x81\xea\x82\x96\xc9\xd7\x98\xdd\x76\x76\xd9\x2d\xbd\x6d\x91\xda\x16\x33\xc7\xd7\x40\x64\x96\x7f\x39\x88\x92\x0d\x55\x01\xe2\x02\x04\x20\x0b\xa4\x20\xf0\x11\x6f\x81\xb2\x2d\xab\x16\x24\x91\x62\x15\x1c\x0f\xb9\xc4\x83\xbc\x35\x73\xfc\x1a\x7b\x58\x3e\xf8\x3c\x1d\x02\xb1\x23\x5f\x6c\x06\x90\xeb\x51\xf9\x64\xd7\x40\x05\xca\xf9\x4e\xe0\x95\x74\x7d\x0c\xd0\x86\x6c\xef\xbe\x18\x9e\x39\x23\xf9\x32\x8c\xb5\xf0\xd5\x18\xe7\x20\x97\xe0\x2e\xc1\xee\x4e\xfc\xb1\x42\xfc\xa7\x83\x4d\x8b\x2f\x08\x5b\x8e\x49\x31\x0f\x34\x29\xbd\x20\x64\x85\x3f\xea\x1c\xe8\x69\x8d\xd2\x16\x3a\x99\x66\xad\x18\x5b\x22\x7b\x57\x3a\x2f\xa8\x84\x32\x1f\x8f\x83\x3b\x89\x8d\x01\xea\x84\x01\x88\x50\x16\x93\x83\xdf\x78\x99\xd9\xd6\x57\x76\x4e\x81\x3a\xfd\x62\xd3\xb3\x0a\xd4\xc9\x67\x6a\x89\xac\xd2\x10\xea\x05\xbd\x29\x5e\xa5\xf1\x37\x24\xec\x4d\x8b\xb6\x38\x1f\x66\x79\x64\x90\x3c\x50\xda\xab\x32\xa8\x9c\x93\xd2\x41\x4c\x37\xc4\xf9\xa8\x11\xfd\x44\xf9\xca\xd4\x02\x81\x00\xcf\x08\x7f\x70\x06\x54\xce\xd5\xdf\xa2\x8b\x2e\x9b\x7a\xbd\x4c\xb1\xae\x88\x3a\x91\xa2\x62\x96\xe8\xe1\x93\xc1\x19\x18\xce\x42\xd0\x03\x43\xe8\x5f\x96\xec\xb2\x59\x14\x04\x49\xc1\xc8\x54\x4b\x20\x77\x6b\x10\x0d\x18\x01\x33\xd3\x15\x78\xfc\x56\x66\xfe\x22\x95\x64\x07\x19\x63\x0f\x73\x7e\x96\x36\xf0\xd0\x5d\x09\xad\x30\x2d\x5b\xb2\x79\xcc\x01\x09\xf9\x41\x94\x30\x66\xea\x2b\x87\xf7\x61\x82\x4a\xfa\x2a\xb5\x59\x87\xfe\xe5\x11\x0d\x15\xd9\x8b\x2f\x93\x4f\x26\xb4\x83\x92\xd3\x91\x91\xae\xab\xa4\x0c\xb1\x84\x3c\x13\x75\xe8\x02\x09\xf9\xda\xc6\x05\x5a\xda\x52\x9e\x10\x57\x49\x80\x4c\xad\xe2\x2b\x40\x59\xc7\x16\x47\x0a\x0f\xa7\x53\xa2\xca\x61\x0c\xdd\x22\x7b\xee\x88\x97\x03\x55\x63\x7a\xf5\xed\x2c\x9a\x26\xe6\x10\x49\x20\xdb\x8d\x90\x59\xd2\xb4\x1e\xf6\x04\xf8\xc9\x0c\x02\x09\x15\xc5\x82\x20\xd6\x24\xdc\x48\x86\xd9\x96\xe4\xb8\xa5\x12\x29\x0c\x29\x2f\x8a\x60\xf0\x83\x5a\x96\xff\x5b\x50\xf8\xb0\xb2\x3f\xc3\x25\x2a\xbd\x80\xf8\x33\x14\x0b\xb2\x50\x7e\x19\xc9\x3f\x16\x11\xd8\x9f\xfa\xd1\xbc\x0e\x26\x53\x3f\x92\x7a\x48\x2a\x15\x7a\x89\x8b\xd5\x2e\x63\x78\xee\x93\x83\xb1\xd0\x8a\x10\x58\xc4\x34\xde\x1b\x75\x08\xa6\xc0\x47\xa6\xeb\x38\x56\xd5\xf8\x08\x0d\x4b\x7c\x22\xd1\xa8\x28\x2f\x4a\x81\x8a\x05\x37\xfc\x04\x84\x41\x04\x7e\xa6\xfe\xf4\x19\x38\x43\xd5\x44\x7e\xc6\x1b\x4e\x3a\xe1\x73\x05\x25\xb5\xd1\x7b\x45\xbb\x19\xa4\x77\xf4\xbc\x03\xd9\xfd\xa6\x44\x1a\x42\x69\xc3\x55\x84\x4a\x06\x40\x24\x13\x14\xed\xa7\x10\x3d\x81\x1f\xb8\x8e\x43\xb4\x37\xb8\x59\xfc\x43\x76\xf5\x2a\xa5\x7e\xda\x41\xcb\x86\x75\x4e\x2a\x4f\x45\x80\x98\x68\xe8\x0f\xe2\xa9\x34\xa6\x85\xdb\x46\x1e\x6a\xae\xff\xea\xf2\xbc\x9c\x42\x5a\xa2\xd1\x02\x5c\x8c\x09\xc6\x37\x71\x3c\x79\xee\x93\xa8\x88\x99\x40\x23\xe5\x7e\xfc\x10\x94\xc3\x2d\x60\xc3\xe0\xea\x77\xd1\xfc\x2e\x58\x3c\xfa\xa5\xb7\xe4\x91\x6a\xcb\x32\x17\xbd\x88\xd3\x02\x3a\x0e\xa3\x60\x03\x26\x4c\x20\xc1\x27\x9e\xb3\x90\x35\x69\xcb\x1d\x64\xc5\xb2\x3d\x9e\x42\xa4\x2c\x5b\x7a\x3b\xbb\x8e\x06\xec\xfc\x4d\x36\x83\x09\x88\x48\x1a\xd5\x4f\x2c\x3c\x8e\x78\xb4\xb1\xa0\x85\x99\x52\xfc\x6b\x66\x6e\x43\xee\xb2\x77\xb6\xd0\x13\xc0\xa4\x6b\xbd\xf8\xf2\x20\xa6\xe7\xb4\x09\x24\xd6\x85\x58\xcc\x32\x33\x3a\xd3\xb2\x6c\x50\x64\x62\x4a\x0e\x6d\x35\xda\x45\xb6\x5b\xc5\x87\xd2\xfe\x14\xec\x02\x19\x9b\xad\x33\x0d\x4c\x99\x72\xf2\xfe\x22\xe5\x2f\x68\x3c\xba\xa0\x3e\xaa\x27\x13\x1f\xa2\xe7\x61\x1c\xc3\xcd\x00\xf7\xd1\x94\xab\x48\xd3\xa7\xce\x65\xd6\x82\xfd\x40\x0e\xe6\xf7\xda\x5a\xad\x5c\xf1\x83\x78\xba\x4b\xcc\x07\xb8\x35\x62\xf6\x8a\x92\x9e\xbd\xe5\xf5\x6b\x48\x29\x86\xa6\x26\x08\x4c\x2d\xaf\x6b\x82\xf0\x0d\x42\x00\x04\x87\xc7\x7a\x49\x81\xe5\x7d\x70\x92\x96\x05\xab\xe2\xec\x65\x33\x30\xb1\x6c\x62\xa6\x94\x2b\x9e\xdb\x55\x98\x90\x89\xdc\x5d\xd8\xa7\xc0\xba\xe4\xcb\xd1\xfe\x79\xa8\x0a\x4b\x0a\xe1\x73\xda\x93\x96\x0b\xdd\x00\x5f\x81\x11\x2a\xa9\x86\xb8\x51\x83\x5c\xeb\x20\x9e\xd6\x68\x6b\xa5\xb3\x55\x5c\x7c\x85\x25\x2f\x9b\x94\x16\xb8\x7c\x79\xa9\xe8\x24\xe1\xbc\xef\xba\x59\xf3\x7d\xb1\xa9\xaa\x76\x94\x4b\xa6\xd1\x9c\xbe\x4a\x8b\x78\x0e\x2b\x0d\x49\xa1\x32\x36\x9a\x96\x58\x9c\x85\xa6\xe5\x6d\xc0\xbe\x7c\x9a\xc7\x3b\xb3\x62\x85\x11\x21\xd7\xae\x54\x3d\x84\x37\xc4\x9c\x59\x30\x19\x54\x71\x17\x55\xed\xae\xca\xcb\xe2\xd7\xbb\x96\xbc\x37\xc9\xd7\x1b\xa4\xbb\xde\x00\xe1\x7a\x73\xc0\x16\x9b\xc9\x25\x93\xf8\xe1\x46\x76\x33\x33\x91\xf0\x5c\xba\x0b\x81\xd4\x65\x5e\xbb\xf5\x97\xdd\x64\xb5\xdd\x2a\xe9\xb0\x68\x35\x29\x1a\x3d\x2b\xfb\x9f\x9f\x79\x64\xa2\xb2\xf8\x37\xd2\xdc\xd5\x5b\xb6\x09\xf4\xc9\x3b\x6c\x2c\xe5\x07\x91\x19\x80\x32\x09\x6e\xf1\x45\x66\x0d\xe9\x01\x2b\xb7\x2d\x64\x56\xc5\x4b\xf2\x16\xc8\xa4\xb7\x82\xc6\x57\x74\xb8\x95\x8a\xe6\xb7\x9a\x0c\x26\xb3\x94\x54\x20\x2d\x98\x2a\x16\xf0\xa6\xe6\xab\x45\xac\x15\x3d\x13\xae\xec\x3f\x15\xff\x72\xe8\xcc\x74\x74\xc4\xdc\x09\x8a\xd8\xfe\x4e\x30\x29\xc2\xb6\x5a\x8b\x93\x22\x0f\xa7\x95\x1f\xfc\x22\x7f\x39\x87\x06\xc4\xd1\x6d\xde\x0c\x2a\x02\x99\xdf\xb0\x72\xf2\x94\x18\x7e\xca\x3b\xc5\xbc\x15\x42\xbb\x3f\x6f\x9e\x3d\x2d\xae\x0e\xbc\x58\xc5\xae\x09\x72\xa3\xc2\xa8\x96\x2a\x92\xbf\x69\x1d\x14\xd6\x6f\x8a\xa1\xa8\xf8\x9e\x3f\xee\x0b\x4c\x40\x01\xa0\x7a\x0e\xe6\xe7\xff\xa2\x18\xf0\x3e\xfc\x34\x1c\x38\x94\xbf\x7c\xb3\x3f\x3f\x43\xee\xdf\xaa\x02\xd6\x9c\x99\x2f\x9e\x85\x79\x87\x11\xee\xda\x00\x45\xcf\xd4\x25\x0f\x71\xdf\x53\x16\xf3\x7d\x33\x18\x12\x4b\x6c\x10\x0d\xf0\x41\x44\x12\x44\xc1\x31\x40\xc4\x14\xdb\x20\xd1\xdd\x3c\x2f\x90\xa6\x30\xad\xb8\xc5\x2b\x80\x21\x4f\x79\x33\x8a\xc3\x21\x4f\x2b\x2c\x41\x61\x9e\x2b\x79\xdf\x66\x1b\xea\x62\x2a\x40\xeb\xee\x2e\xf3\x04\xc6\xd4\xb1\x63\xdd\x84\xe2\x2c\x7b\x9e\xe0\x76\x54\x58\xaa\xdc\x47\x4f\x25\x12\xb6\xc3\x2c\xe4\x86\xea\xd4\x2e\x8a\xab\xf3\x77\xbe\x33\xcf\x69\x9d\x3d\x0d\x5b\x67\xdc\xc3\x75\xe0\x81\xea\x19\x09\xc7\xb5\xe4\x45\x16\xfe\x14\x4c\xf1\x07\xf8\x41\xbc\xbc\x9c\x99\xe7\x7b\xde\xc0\x82\xa6\x6f\xc7\x16\x09\xf2\x25\x09\xa1\x99\xb7\x42\xb2\xbc\x9c\x14\xca\x27\xb8\x7c\xa2\x2c\xef\x2f\x79\xf1\xf2\xb2\x9f\x7a\x2f\xb2\xe8\x0b\x23\x80\x06\x67\x3c\xf8\x81\x39\xa0\x9e\x08\x33\xeb\x2b\xb7\xda\x0f\xe3\xb1\x69\x74\xe2\x59\x38\x8c\xbe\x43\x15\x52\x9a\x98\xe7\x13\xd3\x85\x66\xc5\xa8\x0e\xac\x16\xc9\xa2\x79\xe7\x2f\x79\xb3\xf5\xfc\xf4\x95\x56\xf4\xcc\xf6\x2d\x7b\x56\x8c\x10\xa1\x5e\x08\x3e\xee\x8b\x54\xda\x6a\xfa\x9e\x2f\xb9\x1f\xa5\x3b\xa8\xa9\xe9\x8e\xf5\x2d\x3d\x99\xd7\x07\xea\xd7\x90\xc3\xa5\xf5\xef\x08\x17\x4c\xf7\xe2\x39\x84\x27\x43\x54\x2a\xa1\x91\x6e\x01\x85\x6b\x82\x6c\x43\x26\xea\xef\x4d\xc5\xfb\x5c\x5c\x95\x52\x08\xc5\xcd\x4e\x2a\x69\x59\x6a\xd3\x36\x05\x0e\x85\x22\x2a\x34\x4a\xe0\x14\x31\xc9\x17\xb6\xf4\x14\x1c\xe0\x2b\x40\x1a\xd1\xb5\xa8\x59\x55\xdc\x17\x4e\x40\xba\x5e\x4f\xcb\x4c\x10\xc4\x69\x53\x8c\x2b\x94\xca\x49\x3d\xfd\x6d\x66\x79\x39\x4b\x48\xa2\x2c\xb0\xae\x7f\x75\x02\x4e\x9b\xba\xfd\x8d\xd8\xd9\x81\x92\x3b\x20\x0f\xec\x24\x12\x87\x5c\xd9\x4a\x74\x3c\x98\xd8\xed\x30\x2c\x88\xb8\x48\x14\xb8\x25\xfd\x2e\x9d\x39\x71\x7d\xcd\x0e\x61\xad\xb0\x66\xee\x91\xab\xab\x69\xf1\xd8\xdf\xf2\x72\x76\x8a\xd6\xaf\xe2\xd2\x04\xb2\x20\x6a\xde\xcd\xf4\x8e\x05\xed\xd3\x76\x96\x8a\xd3\x6c\x38\x4f\x86\x52\x73\x53\x1f\x40\x91\x1b\xcb\x47\x9c\xc9\xce\x1e\x28\x52\x4f\xc3\xc0\xcd\x27\x9e\xa6\xa2\xd5\x42\x2a\xda\xc1\x02\xed\x24\x3e\x99\x51\x03\x15\xb6\x35\x6d\x37\xc4\x40\x2e\x99\xee\x25\xef\x1b\x99\x45\x12\x06\xb6\x63\xd9\x41\x1d\x5c\x21\x10\x0d\x4d\x64\x23\x85\x5f\xac\x5a\x2c\x32\x47\x3d\x1f\x87\xe1\xae\x7f\xf5\x49\x95\x27\xa0\x28\x27\xcc\x8b\xbb\x0a\x22\x82\x85\xa4\x56\x35\x3d\x60\x22\x3f\x2f\x11\x68\xa5\x72\xec\x83\x78\xaa\x50\xb0\x6a\x64\x3f\xb2\xac\x03\x2c\x2c\xd7\x60\x12\x61\xa0\x17\xff\x6a\xfb\x6f\x43\x51\xde\xcd\x88\x6c\x5a\x2d\xf4\x0c\xe2\xc3\xc0\x83\x79\x77\x13\x52\xe8\x20\x9e\x2e\x79\x28\x8d\x27\x9c\x7f\xc7\x03\xd5\xe7\xa5\xf3\x0b\x51\x8c\x09\x93\xff\x32\x13\xad\x6c\xd2\xb4\x4c\x54\xbb\xa7\x6c\xde\x22\x91\xe1\xb3\x78\xef\xf7\xa4\x75\xe9\xca\x11\x04\x65\x0a\xe5\x3b\xe1\xc5\x89\x62\x57\x03\xfd\x81\x1e\xe9\x52\x6b\x37\x49\x0c\xa9\x5a\xb3\xea\x71\xaa\xe5\x23\x09\x08\x71\x18\xb9\xd3\x8e\x2e\x1e\x60\x41\x63\xc3\x34\x00\xd9\xd0\x8b\xaa\x9b\xe5\x65\xae\x22\x2d\x14\x60\xda\x1b\xce\x70\x73\xa1\x30\x13\x71\x72\x95\x16\xf7\x28\x2a\xa8\xb4\xb8\x99\xe6\x5c\x5d\x9e\xe4\x45\x24\xf5\x6a\xb1\x2a\x05\x39\x0c\x69\x56\x2a\xc2\x82\x64\xb1\xc4\x8a\x6f\xa8\x47\x0b\x18\x4a\x74\x13\xc2\x50\x6c\x82\x10\xf9\xb8\x0e\xf4\xd4\xd3\xa1\x86\x5a\x90\x4c\x56\xe8\x39\x56\x2e\xc6\x97\xb4\x7d\xc0\x67\x01\x29\x15\x58\x36\x5c\xd2\x00\xd3\x4f\x69\x68\x17\xdd\x6f\xca\x8c\x59\x72\x3d\x50\x70\x76\x34\xd1\xb2\x49\x02\x4b\x22\x7f\x37\x1e\x02\xeb\xeb\xc0\x4f\x40\x85\xd4\x22\xb6\xd4\xf5\xcd\xbd\xdd\x4f\x9b\x5b\xaf\x0e\xda\x9f\xde\x74\xdf\x6f\xbd\x6a\x22\x8f\x15\xff\xf0\x7d\x9e\x50\x42\xbc\x0e\x7a\x99\x68\xe9\x81\xbd\xea\xbe\xde\x2a\xc0\x52\xaa\xe8\xe6\x41\x7a\xd3\xde\x5e\x0c\xd2\xf7\x12\x5d\xd3\x6c\x5c\x66\x16\x83\xeb\x7b\x3d\xdb\xc8\x9c\xb8\x16\x9d\x90\x2c\x46\x89\x7a\x2a\x92\x97\xe5\x93\xd0\x86\x76\xa0\xd8\x20\xbe\x06\xc3\x26\xa8\x07\x43\x10\xa1\x60\x14\x00\x68\x5f\x37\x01\x53\x51\x7f\xb0\xaf\xd2\xef\xef\xef\xee\xb2\xb1\x25\xe9\x07\xc9\xb0\x8a\x7e\x76\x4d\x22\x44\xf3\x9c\x16\x22\x91\xb2\x48\x96\x4e\x82\x57\x16\x2d\xab\x5a\x45\x16\xf4\x02\x33\xff\xfe\x04\xf1\x94\x82\x59\x34\x96\x13\x58\x0f\x86\xa7\x1e\x14\x46\x4b\xf2\x84\x6b\x66\x4f\x40\x34\x5c\xb4\x75\xa6\x96\xca\xb7\xa5\x40\x48\xa0\xc9\x69\x01\x07\xe2\x14\xd8\xa4\x31\x23\x68\xc8\xd2\x9f\xd0\xf1\xb8\xea\x29\xfb\x5e\xbf\xae\xc1\xfa\xb5\x96\x2e\xf1\xf7\x1e\x8b\xff\x97\xe8\x76\x91\xb8\x95\x90\x5d\x24\xe1\xbb\x48\xa4\xde\x45\x92\x67\x11\x29\x15\x59\x76\x72\xff\x5d\x24\xb1\xee\x8a\xdb\x88\x7e\x17\x49\x7d\xf5\xd5\xac\xc7\xb7\xd9\x6b\x50\x97\xc6\x45\xd7\x12\x71\x7f\xd4\x2c\x25\xfc\x4e\xb3\x92\x38\x09\xee\xa9\x80\x54\x08\x8d\x97\x34\xda\x16\x7e\x1b\xa8\xe9\x04\xb7\xa9\xc8\xbc\x61\x59\xf9\x53\x59\xd6\x55\x42\x9d\xae\x12\x09\x31\x56\x4a\x1a\x60\x01\x5c\x83\x56\xa0\x16\x48\x0a\x25\xd7\xcb\x0b\x34\xe7\xdf\x7f\x55\xf2\x16\x51\x14\xa2\xbb\x32\x12\xbb\xbf\xb9\x7d\xa9\xba\xa9\x8b\xd6\x1c\x6d\x55\xd6\xfc\x42\xca\xb3\x79\x57\xe2\x22\x9d\xf3\x3a\x40\x1e\x23\xae\xa5\x15\x08\x0b\x65\xf3\x74\x56\x74\xb4\xb9\xf0\x85\xb3\xea\x6a\xa4\x4b\x8b\xd3\x3d\xd6\xe8\xf5\x52\xa9\xc6\x7c\x9a\xe7\x5b\xd7\x68\x69\xee\xca\xb6\x13\xd1\x03\x58\xb9\xa8\x33\x1f\x01\xbe\x64\x68\xe0\xbf\xfa\x08\xc6\x13\xbc\xdf\x74\x88\x50\xa8\x7e\x79\x16\x0c\xce\xac\x3a\x8a\x5f\xc5\x97\x00\x76\xfc\x04\xb3\xb7\x78\xcf\x46\x30\xdc\x01\xd7\xb7\xb7\xa0\x3e\x01\xc8\xdf\x01\xd7\xd6\xf2\xb2\x71\x61\x78\xf8\xba\x40\xb9\x55\xd1\x69\x8c\x7b\xd3\x94\xa0\x4c\x1d\xa8\x8b\x1b\xa0\x0a\x8e\x60\x86\xd4\x52\xdb\x5a\xa0\x8c\x5b\x66\x7e\xda\x5f\xf1\x20\x36\x91\x0c\xef\xc2\x0f\x67\x80\xb8\x56\x17\x1f\x13\x61\x63\xd1\x1f\xc8\xd1\xef\xb8\x25\x8e\x6f\xb9\xfc\x8a\x09\x8a\xa7\x6f\x60\x3c\xf5\xc7\x3e\x45\xb8\xcc\x5a\x3a\x35\xad\x63\xda\xa0\x79\x56\xd3\xdc\x1b\xf9\x83\x07\xd6\xf9\x5d\xa1\x69\x30\xff\xc8\xf9\x0d\x51\x2e\x33\xbe\x00\x8c\xd3\x54\x99\xf9\x6b\xe2\xc7\x81\x5c\x70\x3f\xe2\x9c\x94\xb0\x3c\xbc\x85\x54\xd1\xec\x39\x04\x49\x3c\x83\x03\x20\xa6\xeb\x95\x23\x03\xf2\xd4\xe0\xe9\x83\xbd\x29\xc6\x26\xc9\x42\x07\x2a\x40\xb3\x28\x82\x34\x08\x88\xf0\x93\xf5\x7c\xa1\x24\xc0\xfc\xf1\xd1\x01\x89\x44\x78\xc0\xd2\x6c\x2b\x26\x29\x8c\x47\x41\x08\xba\x43\xd9\xb9\x22\x98\xf8\xf0\x7a\x9f\x85\x28\x49\x83\x07\x02\x10\xd1\x02\x7e\x88\x00\x8c\x7c\x04\xf4\x45\xd2\xf8\x26\x45\x80\x62\x81\x7c\x3c\xc3\x2c\x01\xa4\x18\xf4\x2e\x1f\xbe\x50\x0c\x5a\x28\x06\x23\x4b\x53\x44\x2f\x12\x52\xa8\xb4\xfa\x3d\x62\x5f\xa8\xaa\x2f\x1c\x62\x21\xad\xcc\x98\x1e\x81\x71\x11\x2b\x64\x36\xb8\xca\x10\x84\xb9\x4c\xcc\x22\xf4\xbe\x3f\x38\xa7\x5a\x58\x9e\xf2\x19\xf9\xfd\x7d\x14\x4f\x85\x27\x8c\x37\x3a\x60\x2f\x52\x57\xdb\x0b\xb6\xb0\x0e\xe2\xa9\xd8\x2e\x7f\x4c\x79\x91\x45\x73\x73\xee\x9f\xf9\x53\x40\xc3\xbc\xb3\x9c\xef\xc2\xf3\xfa\xc6\xab\xbd\xce\x8e\x58\x9c\xb8\xd8\x15\xa1\x6c\x84\x41\x74\xde\xb9\x1e\x84\xe0\x93\x77\xe2\x3a\x8e\xed\x3a\x0e\xeb\xc5\xe4\x7a\x2f\xea\x64\x85\x3e\xa5\xb4\x14\x9e\x15\x48\x9a\xf3\xe9\x13\x1b\x1c\xc9\xfe\x8c\x52\xd0\x4a\xd2\xff\xbd\x68\x6f\x86\xc8\x1e\x59\x7c\xb3\x03\xae\x13\x04\xe3\x73\x50\x7c\x49\x36\x9f\x36\x84\xf1\x25\x2e\x24\x0d\x28\x18\x01\x1f\xed\xc6\xb3\x04\xf4\xc0\x34\x86\x28\xf9\x94\x86\x9f\xec\x83\x30\x6c\xcf\x86\x41\x3c\xcf\xa6\xdf\xc7\x85\xb8\x71\x7d\x56\x4b\x0c\x3e\x00\xc2\xb0\x46\x8b\x15\x4a\xc9\x5e\xb9\x53\x08\xc2\xd8\xc7\xdb\x97\x3f\x43\x12\xd0\xd7\x31\xbe\x4e\x0d\xc8\x21\xf0\x2a\x48\x90\x38\x99\x92\x73\x14\x4f\xc5\x02\x1b\x20\x0c\xb3\x9e\x24\xfe\x05\x18\xb2\x8d\x50\x88\x94\xc9\x1f\xd0\xb5\xce\xde\xb3\x19\x5b\x88\xab\x79\xc1\xf3\xeb\x1f\x1d\x88\xa3\x79\xce\xf6\x5b\xf6\x92\x6f\xbf\x62\x91\x20\x4e\x93\x99\xb3\x69\xd8\xdd\x13\xdf\x03\x12\x86\x94\x8c\xc1\x26\xf4\xc7\x74\xa6\x67\x71\x43\xe3\xe9\xf5\x5e\x44\x59\x1c\x61\xe0\x48\xf4\x2f\x12\x50\xb7\x13\x06\x83\x73\xea\xc2\x98\x7b\x4d\x1e\x6e\xcc\x10\x8a\x23\xe1\x15\x6e\x86\xae\x3e\x1a\x1c\x8d\x6c\x02\x9c\x52\x24\x5b\x6d\xaa\x33\x68\x8f\x10\x80\xf4\xbd\xc3\x6f\x52\x24\x76\x12\xde\x38\x3f\x99\x8f\x1d\xbb\xb1\x9a\x5e\x53\xf8\xe5\x8d\xaf\xe9\xec\x02\x83\xde\xd0\x2d\xdf\x04\xb7\xb7\x06\x5b\xf9\x86\x9d\x57\xb8\xc6\x11\xa7\x4f\x0f\xf8\xc3\x6b\xd3\xba\x13\xb7\xaf\x3b\x5b\xbd\x8c\xbd\xaf\x64\x1d\x37\x0d\xf2\x61\xd8\x1b\x5b\xed\xdd\xa6\x81\xff\x6f\xd8\x87\xaf\x37\xb7\x7a\x44\xae\x63\xa4\x5f\x0d\x09\x90\x24\x21\x11\x5b\x17\x85\xb0\x9a\x1a\xc8\xef\x53\xbf\xcb\xc7\xea\xf7\x59\xbf\x55\x9e\xf8\xc2\x29\x08\xea\x10\x4c\x43\x7f\x00\xcc\x07\x1f\x1f\x3c\x18\xdb\x86\x21\x66\xb0\x65\x26\xfa\x10\x8c\x12\xae\x5c\xa4\x3f\xea\x43\xe0\x0f\x50\x70\x41\xdc\xc8\x6c\xe1\x05\x9b\x6d\x85\x83\xde\xcc\x35\x2c\x55\xaa\xfb\xc3\xe1\x1e\x0f\x1d\x4b\xa2\x73\xdb\x5f\x0d\x3f\x44\xb5\x31\xac\x4d\xe2\x21\x30\x9a\x12\x57\xe6\xd1\x50\xf8\x60\xdd\x00\x51\x6d\x96\x18\x9e\x17\xf9\x17\xc1\xd8\x47\x31\xac\x87\x7e\x34\x9e\xf9\x63\x20\x73\xc2\xeb\x34\xda\x56\xd3\x80\xc4\x4e\xdd\x0f\x91\xd1\x34\x68\xf0\x65\xcc\x09\x5f\x4f\x41\x3c\xaa\x80\xf5\x5c\xad\x26\xad\x65\x3f\xf8\x95\x89\xbf\xdc\x92\x38\x13\x7e\x88\x6e\x43\x30\x22\x40\x6e\x53\x70\xd6\x2f\x1e\xd4\x11\x48\x90\x09\xac\xdb\x5b\x13\x78\x3c\xba\x17\x4c\xd7\x28\x66\x22\xb6\xe1\x6e\x3c\x24\xce\xbe\xa4\x77\x78\x33\x26\x51\x65\x6a\x41\x52\xc3\xdc\x79\xf6\x44\xee\xb1\x0c\x65\x83\x17\xea\x26\xbb\x00\xf9\xe9\xcf\x14\x2e\x83\x56\x06\x83\x56\x4d\x6b\x24\x20\x1a\x26\xb5\xcb\x33\x1f\xc9\x95\x1e\xfc\xca\x04\xc9\xc0\x9f\x82\xdb\xc7\xb5\x7e\x80\x6e\xfb\x30\xbe\x4c\x00\xac\x9d\x83\xeb\x42\x8f\x69\xc1\x42\x9f\xf7\x31\xe8\x77\x67\x3e\xa2\x8d\xcd\x86\x98\x33\xae\x91\x3d\x39\x21\xde\x62\xcd\xa2\xac\x1e\xf0\xa0\xe6\xbf\x0a\x83\x7e\x8d\xf3\x9d\x4d\xf3\xe3\x7e\xd5\x7a\x60\xb5\xd0\x3a\xd4\xef\xe1\x09\x1c\x18\x98\xb9\x65\x95\x88\xf7\xaf\x8f\xfc\x43\x18\x9a\x88\x44\x64\x6f\xce\xab\x0c\xac\x3b\xdb\x60\xdb\x7a\x2d\x12\xf6\x75\x82\x75\x6e\x2e\x2e\x2f\x8b\x3b\xff\xba\x09\xf5\x07\x82\x31\x86\x7e\x84\xc0\xd0\xf0\x3c\x4f\x7c\x5b\x9f\xe2\xf5\x9b\xe0\x9b\xb7\xad\xaf\x7e\x7b\x2b\xa7\x80\xd5\x22\x58\x09\x92\x0a\x82\x33\x50\xe9\xcf\x50\xe5\x12\x54\x86\x31\x31\x2b\x3b\xf3\x2f\x40\x25\x6b\xa9\x82\x62\x1e\xc1\xb0\x22\x82\x48\xea\x06\x21\x51\xc9\xb1\x76\x67\x1b\x19\x1b\x41\xc3\xc8\xe5\xa7\x5a\x31\xd8\x00\x49\xe2\x24\xd6\x0b\x26\xfe\xb8\x30\xcd\x25\xf6\xb2\x10\x54\xa0\x00\x83\xb0\xbc\x8b\x82\x20\xfc\x76\x1e\x02\xf7\xba\x5c\x18\x4a\x9a\x10\x33\x85\x44\x57\x30\x5d\x41\xf3\xd7\x6f\x5a\x82\xac\x0b\x79\xed\x66\xde\xa2\x13\x7f\x4a\xd2\x4f\xc0\x60\x08\x12\x19\x16\xdb\xfb\x6e\x6f\x41\x25\x88\x12\xe4\x47\x03\xbc\x77\xed\xf5\x3f\x83\x01\xc2\xd3\xef\x02\x65\xe2\xfe\x5d\x7f\xca\x24\x7e\x26\x5e\x96\x85\x57\x09\x40\x7b\xbc\x15\x13\x58\x56\x53\x9e\x62\xd9\x26\x5e\x91\x51\x9b\xc4\xc3\x6c\xc2\xf0\x08\xb2\x7e\x54\x89\x09\x16\x34\x4f\x36\xee\x0f\x0d\x0f\xda\x27\xb1\x28\x8b\x33\x44\x60\x54\xcd\xa5\xa5\x42\x8d\xda\x00\xb3\xbd\xb9\xe5\x26\xf6\x99\x24\xb2\x5e\x5e\x36\xa2\xd9\xa4\x0f\xa0\xb0\x8f\x9f\x38\xa7\xca\xc7\xee\xe9\x3a\x54\xf0\xd5\xa0\xa9\x7a\x5a\xac\xbf\x7e\x02\x6c\x70\xda\x4c\xd9\xf0\x0c\x5f\xdd\x1a\xe8\x64\xac\x3d\x9d\x2f\xa4\x60\x6d\xea\x87\x00\x21\xa0\x1b\x61\x96\xa0\x42\x37\xc8\xb9\x87\x84\x0a\xa4\x52\xc0\xae\xf1\xf4\xe3\x0d\x6d\xc4\x4b\x9f\x26\x28\x1e\x9c\x77\x84\x57\xf5\x41\x1c\x0d\x7c\x3c\x35\x80\x95\xa6\x26\xaa\x04\x51\x05\xf0\xe4\x0f\x99\xdf\x35\x0d\x44\x9e\xbc\xf6\x5f\x9b\xb1\x75\x7b\x1b\x3f\x75\x6e\x6f\xe3\x67\x8d\xb5\x35\x4b\xb2\xa9\x63\xce\xee\x15\x22\x97\xc1\xa0\x58\x57\x49\xba\xf2\xaa\x41\x66\xc6\x09\x3a\xcd\x82\x3e\x83\x93\xf8\x94\xa7\x86\x48\x31\x8d\x62\x38\x21\x9c\x5e\x67\x7f\x9f\x96\x68\xd1\xa4\x1b\x8a\xfe\x9d\xc4\xa7\x5e\x62\xdd\xdd\xc1\xdc\xa5\x3b\x9f\xbd\x8c\xc6\x3b\x10\x2a\x92\x15\x91\xbf\xd8\x2f\x50\x4b\x95\x8e\x5b\x5c\x28\xea\x11\x16\x16\x89\x8f\x07\xac\x12\xc3\xc2\x6a\x89\xa7\xd7\xb5\x38\x62\x71\xd1\xf2\xb3\x49\xe2\xc4\x97\x96\xf0\x76\x31\x4b\x40\x8d\x31\xb4\x35\x7a\x23\xae\x91\x40\x89\xb9\x9a\x6a\x96\x9b\x40\x20\x0c\x77\x16\x88\xad\xe6\x63\x96\x5b\x09\x44\xcb\x9a\x53\x38\x98\x31\x9a\x86\xb3\xa4\x36\x09\xa2\x59\x52\xbb\x01\x30\xae\xdd\xc4\xf1\x44\xbb\x0d\xe2\x1a\x6f\xc2\x59\xb2\x8b\xcb\x1f\x03\x18\x1f\xc7\xf1\xc4\x4b\x61\x0d\x94\x48\x48\xb5\x3b\xa4\xfd\xb4\x06\x0b\xff\x55\x5a\x85\xc7\x5a\xb1\x0b\xfb\x7b\x16\xa5\x85\xae\x53\xe0\x27\xa8\xe6\x27\x81\x1f\xd5\xfc\x49\x3f\x18\xcf\xe2\x59\x52\xf3\x93\x1a\xba\x8c\x6b\x34\xfd\x5f\x6e\xc9\xd6\x2f\x07\x75\x08\xc6\x3e\x1c\x76\x3e\x9f\xb7\x79\x15\x82\x1e\xbd\x61\xd5\x08\x03\x55\x1b\xc4\x11\x82\x71\x98\x47\xf3\x02\xb1\x8b\xd8\xe3\x8d\x80\x08\xb0\x61\x1c\x32\xda\xb2\xea\xfd\x38\x1c\x16\x76\x98\xeb\x68\xb0\x11\x87\xc3\x7d\x7f\x04\xf6\x11\x8b\xe8\x20\x56\xc0\x28\xf7\x09\x8f\x9a\xaf\x5a\xbe\x58\x28\x08\x0c\xba\x9d\x6c\x90\xfa\x18\x99\x05\xd6\x8b\xba\xa2\x80\x94\xf2\x28\xc0\xdd\xc0\x2f\x0a\x7d\x18\x84\xc1\x94\x0c\x5f\x8d\x64\xd7\xd4\x52\xad\xc3\xcb\xbd\xc3\xc5\xe4\x26\x87\x60\xe0\x36\xb4\x35\x37\xf1\x5b\x56\x41\x08\x77\xab\x42\x31\x0b\x21\x46\x50\x4c\xa3\xe0\x2a\xf6\x7d\x1e\xca\x82\x4e\x26\x5a\x92\x07\x31\x5b\x08\x34\x97\xc4\x68\x4f\x96\x5c\xf0\x29\xda\xd0\x59\x3c\x01\x98\x35\x4f\x6a\x5c\x98\xac\x59\x0c\xb8\xe0\x0e\xb8\x66\x46\x51\x78\x96\xe2\x57\x41\x34\x0c\xa2\x71\x92\x3f\x8b\x44\xe6\x85\x15\xa1\xdb\x01\x39\x38\xf0\x1e\x5e\x3c\xa3\x2c\x04\xaf\xbf\xaa\x2a\xfa\xc3\xe1\x06\xfb\x8e\x71\x1e\x10\x36\x1f\x64\x96\xd9\x2c\x4a\x3d\x89\xbf\x8f\xcf\x0f\x01\xaf\xca\x34\xdd\x65\xd9\x9e\xa9\x8a\x6f\x3f\xb7\xe6\x16\x8f\xe8\x4f\xb7\x5f\x03\x13\x6e\xe2\x5f\xd5\xe8\x6d\xb0\x96\x80\x2f\x33\x5c\x50\x31\x63\x26\xfe\x15\xd5\xbd\xec\xb3\x32\x64\x79\x4f\xc0\x30\xf0\x29\xd5\x7d\x08\x6a\x23\xfc\x4d\x4b\x78\x52\x18\x53\xbe\x0d\xc1\x73\xfc\xc9\x40\x20\x9f\x31\x90\xec\x12\xa5\xaf\x8f\x7c\xc2\x38\x6e\x91\x72\xb4\x36\x09\xc5\x4e\x6f\xa2\x83\x30\x18\x9c\xab\x77\x42\xa5\xcc\x26\xab\x4f\x83\x27\xf6\x89\xbc\x46\x35\x45\x77\x73\x32\x1d\x32\x51\xa7\xfe\x78\xb1\x09\x87\x0b\xca\x13\xce\x98\xfa\x49\x82\x6f\xce\x35\xc6\x67\xa9\x98\xdc\xe5\x65\x13\x78\x4b\x4c\xda\x9b\xdd\xf1\x67\x09\x80\xed\x31\x88\x10\xbf\x26\xee\xfa\x83\xca\xde\x7e\xe5\xfd\x03\x6b\x79\xd9\x98\xc6\xd3\xd9\xd4\x58\xf2\xe2\x3a\xad\x78\x70\x3d\x05\x16\x71\x70\x49\x92\x76\x88\x5e\x93\xe6\x32\x14\xc8\xe9\xf1\xfb\xc4\x01\x9f\x35\x79\x24\xc8\x0c\x98\x87\xc4\xcf\x88\x03\xbe\xfc\x2b\x71\xb8\x28\x19\x42\x5a\xed\x88\xd4\x80\x60\x00\x82\x0b\x50\x03\xd1\x20\x1e\x16\x76\xb5\x07\xbf\x32\x67\x68\x54\x7b\x7c\x0b\xfd\x4b\x59\x4e\x20\xf1\x4d\xdf\xc9\xec\xe2\x28\x86\x15\x05\xe0\xca\x77\x55\x12\xdd\xc9\x20\x20\x8d\xfc\x45\x66\x8b\x15\x24\x68\xd1\x69\x88\xb9\xa8\x73\x2e\x90\x56\xdf\xec\x24\x89\xb5\x5c\x33\x26\x42\x6e\x5d\x35\x2e\x02\xcf\xea\xf4\x7d\x58\x63\x26\x8a\x8a\x8d\x3a\xaf\x13\xa4\x3b\x35\x6b\x8d\xc4\x0b\xaf\x4d\xfc\x6b\xb2\xfa\x6b\x3e\x84\xf1\x65\x4d\xb5\x81\xa8\x25\xe9\xa0\x00\x29\xbe\x00\xb5\x49\xaa\xe7\xd3\xa2\x53\xd4\x1c\x32\xb4\x30\x16\x3f\xfb\x90\xe6\xa0\x2a\xc6\x33\xe3\xd2\xd4\xa3\x7a\x16\x8c\x50\x8d\x2a\xe0\xe7\xb0\x79\xa4\x68\x97\x94\xcc\x76\x38\xc4\xe4\xa3\x9a\xae\x91\xf9\x44\x32\xf7\xd1\xb7\x94\x16\x24\x96\xf5\x20\xd1\x0c\x45\xca\x39\x66\x21\x40\xe5\x6a\x35\xcc\x19\x2d\x56\x97\xd8\x23\x90\xca\x97\x31\x1c\xd6\x88\xbd\x56\x8d\xac\xe8\x5a\x08\x46\xf3\x58\xb7\x62\xfe\x3b\x4f\xc9\xa9\xa9\xca\xa9\x9a\x5c\x84\x5d\x54\x64\xd6\x5b\xa4\x51\x56\x50\xd5\xea\x84\xa4\xe0\xbb\x57\xb3\x34\x6b\xdf\x22\xed\xf2\x92\x77\x77\xb2\xd4\x19\x02\x7f\xb8\x8f\x62\xe8\x8f\x81\x99\x57\x08\xb0\x22\x44\x34\x76\xdd\x0e\x43\xd3\xb2\xd1\xf2\x32\x2a\x53\x0c\xc8\xa9\x5e\x71\x7d\x5d\x9c\x40\x0a\x5c\x53\x39\x01\x68\x03\xfa\x83\x73\x80\xc0\x50\x13\x38\x92\x2b\x8f\xea\x7d\xb9\x20\xd0\x83\x14\x44\x11\x4a\x77\xa9\x4c\x05\x09\x0a\xba\x4d\x5d\x3c\x50\x6d\x41\x92\x91\x47\x08\x1a\xaa\x26\x91\x12\x25\x99\x50\x22\x62\xfa\xbe\xed\xe7\x72\xea\x15\x3b\xa8\xd6\x72\x95\x90\x6b\x6e\xa8\xd4\x82\x22\x55\x23\xbd\xb0\x54\x26\x06\xf9\x6b\x53\xa6\xbf\x4a\x4c\xa5\x2e\x56\xad\xbc\xb5\xd4\xd6\x09\x3f\x2f\x74\xad\x24\x34\xbb\x78\xe8\x06\x78\xc1\x78\xb6\xf9\x86\xf5\xa3\x32\x37\xe4\x6e\x41\x87\xfd\xff\x93\x51\x51\x5d\x07\x75\xa3\xb2\x60\x34\xe4\x3c\x3a\x1a\x80\x70\x16\x75\xe2\xc9\xc4\x8f\x86\x9d\xd0\x4f\x92\x9c\xb6\x51\x88\xb7\xc9\x36\xd4\x31\x40\xa6\x01\xa2\x8b\x00\xc6\xd1\x04\x44\xc8\xb0\x5a\x06\xbb\x89\xa5\x92\x56\xb8\xbc\x4c\x53\xed\xc2\xdb\x5b\x13\x7a\x5f\xef\x44\x37\x02\x96\x80\x9e\xb6\x49\xb4\x8d\xc0\xfc\xea\xc3\x31\xbd\x9a\x35\x69\x88\xf0\x20\x6e\x32\xed\x77\x7d\x3a\x4b\xce\xf0\x4d\x35\x6b\xb2\x09\xed\x38\xda\xba\x0a\x50\x4e\x84\x83\x0b\xc7\x53\xd3\xb2\x83\xfa\x2c\x22\x57\xda\x30\x4c\x55\xea\xf8\xa9\xd8\x85\x41\x18\x27\x00\xb3\x8b\xe0\x2a\x40\x86\xb5\xbc\xcc\xb8\x73\xf2\xdc\xb4\xd2\xa3\xa6\x08\x47\xc4\x1f\x93\xcf\xd4\x8d\x55\x90\xbc\x11\xe7\xe7\x9c\xa0\xb3\x9e\xca\xf4\x48\x07\x59\x46\xaa\xe0\x7e\x9c\xb2\x53\x79\xec\x0b\x73\x4f\x4e\x87\xd8\x8f\x87\xd7\xba\xde\x14\x48\xba\x78\xab\x78\x32\xe8\xc0\xe2\xa3\x2d\x49\x8e\x7c\x98\xcb\x0b\xed\x19\x3c\x9d\x87\xc1\xf3\xcf\xa5\x16\x24\xfc\x1b\x0f\x24\x4b\x4f\x2d\xaa\x32\x9f\x02\x88\xae\xcd\x1f\x7e\xf1\x15\xde\xfd\xe2\x2b\xb8\xfb\x81\xe5\xe1\xd6\xed\x47\x8a\xf0\xa8\x8e\xc7\x2f\x6c\x85\x79\x9f\xc9\x8c\x94\xf6\x54\x92\xe0\x28\xb5\x5f\xa0\xdd\x33\x8d\x34\x2d\x09\x71\x59\x32\x8a\xf5\x65\x2f\x8f\x2c\xa4\x59\x09\x28\xea\x0a\x32\x17\x16\x73\x75\x23\xc0\xca\x36\x16\x6d\x00\x57\xd5\xbc\x49\xfb\x3a\x07\xe4\xdc\xb0\xfd\x79\xa0\x99\x24\x4d\x3d\x6e\x92\xc0\xad\x30\x0b\x15\x23\xc2\x00\xaa\x87\x93\x09\x0c\x65\xce\x52\x18\xed\x54\xee\x67\x09\x26\xd7\x05\xa9\xad\x16\xd3\xbc\xdc\x45\x13\x8a\x50\x6c\x57\x21\xd0\x21\xea\x1b\xae\xd1\x5a\x4a\x35\x5a\x5c\xdf\x5e\x22\x52\xf8\x68\xbe\x77\xdd\xd6\xc7\xa4\x9a\x2a\xdf\x97\x97\x8d\x0e\xdc\xdb\xc7\x60\x4e\xdc\xd3\x75\xb5\xc5\x4f\xa3\xa9\x7e\xee\x32\xe7\x62\xe5\x4b\x2d\x3f\x96\xa7\xd8\x02\x44\x10\xc5\xe6\x42\xce\x77\x0f\x58\x32\x23\xbe\x98\x18\xdc\x03\xf6\x45\x1c\xb0\xfd\x6f\x71\x21\xb8\x07\xa4\x40\x8c\xe2\xd4\xd2\x44\xf8\x84\x0b\x96\x34\x68\xc7\xec\xc0\x43\x75\xf0\x65\xe6\x87\x89\x09\xad\x56\x90\x37\x12\xc0\x48\x64\xba\xdb\xa4\x32\x0c\x12\xc2\x21\x37\x2b\x18\x4a\x25\x1e\x55\x30\x9c\xca\x25\x59\xdf\x95\x61\x30\x1a\xe1\x52\x23\x18\x4f\x2a\x94\x61\xaa\x57\x2a\x78\x05\x54\xe8\x2c\xaf\x04\x09\xd1\xe4\xcd\x59\x78\x0b\x71\x57\x02\x95\x82\xc5\x38\x26\xb1\x46\xd9\x4c\x49\x55\x09\xc5\xb5\x9d\x6d\x81\x51\x3c\x04\xb5\xe1\x0c\x12\x1d\xb6\x51\x5c\xbc\x92\xc2\xc2\x5a\x37\x9c\xfa\xa3\xc4\x68\x1a\x8e\x76\x03\x4c\x17\xeb\x3e\x3e\x4d\xca\x9a\x2e\xe6\xce\x34\xb8\x95\x1f\x93\xd2\x12\x63\x48\x76\xa0\x5f\xa0\xfa\xee\xde\xe1\xfe\xd6\xa7\xde\xd6\x9b\xbd\xde\xc1\xa7\xcd\xee\x7e\x7b\xe3\xd5\xd6\xe6\xba\xa1\xcd\xc7\x89\xe9\x66\x19\x4d\x7d\x81\x69\x1c\x44\x08\x40\x4b\xdf\x19\xff\x02\xd0\xeb\xd9\xbc\x24\x14\x14\x22\xb7\x8a\xa0\xf9\xa0\xca\x76\x74\xd9\x70\x7b\x1e\x74\x79\x06\xe8\x0f\x62\x1d\xd4\xbc\xdd\xbd\x0c\xaf\xec\x72\x7a\x9c\x85\x09\x5e\xe0\xe4\x91\x8f\xcb\x2c\xc4\xb0\x1e\x63\xaa\x8b\x3d\x08\x50\xce\x4d\x20\x67\xda\x5c\x47\xa4\x84\x0e\x51\x08\x12\x14\xc3\xc2\x50\xa5\x1b\x7b\x50\x1f\xd5\x07\xa1\x3f\x99\xd2\x20\xb9\xb6\x93\xb7\x45\xe7\x91\x5b\x5d\xbc\xf5\x88\xa5\xa9\x96\x53\x51\x81\xe6\x8c\x70\x79\xd8\xaf\x2c\x19\x65\x47\x9a\x09\x26\xb2\xa1\x65\xa7\x80\x9e\xc1\xdb\x5b\xfe\xdd\xf3\xe0\xf2\x72\xe6\xfd\x60\xe5\xbd\xf3\x72\x53\x8a\x97\xf3\x96\x1c\xdd\xbc\x22\xea\x28\xda\xfe\x1e\x2f\xad\x38\xd7\xcb\xa1\xbb\xf3\x84\x27\xd4\xe4\x53\x23\x3c\x61\xe6\xde\x20\xf5\xf9\xc3\xeb\x9a\xd6\xfb\x54\xb6\x1e\x94\xa0\x55\x42\x10\xda\x40\xd9\x84\x92\xd2\x70\x30\xdd\xc1\x92\xc7\x93\x11\x91\x80\xd6\x62\xd4\x5b\xe2\xd7\x3f\x00\x41\x58\xe4\xea\x15\x9c\xe4\xf7\xa0\xb8\xed\x6b\x22\x4a\x5b\x62\xb0\x5b\xd1\x64\x17\x68\x66\x9f\x25\x47\x82\xd8\xbf\x8e\x06\xf2\x64\xfa\x64\x72\x87\xf9\x42\x2f\x0c\x92\xcd\x59\x4f\x96\x7c\x64\xdc\x32\xba\x88\x91\x6e\xe7\x31\xc3\xdf\x03\x5d\x2f\x95\x0b\x26\x4d\xf5\x74\xcf\x4e\x32\x94\x4a\x7b\x29\xb6\x9e\xbb\x7f\x03\xc9\x23\x36\x43\x87\x87\xfe\xa3\x35\x69\xb4\x03\x72\xe7\x28\x96\xa7\x18\xc8\x15\x58\xf4\x83\x34\x1a\x6c\x10\x4b\x26\xcc\x09\x1f\x6d\xdd\xbc\x97\xda\xcd\xbb\xbd\x81\xa7\x9e\x53\x4c\xc5\xde\x46\x08\x4c\xa6\xa8\x82\xe2\x0a\xab\x5d\xe9\xfb\xc3\x0a\x4b\x74\x60\x54\x53\x4e\x0b\xc8\x11\xcb\xc7\x6c\x65\x88\xd9\xf9\x73\xc4\x28\xe4\x1f\x23\x26\x3f\xb3\x49\x44\x83\xfa\x60\xb2\x3c\x73\x68\x0c\x9e\x9c\xe7\x08\xa3\x8a\xc2\xfc\x5c\xbd\x6b\x22\x21\x64\xa3\x20\x1a\x49\x3d\x54\x98\xcb\x75\xcd\x6d\xc1\x67\x9e\x93\xba\xda\xa6\xef\x4f\xe0\xe9\x53\x60\xb5\x60\xad\x66\xe5\x2a\x12\xc1\x45\x71\x4b\x16\xba\xa1\xc4\x68\xce\x00\xf1\x18\xe5\x3f\x65\x84\x78\x8a\x8a\xd2\x21\xe2\xb1\x07\x5a\xea\xd9\xe7\x01\x31\x73\x4b\xc6\x9c\xb0\x41\x7d\xea\xd0\x28\x4a\x88\x78\x95\x23\x96\x3e\x26\x8b\x3a\x91\x8f\xcf\x14\xd4\x84\x25\x9e\x3a\x0c\x31\xe2\x7b\x1e\xc4\x47\xa5\x45\xdd\xe6\xf9\x9c\xa1\x50\x88\xa6\x26\xb0\xd8\x3b\xa9\x13\x53\xe2\xc0\x6c\x5a\x36\xaa\xd5\xee\xa8\xf5\x9c\x3c\x1a\x67\xc1\x88\x78\x9f\x9a\x28\xeb\xa5\xd4\xfc\x74\x96\x9c\xd5\xfd\xe9\x94\xdf\x34\x73\xef\xed\xd8\xb2\x09\x66\x2c\x38\xa2\x7f\x65\x92\x9f\x35\x64\x3b\xcc\x14\x02\x23\xfb\xcc\xa1\xbe\xa3\x4f\xbd\x92\x3e\x72\x8b\xbb\x2c\xcc\xa2\xd2\x85\x2a\x8d\xc5\x14\xa9\x81\x25\xd3\x30\x18\x00\x25\xb6\x7c\x26\x27\x76\x92\x9b\x96\xb3\x28\x23\x45\x84\xc9\xe5\x25\xb4\x5f\x55\x2f\xb9\xe3\xfb\x0c\x0d\x48\x45\x23\x4b\x23\xeb\x8e\xaf\xb2\xa3\x03\x7a\xd6\xf4\xc0\x18\xcf\x46\xe2\x28\x40\x84\x43\xd9\xa9\x9b\x72\x43\x26\xd4\x32\xb7\x34\x40\x50\x3c\x51\x70\xe9\xe2\xe5\x5f\x0a\xd0\x64\x6a\x99\x0f\x5a\x6e\x2b\x2a\x0a\xb4\x34\xd0\x58\xda\x82\xe2\xec\x2c\x6f\xe1\x8d\x3f\x06\x87\x53\xcd\xd5\x37\x77\x1b\x93\xdc\xe9\x5b\xf3\xba\x26\xad\x47\x51\xe0\xe3\xce\xc7\x68\x33\xbe\xd4\xc9\x24\x7e\x1a\x4e\x55\x2d\xa7\x5a\x8a\xd3\xab\x20\xfa\x9d\x51\x69\x81\xa6\x7f\x77\xe4\xd0\x36\x7e\x19\x4c\x01\xf3\x79\x2f\xa6\x4e\xd4\xec\x71\x4e\x51\xe2\x27\x25\x04\x3b\x51\x5c\xe0\xd5\x97\xf4\xd3\xfa\x28\x86\x5b\xfe\xe0\xcc\x54\xb9\x71\x48\x5b\xfb\x33\x27\x0b\x42\x41\x45\x51\x74\x81\x3b\x69\xe8\x78\xc2\xc7\xe3\x85\x69\x02\x4b\x56\xb4\x66\xa2\xb3\x02\xd3\x54\xec\x8a\x9c\xe2\x4a\x77\x71\x02\xc5\x7c\x09\xa4\xfd\x76\x18\x2a\xbc\xc8\x34\xfe\x65\x19\xc6\x0a\x8a\x2d\x24\x07\xe1\xe6\xf9\x2a\x70\x79\x62\x2f\xa8\x5a\x92\x40\x16\x0c\xed\x0b\xa2\x0e\xc9\x4c\x9f\x93\xfa\x02\xe5\xc0\xc4\x23\xd4\xa3\x0f\x74\x8b\x80\x97\x28\x90\xb5\xcc\xd7\x31\x55\x65\x0b\x16\xf8\xde\x52\x3e\xa1\x83\xf0\x72\x61\x9a\xe6\x8c\xbd\x17\xa7\x9c\xaa\xe2\xfc\xc3\x27\xa5\x33\x37\xf4\xd1\x5f\x57\x47\x31\xbc\xf4\xe1\x90\xcd\xa5\x92\x84\x79\x3a\x21\x0b\xbd\x9b\xd3\xb0\x3d\x4a\x0e\xb2\x85\xaa\x55\x8b\xf3\x2e\x19\xfb\x88\x4e\x9f\xa5\xf2\xcf\x8b\x38\x18\x56\x64\xcc\x29\xbb\x58\xac\x64\x49\xdc\x57\xf9\x3d\xba\xa5\x07\xa9\x10\x22\xd8\x0b\x5d\xcd\x75\x62\x14\xbc\xad\xfd\x3c\x84\xd4\xb1\xe1\xe8\x19\xa6\x71\xad\xa6\xa4\xe5\xd3\x6f\xa3\xa5\xb2\x9c\xfe\x68\x01\xa8\xd0\x3d\x90\xf5\x6f\x01\xd4\xbf\xaa\x70\xcf\x04\xe1\xad\x45\xbb\x96\xb5\xc1\xf9\xbe\xaa\x6b\x3b\x36\x60\xec\x59\xe1\xb5\x43\x5f\x96\x48\x6c\x58\xc7\xda\xa8\x28\x6a\xfc\xf6\xb1\x23\x31\x9c\xf7\x46\x26\xb0\x5a\x35\x77\x29\x8d\x72\x52\xc4\xde\xd6\xd2\x3c\x7f\x0c\x14\xc3\x33\xe7\xc8\xcd\xcf\xd3\x42\x60\x81\x12\x99\x52\xee\x40\xd1\x8c\x2e\xb8\xbd\x75\xec\xec\x9a\x48\x33\x6f\x05\x1e\xf2\x50\xcd\xad\x99\x98\x1b\xfa\x23\x58\x85\xad\xe0\xa9\x72\x85\xb5\x82\xaa\x07\x79\xa2\x0e\xde\x94\x19\xf0\x84\x2f\x85\x30\x08\x5a\x75\x31\x02\x70\x0a\x81\x22\xc7\xf3\x05\xca\xde\x9a\x0b\xc9\x38\x34\x6d\x0c\xc1\x20\x86\xbe\xca\xd8\x89\x44\x81\x00\xc5\x53\x9e\xd7\x10\x9a\x2d\x75\x1e\x2c\x9c\x7b\x05\x67\x44\x8d\x52\x36\xe7\x42\x58\x06\xa7\x4c\xb7\xab\xf0\x21\x2c\x03\x95\x7a\x26\x6a\xc0\x09\x86\x87\x05\x30\xa9\xed\x62\x79\xdd\x2c\x00\x95\xaa\x32\xb5\x60\xb4\xc4\x3c\x7b\x34\x3d\x37\xf9\x4d\xbe\x16\xc2\x4b\x88\x2a\xec\x02\x60\x85\xf6\x3b\xe7\xfb\x90\x02\x29\x58\xcd\x16\x80\x15\x6d\x6f\xad\x7c\x75\x85\x95\xab\x06\x8c\xc6\x7c\x36\xed\x7b\x1a\x78\x44\xc5\xc8\x67\xf6\x0f\xb9\xd2\x34\x61\x60\x1c\x91\xcc\xfe\x57\x68\x02\xa2\x59\x51\xc4\xbb\xe4\xde\x89\x2a\xc2\x38\x22\x3a\x24\x29\x70\x87\x42\x27\x28\x65\x23\x36\xad\x16\x54\x64\xfb\x27\x1a\x9f\x61\x7c\x19\x19\x98\xbf\xd6\x96\x98\x4d\xcb\xdf\x93\x70\x81\x59\x72\x27\x29\x84\x8b\x18\x9b\x14\x29\x41\x90\x69\x92\x06\x86\x79\x8e\x7f\x75\x48\x14\x41\xa1\x87\xf6\x92\x63\x95\x20\x40\xbb\x20\x10\x4e\x08\x24\x35\x1f\xae\x7c\x8b\x50\x35\xd2\x0f\x67\x70\x2e\x86\xae\x65\xa9\xa3\x5c\xe7\x33\x8c\x12\x75\x9e\xd5\x0a\xa4\x50\x64\xdf\xb1\xc3\xab\x16\xc5\x43\x70\x42\x57\x91\x31\xf2\xc3\x04\x18\xa7\x95\xaf\x95\x4a\x3f\xbe\xc2\x0b\x23\x88\xc6\xcd\x0a\x35\x9e\xac\xf5\xe3\xab\x56\xa5\x92\xf7\xb3\x6e\x56\x10\xf4\xa3\x84\x06\xd1\x17\x33\xbb\x56\x78\x3d\x26\x10\x6d\x4c\xaf\xb2\x67\x04\xa9\x66\x25\x89\xc3\x60\xd8\xba\xab\x5f\x0e\x08\x1e\xb8\x61\xe6\x01\xde\xac\x04\x51\x18\x44\xa0\xd6\x0f\xe3\xc1\x79\xab\x52\xc1\xc8\xd7\xfc\x30\x18\x47\xcd\xca\x00\xe0\x0d\xbe\x55\xe1\xb2\xd6\x81\x1f\x0e\x4c\x51\xb5\x28\x1b\xa6\x58\x95\xef\x2b\x0d\xab\x55\xa9\x10\x80\x5c\xfa\xa7\x2c\xcf\x73\x15\xde\x35\x61\x1c\x23\x8c\x8f\x1a\x64\xb3\xf2\x9d\x42\xf9\xa0\xb6\x76\x69\x29\x80\x64\x22\xc8\x39\x50\x32\x3b\x17\x11\x0c\x1d\x3a\x9a\x95\x0f\x0f\x43\xb3\xe2\x68\x5f\xc3\xf8\x52\x7e\x4d\x5d\x99\x25\x6d\x73\xb3\xe2\xd4\x1f\x25\x42\x99\x82\xf2\xb6\x49\x06\x40\x57\x82\x69\x6f\x9b\x15\x76\x80\xeb\xca\xb1\x61\x2f\x57\x13\xb7\xee\x7e\x79\x0e\xae\x47\xd0\x9f\x80\xa4\x42\x90\xc5\xe3\x40\x2c\x00\xbe\x56\xe2\xa9\x3f\x20\xe9\x86\xdd\xba\xd3\xaa\xdc\x55\x2a\x28\x16\x9f\x3a\xe4\xe9\x5d\x3d\xeb\x23\xae\xeb\x47\xc1\x84\x46\x23\x88\xfc\x09\x68\x52\xa0\x2d\xf1\x79\x46\x08\x11\x37\x05\xa5\x2c\xa9\x5a\x80\x00\x7d\x5c\x23\xf9\x6e\xf0\xa4\x1d\x05\x51\x80\x80\x54\x0a\x05\x93\x20\x1a\xd7\xf8\x7e\xd1\xac\x00\x3f\x01\xb5\x80\xf8\x75\xc8\x58\x04\x10\xb0\x22\xe9\xb5\xb0\x75\x67\xe4\x37\xf1\x33\xe0\x0f\xa5\x00\xf9\x81\x55\x0c\xfe\x54\xbe\x29\x08\x79\xa2\x45\x63\xe9\x2c\x42\x51\xea\xa0\x40\x5f\x1b\xc5\xb2\x83\xd0\x4f\x92\xd7\xfe\x04\x78\x86\xb0\x95\x28\x0a\xce\xcf\x2a\x4d\xd3\x49\x2f\xb0\x8a\xa5\xb7\xf9\x45\x60\x59\x34\x3d\xb5\x1e\x0e\x5b\xdd\xa5\x80\x60\x7c\x69\x59\xad\x74\x17\xa2\xdb\x0f\x5b\xf3\x25\xc8\xb5\x16\xda\x56\x6a\x97\xa0\x7f\x1e\xa0\x1a\xd9\x32\x19\x15\xd8\xdc\xb5\x0b\x3b\x6b\xc5\x75\x9c\x49\x42\x36\x2d\x1f\xb6\x6a\x93\xf8\xe6\x5b\xea\x19\x76\xe1\x76\x17\x2b\xb8\x0e\x29\x6c\x80\xf5\xd3\x04\x35\x79\x55\xb3\x92\x09\x29\x24\x42\x13\xa6\x8c\x74\xb2\x6f\xe0\x11\x00\xf7\x9d\xd5\xc5\xba\xc2\xe4\xa6\x7b\xce\x10\xfa\x63\xe6\x25\x48\x4f\x19\x00\x0d\x6d\xe5\x05\x53\xa3\xd7\x9e\x3c\x99\x5e\x69\x66\x8f\xeb\x4c\xaf\xd2\x69\x42\x7e\x14\x56\xb6\x26\x4f\x74\x01\x9d\x05\x58\x9f\x13\x91\x55\xc9\xf8\x2a\x91\x83\x32\x88\x6f\xa6\x61\x1b\xc3\x7e\x48\xbf\xaa\x45\xa7\x3a\x9a\x14\x18\x97\x2c\xe3\xa6\xb8\xfe\x4b\x8a\x65\x3d\x57\x16\x52\xc8\x5b\x4b\x01\x2f\xc8\x9d\xe5\x2f\x0a\x4a\xb9\x2e\x40\x3d\x70\x01\x60\x02\x8e\x82\x21\x88\xcd\x25\x57\x41\x73\x16\xd8\x53\x71\xa1\xc9\xe7\x77\xd6\x1a\x5b\x70\x56\x5d\x67\x69\x91\x52\x48\x2b\xb8\xc3\x9c\x5b\x99\x9a\x27\x8d\x3e\xaa\x43\x81\x05\xdb\x2d\xaa\x54\x91\x5e\x5c\x6f\x15\xcd\x8e\xd2\x22\x27\xe0\xb4\xa0\x55\x55\x80\x68\xa9\xac\xab\x60\x7c\x99\x90\xf0\x21\x27\xe8\xb4\x14\x63\xba\x0e\x65\xd3\x82\x4c\x87\x7d\x72\x6a\x07\x1e\x68\x05\x4f\x51\x2b\xe0\x09\xd7\x62\x51\xf9\x4a\x2e\x29\x01\xbe\xa5\x10\x63\xfc\x58\xe4\x8d\x2d\x3b\x78\x8a\x6a\xee\xf2\xf2\x12\x49\xa4\x22\xc4\x62\x22\xfc\x23\x97\x01\x1a\xd6\xf2\x32\xab\x6e\x7c\x8c\x0c\x1e\xa4\xbe\x02\xeb\x9f\xe3\x20\x32\x8d\x32\xbb\x64\xa6\xb8\x55\x65\x98\xc8\x23\x09\x2c\x11\xb7\x52\x90\x34\x3f\x77\xa9\x6d\x58\x7e\x10\xaa\x6a\xea\xb3\xb7\x9a\xd6\x04\x55\x68\x99\x04\x50\x07\x55\xbe\x3d\x16\x31\xb2\x03\xcf\x69\x05\x4f\x41\x61\xe8\xb4\xfb\xfe\x15\x3e\xb5\x0d\xab\x15\x17\xf7\xce\x7c\x1d\x4c\x76\x42\x57\x03\x1f\x57\x42\x7e\x3d\x58\x0d\x64\xd1\x2f\x1e\xd9\x5e\x7c\x69\xc6\xd6\x9d\x22\x2a\x7c\xbe\x53\x1a\x7d\x65\x2b\x18\x99\xc9\x33\x87\x76\x23\xd2\xe9\xdf\x13\xab\x45\x61\x65\x34\x9e\xa7\x7a\x8f\x54\x4a\x26\x31\xa5\x0c\x37\x04\xe1\x82\x2f\xf2\x86\x04\x75\x36\xad\x3b\x9e\x59\x46\xd7\x1b\x92\xd7\xa5\xbc\xbf\x6e\xb6\x51\xb6\xd9\x11\x58\x30\xb7\xd3\xaa\x1b\xf0\xf9\x53\x4c\x4c\x69\x43\xc9\x4c\x22\x6d\x1a\xf0\xe2\x64\x99\xcb\xba\x7b\xea\x82\x4b\x5e\x42\x3b\xa0\x37\xe2\xd8\x4e\x5a\xe0\x29\x5c\x37\x63\x0f\xd8\x89\x07\xab\xc8\x6a\x9a\xb1\x07\xed\xc4\x03\x55\x94\x32\x29\xa2\xc2\x2f\xb6\x95\xc1\x6c\x19\xf1\xba\x8b\x68\xef\x04\x70\x85\x5e\x65\xe9\x2a\x21\xcf\xdf\xca\x34\x98\x71\xd9\x5a\xc0\x08\xb7\x92\xa7\xa8\x95\x54\xab\x56\x20\x6c\x8e\xc9\x69\x36\x71\xe3\xaa\xce\x0a\x75\x0a\x83\x08\x69\x56\xa8\x43\x8c\x2b\x2f\x07\xf5\x04\x51\x23\x39\x92\x74\xfb\x29\x6c\xe5\xfd\x39\x2f\xa1\x3f\xf5\x09\x77\x99\xce\xa8\x52\xd5\x48\xc1\x74\x32\x9e\x4c\x02\xf4\x2a\x88\x00\xb7\x83\xe4\x07\x66\x04\x2e\xf1\x63\x93\xc9\x31\x12\x3b\xf2\x60\x0d\xd9\xbe\xb7\xe4\xb6\xe6\x8b\xd9\xab\xd1\x33\x9d\x21\x99\xe9\x7b\x4b\x8e\x1d\xa9\x5f\xd7\xe6\x83\xb6\x6c\x7f\x79\x79\x49\x47\x86\x75\x33\x61\x94\x9b\xf5\x13\x44\x18\x15\x3b\xaa\xb9\x56\x55\x7e\x08\xf1\x0a\x89\x3c\x68\x35\x15\xc5\x69\x96\x58\xdc\xeb\x90\x84\xe3\x95\xdd\xf0\xa6\x61\x80\xde\x05\x43\x80\xaf\x0f\xd4\x87\xcc\x4c\xd2\x0c\xa2\xfc\xf4\x3c\xab\x56\x2d\xa9\x2b\x39\xbd\xe1\xe5\x80\x1c\xea\xe1\xc9\xd9\x29\xfb\x6e\x97\x15\xf7\x93\x41\x10\x64\x35\xd2\x9f\x39\x95\x28\x5d\x6e\xbb\xf1\x10\xac\x2b\x96\x21\x43\x96\x40\x48\x10\x64\xb6\x83\xbc\x0c\x9e\x21\x24\x68\x4e\xbe\x58\x29\x62\xac\x1f\x69\xe8\xda\x79\xe8\x2f\x39\xf2\xe4\x99\xf8\xd7\x7d\x12\x8d\xa7\x93\x66\x27\xc4\x13\xb0\xea\x45\x77\xf3\x35\x03\xe2\x96\x90\x06\x5a\xc8\xd6\xc1\xcf\x63\x4a\x93\xd7\xe3\xe6\xb8\x1a\x87\xf8\x6e\x71\xdb\x7b\x85\xf5\x09\xb3\x1a\xbd\x47\xa8\x68\xab\xa9\xa8\x02\xd4\xe5\xb5\x16\x93\xe3\x0c\xef\x03\x59\xd3\xc9\xd8\x0e\x6a\xd4\x5a\x68\x68\xbd\xf0\xa4\xa9\xd3\xf2\x08\x4d\xe4\xd3\xab\x95\xb5\xc2\x50\x5f\x57\x3d\x6c\xea\xa8\xa8\x41\x81\x6d\x52\xf7\x53\x04\xc2\xf8\xd2\x9b\x77\x7c\xb6\xe6\x21\x3e\x17\x76\xbe\x96\x3c\xa6\x87\x53\x73\x81\x23\xba\xbc\x21\xdb\xb1\xac\x26\x5f\xe9\x3f\x01\x48\xf3\xa7\x41\xa8\xba\x18\x06\xc3\x43\xb4\xc3\x73\x7f\x16\xc8\x9a\x91\xc7\xcc\xfe\x73\x00\x86\xdf\xa2\x03\x6e\xc9\x07\x5c\x51\x04\x33\x9b\x44\x7a\x8f\xe8\x51\x0c\x27\xf9\x96\xe5\x6d\xd8\x9f\xa1\xb8\xe3\x43\x18\xf8\x63\xd0\x23\xeb\x60\x5d\x6e\x91\xd2\x85\x77\xa1\x84\x6b\x21\x57\xdc\x57\xe5\x5d\x95\x57\x3a\xee\xce\xbc\xd9\xdf\x42\x9e\xc7\xc6\x8b\x9e\x0c\xb8\x85\x44\x3f\x5e\x78\x53\x2e\xb1\xa3\x03\xd0\x4f\xc0\x41\x4c\x22\x84\x68\x46\x43\x34\xc0\x55\x52\x3b\x9f\xa5\x30\x7f\x1a\x05\xf5\x11\xb1\xcc\x3e\x0b\x10\x20\xf1\x4f\x53\x47\x91\xaa\x6b\x29\xad\x39\xb5\xe3\xc7\xd0\xed\x15\xcc\xfc\xb3\xcc\xfe\xe5\x3c\x54\x3e\xd1\xdd\x7d\x19\x18\x1b\x7a\x60\x3d\xb5\xa4\xc5\xa7\x48\x13\xe5\x6c\xcd\x0b\x27\x68\x26\x45\xf4\x72\x7b\x57\xae\xe0\xe6\xd6\xf3\xf6\xe1\xab\x83\x4f\x9d\xbd\x57\x7b\x3d\x6e\xb6\xab\xbb\xc4\x97\x4f\x93\x53\x8c\x54\x81\xff\x89\xe2\x21\xb5\xc3\x37\x13\xeb\xe9\x02\x8b\xad\x0a\xf3\xd2\x08\x52\x96\xe6\x26\xeb\x9c\xf9\x30\x31\xa1\x65\x67\x56\x23\x0a\xd7\x1c\x93\xde\xf1\x22\xed\x64\x5a\x78\xd2\x40\xf5\x5c\x89\x44\x6b\xba\x42\xdb\x65\xf3\xa8\xec\xf4\xd1\xe2\x29\x34\xd3\xcb\x18\xee\xfc\xf4\x2d\x43\xa9\x04\xa3\x76\x3f\xbe\x58\x1c\x25\x61\xed\x9a\x19\xdb\xcb\xf3\xbb\x91\xbd\x22\xe5\x64\x4b\xaf\x92\x76\x69\x0f\x5b\x3f\x67\x0f\x37\x40\xce\x5d\x6b\x91\x1e\xf6\x98\x51\xa9\x52\x0a\x22\xb1\x1a\x78\x79\xd2\xd3\xa7\x05\x9f\x7a\xa8\x05\xe7\x13\x00\xfe\xde\x08\x30\x0a\xc2\x50\x97\xab\x54\xb9\xcb\x6a\x30\x76\x6c\x27\xa3\x05\xf4\x9c\x16\x2c\x18\x04\x31\x11\x09\xee\x7e\x76\x41\x76\x4a\x2c\x87\x16\x20\x53\x30\x67\x9b\x07\x4a\x42\x69\x99\xdc\xd4\xfa\x55\x41\x12\x90\xbb\xca\x43\x0f\x49\xd6\xc5\x34\x5b\xb9\x74\xfb\xc7\x9d\x83\xb4\x23\x0a\xff\xc4\x80\x0c\xb2\x62\x64\x15\x65\x31\x79\x75\xfb\x06\x01\xb0\x20\xc2\x6a\x67\xd9\x56\x36\x6d\xa8\xe9\x2f\xc6\xab\x88\x04\x71\x92\xb0\x21\xbf\x36\xeb\x43\x7b\x70\x0e\x40\x3b\xb1\xf4\xdc\x23\x2c\xf0\x20\xec\x86\x65\xd9\x81\x07\x6b\xa8\x66\x02\x4f\x38\xea\x60\x0d\x59\x56\xd5\x6d\x05\xec\x96\x96\x4a\x9a\x4c\x64\x07\x36\xaa\x82\x6c\x52\xc6\x1e\xa8\xb9\xad\xf8\x99\xe7\xb4\x62\xee\xbe\x54\xb2\x05\x55\xe3\xb9\x6b\x50\x6b\x48\x86\x4f\xa2\x72\x02\x08\x2b\x8b\x8c\x0b\xee\x7a\xa0\xef\x7a\xec\x05\x35\x58\x75\xed\xc4\x0b\x72\x04\x88\x49\xf7\xc1\x92\x17\x17\x28\x00\x6d\x60\x27\x59\xff\x23\xcf\x69\x45\x4f\x41\x2b\x9a\xbf\xae\x92\x6a\xf4\x4d\x1b\x10\xfa\x86\x0d\x88\x89\x12\x48\x08\xfa\xc5\xa8\xa5\x60\xdd\x6e\x6f\xf3\xee\xc0\x92\x84\x22\x2f\x73\xd0\x08\x09\x7e\x9e\x0e\x09\x8c\xc8\xbc\xf9\x2f\xf2\x2c\x80\x7a\x92\x71\x49\x94\x86\x1b\x0b\x92\x2c\xd5\xf0\x57\x9d\x47\x9a\x92\x21\xd6\x30\x97\x39\xca\x48\x64\x2b\x12\x1a\xa9\xd9\x1d\xc8\x2c\x70\xef\x43\xa6\xec\xe2\xfa\x13\x8e\x1f\x72\x91\x50\xdd\x59\xb8\xc2\x31\x5b\x8a\xe9\xe9\xb8\xe0\x51\xc0\xf1\x93\xfd\x69\xbe\xfd\x80\x54\x5f\xad\x9c\x2c\x48\x53\x7a\x6d\xba\x27\xa2\x85\x7d\x5a\x95\x6f\x27\xbd\x4a\xc6\x30\x18\x07\x91\x20\xd1\x03\xa8\x07\x42\x1f\x05\x17\x79\x84\xe9\x3d\xa2\xbc\x53\x25\x1e\xb6\x5a\xc0\xfa\x00\x5d\x79\xea\xb4\x80\x18\x10\xa0\x0a\x6d\x68\xeb\x76\x48\x7c\x49\xcd\xca\xa2\x92\xa8\x01\x45\x4f\xdb\xfb\x74\x49\x4d\x87\xbc\xcf\xb3\x88\x76\x69\xc4\x83\xdf\x0f\xd2\xe2\x3e\xa0\x88\x4c\xf1\xcd\x92\x9e\xb2\x18\x6f\xea\x36\x17\x8b\xe0\x41\x2a\x2d\x3a\x06\x3d\x91\x75\x9f\xdf\x27\x50\xea\xf0\x51\xce\xd9\xa4\xdd\xea\xc9\xd7\x85\x05\xfa\x04\xe3\x4b\xad\xe7\x9e\x68\x3b\xf0\x49\x84\x9b\xca\x0f\x32\x37\x24\x9a\xe7\x5f\xbc\xa1\xb4\x94\x25\x3c\x75\xae\x53\x96\xc0\x1b\x14\xca\xdb\x20\xe7\x8a\x47\x90\x61\x49\x4c\xe7\x60\x2e\xe8\x1a\xe7\x60\x9f\xa4\x25\xcb\x7a\x90\x95\x5a\xbc\x17\x59\x9d\x5c\x4f\x8a\xa2\x7a\x50\x90\xd3\xbb\x25\xbc\x35\x19\xc6\xdc\x19\x55\x0c\x8d\x81\x1b\x36\x6b\x94\x0f\xd1\xde\x2d\xd2\x92\x72\x86\x57\xcc\xa7\xbb\x92\x05\xb6\x6e\xaf\xce\xef\x8f\xcd\xd4\x31\x63\x91\x2a\x7c\xab\xd4\x8a\xc4\x31\x97\x99\xed\x46\x73\x24\xa9\x54\xd3\x59\x72\x2c\xc7\xe5\x74\x90\x85\x7b\x4c\x58\x66\x9a\x94\x1a\xd6\x53\xd7\x5a\xe4\xc2\xc0\xa4\xaf\x69\xfa\x71\x4e\x05\x26\xe7\x7c\x97\x2a\xf1\x32\x17\xa4\xf9\xea\x4c\x50\xab\x95\x30\x7d\xf6\x12\xb0\xb8\xdf\xd2\x7c\x9f\x34\x18\x5f\xb6\xcc\xc0\x43\x35\x60\x91\x54\xf2\x26\xf4\x60\x8d\x70\xef\xa3\x30\xc6\x37\xf6\x07\xca\x1d\xdf\xaa\xb9\xb4\x3c\xd4\x08\x15\xaa\xf0\x8f\xd4\x2f\x2c\x3b\x50\x8b\x11\xab\x41\xa1\x06\x6d\x2a\x27\xac\x4e\x37\xca\xcc\xc7\x1f\x33\x29\x01\x75\xf0\x67\xfa\xfa\xf4\x1d\xaa\x01\x7c\xef\x57\x32\x9c\x01\xcb\x3b\xad\x9d\x02\x6a\x81\xa9\x6a\x0e\x2c\x36\x2d\x99\x78\x50\x75\xe2\xe6\x42\x06\xe5\x59\x63\xfd\x16\x27\x9b\x85\x95\xc4\x41\x86\x62\x31\x60\xf3\xd8\x2e\x73\xa2\xa4\x92\x32\x1a\xf7\x9b\x9c\x6d\x66\x79\x10\xdc\x02\xa0\x42\x06\x0f\xcb\xe2\x6a\xc0\xfb\xe2\xa4\x00\xf5\x6d\x38\x29\x3a\xa7\xd5\x54\x04\xd1\x78\x03\x88\xa2\x29\x29\xd6\x51\x59\x50\xe8\x02\x6a\xc5\x88\xb3\x2c\x2d\x38\x3b\x7e\x82\x91\xa9\x3e\x67\xc0\x22\x21\xa8\x4b\xcc\x6a\xef\xec\x86\xe3\x58\x36\x3d\x05\xfb\x20\x0c\xf7\xbf\xcc\x40\x38\x38\x63\x4d\x7d\xe2\xb6\x13\x42\x32\xc0\x71\x21\x19\xa0\xb5\x5e\x28\x34\x0d\xfd\xd4\x55\x89\x80\x05\x32\xdc\xf2\x63\x53\x87\x8d\x68\x15\x69\xaf\x39\x8e\x65\x35\xe7\xd4\xe0\x77\x2c\x75\x9e\x3e\x7e\x93\x15\x0c\xd9\xfd\xe4\x39\xb5\x4e\x4c\x57\x76\xcc\xe2\x9b\xf3\xfb\x93\x32\xd3\x2d\xb5\xba\x23\x42\xa9\x38\x22\x96\xab\x9e\x3c\x4a\x61\x4c\x84\xb8\x52\xcd\x04\x73\x2f\x25\xeb\x7a\x2f\x3d\x29\x4b\x56\x75\x76\x9c\xa6\xfe\x7f\x6a\xd1\x9c\xb6\x99\x6e\x6a\x41\x51\xd2\x4c\x66\x66\x51\x16\x11\xbc\x5d\xd0\x02\x96\x80\x2c\xaa\x0c\xcb\x40\x67\x27\x65\x09\xc8\xcc\x26\xa6\x0c\x54\x2f\x7f\xf6\xce\xdf\x34\xdf\x2d\x04\xb8\xcd\x5d\x24\x0a\xc4\xd4\xdd\xc8\x73\x67\x3e\x57\x51\xe6\x5d\xf0\x9b\x6c\xa3\xd2\x65\x4c\x57\xd9\xcb\xa9\x5f\x9f\x38\x99\xa1\xd6\x52\x69\xf8\x9b\x5c\xfc\x25\x8d\x3d\x58\xde\x32\x8e\xb7\x63\xc7\x9e\xd3\x8a\x9f\x06\xdc\x38\x28\xae\x56\xad\xe0\x24\x3e\x15\xcd\x1b\x63\x2e\xa0\x13\x03\x6c\x95\xb1\x00\xf9\xc8\x5a\x1a\xfe\xa2\xb8\xf3\x5f\x47\x03\xca\x61\x72\x51\x78\x79\x3c\x8c\x32\x39\x5b\x2e\x1c\x48\x59\x6c\x5e\xd9\x59\xa1\x64\x92\x89\x61\x1d\x80\xbd\x04\xb8\x3b\xb6\x2a\xb4\xc3\xf2\xb2\x49\xfd\xc2\x45\xfb\x71\x65\x49\xcb\x16\x37\x47\x4d\x11\x15\x22\xcc\x9f\x34\x0b\xdc\xb5\x68\xcc\x86\x7c\xd1\x3c\xe7\x54\xd2\x18\xe9\xb7\xa4\x35\xfd\x7d\xf4\x3e\x8b\x57\x5b\x3c\x46\x99\x37\x8b\x67\x38\x86\xb0\x4e\xf5\x36\x59\x25\x10\x5c\x43\x1f\xc7\x43\x08\x3d\xa0\xc4\x91\x31\xf2\xb4\xbe\x94\xb7\x9e\xa7\x59\xfc\x7d\x51\xab\x24\xa6\x6b\x8e\x24\xdf\x10\xdc\xc7\x56\x84\x14\x1c\x03\x44\x6f\x84\x69\x31\x60\xcd\x33\xd5\x9e\x73\xd3\x09\x46\x26\x7c\x86\x52\xe5\x42\x1a\xeb\x9b\x32\x45\x99\xc3\x95\x61\x1b\x35\xd7\xa0\x91\xe8\x94\x8b\x35\x5d\x23\x34\x89\x35\x33\x50\x28\xce\x01\xe6\x78\xc3\xf9\x28\x6d\x01\xcf\x50\x85\x20\x2f\xa2\xf5\xc3\x2f\xbe\xc2\x1a\xb8\xab\x54\x2b\x3f\x54\x7f\xf8\x45\xd1\xb7\x82\x39\x7a\x13\x69\xc2\x74\xd7\x87\xe3\x20\xba\x9b\x5e\xfd\x30\x0f\xf6\x20\x0e\x8d\x45\xc4\x4e\x8a\xa9\x2e\xb1\x83\x24\x12\xab\x61\x1b\xa6\x51\x3a\x14\xec\x1e\x64\xd8\x95\xf2\x72\xf8\x1a\x6f\x58\x86\xc6\xad\x78\x2c\x64\x35\xc1\x67\xe9\xf2\x72\x50\x0f\x92\x4e\x1c\x86\xfe\x34\x01\x79\xeb\x60\x72\x08\xf0\xe2\x1d\x1f\x02\x44\xee\x7f\xfa\x98\xb1\x99\xc3\x98\x66\x3e\x8b\x31\x47\x5b\xcc\x55\x59\x31\x11\x64\x86\x99\x3a\x7b\x5b\x24\xf6\xbd\x3a\x61\x7e\x9d\x24\xca\x97\x82\x62\x17\xa6\x4d\x2b\xb9\x0c\x78\x56\x40\x3f\x01\x15\x1d\xa4\xad\xf6\x6e\x13\xa5\x01\x32\xcb\x3c\x01\x0d\x1b\x15\x6e\x0e\x86\xe0\x48\x4d\xde\x13\x57\x69\xba\x26\x69\x04\x67\x6a\xd5\xc9\x5e\xbc\x02\x23\x44\x1f\x1b\xc4\x8d\xda\x68\xd1\x18\x80\x65\x18\xa6\x69\xff\x33\x34\x0b\x73\x5a\xf6\x3f\xee\xfb\x09\x08\x83\x88\x87\x16\xfd\x06\xa4\x19\x76\x0a\xbc\x71\x77\x18\xd2\xcc\x6f\xf8\x27\x50\x4f\x18\x39\x9e\xac\x64\x71\x0a\xe2\xc7\x73\xa5\x9a\xe5\x3b\xaf\x4a\xba\x99\xd6\x28\x95\x6e\xa6\xa5\x34\xd7\x34\xe5\xa6\x6f\xa6\x67\x08\x50\xc2\x2a\x95\xd3\x9e\xc5\x97\xc7\x71\x3c\x79\xe7\xc3\x28\x88\xc6\x85\x60\x9a\xb4\x1f\x37\x59\x09\xea\x73\x48\x5e\x01\xe9\x88\xcc\x97\x59\xdc\x3f\x33\x5f\x53\xf0\xce\xc4\xaf\x6a\x97\xf4\x9d\xa1\x29\x9d\x73\xc7\x64\x91\x08\xfa\xa1\x3f\x38\x6f\x15\x23\x14\xfc\xe1\x68\xd4\x68\x34\x1a\xad\x34\xdc\x47\xb3\x12\xfa\x70\x0c\x5a\x2c\x1a\x01\xf4\x87\xc1\x2c\x69\x56\x1e\x4f\xaf\x5a\x82\x2b\xf9\xa3\xb5\xd6\xd4\x1f\x0e\x49\x0c\x04\xa7\xde\x00\x93\x8a\x53\x5f\x23\xff\x4f\xbf\x53\xaf\x4f\xfa\x15\x32\xcf\x4e\xfc\xb6\xa5\x70\x10\x4d\x9d\x7f\xc1\x15\xc5\xa2\xe6\x0f\x3f\xcf\x12\xd4\xac\xe0\x43\x2d\x7d\x4d\x82\x9d\xd0\x04\xc8\xfc\x0d\x71\xfd\xd5\xd4\xc2\xef\x8a\x55\x74\x74\x2b\xba\x4c\x32\x1f\xd0\x02\xbb\x4c\x97\x34\xae\xc5\x1c\x70\x32\xa7\x2a\xeb\x8e\xa9\x77\x0b\xe0\xc5\x08\x13\x41\x7d\x17\x24\x89\x3f\x06\xbb\x7e\xe4\x8f\x01\xac\x43\x30\x0d\xfd\x01\xe8\xf1\xc4\xa7\x89\x19\x8b\x10\x58\x69\xfb\x24\x4d\xf1\xed\x3a\xce\xf7\x73\xb6\xa7\x2c\xae\xb9\x75\xaa\x9b\x59\x74\xae\x8c\xb2\xfc\x1a\x0a\x81\x96\x98\x35\x83\xdd\x0a\x0b\x70\x32\x8a\x30\x3b\x1a\x12\x80\x46\xa0\x53\xc1\xf9\xac\xb0\x84\x9a\xf3\x20\xb3\x53\xb4\xa4\x44\x61\x34\x8a\xad\x94\x2c\xfb\xbd\x0b\x00\x31\xff\x23\xeb\x27\xd3\x35\x1f\xd3\xd7\xc2\x7a\x4f\x3b\x2a\xb3\xc6\x42\xb9\xc5\xd7\xbc\x58\x2b\xbf\x82\x73\x2b\xd1\x5d\x9b\x5e\x89\xcb\xf5\xea\xaa\x46\x57\xec\x3d\x97\x67\xc9\x32\x54\xac\x33\xbd\x77\x7e\xc5\x7d\xec\x4c\x12\x1e\xb8\x41\xb7\xea\x74\x3e\xfa\xb9\xda\x86\x82\x1c\x8b\xf9\x32\x03\x7c\x1a\x4c\x21\xc0\x25\x53\xbb\x0f\x1b\xd4\x13\x14\x4f\xdf\xc0\x78\xea\x8f\x7d\x7a\x68\xdc\xd9\xf8\xde\xa8\xa5\x7a\x76\x62\x96\x8b\x63\xb5\xe3\xa6\x3c\x7d\xcb\x65\xc4\x5a\x58\x8b\xaf\xcc\x22\x04\x71\xc3\x01\xda\x16\xb2\xcb\x65\xfd\xd1\x9a\x8a\xfa\xea\xa5\x5d\x58\xcf\xd2\xf2\x60\xda\x1e\xe2\x23\xdc\x09\x03\x20\xc6\x98\x22\x0b\xc6\x0e\xd4\x2f\x65\x28\x3a\x9c\x51\x3c\xf5\x4c\xc8\x75\x71\x01\x17\xb7\x3c\x68\x08\x41\xde\x15\xd5\x42\x30\x42\xb8\x1e\x55\x70\x04\x39\x93\xf1\xb9\x71\xf2\x19\xf8\x56\x66\xd5\x2d\x21\x98\x09\xaa\x8b\x37\xdd\x5c\x11\xcb\x66\xe9\x6d\x10\xbf\x8d\xe5\x0a\x68\xb8\x9d\x39\x03\x68\xd8\xdf\x08\x48\xdc\x63\xb5\xaf\xa4\xcd\x35\x37\x52\x8a\x86\x09\x37\xb9\xc0\x8c\xa3\x72\xff\x3b\x1b\xdd\xde\xba\x44\x90\xae\x73\xd8\x94\x73\x6b\xa6\x8a\xe5\x98\xbe\x79\x0e\xe3\x49\x9a\x57\x3e\xe7\xde\xac\x55\xae\xc6\xd3\x6b\x6a\xbd\x75\x10\xa7\x75\x8b\xc2\x31\x45\x9e\x99\x2c\xd3\x7d\x14\xa3\x60\x00\xf0\x2d\x2a\x1f\x49\x41\x38\x52\x84\xd0\x54\x5c\x86\xdf\x89\xa7\xd7\xfc\x54\xc7\xdd\x26\x54\x10\x2f\x5a\xda\x43\x63\x0a\x81\x61\xb5\x90\xc0\x14\xe2\x7e\xd4\x50\x2c\x60\x95\xc4\x33\x38\x00\xf8\x2a\x90\xdb\x04\xf2\x47\x8b\x72\xc3\x27\xd1\x8c\x8a\xdb\x38\x79\x5c\x1a\xdc\x63\x81\x98\x1d\x52\x70\x52\xdd\x05\xda\x0e\x3c\x58\xf7\xa3\xc1\x19\xbd\x69\xda\x49\xfa\x73\x8f\x08\x09\xec\xc8\x83\x34\x76\x03\x79\xed\xf3\x5f\xf4\x6d\x0b\xd6\x29\xca\xed\x30\x24\xad\x42\x10\x99\xc8\xb2\x63\x3a\xe0\xbc\x19\x61\xcc\xf3\xf3\xc5\x86\x75\x70\x85\x40\x34\x5c\x5e\x36\x89\x05\x2f\xb9\xc6\x9b\x81\x9d\x64\xaf\xcc\xc8\xf6\x2d\xcb\x46\x5a\xf6\xa3\xc4\x30\x26\xc3\x41\x0a\x74\xa0\x15\x51\x25\xbc\x7c\x2b\x18\x99\xf4\xca\x43\x8e\x36\x41\xc4\x60\x09\x2e\x7f\x3c\xc2\x44\x3d\x41\x3e\x44\x8c\x64\x90\xff\xc6\x98\x92\xfc\x62\xef\x6b\xbd\xbd\x77\xc6\x92\x07\x89\x57\xc9\x6b\x7f\x02\x88\xa4\xdd\xf8\x43\x12\x49\xd0\x13\x9e\x2f\x2f\x1b\xfb\x6f\xda\xaf\xc9\x33\xa1\xbb\xd9\x6b\x13\x4a\x6f\x48\xec\x08\x08\x2e\x82\x78\x96\xec\x07\xfd\x30\x88\xc6\x2d\x8b\x14\x91\x1f\xda\xa8\x5a\x74\xf1\xcd\x5c\x5c\x20\x73\x7e\x2e\x2b\x03\xea\x20\x1a\x92\x36\x6b\xe4\x2b\x9b\x02\x62\xff\x4c\xdc\x75\x5e\xea\x77\xd2\xd7\x08\x5c\x21\xa9\x9f\xc2\x03\x3b\x59\xa4\x8f\x91\x18\x80\x83\xa5\x98\xa6\xc3\xd5\x8b\x2f\x53\x4d\x85\x4d\xfa\x21\x3e\xa9\xba\x16\x8f\x15\x22\x38\x52\x07\xd1\xd8\x8c\x6c\x64\xcb\x4e\xec\x91\x55\x4b\x4a\xb7\x42\xc5\xca\xd0\x7b\xbd\x49\x73\xd8\xb4\x98\xcb\x26\x67\xd2\x95\x5b\xab\xde\x2b\x8c\x9d\x12\xf9\x74\x84\xf9\x7d\x54\xad\x92\xa9\x1a\x57\x86\x26\xfc\xbc\xb6\xbd\xe8\xe8\x20\xcd\x28\xaf\xcc\x3f\x95\x4b\x3a\xff\xad\x7e\xcd\xcc\x60\x35\x96\x5b\xa4\x25\xd3\x04\x9a\x24\xcf\x39\x0d\xa2\xae\x41\x77\x0a\xa2\x43\x18\xaa\x32\x4f\x0d\xce\x60\x8c\x67\xa5\xf4\xb3\xde\x87\xf1\x65\x02\xe0\xba\xfc\x93\xc0\x39\xf0\xfb\xe6\xd7\x19\x0c\x9b\xe0\xce\x6a\xb2\x5a\xf8\xb9\x09\x6c\xe3\x53\x3f\xf4\xa3\x73\xc3\x9a\x13\x17\x07\x17\xa7\xc3\x0f\x86\x87\x30\xd4\x09\x25\x15\x93\x24\x18\x99\x2c\xb3\x1f\xb8\xbd\x95\xed\x53\xc0\xd5\xd4\x8f\x86\xd9\x21\x50\x7a\x40\x70\x06\xca\xd4\x36\x65\x59\xd6\xf2\xf2\x92\x09\x98\x38\xfe\x59\xc3\x59\x7d\x7c\x7b\x0b\xea\x09\xf0\xe1\xe0\xcc\x7c\x70\xf2\x31\xf9\x78\xf2\xf1\xd4\xb4\xbe\xde\x3d\x7d\x66\x7c\xf7\xf1\xe3\xaf\x7e\x38\x7d\x60\x3d\xf3\x1c\x8b\x06\xf8\xe1\x05\x8d\x5f\x9d\xf8\xb5\x9b\x76\xed\xf8\x94\x7d\x3a\xb5\x27\xd5\x7a\xed\xf4\xfb\xe6\x83\x07\x86\xf5\xd4\xb1\xb8\xf8\x93\x86\x26\x30\x8d\xa6\x61\xbb\xd6\x89\x73\x4a\xc5\xa1\xc6\xc4\x0f\x42\x14\x1b\x4d\x59\x94\x07\xf0\xd1\x8d\xa6\x18\x46\x15\xb0\xab\x08\x1d\x63\xbc\x46\xb4\x93\x96\x06\x1b\x2d\x88\xa4\xf0\xb5\x27\x1e\x80\x24\x01\xc3\x8d\x6b\x5e\xf1\x85\x1f\x0d\x43\x00\x3f\x71\x8d\x2f\xbb\xad\x82\x11\xf0\xd1\x6e\x96\xb6\x2e\xe1\x53\x5b\xce\x66\xb7\x54\x9e\xcd\x8e\x9e\x43\x25\xad\x7a\x4b\x8e\x0d\xea\x3c\x50\x5e\x2f\xbe\xf4\x52\xc9\x85\x09\xea\x03\xc2\xf5\x7f\x28\xb2\xde\x0a\x9d\x81\xf5\x60\x8e\x98\x83\xad\xf4\xaa\x2b\x34\xc8\x4c\x69\xd3\x36\x79\x93\xef\xe7\x01\xa3\x3a\xde\xaa\x6b\x2f\x89\x97\x4c\xcf\x03\x75\x3c\x04\xcb\xcb\xf9\x26\x9e\xa9\x95\xc4\xf3\x74\x8c\xcb\xcb\x4b\x98\xf5\x97\x28\x54\x73\xbd\x79\xe6\x71\xc5\xf6\xe7\x55\xa2\xea\x8d\xf5\x79\x1a\x1f\xa2\x39\x6a\xfe\x8c\x0a\x24\xcb\x56\x92\xcf\x04\x75\x3f\x44\x3b\xe0\xfa\xf6\x76\x09\xf1\x8c\x5e\xc5\x29\x89\x67\x0f\xd7\x12\xe5\xb3\xc5\x9b\x4b\x4e\x6a\x9c\xa5\xac\xea\xe6\x99\x50\x79\xeb\x48\xd9\xb9\x83\x78\x2b\x1a\x8a\x41\x8c\x0b\x0d\xb9\x98\xc7\xca\x4b\x14\xf0\x9e\x6e\x09\xb3\x48\x8a\xfa\x06\xa2\xb1\x3f\x06\xc3\xdb\x5b\xd5\xec\x59\xd7\x45\xac\xe3\xd5\xb2\x6e\xeb\x62\xec\xe1\x8b\x6f\xb6\x7c\xd6\x84\xeb\xae\xb6\x0a\xb9\xf4\xa6\xf3\x9f\xd5\xb1\x9a\x42\xac\x3b\x61\x78\xee\x47\x39\x35\x71\xce\xb2\xb8\xc8\x26\x60\x7a\x4b\xcc\x8e\xa5\x81\xf4\xb2\xf6\x52\x56\x61\x8f\x9d\x27\xf9\x00\x39\xf7\x3c\x14\x32\xd6\x63\x01\x26\xdf\xe2\x31\xfe\x32\x7c\x96\x00\x0d\x3c\xb5\x03\xae\xc9\x5c\x1d\x20\x18\x92\xc9\x0a\xea\x13\x80\xfc\x1d\x70\xcd\xcd\x59\x2b\x65\xda\x6c\xb6\x95\x8b\x4a\xfd\xc2\x4b\xaf\x10\x16\x39\x77\xa8\x16\x0c\xcc\x08\x4f\xab\x5c\x54\xa4\x3e\xdd\xbc\xf1\x56\xd8\xc1\xbd\x22\x89\x7a\x97\x97\x1b\xb8\x18\xcd\x2a\x8c\x7b\x41\xbf\xb1\x15\x9e\x4f\xe8\x9b\x66\x76\x24\x17\x6a\xd3\x92\xb3\xd3\x62\x9e\xd2\xe8\xc4\xb3\x70\x58\x89\x62\x54\x21\x65\x2a\x13\x3f\x9a\xf9\x61\x78\x5d\x19\xce\x40\x05\xc5\x95\x4b\xd0\xaf\x40\x80\x39\x50\x42\xfd\x24\xdb\x08\x66\x53\x01\x63\x27\xc3\x4a\x39\x09\xf2\xb6\x70\xb9\x79\x58\xd4\xac\x2e\x7c\xb1\x13\xa6\xfd\x52\x8a\x4e\x8a\x21\x7f\x84\x77\xa7\xb9\x2b\x7c\xee\x62\x76\x17\x58\xcc\x06\xbd\x37\x4b\x16\x3d\x24\x4a\x65\x1b\xc2\xf8\x12\x33\x8c\x9f\x72\xd3\x52\x66\x1d\xfd\xe9\x34\x64\x36\x7c\x54\xb7\xc5\x89\x97\xcb\x46\x6f\x5a\xcb\xcb\x06\x09\x9b\x9e\x0e\x83\xec\x12\x57\x60\x6c\x09\x16\x9b\x20\x44\xbe\x09\x2c\x66\xed\x9e\x4c\x7c\x88\x9e\x87\x71\x0c\x37\x83\x8b\x60\x08\xa8\xdd\xb3\xdf\x4f\x44\xa7\xc1\xf2\x63\xda\x4e\x3c\xe3\x0f\xf6\x8c\xaa\x09\x9f\x3a\xeb\xc6\x86\xd1\x34\xda\x06\x13\xf4\x05\x71\x3d\x01\xd1\x90\x47\x75\xaa\x43\x30\x05\x3e\x32\x63\x4b\xb5\xd3\xdc\xdd\x29\xe6\xd5\x3d\xa6\x4d\xd9\x01\xa2\x37\x85\x64\xfb\x9a\xc4\x81\x69\x8b\x8a\xc1\xc9\x75\x79\x48\x55\x96\x0b\x2c\x08\x3b\xd0\x45\x8c\x5d\x62\x29\xeb\x29\x18\xad\x39\xa7\x0e\x2d\x2a\xd7\xfc\xa4\x88\x8b\x79\xff\x34\x10\x71\x44\xf6\x8f\x4f\x2a\x87\x6a\x22\x7a\xe2\x8a\x2d\xf3\xc1\xc7\xe8\xc1\x78\x62\x1b\x1f\x21\x1e\x6e\x4f\x79\x01\x42\x79\x23\xb0\x3e\xf4\x07\xe7\x00\x81\x21\xdb\xcd\x4c\xe4\x19\x7f\x70\xd2\x70\x9c\x5f\x1b\x55\x54\x25\x5f\xdd\x5f\x1b\xd9\x25\x4b\x98\x3e\x25\x57\xbf\x4e\x3c\xbd\x56\x0c\xc8\x2c\x01\x6c\x76\xd1\x64\xbf\xb8\xd8\xed\xad\xa9\xd0\x29\xe4\xb7\x6e\xdd\xee\x23\x6e\xe1\x7a\xc1\x66\x1c\xb1\x14\x9c\xc5\x6b\x94\xe0\xfc\x50\x58\x5d\x69\x4e\x01\x96\x2f\x73\x31\xce\xf6\xf6\xd6\x61\x7e\x74\x85\xb5\xac\x6f\x41\x6f\xaa\xa8\x5c\xe2\xb7\xb7\x4e\x8b\x38\x27\x80\xa7\x9e\x73\x7b\x8b\x9e\x92\x4b\x15\xdd\x6c\x74\x19\x4e\x6f\x6f\xb5\xb9\x4c\x25\xd3\xcc\x34\x33\x2d\x47\x26\xa7\xae\x37\xdd\xa5\x79\x56\x1b\x82\x5a\xd4\x86\x6c\x15\x09\xf2\x07\xb3\x34\x50\x73\xf9\x22\xd1\x4f\x39\xc1\x58\x4e\x1f\xb9\x48\x30\x71\x5b\xbf\xa7\x11\xcf\xed\xad\xe1\xe8\x39\x77\x26\x71\x5f\x9f\x6b\x60\xc8\xcd\x03\x95\x66\x77\x05\x96\x65\x72\xbd\x27\xf5\x4c\x34\xc9\x22\x4f\x3a\xd7\x83\x10\x7c\xc2\x97\x61\xce\xb1\x97\x1a\x37\xfe\x2e\xda\x76\x4f\x73\xa6\xf9\x4a\xf0\x7a\x2b\xd2\x7c\x6a\x13\x9d\xb0\x28\x75\xec\x28\xe4\x42\xd1\x0a\xbd\x4a\x32\x9f\x2c\xd8\x8a\x22\x65\x4a\x49\x0a\x27\xe5\x41\x51\x98\x8d\x6a\xa7\x02\x55\xe8\x6b\x06\xd3\xb4\xee\x04\xf7\x8a\x62\x55\x9e\x73\xe9\xce\x0e\xea\x10\x0d\xc1\xd4\x34\xc2\xa0\xcf\xf6\xfc\xc3\x83\xe7\x8f\x0d\x4b\xc4\xb8\xbb\x57\xec\x3c\xbf\xf3\xa6\x81\xf8\xb8\x1c\xb9\xbb\x47\x15\x4d\x77\x32\x84\x85\x14\xfb\x32\x64\x49\xcc\x58\xf0\x10\x96\x40\x52\x7d\xcc\x73\xe8\x4b\x91\x4f\x30\x48\x2e\x83\x27\x79\xf3\x48\x01\x53\x6e\xc5\x2e\x87\x4c\x52\xe3\xd3\x17\x6f\x60\x3c\x0a\x54\xd3\x4d\xc0\x18\x20\x56\x2a\x3f\xea\x12\xd0\xe9\x2c\x39\x2b\x1e\x2d\x14\x47\xa1\x46\x0e\xd3\x54\xac\x0c\xd2\x63\xba\xe3\x4f\xd1\x0c\x82\xe1\x27\xf9\xf4\x4e\x1f\xdb\x3c\x28\x18\x8d\xb5\xcc\x8e\xc6\xf4\x81\x4d\xe2\xfa\x08\xef\xf8\x2f\xc6\xdd\xf1\xf1\xcc\xf5\x32\x88\xed\xc2\x13\x0f\xd8\xa0\xa4\xc3\x72\xc4\xc5\x62\xed\xfc\x14\x2a\x1b\x10\xce\x50\x48\x03\xc1\xef\x45\x61\x3c\x36\x8d\xc3\xe8\x8c\x08\xbd\x86\x95\xac\x34\xcd\x9f\xac\x87\xab\x97\x3f\xe7\x40\xc7\xfd\x04\xc0\x0b\x00\x87\x95\xa3\x83\xca\x39\xaf\x81\xc1\xbf\xdc\xdf\x7b\x5d\xa7\xb2\xfe\x60\x74\x5d\x10\x1e\xe7\x9a\xcb\x65\xfb\xd6\x06\x07\xc7\xa4\x69\xc1\x96\x05\xa5\xa1\x04\x34\xe5\x2f\x1b\x3b\x5b\xd4\xe4\x74\xf7\x3e\x71\x8b\x70\xb9\x8d\x39\x8b\x28\x5f\x3c\x87\x91\xbe\x22\x09\x58\x84\xb7\x0d\xa5\x49\xbf\x38\xce\x94\x13\xa0\x99\xaf\xc5\x74\xd7\x24\xf4\x2f\xcd\x99\x12\x44\xfe\x00\x05\x17\xa0\xd2\xdd\xab\xc4\xfd\xcf\x60\x80\xea\x46\x2b\x0f\x48\x48\x98\x36\x07\xad\x30\xfa\x77\x84\x58\xd5\xf8\x08\x49\x9c\x75\xfd\xa2\x20\xf1\x8e\xe7\x11\xd5\x7d\x58\xdc\x70\x52\x82\x9b\x81\xb0\x69\x97\x4f\x38\xd2\x5a\x18\x95\xb7\x47\xa8\xa5\x6d\x91\xd2\x52\xd1\xa6\x74\x8a\x10\xfb\x99\x84\x9d\x20\xa2\x8a\x4d\x91\x98\x2e\x4d\x0b\xc6\x0e\x91\xcc\x0c\x67\x9f\xa8\xcb\xe9\xbe\xb0\xdf\xeb\x7c\x62\x61\xfc\xd8\xa9\x96\xe5\x93\x2b\x2b\x96\x41\xa3\x05\xa4\x50\x80\x79\x48\xda\x22\x4c\x41\x90\xb9\x60\x7a\x06\x1c\xf7\xcd\xc6\xda\x9a\x5d\xe1\xff\xb3\x0c\xa9\x6c\xe6\x49\x4a\xcb\x3a\x76\x05\xff\xc7\x4b\xf5\xe3\x30\x93\x45\x8c\x7c\x3c\x0b\xf8\xaf\x00\xf9\x61\x30\x48\x7f\xf6\x69\x32\x57\xf6\x6b\x16\x0d\x01\x0c\x83\x48\x08\x2f\x8c\x60\x70\x0e\xf0\xac\x9d\x8d\xcf\x32\x20\x11\x71\x4b\x13\x7f\x33\x4e\x89\x3f\xc9\x45\x29\x16\xc3\x11\x73\x8e\x2f\x04\x9b\x3e\xf2\x85\xc8\xbc\x03\x21\xa9\xab\xf0\x58\x91\xf0\xf5\xae\x30\xf4\x62\xc4\x3a\x22\xca\xdd\x20\x24\x70\x16\x2b\xd8\x4e\x36\x88\xb1\xea\x9c\x0a\xd2\xd8\x51\x9f\x6b\x6a\xa6\x11\xcd\x26\xa6\xa1\x98\x90\x42\x5d\x61\xee\x78\x06\x1b\x45\x63\x5e\x85\xde\xf6\x06\x19\xdf\xd2\x82\x89\x2a\x69\x86\x62\x01\x94\x12\x8d\xc4\x39\xd3\x73\x0c\x62\x2d\xa2\xcc\x13\xc2\xfa\x55\x02\xea\x32\x65\x81\x13\x74\x4a\x26\xf9\x09\x3a\xcd\x38\x09\x69\x54\x0b\xe3\x5c\x1f\xc4\xd1\xc0\x27\x46\x7b\xa5\xf8\xa9\x93\x41\xff\x65\x5c\xcd\x7f\xa9\xd7\xde\x7c\x1a\x8b\x0b\xad\xe8\x5b\x2e\xbe\x0c\xd8\x46\xac\x19\x4f\xda\x05\x7c\x65\x26\xa5\xe6\x2c\xda\x34\x6c\x97\x2e\x6c\x4c\x61\xa8\x0b\x83\xc8\xae\xf5\x85\xc1\x56\x14\x5c\x4a\x47\x8a\x7f\x27\x03\x95\xca\x51\xc9\x38\xa5\xc5\xa8\x2f\xdb\x92\x3c\x4a\x69\x18\x32\x71\x90\x52\x00\x74\x8c\x84\x9f\x99\x0a\x30\x1b\x21\x86\x70\x3a\x3e\xcb\xcb\x78\x65\x31\x7c\xf9\xfe\x58\xbe\x6a\xc9\xf6\xd3\x89\x23\xe4\x07\x51\xee\x06\xc9\x99\x10\x31\x20\x9a\x32\x91\x4e\x3e\x11\x08\x58\xcc\x24\x2d\x99\xfa\x91\x41\x63\xf3\x91\x4b\xbd\x1d\x78\x27\xa7\xad\xdc\x58\x2d\x29\x96\x09\xb7\xaf\xe2\x56\xb2\x59\x69\x2b\xbf\xc8\xb4\xd5\x95\xe6\xb6\xd9\x43\x06\x28\xdb\xe0\xf9\xdc\x20\x5f\x4d\x48\x4c\x6c\xdf\x31\xc7\x1a\xfc\x90\xcb\x13\xd9\x34\x30\x11\x5f\xb9\x69\xf8\x31\x36\x25\x58\x5d\xe6\xc9\x43\x9f\xf2\xca\x6c\xa2\x98\x01\x4b\x82\x93\x65\xcb\xc3\x25\xe8\x6b\xb6\x0e\x59\x5e\x0e\xcf\x30\xa4\xac\x3f\xc2\xec\x32\xe3\xaa\x67\x54\xd2\x07\x86\x8d\xc4\x1d\x22\x8d\x3d\x28\xcf\x3e\x5a\x89\x64\xe5\x61\xcf\x0c\x62\xfe\x27\xed\x23\x8e\x65\xc7\xa4\x23\x08\x5c\xa1\x4d\x9a\xa1\x37\x88\x23\x2f\xb6\x6c\x69\x72\xa6\xfd\x60\xc9\x28\x49\x27\xf8\xde\xe2\xd8\x48\xdc\x58\x5c\x6e\x9c\x21\xcd\x5d\x01\x06\x7e\x64\x58\xb6\xf8\xf3\x13\x33\xe0\xe1\xa5\x31\x78\xfc\x9d\x93\xc8\x26\xc2\x5f\xd9\x98\x11\x43\xc8\x32\xb2\x08\x29\xf7\x02\x96\x64\xa8\x42\x62\x6f\x94\x2e\x9a\x89\x8f\x06\x67\x20\xd1\xae\x1a\x83\x5e\xb0\x0c\xcf\xc3\xc5\xe3\x51\x05\xdc\xde\xae\x78\x1e\x35\x07\x3b\xb8\x9e\xca\x7e\xc2\xc2\xf2\x12\x4c\xf0\xae\x43\xc0\x06\x76\xc9\x14\x88\x7a\x7b\x0b\xd2\x6f\xf2\xda\x67\x94\x4b\x7f\xdf\xde\x2a\xe8\x89\xab\x73\x0a\x31\x00\xd2\x52\xa3\xab\x8a\xbd\x91\x56\x51\x7e\xc1\x70\x55\x96\x72\x85\x58\x4b\xde\xd2\x12\x12\xd6\x08\x87\x88\x27\xf0\x92\x07\xb2\x99\xcc\x5e\xd0\x65\x90\xd5\x22\xab\xe3\xf6\x76\x29\xb7\x65\xe2\x02\x20\xfb\x99\x16\x90\xe6\x27\x2d\x24\x3d\x2a\x3f\x39\xb2\x3c\xdd\x89\x4a\xd8\x53\x64\xae\x81\x8e\x93\x46\xf7\x3c\xb3\xb2\x82\x1a\x63\xa8\xfc\x99\xc5\xbd\x8c\xf3\x47\x14\xf7\x2a\x96\xb9\x89\x58\xf1\x30\xf5\x04\x4f\x4f\x18\x6e\x0d\x55\x80\x89\x34\x38\x70\x33\xdc\x7c\xf7\x79\x7b\x05\x82\x15\x36\x53\xce\x2d\x4b\x9b\x2a\x9f\xc1\xd2\x39\x2b\x3e\xec\x6d\x6f\x10\x6c\x15\x71\xc2\xc0\xd3\xc7\xeb\xa0\xfa\xb8\x09\xee\xf0\x6d\xcf\xce\x9f\x99\xb8\x8b\x5a\xb4\x2d\xbb\xd8\x48\x9e\x9b\x53\xf0\x00\xeb\xb0\x59\xe0\x68\x4e\xc0\xa9\x7c\x0c\xe4\x4e\x6f\x29\xb6\xbb\x00\x5e\x31\x4e\xeb\x6a\x52\x36\x73\x55\xf3\xc7\x65\xc6\x53\x4d\x82\x2b\x33\xb1\x73\x77\xbb\xfa\xca\xca\xca\x8a\x75\x87\xd4\x1d\x16\x79\x53\x45\x87\x63\x45\x87\xd1\xa9\x6a\x86\x0f\xf8\xce\x98\xec\xe2\xad\xb2\xe8\x1b\x55\xdc\x21\xad\xd4\x30\x5f\x07\xab\x9b\xee\x93\xc8\xa2\x96\x64\x7c\x3b\xc5\xdb\x53\x6e\x6b\x5d\x72\x71\x11\xd5\xa6\xbb\xe4\x30\x5b\x72\x90\x72\x1d\x48\xda\x6f\x2b\x9c\xb7\xe0\xb4\x5c\x5e\x2e\xb2\x0b\x5e\x90\x7f\x84\x4b\x09\x4c\x01\xbe\xdc\xa5\xbf\xf8\x3b\x7a\xe8\xb3\x57\xe4\x07\x7e\x93\x3b\x45\xbd\x20\xf7\xa4\x8c\xc0\xdd\x22\xd7\x9b\xae\x8a\xb9\xc7\x90\x02\x70\x6a\x62\xac\x5c\x65\xd9\xe9\xb2\x0e\xc4\x63\x95\x9d\xa8\xcd\x5c\xfa\x2b\x29\x05\xa0\xa6\xb1\x7d\x62\x7a\x5c\x48\xef\x35\xb7\x45\x96\xfb\x09\x17\x6e\x4a\xc9\xa0\xc4\x52\x04\x56\x69\xc3\xb2\x8c\xf6\x5e\x6d\x13\x7d\x71\xae\x79\x12\x0f\x7d\x11\x0c\x14\x19\xa9\x34\x69\xc5\x4e\x4e\x6d\xe8\x39\x76\xec\x39\x76\x42\x93\x70\x91\x18\xd3\x3c\x2e\x0d\xdd\x52\x7c\x0f\xdf\x9b\x86\xe0\x4d\x1c\x44\xa8\x8d\xcc\xc8\xb2\x43\xcf\x7f\xea\x3d\x5c\x5b\x5b\x59\x5b\x77\x9b\x8d\x96\xff\xd4\x6d\x3c\x5e\x8f\xab\x5e\x48\xf1\xc5\xed\xd2\x61\xf2\xad\xa7\x9e\xbb\x8e\x19\xbf\x10\xb7\xe0\x5a\x4d\x33\x26\xbc\x11\x61\xb4\xbe\x26\x08\x36\x01\xa7\x2e\xb4\x63\xcb\x4e\xc9\xd2\x4c\xee\x2c\x82\x14\x71\x68\x28\x96\x8e\xec\xd0\xb2\x29\xb7\xd2\x5c\x72\x84\x7a\x4b\xee\x1d\xe6\xfb\xa3\x6a\x88\xfb\x65\xd9\x51\xd5\x0b\x79\xb2\xc7\x78\x79\x79\xd1\xa6\x91\x5a\xac\x67\x93\x1f\x23\xf6\x79\x78\xf0\xfc\x31\x5e\x4b\x43\x00\x0d\x9b\xba\xbe\xd4\x8f\x0e\xea\x1d\xae\xdd\xdd\xf5\xa7\x44\xee\x72\x74\xa0\xd7\x9a\x78\xc0\xce\xac\x38\xc8\x9b\x4c\x10\x5d\x4c\xe5\x4f\x0a\x08\x56\xb1\xb4\x86\xd2\x22\x96\xe9\xa5\x7c\x98\x80\x7d\xe4\x23\xf0\x89\xc9\x4b\x8e\x0e\xea\x6f\xd2\x87\x66\x56\xe8\x30\x3a\x8f\xe2\xcb\x88\x67\xab\x0d\x81\x3f\x0c\xa2\xf1\x6e\x3c\x0c\x46\x01\x80\x9f\x3c\x83\x6b\x43\xa1\x1f\x84\xca\x37\x7e\x18\xc6\x97\xd4\x0a\x94\x0c\x3f\xb5\x34\x11\x2c\x20\xe3\x64\x70\x10\x4c\xc0\xab\x60\x12\xa0\x4f\x5e\x03\xac\x32\xe1\x02\x1a\x71\x32\x52\x24\x03\x91\xb2\xe2\x01\xff\x78\x23\x20\xb3\x1f\xc6\x61\x0a\x94\xbe\x49\x4d\x1c\xde\xc1\x00\x65\x82\x3c\xfa\x72\x13\x0c\xdc\x46\x5a\x21\x55\xbe\x6f\x45\x83\x18\xf7\xd1\x33\x66\x68\x54\x7b\xcc\x7a\x31\xf1\xaf\xe8\xa2\x21\x71\xd9\xa2\x01\xf0\x5c\xa7\xc1\x30\xbd\xf4\x61\x74\x18\x05\x93\x29\xbd\x67\x0a\x06\x92\x03\x61\xcc\x93\x8c\xd2\xe2\x54\x48\x68\xc9\x6d\x87\x0e\xda\xb6\xcb\x3e\x1b\xec\x73\xc5\x2b\x42\xaa\x8f\x01\xda\xf5\xa7\xa6\xb1\xc1\xef\x71\xdb\xaf\x3c\x63\x9b\x6b\xa6\xb7\x7b\xc2\x0f\xda\x99\xfd\xeb\x04\x81\xc9\x21\x1a\x3d\xce\xe8\x2e\xbe\x79\x15\x0f\xce\xc1\x50\x78\x37\x70\xdf\xf8\x08\x01\x18\x89\x79\xc8\x66\xd3\x21\x11\x1d\xb2\x9a\x64\xfe\xa4\x62\x13\xff\x02\x0c\xf3\x53\x8a\x6a\xbe\xb3\x39\x45\x36\xa6\xa3\x03\x81\x21\x55\x4e\x52\xbc\xfb\x94\x14\xeb\xbc\xea\x76\x76\x3c\xb7\x1c\x54\xaf\xbd\xed\xad\xd8\xb9\x89\x5d\xc6\x6d\xb3\x37\x9c\xd7\xee\xcf\x46\x1e\xa2\x57\x1a\xb6\x66\xe2\xc4\x63\xc3\x8a\xa1\xf0\x72\x3e\x1c\x27\xde\xc9\xe9\x5d\xbe\x29\xbd\x20\x90\xaf\x75\xf2\x98\x54\x78\x9e\xb2\xe2\x82\xf8\x78\x63\x36\x32\xc1\xed\x6d\x1a\xe5\x86\x3c\x6c\xc3\x31\x11\x6d\x30\x3e\xbf\xb4\x45\x09\x74\x51\x0e\x89\xfb\xa0\x22\xc0\x5c\xb8\x1b\xb3\x51\xb1\x33\x98\x5c\xc5\xe3\x7f\x1d\x34\x73\x04\x9c\x0b\x3d\xed\x61\xb1\x0d\x4c\xea\x54\x4d\x4f\x93\x01\x39\x4b\xc4\xc4\xcc\x4c\xdf\x9f\x38\xa7\x1e\x28\xa5\x4d\xe0\xc3\xb1\x3e\x5c\x39\x81\x01\x48\x52\xa3\x34\x93\x69\x6a\x9e\x0f\x6d\xd7\x49\x15\xce\x8e\xe7\x05\xcb\xcb\x66\xe0\x21\xcb\x0e\xf8\x59\x82\xca\x5a\xf6\x87\x17\x7e\x34\x50\xe8\xca\xa7\x71\x52\xa5\xc2\x6e\x5d\xd5\x29\x00\xe7\x3d\x30\xf1\x83\x28\x88\xc6\xd2\x00\xc8\x22\xc7\xfe\x6c\x94\x32\x2a\x0c\x72\x29\x31\x30\x5c\xbc\x1b\xdd\x03\x9e\xed\x96\x42\x1c\xc4\x51\x32\x9b\x80\x7b\x02\xad\x56\xe7\x80\x0d\x92\x4e\x8c\x37\x58\xa5\x6f\xad\x20\x83\xec\xcf\x46\xfc\xea\x3f\x1b\xb1\xc9\xc2\x12\x50\x4d\xe3\x84\xb5\x20\x6c\x4b\xc5\xc1\xb8\xc8\x34\x6f\x78\x4f\x4b\x17\x9a\x50\x49\xbc\x50\xfb\x17\x0a\x99\x33\x0d\x05\xc3\xc1\xa5\xa7\xba\x9c\xf4\x82\x1d\xf8\x92\x36\xb0\x58\x65\x0c\x50\x4e\x97\x61\xf1\x0c\x2f\xe9\xd6\x9f\xd6\xda\x7e\x95\x9e\x00\xd9\xb3\x9e\x7c\xc2\x90\x67\x6c\x23\xe3\xa7\x0d\x79\xc6\xb6\x7e\x7e\xf2\x90\x67\x0d\x5b\x3a\x85\xc8\xb3\x95\x52\x82\xb0\x18\x80\x05\x9a\x48\x9d\xca\x05\x0a\xcc\x68\xc6\xfa\x24\x13\xad\x40\x01\x05\xe5\x38\x4d\x04\x00\x9c\x30\x9c\x28\x94\x18\xec\x59\x4f\x78\xc6\x8f\x5e\x47\x78\xc6\x8f\x61\x57\x78\xc6\x8f\xe4\x86\xf0\x6c\x85\x1f\xd3\x85\x93\x4d\xad\xfe\xe1\x8d\xcd\x3b\xcf\xdd\xb2\x62\x4e\x5a\xac\xb1\x18\xb4\x9f\xca\x44\x2c\x76\xb8\xdf\x87\x0f\x2d\x90\x2b\xcf\xdf\x2a\x15\x03\x45\xcf\x2f\x25\x70\x66\xdb\x8b\xaf\x31\x2d\xc9\x55\x02\xde\x7a\xab\x96\x6d\xa6\x6e\x12\x6c\xab\x48\xa7\x5a\x66\xaf\x1e\xa2\x6e\xb2\x0b\x90\xbf\xbc\xcc\x5d\x81\x2c\x5a\xff\xb1\x65\xa7\x0e\x17\xf4\x89\xfb\x90\x8b\xc6\x29\x87\x58\x1f\xc1\x78\x82\xf7\xbf\x0e\x49\x50\x9f\x65\x8d\xc8\xf9\x44\x55\x57\x1a\xf6\x4a\xc3\x6e\xac\xad\x59\xf8\x52\xb3\x68\xe5\x5e\x7c\x29\xd6\x4c\xe3\x9a\x31\x63\x79\xe2\xcd\x47\x2d\xe8\x9b\x91\xf7\xe4\x61\xd5\xac\xb9\xdf\x93\x04\x36\xc8\xff\xf0\xcc\x59\x77\x9a\xae\x65\x47\xb7\x1e\xb4\x89\x91\xf2\xae\x51\x55\x35\x1c\x59\xd5\xb8\x9a\x28\xec\xd9\x85\x00\x65\x82\x93\x47\x93\xfa\x06\x67\x29\x8c\x98\xd7\x84\xdd\xb0\xaa\x2b\x8d\xd6\x82\xcd\x15\x60\xcf\xa6\x46\x93\x56\xfb\x43\x43\x59\x80\x38\x48\x34\x0b\xd3\x4e\x35\x35\x7a\xed\x6d\x3c\x96\x14\xaf\x64\x79\xd9\x8c\xbc\x95\x86\xed\x66\x8f\xd6\xa3\xaa\xe7\x34\x57\xe5\x07\x6e\xb3\x21\x3f\x68\x34\xa3\xaa\xb7\x82\xef\x8f\x2b\x8d\x45\xc9\x28\x11\x8d\xfa\xf2\x34\xc9\xf7\xd4\xd5\x28\xe7\x76\xc9\x8d\xab\x00\x84\x31\x34\x0d\x76\x07\xab\x90\x2e\x56\xc8\x78\x10\xc3\x2d\x32\xe2\x36\xb0\xee\xb8\x58\x33\x9d\xc7\x05\x1b\xf3\xc2\x72\x4b\x8d\x72\x0a\x42\x80\xfc\x05\x31\xe3\x46\x19\xb7\xc8\x9d\x80\x5b\x4b\x85\xa2\xd9\x29\x6d\x5a\x2d\x29\x86\xaf\x58\x0a\xb7\xc8\x85\xa3\xe2\x73\xcc\x5c\x80\xe2\xe3\xfe\x6c\x94\xca\x90\xf3\x60\xea\x03\x3f\x0c\x69\xc4\x8a\xfc\x7b\xab\xf0\x84\xf2\xbc\x1e\xa7\x56\xae\x69\xcf\x83\x8a\x17\x98\xaf\xf5\x00\xb3\x81\x22\x9c\x09\xac\x0c\x03\xea\x5b\x44\x62\x0e\x57\xd0\x19\xa8\x24\xb8\xf0\x92\x51\x24\x33\xa5\x96\x4a\x54\x46\x2f\x97\x9e\xa7\xbe\x7c\xae\x0b\xb4\x66\x26\x45\x4d\x50\x80\x9e\x99\x1c\xa9\x84\x67\x39\x93\x24\x0d\x6e\xba\xda\x85\x3b\x78\x36\xf2\x05\x48\x09\x40\xe9\xad\x59\x04\x95\x85\x5c\xcc\xcf\x6c\x7c\x65\x36\xbf\x63\x39\xf9\x2b\x17\x7e\x38\x03\x95\x51\x0c\x2b\x06\x9f\xc2\x35\xc0\x00\x1a\xcd\xca\x77\x55\x60\xd1\xc5\x13\x24\x71\xad\xe1\x34\x1a\x46\xf3\x9b\xee\xb6\xe2\x3a\x24\xf4\xaf\x11\x6f\xa7\xa1\x1e\x9c\x53\x02\xce\x29\x80\xfb\x36\x38\xee\x5d\xc9\xe5\xba\x40\x6b\x55\xb1\xa2\x2e\x67\x8f\xda\xe2\x9d\x83\xeb\xc4\xa4\x87\x75\xc7\xb5\xea\xa3\x00\xcf\x58\x13\x78\xcf\x96\xd4\x88\xde\xde\x02\x32\x17\xf1\xe6\xd5\x46\xa6\xf5\xd4\x6d\x3c\xb6\xea\x13\x7f\x8a\xeb\x18\x1f\x3f\x5e\x19\x55\x7c\x24\xdd\x4c\xfd\xa1\x29\x97\xac\xa3\x98\xed\x36\xee\x43\xcb\x6e\x58\x16\x53\x6e\x72\xa7\x29\x49\xa0\x00\x2e\x2b\x3d\x30\xde\xba\x9a\x9a\x3f\x9c\xfc\xe2\x2b\xb8\x3b\xfd\xa1\xd8\x4f\x49\xfa\x24\x6f\x52\xec\x7b\x05\xe1\x5f\x4b\xb0\xd8\x8d\xe5\x65\x78\x02\xeb\xdb\xaf\x4e\xeb\xdb\xaf\x88\x2e\x26\xfb\x49\xb4\x35\x30\xdb\x29\x89\x05\x20\x9e\xd3\xd9\x1d\xd0\x0e\xbc\xe2\x85\x8b\xe6\xeb\xe3\xde\xf6\xf9\x2e\x89\x97\xc2\x98\xfb\x0b\x07\xc9\xd4\xc7\xd3\xdf\xe8\x74\x5c\xc3\x0e\xf8\x95\xc7\xb1\x5d\xcb\x06\x2c\x99\x6d\x7a\x29\x34\x5d\xcb\x6a\xd6\x5c\x5a\xdd\x0c\xd2\xd7\x64\xf3\x35\x89\x5f\x82\x29\x80\x88\xd3\x64\x68\x9a\x56\x62\x75\x2b\x71\x95\xe5\xb2\x29\xd2\xba\xb3\xdf\x55\xfb\x47\xf1\x3b\x22\xc9\xd3\x07\xc8\x0d\xb9\x85\x9e\x79\xc6\x2f\x8d\xe5\x65\xf4\xd4\x33\x7e\x6d\x14\x7b\xbc\xdf\x35\xd4\x02\x43\xa6\x3f\xcf\x4b\x0b\xab\x08\x23\xab\x12\x5c\xe0\xbe\x1b\x2d\xbc\x51\xae\xab\xab\xae\xab\x6b\x35\x4d\xc8\xae\x7f\xb7\xb7\x90\xa9\xf0\x0d\x3c\xf4\xfc\xab\xd5\xc4\x9d\x70\x58\x27\x9e\x18\xf7\x04\xcf\xa1\xaf\xe3\xb9\xc5\x13\xc2\x9f\x56\x3d\xd4\x84\x27\xce\xa9\x87\x08\xf4\x0a\x83\xbe\x6e\x2c\x2f\x1b\x4d\x63\xc9\x43\xeb\x69\x3d\x0d\x21\x70\x4d\x25\xe1\xf8\x0b\x61\xda\xd5\x11\x48\x90\x89\xac\x75\xd5\x54\xc0\x14\x6d\xaa\x91\xb7\xc5\x69\xa7\x5b\x79\x28\x08\x59\x64\x14\xba\x56\x90\x14\xd6\x37\x37\x3f\x72\x4b\x85\x58\xd8\xb0\x08\x16\xe6\xc7\x2b\xb7\xff\xf1\xe3\xed\xc7\x2b\xe7\x91\xf5\xc0\x22\xab\x8b\xcc\xa1\x60\x64\x06\xe9\x10\x99\x01\xa6\x9a\x61\xd8\xc1\x89\x7b\x4a\x76\x88\x4d\x1f\x01\xcb\xc6\x4b\x02\x5a\x5f\xf1\xdb\xaa\x87\x28\x9f\x9d\x46\x92\x39\x71\x4e\x79\xdc\x0c\xa4\x14\xd2\x2e\x2f\x9b\xb1\x67\xa0\x38\xae\x84\x31\xb5\x76\x17\xea\x60\xe0\x4b\x1e\x79\x10\x44\x43\x70\xb5\x37\x32\x8d\x3f\x20\x71\x86\x63\xcf\x00\x93\x3e\x18\x0e\xc1\xb0\x02\x92\x81\x3f\x05\x69\x55\xb1\xa4\x65\x73\x3c\x6b\x18\x6b\x8a\x83\x24\xcd\x66\xed\x53\x57\x9e\x0a\xb8\x9a\x06\x10\x0c\x31\x2c\xa9\xa2\x65\xc7\xeb\xa6\x64\x50\x5f\x32\x04\xcd\x8a\xdf\x8f\x21\x62\xc6\xfb\xb1\x8d\xb1\x4a\x57\x8e\x49\x7f\x11\x95\x4a\x36\xc6\x28\xed\xf0\x92\x63\xdd\x15\x89\x57\x85\x1a\xf2\xad\x9b\x22\xdc\x2a\x62\x90\xd9\x60\x64\xbb\x11\xd4\x2d\x5d\x61\xa2\xc1\x2a\xa6\x99\x97\x55\x83\xb6\x6b\xad\x37\x9a\xae\x45\xd1\x2a\x70\x27\x6c\x36\x17\x94\x65\x54\x26\x87\x4b\x9f\x80\xd3\x13\x74\xda\x0a\xd6\x83\x25\xf2\xbb\x1e\x8c\xa3\x18\x82\x75\x32\xff\xa9\xeb\xe9\x33\xe3\xaf\x19\x5c\x29\x5e\x50\x16\xac\x4b\xdc\x88\xd1\xc5\xb5\x83\x68\x5c\x79\x5c\xeb\x07\xa8\x32\xa0\x85\x2a\x98\xe9\x69\x56\x9c\x2b\xa3\x8a\xc4\x13\xcf\x91\x8f\x3c\xab\x19\x10\x27\x67\x1a\xfb\xc7\x3e\x81\x36\x3a\x65\xa1\x42\x0b\xea\x81\xe5\x65\x45\xc3\x60\x88\x59\xfa\xaa\xc1\xda\x2b\x38\x4e\x20\x6b\x51\x70\xfc\xba\x30\x0f\x9c\x8a\x8d\x6b\xbf\xde\xef\xe6\x52\x71\xd8\xc8\xfa\xba\xea\xf1\x3c\x1b\xa2\x54\x26\x4b\x83\x62\x22\xab\xd9\x70\x94\x85\x8a\x09\x4e\x4c\xb4\x78\x4f\x84\x97\x15\x8c\x5b\x65\x97\x75\x47\xcd\x85\x6e\x6e\x75\x14\xd8\x33\x36\x34\x8b\xb2\x62\xbb\x8e\xc5\xc2\x80\xbb\x4d\x9d\x04\x20\xef\xb1\xee\x21\x31\x38\xf7\x0a\xad\xa7\x53\x6e\x71\x91\xb4\x48\x09\xaa\xfc\x44\xeb\xee\x4a\xa3\xf9\xd8\xb1\x64\x77\x21\x21\x51\x73\xfe\x4d\x92\xa5\x7b\xeb\x81\x31\xee\x15\x91\xa9\x13\x93\x66\xf1\x6a\x59\x59\x6b\x16\x2a\x8a\x89\xae\x4c\x24\x95\x7e\x58\x2c\x9d\xa5\xcf\xc9\x95\x7d\x54\x2c\x9b\xe5\x77\xc9\x95\x75\x1b\x4d\x61\xb9\x11\x25\x5b\xfe\x7a\x2a\xa7\xf9\xc8\xd5\x6f\x28\xba\x21\xa7\xd3\x90\xcb\xaf\x38\xc5\xf2\x05\xe7\x46\xb9\xca\x6a\xbe\x8a\x56\x47\x29\x8d\xf9\xaa\x9e\xc0\x5a\x6a\x3c\xcc\x93\x2e\x9d\x60\x7d\x7f\x70\x4e\x12\xf0\xee\x83\x68\x98\x6c\xf0\x5f\x72\x93\x2e\x58\x29\x8a\x37\x18\x27\x54\xd4\x89\x35\xf5\x22\xb1\xfc\x9c\xba\x8e\x06\x44\xce\x46\x6c\x42\x4c\x79\x00\x1d\xa7\xb1\x58\xa3\x9b\xbd\xf6\xf6\xcf\xd5\xa6\x5b\x18\x46\x16\xdc\x6c\x6f\x86\xa6\x33\x94\x23\x8b\xe3\xe6\x17\x6e\x21\x16\x5a\xbe\xc6\x4a\x7e\xc2\xa7\x23\x31\x01\xc8\x27\x83\xb0\x45\xce\xfa\x42\xc5\x27\x4d\xb4\xae\xa9\xca\xdd\xcb\xda\x21\x22\x10\xde\x9d\xf9\xe8\x13\xb7\x54\x5c\xb0\xb8\xa7\x97\x41\xa6\x85\xec\x05\xca\x78\x06\xe5\x55\x0c\x4b\xd7\x51\x65\xf3\x85\xad\x4a\x0d\xfc\x3e\x20\x75\xd8\xaa\xbb\x4f\x7d\x33\xc4\x75\xf6\xa8\xc9\x48\xbf\xaa\xd8\x78\xa4\x94\x51\xf9\xbd\xc7\x59\x7d\xdc\xcc\x4b\xac\x99\x1a\x27\x2d\x81\x87\xd3\xd4\x14\x2a\x6e\xbd\xf9\xe6\x54\xdb\xb6\x99\xfa\x8d\xcf\xaf\x29\xb6\xc9\xd4\x20\xa6\xbc\x8d\x37\x1c\x67\xb5\xd8\xed\x0d\x29\xc6\x44\xd6\xef\x34\xeb\xc2\x37\x9c\xa8\x9b\x5b\x9d\xca\x1b\x18\x5c\xf8\x08\x88\x07\x2b\x3b\x59\x29\x37\x25\xca\x16\xb8\xe2\xa7\xe3\x7a\xfc\xfb\xd6\x7e\x27\xfd\xde\xd9\xef\xa6\xdf\xf7\x84\xe7\x47\x07\x6b\x0d\x4f\xa8\x7c\x62\x7c\x74\x8c\x53\x91\x65\x13\x5e\xfd\x7b\xda\x37\x7f\xc5\x38\xd5\xfa\xcb\xa6\xb9\x05\x33\x75\x1d\x69\xa7\x5f\x56\x27\x4b\x5a\x9a\x5d\x83\x68\x35\x54\x56\x6d\x14\xc3\x4b\x1f\x0e\x0f\xfc\xfe\x3e\x8a\xa7\xb9\x06\xa3\x39\x35\x27\xcf\x01\x18\xe6\xea\x5c\xf0\x2e\xa7\x20\xc4\xb7\xa3\xd2\xb7\xb0\xac\xbd\x7c\x4e\x4c\x47\x6a\xf7\xdf\x57\x54\x25\x2a\x20\xd7\x10\x8b\xfd\x07\xba\x62\x8e\x54\xec\x3f\xd4\x8e\xdb\x7f\xa4\x7d\xf3\x57\x45\xd0\xc0\xfa\x8a\x9b\xf6\xb8\xd2\x8e\xef\x4b\xac\x2d\xed\x15\x43\xee\x32\x95\xe7\x18\xeb\x86\xd4\xd5\xff\x58\xa2\xe1\x5f\x95\x48\xf8\x07\x39\x24\x64\xf1\x12\xb7\xdc\x14\xd4\xda\xa6\xd5\x32\xfe\xc0\x58\xf2\x60\x1a\x9d\x27\xbd\x78\x6f\xed\x77\x0c\x1b\x52\x51\x46\x2a\x6c\xd6\x48\x35\xee\x58\x11\x24\x22\xfa\xd7\xb4\xb4\xfa\xcd\xdf\xe0\xaf\xb6\xf6\x3b\xf5\x4d\xfd\xa0\x87\x41\x04\x8a\x93\xec\x37\x7f\x53\xac\xbe\x75\x9f\x39\x93\xdf\xf1\xb2\xe4\xc8\xf2\xaa\xf9\xcd\x7f\x2a\x36\xf1\xa2\xb4\x09\xbe\x78\xe4\x17\xb9\x14\xe3\xa6\x25\xc3\xff\x3b\x22\xfc\xdd\x92\xbd\x80\xf2\x64\xaf\xd4\x84\xf8\xbb\x22\x94\xd7\x3a\x6a\xff\x17\x62\xa9\x3d\x5d\xa9\xbf\x27\x96\x7a\x23\xa7\x80\x2e\x18\xec\xf0\x39\x91\xe9\x18\xd4\x37\x7c\x09\xdb\x7f\x20\xb6\x70\xa4\xc3\xe3\x1f\x8a\xa5\xde\xe9\x4a\xfd\x23\xb1\xd4\x7b\x5d\xa9\xff\x5a\x2c\x75\xac\xa7\xb2\xac\x63\x32\xfe\xe0\x64\xdd\x6d\x35\x06\xf2\xba\xfb\xcd\x7f\x23\x00\x3b\x31\x4e\x72\x4b\x4d\x41\x23\xa5\xec\xab\xdc\xca\xb0\x40\xd6\xce\x7e\x57\x26\xe2\x9f\x48\x58\x7c\xfc\xa8\x5f\x64\xff\xad\x54\xf2\xb4\x74\x6b\x90\x74\x52\xea\xa1\x34\x81\x85\xd7\x3f\xae\xb7\xe4\xa1\x6c\x37\x61\x96\x4a\xd4\xaf\xc7\x7c\xf0\x2b\xf3\xe3\xb0\x6a\xb5\xcc\xfa\xf7\xd6\x2f\x1e\x58\x2d\xb8\x6e\xa6\x45\x3c\x78\xd2\x38\xcd\x8b\x7a\xf7\xc8\x36\x73\xe2\x9e\xda\xc0\xb2\x9a\x39\x61\x02\xd3\xa9\xec\xed\x77\x54\xe1\x17\x38\x5c\xcb\xba\xbb\x2b\x99\xa2\x12\xf9\xfe\x3b\x89\x28\xbf\x9a\x3f\x88\xdf\x32\xd1\xff\xb1\x38\xed\x3e\xfd\xbc\x2d\x10\xbc\x2b\x05\xbc\x09\x08\x95\x44\x53\xde\xec\xbf\x85\xb3\x4a\x98\x04\xad\x59\xd9\xda\xef\x54\x9c\xab\x86\x53\x31\xaa\x48\x77\x86\xdd\x89\x78\xfe\xe1\x7c\x3c\x8d\xc7\x24\x98\x9c\x84\x66\xfe\x8e\x3d\x0a\xc2\xd0\x34\xb6\xb4\xe7\xa6\xd4\xe6\x1f\x7d\x2b\x6d\xf8\x1a\x50\x28\xb6\x98\xf7\x83\xf1\xc0\x60\xa7\xa0\x54\x53\xd2\x6f\xe4\x50\xe3\x26\x0d\x88\x59\x33\xfc\x92\xe9\xd5\x04\x35\xa3\x99\xa9\x02\x25\xed\xfa\xb6\xaa\x28\xd5\xcd\x49\xe5\x1e\x18\x4d\xde\x48\xbe\x4f\xac\xd1\x6d\xa6\xa3\x7f\xc1\x3e\xbb\x5a\xc8\x5c\x89\xf8\xad\x1c\x39\x95\xd6\xe1\x79\xf2\x47\x95\x07\x15\x9f\xcd\x72\x8d\xcc\xee\xa7\x37\x31\xa7\x81\x05\x66\x8b\x29\xed\x07\x96\xf4\xeb\x7b\xe9\x57\x55\xfa\x55\x93\x7e\xd5\xa5\x5f\x0f\xa4\x19\x68\x23\xed\x1c\x2c\x32\x63\xc1\x88\x4a\x96\xa1\x95\xfa\x51\x28\x19\x45\x36\xe3\x30\x40\x53\xca\x8f\xa8\x34\x8b\x82\x56\x2b\xb5\x30\x0d\xd6\x0d\x33\xd3\x40\x6d\x3b\x5e\xd0\x34\x2c\xfc\xe0\xf6\xd6\xa8\x09\x2f\x5c\xfc\xe2\x7b\xf6\xa2\x2e\xbc\x68\xe0\x17\x55\x63\x09\x2f\x04\xe3\x01\xfe\xe4\x32\x82\xed\x15\x2f\x98\x2f\x0e\x0d\xe3\x71\xa6\x2d\x4f\xd1\xad\x24\x00\x51\xad\xf9\x77\x55\x54\xfd\x8e\x68\xca\xb5\xa2\x78\x71\x04\x1f\x2a\xce\x3f\xfc\xfc\x51\x91\xd3\x2f\x5e\x91\x05\x38\x8f\xcb\xcb\xa7\xd7\x5b\xa1\xca\x13\x4d\xd3\x86\x57\x76\x91\x51\x49\x65\x77\xc0\xf5\xd4\x1f\xb2\x00\x01\x1c\xca\xb3\x6f\x85\xe2\x66\x50\xea\xcf\x95\x28\xd6\x07\x05\xc8\x4c\x39\x6b\xe7\xd9\x4f\xf2\x54\x00\x18\x66\x27\xdb\x44\x0d\xbb\x68\x9f\x4d\xae\x3d\x0d\x43\x80\x12\xab\xcb\xac\x18\x22\x01\x6e\x55\xb7\xb5\x5e\xa1\xd8\x9d\xae\x58\x43\x2a\xf6\x6b\x5d\xb1\xf4\x8a\xb8\xb7\xdf\xc1\x5c\x8a\xd6\x91\x85\x0a\xbe\xa3\x61\x7c\x79\x10\xa0\x10\x08\x0c\x88\x00\xa0\xc1\x26\x05\x05\x96\x3d\x5f\x3d\xd5\xb8\x28\x65\x1c\x14\x8b\x66\xdf\x22\x6e\xfd\xa9\x84\x9f\x6b\xbc\x1e\x34\x2c\xee\x23\x5a\x6e\x50\x2b\x78\x18\xda\x89\x77\x72\xca\x9c\x9e\x60\xab\x5a\x8d\xb8\xc3\x53\x06\xfd\xa4\xf1\x7d\x74\x6a\xd9\xa1\x47\xbe\x55\xdd\xd3\x96\xff\xcc\x8b\x33\x5d\xa6\xb1\x6e\x2c\x79\xe1\xba\x19\x66\xce\x91\x57\xae\x7b\x10\x77\xf6\xf7\xcd\xd0\x22\x1a\xc6\x13\xff\xd4\x0b\xad\xa6\x58\x04\x8e\xfb\x07\xf1\x7b\xd7\x25\x2f\x71\xa9\x84\xea\xaa\xfd\xaa\xd1\x32\xaa\xa1\x65\xdd\x25\x72\xaa\x72\x2d\x2b\x7e\xba\xda\x32\xaa\x09\xb3\xc0\x68\x19\x56\xd5\xf8\x2b\x86\x48\xef\x27\x32\x5d\xd3\x7c\xfd\x5f\xfb\xf1\xf0\xba\x99\x12\xf7\x4e\xac\xe3\xe6\x46\x59\x3f\x10\x84\x29\xe0\x9b\x75\x91\x00\x88\x1a\x64\x9a\x96\xd5\x82\x0a\xc5\x40\xe6\x79\x4a\x9c\x1c\x49\xc4\x5e\xae\xe4\x75\x68\x64\x76\xc6\x19\xa3\xac\x83\x02\x9a\xee\xa9\xa4\x87\x03\x84\xd3\x95\xde\xff\x5e\xba\xb1\x21\xfb\x6a\x9a\x50\xc2\x62\x6d\x0e\x31\xd9\xbd\xa0\x93\xa5\x7d\xf5\xcc\xba\xf5\x20\x60\x48\x71\xd6\xe5\xc4\xe5\xe9\x1b\x5c\x43\xa7\x34\x21\xb5\xcd\x92\x6c\xb7\x12\x5f\xd4\xf8\x36\x38\x69\x4e\x5a\x25\x0f\x74\x5f\xa4\x48\x32\x5f\x9a\xa9\x5b\x66\x64\xc4\xb0\xde\x30\x01\xf8\x8e\x53\x59\x73\x30\x47\x93\x50\x83\x48\xc5\xde\xb2\xd6\x58\x88\xd4\xbf\x3a\x19\x4c\x13\xc7\x6d\xac\xac\xae\x3d\x7c\x74\xfa\x3d\xb9\x8b\x3d\x90\xe7\x00\x4b\x42\xe2\xa3\xb8\x4f\x49\x5f\x1c\x78\x75\x3a\x19\x7a\x7b\xa3\xd6\x73\x50\x9e\x8e\x8f\x1e\x3d\x52\xa0\x97\xd9\xf4\x16\xa6\xa5\x94\xb4\x83\x2e\x5b\x6a\x7d\x0b\xed\xa0\x65\x2a\x3b\xf6\xab\xd6\x69\xb5\x65\xe2\x8f\xef\x2d\xb3\x65\x9e\x7c\x4c\x3e\xee\x9f\x7e\x6f\x59\xeb\xbf\x78\x40\xf6\x22\xe8\xe1\xde\xd8\x81\x87\x4e\x56\x4e\x2d\x3b\xdb\x0d\x48\x6a\xea\x26\xb4\xc9\xae\x10\xdc\xe5\xc7\x56\xcd\x64\xce\xe0\xd5\x05\xaa\x4c\xe2\xe1\x2c\x04\xb9\x41\xc9\xc4\xc4\x27\xc6\x2f\x8d\xb2\x43\x23\x20\x9a\xe5\xfd\xa9\x3f\xc0\x27\x46\xe0\xc3\x31\x31\x9b\xb2\x32\x08\xf5\x76\x49\x75\x3a\x9b\x0e\xa7\xba\xba\x1b\x73\xeb\x12\xf1\x96\xa6\x76\x67\x6e\x6d\x12\xde\x5e\x57\x7d\x73\x6e\x75\x22\x91\xd6\xd4\xde\xba\x3f\xea\x45\x9d\x86\x46\x28\xbc\xdf\xad\x3f\xbf\x2f\x55\xef\x03\x7c\xbb\x9c\x4d\x90\x2a\x0a\x6d\xd4\x5c\x11\xc8\x8b\x45\x80\xf0\x60\xc7\x32\x18\x9b\xfd\x72\x0b\x40\xbb\xca\x2d\x22\xad\xda\xa2\xa1\xa8\xa9\x25\x3e\xb2\xdd\x7c\xa7\xf3\x69\x55\x5a\x59\xa0\x4a\xa7\x05\x9f\xa2\x16\xac\x56\xad\xc5\x94\x08\xfb\xdd\xfa\x4b\x2f\x5b\x26\xeb\x2f\x0b\xf7\xa2\x9c\x0c\x09\x6f\x42\xce\x92\x07\xd7\x5d\xcf\x83\x39\x35\x25\x80\x7e\x02\xda\xfd\x18\xb3\xed\xcd\x46\xf1\x3d\x53\x5e\x35\x57\x32\xdb\xe7\xc2\x3b\x05\xc4\x0d\x10\xc6\x97\x12\xca\x3b\x22\xca\x3b\x3f\x19\xe5\x83\x98\x2c\x01\x8a\x73\x1e\x31\x52\xe2\x55\x10\x01\x35\x72\x07\x31\x5d\x7d\x22\x7a\xaf\xe6\x6e\x35\x18\x5e\xa2\x5b\x73\xbb\x25\xd5\x69\xc8\xe6\xd2\xea\x6f\xe6\x56\xc7\x17\x59\x6d\xf5\xfd\x92\xea\x17\xcc\xd2\x41\xbf\xd5\x1d\xe4\xe4\x3a\x82\x0f\xe5\x53\xcf\xcd\xd3\x96\xc3\x2b\xd9\xfe\x4e\x8c\x67\x07\x4a\xf9\xe9\x7e\xb7\xfe\xbe\x04\x55\x69\x70\x34\xc8\x1e\xff\xde\x97\x61\xdf\x1f\x9c\x6b\xd6\xe1\x89\xf1\x43\xaa\x35\xc2\x9b\x57\x86\xa6\x7f\x8f\x7d\x6c\x8e\x82\xa3\xaa\xa1\x44\x5f\x4d\xe0\x81\x62\x34\x4f\x9c\x53\xb2\x9c\xd2\x5f\x79\xa7\xa6\x79\x82\x7a\x32\xa6\x83\xf2\xf3\x38\x0f\xe2\x99\xd3\x6a\xac\x3d\x6c\x39\x12\x98\xba\x22\x29\xa9\xa4\x10\x67\x99\x38\x29\x09\x7a\xf1\xa5\x7e\x97\x1f\x65\x84\x7f\x91\x3d\x1d\x2f\xd2\xfd\x75\x12\x71\x24\x7d\xa5\xd8\xd5\xda\x61\xc8\xc6\x3b\x29\xec\x21\x34\x5f\x0e\x7d\xdb\x66\x83\x65\x2e\x49\xb8\x9d\x69\x2e\xa5\x4e\x0b\x3d\x95\x16\x58\x0b\xf1\xf9\x26\x58\xd6\x71\xa6\x0e\x9d\x0a\x66\x8f\x74\xe3\x3c\xcb\xab\x1b\x16\x04\xcd\xac\xde\x74\x90\xeb\x81\xb8\x3b\x07\xba\xc5\x1b\xfe\x6c\xdd\x72\xe5\x6e\x85\x3f\x5f\xb7\xa4\x71\x98\xe8\x74\x33\x48\x8c\xa8\x22\xec\x77\xa8\xda\xb8\xbd\x5d\x4b\xa7\x0a\xaa\xba\xa7\xeb\xd1\x2c\x0c\x9b\x6c\x1a\xa2\x6a\xc3\x76\xac\xbb\x14\x12\x2c\x81\xb4\x76\x7b\xdb\x50\x40\x22\xd1\x8f\x8c\xaa\x04\xb0\x6a\x54\x6c\xe1\xd1\x4a\xf1\xd1\x2a\x79\x64\x19\x77\x82\x50\xb2\x4c\x5e\x41\x83\x11\x09\x08\x65\x44\x8d\x3d\xa7\x15\xe7\x88\x1a\x57\xab\x3c\x0e\x14\x6b\x32\xb6\x1d\x02\x24\x79\xba\xe2\x58\x8e\xe7\x25\xeb\x01\x17\x5b\x35\x5d\xfa\x93\xc6\x04\x75\xf0\x11\x8c\x7f\xf2\xd8\x82\x98\x57\xc0\xbf\x79\x5c\x50\xa7\xb9\x4a\x1f\x88\x91\xfe\x9a\x6b\x0c\x06\x8d\x16\xea\x34\x1f\xb1\x4a\x3c\x0e\xa8\xd3\x7c\x9c\x3e\xe1\x91\x40\x9d\xe6\x13\xfa\x2c\x1f\xfb\xaf\xd9\x20\x38\x98\x41\x1a\xa7\x34\x45\xc7\xb5\x9a\x8d\x1c\x42\x6e\xb3\x51\xc4\xc8\x6d\x36\x64\x94\xdc\x66\x23\x8f\x93\xdb\x6c\x14\x91\x72\x9b\x0d\x8c\x15\x89\x0a\x98\x8f\x6d\x4a\x73\x86\x55\x08\x19\xd7\x1c\x8b\x92\xf3\xb1\x15\x14\xe3\x7e\x26\xb5\x15\x27\x2d\xbc\x82\x5b\xc1\xa5\x59\x6a\xc8\xc8\x83\x66\x6c\x59\xaa\x7a\x01\x8f\x97\x65\x8b\x2f\xbd\xc8\x8e\xab\xde\x5a\x9a\xb1\x8c\x7a\xbf\x9b\xbe\x47\x72\x10\x59\xf4\x92\x16\x8c\xcc\xb8\xea\x35\x6c\xff\x19\x97\x5d\xf0\x68\xa7\x6c\xc6\x0c\xe2\x08\x05\xd1\x0c\xb4\x14\xed\xfa\x77\x29\xb2\x4f\x08\xb2\x3a\xd4\x58\xa0\x2e\x81\x10\xab\x98\x00\x85\x78\xa6\x49\x6d\x35\x23\xc0\x2a\x21\xc0\x57\xea\x32\x8a\xfb\xde\x4a\x89\x11\xa9\x2a\x8b\x54\x10\x02\x86\x89\x54\xa0\x02\x3a\x24\xc0\xf2\x3c\xff\x1b\x28\x51\x68\xdb\xbf\x63\xa4\xd0\xa1\x25\x51\x20\x79\xe6\x3d\x71\x96\x97\x93\xa7\xde\x93\x47\xeb\xca\x79\xf0\xc4\xa9\x3e\x6e\x26\xcf\x3c\xd7\xa1\xe5\x5c\xe7\x11\x99\x5b\x0a\x8a\xb9\x8e\x53\x7d\x6c\xdd\x05\x62\xb4\xc0\x22\x3b\x91\x17\x97\xe5\x2f\x64\xe3\xa2\x28\xca\xb2\x78\x9f\x64\x49\x35\x65\x04\x26\xba\xf3\x21\xca\x7b\x64\xaf\x09\xe7\xac\x55\xce\x2f\x38\x91\x91\xad\x96\x87\x62\x3d\xd1\x47\xb4\xc8\x26\x61\x1e\xc1\xaa\xba\xdc\x59\xb4\x84\x8f\x72\x5b\x73\x38\x16\x92\x89\xa9\x65\x54\x61\xd5\xe8\x19\xb2\x2c\xe2\x59\xa4\xe9\xf3\x89\xb1\x1e\xe5\x0e\xaf\xbf\x2c\xf8\x13\x62\xba\xe2\x10\xac\xcf\xe5\xfa\xdc\xc8\xb0\xc8\x46\xb8\x78\x9d\x06\xad\xf3\xf0\x5e\xed\x34\x5a\x6e\xcb\x69\xe1\x31\x6f\xae\x95\x31\x63\xc5\xaa\x6b\x4e\x94\xe3\x4b\xa7\xda\xa1\x59\x9a\x2a\x94\x13\x6a\x8d\x4c\x12\x8f\x50\x2f\x3f\xd7\xeb\xbf\x98\xea\x06\xfd\x17\xda\x56\xbf\x33\xa6\xdf\x69\xd6\xc7\x17\x0d\xb4\xca\x17\xa3\x54\x02\xd9\x72\x88\xbe\xd0\xf5\x3c\x6e\x96\xfa\x4d\xf2\x52\x9d\x20\x86\x9a\xd8\x93\x64\xa4\x8d\xdf\x6d\x13\xae\x45\x24\x09\xdf\xd8\x44\x26\x42\x5e\xa0\x27\xab\xbf\xfb\x66\x70\x6f\xd6\xbe\x9d\x60\x5b\xed\xdd\x45\x3a\xf2\xf0\x77\xda\x82\x5b\xb0\x0e\xe2\x52\x5a\x0a\xa9\x42\xa2\x50\x36\x89\x69\xca\x9d\x38\xc9\xbf\xe8\x26\x39\xd4\xce\x64\xbc\xc7\xe1\xdd\x41\xd0\x92\x39\xa7\xb6\xeb\x58\x35\x97\xc6\x80\x0a\x88\x98\x59\x7c\xef\x8a\xef\x5b\x85\xae\xe4\x9c\x5e\xa0\x1d\x68\xfb\x9b\xca\xfb\x1c\x3b\x77\xa7\x82\xba\xe3\xec\x17\x50\xfd\x3c\x59\x5c\x05\x4e\x5b\x48\x74\x2d\x20\x4d\xc3\xea\xe7\x27\xc6\x33\xa4\xdd\xeb\x2a\xba\x57\xf5\xd9\xbd\x34\xf0\x14\xd8\x4c\x4b\x93\x0b\x4d\xfb\xdf\x5d\xea\xaa\x5c\x69\x6a\x7c\x7f\xa5\x6d\x44\x5d\xa5\x7e\x93\x3f\x67\x97\xe4\x3b\xce\x53\xd7\x2a\xee\x9d\xc1\xc8\xc4\xdb\x27\xcb\x85\x2e\x96\x6e\x30\x6b\x90\xd6\x7c\xed\x6f\x9a\xd7\x83\xc1\x75\x4f\xd9\xf1\x4a\x0c\x97\x8a\x3c\x97\x1e\x00\x71\x65\x90\x78\x8b\xef\x6e\xb4\x74\xb8\xd1\x11\xfb\xab\x76\x1e\x7c\x77\xab\x7f\x75\xa7\x7f\xf5\xeb\xdc\x2b\x29\x86\xe5\x88\xab\x4f\xc5\xa8\x84\xea\x40\x79\xc9\x00\x06\x24\x09\x20\x0f\x90\xb5\xfd\x4a\x88\x0e\x38\x0e\x27\xfe\x74\xc3\x4f\xc0\x27\x31\x2c\x75\x16\xc3\x40\x84\x9f\x0b\x49\x5d\xcc\x15\x9f\x83\xb8\xbc\xbc\x24\xc7\x30\xe7\x2d\x8b\x29\xf3\x48\xf1\x4f\xd4\xce\x47\x7e\x0e\x01\xcb\xfe\x44\x8b\x78\x60\x9d\x05\x48\xf0\x93\x24\x18\x47\xe6\xd7\xbb\x7c\x17\x6c\xc0\x24\x43\xd9\x23\x16\x2b\x5d\x0c\xad\x20\xc0\x5c\x28\x4c\x42\xde\x69\xd4\x6a\x65\x08\x8a\x61\x11\x0c\xcc\xee\xa5\x11\x14\xaa\xc6\xa9\x61\x1b\x63\x21\x4c\x13\x6e\x07\xa4\x39\x4b\x33\x18\x36\xf0\x9e\x09\x38\x51\xed\x77\x29\xf5\xd5\x51\xaa\x68\xf5\x25\x66\x8b\x2f\x0e\xc3\x3d\xc6\x15\xa0\xbd\x0b\x00\x61\x30\x54\x65\x39\xa2\x20\xc0\x1c\x18\xa5\x29\x5e\x72\xd5\xcc\xfc\x24\xcd\x0f\xa9\x25\xe5\x2d\xd0\x77\x51\x46\x5d\x1a\x63\x1b\x28\xf0\x2d\x9e\x18\x13\x7f\x9a\x7c\xf2\x8a\x05\xeb\xec\x1e\x97\x85\xfd\xc4\x25\xd9\x92\x49\x2b\xaa\x9a\x10\x68\x42\xed\xd3\xb4\x21\x5b\x08\x88\xfa\x99\x9f\xec\x5d\x46\x6f\x60\x3c\x05\x10\x5d\x9b\x80\x85\x08\x20\x2f\x4f\xc0\x69\x93\x9a\xb6\xcd\x69\xc9\x1f\x0e\x35\x5b\x01\xed\xa0\xe7\xc9\x7d\x48\x53\x7c\x93\xb7\xea\x15\x96\x16\xe6\xaa\x43\x8e\x52\x66\x73\xac\xc1\x46\x3d\x53\x49\xf5\x25\x6f\x0e\xb1\x65\xcc\xca\xcb\xaa\xa6\x64\xb2\xf0\xbc\xfe\x59\x28\x23\x27\x2a\x92\x33\x60\x33\xf3\x44\x24\x98\x27\xc2\x75\x01\xfa\x09\x3a\xf5\xa0\x1c\x21\x90\x3f\x97\xe7\x35\x09\xa5\xce\x36\x39\x3a\xd2\x26\xb2\xd5\x2b\xcb\x98\x25\x00\x62\x2e\xd1\xa6\x95\xee\x94\x24\x12\x68\x98\x79\x7b\xe9\x4a\x9c\x38\xa7\x9a\x65\x6c\x8c\xa1\x3f\x3d\x0b\x06\x86\xfd\xd5\xf8\xc1\x68\x1a\xbf\xfd\x87\x7f\xcb\xb0\xfd\xa6\xf1\xdb\x7f\xf0\x5f\x19\x76\xbf\x69\xfc\xf6\xef\xfd\xb1\x61\x0f\xf0\xe7\xdf\x36\xec\x21\xfe\xfc\x3b\x86\x0d\xf0\xe7\x7f\x66\xd8\xa3\xa6\xf1\x9b\x7f\x69\xd8\xe3\xa6\xf1\x9b\x7f\x65\xd8\x67\xf8\xe9\x9f\x1a\x76\x80\x3f\xff\x73\xc3\xfe\xdc\x34\x7e\xfb\xf7\xff\x91\x61\x9f\xe3\xcf\xbf\x67\xd8\x21\xfe\xfc\xdb\x86\x3d\xc1\x9f\x7f\xdf\xb0\x23\xfc\xf9\x17\x86\x1d\x37\x8d\xdf\xfe\xdd\xff\xd3\xb0\xa7\xf8\xf3\xdf\x18\xf6\x17\xfc\xfc\xaf\x1b\x36\xc4\xbf\xff\xc2\xb0\x13\xfc\xf9\x6f\x0d\x1b\xe1\xe7\x7f\x62\xd8\x33\xfc\xf9\xa7\x86\x7d\x81\x3f\xff\xdc\xb0\x2f\xf1\xe7\xbf\x30\xec\x2b\xfc\xf9\x9f\x18\xf6\x75\xd3\xf8\xed\x1f\xff\xa9\x61\xdf\xe0\xcf\x7f\x6a\xd8\xc6\x57\xa3\x69\xfc\xbf\x7f\xdd\xb0\x8d\x5b\xdc\xc1\x3f\xfe\x27\x86\x6d\xdc\x19\x4d\xe3\x37\xff\xa3\x61\x1b\xbf\xc6\x5f\xfe\x37\xe3\x4e\x71\x2a\x4b\x14\xac\xb7\x75\x04\xec\xc3\x00\x05\xc9\x19\x26\xe0\x1f\x52\xa8\xf3\x81\x6d\xe8\x80\xcd\x12\x83\xba\x9a\xcf\x1b\xd0\x55\xed\x80\x0e\x67\x68\x20\x62\x63\x1b\xbf\xc4\x5f\xfe\x2f\xc3\x36\x4e\x8c\xa6\xf1\xff\xfc\x6b\xc3\x36\x3e\x7e\xc4\x8f\xfe\xad\x61\x1b\xa7\x46\xd3\xb8\x65\x34\xfa\xcd\x3f\x63\x34\x1a\x71\x0a\xfd\x05\xa7\xd0\x9f\x2f\xd0\xa9\xce\x9c\xa5\x7e\xb2\xa6\xc5\x79\x14\x44\x11\xa3\x21\xc6\xf1\xc7\xbf\xc1\x71\xfc\xf1\x1f\x30\x1c\x7f\xfc\x9b\x86\x6d\xfc\x0a\x7f\xf9\x13\xc3\x26\x33\xf5\xc7\x7f\xce\xd0\xfe\xf1\x4f\x19\xda\x3f\xfe\xaf\x0c\xef\x1f\xff\x29\xc3\xfb\xc7\xbf\x58\x00\xef\x9e\x16\x2b\x08\x22\x05\x29\x7f\xfc\x27\x8c\x94\x78\xee\x33\x34\xff\x8c\xa1\xf9\x9b\x3f\xe3\x48\xfd\x73\x8e\xd4\xff\xc1\x91\xfa\x67\x9c\x98\xff\x6c\x01\xa4\xde\x96\x23\x55\x19\xf8\x91\x3f\x0c\xfc\x08\x63\x27\x21\xf5\xe3\xff\x50\x40\xea\xc7\xff\x99\xd3\xee\x7f\xe1\xb4\xfb\xf3\xf9\x68\xfe\xf8\x6f\x16\x40\x73\x47\xbb\xad\x00\x38\xc9\xb0\x23\x64\xd1\x8d\xec\x9f\xe8\xc7\x91\xcf\xbf\x1f\xff\xf1\x02\xb8\x7c\xd0\xe1\x42\x94\x15\x14\x19\x79\x4d\xfc\x99\x7e\x20\x09\x61\x7e\xe0\x84\xf9\xca\x29\x4c\xd0\xfb\xd7\x05\x52\xfd\x8b\x05\xd0\xdb\x9a\xb7\x3c\x1e\x6a\x97\x47\x14\xc3\x4b\x30\x0e\xfc\xe8\xc1\xd0\xe7\xeb\xe4\x97\x9c\x9a\x84\xac\x7f\x2b\xed\xc0\x3f\xd2\x2f\x98\x3f\xe5\x3d\xf9\x9f\x78\x4f\xfe\xf7\x6f\x5a\x30\xc7\x3a\x3c\x93\x69\x8a\x9e\x86\xd0\xff\x7d\x8a\xe7\x7f\xc9\x57\xcc\xff\xcd\x77\x9f\x7f\xc9\xb1\xfa\x57\x1c\xab\x3f\x9b\x8f\xcc\xc9\xa3\xd3\x39\x74\xad\xbf\xd0\xa2\x7b\x09\x86\x22\x35\xff\xb8\x64\x92\xfe\xce\xb6\x1f\x6a\x8b\xaf\xc5\x30\x48\x12\x4e\x4e\x32\x13\xe5\xb5\xfe\xcf\xcb\xd7\xfa\x27\x36\x47\xe5\x25\x5f\xb2\xcc\xc8\x92\x27\x9a\x0a\xa2\x17\xc1\x9c\x8a\x49\x73\x2a\x3c\xf0\x67\xc3\x20\x7e\xd0\x07\x61\x68\xd8\x06\xfd\x11\x8f\xc7\xad\xbe\x9f\x80\x87\xab\x86\x6d\x1c\x34\x86\xd1\xe1\x65\xbb\xd3\x4e\xff\x6d\x9e\x7d\x79\xb7\xb6\x43\xbe\xee\x3e\xbf\xd8\xfa\xfc\x61\xe3\xc5\xf8\x79\xa3\xbf\xf2\x32\xf0\xdf\xef\xd2\x22\x1f\x3a\x8f\xd2\xe2\x2f\x06\x1b\xf4\x4b\x67\xb5\x7d\xf8\x24\x3a\x76\x77\xdb\xe2\xbf\x55\x3f\x9c\xed\x8f\xb7\xc8\x77\x90\x74\x57\xb6\x3a\x2b\x0f\x0a\xff\x1e\x9f\x6f\x0e\x27\x4f\xae\x3f\x4c\xc2\x9b\x17\x6f\xdb\xed\xf6\xf3\xb3\xe9\x60\x7b\x3c\x3b\x58\x79\x19\x75\xb7\xaf\xa6\x1f\xc2\xe3\x8b\xc1\xe4\xe5\x74\x70\xbd\xf1\xb2\xbb\xd9\xbd\xdc\xdd\x3c\xbf\x7c\x7d\xd3\x5e\xa3\x2d\x6c\x3d\xe7\x75\x77\x0e\x5f\x6e\x1e\x8d\xb7\x68\x67\x36\x9f\xef\x76\x77\xdf\xb5\x9d\x97\x1b\x47\xed\x76\xfb\x6d\xbb\xbd\x31\x7e\xd9\x39\xdf\x3b\x6f\x1c\xbf\xdc\xf1\xdf\x1d\xc6\xfb\x67\x6b\x93\x97\xbd\xee\xfe\xfe\x24\x0c\x77\x0f\x2f\x83\xe3\xe0\x30\x18\x1c\x7e\xf8\xb0\x7a\x79\x75\x75\x76\xf6\xf9\xf3\xe6\x8b\xed\xed\xed\xbd\xdd\xee\x66\xef\xfc\x39\xae\xdd\xee\xb4\x77\xda\x93\xbd\xb8\x7a\xfc\xd2\x4f\x56\xd7\x8e\xaf\xc6\xd1\xe7\x68\x67\xbc\xf7\x2e\xdc\xdb\xdb\x19\x8c\x37\x56\xa7\xbd\xd5\xcd\xf3\x97\x97\x17\x87\x93\x0f\x8d\x87\x13\xb4\x73\x0c\xfb\xc9\xea\xf4\xe5\xdb\xf1\xeb\x77\x6f\x0f\xdb\xed\x76\xb7\xfd\x76\x6b\x7c\x76\xd6\xeb\xed\xef\x77\xb6\x9f\x3f\xdf\xde\xe9\x76\x3f\x7c\xf8\xf0\x21\x1e\x9f\x9d\x5d\x5d\x5d\x5f\x77\xb6\xa3\xe8\x45\x77\x67\xe7\x4b\x30\x1e\x8f\xe3\xeb\xeb\x4e\x67\xf3\x60\xf3\xd5\x74\xfa\xf2\xf5\xde\xde\x6c\x12\xc7\xab\xab\x0f\x1f\x06\x81\xe3\x6c\x75\x5f\xbd\xea\x1f\xec\xef\x9f\x5f\x5e\xb9\x47\xc7\x9f\x21\x74\xb6\xdf\xbf\xbf\xba\xb9\xf9\x1c\x45\xd1\x8b\x37\x7b\x7b\x00\x0c\x06\x8f\x57\x5f\xbe\x3d\x7f\xfd\xae\xfd\xb6\x3d\xc6\x04\x7a\x3b\xfe\x70\x7c\xbc\xb1\xd1\xe9\xe0\x76\x9f\xef\x74\x77\x7c\xff\xc3\x00\xb7\xd1\xdd\x7c\x7b\xfe\xfc\xb0\x8d\x09\x36\x26\xb4\xdc\x78\x71\xde\xeb\xbd\x4c\x7a\x07\xaf\x92\xde\xcd\x6b\x67\xbf\xf7\xe6\x71\x70\xd5\xdb\xba\x79\xdf\xdb\x75\x8e\x0e\x8e\xb6\xdc\x23\xfc\x6f\x78\xe4\xbe\x1f\x4e\xde\xbf\x1f\x46\xf8\xcf\x3d\x9e\x74\x8f\xfa\xb3\x17\xee\xf1\xac\x7b\xd4\x6f\x74\x8f\x86\x4f\x56\x8f\xce\xb6\xbb\xc7\xe9\x5f\xf5\xc5\xca\xe8\xc9\x0a\xfe\x73\xc6\xaf\xb7\xdf\x1e\xb5\x3b\xed\x8d\xf6\x4e\xfb\xf3\xde\x71\xff\xf3\x8e\xdf\x0d\xb6\xbf\xbc\x0a\xf6\xfc\xee\xe6\x59\xd7\x4f\xda\xe3\x8d\x73\x8c\x73\xbb\xd3\x7e\x79\x1e\x74\xa7\xe7\x5f\x5e\xbf\x9c\x4e\x8e\xbf\xc0\xc9\xa4\x8f\x26\x01\x44\x93\x95\x57\x49\x70\xf3\x2a\x19\x5f\x6f\x9d\x7d\xb9\xc4\x43\xbd\x41\x86\x17\xff\xdb\xd9\x98\x4e\xbe\x1c\xab\xff\x26\xc7\xc7\xe1\xe4\xe8\x5e\x7f\x6f\xb7\x3f\x77\x77\xc6\x1b\xed\xf6\x78\xa3\x7d\xb5\xb2\x35\xb8\x5a\xd9\x3a\xef\x1d\x75\xcf\xaf\x56\xba\xc9\xc6\x25\x1d\xd7\x6b\x3c\xf3\xdb\x1b\xed\xc3\xe0\xe6\xf9\xe0\x73\xef\xc5\xe0\xe6\xe0\xc5\xe0\xe6\xe6\xc5\xe0\xe6\xea\xc5\x70\xeb\xe0\x65\xb8\x75\xf3\xfa\xc9\xd6\xe5\x9b\x4e\xdb\x3d\xde\xc0\x68\x8e\xdb\x5d\x8a\xec\x46\x7b\xb7\x77\xf3\x7c\xd0\xbb\x79\x89\xe9\x7c\x18\xac\x1c\x0c\x3e\x1f\xbd\x1f\xdc\xac\xbc\x1f\x38\x2b\xef\x31\x8d\x8f\xee\xf3\xef\xc3\x0b\x3a\x96\x98\x16\x9d\xed\xe1\xf1\xf4\xf8\xcb\xb8\x3d\xbe\x39\xdf\xde\xa2\x34\xa7\xad\x7e\x88\xdf\x9e\x6d\x6e\xb6\xf9\x9c\x7c\xdb\x6e\x77\x83\xb3\xb5\x4e\xc7\x77\x5e\xc2\x9b\x9b\x83\xf3\xbd\xc9\xec\xdd\xf8\x4b\x6f\xbf\xef\x3c\xde\x7e\x79\xf4\x32\x89\x66\xfe\xe4\xc3\x64\x85\xce\xab\xfe\xee\xea\xf1\xea\xda\xd5\xcd\x4d\x10\xed\x4c\x06\xef\xc6\x93\x61\xc7\x1f\x3c\x5e\x7b\xb9\xf9\xf2\x4b\x18\xbf\x8c\xde\x4e\xa2\x37\x7b\xa0\xb7\xd3\xdf\x78\xd8\x98\x3a\xd3\xe9\xcd\xcd\x59\x14\x45\xed\x47\xdb\xdb\xef\xb6\x07\x83\xc7\x6b\x53\x67\x1a\xbf\xf8\x32\x0c\x09\xbc\x77\xc3\x8e\xbf\xf6\x25\x58\x7b\xfe\x12\xdd\xdc\xc4\x93\xc3\xc9\x35\x70\x67\x47\xfb\xfd\xc1\xe3\xd5\xb5\xb5\xb5\x6c\x3e\x7f\x39\x7a\x38\xb8\x49\xb6\xd6\x56\x8f\xaf\x6e\x6e\xe2\xc8\x9f\x34\x66\x6b\x9d\xa3\xc6\x60\xf0\xf8\xd1\xda\xf1\xcb\x9b\xd9\xcd\xdb\xe8\x4c\x98\xf7\xb4\xee\x38\xec\xbc\x75\x3f\x6c\xb4\xc9\xb6\xd3\x3b\x6b\x6c\x7c\xde\x8e\x3e\x74\xc7\xa3\x0f\xab\xdb\x1f\xce\xde\x9e\x4d\x83\xed\x83\x17\xd1\xfe\x9b\xcd\xe9\xde\x78\x77\x30\x9e\x4e\x37\x1e\xbe\xfe\x7c\x7e\xbc\xf3\xe5\xc3\xeb\xb7\x87\x67\xe7\xd1\xf4\xfd\x7e\x87\xed\x1b\xe3\x76\xbb\xb3\xb5\xf5\xfc\x65\xb7\xfb\xe1\xf0\xf0\xf0\x3c\x5d\xbf\xdb\xdb\x78\xfd\xfa\x60\x30\x18\xc7\x5f\xbe\xec\xec\xef\x07\x01\xdc\xd9\x79\xf5\x66\x77\x37\x49\x92\xe4\xf1\xe5\xf5\xf5\xc3\x9b\xcd\x9b\xcf\x10\x26\xbb\xbb\x6f\xdf\x5e\x5e\x5e\xa1\xd7\x2f\x77\x5e\x6d\xbe\x3f\x3a\x9a\xec\xbd\x46\xc0\x07\x83\x87\xab\x6b\xfb\xdb\xb3\x10\x0d\x8f\xfd\x9d\x87\xef\x0e\x0f\xcf\xe3\xe9\x74\xbf\xed\x1c\x6f\xb0\xbd\xa2\xb3\x71\x7e\xbe\xb5\xb5\xbd\xcd\xdb\x9d\x9e\x5d\x5f\x07\x93\x28\xee\x76\x77\xf2\x73\xe9\x71\xe7\xe0\xcd\x56\x6f\xa5\x97\xfb\x7b\xf3\xb8\x77\xd5\xdb\x0a\x8e\x7a\x5b\xc1\xfb\xde\x6e\xe0\x1e\xec\xde\xb8\x47\x47\xcf\x8f\xde\x0f\x27\xee\x71\xb8\xf2\xbe\x8f\x56\x8f\x86\x8d\x17\xef\x47\xee\xca\xca\xc8\x5d\x75\x47\xcf\x57\x8f\xc3\x77\xc7\xc5\xbf\x0e\xdb\x57\x49\x63\x5b\xdd\x6e\xf7\xc3\x5b\x8a\xd3\x71\x2f\xf8\xbc\xf9\xe2\x45\xd4\x7d\xbd\xf7\x76\x3c\xd9\x48\x69\xc6\x66\x78\x6f\x65\xeb\xf0\x6a\x6d\x6b\x70\x7d\xbc\x75\xbe\xff\xa8\x7b\x7e\x30\xec\x26\x37\xa3\xae\x73\xf0\x60\xd7\x71\x7a\xaf\x9f\x1f\x1e\xf4\x5e\x1f\x5e\x1d\x0d\x9d\xde\x91\xeb\x5c\x1d\x87\x87\x37\xc7\x43\xe7\xe6\x28\x74\xdc\xa3\xd0\x7d\x7f\x1c\x36\xfa\xc7\xe1\xbb\x47\xc3\x27\xef\xfa\xc7\x4f\x56\x1e\x0c\xe5\xbf\x27\x43\x97\xed\xcd\xe3\xf6\xdb\xce\xb8\x7b\x33\xd9\xef\x06\x93\xfd\xee\xe7\xc9\xde\xaa\x13\xec\x6f\x74\xf7\xb7\x61\xbb\xdb\x3e\x26\x2b\xad\x33\xde\xe9\x3e\x0a\xf6\xba\xab\x9f\xf7\x8f\xbb\xe7\xef\x8e\xbb\x13\x70\x7c\x1c\x05\xc7\x5f\xa6\x93\xe3\x47\xd3\x2f\x7e\x77\x87\xee\x3d\x64\x49\x6c\xb1\xf3\x6c\xec\x77\xbf\x44\x93\xee\x97\x28\xe8\xc2\x28\xe8\xae\xc6\xc1\xf1\xf1\x34\x38\xfe\xf2\x65\xe6\xbf\x4c\xae\xbf\x3c\x82\xb3\xfb\xfc\x9d\x6f\xc4\xd7\x9d\xb8\xfd\x96\x9c\x03\xc3\xeb\x97\xe4\xef\x68\xff\xe5\xd6\xd1\xf5\xcb\xf6\xa0\xbb\x79\x74\xfe\xbc\xbd\x3b\x26\xe4\xbb\xdc\xdc\x1a\xbc\x75\xbb\xe7\x57\x8f\xba\xc9\xc1\x68\x97\xd1\x6b\xf7\x89\x73\xb0\xfb\xe4\xe8\x7d\xef\xf9\xf3\xcb\xec\x4c\xe1\x07\xf7\xe5\xcb\xf6\xee\xfe\xa3\xad\xc1\xcd\x70\xeb\xfc\xf0\xa8\x8b\xdc\xa3\xae\xeb\x1e\x75\xd1\xd1\xd1\xdb\x27\xf7\xd9\x46\xdc\x83\xde\x6b\xe7\x66\x7f\xc3\x79\xd9\xc1\x63\x89\xc9\xf7\xf9\xed\xdb\x0f\xc7\x67\x1b\x9d\x9d\xc1\x74\xa3\xd3\xff\xec\x7e\xe8\x6c\xbe\x98\xbc\x6c\xbf\x3b\xdb\x7b\xeb\x9f\x5d\x6d\x04\x5b\xd3\xab\xf6\xcd\xe6\xe6\xf9\xeb\x6e\xb4\xff\xf6\xed\xfe\xe0\xc9\xec\x65\x77\xed\xf2\xf2\xe6\x66\xf5\x79\x37\x7e\x7e\xd8\xdb\x1d\xaf\x3a\xe1\xeb\xd5\xd5\xf1\xe6\x60\x67\xf2\x7e\x2b\x0a\xf7\xda\x67\x78\x7d\x6e\xb5\x9f\x6f\xe1\x2e\x5c\x5d\x6f\xbe\xd8\xda\x7e\xf1\x6a\x6f\x7f\x30\x19\xf7\x76\x57\xaf\x3a\xc7\x8d\xc3\xeb\xcd\xf3\x68\x7a\xfc\x66\x7f\x7f\xff\x1c\x85\x67\xe3\x9b\x9d\xfd\x77\x93\xad\xc9\x9b\xcf\xd1\xce\x9b\xfd\xfd\xc1\xe4\x3c\xdc\x38\x7b\x15\x4c\x1b\xe7\x5b\x93\xbd\x97\xf0\x2d\x59\xa8\x2f\xf0\xbc\xeb\x3c\x7c\xf1\xf6\x7c\xe3\x70\xe3\x2d\x5e\x20\xdb\xdd\xdd\xc3\x71\x3c\x3d\x3b\xee\xed\xdf\x04\xd1\xe4\xfc\xf9\xab\x9d\x5d\x70\x38\x38\x3c\x8f\xd7\xa6\x6b\x57\x07\x37\x9f\xcf\xbb\x2f\x3e\x1c\xec\xec\xbe\xf5\x87\xe3\xab\xf6\x74\xda\xbb\x3a\xb8\x09\xa2\x17\x2f\xba\x07\xbb\x6f\xc1\xbb\xc1\xf8\xc9\xc6\x06\x66\x84\xba\xbb\x78\x0a\x6d\xb6\xdf\x06\x63\xe7\x78\xeb\xb0\xbd\xd5\x19\xb4\x57\x5f\xb4\xcf\x6f\xd6\x76\x9d\xfd\xab\xb7\xe1\xfe\xd5\xeb\xe7\x37\x57\xbd\xd0\xbd\x7a\xfd\xda\x5d\x3b\x74\x6e\x0e\xde\xba\x87\x47\xbd\xa3\xeb\xab\xd7\x47\xee\x51\xef\xa8\x71\x75\xfc\xfa\xa8\xff\x21\x3c\xe8\xbd\x7e\x7d\x30\xea\x1d\x1e\xf5\x5e\x3f\x3f\xea\x1d\x1d\x39\x6b\xf8\xf9\x11\xba\xb9\xe9\x85\x8d\xa3\xde\xd1\x4a\xef\xf8\xc8\xed\x1f\x87\x8d\xab\xe3\xea\xd1\xda\xb1\xbb\x72\xf3\xfa\xf5\x3b\xfc\x6c\x48\xca\xb9\xee\xda\xf1\x93\xf7\x4f\x8e\xd1\xfb\xe3\x71\xda\xc6\x41\xaf\x47\xdb\xb8\x39\x3e\x72\x1f\x7d\x70\x0f\xdf\xf7\x8e\x0e\x8f\x8e\xc2\x77\x47\xbd\xa3\x77\xef\x8f\xc3\x77\xa3\xe1\xd1\xd1\x93\xe3\x27\xfb\x57\xb8\xdc\xeb\xd7\x8d\xde\xd1\xd1\x51\xff\xf8\xa8\x31\x3a\x42\x47\xc7\xc7\x4f\x56\xdf\xf7\x8e\xde\x1f\x0d\xc3\xc6\x68\x78\xf4\xae\x77\x5c\x7d\xf7\x04\x3c\x5f\x1d\x1d\x3f\x59\xed\x9d\x91\x76\xdd\x27\xff\x1f\x77\xff\xd9\xdc\x38\x8e\x04\x8c\xe3\x5f\x65\xd7\x2f\xae\xc6\x25\xcf\x30\x2a\xcd\x9c\x6f\x0b\x4c\x62\x14\xc5\x2c\x72\x6b\xeb\x8a\x49\x24\xc5\x9c\x44\x8a\x77\xfb\xdd\xff\x25\xd9\x93\x2c\x7b\x76\xf7\xee\xb9\x7a\x9e\xff\xef\x85\xcb\x24\xd0\x00\xba\x1b\x8d\x0e\x20\x84\x36\x91\x0b\x9c\x1d\x38\x99\xed\x05\x08\x76\x8e\xab\x3c\xcf\xea\xb2\x4e\xea\x3c\x49\xea\xba\xce\xeb\x2e\x47\xeb\xa6\x46\xbc\xb2\x4f\xea\xb2\x6e\x84\x36\x0f\xeb\xa6\x9e\x84\xb6\x9e\x35\x4d\x3e\x35\x17\xb8\xa6\x4e\xea\x36\x39\xd7\x75\x72\x6e\xda\x7a\x5a\xd6\xc9\xd4\x74\x75\x52\xf7\x35\x26\xb4\x0d\xe9\x35\xf5\xa9\xe9\xfa\x95\x38\x9c\xa7\xa6\x2f\xc8\xba\xa9\x17\x4d\xdb\x3f\xc1\xf5\x35\xd6\x8c\x05\xdb\xf4\x47\x62\x55\x25\x85\x58\xd5\xa7\xba\xaf\xf3\x45\x9f\x2f\x9b\xbe\x60\xa5\x2e\x87\xfd\x72\xd1\xd4\xa7\xa4\x11\x87\x86\x12\xda\x1e\x6a\xfa\x64\x06\x07\x1a\xa3\x9a\xfb\x7d\x90\x31\xd8\xd1\x44\x4d\x67\x8d\x22\x87\x60\x3e\xf7\xd6\xb8\x75\xf6\xf4\x1e\x6a\x0e\x27\xc1\x0f\xfb\x05\x7c\x8a\xe6\x13\xba\xf2\x7b\xcf\xe9\x58\x71\xdb\x6f\x96\xb3\x6e\xb6\xf2\x26\x61\x5a\xc7\x32\xb7\xc8\x9c\x79\x8d\x7a\x6e\x5d\x37\x4e\x5f\xd7\xb3\xfe\xec\x25\x27\xaa\x91\x3b\xd2\x30\xcd\xf5\xde\x31\x33\x6c\x0a\x02\x4b\x0d\x7a\x6c\x0a\x65\x6b\x1d\x6e\xcb\xba\xa9\xfb\xa4\x11\x4f\x17\x5c\x8e\xac\x3f\xe6\x2b\xbf\x9f\x80\xbf\x0f\x5a\xf4\x98\x9d\xf6\x85\x27\x74\x24\x86\x1c\xcf\x3b\x9f\x9f\xd0\x93\x37\x16\xec\x52\xee\x77\x68\xe0\xca\x27\x0a\x14\xec\x71\xb8\xc8\x33\x7d\x95\x67\x7a\x55\x81\x52\xa3\x1b\x50\x02\x1c\x28\x60\xc3\x85\xbe\x61\x8c\xa0\x1e\x35\x02\xa6\x19\xb1\xe6\x04\xd5\x90\x14\x3b\xf6\xe1\xb9\x30\xaa\x67\xc3\xa0\xab\x9a\x73\x74\x43\x68\xed\xc8\xe4\xe6\xfc\x99\x3f\xeb\x74\x5a\x95\x82\xa3\x6b\x46\x14\xc6\x95\x49\x08\xee\x62\x63\x20\x19\xdf\xb4\xae\x67\xd8\x3d\x1c\x55\x84\x23\xb8\x1a\x6a\xc0\x59\x55\xd7\xbe\x67\x58\xe5\xa0\xda\x23\x38\xcf\x17\x6a\x3a\xa5\x29\x5f\x79\x8a\xa5\xe5\x69\x77\x19\x63\xbe\x20\x53\x2a\xe5\x85\xca\x55\x0c\x0d\x2e\x3b\xb3\x1d\xf9\xb3\x4b\x1e\xe1\x94\xe1\x6a\x57\xd1\x0c\x38\xaf\xba\xeb\x18\x56\xca\xa4\x9d\x20\x79\xb6\x61\xa1\xf8\x88\xc4\xe3\x65\x8c\x94\xce\x3a\x5e\xf0\x6d\xc3\x40\xe1\x6e\xac\xca\xe3\x98\x10\xe9\x94\x16\x7c\xc1\x4b\xda\x65\x8c\x6c\xcb\xbb\x73\x27\x31\x2e\x63\xe4\xb6\xac\x69\x69\xdd\x65\x0e\xaf\x4d\xfc\x59\xbf\x8e\x61\xcb\xb2\x96\xa6\x55\x57\xf1\x82\x2e\x6c\x0c\x24\xad\x84\xd6\x36\x35\x2b\x1f\x46\xa4\x1a\x35\x8f\xb2\x2e\x74\xf0\x82\xef\x6a\x5a\x3e\x74\x63\x56\x79\xba\x68\x22\x34\x53\x8a\x4f\x74\xe4\x5d\x67\x3a\x8d\x5b\x63\x1b\x83\xae\x1a\xde\x35\x6c\x0d\xae\xc7\x4e\x75\x1a\xef\xc8\xe6\x9b\xb4\xaa\x1a\x57\xd1\x2c\x38\xaf\x46\xd5\xf1\x8e\x09\xb6\xc9\xb3\x6d\xb3\x75\x3d\xcb\xcd\xf1\x71\x1e\x57\x9e\xa7\x63\x56\x5e\x6c\x85\x26\xf0\x0c\xa3\xbc\xd0\x51\x1d\x3d\x0f\x33\xf3\xe2\x74\xe2\x84\x27\x5e\x65\x5b\x3e\x71\x13\x6c\x83\xe4\x42\x57\x3a\xba\xa5\x25\xf5\x98\x39\xbc\xeb\x51\x6c\x8e\x66\xb5\x24\x3b\xba\x66\xa7\x79\x35\x3a\xbc\x76\x24\x2f\x63\x74\x6d\xef\xba\x96\x9b\x0f\xe3\xbc\xaa\xb4\x64\xb9\xcf\xd1\x62\xdb\x6e\x0f\x9e\x61\xd5\xc3\x65\x0c\x5d\x5b\xee\x2d\xab\x90\x77\xfd\xc1\xb4\x00\xa0\x40\x04\x24\xa0\x70\x80\x77\x5c\x4a\x49\x79\x03\x5c\x75\x1e\xbd\xe1\x8c\x76\xce\xbb\x2a\x71\x9e\xa8\xb4\x26\x0d\x51\x92\xb5\xb0\xf2\xd3\x91\x14\xb4\xcc\x9c\x68\x9a\xe3\xbd\xfd\x85\x89\xd5\x18\xd8\x73\x92\xb4\x32\x26\x6d\x6b\xd1\x37\x2d\xf7\x9c\x56\x17\x3e\x88\x0a\x00\xe5\xb3\xce\x23\x52\x94\x1f\x15\x5a\xa0\xcc\x94\x07\xb4\x72\x29\xdb\x70\x17\x81\x03\xb6\x53\xa9\x09\x05\x13\x49\xca\x6c\x24\x85\xab\x0d\xfb\x22\x1f\x95\xaa\x1e\x2f\xf3\xb9\x61\x25\x59\x49\x4a\xc7\x5e\xcd\x09\x81\xcc\x69\x83\x2e\x6b\xc1\x36\x14\x2d\x4d\xb3\x4a\xb9\x38\x08\xa5\x7f\x31\xb2\xde\x96\x34\x2c\xe2\x1c\xc1\x3c\x30\x81\x01\x8c\x4b\x9c\x76\x19\x41\xb2\xed\x28\x60\x94\xb3\x10\x6f\x68\x9d\x2e\x8b\xda\xa6\x15\x2b\xea\xbb\x20\x70\x34\x77\xb1\x67\x26\xa6\xaa\x1b\x4f\xb7\x15\x90\x74\x71\x60\x9f\xb5\xf3\x7e\x83\x30\x55\xde\xf8\x9a\x6d\x25\x2d\x00\xf2\x04\x80\x42\xb5\x03\xcd\x95\xdb\x8d\x92\x01\x1e\xb0\x80\x06\x76\x39\xaa\xc7\xe9\x98\x15\xf4\x46\x94\xe4\x30\xf2\xb7\x20\x1a\xe7\xf1\x99\xa6\x92\x66\x53\x70\x92\xac\x44\x91\x79\xc1\x99\x24\x37\xf4\x44\xa5\x17\x5f\x47\x51\x7a\xdb\x8f\x2f\xf1\x93\xb0\xa1\x68\x9a\xe3\x2a\x47\xd7\x14\x25\x8a\x63\x86\x17\x16\x1a\x49\xd3\x34\x57\x55\x7b\x45\x51\xa2\x24\xce\x18\xee\x62\x32\xea\x2b\x71\x22\xa1\x3a\xac\x4c\xa6\x2e\x71\xb1\x77\x24\x60\xd3\xab\xbd\xd3\x8e\x29\x5b\x3a\xea\x46\xf0\xed\x28\xe3\x79\xed\x82\x13\x4d\x57\x7c\xbd\xe7\x24\x25\x49\xab\xd1\xb4\xe7\xc4\x62\x63\x64\x4c\xd3\x72\xbc\x7e\x91\x6d\x24\x88\x09\xc1\xd5\xb0\x8d\x95\x6e\x85\xc6\x37\x6d\x77\x81\xc7\x55\xe0\x24\x0d\xb5\xdf\x23\x4c\x2d\x75\xa1\xeb\xba\x70\x79\x91\xf7\x66\xf2\x52\x00\xb6\x03\x43\x0c\xe4\x00\xc6\x8e\xd9\x26\xbe\x4d\x6a\x25\xec\x90\x06\x48\x81\x0f\x22\x92\x4c\x99\x8d\x7c\xe1\xb1\x61\x97\xe5\x38\x9f\x8f\x14\x49\x16\x4c\xce\xee\x64\xc1\xb5\xed\x27\x3f\xfa\xe2\xdb\x5d\x7c\x70\x59\x92\x9e\x7d\xeb\xb1\x8a\xaf\x7e\x39\xfb\xd9\xdf\xc6\xbf\xf7\xd5\xbf\xf7\xc1\x53\x00\xc8\x6a\xb8\x98\xcf\x96\x61\x52\x1f\x17\xd4\x92\xbe\xf8\x91\x1c\xa8\x2f\xbe\x2b\xc1\x58\x76\x79\x89\xb5\x23\x8f\x7c\x8e\xb5\x25\xc3\xd6\x9e\xca\xe2\xa3\xf7\xb9\xcc\x77\xed\xcf\x65\xc7\x2f\x65\xf6\x4d\x9c\xfe\xa7\xca\x98\xae\x69\xbc\xbd\x65\xe5\x7d\x77\xf1\xbb\xdd\x05\x8a\x20\x59\xd5\x34\x0a\x01\x4e\x43\xc9\x82\xdd\x8a\xdd\x20\x4f\x33\x46\x9e\x87\x2b\xbf\x68\x80\x03\x40\x1c\xa9\x9c\x95\x65\x59\xb1\x83\x98\xb3\xab\x85\xa0\xd1\x17\xd1\x28\x8d\xad\x20\x6b\x51\x16\x33\x84\x20\x68\xd9\xa4\xa7\x95\x50\xb9\x9a\x61\xa5\xb5\xe3\x23\xbc\x26\x24\x56\x96\x65\x17\x1d\xad\x1b\x56\x5a\x5e\xc7\x24\xce\x56\x86\x64\x7c\x7d\xc1\x43\x8e\x92\xac\xdb\xaa\x57\x3c\x50\x9a\xe1\x04\x77\x6f\x59\x65\xdb\x8d\x19\x21\x68\x35\x8a\xa0\x1b\x41\xda\xda\x8e\x66\xe4\x75\x37\x06\x71\xd2\x50\x9b\x14\xce\xf8\x56\xbc\xd0\xb5\x38\xc7\xd9\xd6\x71\xdd\xe9\x42\x6b\xdb\x09\xde\xde\xb2\xcb\x33\x72\x99\x7f\xcd\xcd\x11\x24\x17\xc4\x6d\xe0\xb8\xe4\x40\x45\x5e\x01\x40\x44\x27\x83\x6f\xbb\x66\x25\xee\x48\x38\x7c\x96\x47\x92\x26\x00\x50\xc9\xa7\x79\x96\x14\x25\x8a\x62\xe3\x22\x0f\x0b\xf2\x2a\xe7\x9c\xa1\x0a\x52\x68\xfb\xc1\xd3\xde\x01\x7d\xa4\xd8\xa2\xe4\x9e\xe0\x62\x1e\x8c\xf3\x78\x84\xe9\xa7\x78\x40\x91\x7b\xff\xf3\x1a\xa1\x8d\xb4\x29\x58\x56\xb9\xc2\x65\x0c\x41\x3e\xaf\x11\xae\xb4\x55\x4d\x4b\xd2\xe0\x02\x27\x5c\xe1\xca\x8a\xbf\xac\xaf\x28\xcf\x32\x86\x17\x04\xd7\x7a\x86\x53\x34\x2d\xc9\xb3\xec\xda\xdf\x73\x6c\xe4\x28\xda\x53\x7f\x57\x38\xc3\xb8\xf0\xdf\x51\x95\x2b\x1c\xc3\x0b\x17\xfc\x9e\xe0\x54\x4d\x8b\xd2\xf8\x3a\x27\xee\x53\x5b\xee\x73\x7f\xd7\xb6\xc6\x65\x0d\x52\xc4\x40\x02\x40\xee\x4a\x5e\xd8\x09\x5c\x3e\xc0\xb8\xcf\x51\xc6\xe6\xc8\x69\x11\x09\x28\x00\x80\x1f\xc4\xf5\xe2\x5c\x58\x67\x92\x62\x0a\x4e\xb3\x34\x5c\x53\xfc\x98\x48\xc4\x98\xd1\x92\x63\xc6\xb6\x96\xc9\x6d\x7c\xc3\x46\x1c\x65\xac\x54\x55\x37\xf2\x53\x59\x6c\x04\xc9\x30\x66\x81\x0d\x97\xe3\xb0\x38\x1b\x66\x5a\x96\xa9\x2d\x6a\x7e\x7d\x46\x82\x76\x20\x2e\xce\x3d\x09\xc0\x40\x93\xf4\x14\x19\x80\x60\x88\x23\x77\xc1\x25\x06\x4a\x05\x04\x72\x18\xb6\x60\xdc\x03\x85\x9e\x13\xdc\x99\x8c\x06\x61\xc4\xd5\x09\xce\x53\x0a\x10\x24\x7d\x06\x67\x35\x61\x22\x89\x8e\xe5\x3a\x72\xf9\x44\x8e\x08\x7b\xbf\xa1\x38\x02\x07\xd2\xd1\x46\xe1\x64\x38\x95\x52\x0b\x98\x7d\x30\x22\x1c\xa7\x44\x04\xb9\xe1\x46\x85\x36\x52\x8e\xa4\x68\x74\x8e\xe3\x11\xb2\xeb\x25\x9a\x97\x53\x2b\xa3\xa2\xa7\x00\x0d\x07\x00\xb0\x11\x00\x69\x04\x47\x5c\x22\xb8\xb2\x8d\xcb\xc7\x61\xa6\xd0\x3c\xad\xa6\xb1\xa0\xd3\xf3\xe7\x7d\x15\x11\x10\x11\x58\x81\x88\x54\x98\x84\x4b\x38\xa7\x5c\x1c\x87\x99\x44\x7d\x01\x03\x4a\xf6\xed\x9e\x1f\x09\x9e\x07\x00\x4f\xb1\x14\x09\xe2\x9d\x83\x06\x3a\x00\x8a\x2d\x0f\xcf\x35\xf2\xa6\xf2\xd2\xf2\x1a\xbe\xe4\xfe\x12\xa7\xd4\xe8\xbc\x3d\x4a\x8b\xb5\x0e\x26\x59\x4f\x97\x78\x50\x88\xbd\x17\x0e\xad\xe7\x46\xb9\x93\x6c\x2b\x3c\x80\x05\xaf\xa5\x47\xcd\x86\x38\x6c\x6f\xe8\x03\x1f\xa5\xa1\x13\x14\x08\x6b\xe3\x53\x79\xc4\x30\xa8\x5e\x53\x4c\x77\xc2\x8c\x04\x81\x8e\xf9\xb8\xcc\x48\xa3\xdb\x75\xc8\x0a\x6a\xed\xc3\x5a\x4a\x23\xd0\x82\x8d\x4a\x04\x58\x24\x6d\x76\x78\x6b\xcc\x6a\x72\x67\x13\xe7\xb5\xd9\x00\xcc\xae\xf9\xb2\xb5\x30\x0b\x85\xc2\x03\x92\xc8\x50\x8f\xf9\xd1\xca\xd9\x40\xf3\xe5\xd1\x98\x55\xbb\xdc\xdb\xd0\xbc\x11\xa5\x87\xc2\xe5\xb0\x35\xe5\xed\xea\x31\x08\x9c\x2a\xf6\x24\x35\x27\xfd\x79\x23\x64\xa9\x21\xa5\xe7\x71\x95\x70\x65\x1f\xcd\x03\xfe\x84\xc8\x36\xbb\x76\xe7\x6b\x7f\x86\x6d\xc2\x53\xed\x2f\x1d\x74\xcf\x04\xd4\x51\x84\x6a\x76\xea\xd4\xc3\xd1\xa2\xad\x91\x87\xdc\x64\x13\x4e\xc7\x32\xee\xd7\x6c\x4b\x3a\x81\x42\x08\x5e\xc2\xc2\x66\x67\x40\x58\xbe\x9a\x67\xd4\x06\xd5\xa1\xd9\x98\x3a\xbe\x5d\xec\x67\xf4\xcc\xad\xa7\x13\x34\xea\x91\x5c\xea\xcc\x66\x36\x2e\xb5\x6d\xad\xe0\xdb\x59\x09\x00\xa1\x8d\xbd\xb9\x1f\x96\x4b\x3e\x98\x7b\x79\xae\xe7\x3d\xef\xa6\xfb\xe5\x1c\x5e\xb3\x2c\x9c\x6e\x6c\xe1\x04\xd4\x5d\x35\x1c\x64\x0d\xec\xce\xda\x0e\xf8\x28\x9d\x16\x21\x35\x10\x28\x3b\x00\xc0\x67\x0a\x65\x0b\xf3\xf9\x6a\xb1\x5d\xae\x37\x3c\x79\x1c\xf1\x59\xb5\x70\x29\x23\x40\x97\x7b\xed\xa4\x9e\xf7\x22\x9f\x72\xe4\xdc\x76\x90\xa3\x78\x9a\x67\x95\x1c\x3b\xfa\x04\xb7\x33\x2a\x2f\x18\x24\x48\xaa\xae\x29\xa4\x85\x41\x45\x9c\x85\x20\xfb\x78\xe5\xb3\x7a\x00\x43\x5a\xee\x45\x32\x08\x46\xff\x6c\x0d\xd2\x25\x16\x6b\x1c\xec\xb0\xd5\x0e\x8e\x37\x09\x89\xdd\x08\xf8\xac\xdb\xd5\x5d\x21\x99\xa2\x1c\x5a\xf2\x06\x4d\xcd\x93\x61\xcf\x2a\x74\xc7\x43\x71\x4a\x66\x73\x97\x51\x65\x5c\x17\x37\xf6\xce\xf1\x39\x03\x3b\xd9\x12\x12\x97\xb1\x86\x1f\x59\x26\x2b\xce\x16\x84\xea\x73\x7e\x99\x6e\x5a\x2d\xde\x5b\xfa\x6a\x0b\xcf\xcd\x19\x46\x42\x9b\x5d\xcd\x23\x4a\x60\x25\xed\x66\x37\xd2\x13\x5b\xef\x39\x8d\xd8\x71\x49\x61\x51\x46\xb7\xe4\x42\xfe\x04\x1d\xe6\x72\x37\x11\x63\xa5\x4f\x8e\xa3\xcc\x48\x9b\x8e\xd9\xfd\xa1\xde\xe0\x2e\x20\x94\x2c\x59\xa2\x1b\x3e\xde\xe2\x25\x7f\x9a\xc5\x7b\x1f\x54\x80\xbf\x78\xdf\xd6\x6a\x83\x36\x2e\xd8\xe3\x5b\xc3\x07\x44\x61\x76\xcb\x25\x39\x39\x80\x98\x89\x2d\xeb\x9b\xe1\x4c\xc1\xe3\x99\x42\x20\x43\x0c\x39\x0d\xaf\xef\x46\x8d\x08\xb8\x55\x1e\xe9\x21\x08\xf4\x56\x91\x4b\xc6\xa0\x8b\x68\x4d\xb0\xbe\xb9\x8b\x47\x4d\x55\xed\x54\xb0\x1c\x7e\x2f\x33\xf6\x6e\x61\xe2\x80\x6e\x92\x8a\x2f\xe9\xe3\x3e\x02\xe8\xc0\xab\x0e\xab\xd1\x63\xce\x53\xf9\x8a\x81\xc1\x22\xa2\xf7\x6d\x34\x77\x71\xa7\x05\x22\xd7\x35\x12\xb1\x9c\x1d\xe2\xa5\x21\x88\x27\xdb\xd2\x82\xae\xa5\x06\xe6\x80\xe4\x93\x3d\x69\x08\xb3\x42\xb7\x48\x8c\xca\xe7\x0e\x0d\x97\x0b\x02\x51\x02\x0d\xd6\x40\xab\x24\x91\xb8\x93\xe4\x88\xd7\xd6\xbc\x4a\x2e\x63\x66\x0f\x16\xa9\xd1\x8a\xcc\x56\xa0\xe6\x3e\x98\xfb\xba\x7a\x8a\xb4\x7a\xe7\x63\x4c\xb6\x5e\x8f\x16\xa6\xe8\x09\x24\xb1\xea\x8a\xa2\xf3\x85\x55\x9c\x5c\x53\x01\xfa\xa0\xd6\xaa\x70\x3c\x0f\xca\x9a\x68\x9a\xb8\x8f\x54\x14\x08\x7a\xbb\x53\x42\xc5\x4f\x1b\x20\x47\x94\x1c\x7b\x3a\xad\x9d\x9b\xbd\x32\x87\xc9\x74\x5b\xed\x83\xce\x3a\x5a\x4b\x0b\x85\x30\xe3\x18\xee\x31\x63\x3d\x8f\xb8\xc0\xcd\x0e\x2a\x28\x41\x5e\x1b\x74\x32\x54\x73\x2c\x26\x03\x9f\x1c\xb2\x08\x5f\x1e\x7c\xef\x30\x65\xb9\x22\x81\xc8\x25\xd2\x78\xe9\xcf\x0e\x3e\x15\x31\xb3\xe4\x30\x50\xfb\xc3\x14\x46\xe2\xce\x17\x6d\xbe\x05\x80\x57\x40\xa3\xef\x8f\x45\x0c\xf5\xfb\xcd\x19\x3b\x21\x6c\x8a\x55\xe6\x02\xc2\xba\x79\xd3\x5b\x2b\xe4\xb0\xa8\x9a\x83\x27\xa1\x0a\x66\x6d\xcd\xf3\x7a\x45\x0c\x46\xe7\x91\x43\xcc\xc4\xc0\xea\x77\xe1\x69\x21\x87\x10\xee\xb8\x8c\x62\xf8\x91\xd0\x98\x2d\x1e\x84\x87\x29\x46\x74\x40\x01\x84\xa2\xe3\xb9\x87\x99\x19\xe5\xd2\xe4\x30\xf7\x66\xde\xee\x90\x0a\x65\x8b\x75\x1c\xe8\x43\xec\xc4\x3b\x72\x12\x63\x91\x8b\x65\x0b\x19\xdb\x69\x07\x2e\x6d\xc4\x13\xbc\x03\xda\x6a\xb1\xdb\x05\xe2\x32\x5a\x95\x3e\x2a\x74\xe1\x96\x11\x84\x49\x50\xc3\x58\x3e\xa1\x11\x5f\x32\x22\xb1\xdb\xe7\xee\xfe\xb4\x23\x14\x4e\x8c\xf8\xb2\x80\x3d\xcf\x22\xda\xa9\xb1\x1d\xdb\x1e\xe8\xe5\x31\x43\x8f\xb3\x93\x1e\x18\x4b\xb3\x4a\x51\x44\x4c\x0c\x58\x71\x8f\xbb\xf4\x3c\x00\xc0\xd6\x9e\x41\xc2\x90\xdd\xda\x72\xe0\xe1\xe1\x82\x90\xab\x25\x0d\xfb\x64\x02\xe3\xa0\x84\xf4\x88\x5a\x39\x26\x90\x92\x60\x11\x43\x60\xc5\x85\xc4\x36\xad\x16\xd0\xd8\x02\x40\x3a\xb4\x48\xdb\x5c\x3a\x3b\x9f\xb8\x85\x32\x21\xdb\xed\x22\xe3\x0e\x1d\x01\x2d\x38\xc9\x3a\x5a\xfc\x56\xae\x77\xba\x14\x06\x20\x3f\xbb\xc7\x05\xdd\xc2\x0a\x91\x66\x7c\x95\x68\x96\xc5\x16\x0a\x4a\x96\xb6\xb7\xb1\x40\xde\xcd\xe0\x48\x54\x08\x46\x20\x89\xa2\x42\x15\xc3\x50\x1c\x08\xe9\xe2\xce\xa1\x08\xde\xa8\x18\xcb\x5e\xa1\x13\x86\x97\x7e\xd9\x10\x0b\xb4\xdc\x2f\x6b\x62\x7e\x86\xcb\x1d\x38\x41\x87\x72\x64\xd1\xf9\x60\xe6\x11\xc7\x1e\xd0\x91\x91\x9b\x55\x16\x3a\x3e\x51\x23\xc2\x88\x39\x27\xb2\x5e\x13\x91\xbb\xc0\xd6\x60\xec\xd9\x7e\xb7\x15\xa1\x25\x62\x93\x0c\x4e\x9f\x07\xbe\xaa\x59\x06\xec\x17\x7b\x06\x6e\x8f\xa6\xd7\x83\x6d\x71\x3a\x05\xa2\xdf\xf4\x07\x7b\x90\x25\x28\xa1\xdc\x45\x02\xf0\xc5\x0a\xd8\x00\x10\x8b\x7c\x4b\x48\x7b\x3f\xd2\xa9\x15\xab\xa9\x35\x8f\x9f\x86\x15\x79\x04\x19\x49\xef\x00\x09\xb4\x6c\x0f\x81\xdd\xb0\x93\x79\x21\x5b\x8f\x17\x9b\xb6\xcb\x8b\xf0\x84\x86\x56\x85\x61\xfb\xe8\x3c\x60\xd4\xe9\x30\x2d\xf2\xf3\x26\xc5\xca\xf3\x6e\x65\xeb\x42\x4b\xca\xa7\x09\x44\x40\x54\x12\xb8\x44\xfc\xc5\x76\x6a\x51\x19\xdd\x45\x68\x8c\x03\x92\xe3\x41\x04\x36\x3b\xd8\xdd\x16\xf3\x11\x26\xa8\xc8\x3c\xb0\xcb\x1e\xd5\xbb\xf3\x81\xf2\x55\xae\xb7\xc1\x59\x89\x09\x06\xca\x4e\x9a\x0a\xba\x2e\x02\x0b\x7d\xe7\x59\x0e\x58\x47\xae\xd1\x38\x16\x30\x68\x00\x66\xd4\x88\x2f\x15\x0c\x6a\x56\x4b\x76\x34\x8c\xda\xc9\x09\x98\xc8\x8d\x5e\xca\xca\x23\x73\x64\x3b\x24\xa2\xfa\xa2\x38\xf5\xfb\x95\xc4\xe5\xed\x51\xab\xe7\x56\x3a\x69\xd3\x46\x5b\xa0\x32\xcd\x65\x72\x7f\xb0\xac\x70\x1a\xad\xea\xb4\x60\x88\x88\x8a\x78\x33\xeb\x0e\x7b\xc6\xee\xb6\x00\x14\xb5\x01\x8f\x4a\x49\xc1\xb6\x98\xec\xcb\xb9\xcf\xcc\x15\x13\x27\x0b\x1b\xe9\x08\x11\xa4\x0e\x29\x03\x02\xc4\x5e\x0a\x01\x69\x06\x81\x41\x23\xc9\x20\xb3\x00\x00\x92\xcf\x1c\xb5\x65\x39\x78\xab\x8d\x49\x4d\xa7\x90\x4a\x9c\xd3\x54\x78\x1d\xda\x31\xb8\x27\xce\xcb\x60\x8b\xd8\x42\xb6\x5a\xe9\x80\x06\x04\xe9\x9c\xfa\x43\xbd\xb6\x49\x9d\xe8\xa4\xc1\x04\x8a\x41\x83\x61\xd3\x6d\xb3\x6e\xd2\x5c\xf6\x04\x28\x9b\xc4\xf4\x51\x34\x8f\x75\xa2\x82\x99\xec\x00\x29\x9e\xfc\x9a\x8e\x54\x1f\xc8\x43\x49\x46\xa7\x40\x1f\x5b\x9d\x15\x15\x9a\x59\xcc\x4a\xd9\x43\x67\x3b\xc0\xad\xfc\x64\xa7\xf8\xfb\x68\x59\xc9\xf6\x4c\x3c\x8e\x8a\x76\x42\x0f\xc7\x9c\xe9\x8f\x18\x1e\x6d\x86\x09\x43\x60\xc8\xdb\x08\x8b\x09\x1b\x23\x7d\xb5\x5a\x86\x65\x6e\x19\x22\xed\x52\x01\x8c\x0f\x6c\xd8\xd9\x63\x70\xf4\x23\x13\xd5\xc6\x93\x36\x14\xb0\x59\x3a\x7b\x5e\xad\x53\x95\x9c\x03\x4d\x81\xf2\xde\x2c\x81\xd1\xee\x97\x20\x02\x8a\x44\x6c\x5d\x73\x00\x20\x03\x84\x3a\xea\x10\xb2\xcb\x0f\xb5\x58\x6b\xea\x96\xf2\xe2\xbd\x07\x2f\xbd\xb0\xa9\x08\xcc\x5b\xe3\xc7\xaa\xb7\x68\xe7\x48\x90\x14\x2a\xfb\xc1\x9e\xa9\x48\x81\x8e\x48\xea\xe0\x33\x3b\x69\x58\x01\x00\x28\x63\xd0\xf1\xac\x30\xf2\x39\x9c\xe5\x43\x53\x49\x52\xbc\x53\x38\xe1\xb8\xe8\x61\x7a\x75\x68\xd0\xd3\x86\x28\x22\x69\x1b\x70\x59\xe3\xb4\x49\x74\x74\xe3\xec\xd8\x07\x0b\xc0\x98\xd1\xac\x9b\xf6\x83\x51\xec\x45\x4c\xe7\xc5\xca\x3d\xba\x96\x00\x70\xf3\xfa\xe5\x35\x61\x0e\x35\x1f\x09\xc0\x81\x57\xfb\xa6\xd3\xb0\x60\xec\x94\xad\xed\x57\xbb\x93\x4d\x6f\x56\x64\x76\x6a\x14\x95\x8f\x88\xb0\x8a\x87\x62\x6b\xf1\xc7\x6e\x53\xe7\xd5\xc2\xa4\x77\xda\x89\x08\x97\x34\x91\x18\x58\x1d\xf1\x9e\x02\x06\x0a\x17\xc3\x95\x08\x24\x4a\x8a\x59\x6f\x0b\x00\xc8\x22\x61\xd6\x31\xed\x5c\x9e\xd9\x67\xde\x5f\x9f\xc9\x82\x77\xb1\x66\x14\x77\x7d\xb6\x29\xc6\xa1\xdd\x9b\x6b\xa6\x4d\xd1\x14\xdf\x25\x2d\x09\x58\x72\xc5\xa4\x83\xb7\xa1\xd7\x11\x7f\xdd\x17\x28\xce\x69\x7b\x84\xc9\x80\x91\x1c\x51\x8c\xca\x69\x25\xcd\x98\x71\x4a\x06\x9b\x88\xb8\x71\x36\xb1\x09\x49\x00\x01\x64\x84\xb0\xad\x18\xa4\x95\xd7\x7c\x65\xfa\x67\x3a\x59\xbb\x0d\x32\xb7\x33\x36\x6a\xfa\x6e\x7e\xd8\xf1\x45\x1a\xf0\x8b\x13\x3d\x38\xbb\x33\x60\x15\x82\xa3\x29\xa3\xc9\x24\x9f\x00\x20\x40\x05\xa0\xc1\x4a\x3d\xe3\x07\xb5\xa5\x71\xc0\x3b\x9d\x54\x00\x6a\xb1\x29\x64\x7b\xb0\x33\x99\x73\x4e\xdd\x64\x6c\x83\x63\x13\x12\xcb\x43\x22\xa5\x16\x07\x93\x39\x41\x2c\x00\x07\x04\x1f\x5b\x81\x75\xd9\xd2\x4c\xa6\x6b\x1b\x9a\x24\x66\xbe\x17\xaa\x14\x09\xbb\x6a\x25\xb2\xf5\x76\x57\x65\xbe\x00\x2d\x17\xe2\x58\xa0\x4d\x95\xd7\xe7\x7d\x6b\xf3\x96\x9a\x40\x8c\x72\xfd\x7e\xa8\xa4\x6b\x89\x04\x72\xe2\x35\x0a\xa1\x00\x8a\xa4\xda\xba\x2a\xcb\x5d\xdf\x05\x33\x78\x4e\x86\xeb\x68\x91\xd0\x41\x62\xef\x23\x33\x57\x00\x87\xcf\xf0\xa1\x4d\x69\x82\x4e\x88\xac\xdc\x2a\x0b\x21\x81\x21\x41\x57\x60\xe5\x68\x1d\x8e\xe3\x94\xcc\x40\xd8\xef\x85\x52\x3a\xd2\xe6\x41\x91\x9d\xa9\x81\xcf\x6b\x1c\xa9\xc5\x48\x42\x01\x3d\x9e\x3c\x47\xae\xfd\xd1\x59\xf0\x8b\xb4\xc9\x9a\x23\x7e\x46\x8f\x6b\x10\x44\x02\x35\x2e\x36\x05\xdf\x9a\x62\xec\xf9\x38\xda\xd7\xf3\x15\x3e\x2b\x7b\x2d\xd8\x12\x55\x49\x26\xa4\xc9\x36\xd3\xcc\x9a\x0c\x00\x51\x54\x47\xad\x80\x1e\x01\x2c\x86\x33\x89\x04\x60\xf2\x99\xd3\x4c\x9b\x1d\x34\x6d\x9b\x86\xb6\x95\xe9\x95\x87\xe1\xf9\x01\x55\x0f\x79\x5d\xf3\xa1\x14\xa6\x59\xcc\x82\x43\xbf\x34\x4b\x40\x03\x32\x02\xa0\x12\xd4\xb4\x13\x67\x42\xaa\x50\x96\x34\xd8\xa4\x71\xfd\xa6\x4f\x0a\x6d\xb5\x82\xc7\xb8\x5a\x23\xc6\xb1\x56\x88\x01\x1b\xf1\xb9\x1f\x76\x75\x7a\x54\xe8\x73\x8f\x6d\xd6\xc4\x62\x3b\x53\x17\x73\xd8\xa8\x57\xb2\x99\x44\xcb\x41\xce\x17\x56\x5f\xc0\xa1\x8b\x67\x02\xb5\x2b\x5d\x8f\x6f\x17\xae\x58\x47\x5e\xbc\x9b\xaa\x13\x2e\xa8\x78\x22\x53\x49\x36\xac\x56\x4e\x65\x2f\x6b\x84\x93\x25\xdf\x03\x1a\x90\x81\xd9\xe5\x3e\x59\x94\x9e\xdf\xa4\x1b\x5c\xd8\x68\x4b\xc8\x29\xda\xd4\xb4\xd4\x2d\xb3\xe6\x61\xd5\x60\x05\xb9\x20\xce\xe7\xb5\x05\x56\xd4\x69\x21\x5e\xa2\x16\x55\x22\x15\x03\xe0\x9b\x26\xe9\x0e\xa6\x84\x66\xbe\x73\x60\x31\x05\xd3\xa1\x93\x83\x2f\x79\xd4\x66\x63\x3f\x27\xdc\xe9\x78\x08\xce\xbd\x89\xce\x23\x11\x4c\x8d\x0f\xfb\xc3\xf3\xe9\x85\x78\xb1\x0b\x2e\xcf\x9b\xb3\x75\x64\x2c\xfc\xac\xf9\x47\xd7\x72\xd1\x7c\xe3\x97\x07\x76\xb4\xc6\x70\x10\x80\x18\x65\x16\x51\x89\xc6\x69\x18\xd2\x99\x21\xc7\xf3\x70\xbb\x39\x1b\x72\x8b\x40\x34\x33\xab\x9c\x66\xd6\x07\x73\x79\x2a\x37\x83\x1d\x00\x40\x44\x68\x35\x47\xc5\x44\x8b\x80\x0d\x39\x66\x26\xe7\x49\x46\x47\x6c\xb1\xd8\x60\xb2\x3f\xd8\xc7\x89\x5b\x9e\xe4\x23\xd2\x2d\xc6\x76\xc4\x35\x2c\x23\xec\xf5\x82\x36\x14\x82\x59\x00\x8e\x00\xf9\xce\x66\xf1\x5d\xb9\xb1\xc9\x92\x07\x80\xb2\xc2\x99\xec\xf0\x4e\xb2\x84\xc6\xe5\x02\x3a\xb3\x4b\x71\x3a\xac\xa5\xf9\x7e\x52\x85\x82\xd9\xe5\xa7\x50\x6a\x93\x4c\x61\x07\xf3\xf9\x9b\x37\x26\x2a\xd4\x6a\x47\x5e\x42\x2e\x2a\x72\x61\xa5\x3f\x12\xe2\x79\x98\x42\x1e\x77\x17\x0e\x44\xab\x26\x01\x8c\x0c\xd0\x54\x7d\x2a\xa5\x25\xa1\x10\xa0\x07\x51\x3f\x31\x35\x27\x76\xf9\x91\xc5\x84\x00\x1f\x0e\x42\xe9\x15\x72\x0c\xb0\x69\x35\xaf\xad\x52\xdd\xe5\xeb\x78\x28\x65\xb6\xa4\x00\xc8\x48\x6f\xa0\x00\x98\x2f\x18\x16\xf4\xfb\x43\xc6\x96\xd8\x21\x44\xbb\x6e\xb3\xde\x1b\x54\x08\xd6\x76\x6e\x93\x84\x02\x97\xbb\x06\x42\x14\x72\xc5\x9d\x7a\xf2\xc2\xdb\xca\x33\x80\x42\x0a\x28\x2a\xe5\x34\x26\x2f\x57\x26\xf0\x58\x45\x5f\xef\xb8\xdd\xb6\xd4\xd7\xd3\xd6\xc7\x32\x54\x0e\x97\x3a\x30\x45\xb0\x25\xfa\x83\xbe\x92\xae\x9f\xf1\x37\x93\x8e\xef\xb4\xd5\xe5\xb9\xa4\xc5\x0d\xeb\xa1\xbd\x4b\x0e\x03\x7d\x42\x68\x2b\x66\x9a\xc4\x48\x3d\xe0\x02\x07\x5d\x42\x07\xd3\x29\x74\x67\xef\x59\x13\x46\x0c\x56\x75\x34\x5c\xc9\x11\xd4\xe3\x32\x70\x60\x1e\x82\x22\x23\xd4\x83\xca\xa4\x07\x00\x1c\x99\x69\xb7\xa3\x00\x8e\x8a\x16\x81\x19\x20\x76\xa5\xbd\xe2\x8f\xf3\x33\x3a\x1c\xc3\x15\x72\x6c\xf7\x3e\x84\xe8\xb2\x62\xe9\x94\xed\x10\x39\x48\xb7\x54\x52\x9b\x43\x0f\xd0\x2d\xbf\xbe\xe0\x41\x13\x02\xe8\xd6\x66\xd3\x1e\x5a\x08\xdd\x22\x6b\x49\x5e\x23\xda\xba\x09\x56\x34\xab\x3b\x6c\x31\x91\x73\xc9\xce\x0f\x0a\x0d\xc8\x33\xc4\x10\xfe\x65\x1e\xc0\xdc\xc7\xa3\x04\x9f\x56\x2a\xd8\xb6\x50\xbe\x60\xb6\x7b\xb3\x5c\x53\x26\xbe\xe0\x37\x08\x41\x50\x7d\x5a\x67\x03\x64\xba\xf3\xcd\x52\xf1\xfa\x8d\xa9\x71\x33\xd4\x75\xdc\x52\xdc\xf3\x4d\x60\x1e\xd1\x29\x23\xd7\xce\x5c\xa1\x01\xcd\x4c\xd0\x5c\x99\x22\xd3\x79\x12\x5e\xa8\xdc\xfb\xe3\x99\x5c\x58\x07\xbd\x9f\xc1\x6b\x33\x84\xfc\xe5\x62\xc1\xe3\xa6\x0e\x36\x06\x93\x83\x39\x32\x33\xc1\x56\x48\x20\x65\x57\xee\x06\x3b\xb2\x41\x0a\x96\xc8\x5c\x66\x71\x0d\x6e\xe7\x02\xc5\x9e\x8e\xeb\xb5\x24\xd5\x2b\x7d\xc7\xf8\x58\x53\x0a\x4e\xb1\x91\x4b\x1d\xf1\x72\x2e\x36\x23\x7f\xb9\x07\xd2\xd3\x79\x1e\x09\x58\x88\xe9\x29\x03\x16\xb9\xd5\x24\x57\x7c\x30\x13\x02\xf4\xe0\xe3\x89\x26\x2f\xd0\x03\x7f\x5a\xcf\xf2\xf2\xd4\x27\xc8\x60\x6c\x77\xe0\x08\xcf\xd7\x5b\x4c\x36\xc7\x29\xc5\x23\x73\x89\xed\x72\x7a\xc5\x70\x00\x65\xe6\xb9\x5a\x63\x4b\xfa\xe4\x2f\x17\x27\x71\x7f\x60\xf0\x86\x9a\x1b\x3c\x0f\x06\x7c\x11\x5b\x0b\xd1\x21\xbd\x79\xbb\x15\x83\x71\x96\x4e\x17\xfd\x45\xcc\xe2\xc3\x79\x3d\x9f\xad\x17\x73\x87\x14\x77\x4b\x02\x83\xcc\x4c\x67\xc9\x13\x45\x0b\x9d\x12\xeb\x39\x2e\x24\x64\x04\x68\xe0\x35\x07\xcf\xd2\x77\x6d\x7b\x41\x75\x5f\x85\x21\xd2\x99\x4d\x39\xd9\x76\x81\x23\x03\x85\xb8\xa1\xdd\xa5\xc2\xa1\x1d\xb6\x73\x48\xdb\xef\x64\x98\xa7\x8a\x58\x86\xf0\xcc\x35\xca\xa6\x3b\x41\x2d\x8e\xa0\x87\xb3\x17\x42\x85\xbc\x0d\x0a\xbf\x24\xd9\x82\x30\xb3\xa4\x87\x49\x65\x43\x58\xd9\xce\x86\xe6\xc2\x50\xe6\xa8\x08\xa5\x4d\xbf\x93\x16\xca\xb2\x9c\xf0\xee\x44\x29\xe7\x99\xe7\x60\xec\x24\x27\xb3\x68\xcb\x02\x9c\x72\xe8\x08\x3c\xde\xbd\x75\xf8\x2a\xc9\xdd\x28\x6c\xa1\xc4\x2f\x8b\xf7\xeb\xc5\xdd\xc3\xdd\xb5\x00\xaa\x8a\x6f\x0e\x60\x25\x26\x21\xab\x03\x2c\x6c\xa2\xf2\x42\xcb\x56\x33\x62\xda\x88\x2e\x0b\xe1\x7a\x48\x24\x22\x2f\x0e\x2e\xa0\x92\x9c\xf5\xf1\x6b\xc9\x26\x20\xf4\x8b\x07\x29\x6e\x76\x24\x34\xc6\xd7\x83\x00\x80\x99\x8c\x34\x20\x81\xb0\x94\x59\x39\xbd\x14\x44\x36\x1c\x6b\xba\x02\x40\x98\xd8\x00\x70\x24\x0d\x00\xb5\xb8\x56\xc8\x11\x00\xac\x31\x00\x40\xd5\x97\x9e\xe5\x2a\x02\x80\x08\x86\x42\xac\xd4\xdd\x75\xe6\x9d\x44\x83\x03\x1a\xec\x56\x00\x1a\x28\xa8\x14\xd1\x22\xbd\xca\x5e\x36\x68\x4c\x36\x01\x00\x7a\x6e\x00\x40\x4c\x24\x22\x14\x0c\x28\x88\x00\x60\x84\x98\x57\x69\xc6\x08\xb7\x4d\xb7\xdf\x67\xed\x5e\x0a\xe6\x10\x06\x4f\xab\x05\xbe\xee\xa9\x89\xce\x47\x95\x49\x3c\xae\x95\xf7\xce\xca\xe4\x0a\x9d\x67\x6c\xcd\xc2\x5c\xbf\xa3\x11\xbf\xb3\x52\xbf\xa3\x99\x05\x07\x9b\x2a\x43\x5b\xa0\x4c\x62\xa5\x04\x47\x85\xc9\x13\xa2\x8c\x2c\x97\xa3\x01\xc5\x90\xb9\xb2\x4f\xb3\xae\x84\x71\x5d\x86\x8b\xc0\xe2\x70\x6f\x74\xdc\xcc\x62\xf9\xa4\xd0\xed\x2e\x55\x79\x26\xf5\xbb\x29\x5b\x4f\xc1\x7a\xb9\x9c\xad\x7c\x7c\x3d\x33\x8e\x7d\x52\x79\x24\x85\x9c\x67\xeb\x99\x1b\x2e\xe7\xa7\x53\xce\x67\x27\x2c\x92\x51\x5b\xed\xbf\xfe\x19\x3d\xe8\x9a\x92\xd8\x62\xc5\x21\x14\x5a\x57\xdb\x5b\x7d\xe3\x36\x27\xf5\x64\x34\x7a\x91\xf9\xbe\x09\xcd\x5d\x2c\xa3\xd4\x50\x15\x98\xc0\xc7\x1d\x77\x51\x4c\x27\x0b\xf5\x96\x32\x57\x0d\x4e\xbc\xdc\x62\xcb\x84\xb5\x93\xdd\xd4\x9d\x4f\x67\x3c\xa9\x01\x0c\xeb\x45\x04\x59\x7b\x16\x39\x60\x1b\xa5\x65\xd2\x04\x56\xbc\x69\xe6\x03\x13\x41\x8f\xa1\x9a\xea\xc3\x60\x04\xe8\xf9\xd0\x9a\xdc\x6a\x2d\x1f\x3d\xb1\x19\x8a\x92\xe7\xc4\x61\x45\x97\x40\xe6\x00\x13\x89\x03\xa5\x93\xa3\x0f\x78\x82\xe6\xb9\x84\x03\x51\x99\x70\x24\xe0\x22\x2e\xe2\x08\x7e\x53\x05\x3b\x95\x54\x6b\xac\xdd\x91\x04\xe0\x41\x92\xac\x94\x08\xa4\xd0\x8e\x63\x52\x8d\x20\x94\x53\x8c\x29\x6a\xaa\xec\x3b\x9a\x24\x84\x6a\x64\xd7\x5e\x33\x8f\xa5\x24\x8d\xfd\x08\x57\x4c\x3c\xb0\xd3\x08\xa8\x0c\xa1\xa5\x79\x66\xe4\x45\xb5\x14\x73\x71\xbf\x6a\xb2\x55\xbd\x9e\xcb\x3b\x81\x87\x29\x85\x4c\x77\xa1\x4e\xfb\x4a\x03\x28\x64\xb9\x9e\x2d\x67\x4b\xb1\xdd\x61\xa7\x8e\x1f\xd6\x00\x71\x4e\xde\xc0\x1c\x14\x09\x6a\x10\x08\x9c\xa9\x05\x2e\x88\xc4\x69\xce\xb3\x9c\xcb\x0d\x5c\xc5\xcd\x37\x9c\x17\x9e\x82\x15\xda\xc0\x1c\x26\x4b\xc7\x13\x7f\x90\xcb\xf9\xe1\x40\xd6\x03\x42\xc7\x9c\x9a\x29\x4a\x82\xb9\xd8\xb2\x82\xdd\xee\xa0\x9b\x04\x8a\xee\x62\xae\x67\xbb\xf5\xbc\x2b\x0a\xa2\x59\xce\x27\x76\x0b\x81\x0d\xd0\x4a\xfb\x78\x1e\x4d\x53\x27\x65\x72\x77\x90\xad\xed\xba\xdd\x1c\xfa\x70\x16\x1c\x20\x11\x6f\xb0\x69\x25\x69\x1b\x43\x3e\x61\xae\x65\x53\x5c\x8d\x63\x04\xbd\xdf\xd3\x8a\xba\x23\x15\x61\x5e\x33\x59\xc8\x48\x41\xd0\xcb\x83\x64\x62\x96\x60\x10\x7b\xc6\x3c\x9b\xfb\xb8\xcb\xb1\x63\x73\xec\x4e\x03\x82\x9d\x7a\x11\xe9\x77\xfb\x0d\x00\x46\x14\xa7\x9b\x4c\xdc\xed\xf9\xb5\x73\x72\x26\x71\x89\xad\xca\x69\xc5\xb6\x72\xcc\x30\x68\x8f\xb9\x2c\x4c\xaf\x78\xfa\x04\xac\x38\x9c\x15\xe8\x8e\xa5\x96\xb0\xb3\x84\xc6\xdc\xf7\x0f\x22\xa1\x09\x6b\x09\x29\xf6\x30\xa8\x0b\x9b\xd1\x84\x84\x58\x1e\xb8\x44\x9e\x22\x2c\x45\x11\x22\xb4\x59\x0b\x89\xa4\xb4\x41\x20\x8a\x20\x66\x0b\x36\xdd\x88\xfa\x98\xab\x07\x6f\x3c\xac\x67\xb5\x0f\xad\xac\x76\x92\xd6\xd9\xc4\xac\xd7\xf8\x62\xd5\x0d\xa3\x43\x82\x7a\x3e\x78\x4a\x22\x91\x2a\x6d\xed\x88\x94\xda\x07\x21\x16\x72\xf8\x6a\x3d\x8b\x43\x68\x86\xf4\x50\xd8\x41\x3e\x06\x84\x19\xd4\x6b\xd3\x59\xd4\x4f\x91\xb0\x6c\xf2\x59\x47\xd0\x38\xe9\x00\x84\x55\x5d\x46\x5f\x96\xf5\x56\x11\x48\x32\x68\x6b\xa2\x5a\x20\x1b\x6a\x1d\xb2\x04\xb5\x5c\xee\xfb\x82\x47\x16\x25\x34\x5b\xd4\x33\xc8\x17\x79\x5b\xdc\xa1\x87\x78\x3a\x6c\x36\xa9\x6a\x27\x03\xa1\x0a\xe8\xa1\x10\x21\x2c\x51\xa7\x25\xd4\xeb\xd0\xaa\x38\xf4\xfd\x84\xea\x63\xe6\xae\x66\xf1\x5e\xf5\xf8\x85\x62\x08\x84\x2b\xf6\x7c\x1e\x99\x22\xaf\x0a\xbd\x16\x67\x1c\x51\xb9\x5d\x42\x33\xa0\x02\x24\xc7\xb0\x2c\x94\x01\x08\xda\xb2\x47\x0c\xab\x43\x38\xdc\x9d\x14\x7e\x4f\xbb\x10\x5f\xb0\x34\x57\x02\xc2\x0e\xd6\xe8\x1c\x9a\xe4\xdd\x61\xc6\x1f\x89\x51\xe2\x49\x08\x3a\x8f\xfb\xd9\xc6\x76\x9d\x68\x03\x9c\x36\x84\xe1\x3e\x44\x7a\xe2\x7c\xb6\x24\xa5\xd9\xd0\x59\x60\x9a\x02\x69\x79\x4a\x04\xc0\x42\x2e\xc2\x48\xd9\x2d\xd7\xeb\xe5\x74\x72\x77\x2c\x1a\x6d\x5a\xae\x52\x92\xc0\xea\x4b\x75\x00\x50\x89\x42\x1e\x35\x2d\xe1\xf2\x70\x98\x15\x0c\xe7\x42\x07\x7f\x9a\xd0\x5d\x8d\xc6\x93\xe6\xa9\x69\x2b\x92\x63\xbb\xd5\x71\x8c\xe0\x96\x47\x9b\xb4\xa0\x24\x0e\x20\x9f\x10\x2c\x47\x77\x62\xc5\x67\xcc\x75\x2d\x1d\x15\x38\xca\xe9\x21\xc7\xe3\xb4\x6e\x65\x93\x3e\x52\x65\x54\x63\x4b\x4f\x3e\x9e\x5c\x3a\x23\x04\x31\x99\x72\xdb\x8c\x04\xcb\xb1\x60\x84\x3d\x86\xb2\xb8\x71\x81\x67\x24\x55\xc9\xeb\x16\x0b\x84\xc1\xc5\x05\xbb\xca\x59\x92\x37\x08\x38\x53\xc8\xd2\x80\x5b\x5f\x80\x23\x52\xe2\x55\xad\xae\xe5\x23\x1b\x66\x30\x5d\x3b\x15\x57\x31\x9c\x47\x19\xe1\x76\x18\x64\x09\x3d\x2f\x23\x19\x0f\x0a\x2b\x6e\xb4\xc9\x64\x08\x8a\x9e\xa4\x2a\x35\xc4\xad\x04\xe3\x04\x17\x31\xad\x86\x44\xd1\xb8\x35\x26\xc1\xd4\x12\x52\x6d\x69\x82\x36\xe8\x92\x49\xd4\x1a\x3d\xcd\xd9\xed\xfe\x28\x05\xc8\xaa\xd2\x58\x33\x74\x8a\xbe\x2f\x12\xc7\x2d\x2b\x8e\x53\x08\xc0\xc5\x85\x51\x47\x27\x0f\xe9\x0c\x4c\x26\x04\x26\xb1\xc8\x40\x3a\x07\x80\xb0\x08\x76\xe6\x71\x25\x79\x02\x98\xba\x35\xd6\xc2\x99\x92\x13\x37\xde\xa0\x7b\x00\xc0\xd4\x4e\x32\xbe\x65\x53\x87\xdb\xfa\x02\x10\xfb\x20\x50\xd9\x04\x33\x2d\x46\x0d\x45\xdf\x3a\xaf\x82\x78\x94\xe7\x2e\x53\x9d\xd2\xd8\xcd\xa9\x39\xcb\x0c\x8a\xd2\x6b\x5d\x34\x88\xbb\xaa\x95\x27\x17\x9f\x6f\x28\xe8\x4c\xe1\x12\x35\xa0\x47\x93\x6c\x48\x89\xd5\x52\x63\xc8\x87\x16\x4b\x49\x09\x50\x14\xbc\x21\x9d\x2a\x71\x33\x69\x83\x79\x89\x8b\x77\x8d\xd9\xf2\xb3\x31\xe5\x81\xa0\x19\x5a\x27\xc1\xa5\xd5\x6a\x4a\x13\xe9\x9b\xa0\x47\xa5\x7d\x96\xd1\x79\x38\x31\x10\xab\xc6\xd3\x8c\xc4\xbd\x45\x7c\xa6\xa3\xa6\x38\x1f\x4d\x51\x9c\x62\x3f\x2e\x91\x84\x69\xa9\x64\x53\xe6\xf2\xd4\xcd\xa8\x16\x5a\x4d\xcb\x1d\x37\xe5\x07\x15\x5b\x87\x3b\x24\x30\x4d\x4d\xa6\x93\xa3\x0a\x17\x6a\xcb\x34\x11\xc2\x69\x55\x9e\x96\xca\xda\xd7\xfb\xc3\x28\x34\x84\xc7\xe6\xa5\x51\xf2\x8e\x95\x67\x3b\x6a\xaf\x3a\x51\x20\x51\xdb\x76\x5c\xb1\xfd\xde\xeb\x46\x6c\x3a\x9d\x62\x55\x11\xf4\x80\xc9\x45\x05\x90\xa5\x8e\x06\x83\xbd\x0e\x0f\xaa\x95\x9d\x00\x92\x23\x23\x7f\x46\x39\x3a\x8a\xd2\x5d\x53\x18\xa7\x3d\xb1\x96\xe0\x6c\x93\xba\x89\x39\xce\x46\x15\x02\x94\xd2\xef\x54\x05\x54\x95\x6b\xc3\xfc\x61\x92\x09\x02\x3e\x96\x0c\x68\x71\xf9\xec\xcd\xd7\x34\x6c\x2f\x2b\x06\xa7\x28\x2a\xc8\x07\x7c\x29\x46\xe7\x48\x61\x3d\xaf\x5d\x72\x47\x9c\xaf\x36\x12\x37\x1c\x37\x2a\xe3\x33\xf0\xc8\xf0\x3e\x15\xd0\x70\x65\x78\x98\xad\x20\xb1\x6d\xb5\x14\xa3\x8d\x87\xc3\xf2\x14\xb1\xd2\x59\xc6\xd2\x54\xda\x24\x2e\xd8\x4d\x9a\x0f\x86\x89\x80\x6d\x33\xcb\x41\xcf\x96\xd8\xa4\xb0\xa9\xe0\x1a\x55\xa5\xb3\xc0\x50\x08\x51\x29\x80\x9d\xe3\x3c\x8e\x1c\x42\x32\x0b\xc0\x26\x64\x43\x94\x71\xc9\x7a\x7d\x08\xf6\x8a\xb4\x5b\xd5\xdd\xbc\x25\x16\x72\xb6\xf1\x76\x78\x95\x12\xc3\x44\x44\x1b\xb6\x14\xa4\xc0\xe7\x36\x2b\x94\x1e\x60\x55\x58\x18\xb5\x3e\xb2\x80\xa7\x59\x8d\x20\xc5\xdc\x64\x49\xf7\xb4\x1f\x0c\x7f\xd8\x54\x7b\x89\xe7\x34\xd4\x2e\xcc\xb8\xa9\x61\xc4\x07\xb2\x32\xa6\xe4\xd2\x96\x36\xf3\x64\x71\x1a\x92\xc5\x5c\x34\xf1\xae\xe1\x04\x04\xde\xf0\x67\x56\x3c\x55\xba\xae\xc2\x94\xe3\x64\x7c\x47\xd3\xd2\xa8\xce\x38\x93\xe7\x75\x2d\x63\x00\x13\x38\x22\xbe\x3c\x96\x4c\xd4\x0e\x0d\xed\x60\x7b\x78\x41\x9d\xb0\x10\xb0\xcb\xd5\xd2\xcc\x57\x50\x07\xb7\xab\x42\xca\x82\xf5\xee\x48\xc4\x2c\xb9\x45\x36\xcb\x20\xcb\xf1\x35\x1c\x61\x0d\x37\x91\x1d\x34\x3f\xb3\x9c\x95\x80\x79\x30\x6e\x94\x39\x2b\xfb\x17\x3d\xd5\xdb\x1b\xa7\xee\x07\x5d\xdb\xea\x7b\x09\x94\x91\x59\x6a\x7d\xda\x83\xfd\x90\x4d\x8c\x51\x69\x2a\x79\xce\x10\x7f\x9c\x99\xa5\x4c\x4c\x90\x93\xac\xb1\xd3\x39\xa4\x68\x64\xe1\x8d\x48\xd2\x8b\x2d\xd7\xca\x9a\xa8\x59\x64\x3f\x0c\x74\x0c\xbb\xeb\x18\xea\x47\xaa\x9d\xa1\x91\x55\x8c\xd4\x71\xb6\x5c\x07\x8a\x70\x8c\xb3\x08\xf7\x9c\x0c\x3a\xa5\x89\x4b\xe5\x5d\x7a\xda\x6f\x99\x24\xcf\x0d\x55\xe2\x71\xd3\x96\x53\xa2\xd2\xb2\x40\xeb\xa3\x35\xa2\x53\x76\xc2\x51\xc1\x7e\xe8\xe8\x93\x1e\x52\xdb\x6c\x74\x06\xec\x0c\x61\xf8\x8e\x2a\x82\x5e\x24\x13\x48\xc2\x67\xa1\x02\x3b\xdd\xdc\x27\x03\x0e\xd9\x40\x8c\xc0\x8c\xd1\x3c\x97\xe8\xb5\xba\x6c\x54\xc9\xd2\x13\x08\x74\x93\xbc\x2b\xe8\xad\x28\xec\x4d\xb4\x3b\x37\x60\x96\x31\xf5\x94\x0a\x29\x46\x6c\x39\x38\xc5\x08\x8b\x9e\xb7\x03\xb5\x07\xcb\x21\xcb\x61\x8f\xa1\x53\x5a\xa6\xbc\xe3\x64\xed\xa6\x9c\xaa\xf5\x01\x67\xa9\xc2\x3b\x4e\xf3\x65\x3b\x04\xac\x2f\x54\xf3\xc5\xec\xd8\x85\x50\x0a\x9b\x7d\xd3\xa9\x06\x57\x68\x3b\x7e\x4f\x61\xf6\x1a\xb6\x0f\x7b\xdf\x73\xba\x25\x87\xaf\x3b\x48\xc2\xe7\x22\x3f\x77\x22\x66\x99\x49\xc0\x6b\xb7\x6b\xe2\x90\xec\xe9\x79\xdf\xc5\x7b\x7a\x62\x08\x61\xa6\x57\x20\x6e\xcc\xbe\x00\x80\x0e\xe9\x0a\xa7\x14\xbc\x3c\x9f\x15\x6e\x76\x48\xb5\x63\x01\x75\x9b\xd6\x39\x58\x3e\x58\x1f\xb1\xfd\xf1\x94\x42\xb0\xdd\x85\x4b\xf4\x44\xad\x98\xb3\x33\x40\x36\x6a\xba\xbd\xda\x02\x80\xaf\x30\x2e\xa7\x8a\x59\xc9\xa0\x2b\x4a\x84\xa6\x9a\x29\xb0\xa1\x48\xa0\xd1\xa7\x35\xad\xd4\x4f\x29\x3d\x8e\x01\x41\x6c\x93\x8c\x29\x48\x90\x89\x84\x24\xcd\xd8\x38\x48\x31\xb6\xd3\xe3\x92\xa3\x11\xbd\xcf\xf4\x9e\xca\x5a\x1f\x44\xa0\xdf\x8e\x24\x58\xec\xb7\x73\x76\x37\xdb\xb9\xab\x38\xb4\x5a\x16\x44\x9a\x72\x06\xb0\x33\x31\xcd\x8a\xdb\xb0\x31\x4b\xf6\x69\xc8\x86\xc1\x21\x97\xe4\xca\x5b\x0d\x51\x76\x86\x51\xe4\xb8\x4f\xf5\xf6\x68\xe7\x6b\x12\xb6\x8f\x5b\x5e\x8b\x98\x13\xdb\x83\xdd\xb2\xf6\x24\x80\xe9\x95\x3f\x80\x12\x29\x4b\x4a\x1e\x86\xa3\xa0\xb3\xa8\x42\x9d\x7a\x28\x8b\xb0\x8c\x2c\x86\x68\xb1\xf6\x47\x5f\xab\x78\x7f\x15\x38\xfc\x2e\x02\x64\x18\xf6\xc0\x8e\xa3\x03\xbc\x0b\x16\xfc\xf1\x2c\x81\x66\x3f\x87\x36\x99\xb3\x6a\x23\x14\x33\xe6\x3a\x79\x98\xd1\x5a\x07\x2b\x0c\x49\x32\x89\x65\xfb\x0c\x82\x21\xa9\x8e\x67\x31\x51\x51\xda\x1e\x48\xe7\x19\x5d\x23\x3b\xb0\xb7\x01\x67\xb3\x44\xbf\x96\xaf\x32\x1f\x9e\xfc\x4c\x3a\x2c\xcf\x20\x5d\xae\xe6\x93\xd6\xef\x57\xc9\xd2\x5e\xac\x1c\xb9\x24\xc1\x62\x0c\xac\xd5\x16\x85\x7a\x5c\x57\x03\x34\x18\x96\x73\xa6\xdf\xed\xea\xa2\xc7\xa8\xbc\x5f\x6e\xf1\xb5\xda\x4e\x96\x98\x9c\x37\xa7\x68\xa3\x1e\x24\x7c\xc9\x1e\xb7\xc1\x94\x47\x0b\x63\x91\xaa\x22\x68\x61\x74\xd8\x80\xfd\x90\x84\xc4\x10\x45\x51\xe9\x4a\x06\xb5\x2c\xb9\xc5\xf2\x90\xd3\xac\x77\x3c\x19\xd1\x21\x6f\x08\x7d\xc2\xd6\xf3\xc3\x30\x4f\x5b\x51\x10\xd0\x45\x95\x47\x93\x0c\x0f\x64\xcb\xf8\xce\x7c\xb9\xd8\x8f\xa1\x5e\x39\xc1\x34\xba\xe4\xa1\x9f\xb1\x60\xaf\x46\x0b\x14\x0f\x35\x1d\x9e\x62\x28\x20\x16\xcc\x9e\x3a\x0a\x98\x6e\x44\xe6\xa0\xa8\xb4\x51\x76\x30\x60\x48\x9a\x1e\x31\x63\xe5\x94\x44\x44\x03\x73\x08\x4a\xa3\x88\x43\xa6\xb0\x36\xe2\xd4\x01\xe4\x8c\xeb\x47\x68\x1a\x49\xee\x6c\x0c\xdc\x2c\xcc\x5b\x77\x57\xcc\x0b\x66\x55\x9f\x4f\x0c\xd3\xc2\x14\x44\xae\xe0\xb9\x53\x24\xd8\xb1\xaa\x11\xc9\x86\x66\x34\xb9\x3c\x16\x5a\x04\x1d\x66\xf3\x88\x58\xac\xcf\xfb\x01\x22\xfc\xc2\x26\x0e\x14\x17\x4a\x8d\xed\x8a\xd6\x02\x90\xc0\x66\xf2\xfc\x58\x25\x4b\xbb\xae\x72\x52\xb5\xa4\x1a\xcd\x5d\x31\xe2\xe4\x9a\xf1\x0d\x65\x29\xd1\x4d\x35\x77\xc6\x3a\x2f\x1c\x98\x1f\xe1\x19\xc7\x5b\x5b\x82\x6b\xe6\x75\xd5\x4e\xd9\x6a\x8e\x42\x87\xa1\x5a\x62\xce\x96\xc4\x76\x43\x1e\x0b\xa4\x02\x0c\x8b\xdc\x80\x7e\x2e\xf5\xdb\xac\x49\x68\x85\x3e\x2f\x26\x97\x71\x7b\x31\x66\xa3\x85\x42\x66\xdb\xf0\xd8\x85\x6b\x5b\xe1\x48\x5f\x44\x12\x2c\x5d\x41\xb8\xc1\x07\x90\xe7\x38\x2c\xad\x6f\x86\x0d\x69\x0b\xab\xf3\x74\x1c\xb0\x18\x3f\xb1\x4c\x0e\xf6\xe7\x1c\x59\x07\xe3\x61\x4b\xc3\x74\xe7\xd7\xe9\xa8\x9b\x3b\x3d\x08\xe0\x9a\x01\x95\xba\xdb\xba\x74\xe7\x8f\x0a\x48\x00\xac\x87\x19\x19\x0a\x27\x95\xd2\xb5\x72\x6f\xe9\x36\xef\xcd\xe3\x72\x39\x57\x6b\x38\x05\x95\x37\x50\x4d\x15\x37\xb2\x4a\x07\x30\x57\xcd\x81\x4c\xf4\xe7\x38\xd9\xb0\x6d\xd7\x55\x04\x4e\x94\x71\x62\xe4\xb5\x53\x45\x61\x86\x4b\x23\x52\x97\x7d\x53\xd8\xa4\xe7\x1b\x11\x3e\x54\xa2\xef\x1b\x6e\x6b\x3a\x26\x29\x02\xde\x70\x62\xc1\x35\xf4\x6a\x1e\x9f\x74\x8b\xac\xf6\x05\xf0\x69\x4e\x6e\x37\x30\x7c\x18\x7b\xd3\x56\xeb\x85\x04\xb0\x60\x3f\xe7\x7b\x72\xd3\xcd\xc7\x98\x06\xb5\x95\xd6\x38\x47\xe2\xd2\x6c\x63\x7b\x26\x0c\x79\x22\xbf\x88\xd7\x68\x90\x67\x2e\xcf\x6d\xd6\x7a\x9c\x9e\x27\x8f\x5e\x47\x0a\xdc\xd8\xc4\x22\xab\xb4\xc8\xf0\x61\x52\x5f\x91\x70\xa1\x4c\x3b\xe3\x44\x52\x29\x5a\x2e\x93\x73\x6b\x18\x70\x94\xb7\x8c\xaf\x91\x64\xc1\x3b\x6d\x15\xd6\x0b\xa2\xdb\x19\x29\xc6\x6a\x63\xb3\x21\x63\xc1\xa9\xf2\x1e\x32\xd0\x68\x10\x5a\x69\x57\xa2\x0e\x44\xcf\xb0\xf5\x12\xd0\x22\x23\xe2\x2b\x5a\x62\x99\x7a\x13\x40\xd0\x08\xa7\xf8\x3a\xb2\x07\x75\x66\x5a\xc6\xe6\x94\x03\x65\xa4\x10\x74\xe3\x38\x51\x39\x22\x5d\x95\xf4\x9a\xbb\x60\x65\x92\xe7\xf8\x55\x9f\x8f\xe5\x3c\xa6\x45\x79\x3c\x69\xcc\x8e\x4e\x7a\x6e\xf4\xd5\x79\x12\xec\xb7\x93\x59\xd7\x43\xa1\xec\x09\x27\x8a\x9b\x55\x33\xcf\x21\xc1\x63\xa3\x71\x6a\x67\xe5\x96\x46\x74\xa8\x25\x4e\x71\x14\x25\xc0\x3f\xcb\xcd\x8c\x80\xa0\x19\x73\x36\xa6\xf6\x40\xc1\xb4\x2a\x2d\x55\x86\x4b\x8f\x7a\x74\x44\x89\xad\x9e\x47\x45\x6c\x18\x7b\x3f\x40\xb7\xb8\x56\x11\x46\x85\x93\x0b\xca\x64\x01\x91\xbb\x74\x33\x9f\xad\xc4\x59\xd3\x25\x9b\x4c\x07\x94\x21\xe0\xdc\x2a\xe5\x57\xfb\x90\xa2\xc2\x16\x12\xc0\x80\x2d\xa7\x9d\xa1\x35\xb6\x51\xcc\xbb\x8a\x97\xf9\x9a\xc6\xf5\x58\xd6\x00\x59\xcc\xd4\x09\x5c\x7c\x2b\xa8\x5a\x82\x3c\xe2\xd0\x2a\xb6\xd2\x73\x48\xe0\x4e\xad\x24\xa0\x65\x9c\x2e\x65\x64\x87\x9b\x81\x72\xa9\x45\xe7\xce\x8c\x42\xbe\x54\x4c\x22\x3d\xcc\x58\x75\xd3\x8c\x66\x6c\x12\xcc\xa6\x66\x8f\x28\x9e\xe4\xda\x0e\xab\x5a\xc6\x00\xe7\xcc\x26\x35\xba\xb5\x34\x2a\xe8\xd1\xf3\x6a\x61\x6d\x95\x3e\xed\xcf\x5d\xce\x05\x83\x59\x63\x9d\xc6\x97\xf3\xa9\xe9\x38\x98\x37\xa4\x63\x02\xf8\xc9\x6b\x08\x08\x80\x95\xad\x16\xa4\xb5\x2d\x44\x79\x8b\xf1\x3d\x73\xa6\x13\xee\xb8\x02\x4e\x58\xac\x4d\x1f\x1e\x44\x98\x4f\xd5\x4e\x8a\x36\xd9\xe1\x48\xb1\xc4\x40\x69\xa2\x30\x0d\xd5\x32\x50\x1d\x71\xe6\xda\xc9\xc9\x19\x00\xa8\x9c\xcc\x2a\xc0\xae\x83\xf5\xb1\xd7\x6c\x42\x28\x7d\x12\x20\x84\x60\x8c\x5c\x24\x11\x67\xb8\x73\x0d\x20\x93\x89\x99\xa4\x49\x66\xa4\x49\x01\x43\x8c\xc7\x14\xf4\x84\x8d\xa3\x22\x6e\xa4\x68\xd1\x54\x61\xbe\x5f\x57\xae\x92\x63\xcb\x11\xa5\x32\x51\x94\x8c\x05\xe7\x70\x9c\x3e\xc8\x06\xd9\xb8\x34\x30\x69\xb5\xec\x54\xdc\xf7\x4b\x4a\xe1\x01\xb7\xa4\x36\x44\xd3\x8e\x2b\x69\x87\x95\xb3\xe2\x04\x99\xeb\x80\x3d\x60\x04\xf0\x11\xee\x18\xf5\x32\x0c\x07\x33\xb9\x62\x0f\x07\xbb\x19\xe6\x49\x03\xaf\x2d\x29\x99\x0f\x01\xbe\x23\x57\x8a\x48\xb1\x7b\x76\x93\x73\x6c\x83\x6c\x56\x41\xd4\xca\x72\x54\x9e\x65\x9e\x58\x2f\x31\xf1\xa8\x42\x82\x26\xda\x8c\xdd\xf5\xe7\x7c\xb4\x49\x47\x36\x8c\x4e\x5a\x4d\x68\x02\x0d\xf8\xca\xdf\x45\xba\x2e\xed\x28\x0a\x5f\x84\xca\x1e\xc9\x37\xcb\xc5\x4a\xcb\xeb\x7a\x56\x03\x86\x56\xe5\x81\x53\x34\xa0\x39\x66\x40\x80\x44\xe1\x94\x28\xe2\x56\xf5\x72\xe6\x43\xe0\xa8\x91\x74\xe4\x10\x51\x0e\xe9\x91\x83\xb5\x5d\x79\x12\xce\xb8\xda\xd6\x93\x48\x48\x47\x79\x08\x55\x2d\xd9\xc7\x5b\x99\x19\xd4\x04\x26\x73\xde\x8b\x69\x94\xd0\x73\x48\x68\xab\xad\x02\x57\x7e\x23\x99\xae\x91\x52\x47\x08\x3e\x14\x53\x04\xef\xe0\x32\x4b\xeb\xb8\x9d\xe1\xee\x12\x19\xcb\x10\xc0\xa2\x40\xf6\x0d\xd7\xc4\xf9\x01\x6d\xf8\xc9\x77\xd7\x7e\x06\x1b\x39\x66\xc0\xb5\x53\x82\x7a\x3b\x98\xe8\x1c\x68\xeb\x8a\x0e\x0a\x80\x72\x51\x2f\xe1\x29\x23\x92\xeb\xb9\x67\x8b\xbb\x24\xe1\x6d\xee\xd8\xd1\xdc\x0a\x23\xa2\xc8\x12\xdc\xea\x22\x41\x23\x46\xa3\xdd\x98\x14\xd9\x8e\x97\xc7\xf5\xb4\x4a\x97\xc0\x23\x0c\x9d\xd0\xd4\xb4\xc9\x56\xdd\x69\xb6\x31\x02\x8a\x23\xb3\xb4\xad\x62\xa6\x3d\x89\x33\xc7\xf5\x05\xb1\x40\x22\x11\x33\x61\x8a\x23\x1b\xb9\x57\xf6\x27\xad\x8c\x8d\x2d\x8d\x36\xc5\x84\x23\x4a\xed\x07\xbb\x6d\x67\xb6\xea\x86\x26\x3c\x39\x2a\xbc\x20\x3d\xea\xa6\x60\x38\x56\x64\xd5\x6a\x81\x1f\x58\x40\xc8\xa5\x49\xf8\x5b\x1a\x9d\x3a\x76\x57\x94\xe2\x72\x0b\x0e\x2c\xd8\xb2\xda\x2a\xd8\x4d\x34\xdc\x8e\x52\xd0\x72\x62\x7d\x6a\x37\xcd\xbe\xf4\xe9\x8d\x6a\xef\x99\x71\xb1\x3c\x18\xd3\xfc\xbc\x44\xd7\xe1\xd2\x1e\x70\x40\x1d\xfb\xdc\x43\x01\x5f\x5a\x35\x3a\x92\x5d\x33\x04\x31\xac\x2b\xea\xb4\xc4\xed\x5c\xac\x1c\x6e\xcd\x26\x1d\x7b\xd4\x49\xd2\x85\x05\x07\x6c\x85\x4d\xb9\x5f\xad\x32\xa3\x9c\x55\x64\x9e\xc5\x04\xd0\x6c\x29\x07\x47\x7a\xb9\xa0\x5d\x9c\x2c\xb7\xe7\xb0\xa1\xec\xde\x70\x58\x75\x3f\x24\x35\xba\x73\x8b\x55\x03\x9d\xb7\xa9\x2f\x81\xa4\x3e\x9d\x66\xd5\xc0\x30\x56\x5e\x29\xb5\x97\x2d\x92\xd6\xad\x4b\xd3\xec\xdc\x63\xcb\x1f\x08\xb8\x4a\xf6\x03\x49\x27\x41\x7c\x66\xab\x05\xb4\x63\xab\x3e\x28\x0e\xed\x2a\xa2\x72\xdc\x83\x97\xe3\x7e\x36\xee\x89\x82\xb6\x70\xec\x78\x42\xe5\x63\xb9\xc4\x20\x14\x1e\x67\xe1\xe4\xe3\x4b\xe6\xbc\x90\xb6\x10\x27\xef\x9d\x99\x33\x12\x27\x8e\x5e\x84\x21\x59\x9e\xbc\x02\x66\xf6\xd3\x71\x5f\x77\x78\xdf\xd0\xad\x99\x6d\xda\x9d\xb2\xda\x32\xec\x0e\x56\x77\x50\x10\x4e\x78\x7b\x82\xd6\x9b\x95\xd3\x0b\xab\xa1\x46\x7b\x61\xec\x52\xb5\x9d\xe1\xb8\xbf\x6d\x97\x21\xd6\x2d\x90\x2d\xbd\xdf\x0f\x26\x67\x1a\xe7\x10\x29\x67\x87\x59\x51\xec\x5b\x1d\x71\xb2\x66\x48\xd8\x75\x20\x1c\xc5\x6a\xa6\x3b\x66\x5c\xaa\xdb\x33\xc4\x7b\xf3\x5d\xb3\x3b\x66\xe7\x03\x98\xa8\x64\x38\xa0\xab\x53\x44\xe1\xc0\x9c\x81\x5e\x9b\x07\xf5\xdc\xed\x31\xa6\xd7\x20\x0e\xe6\x88\x05\x81\x79\xd2\x52\x5c\x0e\xad\x85\x71\xbc\x46\x1c\x4f\x1e\x9a\xb5\x70\xe4\x61\x76\xc4\x25\xe7\x1c\x8e\x13\x68\xcb\xe5\x04\x54\xcd\xa5\x2a\x81\xd7\x72\x33\x1b\x42\xa2\xee\x67\x64\x96\xb0\x76\x37\x42\x4d\x4f\x56\x1b\xcb\xe9\x31\x5f\xa6\x20\xcd\x0f\x7b\x78\x95\x94\x46\xc2\xc4\xfe\x1e\x41\x1b\x56\x3f\xc3\x0a\xbd\xd7\x83\x41\x30\x45\x73\x49\x40\x18\xba\xe8\x3a\xec\xc0\x16\xa7\x9c\x51\x15\xa9\x5f\x9d\x60\xcc\x05\xb4\xca\x1d\xf5\x33\x39\xe7\x40\xc7\x6f\x82\x08\x6a\x97\xf2\x51\xcc\x3d\xd6\x26\xf6\x26\xba\xd6\xcd\x6e\xd1\x33\x26\x81\x60\xa6\xb4\x77\x3a\x66\x68\xb8\x41\xda\x02\x2c\x38\x79\xfe\x66\x74\x01\x63\x2b\xde\x5a\xa4\xe7\x0a\x60\xb8\xe5\x36\x5d\xfb\x51\x00\xce\x72\x28\xa2\x24\x93\x69\xab\xfd\xae\xf1\x28\xa3\x74\x74\x12\xcf\xb8\x70\x34\x39\x7e\x80\x77\x6b\x6e\xa0\x34\x9f\x30\xc7\xc9\x94\xf5\xb5\x12\x45\x27\x2f\xe9\x4f\x96\x7c\xb4\xd7\x45\xbb\x23\xc6\x5c\x24\xe1\xce\xf3\x67\x1b\x64\x00\x15\x6f\x9d\x59\x49\x97\xbd\xd1\x3f\x0e\x36\x31\x03\x62\x44\xe8\xe4\x76\x35\xb3\x74\xbb\x72\x61\x05\x28\x86\x4e\xf5\x70\xc8\xce\xce\x7e\x5e\xcd\x09\xb9\x3b\x6f\x4c\x2d\x87\x1b\x9c\x48\xa2\xc5\x60\xe7\x7c\x6d\x0f\xdb\xad\x7e\xe0\xdc\x7d\xdb\xa2\xd8\x92\xa2\x39\xd5\x94\x6c\xc6\x50\x38\xba\x28\xa8\x41\xde\x10\x43\xb9\x59\x1f\x0e\xc8\x7a\x37\xeb\xf6\xfa\x1c\x25\x9c\xc4\xec\x48\x55\xd4\x16\xd4\x6a\x90\xe0\x49\x1d\x17\x07\xde\x84\xe4\x69\xbd\x46\x8e\x81\x3c\x55\xd8\xbe\x42\xdd\x75\x62\x0a\x99\x9e\xb9\x67\x85\x51\x57\xeb\x9d\xbd\xd3\xab\xd5\x20\xf2\xd2\xb9\xc5\x3b\xae\xdb\xf6\x36\x3b\x9f\x1d\xea\xd3\xb8\x5e\xda\x2c\xa7\x28\xf0\xde\x3f\x18\x9d\x9a\xa7\x46\x54\xd4\xcb\xd9\x2a\xe8\xf5\x12\x69\xdc\x8d\x7c\x44\x40\x46\xc0\x7a\x01\xe4\x7c\x6d\x2f\x64\x6c\xbe\xe7\xe7\x12\x68\xd3\x74\x95\x75\x2b\x4f\x92\x73\x69\x92\x07\x96\xb6\xaf\x7c\x3b\x07\x72\x71\xb4\xd5\x45\x49\x2e\x08\x40\x09\xf3\x81\x5a\x87\xab\x00\xa5\xcc\xc5\x5c\x8e\xb0\x40\x12\x36\x46\xdf\x1b\x86\x4f\x9e\x98\xd4\xdf\x01\x68\x37\x90\x6a\x61\xcb\x14\xe0\x4b\x80\x81\x60\xab\x9e\x11\xb7\xd8\x00\x82\x04\x4b\x79\x7d\x62\x2f\x75\x41\x33\xae\xf0\x36\x88\x88\xde\xcb\xe7\x8d\x3d\xe7\x48\x17\xcf\xa1\x95\x96\x22\x61\x21\xe9\x0a\x0c\x03\x34\xda\xac\x08\x4f\x90\x7d\x92\xc8\xab\x29\x02\x5a\x74\xc4\x71\x69\x39\x83\x4a\x97\x3f\xec\xab\xfc\xa0\x62\xdd\x7c\x3c\xc3\x4b\x60\xb5\x06\x13\x1b\x9c\x9a\x9d\xc3\xdc\x97\xfd\x20\x5c\xcb\x95\xc9\xf2\x91\x6b\x15\x73\xc6\x1d\xe2\xa8\x16\x0f\x71\x9a\xcb\xc7\x10\x5d\x14\x4e\xae\x9e\xc7\xbd\xd2\x85\xbb\xfc\x60\x60\xa3\x59\x32\x55\xee\x45\xe8\xce\xee\x24\x0b\x69\x9a\xc5\x0c\x0b\xc3\xfd\xbc\x92\xdd\x9a\x8e\xce\x16\xaf\xc5\x6c\xca\xaf\xab\x11\x5d\x2f\xd5\x7d\x10\x14\x6d\x92\x58\x1e\x39\xf4\xe2\x69\x6e\x24\xfc\xda\xdd\x43\x9e\xad\x11\x19\xbd\x2c\xcc\xb9\x6c\x87\x68\x00\x6a\x0a\x2c\xd1\xe5\x94\xad\xf1\x76\xce\x01\x47\xe3\x4a\xe1\xb4\x66\xb8\x9c\xed\xd0\x66\xbb\xac\xa8\x76\xb9\xc5\xa1\x6c\x6e\x99\x9c\x1c\xb6\xea\xc0\xae\x74\xaf\x45\xeb\x68\x38\xed\x93\x45\x2f\x34\xeb\x1d\x31\xeb\x57\xfd\xb1\xcc\xb5\x50\xc8\xca\xc2\xd9\xc0\x6a\xae\x66\x0b\xe0\xef\x58\x5f\x07\x0a\xb9\xda\x10\x50\xbf\xa1\xbd\xb9\xba\xd3\xcb\x18\x5f\x1c\x31\x2f\x26\x47\x1f\x8b\x23\x6c\x4d\x44\xc5\xba\xf0\xda\x61\x57\x99\x84\x30\xc7\xe8\xc6\x51\xd1\xae\x96\x4d\x6c\xbe\x0a\xcd\x11\xdf\xa3\xc3\xa4\xaa\x23\x2a\x20\x30\x56\x23\xe8\x99\xde\x97\x73\xe2\xe4\x37\xe7\xf5\x9a\xc3\xc3\xa1\xe7\xe6\xa9\x1d\xb4\xc7\x85\xc6\xc9\xa3\x39\x2f\xf3\xbd\x3c\x54\xb1\xb6\xe8\x8f\x65\x14\x4b\xd4\x00\xd3\xe0\xb4\xa7\x4f\xa5\x16\xe9\x07\x20\x34\x07\xd7\x90\xc0\x9a\x81\x8f\xca\x32\xc0\x02\xcc\x8f\x53\xb8\x38\x96\xca\x6c\xed\xad\xb0\x6d\x22\xc0\xa6\x5e\xb0\x61\x11\xc8\x75\x50\x88\x01\xc7\xd9\x4b\x01\xb3\x79\x78\xbb\xaa\xaa\x30\x19\xbd\xd0\x97\xec\x64\x64\x2a\xd6\xdd\x52\xdc\x2c\x37\xe0\x02\xab\x82\x6c\xe5\xae\x8b\xd9\x76\xe4\x57\xcb\xfe\x78\x5a\xc2\x18\x1c\xc8\x2b\xfb\xc4\x8a\x48\xde\xac\x26\xab\xb5\x89\xcc\x69\x9c\x73\xae\x6b\x82\x6b\x64\xca\x56\x04\x66\x09\x9d\xf2\xb1\xe5\x46\xd2\x84\x3b\x31\xe4\xa7\x76\x89\x7a\xe5\x0a\x78\xa5\xc6\x2e\x91\xba\x29\xb5\x4e\xd4\x56\xfd\x7c\xb1\xdc\x4d\x67\x61\xb5\xd8\xac\xcb\x11\x43\xcf\x47\x0b\xc9\x8c\x05\xd4\xea\x8d\xcd\xc4\xb9\x52\x5b\x8e\xb6\x09\xb4\xdc\xa9\x2b\xd3\xc9\x6a\x13\xe3\x26\x7f\x4c\x9d\x45\x78\xd2\x2d\xa6\x0a\x3d\x2b\xd7\xd1\x59\x77\x5c\x48\xcc\x72\x21\x77\x81\xa7\x89\x0b\x24\x3a\x4f\xd4\x5e\xcf\x1c\x38\x16\xe8\xb5\xb2\x6e\xe8\x4d\xd3\x08\xab\x9e\x16\x43\x1f\x31\xfd\x99\xe7\xf3\xdc\xe9\xa0\x0e\x67\x09\x19\xaa\xa4\x39\xa3\xad\x31\x2f\xab\x93\x5a\xdb\x1d\xe9\xf7\x86\x40\x68\x02\x6f\x2b\x07\x48\x99\x7c\x66\x0f\x93\xea\x16\x56\xfd\x55\xb0\x2b\xa8\x79\xcd\x3b\xcb\x32\x35\x05\x92\xb5\x83\x95\x89\x2e\x21\x55\xf5\xa5\x75\x04\x40\x38\xf8\x10\xea\xb5\x22\x3b\xdb\x14\xe4\x61\xb6\xaf\xa0\x5d\xce\xb4\x4c\x47\x13\x7d\x2e\xd6\x6d\xbb\x2a\x75\x6e\xbf\xce\x26\x83\x21\x15\x7e\xdd\x80\xe4\xa8\x9a\x6b\xd4\xec\x8e\xfa\xc8\x9e\xeb\xbe\xae\x84\x49\x3c\x16\x33\xa6\x9f\x8d\xad\x70\x36\xc4\x49\x9c\xce\x63\xdc\xef\x8b\x54\xdb\x8a\x8b\x85\x55\xd8\x2a\x31\x13\x0a\x92\xda\x9e\x03\x76\x07\x05\xce\x54\x91\xc6\xd2\xb2\x8c\x1e\x6c\xa6\x71\x38\x9e\x32\xdb\x59\xfb\xa2\x95\xe3\xbe\x37\x4a\x46\x45\xa1\xa7\xb4\x56\xa6\x29\x35\x07\xda\xe0\xc8\xe5\xc6\x83\x92\xbd\x72\x0a\x27\xec\xa0\xd9\x99\xa5\xc2\xb6\x23\xf6\x86\x71\x4a\x6d\x76\xc0\xe7\xd8\x8c\xdf\x08\x6b\x5a\x08\xf4\x26\xd0\x61\xca\x43\x75\x6b\x4d\xca\x0b\x2a\xdc\x68\xe7\x98\x0d\x3b\x6b\x6f\xd6\xf2\xe1\xb4\x07\xf5\x32\x87\x4f\xf6\x7a\x3c\x11\xd6\x0c\x5d\xa9\x27\x1e\x3b\x47\x3b\xdc\x77\x31\xc1\xaf\x78\xc3\x58\x0e\xb4\x0a\x99\x40\x21\x6a\x01\x65\x21\x4a\x75\x66\x71\x5b\x51\xe1\x0a\xa1\x6d\xa1\x55\x5a\xc7\x44\xcc\x68\x59\x0a\x5b\xe1\x78\xde\x84\x51\xbb\xdf\xf6\x8c\x4c\x63\x30\x6a\x0f\x0d\xb4\x59\x31\x21\x5a\xd5\xf8\xa1\xe6\x0e\x4e\xae\x9c\x8e\x1e\xeb\x39\x0b\xb0\x99\xa8\x6d\xfe\xf4\x87\x8e\xfa\x8c\x9d\xcd\x0d\x7d\xa9\x9f\x47\x1f\x65\x01\x00\x80\xdf\xab\x8c\xc5\xaa\xa9\xbd\x57\x33\x39\xdf\x9e\x1d\x8b\x81\x1d\x05\x9c\x25\x8a\x46\x45\x1d\xa0\xa2\x2e\x0d\x26\x45\x8f\xf2\xd1\x18\xe4\x23\x38\x8b\x3a\x80\xe5\x23\x18\x64\x57\x4b\xc9\x08\x00\x40\x9a\xb0\x6a\xc6\xb0\xb3\x61\x60\x47\xaf\x3a\x0f\x55\x2b\xa7\x48\x81\x74\x04\xa3\x74\x86\x47\x49\x83\x07\xc9\x54\x46\x89\x2a\x27\x99\x2a\xcf\x5b\x12\x1e\xb6\x54\x39\x48\x5b\xcf\x5d\x11\xd7\xef\xb3\x40\x33\x4c\x59\x15\xe6\xa4\xcd\x71\x6f\x7f\x2c\xf5\xcb\xc2\x77\x3b\x28\x70\xbb\xf0\xee\xe1\xae\x0b\xc7\x0e\xaa\x32\x37\x29\xee\x1e\xee\xf4\x3e\x7c\xf8\x09\x45\x7f\x02\x7d\xf4\x13\x0a\x23\xcb\x9f\xe0\xc5\x47\x1c\xfd\x88\x21\x3f\xcd\x60\x18\x86\xdf\xee\x32\x76\x8b\x28\xcc\xca\x08\x3a\x85\x4d\x9b\x94\xc5\xcb\x8e\x91\x0f\xcb\x3f\xd3\xfa\x35\x9c\x2e\x78\xbc\x87\x57\xef\x91\xc5\x9b\x1d\x44\x49\x07\xb1\x34\xa0\x5e\x36\x8d\x92\xee\xa7\x26\x3c\xbd\x7f\xca\xcf\x76\x85\xb8\x7f\x08\x3f\x84\x63\x55\x36\x5d\xfb\xf8\xaf\x6b\xeb\x8f\xe5\x43\x96\x78\x1f\x93\xdf\x7f\x7f\xf8\xf6\x6e\xb9\x87\xe6\xfe\x5f\x77\x7d\x1b\xfe\xd4\x76\x4d\xe2\x77\x77\x9f\x9e\xef\x49\x0b\xc2\x43\x52\x84\x5f\xee\xb2\xeb\x1e\xee\xfe\xf9\xcf\xb0\x95\xae\x19\xc6\xee\x1e\xfe\x75\x72\xb3\x3e\xfc\xf8\x33\xfc\xfb\xe7\x9c\xae\xcd\x3b\x04\xbe\x7f\x28\x2f\xff\xb1\xfb\x87\xf6\xf2\x1f\xbd\x7f\x28\x2e\xff\x91\xfb\x07\xf7\x31\x28\xfd\x6b\x02\xdc\x0f\x51\xd8\xd1\x4f\xb9\x56\x89\x33\x17\xbc\xbb\xfb\x7c\xc7\xe7\xdd\x37\x37\xd2\x3f\xba\x4f\xb7\xaf\x65\x9f\xb2\xc7\x27\xda\xef\x1e\x1f\xa3\xb2\xeb\xce\xff\xbc\xbc\xfc\x52\x84\xc3\x4f\xc9\x07\xf6\xf2\xfc\xce\xbd\xff\xf8\x74\x6b\xca\xfe\xf9\xf5\x8a\x50\xfc\x78\x61\x5a\x57\xb5\x1f\xef\x1e\x3f\xe7\x90\xcb\xca\xa7\xec\xa3\x4f\xd7\xca\xf9\x65\xf6\xcb\xdd\xd0\xb6\x1f\x21\xe8\xee\xe3\xdd\x70\xfd\x7f\x3f\x7b\x09\x1a\x97\x6d\x77\x53\x58\xb9\x5d\x5c\xb8\x79\x38\xbb\x1b\xda\xbb\x07\xff\xa6\xff\x36\x74\x1b\x3f\x7e\xe8\xaf\xd7\xb9\x14\x1f\xc8\xb2\x28\xc2\x2b\xc3\x19\xd7\xef\xca\xe6\xfc\x2e\x7e\x68\xbf\x20\xd1\xde\x3f\x54\x57\xc0\xf6\x83\x15\x7a\xba\x6e\xbf\xcb\x1e\xfa\x07\xff\xe1\x89\x5c\xb7\xef\xe2\x7f\x76\x65\x1a\x16\xf7\x1f\xca\x2a\x2c\xde\xdd\x7f\xfa\x9c\x11\x2f\x08\xe8\x53\x58\x74\x62\xd2\x76\x61\x11\x36\xef\xee\xfa\x22\x2b\xdd\xe0\xee\xe1\x9b\xdb\xfa\xaa\x77\xf7\x0f\xd9\x07\x3f\x2b\xdb\xf0\xdd\xfd\xef\xf7\xff\xa3\xb9\xff\x66\xc0\x2f\x69\x3c\xc2\xcf\x03\x3c\x5f\xe4\x3a\x76\x6e\x13\xba\x9f\xaf\x30\xf5\xcb\xbc\x7a\xbe\x3d\xd8\x4c\xc2\xe1\xf3\xd5\xa5\x9f\x65\xe1\xb1\x79\x7a\x4f\x5a\xf2\x09\xb0\x88\x1e\x7f\x46\x3e\x97\x69\x61\x11\x24\x45\x44\x7e\xed\xe3\x4b\xe5\x37\xfd\x7e\xbe\x9d\xf8\xf1\x5f\x6d\xe7\x36\xdd\xd3\x75\xc8\x61\x11\x5c\x1f\x7e\xff\xfd\x4b\x86\x91\x6f\xee\xbd\xfc\xda\xf8\xda\xe4\xe6\xda\xc3\xef\xd0\x81\xdf\x1c\xf1\xc3\x53\xeb\xef\x08\xff\x70\x65\xda\xf3\x35\xb9\xaf\xf2\xe0\x0a\x4a\x96\x45\x17\x16\xdd\x97\xd4\xfb\x2f\x61\xfc\xcc\x6d\xdb\xcb\x8c\x3f\xa9\x05\xd7\xef\x92\x53\x78\x77\xff\xfb\xc3\x1b\x74\xf4\xd5\x45\xd5\xbc\x72\x7d\xf4\xa5\xf7\x4f\x7f\x88\x46\xf8\x21\x70\x3b\xf7\x09\x95\xa7\xae\xbe\x61\xfa\xf3\x2a\x6e\xdf\xdd\x3f\xb4\x61\xa7\x27\x79\x58\xf6\xdd\xbb\x6f\x79\xf6\x2a\x73\xc2\x22\x78\xec\x5e\xe7\xcb\xef\xd7\x7b\xa4\xdf\x20\xe5\xd2\xee\xe5\x84\x1c\x2e\xc2\x92\x4c\xdf\x62\xf5\xee\xe7\x97\x7d\xa4\xe1\x39\x28\x87\x9b\x44\x0a\x2f\x67\xf4\x39\x81\xd3\x6b\xe2\x75\x85\x47\xd1\xf5\xe3\xe3\xe3\xb5\x3b\xb2\x0c\x3e\xdf\x8b\xfb\x33\x72\xd1\x5a\xc8\xe2\xdb\xaa\x7f\xff\x1b\x59\xbe\x78\x5f\xbd\xde\xf4\x6d\x22\x90\xfb\xcf\x12\x8a\xa2\xeb\x9f\xbf\xeb\xec\x09\xf3\xd8\x2d\x82\x2c\x04\xc5\x59\x7f\xe6\x24\x79\xb5\x2e\x97\xd9\xb8\x26\xec\xf9\x96\x03\xaf\x8c\xf0\x96\x48\x7c\x4d\x2d\xff\x96\xe0\x35\x61\x5e\x9e\xc2\xaf\xb2\xf7\xf6\x4a\x7d\xca\xea\xf4\x8c\xde\x97\xcb\xc2\xef\x1f\xbe\x5c\xad\xf9\xbc\x32\x7f\xbc\x8e\xae\x6b\xf6\x4d\x90\xb0\x08\x7e\xff\xf4\x03\xbd\x00\xbf\x21\x9b\x17\x3a\xdf\x98\xeb\xd7\xcb\x1f\x7f\x46\x3e\x3d\xdd\x83\xfb\x74\x03\xe8\xa7\xf0\xb1\xfb\x96\xea\x5f\x6e\x64\xba\xed\xbd\xa7\x24\xef\xef\x9a\x67\x4a\x9a\x0b\xba\xf7\x1f\xff\x18\xf2\xfe\xa1\xfb\x7a\xf7\xf5\xd3\x4c\x37\xef\xc2\x8b\xfa\x86\x9f\x92\x50\xfc\xeb\x47\xaa\xf0\xd3\x77\x09\x8d\xde\x18\xe9\x0f\x98\xfe\x23\x86\xdf\xbf\xb8\xdd\xfb\x33\x82\xc9\x05\xc1\x6f\xe5\xee\x2d\x19\xbd\xbd\x5b\xf8\xd2\xe1\xc3\xab\x2a\xf3\xd3\x9b\xf3\xf7\x73\xf8\x2d\xff\xbf\xe6\x3b\x7c\x41\xf2\x97\xfb\x9a\x1f\xee\xee\xee\x3f\x35\xdf\x64\x35\x0e\x6f\x49\x68\x9e\x79\xfc\x1d\x19\x6f\x6a\xbe\x3f\x5a\x44\xaf\xa0\xf7\x22\x3d\xdf\x53\x47\x1f\xea\x3e\x6c\xce\x5a\x98\x85\x17\xf7\xe0\xdd\xdd\x17\x80\xf7\x4f\x19\x03\x9e\x5c\xa3\xe6\xa9\x8f\x97\x99\xaa\xde\xea\x63\xbc\x40\xbc\x6f\xca\xa1\xbd\xbb\xff\x50\x1e\x0e\x17\x3e\x96\xd5\xac\xf9\xfa\xfc\xba\xfe\xbf\x66\x27\xf8\x90\x85\x87\xee\xf1\x33\xac\x18\x1e\xba\xd9\x5d\x35\xbe\x61\x94\x9e\x5a\x74\x65\xf5\x98\xfc\x21\x54\x1c\x26\x51\xfc\xb5\x67\xf6\xfa\xfa\x87\xad\xb2\xa4\x08\xd9\x37\x5b\x7e\x7a\x4a\xc1\xf5\x6a\xfb\x28\xec\x88\xb2\x7f\x5a\x24\x59\x12\x16\x9d\x1a\xfa\xdd\xbb\x2f\x12\xfc\x2c\x29\x7f\x4c\xf3\x0b\xd0\x97\xc4\xbe\xa8\xbe\x66\x42\x7c\x2c\x9f\xfe\xbf\x0d\xf6\xcc\x8c\xf2\xf9\xe1\x6d\xc0\x6f\xe8\xff\x0e\xf8\xf7\xf0\xdf\xff\x7e\x7d\x7d\x7c\xbe\x9c\xfa\x07\x66\xfb\x6a\x28\xe1\x97\x6b\xf6\x55\xa5\xfd\x4a\x76\xff\x5b\xce\xdd\xbd\xcd\xaa\xbb\xbb\xdf\x1f\xc2\xdf\x2f\x6c\xff\xf0\x0d\x26\x6c\x98\x55\x61\xf3\x98\xfc\xaf\x02\x12\xf4\x29\x1e\xb9\x86\x23\x6f\xb8\xa8\xcf\xe4\xfc\xf3\x8b\xe3\x19\xbe\xe6\x18\xba\x41\x40\xc6\x6e\xf3\xe2\x4e\xee\xe4\xf0\x2e\xfc\xc7\xe3\xdd\x4f\x77\x9f\xd7\x76\xf1\xae\x7b\x16\xac\x7f\x7e\xcd\x6c\x18\x5f\x62\xb2\xee\xf9\x0a\xf7\x9b\xf2\x5f\xc3\xdf\xfe\xf6\xb7\x77\x4f\xfa\xef\xd5\xda\xfb\x6f\x95\xf9\x57\x80\xf3\xec\x65\x81\xe7\xb6\xe1\x45\x4b\xfc\xdc\xdc\x8c\x35\x7e\xbe\xc3\xff\x62\xb9\xde\xbd\xa8\xbc\x88\xd6\xf5\x7e\xeb\x77\xc9\xfd\xaf\x2f\x1b\xbe\x47\x7e\xfb\x7c\x89\xf6\x9f\x6f\xf1\x2b\xfa\x9c\xad\xe8\x2f\x34\x41\x7e\x9b\x3d\x86\x1f\xff\x52\x2b\xf4\x2f\xa3\x86\x3e\x8f\xf3\xec\xb2\x7c\xad\x7a\x5a\x23\xea\xc5\x36\xbd\xec\xf1\x7c\x7f\x7f\xff\x45\x9f\x7f\xd3\xd9\xac\x79\x8f\xfc\xe3\x66\xda\x2e\xd1\xdc\x2d\xf0\xd0\xb8\x95\x7b\x4d\x05\x26\x5d\xbc\xbf\x97\x5d\x3d\xc2\x0f\xb3\x9b\xe9\xfc\xc7\x8b\x82\xf6\x9a\x94\x85\x28\xbb\xae\xcc\x7f\xb9\x41\xf2\xfd\xfb\x97\x24\x3d\xc1\x3f\xa5\xbb\x79\x93\x49\x37\xb4\x7e\x48\x5a\xab\x71\xab\x2a\x0c\x1e\x7f\xfe\x9a\x3a\x0e\x7d\x7c\x7c\x6c\x3e\x27\xf6\x48\x0e\xef\xfe\xa4\x34\xbe\x44\xe9\x29\xe7\xef\x95\x05\xdf\xe7\x4d\x6c\x3e\xcd\x66\xe5\x3d\xfc\xf9\xfe\xf6\x3f\x83\xe9\xab\x03\xde\x7f\xa8\xca\xea\xdd\xfd\xaf\xe8\x6f\x37\x4b\xe0\x47\x82\x71\x99\xb5\xab\x34\xa1\x3f\xc2\xe0\xcd\x76\xbf\xfe\x55\x41\x7c\x6e\xf7\x78\x53\xde\x37\xa0\xeb\x9a\x87\xbb\x9f\xee\x1e\x90\xdf\x6e\x84\xf4\xdb\x2e\xaf\x99\xe9\xfd\x1b\x61\x1d\x1f\xe0\x87\x3f\xe8\xf5\xa5\x7e\xfa\xe1\x8a\x79\x1b\xc7\xf0\xa1\xf9\xed\x25\x82\xe3\x6c\xf6\x97\x16\xd6\xc3\x55\xae\xfe\xe2\x22\xfe\x01\xdb\xee\x1e\xe0\xd7\x70\x7a\x69\xe0\xbc\x30\xcb\x5e\x77\x40\x5f\xf2\xe6\x94\xb4\xbd\x9b\x11\x61\x96\xdd\x22\xf9\xd9\xeb\x7a\xb2\x71\x5e\xd9\x04\x61\x73\x4d\xf4\xf7\x78\x37\xc4\x49\x17\xde\xbd\x11\x77\x7c\xb1\x2e\x7f\xaa\xab\xbb\xdf\x1f\x10\xf8\x46\x12\xaa\xb2\x92\x8b\x27\xb4\x5e\xd4\x1c\x4a\xbf\x6f\xdf\xdd\xbf\xf0\x5f\x2f\x0c\x65\xc2\xf0\x36\x7c\xfe\x56\x26\x8b\x53\xd8\x74\x74\xf9\x0a\xa9\xe3\x23\x7c\xff\x17\x35\xd4\x6d\x27\x6f\xab\xa8\xfb\x1b\xfa\xc6\x57\x15\xeb\xad\x59\x7b\xff\xfe\x85\xeb\xe2\x36\x4d\xe2\x46\xa1\x7a\xe5\xf1\x0f\xa8\x1d\x1f\xe1\x17\x32\xe1\xfa\x69\x5b\xb9\x7e\xf8\xa3\x46\x97\x90\xe1\x8f\x50\xe8\x5c\xef\x87\xe3\xbe\x28\x28\xc2\xb1\xfb\x9c\x01\xfb\xdb\x6e\xda\x38\x39\x74\x72\x7f\xbb\x03\xf5\xcf\x6f\xb3\x70\x45\x62\x78\x0a\xb3\x77\x2f\xa3\xfd\x6b\x63\xee\x47\xf4\x7f\x6d\xfb\x32\xd4\x79\xd2\xd1\xd7\xcc\xe8\xb7\xc1\xcd\x43\xf3\x90\x3c\x94\xd7\x34\x19\xef\xba\xc7\xf0\x57\xf8\xb7\xfb\xbf\x23\x97\xa9\x7e\x44\xee\x3f\x27\x5b\xfc\x43\xa3\x70\x63\x3c\xc6\x87\xf2\x66\x4d\x3f\xa5\xd0\xef\xba\xe6\xdd\xfd\xb3\xe2\xfa\xd4\xbd\x7f\xff\xb7\xbf\x25\x7f\x7f\x45\x30\x3e\xbd\xb4\xa8\x5f\x15\x48\xf3\x45\x53\x26\xb3\xd9\x03\xfc\x50\xfe\x40\xab\x36\xcf\xe6\xe3\x85\x4c\x5d\x03\x30\xa3\x7a\x2d\x03\xdb\xaf\xf0\x6f\x9f\xba\xaf\x1c\xb8\x91\xf8\xcf\xbb\x9a\xdf\x94\xfd\x1d\x7e\x65\x69\x3c\xde\xec\x7a\x5d\x07\xa5\x5e\x6e\x5a\xfd\xb9\x61\x67\xaf\x0c\x7b\xb3\xa0\x2e\x61\xe1\x6b\x98\xbc\x02\xf6\xfe\x76\x8c\xff\x78\x81\x5e\xe9\x62\xca\x66\x70\x9b\xe0\xaf\x93\x36\xbe\x42\xda\x5b\xa8\xdc\x2a\xb1\xd7\xac\xf0\xcb\xa5\xf3\x84\x20\xf1\x9c\x9e\xfe\x3f\xc0\xf0\x4f\x33\xe6\xa6\xe5\x2b\xd2\x32\xbe\x26\x2d\xe3\x1b\xd2\xb2\x0d\xc7\x4e\x4c\x8a\xd7\xf6\x7a\xff\x5f\x90\x98\x97\x1a\xf7\x09\xe9\x5d\x13\xfa\xe1\x25\x36\xff\x0f\x31\xff\x2b\x4b\xec\x4f\xa2\x74\xd1\x7d\x9f\x53\xe6\xff\x07\x02\xf0\xd8\xbd\x47\x5e\xa5\xf4\xcd\x7d\xd7\x87\xe6\xd3\x53\xb7\xef\x91\x87\xe6\xf1\xf3\x56\xf8\x3f\x1e\xd1\x5f\xc2\x5f\x91\xdf\xde\x23\x1f\xe1\x87\xee\xef\xf0\x2f\xdd\x23\xfc\xb1\x7b\x73\x56\xde\x9a\x86\xe6\xef\xf0\x2f\xcd\x23\xfc\xb1\x79\x6b\x99\xdc\xa8\xed\xe7\x75\x71\x4b\x58\x73\xc3\xe9\xc7\xee\x07\xcb\x5b\xff\xd6\x12\x7e\x97\x7f\xfe\x42\xeb\xbf\xff\x8d\x5c\x34\xfa\x8d\xea\xfe\xd3\x16\xf2\x6a\x21\xb8\x82\x4a\xda\x2a\x73\xcf\xb7\x5c\xfd\xd4\x0e\x49\xe7\xc7\xef\xae\x56\xea\x5f\xbe\xdb\x86\x3f\xc1\x1f\x2f\x38\xbc\x66\x69\xd4\x24\x8a\x6f\x62\x8c\xf1\x86\xde\xfb\x87\x1b\x3e\x9f\x67\xc8\xa7\xee\xa5\x51\xba\x30\xff\x6b\x4e\xfd\x17\x63\x5d\x24\xfd\x5d\x77\xff\xe9\x29\x4d\xf6\x15\x31\xe4\x4d\xc4\xc4\xf0\xf0\x1f\xe2\xf5\x2a\x77\xdf\x42\x00\x7d\x42\xe0\x35\x21\xfa\x4b\xfd\x60\x1f\xbf\xd9\xe4\x7c\x69\x63\x9f\xe4\xfa\xfd\x6b\x63\x34\xff\x78\x65\xcd\x3e\xb5\xea\x9a\x24\xd7\x3a\xb7\xb9\xd8\xe7\x1b\xc2\x2f\x0e\xc5\xa3\xe4\x76\xf1\x87\xdc\x1d\x6f\xd6\xfc\xa5\xf6\x7d\xf3\x70\xbb\xf2\xcf\x41\xd2\x56\x6f\xb7\xbb\xd4\x5e\xdb\xbd\x8c\x1c\x9e\x65\xee\x46\x57\xbd\x26\x6a\xff\x8d\x98\x7d\x2f\x1b\xff\x85\x5c\x7c\x3f\xc7\x6f\x4f\xe2\xcb\x76\xbf\xbf\xe6\x14\x5e\x40\xdf\x70\x0a\xff\x4f\xbb\x84\x4f\xda\xeb\xa5\xa8\x7c\x1b\x60\xbc\xd5\xe6\xd5\x01\xde\x27\xb3\xd7\xb5\xcd\xb7\x82\xf9\x56\xec\x9f\xbb\xa3\x78\x05\xf8\x63\x09\x7d\xc5\x40\x5d\x87\xbf\x31\xf6\x4f\x22\xf6\xfe\xa1\x79\xff\xfe\x21\x79\xff\xfe\x0d\xa7\xf4\xd9\x73\x6d\x1e\xe0\x97\xf5\x5e\xe6\x16\xe9\x75\xea\x7e\x86\x6f\xc3\xa7\xef\x5a\x27\x0f\xc8\x4d\xcc\xff\xe3\xa8\xfc\xcf\x03\x7f\x3b\x21\x2f\xd4\xf3\x53\x22\xd0\xff\x7f\x16\x99\xff\x9b\x02\xf3\x88\xbc\x2e\x31\xaf\x38\x1c\xdf\x4f\xf6\x0c\xf9\xaf\x84\xa5\xf9\xbf\x29\x2c\x3f\x08\x3a\xff\x6b\x61\xf9\x73\xf1\xe5\x9f\x0a\x24\x6f\xb4\xee\x5b\x73\xf2\x39\xa6\xec\xdb\xf8\x5d\xf2\x32\x44\xbf\x32\xe3\x45\x54\xf9\xe7\x3c\xa4\xef\x26\xec\x35\x72\x5f\xf2\xe0\x69\x2c\xbd\xac\xde\xc4\xf4\x2f\x77\xf6\xbc\xa0\x7e\x20\x6a\xf7\x7f\x45\x8e\xbe\x60\xf8\x7f\x48\x9e\x9e\xaa\x6e\xc2\xe7\xff\x29\x7f\x9f\x59\xf2\x7f\x8c\xc5\x97\xf9\xfa\x7f\x95\xbf\xd7\xd5\xf3\xff\xa1\x3d\xa2\x5f\x93\xd9\xec\xb7\xc7\xf2\x47\x5b\x01\xff\x87\xa2\x99\xaa\x09\x4f\xaf\x45\x33\x7e\xec\x5e\x22\xc4\xff\x32\xee\xfc\xdf\xee\x8d\xb0\x9f\x43\x58\x35\xcc\xdc\x2e\x39\xfd\x27\x58\xfe\xcf\x37\x70\x9a\xb0\x0a\xdd\xee\xcb\xb6\xc2\x97\x2c\x7a\x3f\x9e\xbc\x5b\xc1\x7c\xfb\xcb\xd3\x6b\x4b\xf6\x7c\xff\x90\x3c\x36\xaf\x7d\xd8\xfc\xf7\xbf\x5f\x96\x06\xe1\xe1\x9b\xef\x31\x4f\x62\x73\xdb\xf4\x22\x90\xc9\x0b\xad\x16\x16\x01\x15\x9e\x12\x3f\xfc\x9a\x05\xff\x3b\xb2\x2e\xc4\xfc\x03\xfe\x7c\x3e\xec\x3b\xa1\x3b\x24\xe3\x2f\x77\xff\xb8\xbb\x75\x59\x9e\xea\x6e\xb9\x9d\xb4\xef\xee\xae\x07\x48\xee\xee\x5f\x7e\xcb\xbd\xe0\xf1\x2e\xf9\x40\xc2\x1f\x68\x8d\x9c\xdd\xfd\xfa\x0f\xf8\x13\xba\x5c\x7c\x82\xfd\xbb\x9b\x2f\x8d\x97\x5e\x9a\xf1\xd4\xbd\xef\x8b\xc4\x2f\x83\xf0\x4f\x74\xb6\x9a\x7f\x5a\xcf\xdf\xec\x2c\x4b\x8a\x7e\x7c\xa3\x97\x0b\xf9\xb3\xbb\x37\x1a\xb6\x7e\x13\x86\xc5\xdd\xfd\xcd\x56\xdc\x2d\x02\xd8\x27\x1c\x86\x61\xec\x8a\xc3\xab\x7d\x3d\xf3\xe5\xf9\xbc\xe0\x8f\xa8\x7d\x15\xe4\x33\x2a\x7f\xc4\x8a\x5f\x90\x4f\xe8\x8f\xd9\xf0\x87\xc4\xfc\xb2\xb8\xd0\x70\xfb\x31\xe8\xbf\x52\x35\xe7\xd7\x54\xcd\x7f\xbb\x5f\xf8\x3d\x8e\xe6\x7f\xaf\x6a\xfe\x5f\xde\x06\x67\xcd\x57\x77\x03\x2f\x14\x5d\xe9\xb9\x3c\x5c\x48\x0a\x7f\x45\x3e\x17\x20\xbf\xbd\x3a\x13\xcf\xdb\x86\xff\x6b\x3a\x1f\x9f\x76\x22\xff\xb7\xaa\xbb\x73\x3d\x32\x0b\xdd\xe6\xed\xb9\x7e\x84\x7f\x79\x0a\x15\x7e\x7a\xd1\x5f\xe7\x7a\xed\xed\x97\xe2\x8f\xd8\x45\xdf\xdd\xa2\x73\x81\x7e\xfc\xd7\xef\x2f\x9d\xc6\xf0\x7a\x34\xe1\xe5\x29\xe1\x2f\xfb\xb1\xc8\xfd\x57\xb3\x01\x7f\xea\xfe\xfe\xb9\xe2\xeb\x46\xdf\x73\x0f\xef\x7e\x0d\x7f\xed\x7e\xfb\xed\xfe\xcb\xf1\x89\x57\x55\xee\xb5\xf3\xbb\x5f\xde\x54\xc9\xf7\xb7\x9b\x4a\x37\x5b\x41\x6e\x75\xf1\x2a\xaf\x3f\x39\x20\xaf\xde\xca\xe3\xcf\xf0\x0f\xb7\x7c\xda\xb0\xbb\x9a\xc4\x36\xec\xde\xc1\x0f\xe5\x07\x8a\x66\x80\x21\xea\xff\x24\x59\xa0\x6a\xb4\x7e\x33\xf1\xdf\xc2\x23\x7f\x11\x1e\xfd\x8b\xf0\xd8\x2b\xf0\xdf\xef\x2d\xbe\x6c\xec\x9e\xc2\x80\x2c\xb3\xf6\x35\xe9\x7a\x39\x52\x13\xb6\xc9\x14\xbe\x43\x30\xf4\xa6\xa6\x1c\xda\xef\x06\x5a\xbc\x1c\xa8\x6c\x92\x28\x29\xae\xc2\xf1\x3d\x7f\x97\x2f\x21\xbf\x3f\xe8\xf3\x02\x1a\x41\x3f\x7e\x3b\xca\xcd\x30\x59\x19\xbd\xbb\xd3\xc2\x26\x71\xb3\x9f\xaa\xb2\xe9\x7e\x6a\xc2\xba\x0f\xdb\x2e\x0c\x7e\xfa\x66\xa2\x7f\x4a\xc3\x73\xe5\x06\x1f\xee\x6e\x98\xf9\x0d\x90\x70\x85\xf9\xf2\x13\x85\xaf\x30\xa7\x24\x1c\x2e\x7d\x7f\x68\xcf\x85\xaf\x5d\x3d\x7c\xd0\x84\xee\xbb\xef\x18\xb0\xfe\xf8\x84\x6f\x88\x3d\x3f\xc0\x30\xfa\xe5\xe9\x66\x1a\x46\x04\x96\xca\xbe\x0d\x1f\xaf\xa7\xe3\x7f\xbd\x3d\x82\x71\xea\x50\xf8\x19\x04\x09\xb1\x37\x80\x8a\xb2\xc9\xdd\xec\x09\xea\xea\xc7\x20\x21\xf6\x12\x26\xbf\xd4\x5e\x7f\xf2\xd2\xbe\x42\xda\xe7\x53\x14\x2f\x7e\x21\x11\x16\xae\x97\x85\xef\xaf\x6d\xdf\x87\xd7\xc6\xb7\xac\x6b\xaf\xa7\x66\x93\xb2\x90\xdc\xc2\x8d\xc2\xe6\x43\x90\xb4\x97\x66\xef\x6e\xa3\xb9\xcb\x24\x11\xc9\xf5\x3c\xe9\x4f\x5d\xf9\xd3\xb5\xdf\x9f\x9e\xfa\xfd\x70\xf7\xfd\xce\x2d\x0c\xe3\xb7\x0b\xb0\x08\x98\xd2\xef\xdb\x97\xb2\x01\xc3\xf3\x97\xb0\x7d\x77\x78\xe2\xc7\x0d\xe8\x8d\xe8\xb4\x51\xf3\x3a\x28\x72\xdb\xeb\xc5\x43\x79\x0d\x18\xbd\x01\x7d\x8a\x80\xd8\x24\x08\xc2\xeb\xa9\xf2\xef\x7a\xc6\x9f\xa5\x04\x5f\x7e\x16\x0d\x7c\xf9\x31\x39\xbc\xfb\xf9\xd5\x89\xfd\x72\xe0\xff\xea\x57\xbf\x7a\x20\xed\xe1\xea\x59\xbf\xac\x7a\x8a\x07\xaf\xbb\x5f\x37\x55\x97\xc2\x87\xf1\x46\x1e\x1f\xce\x37\x90\x0f\x5f\x22\xe0\x1b\xce\x7d\x09\xb6\xbf\x8d\x77\x5f\x87\x7a\x0e\xf1\x2f\xe6\xe3\x25\xc0\xa5\xec\xf7\x97\x11\x79\x13\x5e\xf4\xda\x8d\x08\xbd\xb9\x06\x5f\x5f\x13\xb7\xdf\xdd\xda\xb8\x1c\x9e\xf4\xfd\xbb\xfb\xdf\x7f\xbf\xfe\x1c\xe0\xa7\x5b\x6b\x71\x23\x7b\x5f\x8f\xdf\x3d\xfe\x0c\xff\xfe\x32\x6c\xfa\xef\xcd\xdf\x97\x3e\xfe\xaf\x1a\x40\xe4\x7b\x9b\x81\x60\xaf\x1c\xea\x7b\xd5\x4b\xfb\x62\x4e\x6e\x6a\x9e\x6d\xc7\x5b\xf0\xaf\x1a\x94\x87\xd7\x1d\x95\x2f\x8d\xfe\xb4\xc1\x41\xfe\x92\xc1\x41\xfe\xba\xc1\xb9\x72\xf9\xa2\xcd\x3c\xd7\x4f\x2f\x2a\xed\x49\xec\xfe\x92\x9d\xb9\xf1\x0c\xff\x97\x76\xe6\x95\xd1\xbe\x5a\x98\xdb\xca\x6f\x2d\xcb\x6d\xed\x77\x36\xe5\xa6\xf6\xd6\xa6\x7c\xfe\xf1\xd3\x7f\x66\x56\x9e\x5a\xbd\xfb\x2b\x66\x02\xf9\xf3\x66\xe2\x25\xe8\x0f\xcc\x04\xf2\x57\xcc\x04\xf2\x57\xcc\x04\xfc\x27\xcc\xc4\xab\x33\xf4\xc6\xd7\x92\x9b\xf3\x00\x57\xe0\x67\x93\xf1\x9a\xb1\x78\xa3\xc1\xab\x27\x92\x9f\x3e\x04\xbf\xd1\xe0\x6a\x5e\xfe\x28\x92\x79\x06\xbe\xfd\xf6\xfa\x56\xaf\xaf\x1f\x82\xd4\xcb\xb7\xd0\xf8\x6a\xa0\x7e\x60\x93\x7e\xd8\xf6\xb3\xd9\x7a\x25\x08\x7a\xbd\xd9\xa5\xea\x0d\x5b\x74\xfd\x0d\xed\x1f\x49\x79\x1b\x76\x44\x7f\x38\x84\x37\x47\x1a\xae\x93\x76\xb3\x4a\x9a\xf0\xd0\x84\x6d\xfc\xee\xc6\xa3\x7b\x23\x1a\xfd\xd3\xf6\xf3\x5b\x3b\x79\xff\x9f\xd9\x49\xe4\xe5\x8f\x63\x62\xb7\x79\x63\xf7\x2d\x39\xbc\x43\xae\xbf\xd3\x7c\xb2\x8b\xff\xfe\x37\xfc\xf3\x93\xab\xfb\xcd\x7e\xe3\x37\xe7\x7b\x1e\x92\x47\xf8\xa1\xbc\xb1\x4c\x4f\x67\x99\xff\xf1\x0f\x64\xf5\x70\x1b\xd7\x7c\xae\x5c\xff\x6d\x8e\x20\x0f\xc5\xe3\x1c\x41\x6e\x7e\x56\xf2\x04\xf3\x29\xf9\x7b\xf3\x29\x99\xcd\xee\xaf\x7b\xf0\xc9\x6f\xf7\xff\x78\xc4\xe0\xbf\xfd\xad\xfb\xfb\x23\xb6\xfc\xa5\x7d\xec\xde\x63\xd7\xc3\x44\xf8\x53\x19\xbe\xfc\xa5\x78\xec\xde\xe3\xd7\xb2\xf5\x53\xd9\xfa\x02\xf7\xae\x9b\x3d\xae\xee\xdf\xaf\xaf\x15\x08\xfc\x54\x83\xc0\x17\xf0\xe7\x2a\x04\x86\x3f\x5e\x0f\xee\xff\xf2\xee\x86\x98\xe7\x9d\xce\xd7\x89\xf9\x52\xf9\x03\x62\x9e\x61\xee\x3f\x22\xd7\x11\xca\x7f\x3f\x22\x1f\xf1\xcf\x8f\xe8\xc7\xf9\xe7\x47\xfc\xe3\xf2\xf3\xe3\xea\xe3\xea\x0b\xec\xe2\x23\x8a\x3e\xbd\xfc\xed\xf1\x3d\xfa\x11\xc5\xbf\xbc\x60\x1f\xd1\xf9\x97\x97\xf9\x47\x74\xf9\xe5\x65\xfd\x11\x5d\x7d\x79\x41\x96\x1f\xb1\xf5\xf5\xed\x0f\xd0\xff\x88\x3f\x81\xfd\x88\x8a\x8f\xd8\x53\xc7\xe8\x35\x02\xfa\xff\xb1\xf7\x35\xdc\x6d\xdb\xc8\xa2\x7f\x45\xe6\x6d\x15\x32\x84\x64\x7e\x88\xd4\x97\x61\xdf\xc4\x71\xb7\xbe\xeb\x7c\x3c\xdb\x6d\xb7\x4f\xd6\xf5\xd2\x12\x2c\x71\x23\x91\x2a\x09\xc5\xf1\x5a\xda\xdf\xfe\x0e\x06\x00\xc5\x6f\xd9\x69\xbb\xef\xbd\x73\x6e\xce\x89\x0c\x82\x33\xc3\xc1\x60\x00\x0c\x06\xc0\xc0\xd7\xcd\xf1\x89\xea\xeb\xd8\x42\x2d\x56\x3a\xb5\xf0\x85\xa5\x47\x27\x73\xd8\x06\xae\x5a\x8e\xd3\x64\xb5\x88\x44\x42\x37\x77\x49\x6b\xac\x69\xcd\xa6\x1a\xb3\x2f\x6b\x88\x11\xd4\x40\x30\x1c\x0c\xde\x50\x2c\x81\xb1\x35\xd6\x06\x9d\x5a\x3e\x82\xdf\xc7\x47\x50\xc9\x47\x90\xe7\xc3\x34\x84\xe2\xfc\x3e\xdd\xc8\x0f\xd9\x51\x14\x46\xaa\xf2\x53\xf0\x39\x08\x1f\x82\xc6\xd5\x5f\x2e\x1b\x9e\x6c\xb0\x83\xc6\xf7\xd3\xb6\x82\x4a\x0e\x69\xf1\x56\x83\xc3\xa3\x23\xb3\xb7\x89\x8f\x8e\xfa\x9b\x80\xf7\x17\x15\x80\xe5\xcc\xe4\x57\xb5\xbf\xf8\x13\x72\x45\x3d\xba\x2e\xf4\x14\x7f\x94\x45\x5c\x1c\xe2\xf3\x1e\x60\x45\x2f\x9e\x9d\x31\x35\x5d\x19\x16\x5f\x7c\x85\x17\x97\x4a\x75\x5f\x59\x18\xfb\xf3\x9f\x33\x02\xa5\xde\x97\x92\x47\xf8\x36\xf6\xb2\x8e\xbb\xf0\x9e\x5e\xb2\xb9\x47\x46\xc8\xf5\x73\xd9\xea\xa3\x49\x25\x2f\x33\xe6\x78\xfe\x65\xc1\xe5\xf3\x87\x9a\xcb\x35\xc4\x92\x09\x4f\xb5\x45\x51\xe0\xa5\xce\x66\xe0\xa3\x6d\x1e\xa3\x5e\xe1\xf7\x9a\x47\x8f\x45\x1e\xc4\xd1\xc6\x52\x53\x62\xb6\x20\x5f\xc8\xa2\x12\x27\xc6\x23\x86\x35\x2e\x38\x6e\xb9\x2c\xae\xe8\xe3\xa2\x6a\xa5\xe0\xc8\x3c\x31\x07\xe0\x46\x16\x5a\x4d\x93\x39\x65\xa5\xab\xf4\xe3\x0a\xe8\x28\x93\x1d\x75\x05\x29\x77\x8b\x70\xf2\x59\xc9\xb9\x26\xcb\x2d\x89\x4a\x1a\xeb\x60\x4a\x22\x66\x0d\x65\xe9\x38\x83\xaa\x46\x53\xc5\x8b\x17\x29\xda\x56\xec\xb9\xfc\xde\xc2\xd8\xcc\xf7\x6c\x05\xd4\xb7\x0b\x3f\xf8\xac\xa0\xa8\xe8\xfd\xe6\x7a\x77\x49\x66\xf9\x75\x89\xd2\xce\xa8\xb8\xcc\xb8\xd3\x3b\x55\x2c\xab\x6a\x45\x7d\xca\x68\x20\xac\x6b\x34\x9b\xb0\xcc\x51\xa6\x8e\xb0\x01\x3a\x2f\x0c\x98\x5e\x97\xac\x45\x14\xb5\xa6\x78\xae\x82\x4d\xbf\x45\xbb\xa9\x29\x20\x4c\xd2\xff\x56\xdc\x82\x50\x06\xf6\x6b\x41\xe3\x0b\x8e\x15\x1a\x46\xcf\xf8\x68\xa1\xe9\x70\x2e\x36\x9b\x92\x62\x95\x32\xb2\xd9\x18\xc9\x19\xeb\xf3\x60\xb5\xa6\x3f\xf2\x90\x06\x38\x86\x13\xc4\xb9\xad\x30\xf2\x08\x34\x4d\x6d\xdc\x00\x83\xd4\x97\xfb\x74\x21\xae\x09\x39\xf2\x47\xc6\x18\x6a\x93\x1c\xfb\xa3\x70\x3c\x32\xc7\xbb\xe8\x25\xcc\xae\x1d\x86\xc7\x38\x1a\xc2\xa1\x57\xbe\xa3\xf6\x7e\x11\x86\x91\xaa\x46\x7a\xa8\x1d\x5a\x1a\x62\x68\x94\xa3\x61\xaa\x9b\xe0\x13\x82\xe0\x0d\x40\x9b\x32\xda\x9a\xa4\x68\x0c\x43\xd8\x3e\x2f\x3f\xb0\x4d\xd8\x8c\x18\x9b\xf2\xe8\xdc\x31\xee\xd8\x8e\xd5\x6c\xaa\xe4\x08\x77\x3a\x9d\xee\x66\xd3\x37\x0c\x66\xbc\x10\x48\x59\x3c\x45\x8e\xb1\x69\xf6\x8d\x4e\xb3\xc9\xc0\x2c\xb3\x6f\x36\x9b\xa6\x65\x3b\x60\xa4\xc3\xeb\x4e\xc7\xb0\x2d\x78\xed\x38\x96\x61\x43\x9e\x6b\x77\x3b\x1c\xc5\xed\x58\x8e\xc3\xf3\x1c\x83\x19\xca\x2c\xcf\x31\x3a\x7d\x99\xd7\xb5\x44\x9e\x69\x4b\x38\xab\x27\xe1\xec\xae\x2b\xf2\x1c\xc1\x82\xeb\x38\xa6\xc1\xd9\xb2\x4d\x89\x6c\xf6\x5d\xd7\xe0\xd8\x90\xec\x41\xae\xe5\x5a\x66\xc7\xe4\x0d\xdb\xc7\xa3\x51\xd7\xed\xa1\x5e\xb7\x3f\x46\x23\xd3\x74\x1c\x64\x9a\x4e\x0f\xd2\xae\x81\x4c\xd3\x35\x59\xba\x63\x39\xc8\xec\xb8\x00\xd3\xe9\x9a\x88\xfd\xf0\xb4\xcd\xd2\x1d\x9e\x76\x59\xba\xcb\xd3\x7d\x96\x06\x78\xc7\x76\x91\xe9\xd8\x3c\xed\x58\xc8\x74\x1c\x80\x71\x4d\x13\x99\xae\x6d\x40\xba\xd3\x43\xec\x87\xa5\xbb\x8e\x81\xcc\xae\x0b\x34\xbb\x6e\x97\xa5\x79\x7e\x97\xe5\x77\x6d\x96\xee\x19\x5d\xc4\x7e\x78\xba\xcf\xd2\x40\xbf\xd7\x31\x90\xd9\x73\x5d\x96\xee\x3b\x3d\x64\xf6\x01\xd7\x32\xac\x2e\xb2\x0c\xdb\x61\x69\xdb\x70\x90\x65\x1b\x2e\xa4\xdd\x0e\x62\x3f\x3c\xdd\x47\x96\xdd\xe5\xf9\x3d\x13\xb1\x1f\x9e\x66\xf0\x3d\xa0\xd3\x31\x2c\x64\x75\x0c\x1b\xd2\xb6\x8d\xd8\x0f\xa4\xfb\x2c\xbf\x6f\xf1\x74\x17\x59\x8e\xc1\xca\x65\x39\x46\x9f\xa5\xfb\x90\xb6\x0d\x64\x39\x36\xd0\x74\x5c\x13\x59\x8e\x0b\xf0\xae\x65\x20\xf6\xc3\xd3\x0e\x4b\x03\x0f\xae\x6d\x22\xcb\xb5\x39\x8c\xcd\xf2\xed\x2e\xa4\xbb\x16\xb2\x5c\x90\x83\xe5\xf6\xfa\xc8\x72\xfb\x80\xdb\xed\xf4\x10\xfb\x81\xb4\x63\x23\xab\x0b\x72\xb6\xba\x4e\x1f\x59\x5d\x97\xc3\xb8\x0e\x4b\x83\x1c\xba\x3d\x17\x59\xdd\x1e\xc0\xf4\xcc\x2e\x62\x3f\x90\xee\xba\x88\xfd\xf0\x74\x9f\xa5\x81\xff\x1e\x93\x49\xaf\x07\xdf\xed\xf5\x6d\xc4\x7e\x58\xba\xcf\x64\xd2\x37\x80\xcf\x7e\xc7\x45\xec\x67\x8c\x46\xb6\x61\xf4\x10\xfb\x81\xb4\x65\x22\xf6\xc3\xd2\xa6\xdd\x41\xb6\x69\x03\x8c\xd9\xb1\x90\x6d\x76\x3a\x3c\xed\xb2\x74\x1f\xd2\x4e\x17\xd9\x5c\x0f\x6d\xcb\x35\x10\xfb\xe1\x69\x9b\xa5\x6d\x48\x77\x59\x7e\x97\xe7\x77\x5d\x96\xee\x42\xba\xdf\x43\xb6\xd5\x07\x3a\x76\xdf\x46\xb6\xdd\x67\xe5\xb5\x3b\x86\x83\xd8\x0f\x4b\xb3\xba\x60\x3f\x3c\xdd\x43\xb6\xd3\xe1\x69\xc6\x8f\xd3\x61\x65\xb1\x5d\xdb\x46\xec\x87\xa7\x5d\x64\xbb\x22\xdf\x71\x90\xed\x42\xdd\xd9\x5d\xd7\x44\xec\x87\xa7\x3b\x2c\x0d\xdf\xed\x76\x59\x7e\x97\xc3\xf4\x58\x7e\x0f\xf2\x7b\x0c\xa6\x07\xf2\xb7\x99\x0c\x6d\x2e\x43\xbb\xd7\x77\x58\x5a\xe4\x77\x59\x1a\xca\xd2\x77\x6c\x64\xf7\x41\x9f\xed\xbe\xdb\x43\x76\x9f\xd3\xec\x77\x3b\x2c\x0d\xf0\x7d\x46\xbf\xdf\x07\x1e\xfa\x7d\x1b\x75\x0c\x8b\xc9\xad\x63\xd8\x3d\xc4\x7e\x58\xda\xec\x98\xa8\xc3\xe5\xdc\x61\x72\x66\x3f\x90\x76\x0c\xd4\x31\x1d\x93\xa7\x6d\x96\xb6\x21\xdd\xeb\xa0\x8e\xd9\x63\xf4\x3b\x9d\x4e\x0f\x75\x5c\x68\x6b\x9d\xbe\xd3\x47\xec\x67\x8c\x46\x4e\xdf\x70\x91\xd3\x87\xfa\x75\xfa\x76\x0f\x39\x7d\x90\xa1\xd3\xef\x1a\xc8\xe9\x43\xff\xe0\x1a\x86\x85\x5c\x03\xda\x8b\x6b\xb8\x3d\xe4\x1a\x20\x1f\xd7\xe8\x9a\xc8\x35\xa0\xbe\x5c\xa3\xe7\x22\xf6\xc3\xd3\x7d\xe4\x1a\x50\x77\xae\x69\xf4\x11\xfb\x81\xb4\xe3\x20\xd7\x04\x7d\x76\x6d\xd3\x46\xec\x87\xa5\x3b\xb6\x85\xdc\x8e\xdd\xe1\xe9\x3e\x72\x3b\xc0\x83\xdb\x71\x0c\xc4\x7e\x78\xba\xcb\xd2\x40\xc7\xed\xf6\x91\xeb\xf6\x20\xbf\x6f\x5a\xc8\xed\x9b\x0e\xa4\xdd\x0e\x62\x3f\x3c\xed\x22\xb7\xdf\xe5\x30\x5d\x06\x03\x32\x77\xfb\xdd\x1e\x4b\xb3\xf2\x76\x0d\xb3\x8f\xba\x86\xc5\xf8\xe9\xba\xa6\x8b\xba\xbc\xcd\x76\xdd\x6e\x0f\x75\x5d\x68\x2f\x3d\xcb\xb0\x51\xcf\x02\xb9\xf5\x2c\xbb\x83\x7a\x16\xd4\x45\xcf\xea\xf5\x50\xcf\x82\xfa\xea\x31\x5d\xed\xd9\x20\x9f\x5e\xc7\x30\x50\xaf\x03\xfd\x83\x69\xd9\xb6\x81\xd8\xaf\x03\x4f\x9d\x8e\x89\xd8\x2f\xe3\xa3\x63\x1b\x66\x07\xc1\xaf\x78\xea\xc3\x53\x9f\x3f\x75\x1c\xf6\x04\xb5\xeb\x76\x2c\x26\x5a\xf6\xcb\x9e\x1c\xc3\xea\x20\xd7\x31\xa0\x27\x76\x1d\xc3\x71\xd9\x13\x97\x8b\x63\x31\xc1\xb0\x5f\x78\x72\x2c\xf6\xc4\xfb\x2a\xb7\x67\xf4\xbb\x88\xfd\xc2\xbb\x9e\x69\x98\x88\xfd\x5a\xe2\xa9\xc7\x9e\x4c\x0e\x69\x3a\x16\x7b\x72\x3a\xe2\xa9\x0f\x4f\x7c\x64\xe9\x9b\x1d\x1b\xc1\x1f\x47\x3c\xc3\x58\xd3\x37\x41\xd2\x90\xe0\xef\xc5\x48\xd4\xb7\x4c\x36\xfe\xf4\x2d\xa8\x69\xd3\xec\xdb\xae\x85\xe0\x0f\xa3\xde\x67\xc3\x84\x83\xf8\x1f\xf1\x6c\xbb\xec\xd9\x05\xae\xfb\x66\xb7\xeb\x1a\xec\xb9\xdf\xef\x8f\xc7\x43\x31\xb8\x27\x46\x8a\x9f\x8c\xf7\x06\xc6\xd8\x3f\x21\xed\x60\xbd\x18\xf8\x47\xb6\xb5\xd9\xf8\xc7\xd8\xb4\xba\xcd\xa6\x7f\x64\xba\xc6\x09\x69\x4f\xc2\x80\x46\xe1\x62\x40\x55\x5f\x3b\x31\x06\x11\xfb\x63\x0d\xcc\xed\x56\x7d\x62\x48\x06\x92\x00\xc6\x56\xfb\x73\x62\xcd\x04\xe4\xa1\x71\x49\x66\x67\x5f\x57\xaa\xa2\x9e\x0c\xfe\x7b\x33\xfa\xef\x9b\x9b\xa9\xd7\xfa\xe7\xcd\x4d\xbb\x35\xd6\x35\x55\x85\x58\x94\x27\x83\x9b\x9b\xc3\x9b\x9b\x43\x4d\x55\xd5\x51\x06\xe0\xe6\xa6\xad\x8e\xf8\xe3\xf8\xc9\x42\xee\x56\xd3\x36\xaa\x7a\x73\x33\x7d\x32\x91\xbd\xbd\xb9\x69\x6b\x4f\xec\x0f\x7f\xd4\x36\xea\x22\x9c\x78\x8b\x79\x18\x53\x4d\x53\x07\x3c\xdf\xd9\x6a\x27\xea\xcd\xcd\xe1\x08\xbe\xf1\x70\x73\xd3\xbe\xb9\x69\x7d\xff\xaf\xf1\x6b\xed\xb5\x7a\x73\x73\x32\x32\x5a\x7d\xc8\x1e\xdd\xdc\x8c\x6f\x6e\xd4\x9b\x1b\x0d\x00\x4f\x6e\x6e\x0e\xfe\xe3\x3f\xbf\xfb\xbe\xf9\xea\xb5\x8e\x06\xc3\x7f\xdd\xdc\x60\x8e\x3a\x7e\xad\x9d\xa8\xff\xf1\x4d\x68\x9a\xfa\x1d\x48\x20\xc5\xc7\x58\xd7\x14\x0d\x85\xd8\xa8\x8c\xc5\x23\x4d\xe2\x80\x1f\x64\xfd\xfc\xde\xa3\x93\x39\x89\xce\xa7\x38\x14\x26\x70\x14\x3e\x88\x88\x0a\xe7\xd3\x18\x8f\xe4\x26\x82\xc5\x0e\x78\x97\x1b\x91\x99\x1f\x53\x12\xa5\x28\xa9\x3e\x82\x49\xe7\x13\xb8\xb4\xce\x83\x29\xf9\x3a\x30\xb7\x5a\x69\xc0\x1f\x4a\xbd\xc9\xfc\x3a\x7c\x17\x2e\x73\x41\x7f\xf8\x27\x65\x30\x53\x19\xce\x92\xb1\x16\xe7\x8f\x43\x32\xbe\xfc\xfb\xc7\xcb\xf0\x61\x47\x83\xa6\xdc\x3f\x92\x48\x26\x34\x58\xb6\x90\x23\x3a\x1e\x46\xcd\x26\x8f\xc9\x24\x82\x49\x24\xe7\xe0\xf2\x90\x38\x15\x71\x62\x27\x19\xce\x41\xfb\xce\x0f\x78\xe8\x1f\x44\x35\x44\xda\xd7\xe7\xef\xcf\x6e\xdf\x9e\xfd\xf0\xf1\xf2\xec\xf6\xe2\xfc\xc3\x5f\xcf\x7f\xf8\xb5\xe0\x57\x21\xf4\xc7\x47\xa6\xff\xa2\x3e\xe4\x7c\xa2\x38\x89\x49\x57\xc0\x28\x1c\xcb\x60\x6a\x98\x54\x13\xfc\xd9\x5b\xf8\x53\xee\xc7\xf0\x16\x8b\x3b\x6f\xf2\xf9\x19\x74\xbf\x14\x91\x48\x7e\xba\x55\xa8\x75\x9c\x6f\xef\xfe\xbd\xca\x23\xf8\x89\xe8\x23\x11\x7e\xda\x4a\x91\x16\x74\xef\x00\xe3\xb0\xd9\x3c\xa0\x1a\x9d\x47\xe1\x43\x83\xb5\xf3\x33\xee\x61\x14\x85\x6c\x2c\xd7\x31\x6d\xdc\x91\x06\xef\x32\xa6\x8a\xec\x12\x9e\x7c\x11\xb5\xb0\x48\x54\xd7\x51\x44\x66\xe4\xeb\x80\x20\x41\x65\x40\x51\x4a\x29\xa3\xf6\xee\x01\x15\x0b\x3d\x88\x4a\x24\x81\x56\x91\x1f\x46\x3e\x7d\x1c\x44\x6d\x99\x64\x53\x42\xd9\xb1\x72\x56\xbc\xe9\x34\xc5\xc9\x75\x78\xe1\xc7\xac\xd3\x44\x7e\xdb\x9f\x66\x25\x59\x0a\x9a\x77\x63\x1a\x07\xd2\x55\x99\xae\x2a\x31\x83\x4c\xef\xb3\xae\x04\x6a\x99\x43\x7a\x8c\x8d\x21\x6d\xb5\x34\xd8\x6e\x20\x79\x3f\x2a\xc1\x19\xd1\x71\xf2\x3e\x1d\xd2\xaa\x51\x42\x5e\x1e\xb8\x80\x13\x51\x44\x7a\x7c\xcb\x40\x0c\x00\x48\xbb\x7b\x33\x50\x70\x7e\x87\x14\x4e\x2c\xd5\x6b\x5a\xba\xec\xbb\x03\xc2\x25\xe5\x87\xed\x13\x49\x8f\x90\x2f\xac\x3f\x65\x73\x59\x2d\x53\x85\xa5\xa5\x44\xa6\x86\x0e\x8c\x61\x32\x71\xce\x56\x65\x59\x47\x94\x09\x58\xc8\xfb\xaf\x11\x19\x43\xa4\x2b\xed\x89\xa6\x83\xc0\x0e\x65\x51\x22\x6c\x0c\xa3\x9a\xa2\x44\xba\x9e\x89\x50\x98\x2d\x4e\x34\x4e\x96\xbb\xa6\xe1\x45\xc2\x91\x4a\x91\x0f\x01\xb6\xc2\x24\x30\x23\xa8\x96\x5f\xa2\xe3\xc9\x16\x94\xb2\xc0\x8b\x21\xb0\x5f\x82\xa5\x66\x4a\x83\x28\xca\xec\xb9\xdd\x6c\x0a\x5b\xc6\x78\xe0\x44\x3f\x00\x52\x2d\xf0\x97\x69\xcc\x70\x08\xb0\x31\x0c\x8e\x24\x9f\xc3\x40\xd7\xb5\x58\x0d\x34\x21\xf5\xed\x36\xd7\x7f\x66\x8a\x99\x1b\x45\xb8\x38\x47\x63\xe4\x63\xca\x6b\x39\x44\x31\x26\xed\xc9\xdc\x5f\x4c\x3f\x84\x53\x12\xa3\x40\x44\xb2\x14\x7c\xf3\x2e\x41\xa5\x6d\xe8\x39\x40\x62\x07\xc1\x66\xc3\x3a\xb1\x40\x36\x38\xa1\x27\x51\x52\x63\x1e\x0e\x46\x4a\xb0\x5e\xde\x91\x48\x39\xc0\x8c\xab\xf0\xbe\x41\x53\xbd\xcb\x89\x31\x48\x3f\x8e\xd1\x02\x07\x6d\x9f\x25\x75\x4f\x2e\x54\xce\xb1\x31\x9c\x1f\x25\xb5\x3c\x97\xb5\x3c\xc1\xf1\x68\x3e\x46\x6b\x3c\xc9\xf0\x09\xd8\x1f\xef\x55\x0f\x78\x5c\x1f\x63\x83\x83\xcb\x05\xee\x49\x44\x3c\x4a\xde\x04\x93\x79\x18\x89\x50\x84\xaa\x87\xa8\x1c\x34\x84\x36\x64\x69\x26\x07\x2e\x25\x53\xac\xc9\xd8\x18\xe3\x49\x3b\x08\xa7\xe4\xfa\x71\x25\xa3\xaa\x89\x60\x9f\x4c\x84\xea\x04\xad\xf8\x1e\x24\xf8\xfe\x14\x4f\x18\x61\xe5\x8d\x82\x31\x9e\x02\xde\x07\x6f\x49\x76\x42\x9b\xb6\xfd\x20\x20\xd1\x8f\xd7\xef\x2f\xb0\xa2\xa0\x69\xdb\x5b\xad\x48\x30\x3d\x65\x55\xa2\xae\x44\x07\x01\xac\xed\x6a\xa9\xb8\x3b\xea\x1e\x1b\xc3\xfb\xa3\x12\x98\xe1\xbd\x14\xdc\x0c\xa7\x5f\x8f\xee\xc7\x68\x89\x67\x35\x32\x6c\x99\x07\x18\x2f\xe5\xa0\x98\x2a\xe1\x95\x0c\xe6\xfa\x8b\x4f\xe7\x50\xe4\x19\x5a\x21\x0f\x2d\x85\x57\x59\xac\xe3\xcc\x75\xfc\x0c\xd4\x09\xa0\xae\x79\xa4\x51\xde\xeb\xad\x34\x74\xa0\xe6\xf5\x70\x17\x41\x76\xa1\xe5\x94\x52\xab\xd2\xc7\x6f\xd0\x43\xbd\xa0\x88\x49\xc8\xee\xdc\x3a\x5b\x99\x46\x15\x06\xfd\x74\xb7\x94\x44\xa2\xe7\x88\x52\x09\x15\x4f\x91\x6d\xb9\xe1\x67\xa3\x60\x23\xbf\x3d\x8d\xbc\xd9\xcc\xbb\x5b\xc0\x1a\x50\x74\xa2\xfa\xed\x79\x44\xee\xe1\x15\xf5\xa2\x19\xa1\x58\xb9\x85\xe3\x79\x0a\xf2\x4b\x42\xb3\x4f\x16\xfe\xe4\x73\x2a\x32\x3b\xb7\x43\x68\xd2\xb5\xab\x11\x1b\x83\x34\x6d\xf0\x7c\xe4\x03\x3f\xd5\x71\xb1\x19\x8e\xe7\x07\x71\x79\xef\x95\xff\x0c\xca\x1d\x2d\x4a\x6b\x46\xc5\x28\x36\x1a\xa3\x08\x9b\xc3\xe8\xc8\x8b\x66\x20\xbd\x4c\xb7\x4f\x47\x51\xcb\x1c\xe3\xe4\xdd\x28\x1a\x27\x9d\x90\x8f\x49\x7b\xe5\x45\x24\xa0\x8c\x3c\xe2\x21\xff\x64\x9b\x1e\x86\x6c\xfc\x13\xeb\x6f\x6f\xc9\x7d\x18\x11\x95\x8e\xc2\x31\x1b\xb2\x7d\xb1\xdb\x8a\xb7\xc0\xfc\x10\x5c\xab\xcd\xb9\xfa\x47\x3e\xdf\x9f\x01\x41\xb8\x0b\x2d\x13\x02\x70\xa6\xf3\x47\xc6\x58\x43\x36\x6c\xe6\x48\x75\x2f\x39\xfb\x8f\xd7\x3a\x83\x4f\x4c\x40\xaf\xc1\xb4\xa6\xc1\x70\x1a\x61\xd4\x08\x83\xc5\x63\x43\x54\x4c\xc3\x6b\xc4\x7e\x30\x5b\x90\x1d\x88\xb0\x14\xc3\x6c\xfb\x62\xcd\x0f\x66\xbc\x5c\x67\x63\x1c\x66\xa2\x43\x8b\x96\x85\x82\x72\x5d\xbe\x26\x5f\x81\x25\x35\xd6\xb2\x86\x5f\xba\x5f\x64\x22\x09\x34\x64\x6c\x21\x94\x23\xce\xb5\x6f\x61\x97\x25\x9f\x7a\xe2\x03\x49\x9a\x0d\x03\xf9\x1a\x5a\xec\xe1\xc0\xab\xe5\x60\xc1\xa6\x21\xc6\x96\xdf\xd4\x50\xa0\x3d\xd9\x43\x7b\xae\xa1\x75\x06\xcb\xd7\x77\xa2\x59\xed\x41\x5e\xd7\x32\x36\x41\x14\xad\x34\x64\x8a\xb5\x94\xb8\x6c\xa6\x84\x2d\xc3\x40\xb4\xcd\x47\x77\x9f\x44\x38\xfe\x77\x44\xb0\x7d\xda\x0e\xe3\x11\x2c\x9d\xbf\x3d\xbb\x18\xe7\x0c\x8a\x24\xdc\xef\x1d\x59\x2c\x54\x6d\x8b\x04\xe8\xc5\x0f\x95\x90\x32\x2a\x60\x0a\xfa\xe7\xeb\x31\xde\x21\xca\xdc\x1f\x7e\x28\xcb\x3d\xbd\xac\xa4\x9c\x8d\xc3\x97\xa2\xff\xf6\xaa\x9a\x6f\x19\x81\x2f\x05\xfe\xe3\x75\x25\x38\xf5\xee\x52\x80\x57\x1f\x2b\x01\x65\x24\xbd\x34\xf4\x79\x3d\xf4\x79\x9a\xe5\xb3\xab\xd3\x0a\x68\xbe\x68\x4a\x3d\x4a\xd4\x39\x03\x7b\xf3\xe9\xec\x9d\xb6\x15\x8b\x6d\x4f\xdb\x61\x30\x52\x46\x4a\x1e\x97\xb2\xae\xd0\x5b\x72\x3f\x45\x7b\xb2\x8e\x58\xbf\xf8\x89\x65\x61\x03\x65\x28\x9e\x5e\x9d\xdf\x7e\x7a\x73\xf9\xe6\x3d\xb3\x3c\x47\xca\xf8\x77\x90\xfa\x78\x75\xca\x88\xb4\x3f\x7d\x33\x85\x77\xa7\x57\x40\xe1\x36\x47\x21\x03\x74\xfe\x97\x0f\x1f\x2f\xcf\x38\xbb\xff\x5d\x60\xb7\x02\xb4\x3d\x29\x30\x25\xf6\xcd\xb3\x97\x67\x85\x97\xb0\xce\xcb\x2d\x03\x55\xcb\x32\xf9\xe1\xe3\xe5\xfb\x37\x17\x80\xf7\xae\x80\xb7\x0f\xe3\x7d\x09\x1b\x5f\x48\x14\x93\xf3\x7a\xc4\x91\xf2\x7d\x49\xcd\xa4\x03\x2c\x22\xba\xff\xdc\x55\x19\x71\x96\xf9\xd9\x5f\x7d\x60\x7d\xf3\xdc\x8b\x40\x20\xa2\xe9\xbd\xf9\x30\xce\x0c\xd3\x65\x1a\x29\x59\x1c\xf2\xfe\xfb\x69\x3b\xf4\x46\xca\x89\x52\x8d\xf8\x09\xd6\xf5\x55\xe5\x44\xd1\xb6\xc8\x1b\x29\xc7\xcf\x80\x3d\x16\xb0\x07\xcf\x80\x3d\xe0\xb0\x46\x0d\x24\x53\x3d\xd5\x34\x5e\x93\xf6\x4c\x3e\x69\x80\x64\xbe\x10\x49\x37\x01\xcd\x7a\x29\x9a\x05\x68\xf6\x4b\xd1\x6c\x40\xeb\xbc\x14\xad\x03\x68\xce\x4b\xd1\x1c\x40\x73\x5f\x8a\xe6\x02\x5a\xf7\xa5\x68\x5d\x40\xeb\xbd\x14\xad\x07\x68\xfd\x97\xa2\xf5\x19\x5a\xfb\xbb\x6a\xac\x30\xa6\xa0\x4d\xdf\x71\x6d\x7a\xa5\xbc\xaa\xf9\x84\x00\x7e\xa5\xbc\xe2\x6a\xda\xa8\x53\x53\x49\xb9\x21\x74\xfa\xd5\x73\x80\x5f\x09\xe0\x61\x15\xb0\xbc\x7a\x45\x14\x90\x01\x7f\x63\x1b\x5e\xb0\x36\xbc\x18\x29\xff\x99\xeb\x6f\x98\xb5\x91\x20\xa7\xe2\xb7\xaa\x54\xdb\xa2\x45\xfb\x4d\x35\xb0\x8c\x6d\x2a\x20\xdf\xee\x83\x7c\x17\x3e\x04\x02\xf6\x74\x1f\xac\x88\x02\x28\xc0\xdf\xed\x03\x97\x71\x36\x04\xfc\xd9\x3e\x78\x19\xed\x52\xc0\xff\xb0\x0f\x3e\x13\x68\x52\x20\xfd\x65\x1f\x52\x3a\x14\xa4\xc0\xf9\x71\xef\x87\xe4\x35\x37\x1c\xfe\xfc\x99\x72\xba\xf6\xee\x04\xc6\x7f\x55\x63\x64\x63\x1e\x0a\xf8\xbf\xee\x85\x4f\x15\xf9\x62\x9f\xe6\x40\xc4\x2e\x01\xfc\xbe\x1a\x38\x15\xde\x4b\x00\x7f\xda\x07\x9c\xd6\xc9\xab\x6a\x60\x19\x19\x49\x40\x5e\x17\x20\xe5\x0c\xe5\xc8\x6a\x36\x0f\xa2\x66\x33\x1d\xee\x47\x20\xfd\x6d\x8f\x48\xd2\xac\xfc\xef\xe7\x6a\x66\x52\x43\x23\xe5\xef\x75\x2d\x30\x17\xca\x45\x7c\xc6\xab\x46\x28\xc4\x55\x11\x28\x77\xd5\x28\x55\x51\x4e\x04\xe6\xa4\x46\xbc\x25\x41\x44\x04\xd6\xb4\x1a\x2b\x17\x33\x42\x20\xe4\x67\xd9\x29\x84\x42\x00\x07\x81\x72\x5f\x23\x86\x9f\x73\x4d\x67\x56\x0d\x2b\x43\x05\x08\xc8\x79\x5d\x79\xf9\x91\x44\x0e\xb8\xa8\x13\x69\x16\x74\x59\x5f\xc3\x05\xe9\x05\x75\xfa\xbf\xdb\x08\x2e\xa0\x57\x05\x68\xb1\x2d\x35\xe2\xdb\x52\x95\x03\x65\x90\xda\xd9\xcc\xb0\x18\xda\x6f\x25\x7e\x0d\xa5\xa1\x60\x8c\x7d\x68\x08\x99\x9d\xb0\xe2\x53\xf9\x5b\x4b\x32\xe3\x4c\x6a\xcb\xa7\x00\x8f\x2b\xc1\x93\xbd\x93\x02\x72\x5d\x05\x99\xd9\xf3\x28\xda\x4c\xd9\x98\x87\x44\xb0\xa8\x04\x35\xac\x1c\xfb\xe6\xc3\x83\x6c\xa4\x0c\x22\xde\x63\x63\x8c\x15\x9e\x54\x10\xcb\x16\x13\x31\x6c\x8e\xb1\x22\xd2\xfc\x45\x32\x9f\xc2\xd6\x18\x2b\xc9\x53\xf2\x12\xdb\x3c\x9b\x67\x7c\xbc\x3a\xc5\x9d\x31\x56\x3e\x5e\x9d\x0a\x08\x6e\xaa\x63\x87\x41\xf1\x34\x7f\xf1\xee\xf4\x0a\xbb\x63\xac\xbc\x3b\xbd\xe2\x19\x7c\x6e\x83\xbb\x63\xac\xf0\xa4\xb2\x55\xe7\x9b\x8d\x3a\xc7\x4f\x5b\x8d\x4f\xed\x27\x15\x4b\xe0\xa9\x15\x66\x3f\xbd\x85\x33\x7f\x70\x2d\x09\x6d\x12\x33\x61\x61\x29\xac\xb2\x95\x6c\xb8\x12\xb4\x34\x4c\xd7\x04\xad\xd1\x2a\x39\x8f\x34\xdc\x85\xa0\x4d\x6e\x12\x2b\xee\x1f\x5f\x47\x51\x38\xf3\x28\xb9\x9d\xfb\xb3\x79\xd9\xc5\x35\x59\x08\xbd\x70\xe2\x2e\xfb\x1e\x2b\x8a\x5c\x99\x93\x1f\x3d\x5a\xe5\x32\x74\x1d\x7c\x77\x11\x26\xa3\xec\x8b\x31\x72\x1c\xab\xef\x1e\x61\x75\x82\x79\xa3\x3c\x0d\xa7\xe4\x0d\xcd\x95\x42\xd3\x9a\xcd\xc9\x11\x76\x5c\xdb\xec\x03\xa5\x75\x1d\xb4\x6e\x6a\xc8\x8f\x3f\x78\x1f\xd4\xb5\x56\xdc\x18\x9c\x65\x3e\x1a\x4e\xc2\x80\xfa\xc1\x9a\x6c\x27\xd8\x34\xac\xce\x6b\x75\xd2\x02\x9e\x34\x5d\x5d\xb7\x1c\xd7\xb6\x0c\x4d\x77\x1d\xc7\x76\x51\xa4\x63\xd9\x71\x14\xbf\xb8\x85\xfd\xb0\x00\x7f\x84\x27\x9c\xdd\xae\xdd\xb1\x35\x79\xe2\x23\x55\xd9\x62\xdb\xba\xac\xf2\x41\xd4\xf0\x83\x46\x7c\x12\x8f\xa2\xb1\x58\xde\x2f\xa8\x8f\x3c\x23\x93\xce\x93\x57\x1a\xa9\x11\x9a\x64\xf6\xa0\x27\xae\x8c\x01\x13\x3a\x23\x1e\x68\x4f\x41\x8e\xba\x94\x88\x5c\x67\xc8\x75\x5e\xaa\x02\x1b\xd9\x15\x4d\xfc\x7d\x2d\xfe\xea\xe2\x6f\x4b\xfc\x6d\x2b\x83\x22\x66\xfe\x48\x80\x3c\x2f\x90\x3e\x58\xca\x28\x57\xc1\xa5\x4f\xab\xb2\x2f\x57\xc1\x59\x69\x38\xbd\x1a\xce\x4e\xc3\xb5\x9e\xf9\xdd\x76\xcd\x77\xb7\xd9\xa6\x2b\x3a\x93\x34\xf6\x61\x0d\x37\xa8\x14\x1b\x65\x75\xaa\xd5\x4a\x93\xfb\x20\xc4\xfd\x51\x49\x9d\x07\x57\x82\xc2\x47\x76\x4e\x0b\x2b\xad\x12\x4a\x28\xf0\x37\x35\x18\x76\x06\x63\xfb\x6c\xda\xff\xaa\x81\x34\x33\x90\x5d\xa5\x4c\x8d\x53\xa3\x92\x56\xda\x27\xa6\x49\xf4\x4a\x49\x64\x87\xab\xfd\x54\xfe\x43\x52\xc9\x82\xa0\x7c\xb7\x95\xc6\xf9\xb1\x50\x4c\xea\xdd\x5d\xa5\xa2\x43\x54\x7f\x0e\x17\x50\xff\xaf\x06\x8a\xd9\xcb\xef\x71\x05\xbf\xff\xde\x38\x03\x75\x6c\x4e\xc9\xbd\xb7\x5e\xd0\xba\x5a\xac\x3a\x4e\x78\x76\x75\xda\x90\x9b\x09\x1b\xdf\xc7\x6d\x38\x48\x93\xe9\x3d\x45\x83\xe4\xfd\x72\x28\x1f\xaf\x4e\x54\x8a\x77\x4f\xa3\x68\x8c\x94\x43\x85\x6f\x40\x82\x2f\x66\x3d\x7d\xda\x80\x41\xe7\xbc\x84\x75\xc1\x93\x2a\xba\x0b\x44\x0b\x52\x9d\x95\x9c\xbf\xaa\xac\xcc\x06\xf8\x8e\x61\x24\x60\x36\xa6\xf0\x87\x6f\x36\xc9\xd3\xdb\xb3\x8b\x9d\xe9\x9a\x02\x91\x31\x34\x76\xad\x21\xcf\x07\xf7\x3c\xf3\x75\xe6\xe2\x99\xb3\xc4\x11\x5d\xbc\xfb\x08\xf0\xd2\x91\xd6\x6b\x8f\x71\x09\xf0\xb2\x6b\xec\xa8\x4f\x17\x05\xfb\x25\x81\xcf\x7f\x97\x6f\x4f\xb8\x66\x38\xa5\x84\x34\x6d\x5b\x4a\x6a\xb7\x4d\xb1\xb4\x7c\x89\x8d\x95\xb3\xe4\xca\x0e\x9f\x0a\x91\x71\x7b\x2d\x1f\x3d\x30\x4d\x54\xc7\xd1\x20\x3a\xc6\x8a\xa1\x34\x9b\xd1\x11\x56\xfa\x4a\x1d\x34\x36\x8d\xd7\x75\xc4\xa2\xb4\xb5\x64\x68\xad\x4e\x6f\xa0\x0c\x95\xf2\xab\xbb\xbe\xb5\x56\x33\xfc\x28\x4a\xce\x22\x49\x8c\xf5\xc4\x26\xf1\xb4\x27\x4f\xda\x24\xd2\x08\x01\x92\x39\x77\x5b\x7e\xb4\xbc\x3a\x4f\xd1\xe4\x6d\x74\x71\xb2\x90\x94\xb2\x03\x43\xb9\xe6\x15\x72\xc1\xbb\x5d\xc8\xe5\xfe\x41\xc8\xde\x77\x44\xf9\xf4\xea\xbc\x31\x09\xa7\x24\xe9\x50\x4a\x35\xa2\xfc\xbb\xc9\x9d\x9b\x85\x4f\x63\x45\xc9\x0a\xf1\xdd\xe9\xd5\xbe\x86\x5c\xdf\x82\x87\x7c\x17\x0d\xdf\x3b\x89\xee\xe5\x35\xc8\x19\x13\xb5\x70\xa2\x19\x86\x84\x8c\xdd\xf1\xdd\x6f\x89\xd5\x37\x2d\x89\x70\x90\xa8\x01\xba\x67\xfd\xfd\x94\x93\x78\xa5\xfc\xf6\x6a\x30\xc5\xaf\x0c\xe5\xb7\x57\xa9\x62\xbd\x52\x56\x90\xed\x9a\xca\x2a\x9d\xaf\x44\xca\xa0\x40\x3c\x39\x9f\xa8\x9b\xa5\xe7\x8b\xd3\x47\x13\xe1\xa8\x71\x94\x96\xa0\xb2\x64\x24\x15\x63\xa9\x94\x8e\x22\x55\x95\xfb\xee\xf4\xaa\xf1\x89\x8a\xaa\x9d\x6a\x68\x8a\x15\x25\xdf\x51\xe4\xce\x44\x7f\x52\xf4\x86\x7e\xaf\x2b\xdf\x45\x8a\x3e\xd5\x77\xf9\x37\x37\x99\x76\xa1\xe8\xab\x8c\x5c\xf5\xdf\x4a\xca\x5c\x14\xe8\xf3\xbe\xad\x57\x7f\xfb\xf9\xe5\xe6\x3a\x20\xca\x5e\xae\x1f\x79\x51\x94\x76\x8d\x95\x3a\xff\x8c\x3e\x33\x4d\x70\x5f\x97\x59\xfa\xb5\xcd\x46\xf9\x0e\x3a\xbb\xcd\x46\xd1\x21\x71\x52\x12\x51\x8a\xc3\x3e\xa3\x6b\xae\xfa\x4c\xc9\xf7\xb3\x68\xd9\xc6\xcc\x1d\x0b\x83\xe8\x20\xdd\x60\x93\xa7\xb7\x67\x17\x9b\xcd\xf3\xc6\xe3\xac\x08\xb5\x64\x8f\x55\xea\x6d\xf1\xa0\x30\xe0\x14\xb7\x6b\x73\x5a\x45\x78\xbe\x00\xb8\xff\x48\x71\x19\xaa\xe8\xcc\xea\x70\x05\x48\x09\x32\x48\xae\x3e\x28\xc0\x4e\xc2\x39\xfc\x59\x01\x7f\xb7\x4d\xa0\x9a\x4a\xf9\xb5\xfb\x05\x42\x7f\xc6\xa8\x99\xbb\xcc\x2a\x6d\x50\x16\x3f\xbd\xd3\x83\xe4\xcc\xf0\x27\x66\x16\x46\x78\xb2\x67\x2b\x4b\xe2\xad\xf2\x53\x07\xec\xdb\xe1\x43\x40\xa2\x77\x15\xfb\xea\xe2\x95\x17\x28\xec\x13\xa9\xfd\x95\x73\xb2\x58\x84\x8d\x87\x30\x5a\x4c\x15\x44\x32\x5b\x2d\x29\xf7\x91\x45\x98\x8a\x9b\xb8\x7f\xf1\xa7\x10\x2f\x87\x66\x6e\xfe\x1e\xca\x0b\x33\xef\xc3\x80\xfe\xc2\xef\xc6\x56\xee\xc2\xc5\x34\xb9\x0e\x3c\x83\x1e\xe7\xd1\x53\xee\xca\xdd\x26\x33\xaa\x21\xd6\x8a\xc2\xcd\xc6\x3f\xc0\x38\xde\x7e\xd3\xc6\x9d\x10\xc5\x38\x52\x6d\x5b\x2b\x3a\x2d\xdf\x7e\xbc\xe0\xae\x49\x96\xe0\xee\xc2\x9f\x3e\xbc\x3b\xbb\xbc\x38\xff\x70\x06\x7e\xc9\xe4\x89\xbf\x7c\x7b\x71\xfe\xe1\xaf\xe0\x88\x84\x94\x70\x30\x7e\xf8\xf9\xec\xf2\xea\x0c\xf7\xc6\x58\x11\xe9\xe4\xc5\xf9\xd5\xf9\xdb\x8b\x33\x6c\xba\xfc\x1d\x7f\x54\xb6\x6a\xb8\xd9\xa8\xe1\xce\x01\x19\x70\xf3\xdf\xab\xf2\x43\x16\xaf\xc5\x96\x67\x4e\x78\xb0\xa6\xcb\xf0\x21\xfe\x5f\x6b\xb2\x26\x3b\xf3\x56\xbc\xf9\x21\xf2\x96\x24\xbe\xfa\xec\xc3\x25\xc2\x46\xf6\xe5\x9b\xc0\x5f\xc2\x84\x0e\xa0\x32\x53\x90\x95\x27\x2f\x26\xe7\x32\xff\x14\x86\x0b\x38\x56\x15\xb7\xdf\x85\xcb\xc2\x2b\xa9\x55\x70\xa2\x07\x63\x1c\x40\x84\x19\xbf\xe2\x96\xd6\xe4\xda\x93\x6f\xfd\x4c\x99\x67\xf5\x37\x56\xfe\x4b\x5e\xb0\xd2\x43\x42\x79\x59\xf1\x06\xfe\x14\x53\x2f\xa2\x03\x82\x48\x30\x1d\xd0\xe4\xe4\x49\xa9\x84\x92\x20\x0b\xe5\xf2\x7b\xf0\x83\x69\xf8\xd0\x16\xd3\xff\xec\xcb\x2c\xe2\x45\x18\xae\x76\x47\x80\xb4\x7c\x4c\xf0\x34\x58\x5a\x25\xca\xae\xb2\xf6\x29\xe1\xd1\xbd\x92\xfd\xfa\x72\x70\x29\xd3\x00\x5d\x3f\xc2\x8e\xf6\xe7\x14\x82\xef\xed\xae\xd3\x3e\xd0\x75\x82\xe8\xee\x02\xef\x42\x9d\x88\x42\x74\x34\xc2\x94\xb5\x3c\x28\x0a\xff\x10\xc1\xe5\x24\x46\xc6\xb8\x0d\x75\x9a\xa0\x97\x41\x90\x60\x9a\x3a\x48\x61\x26\x07\x29\x2a\x18\xe2\xbb\x6a\xcb\xa9\x45\xe2\x7b\x47\x24\xe5\x81\xaf\x84\xd2\x2a\x5a\x2e\x03\x20\xc1\xf4\x98\xa6\xae\x0f\xac\x80\x91\x66\xda\xde\xc6\x5f\xdd\xbe\x65\x90\x37\xd6\x3c\xf2\xe7\x24\xa2\xd2\x36\x04\x82\x1a\xd2\x16\x29\x0d\x66\x7e\x68\x95\xdd\x5d\x28\xe3\x35\xee\xb6\x1b\x17\x63\xe4\x4b\x98\x4c\xb7\x5f\xf8\xc0\x29\xdf\xb6\x4b\xa2\x8a\xfb\xf7\x21\xc6\x74\x8c\x09\x5f\x36\x79\x66\xbc\x75\x70\x84\xfd\x9d\x04\xd3\xbf\x37\xfc\xb8\x41\xc3\xb0\xb1\xf0\xa2\x19\x69\x37\xde\x87\x31\x6d\x2c\xfc\xcf\x64\xf1\xd8\xf0\x1a\x77\xde\xb4\x71\x7a\x75\x09\x2e\xb1\x8a\x08\xed\xc3\xf8\x08\xd3\x61\x2c\x4f\x14\x78\x38\x2e\x5c\x49\x01\xe1\x0b\x17\xd5\xf7\x5a\x78\x1a\x9a\xcb\x39\xdc\xbc\x18\xb7\x07\xe3\xb8\x55\x7e\xa3\x5e\xd9\x87\x8a\x62\x96\x81\x6a\x3c\x4a\x9a\xcd\x7c\x50\xe0\x74\x34\xa6\xbc\xb5\xfc\x75\xd0\x32\x93\x96\x32\xa9\x0a\x3c\xb4\xc6\xb9\xed\xbd\xd2\xf8\xf8\x21\xf2\x66\x60\x76\x68\x68\x05\xc7\x38\x64\x19\xf3\x2c\xb0\x8a\x8f\x48\x30\x8a\xc7\x49\x5a\xb6\x3d\x2e\xd4\xfb\x42\x9d\x97\xa0\x40\x60\xfa\x6a\xb0\xb4\x92\xdd\xd7\x0e\x42\xed\x88\x2c\x88\x17\x13\xf5\x5e\xdb\xca\xd2\xcf\xb0\x31\x9c\x1d\xf9\xc3\x99\xac\xe7\x25\x5e\x8c\x66\xe3\x91\x31\x46\x8f\x3c\x65\x8e\xd1\x1d\x4f\x59\x70\x76\xeb\x0e\xfa\xec\x19\xc6\x78\xde\x6c\xaa\x4b\xdc\x32\x35\xb4\x3c\xc0\x78\xd2\x6c\xaa\x93\x83\xc2\xb4\x45\x48\xb3\xd9\x54\x57\xcd\xa6\x9a\x3e\x00\xb3\x02\xe9\x69\x68\x9d\x31\xcd\x60\x02\xcb\x5a\x35\xa7\x5a\x4e\x4d\xd3\xfc\x7b\x46\xef\x60\xca\x68\xe2\xba\x32\x7b\x93\xdf\xd6\x7e\x44\x54\x4d\x43\xd3\x17\x30\xc1\xb8\x78\x16\x59\x1e\xd3\x6e\xa9\x4d\xf3\x47\xbc\xc4\xde\xce\xd6\x17\x7f\x4a\x42\x45\x43\x05\x00\x59\xa8\x16\x57\x55\x25\x75\x90\xe8\x16\xc2\xd1\x2d\xd1\x29\x5e\xca\x08\x75\x0f\x2c\x69\xf6\x58\x0d\x3c\x34\x43\xb0\xf2\x98\x3d\xb2\xd9\x14\xe8\xf2\xd3\x19\x60\xa6\x6a\xe8\xf4\xa8\xd7\x6c\xaa\xa7\x3a\xee\x69\x1a\x62\x88\x89\xf5\xd7\x6c\x56\x60\xa6\x22\x47\x01\x06\x98\x85\x95\xd0\x77\xfc\xf8\x07\x40\x0a\x4b\x91\x2b\xd2\x15\xbe\x1d\xde\xe2\x53\x74\x8a\xaf\x90\xd9\x7c\x68\x36\x53\xac\x6c\x05\x34\xb7\x1d\x2b\x69\xcf\xa1\xf5\x66\x89\x37\x9b\xaa\xe5\x74\x31\xc6\xb7\xcd\xa6\x7a\x8b\x4d\x47\x43\x96\xe3\x62\x8c\x4f\x19\x71\x6c\x68\x1a\xba\x3d\xb2\x1c\xb7\x9a\xe1\x59\x6b\x12\x2e\xc2\xa8\xa5\xe8\xb7\x4c\x3e\x75\xb0\x12\xf0\x14\xd6\x4f\xd9\xa4\xfc\x4e\x5b\xe9\xf8\xd5\x11\x53\x8a\x06\xa0\x60\x01\xfa\xe0\x4f\x49\x6b\x32\xf7\x22\xe5\xf8\x95\xfe\xa8\x2b\x47\x87\x0c\xe6\x58\x49\x22\x54\x3f\x66\x7d\x9c\xc7\x96\xe3\x54\xd1\xe2\xcb\x16\xd5\xd4\x84\x6f\xeb\x51\xf8\xbe\x9a\xca\x60\xa5\x63\xa5\xe9\x2d\x57\xc3\x8c\x3f\xe9\x48\xbc\x58\xd0\x6c\xfe\xb1\xc8\x9f\xed\xf2\xa5\xcb\x65\xa5\xe3\xc7\x23\xac\x34\x94\x13\xa5\x19\xdc\xc5\xab\xa1\x32\x78\xdc\x4e\xf0\x72\xbb\xfd\x53\x9b\x5b\xd2\xe6\x6b\x3a\xba\x34\xc6\x5a\xdb\x46\x95\xc3\x6e\x66\xa6\x57\x33\xec\x16\x16\x62\x96\x3e\x65\xed\x16\x4c\x05\x05\x3d\x09\x7a\x05\x37\x14\xcf\x46\x39\x23\x3b\x7f\x4a\x1c\xa8\x5c\xc9\xc0\xb5\x39\xcb\x03\xc2\x5a\x15\xfc\x64\x02\x36\xe1\xb0\x38\x6a\xec\x47\xa9\xb1\x39\x6a\x3e\x30\x32\xc6\x70\x2a\x8f\x34\x9b\xc9\xd1\x51\xb8\x90\xa5\x74\xc8\xf7\x31\xad\x7c\x17\xee\x2e\xbd\x85\x7b\x71\x63\xf1\xec\x07\xaa\x5f\x11\x7d\x17\x0e\x9a\xaa\x61\xa9\x85\xb3\xd9\xc4\x47\x86\xc6\x59\x0a\x9e\x31\x20\x7b\x38\xc2\x18\x87\x27\xcc\x20\x1e\x18\x68\x81\x43\x66\x66\x9c\x50\xf6\x58\x62\x5f\x0d\x83\x12\x6d\xe1\xc4\x93\xaa\x93\x4e\x86\x10\x79\x68\x21\x26\xb7\x73\x1c\xb7\x42\x1e\xbf\xec\x25\x14\xca\xee\xce\x04\x33\x6f\xae\x69\x28\x3c\xc0\x38\x96\xe7\x5e\xfd\x3f\x8c\xed\x18\x19\x68\x52\x5c\x3a\x2a\x51\x86\x34\xc9\x40\x2b\x9c\x35\x2e\xa7\x5f\xb2\x5d\x2c\x09\x7d\xe0\x37\x9b\xaa\x8f\x4d\x79\x08\xad\xea\x50\xe4\xd4\xff\xb2\x3b\x16\x19\x0a\x97\xcb\x9c\xbb\x5b\xfc\xc2\xba\xd1\xdc\x8b\xde\x13\x2f\x5e\x47\x12\x46\x57\x56\x5f\x15\x24\xf1\x68\xb8\xc2\xe4\xa5\x48\x0b\x72\x4f\x31\xad\xc3\x7a\xf0\xa7\x74\x9e\x45\x82\xac\xa2\x01\x97\xc3\x79\xad\x46\x2d\xaa\x09\xcc\xc4\x13\x76\x49\xd8\x20\x4b\x22\xec\xed\xf1\x85\xed\x66\x06\xb2\xbb\xbb\x25\x5f\x29\x09\xa6\xf1\x66\x93\x9a\x45\xc3\x24\x14\x0b\x57\x12\xf8\x43\x45\xb5\x7d\xbc\xdf\x6c\x9e\x6e\x6f\xa1\x1a\x6f\x6f\x07\xa3\xf1\xd6\x0f\x62\xea\x05\x13\x12\xde\x37\xde\x44\x91\xf7\xd8\x6c\xe6\x0f\xd1\x24\xe0\x98\x6e\x53\x5f\x49\x3a\x2e\xe8\x1e\x1a\x7e\xd0\xa0\x1a\x6d\xcf\xbd\xf8\xe3\x43\x90\xf8\xad\x22\x0d\xee\x92\x8a\xc6\x98\x8e\xa2\xb1\xb6\x2d\x04\xdd\x81\x22\xa6\x3c\x7c\xc2\x93\x31\x09\x83\x98\x46\xeb\x09\x0d\x23\x4c\xb7\x04\xc0\x10\xdd\xa9\x1f\x16\x4e\x98\xe8\x44\x14\x92\xeb\x90\x1a\x69\x03\xd5\x4f\x81\x45\xbb\x34\x0a\xc8\x43\xc3\xd7\xb6\x4c\xe2\xbf\xc3\xc9\xd6\xd7\x50\x80\x23\xb5\x07\x7d\x8b\x6a\x6a\x68\x81\x23\xd5\xb2\xd8\xd4\xe6\x0a\x4e\x06\xb6\xef\xa3\x70\x79\x2a\xc6\x76\xd5\x74\x0d\x0d\x4d\xd2\xd1\x7a\xe6\x48\x99\x29\x25\x8e\xba\x8a\xdd\x85\xbf\x7c\xbc\xe4\xfe\x3b\x96\xe0\x59\x89\xeb\x0e\xbc\x76\x05\x4f\xdb\xba\x2a\xee\x22\xdf\xfc\x18\xcb\xde\x93\xb4\x27\xde\x62\xc1\x3d\x1b\xfc\xda\x38\x59\x3b\x41\x66\xdf\x5f\xd0\xbe\xbd\x03\xf7\x0b\x8e\x58\x3a\x3d\x66\x62\x9f\xe5\xa4\x94\x1c\xc7\x2c\xc3\x0f\xfc\xe4\x2c\x71\xac\x6a\x28\x48\xae\x21\x60\x6f\x97\xe1\x94\x70\x0f\xd8\xa2\x9d\x74\x1f\xef\x59\xa6\x4a\x01\x60\xe1\xc5\xfc\x22\x80\x77\xe1\x43\x70\xed\x2f\x09\x36\x58\xb6\x37\xa1\xfe\x17\x92\xc1\xc0\xa1\x5c\xab\x0c\xa4\xbf\xcc\x57\x29\x22\x19\x5d\xc9\xf1\x83\x0b\xed\x04\x8a\xce\x5b\x13\x2f\xe8\x75\xe4\x2f\x25\x7c\x26\x90\x4e\xe2\x93\xbb\x0d\x03\x06\x04\x5b\x4d\x39\x26\xdc\xcb\xf0\x3e\xfc\x42\xf6\x22\xbe\x97\x90\x79\x6c\x56\xdc\xe7\x61\x27\x3b\xcf\x53\xd8\x3f\xad\x9e\x87\xcb\x37\xba\x6f\x33\x12\x12\x97\x0f\x15\xbc\xf6\x10\x05\x28\x91\x78\xb2\xb8\xcd\xa5\xd4\x0e\xef\xef\x55\x85\x46\xfe\x52\x41\x55\xd2\x4b\x05\x0e\xca\xdb\x24\xb9\x13\xe7\x50\x86\x69\xf8\x10\x28\x55\x22\xd1\xb2\x3c\x73\x95\x2a\x2e\x34\x48\xe6\x82\x6f\xe2\xad\x78\x14\xfe\xc5\x8c\x25\x97\x11\x94\x2c\x04\x89\x86\x24\x7c\xdb\x79\xf1\x6e\x51\x45\xc7\x94\xea\xc5\x94\xb9\x17\x27\x28\x0a\x7a\x9a\x11\x3a\x28\xd5\x68\xd1\xd0\xf8\x92\x50\x82\x71\x95\x71\x1b\x96\x41\x9c\x05\x53\x19\xd5\x45\x3d\x20\x9b\xcd\x01\xd5\xc4\x05\x81\x6c\xfe\xcd\x03\xb3\x8e\x4c\xfe\x60\x8e\x99\x9d\x1b\xac\x97\x24\x62\x95\x31\x38\x80\xc0\x67\xf7\xfe\x6c\x2d\x9f\xb7\xda\x73\xca\x94\x58\x1f\xd7\xe4\x2b\xfd\xb3\x0a\xc5\xcc\x4a\x5e\x1e\x5e\x3c\x45\x19\xee\x2c\x5b\xcc\x8b\xc3\x4d\x2c\xf0\x22\xfa\x78\x34\x1e\xfa\x99\x25\xb2\xc8\x0b\xe2\x85\x27\xbd\xd1\x17\x7e\x40\xae\x43\xde\xe9\xab\x19\xdd\x9b\x11\x0a\x81\x86\x35\x74\x60\x20\xb8\x7b\x2c\xd2\xb4\xc4\xc3\x14\xc2\x07\x75\x73\x18\x1e\x71\xc3\xd9\x84\x90\x04\xe2\xf0\x7d\x81\x50\xc8\x46\x9a\xfd\x0c\xc4\xe8\xc0\xd0\x86\x71\xdb\x8f\x7f\x89\x98\xe5\x36\x3d\xf1\x47\xbb\xc8\xba\x63\x1d\x7b\x03\x51\x18\x0f\x66\xaf\xe9\x3a\xac\xfa\x34\xbc\x7c\xf6\xd7\x99\x2d\x0b\x13\x87\x67\x32\x91\x04\xbe\x58\x7a\x2b\xb5\xf4\x5c\x9a\x38\x27\xaf\x4e\x10\x1c\x91\xd3\xda\xff\x08\xfd\x40\x0d\xda\x7e\xfc\xfe\xea\x17\x70\xe2\xc7\x27\xca\x4d\x74\x13\x28\x03\xe5\x26\x50\x9e\xa1\x8b\xe9\x76\x9a\x6d\x7d\xc5\x8e\x84\xeb\x51\x45\x17\xc8\xfb\xb0\xf7\xf9\xae\x20\x96\x00\xd2\xfb\x9c\xeb\x1b\xea\x84\x58\x67\x3a\xf3\xa8\x61\x86\x86\x72\xc6\x34\xcc\x92\x53\x9a\xa5\x28\xcc\x48\x41\x01\xf6\x91\x87\x8d\xa1\xb7\xbb\x34\xcb\x93\x2a\xb6\xc0\x64\xe4\x8d\x87\xa1\x8e\x17\x23\x73\x8c\x18\xad\xc5\xc8\x1a\xb3\x0f\x1c\x63\xaf\xd9\x8c\x5b\x2d\xe4\x43\x2a\x68\xb5\x34\x11\x2f\x21\xd8\x6c\x12\x4a\x3c\x60\x13\x9f\x97\x84\xed\x98\x78\xd1\x64\xae\x1e\xde\xc4\xfa\x77\x87\xbb\xe0\x31\x93\x66\x53\x9d\xef\xe6\x7a\x73\x36\xe7\x40\xf3\x23\x1c\x27\x8d\x6f\xbb\xb3\xf0\x93\xa0\x0a\x6c\xe6\x93\x15\x58\xd1\x53\x9f\x8e\x22\x35\xfc\x93\x56\xb2\x4a\x56\xe0\x77\x0b\x0a\xda\x56\x63\x66\x8a\x1f\x5f\xf8\xc1\xfa\x6b\xb3\x49\xe4\x86\xca\x74\x27\x96\x04\xfa\x80\x57\xdc\x95\x10\x90\x87\x78\xd7\x73\x17\x71\xf2\xba\x52\x28\x7b\x6e\x99\xaf\x72\xed\x23\xef\xb9\xe0\xae\x89\x7d\xfd\x27\x38\x2e\xea\x7a\xd0\x6d\x61\xa0\x63\xef\xde\x2c\x16\x55\x6d\xc7\x17\x23\xd5\x9b\xc5\xe2\x0d\x18\x6f\xc9\xb6\xdf\xaa\xe6\xc1\xcd\xaa\x92\x81\x93\x13\x14\x56\x57\xb2\xc6\x52\x45\x66\x46\xb8\x01\xc9\x1b\xd9\x69\x18\x46\xd3\xb2\x00\x5e\xb0\x2c\xc1\xdf\xaa\xa4\xc4\x1a\x10\x59\x29\xfb\xb6\x74\xb6\x5e\xe2\xa7\x80\xce\x58\xaa\xce\xc8\x18\xb7\x5a\x08\xba\x7a\xfe\x47\x2f\x2c\x7e\xf0\x9b\x9f\x2a\x4a\x01\x06\x89\xd8\x6a\xbc\x0c\xd7\x01\xad\x2f\x8a\x3c\x00\x77\x1d\xca\x29\x75\x59\xd9\x34\xd6\xf8\x0b\xcb\x59\x8c\xf7\xd7\x85\x52\x8b\x49\x72\x52\xa0\x63\xcc\xef\xe5\x89\x4e\x8c\x81\x4a\x8f\x61\x57\x66\x0b\x33\x83\x6a\xd7\xe2\x13\xb7\x0f\x45\x2d\xc7\xd0\x10\xfb\xaf\xd2\x43\xec\x18\xda\x21\xbc\xf3\xee\x62\x95\x6a\x3a\xa4\xe1\x36\x0b\xd5\xec\xbc\xa6\x5a\x51\x23\x92\x4e\x36\x53\x6c\x03\xc2\xc8\xdc\xad\x29\x0d\x03\x66\x9f\xc0\x45\xf7\x24\xa0\xef\xb8\xe7\x32\xe9\xa8\xa7\x91\x37\xcb\xc8\x2e\xd9\xfe\x2a\xa4\x7b\xba\xf0\x27\x9f\x4f\xd9\x2b\x95\x40\x04\x84\xb9\x7f\x4f\xff\x4a\x1e\xc5\x2a\x51\x18\x5c\xb1\x0c\x80\x52\x89\xb8\x18\x88\x0b\x28\x41\xdc\x81\x42\xc0\x9d\x04\xd6\xaa\x83\x7d\x17\xae\xef\x52\xb0\x76\x09\xac\x9c\xe3\x83\xda\xaf\x76\xc0\xa2\x04\xde\x74\xba\x7f\x00\x3a\x30\x0a\x22\x2d\xc5\xab\x9d\x16\x65\x4c\xe4\xec\xce\x9b\x0a\x83\x99\x8d\x8e\x4a\xd5\xd4\xa8\xd4\xf2\x7e\x16\xd9\xf5\x4a\x29\x9f\xf3\x14\xab\xfb\x3c\xa0\x24\xfa\xe2\x2d\xd8\x04\x32\xc2\x31\xa1\x32\xa3\xa4\x77\x27\x69\x44\xd6\x9b\x38\x46\xb1\x33\x2e\x1f\xf0\x4b\x7a\xe7\xea\x52\x55\xcf\x7c\x7e\xaf\xbc\xaa\x29\xd7\x88\x0c\x6c\x9b\x44\x2c\xb5\x02\xdc\x27\x5f\x36\xf8\x14\x5a\xee\xae\xe5\x54\xf6\xe8\x71\x66\x0c\x4a\x16\xb0\x73\x2f\xcf\x02\xb9\xcc\x50\xd6\xb3\xab\xa4\xa4\xd7\x48\x35\xc5\x67\x7e\xfc\x82\x87\xfc\x33\xd0\x9e\x21\x4c\xee\x68\xad\xf5\x47\x54\x7f\xa6\xbe\x20\x35\x88\x75\xc2\x81\xb1\xdf\x48\xba\x90\xb4\x0d\x5f\x49\x8f\x19\xf7\xa3\x9a\xd7\xc6\x78\x0c\x76\x61\x2d\x88\xae\x17\x45\x9f\xea\xd9\x2a\xa3\x7f\x56\x14\x7f\xb8\x2b\x65\xb9\x78\x7f\xf9\x78\xf9\x2e\xe9\xc0\xd9\xab\x5f\xc2\x68\xfa\x86\xaa\x65\x03\x47\xaa\xd3\xfc\xc3\xf9\xb8\x38\xff\x70\x96\xe1\x83\x59\xf2\x6f\xc4\x94\x29\xcf\x4a\x71\xa8\x29\xe1\x47\x0d\xc8\x43\xe3\x9d\x47\x89\xc6\xea\x8d\xb5\x2a\x55\x1b\xaa\x54\x2c\xab\x14\x7c\x62\xc7\x1d\xc3\xe0\x5e\xbb\xf6\xed\xd4\xe7\x3e\xdc\x1f\xa2\x70\x79\x21\x01\x93\xb3\xed\x44\x3b\x36\x0d\x2d\x29\xcf\x6e\x78\x61\xf3\x89\x0a\xea\xc9\x71\xdf\x45\x9e\x1c\x1e\x91\xf6\xca\x9b\x91\xbf\x21\xfe\xf7\x57\xb9\x21\x67\x47\x57\xd7\x73\xe5\xaf\xe5\xaf\x2c\x24\x49\x62\x3c\xec\x2c\x85\x72\x6e\x98\x69\x25\xf8\xd1\xd0\x5e\x60\x53\x02\xff\x5a\x65\x66\xb0\x5e\xb7\x52\x57\x8a\xed\xee\xa4\xbc\xfd\x9c\x05\xd3\xdd\x85\xe3\x25\xef\xcc\x31\xf7\x31\xec\x36\x89\xbd\xb4\xbf\xab\xe9\x82\xb0\xd0\xce\x93\x9a\xcf\x1f\xd5\xf6\x0a\xd5\x98\xc6\x18\x1b\x83\xba\xb7\x25\xe6\xf1\xa0\x9e\x55\xd6\xa0\x65\x1f\xc3\xa9\x5d\x87\xb2\x4d\x57\x7c\xa8\xd2\xb4\xcb\x8a\xac\x60\x36\xef\xe4\x96\xc7\x3c\x36\x6a\xcb\x5c\x52\xaa\x96\xbc\x19\x3a\x4f\xea\xc8\xa8\xe9\xa7\x41\x80\x15\x7d\x7c\xa6\x66\xee\xd2\xfb\x1d\xb3\xd1\xda\xf7\xf5\xed\x9c\x4e\x45\xcf\xce\x79\x80\x08\xef\xe0\x56\xa8\xee\xe0\x39\xa4\xae\x6f\x99\x15\xca\xf8\xc6\x95\xad\x60\x64\x30\x22\xc2\x89\x56\xcd\x92\xe8\xad\x52\x86\x69\xbe\x9b\x48\x44\x59\x34\xaa\xf2\x62\x2e\x6e\x75\x13\x31\x59\xfc\x78\x55\xb0\x64\x38\x0a\x3a\x30\xbf\xa1\xfe\xf1\xa8\xb4\xf6\x0b\x57\x64\xb1\x19\x5c\x7e\x47\x1c\x9b\x4d\x8d\x2b\xdb\x0b\x1e\x15\x2f\xda\x62\x54\xc6\xb9\x29\x72\x45\x57\xf5\xd3\xaa\xc4\xae\xa9\x76\x4b\xe5\x88\x4c\xc2\xe0\x0b\x89\xe8\xcf\xe2\x34\xeb\x69\xb8\xb8\x0e\x93\xa0\x2e\x10\x80\xae\x64\x8b\x82\x50\x43\xd6\xb7\xf9\xd8\x18\xb2\xc4\x31\xf6\xe1\xd6\x57\x83\x5f\xbc\xc9\x2d\x86\xa8\xd5\x1a\xee\x22\xe7\xe6\xe7\xb4\xbc\x75\x57\xf6\xb2\x05\x1f\x6a\xf4\x0c\xff\x23\xaf\x5c\xb9\x67\x72\x7f\xe1\xf8\x22\x51\x88\x7d\x14\xc3\x65\x7d\xad\x10\x05\xd8\x00\x9f\x99\x7f\xaf\xf2\x00\x27\x91\x8c\x9e\x10\x6a\x62\x87\x46\x78\x6c\x34\x9b\xf9\x97\x2d\x53\x1b\x6a\x61\xab\xc5\xef\x26\xf3\x8f\xa2\xc4\xf5\x93\x83\xf4\x75\x06\xe9\xeb\xfa\x36\xd9\xd8\xb5\x80\x8f\xa3\x39\xfc\x01\x02\x60\xc3\x8d\x16\x5c\x8e\x6a\xa0\xeb\x68\xd1\x6a\x69\x08\x66\x92\xa3\xb9\xc8\xf6\x74\x1d\xcd\x75\x5d\xe3\x0c\x89\xad\x8e\x7e\xcc\x8a\xc8\x84\x7b\x45\x56\x5e\xe4\xd1\x30\x52\x33\x5c\x6a\x43\x4d\x50\x6f\x99\x79\xfa\x61\xab\xc5\x12\xa2\x0c\xba\x99\x2a\xc5\x73\xc8\xb3\xa2\x69\x43\x4d\x70\xa9\x9b\x39\x3e\x91\xcf\x13\xc2\xe5\x27\xfc\x51\xa1\x1e\xb7\x02\xc4\x3f\x33\xd8\xed\x0a\x69\x85\x7a\xa0\x7b\x7a\xf1\x5e\xc8\x70\x11\xe7\xd7\xad\x32\x36\x60\x9d\x8d\x27\x46\x94\x24\x2a\x7f\xa9\x61\x3e\xa2\x62\x57\x35\xd3\xbb\x8a\xe1\x3b\x3d\x53\x90\x4e\xbe\x52\x9e\xe4\x28\xf6\x3b\xb8\x4a\xf5\x3e\xfc\x8d\x17\xed\x06\xd0\x9f\xbd\xc5\x9a\xc4\x97\x7c\x57\xe1\x54\xd5\x4e\x04\xf3\x03\xf1\x57\x97\xdc\xf1\xd2\xe4\x78\x2c\xa9\xcd\x12\x3b\x4c\x69\xa8\xda\x68\xfc\xb4\x7d\x75\xa3\x28\x49\x84\x70\xa2\x1d\x63\xa3\xb4\xc8\xdc\x04\x7e\xe6\x6c\x8b\xf5\x7e\xe4\x39\x42\x2e\x6a\xc1\x16\xd1\xad\xea\xb5\x61\x7c\x3f\x5b\xfa\x94\x92\x48\x1b\xd2\xd4\x5a\x32\xbf\x15\x1c\xaf\xff\x9c\x18\xb9\x2f\x3c\xc0\x52\x58\xe4\x2b\x39\xd8\xb1\x67\x29\x22\x27\xb9\x9d\xa3\xb7\x38\x07\x84\xec\xea\x49\x6b\xf9\x8c\xb7\x6a\xdd\x91\xa4\xd7\xe8\x4a\x5c\xc6\xc5\x95\xba\xf4\x79\xb5\x02\x17\x27\x23\x03\xc9\x0d\x4c\x69\xce\xf3\xfe\x73\x31\xdb\x85\xcc\x7a\x95\xcf\x53\x1a\x94\x10\xfa\xd6\x05\xca\x9a\xc2\x9f\x05\xd3\x17\x17\xfd\x19\x8e\x63\xd8\xec\x5e\x66\x43\xb4\xcc\xbc\xd4\xa0\x64\x27\x07\x05\x01\x08\x1b\xab\x56\x6a\xa3\x12\x52\xcc\xd4\xab\x54\x90\x32\xd5\x81\x39\x4c\x25\x46\xbe\x46\xb9\x01\x28\xcd\xc3\xe2\x84\x63\xb4\xf3\x16\xff\x3e\xde\xb8\x35\xaa\x95\xe4\x16\xf9\x65\xfa\xc2\xdd\x56\xfb\x14\x24\x73\x4f\x53\xa5\x68\xcb\x3d\xa8\x39\xae\xe5\x2a\x75\x5c\x5c\x6e\x6f\xb0\x8e\xfa\x98\x82\xa5\x9c\x5a\x92\x6e\x36\x99\x71\x70\xcc\xc4\x90\xdd\x81\x57\xb2\x56\x92\xd6\xc1\x72\xe7\x51\x41\xf6\x2d\x4c\x4a\xc4\x55\x00\xe7\x22\xac\x02\x2e\x83\x3d\x32\x4e\xd4\xd2\x0e\x10\x1d\x18\xda\xa0\x8c\x9b\xd2\x7e\x00\x28\x55\x72\xcf\x66\x53\x07\xa6\x96\x6c\xa4\xcb\xee\x27\xc2\xfe\xbf\x75\x04\x48\x56\x6d\xf9\x61\xd0\xc4\x7d\x9e\x1f\x11\x64\x08\x19\xb9\x65\x52\xf8\x5a\xe2\x24\x98\x0c\x16\x2b\x4f\xe9\x8d\x55\x62\xb7\xac\x38\x80\x7b\x19\x3e\xf0\x43\xa5\xd2\x5d\xb9\xf0\x62\x7a\x49\x26\x61\x34\x25\x53\x61\x1f\x67\xdc\x99\xe9\xf7\xd2\x2e\xce\x52\x48\x7a\x9c\x30\x50\x15\xce\x8b\x5c\xa4\xcc\x44\xba\x49\x9f\x87\x2b\xc1\x8c\x48\xec\xff\x93\x3c\x13\x33\x27\x89\x12\xaf\x7f\x86\x91\x30\xe0\xc4\x32\x84\x52\x57\x90\x15\x7b\xe3\xb0\x10\xa6\x67\x8b\x8c\xd2\x21\xb8\x64\xb1\x55\x7a\x67\x8a\x2b\x61\xc7\x46\xa6\x89\x17\x01\xe4\x51\x95\x7c\x75\x0d\x89\x54\xe5\x42\x45\x56\x50\x2a\x17\x94\xd8\xa7\xea\x07\xa4\x1e\x9b\x6f\x34\xcd\xd6\x52\x66\x15\xe1\x45\x84\xb8\xfe\x0b\x98\x6a\x8d\x92\x85\xcf\x8c\x61\x43\x95\x6c\x36\x34\x71\x43\xd6\xe8\x63\x11\xb7\x4e\x06\xf3\x5a\xb6\x5f\x17\x89\x95\x89\xa4\x64\xf7\x73\x91\x7a\xdd\xf7\xb5\x7c\x13\x7e\x01\x77\x55\x4d\x17\x18\xcd\xdf\x90\x97\xd1\xe6\x82\xa1\x58\x45\xaa\x50\x23\xfc\x50\x9e\x08\x1e\x51\xac\x91\x4c\x0f\x52\x8d\x99\x77\x54\x0c\xbe\x45\x31\x4e\xb2\x44\x06\x2f\x6c\x51\xf9\x9d\x00\xc3\x54\xbb\xcc\xfa\x55\x5e\x97\xb7\xc8\xf2\xba\x95\x91\x5b\x0e\x30\x4e\x9a\x6c\x25\x10\xce\xdf\x14\x23\x3b\xaa\x92\xc9\x5f\x6a\xbd\xbb\x9e\xe8\x61\x29\xbb\x5a\xab\xa4\x64\xc3\x9c\x36\xa7\x3c\x61\xe8\x20\x7f\x23\x7d\x18\xfc\x32\x27\x24\xcb\x9a\xb8\x58\x0f\x02\x27\x53\xef\x57\xc9\xab\x39\x14\x39\xc2\x5b\x0b\x88\xd0\x41\xb7\xdf\x7d\x7c\x7f\xfb\xee\xec\xe2\xfa\xcd\x2d\xf7\x35\x97\x57\xce\xe0\x19\xf8\x9f\xde\xfc\xe5\x6c\x77\x20\x38\x4f\xa1\xa4\x01\x57\x8c\x1d\xbb\x60\x3b\x49\x39\x5e\x53\x54\xdc\x17\xb0\x2d\x58\x51\xe1\x7a\x32\xe7\x33\xab\xc2\xd4\x95\xe9\x32\xbc\xff\x15\x93\x36\x65\x09\xb8\xab\x87\x2f\x22\x94\x12\xaa\x5b\x41\xd8\x51\x6b\x15\xa9\x0d\xf7\x7f\x10\xc1\xed\x87\x7b\xd5\x51\xc7\x65\xe5\xde\x19\x49\xb2\x51\x96\x99\x47\xd9\x60\x1b\xd2\x89\xa7\x86\xb0\xc6\x9a\xbc\x0c\x53\x1b\x4f\xc4\x1d\x7e\x07\x2a\xd5\x4d\xad\x78\x69\xd1\xa9\x17\x04\x21\x6d\xdc\xfb\xc1\xb4\xb1\x04\x8b\xaa\xf1\x4a\xd1\x89\xae\xbc\x6a\xef\x4e\x79\xd0\x2d\xdf\x81\xf8\xa4\xb4\x0f\xf9\x45\xa8\xe2\x8f\x32\xe8\xa0\x7c\x5e\xfb\x1f\x71\x36\x7b\xe5\x4d\x3e\x7b\x33\xd2\xfe\x47\x1c\x06\xca\xc0\x72\xd8\xab\x7b\x9f\xb2\xff\xca\x20\xfd\x04\x98\x49\x46\x0e\xcd\x85\xfc\xf5\x62\x11\x4f\x22\x42\x82\x54\x52\x19\x54\xbf\x6b\x4f\xe2\x58\x19\x58\xdd\x6a\x00\xf6\xcd\x3c\x7e\xee\xd3\x3d\xf6\x5a\xe8\xf8\x34\xcc\xbf\xed\x67\xdf\x26\x29\x65\xd0\xad\x78\x03\xdf\xec\x6e\x87\x7e\xfb\x33\x79\x8c\x4b\xe2\xc9\x08\xbb\x97\xbd\x55\x63\x6d\x8b\xfc\x76\x44\xe2\x70\xf1\x85\xe0\x10\x91\x36\xf9\xca\xb4\x23\xc6\x3e\x5c\xd2\x89\xad\x4e\x56\x4d\xb4\xa7\x1d\xc8\x53\xe0\x2d\xc9\x80\x9f\x53\x14\x57\xd8\x2a\x68\xe9\xf9\xc1\x40\xd9\x55\x16\x5a\x45\xfe\x17\x8f\x82\x09\xfd\x4c\x52\xac\xea\x04\x1d\x51\x6f\x75\x44\x0a\x4a\xc7\x4d\xf7\x06\x44\x22\x6e\xdc\x7b\xfe\x82\x4c\x07\x8d\xc3\x79\xb8\x24\x87\x8f\xeb\xa9\xe7\x1f\x7a\xd1\x64\xee\x7f\x21\x87\xab\x28\x9c\xae\x27\x34\x3e\xb4\x0c\xd3\x39\x9c\x85\x94\x3e\x1e\xc6\xd1\xe4\x70\xe6\xd3\xf9\xfa\xae\x3d\x09\x97\x02\x81\xbf\xfa\x47\x7c\x18\x84\x53\x72\xcb\x15\x39\x3e\x04\x66\x0f\x17\xfe\xdd\xa1\x37\x9d\x86\x41\x5c\xad\x23\x8d\x9f\x02\xf2\x75\x45\x26\x94\x4c\x1b\x34\xfc\x4c\x82\x86\x6a\x0e\x0c\xed\x26\xf8\x35\x5c\x37\x96\xde\x63\x23\x20\x64\xda\xf0\x82\x86\xb7\x5a\x45\xe1\x2a\xf2\x3d\x4a\x1a\x8b\xd0\x9b\x92\xa8\x41\xc3\x06\x8f\x05\x08\x13\xbb\xc6\xbd\xcf\x52\xac\xcb\xb9\x09\x36\x8d\xb6\x10\x58\xf2\xb5\xc6\x13\xcb\x66\xff\x64\xc8\x9d\x41\xe3\xde\xff\x4a\xa6\x43\x99\x4f\xc3\xd5\xa0\x61\x0c\x15\xed\xb9\x95\xb1\x6b\x09\xb2\x4e\x32\xea\xfd\x0d\xf5\xbb\x53\x62\x41\x31\xa3\xbb\xd5\x04\x6b\x83\x03\xa5\xef\x55\x3a\xd9\xed\x1e\x3e\xbc\x89\x4e\x6e\x82\xc3\x19\x52\x6e\x22\x45\x1b\x90\x4c\x37\x26\x2e\xcf\x01\x63\x2d\x89\x42\xad\x80\xbc\x14\x44\x33\x47\xbb\x14\xcb\x00\xcb\x31\x6b\xda\xe5\x72\xe1\xe8\x18\x69\x4f\x16\x3e\x09\xe8\xdf\x5a\xa6\x21\xcc\xcd\xf4\x71\x34\xf1\xf6\xd7\xc2\xdb\x7f\xf2\x85\x17\xc5\x34\x0c\x83\xe5\xde\x87\x93\x75\xac\x56\x4d\x71\x0a\x6c\x73\x07\x60\x86\xe7\x4c\x96\xe0\x38\x93\x07\xfc\x66\x72\x18\x8b\x99\x0c\xc1\x15\x77\x95\x74\xb4\x17\x47\x28\x02\x57\x31\x59\x79\x11\x5c\x88\xf6\x43\x18\x5d\xcb\xf9\xb0\x8f\x68\x7b\x12\xae\x1e\x8b\xf7\x3c\xcb\x8b\x17\xee\xd8\x80\x4f\x22\xd8\xf1\x7d\x7e\x76\x22\x36\xed\x4e\x16\xfe\xea\x2e\xf4\xa2\xe9\x3b\x8f\x7a\xed\x98\x50\xf6\x57\x55\xf8\xe1\x81\x28\xb7\xa9\x76\x40\xaa\xe0\x29\xf9\x4a\x0f\x57\x0b\xcf\x0f\x8a\x58\x65\x86\x03\x2b\x88\x17\x53\x52\xc6\x2e\xdc\x36\x45\xc3\x15\x93\x87\x37\xf3\x78\x15\x89\xf3\x05\x09\xdc\x2e\x44\x7f\x84\x7d\x35\x42\xd9\xf2\x89\x1d\xed\xda\xee\x66\x52\xb8\x78\x1b\xae\xca\xf3\xd8\x94\x02\x44\x0a\xb1\xe8\xc4\x0e\x5f\xe0\x86\xc7\x6f\x6c\x4f\xbc\x60\x42\x16\x2a\xd1\xb6\xc3\x67\x89\xad\xd9\x8c\xd4\x52\x71\xce\x32\xe2\xd4\x0a\xf2\x63\x88\x79\x91\xce\x4a\x44\xca\xd7\x2d\x97\xe1\x17\xa8\x76\x36\x5d\xf9\x29\x98\x92\x88\x6f\x84\x81\x10\x07\x38\x44\xb4\x1d\x31\x9d\x84\x8d\x31\x55\x5a\xc0\x5b\x29\xa2\xa2\xfc\xb9\x9a\x82\xbb\xae\xd8\x33\x58\x76\xff\x73\x78\xf2\xff\xd5\xc3\x93\x35\x87\x12\xe5\x5d\xa9\xd5\x07\x12\xfd\xd4\xfd\xf7\x14\xf9\xed\x5b\x1e\x6e\x47\x3a\xd0\x22\xe4\xe7\x8e\xff\x3d\xe3\xcc\x11\x74\x90\xf5\x6e\xfc\x5b\x80\xf9\x43\x4e\x38\xf1\xbe\x77\xcf\xe7\x38\xd0\xcb\x4e\xb1\x2c\x85\x7f\xb0\x6e\xfb\xae\x80\x11\xe2\x12\x5b\x1d\xa6\xa1\x98\x60\xab\xd2\x1b\x9b\x83\xdb\x73\x77\xad\x88\x86\x56\x86\x59\x18\x4f\x3d\x71\x8d\x8b\x52\x07\xce\x06\x1e\xc5\xa8\x05\x81\xd1\x4a\x69\xf5\xfb\xfd\x3e\x59\x56\x40\xa6\xaf\xd1\x55\x7e\xa9\x22\x47\x68\x72\x9f\x8a\xaa\x78\x91\xef\xc9\xe8\x22\x48\xa1\xd1\x9a\x24\x05\xcb\x28\x5a\xc9\x29\xfb\x2c\xdd\x3d\xde\x48\x92\x91\xfa\x16\x15\xb7\x66\x27\xaf\x2b\x16\x13\xf2\xe5\x98\x11\xfa\x36\x5c\x07\x70\x25\x0f\x18\x15\x97\xd0\x13\x0e\xf9\x6c\x1e\xd4\xb7\xd9\xe4\x0f\x73\xe1\x2e\x51\x53\xaa\x8d\x53\x50\x69\x15\xc4\x3b\x84\xe4\x18\x0d\x47\x10\xe0\x28\x03\x9d\xf5\x55\xf2\xb1\x09\x82\x7e\xfb\xff\x24\x93\xb9\x17\xcc\xc8\x54\x81\x08\x70\x74\xab\x46\xaa\xa9\x15\x96\x6e\x4f\x53\x8e\xee\xf0\x7f\x7a\xf1\xff\x0f\x7b\xf1\x24\x4a\x48\x65\x1f\x1e\xb5\x6f\x3d\x26\x5d\x38\xf9\x0d\x72\x86\xd8\x97\x10\xc4\x35\xa2\xdc\xc6\x34\xd8\xf3\x42\x2e\x5c\x44\x2f\xef\xd4\x97\xde\x57\xee\xb5\xdc\xd3\xd3\x02\x27\xc9\xf6\x8d\x38\x0d\x99\xb9\x83\x7a\xc7\x2b\xd1\x50\x84\x8d\x61\x74\x94\xec\x54\x11\xab\x39\x62\x8f\x9e\xbc\x94\x5a\xee\x16\x84\x2f\x88\x55\xdf\x19\xa1\xa7\x8f\x93\x85\x3f\xe1\x7b\x8f\x22\x4d\x46\xf0\xe2\x02\x49\x5d\xad\x93\x08\xe2\x0f\x19\x74\x16\xcf\x11\x45\x95\x10\xfc\x7b\x95\x1c\xa7\x41\xb4\x9d\x58\xd2\xd9\x43\x7a\x44\x86\x34\x89\x1d\x28\xca\x3d\xce\x06\x41\x13\x75\x4a\xfe\x90\x62\xdd\x87\xd1\x19\x38\x1a\xaa\xcf\x09\x17\x1b\x59\x7a\x07\x9b\x3c\xca\x08\xbb\xd8\xfc\xa3\x08\x76\xb0\x51\x15\x42\xf0\xaa\xbe\x86\x7c\x70\x12\xbe\x60\x10\x9e\x11\x5a\xb9\x0e\x5b\xa7\x09\x44\x1b\x17\xce\x8e\x97\x06\xf6\xac\xa7\x81\x73\x27\xc7\x56\xeb\xdc\x89\xc9\xbd\x44\x32\xf5\x3c\x4e\x62\xaf\x8a\x6a\x13\xae\xf7\xa4\x71\x9d\xa8\xba\x5e\x50\xd9\x3c\x50\x32\xd2\xa4\xd5\x5a\x4b\x0f\x11\xfc\x78\xbe\x29\xd7\x0d\xc4\xd7\xf2\xbb\xc7\x57\xd9\x00\xa1\xcf\x15\x6d\x9a\x64\xab\xd5\x32\x0b\x92\x5e\x2d\xfc\x09\xa9\xdc\xe4\x38\x1a\x23\x1f\x5b\x43\xbf\x78\xf9\x3c\xd3\x95\x68\xe4\xb7\xac\xf4\xe5\xf3\xfe\x58\x1c\x8b\x65\x14\x42\x4c\x86\xe1\x51\x86\x01\x0a\x47\xbc\xf7\x32\x1d\x6a\xcf\xe8\x3e\x42\x9d\x26\x1d\x88\x20\x8f\xe9\xd6\xbf\x57\xa3\x66\x73\xb7\x65\x98\x33\x92\x81\x32\x87\xe1\x31\x63\xad\xd5\x7a\x06\x27\xbb\xeb\xcd\x9f\xc3\x92\x36\x4e\x1d\x42\x36\x86\x61\xb2\x7f\xf0\x79\xe5\x26\x3a\x2b\x79\x34\x0a\xc7\xbb\x2d\xf1\x42\x1b\x92\xa0\xaf\x59\xed\xca\x9e\x59\xcf\xc1\xb6\xb2\xb0\xc3\xbc\x1e\xea\x38\xce\x2a\x78\x16\xbe\xa8\xa3\xb1\x96\x0e\xf5\x2e\xbe\x86\xe5\xe7\x72\x9b\x12\x19\x4a\x71\x39\x21\xdb\x97\xa6\xc2\xa8\xca\x4b\xe4\x8b\x4c\x66\x5b\x61\x4b\x3e\xa7\x19\x23\xf9\x23\xb9\x73\xff\x5e\x5a\xab\x71\x61\x26\xcd\xdd\xf4\x47\xd8\xd0\x78\xf7\x7e\x64\x6c\x36\x49\xb0\x53\xc1\x47\xc1\x97\x0a\x1c\x35\xa4\xaa\x37\xc2\x35\x6d\x84\xf7\x8d\x88\x59\x75\x0a\x0f\x12\xa6\x47\x47\x46\xa5\xe3\x1f\x38\x6a\x88\x20\x69\x31\x5c\x7f\xe1\xc7\xb4\x71\x47\x1e\xc3\x60\xda\x80\x4d\x85\x0d\x83\x13\x8a\x8e\x8d\x44\x6f\xb9\xb2\x1a\x3b\x65\x8d\x09\x65\x6a\xa2\x8b\xad\x11\x33\xfe\xa8\xc9\x2d\x19\x44\xa7\x7a\xd4\xca\x8c\x4b\xfe\xbd\xea\x1f\x1b\xda\xee\x96\x39\x59\x6f\x7e\xa6\xf1\xe4\x14\x4b\x06\x55\x93\x3d\x47\xb1\x5e\xf4\xb2\x3e\x8c\xeb\x47\xb6\x0d\xa4\x1a\x7d\x15\xf7\xf9\xfd\xac\xd9\x76\x51\x32\xa6\x14\xfa\x54\x9d\x68\xdf\x67\x4b\x50\x63\x66\xfb\xd1\x64\xbd\xf0\xa2\x0b\x3f\xa6\x7b\xed\xec\x3f\x65\x77\x24\x58\xa4\xc9\x29\xea\xf4\xc3\x2a\x0c\x17\xbb\xe8\xbe\x7e\xf0\x53\x4c\xf0\xd3\xb6\x6c\xa7\x86\x88\x29\x98\x9f\x21\xed\x8e\x27\xe3\xdd\x41\x38\x46\x35\x7b\x47\x02\xb7\x92\x3f\x90\x07\xb9\xd4\xcc\x61\x56\xe1\x2a\x39\x32\x0c\x1f\x1f\xc1\xe4\x6a\x37\x49\x24\xed\x8f\x6f\xff\xeb\xec\xf4\xfa\xf6\xfc\xdd\xed\x9b\xeb\xeb\xcb\xf3\xb7\x3f\x5d\x9f\xb1\xbe\x11\xd1\x7c\xa8\x3f\x88\xaa\x9a\x09\xc2\xc3\x1a\xde\xcb\x69\x97\xb4\xa9\x70\xbd\x98\x36\x58\xb3\x12\x5f\x69\x78\x81\x6c\x5b\x90\xfd\x48\x68\x43\xc8\x67\xaa\x68\x43\x7e\x0f\x6e\xe3\xe5\x9f\x4e\xce\x74\x91\x24\xaa\xa3\x9a\xc4\x75\xe6\x02\x83\xb8\x28\xf9\xa8\xde\x89\x74\x0b\xb5\x53\x15\xee\x6d\xa7\x0a\xcc\xc0\x26\xed\xdb\x10\xf4\x4e\x1c\x24\x4b\xea\x34\x3b\x63\x2f\xe5\x1a\x45\x6d\x2a\xcf\x03\x98\x86\xa6\xe5\x2b\x26\x53\x9a\x6c\xdf\xcc\xc3\x7d\x7e\xf0\x96\xe0\x5e\x25\xe9\x6b\x03\x14\xb1\x6c\xea\x97\x7d\x12\x2b\x53\x8f\x7a\xad\xf0\xee\x1f\x2d\x7f\xaa\x20\x3f\xc3\x3d\x36\x10\x2d\x0d\xf1\xfe\x87\x6f\x4b\x03\x37\x3a\x6c\x5c\xa9\xbc\x4b\x55\xee\xde\xa6\xb0\x7b\x7b\x3b\xd6\x86\xff\x27\x00\x00\xff\xff\x21\x53\x37\x14\x6e\x06\x05\x00") func staticJsGottyBundleJsBytes() ([]byte, error) { return bindataRead( @@ -209,7 +209,7 @@ func staticJsGottyBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 773299, mode: os.FileMode(436), modTime: time.Unix(1503386172, 0)} + info := bindataFileInfo{name: "static/js/gotty-bundle.js", size: 329326, mode: os.FileMode(436), modTime: time.Unix(1503388521, 0)} a := &asset{bytes: bytes, info: info} return a, nil }