From 7ab84640103a75b6ff3ab76cbc3bdce35ee9eb42 Mon Sep 17 00:00:00 2001 From: Adam Carr Date: Wed, 12 Aug 2020 20:58:19 +0100 Subject: [PATCH 1/4] Bounce momentjs from 2.8.4 to 2.27.0 --- assets/js/moment-2.27.0.js | 5668 ++++++++++++++++++++++++++++++++++++ assets/js/moment-2.8.4.js | 2936 ------------------- 2 files changed, 5668 insertions(+), 2936 deletions(-) create mode 100644 assets/js/moment-2.27.0.js delete mode 100644 assets/js/moment-2.8.4.js diff --git a/assets/js/moment-2.27.0.js b/assets/js/moment-2.27.0.js new file mode 100644 index 0000000..c4cb7d3 --- /dev/null +++ b/assets/js/moment-2.27.0.js @@ -0,0 +1,5668 @@ +//! moment.js +//! version : 2.27.0 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com + +;(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.amd ? define(factory) : + global.moment = factory() +}(this, (function () { 'use strict'; + + var hookCallback; + + function hooks() { + return hookCallback.apply(null, arguments); + } + + // This is done to register the method called with moment() + // without creating circular dependencies. + function setHookCallback(callback) { + hookCallback = callback; + } + + function isArray(input) { + return ( + input instanceof Array || + Object.prototype.toString.call(input) === '[object Array]' + ); + } + + function isObject(input) { + // IE8 will treat undefined and null as object if it wasn't for + // input != null + return ( + input != null && + Object.prototype.toString.call(input) === '[object Object]' + ); + } + + function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); + } + + function isObjectEmpty(obj) { + if (Object.getOwnPropertyNames) { + return Object.getOwnPropertyNames(obj).length === 0; + } else { + var k; + for (k in obj) { + if (hasOwnProp(obj, k)) { + return false; + } + } + return true; + } + } + + function isUndefined(input) { + return input === void 0; + } + + function isNumber(input) { + return ( + typeof input === 'number' || + Object.prototype.toString.call(input) === '[object Number]' + ); + } + + function isDate(input) { + return ( + input instanceof Date || + Object.prototype.toString.call(input) === '[object Date]' + ); + } + + function map(arr, fn) { + var res = [], + i; + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + return res; + } + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function createUTC(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); + } + + function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty: false, + unusedTokens: [], + unusedInput: [], + overflow: -2, + charsLeftOver: 0, + nullInput: false, + invalidEra: null, + invalidMonth: null, + invalidFormat: false, + userInvalidated: false, + iso: false, + parsedDateParts: [], + era: null, + meridiem: null, + rfc2822: false, + weekdayMismatch: false, + }; + } + + function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + return m._pf; + } + + var some; + if (Array.prototype.some) { + some = Array.prototype.some; + } else { + some = function (fun) { + var t = Object(this), + len = t.length >>> 0, + i; + + for (i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; + } + + function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m), + parsedParts = some.call(flags.parsedDateParts, function (i) { + return i != null; + }), + isNowValid = + !isNaN(m._d.getTime()) && + flags.overflow < 0 && + !flags.empty && + !flags.invalidEra && + !flags.invalidMonth && + !flags.invalidWeekday && + !flags.weekdayMismatch && + !flags.nullInput && + !flags.invalidFormat && + !flags.userInvalidated && + (!flags.meridiem || (flags.meridiem && parsedParts)); + + if (m._strict) { + isNowValid = + isNowValid && + flags.charsLeftOver === 0 && + flags.unusedTokens.length === 0 && + flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } else { + return isNowValid; + } + } + return m._isValid; + } + + function createInvalid(flags) { + var m = createUTC(NaN); + if (flags != null) { + extend(getParsingFlags(m), flags); + } else { + getParsingFlags(m).userInvalidated = true; + } + + return m; + } + + // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + var momentProperties = (hooks.momentProperties = []), + updateInProgress = false; + + function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + if (!isUndefined(from._i)) { + to._i = from._i; + } + if (!isUndefined(from._f)) { + to._f = from._f; + } + if (!isUndefined(from._l)) { + to._l = from._l; + } + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; + } + + // Moment prototype object + function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + if (!this.isValid()) { + this._d = new Date(NaN); + } + // Prevent infinite loop in case updateOffset creates new moment + // objects. + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } + } + + function isMoment(obj) { + return ( + obj instanceof Moment || (obj != null && obj._isAMomentObject != null) + ); + } + + function warn(msg) { + if ( + hooks.suppressDeprecationWarnings === false && + typeof console !== 'undefined' && + console.warn + ) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + if (firstTime) { + var args = [], + arg, + i, + key; + for (i = 0; i < arguments.length; i++) { + arg = ''; + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + for (key in arguments[0]) { + if (hasOwnProp(arguments[0], key)) { + arg += key + ': ' + arguments[0][key] + ', '; + } + } + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + args.push(arg); + } + warn( + msg + + '\nArguments: ' + + Array.prototype.slice.call(args).join('') + + '\n' + + new Error().stack + ); + firstTime = false; + } + return fn.apply(this, arguments); + }, fn); + } + + var deprecations = {}; + + function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } + } + + hooks.suppressDeprecationWarnings = false; + hooks.deprecationHandler = null; + + function isFunction(input) { + return ( + (typeof Function !== 'undefined' && input instanceof Function) || + Object.prototype.toString.call(input) === '[object Function]' + ); + } + + function set(config) { + var prop, i; + for (i in config) { + if (hasOwnProp(config, i)) { + prop = config[i]; + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + } + this._config = config; + // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + this._dayOfMonthOrdinalParseLenient = new RegExp( + (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + + '|' + + /\d{1,2}/.source + ); + } + + function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), + prop; + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + for (prop in parentConfig) { + if ( + hasOwnProp(parentConfig, prop) && + !hasOwnProp(childConfig, prop) && + isObject(parentConfig[prop]) + ) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + return res; + } + + function Locale(config) { + if (config != null) { + this.set(config); + } + } + + var keys; + + if (Object.keys) { + keys = Object.keys; + } else { + keys = function (obj) { + var i, + res = []; + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + return res; + }; + } + + var defaultCalendar = { + sameDay: '[Today at] LT', + nextDay: '[Tomorrow at] LT', + nextWeek: 'dddd [at] LT', + lastDay: '[Yesterday at] LT', + lastWeek: '[Last] dddd [at] LT', + sameElse: 'L', + }; + + function calendar(key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; + } + + function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return ( + (sign ? (forceSign ? '+' : '') : '-') + + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + + absNumber + ); + } + + var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g, + localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g, + formatFunctions = {}, + formatTokenFunctions = {}; + + // token: 'M' + // padded: ['MM', 2] + // ordinal: 'Mo' + // callback: function () { this.month() + 1 } + function addFormatToken(token, padded, ordinal, callback) { + var func = callback; + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + if (token) { + formatTokenFunctions[token] = func; + } + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal( + func.apply(this, arguments), + token + ); + }; + } + } + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), + i, + length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', + i; + for (i = 0; i < length; i++) { + output += isFunction(array[i]) + ? array[i].call(mom, format) + : array[i]; + } + return output; + }; + } + + // format date using native date object + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = + formatFunctions[format] || makeFormatFunction(format); + + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace( + localFormattingTokens, + replaceLongDateFormatTokens + ); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + var defaultLongDateFormat = { + LTS: 'h:mm:ss A', + LT: 'h:mm A', + L: 'MM/DD/YYYY', + LL: 'MMMM D, YYYY', + LLL: 'MMMM D, YYYY h:mm A', + LLLL: 'dddd, MMMM D, YYYY h:mm A', + }; + + function longDateFormat(key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper + .match(formattingTokens) + .map(function (tok) { + if ( + tok === 'MMMM' || + tok === 'MM' || + tok === 'DD' || + tok === 'dddd' + ) { + return tok.slice(1); + } + return tok; + }) + .join(''); + + return this._longDateFormat[key]; + } + + var defaultInvalidDate = 'Invalid date'; + + function invalidDate() { + return this._invalidDate; + } + + var defaultOrdinal = '%d', + defaultDayOfMonthOrdinalParse = /\d{1,2}/; + + function ordinal(number) { + return this._ordinal.replace('%d', number); + } + + var defaultRelativeTime = { + future: 'in %s', + past: '%s ago', + s: 'a few seconds', + ss: '%d seconds', + m: 'a minute', + mm: '%d minutes', + h: 'an hour', + hh: '%d hours', + d: 'a day', + dd: '%d days', + w: 'a week', + ww: '%d weeks', + M: 'a month', + MM: '%d months', + y: 'a year', + yy: '%d years', + }; + + function relativeTime(number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return isFunction(output) + ? output(number, withoutSuffix, string, isFuture) + : output.replace(/%d/i, number); + } + + function pastFuture(diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); + } + + var aliases = {}; + + function addUnitAlias(unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; + } + + function normalizeUnits(units) { + return typeof units === 'string' + ? aliases[units] || aliases[units.toLowerCase()] + : undefined; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + var priorities = {}; + + function addUnitPriority(unit, priority) { + priorities[unit] = priority; + } + + function getPrioritizedUnits(unitsObj) { + var units = [], + u; + for (u in unitsObj) { + if (hasOwnProp(unitsObj, u)) { + units.push({ unit: u, priority: priorities[u] }); + } + } + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; + } + + function isLeapYear(year) { + return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; + } + + function absFloor(number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; + } + + function makeGetSet(unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; + } + + function get(mom, unit) { + return mom.isValid() + ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() + : NaN; + } + + function set$1(mom, unit, value) { + if (mom.isValid() && !isNaN(value)) { + if ( + unit === 'FullYear' && + isLeapYear(mom.year()) && + mom.month() === 1 && + mom.date() === 29 + ) { + value = toInt(value); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit]( + value, + mom.month(), + daysInMonth(value, mom.month()) + ); + } else { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + } + + // MOMENTS + + function stringGet(units) { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](); + } + return this; + } + + function stringSet(units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units), + i; + for (i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + if (isFunction(this[units])) { + return this[units](value); + } + } + return this; + } + + var match1 = /\d/, // 0 - 9 + match2 = /\d\d/, // 00 - 99 + match3 = /\d{3}/, // 000 - 999 + match4 = /\d{4}/, // 0000 - 9999 + match6 = /[+-]?\d{6}/, // -999999 - 999999 + match1to2 = /\d\d?/, // 0 - 99 + match3to4 = /\d\d\d\d?/, // 999 - 9999 + match5to6 = /\d\d\d\d\d\d?/, // 99999 - 999999 + match1to3 = /\d{1,3}/, // 0 - 999 + match1to4 = /\d{1,4}/, // 0 - 9999 + match1to6 = /[+-]?\d{1,6}/, // -999999 - 999999 + matchUnsigned = /\d+/, // 0 - inf + matchSigned = /[+-]?\d+/, // -inf - inf + matchOffset = /Z|[+-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z + matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi, // +00 -00 +00:00 -00:00 +0000 -0000 or Z + matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 + // any word (or two) characters or numbers including two/three word month in arabic. + // includes scottish gaelic two word and hyphenated months + matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i, + regexes; + + regexes = {}; + + function addRegexToken(token, regex, strictRegex) { + regexes[token] = isFunction(regex) + ? regex + : function (isStrict, localeData) { + return isStrict && strictRegex ? strictRegex : regex; + }; + } + + function getParseRegexForToken(token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); + } + + // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + function unescapeFormat(s) { + return regexEscape( + s + .replace('\\', '') + .replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function ( + matched, + p1, + p2, + p3, + p4 + ) { + return p1 || p2 || p3 || p4; + }) + ); + } + + function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + var tokens = {}; + + function addParseToken(token, callback) { + var i, + func = callback; + if (typeof token === 'string') { + token = [token]; + } + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } + } + + function addWeekParseToken(token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); + } + + function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } + } + + var YEAR = 0, + MONTH = 1, + DATE = 2, + HOUR = 3, + MINUTE = 4, + SECOND = 5, + MILLISECOND = 6, + WEEK = 7, + WEEKDAY = 8; + + function mod(n, x) { + return ((n % x) + x) % x; + } + + var indexOf; + + if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; + } else { + indexOf = function (o) { + // I know + var i; + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + return -1; + }; + } + + function daysInMonth(year, month) { + if (isNaN(year) || isNaN(month)) { + return NaN; + } + var modMonth = mod(month, 12); + year += (month - modMonth) / 12; + return modMonth === 1 + ? isLeapYear(year) + ? 29 + : 28 + : 31 - ((modMonth % 7) % 2); + } + + // FORMATTING + + addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; + }); + + addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); + }); + + addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); + }); + + // ALIASES + + addUnitAlias('month', 'M'); + + // PRIORITY + + addUnitPriority('month', 8); + + // PARSING + + addRegexToken('M', match1to2); + addRegexToken('MM', match1to2, match2); + addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); + }); + addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); + }); + + addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; + }); + + addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); + // if we didn't find a month name, mark the date as invalid. + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } + }); + + // LOCALES + + var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split( + '_' + ), + defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split( + '_' + ), + MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/, + defaultMonthsShortRegex = matchWord, + defaultMonthsRegex = matchWord; + + function localeMonths(m, format) { + if (!m) { + return isArray(this._months) + ? this._months + : this._months['standalone']; + } + return isArray(this._months) + ? this._months[m.month()] + : this._months[ + (this._months.isFormat || MONTHS_IN_FORMAT).test(format) + ? 'format' + : 'standalone' + ][m.month()]; + } + + function localeMonthsShort(m, format) { + if (!m) { + return isArray(this._monthsShort) + ? this._monthsShort + : this._monthsShort['standalone']; + } + return isArray(this._monthsShort) + ? this._monthsShort[m.month()] + : this._monthsShort[ + MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone' + ][m.month()]; + } + + function handleStrictParse(monthName, format, strict) { + var i, + ii, + mom, + llc = monthName.toLocaleLowerCase(); + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort( + mom, + '' + ).toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeMonthsParse(monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } + + // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp( + '^' + this.months(mom, '').replace('.', '') + '$', + 'i' + ); + this._shortMonthsParse[i] = new RegExp( + '^' + this.monthsShort(mom, '').replace('.', '') + '$', + 'i' + ); + } + if (!strict && !this._monthsParse[i]) { + regex = + '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if ( + strict && + format === 'MMMM' && + this._longMonthsParse[i].test(monthName) + ) { + return i; + } else if ( + strict && + format === 'MMM' && + this._shortMonthsParse[i].test(monthName) + ) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + } + + // MOMENTS + + function setMonth(mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); + // TODO: Another silent failure? + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + return mom; + } + + function getSetMonth(value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } + } + + function getDaysInMonth() { + return daysInMonth(this.year(), this.month()); + } + + function monthsShortRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + return this._monthsShortStrictRegex && isStrict + ? this._monthsShortStrictRegex + : this._monthsShortRegex; + } + } + + function monthsRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + return this._monthsStrictRegex && isStrict + ? this._monthsStrictRegex + : this._monthsRegex; + } + } + + function computeMonthsParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom; + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } + // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp( + '^(' + longPieces.join('|') + ')', + 'i' + ); + this._monthsShortStrictRegex = new RegExp( + '^(' + shortPieces.join('|') + ')', + 'i' + ); + } + + // FORMATTING + + addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? zeroFill(y, 4) : '+' + y; + }); + + addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; + }); + + addFormatToken(0, ['YYYY', 4], 0, 'year'); + addFormatToken(0, ['YYYYY', 5], 0, 'year'); + addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); + + // ALIASES + + addUnitAlias('year', 'y'); + + // PRIORITIES + + addUnitPriority('year', 1); + + // PARSING + + addRegexToken('Y', matchSigned); + addRegexToken('YY', match1to2, match2); + addRegexToken('YYYY', match1to4, match4); + addRegexToken('YYYYY', match1to6, match6); + addRegexToken('YYYYYY', match1to6, match6); + + addParseToken(['YYYYY', 'YYYYYY'], YEAR); + addParseToken('YYYY', function (input, array) { + array[YEAR] = + input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); + }); + addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); + }); + addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); + }); + + // HELPERS + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + // HOOKS + + hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; + + // MOMENTS + + var getSetYear = makeGetSet('FullYear', true); + + function getIsLeapYear() { + return isLeapYear(this.year()); + } + + function createDate(y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date; + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + date = new Date(y + 400, m, d, h, M, s, ms); + if (isFinite(date.getFullYear())) { + date.setFullYear(y); + } + } else { + date = new Date(y, m, d, h, M, s, ms); + } + + return date; + } + + function createUTCDate(y) { + var date, args; + // the Date.UTC function remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + args = Array.prototype.slice.call(arguments); + // preserve leap years using a full 400 year cycle, then reset + args[0] = y + 400; + date = new Date(Date.UTC.apply(null, args)); + if (isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + } else { + date = new Date(Date.UTC.apply(null, arguments)); + } + + return date; + } + + // start-of-first-week - start-of-year + function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + + return -fwdlw + fwd - 1; + } + + // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, + resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear, + }; + } + + function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, + resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear, + }; + } + + function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; + } + + // FORMATTING + + addFormatToken('w', ['ww', 2], 'wo', 'week'); + addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); + + // ALIASES + + addUnitAlias('week', 'w'); + addUnitAlias('isoWeek', 'W'); + + // PRIORITIES + + addUnitPriority('week', 5); + addUnitPriority('isoWeek', 5); + + // PARSING + + addRegexToken('w', match1to2); + addRegexToken('ww', match1to2, match2); + addRegexToken('W', match1to2); + addRegexToken('WW', match1to2, match2); + + addWeekParseToken(['w', 'ww', 'W', 'WW'], function ( + input, + week, + config, + token + ) { + week[token.substr(0, 1)] = toInt(input); + }); + + // HELPERS + + // LOCALES + + function localeWeek(mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + } + + var defaultLocaleWeek = { + dow: 0, // Sunday is the first day of the week. + doy: 6, // The week that contains Jan 6th is the first week of the year. + }; + + function localeFirstDayOfWeek() { + return this._week.dow; + } + + function localeFirstDayOfYear() { + return this._week.doy; + } + + // MOMENTS + + function getSetWeek(input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + function getSetISOWeek(input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + // FORMATTING + + addFormatToken('d', 0, 'do', 'day'); + + addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); + }); + + addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); + }); + + addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); + }); + + addFormatToken('e', 0, 0, 'weekday'); + addFormatToken('E', 0, 0, 'isoWeekday'); + + // ALIASES + + addUnitAlias('day', 'd'); + addUnitAlias('weekday', 'e'); + addUnitAlias('isoWeekday', 'E'); + + // PRIORITY + addUnitPriority('day', 11); + addUnitPriority('weekday', 11); + addUnitPriority('isoWeekday', 11); + + // PARSING + + addRegexToken('d', match1to2); + addRegexToken('e', match1to2); + addRegexToken('E', match1to2); + addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); + }); + addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); + }); + addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); + }); + + addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); + // if we didn't get a weekday name, mark the date as invalid + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } + }); + + addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); + }); + + // HELPERS + + function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + if (typeof input === 'number') { + return input; + } + + return null; + } + + function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + return isNaN(input) ? null : input; + } + + // LOCALES + function shiftWeekdays(ws, n) { + return ws.slice(n, 7).concat(ws.slice(0, n)); + } + + var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( + '_' + ), + defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), + defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), + defaultWeekdaysRegex = matchWord, + defaultWeekdaysShortRegex = matchWord, + defaultWeekdaysMinRegex = matchWord; + + function localeWeekdays(m, format) { + var weekdays = isArray(this._weekdays) + ? this._weekdays + : this._weekdays[ + m && m !== true && this._weekdays.isFormat.test(format) + ? 'format' + : 'standalone' + ]; + return m === true + ? shiftWeekdays(weekdays, this._week.dow) + : m + ? weekdays[m.day()] + : weekdays; + } + + function localeWeekdaysShort(m) { + return m === true + ? shiftWeekdays(this._weekdaysShort, this._week.dow) + : m + ? this._weekdaysShort[m.day()] + : this._weekdaysShort; + } + + function localeWeekdaysMin(m) { + return m === true + ? shiftWeekdays(this._weekdaysMin, this._week.dow) + : m + ? this._weekdaysMin[m.day()] + : this._weekdaysMin; + } + + function handleStrictParse$1(weekdayName, format, strict) { + var i, + ii, + mom, + llc = weekdayName.toLocaleLowerCase(); + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin( + mom, + '' + ).toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort( + mom, + '' + ).toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._weekdaysParse, llc); + if (ii !== -1) { + return ii; + } + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeWeekdaysParse(weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + + mom = createUTC([2000, 1]).day(i); + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp( + '^' + this.weekdays(mom, '').replace('.', '\\.?') + '$', + 'i' + ); + this._shortWeekdaysParse[i] = new RegExp( + '^' + this.weekdaysShort(mom, '').replace('.', '\\.?') + '$', + 'i' + ); + this._minWeekdaysParse[i] = new RegExp( + '^' + this.weekdaysMin(mom, '').replace('.', '\\.?') + '$', + 'i' + ); + } + if (!this._weekdaysParse[i]) { + regex = + '^' + + this.weekdays(mom, '') + + '|^' + + this.weekdaysShort(mom, '') + + '|^' + + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } + // test the regex + if ( + strict && + format === 'dddd' && + this._fullWeekdaysParse[i].test(weekdayName) + ) { + return i; + } else if ( + strict && + format === 'ddd' && + this._shortWeekdaysParse[i].test(weekdayName) + ) { + return i; + } else if ( + strict && + format === 'dd' && + this._minWeekdaysParse[i].test(weekdayName) + ) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + } + + // MOMENTS + + function getSetDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + } + + function getSetLocaleDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + } + + function getSetISODayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } + } + + function weekdaysRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + return this._weekdaysStrictRegex && isStrict + ? this._weekdaysStrictRegex + : this._weekdaysRegex; + } + } + + function weekdaysShortRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + return this._weekdaysShortStrictRegex && isStrict + ? this._weekdaysShortStrictRegex + : this._weekdaysShortRegex; + } + } + + function weekdaysMinRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + return this._weekdaysMinStrictRegex && isStrict + ? this._weekdaysMinStrictRegex + : this._weekdaysMinRegex; + } + } + + function computeWeekdaysParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], + shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom, + minp, + shortp, + longp; + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = regexEscape(this.weekdaysMin(mom, '')); + shortp = regexEscape(this.weekdaysShort(mom, '')); + longp = regexEscape(this.weekdays(mom, '')); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } + // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + + this._weekdaysStrictRegex = new RegExp( + '^(' + longPieces.join('|') + ')', + 'i' + ); + this._weekdaysShortStrictRegex = new RegExp( + '^(' + shortPieces.join('|') + ')', + 'i' + ); + this._weekdaysMinStrictRegex = new RegExp( + '^(' + minPieces.join('|') + ')', + 'i' + ); + } + + // FORMATTING + + function hFormat() { + return this.hours() % 12 || 12; + } + + function kFormat() { + return this.hours() || 24; + } + + addFormatToken('H', ['HH', 2], 0, 'hour'); + addFormatToken('h', ['hh', 2], 0, hFormat); + addFormatToken('k', ['kk', 2], 0, kFormat); + + addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); + }); + + addFormatToken('hmmss', 0, 0, function () { + return ( + '' + + hFormat.apply(this) + + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2) + ); + }); + + addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); + }); + + addFormatToken('Hmmss', 0, 0, function () { + return ( + '' + + this.hours() + + zeroFill(this.minutes(), 2) + + zeroFill(this.seconds(), 2) + ); + }); + + function meridiem(token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem( + this.hours(), + this.minutes(), + lowercase + ); + }); + } + + meridiem('a', true); + meridiem('A', false); + + // ALIASES + + addUnitAlias('hour', 'h'); + + // PRIORITY + addUnitPriority('hour', 13); + + // PARSING + + function matchMeridiem(isStrict, locale) { + return locale._meridiemParse; + } + + addRegexToken('a', matchMeridiem); + addRegexToken('A', matchMeridiem); + addRegexToken('H', match1to2); + addRegexToken('h', match1to2); + addRegexToken('k', match1to2); + addRegexToken('HH', match1to2, match2); + addRegexToken('hh', match1to2, match2); + addRegexToken('kk', match1to2, match2); + + addRegexToken('hmm', match3to4); + addRegexToken('hmmss', match5to6); + addRegexToken('Hmm', match3to4); + addRegexToken('Hmmss', match5to6); + + addParseToken(['H', 'HH'], HOUR); + addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; + }); + addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; + }); + addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4, + pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + }); + addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4, + pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + }); + + // LOCALES + + function localeIsPM(input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return (input + '').toLowerCase().charAt(0) === 'p'; + } + + var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i, + // Setting the hour should keep the time, because the user explicitly + // specified which hour they want. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + getSetHour = makeGetSet('Hours', true); + + function localeMeridiem(hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + } + + var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + + week: defaultLocaleWeek, + + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + + meridiemParse: defaultLocaleMeridiemParse, + }; + + // internal storage for locale config files + var locales = {}, + localeFamilies = {}, + globalLocale; + + function commonPrefix(arr1, arr2) { + var i, + minl = Math.min(arr1.length, arr2.length); + for (i = 0; i < minl; i += 1) { + if (arr1[i] !== arr2[i]) { + return i; + } + } + return minl; + } + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } + + // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + function chooseLocale(names) { + var i = 0, + j, + next, + locale, + split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + if (locale) { + return locale; + } + if ( + next && + next.length >= j && + commonPrefix(split, next) >= j - 1 + ) { + //the next array item is better than a shallower substring of this one + break; + } + j--; + } + i++; + } + return globalLocale; + } + + function loadLocale(name) { + var oldLocale = null, + aliasedRequire; + // TODO: Find a better way to register and load all the locales in Node + if ( + locales[name] === undefined && + typeof module !== 'undefined' && + module && + module.exports + ) { + try { + oldLocale = globalLocale._abbr; + aliasedRequire = require; + aliasedRequire('./locale/' + name); + getSetGlobalLocale(oldLocale); + } catch (e) { + // mark as not found to avoid repeating expensive file require call causing high CPU + // when trying to find en-US, en_US, en-us for every format call + locales[name] = null; // null means not found + } + } + return locales[name]; + } + + // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + function getSetGlobalLocale(key, values) { + var data; + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } else { + if (typeof console !== 'undefined' && console.warn) { + //warn user if arguments are passed but the locale could not be set + console.warn( + 'Locale ' + key + ' not found. Did you forget to load it?' + ); + } + } + } + + return globalLocale._abbr; + } + + function defineLocale(name, config) { + if (config !== null) { + var locale, + parentConfig = baseConfig; + config.abbr = name; + if (locales[name] != null) { + deprecateSimple( + 'defineLocaleOverride', + 'use moment.updateLocale(localeName, config) to change ' + + 'an existing locale. moment.defineLocale(localeName, ' + + 'config) should only be used for creating a new locale ' + + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.' + ); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + locale = loadLocale(config.parentLocale); + if (locale != null) { + parentConfig = locale._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + localeFamilies[config.parentLocale].push({ + name: name, + config: config, + }); + return null; + } + } + } + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } + + // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + getSetGlobalLocale(name); + + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + } + + function updateLocale(name, config) { + if (config != null) { + var locale, + tmpLocale, + parentConfig = baseConfig; + + if (locales[name] != null && locales[name].parentLocale != null) { + // Update existing child locale in-place to avoid memory-leaks + locales[name].set(mergeConfigs(locales[name]._config, config)); + } else { + // MERGE + tmpLocale = loadLocale(name); + if (tmpLocale != null) { + parentConfig = tmpLocale._config; + } + config = mergeConfigs(parentConfig, config); + if (tmpLocale == null) { + // updateLocale is called for creating a new locale + // Set abbr so it will have a name (getters return + // undefined otherwise). + config.abbr = name; + } + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; + } + + // backwards compat for now: also set the locale + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + if (name === getSetGlobalLocale()) { + getSetGlobalLocale(name); + } + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + return locales[name]; + } + + // returns locale data + function getLocale(key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + if (locale) { + return locale; + } + key = [key]; + } + + return chooseLocale(key); + } + + function listLocales() { + return keys(locales); + } + + function checkOverflow(m) { + var overflow, + a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = + a[MONTH] < 0 || a[MONTH] > 11 + ? MONTH + : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) + ? DATE + : a[HOUR] < 0 || + a[HOUR] > 24 || + (a[HOUR] === 24 && + (a[MINUTE] !== 0 || + a[SECOND] !== 0 || + a[MILLISECOND] !== 0)) + ? HOUR + : a[MINUTE] < 0 || a[MINUTE] > 59 + ? MINUTE + : a[SECOND] < 0 || a[SECOND] > 59 + ? SECOND + : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 + ? MILLISECOND + : -1; + + if ( + getParsingFlags(m)._overflowDayOfYear && + (overflow < YEAR || overflow > DATE) + ) { + overflow = DATE; + } + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; + } + + // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/, + basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/, + tzRegex = /Z|[+-]\d\d(?::?\d\d)?/, + isoDates = [ + ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], + ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], + ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], + ['GGGG-[W]WW', /\d{4}-W\d\d/, false], + ['YYYY-DDD', /\d{4}-\d{3}/], + ['YYYY-MM', /\d{4}-\d\d/, false], + ['YYYYYYMMDD', /[+-]\d{10}/], + ['YYYYMMDD', /\d{8}/], + ['GGGG[W]WWE', /\d{4}W\d{3}/], + ['GGGG[W]WW', /\d{4}W\d{2}/, false], + ['YYYYDDD', /\d{7}/], + ['YYYYMM', /\d{6}/, false], + ['YYYY', /\d{4}/, false], + ], + // iso time formats and regexes + isoTimes = [ + ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], + ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], + ['HH:mm:ss', /\d\d:\d\d:\d\d/], + ['HH:mm', /\d\d:\d\d/], + ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], + ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], + ['HHmmss', /\d\d\d\d\d\d/], + ['HHmm', /\d\d\d\d/], + ['HH', /\d\d/], + ], + aspNetJsonRegex = /^\/?Date\((-?\d+)/i, + // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 + rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/, + obsOffsets = { + UT: 0, + GMT: 0, + EDT: -4 * 60, + EST: -5 * 60, + CDT: -5 * 60, + CST: -6 * 60, + MDT: -6 * 60, + MST: -7 * 60, + PDT: -7 * 60, + PST: -8 * 60, + }; + + // date from iso format + function configFromISO(config) { + var i, + l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, + dateFormat, + timeFormat, + tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + if (dateFormat == null) { + config._isValid = false; + return; + } + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + if (timeFormat == null) { + config._isValid = false; + return; + } + } + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } + } + + function extractFromRFC2822Strings( + yearStr, + monthStr, + dayStr, + hourStr, + minuteStr, + secondStr + ) { + var result = [ + untruncateYear(yearStr), + defaultLocaleMonthsShort.indexOf(monthStr), + parseInt(dayStr, 10), + parseInt(hourStr, 10), + parseInt(minuteStr, 10), + ]; + + if (secondStr) { + result.push(parseInt(secondStr, 10)); + } + + return result; + } + + function untruncateYear(yearStr) { + var year = parseInt(yearStr, 10); + if (year <= 49) { + return 2000 + year; + } else if (year <= 999) { + return 1900 + year; + } + return year; + } + + function preprocessRFC2822(s) { + // Remove comments and folding whitespace and replace multiple-spaces with a single space + return s + .replace(/\([^)]*\)|[\n\t]/g, ' ') + .replace(/(\s\s+)/g, ' ') + .replace(/^\s\s*/, '') + .replace(/\s\s*$/, ''); + } + + function checkWeekday(weekdayStr, parsedInput, config) { + if (weekdayStr) { + // TODO: Replace the vanilla JS Date object with an independent day-of-week check. + var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr), + weekdayActual = new Date( + parsedInput[0], + parsedInput[1], + parsedInput[2] + ).getDay(); + if (weekdayProvided !== weekdayActual) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return false; + } + } + return true; + } + + function calculateOffset(obsOffset, militaryOffset, numOffset) { + if (obsOffset) { + return obsOffsets[obsOffset]; + } else if (militaryOffset) { + // the only allowed military tz is Z + return 0; + } else { + var hm = parseInt(numOffset, 10), + m = hm % 100, + h = (hm - m) / 100; + return h * 60 + m; + } + } + + // date and time from ref 2822 format + function configFromRFC2822(config) { + var match = rfc2822.exec(preprocessRFC2822(config._i)), + parsedArray; + if (match) { + parsedArray = extractFromRFC2822Strings( + match[4], + match[3], + match[2], + match[5], + match[6], + match[7] + ); + if (!checkWeekday(match[1], parsedArray, config)) { + return; + } + + config._a = parsedArray; + config._tzm = calculateOffset(match[8], match[9], match[10]); + + config._d = createUTCDate.apply(null, config._a); + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } + } + + // date from 1) ASP.NET, 2) ISO, 3) RFC 2822 formats, or 4) optional fallback if parsing isn't strict + function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + if (config._strict) { + config._isValid = false; + } else { + // Final attempt, use Input Fallback + hooks.createFromInputFallback(config); + } + } + + hooks.createFromInputFallback = deprecate( + 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + + 'discouraged and will be removed in an upcoming major release. Please refer to ' + + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', + function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + } + ); + + // Pick the first defined of two or three arguments. + function defaults(a, b, c) { + if (a != null) { + return a; + } + if (b != null) { + return b; + } + return c; + } + + function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + if (config._useUTC) { + return [ + nowValue.getUTCFullYear(), + nowValue.getUTCMonth(), + nowValue.getUTCDate(), + ]; + } + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; + } + + // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + function configFromArray(config) { + var i, + date, + input = [], + currentDate, + expectedWeekday, + yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); + + //compute day of the year from weeks and weekdays + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } + + //if the day of the year is set, figure out what it is + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if ( + config._dayOfYear > daysInYear(yearToUse) || + config._dayOfYear === 0 + ) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } + + // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } + + // Zero out whatever was not defaulted, including time + for (; i < 7; i++) { + config._a[i] = input[i] = + config._a[i] == null ? (i === 2 ? 1 : 0) : config._a[i]; + } + + // Check for 24:00:00.000 + if ( + config._a[HOUR] === 24 && + config._a[MINUTE] === 0 && + config._a[SECOND] === 0 && + config._a[MILLISECOND] === 0 + ) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply( + null, + input + ); + expectedWeekday = config._useUTC + ? config._d.getUTCDay() + : config._d.getDay(); + + // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } + + // check for mismatching day of week + if ( + config._w && + typeof config._w.d !== 'undefined' && + config._w.d !== expectedWeekday + ) { + getParsingFlags(config).weekdayMismatch = true; + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow, curWeek; + + w = config._w; + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; + + // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + weekYear = defaults( + w.GG, + config._a[YEAR], + weekOfYear(createLocal(), 1, 4).year + ); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + + curWeek = weekOfYear(createLocal(), dow, doy); + + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); + + // Default to current week. + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from beginning of week + weekday = w.e + dow; + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to beginning of week + weekday = dow; + } + } + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + } + + // constant that refers to the ISO standard + hooks.ISO_8601 = function () {}; + + // constant that refers to the RFC 2822 form + hooks.RFC_2822 = function () {}; + + // date from string and format string + function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + config._a = []; + getParsingFlags(config).empty = true; + + // This array is used to make a Date, either with `new Date` or `Date.UTC` + var string = '' + config._i, + i, + parsedInput, + tokens, + token, + skipped, + stringLength = string.length, + totalParsedInputLength = 0, + era; + + tokens = + expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || + [])[0]; + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + string = string.slice( + string.indexOf(parsedInput) + parsedInput.length + ); + totalParsedInputLength += parsedInput.length; + } + // don't parse if it's not a known token + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } else { + getParsingFlags(config).unusedTokens.push(token); + } + addTimeToArrayFromToken(token, parsedInput, config); + } else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } + + // add remaining unparsed input length to the string + getParsingFlags(config).charsLeftOver = + stringLength - totalParsedInputLength; + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } + + // clear _12h flag if hour is <= 12 + if ( + config._a[HOUR] <= 12 && + getParsingFlags(config).bigHour === true && + config._a[HOUR] > 0 + ) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; + // handle meridiem + config._a[HOUR] = meridiemFixWrap( + config._locale, + config._a[HOUR], + config._meridiem + ); + + // handle era + era = getParsingFlags(config).era; + if (era !== null) { + config._a[YEAR] = config._locale.erasConvertYear(era, config._a[YEAR]); + } + + configFromArray(config); + checkOverflow(config); + } + + function meridiemFixWrap(locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + if (isPm && hour < 12) { + hour += 12; + } + if (!isPm && hour === 12) { + hour = 0; + } + return hour; + } else { + // this is not supposed to happen + return hour; + } + } + + // date from string and array of format strings + function configFromStringAndArray(config) { + var tempConfig, + bestMoment, + scoreToBeat, + i, + currentScore, + validFormatFound, + bestFormatIsValid = false; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + validFormatFound = false; + tempConfig = copyConfig({}, config); + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (isValid(tempConfig)) { + validFormatFound = true; + } + + // if there is any input that was not parsed add a penalty for that format + currentScore += getParsingFlags(tempConfig).charsLeftOver; + + //or tokens + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + + getParsingFlags(tempConfig).score = currentScore; + + if (!bestFormatIsValid) { + if ( + scoreToBeat == null || + currentScore < scoreToBeat || + validFormatFound + ) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + if (validFormatFound) { + bestFormatIsValid = true; + } + } + } else { + if (currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + } + + extend(config, bestMoment || tempConfig); + } + + function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i), + dayOrDate = i.day === undefined ? i.date : i.day; + config._a = map( + [i.year, i.month, dayOrDate, i.hour, i.minute, i.second, i.millisecond], + function (obj) { + return obj && parseInt(obj, 10); + } + ); + + configFromArray(config); + } + + function createFromConfig(config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; + } + + function prepareConfig(config) { + var input = config._i, + format = config._f; + + config._locale = config._locale || getLocale(config._l); + + if (input === null || (format === undefined && input === '')) { + return createInvalid({ nullInput: true }); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; + } + + function configFromInput(config) { + var input = config._i; + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } + } + + function createLocalOrUTC(input, format, locale, strict, isUTC) { + var c = {}; + + if (format === true || format === false) { + strict = format; + format = undefined; + } + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if ( + (isObject(input) && isObjectEmpty(input)) || + (isArray(input) && input.length === 0) + ) { + input = undefined; + } + // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + + return createFromConfig(c); + } + + function createLocal(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); + } + + var prototypeMin = deprecate( + 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + } + ), + prototypeMax = deprecate( + 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', + function () { + var other = createLocal.apply(null, arguments); + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + } + ); + + // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + function pickBy(fn, moments) { + var res, i; + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + if (!moments.length) { + return createLocal(); + } + res = moments[0]; + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + return res; + } + + // TODO: Use [].sort instead? + function min() { + var args = [].slice.call(arguments, 0); + + return pickBy('isBefore', args); + } + + function max() { + var args = [].slice.call(arguments, 0); + + return pickBy('isAfter', args); + } + + var now = function () { + return Date.now ? Date.now() : +new Date(); + }; + + var ordering = [ + 'year', + 'quarter', + 'month', + 'week', + 'day', + 'hour', + 'minute', + 'second', + 'millisecond', + ]; + + function isDurationValid(m) { + var key, + unitHasDecimal = false, + i; + for (key in m) { + if ( + hasOwnProp(m, key) && + !( + indexOf.call(ordering, key) !== -1 && + (m[key] == null || !isNaN(m[key])) + ) + ) { + return false; + } + } + + for (i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; + } + + function isValid$1() { + return this._isValid; + } + + function createInvalid$1() { + return createDuration(NaN); + } + + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || normalizedInput.isoWeek || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + + this._isValid = isDurationValid(normalizedInput); + + // representation for dateAddRemove + this._milliseconds = + +milliseconds + + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + this._days = +days + weeks * 7; + // It is impossible to translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + this._months = +months + quarters * 3 + years * 12; + + this._data = {}; + + this._locale = getLocale(); + + this._bubble(); + } + + function isDuration(obj) { + return obj instanceof Duration; + } + + function absRound(number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } + } + + // compare two arrays, return the number of differences + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + for (i = 0; i < len; i++) { + if ( + (dontConvert && array1[i] !== array2[i]) || + (!dontConvert && toInt(array1[i]) !== toInt(array2[i])) + ) { + diffs++; + } + } + return diffs + lengthDiff; + } + + // FORMATTING + + function offset(token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(), + sign = '+'; + if (offset < 0) { + offset = -offset; + sign = '-'; + } + return ( + sign + + zeroFill(~~(offset / 60), 2) + + separator + + zeroFill(~~offset % 60, 2) + ); + }); + } + + offset('Z', ':'); + offset('ZZ', ''); + + // PARSING + + addRegexToken('Z', matchShortOffset); + addRegexToken('ZZ', matchShortOffset); + addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); + }); + + // HELPERS + + // timezone chunker + // '+10:00' > ['10', '00'] + // '-1530' > ['-15', '30'] + var chunkOffset = /([\+\-]|\d\d)/gi; + + function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher), + chunk, + parts, + minutes; + + if (matches === null) { + return null; + } + + chunk = matches[matches.length - 1] || []; + parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + minutes = +(parts[1] * 60) + toInt(parts[2]); + + return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes; + } + + // Return a moment from input, that is local/utc/zone equivalent to model. + function cloneWithOffset(input, model) { + var res, diff; + if (model._isUTC) { + res = model.clone(); + diff = + (isMoment(input) || isDate(input) + ? input.valueOf() + : createLocal(input).valueOf()) - res.valueOf(); + // Use low-level api, because this fn is low-level api. + res._d.setTime(res._d.valueOf() + diff); + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } + } + + function getDateOffset(m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset()); + } + + // HOOKS + + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + hooks.updateOffset = function () {}; + + // MOMENTS + + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + function getSetOffset(input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + if (!this.isValid()) { + return input != null ? this : NaN; + } + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + this._offset = input; + this._isUTC = true; + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract( + this, + createDuration(input - offset, 'm'), + 1, + false + ); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } + } + + function getSetZone(input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + + return this; + } else { + return -this.utcOffset(); + } + } + + function setOffsetToUTC(keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + } + + function setOffsetToLocal(keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + return this; + } + + function setOffsetToParsedOffset() { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + if (tZone != null) { + this.utcOffset(tZone); + } else { + this.utcOffset(0, true); + } + } + return this; + } + + function hasAlignedHourOffset(input) { + if (!this.isValid()) { + return false; + } + input = input ? createLocal(input).utcOffset() : 0; + + return (this.utcOffset() - input) % 60 === 0; + } + + function isDaylightSavingTime() { + return ( + this.utcOffset() > this.clone().month(0).utcOffset() || + this.utcOffset() > this.clone().month(5).utcOffset() + ); + } + + function isDaylightSavingTimeShifted() { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}, + other; + + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = + this.isValid() && compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; + } + + function isLocal() { + return this.isValid() ? !this._isUTC : false; + } + + function isUtcOffset() { + return this.isValid() ? this._isUTC : false; + } + + function isUtc() { + return this.isValid() ? this._isUTC && this._offset === 0 : false; + } + + // ASP.NET json date format regex + var aspNetRegex = /^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/, + // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + // and further modified to allow for strings containing both week and day + isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; + + function createDuration(input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months, + }; + } else if (isNumber(input) || !isNaN(+input)) { + duration = {}; + if (key) { + duration[key] = +input; + } else { + duration.milliseconds = +input; + } + } else if ((match = aspNetRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign, // the millisecond decimal point is included in the match + }; + } else if ((match = isoRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: parseIso(match[2], sign), + M: parseIso(match[3], sign), + w: parseIso(match[4], sign), + d: parseIso(match[5], sign), + h: parseIso(match[6], sign), + m: parseIso(match[7], sign), + s: parseIso(match[8], sign), + }; + } else if (duration == null) { + // checks for null or undefined + duration = {}; + } else if ( + typeof duration === 'object' && + ('from' in duration || 'to' in duration) + ) { + diffRes = momentsDifference( + createLocal(duration.from), + createLocal(duration.to) + ); + + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + if (isDuration(input) && hasOwnProp(input, '_isValid')) { + ret._isValid = input._isValid; + } + + return ret; + } + + createDuration.fn = Duration.prototype; + createDuration.invalid = createInvalid$1; + + function parseIso(inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); + // apply sign while we're at it + return (isNaN(res) ? 0 : res) * sign; + } + + function positiveMomentsDifference(base, other) { + var res = {}; + + res.months = + other.month() - base.month() + (other.year() - base.year()) * 12; + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +base.clone().add(res.months, 'M'); + + return res; + } + + function momentsDifference(base, other) { + var res; + if (!(base.isValid() && other.isValid())) { + return { milliseconds: 0, months: 0 }; + } + + other = cloneWithOffset(other, base); + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } + + // TODO: remove 'name' arg after deprecation is removed + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; + //invert the arguments, but complain about it + if (period !== null && !isNaN(+period)) { + deprecateSimple( + name, + 'moment().' + + name + + '(period, number) is deprecated. Please use moment().' + + name + + '(number, period). ' + + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.' + ); + tmp = val; + val = period; + period = tmp; + } + + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; + } + + function addSubtract(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } + } + + var add = createAdder(1, 'add'), + subtract = createAdder(-1, 'subtract'); + + function isString(input) { + return typeof input === 'string' || input instanceof String; + } + + // type MomentInput = Moment | Date | string | number | (number | string)[] | MomentInputObject | void; // null | undefined + function isMomentInput(input) { + return ( + isMoment(input) || + isDate(input) || + isString(input) || + isNumber(input) || + isNumberOrStringArray(input) || + isMomentInputObject(input) || + input === null || + input === undefined + ); + } + + function isMomentInputObject(input) { + var objectTest = isObject(input) && !isObjectEmpty(input), + propertyTest = false, + properties = [ + 'years', + 'year', + 'y', + 'months', + 'month', + 'M', + 'days', + 'day', + 'd', + 'dates', + 'date', + 'D', + 'hours', + 'hour', + 'h', + 'minutes', + 'minute', + 'm', + 'seconds', + 'second', + 's', + 'milliseconds', + 'millisecond', + 'ms', + ], + i, + property; + + for (i = 0; i < properties.length; i += 1) { + property = properties[i]; + propertyTest = propertyTest || hasOwnProp(input, property); + } + + return objectTest && propertyTest; + } + + function isNumberOrStringArray(input) { + var arrayTest = isArray(input), + dataTypeTest = false; + if (arrayTest) { + dataTypeTest = + input.filter(function (item) { + return !isNumber(item) && isString(input); + }).length === 0; + } + return arrayTest && dataTypeTest; + } + + function isCalendarSpec(input) { + var objectTest = isObject(input) && !isObjectEmpty(input), + propertyTest = false, + properties = [ + 'sameDay', + 'nextDay', + 'lastDay', + 'nextWeek', + 'lastWeek', + 'sameElse', + ], + i, + property; + + for (i = 0; i < properties.length; i += 1) { + property = properties[i]; + propertyTest = propertyTest || hasOwnProp(input, property); + } + + return objectTest && propertyTest; + } + + function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 + ? 'sameElse' + : diff < -1 + ? 'lastWeek' + : diff < 0 + ? 'lastDay' + : diff < 1 + ? 'sameDay' + : diff < 2 + ? 'nextDay' + : diff < 7 + ? 'nextWeek' + : 'sameElse'; + } + + function calendar$1(time, formats) { + // Support for single parameter, formats only overload to the calendar function + if (arguments.length === 1) { + if (isMomentInput(arguments[0])) { + time = arguments[0]; + formats = undefined; + } else if (isCalendarSpec(arguments[0])) { + formats = arguments[0]; + time = undefined; + } + } + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse', + output = + formats && + (isFunction(formats[format]) + ? formats[format].call(this, now) + : formats[format]); + + return this.format( + output || this.localeData().calendar(format, this, createLocal(now)) + ); + } + + function clone() { + return new Moment(this); + } + + function isAfter(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(units) || 'millisecond'; + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } + } + + function isBefore(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(units) || 'millisecond'; + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } + } + + function isBetween(from, to, units, inclusivity) { + var localFrom = isMoment(from) ? from : createLocal(from), + localTo = isMoment(to) ? to : createLocal(to); + if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) { + return false; + } + inclusivity = inclusivity || '()'; + return ( + (inclusivity[0] === '(' + ? this.isAfter(localFrom, units) + : !this.isBefore(localFrom, units)) && + (inclusivity[1] === ')' + ? this.isBefore(localTo, units) + : !this.isAfter(localTo, units)) + ); + } + + function isSame(input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + if (!(this.isValid() && localInput.isValid())) { + return false; + } + units = normalizeUnits(units) || 'millisecond'; + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return ( + this.clone().startOf(units).valueOf() <= inputMs && + inputMs <= this.clone().endOf(units).valueOf() + ); + } + } + + function isSameOrAfter(input, units) { + return this.isSame(input, units) || this.isAfter(input, units); + } + + function isSameOrBefore(input, units) { + return this.isSame(input, units) || this.isBefore(input, units); + } + + function diff(input, units, asFloat) { + var that, zoneDelta, output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + + units = normalizeUnits(units); + + switch (units) { + case 'year': + output = monthDiff(this, that) / 12; + break; + case 'month': + output = monthDiff(this, that); + break; + case 'quarter': + output = monthDiff(this, that) / 3; + break; + case 'second': + output = (this - that) / 1e3; + break; // 1000 + case 'minute': + output = (this - that) / 6e4; + break; // 1000 * 60 + case 'hour': + output = (this - that) / 36e5; + break; // 1000 * 60 * 60 + case 'day': + output = (this - that - zoneDelta) / 864e5; + break; // 1000 * 60 * 60 * 24, negate dst + case 'week': + output = (this - that - zoneDelta) / 6048e5; + break; // 1000 * 60 * 60 * 24 * 7, negate dst + default: + output = this - that; + } + + return asFloat ? output : absFloor(output); + } + + function monthDiff(a, b) { + if (a.date() < b.date()) { + // end-of-month calculations work correct when the start month has more + // days than the end month. + return -monthDiff(b, a); + } + // difference in months + var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, + adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); + // linear across the month + adjust = (b - anchor) / (anchor2 - anchor); + } + + //check for negative zero, return zero if negative zero + return -(wholeMonthDiff + adjust) || 0; + } + + hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; + hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + + function toString() { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + } + + function toISOString(keepOffset) { + if (!this.isValid()) { + return null; + } + var utc = keepOffset !== true, + m = utc ? this.clone().utc() : this; + if (m.year() < 0 || m.year() > 9999) { + return formatMoment( + m, + utc + ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' + : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ' + ); + } + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + if (utc) { + return this.toDate().toISOString(); + } else { + return new Date(this.valueOf() + this.utcOffset() * 60 * 1000) + .toISOString() + .replace('Z', formatMoment(m, 'Z')); + } + } + return formatMoment( + m, + utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ' + ); + } + + /** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ + function inspect() { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + var func = 'moment', + zone = '', + prefix, + year, + datetime, + suffix; + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + prefix = '[' + func + '("]'; + year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY'; + datetime = '-MM-DD[T]HH:mm:ss.SSS'; + suffix = zone + '[")]'; + + return this.format(prefix + year + datetime + suffix); + } + + function format(inputString) { + if (!inputString) { + inputString = this.isUtc() + ? hooks.defaultFormatUtc + : hooks.defaultFormat; + } + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); + } + + function from(time, withoutSuffix) { + if ( + this.isValid() && + ((isMoment(time) && time.isValid()) || createLocal(time).isValid()) + ) { + return createDuration({ to: this, from: time }) + .locale(this.locale()) + .humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function fromNow(withoutSuffix) { + return this.from(createLocal(), withoutSuffix); + } + + function to(time, withoutSuffix) { + if ( + this.isValid() && + ((isMoment(time) && time.isValid()) || createLocal(time).isValid()) + ) { + return createDuration({ from: this, to: time }) + .locale(this.locale()) + .humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function toNow(withoutSuffix) { + return this.to(createLocal(), withoutSuffix); + } + + // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + function locale(key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + if (newLocaleData != null) { + this._locale = newLocaleData; + } + return this; + } + } + + var lang = deprecate( + 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', + function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + } + ); + + function localeData() { + return this._locale; + } + + var MS_PER_SECOND = 1000, + MS_PER_MINUTE = 60 * MS_PER_SECOND, + MS_PER_HOUR = 60 * MS_PER_MINUTE, + MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; + + // actual modulo - handles negative numbers (for dates before 1970): + function mod$1(dividend, divisor) { + return ((dividend % divisor) + divisor) % divisor; + } + + function localStartOfDate(y, m, d) { + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return new Date(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return new Date(y, m, d).valueOf(); + } + } + + function utcStartOfDate(y, m, d) { + // Date.UTC remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return Date.UTC(y, m, d); + } + } + + function startOf(units) { + var time, startOfDate; + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year(), 0, 1); + break; + case 'quarter': + time = startOfDate( + this.year(), + this.month() - (this.month() % 3), + 1 + ); + break; + case 'month': + time = startOfDate(this.year(), this.month(), 1); + break; + case 'week': + time = startOfDate( + this.year(), + this.month(), + this.date() - this.weekday() + ); + break; + case 'isoWeek': + time = startOfDate( + this.year(), + this.month(), + this.date() - (this.isoWeekday() - 1) + ); + break; + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date()); + break; + case 'hour': + time = this._d.valueOf(); + time -= mod$1( + time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), + MS_PER_HOUR + ); + break; + case 'minute': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_MINUTE); + break; + case 'second': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_SECOND); + break; + } + + this._d.setTime(time); + hooks.updateOffset(this, true); + return this; + } + + function endOf(units) { + var time, startOfDate; + units = normalizeUnits(units); + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year() + 1, 0, 1) - 1; + break; + case 'quarter': + time = + startOfDate( + this.year(), + this.month() - (this.month() % 3) + 3, + 1 + ) - 1; + break; + case 'month': + time = startOfDate(this.year(), this.month() + 1, 1) - 1; + break; + case 'week': + time = + startOfDate( + this.year(), + this.month(), + this.date() - this.weekday() + 7 + ) - 1; + break; + case 'isoWeek': + time = + startOfDate( + this.year(), + this.month(), + this.date() - (this.isoWeekday() - 1) + 7 + ) - 1; + break; + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date() + 1) - 1; + break; + case 'hour': + time = this._d.valueOf(); + time += + MS_PER_HOUR - + mod$1( + time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), + MS_PER_HOUR + ) - + 1; + break; + case 'minute': + time = this._d.valueOf(); + time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1; + break; + case 'second': + time = this._d.valueOf(); + time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1; + break; + } + + this._d.setTime(time); + hooks.updateOffset(this, true); + return this; + } + + function valueOf() { + return this._d.valueOf() - (this._offset || 0) * 60000; + } + + function unix() { + return Math.floor(this.valueOf() / 1000); + } + + function toDate() { + return new Date(this.valueOf()); + } + + function toArray() { + var m = this; + return [ + m.year(), + m.month(), + m.date(), + m.hour(), + m.minute(), + m.second(), + m.millisecond(), + ]; + } + + function toObject() { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds(), + }; + } + + function toJSON() { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; + } + + function isValid$2() { + return isValid(this); + } + + function parsingFlags() { + return extend({}, getParsingFlags(this)); + } + + function invalidAt() { + return getParsingFlags(this).overflow; + } + + function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict, + }; + } + + addFormatToken('N', 0, 0, 'eraAbbr'); + addFormatToken('NN', 0, 0, 'eraAbbr'); + addFormatToken('NNN', 0, 0, 'eraAbbr'); + addFormatToken('NNNN', 0, 0, 'eraName'); + addFormatToken('NNNNN', 0, 0, 'eraNarrow'); + + addFormatToken('y', ['y', 1], 'yo', 'eraYear'); + addFormatToken('y', ['yy', 2], 0, 'eraYear'); + addFormatToken('y', ['yyy', 3], 0, 'eraYear'); + addFormatToken('y', ['yyyy', 4], 0, 'eraYear'); + + addRegexToken('N', matchEraAbbr); + addRegexToken('NN', matchEraAbbr); + addRegexToken('NNN', matchEraAbbr); + addRegexToken('NNNN', matchEraName); + addRegexToken('NNNNN', matchEraNarrow); + + addParseToken(['N', 'NN', 'NNN', 'NNNN', 'NNNNN'], function ( + input, + array, + config, + token + ) { + var era = config._locale.erasParse(input, token, config._strict); + if (era) { + getParsingFlags(config).era = era; + } else { + getParsingFlags(config).invalidEra = input; + } + }); + + addRegexToken('y', matchUnsigned); + addRegexToken('yy', matchUnsigned); + addRegexToken('yyy', matchUnsigned); + addRegexToken('yyyy', matchUnsigned); + addRegexToken('yo', matchEraYearOrdinal); + + addParseToken(['y', 'yy', 'yyy', 'yyyy'], YEAR); + addParseToken(['yo'], function (input, array, config, token) { + var match; + if (config._locale._eraYearOrdinalRegex) { + match = input.match(config._locale._eraYearOrdinalRegex); + } + + if (config._locale.eraYearOrdinalParse) { + array[YEAR] = config._locale.eraYearOrdinalParse(input, match); + } else { + array[YEAR] = parseInt(input, 10); + } + }); + + function localeEras(m, format) { + var i, + l, + date, + eras = this._eras || getLocale('en')._eras; + for (i = 0, l = eras.length; i < l; ++i) { + switch (typeof eras[i].since) { + case 'string': + // truncate time + date = hooks(eras[i].since).startOf('day'); + eras[i].since = date.valueOf(); + break; + } + + switch (typeof eras[i].until) { + case 'undefined': + eras[i].until = +Infinity; + break; + case 'string': + // truncate time + date = hooks(eras[i].until).startOf('day').valueOf(); + eras[i].until = date.valueOf(); + break; + } + } + return eras; + } + + function localeErasParse(eraName, format, strict) { + var i, + l, + eras = this.eras(), + name, + abbr, + narrow; + eraName = eraName.toUpperCase(); + + for (i = 0, l = eras.length; i < l; ++i) { + name = eras[i].name.toUpperCase(); + abbr = eras[i].abbr.toUpperCase(); + narrow = eras[i].narrow.toUpperCase(); + + if (strict) { + switch (format) { + case 'N': + case 'NN': + case 'NNN': + if (abbr === eraName) { + return eras[i]; + } + break; + + case 'NNNN': + if (name === eraName) { + return eras[i]; + } + break; + + case 'NNNNN': + if (narrow === eraName) { + return eras[i]; + } + break; + } + } else if ([name, abbr, narrow].indexOf(eraName) >= 0) { + return eras[i]; + } + } + } + + function localeErasConvertYear(era, year) { + var dir = era.since <= era.until ? +1 : -1; + if (year === undefined) { + return hooks(era.since).year(); + } else { + return hooks(era.since).year() + (year - era.offset) * dir; + } + } + + function getEraName() { + var i, + l, + val, + eras = this.localeData().eras(); + for (i = 0, l = eras.length; i < l; ++i) { + // truncate time + val = this.startOf('day').valueOf(); + + if (eras[i].since <= val && val <= eras[i].until) { + return eras[i].name; + } + if (eras[i].until <= val && val <= eras[i].since) { + return eras[i].name; + } + } + + return ''; + } + + function getEraNarrow() { + var i, + l, + val, + eras = this.localeData().eras(); + for (i = 0, l = eras.length; i < l; ++i) { + // truncate time + val = this.startOf('day').valueOf(); + + if (eras[i].since <= val && val <= eras[i].until) { + return eras[i].narrow; + } + if (eras[i].until <= val && val <= eras[i].since) { + return eras[i].narrow; + } + } + + return ''; + } + + function getEraAbbr() { + var i, + l, + val, + eras = this.localeData().eras(); + for (i = 0, l = eras.length; i < l; ++i) { + // truncate time + val = this.startOf('day').valueOf(); + + if (eras[i].since <= val && val <= eras[i].until) { + return eras[i].abbr; + } + if (eras[i].until <= val && val <= eras[i].since) { + return eras[i].abbr; + } + } + + return ''; + } + + function getEraYear() { + var i, + l, + dir, + val, + eras = this.localeData().eras(); + for (i = 0, l = eras.length; i < l; ++i) { + dir = eras[i].since <= eras[i].until ? +1 : -1; + + // truncate time + val = this.startOf('day').valueOf(); + + if ( + (eras[i].since <= val && val <= eras[i].until) || + (eras[i].until <= val && val <= eras[i].since) + ) { + return ( + (this.year() - hooks(eras[i].since).year()) * dir + + eras[i].offset + ); + } + } + + return this.year(); + } + + function erasNameRegex(isStrict) { + if (!hasOwnProp(this, '_erasNameRegex')) { + computeErasParse.call(this); + } + return isStrict ? this._erasNameRegex : this._erasRegex; + } + + function erasAbbrRegex(isStrict) { + if (!hasOwnProp(this, '_erasAbbrRegex')) { + computeErasParse.call(this); + } + return isStrict ? this._erasAbbrRegex : this._erasRegex; + } + + function erasNarrowRegex(isStrict) { + if (!hasOwnProp(this, '_erasNarrowRegex')) { + computeErasParse.call(this); + } + return isStrict ? this._erasNarrowRegex : this._erasRegex; + } + + function matchEraAbbr(isStrict, locale) { + return locale.erasAbbrRegex(isStrict); + } + + function matchEraName(isStrict, locale) { + return locale.erasNameRegex(isStrict); + } + + function matchEraNarrow(isStrict, locale) { + return locale.erasNarrowRegex(isStrict); + } + + function matchEraYearOrdinal(isStrict, locale) { + return locale._eraYearOrdinalRegex || matchUnsigned; + } + + function computeErasParse() { + var abbrPieces = [], + namePieces = [], + narrowPieces = [], + mixedPieces = [], + i, + l, + eras = this.eras(); + + for (i = 0, l = eras.length; i < l; ++i) { + namePieces.push(regexEscape(eras[i].name)); + abbrPieces.push(regexEscape(eras[i].abbr)); + narrowPieces.push(regexEscape(eras[i].narrow)); + + mixedPieces.push(regexEscape(eras[i].name)); + mixedPieces.push(regexEscape(eras[i].abbr)); + mixedPieces.push(regexEscape(eras[i].narrow)); + } + + this._erasRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._erasNameRegex = new RegExp('^(' + namePieces.join('|') + ')', 'i'); + this._erasAbbrRegex = new RegExp('^(' + abbrPieces.join('|') + ')', 'i'); + this._erasNarrowRegex = new RegExp( + '^(' + narrowPieces.join('|') + ')', + 'i' + ); + } + + // FORMATTING + + addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; + }); + + addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; + }); + + function addWeekYearFormatToken(token, getter) { + addFormatToken(0, [token, token.length], 0, getter); + } + + addWeekYearFormatToken('gggg', 'weekYear'); + addWeekYearFormatToken('ggggg', 'weekYear'); + addWeekYearFormatToken('GGGG', 'isoWeekYear'); + addWeekYearFormatToken('GGGGG', 'isoWeekYear'); + + // ALIASES + + addUnitAlias('weekYear', 'gg'); + addUnitAlias('isoWeekYear', 'GG'); + + // PRIORITY + + addUnitPriority('weekYear', 1); + addUnitPriority('isoWeekYear', 1); + + // PARSING + + addRegexToken('G', matchSigned); + addRegexToken('g', matchSigned); + addRegexToken('GG', match1to2, match2); + addRegexToken('gg', match1to2, match2); + addRegexToken('GGGG', match1to4, match4); + addRegexToken('gggg', match1to4, match4); + addRegexToken('GGGGG', match1to6, match6); + addRegexToken('ggggg', match1to6, match6); + + addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function ( + input, + week, + config, + token + ) { + week[token.substr(0, 2)] = toInt(input); + }); + + addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); + }); + + // MOMENTS + + function getSetWeekYear(input) { + return getSetWeekYearHelper.call( + this, + input, + this.week(), + this.weekday(), + this.localeData()._week.dow, + this.localeData()._week.doy + ); + } + + function getSetISOWeekYear(input) { + return getSetWeekYearHelper.call( + this, + input, + this.isoWeek(), + this.isoWeekday(), + 1, + 4 + ); + } + + function getISOWeeksInYear() { + return weeksInYear(this.year(), 1, 4); + } + + function getISOWeeksInISOWeekYear() { + return weeksInYear(this.isoWeekYear(), 1, 4); + } + + function getWeeksInYear() { + var weekInfo = this.localeData()._week; + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + } + + function getWeeksInWeekYear() { + var weekInfo = this.localeData()._week; + return weeksInYear(this.weekYear(), weekInfo.dow, weekInfo.doy); + } + + function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + if (week > weeksTarget) { + week = weeksTarget; + } + return setWeekAll.call(this, input, week, weekday, dow, doy); + } + } + + function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; + } + + // FORMATTING + + addFormatToken('Q', 0, 'Qo', 'quarter'); + + // ALIASES + + addUnitAlias('quarter', 'Q'); + + // PRIORITY + + addUnitPriority('quarter', 7); + + // PARSING + + addRegexToken('Q', match1); + addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; + }); + + // MOMENTS + + function getSetQuarter(input) { + return input == null + ? Math.ceil((this.month() + 1) / 3) + : this.month((input - 1) * 3 + (this.month() % 3)); + } + + // FORMATTING + + addFormatToken('D', ['DD', 2], 'Do', 'date'); + + // ALIASES + + addUnitAlias('date', 'D'); + + // PRIORITY + addUnitPriority('date', 9); + + // PARSING + + addRegexToken('D', match1to2); + addRegexToken('DD', match1to2, match2); + addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict + ? locale._dayOfMonthOrdinalParse || locale._ordinalParse + : locale._dayOfMonthOrdinalParseLenient; + }); + + addParseToken(['D', 'DD'], DATE); + addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0]); + }); + + // MOMENTS + + var getSetDayOfMonth = makeGetSet('Date', true); + + // FORMATTING + + addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); + + // ALIASES + + addUnitAlias('dayOfYear', 'DDD'); + + // PRIORITY + addUnitPriority('dayOfYear', 4); + + // PARSING + + addRegexToken('DDD', match1to3); + addRegexToken('DDDD', match3); + addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); + }); + + // HELPERS + + // MOMENTS + + function getSetDayOfYear(input) { + var dayOfYear = + Math.round( + (this.clone().startOf('day') - this.clone().startOf('year')) / 864e5 + ) + 1; + return input == null ? dayOfYear : this.add(input - dayOfYear, 'd'); + } + + // FORMATTING + + addFormatToken('m', ['mm', 2], 0, 'minute'); + + // ALIASES + + addUnitAlias('minute', 'm'); + + // PRIORITY + + addUnitPriority('minute', 14); + + // PARSING + + addRegexToken('m', match1to2); + addRegexToken('mm', match1to2, match2); + addParseToken(['m', 'mm'], MINUTE); + + // MOMENTS + + var getSetMinute = makeGetSet('Minutes', false); + + // FORMATTING + + addFormatToken('s', ['ss', 2], 0, 'second'); + + // ALIASES + + addUnitAlias('second', 's'); + + // PRIORITY + + addUnitPriority('second', 15); + + // PARSING + + addRegexToken('s', match1to2); + addRegexToken('ss', match1to2, match2); + addParseToken(['s', 'ss'], SECOND); + + // MOMENTS + + var getSetSecond = makeGetSet('Seconds', false); + + // FORMATTING + + addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); + }); + + addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); + }); + + addFormatToken(0, ['SSS', 3], 0, 'millisecond'); + addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; + }); + addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; + }); + addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; + }); + addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; + }); + addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; + }); + addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; + }); + + // ALIASES + + addUnitAlias('millisecond', 'ms'); + + // PRIORITY + + addUnitPriority('millisecond', 16); + + // PARSING + + addRegexToken('S', match1to3, match1); + addRegexToken('SS', match1to3, match2); + addRegexToken('SSS', match1to3, match3); + + var token, getSetMillisecond; + for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); + } + + function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); + } + + for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); + } + + getSetMillisecond = makeGetSet('Milliseconds', false); + + // FORMATTING + + addFormatToken('z', 0, 0, 'zoneAbbr'); + addFormatToken('zz', 0, 0, 'zoneName'); + + // MOMENTS + + function getZoneAbbr() { + return this._isUTC ? 'UTC' : ''; + } + + function getZoneName() { + return this._isUTC ? 'Coordinated Universal Time' : ''; + } + + var proto = Moment.prototype; + + proto.add = add; + proto.calendar = calendar$1; + proto.clone = clone; + proto.diff = diff; + proto.endOf = endOf; + proto.format = format; + proto.from = from; + proto.fromNow = fromNow; + proto.to = to; + proto.toNow = toNow; + proto.get = stringGet; + proto.invalidAt = invalidAt; + proto.isAfter = isAfter; + proto.isBefore = isBefore; + proto.isBetween = isBetween; + proto.isSame = isSame; + proto.isSameOrAfter = isSameOrAfter; + proto.isSameOrBefore = isSameOrBefore; + proto.isValid = isValid$2; + proto.lang = lang; + proto.locale = locale; + proto.localeData = localeData; + proto.max = prototypeMax; + proto.min = prototypeMin; + proto.parsingFlags = parsingFlags; + proto.set = stringSet; + proto.startOf = startOf; + proto.subtract = subtract; + proto.toArray = toArray; + proto.toObject = toObject; + proto.toDate = toDate; + proto.toISOString = toISOString; + proto.inspect = inspect; + if (typeof Symbol !== 'undefined' && Symbol.for != null) { + proto[Symbol.for('nodejs.util.inspect.custom')] = function () { + return 'Moment<' + this.format() + '>'; + }; + } + proto.toJSON = toJSON; + proto.toString = toString; + proto.unix = unix; + proto.valueOf = valueOf; + proto.creationData = creationData; + proto.eraName = getEraName; + proto.eraNarrow = getEraNarrow; + proto.eraAbbr = getEraAbbr; + proto.eraYear = getEraYear; + proto.year = getSetYear; + proto.isLeapYear = getIsLeapYear; + proto.weekYear = getSetWeekYear; + proto.isoWeekYear = getSetISOWeekYear; + proto.quarter = proto.quarters = getSetQuarter; + proto.month = getSetMonth; + proto.daysInMonth = getDaysInMonth; + proto.week = proto.weeks = getSetWeek; + proto.isoWeek = proto.isoWeeks = getSetISOWeek; + proto.weeksInYear = getWeeksInYear; + proto.weeksInWeekYear = getWeeksInWeekYear; + proto.isoWeeksInYear = getISOWeeksInYear; + proto.isoWeeksInISOWeekYear = getISOWeeksInISOWeekYear; + proto.date = getSetDayOfMonth; + proto.day = proto.days = getSetDayOfWeek; + proto.weekday = getSetLocaleDayOfWeek; + proto.isoWeekday = getSetISODayOfWeek; + proto.dayOfYear = getSetDayOfYear; + proto.hour = proto.hours = getSetHour; + proto.minute = proto.minutes = getSetMinute; + proto.second = proto.seconds = getSetSecond; + proto.millisecond = proto.milliseconds = getSetMillisecond; + proto.utcOffset = getSetOffset; + proto.utc = setOffsetToUTC; + proto.local = setOffsetToLocal; + proto.parseZone = setOffsetToParsedOffset; + proto.hasAlignedHourOffset = hasAlignedHourOffset; + proto.isDST = isDaylightSavingTime; + proto.isLocal = isLocal; + proto.isUtcOffset = isUtcOffset; + proto.isUtc = isUtc; + proto.isUTC = isUtc; + proto.zoneAbbr = getZoneAbbr; + proto.zoneName = getZoneName; + proto.dates = deprecate( + 'dates accessor is deprecated. Use date instead.', + getSetDayOfMonth + ); + proto.months = deprecate( + 'months accessor is deprecated. Use month instead', + getSetMonth + ); + proto.years = deprecate( + 'years accessor is deprecated. Use year instead', + getSetYear + ); + proto.zone = deprecate( + 'moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', + getSetZone + ); + proto.isDSTShifted = deprecate( + 'isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', + isDaylightSavingTimeShifted + ); + + function createUnix(input) { + return createLocal(input * 1000); + } + + function createInZone() { + return createLocal.apply(null, arguments).parseZone(); + } + + function preParsePostFormat(string) { + return string; + } + + var proto$1 = Locale.prototype; + + proto$1.calendar = calendar; + proto$1.longDateFormat = longDateFormat; + proto$1.invalidDate = invalidDate; + proto$1.ordinal = ordinal; + proto$1.preparse = preParsePostFormat; + proto$1.postformat = preParsePostFormat; + proto$1.relativeTime = relativeTime; + proto$1.pastFuture = pastFuture; + proto$1.set = set; + proto$1.eras = localeEras; + proto$1.erasParse = localeErasParse; + proto$1.erasConvertYear = localeErasConvertYear; + proto$1.erasAbbrRegex = erasAbbrRegex; + proto$1.erasNameRegex = erasNameRegex; + proto$1.erasNarrowRegex = erasNarrowRegex; + + proto$1.months = localeMonths; + proto$1.monthsShort = localeMonthsShort; + proto$1.monthsParse = localeMonthsParse; + proto$1.monthsRegex = monthsRegex; + proto$1.monthsShortRegex = monthsShortRegex; + proto$1.week = localeWeek; + proto$1.firstDayOfYear = localeFirstDayOfYear; + proto$1.firstDayOfWeek = localeFirstDayOfWeek; + + proto$1.weekdays = localeWeekdays; + proto$1.weekdaysMin = localeWeekdaysMin; + proto$1.weekdaysShort = localeWeekdaysShort; + proto$1.weekdaysParse = localeWeekdaysParse; + + proto$1.weekdaysRegex = weekdaysRegex; + proto$1.weekdaysShortRegex = weekdaysShortRegex; + proto$1.weekdaysMinRegex = weekdaysMinRegex; + + proto$1.isPM = localeIsPM; + proto$1.meridiem = localeMeridiem; + + function get$1(format, index, field, setter) { + var locale = getLocale(), + utc = createUTC().set(setter, index); + return locale[field](utc, format); + } + + function listMonthsImpl(format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i, + out = []; + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + return out; + } + + // () + // (5) + // (fmt, 5) + // (fmt) + // (true) + // (true, 5) + // (true, fmt, 5) + // (true, fmt) + function listWeekdaysImpl(localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0, + i, + out = []; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + return out; + } + + function listMonths(format, index) { + return listMonthsImpl(format, index, 'months'); + } + + function listMonthsShort(format, index) { + return listMonthsImpl(format, index, 'monthsShort'); + } + + function listWeekdays(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); + } + + function listWeekdaysShort(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); + } + + function listWeekdaysMin(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); + } + + getSetGlobalLocale('en', { + eras: [ + { + since: '0001-01-01', + until: +Infinity, + offset: 1, + name: 'Anno Domini', + narrow: 'AD', + abbr: 'AD', + }, + { + since: '0000-12-31', + until: -Infinity, + offset: 1, + name: 'Before Christ', + narrow: 'BC', + abbr: 'BC', + }, + ], + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal: function (number) { + var b = number % 10, + output = + toInt((number % 100) / 10) === 1 + ? 'th' + : b === 1 + ? 'st' + : b === 2 + ? 'nd' + : b === 3 + ? 'rd' + : 'th'; + return number + output; + }, + }); + + // Side effect imports + + hooks.lang = deprecate( + 'moment.lang is deprecated. Use moment.locale instead.', + getSetGlobalLocale + ); + hooks.langData = deprecate( + 'moment.langData is deprecated. Use moment.localeData instead.', + getLocale + ); + + var mathAbs = Math.abs; + + function abs() { + var data = this._data; + + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + + return this; + } + + function addSubtract$1(duration, input, value, direction) { + var other = createDuration(input, value); + + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + + return duration._bubble(); + } + + // supports only 2.0-style add(1, 's') or add(duration) + function add$1(input, value) { + return addSubtract$1(this, input, value, 1); + } + + // supports only 2.0-style subtract(1, 's') or subtract(duration) + function subtract$1(input, value) { + return addSubtract$1(this, input, value, -1); + } + + function absCeil(number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } + } + + function bubble() { + var milliseconds = this._milliseconds, + days = this._days, + months = this._months, + data = this._data, + seconds, + minutes, + hours, + years, + monthsFromDays; + + // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + if ( + !( + (milliseconds >= 0 && days >= 0 && months >= 0) || + (milliseconds <= 0 && days <= 0 && months <= 0) + ) + ) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } + + // The following code bubbles up values, see the tests for + // examples of what that means. + data.milliseconds = milliseconds % 1000; + + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + + hours = absFloor(minutes / 60); + data.hours = hours % 24; + + days += absFloor(hours / 24); + + // convert days to months + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + data.days = days; + data.months = months; + data.years = years; + + return this; + } + + function daysToMonths(days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return (days * 4800) / 146097; + } + + function monthsToDays(months) { + // the reverse of daysToMonths + return (months * 146097) / 4800; + } + + function as(units) { + if (!this.isValid()) { + return NaN; + } + var days, + months, + milliseconds = this._milliseconds; + + units = normalizeUnits(units); + + if (units === 'month' || units === 'quarter' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + switch (units) { + case 'month': + return months; + case 'quarter': + return months / 3; + case 'year': + return months / 12; + } + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + switch (units) { + case 'week': + return days / 7 + milliseconds / 6048e5; + case 'day': + return days + milliseconds / 864e5; + case 'hour': + return days * 24 + milliseconds / 36e5; + case 'minute': + return days * 1440 + milliseconds / 6e4; + case 'second': + return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + case 'millisecond': + return Math.floor(days * 864e5) + milliseconds; + default: + throw new Error('Unknown unit ' + units); + } + } + } + + // TODO: Use this.as('ms')? + function valueOf$1() { + if (!this.isValid()) { + return NaN; + } + return ( + this._milliseconds + + this._days * 864e5 + + (this._months % 12) * 2592e6 + + toInt(this._months / 12) * 31536e6 + ); + } + + function makeAs(alias) { + return function () { + return this.as(alias); + }; + } + + var asMilliseconds = makeAs('ms'), + asSeconds = makeAs('s'), + asMinutes = makeAs('m'), + asHours = makeAs('h'), + asDays = makeAs('d'), + asWeeks = makeAs('w'), + asMonths = makeAs('M'), + asQuarters = makeAs('Q'), + asYears = makeAs('y'); + + function clone$1() { + return createDuration(this); + } + + function get$2(units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; + } + + function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; + } + + var milliseconds = makeGetter('milliseconds'), + seconds = makeGetter('seconds'), + minutes = makeGetter('minutes'), + hours = makeGetter('hours'), + days = makeGetter('days'), + months = makeGetter('months'), + years = makeGetter('years'); + + function weeks() { + return absFloor(this.days() / 7); + } + + var round = Math.round, + thresholds = { + ss: 44, // a few seconds to seconds + s: 45, // seconds to minute + m: 45, // minutes to hour + h: 22, // hours to day + d: 26, // days to month/week + w: null, // weeks to month + M: 11, // months to year + }; + + // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime$1(posNegDuration, withoutSuffix, thresholds, locale) { + var duration = createDuration(posNegDuration).abs(), + seconds = round(duration.as('s')), + minutes = round(duration.as('m')), + hours = round(duration.as('h')), + days = round(duration.as('d')), + months = round(duration.as('M')), + weeks = round(duration.as('w')), + years = round(duration.as('y')), + a = + (seconds <= thresholds.ss && ['s', seconds]) || + (seconds < thresholds.s && ['ss', seconds]) || + (minutes <= 1 && ['m']) || + (minutes < thresholds.m && ['mm', minutes]) || + (hours <= 1 && ['h']) || + (hours < thresholds.h && ['hh', hours]) || + (days <= 1 && ['d']) || + (days < thresholds.d && ['dd', days]); + + if (thresholds.w != null) { + a = + a || + (weeks <= 1 && ['w']) || + (weeks < thresholds.w && ['ww', weeks]); + } + a = a || + (months <= 1 && ['M']) || + (months < thresholds.M && ['MM', months]) || + (years <= 1 && ['y']) || ['yy', years]; + + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); + } + + // This function allows you to set the rounding function for relative time strings + function getSetRelativeTimeRounding(roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + if (typeof roundingFunction === 'function') { + round = roundingFunction; + return true; + } + return false; + } + + // This function allows you to set a threshold for relative time strings + function getSetRelativeTimeThreshold(threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + if (limit === undefined) { + return thresholds[threshold]; + } + thresholds[threshold] = limit; + if (threshold === 's') { + thresholds.ss = limit - 1; + } + return true; + } + + function humanize(argWithSuffix, argThresholds) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var withSuffix = false, + th = thresholds, + locale, + output; + + if (typeof argWithSuffix === 'object') { + argThresholds = argWithSuffix; + argWithSuffix = false; + } + if (typeof argWithSuffix === 'boolean') { + withSuffix = argWithSuffix; + } + if (typeof argThresholds === 'object') { + th = Object.assign({}, thresholds, argThresholds); + if (argThresholds.s != null && argThresholds.ss == null) { + th.ss = argThresholds.s - 1; + } + } + + locale = this.localeData(); + output = relativeTime$1(this, !withSuffix, th, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); + } + + var abs$1 = Math.abs; + + function sign(x) { + return (x > 0) - (x < 0) || +x; + } + + function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000, + days = abs$1(this._days), + months = abs$1(this._months), + minutes, + hours, + years, + s, + total = this.asSeconds(), + totalSign, + ymSign, + daysSign, + hmsSign; + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + // 3600 seconds -> 60 minutes -> 1 hour + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; + + // 12 months -> 1 year + years = absFloor(months / 12); + months %= 12; + + // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : ''; + + totalSign = total < 0 ? '-' : ''; + ymSign = sign(this._months) !== sign(total) ? '-' : ''; + daysSign = sign(this._days) !== sign(total) ? '-' : ''; + hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : ''; + + return ( + totalSign + + 'P' + + (years ? ymSign + years + 'Y' : '') + + (months ? ymSign + months + 'M' : '') + + (days ? daysSign + days + 'D' : '') + + (hours || minutes || seconds ? 'T' : '') + + (hours ? hmsSign + hours + 'H' : '') + + (minutes ? hmsSign + minutes + 'M' : '') + + (seconds ? hmsSign + s + 'S' : '') + ); + } + + var proto$2 = Duration.prototype; + + proto$2.isValid = isValid$1; + proto$2.abs = abs; + proto$2.add = add$1; + proto$2.subtract = subtract$1; + proto$2.as = as; + proto$2.asMilliseconds = asMilliseconds; + proto$2.asSeconds = asSeconds; + proto$2.asMinutes = asMinutes; + proto$2.asHours = asHours; + proto$2.asDays = asDays; + proto$2.asWeeks = asWeeks; + proto$2.asMonths = asMonths; + proto$2.asQuarters = asQuarters; + proto$2.asYears = asYears; + proto$2.valueOf = valueOf$1; + proto$2._bubble = bubble; + proto$2.clone = clone$1; + proto$2.get = get$2; + proto$2.milliseconds = milliseconds; + proto$2.seconds = seconds; + proto$2.minutes = minutes; + proto$2.hours = hours; + proto$2.days = days; + proto$2.weeks = weeks; + proto$2.months = months; + proto$2.years = years; + proto$2.humanize = humanize; + proto$2.toISOString = toISOString$1; + proto$2.toString = toISOString$1; + proto$2.toJSON = toISOString$1; + proto$2.locale = locale; + proto$2.localeData = localeData; + + proto$2.toIsoString = deprecate( + 'toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', + toISOString$1 + ); + proto$2.lang = lang; + + // FORMATTING + + addFormatToken('X', 0, 0, 'unix'); + addFormatToken('x', 0, 0, 'valueOf'); + + // PARSING + + addRegexToken('x', matchSigned); + addRegexToken('X', matchTimestamp); + addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input) * 1000); + }); + addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); + }); + + //! moment.js + + hooks.version = '2.27.0'; + + setHookCallback(createLocal); + + hooks.fn = proto; + hooks.min = min; + hooks.max = max; + hooks.now = now; + hooks.utc = createUTC; + hooks.unix = createUnix; + hooks.months = listMonths; + hooks.isDate = isDate; + hooks.locale = getSetGlobalLocale; + hooks.invalid = createInvalid; + hooks.duration = createDuration; + hooks.isMoment = isMoment; + hooks.weekdays = listWeekdays; + hooks.parseZone = createInZone; + hooks.localeData = getLocale; + hooks.isDuration = isDuration; + hooks.monthsShort = listMonthsShort; + hooks.weekdaysMin = listWeekdaysMin; + hooks.defineLocale = defineLocale; + hooks.updateLocale = updateLocale; + hooks.locales = listLocales; + hooks.weekdaysShort = listWeekdaysShort; + hooks.normalizeUnits = normalizeUnits; + hooks.relativeTimeRounding = getSetRelativeTimeRounding; + hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; + hooks.calendarFormat = getCalendarFormat; + hooks.prototype = proto; + + // currently HTML5 input type only supports 24-hour formats + hooks.HTML5_FMT = { + DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // + DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // + DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // + DATE: 'YYYY-MM-DD', // + TIME: 'HH:mm', // + TIME_SECONDS: 'HH:mm:ss', // + TIME_MS: 'HH:mm:ss.SSS', // + WEEK: 'GGGG-[W]WW', // + MONTH: 'YYYY-MM', // + }; + + return hooks; + +}))); diff --git a/assets/js/moment-2.8.4.js b/assets/js/moment-2.8.4.js deleted file mode 100644 index 85e190d..0000000 --- a/assets/js/moment-2.8.4.js +++ /dev/null @@ -1,2936 +0,0 @@ -//! moment.js -//! version : 2.8.4 -//! authors : Tim Wood, Iskren Chernev, Moment.js contributors -//! license : MIT -//! momentjs.com - -(function (undefined) { - /************************************ - Constants - ************************************/ - - var moment, - VERSION = '2.8.4', - // the global-scope this is NOT the global object in Node.js - globalScope = typeof global !== 'undefined' ? global : this, - oldGlobalMoment, - round = Math.round, - hasOwnProperty = Object.prototype.hasOwnProperty, - i, - - YEAR = 0, - MONTH = 1, - DATE = 2, - HOUR = 3, - MINUTE = 4, - SECOND = 5, - MILLISECOND = 6, - - // internal storage for locale config files - locales = {}, - - // extra moment internal properties (plugins register props here) - momentProperties = [], - - // check for nodeJS - hasModule = (typeof module !== 'undefined' && module && module.exports), - - // ASP.NET json date format regex - aspNetJsonRegex = /^\/?Date\((\-?\d+)/i, - aspNetTimeSpanJsonRegex = /(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/, - - // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html - // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere - isoDurationRegex = /^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/, - - // format tokens - formattingTokens = /(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|x|X|zz?|ZZ?|.)/g, - localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g, - - // parsing token regexes - parseTokenOneOrTwoDigits = /\d\d?/, // 0 - 99 - parseTokenOneToThreeDigits = /\d{1,3}/, // 0 - 999 - parseTokenOneToFourDigits = /\d{1,4}/, // 0 - 9999 - parseTokenOneToSixDigits = /[+\-]?\d{1,6}/, // -999,999 - 999,999 - parseTokenDigits = /\d+/, // nonzero number of digits - parseTokenWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i, // any word (or two) characters or numbers including two/three word month in arabic. - parseTokenTimezone = /Z|[\+\-]\d\d:?\d\d/gi, // +00:00 -00:00 +0000 -0000 or Z - parseTokenT = /T/i, // T (ISO separator) - parseTokenOffsetMs = /[\+\-]?\d+/, // 1234567890123 - parseTokenTimestampMs = /[\+\-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123 - - //strict parsing regexes - parseTokenOneDigit = /\d/, // 0 - 9 - parseTokenTwoDigits = /\d\d/, // 00 - 99 - parseTokenThreeDigits = /\d{3}/, // 000 - 999 - parseTokenFourDigits = /\d{4}/, // 0000 - 9999 - parseTokenSixDigits = /[+-]?\d{6}/, // -999,999 - 999,999 - parseTokenSignedNumber = /[+-]?\d+/, // -inf - inf - - // iso 8601 regex - // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) - isoRegex = /^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/, - - isoFormat = 'YYYY-MM-DDTHH:mm:ssZ', - - isoDates = [ - ['YYYYYY-MM-DD', /[+-]\d{6}-\d{2}-\d{2}/], - ['YYYY-MM-DD', /\d{4}-\d{2}-\d{2}/], - ['GGGG-[W]WW-E', /\d{4}-W\d{2}-\d/], - ['GGGG-[W]WW', /\d{4}-W\d{2}/], - ['YYYY-DDD', /\d{4}-\d{3}/] - ], - - // iso time formats and regexes - isoTimes = [ - ['HH:mm:ss.SSSS', /(T| )\d\d:\d\d:\d\d\.\d+/], - ['HH:mm:ss', /(T| )\d\d:\d\d:\d\d/], - ['HH:mm', /(T| )\d\d:\d\d/], - ['HH', /(T| )\d\d/] - ], - - // timezone chunker '+10:00' > ['10', '00'] or '-1530' > ['-15', '30'] - parseTimezoneChunker = /([\+\-]|\d\d)/gi, - - // getter and setter names - proxyGettersAndSetters = 'Date|Hours|Minutes|Seconds|Milliseconds'.split('|'), - unitMillisecondFactors = { - 'Milliseconds' : 1, - 'Seconds' : 1e3, - 'Minutes' : 6e4, - 'Hours' : 36e5, - 'Days' : 864e5, - 'Months' : 2592e6, - 'Years' : 31536e6 - }, - - unitAliases = { - ms : 'millisecond', - s : 'second', - m : 'minute', - h : 'hour', - d : 'day', - D : 'date', - w : 'week', - W : 'isoWeek', - M : 'month', - Q : 'quarter', - y : 'year', - DDD : 'dayOfYear', - e : 'weekday', - E : 'isoWeekday', - gg: 'weekYear', - GG: 'isoWeekYear' - }, - - camelFunctions = { - dayofyear : 'dayOfYear', - isoweekday : 'isoWeekday', - isoweek : 'isoWeek', - weekyear : 'weekYear', - isoweekyear : 'isoWeekYear' - }, - - // format function strings - formatFunctions = {}, - - // default relative time thresholds - relativeTimeThresholds = { - s: 45, // seconds to minute - m: 45, // minutes to hour - h: 22, // hours to day - d: 26, // days to month - M: 11 // months to year - }, - - // tokens to ordinalize and pad - ordinalizeTokens = 'DDD w W M D d'.split(' '), - paddedTokens = 'M D H h m s w W'.split(' '), - - formatTokenFunctions = { - M : function () { - return this.month() + 1; - }, - MMM : function (format) { - return this.localeData().monthsShort(this, format); - }, - MMMM : function (format) { - return this.localeData().months(this, format); - }, - D : function () { - return this.date(); - }, - DDD : function () { - return this.dayOfYear(); - }, - d : function () { - return this.day(); - }, - dd : function (format) { - return this.localeData().weekdaysMin(this, format); - }, - ddd : function (format) { - return this.localeData().weekdaysShort(this, format); - }, - dddd : function (format) { - return this.localeData().weekdays(this, format); - }, - w : function () { - return this.week(); - }, - W : function () { - return this.isoWeek(); - }, - YY : function () { - return leftZeroFill(this.year() % 100, 2); - }, - YYYY : function () { - return leftZeroFill(this.year(), 4); - }, - YYYYY : function () { - return leftZeroFill(this.year(), 5); - }, - YYYYYY : function () { - var y = this.year(), sign = y >= 0 ? '+' : '-'; - return sign + leftZeroFill(Math.abs(y), 6); - }, - gg : function () { - return leftZeroFill(this.weekYear() % 100, 2); - }, - gggg : function () { - return leftZeroFill(this.weekYear(), 4); - }, - ggggg : function () { - return leftZeroFill(this.weekYear(), 5); - }, - GG : function () { - return leftZeroFill(this.isoWeekYear() % 100, 2); - }, - GGGG : function () { - return leftZeroFill(this.isoWeekYear(), 4); - }, - GGGGG : function () { - return leftZeroFill(this.isoWeekYear(), 5); - }, - e : function () { - return this.weekday(); - }, - E : function () { - return this.isoWeekday(); - }, - a : function () { - return this.localeData().meridiem(this.hours(), this.minutes(), true); - }, - A : function () { - return this.localeData().meridiem(this.hours(), this.minutes(), false); - }, - H : function () { - return this.hours(); - }, - h : function () { - return this.hours() % 12 || 12; - }, - m : function () { - return this.minutes(); - }, - s : function () { - return this.seconds(); - }, - S : function () { - return toInt(this.milliseconds() / 100); - }, - SS : function () { - return leftZeroFill(toInt(this.milliseconds() / 10), 2); - }, - SSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - SSSS : function () { - return leftZeroFill(this.milliseconds(), 3); - }, - Z : function () { - var a = -this.zone(), - b = '+'; - if (a < 0) { - a = -a; - b = '-'; - } - return b + leftZeroFill(toInt(a / 60), 2) + ':' + leftZeroFill(toInt(a) % 60, 2); - }, - ZZ : function () { - var a = -this.zone(), - b = '+'; - if (a < 0) { - a = -a; - b = '-'; - } - return b + leftZeroFill(toInt(a / 60), 2) + leftZeroFill(toInt(a) % 60, 2); - }, - z : function () { - return this.zoneAbbr(); - }, - zz : function () { - return this.zoneName(); - }, - x : function () { - return this.valueOf(); - }, - X : function () { - return this.unix(); - }, - Q : function () { - return this.quarter(); - } - }, - - deprecations = {}, - - lists = ['months', 'monthsShort', 'weekdays', 'weekdaysShort', 'weekdaysMin']; - - // Pick the first defined of two or three arguments. dfl comes from - // default. - function dfl(a, b, c) { - switch (arguments.length) { - case 2: return a != null ? a : b; - case 3: return a != null ? a : b != null ? b : c; - default: throw new Error('Implement me'); - } - } - - function hasOwnProp(a, b) { - return hasOwnProperty.call(a, b); - } - - function defaultParsingFlags() { - // We need to deep clone this object, and es5 standard is not very - // helpful. - return { - empty : false, - unusedTokens : [], - unusedInput : [], - overflow : -2, - charsLeftOver : 0, - nullInput : false, - invalidMonth : null, - invalidFormat : false, - userInvalidated : false, - iso: false - }; - } - - function printMsg(msg) { - if (moment.suppressDeprecationWarnings === false && - typeof console !== 'undefined' && console.warn) { - console.warn('Deprecation warning: ' + msg); - } - } - - function deprecate(msg, fn) { - var firstTime = true; - return extend(function () { - if (firstTime) { - printMsg(msg); - firstTime = false; - } - return fn.apply(this, arguments); - }, fn); - } - - function deprecateSimple(name, msg) { - if (!deprecations[name]) { - printMsg(msg); - deprecations[name] = true; - } - } - - function padToken(func, count) { - return function (a) { - return leftZeroFill(func.call(this, a), count); - }; - } - function ordinalizeToken(func, period) { - return function (a) { - return this.localeData().ordinal(func.call(this, a), period); - }; - } - - while (ordinalizeTokens.length) { - i = ordinalizeTokens.pop(); - formatTokenFunctions[i + 'o'] = ordinalizeToken(formatTokenFunctions[i], i); - } - while (paddedTokens.length) { - i = paddedTokens.pop(); - formatTokenFunctions[i + i] = padToken(formatTokenFunctions[i], 2); - } - formatTokenFunctions.DDDD = padToken(formatTokenFunctions.DDD, 3); - - - /************************************ - Constructors - ************************************/ - - function Locale() { - } - - // Moment prototype object - function Moment(config, skipOverflow) { - if (skipOverflow !== false) { - checkOverflow(config); - } - copyConfig(this, config); - this._d = new Date(+config._d); - } - - // Duration Constructor - function Duration(duration) { - var normalizedInput = normalizeObjectUnits(duration), - years = normalizedInput.year || 0, - quarters = normalizedInput.quarter || 0, - months = normalizedInput.month || 0, - weeks = normalizedInput.week || 0, - days = normalizedInput.day || 0, - hours = normalizedInput.hour || 0, - minutes = normalizedInput.minute || 0, - seconds = normalizedInput.second || 0, - milliseconds = normalizedInput.millisecond || 0; - - // representation for dateAddRemove - this._milliseconds = +milliseconds + - seconds * 1e3 + // 1000 - minutes * 6e4 + // 1000 * 60 - hours * 36e5; // 1000 * 60 * 60 - // Because of dateAddRemove treats 24 hours as different from a - // day when working around DST, we need to store them separately - this._days = +days + - weeks * 7; - // It is impossible translate months into days without knowing - // which months you are are talking about, so we have to store - // it separately. - this._months = +months + - quarters * 3 + - years * 12; - - this._data = {}; - - this._locale = moment.localeData(); - - this._bubble(); - } - - /************************************ - Helpers - ************************************/ - - - function extend(a, b) { - for (var i in b) { - if (hasOwnProp(b, i)) { - a[i] = b[i]; - } - } - - if (hasOwnProp(b, 'toString')) { - a.toString = b.toString; - } - - if (hasOwnProp(b, 'valueOf')) { - a.valueOf = b.valueOf; - } - - return a; - } - - function copyConfig(to, from) { - var i, prop, val; - - if (typeof from._isAMomentObject !== 'undefined') { - to._isAMomentObject = from._isAMomentObject; - } - if (typeof from._i !== 'undefined') { - to._i = from._i; - } - if (typeof from._f !== 'undefined') { - to._f = from._f; - } - if (typeof from._l !== 'undefined') { - to._l = from._l; - } - if (typeof from._strict !== 'undefined') { - to._strict = from._strict; - } - if (typeof from._tzm !== 'undefined') { - to._tzm = from._tzm; - } - if (typeof from._isUTC !== 'undefined') { - to._isUTC = from._isUTC; - } - if (typeof from._offset !== 'undefined') { - to._offset = from._offset; - } - if (typeof from._pf !== 'undefined') { - to._pf = from._pf; - } - if (typeof from._locale !== 'undefined') { - to._locale = from._locale; - } - - if (momentProperties.length > 0) { - for (i in momentProperties) { - prop = momentProperties[i]; - val = from[prop]; - if (typeof val !== 'undefined') { - to[prop] = val; - } - } - } - - return to; - } - - function absRound(number) { - if (number < 0) { - return Math.ceil(number); - } else { - return Math.floor(number); - } - } - - // left zero fill a number - // see http://jsperf.com/left-zero-filling for performance comparison - function leftZeroFill(number, targetLength, forceSign) { - var output = '' + Math.abs(number), - sign = number >= 0; - - while (output.length < targetLength) { - output = '0' + output; - } - return (sign ? (forceSign ? '+' : '') : '-') + output; - } - - function positiveMomentsDifference(base, other) { - var res = {milliseconds: 0, months: 0}; - - res.months = other.month() - base.month() + - (other.year() - base.year()) * 12; - if (base.clone().add(res.months, 'M').isAfter(other)) { - --res.months; - } - - res.milliseconds = +other - +(base.clone().add(res.months, 'M')); - - return res; - } - - function momentsDifference(base, other) { - var res; - other = makeAs(other, base); - if (base.isBefore(other)) { - res = positiveMomentsDifference(base, other); - } else { - res = positiveMomentsDifference(other, base); - res.milliseconds = -res.milliseconds; - res.months = -res.months; - } - - return res; - } - - // TODO: remove 'name' arg after deprecation is removed - function createAdder(direction, name) { - return function (val, period) { - var dur, tmp; - //invert the arguments, but complain about it - if (period !== null && !isNaN(+period)) { - deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period).'); - tmp = val; val = period; period = tmp; - } - - val = typeof val === 'string' ? +val : val; - dur = moment.duration(val, period); - addOrSubtractDurationFromMoment(this, dur, direction); - return this; - }; - } - - function addOrSubtractDurationFromMoment(mom, duration, isAdding, updateOffset) { - var milliseconds = duration._milliseconds, - days = duration._days, - months = duration._months; - updateOffset = updateOffset == null ? true : updateOffset; - - if (milliseconds) { - mom._d.setTime(+mom._d + milliseconds * isAdding); - } - if (days) { - rawSetter(mom, 'Date', rawGetter(mom, 'Date') + days * isAdding); - } - if (months) { - rawMonthSetter(mom, rawGetter(mom, 'Month') + months * isAdding); - } - if (updateOffset) { - moment.updateOffset(mom, days || months); - } - } - - // check if is an array - function isArray(input) { - return Object.prototype.toString.call(input) === '[object Array]'; - } - - function isDate(input) { - return Object.prototype.toString.call(input) === '[object Date]' || - input instanceof Date; - } - - // compare two arrays, return the number of differences - function compareArrays(array1, array2, dontConvert) { - var len = Math.min(array1.length, array2.length), - lengthDiff = Math.abs(array1.length - array2.length), - diffs = 0, - i; - for (i = 0; i < len; i++) { - if ((dontConvert && array1[i] !== array2[i]) || - (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) { - diffs++; - } - } - return diffs + lengthDiff; - } - - function normalizeUnits(units) { - if (units) { - var lowered = units.toLowerCase().replace(/(.)s$/, '$1'); - units = unitAliases[units] || camelFunctions[lowered] || lowered; - } - return units; - } - - function normalizeObjectUnits(inputObject) { - var normalizedInput = {}, - normalizedProp, - prop; - - for (prop in inputObject) { - if (hasOwnProp(inputObject, prop)) { - normalizedProp = normalizeUnits(prop); - if (normalizedProp) { - normalizedInput[normalizedProp] = inputObject[prop]; - } - } - } - - return normalizedInput; - } - - function makeList(field) { - var count, setter; - - if (field.indexOf('week') === 0) { - count = 7; - setter = 'day'; - } - else if (field.indexOf('month') === 0) { - count = 12; - setter = 'month'; - } - else { - return; - } - - moment[field] = function (format, index) { - var i, getter, - method = moment._locale[field], - results = []; - - if (typeof format === 'number') { - index = format; - format = undefined; - } - - getter = function (i) { - var m = moment().utc().set(setter, i); - return method.call(moment._locale, m, format || ''); - }; - - if (index != null) { - return getter(index); - } - else { - for (i = 0; i < count; i++) { - results.push(getter(i)); - } - return results; - } - }; - } - - function toInt(argumentForCoercion) { - var coercedNumber = +argumentForCoercion, - value = 0; - - if (coercedNumber !== 0 && isFinite(coercedNumber)) { - if (coercedNumber >= 0) { - value = Math.floor(coercedNumber); - } else { - value = Math.ceil(coercedNumber); - } - } - - return value; - } - - function daysInMonth(year, month) { - return new Date(Date.UTC(year, month + 1, 0)).getUTCDate(); - } - - function weeksInYear(year, dow, doy) { - return weekOfYear(moment([year, 11, 31 + dow - doy]), dow, doy).week; - } - - function daysInYear(year) { - return isLeapYear(year) ? 366 : 365; - } - - function isLeapYear(year) { - return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0; - } - - function checkOverflow(m) { - var overflow; - if (m._a && m._pf.overflow === -2) { - overflow = - m._a[MONTH] < 0 || m._a[MONTH] > 11 ? MONTH : - m._a[DATE] < 1 || m._a[DATE] > daysInMonth(m._a[YEAR], m._a[MONTH]) ? DATE : - m._a[HOUR] < 0 || m._a[HOUR] > 24 || - (m._a[HOUR] === 24 && (m._a[MINUTE] !== 0 || - m._a[SECOND] !== 0 || - m._a[MILLISECOND] !== 0)) ? HOUR : - m._a[MINUTE] < 0 || m._a[MINUTE] > 59 ? MINUTE : - m._a[SECOND] < 0 || m._a[SECOND] > 59 ? SECOND : - m._a[MILLISECOND] < 0 || m._a[MILLISECOND] > 999 ? MILLISECOND : - -1; - - if (m._pf._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { - overflow = DATE; - } - - m._pf.overflow = overflow; - } - } - - function isValid(m) { - if (m._isValid == null) { - m._isValid = !isNaN(m._d.getTime()) && - m._pf.overflow < 0 && - !m._pf.empty && - !m._pf.invalidMonth && - !m._pf.nullInput && - !m._pf.invalidFormat && - !m._pf.userInvalidated; - - if (m._strict) { - m._isValid = m._isValid && - m._pf.charsLeftOver === 0 && - m._pf.unusedTokens.length === 0 && - m._pf.bigHour === undefined; - } - } - return m._isValid; - } - - function normalizeLocale(key) { - return key ? key.toLowerCase().replace('_', '-') : key; - } - - // pick the locale from the array - // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each - // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root - function chooseLocale(names) { - var i = 0, j, next, locale, split; - - while (i < names.length) { - split = normalizeLocale(names[i]).split('-'); - j = split.length; - next = normalizeLocale(names[i + 1]); - next = next ? next.split('-') : null; - while (j > 0) { - locale = loadLocale(split.slice(0, j).join('-')); - if (locale) { - return locale; - } - if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { - //the next array item is better than a shallower substring of this one - break; - } - j--; - } - i++; - } - return null; - } - - function loadLocale(name) { - var oldLocale = null; - if (!locales[name] && hasModule) { - try { - oldLocale = moment.locale(); - require('./locale/' + name); - // because defineLocale currently also sets the global locale, we want to undo that for lazy loaded locales - moment.locale(oldLocale); - } catch (e) { } - } - return locales[name]; - } - - // Return a moment from input, that is local/utc/zone equivalent to model. - function makeAs(input, model) { - var res, diff; - if (model._isUTC) { - res = model.clone(); - diff = (moment.isMoment(input) || isDate(input) ? - +input : +moment(input)) - (+res); - // Use low-level api, because this fn is low-level api. - res._d.setTime(+res._d + diff); - moment.updateOffset(res, false); - return res; - } else { - return moment(input).local(); - } - } - - /************************************ - Locale - ************************************/ - - - extend(Locale.prototype, { - - set : function (config) { - var prop, i; - for (i in config) { - prop = config[i]; - if (typeof prop === 'function') { - this[i] = prop; - } else { - this['_' + i] = prop; - } - } - // Lenient ordinal parsing accepts just a number in addition to - // number + (possibly) stuff coming from _ordinalParseLenient. - this._ordinalParseLenient = new RegExp(this._ordinalParse.source + '|' + /\d{1,2}/.source); - }, - - _months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), - months : function (m) { - return this._months[m.month()]; - }, - - _monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), - monthsShort : function (m) { - return this._monthsShort[m.month()]; - }, - - monthsParse : function (monthName, format, strict) { - var i, mom, regex; - - if (!this._monthsParse) { - this._monthsParse = []; - this._longMonthsParse = []; - this._shortMonthsParse = []; - } - - for (i = 0; i < 12; i++) { - // make the regex if we don't have it already - mom = moment.utc([2000, i]); - if (strict && !this._longMonthsParse[i]) { - this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); - this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); - } - if (!strict && !this._monthsParse[i]) { - regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); - this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { - return i; - } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { - return i; - } else if (!strict && this._monthsParse[i].test(monthName)) { - return i; - } - } - }, - - _weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), - weekdays : function (m) { - return this._weekdays[m.day()]; - }, - - _weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), - weekdaysShort : function (m) { - return this._weekdaysShort[m.day()]; - }, - - _weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), - weekdaysMin : function (m) { - return this._weekdaysMin[m.day()]; - }, - - weekdaysParse : function (weekdayName) { - var i, mom, regex; - - if (!this._weekdaysParse) { - this._weekdaysParse = []; - } - - for (i = 0; i < 7; i++) { - // make the regex if we don't have it already - if (!this._weekdaysParse[i]) { - mom = moment([2000, 1]).day(i); - regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); - this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); - } - // test the regex - if (this._weekdaysParse[i].test(weekdayName)) { - return i; - } - } - }, - - _longDateFormat : { - LTS : 'h:mm:ss A', - LT : 'h:mm A', - L : 'MM/DD/YYYY', - LL : 'MMMM D, YYYY', - LLL : 'MMMM D, YYYY LT', - LLLL : 'dddd, MMMM D, YYYY LT' - }, - longDateFormat : function (key) { - var output = this._longDateFormat[key]; - if (!output && this._longDateFormat[key.toUpperCase()]) { - output = this._longDateFormat[key.toUpperCase()].replace(/MMMM|MM|DD|dddd/g, function (val) { - return val.slice(1); - }); - this._longDateFormat[key] = output; - } - return output; - }, - - isPM : function (input) { - // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays - // Using charAt should be more compatible. - return ((input + '').toLowerCase().charAt(0) === 'p'); - }, - - _meridiemParse : /[ap]\.?m?\.?/i, - meridiem : function (hours, minutes, isLower) { - if (hours > 11) { - return isLower ? 'pm' : 'PM'; - } else { - return isLower ? 'am' : 'AM'; - } - }, - - _calendar : { - sameDay : '[Today at] LT', - nextDay : '[Tomorrow at] LT', - nextWeek : 'dddd [at] LT', - lastDay : '[Yesterday at] LT', - lastWeek : '[Last] dddd [at] LT', - sameElse : 'L' - }, - calendar : function (key, mom, now) { - var output = this._calendar[key]; - return typeof output === 'function' ? output.apply(mom, [now]) : output; - }, - - _relativeTime : { - future : 'in %s', - past : '%s ago', - s : 'a few seconds', - m : 'a minute', - mm : '%d minutes', - h : 'an hour', - hh : '%d hours', - d : 'a day', - dd : '%d days', - M : 'a month', - MM : '%d months', - y : 'a year', - yy : '%d years' - }, - - relativeTime : function (number, withoutSuffix, string, isFuture) { - var output = this._relativeTime[string]; - return (typeof output === 'function') ? - output(number, withoutSuffix, string, isFuture) : - output.replace(/%d/i, number); - }, - - pastFuture : function (diff, output) { - var format = this._relativeTime[diff > 0 ? 'future' : 'past']; - return typeof format === 'function' ? format(output) : format.replace(/%s/i, output); - }, - - ordinal : function (number) { - return this._ordinal.replace('%d', number); - }, - _ordinal : '%d', - _ordinalParse : /\d{1,2}/, - - preparse : function (string) { - return string; - }, - - postformat : function (string) { - return string; - }, - - week : function (mom) { - return weekOfYear(mom, this._week.dow, this._week.doy).week; - }, - - _week : { - dow : 0, // Sunday is the first day of the week. - doy : 6 // The week that contains Jan 1st is the first week of the year. - }, - - _invalidDate: 'Invalid date', - invalidDate: function () { - return this._invalidDate; - } - }); - - /************************************ - Formatting - ************************************/ - - - function removeFormattingTokens(input) { - if (input.match(/\[[\s\S]/)) { - return input.replace(/^\[|\]$/g, ''); - } - return input.replace(/\\/g, ''); - } - - function makeFormatFunction(format) { - var array = format.match(formattingTokens), i, length; - - for (i = 0, length = array.length; i < length; i++) { - if (formatTokenFunctions[array[i]]) { - array[i] = formatTokenFunctions[array[i]]; - } else { - array[i] = removeFormattingTokens(array[i]); - } - } - - return function (mom) { - var output = ''; - for (i = 0; i < length; i++) { - output += array[i] instanceof Function ? array[i].call(mom, format) : array[i]; - } - return output; - }; - } - - // format date using native date object - function formatMoment(m, format) { - if (!m.isValid()) { - return m.localeData().invalidDate(); - } - - format = expandFormat(format, m.localeData()); - - if (!formatFunctions[format]) { - formatFunctions[format] = makeFormatFunction(format); - } - - return formatFunctions[format](m); - } - - function expandFormat(format, locale) { - var i = 5; - - function replaceLongDateFormatTokens(input) { - return locale.longDateFormat(input) || input; - } - - localFormattingTokens.lastIndex = 0; - while (i >= 0 && localFormattingTokens.test(format)) { - format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); - localFormattingTokens.lastIndex = 0; - i -= 1; - } - - return format; - } - - - /************************************ - Parsing - ************************************/ - - - // get the regex to find the next token - function getParseRegexForToken(token, config) { - var a, strict = config._strict; - switch (token) { - case 'Q': - return parseTokenOneDigit; - case 'DDDD': - return parseTokenThreeDigits; - case 'YYYY': - case 'GGGG': - case 'gggg': - return strict ? parseTokenFourDigits : parseTokenOneToFourDigits; - case 'Y': - case 'G': - case 'g': - return parseTokenSignedNumber; - case 'YYYYYY': - case 'YYYYY': - case 'GGGGG': - case 'ggggg': - return strict ? parseTokenSixDigits : parseTokenOneToSixDigits; - case 'S': - if (strict) { - return parseTokenOneDigit; - } - /* falls through */ - case 'SS': - if (strict) { - return parseTokenTwoDigits; - } - /* falls through */ - case 'SSS': - if (strict) { - return parseTokenThreeDigits; - } - /* falls through */ - case 'DDD': - return parseTokenOneToThreeDigits; - case 'MMM': - case 'MMMM': - case 'dd': - case 'ddd': - case 'dddd': - return parseTokenWord; - case 'a': - case 'A': - return config._locale._meridiemParse; - case 'x': - return parseTokenOffsetMs; - case 'X': - return parseTokenTimestampMs; - case 'Z': - case 'ZZ': - return parseTokenTimezone; - case 'T': - return parseTokenT; - case 'SSSS': - return parseTokenDigits; - case 'MM': - case 'DD': - case 'YY': - case 'GG': - case 'gg': - case 'HH': - case 'hh': - case 'mm': - case 'ss': - case 'ww': - case 'WW': - return strict ? parseTokenTwoDigits : parseTokenOneOrTwoDigits; - case 'M': - case 'D': - case 'd': - case 'H': - case 'h': - case 'm': - case 's': - case 'w': - case 'W': - case 'e': - case 'E': - return parseTokenOneOrTwoDigits; - case 'Do': - return strict ? config._locale._ordinalParse : config._locale._ordinalParseLenient; - default : - a = new RegExp(regexpEscape(unescapeFormat(token.replace('\\', '')), 'i')); - return a; - } - } - - function timezoneMinutesFromString(string) { - string = string || ''; - var possibleTzMatches = (string.match(parseTokenTimezone) || []), - tzChunk = possibleTzMatches[possibleTzMatches.length - 1] || [], - parts = (tzChunk + '').match(parseTimezoneChunker) || ['-', 0, 0], - minutes = +(parts[1] * 60) + toInt(parts[2]); - - return parts[0] === '+' ? -minutes : minutes; - } - - // function to convert string input to date - function addTimeToArrayFromToken(token, input, config) { - var a, datePartArray = config._a; - - switch (token) { - // QUARTER - case 'Q': - if (input != null) { - datePartArray[MONTH] = (toInt(input) - 1) * 3; - } - break; - // MONTH - case 'M' : // fall through to MM - case 'MM' : - if (input != null) { - datePartArray[MONTH] = toInt(input) - 1; - } - break; - case 'MMM' : // fall through to MMMM - case 'MMMM' : - a = config._locale.monthsParse(input, token, config._strict); - // if we didn't find a month name, mark the date as invalid. - if (a != null) { - datePartArray[MONTH] = a; - } else { - config._pf.invalidMonth = input; - } - break; - // DAY OF MONTH - case 'D' : // fall through to DD - case 'DD' : - if (input != null) { - datePartArray[DATE] = toInt(input); - } - break; - case 'Do' : - if (input != null) { - datePartArray[DATE] = toInt(parseInt( - input.match(/\d{1,2}/)[0], 10)); - } - break; - // DAY OF YEAR - case 'DDD' : // fall through to DDDD - case 'DDDD' : - if (input != null) { - config._dayOfYear = toInt(input); - } - - break; - // YEAR - case 'YY' : - datePartArray[YEAR] = moment.parseTwoDigitYear(input); - break; - case 'YYYY' : - case 'YYYYY' : - case 'YYYYYY' : - datePartArray[YEAR] = toInt(input); - break; - // AM / PM - case 'a' : // fall through to A - case 'A' : - config._isPm = config._locale.isPM(input); - break; - // HOUR - case 'h' : // fall through to hh - case 'hh' : - config._pf.bigHour = true; - /* falls through */ - case 'H' : // fall through to HH - case 'HH' : - datePartArray[HOUR] = toInt(input); - break; - // MINUTE - case 'm' : // fall through to mm - case 'mm' : - datePartArray[MINUTE] = toInt(input); - break; - // SECOND - case 's' : // fall through to ss - case 'ss' : - datePartArray[SECOND] = toInt(input); - break; - // MILLISECOND - case 'S' : - case 'SS' : - case 'SSS' : - case 'SSSS' : - datePartArray[MILLISECOND] = toInt(('0.' + input) * 1000); - break; - // UNIX OFFSET (MILLISECONDS) - case 'x': - config._d = new Date(toInt(input)); - break; - // UNIX TIMESTAMP WITH MS - case 'X': - config._d = new Date(parseFloat(input) * 1000); - break; - // TIMEZONE - case 'Z' : // fall through to ZZ - case 'ZZ' : - config._useUTC = true; - config._tzm = timezoneMinutesFromString(input); - break; - // WEEKDAY - human - case 'dd': - case 'ddd': - case 'dddd': - a = config._locale.weekdaysParse(input); - // if we didn't get a weekday name, mark the date as invalid - if (a != null) { - config._w = config._w || {}; - config._w['d'] = a; - } else { - config._pf.invalidWeekday = input; - } - break; - // WEEK, WEEK DAY - numeric - case 'w': - case 'ww': - case 'W': - case 'WW': - case 'd': - case 'e': - case 'E': - token = token.substr(0, 1); - /* falls through */ - case 'gggg': - case 'GGGG': - case 'GGGGG': - token = token.substr(0, 2); - if (input) { - config._w = config._w || {}; - config._w[token] = toInt(input); - } - break; - case 'gg': - case 'GG': - config._w = config._w || {}; - config._w[token] = moment.parseTwoDigitYear(input); - } - } - - function dayOfYearFromWeekInfo(config) { - var w, weekYear, week, weekday, dow, doy, temp; - - w = config._w; - if (w.GG != null || w.W != null || w.E != null) { - dow = 1; - doy = 4; - - // TODO: We need to take the current isoWeekYear, but that depends on - // how we interpret now (local, utc, fixed offset). So create - // a now version of current config (take local/utc/offset flags, and - // create now). - weekYear = dfl(w.GG, config._a[YEAR], weekOfYear(moment(), 1, 4).year); - week = dfl(w.W, 1); - weekday = dfl(w.E, 1); - } else { - dow = config._locale._week.dow; - doy = config._locale._week.doy; - - weekYear = dfl(w.gg, config._a[YEAR], weekOfYear(moment(), dow, doy).year); - week = dfl(w.w, 1); - - if (w.d != null) { - // weekday -- low day numbers are considered next week - weekday = w.d; - if (weekday < dow) { - ++week; - } - } else if (w.e != null) { - // local weekday -- counting starts from begining of week - weekday = w.e + dow; - } else { - // default to begining of week - weekday = dow; - } - } - temp = dayOfYearFromWeeks(weekYear, week, weekday, doy, dow); - - config._a[YEAR] = temp.year; - config._dayOfYear = temp.dayOfYear; - } - - // convert an array to a date. - // the array should mirror the parameters below - // note: all values past the year are optional and will default to the lowest possible value. - // [year, month, day , hour, minute, second, millisecond] - function dateFromConfig(config) { - var i, date, input = [], currentDate, yearToUse; - - if (config._d) { - return; - } - - currentDate = currentDateArray(config); - - //compute day of the year from weeks and weekdays - if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { - dayOfYearFromWeekInfo(config); - } - - //if the day of the year is set, figure out what it is - if (config._dayOfYear) { - yearToUse = dfl(config._a[YEAR], currentDate[YEAR]); - - if (config._dayOfYear > daysInYear(yearToUse)) { - config._pf._overflowDayOfYear = true; - } - - date = makeUTCDate(yearToUse, 0, config._dayOfYear); - config._a[MONTH] = date.getUTCMonth(); - config._a[DATE] = date.getUTCDate(); - } - - // Default to current date. - // * if no year, month, day of month are given, default to today - // * if day of month is given, default month and year - // * if month is given, default only year - // * if year is given, don't default anything - for (i = 0; i < 3 && config._a[i] == null; ++i) { - config._a[i] = input[i] = currentDate[i]; - } - - // Zero out whatever was not defaulted, including time - for (; i < 7; i++) { - config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i]; - } - - // Check for 24:00:00.000 - if (config._a[HOUR] === 24 && - config._a[MINUTE] === 0 && - config._a[SECOND] === 0 && - config._a[MILLISECOND] === 0) { - config._nextDay = true; - config._a[HOUR] = 0; - } - - config._d = (config._useUTC ? makeUTCDate : makeDate).apply(null, input); - // Apply timezone offset from input. The actual zone can be changed - // with parseZone. - if (config._tzm != null) { - config._d.setUTCMinutes(config._d.getUTCMinutes() + config._tzm); - } - - if (config._nextDay) { - config._a[HOUR] = 24; - } - } - - function dateFromObject(config) { - var normalizedInput; - - if (config._d) { - return; - } - - normalizedInput = normalizeObjectUnits(config._i); - config._a = [ - normalizedInput.year, - normalizedInput.month, - normalizedInput.day || normalizedInput.date, - normalizedInput.hour, - normalizedInput.minute, - normalizedInput.second, - normalizedInput.millisecond - ]; - - dateFromConfig(config); - } - - function currentDateArray(config) { - var now = new Date(); - if (config._useUTC) { - return [ - now.getUTCFullYear(), - now.getUTCMonth(), - now.getUTCDate() - ]; - } else { - return [now.getFullYear(), now.getMonth(), now.getDate()]; - } - } - - // date from string and format string - function makeDateFromStringAndFormat(config) { - if (config._f === moment.ISO_8601) { - parseISO(config); - return; - } - - config._a = []; - config._pf.empty = true; - - // This array is used to make a Date, either with `new Date` or `Date.UTC` - var string = '' + config._i, - i, parsedInput, tokens, token, skipped, - stringLength = string.length, - totalParsedInputLength = 0; - - tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; - - for (i = 0; i < tokens.length; i++) { - token = tokens[i]; - parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; - if (parsedInput) { - skipped = string.substr(0, string.indexOf(parsedInput)); - if (skipped.length > 0) { - config._pf.unusedInput.push(skipped); - } - string = string.slice(string.indexOf(parsedInput) + parsedInput.length); - totalParsedInputLength += parsedInput.length; - } - // don't parse if it's not a known token - if (formatTokenFunctions[token]) { - if (parsedInput) { - config._pf.empty = false; - } - else { - config._pf.unusedTokens.push(token); - } - addTimeToArrayFromToken(token, parsedInput, config); - } - else if (config._strict && !parsedInput) { - config._pf.unusedTokens.push(token); - } - } - - // add remaining unparsed input length to the string - config._pf.charsLeftOver = stringLength - totalParsedInputLength; - if (string.length > 0) { - config._pf.unusedInput.push(string); - } - - // clear _12h flag if hour is <= 12 - if (config._pf.bigHour === true && config._a[HOUR] <= 12) { - config._pf.bigHour = undefined; - } - // handle am pm - if (config._isPm && config._a[HOUR] < 12) { - config._a[HOUR] += 12; - } - // if is 12 am, change hours to 0 - if (config._isPm === false && config._a[HOUR] === 12) { - config._a[HOUR] = 0; - } - dateFromConfig(config); - checkOverflow(config); - } - - function unescapeFormat(s) { - return s.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { - return p1 || p2 || p3 || p4; - }); - } - - // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript - function regexpEscape(s) { - return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - } - - // date from string and array of format strings - function makeDateFromStringAndArray(config) { - var tempConfig, - bestMoment, - - scoreToBeat, - i, - currentScore; - - if (config._f.length === 0) { - config._pf.invalidFormat = true; - config._d = new Date(NaN); - return; - } - - for (i = 0; i < config._f.length; i++) { - currentScore = 0; - tempConfig = copyConfig({}, config); - if (config._useUTC != null) { - tempConfig._useUTC = config._useUTC; - } - tempConfig._pf = defaultParsingFlags(); - tempConfig._f = config._f[i]; - makeDateFromStringAndFormat(tempConfig); - - if (!isValid(tempConfig)) { - continue; - } - - // if there is any input that was not parsed add a penalty for that format - currentScore += tempConfig._pf.charsLeftOver; - - //or tokens - currentScore += tempConfig._pf.unusedTokens.length * 10; - - tempConfig._pf.score = currentScore; - - if (scoreToBeat == null || currentScore < scoreToBeat) { - scoreToBeat = currentScore; - bestMoment = tempConfig; - } - } - - extend(config, bestMoment || tempConfig); - } - - // date from iso format - function parseISO(config) { - var i, l, - string = config._i, - match = isoRegex.exec(string); - - if (match) { - config._pf.iso = true; - for (i = 0, l = isoDates.length; i < l; i++) { - if (isoDates[i][1].exec(string)) { - // match[5] should be 'T' or undefined - config._f = isoDates[i][0] + (match[6] || ' '); - break; - } - } - for (i = 0, l = isoTimes.length; i < l; i++) { - if (isoTimes[i][1].exec(string)) { - config._f += isoTimes[i][0]; - break; - } - } - if (string.match(parseTokenTimezone)) { - config._f += 'Z'; - } - makeDateFromStringAndFormat(config); - } else { - config._isValid = false; - } - } - - // date from iso format or fallback - function makeDateFromString(config) { - parseISO(config); - if (config._isValid === false) { - delete config._isValid; - moment.createFromInputFallback(config); - } - } - - function map(arr, fn) { - var res = [], i; - for (i = 0; i < arr.length; ++i) { - res.push(fn(arr[i], i)); - } - return res; - } - - function makeDateFromInput(config) { - var input = config._i, matched; - if (input === undefined) { - config._d = new Date(); - } else if (isDate(input)) { - config._d = new Date(+input); - } else if ((matched = aspNetJsonRegex.exec(input)) !== null) { - config._d = new Date(+matched[1]); - } else if (typeof input === 'string') { - makeDateFromString(config); - } else if (isArray(input)) { - config._a = map(input.slice(0), function (obj) { - return parseInt(obj, 10); - }); - dateFromConfig(config); - } else if (typeof(input) === 'object') { - dateFromObject(config); - } else if (typeof(input) === 'number') { - // from milliseconds - config._d = new Date(input); - } else { - moment.createFromInputFallback(config); - } - } - - function makeDate(y, m, d, h, M, s, ms) { - //can't just apply() to create a date: - //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply - var date = new Date(y, m, d, h, M, s, ms); - - //the date constructor doesn't accept years < 1970 - if (y < 1970) { - date.setFullYear(y); - } - return date; - } - - function makeUTCDate(y) { - var date = new Date(Date.UTC.apply(null, arguments)); - if (y < 1970) { - date.setUTCFullYear(y); - } - return date; - } - - function parseWeekday(input, locale) { - if (typeof input === 'string') { - if (!isNaN(input)) { - input = parseInt(input, 10); - } - else { - input = locale.weekdaysParse(input); - if (typeof input !== 'number') { - return null; - } - } - } - return input; - } - - /************************************ - Relative Time - ************************************/ - - - // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize - function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { - return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); - } - - function relativeTime(posNegDuration, withoutSuffix, locale) { - var duration = moment.duration(posNegDuration).abs(), - seconds = round(duration.as('s')), - minutes = round(duration.as('m')), - hours = round(duration.as('h')), - days = round(duration.as('d')), - months = round(duration.as('M')), - years = round(duration.as('y')), - - args = seconds < relativeTimeThresholds.s && ['s', seconds] || - minutes === 1 && ['m'] || - minutes < relativeTimeThresholds.m && ['mm', minutes] || - hours === 1 && ['h'] || - hours < relativeTimeThresholds.h && ['hh', hours] || - days === 1 && ['d'] || - days < relativeTimeThresholds.d && ['dd', days] || - months === 1 && ['M'] || - months < relativeTimeThresholds.M && ['MM', months] || - years === 1 && ['y'] || ['yy', years]; - - args[2] = withoutSuffix; - args[3] = +posNegDuration > 0; - args[4] = locale; - return substituteTimeAgo.apply({}, args); - } - - - /************************************ - Week of Year - ************************************/ - - - // firstDayOfWeek 0 = sun, 6 = sat - // the day of the week that starts the week - // (usually sunday or monday) - // firstDayOfWeekOfYear 0 = sun, 6 = sat - // the first week is the week that contains the first - // of this day of the week - // (eg. ISO weeks use thursday (4)) - function weekOfYear(mom, firstDayOfWeek, firstDayOfWeekOfYear) { - var end = firstDayOfWeekOfYear - firstDayOfWeek, - daysToDayOfWeek = firstDayOfWeekOfYear - mom.day(), - adjustedMoment; - - - if (daysToDayOfWeek > end) { - daysToDayOfWeek -= 7; - } - - if (daysToDayOfWeek < end - 7) { - daysToDayOfWeek += 7; - } - - adjustedMoment = moment(mom).add(daysToDayOfWeek, 'd'); - return { - week: Math.ceil(adjustedMoment.dayOfYear() / 7), - year: adjustedMoment.year() - }; - } - - //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday - function dayOfYearFromWeeks(year, week, weekday, firstDayOfWeekOfYear, firstDayOfWeek) { - var d = makeUTCDate(year, 0, 1).getUTCDay(), daysToAdd, dayOfYear; - - d = d === 0 ? 7 : d; - weekday = weekday != null ? weekday : firstDayOfWeek; - daysToAdd = firstDayOfWeek - d + (d > firstDayOfWeekOfYear ? 7 : 0) - (d < firstDayOfWeek ? 7 : 0); - dayOfYear = 7 * (week - 1) + (weekday - firstDayOfWeek) + daysToAdd + 1; - - return { - year: dayOfYear > 0 ? year : year - 1, - dayOfYear: dayOfYear > 0 ? dayOfYear : daysInYear(year - 1) + dayOfYear - }; - } - - /************************************ - Top Level Functions - ************************************/ - - function makeMoment(config) { - var input = config._i, - format = config._f, - res; - - config._locale = config._locale || moment.localeData(config._l); - - if (input === null || (format === undefined && input === '')) { - return moment.invalid({nullInput: true}); - } - - if (typeof input === 'string') { - config._i = input = config._locale.preparse(input); - } - - if (moment.isMoment(input)) { - return new Moment(input, true); - } else if (format) { - if (isArray(format)) { - makeDateFromStringAndArray(config); - } else { - makeDateFromStringAndFormat(config); - } - } else { - makeDateFromInput(config); - } - - res = new Moment(config); - if (res._nextDay) { - // Adding is smart enough around DST - res.add(1, 'd'); - res._nextDay = undefined; - } - - return res; - } - - moment = function (input, format, locale, strict) { - var c; - - if (typeof(locale) === 'boolean') { - strict = locale; - locale = undefined; - } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._i = input; - c._f = format; - c._l = locale; - c._strict = strict; - c._isUTC = false; - c._pf = defaultParsingFlags(); - - return makeMoment(c); - }; - - moment.suppressDeprecationWarnings = false; - - moment.createFromInputFallback = deprecate( - 'moment construction falls back to js Date. This is ' + - 'discouraged and will be removed in upcoming major ' + - 'release. Please refer to ' + - 'https://github.com/moment/moment/issues/1407 for more info.', - function (config) { - config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); - } - ); - - // Pick a moment m from moments so that m[fn](other) is true for all - // other. This relies on the function fn to be transitive. - // - // moments should either be an array of moment objects or an array, whose - // first element is an array of moment objects. - function pickBy(fn, moments) { - var res, i; - if (moments.length === 1 && isArray(moments[0])) { - moments = moments[0]; - } - if (!moments.length) { - return moment(); - } - res = moments[0]; - for (i = 1; i < moments.length; ++i) { - if (moments[i][fn](res)) { - res = moments[i]; - } - } - return res; - } - - moment.min = function () { - var args = [].slice.call(arguments, 0); - - return pickBy('isBefore', args); - }; - - moment.max = function () { - var args = [].slice.call(arguments, 0); - - return pickBy('isAfter', args); - }; - - // creating with utc - moment.utc = function (input, format, locale, strict) { - var c; - - if (typeof(locale) === 'boolean') { - strict = locale; - locale = undefined; - } - // object construction must be done this way. - // https://github.com/moment/moment/issues/1423 - c = {}; - c._isAMomentObject = true; - c._useUTC = true; - c._isUTC = true; - c._l = locale; - c._i = input; - c._f = format; - c._strict = strict; - c._pf = defaultParsingFlags(); - - return makeMoment(c).utc(); - }; - - // creating with unix timestamp (in seconds) - moment.unix = function (input) { - return moment(input * 1000); - }; - - // duration - moment.duration = function (input, key) { - var duration = input, - // matching against regexp is expensive, do it on demand - match = null, - sign, - ret, - parseIso, - diffRes; - - if (moment.isDuration(input)) { - duration = { - ms: input._milliseconds, - d: input._days, - M: input._months - }; - } else if (typeof input === 'number') { - duration = {}; - if (key) { - duration[key] = input; - } else { - duration.milliseconds = input; - } - } else if (!!(match = aspNetTimeSpanJsonRegex.exec(input))) { - sign = (match[1] === '-') ? -1 : 1; - duration = { - y: 0, - d: toInt(match[DATE]) * sign, - h: toInt(match[HOUR]) * sign, - m: toInt(match[MINUTE]) * sign, - s: toInt(match[SECOND]) * sign, - ms: toInt(match[MILLISECOND]) * sign - }; - } else if (!!(match = isoDurationRegex.exec(input))) { - sign = (match[1] === '-') ? -1 : 1; - parseIso = function (inp) { - // We'd normally use ~~inp for this, but unfortunately it also - // converts floats to ints. - // inp may be undefined, so careful calling replace on it. - var res = inp && parseFloat(inp.replace(',', '.')); - // apply sign while we're at it - return (isNaN(res) ? 0 : res) * sign; - }; - duration = { - y: parseIso(match[2]), - M: parseIso(match[3]), - d: parseIso(match[4]), - h: parseIso(match[5]), - m: parseIso(match[6]), - s: parseIso(match[7]), - w: parseIso(match[8]) - }; - } else if (typeof duration === 'object' && - ('from' in duration || 'to' in duration)) { - diffRes = momentsDifference(moment(duration.from), moment(duration.to)); - - duration = {}; - duration.ms = diffRes.milliseconds; - duration.M = diffRes.months; - } - - ret = new Duration(duration); - - if (moment.isDuration(input) && hasOwnProp(input, '_locale')) { - ret._locale = input._locale; - } - - return ret; - }; - - // version number - moment.version = VERSION; - - // default format - moment.defaultFormat = isoFormat; - - // constant that refers to the ISO standard - moment.ISO_8601 = function () {}; - - // Plugins that add properties should also add the key here (null value), - // so we can properly clone ourselves. - moment.momentProperties = momentProperties; - - // This function will be called whenever a moment is mutated. - // It is intended to keep the offset in sync with the timezone. - moment.updateOffset = function () {}; - - // This function allows you to set a threshold for relative time strings - moment.relativeTimeThreshold = function (threshold, limit) { - if (relativeTimeThresholds[threshold] === undefined) { - return false; - } - if (limit === undefined) { - return relativeTimeThresholds[threshold]; - } - relativeTimeThresholds[threshold] = limit; - return true; - }; - - moment.lang = deprecate( - 'moment.lang is deprecated. Use moment.locale instead.', - function (key, value) { - return moment.locale(key, value); - } - ); - - // This function will load locale and then set the global locale. If - // no arguments are passed in, it will simply return the current global - // locale key. - moment.locale = function (key, values) { - var data; - if (key) { - if (typeof(values) !== 'undefined') { - data = moment.defineLocale(key, values); - } - else { - data = moment.localeData(key); - } - - if (data) { - moment.duration._locale = moment._locale = data; - } - } - - return moment._locale._abbr; - }; - - moment.defineLocale = function (name, values) { - if (values !== null) { - values.abbr = name; - if (!locales[name]) { - locales[name] = new Locale(); - } - locales[name].set(values); - - // backwards compat for now: also set the locale - moment.locale(name); - - return locales[name]; - } else { - // useful for testing - delete locales[name]; - return null; - } - }; - - moment.langData = deprecate( - 'moment.langData is deprecated. Use moment.localeData instead.', - function (key) { - return moment.localeData(key); - } - ); - - // returns locale data - moment.localeData = function (key) { - var locale; - - if (key && key._locale && key._locale._abbr) { - key = key._locale._abbr; - } - - if (!key) { - return moment._locale; - } - - if (!isArray(key)) { - //short-circuit everything else - locale = loadLocale(key); - if (locale) { - return locale; - } - key = [key]; - } - - return chooseLocale(key); - }; - - // compare moment object - moment.isMoment = function (obj) { - return obj instanceof Moment || - (obj != null && hasOwnProp(obj, '_isAMomentObject')); - }; - - // for typechecking Duration objects - moment.isDuration = function (obj) { - return obj instanceof Duration; - }; - - for (i = lists.length - 1; i >= 0; --i) { - makeList(lists[i]); - } - - moment.normalizeUnits = function (units) { - return normalizeUnits(units); - }; - - moment.invalid = function (flags) { - var m = moment.utc(NaN); - if (flags != null) { - extend(m._pf, flags); - } - else { - m._pf.userInvalidated = true; - } - - return m; - }; - - moment.parseZone = function () { - return moment.apply(null, arguments).parseZone(); - }; - - moment.parseTwoDigitYear = function (input) { - return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); - }; - - /************************************ - Moment Prototype - ************************************/ - - - extend(moment.fn = Moment.prototype, { - - clone : function () { - return moment(this); - }, - - valueOf : function () { - return +this._d + ((this._offset || 0) * 60000); - }, - - unix : function () { - return Math.floor(+this / 1000); - }, - - toString : function () { - return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); - }, - - toDate : function () { - return this._offset ? new Date(+this) : this._d; - }, - - toISOString : function () { - var m = moment(this).utc(); - if (0 < m.year() && m.year() <= 9999) { - if ('function' === typeof Date.prototype.toISOString) { - // native implementation is ~50x faster, use it when we can - return this.toDate().toISOString(); - } else { - return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } - } else { - return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]'); - } - }, - - toArray : function () { - var m = this; - return [ - m.year(), - m.month(), - m.date(), - m.hours(), - m.minutes(), - m.seconds(), - m.milliseconds() - ]; - }, - - isValid : function () { - return isValid(this); - }, - - isDSTShifted : function () { - if (this._a) { - return this.isValid() && compareArrays(this._a, (this._isUTC ? moment.utc(this._a) : moment(this._a)).toArray()) > 0; - } - - return false; - }, - - parsingFlags : function () { - return extend({}, this._pf); - }, - - invalidAt: function () { - return this._pf.overflow; - }, - - utc : function (keepLocalTime) { - return this.zone(0, keepLocalTime); - }, - - local : function (keepLocalTime) { - if (this._isUTC) { - this.zone(0, keepLocalTime); - this._isUTC = false; - - if (keepLocalTime) { - this.add(this._dateTzOffset(), 'm'); - } - } - return this; - }, - - format : function (inputString) { - var output = formatMoment(this, inputString || moment.defaultFormat); - return this.localeData().postformat(output); - }, - - add : createAdder(1, 'add'), - - subtract : createAdder(-1, 'subtract'), - - diff : function (input, units, asFloat) { - var that = makeAs(input, this), - zoneDiff = (this.zone() - that.zone()) * 6e4, - diff, output, daysAdjust; - - units = normalizeUnits(units); - - if (units === 'year' || units === 'month') { - // average number of days in the months in the given dates - diff = (this.daysInMonth() + that.daysInMonth()) * 432e5; // 24 * 60 * 60 * 1000 / 2 - // difference in months - output = ((this.year() - that.year()) * 12) + (this.month() - that.month()); - // adjust by taking difference in days, average number of days - // and dst in the given months. - daysAdjust = (this - moment(this).startOf('month')) - - (that - moment(that).startOf('month')); - // same as above but with zones, to negate all dst - daysAdjust -= ((this.zone() - moment(this).startOf('month').zone()) - - (that.zone() - moment(that).startOf('month').zone())) * 6e4; - output += daysAdjust / diff; - if (units === 'year') { - output = output / 12; - } - } else { - diff = (this - that); - output = units === 'second' ? diff / 1e3 : // 1000 - units === 'minute' ? diff / 6e4 : // 1000 * 60 - units === 'hour' ? diff / 36e5 : // 1000 * 60 * 60 - units === 'day' ? (diff - zoneDiff) / 864e5 : // 1000 * 60 * 60 * 24, negate dst - units === 'week' ? (diff - zoneDiff) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst - diff; - } - return asFloat ? output : absRound(output); - }, - - from : function (time, withoutSuffix) { - return moment.duration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix); - }, - - fromNow : function (withoutSuffix) { - return this.from(moment(), withoutSuffix); - }, - - calendar : function (time) { - // We want to compare the start of today, vs this. - // Getting start-of-today depends on whether we're zone'd or not. - var now = time || moment(), - sod = makeAs(now, this).startOf('day'), - diff = this.diff(sod, 'days', true), - format = diff < -6 ? 'sameElse' : - diff < -1 ? 'lastWeek' : - diff < 0 ? 'lastDay' : - diff < 1 ? 'sameDay' : - diff < 2 ? 'nextDay' : - diff < 7 ? 'nextWeek' : 'sameElse'; - return this.format(this.localeData().calendar(format, this, moment(now))); - }, - - isLeapYear : function () { - return isLeapYear(this.year()); - }, - - isDST : function () { - return (this.zone() < this.clone().month(0).zone() || - this.zone() < this.clone().month(5).zone()); - }, - - day : function (input) { - var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); - if (input != null) { - input = parseWeekday(input, this.localeData()); - return this.add(input - day, 'd'); - } else { - return day; - } - }, - - month : makeAccessor('Month', true), - - startOf : function (units) { - units = normalizeUnits(units); - // the following switch intentionally omits break keywords - // to utilize falling through the cases. - switch (units) { - case 'year': - this.month(0); - /* falls through */ - case 'quarter': - case 'month': - this.date(1); - /* falls through */ - case 'week': - case 'isoWeek': - case 'day': - this.hours(0); - /* falls through */ - case 'hour': - this.minutes(0); - /* falls through */ - case 'minute': - this.seconds(0); - /* falls through */ - case 'second': - this.milliseconds(0); - /* falls through */ - } - - // weeks are a special case - if (units === 'week') { - this.weekday(0); - } else if (units === 'isoWeek') { - this.isoWeekday(1); - } - - // quarters are also special - if (units === 'quarter') { - this.month(Math.floor(this.month() / 3) * 3); - } - - return this; - }, - - endOf: function (units) { - units = normalizeUnits(units); - if (units === undefined || units === 'millisecond') { - return this; - } - return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms'); - }, - - isAfter: function (input, units) { - var inputMs; - units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this > +input; - } else { - inputMs = moment.isMoment(input) ? +input : +moment(input); - return inputMs < +this.clone().startOf(units); - } - }, - - isBefore: function (input, units) { - var inputMs; - units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this < +input; - } else { - inputMs = moment.isMoment(input) ? +input : +moment(input); - return +this.clone().endOf(units) < inputMs; - } - }, - - isSame: function (input, units) { - var inputMs; - units = normalizeUnits(units || 'millisecond'); - if (units === 'millisecond') { - input = moment.isMoment(input) ? input : moment(input); - return +this === +input; - } else { - inputMs = +moment(input); - return +(this.clone().startOf(units)) <= inputMs && inputMs <= +(this.clone().endOf(units)); - } - }, - - min: deprecate( - 'moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548', - function (other) { - other = moment.apply(null, arguments); - return other < this ? this : other; - } - ), - - max: deprecate( - 'moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548', - function (other) { - other = moment.apply(null, arguments); - return other > this ? this : other; - } - ), - - // keepLocalTime = true means only change the timezone, without - // affecting the local hour. So 5:31:26 +0300 --[zone(2, true)]--> - // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist int zone - // +0200, so we adjust the time as needed, to be valid. - // - // Keeping the time actually adds/subtracts (one hour) - // from the actual represented time. That is why we call updateOffset - // a second time. In case it wants us to change the offset again - // _changeInProgress == true case, then we have to adjust, because - // there is no such time in the given timezone. - zone : function (input, keepLocalTime) { - var offset = this._offset || 0, - localAdjust; - if (input != null) { - if (typeof input === 'string') { - input = timezoneMinutesFromString(input); - } - if (Math.abs(input) < 16) { - input = input * 60; - } - if (!this._isUTC && keepLocalTime) { - localAdjust = this._dateTzOffset(); - } - this._offset = input; - this._isUTC = true; - if (localAdjust != null) { - this.subtract(localAdjust, 'm'); - } - if (offset !== input) { - if (!keepLocalTime || this._changeInProgress) { - addOrSubtractDurationFromMoment(this, - moment.duration(offset - input, 'm'), 1, false); - } else if (!this._changeInProgress) { - this._changeInProgress = true; - moment.updateOffset(this, true); - this._changeInProgress = null; - } - } - } else { - return this._isUTC ? offset : this._dateTzOffset(); - } - return this; - }, - - zoneAbbr : function () { - return this._isUTC ? 'UTC' : ''; - }, - - zoneName : function () { - return this._isUTC ? 'Coordinated Universal Time' : ''; - }, - - parseZone : function () { - if (this._tzm) { - this.zone(this._tzm); - } else if (typeof this._i === 'string') { - this.zone(this._i); - } - return this; - }, - - hasAlignedHourOffset : function (input) { - if (!input) { - input = 0; - } - else { - input = moment(input).zone(); - } - - return (this.zone() - input) % 60 === 0; - }, - - daysInMonth : function () { - return daysInMonth(this.year(), this.month()); - }, - - dayOfYear : function (input) { - var dayOfYear = round((moment(this).startOf('day') - moment(this).startOf('year')) / 864e5) + 1; - return input == null ? dayOfYear : this.add((input - dayOfYear), 'd'); - }, - - quarter : function (input) { - return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); - }, - - weekYear : function (input) { - var year = weekOfYear(this, this.localeData()._week.dow, this.localeData()._week.doy).year; - return input == null ? year : this.add((input - year), 'y'); - }, - - isoWeekYear : function (input) { - var year = weekOfYear(this, 1, 4).year; - return input == null ? year : this.add((input - year), 'y'); - }, - - week : function (input) { - var week = this.localeData().week(this); - return input == null ? week : this.add((input - week) * 7, 'd'); - }, - - isoWeek : function (input) { - var week = weekOfYear(this, 1, 4).week; - return input == null ? week : this.add((input - week) * 7, 'd'); - }, - - weekday : function (input) { - var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; - return input == null ? weekday : this.add(input - weekday, 'd'); - }, - - isoWeekday : function (input) { - // behaves the same as moment#day except - // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) - // as a setter, sunday should belong to the previous week. - return input == null ? this.day() || 7 : this.day(this.day() % 7 ? input : input - 7); - }, - - isoWeeksInYear : function () { - return weeksInYear(this.year(), 1, 4); - }, - - weeksInYear : function () { - var weekInfo = this.localeData()._week; - return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); - }, - - get : function (units) { - units = normalizeUnits(units); - return this[units](); - }, - - set : function (units, value) { - units = normalizeUnits(units); - if (typeof this[units] === 'function') { - this[units](value); - } - return this; - }, - - // If passed a locale key, it will set the locale for this - // instance. Otherwise, it will return the locale configuration - // variables for this instance. - locale : function (key) { - var newLocaleData; - - if (key === undefined) { - return this._locale._abbr; - } else { - newLocaleData = moment.localeData(key); - if (newLocaleData != null) { - this._locale = newLocaleData; - } - return this; - } - }, - - lang : deprecate( - 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', - function (key) { - if (key === undefined) { - return this.localeData(); - } else { - return this.locale(key); - } - } - ), - - localeData : function () { - return this._locale; - }, - - _dateTzOffset : function () { - // On Firefox.24 Date#getTimezoneOffset returns a floating point. - // https://github.com/moment/moment/pull/1871 - return Math.round(this._d.getTimezoneOffset() / 15) * 15; - } - }); - - function rawMonthSetter(mom, value) { - var dayOfMonth; - - // TODO: Move this out of here! - if (typeof value === 'string') { - value = mom.localeData().monthsParse(value); - // TODO: Another silent failure? - if (typeof value !== 'number') { - return mom; - } - } - - dayOfMonth = Math.min(mom.date(), - daysInMonth(mom.year(), value)); - mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); - return mom; - } - - function rawGetter(mom, unit) { - return mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit](); - } - - function rawSetter(mom, unit, value) { - if (unit === 'Month') { - return rawMonthSetter(mom, value); - } else { - return mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); - } - } - - function makeAccessor(unit, keepTime) { - return function (value) { - if (value != null) { - rawSetter(this, unit, value); - moment.updateOffset(this, keepTime); - return this; - } else { - return rawGetter(this, unit); - } - }; - } - - moment.fn.millisecond = moment.fn.milliseconds = makeAccessor('Milliseconds', false); - moment.fn.second = moment.fn.seconds = makeAccessor('Seconds', false); - moment.fn.minute = moment.fn.minutes = makeAccessor('Minutes', false); - // Setting the hour should keep the time, because the user explicitly - // specified which hour he wants. So trying to maintain the same hour (in - // a new timezone) makes sense. Adding/subtracting hours does not follow - // this rule. - moment.fn.hour = moment.fn.hours = makeAccessor('Hours', true); - // moment.fn.month is defined separately - moment.fn.date = makeAccessor('Date', true); - moment.fn.dates = deprecate('dates accessor is deprecated. Use date instead.', makeAccessor('Date', true)); - moment.fn.year = makeAccessor('FullYear', true); - moment.fn.years = deprecate('years accessor is deprecated. Use year instead.', makeAccessor('FullYear', true)); - - // add plural methods - moment.fn.days = moment.fn.day; - moment.fn.months = moment.fn.month; - moment.fn.weeks = moment.fn.week; - moment.fn.isoWeeks = moment.fn.isoWeek; - moment.fn.quarters = moment.fn.quarter; - - // add aliased format methods - moment.fn.toJSON = moment.fn.toISOString; - - /************************************ - Duration Prototype - ************************************/ - - - function daysToYears (days) { - // 400 years have 146097 days (taking into account leap year rules) - return days * 400 / 146097; - } - - function yearsToDays (years) { - // years * 365 + absRound(years / 4) - - // absRound(years / 100) + absRound(years / 400); - return years * 146097 / 400; - } - - extend(moment.duration.fn = Duration.prototype, { - - _bubble : function () { - var milliseconds = this._milliseconds, - days = this._days, - months = this._months, - data = this._data, - seconds, minutes, hours, years = 0; - - // The following code bubbles up values, see the tests for - // examples of what that means. - data.milliseconds = milliseconds % 1000; - - seconds = absRound(milliseconds / 1000); - data.seconds = seconds % 60; - - minutes = absRound(seconds / 60); - data.minutes = minutes % 60; - - hours = absRound(minutes / 60); - data.hours = hours % 24; - - days += absRound(hours / 24); - - // Accurately convert days to years, assume start from year 0. - years = absRound(daysToYears(days)); - days -= absRound(yearsToDays(years)); - - // 30 days to a month - // TODO (iskren): Use anchor date (like 1st Jan) to compute this. - months += absRound(days / 30); - days %= 30; - - // 12 months -> 1 year - years += absRound(months / 12); - months %= 12; - - data.days = days; - data.months = months; - data.years = years; - }, - - abs : function () { - this._milliseconds = Math.abs(this._milliseconds); - this._days = Math.abs(this._days); - this._months = Math.abs(this._months); - - this._data.milliseconds = Math.abs(this._data.milliseconds); - this._data.seconds = Math.abs(this._data.seconds); - this._data.minutes = Math.abs(this._data.minutes); - this._data.hours = Math.abs(this._data.hours); - this._data.months = Math.abs(this._data.months); - this._data.years = Math.abs(this._data.years); - - return this; - }, - - weeks : function () { - return absRound(this.days() / 7); - }, - - valueOf : function () { - return this._milliseconds + - this._days * 864e5 + - (this._months % 12) * 2592e6 + - toInt(this._months / 12) * 31536e6; - }, - - humanize : function (withSuffix) { - var output = relativeTime(this, !withSuffix, this.localeData()); - - if (withSuffix) { - output = this.localeData().pastFuture(+this, output); - } - - return this.localeData().postformat(output); - }, - - add : function (input, val) { - // supports only 2.0-style add(1, 's') or add(moment) - var dur = moment.duration(input, val); - - this._milliseconds += dur._milliseconds; - this._days += dur._days; - this._months += dur._months; - - this._bubble(); - - return this; - }, - - subtract : function (input, val) { - var dur = moment.duration(input, val); - - this._milliseconds -= dur._milliseconds; - this._days -= dur._days; - this._months -= dur._months; - - this._bubble(); - - return this; - }, - - get : function (units) { - units = normalizeUnits(units); - return this[units.toLowerCase() + 's'](); - }, - - as : function (units) { - var days, months; - units = normalizeUnits(units); - - if (units === 'month' || units === 'year') { - days = this._days + this._milliseconds / 864e5; - months = this._months + daysToYears(days) * 12; - return units === 'month' ? months : months / 12; - } else { - // handle milliseconds separately because of floating point math errors (issue #1867) - days = this._days + Math.round(yearsToDays(this._months / 12)); - switch (units) { - case 'week': return days / 7 + this._milliseconds / 6048e5; - case 'day': return days + this._milliseconds / 864e5; - case 'hour': return days * 24 + this._milliseconds / 36e5; - case 'minute': return days * 24 * 60 + this._milliseconds / 6e4; - case 'second': return days * 24 * 60 * 60 + this._milliseconds / 1000; - // Math.floor prevents floating point math errors here - case 'millisecond': return Math.floor(days * 24 * 60 * 60 * 1000) + this._milliseconds; - default: throw new Error('Unknown unit ' + units); - } - } - }, - - lang : moment.fn.lang, - locale : moment.fn.locale, - - toIsoString : deprecate( - 'toIsoString() is deprecated. Please use toISOString() instead ' + - '(notice the capitals)', - function () { - return this.toISOString(); - } - ), - - toISOString : function () { - // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js - var years = Math.abs(this.years()), - months = Math.abs(this.months()), - days = Math.abs(this.days()), - hours = Math.abs(this.hours()), - minutes = Math.abs(this.minutes()), - seconds = Math.abs(this.seconds() + this.milliseconds() / 1000); - - if (!this.asSeconds()) { - // this is the same as C#'s (Noda) and python (isodate)... - // but not other JS (goog.date) - return 'P0D'; - } - - return (this.asSeconds() < 0 ? '-' : '') + - 'P' + - (years ? years + 'Y' : '') + - (months ? months + 'M' : '') + - (days ? days + 'D' : '') + - ((hours || minutes || seconds) ? 'T' : '') + - (hours ? hours + 'H' : '') + - (minutes ? minutes + 'M' : '') + - (seconds ? seconds + 'S' : ''); - }, - - localeData : function () { - return this._locale; - } - }); - - moment.duration.fn.toString = moment.duration.fn.toISOString; - - function makeDurationGetter(name) { - moment.duration.fn[name] = function () { - return this._data[name]; - }; - } - - for (i in unitMillisecondFactors) { - if (hasOwnProp(unitMillisecondFactors, i)) { - makeDurationGetter(i.toLowerCase()); - } - } - - moment.duration.fn.asMilliseconds = function () { - return this.as('ms'); - }; - moment.duration.fn.asSeconds = function () { - return this.as('s'); - }; - moment.duration.fn.asMinutes = function () { - return this.as('m'); - }; - moment.duration.fn.asHours = function () { - return this.as('h'); - }; - moment.duration.fn.asDays = function () { - return this.as('d'); - }; - moment.duration.fn.asWeeks = function () { - return this.as('weeks'); - }; - moment.duration.fn.asMonths = function () { - return this.as('M'); - }; - moment.duration.fn.asYears = function () { - return this.as('y'); - }; - - /************************************ - Default Locale - ************************************/ - - - // Set default locale, other locale will inherit from English. - moment.locale('en', { - ordinalParse: /\d{1,2}(th|st|nd|rd)/, - ordinal : function (number) { - var b = number % 10, - output = (toInt(number % 100 / 10) === 1) ? 'th' : - (b === 1) ? 'st' : - (b === 2) ? 'nd' : - (b === 3) ? 'rd' : 'th'; - return number + output; - } - }); - - /* EMBED_LOCALES */ - - /************************************ - Exposing Moment - ************************************/ - - function makeGlobal(shouldDeprecate) { - /*global ender:false */ - if (typeof ender !== 'undefined') { - return; - } - oldGlobalMoment = globalScope.moment; - if (shouldDeprecate) { - globalScope.moment = deprecate( - 'Accessing Moment through the global scope is ' + - 'deprecated, and will be removed in an upcoming ' + - 'release.', - moment); - } else { - globalScope.moment = moment; - } - } - - // CommonJS module is defined - if (hasModule) { - module.exports = moment; - } else if (typeof define === 'function' && define.amd) { - define('moment', function (require, exports, module) { - if (module.config && module.config() && module.config().noGlobal === true) { - // release the global variable - globalScope.moment = oldGlobalMoment; - } - - return moment; - }); - makeGlobal(true); - } else { - makeGlobal(); - } -}).call(this); From 19b0ba3417aa6f9330951d96ad1b15b6f3558c36 Mon Sep 17 00:00:00 2001 From: Adam Carr Date: Wed, 12 Aug 2020 20:58:56 +0100 Subject: [PATCH 2/4] Bounce momentjs from 2.8.4 to 2.27.0 --- assets/assets.go | 70 ++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/assets/assets.go b/assets/assets.go index 798bcee..4f0a627 100644 --- a/assets/assets.go +++ b/assets/assets.go @@ -17,7 +17,7 @@ // assets/js/iso88591_map.js // assets/js/jquery-1.11.0.min.js // assets/js/jquery-ui-1.10.4.min.js -// assets/js/moment-2.8.4.js +// assets/js/moment-2.27.0.js // assets/js/punycode.js // assets/js/sjis_map.js // assets/js/strutil.js @@ -105,7 +105,7 @@ func assetsCssBootstrap332MinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/css/bootstrap-3.3.2.min.css", size: 117150, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/css/bootstrap-3.3.2.min.css", size: 117150, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -125,7 +125,7 @@ func assetsCssJqueryUi1104SmoothnessCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/css/jquery-ui-1.10.4-smoothness.css", size: 32021, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/css/jquery-ui-1.10.4-smoothness.css", size: 32021, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -145,7 +145,7 @@ func assetsCssStyleCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/css/style.css", size: 2096, mode: os.FileMode(420), modTime: time.Unix(1467921368, 0)} + info := bindataFileInfo{name: "assets/css/style.css", size: 2096, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -165,7 +165,7 @@ func assetsFontsGlyphiconsHalflingsRegularEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -185,7 +185,7 @@ func assetsFontsGlyphiconsHalflingsRegularSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -205,7 +205,7 @@ func assetsFontsGlyphiconsHalflingsRegularTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -225,7 +225,7 @@ func assetsFontsGlyphiconsHalflingsRegularWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -245,7 +245,7 @@ func assetsFontsGlyphiconsHalflingsRegularWoff2() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/fonts/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -265,7 +265,7 @@ func assetsImagesGithubPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/images/github.png", size: 1714, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/images/github.png", size: 1714, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -285,7 +285,7 @@ func assetsImagesHogPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/images/hog.png", size: 2806, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/images/hog.png", size: 2806, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -305,7 +305,7 @@ func assetsJsAngular138Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/angular-1.3.8.js", size: 949740, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/angular-1.3.8.js", size: 949740, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -325,12 +325,12 @@ func assetsJsBootstrap332MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/bootstrap-3.3.2.min.js", size: 35452, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/bootstrap-3.3.2.min.js", size: 35452, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _assetsJsControllersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x3b\x7f\x77\xdb\x36\x92\x7f\xdb\x9f\x02\x65\x7d\x26\x55\x4b\x94\xd3\xed\xee\xdd\x4a\x51\xb2\xad\x9d\xbc\x78\xb7\x4e\x72\x75\xfa\xf6\xde\xd9\xbe\x3e\x88\x1c\x89\xa8\x41\x82\x05\x20\x3b\x6e\xab\xfb\xec\xf7\x00\x02\x24\x48\x82\xb2\x9d\xf4\xde\xbb\xf3\x1f\x89\x04\xcc\x0c\x66\x06\x83\xf9\x05\xe8\x16\x73\x94\x63\x42\x33\xb6\xfe\xb6\x2c\xd1\x02\xe1\x62\xbd\xa1\x98\xc7\x39\x4b\x37\x14\xa2\xb0\x99\x0c\xc7\xe8\xf2\x7a\x34\xdf\xdf\x6f\x86\xe2\x94\x70\x48\x24\xb9\x85\x28\x94\x98\xaf\x41\x7e\x47\x71\x71\x13\x8e\xd1\x6a\x53\x24\x92\xb0\x22\x1a\xfd\xb6\x8f\x10\x07\xb9\xe1\x05\x52\x1f\x11\xa2\xa4\xb8\x41\xb3\x06\x42\x24\xac\x84\x31\x02\x0a\x39\x14\x72\x8c\xb0\x94\x9c\x2c\x37\x12\xc4\xa8\x42\x40\x76\x2e\x66\x45\x14\x52\x86\xd3\xd6\x02\xc8\x42\x21\xa4\xa4\xc1\x68\x51\xc3\x27\xac\x90\x50\x48\x11\x8d\xe2\x15\x29\xd2\x28\xc4\xe1\x68\x5e\x43\xe3\x58\x2d\x65\x39\x0f\xc7\x28\xfc\x69\xa9\xd9\xaf\x61\xb6\xe6\xd3\x76\x1f\xa1\xed\x7c\x5f\x7d\xdd\xb7\x0b\xa3\xf5\x86\xa4\x66\xf5\x7a\x4c\x7c\x53\xf3\x63\x64\x3e\xc7\x32\x8b\x57\x94\x31\x1e\x45\xcf\xd0\x51\xf5\x9d\xe3\x22\x65\x79\x34\x1a\xa1\xaf\xd0\xf1\xc7\x67\xc7\xc7\xc7\xc7\xa3\x9a\x2d\xf3\x17\x4b\x76\x21\x39\x29\xd6\xd1\xb3\xbf\xf4\x27\xc5\x66\x29\xcc\xac\xe6\x71\xdb\x68\x59\xf3\x70\x64\xff\x0b\x27\xe1\xae\x2f\x0d\x61\x1f\x88\xf3\xdf\x7c\x7f\x3b\xb4\xf3\xc5\xfa\x1f\x70\xff\xaa\x90\xc0\x9d\x7d\x41\x46\x11\x86\xa9\x66\xd8\xb7\xdd\xc2\x2a\xcd\x6e\xdc\x52\xed\x56\x70\x03\xf7\x29\xbb\x2b\xd0\x0d\xdc\x97\x1c\x84\x08\x5c\xf2\x70\x0b\x85\x6c\x36\x9f\xac\xaa\x91\xf8\x2e\x23\x49\x86\x16\x8b\x05\x7a\xf6\x27\xd7\x36\xf4\xba\xf1\x01\x2e\x4b\x7a\x1f\x39\x5c\xfe\xe6\xe8\xd6\xc0\xc0\x2d\xa6\x91\xe6\x2b\x6e\x64\x73\x0c\x67\xeb\x7c\xae\x16\x2d\xb9\xfe\xff\x14\x56\x78\x43\x65\xd4\x18\xd0\x7e\x03\x6f\x0d\xc8\x51\xa2\xb2\x4f\xce\x28\x05\x1e\x85\xe7\x98\xd0\x13\xc9\x69\x4b\x87\x07\x46\x5b\x07\x99\x94\xe5\x18\x1d\x88\x44\x7d\x91\x24\x07\xb6\x31\xc2\x57\x20\x71\xc6\x84\x54\xc7\xb7\x24\x6f\x98\x90\xf3\xfd\x66\x26\xc1\x49\x06\x68\x81\x7e\xdb\xce\x9b\x41\xc5\x30\x81\xbb\x6f\x29\x7d\x03\x38\x05\x2e\xd0\x02\xad\x30\x15\xe0\x62\x6a\x99\xc4\x7b\x28\x52\x52\xac\xbb\x14\xf4\xe4\x09\xdb\x14\x6a\xd9\xe3\xee\xc4\x29\x2b\xc0\x37\xfe\x1a\x13\x0a\x69\x35\xe3\x30\x8f\xc5\x2b\x35\x7b\xc1\x36\x3c\x81\x86\x95\x1a\x40\xd8\x89\x62\x43\xa9\x8b\x49\x24\xe4\xe2\x3d\xf0\xf7\x78\xad\xa6\xff\x7c\xec\xe0\x48\xcc\xe5\x59\x91\xc2\x47\xb5\x9c\xc2\x21\xab\x48\xde\x97\xc0\x56\xd1\x85\x64\x1c\xaf\x61\x84\xbe\x58\x2c\x50\xb0\x29\x52\x58\x91\x02\xd2\xa0\x31\x18\x3f\xfd\x12\x73\x01\x67\x85\x8c\x28\x4b\x30\x35\x54\xe2\x35\xc8\x33\x09\x79\x14\xb8\xd0\xc1\x68\x8c\x9e\xd5\xc7\x9a\xac\xa2\x2f\x3c\x24\x5d\x03\x1d\x92\xa8\xb1\xb5\xd6\xa2\xc2\xbb\xe8\x18\xfd\xb9\x5e\x53\x7b\xad\xfd\x8e\x42\xce\x41\x08\xbc\x06\xa1\x75\xd2\xd8\x88\xda\x47\xff\x94\x64\x12\xd3\xd6\x54\x87\xe2\x05\x60\x9e\x64\x3b\xe8\xee\x02\xd0\xd4\x3d\x00\x0d\xc4\xcf\x24\x37\xfb\xee\x2e\x9c\xcb\x32\x07\x75\xce\x51\xf0\xf6\xdd\xdb\x57\x81\x33\x05\x14\x12\x09\xe9\xbb\x8d\x5c\x33\x52\xac\x2f\xce\x3f\xbc\x57\x60\x2e\x08\xbe\x05\x35\x7c\x01\xfc\x16\xb8\xcf\xf2\xd7\x20\xff\xae\xd7\xed\x85\x19\x15\x62\x36\x9c\xa2\x45\xeb\xe0\x1d\xa1\x10\x97\x64\x7a\xfb\xf5\xf4\x67\x92\x87\x1a\x50\x1f\x59\x45\x28\xda\x70\x3a\x8a\xc5\x26\x49\x40\x88\xda\xf3\x44\x29\x96\xb8\x67\x6e\x95\xb0\x6a\xca\x38\x8e\x18\x38\x67\x3c\xf2\x44\xbb\xbe\x7a\x2a\x0c\x13\x0c\x5a\x82\x44\x23\xf7\x54\x17\x78\x49\xe1\x8f\x11\xaf\x64\xe2\x49\xf2\xd5\xec\xf8\x78\x4d\x89\xf8\xe3\x38\x4b\x81\x82\x84\xcf\xe5\x4d\x31\xd7\x57\xbe\x41\x60\x25\x14\x17\x92\x03\xce\xad\xc3\x6f\x1c\xcc\x5b\x26\xc9\x8a\x24\x58\xe1\xed\xf0\x32\x2e\x58\xcc\xe1\x97\x0d\x08\xf9\x1e\x78\x4e\x84\xd0\x0b\x3a\xe9\xc7\xa8\x63\x9f\xe7\x4c\x45\x4a\x57\x53\xb8\x93\x7a\xe4\x1a\x22\xc2\xa3\x8e\x1f\x58\xe2\xe4\xe6\x03\x3b\x2b\x96\xec\xa3\x4f\xd1\xed\x08\x51\xfb\x5c\x67\x4a\xe8\xf3\x5a\xc5\x84\xda\x53\x6f\xbd\x0b\xbc\x26\x5c\xc8\x4f\x5c\xa5\xe5\xbf\xfb\x53\xae\xbf\x78\x98\xbd\x7a\x96\xc3\x8a\x83\xc8\x22\x93\x36\xb9\xae\x68\xbd\xa6\x50\x6d\xe8\x0e\x8e\x6d\x28\xaa\x38\x46\x2f\x7d\xd6\x80\x66\xb5\x03\xa4\x4c\x80\x6b\x24\x8e\x9a\x1a\x8c\x21\x7b\x37\x41\xdd\x31\xf8\x98\x43\x49\x71\x02\xd1\xf4\xbf\x94\x99\x4f\xc7\x28\xbc\x13\xe1\x08\xfd\xfe\x7b\x37\x45\xd4\x21\x4a\xdb\x55\xc9\x99\x64\x09\xa3\x43\xb8\x47\x28\x9c\x4e\x55\xd6\x57\x63\xa8\x95\x0a\x9c\x03\x3a\x72\xc9\x30\x2e\xd1\x4b\x14\xce\x5a\xa0\x7a\x74\x86\x42\x4d\xa7\x19\xc5\x32\x53\x04\x46\x73\x9f\xea\x50\x01\x77\xe8\x9f\xb0\xbc\x60\xc9\x0d\xc8\xa8\x73\x90\xef\x60\x29\xf4\x44\xe8\xc3\x8e\x71\x9a\xea\x5c\xe1\x7b\x22\x24\x14\x2a\x73\xca\x2b\x43\x70\x8b\x02\xe8\x9d\xee\x4e\xe2\x17\x79\x22\x6f\x2b\xd2\x1d\x1d\x35\x71\x97\xac\x6c\x26\xe6\x1a\xe5\x0b\x74\xec\x12\xf1\xd8\xad\x4b\xc3\x6f\xbb\x6d\x88\xea\xdc\x36\x69\xa6\x8f\x81\x76\xa4\x7e\xee\xcb\x1a\xbc\x5c\xb5\xf0\xdc\x65\xb7\xad\xea\xc9\xe8\x12\x2d\xd0\xdf\x2f\xde\xbd\x8d\x75\xbe\x13\x41\xac\x1d\xe6\xbc\xab\x30\x03\x2c\xe2\x4d\x21\x32\xb2\x92\x91\x19\x70\x20\xef\x32\x42\x21\xea\xc2\x53\x28\xd6\x32\x43\x2f\x1e\xcd\x7d\x8d\x59\xb2\x32\x1a\xf9\x98\x7f\xb2\xeb\x75\x75\xc3\x01\x4b\x70\xf1\x3c\x92\x6c\xbb\x35\xe1\xb8\x72\x2e\x8f\x34\x52\x75\xd8\x3f\xdb\x42\x7b\x79\xb2\xe4\x1b\xe8\x15\xab\x4f\x63\x4c\x27\x18\x03\x9c\x4d\xa7\xaa\xac\x8a\x39\xe0\xf4\xfe\x42\x62\xa9\xdd\x9e\xc3\x41\x7c\xf2\xfd\xbb\x8b\x57\xa7\x1e\x4e\x77\x09\xf3\x88\xb4\xbf\x2d\x91\x62\x64\xdb\x97\xcd\x71\xa5\x8e\x9b\x7d\xd0\x75\x57\xc0\xd1\x90\x6b\xea\x86\xa1\x61\x26\xdd\xe0\xd1\x37\x21\x97\x0f\x6b\x4d\x8e\x6b\x97\x44\x52\x45\x2d\x50\x75\x1f\x5a\x71\x96\xa3\x00\x1d\x39\xf1\xfd\x02\x8a\x14\x78\xc7\x10\x15\x26\x2b\x15\x4d\x15\xf6\xac\x4a\x97\x2c\xbd\xaf\x23\x8e\xe4\xf7\xa7\x90\xb0\x14\xce\x49\x0e\x16\x3d\x3e\xa9\x3a\x21\xb1\xa9\xf6\x2e\x83\x8b\xcd\xf2\x67\x48\x64\x70\x7d\x79\x7c\x3d\x1a\x1b\x42\x12\xaf\x67\x15\x47\x6f\xd8\x3a\xb0\xa3\x24\x61\xc5\x0c\x05\x24\x57\x27\x70\x9a\xb1\x75\x5c\x16\xeb\xa0\xda\x8f\x86\xad\xa2\x2d\xbb\x72\xf1\xad\x13\xa5\x05\x1e\x5b\xee\x8d\x3c\x2e\x92\xc7\x36\x13\x4a\x92\x9b\xdd\xa7\xa6\x4a\xf7\x8d\x63\xeb\x1d\xdb\x3b\x52\xa4\xec\x2e\x5e\xb1\x64\x23\x1a\xbf\xd1\x5a\xb5\x65\x0d\xdb\x7e\x56\xe0\xaa\xd3\xdd\x53\x21\x79\x27\xdf\xda\x14\x20\x12\x5c\xc2\x6b\xce\x72\xad\x7c\x05\xd2\x21\xc7\x41\x90\x5f\xe1\x7d\x9d\xf5\xf4\x4d\x35\x0a\x63\x89\x97\x13\xd3\xba\x0a\x47\x71\x06\x64\x9d\xc9\xe8\x20\xaa\x84\x19\xc5\xa4\x28\x80\xbf\xa9\x46\x47\x68\xe2\x41\x61\xab\x95\x00\x19\x8d\x62\xc9\x4a\x6b\xe7\x6d\x20\xa4\xbf\x94\xb8\x80\x3f\x68\x85\x6d\x3b\x3b\xad\xac\x77\xc7\x19\x30\x3a\xf3\x1a\x6d\x43\xe6\x94\x88\x92\xe2\xfb\xb7\x78\x97\x29\x2b\x7d\x57\x76\xec\x49\x83\x7a\x7f\x96\x8c\xc2\x8a\x95\xa9\xab\x34\xf8\x08\x05\x7f\x53\xc7\xaf\x35\x79\xca\x72\x4c\x0a\x9f\x74\x0e\x5b\xae\x88\xb7\x98\x6e\x6a\x01\x55\xc5\x6f\x07\xac\xb4\x41\x30\xaf\x48\x29\xf9\xd5\x09\xd6\x00\x71\x8e\x65\x92\x45\xd3\x28\xfe\x6a\x74\xf5\x5c\xff\xfb\x62\x5a\xa5\xfb\x9a\x0c\x07\xd1\xea\x73\x71\x10\x97\xcf\xae\x63\xc9\x55\xb5\xd2\xc4\xd2\x56\x36\x62\x16\x6c\x81\xb6\x9b\x52\x2d\x98\xaf\xaf\x9b\x4a\xa3\x9e\xd0\xcc\xf9\x7a\x08\xfa\x94\xba\x82\xab\x54\x6f\x8c\x30\x5f\x8b\x31\x5a\xd3\xfb\x32\x53\x2e\xc3\xf5\x76\x70\x76\x8a\x16\xa6\x63\x5a\xad\x34\x9d\x26\xac\x10\x8c\x42\x4c\xd9\x3a\x0a\x2e\x14\x5d\x95\xb2\xeb\x2e\x11\x0a\xd5\x66\x98\x0c\x34\x08\xd1\x1d\x91\x19\x22\x69\x35\xac\x68\xa9\xd1\x60\xd4\x90\x77\x9c\x21\x49\x67\x0a\xc4\x3a\x2f\x45\x64\xa6\xff\xb5\x23\x5a\x04\x48\x67\xda\x45\x9d\x62\x09\x51\xed\xff\x12\x96\x97\xaa\x6c\x9c\x55\x4e\xde\x0e\xaf\x74\xd3\xaa\x33\xa8\xa4\x9d\x55\x32\x9b\x91\x5a\xf2\x59\xf3\xb1\x9e\x03\x79\x42\xb1\x10\x33\x7f\xe3\x7a\x3a\x45\xaf\xcf\xfe\xe3\xfc\x15\x5a\x12\x89\x0a\x2c\xe4\x7d\x2b\xb1\xc9\x88\x88\x2b\x26\xda\x71\xd4\x9a\xd5\x72\x3d\x49\x71\xb1\x06\x1e\x0c\x64\x46\x8a\x80\x15\x6e\x90\x84\x29\x93\x7d\x34\x1c\xa8\x3b\xcc\x0b\x52\xac\x83\xb9\x62\xba\xac\x7a\x83\xd6\xb0\xac\xb4\x29\x2b\x60\x50\xd2\xaa\x32\xf7\xf6\x18\x2f\xe1\xec\xf4\xba\x95\x8f\xea\x24\x27\x23\xc2\x69\xb8\xd6\x82\x74\xf2\x9f\x7e\x03\xb2\x9d\xc3\x0f\xab\x71\x3a\x45\x2d\x63\x34\x4d\x4a\xc7\x14\x21\x7e\x9c\x31\x6a\x2d\x20\xa0\x02\x76\x2e\x70\x62\x24\xf8\xe4\x35\x50\xdd\x04\x1e\x4a\xb1\x94\xa2\x38\xe4\xec\x16\xdc\x7c\x59\x67\x50\xd5\x7d\x83\x27\xb3\x75\xed\x7d\x60\xfb\xfa\xbd\x5c\x57\xc9\x8e\x86\x7b\x9b\xa3\xe7\x94\x61\x38\x8e\x68\x5c\x7b\x22\xc5\xe8\xf0\xd9\x68\x29\xef\x14\x3e\x4b\x75\x3a\xa3\xf5\x59\x41\x5f\xb4\xc9\xc4\x57\x69\x3c\x64\xbf\xc3\xf6\xe8\xd2\xeb\x75\xd1\xdd\x49\x7b\x69\xe2\xa6\xc3\x5b\x37\xe1\x1a\x5c\x1c\x2d\x10\xf4\x41\xf4\x02\x76\xa3\x0c\xf1\x5e\x0a\x6b\x6b\x2c\x13\xdc\xf4\x16\xf6\x36\xc4\x86\xed\x28\xac\xe1\x51\x9c\x8b\x35\x25\x42\x4e\x6c\x21\x6e\x83\x52\x2f\xf7\xd1\x9d\x17\x1f\x59\xb7\xc2\xb6\xdd\x9b\x66\x77\xda\xb9\x82\x21\x53\x35\x8d\xdd\x16\x59\xe3\x31\x7a\xc1\x2a\x0a\xbe\x67\x58\xdf\x62\x58\xae\x83\xb1\x4e\xf5\xc7\x28\xa8\x7d\xf5\x24\x65\x77\x05\x65\x38\x0d\x9c\x6c\x7b\x57\xcb\xd1\xd2\x0a\x6d\xa4\x7e\xa0\x49\xa0\x68\x1d\x2d\x50\xf0\x52\x03\x2c\x9c\x7c\xdf\xc1\x38\x42\xc1\x21\x25\x39\x69\xcd\xbb\x05\xb2\x11\xb8\xed\x65\x6a\xd2\x8f\x41\xad\xec\xe3\x53\xfa\xd3\x79\xd3\x73\x53\xf3\x15\xf1\x79\x1b\xa6\x7b\x61\xa0\x01\xf5\x60\x07\xb0\x7b\xe9\xa0\x01\xf5\x60\x07\xb0\xdb\xee\xd3\x80\x7a\xd0\x02\x42\xcb\xb3\x6c\xbb\xe5\xa1\xd3\xf3\x73\x52\x99\x8c\xdd\xbd\x85\xbb\x76\x96\xda\xad\x18\x9b\x7d\x99\x2c\x86\x35\xea\xdd\xfa\xe7\xee\xd6\xfb\xef\xa4\x9c\xdd\x78\xa0\x39\xa9\x98\xfd\xb1\x4c\xb1\x6c\x1f\x4b\xd2\xe1\x77\xe8\xba\x8a\xe8\xbb\xa8\x6e\x93\xfa\xe1\x5b\xb0\x47\xde\x39\xf9\xda\x38\x4f\x14\xee\x1d\x4d\x1f\xbb\x13\x47\x3b\x76\xe2\xc1\xa5\xb4\xd7\x70\xd7\xb9\x21\x45\x3a\x46\x12\x3e\xca\xee\x8a\x4e\x1b\xb9\x09\x65\xad\xc9\x7f\x90\x42\x6d\x87\x22\xe1\x99\x85\xf4\x03\x7c\x54\x79\xb2\x22\xee\x99\x37\xb3\x41\xd0\xef\x6d\x7b\xaf\xcc\x1e\x71\xab\xf6\xe0\xbd\x5a\x5f\x47\xd6\x8f\xfa\x9d\xf5\x45\x4f\x5f\x8f\xbd\x8f\xa9\x64\x7c\xa9\x74\xb3\x08\x1d\x4f\xd7\x28\xee\x08\x85\x87\xbf\x6c\x80\xdf\xf7\xe7\x2b\xd5\xed\x38\x5c\x5e\xbf\x7a\xb8\xc3\xaf\x7e\xb6\xeb\x13\x5d\x65\xee\x76\x80\x3d\xdd\xef\x76\x83\x7e\xf0\x41\x67\xe8\x07\x77\x5c\x62\xbf\x91\x91\x61\x71\xa1\x7b\x25\x9d\xde\x54\x2f\xb2\x07\x8d\x97\x9f\x25\x19\x24\x37\xca\x23\x38\x65\x26\x7a\xa9\x8f\x03\x9a\xf9\x3b\x61\xad\x86\xcc\x8e\x06\x80\x27\x81\xed\x68\xbc\xd5\x2b\x89\x9a\xee\x66\xe5\xc8\xf6\x1a\xbb\xd0\x2f\x1c\x2e\x6d\xed\x7e\x76\x7a\x5d\xad\xb1\xb7\xd7\xbb\x64\x1a\x42\x68\xfa\x8c\x1c\x56\x94\x99\xd5\xf6\x9c\x20\xeb\x21\x66\xf0\x2d\xee\xe3\x93\x8f\x60\x8c\x9a\xb5\xbd\x19\xc8\x04\x53\xa9\xb2\x90\x3d\x84\xf6\x1a\x6b\xf5\x1d\xb4\x67\x75\x16\xa2\xaf\x70\x1a\xba\x3b\xec\x5a\x51\x45\x83\xba\x30\xd6\x64\xfa\x0f\xc8\xa9\x4e\xdd\x81\x09\x2a\x40\xa8\x68\x94\x93\x1c\x54\xa0\x91\x02\x25\xb8\x08\x25\x5a\x02\xb2\x62\x40\xda\x10\xd1\x16\x7a\x90\x90\xf4\x1c\x97\xf5\x5b\x92\xea\x8f\xac\x34\x6b\xf1\xf9\xd9\xf9\x2b\x74\x78\x88\xea\x2f\xf1\x7b\x45\xd7\xd8\x5e\x3b\x5b\x5f\x31\x1e\x95\x88\x14\x5d\xe0\x6e\x15\xa4\xe0\x32\x0f\xdc\x65\x79\x6d\x3b\x48\x5d\x14\xcd\x50\x16\x4b\xf6\x3d\xbb\x03\x7e\x82\x05\x44\x23\xa4\x22\xa4\x69\x7f\x4d\x48\xf7\x1e\xa1\xfa\x4b\x48\x6a\x4f\xa2\x77\x9d\xcb\xec\xfa\xf2\xf8\x7a\x00\x2d\x21\xa9\x79\xd4\x15\x3d\x1b\xab\x2f\x95\xd0\x93\xaf\x7b\x6f\xbf\x5a\x9a\xbc\x4c\x48\xaa\x76\x2c\xe8\x1a\x43\xd0\x32\x06\x95\x55\x4e\xd5\x4e\x4d\xd5\x4e\xe9\xc9\x52\x8f\xd5\x29\x6f\x67\x95\xed\xfe\xd0\xb7\xad\xa7\x24\x72\xeb\x33\x97\xbb\x91\x6b\x31\x1f\xde\x9d\xbe\x6b\x5b\x90\x48\x70\x81\xde\x7c\x38\xff\xde\xd8\xcf\x8a\x71\xfb\x02\x4c\x28\x9a\x12\x93\x42\x1d\x9b\x93\xb3\x53\xf4\xe3\x0f\x67\x08\x17\x29\x32\x77\x98\x8d\x5d\x65\xcd\x91\x5b\x83\xf5\x3b\x8a\x68\x65\xee\xfb\xae\x21\x24\xb5\x21\x58\x06\x5b\xdb\xa8\x48\x65\xf5\x2d\x69\x90\x90\x74\xa6\x34\x95\x8c\x3b\x2a\xbf\x76\x8a\x7d\x75\x98\xea\x4d\x31\xbe\x41\x8b\xa4\xb9\x82\x58\xf2\x8d\x90\xdf\x8a\x37\x32\xa7\x51\x56\x79\x95\x3d\xcf\xed\x77\x75\xe2\xaa\xc9\xc7\xbb\xab\xae\xc3\xaa\xfe\x9a\x64\x58\xf3\xb6\x35\x1f\xba\xcf\x81\xaa\xfb\x6e\xe7\xf9\x97\xd3\xc6\xf4\xdf\xd2\xb7\x5e\x8b\xdd\xda\x40\xf6\xb9\x8e\xdc\xdc\x87\xa0\x85\xed\xd6\xab\x2c\xb3\x90\xc0\x6f\x31\xf5\x75\x37\xc8\xca\xe5\xd0\x8c\x1c\x44\xe1\x97\x19\x49\x61\x92\x55\x0c\xd6\x35\x68\x7b\x87\xcd\x0a\x09\x05\xcc\xeb\x35\x64\xab\x41\xe2\xd3\x68\xdd\x21\xe9\xb6\x76\xcc\xca\x2a\x81\xfd\x5f\x5e\xd9\xea\xcc\xa4\xf1\xee\x46\xae\x08\x85\x0b\xf2\x6b\x2b\xd8\x2e\xef\x65\xd3\x35\xb6\xed\x04\x42\xf5\x46\x98\xc9\xa1\x8b\x0e\xd3\x5f\x7f\xe0\xfe\x2a\xc9\x54\x6d\xa1\xf3\xd7\x1f\x3f\xbc\x9e\xfc\x5b\x60\x73\xb5\xc1\x36\xbd\x19\x98\x7c\xb8\x2f\xc1\xb4\xeb\x9b\x7b\xc6\xc6\x3b\x98\xfe\xb8\x5e\xa3\xe6\xa4\x4b\xf4\x3b\x96\xde\xcf\xbb\x70\x1f\x38\x2e\xc4\x0a\xf8\xab\x22\x61\xe6\xc5\xe2\xc3\xcc\x18\x9c\x89\x45\xd2\x9c\x35\xbd\xf7\x01\xd2\x0d\xeb\xe2\x8e\xc8\x24\x43\x43\x80\xed\x28\xe2\x9a\x44\x82\x05\xa0\xf0\x97\x0d\x93\x90\x4e\x4a\x4e\x0a\x89\x97\x14\xc2\x99\x63\x10\x8d\xfc\xe6\x53\xf3\x82\x63\x71\x79\xc5\xaf\x8a\xeb\xa3\xe9\x3a\x1f\x07\x41\xcb\x8c\x1a\x2c\xf7\x42\xea\xdf\xf5\x42\xef\xed\x3a\xff\x24\x32\x63\x1b\xf9\xc3\xeb\x93\xaf\x8f\xbf\xf9\x57\xcb\xfd\xd8\x6e\x6b\x8b\xe0\x92\x03\xbe\x99\x77\x18\x5f\x62\x01\x7f\xf9\xa6\xc5\xee\x74\x6a\x1a\x79\x88\x92\x02\x50\xd5\x95\x12\x48\x32\xb4\x26\xb7\x80\x18\x27\x6b\x52\x60\x8a\x2a\xd4\x09\x28\x15\x41\x8a\xaa\x77\xcc\x8f\x13\xfb\x8a\xbf\xbc\x2a\x7e\xbf\xe2\x8f\x16\xfb\x3b\xbd\xd6\x13\xe4\xdb\xba\x46\x68\x0e\x8e\xc1\xee\x9d\x3b\xc6\x73\x6c\x23\xce\x7b\x8a\xc9\x43\x77\xbe\x4b\x96\xde\xfb\xa2\x95\xc6\xf5\xdc\xf4\x56\x62\xa4\x0d\x4a\x35\xa0\x63\x89\xa2\xe5\x80\x56\xbc\x54\xdd\x01\x83\xd6\x68\x2d\x52\x19\xa4\x78\x39\xbb\x9a\x5e\x4d\x47\xd1\xe5\xe4\xf2\xea\xfa\xdb\xc9\x7f\xe2\xc9\xaf\xc7\x93\xbf\xc6\x3f\xfd\xf7\x6c\xfa\xf2\xcb\xbf\x7d\x71\x10\x8d\xbe\x3a\x1a\xcf\x17\xff\x72\xfd\xfb\x21\xce\xcb\xf9\xef\x87\x5f\xfe\xe9\xaf\xf3\xd1\xd1\x74\x3d\x46\xe1\x73\x8c\x32\x0e\xab\x45\x70\x70\x18\xa0\xea\xbd\xfc\x22\xa8\x5e\xcb\x07\x2f\x0e\x0e\x9f\x4f\xf1\x0b\xfb\x5a\xa7\x69\xd6\xb5\x83\x5f\xcd\x61\xcf\x7f\x35\x52\xb9\xfa\xcb\x64\x4e\x5b\x57\x48\x85\x24\xf2\xde\x24\x8f\x66\xb3\xc2\xc3\x70\x86\x42\xcd\x6e\x68\x7b\xc9\xe1\x73\x3d\x46\xa5\x33\xf4\x42\x0f\xad\xdd\xa1\x40\x0f\xa9\xe3\xd7\x0c\x06\x61\xa0\x06\x95\xdc\x55\x4b\x6f\xdb\x12\x49\x71\xd4\x28\xf5\xf2\xf0\xf9\x8b\x20\xbc\x56\xea\x71\x1e\xb7\xf7\x9a\x96\x35\xdb\x97\xe2\x7a\xa8\x34\xeb\x58\xc2\x0e\x2b\x22\x2b\x34\xe4\x60\x55\xe2\xfc\x48\xdf\xfb\x04\xd0\xcb\xe3\x6b\x73\x3d\x19\x48\xf8\x28\xa7\xa5\x62\x30\x18\x0d\xf5\x66\xeb\x20\xd2\xe5\xb2\xd7\xa6\x75\x1a\x07\x2b\x52\xa4\xe7\x6a\x0d\x52\xac\x55\xe2\x6c\x71\xc7\xa8\xb5\x66\xdd\x0d\xa0\xe8\x0b\xf3\xf8\xee\xf0\x10\xd1\xe1\xe6\xd5\x10\x6b\x74\xe4\xb9\xec\x1c\x8a\x30\xed\x40\xdb\x66\xd4\xdd\x28\x95\xc1\x8e\x75\x31\x64\x19\x30\x41\x0d\x55\xef\xef\x39\x88\x0d\x95\xc2\xca\xa0\xc0\x75\x95\xd0\xb0\xab\x12\x54\xa5\x19\x5d\xd5\xd4\xf3\xfd\xaa\x86\xac\xa2\xf6\x26\x79\xe0\x07\xab\x1b\x77\xe9\x7e\x81\xd2\xd9\xfc\x81\xbb\xe5\x27\xd3\x69\x8c\x48\x17\x8b\x47\x28\x98\xbf\x8c\xbf\x0a\x46\xfd\x22\xca\x6c\x46\x9f\xf4\xbc\x5d\x8f\x54\x79\x98\x3a\x0d\x9f\xc2\xc5\x34\xdf\x50\x49\x14\xe6\xd5\x34\xfe\x6a\xea\xe1\x43\xbb\xd4\x1d\x16\xda\x5f\xd5\xec\xfd\xbc\x5f\x49\xae\xac\xb9\xfa\x6a\x46\x9b\x9a\x75\xf1\x9e\x52\x7f\x6d\xfb\xd6\x6c\x5f\x31\x6d\x5b\xfd\x1f\x53\x97\x0c\x39\x97\xb6\xc1\xca\x8c\x54\xd6\x6a\xed\xb2\xca\x6f\x95\xb1\x0d\xf8\x8e\x56\x8a\x5e\x41\xf7\x8b\xe8\xd0\x16\xd1\xf2\xbe\x84\xb0\x63\xd7\x43\x4e\xa9\x22\xd6\x73\x46\xca\x21\x77\xad\xc8\x28\x40\x72\xfd\x74\xc1\xaf\xa8\x4f\x71\x42\xd5\x5a\x9f\xea\x83\x6a\x76\x5a\xbb\xe4\x7b\x3b\xdd\xae\x61\x77\xec\x96\x5b\x73\xb7\x53\x87\xff\x97\x1b\xf6\xc8\x00\xf2\x7f\x63\x3b\x77\x86\x94\x3d\xfb\x58\xe2\xb9\xde\xc1\x82\x49\xb4\x62\x9b\x22\x7d\x11\xcc\xf7\xf7\xbc\x15\x97\xbb\xcb\x74\x54\x3f\x1f\xa2\x6e\x68\xa7\xbb\x82\xb9\x6f\xb2\x5f\xd8\x8c\x1e\x90\xc2\xa0\x46\xbf\x99\x0f\x33\x5a\x3f\x29\x55\xee\xb6\x83\x4d\x9d\x22\xcc\xfc\x3e\xb2\xf9\x25\x87\x7e\x2a\xda\x08\x25\x49\x0e\x42\xe2\xdc\xf4\x5b\xac\x86\xa2\xfa\x05\x4e\x03\x30\x6a\x7e\xf7\x68\x7f\x35\xe7\xd0\xd5\x57\xef\xdf\x52\xda\x6f\x60\xef\xa9\x3a\x3c\x61\xc5\x8a\xf0\x7c\x52\xc1\x4d\x30\xa5\xe1\x28\xce\x59\x8a\x69\x14\xaa\x1a\x3d\xec\xa5\x5e\x1c\x28\x60\x01\xef\x8a\x9d\xad\x6a\x17\xb6\x55\x58\x9a\x42\x71\x77\x8b\xf6\xeb\x29\x33\xbf\x45\x9a\x88\x5c\x96\xe1\x63\x6f\x1c\x58\xfb\x17\x4c\xb6\x45\x84\xaa\xd7\x7c\x5f\x1a\xd6\x27\x4c\xbf\xe1\xeb\x49\xd9\xff\x7d\x8d\xd1\xce\x0f\x15\x9e\xa7\x43\xef\xbc\x41\xf4\x53\xcf\x48\x0a\xa1\x53\x75\x34\xaf\xc5\xbb\x2a\x9a\x0f\x29\xae\xfe\x01\xdf\xce\x86\xf9\x0f\x35\xc6\x83\x2d\x73\x91\x61\x0e\x81\xf3\x5c\xce\xe5\xde\xe0\x4c\xac\x2a\xc3\x51\x7c\x8b\xe9\xc0\xab\x39\xbc\x91\x59\xb2\x5a\x3b\xf5\x85\x7d\x3e\xf6\x18\x92\xe3\xa6\xff\x96\xeb\xf7\x33\x3e\x24\x3d\xd5\xc5\x30\x7e\xac\xdd\x5b\xf2\x31\xf3\x54\xc2\x48\xff\x80\xc4\x8f\xa0\x2c\x71\xa2\xa6\xfb\x48\x25\xe3\xbb\x90\xd4\x74\x1f\x29\x87\x24\xc3\x05\x11\xf9\x0e\xcc\x1a\xa6\x8f\xbe\x11\xc0\x87\x75\xad\xb1\x2d\x88\x87\x61\x2c\xc4\x1d\xe3\xe9\x2e\xa6\x0d\x48\x1f\x59\xe0\xdb\xa1\x55\xf1\xad\x5a\x8c\x88\x28\x68\x2e\xc2\x3a\xb7\x5f\xe3\x47\x58\x8a\xd0\x3f\x33\x9c\xf8\x78\x6f\x85\x30\xe7\x27\x75\x4f\xba\xe9\xd1\x3f\xe0\x31\x8b\x86\x63\x6b\x39\x1e\x2f\xd3\x98\x7a\xf7\xbd\x44\xf7\x67\x86\xc0\xb9\x0b\xbc\xc2\x84\x36\x5d\x49\xa8\xa0\xd1\x02\x01\xe7\x3b\x6a\xda\xe6\xc5\xbc\xd7\xaf\xee\xa9\xf3\x5f\xbf\xbb\xaf\x6e\xc1\xf7\x0e\x62\xc0\xaa\x4e\xf0\xe7\x15\xce\x4b\xf0\x9b\x31\xba\xb5\xd7\x7c\x86\xc8\xd1\x02\xdd\xa8\xe2\x62\xa6\x5f\xd2\xdf\xaa\x8f\x57\x45\x45\x56\xf7\xc0\x1b\xb0\x6a\xdc\x19\xf0\x57\x7f\x36\x4e\x55\x70\x5d\x09\xeb\x60\x74\x52\xf9\xd5\x4f\x88\x49\x5d\x7f\x3a\xe0\x0d\xf5\x8b\x37\xe5\x0c\x31\xa5\x3b\x1f\x30\x55\xed\xb7\x49\x42\x78\x42\xa1\x4a\x6f\xf6\x5a\x3f\x87\xdc\x6d\x57\xbe\xc8\xd4\xb9\x4a\x6d\x3d\xac\xf0\xdc\x89\x36\x3f\x9f\x68\x8c\xcc\x6e\x80\x4f\x7d\xbb\x03\xef\x63\x74\xf2\x60\x80\xa8\x94\xf2\x74\x6d\x3c\x7c\x9f\x6a\x75\xd3\xdc\x44\x1b\x45\xc4\x3f\x91\x54\xe5\xce\x16\xfb\x27\x92\x8e\xfa\x77\x3e\x56\x57\x7e\xe5\x76\x8f\x69\xad\x42\xf5\xff\xff\x04\x00\x00\xff\xff\xb9\x1b\xae\x41\xb7\x43\x00\x00") +var _assetsJsControllersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x7b\x6d\x73\xdc\x36\x92\xf0\x67\xe9\x57\x20\x8c\x1e\x91\xb4\x66\x38\x72\x36\xbb\xcf\xed\xc8\x63\x6f\x62\xd9\x65\xed\x46\xb6\x2f\x72\x6a\xaf\x4e\xd2\xa6\x20\xb2\x67\x88\x08\x24\x18\x00\x23\x59\x89\xe7\x7e\xfb\x15\x40\x80\x04\x49\x70\x24\xd9\xb9\xaa\x3b\x7d\xb0\x67\x80\xee\x46\x77\xa3\xd1\x6f\xc0\xdc\x60\x8e\x0a\x4c\x68\xce\x56\xdf\x55\x15\x5a\x20\x5c\xae\xd6\x14\xf3\xa4\x60\xd9\x9a\x42\x14\xb6\x93\xe1\x04\x9d\x5f\xc6\x47\xbb\xbb\xed\x50\x92\x11\x0e\xa9\x24\x37\x10\x85\x12\xf3\x15\xc8\xef\x29\x2e\xaf\xc3\x09\x5a\xae\xcb\x54\x12\x56\x46\xf1\xef\xbb\x08\x71\x90\x6b\x5e\x22\xf5\x11\x21\x4a\xca\x6b\x34\x6f\x21\x44\xca\x2a\x98\x20\xa0\x50\x40\x29\x27\x08\x4b\xc9\xc9\xd5\x5a\x82\x88\x6b\x04\x64\xe7\x12\x56\x46\x21\x65\x38\xeb\x2c\x80\x2c\x14\x42\x4a\x1a\x8c\x16\x0d\x7c\xca\x4a\x09\xa5\x14\x51\x9c\x2c\x49\x99\x45\x21\x0e\xe3\xa3\x06\x1a\x27\x6a\x29\xcb\x79\x38\x41\xe1\xcf\x57\x9a\xfd\x06\x66\x63\x3e\x6d\x76\x11\xda\x1c\xed\xaa\xaf\xbb\x76\x61\xb4\x5a\x93\xcc\xac\xde\x8c\x89\x6f\x1b\x7e\x8c\xcc\xa7\x58\xe6\xc9\x92\x32\xc6\xa3\xe8\x29\x3a\xa8\xbf\x73\x5c\x66\xac\x88\xe2\x18\x3d\x41\x87\x1f\x9f\x1e\x1e\x1e\x1e\xc6\x0d\x5b\xe6\x2f\x91\xec\x4c\x72\x52\xae\xa2\xa7\x7f\x19\x4e\x8a\xf5\x95\x30\xb3\x9a\xc7\x4d\xab\x65\xcd\xc3\x81\xfd\x2f\x9c\x86\xdb\xbe\xb4\x84\x7d\x20\xce\x7f\x47\xbb\x9b\xb1\x9d\x2f\x57\xff\x80\xbb\x57\xa5\x04\xee\xec\x0b\x32\x8a\x30\x4c\xb5\xc3\xbe\xed\x16\x56\x69\x76\xe3\xae\xd4\x6e\x05\xd7\x70\x97\xb1\xdb\x12\x5d\xc3\x5d\xc5\x41\x88\xc0\x25\x0f\x37\x50\xca\x76\xf3\xc9\xb2\x1e\x49\x6e\x73\x92\xe6\x68\xb1\x58\xa0\xa7\x7f\x72\x6d\x43\xaf\x9b\xec\xe1\xaa\xa2\x77\x91\xc3\xe5\xef\x8e\x6e\x0d\x0c\xdc\x60\x1a\x69\xbe\x92\x56\x36\xc7\x70\x36\xce\xe7\x7a\xd1\x8a\xeb\xff\x8f\x61\x89\xd7\x54\x46\xad\x01\xed\xb6\xf0\xd6\x80\x1c\x25\x2a\xfb\xe4\x8c\x52\xe0\x51\x78\x8a\x09\x7d\x29\x39\xed\xe8\x70\xcf\x68\x6b\x2f\x97\xb2\x9a\xa0\x3d\x91\xaa\x2f\x92\x14\xc0\xd6\x46\xf8\x1a\x24\xc9\x99\x90\xea\xf8\x56\xe4\x0d\x13\xf2\x68\xb7\x9d\x49\x71\x9a\x03\x5a\xa0\xdf\x37\x47\xed\xa0\x62\x98\xc0\xed\x77\x94\xbe\x01\x9c\x01\x17\x68\x81\x96\x98\x0a\x70\x31\xb5\x4c\xe2\x3d\x94\x19\x29\x57\x7d\x0a\x7a\xf2\x25\x5b\x97\x6a\xd9\xc3\xfe\xc4\x31\x2b\xc1\x37\xfe\x1a\x13\x0a\x59\x3d\xe3\x30\x8f\xc5\x2b\x35\x7b\xc6\xd6\x3c\x85\x96\x95\x06\x40\xd8\x89\x72\x4d\xa9\x8b\x49\x24\x14\xe2\x3d\xf0\xf7\x78\xa5\xa6\xff\x7c\xe8\xe0\x48\xcc\xe5\x49\x99\xc1\x47\xb5\x9c\xc2\x21\xcb\x48\xde\x55\xc0\x96\xd1\x99\x64\x1c\xaf\x20\x46\x5f\x2d\x16\x28\x58\x97\x19\x2c\x49\x09\x59\xd0\x1a\x8c\x9f\x7e\x85\xb9\x80\x93\x52\x46\x94\xa5\x98\x1a\x2a\xc9\x0a\xe4\x89\x84\x22\x0a\x5c\xe8\x20\x9e\xa0\xa7\xcd\xb1\x26\xcb\xe8\x2b\x0f\x49\xd7\x40\xc7\x24\x6a\x6d\xad\xb3\xa8\xf0\x2e\x3a\x41\x7f\x6e\xd6\xd4\x5e\x6b\xb7\xa7\x90\x53\x10\x02\xaf\x40\x68\x9d\xb4\x36\xa2\xf6\xd1\x3f\x25\x99\xc4\xb4\x33\xd5\xa3\x78\x06\x98\xa7\xf9\x16\xba\xdb\x00\x34\x75\x0f\x40\x0b\xf1\x0b\x29\xcc\xbe\xbb\x0b\x17\xb2\x2a\x40\x9d\x73\x14\xbc\x7d\xf7\xf6\x55\xe0\x4c\x01\x85\x54\x42\xf6\x6e\x2d\x57\x8c\x94\xab\xb3\xd3\x0f\xef\x15\x98\x0b\x82\x6f\x40\x0d\x9f\x01\xbf\x01\xee\xb3\xfc\x15\xc8\xbf\xeb\x75\x07\x61\x46\x85\x98\x35\xa7\x68\xd1\x39\x78\x07\x28\xc4\x15\x99\xdd\x7c\x33\xfb\x85\x14\xa1\x06\xd4\x47\x56\x11\x8a\xd6\x9c\xc6\x89\x58\xa7\x29\x08\xd1\x78\x9e\x28\xc3\x12\x0f\xcc\xad\x16\x56\x4d\x19\xc7\x91\x00\xe7\x8c\x47\x9e\x68\x37\x54\x4f\x8d\x61\x82\x41\x47\x90\x28\x76\x4f\x75\x89\xaf\x28\xfc\x31\xe2\x55\x4c\x3c\x4a\xbe\x86\x1d\x1f\xaf\x19\x11\x7f\x1c\x67\x19\x50\x90\xf0\xa5\xbc\x29\xe6\x86\xca\x37\x08\xac\x82\xf2\x4c\x72\xc0\x85\x75\xf8\xad\x83\x79\xcb\x24\x59\x92\x14\x2b\xbc\x2d\x5e\xc6\x05\x4b\x38\xfc\xba\x06\x21\xdf\x03\x2f\x88\x10\x7a\x41\x27\xfd\x88\x7b\xf6\x79\xca\x54\xa4\x74\x35\x85\x7b\xa9\x47\xa1\x21\x22\x1c\xf7\xfc\xc0\x15\x4e\xaf\x3f\xb0\x93\xf2\x8a\x7d\xf4\x29\xba\x1b\x21\x1a\x9f\xeb\x4c\x09\x7d\x5e\xeb\x98\xd0\x78\xea\x8d\x77\x81\xd7\x84\x0b\xf9\x99\xab\x74\xfc\xf7\x70\xca\xf5\x17\xf7\xb3\xd7\xcc\x72\x58\x72\x10\x79\x64\xd2\x26\xd7\x15\xad\x56\x14\xea\x0d\xdd\xc2\xb1\x0d\x45\x35\xc7\xe8\x85\xcf\x1a\xd0\xbc\x71\x80\x94\x09\x70\x8d\xc4\x51\x53\x8b\x31\x66\xef\x26\xa8\x3b\x06\x9f\x70\xa8\x28\x4e\x21\x9a\xfd\x4b\x99\xf9\x6c\x82\xc2\x5b\x11\xc6\xe8\xd3\xa7\x7e\x8a\xa8\x43\x94\xb6\xab\x8a\x33\xc9\x52\x46\xc7\x70\x0f\x50\x38\x9b\xa9\xac\xaf\xc1\x50\x2b\x95\xb8\x00\x74\xe0\x92\x61\x5c\xa2\x17\x28\x9c\x77\x40\xf5\xe8\x1c\x85\x9a\x4e\x3b\x8a\x65\xae\x08\xc4\x47\x3e\xd5\xa1\x12\x6e\xd1\x3f\xe1\xea\x8c\xa5\xd7\x20\xa3\xde\x41\xbe\x85\x2b\xa1\x27\x42\x1f\x76\x82\xb3\x4c\xe7\x0a\x3f\x10\x21\xa1\x54\x99\x53\x51\x1b\x82\x5b\x14\xc0\xe0\x74\xf7\x12\xbf\xc8\x13\x79\x3b\x91\xee\xe0\xa0\x8d\xbb\x64\x69\x33\x31\xd7\x28\x9f\xa3\x43\x97\x88\xc7\x6e\x5d\x1a\x7e\xdb\xed\x42\xd4\xe7\xb6\x4d\x33\x7d\x0c\x74\x23\xf5\x33\x5f\xd6\xe0\xe5\xaa\x83\xe7\x2e\xbb\xe9\x54\x4f\x46\x97\x68\x81\xfe\x7e\xf6\xee\x6d\xa2\xf3\x9d\x08\x12\xed\x30\x8f\xfa\x0a\x33\xc0\x22\x59\x97\x22\x27\x4b\x19\x99\x01\x07\xf2\x36\x27\x14\xa2\x3e\x3c\x85\x72\x25\x73\xf4\xfc\xc1\xdc\x37\x98\x15\xab\xa2\xd8\xc7\xfc\xa3\x5d\xaf\xab\x1b\x0e\x58\x82\x8b\xe7\x91\x64\xd3\xaf\x09\x27\xb5\x73\x79\xa0\x91\xaa\xc3\xfe\xc5\x16\x3a\xc8\x93\x25\x5f\xc3\xa0\x58\x7d\x1c\x63\x3a\xc1\x18\xe1\x6c\x36\x53\x65\x55\xc2\x01\x67\x77\x67\x12\x4b\xed\xf6\x1c\x0e\x92\x97\x3f\xbc\x3b\x7b\x75\xec\xe1\x74\x9b\x30\x0f\x48\xfb\xbb\x12\x29\x46\x36\x43\xd9\x1c\x57\xea\xb8\xd9\x7b\x5d\x77\x0d\x1c\x8d\xb9\xa6\x7e\x18\x1a\x67\xd2\x0d\x1e\x43\x13\x72\xf9\xb0\xd6\xe4\xb8\x76\x49\x24\x55\xd4\x02\x55\xf7\xa1\x25\x67\x05\x0a\xd0\x81\x13\xdf\xcf\xa0\xcc\x80\xf7\x0c\x51\x61\xb2\x4a\xd1\x54\x61\xcf\xaa\xf4\x8a\x65\x77\x4d\xc4\x91\xfc\xee\x18\x52\x96\xc1\x29\x29\xc0\xa2\x27\x2f\xeb\x4e\x48\x62\xaa\xbd\xf3\xe0\x6c\x7d\xf5\x0b\xa4\x32\xb8\x3c\x3f\xbc\x8c\x27\x86\x90\xc4\xab\x79\xcd\xd1\x1b\xb6\x0a\xec\x28\x49\x59\x39\x47\x01\x29\xd4\x09\x9c\xe5\x6c\x95\x54\xe5\x2a\xa8\xf7\xa3\x65\xab\xec\xca\xae\x5c\x7c\xe7\x44\x69\x81\x27\x96\x7b\x23\x8f\x8b\xe4\xb1\xcd\x94\x92\xf4\x7a\xfb\xa9\xa9\xd3\x7d\xe3\xd8\x06\xc7\xf6\x96\x94\x19\xbb\x4d\x96\x2c\x5d\x8b\xd6\x6f\x74\x56\xed\x58\xc3\x66\x98\x15\xb8\xea\x74\xf7\x54\x48\xde\xcb\xb7\xd6\x25\x88\x14\x57\xf0\x9a\xb3\x42\x2b\x5f\x81\xf4\xc8\x71\x10\xe4\x37\x78\xdf\x64\x3d\x43\x53\x8d\xc2\x44\xe2\xab\xa9\x69\x5d\x85\x71\x92\x03\x59\xe5\x32\xda\x8b\x6a\x61\xe2\x84\x94\x25\xf0\x37\xf5\x68\x8c\xa6\x1e\x14\xb6\x5c\x0a\x90\x51\x9c\x48\x56\x59\x3b\xef\x02\x21\xfd\xa5\xc2\x25\xfc\x41\x2b\x6c\xba\xd9\x69\x6d\xbd\x5b\xce\x80\xd1\x99\xd7\x68\x5b\x32\xc7\x44\x54\x14\xdf\xbd\xc5\xdb\x4c\x59\xe9\xbb\xb6\x63\x4f\x1a\x34\xf8\xb3\x64\x14\x56\xa2\x4c\x5d\xa5\xc1\x07\x28\xf8\x9b\x3a\x7e\x9d\xc9\x63\x56\x60\x52\xfa\xa4\x73\xd8\x72\x45\xbc\xc1\x74\xdd\x08\xa8\x2a\x7e\x3b\x60\xa5\x0d\x82\xa3\x9a\x94\x92\x5f\x9d\x60\x0d\x90\x14\x58\xa6\x79\x34\x8b\x92\x27\xf1\xc5\x33\xfd\xef\xf3\x59\x9d\xee\x6b\x32\x1c\x44\xa7\xcf\xc5\x41\x9c\x3f\xbd\x4c\x24\x57\xd5\x4a\x1b\x4b\x3b\xd9\x88\x59\xb0\x03\xda\x6d\x4a\x75\x60\xbe\xb9\x6c\x2b\x8d\x66\x42\x33\xe7\xeb\x21\xe8\x53\xea\x0a\xae\x52\xbd\x09\xc2\x7c\x25\x26\x68\x45\xef\xaa\x5c\xb9\x0c\xd7\xdb\xc1\xc9\x31\x5a\x98\x8e\x69\xbd\xd2\x6c\x96\xb2\x52\x30\x0a\x09\x65\xab\x28\x38\x53\x74\x55\xca\xae\xbb\x44\x28\x54\x9b\x61\x32\xd0\x20\x44\xb7\x44\xe6\x88\x64\xf5\xb0\xa2\xa5\x46\x83\xb8\x25\xef\x38\x43\x92\xcd\x15\x88\x75\x5e\x8a\xc8\x5c\xff\x6b\x47\xb4\x08\x90\xcd\xb5\x8b\x3a\xc6\x12\xa2\xc6\xff\xa5\xac\xa8\x54\xd9\x38\xaf\x9d\xbc\x1d\x5e\xea\xa6\x55\x6f\x50\x49\x3b\xaf\x65\x36\x23\x8d\xe4\xf3\xf6\x63\x33\x07\xf2\x25\xc5\x42\xcc\xfd\x8d\xeb\xd9\x0c\xbd\x3e\xf9\x8f\xd3\x57\xe8\x8a\x48\x54\x62\x21\xef\x3a\x89\x4d\x4e\x44\x52\x33\xd1\x8d\xa3\xd6\xac\xae\x56\xd3\x0c\x97\x2b\xe0\xc1\x48\x66\xa4\x08\x58\xe1\x46\x49\x98\x32\xd9\x47\xc3\x81\xba\xc5\xbc\x24\xe5\x2a\x38\x52\x4c\x57\x75\x6f\xd0\x1a\x96\x95\x36\x63\x25\x8c\x4a\x5a\x57\xe6\xde\x1e\xe3\x39\x9c\x1c\x5f\x76\xf2\x51\x9d\xe4\xe4\x44\x38\x0d\xd7\x46\x90\x5e\xfe\x33\x6c\x40\x76\x73\xf8\x71\x35\xce\x66\xa8\x63\x8c\xa6\x49\xe9\x98\x22\x24\x0f\x33\x46\xad\x05\x04\x54\xc0\xd6\x05\x5e\x1a\x09\x3e\x7b\x0d\xd4\x34\x81\xc7\x52\x2c\xa5\x28\x0e\x05\xbb\x01\x37\x5f\xd6\x19\x54\x7d\xdf\xe0\xc9\x6c\x5d\x7b\x1f\xd9\xbe\x61\x2f\xd7\x55\xb2\xa3\xe1\xc1\xe6\xe8\x39\x65\x18\x8e\x23\x9a\x34\x9e\x48\x31\x3a\x7e\x36\x3a\xca\x3b\x86\x2f\x52\x9d\xce\x68\x7d\x56\x30\x14\x6d\x3a\xf5\x55\x1a\xf7\xd9\xef\xb8\x3d\xba\xf4\x06\x5d\x74\x77\xd2\x5e\x9a\xb8\xe9\xf0\xc6\x4d\xb8\x46\x17\x47\x0b\x04\x43\x10\xbd\x80\xdd\x28\x43\x7c\x90\xc2\xda\x1a\xcb\x04\x37\xbd\x85\x83\x0d\xb1\x61\x3b\x0a\x1b\x78\x94\x14\x62\x45\x89\x90\x53\x5b\x88\xdb\xa0\x34\xc8\x7d\x74\xe7\xc5\x47\xd6\xad\xb0\x6d\xf7\xa6\xdd\x9d\x6e\xae\x60\xc8\xd4\x4d\x63\xb7\x45\xd6\x7a\x8c\x41\xb0\x8a\x82\x1f\x18\xd6\xb7\x18\x96\xeb\x60\xa2\x53\xfd\x09\x0a\x1a\x5f\x3d\xcd\xd8\x6d\x49\x19\xce\x02\x27\xdb\xde\xd6\x72\xb4\xb4\x42\x1b\xa9\xef\x69\x12\x28\x5a\x07\x0b\x14\xbc\xd0\x00\x0b\x27\xdf\x77\x30\x0e\x50\xb0\x4f\x49\x41\x3a\xf3\x6e\x81\x6c\x04\xee\x7a\x99\x86\xf4\x43\x50\x6b\xfb\xf8\x9c\xfe\x74\xd1\xf6\xdc\xd4\x7c\x4d\xfc\xa8\x0b\xd3\xbf\x30\xd0\x80\x7a\xb0\x07\xd8\xbf\x74\xd0\x80\x7a\xb0\x07\xd8\x6f\xf7\x69\x40\x3d\x68\x01\xa1\xe3\x59\x36\xfd\xf2\xd0\xe9\xf9\x39\xa9\x4c\xce\x6e\xdf\xc2\x6d\x37\x4b\xed\x57\x8c\xed\xbe\x4c\x17\xe3\x1a\xf5\x6e\xfd\x33\x77\xeb\xfd\x77\x52\xce\x6e\xdc\xd3\x9c\x54\xcc\xfe\x54\x65\x58\x76\x8f\x25\xe9\xf1\x3b\x76\x5d\x45\xf4\x5d\x54\xbf\x49\x7d\xff\x2d\xd8\x03\xef\x9c\x7c\x6d\x9c\x47\x0a\xf7\x8e\x66\x0f\xdd\x89\x83\x2d\x3b\x71\xef\x52\xda\x6b\xb8\xeb\x5c\x93\x32\x9b\x20\x09\x1f\x65\x7f\x45\xa7\x8d\xdc\x86\xb2\xce\xe4\x3f\x48\xa9\xb6\x43\x91\xf0\xcc\x42\xf6\x01\x3e\xaa\x3c\x59\x11\xf7\xcc\x9b\xd9\x20\x18\xf6\xb6\xbd\x57\x66\x0f\xb8\x55\xbb\xf7\x5e\x6d\xa8\x23\xeb\x47\xfd\xce\xfa\x6c\xa0\xaf\x87\xde\xc7\xd4\x32\xbe\x50\xba\x59\x84\x8e\xa7\x6b\x15\x77\x80\xc2\xfd\x5f\xd7\xc0\xef\x86\xf3\xb5\xea\xb6\x1c\x2e\xaf\x5f\xdd\xdf\xe2\x57\xbf\xd8\xf5\x89\xbe\x32\xb7\x3b\xc0\x81\xee\xb7\xbb\x41\x3f\xf8\xa8\x33\xf4\x83\x3b\x2e\x71\xd8\xc8\xc8\xb1\x38\xd3\xbd\x92\x5e\x6f\x6a\x10\xd9\x83\xd6\xcb\xcf\xd3\x1c\xd2\x6b\xe5\x11\x9c\x32\x13\xbd\xd0\xc7\x01\xcd\xfd\x9d\xb0\x4e\x43\x66\x4b\x03\xc0\x93\xc0\xf6\x34\xde\xe9\x95\x44\x6d\x77\xb3\x76\x64\x3b\xad\x5d\xe8\x17\x0e\xe7\xb6\x76\x3f\x39\xbe\xac\xd7\xd8\xd9\x19\x5c\x32\x8d\x21\xb4\x7d\x46\x0e\x4b\xca\xcc\x6a\x3b\x4e\x90\xf5\x10\x33\xf8\x16\xf7\xe1\xc9\x47\x30\x41\xed\xda\xde\x0c\x64\x8a\xa9\x54\x59\xc8\x0e\x42\x3b\xad\xb5\xfa\x0e\xda\xd3\x26\x0b\xd1\x57\x38\x2d\xdd\x2d\x76\xad\xa8\xa2\x51\x5d\x18\x6b\x32\xfd\x07\xe4\x54\xa7\xee\xc0\x14\x95\x20\x54\x34\x2a\x48\x01\x2a\xd0\x48\x81\x52\x5c\x86\x12\x5d\x01\xb2\x62\x40\xd6\x12\xd1\x16\xba\x97\x92\xec\x14\x57\xcd\x5b\x92\xfa\x8f\x2c\x35\x6b\xc9\xe9\xc9\xe9\x2b\xb4\xbf\x8f\x9a\x2f\xc9\x7b\x45\xd7\xd8\x5e\x37\x5b\x5f\x32\x1e\x55\x88\x94\x7d\xe0\x7e\x15\xa4\xe0\x72\x0f\xdc\x79\x75\x69\x3b\x48\x7d\x14\xcd\x50\x9e\x48\xf6\x03\xbb\x05\xfe\x12\x0b\x88\x62\xa4\x22\xa4\x69\x7f\x4d\x49\xff\x1e\xa1\xfe\x4b\x49\x66\x4f\xa2\x77\x9d\xf3\xfc\xf2\xfc\xf0\x72\x04\x2d\x25\x99\x79\xd4\x15\x3d\x9d\xa8\x2f\xb5\xd0\xd3\x6f\x06\x6f\xbf\x3a\x9a\x3c\x4f\x49\xa6\x76\x2c\xe8\x1b\x43\xd0\x31\x06\x95\x55\xce\xd4\x4e\xcd\xd4\x4e\xe9\xc9\x4a\x8f\x35\x29\x6f\x6f\x95\xcd\xee\xd8\xb7\x8d\xa7\x24\x72\xeb\x33\x97\xbb\xd8\xb5\x98\x0f\xef\x8e\xdf\x75\x2d\x48\xa4\xb8\x44\x6f\x3e\x9c\xfe\x60\xec\x67\xc9\xb8\x7d\x01\x26\x14\x4d\x89\x49\xa9\x8e\xcd\xcb\x93\x63\xf4\xd3\x8f\x27\x08\x97\x19\x32\x77\x98\xad\x5d\xe5\xed\x91\x5b\x81\xf5\x3b\x8a\x68\x6d\xee\xbb\xae\x21\xa4\x8d\x21\x58\x06\xeb\xd3\x20\xa4\x4a\x3d\x82\x94\x64\x73\xa5\x9a\x54\x1f\xbc\x0a\xab\xe8\x2c\x24\x6f\xef\x4d\xa3\xf3\xe4\xc9\xc1\x8b\x7f\x2d\xbe\x9a\xef\xfd\xbe\x89\xe2\x4f\x17\xe7\x17\x97\x17\xb3\x8b\x8b\xcb\x78\xb6\x9a\xa0\xe0\xe2\x62\xef\x69\xd0\xa9\xb6\x15\x73\x79\x83\x5f\xc2\x2d\xfa\x11\x56\xaf\x3e\x56\x51\x85\xe5\x04\x85\xab\x30\x9e\xf4\xb6\xf3\xd2\x69\x24\x28\x2e\x9a\x0d\x37\x7e\x47\xab\x4b\x4b\x0c\x89\xe4\x6b\x21\xbf\x13\x6f\x64\x41\xa3\xbc\xf6\x58\x3b\x9e\x9b\xf5\xfa\x34\xd7\x93\x0f\x77\x85\x7d\x67\x58\xff\xb5\x89\xb6\xe6\x6d\x63\x3e\xf4\x9f\x1a\xd5\x77\xe9\xce\xd3\x32\xa7\x45\xea\x7f\x01\xd0\x79\x89\x76\x63\x83\xe4\x97\x06\x09\x73\xd7\x82\x16\xf6\x26\x40\x65\xb0\xa5\x04\x7e\x83\xa9\xaf\x73\x42\x96\x2e\x87\x66\x64\x2f\x0a\xbf\xce\x49\x06\xd3\xbc\x66\xb0\xa9\x6f\xbb\x4e\xc0\xac\x90\x52\xc0\xbc\x59\x43\x76\xcc\xc1\xa7\xd1\xa6\xfb\xd2\x6f\x1b\x99\x95\x55\x72\xfc\x3f\xbc\xb2\xd5\x99\x29\x11\xdc\x8d\x5c\x12\x0a\x67\xe4\xb7\x4e\x20\xbf\xba\x93\x6d\x47\xda\xb6\x2a\x08\xd5\x1b\x61\x26\xc7\x2e\x51\x4c\xef\xfe\x9e\xbb\xb1\x34\x57\x75\x8b\xce\x8d\x7f\xfa\xf0\x7a\xfa\x6f\x81\xcd\x03\x47\xaf\x00\xcc\xc0\xf4\xc3\x5d\x05\xe6\x2a\xa0\xbd\xc3\x6c\x3d\x8f\xe9\xbd\xeb\x35\x1a\x4e\xfa\x44\xbf\x67\xd9\xdd\x51\x1f\xee\x03\xc7\xa5\x58\x02\x7f\x55\xa6\xcc\xbc\x86\xbc\x9f\x19\x83\x33\xb5\x48\x9a\xb3\xb6\xaf\x3f\x42\xba\x65\x5d\xdc\x12\x99\xe6\x68\x0c\xb0\x1b\xa1\x5c\x93\x48\xb1\x00\x14\xfe\xba\x66\x12\xb2\x69\xc5\x49\x29\xf1\x15\x85\x70\xee\x18\x44\x2b\xbf\xf9\xd4\x7a\xb9\xc5\xf9\x05\xbf\x28\x2f\x0f\x66\xab\x62\x12\x74\xfd\x59\x8b\xe5\x5e\x76\xfd\xbb\x5e\xe8\xbd\x5d\xe7\x9f\x44\xe6\x6c\x2d\x7f\x7c\xfd\xf2\x9b\xc3\x6f\xff\xbf\xe5\x7e\x62\xb7\xb5\x43\xf0\x8a\x03\xbe\x3e\xea\x31\x7e\x85\x05\xfc\xe5\xdb\x0e\xbb\xb3\x99\x69\x12\x22\x4a\x4a\x40\x75\xc7\x4b\x20\xc9\xd0\x8a\xdc\x00\x62\x9c\xac\x48\x89\x29\xaa\x51\xa7\xa0\x54\x04\x19\xaa\xdf\x48\x3f\x4c\xec\x0b\xfe\xe2\xa2\xfc\x74\xc1\x1f\x2c\xf6\xf7\x7a\xad\x47\xc8\xb7\x71\x8d\xd0\x1c\x1c\x83\x3d\x38\x77\x8c\x17\xd8\x46\xb3\xf7\x14\x93\xfb\xee\x93\xaf\x58\x76\xe7\x8b\x84\x1a\xd7\x73\x8b\x5c\x8b\x91\xb5\x28\xf5\x80\x8e\x25\x8a\x96\x03\x5a\xf3\x52\x77\x1e\x0c\x9a\x13\x12\x55\x76\x2a\x5e\xcc\x2f\x66\x17\xb3\x38\x3a\x9f\x9e\x5f\x5c\x7e\x37\xfd\x4f\x3c\xfd\xed\x70\xfa\xd7\xe4\xe7\xff\x9a\xcf\x5e\x7c\xfd\xb7\xaf\xf6\xa2\xf8\xc9\xc1\xe4\x68\xf1\xff\x2e\x3f\xed\xe3\xa2\x3a\xfa\xb4\xff\xf5\x9f\xfe\x7a\x14\x1f\xa8\xa8\x19\x3e\xc3\x28\xe7\xb0\x5c\x04\x7b\xfb\x01\xaa\xdf\xe2\x2f\x82\xfa\x25\x7e\xf0\x7c\x6f\xff\xd9\x0c\x3f\xb7\x2f\x81\xda\x46\x60\x37\xf8\x35\x1c\x0e\xfc\x57\x2b\x95\xab\xbf\x5c\x16\xb4\x73\x3d\x55\x4a\x22\xef\x4c\x62\x6a\x36\x2b\xdc\x0f\xe7\x28\xd4\xec\x86\xb6\x4f\x1d\x3e\xd3\x63\x54\x3a\x43\xcf\xf5\xd0\xca\x1d\x0a\xf4\x90\x3a\x7e\xed\x60\x10\x06\x6a\x50\xc9\x5d\xb7\x0b\x37\x1d\x91\x14\x47\xad\x52\xcf\xf7\x9f\x3d\x0f\xc2\x4b\xa5\x1e\xe7\xe1\xfc\xa0\x21\xda\xb0\x7d\x2e\x2e\xc7\xca\xbe\x9e\x25\x6c\xb1\x22\xb2\x44\x63\x0e\x56\x25\xe5\x0f\xf4\xbd\x8f\x00\x3d\x3f\xbc\x34\x57\x9f\x81\x84\x8f\x72\x56\x29\x06\x83\x78\xac\xef\xdb\x04\x91\x3e\x97\x83\x16\xb0\xd3\x94\x58\x92\x32\x3b\x55\x6b\x90\x72\xa5\x92\x72\x8b\x3b\x41\x9d\x35\x9b\x4e\x03\x45\x5f\x99\x87\x7d\xfb\xfb\x88\x8e\x37\xc6\xc6\x58\xa3\xb1\xe7\x22\x75\x2c\xc2\x74\x03\x6d\x97\x51\x77\xa3\x54\x76\x3c\xd1\x85\x96\x65\xc0\x04\x35\x54\xbf\xed\xe7\x20\xd6\x54\x0a\x2b\x83\x02\xd7\x15\x48\xcb\xae\x4a\x7e\x95\x66\x74\xc5\xd4\xcc\x0f\x2b\x26\xb2\x8c\xba\x9b\xe4\x81\x1f\xad\x9c\xdc\xa5\x87\xc5\x4f\x6f\xf3\x47\xee\xad\x1f\x4d\xa7\x35\x22\x5d\x88\x1e\xa0\xe0\xe8\x45\xf2\x24\x88\x87\x05\x9a\xd9\x8c\x21\xe9\xa3\x6e\xad\x53\xe7\x61\xea\x34\x7c\x0e\x17\xb3\x62\x4d\x25\x51\x98\x17\xb3\xe4\xc9\xcc\xc3\x87\x76\xa9\x5b\x2c\x74\xb8\xaa\xd9\xfb\xa3\x61\x95\xba\xb4\xe6\xea\xab\x47\x6d\x6a\xd6\xc7\x7b\x4c\x6d\xb7\x19\x5a\xb3\x7d\x21\xb5\xe9\xf4\x96\x4c\x5d\x32\xe6\x5c\xba\x06\x2b\x73\x52\x5b\xab\xb5\xcb\x3a\xbf\x55\xc6\x36\xe2\x3b\x3a\x29\x7a\x0d\x3d\x2c\xd0\x43\x5b\xa0\xcb\xbb\x0a\xc2\x9e\x5d\x8f\x39\xa5\x9a\xd8\xc0\x19\x29\x87\xdc\xb7\x22\xa3\x00\xc9\xf5\xb3\x08\xbf\xa2\x3e\xc7\x09\xd5\x6b\x7d\xae\x0f\x6a\xd8\xe9\xec\x92\xef\x5d\x76\xb7\x3e\xde\xb2\x5b\x6e\x3d\xdf\x4d\x1d\xfe\x4f\x6e\xd8\x03\x03\xc8\xff\x8e\xed\xdc\x1a\x52\x76\xec\x43\x8c\x67\x7a\x07\x4b\x26\xd1\x92\xad\xcb\xec\x79\x70\xb4\xbb\xe3\xad\xb8\xdc\x5d\xa6\x71\xf3\x34\x89\xba\xa1\x9d\x6e\x0b\xe6\xbe\xc9\x61\x61\x13\xdf\x23\x85\x41\x8d\x7e\x37\x1f\xe6\xb4\x79\xae\xaa\xdc\x6d\x0f\x9b\x3a\x45\x98\xf9\xed\x65\xfb\x2b\x11\xfd\x0c\xb5\x15\x4a\x92\x02\x84\xc4\x45\x65\x9a\xbe\x86\x44\xd4\xbc\xee\x69\x01\xe2\xf6\x37\x95\xf6\x17\x79\x0e\x5d\x7d\xad\xff\x1d\xa5\xc3\xe6\xf8\x8e\xaa\xc3\x53\x56\x2e\x09\x2f\xa6\x35\xdc\x14\x53\x1a\xc6\x49\xc1\x32\x4c\xa3\x50\xd5\xe8\xe1\x20\xf5\xe2\x40\x01\x0b\x78\x57\x6e\x6d\x83\xbb\xb0\x9d\xc2\xd2\x14\x8a\xdb\xdb\xbf\xdf\xcc\x98\xf9\x9d\xd3\x54\x14\xb2\x0a\x1f\x7a\x9b\xc1\xba\xbf\x8e\xb2\x2d\x22\x54\xbf\x14\xfc\xda\xb0\x3e\x65\xfa\x7d\xe0\x40\xca\xe1\x6f\x77\x8c\x76\x7e\xac\xf1\x3c\xdd\x7f\xe7\x7d\xa3\x9f\x7a\x4e\x32\x08\x9d\xaa\xa3\x7d\x89\xde\x57\xd1\xd1\x98\xe2\x9a\x1f\x07\x6e\x6d\xc6\xff\xd8\x60\xdc\xdb\x8e\x17\x39\xe6\x10\x38\x4f\xf1\x5c\xee\x0d\xce\xd4\xaa\x32\x8c\x93\x1b\x4c\x47\x5e\xe4\xe1\xb5\xcc\xd3\xe5\xca\xa9\x2f\xec\xd3\xb4\x87\x90\x9c\xb4\xfd\xb7\x42\xbf\xcd\xf1\x21\xe9\xa9\x3e\x86\xf1\x63\xdd\xde\x92\x8f\x99\xc7\x12\x46\xfa\xc7\x29\x7e\x04\x65\x89\x53\x35\x3d\x44\xaa\x18\xdf\x86\xa4\xa6\x87\x48\x05\xa4\x39\x2e\x89\x28\xb6\x60\x36\x30\x43\xf4\xb5\x00\x3e\xae\x6b\x8d\x6d\x41\x3c\x0c\x63\x21\x6e\x19\xcf\xb6\x31\x6d\x40\x86\xc8\x02\xdf\x8c\xad\x8a\x6f\xd4\x62\x44\x44\x41\x7b\xc9\xd6\xbb\x59\x9b\x3c\xc0\x52\x84\xfe\x09\xe3\xd4\xc7\x7b\x27\x84\x39\x3f\xd7\x7b\xd4\x2d\x92\xfe\x71\x90\x59\x34\x9c\x58\xcb\xf1\x78\x99\xd6\xd4\xfb\x6f\x31\xfa\x3f\x61\x04\xce\x5d\xe0\x25\x26\xb4\xed\x4a\x42\x0d\x8d\x16\x08\x38\xdf\x52\xd3\xb6\xaf\xf1\xbd\x7e\x75\x47\x9d\xff\xe6\x4d\x7f\x7d\xc3\xbe\xb3\x97\x00\x56\x75\x82\x3f\xaf\x70\x5e\x99\x5f\x4f\xd0\x8d\xbd\x42\x34\x44\x0e\x16\xe8\x5a\x15\x17\x73\xfd\x4a\xff\x46\x7d\xbc\x28\x6b\xb2\xba\x07\xde\x82\xd5\xe3\xce\x80\xbf\xfa\xb3\x71\xaa\x86\xeb\x4b\xd8\x04\xa3\x97\xb5\x5f\xfd\x8c\x98\xd4\xf7\xa7\x23\xde\x50\xbf\xa6\x53\xce\x10\x53\xba\xf5\x71\x54\xdd\x7e\x9b\xa6\x84\xa7\x14\xea\xf4\x66\xa7\xf3\x53\xcb\xed\x76\xe5\x8b\x4c\xbd\x6b\xda\xce\xa3\x0d\xcf\x7d\x6b\xfb\xd3\x8c\xd6\xc8\xec\x06\xf8\xd4\xb7\x3d\xf0\x3e\x44\x27\xf7\x06\x88\x5a\x29\x8f\xd7\xc6\xfd\x77\xb5\x56\x37\xed\x2d\xb7\x51\x44\xf2\x33\xc9\x54\xee\x6c\xb1\x7f\x26\x59\x3c\xbc\xf3\xb1\xba\xf2\x2b\xb7\x7f\x4c\x1b\x15\xaa\xff\xff\x3b\x00\x00\xff\xff\xd7\x53\x86\x44\x13\x44\x00\x00") func assetsJsControllersJsBytes() ([]byte, error) { return bindataRead( @@ -345,7 +345,7 @@ func assetsJsControllersJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/controllers.js", size: 17335, mode: os.FileMode(420), modTime: time.Unix(1479246348, 0)} + info := bindataFileInfo{name: "assets/js/controllers.js", size: 17427, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -365,7 +365,7 @@ func assetsJsFilesize312MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/filesize-3.1.2.min.js", size: 1355, mode: os.FileMode(420), modTime: time.Unix(1468174122, 0)} + info := bindataFileInfo{name: "assets/js/filesize-3.1.2.min.js", size: 1355, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -385,7 +385,7 @@ func assetsJsIso88591_mapJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/iso88591_map.js", size: 2252, mode: os.FileMode(420), modTime: time.Unix(1468174330, 0)} + info := bindataFileInfo{name: "assets/js/iso88591_map.js", size: 2252, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -405,7 +405,7 @@ func assetsJsJquery1110MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/jquery-1.11.0.min.js", size: 96381, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/jquery-1.11.0.min.js", size: 96381, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -425,27 +425,27 @@ func assetsJsJqueryUi1104MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/jquery-ui-1.10.4.min.js", size: 228539, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/jquery-ui-1.10.4.min.js", size: 228539, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _assetsJsMoment284Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x77\xdb\x38\x92\x30\x0e\xff\xdf\x9f\xa2\x72\x76\xba\x25\x45\x77\xdb\x71\x3a\x4a\x14\x1f\x4f\x9c\x5b\x3f\x51\x9c\x69\xbb\x37\x9b\xd8\x1e\x2f\x2c\x42\x12\xdb\x14\xa9\x21\x28\x2b\xea\x56\xf6\xb3\xbf\x07\x05\x80\xc4\x8d\x94\x9c\xce\xec\xf3\x9e\xf3\x7b\xd4\x33\xb1\x44\x16\x0a\x85\x02\x50\x00\x0a\x75\xe9\x76\x1f\xc0\x3c\x99\xd3\x38\xeb\xfc\xce\x7e\xe0\xbf\xee\x68\xca\xc2\x24\x86\x01\xec\x75\x7e\xee\x1c\xe0\x33\xb2\xcc\x66\x49\xca\x60\x00\xe7\xe1\x1c\x3e\x26\x49\xd0\x82\xb7\xec\x36\xa5\x31\xbc\x98\xd1\x34\xa6\x77\x2d\x18\x29\x2c\x30\x4e\xe2\x2c\x0d\x6f\x96\x59\x92\x0a\x94\x51\x38\xa6\x31\xa3\x30\x80\xd1\xdb\xf3\x1f\x8a\x2a\x7f\x67\x9d\x71\x32\xff\xe1\x87\xfa\x64\x19\x8f\x33\x5e\x69\x7d\x19\x07\x74\x12\xc6\x34\x68\xc0\x9f\x3f\x00\x00\x74\x1f\xee\xf0\x41\x48\xfe\x79\x91\xc4\x2c\x23\x71\xc6\xf0\xc9\x2e\x45\xbb\x3f\x20\xe8\x1d\x49\x25\x51\xad\x1c\xd9\x7f\xbe\xfc\xf5\xec\xed\xe9\x7b\x18\x42\x0d\x59\x51\x2b\x5e\x75\xbb\x90\xcd\x28\x4c\xa3\xe4\x86\x44\x6d\x36\x4e\x16\x14\xb2\x59\xc8\x20\x64\xf0\xfe\xf4\x5c\x7b\x09\xc9\xcd\xef\x74\x9c\x41\x18\xc3\xfb\x24\xa0\x9c\xcb\x0a\x89\x00\x38\xc3\xc2\x43\xc8\xd6\x0b\x9a\x4c\x54\xa9\x07\xc3\x21\xd4\x72\x66\xd4\xe0\x48\xbd\x18\x60\x3d\x05\x25\x49\x14\xbc\xc6\x37\x23\x8b\xfa\x34\x59\xc6\x01\x0c\x61\x44\xb2\x59\x07\x7f\x14\xef\x66\x84\x9d\xae\xe2\x0f\x69\xb2\xa0\x69\xb6\x86\x21\x9c\x22\x91\x9d\x45\x9a\x64\x09\x27\xa4\x63\x42\x14\x25\xc3\xd6\x0f\xf9\xf7\x4f\x2f\x8f\x7f\x85\x21\xf4\x8a\xb7\xa3\xd3\xf7\xe7\x6f\x60\x08\xfd\xe2\xd1\xc9\xf1\xf9\x4b\x18\xc2\x5e\xf1\xe4\xcd\xe9\x6f\xbc\xd8\xbe\x56\xec\xed\xfb\xdf\x10\xea\xa0\x78\x76\xf6\xf2\xc5\xe9\xfb\x13\x18\xc2\x23\x1d\xee\xdd\xbb\xb7\xf9\x8b\x43\x8d\x94\x6e\x17\xc2\x38\xa3\x69\x4c\x22\x60\x59\x92\x92\x29\x85\x49\x92\x42\x94\x8c\x49\x44\xf9\x88\x9c\x84\x53\x98\x84\x11\x2d\xd8\x2f\xde\x31\x18\xc2\x9f\x5f\x4d\x54\xf4\x4b\x96\x12\x39\x1c\x0a\xbc\x0b\xc1\x8c\x90\x32\xa8\x2f\xa2\xe5\x34\x8c\x19\xa4\x74\x1a\xb2\x8c\xa6\xf8\x92\xc1\x8c\xa6\xb4\x91\x63\x12\x08\x3e\x14\xc5\x86\x70\x71\x65\xd6\x34\x9e\xd1\xf1\x2d\x52\x1a\x27\x01\xfd\xe5\x4c\xef\xa1\x51\x12\x2c\x23\x3e\x32\xea\x72\x68\xcc\xc5\x03\x7b\x68\xfc\xf4\x93\x7a\x93\x7f\xeb\xd0\x2f\x8b\x24\xcd\x58\xc3\xac\xed\xf8\xec\x43\xe7\xfd\xcb\x73\xf8\x9d\x25\x31\x04\x24\x43\x1e\xcd\x49\xc6\x9b\x41\xbf\xe4\x90\x84\x2d\xde\xd3\xec\x17\x96\xc4\xbf\xf2\xe7\x30\x84\xee\x3f\x2f\xbb\x47\x27\x24\xa3\x97\xf5\xfa\x65\xfb\xe8\x32\x68\x36\xba\x61\xcb\x2a\x70\x1e\xce\xe9\xd9\x82\xc4\x46\xc1\xfa\x65\xbb\x71\x54\x3f\x1a\xd4\x2f\x83\x87\x8d\xcb\x4e\xe3\xa8\xce\x0b\x5f\x0e\xf0\x4f\xfd\x68\x20\xbf\x5d\x76\xf8\x8b\x3f\xf7\xbf\x36\x8e\x1a\x47\x5d\x93\xea\x49\x9a\xcc\x61\x96\x65\x8b\x41\xb7\x1b\x24\x63\xd6\x19\x47\x09\x5b\xa6\xb4\x1d\x85\x37\x29\x49\xd7\x9d\x69\x92\x4c\x23\x3a\xe6\xb3\x6b\x9c\xcc\xbb\xd3\x30\xeb\x4a\x90\x6b\xfe\xea\x9a\xb7\x14\xff\xe9\xfc\xce\x3a\x2c\x59\xa6\x63\xda\x99\x65\xf3\x48\xaf\x84\x25\x73\xba\x9a\x91\x0c\xe6\x49\x4a\xf9\x64\x8d\xc2\x98\xc2\x2a\xcc\x66\x70\xd0\x39\xe8\xec\x77\xf6\x60\xaf\xd7\x3b\x00\xb6\xa0\xe3\x16\xdc\x2c\x33\x20\x51\x94\xac\x18\x04\x74\x1c\xce\x49\x04\x24\x5e\xaf\x78\xf7\x17\x33\x85\x25\x27\xcb\x94\x70\xb1\x56\xb0\xb1\xde\x6e\x1c\x7d\xe0\xec\x38\x1a\xd4\x2f\x7a\xed\x27\xad\xce\xd5\xc3\xc6\x27\xc1\xa1\xfc\xf7\xc8\xfa\x7d\x82\xbf\xcf\x8d\x67\x6f\xb6\x94\x39\xe3\x8c\xdc\x14\xbf\x3f\x36\xfe\x66\xb3\x55\x74\x7d\x96\xdc\xd2\xb8\x98\x14\xe2\x69\x16\xc6\xd3\x73\x7c\x21\xfa\xf0\xe2\xe2\x9f\x97\x17\x57\x0f\x2f\xaf\x1a\x9b\xfa\xe5\x65\xe3\xa8\x3e\x4a\x36\xa3\xd1\x11\xff\x6f\x73\x92\x6c\x4e\x4e\xf0\x9f\x23\xfe\xdf\x26\x08\x82\xa3\xe0\x68\x13\x24\x47\x9b\xd5\x45\xb2\x59\x5d\x1d\x6d\x3e\x5e\x24\x9b\x8f\x57\x47\x9b\x7f\x6c\x3e\xe1\x67\x53\xfc\xbb\xf9\xf4\x69\x33\x9d\xd6\xa7\xd3\x29\xa7\xf7\xf5\xeb\xfa\xeb\xd7\xaf\xf9\x37\xba\x79\xb9\x21\x9b\xe3\xcd\x6c\x76\xb4\x79\xf3\xe6\x68\x33\x9f\x1f\x6d\x18\x3b\xda\x9c\xfd\xd9\x6f\x1d\x7c\xdd\x7c\xd9\xfc\xd7\xe6\x8f\x3f\x8e\x36\x9f\x3f\x1f\x6d\x3a\x8d\xee\xb4\x65\xce\xea\x57\xbb\xb5\xe2\xdd\xf9\xd9\xe6\xdd\xf9\xe6\xdd\xbb\x23\xfe\xdf\x26\x42\xdc\x88\x4d\x67\xd4\x82\xa4\x2c\x8c\xa7\x82\x53\x62\xaa\x68\x52\x84\xbf\xa5\x58\xcb\x69\x4c\x4f\xd3\xf3\x55\x72\x12\x4e\xc3\x0c\xab\xbc\x0c\x2e\x83\xa3\x6e\x8b\x23\xe9\x41\x1b\x9e\x3c\xf1\x97\x3a\x4f\xce\x67\x29\xa5\x7a\xb9\x3f\xfb\xad\xfd\xaf\x7a\xc9\xd2\xa2\xaf\x92\x65\x6a\x95\x3c\x30\x4b\x96\x16\x3d\x0b\xbf\x14\x25\x2f\x9a\x97\xed\xab\x23\x2c\x7f\x28\xcb\xb7\x9f\x3c\x79\xd2\x7a\xf2\xe4\x89\x40\xd3\xf2\x63\xd2\xeb\x6e\x8a\x72\x71\x12\xff\x41\xd3\x04\xe2\xe5\xfc\x86\xa6\x90\x4c\x20\x40\x20\x4f\xe9\x8f\x49\x1a\x60\xed\xbd\xf6\x93\xab\x87\x17\x35\xd2\xfe\xe3\x72\xd9\xeb\x1d\xf7\xda\x97\xcb\xde\xa3\x57\xaf\x2e\x97\xbd\xc7\x3d\xfe\xe3\xe4\x31\xff\xf1\xea\x09\xfe\x78\x75\xf2\x82\xff\x38\x79\x85\x3f\x5e\xbd\x7c\x75\xd5\xdc\x5c\x5c\x2e\x7b\x87\xf8\xb6\x77\xf8\xea\xd5\x65\xf7\xaa\x59\xbf\x64\x0f\x8f\xcc\xc7\x57\xcd\xc6\x9f\xfd\xd6\xde\xd7\x6e\x88\x84\x92\x78\x0d\x2b\x4e\x41\x3d\x49\x21\x5b\x25\x0d\x18\xcf\x48\x4a\xc6\x19\x4d\x19\x70\x99\x8c\x0d\x60\x10\xc6\xe3\x68\x19\xe0\x18\x58\x25\xdd\x8c\x77\x96\x28\x37\x4f\xe2\x6c\xc6\xa5\x05\x49\xc9\x4d\x38\xee\x78\x5a\xc8\xa5\xe2\x1f\x49\xcc\xe5\x78\xf7\xf3\xe6\xe2\x92\xb3\x99\x8f\x8b\xc1\x11\xff\xb7\x3b\x15\x94\x34\x7b\xbd\x41\xaf\x07\x6d\xf1\xa7\xd9\xeb\x89\x1f\xbd\x1e\x27\xe3\xb3\x0f\x2d\xc7\x77\x2e\xdb\x71\x0e\xf5\xb7\x67\xa7\xc0\xe8\x82\xa4\x24\x4b\xd2\x86\xaf\xc7\x27\x13\x46\xb3\x91\xe8\xeb\x4b\xd9\xd9\xb2\xc3\xfa\x7b\xfb\x07\x8f\x0e\x1f\xff\xfc\xa4\xd7\xdf\xdb\x2f\x69\x03\xcb\xc8\x7c\x61\x17\xaf\x5f\x76\xe4\x58\x6d\x1c\x59\xa8\x8a\x6f\x1d\x8e\x54\x9b\x50\x2c\x4b\xc3\x71\x96\x4f\xab\xca\x09\x85\xa3\x4b\x0c\x2e\x6d\x4c\xfb\x48\xb4\xe7\x9d\x04\x2f\x9d\x77\xee\x94\xcb\x27\x5c\xaf\x7c\xca\x39\xb3\xed\xa0\x28\x54\x31\xdd\xac\x99\x26\x26\xda\xbd\xa6\xd9\x59\x38\x8d\x69\xf0\x5e\xcc\xa8\x02\x89\xec\xc0\x76\x18\x4f\xa0\x0d\x61\x3c\x31\xb7\x44\x2c\x81\x9f\x0f\x7b\x7d\x6b\x7d\x97\xe4\xb6\xf1\x7f\xe2\xeb\x47\x31\xd2\xd4\xf7\x76\x0f\x9a\x70\x0e\x4d\x50\x8f\x07\xda\x17\xeb\x7b\x87\xb7\xbc\xa9\x46\x70\x92\xca\xd1\x2b\xbe\x34\xf4\xe5\x50\xdb\x4d\xb0\x87\xf5\xa3\x01\x6f\x03\xf2\x61\x83\x8c\x6c\xb4\xc5\x3e\xe1\x32\x68\xf3\x7f\x1a\x9b\xfa\x47\xfe\xf7\x6f\xea\x4b\x1b\x9f\xf1\x6f\x97\x41\xa3\x51\xaf\x9f\x6f\xa0\x81\x3f\xeb\x03\xed\x5f\x3e\x22\x9b\x7c\xf1\xe3\xff\xd5\x8b\xf9\x56\x3f\x1a\x88\x29\xd7\x38\xda\x5c\xb2\x87\x9f\xf9\x6b\x63\x49\x0c\x59\x22\x96\x0d\xbe\xdf\xe7\x4b\x53\x7b\x34\x6a\x9f\x9c\x9c\xbf\x79\x33\x98\xcf\x07\x8c\x7d\xae\x99\xc0\x7c\x3b\x84\x5b\xba\xfc\x21\xff\x5c\xd4\xc4\x12\x27\x0a\xd7\x5a\xa2\xa7\xb0\x95\xed\xcb\xe0\xcf\x3d\xf9\x6f\xf7\xaa\xe5\x29\x56\x14\x42\x86\x54\x17\x78\xfd\xfa\xf5\xeb\xf6\xc5\xc7\xab\x8f\x1f\xdb\x2f\x8b\x22\x1f\x55\x99\xaa\x02\x36\x78\x09\x35\x27\x16\x2d\xfb\x5f\xbb\x57\x39\x9c\xb5\x91\xe5\x43\x2d\x0b\xe7\x6a\x47\xc9\x80\xc4\x81\x33\xb5\x43\x96\xa0\x28\xf1\x70\x4d\x71\xb9\x73\x76\x76\x76\xc6\x6b\xc5\xee\x45\x41\x99\xff\x83\x5d\xeb\xd2\xaa\x8a\x96\x94\x2a\x29\xe0\x42\xfb\x00\x0d\xa8\xf2\xd6\x67\x4a\xc8\x8f\x67\xcb\xf8\x96\xa6\x50\x6b\xf6\xf9\x74\xa8\xc1\x73\xb8\xa8\xf5\x7b\xb5\x16\xd4\x7a\xbd\xda\x15\x9f\x15\xb5\x76\xff\xd1\xbe\x7c\xd3\xee\x3f\xe2\xaf\xf6\x7b\xb5\x2b\x6b\xce\x4b\x84\x2f\x24\x3e\xbe\x7f\x11\x63\x79\x83\x63\x98\xaf\x1b\x06\x05\x53\x9a\xf1\x63\x08\xe7\x3a\x13\x5f\x63\x32\xd7\xa5\x6a\x9a\x7c\x59\xbf\xc6\x37\xec\x38\x0e\xce\xc4\x37\x3e\xd4\xf9\x38\xde\xbc\x49\x96\x29\xdb\x8c\xc2\x78\x99\x51\xb6\x39\xa3\xe3\x24\x0e\xf8\xef\x28\x0a\x99\xf8\x51\xeb\xb0\x45\x14\x66\xf5\xda\xa6\xd6\x28\xf8\xb4\x8c\xc3\x4c\x83\x7a\x45\xc6\xfc\xd0\xcf\x8f\x54\x06\x2b\x6b\x06\x26\x18\xe8\x07\x44\x7c\x7f\xa6\xbd\xa2\xfb\x2d\xbb\x30\x92\xc5\x5f\x1e\xd2\x03\xeb\x25\x52\xce\x5f\xed\x1f\xd2\x47\xd6\xbb\x13\xb2\xc6\x57\x3f\x1f\x1e\x38\xef\x46\x7c\xe9\xc6\xb7\x7b\x8f\x9e\xec\xd1\x43\xeb\xf5\x27\x4a\x24\xda\xfe\xa3\xfd\x43\x7a\x98\xbf\xd5\x8f\x8a\xbc\xf5\xc7\x51\x48\x18\x75\x9b\x3c\x67\x30\x80\xda\xbc\x68\x77\xcd\xac\x01\x5f\x7b\xdf\xcc\x45\x41\xde\x66\xeb\xcd\x8c\xbf\x99\x25\xcb\xd4\x7a\x1e\xf0\xe7\x01\x59\x5b\x8f\x4f\xc4\x63\x07\xcd\x8a\x3f\x5f\x51\x7a\x6b\x3d\xff\xc8\x9f\x87\x2c\xf9\xe8\xbe\x1a\x21\x4d\x9c\x65\xd6\x8b\x7f\xf0\x17\xff\x5a\x92\x34\xa3\x36\x55\x6b\xfe\x6a\x4d\x89\xfd\xfc\xe4\x44\x12\xb6\x3e\x9d\x7c\x72\x5f\x53\x45\x9d\xdb\xa0\x97\x1a\x81\xee\xdb\xe9\x54\x16\xf4\x20\x7d\xfd\xba\x28\x89\xaf\xbd\xfd\x39\x26\x73\x1a\xbd\x92\xba\x28\xb7\x4b\x03\xb2\x4e\x26\xbc\x41\x55\xe4\x87\x2c\x91\xc4\x57\x12\x2b\xc1\xca\x39\xce\xdf\xaa\xba\x4a\x1a\x25\x71\x28\xa8\xad\xcd\x2b\x0e\x7d\xb9\xbe\x8d\xef\xc5\xe2\xa9\x7d\xfc\x33\x58\x60\x61\x08\xe8\x84\x2c\xa3\x0c\x52\x1a\x91\x2c\xbc\xa3\x42\xea\xf3\x3d\x31\x9b\x25\x51\x50\xa0\x52\x00\x5c\x94\x9d\xe7\xaf\x1d\xa6\xb2\x01\x1c\x3c\x6a\x89\x33\xb8\x10\x02\x90\x25\x20\x86\xbf\x39\x2d\x0a\x40\xf1\x16\x01\xf9\x6c\x30\xe7\xc8\x00\xf6\xf6\x04\x18\x7f\x87\x40\x01\x59\x9b\x1d\x39\x80\xbd\x43\x01\x13\x90\xb5\xa8\x90\x8f\x6d\x73\xc8\x0f\xa0\xdf\x17\x6d\xc6\x97\x08\xc6\x79\x5d\xc6\x5b\x71\x92\xe6\x50\x49\x1a\x84\x31\x89\xc2\x3f\x28\x0a\xe4\x05\x09\x0a\x75\x5d\xfe\x2a\x3f\x99\xd6\xf8\x84\x58\xc1\x47\x18\xc1\x09\x04\xb9\x9c\x05\x5d\xce\x2e\x48\x10\xd0\xa0\x28\xc2\x41\xdf\xc0\x0c\xe6\xc0\x78\x51\xb3\x90\xd5\x9b\x62\xe3\x5a\x3a\xaa\x47\xfc\x9f\x41\x31\x24\xea\x0d\x0b\x40\x74\x66\xb6\x4c\x63\x54\x3d\x76\x90\x1b\xf5\x06\x34\xa1\xff\xd4\x00\xfc\x6a\xc9\x8c\xd1\xc8\x44\x2c\xc8\xd9\x86\x5e\xa8\xe5\x4e\x48\x46\xea\x0d\x51\x17\x3b\x9b\x25\x69\x56\x47\xbd\xa7\x6c\x53\x63\x5b\xcd\xa3\xef\x53\xf3\x3d\x2a\x3d\xb9\x2f\x1f\xb9\x64\xae\x6f\xc1\x79\x72\x72\x5f\x9c\x52\x2a\x6d\x41\x1c\xdc\x9f\xd8\xf5\x36\x94\x01\xfc\xe5\xee\x96\x92\x93\x8d\xc2\xf8\x1e\x9c\x0f\x78\xd5\xdf\xa9\xe6\xfb\x0e\xb5\x80\x57\xfe\x9d\xea\xbe\x47\xb5\xab\xfb\xf6\x1f\xaf\x63\x4b\x07\x7e\xbc\x2f\x4e\xb9\xe0\x6c\x41\xfb\xe9\xd3\xee\x68\x23\x3a\xc9\x3e\xd3\x34\x79\x15\x46\x11\x72\xa3\xb3\xc6\xb1\x0c\x3f\x42\xbf\xd7\x6b\xc1\xde\xb6\xaa\x3e\x7d\xfa\xab\x55\xb5\xe0\x60\x7b\x25\xdf\xa1\x96\x47\x3b\xd4\xb2\xbd\x9a\x3b\x92\xc2\x1a\x86\x60\xa0\x66\xe1\x34\x86\x21\xac\xe1\xf9\x10\x7a\x70\x04\xb5\x26\xdf\xc8\xd6\xda\xb5\xa7\x65\x64\x62\x89\xa6\x49\x2d\xde\x1b\x91\x1b\x56\x5f\x37\x5a\x70\x58\x4d\xed\x74\xfa\x57\xfa\x58\x6d\x6f\x76\xee\xe7\xe9\x74\x3a\xfd\x1e\xd5\x6d\xed\xeb\xe9\xf7\xab\x69\x4b\x7f\xbf\x7e\xfd\x57\x38\xa8\x6d\xfd\x76\x66\xe2\xeb\xd7\xaf\x5f\x7f\xa7\x1a\xb7\xf2\xf1\xf5\x77\xad\x6c\x0b\x2b\xe9\xbd\x05\xe3\xf6\xc5\xed\xe5\xb7\x08\xc6\xed\x68\x09\xdc\x53\xe4\x9a\x5b\x14\x9a\x86\x41\x48\xe7\x82\x49\xb8\xdb\xe5\xec\x11\x9b\x34\xb1\x45\xc6\xdf\xe9\x92\x56\x93\x71\xfc\xbf\x41\xc6\x84\x44\x6c\x0b\x1d\x6f\xee\x4b\x87\xac\xac\x12\xe9\xec\x1b\x91\xf2\x69\xb4\x07\x9b\x0d\xf4\xf7\x2a\xf1\xcf\xef\x8b\x3f\xe7\x49\x25\x5a\x76\x5f\xb4\xf2\xf4\xb4\x05\xed\xd9\x7d\xd0\x26\x6f\x63\xb1\x17\xea\x68\x7a\x0c\xce\x9a\x2e\x97\x30\x5b\x2a\x3a\xfb\x56\x81\x56\x59\x6b\x63\xab\x5c\x3b\xe3\x35\x7f\xb3\xa8\x31\xab\x6c\xc1\xfe\xd6\xca\xce\xfe\xd7\x2a\xfb\xbc\x4b\xdf\xf1\x1d\x01\x81\x21\xb4\xb1\x86\x3f\x92\x98\xd6\x1b\x2d\x07\x8a\x7f\x6e\xf8\x41\xb2\xe9\xd9\x14\x84\x13\xa8\x13\x78\x06\x3d\x1f\x7e\x40\xb1\x35\x84\x36\x71\x0b\xe6\x58\x7d\x5b\x8d\xaf\x65\x7c\xb9\xb1\x77\x1e\x62\x04\x10\xe8\xc2\xa1\xe8\x6f\x68\x42\x6d\x50\x2b\x01\xe3\x13\xf5\x70\xfb\x72\xf7\xf9\xf3\xff\x77\x99\xf7\x17\xd8\xf6\xc7\xbd\x64\x10\xe7\xd8\xf1\xcd\xcd\xb6\xd3\xe7\x1f\xf7\xc7\xfa\x9e\xcc\xb7\x1d\x96\xbf\xc0\x3d\x25\xe6\x1d\x89\x96\xf4\x74\xb2\x05\xed\x7f\xdd\x17\xed\x32\x0e\xbf\x6c\xc1\xf9\x8f\x7b\x21\x94\xea\x55\x07\xe7\x0f\x1a\xf6\xfc\x7b\x40\x17\x29\x1d\x13\xaf\xfa\x2e\x0a\x19\x5e\x41\x5e\x08\x55\x2e\xab\xb5\xa4\x52\x57\x1c\x7b\xf9\x4f\x75\x16\xd5\xbf\x3b\x2f\x47\x61\x5c\xbb\x7a\x2a\xf0\x76\xbb\xf0\x21\x1c\xdf\xa2\xc5\xdb\x24\x4c\x59\x06\xd2\x30\x09\x92\x09\x64\xab\x04\x92\x14\xc4\x8d\x39\x49\xa7\xcb\x39\x8d\x33\xd6\x81\x60\x12\xc1\x38\x99\x53\x86\xc6\x3d\x0a\x8f\x54\x2d\x8a\x5b\xf4\x9c\x3d\xc1\x24\xaa\x93\x16\xdc\xb4\x60\xac\x33\x8a\xad\xc2\x6c\x3c\x83\x7a\x81\x35\xa2\xf1\x34\x9b\xd9\xcc\x1c\x13\x46\x61\x6f\xa0\x18\x4a\xe0\xc1\x10\xe2\x65\x14\xc1\x11\x10\x18\xc0\xcd\x53\x17\x7a\xbf\x1c\x5a\xfb\x7d\x03\x03\x18\x9b\xa5\x65\x03\x06\xbc\xc1\xc9\x0a\x62\xba\x82\x97\x69\x9a\xa4\xf5\xda\xdb\xf9\x22\xa2\x68\x4e\x36\xa7\x35\xad\x1f\x45\x1f\x7e\xfd\xc1\x6c\x72\x61\x7c\x87\x2d\xd7\x9b\x24\x09\x33\xcd\xf3\x3a\x63\x12\x09\x26\x49\xd4\x36\x42\x49\xd8\x07\x71\xe5\xfe\x2a\x22\x53\x66\x8c\xba\x6e\x17\x3e\x52\x88\x29\x0d\x50\x5d\x4a\xe9\x02\xc6\x51\x12\x4b\x9b\x46\x61\xc1\xd8\x42\x5d\x26\x65\x8f\x80\x65\x24\x0e\x48\x1a\x40\xc8\x20\x4e\x32\xb8\xa3\xe9\x5a\x47\x35\xa3\xd1\x62\xb2\x8c\x3a\x36\xd1\x66\xc7\xd0\xf9\x22\x5b\xf3\x79\xc0\xf7\x85\xe6\xf4\x58\xc6\x4b\x96\x6b\x3b\x07\x68\x34\xe7\xbe\x7e\x1b\x2f\x96\x99\xe7\x6d\x72\x47\xd3\x49\x94\xac\x60\x00\xed\x3d\xf3\xd5\x78\x46\x52\xf6\x8e\x4e\xb2\xd3\x3b\x9a\xc2\x40\xb7\x5c\xe4\x1f\xde\xb1\x0a\xab\x87\xaa\x30\xbe\x23\x51\x18\xe0\xc5\x11\x0c\x10\xda\x0b\x20\x6f\x91\xfd\x2d\x63\x34\x7d\x2b\xc0\x48\x46\x83\x92\x8a\x58\x22\x9f\x17\xe3\xc4\xdf\xaf\x8b\x34\x8c\xb3\x11\x9b\xd6\xe7\x6c\xaa\xf7\x27\x5f\x84\xa4\x55\x2f\x5b\x2e\x16\x29\x65\xec\xa4\x90\x0b\x1f\x49\x1a\x87\xf1\x94\xc1\x70\x38\x14\xf5\xc0\x4f\x3f\x39\x12\x48\x1a\x1d\x8e\x93\x98\x25\x7e\xab\x43\xf9\xaa\xb3\x22\x69\xec\x4c\x3b\xed\x5d\xbd\xa6\x55\x0e\x2b\x51\xfb\x00\xf8\x82\xce\xe9\xde\x36\x1b\x94\x44\xa3\xbc\x95\x2d\x98\x18\x75\xf1\x15\x1b\xc5\xce\x79\x38\x47\x2b\xda\x74\x49\x9f\xda\x03\x8f\x7e\xc9\x68\x1c\xd4\xcb\x25\x2e\xe7\x57\x8e\xc5\x27\x8e\x0d\x46\xbb\xcb\xb3\x4e\x01\x32\xb4\x4c\x52\x6b\x44\x4d\xe2\x0e\x59\x2c\xa2\xb5\xd4\xfa\xe5\x72\x4c\xe7\x07\xb6\xb6\x6c\x4a\x4b\xae\x9c\x85\x5c\xb6\xd4\x63\x32\xa7\x2d\xf0\x8c\x83\x07\xfa\x8a\x70\xc1\xc1\xae\xec\x16\x56\xb4\xce\x2d\xec\x30\xd9\xdf\x6b\x0b\x22\x26\x30\x72\xbd\x05\xe3\x64\x19\x67\x1e\x41\x56\xf4\x09\xb1\xa9\xf2\x6d\x9b\x39\xb8\x90\x76\x92\x6b\x0d\x85\xfa\xa9\x3b\x57\x0c\x7a\xac\x8b\x17\x49\xd6\x82\xa6\x61\x12\x7c\x13\x5d\xee\x41\x58\x56\xe1\x25\x52\x56\xe4\xa1\x12\xff\xac\x66\x61\x44\xa1\x6e\xdf\x0e\x79\xd6\xb4\x10\x86\xce\x25\x52\x67\x91\x2c\xf4\xdd\x81\xef\xde\xe7\x22\xe4\xbb\xe8\xa4\x76\xe5\x96\xaf\xfb\xe1\xaf\x5a\x10\x36\x74\x5e\x4a\x22\xf5\xbb\xa8\x12\x02\x0d\x90\x5d\x89\x0b\xaf\x44\xc9\x2d\x34\xed\x19\x34\xf9\xc0\x3a\x27\x27\x27\x27\xdb\x70\x71\x20\x71\xe2\x92\xfb\x98\xfb\xfb\x19\xa4\x4b\xb4\x76\xc0\x87\xf7\x70\x35\xc8\x87\xd6\x3b\x1c\x3c\xb9\x30\xfa\x9a\x6f\xa8\x84\x29\x3f\xe4\xd6\xf8\x72\x05\x36\x4b\x0b\xa0\xba\x30\x6d\x6f\x01\xbb\x0d\x17\xa7\x72\xe9\xb3\x45\x80\xfe\x0e\x05\xb9\xd0\xc5\xd8\x22\x7b\x46\xc7\xb7\x0a\x4c\xe2\x75\x84\x33\x02\x26\x8b\xf5\x0b\x7c\x2d\x07\xb8\x03\x8b\x73\xe3\x3a\x80\x21\xee\x81\x4e\xb8\xec\x6e\x0a\xa0\xce\x75\x60\x0a\xb4\x6e\x17\x94\x99\xb4\xce\x55\xb3\xad\x0a\xa2\x1e\xc8\x2f\xf6\x12\x10\xf3\x1e\xe6\x03\x5a\x6e\x0b\x86\xc5\x13\xe1\xda\xf0\x5b\x1c\x66\xac\x28\x6e\x59\x2a\x50\x82\x46\x2b\x16\x16\x54\xa8\xc3\x66\x63\xef\x13\xe4\x7e\xdc\x57\x42\xbe\xf2\x14\x92\x77\xc8\x6e\x11\x61\x43\xea\x16\xe0\x9b\x6d\x1f\x3c\x9a\x0d\xb8\xe0\x78\x91\xed\x42\x07\x64\xed\x01\x16\x37\xe3\x2e\x34\x7f\xee\xa3\x5d\xde\xb7\x7b\x88\xc7\x37\x9e\x22\xea\x2e\xdf\x2d\x22\xde\x78\x6b\x29\xb4\x21\xde\xaa\xf2\xd7\x58\xf8\xa9\x71\xf9\x9e\xf2\x75\x8a\xd1\x38\x13\x23\x69\x92\xa4\xe8\xe0\x70\x1c\x04\xbf\xd2\x79\x72\x47\xad\xa1\x69\xd5\xd5\x34\x7e\x37\xbd\x2d\x79\x08\x7d\xba\x0f\x4d\x34\x72\xed\xf5\x7a\x5e\x06\x3d\x84\x43\x7a\x50\xc0\xf0\xdf\x3d\x0f\xe3\x1f\xa2\xb1\xd2\x53\x03\xcc\x84\xed\x76\xe1\xef\x74\x4c\x96\x8c\xa2\xf9\xb4\xde\x12\xc8\x52\x4a\x32\x06\x7b\x07\x12\x1b\x61\x10\x84\x93\x09\x4d\xb9\xcc\x40\x67\x09\xa2\xe3\xe1\x23\x60\x35\xa3\x31\xac\x92\xf4\x36\x8c\xa7\x40\x84\x67\xd0\xc9\xd9\x79\x0b\x56\xc5\xae\x9f\x65\x49\xca\x37\xfc\x74\xae\x0c\x89\x69\xb4\xb6\x67\xb4\x18\x64\x4d\xfc\xdb\xf4\x0c\xd7\x87\xf0\xf8\xa9\x5e\xf9\xdb\x8c\x1f\x12\xc2\xf9\x22\x61\x2c\xbc\x89\x38\xf1\x24\x66\x11\xc9\xa8\x9a\x10\x61\x2c\x0c\x34\x18\x3a\x5b\x24\xcb\x0c\x6e\xe3\x64\x15\xc6\x53\x1d\xcd\x6a\x16\x8e\x67\xaa\xc4\x3a\x59\x02\x49\x29\xfe\x3f\x23\x91\x68\xd3\x4d\xb2\xcc\x5a\xc0\x12\xde\xa2\x19\xe1\x5c\x92\x2d\xd2\xd1\x84\x99\xd6\xb4\x8e\x3d\x24\xd4\x04\x6d\xca\x6f\x4d\xff\xa4\x7f\x08\xfb\xd6\x2b\x21\x3e\x1e\xa2\xa2\xd8\x61\x58\x46\xf0\x14\xee\xbc\x91\x9e\x49\x43\xe5\x7d\xa7\xef\x24\x1c\xe0\x9b\xe5\xcd\x4d\x94\xeb\x3f\xbe\x7e\xcb\x8a\xf5\x86\x46\x0b\x7a\xbf\xc5\xca\x94\xc1\x72\x13\x6d\x1f\x48\xf9\x4c\xab\x73\x11\x1c\x42\x18\x9b\xaf\x40\x2e\x3f\xda\x71\xf6\x86\xef\x29\x7c\x1b\x6c\x72\x81\xcb\xff\xcd\x45\x78\x55\xaa\xe5\xf8\xe1\x87\x72\xac\xb5\x2c\x39\x43\x5b\xa6\x9a\x83\x9e\x74\xd4\x3b\x5e\x41\xfe\xe3\xe9\x8e\x88\xa5\x96\xc8\x87\x57\xbe\x42\xb4\xf2\xbb\x17\xab\xd2\x26\xf8\x77\xf2\xfa\x72\x9a\xb4\x70\x06\xdb\xcb\x5b\xd8\x42\x07\xb3\x16\xdc\x91\xe8\xa9\x49\xad\x3c\xa6\xf1\x52\x9d\xeb\x90\x1d\x8b\x6d\x81\x58\xf4\xec\x43\x9b\xdd\x82\x2c\x71\x8b\x0c\xfd\xa8\x7c\xfb\x00\xb7\xfa\x9d\x2a\x2c\xaa\xd8\x09\xe9\x64\x17\xa4\x93\x1c\xe9\x64\x27\xa4\x8e\x83\xa5\x0f\x69\x94\x23\x8d\x76\x42\x2a\x1d\x1b\x76\xc0\x2c\x21\x87\x46\xc1\x9d\xea\xc8\xfe\x98\xef\x52\x01\x07\x1b\x16\x45\x76\xeb\x3d\xf6\xdb\xf9\x8b\xdd\x86\x0c\x07\x1c\xea\xc5\x76\xaa\x20\x41\x17\x94\x5d\x6a\x90\x90\x43\xa3\xe0\x4e\x75\x2c\x76\x1a\x2e\x8b\x62\xbc\x2c\x76\x1c\x30\x42\x5c\xef\x32\x6a\x94\x60\xd7\x0b\x96\x0a\x1b\xdb\x47\x54\x1e\xa8\xe0\xb9\x7b\x81\x80\x92\x16\xa5\xac\x5d\xc8\xaf\xb1\x48\x16\xf9\xea\x52\x80\x3a\xf2\x15\x50\xc4\xa8\xa1\x7e\xc1\x8b\x79\x20\x34\x7e\xdc\xb9\xde\xc9\x65\x57\x1d\x59\x22\xf0\xc1\x50\x08\x2e\xfb\xfd\xd7\xed\x92\x3e\xbf\x8a\xf4\xcb\x4e\x72\xc3\x7e\xe5\xbb\x99\xba\x70\xd5\xb2\x0f\x3e\xd2\x03\xcd\x73\x1b\x23\xf1\xa2\x91\xcb\x98\x86\x91\x42\xa0\x75\x14\xd0\x88\xd1\x8a\x62\x93\x28\x49\x52\x4f\x39\xeb\x74\x13\xd1\x49\x06\xe8\x0f\x37\x09\xa3\x08\x88\xf4\x2a\x53\xaf\x19\xa5\xca\xb9\xf5\x77\xb6\xa0\xe9\x04\x7d\x58\x79\xa1\x36\x2f\xd4\xe6\x85\xf8\xd2\xc5\x7b\x9f\xbf\xe6\xbb\xe2\x78\x4c\x61\x9c\xcc\x17\x24\x0d\x59\x12\x9b\x1c\x31\xd4\x25\xa2\xaa\x16\x64\x24\x9d\xd2\xec\x1d\x0e\x2d\x34\x30\x1b\xd3\xb3\x70\xea\x9c\xa2\x92\x65\x26\x0e\x4f\xb5\x1a\x34\x21\x37\x00\x92\x4d\xb4\x36\xf8\xc2\xc8\x48\x72\xf8\xf9\xd0\xd8\x90\x2b\x75\x06\xe2\x53\x43\xfa\x99\x41\x86\xdd\x21\x45\xdd\x3d\x5e\xb9\xf8\xe9\x9b\x9a\xb2\x0b\xea\x48\xc0\x11\x1a\xdc\x89\xd6\x14\x96\x4e\xb5\x86\xb0\x77\x6a\x58\x88\x1c\x1d\x55\xc2\xc2\x2c\xbc\xa3\x62\xa1\x63\x27\x72\x17\x3d\xa6\xf5\x1b\xc2\x68\x0b\x92\x6c\x66\x8e\x29\xce\xa4\x54\x18\xfb\xeb\x27\x86\x01\xf4\x5a\x72\x77\x3a\x80\x9e\xbe\xd7\x4b\xa9\xb4\x97\xe5\x65\x10\x5d\x6e\x3e\xdb\x06\x5e\x49\x61\x4d\x6b\x70\xa3\x2e\x60\xa5\xf5\x9b\x04\x15\xbf\x1a\x72\xa7\xa9\x8f\x73\x7c\x8d\x1a\xfb\x7a\xa3\x43\x82\xa0\x5e\xd4\xdb\x82\xda\xa8\xd6\xe8\x84\xec\x78\x92\xd1\x54\xe0\x75\xb6\x32\xed\x76\x51\xa0\x64\x07\x63\xde\x56\xf3\x6d\x32\xa2\x82\x36\x34\xb7\x57\xdf\x78\xea\xcc\xe8\x94\x32\x7f\xa7\xcc\xef\xd9\x19\x05\xbd\x82\xa0\x21\xcc\xc9\x2d\x3d\x66\xa2\xa9\x2d\x64\x5d\xc3\xc3\xae\x90\xfd\x9d\x4e\x92\x94\x96\xb0\x44\x74\xf3\x6e\x23\x64\xab\xd0\xa8\x46\xe5\x27\xb4\x84\xed\x6d\xfb\x99\xa7\x84\x1a\x70\xdb\x7b\xd5\xdb\x15\xdd\x2e\x9c\x9f\x9e\x9c\x0e\x20\x15\x07\xce\x5a\x4c\xe6\xb4\x06\x24\x9d\x02\xe1\x83\x48\x57\x0a\xf3\xe3\x9d\x00\x0b\xac\x5d\x2d\x3f\xa5\xf2\x53\x2b\x4d\xeb\x41\x98\x52\x7c\xda\x42\xaf\xa4\x4a\x75\xeb\x1d\x89\x7c\x6a\x59\xd5\xe1\xc1\x92\x8b\xb3\xf9\xc2\x6c\x75\xb7\x1b\xc6\x77\x34\xcd\xf0\x16\x32\xd7\xa4\x0b\x3f\x7d\x2e\x28\x23\x12\xc6\xe2\x8c\x08\x61\xe6\x9c\x4f\x44\x6d\xb8\xa8\xe1\xdd\xde\x4f\x3f\xc1\x83\x90\xbd\x27\xef\xeb\x4d\x49\x88\x6f\x81\xf3\x2b\xe0\x6b\x62\xf8\xd6\x1b\x1d\x2e\xc5\xf8\x33\x80\x26\xd4\x64\x1d\x2d\x50\xeb\x54\xc8\x0a\x04\x41\x07\x3e\x44\x94\x30\x0a\xfc\xbc\xef\x22\xe0\xe5\x95\x24\x97\x04\x75\x6a\x9e\x5b\x88\x6c\xbe\x90\x2b\xad\x5c\xd1\x05\xf0\x53\xf9\x17\x86\x2e\xe3\xb4\xc1\x00\xf9\x46\x40\x5b\xe8\x87\x7c\xa1\x17\x4e\x22\x35\x38\x82\xe6\x1d\x46\x20\x71\x16\xf3\x60\x99\x16\x27\x59\xa5\x64\x33\xba\xd2\x84\x27\x41\x70\x9a\x9e\x2d\x6f\xb2\x94\x8c\x33\xa5\xdc\x7b\x95\x26\x73\xa9\xd4\x14\x6a\x45\xec\xeb\x7c\xec\x38\x53\x23\xd7\xc2\x97\x29\xd5\x8b\x5d\xc2\x96\xea\xe6\xc9\x1c\x6b\x23\x62\x8c\x86\xec\x38\x08\xc2\x78\xda\x82\xe5\x22\x20\x19\x15\xae\xd3\xb6\xe8\xb1\xe6\xa5\x2a\x6e\xea\x96\xbc\x3a\xba\x02\x94\x3f\x28\x51\x13\x6a\xf8\xac\x09\xac\x13\x05\x43\xeb\x67\x7e\x3d\x9d\xa5\x4b\x0a\x03\xe3\xad\x75\x72\xd4\xe9\xb4\x07\xf8\x9c\x6f\x5d\x83\x0e\x13\x51\x3d\xea\x4d\xf1\x1b\x9a\x66\xab\x1f\xe6\xac\xf2\xea\x89\x79\x25\xbc\x85\x8e\x68\x25\x2b\xe1\x7f\x28\x18\x8f\x1e\x88\xb5\x16\x7f\xfc\xda\x79\xcc\x97\x70\x64\xdb\x0e\x75\x09\x46\x79\x6a\xc3\x2b\x5b\xbd\x4a\xbb\x2a\x04\xc0\xba\x24\xff\x77\xa8\xad\x6c\x6c\x40\x1e\xf9\xa5\xa3\x83\xc8\x41\xc6\x9b\xb2\xd9\xc8\x6a\x2a\x76\x8d\x22\x30\x4c\x38\xe1\x82\x82\xc4\x40\xd2\x54\xfa\x30\xe5\x83\x3a\x64\xc7\xfc\x61\x3d\x8c\x17\x4b\xdf\xcd\x9a\x13\xd2\x47\x29\x3e\xc4\xd5\x94\x2c\x86\x13\xfc\x42\xc6\x28\x42\x84\x57\x35\xff\x24\x0a\x19\xea\xf1\xbf\x63\x75\x1c\xdf\x55\x0d\x36\x1b\x53\x22\xa3\x02\x3f\xc4\x38\x4e\x63\x2e\x87\x38\x98\xbd\x3e\x89\xdd\x2f\x45\x03\x13\xe4\x0d\x6b\x15\x12\x81\x1a\x91\x27\xd4\x32\xcb\x6c\xad\x0b\x62\xc0\x26\xb3\x3a\xe2\xe8\xb7\x04\xae\xbd\x16\x04\x49\x9c\xbd\x48\x70\x4d\xb1\xe7\x7d\x44\x63\x15\x55\x69\x1e\xc6\xb2\xa4\xdc\xe3\x2a\x04\xea\x5a\xcc\x9c\xdb\xe2\x21\x5f\xf8\x15\x02\xbe\xbb\x36\x10\x40\xbb\x12\x03\x6f\x0d\x33\x43\x2e\x21\xcb\x8c\xdb\x35\x7e\x48\xe4\xdb\x71\x08\xe1\x19\xaf\xf3\x29\x84\xcd\xa6\x4f\x2f\x57\xd7\x5a\xc9\x17\x3d\x41\xc9\x45\x78\x85\x4b\xa1\xa0\xe3\x22\xbc\x6a\xd8\x3d\xc4\x3f\xf5\x07\x56\x61\x69\x56\xa6\x50\x34\x10\x87\xf6\x10\x31\xf9\x17\x52\xde\xa8\x66\xb3\x5c\xed\x67\x8d\x34\xc1\x84\xa6\xc6\x4e\xff\x80\xcd\x2f\x10\xc4\xdd\xcf\x92\xff\x6b\x1f\x10\x9d\x87\x79\x2f\x27\x2b\x9a\x52\xbe\x66\x22\x48\x27\x4b\xde\xf1\x27\x2f\x08\xe3\x7b\xdc\x94\x2e\x22\x32\xa6\xf5\x6e\xbd\xd3\x60\x7f\xeb\xb6\xa0\xf6\xb7\xbe\xbd\x22\x63\x39\x59\x5e\x3a\x09\x5f\xe0\xb3\x2b\x2e\x00\x4c\x57\xd3\x0b\x59\x1d\xbe\x92\xdf\x2b\xce\x3e\x88\x66\x4b\xa3\xf5\x6b\x2f\x9c\x52\xe2\xc1\xf6\x8b\xb3\x3f\x2d\x5b\xb5\x02\xe2\x43\x9a\x2c\xcc\x77\xfc\x74\xff\xf4\x07\x73\xf0\xa1\xe2\x21\x8c\xa1\xa4\x52\x70\xb5\xac\x1a\xa4\xd0\x73\x7a\x87\x89\x49\x87\x7e\x41\x24\x1a\x89\x05\xfd\x9a\x0b\xb3\x68\x99\xb6\xc2\x62\xc5\x85\x59\xea\x0a\x86\x7a\x93\xca\x14\x25\xbb\xab\x34\xac\xea\x4a\x0e\x43\xe4\x96\xbe\x0b\x59\x56\x9f\x84\x34\x0a\xec\xce\x43\xcb\x87\x96\x74\xf8\xb7\x56\x77\x2c\xd0\x09\xe3\x80\x7e\x39\x9d\xd4\x85\xbb\xb7\x90\xbf\x8e\x2e\x04\xd1\xc0\x50\xbf\xba\x01\xbc\xf8\xc2\x38\x02\x43\xe1\x5a\xee\x1b\x8e\x78\xd6\xf1\x54\x36\x97\xcb\x69\x65\x6d\xb6\x59\x7d\x51\x9d\x28\x5e\x5a\xa1\x4f\x23\xe3\x3d\xde\x88\x55\xf8\x02\x89\xe3\xdd\x67\x3b\xe9\xb5\x00\x29\xf6\x4d\xff\xb0\x25\x23\x2a\xb8\xd6\xbf\x73\x9a\xcd\x70\x33\x2d\x17\x79\xa9\xe1\x93\xd5\xb8\xf0\x29\x65\xcb\x48\x98\x5d\x5e\x3d\xfd\xc1\x99\x07\x4a\xcb\x28\x43\x8f\xf0\xf5\x51\xac\x5e\x5e\xad\x1a\x12\xcc\x9b\x82\xe0\x1e\x43\x24\x15\xc1\x24\x57\xce\x55\xee\xf7\xa7\x8a\xe7\x05\x6b\xc2\x32\xbb\xe8\x79\xde\xe4\x7a\xa3\xb3\xcc\xc6\xf5\x06\xdf\x1e\xd6\x45\xb7\x15\xa6\x22\x6e\xdf\x48\x8e\x89\x7d\x80\xc9\xb4\x16\xcc\x95\xbf\x23\x97\x7c\x35\x5b\x86\x7e\xf5\x30\x4c\xb0\x40\xda\x61\x56\x98\xce\x8a\xb6\x09\xf0\x52\xcb\x59\xf0\x0f\x2a\xf0\xac\xa4\x38\x6e\xbd\x6b\x69\x51\x31\xf6\x74\x67\xb1\x64\xb3\xba\xaa\xbe\xe1\xe1\x4b\xa9\x35\xb7\xc4\x50\xba\x14\xfa\x85\x84\x5a\x65\xc5\xb1\xf7\x55\x92\xbe\x48\x68\x3a\xf6\x58\x49\x8c\xf9\x73\x2d\x8a\x50\xd3\x53\xa6\x65\x1f\x08\x97\x14\x4c\xe5\x1e\xef\x04\x13\x13\x5f\xea\x7b\x7c\x13\x10\xb2\x57\x61\x1c\x66\xd4\x7c\xef\x88\x73\x17\xc3\x73\x8f\xa0\xd0\xeb\xd7\x14\xae\x26\x6a\x8b\x55\x65\x9d\x69\xe0\x41\x7d\x6f\x25\x9a\x0a\xb1\x8d\x98\x4a\x4c\xf2\xc8\x9a\xbd\x8d\xf1\x2c\x51\x5f\x53\x92\x4a\x9d\xa0\x67\xb3\x9c\x5b\xc5\xf0\x7f\x3a\xbf\x9d\xbf\xd0\xe1\xa1\x09\xfd\x16\xf4\x1a\x8d\xce\x94\x66\xbf\x9d\xbf\x38\xd1\xfc\xc4\xed\x2a\xf1\xd6\xfd\x6d\x8c\x9e\x71\x02\x45\x90\xac\xf8\x3f\x6b\x4f\xad\x1c\x58\x7a\x87\xcb\x89\x7c\x21\xca\xf4\xfb\x2d\xd8\xef\xf3\x93\x56\xb2\x82\x36\x2f\x7d\xd5\xd0\x30\xa1\xc9\x49\x55\x93\xf3\xea\x3d\x95\x86\xec\x1d\x25\x0b\x0d\xe2\x08\xf6\x0f\x0f\x31\x5e\xcb\xa3\xb2\x83\x86\x55\xc2\xc1\x89\xcf\xe1\x47\x38\x10\x2b\x0c\x1f\x79\xf2\x49\xbf\xd7\x13\xa3\x91\x6f\x5a\xd5\xc3\x83\x5e\x4f\x00\x96\xdc\xbf\x1a\x76\x4f\xce\xdd\xab\xb2\x27\x36\x55\x88\xf3\xce\x35\xc1\x78\x9b\x9d\xeb\xc5\xa4\x93\xdb\x1c\xf3\x6a\xda\x7b\x8e\x6e\x3b\x7f\xed\xae\x26\x9d\x6b\x72\x81\x61\x53\xaf\xe0\x19\xf4\xf0\x6c\xa8\x3d\x7a\x0e\xfd\x3e\x1c\xc9\xb8\xaa\x03\x7f\xe9\x93\xe3\xf3\x97\xbc\x70\x3f\x2f\x2c\x9e\x3c\x37\x06\x24\xbe\xf8\xf4\xf2\xf8\xd7\xab\x96\x5e\x03\xef\x0f\x0c\xd1\x5a\x82\xfc\xcd\xe9\x6f\xbf\x9a\x94\x89\x27\xcf\x61\xef\xc0\x77\x2e\xe0\x9f\xba\x06\xc7\x19\xb2\x77\xc0\x39\x25\x9e\x8a\x50\xaf\x57\x52\x64\x94\x20\x28\xf9\x20\x02\x11\xfe\xf5\x2f\x20\xd0\x82\xc8\x4a\x2c\x0d\xce\x04\x8c\x4a\x5b\xc2\x04\x45\xb4\xd1\x41\xf2\xd9\x73\x78\xf4\x84\xf7\x90\x08\x61\x5b\x82\x40\x55\xa7\x23\x50\xcf\x24\x02\x19\xd6\xb6\x94\x02\x8d\x68\x93\x0c\xed\xc5\x73\x78\xf2\x44\x10\x53\xc4\xc9\x75\x11\xb6\xfb\x9e\x55\x55\x8c\xe3\x6b\x35\x52\x4f\x54\x1c\x09\xec\xb9\x7c\xfc\x3e\x13\x31\x7f\x37\x9b\x62\x48\x3f\xc7\xe1\xe3\xdd\xb1\x17\xc3\x1e\x61\x2a\x77\x22\xf6\x3c\xf2\x4c\x3b\xbf\x9d\x71\xc8\xfe\x93\x44\x61\x60\xce\x5b\xd9\x22\xf9\x4e\x69\xc5\x1c\x2d\x8d\x06\xa1\x34\xbe\xa8\xf6\x9a\x4a\xb5\x57\xa3\xe1\x33\x8c\xb7\x48\x7d\x86\x02\xc8\x81\x7a\x20\xc0\x84\x97\x43\xf9\x7b\xc3\xa9\xa0\x1c\xac\x70\x4d\xd8\x8a\x4a\xba\x1f\x94\xc3\x59\x3e\x08\xfe\xc1\x20\x4c\x12\x7c\xbd\x6a\x70\x4d\xfb\xe1\xa9\xb0\xe0\x96\xe9\x79\xa1\xa4\x76\x45\x01\xdd\x05\x44\xe9\x46\x76\x28\x76\x13\x4e\xdf\x24\x4b\x51\x43\xe9\x16\xd8\xfd\xa6\x36\xaa\x79\x6b\xb6\x1c\xae\xa5\xe5\xee\x2d\xf5\x2d\xb3\xb7\x74\x0d\x47\xfc\xdf\x12\xa5\x41\xed\xba\xd6\x12\xb7\x93\x03\x0e\x65\xab\xb6\x16\xca\x9b\x4a\x1a\x12\xa0\x45\x9f\xb8\xd7\x50\x3a\xc0\x6e\x17\xb2\x74\x0d\x17\x35\x1a\xb7\xc9\x92\x63\xa3\x71\x7b\x7a\x53\xbb\x02\xc2\xc0\x7e\x88\x5f\x6a\x2d\xfe\x0a\x4d\x07\xee\x30\x5a\x53\xb2\x9c\xce\x44\x2d\x21\xcb\x38\xb6\x30\x9e\x02\x25\xe3\x99\xaa\x80\x2d\x6f\x84\xde\x5f\x10\x30\x4f\x58\x86\xc1\x8f\xc3\x49\x38\x86\x2c\x81\x88\x12\x96\x89\x1b\x16\x81\x33\x11\x9a\x37\xfa\x25\x13\x94\x42\x98\xd1\x39\x6a\x30\xb3\x1a\x03\x22\x02\x2b\xe7\x18\xee\x48\x1a\x92\x38\x83\x6c\x46\x84\xca\x6e\xbc\x4c\xd1\x80\x31\x4d\x92\xcc\x5e\x9f\x93\x84\x29\x96\x63\x54\x3b\xc7\x3c\x0a\x55\x62\xf0\x7b\x0b\xab\x6f\x81\x3a\x5c\x60\x50\x24\xf7\x5a\x9a\xef\xe6\x11\x4f\x89\xcb\x18\x16\xd3\x15\x0c\x7a\xdd\x17\xe1\x55\x43\x45\x5b\x6a\xdb\xe7\x95\xdf\x61\x28\x4a\x4b\xcc\xe6\x5b\xe4\x4d\x29\x5a\xbe\xed\xbb\x6a\xf8\x4b\xf0\x3f\x47\xf8\x47\xab\x5a\xfa\x20\x99\x25\x64\x13\x7f\xf7\x19\x90\x40\x1e\xf4\x1c\x86\x10\x25\x24\x90\x04\x08\x8a\x59\x14\x8e\x69\x9d\xb3\xb1\xd1\xf9\x3d\x09\x63\xac\xa3\x44\xa1\x22\xb0\x94\x9f\x83\x84\xe3\x86\x65\xf9\xe2\x4e\x3b\x1d\x25\xb6\xf1\xa7\x9f\x44\x23\x95\x11\xcc\x10\x7e\x17\x8e\x46\xba\xae\x16\xc9\x55\x5d\x8d\xc1\x0d\x04\x60\x1b\xfa\x65\x14\x75\xbb\xde\xb1\xc9\xe0\x46\x1c\x80\x71\x14\x12\x60\x33\x0c\xea\x4d\x53\x6d\xf4\x27\x13\xe9\x04\x17\x53\x2f\xea\x9b\x94\x92\xdb\x5d\x1a\xf9\x7b\xbb\x5d\x75\x0a\x0d\x75\x0d\xa8\x23\x99\x8a\x8e\xb6\x65\x92\xd6\x8f\xf6\xdd\x2a\xee\x5e\x23\xf9\x16\x86\xd6\x68\x41\xdf\x20\x19\x03\x5f\x7a\xf6\xfc\xf4\x53\x11\x77\xde\x31\x6d\x4a\xd7\xbe\x25\x5e\x43\x6f\x18\xb2\xda\xce\xaa\xa2\x2d\xff\x5a\x86\x29\xad\xd7\x3a\x5d\x01\xd4\x55\x57\x9c\x1e\xe0\x6e\x17\x6e\xa4\x05\xb4\x10\xe3\xb2\x1e\x29\x27\xa2\x35\x90\x88\x25\xc0\x68\xc6\xf4\x6c\x0b\x6a\xea\xaf\x28\xac\x50\xbe\x24\x7c\x1d\xe0\xb2\x89\x64\x22\x23\x00\xf9\x63\x8d\x4c\xa3\x81\xca\x00\xe0\x2e\x71\x46\x4b\xf2\x36\x3a\x87\xcd\x31\x41\x17\x54\xce\xab\xaa\x65\xc5\x60\xb2\x2d\xee\x7f\x55\x9e\xa6\x32\xdd\x00\x4a\x5b\x54\x34\xb6\x04\xd1\x21\x13\x08\xba\xcb\x6c\xdc\xc5\x20\xa3\x9c\x8d\x77\x24\xa2\xa2\x79\xf3\x24\xa0\x91\xe5\x33\x2b\x2d\x20\x24\x1a\x84\xf0\x58\x4e\xb4\x50\x95\x6e\x9d\x6b\x10\x9b\x30\xea\xf3\x9b\x44\x08\x08\x69\xed\x61\x5d\x03\x8b\xab\x0d\xa5\xe4\x09\x99\xbc\x5f\x95\x97\x3f\x9b\x8d\x75\x89\x74\xe4\x9d\x51\xcd\x50\xfa\x60\x36\xe7\x7a\xf1\x06\xb4\xa1\xde\x4c\x29\x6b\xd8\x77\xff\xf0\x1b\xe3\xab\xe5\xaa\x1d\xd1\x3b\x1a\x01\x59\x84\xad\x7c\xec\xe0\xdc\x9d\xc4\x82\x8b\x1a\x44\xc7\x6e\x99\x71\xdd\x29\x7e\xf3\x03\x71\x38\x99\x58\xf5\xf9\xee\xf6\x90\x99\xbe\x00\x27\xb6\x85\x05\x6c\x31\x2c\x33\x5a\x2c\x06\x60\xbd\xf4\x96\xf0\x5e\xf6\xdf\x62\x08\xe3\xcf\xfb\x98\x7f\x4b\xab\x6f\x51\xba\xb8\xdd\x6b\xc1\x9f\xc5\xb2\xca\x68\x66\xf8\xb3\x4b\x77\x20\x8f\x5a\x55\x18\x31\x87\x26\x8f\x0a\xbb\x46\x7f\x41\x28\xac\x19\x05\x80\xd7\x86\x51\xd3\xa5\x0a\xe0\xe1\x10\x6a\x8a\xa6\x72\x0b\xc5\x59\xc8\x84\xe5\xb9\xb8\xca\xb0\xdf\x97\x2a\x94\xf2\xc2\xb5\xeb\x5a\xee\xbb\xe6\x47\x51\x21\xf4\xbb\x5d\x78\x47\xe3\x90\xcf\x64\xe9\x93\x97\x87\x45\x27\xe3\x31\x5d\x64\x0c\x7e\x5f\xb2\x2c\x37\x1a\xc4\x50\xf3\x41\x10\x4a\xb5\x9f\x8d\x4b\x02\x35\xa1\x2e\xfd\x2d\xd6\x0d\x60\xd9\x72\x32\xe1\x2b\x68\xbe\x95\xbb\x96\x55\x7d\x20\x29\xa3\xb2\x7a\x73\x3a\x08\xa7\x03\x0f\x98\x74\xe8\xfa\x95\x4e\x5f\x7e\x59\xd4\x5d\x30\x99\x5d\x03\x9a\x50\xdb\x70\xb6\x88\x7c\x04\x7b\x5f\xbb\xf2\x85\xe1\xdb\x5a\x0c\x20\xe5\x7b\x31\x80\xda\x2f\x24\x5e\x92\x74\x7d\xfd\x8a\xde\xa4\xf8\x65\x44\xd2\xf1\xec\xfa\x78\x91\x86\xd1\xf5\x88\xac\xaf\x7f\x59\xc6\xf4\xfa\x97\x65\xb4\xbe\x3e\x5e\x4e\x97\x2c\xbb\x3e\xa3\x8b\x8c\xf2\x76\x5f\x9f\x8e\xb3\x84\xff\x7d\x9f\xdc\x89\x07\x27\x74\x8c\x5f\xf2\xf0\x98\xd7\x7a\x4c\xcd\xbc\xd2\x62\xe4\xce\xab\x7c\x3d\x25\x95\x17\x73\x65\xb3\x77\x55\xd9\x1a\x8c\x9a\x20\x9b\xc4\x9b\xc3\x5b\xc2\xdb\xa1\x5a\xc1\x1b\xc1\xdb\xc0\x1b\xc0\x49\xe7\x64\x73\x8a\xab\x88\x55\x38\xef\x47\x31\x96\xda\x4a\xb6\x80\xc5\x6e\x34\x6b\xe0\xcf\xdf\xa3\x71\x93\xba\x36\xf1\x1f\x0e\xe5\xbd\x89\x30\xb0\xa0\x53\xfa\xc5\x73\xb2\x7c\xa0\xd3\x85\x75\xf9\x66\xa6\x03\x24\x2f\x4f\xfc\x70\x51\x12\x4f\x47\x3b\xc2\x32\xce\x8a\x6a\x60\x4b\x31\x61\x5f\x03\xf4\xf7\x4a\xef\x00\xba\x5d\x5c\x78\x71\x3b\x82\x0c\xe0\x4d\x5e\x51\x08\x92\xb8\x96\x09\xaf\xa4\x30\x03\x12\xa5\x94\x04\x6b\xdf\xa6\xa3\xd8\x44\x2d\xb3\x71\xfd\x62\xaf\xd7\xeb\xb5\x20\xb4\x0f\x05\x8a\x97\xd2\x89\xe0\xa7\x9f\xe0\x81\x97\x11\x78\x0b\x5f\x2e\xb9\x7c\xf0\xe6\xfc\xae\xfd\x93\xcf\xe1\x22\xe6\x2b\x93\xd6\x32\x35\xed\x2c\xdb\xa9\xe1\x03\x3e\xe3\xff\xc6\xbf\x86\x3e\xc3\xb4\x72\xfe\x6f\xaf\x53\x04\xe4\xfc\xc6\x8a\xfd\x47\x8d\x07\x0e\xe7\xe6\x3b\x71\x2d\x95\xf9\x0b\xca\xf9\x82\x82\xaf\xba\x05\x55\xdc\x99\x57\x30\x06\x2b\x77\x9a\xbf\x7b\xc3\xbb\x5d\xc8\x28\xcb\x8a\xc1\xb9\x65\x4c\xe9\x17\x92\xa3\xd1\x68\x84\x11\x1f\xca\xc6\x4d\x87\xa3\x2e\x24\x85\x57\x1b\x08\xda\x9d\x40\xe9\x42\x5b\x49\x83\x46\x82\x67\x1c\x7d\x57\x1a\xb4\x21\xe2\xeb\x9a\xef\x50\x57\x99\x4e\x4a\x5f\x48\x54\xbc\x1d\xbe\x8a\x9c\x2d\xe3\x80\xac\xaf\x47\x09\xfe\x39\x5f\x52\xc6\xff\x7e\xa4\x41\x2c\xbe\x9d\xcf\x96\x29\x7e\x79\x95\x86\xfc\xcf\x19\xc9\x96\x69\x40\xd6\xfe\xe5\x44\xc3\xbc\xeb\x5a\xa2\x8a\x5c\xcc\x45\x30\xe0\xb2\xd5\xcf\x88\x1a\x24\x29\xe7\x64\x73\x9a\x39\xbd\x9c\x52\x4e\x24\xa7\xb0\x9a\xb8\xfb\xae\x76\x46\xb9\x5d\xc9\x1c\x85\xb1\x20\xf2\x7a\x94\x5c\x9f\x2f\xaf\x3f\xd2\xeb\xf3\xd9\xf5\xab\xf4\xfa\x8c\x54\x53\x27\x0a\xde\x97\xb6\x51\x18\x6f\xa1\x4c\x41\xba\x2b\xb1\x7c\xf3\x9e\xb8\x31\x4a\xee\xb1\xf6\x1a\xf8\xcb\x57\x5f\x93\x8c\x7b\x2f\x93\x8f\xff\x4d\xab\x64\x59\x43\x2a\xc4\xb6\xbe\xb0\xaa\x45\xb5\x7f\xd5\xc0\x4e\xf0\x59\x2d\x80\x5f\xd4\xe7\x51\x9a\x4b\x84\xbd\x19\x41\x7a\x0b\xd0\x28\x8c\x77\x5a\x11\xec\x36\xfe\xdf\x58\x13\xfc\x94\x08\x11\xa8\x0f\xc9\x7f\x93\x10\xe4\xab\xcd\x09\xc9\x68\x1e\x56\xc9\xac\xe5\xdd\xf9\x19\x66\xc5\x10\x39\x60\xe0\xd8\xca\x91\xf0\xee\x5c\xbd\x75\x5f\xf1\x37\xa3\x51\xf7\xe4\xa4\xfb\xe9\xd3\xa7\x4f\xf6\x5b\xf9\x7a\x34\x82\x93\x16\x78\x01\x1c\x08\x78\x77\xee\x02\x21\x54\x10\x04\x41\x0b\x6c\x58\xbd\xc1\xea\xab\xd3\xdc\x62\xfe\x5b\xd7\x0d\x60\x7b\x6d\x15\xab\x73\x81\xe0\xe2\x96\xae\xad\x99\x8b\x53\x48\x16\x32\xd6\x74\xb3\x54\x27\x4b\x7e\x5b\x2c\xd4\xed\x85\x77\x76\x6d\xad\xd9\xc2\x51\xd8\x4d\x72\x4e\x6c\x46\xa3\xcd\xc9\xc9\x86\xb3\xa6\x3b\x6d\x99\x2e\x20\x5b\xc6\xd2\x1d\x89\xa4\xbe\xba\xef\x1b\xe8\x3e\xdf\x88\x32\xde\xc0\xd0\xf1\x35\x83\xb2\x90\x4d\x8e\x53\x9a\x91\x11\xea\x83\x99\x73\xc0\x31\x94\x06\x19\x12\xe1\xe5\xcf\xf0\x8f\x65\x98\xde\x32\x18\x25\x01\x85\x9f\xe0\xed\xcb\xc7\x70\x26\x63\xaa\xc9\x87\x41\x82\x91\xd5\x50\x1d\x8d\xaa\x00\x86\x4a\x01\x99\xae\x03\xa2\xf0\x56\xde\x07\x31\x57\x17\xc6\x01\xc7\x33\x92\x1e\x67\xc0\x66\xc9\x32\x0a\xe0\x86\x8a\xdb\x17\xd4\xa3\x67\xe1\x4d\x44\x6d\xf5\x97\x30\xab\x10\x34\x73\x91\x55\x6b\x58\x97\x57\x02\x61\xbd\x27\x4d\xb8\x17\xb5\xd2\xa3\xbc\x8c\x06\xac\x96\xaf\xee\x05\x59\x5c\x5d\x76\x8e\xe6\x47\x97\x9d\x23\x3d\x69\xa8\x02\x34\x98\x86\x11\x2d\x5a\x2a\x9e\x46\x0b\x42\x86\x44\x78\x0d\x48\x31\xf8\xc5\x73\xe8\x7b\xb5\xfe\x85\xf5\x09\xea\xf3\x8f\xa0\xb6\x98\xa3\x6f\xe0\x87\x51\x6d\x47\x9b\x21\x17\x05\x11\x28\x8e\x1d\x14\x7e\x56\x8c\x49\x44\x79\xa7\x3a\x32\x8b\x91\x39\x3d\x11\x09\x62\x2e\xce\x93\x80\xac\x81\x64\x57\xae\xf0\x88\xe9\x97\xac\x00\x9b\x27\x69\xca\x07\x43\x19\xe4\x47\x99\x4e\x06\x33\x12\x5c\x78\xc1\x22\xc2\x72\x84\x9f\x28\xcb\x68\x5a\x5a\x37\x07\x55\x18\x2f\xde\x11\x96\x5d\x41\x05\x62\xde\xa0\x97\x11\xf6\x77\xed\x9d\x57\xac\x69\xbc\x30\x04\x9a\xdc\xb3\xc4\x66\xd0\x22\xf0\x8b\x36\x85\xc4\x23\xd4\xd4\x66\x4b\x68\x00\x55\x39\x43\x07\x08\x47\xf2\xb9\x8c\xbb\x86\x15\x5f\xc4\xc9\xea\xaa\x01\x83\xca\xb9\x7d\xad\xe7\xb2\x71\x7a\x73\xb2\xcc\x96\x29\x36\x3d\x8c\xe1\x47\x66\xb1\x66\x41\x18\xee\x82\x7f\x64\x40\xa6\x89\x2f\x09\x14\x81\x09\x5d\xa9\x30\x33\xbe\x5c\x50\x04\xbc\xd9\xa0\xe6\xf8\xf2\xc7\x40\xcd\x16\x5f\xb2\x28\x12\x83\x27\x5f\xd4\x6c\x26\x4b\xe2\x1c\xf2\x25\x93\x22\xe0\xa6\x2c\xc2\x44\x17\xbc\x94\x88\x0f\x6a\xbc\x1b\x49\x3a\x3d\x19\xa2\x30\x15\x0b\x92\x29\x63\x8e\x1a\x6f\xd7\xa2\xa0\x27\x4d\xd4\x7a\x2d\xcb\x61\x78\x15\x7f\x46\x23\xab\x5f\x8a\x91\xa5\xdc\xe5\x64\x4c\x99\xb3\xe5\x64\x12\x7e\x69\x49\xf9\xc9\xc5\xca\x2b\xec\xb4\x1d\xc6\x9c\x5e\xc5\x85\x28\xef\x1f\x7a\xf5\xaa\xb1\xe7\xbb\xeb\x10\x80\xbb\x93\xea\x5a\xf2\xc8\xe1\x9c\xaf\xaa\x3f\x06\xdd\x30\x77\x31\xf4\x0f\x65\x3e\x1c\x5f\xa9\x01\x5b\xf0\x2b\x08\x27\x93\x96\xc4\xe7\x63\x4a\x6e\x57\xec\x61\x0a\xde\xfa\x3c\x17\x99\x26\xc4\x5c\x40\x29\xc9\x6b\xaa\x55\xce\x52\xfd\x78\xaf\xcf\x52\xf1\xbc\xae\xa8\x19\xc8\x07\x5a\x3b\x19\x6f\xa7\x7c\xef\x6f\xa7\x52\xa7\xbb\x83\xa2\xf2\x98\x26\x8b\x15\x7b\xea\x1f\x83\x9a\x9f\xa3\xea\xeb\x75\x51\x13\x02\x3b\x2f\xf2\x85\x50\xe9\xc2\xf5\xde\x48\xe9\xc2\x39\xe6\x89\x9e\x2f\x21\x93\xd9\xb1\x6b\x74\x6c\x09\xcb\x26\xee\xb6\xf1\x9b\xf1\xc9\x04\x65\xba\x2a\xb8\xec\x90\x6b\x9a\x96\xb6\xb4\xd3\x4b\x07\xcd\x48\x8d\xdf\x86\x45\xa9\x5d\xe9\xb5\xac\xd5\xac\x26\xc0\x78\xae\x3d\x4c\x76\x2a\x34\x21\x10\x32\x3d\xe6\x30\x59\x8b\x9b\x7a\x8a\xa4\x74\xac\xc2\x5c\x94\x1c\x0a\xc7\x66\x09\x21\xee\x56\xc7\x49\x9c\x91\x30\x66\xf0\x0b\x89\xa1\xcf\x32\x13\x29\xc2\x49\xac\x5c\x08\x75\xfc\x04\x4b\xbb\x2b\xbe\xaf\x1c\x40\x4d\x5a\x56\x81\x95\x77\xcf\x00\x2a\x0f\x44\x6a\x0c\x46\xad\x8c\x73\x05\xa8\x3c\xea\xef\x77\x09\x58\xe4\xc5\xc6\x47\xf7\xb9\x08\xcc\x69\x16\xde\xde\x76\x86\x6d\x77\xbb\x2b\x6c\xf5\x31\x72\x1b\xc9\xc6\xb3\x7a\xf7\xf2\xe2\xe2\x92\x5d\x9e\x5d\x75\x3d\xbe\xf6\x62\xa7\x15\x1b\xd2\xec\x9f\x97\x17\x9b\xcb\xab\xbf\xf1\xb3\x41\xcd\x8d\x99\x5c\x5e\xee\xf2\xd2\x28\xe2\x73\xa9\x79\x65\xa4\xb9\xf3\xe4\x6c\xc2\x40\xf0\x68\x29\xa2\x7c\x2d\x64\x2b\xec\xfc\xe8\x8d\x16\x84\x2d\x50\xd6\x3e\x79\xf9\x42\x1d\xa2\x5e\x82\xf4\xa8\x53\x96\x41\xca\x3b\x4f\x7c\xf7\x3b\xe8\x79\x63\x60\x22\x96\x8b\xf0\xca\x7b\x22\x53\x2f\x73\xb2\xcb\x0a\xef\xb8\x07\xd6\xf0\x95\xf4\xbb\x82\xb8\x87\x09\x7d\xa5\x40\xb1\xe2\x90\x78\xaf\x8a\x75\xef\xc6\x32\xfe\x41\x71\x3e\x6d\x0e\x8b\x76\x68\x7e\xa5\x8a\x2b\x70\x94\xbf\xce\x7d\x54\xf2\x2c\x5c\x30\xc8\x5f\x7e\xcb\x01\xd1\xb6\xf6\x90\xe2\x99\x0b\x07\x58\xe2\x49\x2d\x16\x59\x14\xf1\x89\x2f\xcc\xa7\x28\xa1\x1c\xd5\x0b\xba\xcc\x89\xf6\x60\xde\x51\x86\xb0\x65\xb3\x6b\x6e\x06\xab\xd5\x84\x8b\x69\x61\xa0\x8f\x61\xb1\xe6\xd3\x2f\x0b\x12\x4b\xbb\xd2\xdc\x75\xca\x44\xd7\xb0\xfc\x43\x1e\x58\x89\x24\x2f\xc4\x6f\x67\xcc\x96\x80\xc9\x20\x1e\xfe\x69\x5a\x15\xca\xa2\x04\x5f\x7d\x5e\x22\x0c\xbc\x4d\x73\xad\xdb\x94\x91\xe1\x23\x7d\x8a\x17\x02\x11\x05\xcf\x3b\x43\xb7\x50\x26\x15\xc1\x36\x0b\xea\x98\x3a\x09\xdd\x56\x26\xb6\x22\xe0\x68\x3a\xa2\x31\x89\xec\x99\xd8\xe1\x47\xb6\xb7\xd2\x3f\xac\x57\x94\xcb\x8d\x1e\x9f\x4b\x57\x09\x7f\x69\x54\xe7\x49\x0e\xfb\x7b\xa9\x10\x85\x4a\xd4\x7a\x31\xb5\xaa\x18\x62\x49\x89\x7b\x35\x04\xc7\x16\xb4\x87\x7a\xda\xc9\xb2\x11\x90\xf7\xf6\x37\x2c\x92\x32\x4a\xfe\xbd\x57\x48\x91\x85\x59\xd3\x6b\x67\x09\x4c\xc2\x38\x28\xec\x62\x31\x43\xa8\x39\x00\xa7\x14\xa3\xf2\x53\xcc\x8d\xfe\x2a\x49\x45\xc0\x62\x04\x6c\x79\xec\x61\x70\x5d\x52\x17\xf0\xb9\x41\x8c\x1b\x41\x4e\x65\x47\x40\x44\x3a\x02\x4c\x70\x50\xfb\x47\x6d\xe0\x1b\x91\x6e\xea\xfd\xa7\x56\xc1\x93\x93\x93\x93\x6d\x65\xb5\xcc\xfa\x76\x71\x54\xa3\x0e\xac\x87\xaf\x5f\xbf\x7e\xed\x3c\x9c\x4e\xa7\x53\x7f\x45\xb2\xed\x47\xfe\xac\xfc\x03\xb3\x11\xe7\x49\xf1\xce\x21\xc6\xa5\xc4\x25\x63\x5b\x63\xf5\xbc\xfc\xbe\xd6\x7a\xda\xeb\x7f\xfa\xba\x94\x0d\xbb\xf3\xe1\x2c\xfc\x52\xc6\x86\xfc\x95\x4d\xe4\x99\x85\xbd\xb8\x81\xad\x50\xab\x55\x0d\x14\x70\xad\x9c\x1e\xc2\x84\x44\x11\xcb\xed\xce\x1f\x76\x6d\x22\xfe\x22\x15\xe7\xab\xc4\x6e\xdd\xb7\x91\xf1\x57\xe9\xf0\x0d\xfd\x6f\xa1\x64\x87\x69\x86\xdd\x5a\x31\xd7\x46\xa3\x91\x33\x9c\x46\xbe\x87\x41\xe0\x79\xe4\x7d\x16\x6c\xa3\xe9\x63\x92\x06\x36\x1d\xc4\xc1\x74\xec\x47\xa3\x64\x99\x5c\x17\x4d\x4d\xb2\x8d\xf5\xcb\x56\xf6\xa0\x65\xe6\xc8\x61\xcb\x7f\x6d\x15\x5f\xe1\x9c\xb2\x8c\xcc\x17\x6e\xd9\xcf\x4e\x53\x3e\x7f\xde\x05\xdd\x1f\x49\xec\x34\xe0\x7c\x6b\x41\x67\xa6\xba\xc3\xd3\x29\x54\x36\x14\x1c\xc2\x8d\xf1\xa5\xe4\x92\x47\x28\x79\x24\x92\xf3\xe8\xcd\x1b\xe7\xd1\x6c\xe6\x3c\x9a\xcf\x9d\x47\x8c\x39\x8f\x56\x2b\xe7\xd1\xc7\x8f\x3b\x0b\xc0\x5c\x0e\xd8\x02\xf0\x34\xf5\x88\x08\xc9\x1c\x97\x37\xee\xd8\x77\xdb\xec\x36\xd9\x6d\xb1\xdb\x60\xb7\xbd\x6e\x73\x9d\x27\xd4\x79\xf2\x72\x07\xe1\x50\xd1\xe4\x93\x64\x0b\x47\xed\xa9\x68\xa9\xb2\xaa\x5e\x4b\x4b\xd1\xa2\x4a\x95\x30\xde\xac\x91\x78\x6e\xb2\x17\x2f\xd9\x98\x2c\x68\x7d\x19\x53\xfc\x22\x77\xc4\xb8\x87\x29\x34\x72\x97\x97\xe2\x9a\x5b\xde\x73\xfb\x0d\xae\xc9\x36\xb7\xc1\x4c\x4e\xcb\x91\xd0\x9d\xbf\x4a\x93\xb9\x08\x57\xe4\x51\x97\x31\x15\x3c\x5a\x7e\xc1\x48\x05\x4f\x8d\x3d\x99\x8a\x6f\x7e\xfe\xc7\x88\x64\xe3\x19\x1a\xca\x4b\x4c\x52\x71\xe0\x4a\x04\xdc\xe4\x5f\x5c\x59\x21\x7e\xb2\x3f\x5e\xcc\x96\xf1\xad\x08\x18\x68\xe2\xbc\x70\x9e\x14\x51\x83\xfa\x57\x02\x9b\x7d\xf9\x90\x62\xe4\x89\xba\xc2\x2a\xae\xf6\x74\x8a\x24\x31\xf8\x9a\xa6\x82\xa6\x5a\xbb\xd6\x82\x5e\x0b\x7a\x57\x65\x79\x00\x9a\x75\x44\x7d\xd1\xbf\xc2\xb8\xf5\x0d\x68\xca\x28\x04\xe2\xf1\xde\x95\x27\xe2\xa3\x78\xd5\x13\x3e\xc1\xb5\x66\x0d\x8e\xa0\xad\x30\x0e\x14\x6e\xe7\xc0\x5c\x04\x39\xe0\xc3\x0e\xa3\x0d\xc9\x6e\x10\x97\x95\x18\x3d\x3e\xa3\x66\xef\x92\x20\xe0\x0d\x3b\x4f\xd0\x65\x88\x77\xae\xb1\xaf\x96\x7e\x11\xa5\xdb\x6b\x8e\xf0\x03\x49\xb3\x63\xa9\x01\x52\xe3\x9d\x68\x8d\x2a\xdd\x61\x77\xbb\xf0\x8f\xdf\x8e\x7f\x3d\x7f\xf9\xeb\x96\x4d\x77\xae\x20\xab\x0a\x66\x61\x90\xa2\xbc\xc2\x79\x87\x22\xb7\xe5\x61\x11\x3d\x9f\x1e\xc2\x7e\xd5\x9e\xc3\xf2\x53\xea\x76\x85\x53\xb9\x23\x0c\x61\x80\x6c\x27\x51\x54\xb8\x09\x26\x30\x1a\xb9\x4b\x0a\x7c\xbf\xe6\xd8\xad\xb9\x47\x43\x8a\xcd\x4e\x19\xe5\x1e\xda\x5d\xea\x89\xd6\xcd\x52\xac\x69\x26\x7f\xca\x93\xc6\x38\x97\xe5\x4e\xb2\x8e\x3f\x8a\x34\x68\x0a\x83\xb8\x96\x89\x23\xa0\xbc\x1a\x03\x99\xa5\x89\xa4\xc2\xc5\x13\xb5\x3e\xe8\x98\x89\xca\x98\x8e\xc3\x50\xf2\x0d\xcc\x24\x3b\xea\xf6\x54\x2b\x6c\x2f\xe4\xa1\xad\x79\xd8\xda\x07\xdd\x2e\x9c\x1c\x7f\x82\xd3\x57\xde\x31\x75\x52\xd2\x33\x27\x27\xee\x9e\xe4\xaf\x8f\x29\x11\xfb\xc0\x1c\x52\xf7\x1e\x4e\x27\xc9\x77\xa7\x04\xa5\x2d\xff\xe2\x94\x32\xaa\x31\x14\xe6\xf2\xc2\xa8\x71\xd1\xbb\x6a\x41\xbf\x67\xaf\x75\x3b\xf6\xc9\xa7\x97\xc7\xb6\x28\x3a\x39\x29\xef\x14\x4f\xb7\x7c\x63\xc7\xe4\x19\x7f\xf2\x60\x02\xd5\xdd\xb2\xa5\x39\x9e\x76\x7c\xfa\x64\x13\x66\x76\x01\xc6\xbb\x28\xac\xea\xc5\x8a\x27\x77\x45\x78\x59\xe5\x23\xc4\x3b\x22\xf0\xcc\x0e\xfe\xa3\xbc\xff\xf1\x8e\xa4\x95\x33\xc4\xe5\xc0\xf1\x08\xba\xf0\xc1\x16\x67\xa4\xa4\x2b\x8f\x9d\x63\x97\x45\x90\xea\x9f\x90\x7d\x98\xbb\xe2\x2f\x64\x1f\x46\x3b\xd2\xf5\xe6\xf4\x37\xbb\x67\x66\x25\x44\xcd\x66\xee\x49\xa1\x84\x2c\xdd\x9d\xdf\x4a\x39\x07\x3b\x1d\xa2\xdf\x94\xd0\xf0\xc6\x96\x50\x6f\xde\x54\xf7\x95\x0c\x65\x72\xaf\xbe\x12\x01\x41\x9c\x13\x81\x9f\xa2\xf9\xdc\x3d\x2c\x55\x52\xa4\xa2\x8f\xdc\x8f\x26\x11\x12\xc4\x39\x93\xf8\x69\x62\xcc\x3d\xad\x55\xd2\xa4\xa2\x90\xdc\x97\x4f\x79\xac\x12\xfb\xbc\xeb\x4e\xac\x33\xef\x33\xff\xc3\xb3\x6d\x1c\xd4\x02\xa7\x28\x92\xeb\xb5\x1e\x86\x5d\x96\x3b\x91\x87\x98\x9e\x69\x6b\x13\x7e\x7b\xff\xf6\xbf\xe0\xf4\xd5\xab\xb3\x97\xe7\x50\xd7\xf0\x9e\x35\x2c\xaa\x6c\xa5\x45\x2e\x20\xf5\x44\x69\x3a\xf3\x76\xab\xfa\xfc\xed\xe8\xe5\xd9\xf9\xf1\xe8\x03\x7c\x7c\x7b\xfe\x06\x46\x67\x56\xb5\xb6\xca\xc3\x5b\x2d\xca\xc6\x57\x51\x52\x5c\x41\xec\xd8\x7a\x5e\xfb\xe7\xd3\xf7\xf6\x50\xff\x5c\x32\xac\x3e\x7f\xb6\x01\x3f\x97\x09\x80\x25\xa3\x22\xd1\x88\x3b\xf9\x15\x88\xc8\x73\x52\x7e\x98\xdb\x6d\x0c\x7e\x7c\xf9\xf2\xff\xf0\xc5\xb2\x0d\xb3\xe5\x9c\xc4\xf6\xe1\xff\x9b\xf5\x63\x9e\x4d\xa5\x61\x46\xed\x25\xcf\xde\x3f\x4e\x69\x06\x44\x79\x05\x6c\xd9\x40\xde\x6f\xff\xa8\x48\x5b\x69\x64\xae\xf8\x01\xf0\xcf\xaf\xae\x01\x6d\x0e\x70\x51\x0b\x6a\x7f\x6d\x9b\xf9\x51\xb6\xe5\x9b\x36\x9a\xbc\xaf\x5a\xf8\x2f\x88\x2e\x8b\x97\x73\x9a\x86\x63\xab\x37\x5c\xbd\x8a\x4f\xb3\x54\xad\x6b\x2a\xd3\xfd\x6c\xd7\xc7\xe0\x39\x01\xa5\xca\x2d\x8d\x3b\x22\x98\x44\xbd\xd7\x02\xdb\x5a\x79\xfb\x1a\x66\xe9\xff\x2b\x6e\x4c\xec\x0b\x84\x2a\x3a\xec\xa4\xef\xf9\x76\xee\x3b\x0e\x13\xac\xf3\x2f\xef\xc4\xbd\xad\x2f\x91\x67\x5b\x09\xf4\x10\xb7\xf3\xce\xb0\x24\x37\xb1\xda\xda\x72\x99\xc3\xc7\xf5\xdb\x78\x92\x78\x1c\xe0\xef\x48\x0a\xab\x16\xce\xe2\x4f\x18\x72\x8f\x7f\x6b\xa9\x59\x5d\xc4\xda\x6b\x41\x46\xe7\x7a\x48\x5d\xa3\x4d\x05\x35\xbc\xc3\x56\x9d\xd7\xaf\xf3\x7c\xe4\x9b\x0d\xac\x3a\x1f\xcd\x9f\x2f\xcb\x26\x7f\x80\x11\xb6\xac\x53\x76\x90\xf0\x19\x79\x60\x39\x0e\xe5\xb9\x20\xb4\xfc\xe0\x99\x72\xdf\x51\x31\x7b\x42\x96\x7c\xcc\x5b\x76\xb3\xcc\x84\x71\x55\x40\x17\x34\x0e\x18\x24\xb1\x8d\x71\x96\xac\xb8\x80\x0b\xe3\x8c\xa6\x8b\x94\x66\x10\x27\x2b\x19\x54\xa6\x05\xcb\x6c\xdc\x82\x49\xf8\x05\x33\xc8\x63\x70\xf5\x0e\x9c\x25\x32\x9f\x84\x8d\x89\x60\xd1\x3b\x9a\x32\xcc\xf1\x3b\xc9\x49\x12\x3c\x83\x3a\xd2\x5a\xc4\xcf\x90\x89\xa5\x26\x11\x99\x32\x4c\x68\x6e\x23\x14\xd5\xa0\x3d\xb2\x79\x1a\x57\x5d\x07\x43\xcc\x48\xcf\x99\x5f\x28\x02\xf2\xc8\x7a\x6e\x88\xc5\x46\x0b\xfa\x2d\x38\x68\x60\xf6\x16\x6b\xfc\xa3\x81\x99\xc2\xf7\xd1\x15\x0f\xab\x5c\x50\x0a\x90\x97\x26\x88\x57\xe4\x8a\xbe\xb5\x35\xb4\xca\x12\xcf\xd7\xe5\x25\xb0\x6b\x6b\x24\x38\x0c\x98\x4e\x77\x65\x40\x11\x49\x72\x1b\x13\x56\xa2\x85\x8e\x70\x5a\x75\x82\xaa\x95\xac\xdb\xcd\x79\xd5\x6e\x43\x94\xac\xd0\x20\x50\x98\x6d\x32\x4c\x14\x39\x4e\x62\x16\x06\x18\xd2\x1b\xaf\xe2\x39\xb8\x83\xa6\xe0\xf7\xaa\x13\xb8\xb2\x0d\x09\x91\x20\xcf\x78\xa3\xca\xbc\x54\x9a\x4d\xd3\xbe\x31\xef\x30\xdf\x8a\x29\x9a\x47\xb7\x34\x0f\x3b\x47\x6f\x24\x86\xa3\x15\x3e\x21\xa8\xe4\xc5\xd0\x0e\x37\x74\x1a\xc6\x32\x6a\xd1\xd6\x16\x52\x11\xf0\x73\xc7\x65\xbc\xdb\xcd\x35\xf9\x59\x72\x9f\x8a\xdc\x2a\x7e\x70\xbf\x71\xa9\xc7\x61\x6d\x71\xca\xea\x15\x22\x53\xc8\x4d\x7d\xb8\x58\xc3\x91\x2f\x3e\x74\xbe\xc0\x51\xf7\xd4\x01\x32\xd4\x12\x1c\x2c\x7f\x60\x2b\xa1\x95\xe2\x59\x25\x62\xe0\x1c\x20\xb8\xf7\xea\x28\x90\x3c\x40\x9b\xf2\xb9\x99\x87\x69\x9a\xa4\xf8\x7c\x41\x52\x32\xa7\x98\x3c\xf4\x86\x46\xc9\x4a\x95\x89\x93\x8c\x0e\x80\xef\x8f\x31\xa8\x2c\x13\xbe\x02\xca\xda\x14\x87\x6d\xb2\xe0\xcb\x0c\x89\xb8\xa8\x82\x55\x18\x45\x7a\x27\x88\x20\x71\x2b\xca\xb2\xfc\xae\x40\x60\xca\xa9\xba\xd0\xc2\xca\x62\xf2\x09\x68\xa1\xcd\xbf\xf2\xb0\x69\x49\xb7\x83\x96\x9e\xd7\xe3\xca\x5e\xe2\x32\xca\xbb\x43\xa6\xa8\xf4\xaf\x6d\xa1\x50\x9a\x4b\xd5\x3a\xba\x8b\xb6\x94\x2c\x3e\xc1\x17\x9c\x92\xf3\xe4\x37\x46\x9d\x48\xc2\x2a\x2d\xf4\xee\x81\xbd\x35\xc4\x5c\x7e\x15\xbf\x44\x46\x8c\x3c\x1d\xb5\xb6\x6f\x1c\x27\xf3\xc5\x32\xa3\xba\xa1\x30\x32\x19\xa7\x8d\xc8\x5d\x8b\x2c\x96\xdb\x73\x2f\x89\x2b\x11\x8b\x4c\x0d\x31\xa9\xdf\x2b\x92\x06\x15\xaf\x94\x2e\xb6\x64\xf9\xad\xda\x34\x78\x1b\xdc\xed\x86\x13\xb9\xdf\x37\xc9\x0f\x19\x30\x9a\xf1\xf5\x72\xba\xe4\xc3\x65\x99\xc1\x0a\x83\x46\xf1\x45\xd9\xcf\x67\x55\xb9\x4d\x55\xde\x41\x52\x18\x3b\xa2\x5d\xe3\xb3\x78\xe4\x13\xd4\xee\xe4\x7a\x6e\x07\x09\xc6\x4a\xbc\xde\xa2\xda\x51\xc1\x13\x89\xd4\x77\x0e\xb4\x94\x86\x81\x18\x11\x73\x72\x4b\x55\xe0\xe4\xbc\x46\xbc\xd1\x72\xb9\xe0\xdf\x21\x16\x5d\x28\xa6\xb9\x88\xc4\x2c\x22\xe9\x96\x16\x51\x0a\x5f\xad\x44\x85\x79\x65\xb7\x0b\x27\xc5\x5c\x56\xfb\x96\x42\xa8\x48\x98\x87\x9c\xad\x71\x02\xce\x4c\x4e\x26\xf2\x4e\x81\xcb\x89\x69\x78\x47\xe3\x96\x21\x1c\x92\x80\xac\x1d\x44\x46\xc1\x90\xd9\xe5\x24\xc2\x58\x38\xdd\x38\xa5\xcb\x8a\x25\x71\xb4\xf6\x97\x50\x83\x54\x15\x40\x1f\x6f\x55\x8c\xc4\xeb\x6c\xa6\x67\x7a\xb6\xcd\x7b\xf7\xcd\x59\x15\xe6\x33\xea\x29\x34\x9b\x4e\xa0\x7a\x13\x50\x48\x22\xf1\x55\x1f\xb9\xba\x1d\xaf\xd9\x1b\x9f\x69\x9a\xe4\x33\x88\xde\xd1\x14\x56\x84\xa1\x1b\xa6\x24\x98\x06\x5c\xbe\x8d\xa3\x65\xc0\x57\xbe\x2c\x9c\x53\x93\xf2\x2a\xcf\xf7\x72\xe2\xea\xbe\x06\x36\xe0\x08\x39\x31\x1c\xc2\x1e\x1c\x41\x1f\x06\xd0\x6b\x68\x37\xef\xa4\xa2\x1d\x2f\x30\x75\x10\xa7\x68\xef\x60\xd0\xeb\x0d\x7a\xbd\x8e\x9e\xaf\x5c\x9f\xa5\x4e\x94\xe6\xd2\x29\x59\x04\x3c\x2e\x8d\xc2\x5a\x80\xe6\x6a\xb5\xed\xa0\xa6\x1a\xce\x9f\x2f\x42\xc0\x2a\x6f\xc8\x2a\x75\x50\xde\x1e\xdd\x6e\xf4\xab\xbb\x3f\x08\x74\xbe\x4b\x35\xd3\x91\x2e\x36\x60\x80\xbf\xf8\xd7\x86\x74\x17\xe4\xdd\x22\xd7\xb7\x86\xa9\x95\xe7\xaf\x73\x1d\x14\xa8\x23\x46\x1e\xc7\xaf\x83\x4e\x27\x64\x9c\x2d\x49\x04\x08\x32\x26\x31\xdc\x50\x18\xcf\x48\x3c\xa5\x81\x8e\x6b\x15\x66\x33\x61\xc6\xf1\x39\x89\x35\x41\xa0\x77\x9a\x48\x01\xec\x5d\x59\xf2\xf6\x75\x98\x10\x58\x42\x21\x56\x48\x65\x25\xc8\xe4\xf3\x06\x34\x75\x55\x9a\x5f\x50\xe9\x75\xcb\x4e\x28\x1f\xdd\x8a\xff\x7b\x07\xdb\x8f\xce\x62\x5f\x21\xf2\xa9\x94\xec\x2b\x9c\x24\x29\x7f\x79\xef\xe0\x26\xbc\xf1\xa6\xcc\xc9\xef\x46\x1a\xee\xc6\x91\xf0\xfd\x8d\x51\x9f\x85\x14\x37\x9c\x65\x59\x74\x04\x84\x10\xe4\x95\x20\x5c\x56\x6f\x36\x9e\xc7\x19\xad\x2e\x88\x3b\xbc\xea\xda\xc5\xee\xaf\x12\x46\xee\x0c\xb7\xe0\xc9\x77\x8d\x39\x9c\x9e\xe4\xc4\xbf\x77\xf4\x9b\xe2\x97\x6d\xe3\x9c\x11\xb1\xd2\xd5\xd6\x56\x66\x4f\x73\x4e\x97\x18\xde\x5f\x38\xf2\x28\x4e\x56\x72\x66\xbc\x5a\x46\x11\xee\x54\x1a\x6e\x26\x97\x02\x4a\x6e\x04\xaa\x40\x04\x75\x06\xc0\xd5\x96\xa3\xbb\x22\x4f\x22\xd1\x48\x51\x78\x55\xbd\xea\xb7\xa8\xe4\xaa\x64\xaa\xf1\x23\x1b\x97\x65\x28\x8a\xa4\xd1\x0c\x5f\xdb\xa5\x39\xbf\x78\x62\x76\x82\x12\x7a\x85\x0a\xfd\x38\x77\x8f\x70\xfb\x43\xe7\xf8\x04\xa5\xb7\x54\xa7\xbd\x3d\x3b\xbd\xfe\xf9\xb0\xe7\x78\xe6\x8b\x4b\xf0\xb3\x53\x77\xb3\x0b\x5b\x76\xfc\xfa\xd4\xbb\x72\xa7\x64\x1e\x69\x5d\xad\x0e\xba\x50\x3d\x9f\x85\x4c\xc5\xfd\x65\xb0\x64\x42\x8b\x85\x41\x68\x08\x88\xd3\x09\x0d\x31\x77\x2c\x8a\xdf\xff\x56\x83\xeb\xbf\x21\x49\xe1\xbf\x55\x8a\x8e\xff\x36\x86\x61\x6e\x13\x86\xa9\x92\x73\x69\x61\xe5\x65\x6b\x89\x16\x8b\xd9\x22\xcd\x47\x58\x6e\x46\xc2\x6e\xc3\xc5\x82\x5a\x53\x4c\x20\x7e\xa7\x7c\xc6\xa4\x0d\x99\x4c\x2f\x67\x40\x66\x49\x26\x6d\xee\x04\xfe\xbc\x8c\x9e\xac\x45\x54\x69\x3b\xf1\xe4\x9d\xd6\xb2\xb4\x3f\x8d\x32\x37\x37\x61\x5d\xe6\xf5\x70\x13\xdb\x9e\x4c\x0f\xd5\xee\xdd\x02\x19\xca\x68\x37\x11\xb9\xc6\x29\xc7\x78\x6e\x17\x2f\x09\x65\x4e\x77\xd1\xf3\xc4\x3b\xd1\x90\xfb\x0e\x1e\xb2\x27\x0a\x7e\x17\xaa\x72\xf9\x40\xe5\xb6\xd2\x11\x95\xc5\xe5\x13\xc8\x2a\x32\xb9\x7b\x46\xaf\x88\x77\x2f\xa4\x2a\xe6\x0f\x92\x58\x76\x8a\xe3\x63\x19\x28\xca\xd0\x28\x15\x94\x43\x53\x67\xb7\x0a\x83\xee\x56\x55\x32\xc4\x9a\x43\x4f\xf1\x4a\x83\xf7\xae\xdc\xfa\x0b\x6f\x67\x15\x14\x1e\x43\x9c\xc0\x6d\x9c\xac\x62\xcd\x37\x46\xe7\xa5\xd7\x89\x51\x28\xef\xbd\xe9\xb1\xb6\x77\x35\xf8\xa5\x06\x06\xef\xdd\x85\xd7\x15\xf1\x60\x9d\xee\x94\xfe\x4c\xd8\x9f\xc2\x4e\x70\x97\x1a\xb6\x18\x2f\x1a\x12\xc5\x2b\x47\x3d\xe9\xad\x74\x49\xad\x45\x3f\xdc\xc2\xab\x7b\x37\xc8\xeb\xf5\xd9\xed\xf2\x26\x41\x4a\xe7\x44\xe8\x0c\x97\xb1\xa8\x57\x2a\x8b\xe4\x3c\x91\x0a\x2d\x6d\x55\xb2\x48\xb0\x72\x48\x98\x92\xb2\x5d\x32\x56\xcd\xed\x81\x21\x4d\x7d\x33\xb3\x72\x46\x0a\xc3\xe0\xb2\x63\xd7\x38\xe2\x67\xdd\xeb\xfe\xde\x0c\xaf\x17\x78\x7d\x7c\x23\xc6\x97\x9c\x67\x43\xe8\xef\x79\x57\x4d\x2b\x65\x05\x26\xed\x35\xce\xbc\x32\xff\x0e\x47\x50\x41\x6b\x61\x27\xe3\x49\x7a\xf1\x55\xa7\x72\x46\xe2\x20\xa2\x40\xe6\xb0\x98\x7b\x29\x42\x63\x20\x1f\x09\x15\x14\x28\x98\xa6\x99\xd5\xcf\xa8\x58\xa4\xb2\xed\xef\x01\x99\xb7\xe4\xc9\x47\x84\x1f\xe1\x1d\xef\x3f\x9d\x0a\xbb\xa4\xa1\x9c\x9c\x3e\xa2\xf8\xcb\xed\x64\x59\xa7\x41\xf5\xad\x6a\x73\x8a\x68\x8c\xbc\x50\x95\x7b\x57\xcb\x62\x9d\x79\xb2\x82\x30\xdd\x41\xbd\x7e\x79\xd1\xd8\xf0\x3f\x57\x8d\xcd\xe5\x45\xfd\xe2\x9f\x97\x57\x97\x17\x57\x0f\x1b\x97\x57\xfc\x69\xa7\x61\xc6\xc3\xc2\x35\x90\x06\x2d\x58\xf4\x5b\xb0\xd8\x6b\xc1\x62\xbf\x05\x8b\x83\x92\xdd\xed\x02\xf3\x40\x2d\xf6\xf0\xdf\x7d\xfc\x57\x3f\x8b\x35\x6c\xe5\xf6\x8b\x24\x90\x5b\xc4\x59\x96\x2d\x06\xdd\x2e\xcb\xc8\xf8\x56\xa9\xdf\x3a\xe3\x64\xde\xfd\xd7\x92\x32\x14\xbd\xdd\xfd\x47\x87\xfd\x83\x27\xfb\xdd\x90\xb5\xf9\x86\x89\xb6\x49\x5b\x98\xee\xb7\x05\x03\xda\x8a\xea\x76\x18\xb7\x7f\x27\x77\x84\x8d\xd3\x70\x61\xb9\x34\x1b\xc6\xfe\x5b\x78\x75\xd1\xbe\xec\x5e\x5e\xfe\xf3\x6f\x0f\x9b\x47\x9d\x7a\x63\x73\x71\x79\xf5\xe7\xd7\x2b\xf4\xef\xbf\xbc\xfc\xdb\x4f\x35\xa7\x35\xde\x0d\xaf\xd8\xfb\x15\x11\x47\x64\x18\xad\x1d\xb6\xbe\x55\x27\x91\x8c\xce\x17\x62\xec\x98\xfb\xb2\x1b\xca\xa4\xbf\x76\xcb\xd4\x4e\xb2\x71\x92\xd2\xf3\xe4\xef\x94\x64\xf6\x3e\xd1\x1c\xbf\xe2\x24\x74\xc6\xc1\x4b\x4e\xbc\x13\x23\x27\x4e\x85\x64\x30\x93\x02\x55\xe9\x4e\x0c\x6b\xa0\xf7\xe4\xfd\xee\x9b\x73\x37\x53\xa2\x49\xa4\x5f\x21\xa6\x35\xd2\xf5\xf3\x2d\x78\x8b\x17\x94\x8b\xb5\x9c\xa4\x7f\x7e\x2d\x59\xf3\xdc\xc3\x5f\xd5\x85\x5a\x81\x5e\xb3\x32\x32\x8b\x57\x2d\xa9\x7a\xf1\xc5\x04\x86\x4a\x41\x28\x3d\x87\x5f\x45\x64\xca\x6c\x35\xb1\x5e\x66\xa2\xd5\x36\x71\x36\xc2\x55\x67\xb0\x02\x8b\x4f\xf9\xfe\x40\xc5\x00\xd0\xc0\x4a\xd6\xf5\x2c\x8c\xb7\xe8\xd2\x85\xcc\xc6\x59\x2e\x92\x90\xaf\x95\xc7\xc5\x8c\x64\xb9\x6a\x54\xae\xe4\x7c\x81\x27\xb0\xa0\x31\x89\xb2\x35\x0e\x08\x95\x70\x63\x4e\xb2\xf2\x7e\x6f\x0e\x2d\x5e\x9a\x8b\xbc\x63\x8b\xc0\xf1\xe2\x16\xe4\x3e\x28\x7d\xa9\xa4\x1e\x42\xbf\x67\x61\xb7\x4a\x31\x39\x30\x4b\x26\xa3\x62\xb9\x36\xa7\xf3\xab\xa0\xcd\xc6\x24\xe9\x99\x3e\xf3\xbd\xc7\x0f\x1d\x89\x55\xa3\x0d\x5b\x48\x17\xd0\x5b\xba\xc3\x3e\x4c\xa6\x72\x10\x03\xaf\xa5\x23\xda\x6c\xc0\x18\x58\x50\x22\x52\x43\x96\xe8\x5d\x9a\x8b\x4e\xfb\x58\xef\x5e\x0e\x46\xbe\x43\xae\x36\x0b\x2c\x09\x88\x2b\x1e\x0c\x79\x85\x78\xe4\xeb\xd0\x2f\x74\x5c\x6c\xc0\x0c\x91\x88\xb0\x55\x12\x90\x25\x5e\xb9\x67\x84\x68\x11\x75\xf1\x59\xc7\xcc\x00\x2d\xa5\xb1\x45\xd0\x64\x4a\x16\xb9\x08\xaf\x2e\xfa\x57\x06\x91\xe5\x99\x88\x44\xe3\x2e\x1e\x5d\x69\xd1\x19\x6b\xe7\x35\x48\xd2\x62\xf3\x56\x79\xbc\x98\x68\xc4\xf2\x9a\x7b\x57\xd0\x94\x6c\xb8\x38\x44\x37\xb0\x1a\x94\x45\x95\xdd\x29\x5b\xd1\xd7\x6d\x7c\x42\x17\xd9\xfb\xf1\x09\x8b\xdc\x83\x4f\x45\x63\x9b\x45\x95\xa2\xb5\xdf\xad\x65\xda\x89\xa0\xd4\x47\xaf\xea\x58\x84\xb4\xd5\x3e\x97\x06\x83\x84\x2d\xc2\xdc\xbd\xf1\xf5\x9d\x2e\x8b\xdd\xb0\x4a\xba\x67\x9d\x55\xcb\x75\x7e\xc5\x7c\xe5\xa3\x6b\x42\xa2\xe8\x86\x8c\x6f\xb7\x6d\x7b\x3c\xb3\xb8\x5c\x6f\x67\xee\xd7\x55\xba\x45\x49\xa3\x73\xf1\x4d\x23\x9a\x51\xbb\x45\xd6\xea\x27\x34\x88\xc2\x0e\x8b\x13\x85\x27\xb0\x57\x92\x76\xdf\x2d\x39\x78\x83\x3c\x2d\xea\x24\x4d\x5b\x30\x71\x92\x20\x8b\x2c\x46\x17\x57\x46\x1e\x1a\x7b\x0b\x43\xd2\x34\x1f\xdf\x9e\xab\xc6\x94\xca\x43\xf0\x24\xe6\xd5\x5c\x84\x1c\x5b\xa3\x2a\x46\x55\x4a\x4b\x12\xf6\xeb\xfc\xc7\xa6\x96\x09\x51\xa9\x18\x2b\x24\x26\xc8\x73\x81\xd9\x19\x12\x4e\xcf\x7f\x58\x7a\x4b\x54\xa2\x48\xd7\x0c\x93\x8c\x7c\x4d\x3b\xe1\x69\x3a\x86\x93\x05\x36\x75\x92\x81\x21\x10\xb6\x78\x4f\xb3\x5f\x58\x12\x6b\x02\x5e\x55\xf3\xa0\xc4\x70\xc2\x5f\xa1\x44\x7a\x61\x64\xcf\xd3\x6a\x95\xd1\x06\x0b\xc6\xd4\xc4\xa4\x77\x92\x02\x95\x4f\x85\x12\xde\x88\xd3\x41\x35\x73\x08\xda\x23\x2c\x64\x28\x34\x99\x64\xaf\xa1\x1f\xef\x92\x9b\xdf\xb7\x05\x97\x78\x1b\x67\x1c\x0c\x9d\xc0\x2c\x69\x63\xa7\xe0\xda\x72\xa8\x75\xf8\xa2\xec\x7e\x91\x31\x22\x00\x95\xc3\x18\xff\x55\xdd\xae\x48\x4b\xd2\xd9\x77\xbb\x32\xb3\x64\x71\x87\xc4\xb6\xf7\x76\xc9\xe8\xfa\xf3\xdf\x22\x43\xc4\x70\xa8\xaf\x31\x4d\x7d\xd0\x82\x59\x0b\x46\x2d\x60\x2d\x98\x33\xd3\xe3\x77\x4c\xe2\x5a\x26\x53\x35\xe1\x65\x71\x03\x6d\x3a\x84\x2d\xa9\xb0\x14\x1b\x68\xe0\x3b\x1c\xb4\xfb\x3f\xf7\xf7\x0f\x7e\xee\x8a\x70\x65\x59\x48\xb2\x30\x9e\xb6\x89\x76\xa4\x6e\x8b\xbe\x6a\xdf\xac\xdb\x63\x12\x45\xfc\x75\x9e\x9d\xab\x3d\x4e\x62\x96\xa5\xcb\x71\x96\xa4\x6d\x24\xc8\x10\x25\xd2\x4a\x26\xe7\xa9\xb7\x7d\xc6\x15\x4a\xee\x6a\xa0\x21\x86\x20\xa1\x8c\x37\x5b\x64\xaa\x12\x61\x5a\xe1\x19\xf4\x9f\x3c\x36\xd5\x39\x6b\xf9\xd0\x37\xaa\x3a\x4c\xbb\xe7\x5a\x57\x09\xd0\x20\x8f\x82\xe8\xeb\xa7\xdc\xda\xc7\x16\x9b\x76\x5b\xd5\x6d\x8e\x71\xa9\xaf\xd2\xe0\xb3\x86\xb5\xb2\x6d\x23\x5d\xbf\x30\xfc\x46\xea\x71\x7e\x4b\x8f\x08\xe5\x66\xec\x06\x20\xbb\x97\x1c\x93\x47\xc1\xf7\xe4\x7d\x89\x6c\x02\xe5\x69\x0a\xc3\x42\xbe\xc8\xba\x5d\x09\x63\xfc\x2a\x51\x7f\x2b\x6c\x3b\x7b\xb9\x78\x1b\xf5\xa0\x42\x5c\x58\x0c\x75\x33\x9f\xba\xb4\x56\xa4\x64\xd4\x1c\x4f\xbe\x29\x9b\xde\xaf\x32\x00\x2e\x9c\x2b\x2b\xa0\x7b\x46\x0a\x9b\xd1\x68\x41\x53\x23\xcc\x9f\x12\x5b\x93\xb8\xc3\x05\x63\xcb\xfa\xfd\x3e\x59\xa1\xc5\xba\x7a\x1c\x2c\x53\xc2\x8b\xf2\xf7\xe8\xb6\x14\xfe\x61\x45\x41\xc0\x4b\xac\x30\x5b\x66\x18\xe5\xe1\x78\x9a\xd4\x55\x50\xe1\x92\x98\xc3\x2a\xd6\xb0\x6f\x04\x9a\x41\xeb\xf4\x00\xc0\x32\xae\x2e\x3f\x78\xf4\x5b\xf0\xe0\xc1\xb6\x40\xc6\xfe\x79\x60\x60\x5c\x24\xec\x3d\x9d\x9e\xc8\x16\x3a\x74\xfa\x03\xf4\x29\x86\x14\x5e\x1d\xea\x89\x85\xaf\xd1\x21\x37\xcc\xbe\xbd\x97\x2b\x10\x0c\x21\x4d\x96\x71\x50\xcf\xd9\x4b\x58\xbd\xc6\x6a\x8d\x46\x59\x28\x0c\x0f\xf8\xdc\x01\x17\x9a\x6e\x2f\xf0\xcc\x01\xc6\xc4\x3c\x5e\xd8\xc0\xa5\x43\x24\xb1\xf3\x42\x8f\x1c\x68\x21\xa3\xbd\xc0\x6b\x04\x36\xa0\x49\x3a\xe5\xc0\x8a\x33\xcf\x8c\x3e\x3a\x9f\xa5\x94\xcd\x92\x28\x60\x1d\x06\x3f\xfd\x04\x17\x35\x56\x53\xe6\xc4\xec\xca\x97\x98\x3f\x67\xd9\x70\x08\x7d\x51\x64\x5e\xab\x84\x2c\xad\x71\x2e\x8b\xcf\x6b\x79\xae\x00\x2f\x22\xc9\xf6\xa2\xc2\x99\xbf\x42\x01\x57\x5a\xdd\x4c\x16\x9e\xd5\x84\xf9\xb4\xbf\x32\xd1\x6d\x45\x5d\x81\xbf\x2e\x04\x2b\xad\x2a\x90\x65\x83\x1a\x5a\x79\x96\x70\x52\x76\x7a\x51\xd7\xa8\x84\x91\x02\xb0\xb4\xb6\x91\x2c\x3d\xaa\x49\xd3\x52\x7f\x7d\x72\xd8\x14\xd5\xad\x6b\x22\xdc\x4c\x6d\xbd\xae\x09\xd3\x6e\xa6\xdb\x06\xf0\x81\x73\xb1\x77\x05\x43\x73\xe2\x3e\x35\x01\xf6\x39\x40\xd3\x9c\x9a\xf0\x5c\xd7\x04\x23\xd8\xc1\x55\xbe\xae\x3c\xb5\xa5\x91\x23\xe1\xe4\xb2\xfe\xe7\x57\x5c\xd4\x59\x21\x6b\xbe\x41\xc6\x7f\x94\xe1\x9f\x3f\x29\xc3\xd6\x7b\x8a\x78\x0c\x22\x8d\xe6\xcb\x88\x49\x7c\x7a\x7c\x42\x2d\xe3\x16\x1c\xf2\x2f\x52\x91\xd6\xed\xda\x1c\x17\x1f\xcb\xe2\xbb\x88\x5b\x2d\x7d\x3e\xd4\xc3\x4a\x24\xf5\x25\x5b\x92\x28\x5a\xf3\x6a\x11\x19\x5f\x68\xf8\xb7\x86\x9f\x50\x69\x6d\x7d\x6f\x42\xb5\x98\xd9\x21\xb3\xe8\xcd\xe3\x6c\xe7\x80\x95\xe8\x54\xce\x6d\xab\xed\xd5\xcd\xa4\xd3\x0e\xbc\x3d\x3b\x95\xc6\xfc\x22\xf7\xaf\x48\x89\x06\xf5\x83\x46\xc3\x5c\x6d\xec\x78\xe5\x26\x0b\xec\xdf\xae\xc1\x3c\x5f\x6f\x68\x8c\xca\x18\x1f\xf3\xda\x36\x42\x47\xbe\x9f\x27\xc5\xc8\x28\x45\x32\x4f\x64\xaa\x30\xb3\x3c\x09\xf8\x49\x83\x06\x42\x7b\xfb\xf4\x07\x53\x1f\x6a\x63\x7f\xce\x09\xf5\xb8\x20\x18\x40\xed\x21\x3c\x2e\x35\xfe\xb4\x81\x9f\x61\xd3\xdb\xf0\x78\x1b\xd6\x66\x19\x56\xb3\x05\x45\x76\xae\x79\x32\x6f\x74\x48\x10\xd8\x55\xb6\x80\x2f\x7d\xce\xf4\x37\x6b\xe7\x7d\x3a\x80\x11\xc9\x66\x9d\x31\x0d\xa3\xba\x59\x49\xe1\xdd\x53\x6f\x40\x17\x1e\x7b\x56\xc6\x81\x45\x17\x9a\x71\x6a\x36\x7c\x76\x34\x67\x79\x8c\xa3\x71\x67\x15\xde\x86\x0b\x1a\x84\xa4\x93\xa4\xd3\x2e\xff\xd5\x7d\x7b\x76\x8a\x9e\x74\xd7\x7c\xeb\xff\x1f\x2f\x48\x34\x5e\x46\x78\x8a\xbb\x26\xf8\xe8\x1a\x4d\xe2\xaf\xb3\x19\xbd\xc6\xd8\xf2\x7b\x2f\x04\xb8\xd8\x4c\x5d\x93\x38\x50\x29\xb7\xcc\x91\xeb\x71\x91\x5a\xfb\xdc\xa3\x7c\x43\xca\x7e\xea\xec\xa0\x3c\xbe\x13\xe8\x36\xd1\x6f\xe4\x56\x8d\x6b\x74\xe8\xc3\xee\x39\x0e\x82\x16\x68\x4e\x53\x39\x2e\x8e\x27\x90\xd6\xdf\x47\xf0\x18\x06\xa0\x29\xa9\x34\x17\x34\xf9\x4d\x39\xad\x1e\xe5\x4f\x06\x16\xa1\x45\xe9\xbc\x66\x67\xd6\x40\x1b\x02\x68\x42\x3d\x80\xe7\xfe\xf9\x24\x28\xe9\x61\x1e\xf1\x00\x9e\xd9\xc5\xd5\x6b\xa3\xae\xdc\xf5\xe4\x31\x3c\x14\xce\x7f\x22\xd8\x56\xb3\xf0\x04\xb4\xe7\x3a\x7f\x59\x50\xd9\x84\xbe\x1b\x09\xcd\x75\xbc\x19\x80\xee\x30\xc3\xb9\x86\x9e\x13\x03\xf1\xa7\x0d\x7d\x47\x82\x08\x60\xb7\x9c\xf6\x60\x60\x7b\xde\x28\xda\x73\x90\xb2\xa1\x7d\xaf\x75\xf2\x3c\x59\xc0\x3b\xcc\xab\x9e\x9b\x68\xdd\x67\xb9\x04\xfb\x2c\x2f\x63\x9d\xef\xaa\x06\x35\x18\x93\x47\xaa\x2e\x2c\x1c\x8d\xf7\xa8\x86\xcd\x9f\x98\xb6\x8f\x8e\x2b\x2c\xdf\xe2\xc8\x93\x84\x16\xeb\x3c\x87\xb1\x2f\xa2\x8a\x83\xb9\xba\x05\xac\x6b\x19\x4e\x72\x6d\x2c\xdf\x41\x69\x67\xf8\x5a\x69\xbc\x76\x99\x44\x5f\x5c\xe0\xd7\xff\xe4\x48\x51\x8f\x35\xc0\xcb\xac\xaf\xe5\xc6\xfa\x3b\x2b\x0a\x72\x26\x2a\x8f\x14\xd7\x1b\x58\x65\x28\xf1\xf8\xc3\x1b\x75\xfa\x53\xfe\x97\x34\x2d\xa6\x2b\xd0\xe1\x5a\xd8\x22\xbf\x42\xd1\x8d\x77\x9f\xf3\x5b\xea\x5f\x4b\x82\x96\x43\xd9\xed\x8b\xe5\x24\xa8\xc3\x97\x7a\xbf\xde\xeb\x1a\x07\x4c\xdd\x83\x57\x43\x59\xa6\xf5\xf7\x32\x58\x5c\x59\x68\x5c\xf3\x5e\xc3\xa4\x94\x95\x3a\x68\x74\xbb\x70\x1c\xa0\xdb\x52\xc8\x80\xcd\x49\x9a\x01\x8d\x31\xe2\x04\xc1\xb3\x20\x9c\x9c\x9d\xdb\x13\x05\x17\xe2\xbe\xbd\xf4\xaa\x97\x9a\x3f\x8e\xd7\xe6\xcc\x96\x79\xf6\x05\xc8\x5c\x2d\xfd\x56\xc6\xbc\x22\xcb\xb8\x18\x81\xbe\x6c\xe3\x5c\x10\x8c\x9f\xfa\x06\x7d\x5d\xa9\x06\x70\xd8\xdf\x24\x49\x44\x89\x9b\xfd\x3f\x0f\x9f\x6e\x1f\x2b\x40\xc5\xa4\xa7\x3b\x98\xd2\x09\x05\x6c\xa1\x12\x45\xf9\xb5\x64\x19\xdc\x60\x32\x53\x2a\xf6\xb0\x2b\xb2\x36\xfc\xf9\xf8\xa6\x81\x0d\xba\xdd\x69\x98\xcd\x96\x37\xa8\xf5\x15\xac\x50\x7f\x42\xc6\x96\x94\x75\xfb\x07\x7b\xfb\x85\xa0\x82\xa1\x11\xcc\x62\xdc\xb9\x0e\xd9\xb1\x18\x0c\x42\x29\xef\x5c\x71\x8f\xb5\x69\x6d\x3c\x9d\xe4\x71\xfc\x8d\xc7\x91\x87\x1d\xe3\xdc\x58\x74\x08\x76\x84\x79\x24\x41\x18\xce\x58\xf7\x91\xe3\x6a\xa3\x18\x7b\x60\xe8\x22\x5f\x9d\xd7\x9e\xea\x63\xa4\xc3\x96\x8b\x45\x4a\x19\x3b\xa1\x8b\x94\x8e\xf1\x9c\xf8\x91\xa4\x31\x66\x42\xcc\x6b\xd7\x0b\x94\x28\xfe\x91\x26\x81\x82\x16\x61\xf8\x6a\x72\x24\x1a\xfd\x28\xa2\xb2\x60\xa1\x2c\x81\xdf\x19\x2a\x8f\x3b\xc2\x93\x20\x64\x50\x83\x66\x51\x3e\x08\xd9\x38\x59\xa6\x64\x4a\x83\xc2\x4d\xfb\x86\xca\x84\x29\x01\x84\x31\x2c\x17\xe3\x64\xce\x67\xdf\x9c\xfc\x9e\xa4\x66\xf1\x94\x46\x94\x30\xda\x81\x0f\xf8\x17\x52\x3a\xa1\x29\xaf\xd5\x80\xda\x7d\xd8\xf4\x1e\x4b\x65\x62\x4a\x21\x8c\x27\x49\x47\xcb\x42\x54\xcc\x35\x77\x75\x85\xb2\x2b\x97\x62\x95\x68\x7a\x9c\xe6\x6a\xf0\xdb\xf9\x0b\x4c\xf8\x55\x73\x2f\x40\xf3\x2c\x45\x5d\xf8\x10\x8e\x6f\x31\x0c\x26\x32\x7b\x2e\xef\x7e\xf0\x17\x03\x96\x88\x73\xe2\xfc\x62\x12\x5f\xd5\x93\x6c\x46\xd3\x06\x9e\x22\xd3\x25\xc5\xd6\x90\x28\x52\x88\xf0\xad\xec\x8a\x94\x46\x21\x65\x90\xc4\xe2\x60\x99\x2b\x53\x63\x11\xa3\x00\xb2\x94\xc4\x2c\xcc\xc2\xbb\xdc\x25\x5e\x61\xc9\x6b\x16\x36\x18\xd2\xff\xe3\x86\x16\x3e\xfe\xe8\x26\x8b\xc4\x8a\x89\xce\xf8\xc9\x59\xbd\x6d\xc1\x6a\x96\x30\x6a\x9c\xa0\x81\x46\x74\x2e\xc2\xa1\x54\x60\xe9\x98\x1b\x9e\x45\x38\xbe\xfd\xfb\xba\x3e\x89\x95\xba\x97\x79\xee\xab\x8d\xab\xea\x62\xb5\x65\xba\x11\x20\x6a\x66\xd4\x92\x28\xdf\x5f\xf4\xae\x9c\x65\x51\x35\x5c\x9d\xb9\x98\x61\x51\xf1\xd5\xa8\xe6\x81\x59\x4f\xe5\x46\xa5\x5e\x72\xfd\x51\x56\x53\x7e\xe3\xde\x17\x37\xee\x66\x55\xde\x5b\x77\xad\xe5\x17\xe1\x15\x0e\x95\x94\x32\xef\xc2\x6f\xd6\x5b\x9e\xbb\x67\xeb\x3d\xbd\x94\x28\xf3\x30\x36\x96\x2a\x37\x57\xd4\x54\x58\x15\x88\x1b\x5e\x91\x47\x28\xbf\x56\x6a\xe1\xb1\xc2\xae\x4a\x76\x7d\x2d\x64\x7f\xa7\x93\x24\xa5\x35\x53\x67\x65\x8a\xb4\x39\xf9\xf2\x6f\x24\xe0\x78\x92\xd1\xd4\x5f\xbf\x8a\x89\xc3\xa5\x17\xba\x47\x2d\xb3\xb1\x4e\xd8\x32\x1b\xff\xbf\x45\xfc\xdf\xb8\x88\x97\x04\xc1\xd3\x96\x5f\xe7\x45\xc9\x52\x7e\xaf\xed\x40\xd5\xba\xff\xcd\xab\x3b\x1f\x2c\xf5\xad\xe3\x2b\x0e\xbf\xa0\x37\x35\x26\x61\xe0\x03\x4a\xdd\x2a\x34\x8c\x71\xc7\xc1\x9c\x81\xe7\xb9\xb1\x9a\x6b\x07\x0d\x33\xa6\xa1\x46\x82\xba\x0a\xd1\x6b\xd0\xee\x93\x9c\xe1\x6d\xa5\xe2\xb6\xae\x9f\x04\x90\xbd\x01\x47\x3b\x15\x34\x49\x9f\x92\x30\x66\x99\xb4\x83\xe7\xcb\x05\xfd\xb2\xa0\x31\x0b\xef\x68\x0b\x82\x04\xc2\x8c\xaf\x68\x01\x9d\xdb\xf1\xa9\x94\x59\x24\xde\x5a\x9b\x93\x21\x9c\xc6\xf6\x49\x37\x73\x62\xc1\x33\xfa\x96\x25\x96\x26\x21\x9c\x4c\x7e\x35\x0e\xc5\xc6\x69\x4e\xe9\xe5\x4b\xce\x73\x5a\x9b\x3d\x67\x26\x36\x90\x0e\xf0\xd7\xba\x8d\x87\xeb\x34\x1b\xe4\x70\x01\x59\x7b\xde\x8f\x0a\x3c\x78\x47\x61\xca\xf2\x1d\x6d\x7e\x4a\xae\x95\xf5\x16\x7c\x75\x4d\xca\x3d\x29\xd7\xf5\x52\x2a\x83\xb8\x2f\x8e\x61\xd9\x51\x32\xbf\x75\xd3\x99\xb2\x2d\x16\xa2\xd6\xb4\x07\x0f\xea\x6a\x1c\x08\x23\xaa\xf3\x70\x4e\xcf\x16\x24\xf6\x1b\x53\x39\x62\x33\x9c\xf2\xc6\x4a\x7b\xd1\xbe\x8c\xc6\xdf\xae\x35\xe0\x08\xda\x7d\x18\x38\x61\xe1\xaa\xba\x78\x3d\x80\x9e\xb7\x3f\x45\xcc\x3f\x51\x07\x86\x45\x69\xc0\x43\xcf\x20\xe5\x9f\x99\x09\x8d\x2e\x3b\xe5\xd0\x73\x13\x5a\x06\xa5\x28\x87\x67\x26\xbc\x8c\x34\x51\x81\x9f\xd9\x15\x14\xf1\x29\x54\xa9\x1d\xc6\x9f\xd6\x49\x21\x4b\xd4\x2c\xfa\xfe\xbd\xa3\x26\xb5\x2d\xa3\x4a\xa2\x88\x7d\xa4\xb5\x40\x3a\xf1\x47\x6b\xbc\x23\xf9\x9f\xff\x09\xe3\x85\x34\xd8\x0f\x99\x88\xde\xb7\x8c\x27\x49\x9a\x2d\x63\x92\xd1\x68\xcd\xa5\x11\x89\x58\xe2\x43\x27\xe3\x62\x31\x98\x44\x09\xc9\xd0\x93\x2b\x8c\xd5\x16\xd7\x82\xe5\xd5\xcc\xc9\x9a\xaf\xab\xf9\x9a\xdc\xe2\x1b\xff\x31\x49\xe9\x64\x19\x81\xb4\x62\x52\xd9\xe3\xb8\x08\x0c\x33\x17\x55\x61\xc2\xc9\x31\xfe\xf4\x13\x98\x81\x6b\x8b\x3c\x21\xad\x5a\x0b\x6a\x1d\x27\x41\x88\x24\x07\xef\x09\x05\xbb\x45\x82\xbc\x15\xad\xa5\x14\x30\x74\x92\x67\x37\x29\x32\x3c\x0b\x9b\x1a\xbe\xe7\x84\x23\xe8\xc1\x00\xf0\xab\x18\x14\x4f\xcb\x46\x05\xec\x30\x89\x54\x37\xca\x7e\xdf\xb3\x93\x82\x80\x90\x82\x16\xd8\xbe\x0f\x2c\x70\xc0\x0e\x7c\x60\x33\x07\xec\x91\x0f\x6c\xee\x80\x1d\xfa\xc0\x98\x03\xf6\xd8\x07\xb6\x72\xc0\x7e\xbe\x6a\xec\x2e\xcd\x0b\x2e\x6a\xb6\x8a\xbe\xf0\x32\xf5\x1a\x3f\x5d\xd6\xf8\xc9\x3b\x2f\xb3\xd9\x40\x2d\x4b\x8c\x67\xee\x72\x26\x16\xc3\xe2\xe4\x70\x12\x4e\x26\x34\xa5\xf1\x98\xaa\x68\x86\x85\xd5\x4d\x9a\xcc\x1b\xea\xd0\x56\x3c\xce\x92\x86\xed\x99\x53\xb1\xc4\x14\x6b\x01\xaf\x54\x56\x6f\x2c\x0c\x25\xf0\x23\x1d\x1c\x17\xc5\x32\xdd\x9b\x3a\xc9\xab\x85\x3c\x6f\xfc\x8e\x4b\x3e\x9f\x62\x33\xc2\x4e\x57\xf1\x87\x34\x59\xa8\xfd\x4f\x4d\xea\x87\xbd\xda\x6b\x4d\xa1\x2e\xd7\x6d\x7b\x37\xea\x53\x0f\x66\xce\xa6\x4c\x85\xf5\x14\x4b\xb7\xbe\x35\x53\x6f\x86\xf0\x9f\x2f\x7f\x3d\x7b\x7b\xfa\x5e\xdb\xc9\xc9\xe0\x52\x9a\x9f\x8a\xda\xcf\x89\x37\xb9\x2b\x5c\xc8\x92\x57\x72\xe3\x9b\xef\x44\x13\x61\x6f\x29\xb4\x11\xa8\x89\x61\xca\x31\xf9\xed\xd9\x29\xf0\x97\x01\x49\x03\x1d\xad\x8a\x75\x61\x1f\xcf\xb4\x86\x7c\x88\x96\x53\x71\xfb\x4d\x32\x74\x95\x5a\xa4\xc9\x82\xa6\x59\x48\x73\x05\x04\x17\xb1\xf8\x8a\x57\x75\x4b\xd7\x80\x7e\x57\x68\x9f\x28\x62\xfa\xc9\xe9\xd4\xed\x72\x99\xb9\x12\x31\x84\x04\x9a\x68\x0d\xe3\x08\x23\x0f\x2d\x53\x46\xa3\x3b\x2a\x05\xb0\x3a\x39\xe2\x9f\x0f\x45\x8d\x6a\x74\x17\x8f\x0a\x4a\x51\xab\x52\xdc\x92\x4b\x4d\x16\x17\xcd\x34\x80\xd5\x8c\xc6\x18\x17\x2b\x57\xe3\x84\x0c\xe6\xcb\x8c\x64\x34\xc8\x43\x0e\xbe\xc5\xa7\x61\x9c\xd1\x38\x10\x81\x36\x6e\x29\x5d\x60\xb3\x64\x64\x24\xbe\xa1\x5f\xc7\x63\xb1\xdb\xe7\xcf\x55\xe8\x24\x83\xec\xe5\x22\x20\x19\x15\x59\xdc\x2a\x58\x6b\x12\x4c\xa2\x28\x59\x31\x58\x27\x4b\x8c\x60\x8f\x91\xb3\x33\x65\xee\x82\xab\x9c\x32\x84\xc1\x4a\x0d\x47\x50\x59\xaf\xd7\x52\xc6\x20\x20\x47\xd8\x82\x28\x9c\x87\x4e\x2e\x5e\xbf\xad\xcd\x45\x5e\xec\xaa\xda\x3a\x5f\xe5\x31\xf5\x39\x79\xa8\x2a\xb0\xde\x9d\xd0\x6c\x25\xc6\xaf\xb5\xd9\xda\x02\xd1\x74\xe7\x46\xbe\x38\x8b\x5a\xfa\x8b\x88\xa0\xbf\x57\xb9\xfe\x55\x40\x84\xac\x00\x09\x3a\xf0\x1b\xa3\xe6\x0d\x1c\xe6\x6f\xa6\x24\xf0\x2b\x35\x6f\xe9\xba\x25\x67\x4b\xe5\x9d\x9a\xc0\xa5\x83\x57\x28\x2e\x3d\x53\x22\x4a\x48\xa0\x54\x0c\x44\x24\x78\x8d\x71\xb4\xf1\xd1\x3c\x8d\x92\x1b\x12\x29\x43\x49\x80\xb7\x13\x85\x29\x4e\x0a\x4b\x63\x8c\xda\xb7\x20\x4c\x84\x41\x68\xf1\x5d\x16\xa2\x66\xe1\x9c\x6f\x4c\xf2\x3c\xf0\x45\x90\x65\x81\x57\xe1\x92\xb5\xdf\xd2\xb5\x31\x6b\x72\xc1\xeb\x63\x8a\xa3\x5a\x0c\x48\x46\x4c\xc5\xa2\xe7\xbc\xa3\xe9\x65\x14\x16\xb4\xd3\xcd\x47\x9e\xd7\x54\x97\xa3\xd6\x0c\x31\x11\xf2\x9d\xcd\x76\x3b\x1d\xf0\x4e\xa6\xc6\x26\x66\xed\x62\x96\xd3\x5e\xe9\xd1\x2a\x6c\x59\x32\xe2\xbd\x29\xb4\x8c\x6a\x8b\x25\x4c\xbe\x29\x1e\x98\x5c\x83\x32\x77\x4b\x73\xc8\xe5\xd1\x95\xc9\xcd\x4d\xea\x9d\x21\x3a\x8f\x8c\x0e\x14\x21\xff\xdd\x1e\xe4\xcd\x91\x81\x63\xcb\x1c\x66\xc4\xeb\x0e\xaf\x93\xef\x03\xc8\x9c\xba\x47\xdc\x07\x82\x32\x76\xc1\x5f\x7b\xa3\xaa\x18\x00\x72\x3f\x21\xfb\xb2\xb2\x03\x8d\x72\x1d\x46\xb3\x7a\xde\xeb\xb6\x6e\xe4\x86\x8c\x6f\x57\x24\x0d\x18\x8c\x93\xf9\x42\x78\x0e\x43\x9c\xac\x06\x62\x61\x54\x73\x4b\x60\xfc\xc1\xd3\x71\x72\x4a\xf3\xaa\x6c\xf4\x86\xe5\xb2\xa4\x66\x8b\x03\x49\xb7\xcb\x0f\x47\xfc\x54\x82\x27\x23\xca\x32\x3d\x26\x09\x14\xae\x6c\x25\x48\xa1\xcc\x50\xfd\x6b\x99\x6c\x3c\x11\xa3\x7a\x8b\x7c\x44\xa8\x6d\x32\x52\x00\x6d\x91\x93\xbb\x08\x48\xcf\xac\x72\xa4\xa3\x28\xc7\x94\x3c\xe2\x73\xc3\x95\x47\xb2\x71\xa5\x04\x70\x59\xa4\xb6\x88\xb6\x38\xe2\xfb\x4f\x2e\xe5\xd4\xfc\x33\x7f\x8a\xf9\x64\x37\x86\x17\x1b\xba\x60\xa5\xc6\x0b\x0f\xb6\x32\xa4\x6a\x07\x2b\xdd\x2d\xc4\xcd\x0b\xc7\xe4\x5e\xbe\xb3\x59\x92\x66\xed\x71\x98\x8e\x97\x61\x06\x7c\x0f\x25\x22\x9f\xe2\xd8\xf3\xcc\x19\x54\xe0\x92\xa0\x10\x98\x9e\x68\x07\xae\x11\xbc\x45\xba\x4f\x2f\xfe\xd5\xc3\x27\x54\x62\x55\xed\xcd\xc7\xb3\x24\x61\xd4\x21\x46\xd7\xe0\xf2\x49\x9b\x52\xf3\xaa\x4b\x1f\x07\xca\x2e\xc4\x18\x05\x96\xe3\x9b\xac\x2d\xb9\xf9\x1d\x84\xdb\xd3\x98\x1f\xfa\x72\x17\x75\x83\x72\x5e\x36\xb7\x1b\x33\x4f\x28\xe8\x27\x57\xb3\x55\xeb\xb9\x1e\x40\xa3\x1a\xe7\xf6\x7a\x41\x31\xd0\x0b\xef\x8d\xdc\x0a\x59\xde\xd5\x99\x2d\x38\xf1\xe9\x83\x77\x6a\x83\x2a\x69\x52\x90\xdf\x80\x45\x21\xcb\xf4\x54\x9e\x4f\x41\x24\xeb\x7f\x0a\xed\xb6\x71\x09\x36\x27\xb7\xf4\x5d\xc8\xb2\x3a\x96\xb8\x08\xaf\x1a\xbe\xbb\xaa\x3c\x48\x23\x46\xb2\x34\xa8\x5d\xf2\x27\x1e\x7a\xcd\x22\x12\xcc\xbb\x4a\x49\x73\x24\x03\x2b\x66\x53\xb0\xe7\xf3\xbc\x58\x3a\x97\xd9\xd8\x0a\x28\x82\x86\x3d\xbc\x54\x59\x90\x0e\x19\xab\x60\xde\xb9\x5e\x4c\x5a\x22\x5d\x83\xf7\x7e\xd1\x67\x5a\x23\x82\x3e\x30\x9a\xbe\x15\xb4\x72\x31\xe9\x5c\x93\x78\x16\x6a\x6f\x7b\xf3\x58\xac\xa5\xb7\x6f\xa6\xa0\xf0\xbb\x95\x15\x68\xec\xeb\x8f\xb2\xfc\x23\x3b\x5d\x6d\x18\x69\x33\x9b\x56\x52\xd0\xe7\x70\xf8\x33\x1c\x41\xff\x49\xaf\x07\x03\xd8\xf3\x5c\x7b\xdc\xcb\xca\x4f\xce\xc3\x0f\xca\xc7\x10\x5f\xec\x68\xe2\xf7\x83\xde\xa5\xca\xa9\x09\x86\x12\x67\x27\xf7\x5b\x6c\xc1\x9f\x9a\x71\x1e\x9e\x69\x07\x25\x5c\x77\x38\x5f\xcf\x66\xa1\x31\x46\x34\x67\x16\xdc\x76\x9c\x4e\x76\x41\xd6\xe4\x68\x3a\xd7\x68\x49\x5a\x17\xdf\xe5\xb1\x75\xb3\x81\x5e\x03\xb3\xdd\x9a\x59\xb1\xf4\x8a\xf0\x52\x6a\x87\x5a\xd0\x48\x79\x12\x25\x49\x5a\xc7\x0a\xa1\x6b\xe7\xda\xd2\xb1\x66\x89\x30\x39\xdb\x05\x33\x92\x8c\xac\xab\x37\xd4\xa6\xa8\x46\xe3\x5a\xa3\x23\x14\x22\xf5\x5a\x10\x04\x30\x1a\x8d\xe0\xe4\x04\x3e\x7d\xfa\xf4\x09\xde\xbc\x19\xcc\xe7\x03\xc6\xe0\xe2\xf5\xe8\xfc\xea\xf3\xe7\x5a\x29\x15\x32\x30\xf2\x6e\x34\x28\xb6\x1d\x69\x9e\xda\xd8\x45\x30\x90\x00\x41\x59\x3d\x6f\xcf\x4e\x77\x68\xb0\x29\x64\x44\xf7\xeb\x17\x8c\xea\xc3\x65\x4d\x0f\x9e\xc1\x5c\x9a\x73\xf3\xe5\x22\xff\xfe\x6c\x08\x4f\x9e\x3c\x79\x52\x16\xb8\xa2\xa6\xaa\xaf\x89\xf0\x6c\x42\x0f\x89\xb6\x40\xf9\xa0\xed\x68\x04\x57\x44\xfd\x88\x85\xda\x81\x1f\xef\xd0\x4a\x44\x2c\x25\x21\x83\xff\x79\xd4\xfb\x02\x13\xc2\x32\x9a\xb6\x50\x25\xcf\x8f\x82\xfc\x40\x29\x94\x3c\x5e\x7c\x3a\xa3\x45\xbf\xd4\x1b\x3a\x1d\x36\x0f\xa0\xea\x42\x4a\x43\x28\xc6\x88\xbc\xaf\x9d\xb7\x44\x26\xcb\xf6\x68\xd4\x3e\x39\xb9\x38\xbf\x52\x23\xa5\x73\x76\x76\x76\xf1\xf9\xca\x17\x63\xc4\x9b\xe1\xa4\x74\x87\xe2\xad\x6e\xf7\x0a\xbf\x96\x8c\x1f\x91\xb6\x79\x97\xb1\xc3\x19\xe8\xdd\xb5\xbb\x21\x82\xd5\x90\xf1\xe8\xc8\x85\x06\xd6\xff\x2a\xc0\xbe\xf1\xbd\x41\x47\xb2\x12\x7c\x2a\x3c\xb7\xef\xa5\x54\x0c\x97\x95\x2c\x54\xc7\x15\xd1\x87\x35\x76\xa9\xa0\x1d\x3b\xcc\xeb\x3c\xba\x54\xb9\xa4\x0d\xd9\xc9\xd9\xf9\xd9\x2c\x9c\xf0\x35\xb7\x0a\x25\x6a\x15\x50\x0c\x78\x8f\xe3\xfa\x00\x57\xd5\x36\x44\x04\x40\xdc\x69\x62\x17\x33\x85\xa1\xa5\x70\x09\x93\x88\x23\x7d\xe3\x91\x57\x32\xd0\x25\x05\x7f\xc2\x67\x8c\xd8\xb4\x37\x1a\xa6\xdf\x19\xb8\xba\x83\x12\xad\x9c\xd6\xf4\x85\x66\x09\xb1\x0b\x37\xe5\x7a\xf8\xe7\xd7\x96\x94\x87\x8b\x49\x19\x53\xc5\x3e\xe6\x38\xdb\x59\xf6\x2e\x26\x1d\x15\x57\xa0\x64\xa1\xca\xc6\x06\x8d\xb7\x94\x2e\x70\x83\x7f\x1e\xce\xcb\x94\x67\x88\xfa\x0f\xbe\xb2\xf4\x5a\x60\x16\xf0\x57\x22\x72\x16\xed\x5c\x4d\x31\x24\xb0\x1b\xbd\x71\xdb\x76\x21\xc1\x00\xb6\x8d\x54\xbd\x62\xbe\x92\x2c\x03\x1d\x09\x02\x49\x23\x9f\xd8\xe7\x7f\x08\xfd\x74\xbd\xd1\x82\xda\x7c\x07\x79\x58\xc6\x56\x3f\xff\xa4\xf7\xc0\xc0\xde\x09\xfa\xd7\x1a\x2e\xd3\x92\x65\x26\xac\xf8\x0d\xc9\x2a\x6e\x76\xb5\xa2\x9a\x63\x83\x71\x29\xe2\x0d\xf9\x27\x1a\xae\x69\x04\x1a\x9d\x45\xc2\x32\xb9\x9d\x10\x35\x96\x0c\x00\x12\x70\x21\x20\xac\x71\x8f\x83\x80\xa6\x68\x4e\x4e\x82\xa0\xa6\xbb\x1a\xb3\xe5\x4d\x96\x92\x71\x66\x81\xb6\x39\xac\x7a\x67\x14\x08\xc2\xc9\xc4\xe5\x4a\x0b\xf0\xd8\xd2\x02\xc2\xf0\x36\xd8\xc7\x1f\xbc\x80\x11\x3e\x4e\xc7\x2c\xf7\x3d\xe0\xe2\xcc\x15\xa6\x7c\x98\x9d\xf0\x9a\x86\x72\x58\xe2\xb8\x6b\x40\x1b\xb1\xc8\x5f\xb8\x21\xa4\x07\x9e\x6b\xd8\x70\x32\x69\xc9\xfe\x10\xfe\x52\xc7\xe8\x5b\x66\x8d\xc0\xa5\x3c\xa2\x95\x1c\xc0\x9c\xf9\x21\xe1\x87\x43\xa8\xf1\xe5\xa8\xc6\x7b\x52\x7b\x86\x0b\x91\x57\x1f\xdb\xed\x02\xb9\xa3\x29\x99\x52\x79\x9d\x06\xc9\x44\xb8\x22\x87\x42\xcd\x2c\x5d\x85\xe5\x2f\x74\x4e\xc3\xa8\x15\xcc\xdb\xb4\x9c\x29\xc2\xc3\x48\xc6\xa5\x87\xa6\xe0\x8d\xf1\x90\xb3\xe8\x60\x7f\x8f\x3e\x7a\xca\x89\xd8\x3b\xc0\x2d\xb4\xfa\x87\xef\x7a\xa1\x0b\x7b\x3e\x7a\x83\xfc\xf2\x95\x53\xe5\x31\xfd\xe1\x9f\x7c\xc4\xcb\xdd\xba\xdc\xd7\xc9\x4e\x12\xbf\x30\x95\xed\x9e\x38\x21\x71\x18\xb9\x5c\x2b\x20\xf9\xb3\xc4\x4e\x00\x7b\x0d\x6e\xd6\x90\x11\xd4\x11\x98\x54\xa1\xc1\x52\x09\x67\xbd\xe8\xe2\x00\x02\x96\x99\x6c\x16\x4d\x73\x4d\x1d\x8a\x51\xa3\xd8\x2d\x7c\x42\x8b\xed\x2e\xfa\x01\x9f\x4e\xea\xaa\xe3\x1b\xd0\xf6\xca\xae\x3a\x0e\x7c\xad\x30\xc9\x3c\x85\xbd\x0c\x60\x64\x8e\x19\x66\xc9\x4d\x72\x47\xd1\x3c\x04\xef\xed\xf8\xf0\xc7\x48\xf6\x10\xd3\x29\x46\xb9\x89\x22\xde\xb2\xaa\x46\xb4\xf3\x5e\xca\xa7\x52\x65\x6b\xf2\x39\xe6\x6f\x54\xde\x30\x0f\x3a\x5f\xfb\x14\x3a\x39\x67\xdd\xd6\xca\xb1\xd4\x1c\xea\x44\x8b\x71\xe8\x02\xfb\x66\x63\xd9\xd2\x91\x0f\x52\xf9\xa5\x6b\x84\x49\x56\x9f\x1d\xf7\xce\xfa\xf4\x93\x43\xd8\xd3\x73\x79\x95\x1a\x8d\x62\x5f\x58\x83\x23\x81\xa3\x0b\x7d\xba\x2f\x92\x34\xf7\xf5\x04\x41\xfa\x47\x97\x2d\xb8\x29\xd5\x4a\x1f\xd2\x83\xa2\x34\x4e\xe8\x6d\x28\xf8\x96\x57\x43\xb0\x7f\x48\x1f\x59\x18\x76\x42\x13\x90\x35\xc7\x52\x47\x34\xed\x5c\x50\x37\xa0\x0b\x3f\x1f\x1e\xf8\x71\xc2\x43\xd8\x3b\x68\xa9\xc1\xea\x1b\xa8\x56\x25\x2b\x4a\x6f\xcb\x6a\x39\xec\x1d\xfc\x5c\x51\x0d\x3c\x84\xc7\x5b\xab\x72\x47\x95\x77\x77\x20\x17\x33\x38\x52\x3d\x3a\x00\x72\xc3\x7e\xc5\xf8\x1d\x95\x6b\x2f\xfa\x57\xe8\x8b\x64\x16\xce\xa9\x15\x49\xa5\x5a\xe7\x9d\x47\x4f\xf9\x33\x4b\x06\xd2\x3c\x8c\x63\x1d\xe0\xdd\xf9\xd7\x5c\xbd\xa0\xed\x0f\xea\x8d\x46\x1e\x8b\xa6\x6e\x06\x82\xa9\x20\xf3\x7d\xb2\x32\x28\xdd\x85\x46\xac\x94\x17\xd6\xd2\x8c\xee\x52\x1f\xa7\x32\x0e\xd0\x39\xd6\x64\x8d\xc7\x63\xee\x23\x85\x15\x1a\x83\x24\xb9\x82\x5b\x44\xa8\x27\x69\x86\x71\x09\x12\xf4\xb4\xbe\x63\x82\x1a\xbb\xf8\x6b\x9a\x15\x09\x3a\xdb\xc9\xa4\x8d\xf0\x5a\x5a\x5c\x7e\xcc\x17\x69\x47\xd0\xf6\x8c\x8f\xb0\x5a\x00\x78\xf1\x65\x19\xbe\x15\x89\x6f\xd0\x6c\x21\xdf\xbe\xf9\x0e\x81\x2c\x09\x8a\x2d\x4e\x9c\xac\xe4\x06\xa7\x10\x87\x7c\xfa\xf8\x0c\xc7\x84\x5c\x11\xab\x7a\x38\x99\xd4\x59\x12\xb4\x70\xb2\xb1\x9a\x74\xd0\x74\x0b\xe5\xfe\xb6\x58\xfa\x19\xb4\x0f\xe1\x08\x6a\x7c\xcd\x78\x19\x31\x6a\x27\x76\x37\xaa\x7a\x06\xed\x3e\x07\x8e\x08\xcb\x3e\xe2\x64\xab\x04\xee\x29\xd8\x13\x3e\xfb\x2b\x41\xfb\x8a\x86\xed\xa0\x7b\x1c\x54\x7a\x32\x6e\x01\x7d\xac\x40\x25\xb1\x5a\x33\xcb\xb7\xcd\x72\x97\xec\x6e\xa1\xd5\x38\xac\x2b\x47\x09\x31\xbf\x64\xb7\xc6\xc9\xaa\xd1\x28\x3d\x62\xbf\xa3\x64\x21\x1d\xbc\x77\x38\xb3\x2b\x68\x7d\x7f\x54\x75\x7a\xdf\x05\xab\xb1\x8a\x3f\x33\x95\x8e\x62\x3b\xd5\x53\xcb\xad\x2f\x9e\xcc\xd6\xd2\x8f\xf2\xc5\xda\x4f\x68\x60\xe9\x77\xbc\xb9\xcb\x85\x85\xc3\x5a\x8d\xe9\x5c\x39\x20\xcf\x6f\x7a\x44\x83\x42\x27\x29\xb2\x2a\xad\x7d\x4a\x44\x15\xa3\xac\x34\xaa\xb8\x11\x52\xcd\x0a\xe9\xe6\x8c\x00\xcf\x9a\xad\x0f\x1c\x7e\xd0\x14\xf8\xda\x80\x52\xc6\xf5\xc2\xdd\xa6\x5d\x0b\xc8\x7a\x17\x7d\x99\x48\xea\x28\xf2\xdd\x1d\x8f\xc7\x94\xb1\x24\xad\xd7\x70\xf3\x5e\xcc\xfb\xe2\xb0\x26\xa4\x88\xc1\x7d\xe7\x56\x09\xb6\x9f\x6c\x74\x50\x99\x3e\x77\x92\x44\x51\xb2\x42\x89\xb9\x0a\xb3\xf1\x4c\x18\x91\x89\xfc\xb7\xd1\x1a\x92\x39\x47\x88\x61\x7e\xe1\x96\xae\x57\x49\x6a\xc5\x8b\xe4\x68\x12\x58\x66\x21\xaf\x0d\x3d\x38\x31\x4d\xa3\xcc\xac\x8f\xa6\x34\x84\x51\x4b\x4e\xcb\xaa\xfc\x6d\x10\xf9\xe6\x71\x6b\xe7\x8a\x06\xed\x28\x61\x87\xcc\x83\x2d\xa9\xfd\x0b\xdc\xff\x5a\x92\x34\xa3\x36\x7a\xf1\x4e\x6c\x5b\x4b\x2a\x46\xbd\xa2\x9d\x2f\x7c\xf7\x7a\x71\x77\xe3\xab\x54\xa6\x72\xf7\xbe\xe3\x0b\x47\x09\x39\x42\x99\xf9\xed\x7c\xc0\x9d\x61\x19\x8f\xa5\x36\xf4\xdb\xb1\xcb\xad\x6b\x09\x7e\xa5\x2e\xfd\x76\xfc\x72\x63\x5d\x4a\xbf\xa6\x93\xfd\x96\x4a\xdc\xc0\xfc\x32\x61\x71\x4a\x81\x00\x5b\xd0\x71\x48\x22\x24\xa5\x4a\x5f\x80\x5d\x5e\xaa\x54\x93\xd1\x4c\x1c\xfa\x34\x2b\x6c\x0d\x97\x1a\x25\xa5\xe8\x24\x00\xc7\x68\x0f\x52\xb7\x35\x72\x12\xc8\x06\xa1\xbd\x8f\x68\x53\x55\x73\xd4\xcc\x29\x25\x41\x4c\x4d\xed\xa6\xcd\x38\xfb\x77\x61\x9f\x9f\x03\xf7\xab\x89\xdb\xaa\xa2\xa3\x71\x70\x3a\xf9\x9e\xb2\xd0\x6c\x65\x11\x34\xc4\xd2\xf3\x14\x43\xca\xcb\x00\x2f\xdd\x50\xa5\x81\xcc\xb7\x87\x82\x28\x15\xfb\xc1\xd7\xe9\x7c\x1f\xb4\x92\x7b\x20\x01\xdd\xe8\x28\x3d\x1d\x2a\xf8\xe6\xac\xec\x0e\x51\x7a\x9a\x96\xe9\xee\x7c\x2b\x38\xbe\x1f\x59\xcd\x28\x61\xa8\xbc\x9f\x13\x6f\x2d\x23\x45\x38\x92\xcf\x07\x16\xfb\xaa\xf8\xbf\x95\xd1\x6a\xc9\xf7\x87\x3f\x81\x23\x09\x30\x30\xbc\x10\xcb\x97\x7e\x71\x19\xfc\x1c\x9a\xf7\x71\x28\x93\x1c\xaa\xa2\xa2\xa9\xc8\x68\xee\x46\x87\x42\xf9\x4c\xde\x87\xab\xdd\x99\x39\x48\x76\xd9\x5d\x28\xe7\xe6\xff\xd7\xe5\x95\x5d\xfe\xec\xff\x7a\x97\x9b\x1d\x8d\x72\x4d\x09\xb3\x67\xfe\x1e\x29\xeb\xf0\x33\x32\xff\xb7\x75\xb7\x78\xbc\xd9\xfc\xff\x7d\x87\xf2\x9a\xbf\xb1\x4b\x77\xed\xb0\x7a\xc5\xd4\x44\xcb\x06\x85\x52\x05\x9c\x1a\x61\x26\x3a\xab\x9c\xde\xd3\x3b\xcd\xe8\x79\x18\x0f\x7c\x76\xaa\xf9\xa7\xa6\x74\x13\x18\x35\xc1\xb0\x56\x15\x06\x0e\x5a\x4c\x05\x65\xa6\xba\xbb\x47\xfd\xa3\x83\x9f\x6b\xae\x1e\x42\xb7\xc8\x13\xd1\x43\xfc\x9a\x58\x11\x3d\xa4\xe8\x6c\xbf\xb9\x96\xcb\x73\x9d\xf1\x02\x85\x38\xb7\xca\xe3\x24\x0c\xc4\x53\x4f\x41\x6d\xc5\xd5\xcf\x51\x73\xf2\xa5\x92\x8b\x1a\x13\xc9\x97\x2a\x26\xf2\xb7\xdf\x89\x89\x3b\xf2\xf0\x2f\xb0\xd0\xe0\xe0\xf3\xdd\x38\x58\x30\x50\xe7\x5f\xb7\x6b\xde\xff\x4a\x03\x3f\x98\x53\x12\x33\x48\xe2\x68\xad\x92\x0c\xea\x1e\x46\xb9\x8e\x50\xc7\x43\x26\x13\x3a\xce\xc4\x59\x51\x5a\x74\x63\x94\xdf\x0e\x9c\x25\xf0\x68\xb0\xdf\x1f\xec\x1d\x42\xb3\xb7\xdf\xeb\x41\xbb\x7d\x81\x7a\x89\x3d\x79\x30\xbe\x6a\xb7\x9f\xeb\xa8\x0a\xe8\xbd\x5e\x4f\xba\x42\x2d\x12\xc6\xc2\x9b\x88\x8a\xcb\x47\x05\xa1\x82\xe7\xd3\x2f\x21\x5e\x07\x65\xa8\xfe\xd3\x71\x21\x8e\x96\xf4\xf6\x92\xd7\x50\xaa\x2d\x40\x18\xc4\x94\x06\x7c\x30\x88\x48\x37\x68\x21\xa0\xc7\xa8\xd0\x51\xfd\x1f\x4a\x17\xaa\x7d\xa2\x38\x26\xa3\x8f\xd6\x40\x82\x80\x75\xd5\xe6\x8d\x41\x3d\x89\x45\x56\xc6\x86\x5e\x1c\x55\xc9\x59\x91\xc3\x3e\xe5\x43\x91\xd1\x38\xa3\x01\xa2\xeb\xc0\x39\x6f\x5a\xc8\x60\x35\x5b\x0b\xb3\xa5\x28\x02\xdd\x81\xcb\x60\xb7\x0c\xe7\x20\x8b\xbe\x8d\xc5\x21\x2a\xcc\x50\xd9\xca\x60\x89\x1e\x77\x5a\xe7\x49\x43\x32\x8c\x9a\xa0\x23\xba\x16\x30\x6f\xe3\x0f\x69\x32\x4d\x29\xe3\x42\x57\x0c\x02\x8e\xb0\x25\xbc\x72\x56\x14\x66\xe4\x8e\x72\x94\x82\x87\x2d\xb8\xa1\x63\xb2\x64\x06\xaf\xf3\x2c\x67\x71\x02\x6c\x39\x9e\x09\x2e\x19\x97\x74\xa6\x93\x1a\xc8\x0b\x62\xdf\x35\x74\xa5\x35\x01\xde\xd2\x2b\xa7\x36\xc7\xbe\xd0\x9d\x93\x38\x1c\xd5\xd5\xb1\xfe\x62\x37\x8d\xd4\x7d\xa2\x01\xe6\x85\xe4\x7a\xa8\x5a\x3c\x12\xe7\x6f\x2d\x2b\x4a\xd9\xca\xe4\xe6\xb2\xe5\x04\xe0\x11\x8c\xdc\x30\xb5\xa0\x3e\x83\xfe\xe1\xb6\xba\x55\xb4\x8e\xc3\xde\xae\xb5\x3c\xd0\x95\x7c\xe8\x24\xb0\x83\x4d\x87\xc6\xdd\xbc\x3b\x4c\xc3\x8e\x5d\xaa\x37\xba\xd1\x1b\xc8\x01\x1c\x73\x14\x37\x1f\x19\xe8\x76\xfd\x92\xa6\x8a\xae\xcd\x51\xe6\x47\x2f\xad\xe0\x6e\xe6\x28\xaa\x46\x49\x39\xdf\x3d\x7b\x15\xa9\x3a\xec\x03\x53\xea\x6e\x36\xb2\x5d\xf6\x5c\x2c\x5d\x80\x85\x59\xc8\x69\x7a\x26\xc9\x56\xb6\xf1\x7c\x78\xe9\xf6\x2a\xa5\xa5\xd5\xc7\xbe\xa5\x92\xad\x68\x83\x72\x51\x9e\xd7\x1a\x2d\xe8\xb7\x64\x2a\x2a\xff\x82\xa4\x87\x6c\xb8\x7f\x43\xfc\x25\x4a\x7b\xd7\xa2\x5c\x17\x90\xd2\x46\xc7\x0a\x83\xb9\x73\x7d\xfe\x6c\x18\xe0\xed\xf1\xfb\x99\x68\x9a\xaa\x73\xc9\xe3\xc1\x0e\x53\xe5\x9e\xb6\x4e\x5c\xd0\x1c\xdf\xdc\xec\x74\xa7\x61\xd2\x54\xcb\xe3\xcf\x95\x63\x7e\x4f\xe6\xf7\xb0\x5c\xce\x31\xbf\x48\x92\x34\x08\x63\x74\x20\xf8\x2d\x0e\xef\x68\xca\x48\x84\x29\x3f\xaa\x2a\x2c\x5c\x06\x76\x33\x80\xcc\xfe\x98\x57\xdb\xba\x15\x60\xa5\xba\x39\x29\xe4\x25\xfd\x5b\xc5\xbc\x8d\x3b\xfc\x6b\x9d\x37\x23\xec\x38\x0a\xa7\x31\x0d\xde\x24\xcb\xf4\x54\x0d\x92\x2d\xf7\x33\xc2\x6f\xaa\x4c\xe0\xa8\x95\xc0\x31\xcb\xd4\x7f\x6d\xc9\x46\x63\x1c\xa4\xe4\x8d\xd2\x2e\xfa\x3e\xcb\x48\x45\xd2\xf8\x23\x1c\xf6\x44\x50\xeb\xd2\x4b\x29\x65\xf5\xb4\xcb\x58\xd3\x8d\xa4\xb4\xab\xb9\x96\xae\xbd\xac\xb8\xff\xca\x63\x3c\xef\x76\x0b\x96\x07\xb2\x16\xa9\x3f\xea\x7e\xc3\x1b\xbc\x1a\x2e\x35\xcb\x11\x36\x2e\xb9\x99\x45\x43\x04\xb7\xf6\x34\x4d\xed\x35\x54\x58\x6f\x9d\xdc\xfc\x76\x4b\xbf\xde\x92\x01\xf6\xed\x5b\x2e\xbd\xc9\x52\xdf\xbb\xbd\xc1\x25\x34\x14\x71\xe1\x4d\x45\x70\x13\xfa\x52\x1b\x3c\xd0\x39\x9f\x53\xd7\x47\x35\x31\x5a\xb6\x69\xa5\x7e\x34\x34\xc7\x3a\x9d\x2b\x4a\x6f\x77\xef\x99\xb5\xe8\x14\x2d\x1d\x81\x5c\x08\x9c\x0b\x63\x8c\x06\xdf\x09\xd4\x7d\xbe\xff\xe5\xba\x81\xa3\x68\xa7\x4e\x59\x97\xf5\xc7\x5a\x76\xc5\xba\x5c\x8b\x8b\x8a\xe0\xbf\xde\xca\x7e\x0b\x0e\xfe\x57\x28\xc6\xc0\xed\x3b\x91\xba\x12\x09\x19\x5c\x16\xf3\x17\xb6\xe5\x7b\x05\xad\xb2\x46\x97\xd6\x15\x86\x88\x47\x0b\xa1\xf2\xc1\x2e\x39\x7c\x2f\x92\x4b\xb8\xbb\x32\xc2\xe7\xff\xdb\x28\xd6\x22\xf7\xef\x46\xb1\xb8\x99\xcf\x8d\x48\x71\x26\x3e\x46\x7b\xb6\xd2\x91\xcf\xa7\xdd\xe3\x9d\xdb\x22\xa8\x71\x2e\xd3\xf3\x04\x09\x5b\xb9\xbf\x53\x73\xba\x5d\xb8\xa1\xfc\x84\x29\x72\x9b\x28\x6b\x49\x21\x40\xff\x83\xa3\xa0\x5f\xc6\x74\x91\xd9\x85\x08\x03\x02\x53\x9a\xa1\xd7\x8f\x72\xa2\x7e\xac\x54\x39\x90\x4c\xa0\x07\xf5\x7e\xfb\x31\xa4\x78\x0e\xd6\x9f\xb7\x0f\x1b\x5e\x6c\x4c\x62\x93\x79\x5e\xf2\xec\xc2\x51\xc2\x8f\xfe\x22\x88\xcd\x22\xa5\x77\x61\xb2\x64\xc8\x86\xce\x2e\xac\xd4\x3a\x68\xb3\xc1\x14\x09\xf9\x13\xed\xd5\x8f\x68\x1e\xa3\x14\xa5\x8a\xd7\x8f\xab\x19\x2c\x53\x13\xec\xb2\x58\xae\x0a\x70\x73\xb1\xc4\x41\x5e\x3e\x24\x77\xa9\x42\x8d\xc8\xb7\xf1\x24\xf1\x4e\xfd\xeb\xd2\x39\x54\x4a\x96\xc2\x27\x04\xb6\xf6\x6b\x5d\x42\xec\xd4\xda\x31\xfd\xd5\x7b\x44\x6d\xcf\x76\x81\xef\xaf\xea\x25\x35\xdb\x7b\x35\x69\x45\xef\x0d\xa3\x72\xcf\x8b\x4c\x6d\x57\x2a\x89\x10\x3b\xd3\xdc\xab\xae\x6c\x6f\xaa\x48\xb6\x83\xb3\xc0\xfd\xf7\xa6\xdd\x2e\xbc\x9d\xa8\x48\x2b\x44\x8b\x9b\xa2\xc5\x5c\x31\xa2\x4b\xe4\xc1\xf0\x74\x14\xca\x99\xbb\x03\x70\x9a\xcd\x68\xba\x0a\x19\x2d\x10\x68\xd1\x5a\x24\x0e\x11\x26\x5b\x0f\x2a\x2a\x11\xdd\x91\x34\x24\x37\x11\x65\x79\x35\x05\xee\x1c\x4e\x22\x19\x54\x87\x6c\x40\xa3\x40\xba\x7a\x97\x0f\x55\x8f\xbf\x00\x7a\xf8\x57\x85\x09\x02\xfb\xf0\xe3\x0f\x98\x00\x55\x47\x45\x83\x88\x1d\x43\xb3\x28\x02\xcd\xb2\xbb\xe8\x3b\x8a\x40\x2c\x56\xe3\x6d\x68\xf7\xe8\xbb\xc3\xb5\xb8\xe1\xbf\x44\xd0\x05\xb5\x44\x4b\x5f\x68\xe8\x39\x5c\xbd\x61\xc7\xe5\x78\x2b\x44\xb6\xae\xad\xcf\x5d\x72\x85\x60\xe1\x42\x79\xaa\xc6\x1e\x89\xa7\x4b\x32\xb5\x46\x8e\x1e\xdd\xa3\xf0\xe7\x6d\x68\x0a\x52\x55\x8e\x75\x2c\x85\x7e\xe5\xd0\x81\xfb\x0c\x0f\xa8\x70\x05\xfa\x36\x37\x53\xdd\x62\xd8\x3f\x34\xca\xfc\xa6\x1a\xb6\x7b\x99\x18\x37\x3b\x1f\xed\x9d\x30\x1e\x1a\x3e\x43\x9d\x51\x89\xb2\xdb\x85\xd3\x18\x5e\x85\x29\x9d\x24\x5f\x3a\x7b\x07\xe8\x11\xfc\x1f\x53\x11\x8a\x95\x1f\x1b\x25\x0e\xb5\xae\x13\x11\x20\x33\x8c\xa7\xb0\x48\xc2\x38\x73\x4c\x85\xb7\x5e\xdc\x2c\x96\x51\xd4\xed\xff\xfc\xb8\xef\x6b\x1a\x1e\x6d\xc4\xb9\x4e\xb3\x62\x34\x69\x41\x93\x97\xfe\x23\x74\x85\x79\xa4\xb5\x1f\xbf\x7d\x55\xae\x46\x45\x36\x4e\xb2\xc2\x93\xe9\x19\xee\x29\x44\x8e\x34\x67\x45\xc8\x8f\x96\x08\x6a\x24\x0c\x86\xf3\xd3\x93\xd3\x01\x8c\x92\x3b\x19\x41\x3b\x59\xa2\xc9\xf4\x8c\xa6\xf4\x41\xb1\x0f\x28\xd6\x08\x44\x5e\xa9\xb7\x90\x10\x98\x14\xcd\x58\x9e\x85\xfb\x8c\x48\x35\xeb\x5b\x30\x72\x6a\x8e\x63\x71\xf1\xc4\xc2\x88\xc6\x19\x4c\x48\x18\x2d\x53\x7a\x54\xb6\x6c\x89\x0a\xb7\xe5\xa4\x2d\x6c\xe6\x4b\x45\x8a\x75\x6e\x17\x1a\x82\xa1\xe8\xb6\x79\x18\xd7\x45\x9a\x37\xbf\x9f\xb0\xae\x25\xe0\x70\x6a\x83\x21\x1a\xaa\xb5\x94\xbf\xbc\x0e\x2e\x6a\x8c\x66\x35\x68\x62\x3c\x47\x9f\x8e\x8c\x6f\xb3\xa5\x71\xa7\x5c\x5e\x5b\x1a\x55\x6e\x8a\xb5\xbc\x5d\x4e\xbe\x56\xb2\x7a\xad\x0d\x0e\xbe\x60\xfb\xa3\x62\x20\x55\xd3\xed\x54\x71\x0c\xf9\x26\xc5\x53\xdb\x99\x55\x9b\x67\x40\xaa\x8b\x7f\x31\x8e\x46\x5e\x67\x38\x15\x17\xaf\x74\x80\x6b\x93\xc3\x27\xca\xac\x86\xed\xc0\x6e\xd1\x30\x7f\x9c\x39\x5f\x2e\xeb\xdc\x08\x57\xb4\xf2\x96\xd2\x85\x7d\x87\xa1\xbc\x91\x73\x09\xe5\xdd\xad\xe5\x01\xc2\xaa\xd6\xd5\x82\xb3\xe2\xd4\xa8\xb3\xd6\x95\xcb\xe5\xaa\xeb\x9c\xcc\x4a\xbb\xe6\xfb\x59\x30\x17\x63\xac\xa0\xad\xdc\x46\xc1\x18\x39\x45\xee\x64\xcd\xfc\xa3\xd8\x9b\x4c\x9c\xf0\xdb\x96\xf9\xb3\xf6\xb2\x66\x5e\x21\x14\x18\x3c\x48\xcb\xf0\x9d\x6d\x41\x25\x2c\x54\x2d\xfa\x54\x86\x61\x9b\x34\x7c\x6e\xa1\xea\x76\xe1\x4c\xfa\x9b\xf0\xed\xc4\x2c\x59\xa6\xea\x04\x98\xc7\xdf\x14\x1e\x40\xf2\xfa\x13\x9f\x2c\x19\x4d\x81\x7e\x59\x44\xe1\x38\xcc\x64\x96\xf8\x6e\x57\x98\x5f\x4e\x42\x0c\xf9\x19\x8e\x67\x02\xdb\x4c\x78\xc3\x30\xbc\x16\xcf\xd2\x75\x28\x4e\x95\x73\x12\x62\x6e\xcf\xe2\xf8\x8b\xd0\x75\x79\x57\x8b\x17\xbe\x31\x5d\xe5\xb7\x89\x0d\x6c\x0e\x03\x46\x63\x46\x3b\x32\x2b\x55\x7e\x05\xcd\x91\x8a\x64\xbc\x41\x42\x19\xc4\x49\x26\xcd\xc2\x15\x32\x5c\x4c\xd2\x65\x64\x06\x0b\x9d\xc4\x68\x81\x6c\xf0\x4f\xa5\x5c\x36\xb9\xf7\x86\x3f\xad\x19\x37\x2d\x79\x36\x18\xe4\x3a\x0a\x67\xdc\xca\x09\xc3\x4b\x46\x17\x24\xc5\x48\xd8\x56\x85\x32\xb3\xbc\x89\x9e\x6f\x04\x4c\xec\x66\x01\x66\xc4\x78\xab\x89\x47\x44\x16\xf7\x45\x76\xc3\x5a\x8a\x60\x6e\x15\xd5\x39\xf5\x49\xad\x9b\x59\x42\xa5\xab\x2f\x23\x52\x65\x88\xd6\x88\x14\x8f\xaa\x88\xc4\x9a\x4a\x89\xb4\xab\xd4\xa2\xc7\x61\x2c\xdc\x68\x99\x92\x08\xe6\x34\x9b\x25\x01\x73\x78\xb6\x66\x46\xaf\xe6\x4e\x0d\x56\x97\x99\x50\x73\xb1\x21\x31\xe1\x84\xd1\xf4\xd0\x7a\x62\x43\x29\xdd\x84\x01\x28\x1f\xda\xb0\xb9\xe1\xf2\xd0\x7d\x68\x36\x92\x44\x21\xe1\x07\x50\xe9\x2f\xe5\x6f\x6c\x96\xfc\x72\x76\xfa\xde\x40\xa6\xc5\x74\xf9\xa6\xa8\x4d\x79\xcc\xb2\x6f\x8f\xdb\xa4\x67\x1e\x65\xe7\xc9\x27\x1c\x0d\x98\xa0\x55\x5f\x4e\xba\x5d\x38\xe8\xf5\x64\xa6\x68\xb4\xb8\xe8\x1f\x1c\xf6\x9e\x3c\x16\x3e\xe6\x75\xe9\x3c\x1d\xc6\x59\xc2\x47\x52\xb2\x8c\x33\x88\x28\x59\x88\xa1\xc3\xe7\x33\x6b\xd8\xab\x1b\x96\x7c\x88\x68\xbb\x12\x9b\x7f\x73\x80\x95\x62\xb6\x58\x06\x98\xe7\xd2\xa6\x4c\x50\xf5\x10\xf6\x0f\x1f\x41\xb3\xf0\x9f\x14\x8f\xbb\x70\xa0\x7b\x18\xcb\xfc\xc2\x0e\x50\xbf\xd7\x6b\x78\x0b\x1b\x61\x9b\x24\xe9\xaa\x42\xc9\x03\x84\x32\x68\x37\x83\x61\x69\xa9\xfc\x61\x98\xf7\x59\x49\x5c\xac\xeb\x9b\xe5\xcd\x4d\x54\x7d\xb9\x88\xf1\x6d\xcc\xf5\x4d\x9c\x0c\xb6\x24\xe2\x10\xb3\x4d\x5d\xee\xfa\x72\x71\xe4\x93\x4d\xe2\xc3\x9f\x3e\x4c\xa8\x09\xc8\xaf\x89\x89\xc7\x4f\x51\x52\xa1\x12\xb8\xcb\xd4\xea\xad\x3c\x49\x7d\xcf\x0d\x13\x7a\x6e\xb8\x09\x8d\x93\x80\x82\xe0\x06\x83\xe5\x42\x46\x3b\x6d\x01\xa3\xd2\xea\x8b\xb2\x0c\xf5\x2c\x36\x1a\xfa\x85\xcc\x17\xbc\x50\x32\x81\xd5\x8c\xc8\x70\xdf\x68\x3a\x66\x1e\xcd\x38\xe5\xce\x46\x41\xff\xf9\x23\xfa\xff\x5a\x84\x16\xb0\xf9\x68\x31\x0a\x39\xc1\xbe\xf2\xaa\x8a\x92\x45\x05\x87\x36\xfa\x62\x63\x90\xa3\x2f\x30\x1f\x7a\xf1\x6a\x7b\x09\xf9\xcd\x83\x57\x2d\x98\x1a\xd1\x02\xb6\x0c\xab\x2a\x20\xfe\xfe\x08\x7b\x07\x76\xe4\x7b\x3e\x9e\x9a\x1a\x46\x01\xd9\x85\xbd\x03\x4f\x0c\xd8\xe3\xf1\x78\x29\x56\x5a\x95\x58\x42\x20\xc8\x12\x31\x24\x5a\x40\x18\x5b\xce\x95\x03\x2e\x5a\xa5\xa1\xf8\xe8\x99\x9d\xa6\xc6\x4f\x5e\xab\x26\xb8\x84\xdc\x72\x1a\xb3\x66\xd0\x1e\x5a\x73\x5b\x08\x14\x29\x4f\x3c\xe4\xee\xf7\x72\xf2\x88\x98\x16\xbe\x53\x27\xd4\x43\x76\x9b\xd2\xb8\x31\xc0\x95\x92\xc4\xe3\x59\x92\x8a\x55\xbd\x1e\x85\xb7\x14\xfa\x2c\x83\x5f\x48\xdc\x50\x5e\xc6\x7c\x1b\xe8\xba\x13\xcb\x69\xd7\xb4\x5a\x05\x9c\x0c\x5f\x6b\x7e\x1c\xc2\xbe\x67\xfe\xf4\xf7\x14\xa6\xf6\x73\xe8\x23\xa7\x3c\xac\xd3\x6b\x91\xe0\xbc\xa8\x55\x8f\x7c\xf3\xe3\x10\x83\x19\xb8\xa3\x43\x0a\x13\xfe\xc7\x37\x22\x8b\x45\xdb\xcc\x5e\x90\x43\xa8\x6e\xc4\xbf\x7e\x8d\x0d\xb9\xa9\x8e\xb4\xe4\xca\x3c\x75\xec\x26\x37\x2a\x78\x94\xfe\xd6\x6a\x61\x21\x07\xdd\x62\x38\x8e\x7c\xe0\x79\xc3\xec\x7a\xf0\xb9\x3d\x8e\x0a\x01\x69\x8b\x19\xa7\x3e\x0b\xa4\x84\x56\x43\x88\xf8\x70\x6c\x2d\x5e\xc8\x0a\x3f\x09\xf8\xb6\xbc\xb8\x12\x0a\xbe\xc2\xf8\xae\xa2\xe6\x12\xd6\x69\x2f\xcb\x0b\xab\xe1\xe2\x2b\x2b\xe6\xb0\x3f\x2c\x74\xf9\xcd\x81\xd8\x2f\xee\xa0\x5a\xcc\x27\x8b\xba\x10\x63\x32\xc5\xbc\x1f\xef\x3d\xa2\x51\x7a\x06\x70\xd3\x5a\x48\xb5\x41\xfa\x50\x86\xbf\xb0\x41\x8c\x11\xc8\x97\xac\xbd\x06\x3c\x84\xbd\x47\x4f\xf6\xe8\xa1\x8b\x0f\x63\x88\x1a\x25\xba\xb2\xc4\x7e\xff\xd1\xfe\x21\x3d\x2c\xb1\x01\x92\x61\x1f\x9c\x48\x0e\xfe\x30\x0e\x46\xb4\x2a\x3d\xdf\x80\x3c\xea\x3f\x28\x8a\xfa\x9d\xa7\x1d\x4d\x47\x79\x5d\xa0\xc7\x43\x71\xaf\xf7\x16\x84\x65\xaf\x96\xd9\x32\x95\x11\x2a\x55\xd8\xa6\x9d\x5d\x03\xff\x4a\x70\x2c\xc7\x7a\xf8\x8e\x38\x6a\x1a\x7e\x22\x5f\x2e\x16\x49\x9a\x49\xcb\xf6\xbd\x4e\xaf\xcd\xb2\x75\x44\x41\xa5\x68\x66\xb5\x06\xa6\x27\x0d\xd4\x9e\xb2\xe1\x70\x3b\xd0\xcf\xc7\x81\x91\xe4\x45\xd4\xea\x15\x4d\xe6\xd8\x1b\x72\x2c\xe6\xc3\x52\x91\xa9\x80\xdd\x05\xc0\x18\x5c\x39\x4e\xb9\x0e\x78\x20\xc5\x16\xaf\x7e\xef\x09\xac\x05\x16\xdb\x85\xcd\xdf\x89\x49\xed\xfb\x30\xa9\xbd\x1b\x93\xda\xff\x3e\x26\xfd\xdb\x2f\x9e\x3b\x59\xf2\x2e\x59\xd1\xf4\x05\x61\x14\xad\x3c\x6a\xac\x56\x7a\x19\x4d\xd8\x76\x62\xe4\xb5\x03\x46\xcb\x70\xf7\x0e\x7f\x21\xa2\x9a\x70\xb8\xb7\x5c\x6d\x4b\x03\x3b\x39\x87\x25\x65\x23\x76\x6d\x6d\xf6\x51\x28\xfb\x54\xa9\x9e\x93\x14\x34\xc1\xd9\xad\x62\xf4\xb2\x52\xad\xaa\x4b\xff\x91\x42\x3d\x00\x4d\x80\xef\xa8\x79\xed\x76\x61\x46\xe2\x20\xa2\xe6\x39\xa7\xd0\x82\xe5\xfa\xc3\x64\x62\xdd\x6a\xc1\x9c\x64\x33\xa0\x69\x9a\xa4\x8c\x6f\x7b\xd9\x92\xc2\x7f\xf4\x7f\x3e\x7c\xdc\xd8\x89\x77\xda\x2d\x96\xbe\xff\x76\x57\x22\x8f\x86\xb9\x32\x8a\x83\xfa\xe8\x91\x0f\x0c\x1d\x43\x17\x1e\x97\xf5\x9d\x88\xf4\xe4\x37\xad\xd6\x82\x22\x18\xe8\xee\x37\x0c\xc0\x8a\x81\x60\x69\x3f\xf6\x0e\xca\xf0\xed\x1f\x56\xa3\x53\x41\x0f\x5c\x84\x18\xa8\xaa\xac\xc1\xbe\xc0\x68\xe0\x44\x3a\x28\x41\x5a\x85\x59\x1c\x94\x7d\xa8\xbb\x5d\x2d\x20\x36\x9a\x28\x61\x86\x9c\x8a\xd1\x35\xa3\x29\xad\x6c\x7a\xe1\xf1\x39\xf0\xc4\xdc\xf6\x51\x2d\x33\xc3\x7a\xa9\xf7\x93\x2d\x43\x67\x0e\x30\x6c\xc3\x0a\x95\xdc\x2f\x39\x79\xf5\xda\x6f\xf1\x6d\x9c\xac\xc4\xdc\x84\x9a\xbc\x02\xf2\xf9\xc4\x95\x5d\x73\x7b\xac\x10\x0a\x9d\x20\x7f\x50\xa8\x53\x72\x5b\x11\x0d\x40\xe4\x5c\x36\x42\x6a\xb3\x22\x86\x78\x99\x3d\x83\x06\xe5\x5a\x33\xc8\xe4\xf4\x78\x71\xa0\xc7\x99\xce\x2d\xd3\x6a\xd6\x4e\xb2\x56\x8f\x93\x2c\x1c\x53\x19\x78\x65\x11\x66\x24\x62\x8d\x52\x23\x85\x6d\x76\x29\x15\xc1\xad\xfd\xd6\x01\xbb\x86\x11\x17\xc6\x3d\x8b\x30\xa5\x01\xdc\xac\x7d\x37\xf1\x41\x92\x06\x61\x14\x51\x79\x17\xdf\x0e\x59\xa2\x76\x06\xdd\x9b\x28\xb9\xe9\xce\x31\x78\x77\x37\xf7\x1f\xce\x5f\x77\x7e\x67\xce\xca\xe5\x3f\xa7\xe0\xd3\x7a\xc3\x17\xd3\xd9\x7f\x28\x12\x8f\xbd\x25\xbc\x07\x56\x71\x2a\xf1\x25\x82\xf4\x9e\xd7\x64\x70\x6a\x1f\x3d\x25\xc7\xc3\x3c\x66\xb5\x2f\x24\x59\xc9\x89\x34\x0f\x54\x9d\x9b\x57\x1b\xe1\xab\x0b\x45\x99\xb3\x6a\x0b\x67\x1d\xc2\xce\x14\x6c\x49\xcc\x53\x61\x60\x65\xda\x66\xbe\xf8\x8f\x1a\x83\xfa\xfb\x24\x20\x0d\x8c\xc7\xb9\x58\x67\x33\xdc\x19\xb2\x24\x20\x19\x6d\x74\x3a\xde\x04\xa6\x37\xcb\x0c\xef\xa3\x84\x0d\xc1\x2f\x67\x50\x9f\x26\xc9\x14\x6f\x75\xdc\x05\x4e\x0e\xdd\xda\x87\xde\x49\x6d\x77\x8f\x03\xad\x3d\x2a\xe2\x59\x3b\xbf\x47\x76\xea\xa8\x7d\xb0\xe7\x1c\xff\x48\xc5\xf4\x91\xd2\xe5\x40\xed\x53\x39\x0a\xa5\xde\xc9\xb7\x0c\x4d\xa8\x8d\x2a\xc0\x71\x68\x1d\xa9\x65\xae\x76\x52\x01\x2a\x75\x7d\x9b\x4d\x3e\x62\x36\x9b\x3c\x91\x37\x6f\xd9\x79\x45\x61\x51\xf6\x48\x0e\xce\x26\xd4\xde\x54\xb5\x41\xe2\x3f\xca\x6b\xda\xd2\x0a\x35\x1c\x8f\xf2\x81\xd9\x84\xda\x99\x2c\xe0\xdf\x97\x7e\x17\x5b\x23\xfc\x96\xdb\xda\xb8\xba\xff\x4e\x9e\xe8\xc1\x39\x82\xf8\xef\x82\x0c\xb3\x01\x75\x6d\x20\x6f\xcc\x31\x13\x96\x46\x9e\x8b\x30\xcf\xe7\xb5\x63\x7b\x02\x92\x11\x27\x7b\x96\x79\x23\x23\x32\xda\x84\x62\xe5\xd3\xee\xd0\x5f\x91\x71\x96\xa4\x4e\xf6\x32\x2d\x6b\x8f\xbf\x40\x0b\x42\x67\x66\x7b\xda\x1a\x9a\x67\x8c\x32\x2b\x0b\x0f\x4f\x09\x1b\x99\x6a\xb7\xca\x1c\x2f\x72\x92\xd6\xb5\x08\x37\x5f\x9f\x96\xa3\x3e\xbb\x27\xd6\x9d\x90\x8e\x72\xf9\xbb\x23\xa9\xbb\x20\x7d\x23\x17\x81\xdd\x50\xce\x76\x41\x79\x22\x56\xa1\xdd\x30\x06\xbb\x60\x54\xd7\xb2\xbb\xa1\x44\xed\xdd\x4e\x0c\x55\x0b\xec\x6e\x78\x47\xbb\xe0\xfc\x24\x17\xf9\xdd\x50\xae\x6b\x7f\x29\x33\xcf\x89\xcc\x78\xfb\xae\x48\x8e\x77\x9f\xfb\x5d\x61\x39\x92\xe7\xcd\x95\x9b\x47\xb9\xcc\xc9\xdd\x25\x5a\x39\x87\xf1\x8c\xa6\xa1\xbc\x78\x79\x19\x4f\xa3\x90\xcd\x3c\xc9\x27\x31\xdd\x4c\x4b\x6b\xae\xf0\xa1\x8c\xd0\x40\x6f\x00\xdd\xcb\xe0\xcf\x7e\x6b\xef\x6b\x3d\x9b\x6d\x58\xb6\x89\x83\x4d\x1a\x34\xba\x2d\x1b\xda\x10\xb3\xc2\xfc\xce\xa7\x07\xb8\x41\xe7\x57\x8c\xba\xfd\x23\xf4\x3d\xfe\xf3\x45\x7c\x70\xa1\xd8\xd4\x80\xf1\x5a\xb9\xd7\xc0\xb3\x73\x1f\x97\x24\x7e\x7a\x76\x83\xb8\xd5\x6f\x34\x10\x96\x55\x80\xec\x21\x48\x1c\x54\x80\xec\x23\x48\x1a\xe0\x6a\x93\xcd\xfc\xa1\x43\x25\x91\x4d\x49\x7d\xe9\x12\xd2\x7d\x08\x2f\x47\x7f\x7f\x79\x72\xfd\xee\xf4\xc5\xf1\xbb\x97\x67\xc0\x3b\xf5\xfe\x03\xe8\xe5\x97\x45\xc2\xf8\xb2\x23\xfc\xaf\xef\x33\x82\xc0\x5e\x85\x5e\x63\x96\xd2\xba\x30\x3d\x3a\x51\x07\x08\xe3\x3e\xfe\xa1\xcc\x90\x4a\xe3\x80\xa6\x03\x34\x62\xd2\x23\xde\x69\x16\x98\x08\xb1\x2d\xdb\xa8\xe0\x99\xcd\x23\xec\xfb\x28\x10\xe4\xe4\xb9\xe7\x44\xcd\x67\xe3\x64\x41\x65\x5e\xe4\xa7\x46\xbd\x15\x64\xf3\x8f\x5b\xdc\x9f\xb2\x51\xff\xd4\x84\x21\x4c\xc1\x5e\x23\x22\xa5\x64\x05\xe3\x28\xf9\x3e\xd5\xb7\xa3\x43\x2c\x7a\xf8\x17\xbe\x69\x55\xa9\x99\x53\x3a\x4f\xee\x30\x87\x2c\x90\x18\x96\x8b\x71\x32\xe7\x55\x95\xe2\x49\x29\x1e\xe4\x6c\x6b\x71\xf5\x91\xca\xe3\x2d\x36\x90\x5e\x3e\xd8\xfc\x34\x96\xde\x6e\x17\x5e\x24\xf3\x79\x12\xff\x72\x06\xf3\x24\x58\x46\x54\xb3\xb1\xfa\x01\x8a\xfd\xc0\x08\x5f\x9a\x1b\x17\xfe\xa4\x43\xbf\x08\x05\xb8\x59\x91\x27\x49\x3c\xe2\xb4\xfc\x4c\xe0\xa7\x9f\xe4\x8b\x0e\x99\x1b\x46\xee\xe2\x69\x5d\x1a\xf3\xd7\x5a\x9a\xd4\x49\xe9\xbf\x96\x61\x4a\x5b\x20\xab\x6e\x49\x52\x7c\x66\x96\x92\x48\x61\xbc\x8f\x19\xa6\xf4\x07\x32\xe9\x94\xf9\xa8\x13\x27\x62\x74\x8a\xd4\x52\xa9\x6b\xbf\x09\x2a\xc5\xa6\x38\x7b\x6b\xe3\x45\x79\x91\x38\xe0\xde\x9e\xb1\xe6\xc1\x2e\xe7\x11\xa7\x33\x75\x4b\xe3\x62\x9a\x6b\x26\x64\xce\x40\xd1\xc0\x72\xa3\xde\xaf\x18\xf8\x38\x52\x7e\x94\xff\xbf\x00\x00\x00\xff\xff\x4a\x12\x3c\x43\x7d\x78\x01\x00") +var _assetsJsMoment2270Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xff\x7f\x13\x37\xb3\x28\xfc\x7b\xff\x8a\xe1\x9e\xb6\xb6\x89\xbf\x06\x0a\xad\x69\xc8\x87\x43\xa0\xf0\x1c\x42\xb8\x24\x5c\xde\xd6\xf1\x93\xa3\x78\x65\x7b\xc9\x7a\xd7\x67\xb5\xc6\xb8\x35\xe7\x6f\x7f\x3f\x1a\x49\xbb\xfa\xba\x76\x28\xed\x7d\xde\x7b\x5f\xfa\x3c\x90\xac\x46\xa3\x91\x34\x1a\x8d\x46\x33\xa3\x5e\xef\x0e\x2c\xb2\x05\x4d\x8b\xee\x07\xf6\x0d\xff\xed\x23\xcd\x59\x9c\xa5\x30\x84\xc3\xee\xe1\xc3\x6e\x1f\x3f\x92\x55\x31\xcf\x72\x06\x43\xb8\x88\x17\xf0\x3e\xcb\xa2\x36\xbc\x64\x37\x39\x4d\xe1\xe9\x9c\xe6\x29\xfd\xd8\x86\x53\x85\x06\x26\x59\x5a\xe4\xf1\xf5\xaa\xc8\x72\x81\x33\x89\x27\x34\x65\x14\x86\x70\xfa\xf2\xe2\x9b\xaa\xcd\x0f\xac\x3b\xc9\x16\xdf\x7c\xf3\xa8\x39\x5d\xa5\x93\x82\x37\xdb\x9c\x25\xd9\x35\x49\xda\x30\x25\x93\x22\xcb\x37\x2d\xf8\xe3\x1b\x00\x80\x62\xb3\xa4\xd9\x14\xe8\xa7\x65\x96\x17\x0c\x8e\x8e\x8e\xa0\x91\x5d\x7f\xa0\x93\xa2\x01\xdf\x7f\xaf\x8a\x17\x59\xb4\x4a\x28\xdc\xe1\xa5\xab\x34\xa2\xd3\x38\xa5\x51\x03\x8e\x65\x41\xb7\xac\xae\xd0\x37\x5b\x30\xd4\xf1\x8b\x2a\x02\xbd\xa2\x09\x1b\x10\x05\x5d\xb2\x88\xe0\x58\xfe\xd2\x2c\x49\x14\x28\x04\xe5\x5d\xd1\x35\xbd\x89\x6f\x3e\x37\x8b\x79\xcc\xda\xa0\x75\xb3\x05\x7f\x40\x63\xc5\x28\xb0\x22\x8f\x27\x45\xe3\xd1\x37\x88\xe3\x23\xc9\x61\x9e\x65\x37\x4f\x49\x92\x5c\x93\xc9\x8d\xfc\x5c\xd6\xe3\x65\xac\xa9\x06\x85\xff\xc9\x69\xb1\xca\x53\xa3\x52\x97\x2c\x97\xc9\xa6\x99\xae\x92\xa4\x0d\x24\x9f\xad\x38\x41\xac\xf5\x08\xeb\x7c\x16\x18\x7b\x3d\xb8\x98\xc7\x0c\x62\x06\x51\x96\x52\x28\x32\xc8\xe9\x2c\x66\x05\xcd\xa1\x98\x53\x58\xd0\x62\x9e\x45\x30\x21\x49\x42\x23\x58\xc7\xc5\x5c\xce\x59\xb3\xa5\xea\xf3\x8f\xd9\xaa\x80\x49\x4e\x49\x11\xa7\x33\x98\xc4\xf9\x64\x95\x90\x1c\x22\xba\xa4\x69\x44\xd3\x49\x4c\x59\xd7\xec\x00\xa3\xc5\x0b\x8d\xd4\xe6\x44\xfe\xa0\x77\x49\xef\x0b\x1c\xc1\xa4\x1c\x0b\x8d\xfe\x12\x61\xcc\x9e\xe4\x39\xd9\x34\xe3\x74\xb9\x2a\x3c\x03\xd3\x2c\x3f\xf0\x3f\x08\x05\x71\xca\x0a\x92\x4e\xf8\x84\x63\x65\xd8\x6e\x0d\xa8\x33\x64\xac\xee\x32\xcf\x8a\x8c\x33\x46\xb7\xc8\xce\x8b\x3c\x4e\x67\x5d\x4e\x8b\x6a\x0a\x99\x64\x24\x98\x50\xe0\x19\x37\x4a\x34\xad\x10\xb5\x02\xb7\x4b\x6e\xaf\x07\x2f\x9f\xfd\x08\xeb\x38\x49\xa0\xe0\x23\x0a\x25\x03\x03\x49\x23\xe0\xb3\x09\x84\x81\x6c\x2f\x9e\x42\x5c\xc0\x9a\xb0\xb4\x51\xc0\x34\xcb\x75\x3c\xa2\x93\x77\x8e\xb0\xce\x3e\xe3\x21\x41\xe1\xfb\xef\xff\xec\x30\x88\x2a\xbb\xc7\x61\x4e\xd8\xd9\x3a\x7d\x93\x67\xcb\x26\x69\xc3\xb5\x67\xde\x9c\xc6\xab\x2a\x34\x2f\x36\x82\x04\xac\x5b\x3f\xd2\xcf\x16\xcb\x62\xd3\xcc\xae\x3f\xe8\x6d\xc4\x53\x68\xca\x06\x66\xb4\xd0\xd0\xbe\x26\x0b\xca\x74\x48\x97\x22\x4f\x05\x44\xdf\x4d\x68\x3a\x2b\xe6\x38\x1e\xfd\x47\x25\x82\xcf\x40\x13\x46\x2d\x8c\x7c\x99\xdf\x3c\x32\x3e\x4d\xb3\x1c\x9a\x37\x10\xa7\x60\xd1\xaa\xd3\xac\x0d\x5b\x76\xfd\xa1\x0d\x37\x2d\x1f\xa4\x46\xf3\x94\x24\x8c\x3e\x72\x20\x3e\x7f\x13\xfe\x4d\xd6\x2c\xf2\x95\x56\xf1\x73\x60\x8c\xdf\x29\x1e\x0d\xae\x3f\xc1\x61\x7c\x50\x3e\x66\x71\xa4\x46\xc6\xc5\xf4\x7a\xb5\xb8\xa6\xf9\x9e\xcb\x58\x4a\xeb\x0a\x77\x23\xc5\xea\x8d\xaf\xb0\x92\x05\x21\xfb\x2c\xe5\x13\x52\xd0\x2f\x95\x3b\xbc\xee\x57\x20\x96\xa3\xd9\x4d\xea\x82\x2c\x9b\x24\xcf\xdb\x30\x4d\x75\x4a\x39\x17\xe6\x94\xef\x86\xa3\x71\xdb\x24\xb7\x9a\x79\xe4\xcb\x18\x38\x4f\x43\x0c\x3f\x03\xc9\x73\xc9\xe9\x8f\xe0\xe0\x20\x76\xd7\x0a\xeb\x2e\x57\x6c\xde\x9c\xa6\xbc\xc9\x51\x3c\x6e\x43\xdc\x6a\xd9\x9c\xa4\x0d\x54\x4e\x99\x9f\x6a\xfa\xa9\xa0\x69\xe4\xc8\x07\x24\x88\x93\x1e\xf3\xc5\x72\x6d\x13\x60\x2d\x93\x6b\x6c\xde\xb3\x48\xc8\x28\x1e\xc3\x11\x5c\x8f\xe2\xf1\xa3\xc0\x6a\x90\x04\xf9\xb1\x36\xd4\xe4\x34\x1c\xf4\xa4\x9c\x38\xde\x40\xf9\xcb\xa3\x3d\x11\x7f\x24\xc9\x8a\x9e\x4d\x7d\x78\x65\x11\xa2\x95\x3f\x7b\xb1\xca\xa1\x25\xfe\x81\xc5\x0d\x9b\xbe\xbb\x78\x2a\x58\xaa\xcd\x87\x74\x41\x8a\x36\x24\xd9\x84\x24\xb4\x2d\x75\x12\x0f\x53\x8b\x9a\xaf\x38\xd8\x59\xbe\x13\x41\x1b\x85\x48\xab\xbb\x2a\x26\xcd\x00\x67\x46\x74\x4a\x56\x49\xf1\x86\xe4\x2c\x4e\x67\xcf\x13\x32\x33\xb5\x9b\x5e\x0f\xde\x53\x48\x29\x8d\xb8\x86\x12\x51\xba\x84\x49\x82\xfa\x0a\x57\x5e\xc4\x22\xe8\xda\x54\x9a\xa3\x46\xf9\x06\x30\x14\x92\xd0\xe4\xf2\x55\xba\x62\x34\xba\xc8\x6e\x68\xca\x86\xce\x1a\x10\xa5\x2f\x79\x07\xdd\xc2\xec\x23\xcd\xa7\x49\xb6\x1e\x42\xe7\xd0\x2c\x99\xcc\x49\xce\x5e\xd1\x69\x71\xf6\x91\xe6\x43\xe8\x9b\xa5\x7c\x9b\x95\x28\x3d\x04\xc5\xe9\x47\x92\xc4\xd1\xb3\x9c\x0c\x11\xd2\x5b\x7a\x9a\xa5\xc5\xbc\xa6\xfc\x39\xce\x85\xbf\xc3\x8c\xe6\x2f\x05\x14\x29\x68\xe4\xa7\x81\x65\xde\xef\x4b\x92\x33\x1a\x71\x79\xf3\x86\xe4\x85\x67\xbc\xa8\x9f\xea\x05\xcd\xe3\x28\xa6\x0b\x5f\x59\x3e\x9d\x1c\xfe\x78\x78\xe8\x6d\x6f\x4d\xe9\x4d\x44\x36\xa7\x31\x5b\x90\x62\x32\x77\x60\x3e\xfb\x19\x6a\x46\x4d\x66\x5a\xd8\xdb\xfe\xa2\x7b\xb5\x9c\xc2\x91\xd0\x78\xec\x15\x26\x0b\xfd\x6c\x59\x23\xc3\xb0\x9e\x41\x10\x17\x50\x2c\x5b\xc8\x2d\x94\x37\x8c\x1a\xa2\x26\xdc\x79\xa9\xde\x3e\xff\x1d\x8e\xc0\x07\x26\x31\xdb\x9a\x84\xac\x51\x1d\x2a\xa6\xab\xd4\xee\x11\xa7\x83\x1f\x46\xa4\xda\xc9\x97\x4d\xab\xed\x08\xc3\x84\xa6\x70\x04\x85\x52\x61\x1e\x3f\x7e\x6c\x33\x2e\x88\x5d\xc1\x55\x59\xb4\xad\x21\xa1\xe9\x23\x88\x0f\x0e\x42\xda\x0b\x0a\xec\x82\x9f\xa6\xa6\xab\x54\xec\x69\xe2\x5c\x54\x88\x6d\xa2\x0d\xc5\x2e\x7d\xc6\xd4\x4a\xdc\xf9\x00\x53\x0e\x42\x50\x13\x0a\xb0\x4f\xcc\xfe\x17\x5f\x1d\x5e\xb6\x91\x65\x21\xde\xe1\x23\x3d\xe5\x9c\x02\x47\x1e\x2e\x74\x47\x53\x2c\x28\x5c\x4c\x70\x84\x73\x29\x86\x04\x71\x74\xad\xe5\xd6\xd6\x66\xd9\xd9\x73\xad\x9e\xc6\x4a\x9f\xf7\x0c\x94\x87\x8e\x98\xbd\xce\xd6\xb2\x67\x5e\xb4\x77\x62\xf6\x9a\xbc\xe6\x23\x10\x71\xe5\xf7\x22\x5e\xd0\x66\xab\x65\x1f\x16\xd4\x1f\x41\xbe\x92\x8f\xf0\x33\xf4\x43\x90\x77\x04\x28\xca\xe7\x1d\x30\x95\x60\xdc\x0f\x10\x65\xe4\x7e\xa0\xef\x85\x9c\xd9\x01\x6c\x49\xa3\x1d\xd0\xa5\x94\xdf\x8f\x04\x21\xb1\x77\xc0\x5a\xb2\x3b\x04\xdd\x94\xe0\x4a\xec\xc2\x76\x0b\x4d\xeb\xd3\xf7\xdf\xeb\xcc\xc7\x95\x33\x47\x83\x5a\x74\xaf\x5c\x25\xa0\x04\xd8\xc5\x31\x1a\x40\x2d\x97\x18\x7b\xa5\x38\x38\xd5\x57\xd0\x77\x6c\xe3\xbc\x55\x5f\xed\x3a\x9e\xbd\xc8\x56\xa2\x85\xf2\x54\x6d\x6b\x7d\xce\x18\x48\x75\x3c\x66\xcf\xf3\xec\x77\x2e\x20\xe5\x29\x79\xbb\x85\x3b\x56\x59\x73\xe1\x15\x5c\xba\xd0\xd0\x06\xc5\x6a\xd9\x77\x40\x04\x6d\x39\x87\xea\xd5\x6e\x47\xb2\xdd\x3a\x05\x50\x72\x93\xe0\x0e\xfb\x5c\xb0\x80\x23\x4d\x4f\x7c\x4d\x5e\x6b\xdb\x1f\x1f\x1c\x21\xe9\xee\xf8\x45\xa1\xd4\xdc\x3d\x52\x50\x4c\x48\x6b\xc7\xf1\xd8\xad\xe8\xb0\xff\x91\x73\x40\x75\x06\xc1\xb6\x77\xbd\x49\x56\xb3\x38\x65\x50\xcc\x49\x01\x24\x8a\x60\x29\xce\xf0\x31\x65\xc0\xe6\xd9\x2a\x89\x80\x24\x2c\xc3\xa2\x62\x4e\xe1\x86\x6e\x60\x4e\x73\x0a\x68\x49\x03\xd4\xb7\xa5\xfc\xec\xf5\x80\x65\xb0\xa6\x30\x21\xa9\x44\x93\x6c\xa4\x66\x9a\xad\x72\x46\x93\x8f\xca\xf2\x85\x83\x89\x96\xb3\x37\x55\x73\x47\xd0\x44\x4b\x5e\xd7\x53\x32\x1a\x6b\x42\x7a\xb5\x8c\x70\xa6\xde\xe4\xd9\x2c\xa7\x4c\x58\x2e\x71\x23\xb3\x66\x34\x5b\x6e\x9e\x66\xe9\x34\x9e\x35\x8b\xac\x0d\xd3\x3c\x5b\xd8\x33\x1a\xb7\x91\xd2\x36\xef\xc8\x23\xf3\x00\x72\x47\x3f\xc8\xf3\xba\x9c\x7f\x9e\x08\x83\xae\xe0\x74\x87\xbd\x8b\xcc\x81\xe1\xb4\xf9\xea\xfa\xf4\xa6\x50\xab\xfe\x76\x2a\xcc\xb7\xc0\x35\xf5\xe2\x9a\x96\xb8\xa6\xb7\xc0\x95\x78\x71\x25\x25\xae\xe4\x16\xb8\xa4\x5c\xf5\x21\x14\x45\x25\x56\xf1\xeb\x2d\x50\x17\xbf\xbb\x72\x88\xe3\x2d\x7e\x5f\x94\x48\x8b\xdf\x17\xb7\x99\x10\xf6\xee\xe2\x69\x60\xf2\xdf\x5d\x3c\xd5\xa6\xfc\xdd\xc5\xd3\x5b\xe0\xcd\xa6\x53\x46\xfd\x83\x20\x8a\x4a\xcc\xe2\xd7\x5b\xa0\x5e\xfa\x27\x1e\xf5\x7a\x5b\xb0\xe0\x3a\xb9\x0d\x1f\xe0\xf9\xd6\xcf\x0c\x58\x54\x71\x04\xfe\x1a\x3c\xf2\xdb\xeb\xbe\xd4\xbc\xa1\x6f\x23\xb7\xb5\xec\x40\xd5\xa0\xe6\xcd\x17\x3d\x1c\x39\xd5\x1c\xbb\x07\xa0\x9c\x50\x3c\x3d\xe2\xd5\x3c\x10\xce\xc0\x7c\x24\xee\xe2\xa8\xc6\x45\xa0\x81\x23\x21\x74\xec\xf2\x90\x19\xd2\x15\xe6\x45\x66\x4b\x73\x21\x61\xa0\x3c\x28\x49\x63\x80\x29\x16\x05\x50\x73\x82\x92\x51\xa7\x52\x97\x97\x78\x04\x91\x20\x15\x8d\xfc\x73\xf7\x8a\x6f\x34\x29\x5d\xa3\x9d\x4d\xa2\xe1\x1f\x95\xc1\xfc\x18\xca\x6f\x95\x6a\x0c\x43\x70\xf7\xcb\x3b\x88\x4f\x1d\x2f\x5c\x0e\x72\x5b\x33\x71\x54\x83\xc3\x77\xb2\x9c\x7e\xe4\x9d\x8f\xd3\x69\x9c\xc6\x05\x85\x24\xcb\x96\xfc\x70\x35\x21\x8c\xca\x3d\xe3\x4c\x2c\x23\xb1\x87\x33\x44\x2b\x58\x40\x47\x24\xc6\x8c\x75\x0d\x52\xdd\x3d\xe7\x48\xee\x3a\x36\xd5\x9e\xdd\xc9\x3d\xa0\x89\x8d\x4e\x27\x4a\x9c\x42\x1f\xed\x42\x65\x9f\xd8\x02\x07\x36\x39\xc7\x96\xd5\xdc\x6b\x85\xcd\xae\x3f\xe8\x36\x58\xc9\x42\x5c\x43\xe6\x25\xd5\x2d\x08\x07\x74\xb7\x37\xa5\xec\x94\x28\x03\x36\xad\x35\xc9\xd3\xe6\x82\xcd\xec\x23\xa4\x67\x54\xd8\x6a\xb9\xe4\xbd\x3d\xa1\xcb\x9c\x4e\x08\xaf\xfe\x9e\xe4\x69\x9c\xce\xb4\x51\xb7\x75\x5b\x69\xfc\x9e\x64\x29\xcb\x3c\x97\x9d\x16\xb4\x04\xeb\x72\xaa\x2a\xca\xad\x89\xd4\x81\x9a\x0d\x8d\x1a\xec\x4c\x9c\xce\x86\xd0\x80\x03\xe0\x9d\xda\x35\x21\x91\xac\x4c\xf9\x10\xf8\x2c\xce\xd3\x38\x67\xb8\x52\x4a\x6e\xb1\x27\x4d\xaa\x8f\xc6\x65\xa9\xa3\x9d\x8b\x01\x8c\x2a\x52\x5f\x90\x34\x4a\x68\x1e\xd2\x49\xab\x41\x77\xeb\xc8\xab\x52\xb3\x7b\xe0\x08\x28\xd4\x7b\x15\xf5\x3e\xfc\xbc\x7b\x24\x9f\xf9\x2c\xea\xea\x0f\xc9\x67\xfe\x82\xd8\xff\xf9\x86\x6e\x5c\xb9\xe9\xda\xe4\xe5\x1d\xef\xae\xbd\x40\x52\x00\x47\xd0\x68\xb8\x68\x55\x1f\x25\x83\x95\x58\xd1\x52\xae\x5d\xb8\x87\x30\x2b\xec\x07\x47\xd0\xb8\x4c\x47\x9c\x63\x62\x38\x80\xc6\x18\x02\x8d\x95\x7d\xe1\xaa\x76\x9c\x6a\x2d\xf6\xc7\x75\x8d\x80\x6b\x38\xd7\xab\xb6\xf9\xa8\x05\x37\x25\x0f\xb5\xbc\xf9\x03\x68\x08\x26\xd7\x31\x8d\x6e\xe8\x66\xcc\x8b\xda\x75\x5d\x00\x87\x53\xf6\x2b\x11\x33\x41\xf2\x59\x97\x25\xf1\x84\x36\xfb\x6d\xe8\x1c\xb6\x1e\x71\xc1\xfc\x96\x2e\xb2\x8f\x14\x8a\x9c\xc4\x09\x5e\xad\x67\x8b\x05\xc1\x7b\x60\xb6\x24\x13\xea\x45\x19\x3c\x48\x3a\xed\x95\xd3\xea\xef\x93\x9f\x62\xce\xd8\xe2\x6a\x87\xe4\xf6\x3a\xf1\xd7\x42\x69\xe2\xc5\xb5\x60\x33\x38\x08\xd2\xd9\xb8\x4c\x9f\x28\x22\x71\x4e\x82\x90\x8e\xb1\x94\x8f\xa3\xbc\x1a\xce\x67\xac\xd5\xfd\x90\xc5\x69\xb3\xd1\x68\xd5\xb7\x56\xd7\x04\xdf\x38\x9f\xe5\x79\x96\x37\x5b\x5d\x56\x90\xc9\x8d\x03\xe9\x19\x0b\x5d\xc6\x79\xae\x60\xbd\x17\xae\xd3\x54\xfa\x6d\x08\x85\xc4\xf6\xdb\xc0\x7a\x28\x4f\x1d\x3b\xb3\x26\xd0\xb8\xe8\xf9\xe3\xb3\x7d\x3a\x2c\x65\xf2\x79\xbc\x58\x26\xb4\x99\x92\x05\x15\xe2\xce\xda\xa2\x6e\x2b\x54\xc3\x02\xb5\x6c\x21\xa8\x5d\xeb\x54\x8f\x38\xbc\xb3\xe4\xcb\x8d\xd4\x1c\x3d\xb7\xa2\xc7\x1a\xa0\x0d\xd1\x1e\x5b\xad\x3e\x49\xc1\x31\x50\x46\x55\x5b\x01\x79\x2e\x7f\xdc\xf3\x2a\x58\x89\x57\x55\xcd\xb3\x81\xbb\xd7\xc5\x0a\xb8\xf5\x15\xee\x8c\x15\xae\xdd\xf7\xc6\x5c\x57\x73\x75\x67\xce\x72\xc2\x92\xe0\x5e\x13\x73\x1d\xd4\xa9\x00\xae\xb8\x16\x40\xa1\xbb\x59\x79\x64\x11\x40\x5e\x31\x85\xd7\x09\xd5\xc8\xf3\x0a\xe1\x53\xc8\x3c\x16\x5b\x18\xe2\xf5\x08\xae\x3a\xb9\x89\x95\x1b\x57\xb8\x97\xd5\xa0\x08\x1e\x64\x74\x3c\xdd\x2b\xd1\xa3\xb2\x6b\x8f\x74\x5d\xfc\x15\x4d\x63\xae\x8e\x66\x79\x14\xa7\x24\x41\x13\x2d\x17\xfd\x64\x32\xa1\xcb\x82\xc1\x87\x15\x2b\x80\x80\x70\x74\xc0\xdd\x32\x8a\x62\x9c\xa6\x22\xd3\xf1\x48\x80\x03\x68\x2e\x33\xc6\xe2\xeb\x64\xd3\x02\x56\xac\xa6\x5c\x63\x5c\x70\x84\xfc\x78\x07\x57\x11\xd9\x9c\x4d\xd1\x4e\x7e\x26\x1a\xe4\x07\x63\xda\xd5\x31\x5d\x9c\x9d\x9c\x0d\xd5\x56\xf4\x3f\x32\x0d\xec\x7f\xf0\x05\x23\xfc\xb3\xe2\x14\x52\xfa\xa9\x80\x05\xf9\x90\xe5\x90\xd3\x84\x12\x1d\x8d\x3c\xd8\x78\x1b\x53\x3d\x16\x87\x9e\xb7\x74\xf6\xec\xd3\xd2\x5e\x2b\x35\xd5\xbb\x2c\x5b\xe5\x13\xca\xf5\x77\x01\x96\xb9\x85\x3e\xc1\xdf\xd8\xfa\xe4\x7d\xef\x32\xfa\x63\xd0\x3e\xfc\xdc\x93\x35\x77\xad\x8d\x05\xcd\x67\x54\x1c\x21\x59\x73\x49\x72\x9a\x16\x4f\x25\x53\x4f\xe6\x71\x12\x3d\xf5\xae\x1b\xe1\x6e\x21\x15\xdc\x3f\x3e\xb7\x41\xaf\x69\x5d\xce\x98\xac\x86\x0b\x0c\x17\x06\x5f\x63\xfe\x16\xc0\xb3\xd0\x2a\x48\x61\xff\xf3\x2e\x13\xb1\x9c\xe4\x1d\xa1\x4e\x92\x38\xbf\xb7\x50\x26\xa9\x72\x0d\xa5\x2c\x0e\x5f\x48\xb1\xd2\x00\xf0\xc7\x67\xbf\xb2\x21\xc7\xa2\x04\x35\x87\x44\x36\xb0\x6f\x55\x97\xb4\xe0\x72\xe7\x5d\x76\xc0\xeb\x0e\x0f\x76\x87\x9c\xca\xb7\x94\x2c\x11\x4d\x68\x41\x2b\x94\x5f\x22\x55\x0c\xa6\x30\x58\xc9\xc3\x15\xee\x71\xa8\x62\x13\x93\x81\x91\x4f\x7c\x57\x2a\x77\x6a\x39\xcb\x57\xa3\x8e\xab\x0c\x60\xdf\x90\xf7\x7a\xb0\x20\x37\x14\xd8\x2a\xa7\x30\x99\x93\x74\x46\x19\x14\x99\x6e\xb8\x8f\xb2\xb4\x51\xc0\x22\x8b\xe2\xe9\x46\x8e\x80\x14\xae\x0e\x36\x7d\xf2\xb4\x15\x58\x7e\x0e\x9e\xfd\xf6\x77\x59\x42\xcf\x18\xea\xd9\x33\x91\xdb\x84\xf0\x0f\xb0\x18\x8a\x30\x6d\xc3\x0d\x28\x33\xe8\x39\x48\x37\x4c\xaa\x21\xda\x3d\x15\xff\xaa\x23\xe5\xbf\x97\x17\xff\x5d\x51\x07\x7c\x4c\x29\x01\xab\xe3\xb6\xc7\x01\x51\x5c\x20\xf8\x86\x14\xcf\xba\x1e\x57\xc6\xf8\x96\xae\x8c\x7e\x4d\x00\x74\x97\xb2\x78\xe7\xa9\xc3\xab\x58\x97\xb3\x05\xce\xbd\xbf\xd0\x9e\xd1\xd7\xe3\x29\x49\x68\x1a\x11\xae\xe6\x69\x1e\x16\x64\x41\x4f\xc8\x66\x08\x8d\xd1\x45\x16\x91\x0d\x90\x62\x0c\xaf\x2e\x1a\xd5\x48\xf0\xbd\xaf\x84\x58\x64\x79\x9e\xad\xfd\x40\xef\x29\xbd\x19\x42\x23\x8a\xa2\x08\x46\x0e\x44\x42\x98\x42\xf3\x2b\x65\x05\xcd\xbd\x8d\x71\x28\x89\x67\xf4\x8a\xb0\x62\x0c\x01\x74\x9c\xee\x67\x09\xa3\x43\x68\xbc\x92\x9f\x9d\x43\xc1\x44\x76\x98\x1f\xbe\xdb\xb0\xc8\x16\x6d\x48\xb3\xb5\xbd\x61\x65\xab\x02\x7d\x2c\x95\x02\x23\x2b\x89\x83\x71\xb9\xf3\x96\x9f\x1b\xaa\xe5\x86\xc6\x13\xe5\x45\x66\xa9\xaf\x09\xac\x2d\x38\x96\xf8\x85\xb2\x5a\xd1\x30\x94\xdf\xfd\xab\xec\x77\x9a\x67\xcf\xe3\x24\x69\x0a\x55\xa7\x0d\x05\xc9\x67\xb4\x78\x85\xb6\x0f\x74\x46\x9b\xd0\xf3\x78\xe6\x58\x9e\xc8\xb5\xf4\x32\x45\xfb\x07\x1c\xc0\x29\x29\xe6\x5d\x72\xcd\x24\x22\x6b\xff\xe5\xcd\xb0\x0b\x6c\x89\xf7\x5f\x6b\x03\x3a\x15\x2e\x69\x72\x31\xab\xb2\x78\x96\xe2\x79\x01\x5b\x7b\x6c\x38\x04\xfb\x0f\x05\x58\xe3\x18\x9a\x25\xf1\x70\x0c\x8d\x83\x06\x0c\x81\x9f\x5e\x87\xd0\xe8\x38\x87\x58\xa4\x7e\x99\xad\x9b\x83\x7e\x5b\xfc\xb2\x20\x9f\x9a\xfd\xb6\x4e\x78\xab\x55\x1e\x08\xf8\xf9\x75\x75\xcd\x8a\xbc\x39\xb0\x31\x95\x9d\x09\x28\x3d\x68\xb6\x43\x27\x85\x22\x4e\x67\xe2\xfa\x1d\x8e\xa0\xd7\xbc\x1c\x8d\xfe\x79\x39\x1a\xdf\xbd\x1c\xb7\xb6\xcd\xcb\xcb\xd6\x71\x73\xf4\x62\x3e\x5e\x2c\x9a\x8c\xb5\x8e\xb7\xa7\xd9\xf6\xf4\xf4\x98\xff\xb7\x3d\xc9\xb6\x27\x27\xf8\xd7\x31\xff\x6f\x1b\x45\xd1\x71\x74\xbc\x8d\xb2\xe3\xed\x7a\x94\x6d\xd7\xe3\xe3\xed\xfb\x51\xb6\x7d\x3f\x3e\xde\xfe\xcf\xec\x78\xfb\xfa\x8f\x41\xfb\x87\xcf\xdb\x5f\xf1\xcf\xb6\xfa\x7b\xfb\xeb\xaf\xdb\xcd\x1f\x87\xed\xfb\x9f\xb7\x9b\xec\x78\x3b\x9b\x35\x67\xb3\xd9\x71\xeb\x78\xfb\xcb\x2f\xcd\x5f\x7e\xf9\x85\xff\x44\xb7\xcf\xb6\x64\xfb\x64\x3b\x9f\x1f\x6f\x5f\xbc\x38\xde\xde\xdc\x1c\x6f\x17\x8b\xe3\x2d\x63\xc7\xdb\xf3\x3f\x06\xed\x9f\x3e\x6f\x3f\x6d\xff\x9f\xed\xef\xbf\x1f\x6f\x7f\xfb\xed\x78\xdb\x6d\xf5\x34\x83\x1c\xde\xda\x3c\xdf\xaf\xa7\xaf\x2e\xce\xb7\xaf\x2e\xb6\xaf\x5e\x1d\xf3\xff\xb6\xc9\x1f\x83\xf6\xfd\xcf\x06\x36\x31\x64\x8a\xe9\xc5\xd1\xdc\x2e\xc5\x26\x4c\x90\x47\xe5\x1d\x47\xc1\x0b\x87\xfc\x97\xc6\x69\x43\x7d\x5c\x92\x28\xa2\x11\xff\x3a\x6a\x9c\x9e\x36\xda\x70\x38\x56\x45\x52\x01\x1e\x72\xf8\xac\xac\xa0\xe2\x27\x86\x60\x86\x9f\xe0\xd2\x5d\x70\xad\xba\xd9\x82\x03\x18\x48\xe9\x59\x02\x91\x48\x7a\xa6\x20\x8d\x4d\x24\xa6\x2d\x9b\x6f\xab\xb6\xda\xe0\x8b\xe0\x40\x86\x59\xa5\x13\x27\x7a\x03\x4c\x13\xe3\xa4\x8c\xf2\xe0\x07\x54\x26\xfd\x69\xed\x0b\x30\x81\x28\x6c\x0e\xd6\x56\x15\x1e\xd7\x14\xd6\x71\xd3\xde\xd2\x43\xc6\x08\xec\x9b\xe7\xe2\xcd\x99\xa0\x11\x42\x8e\x25\x39\x21\x74\x62\x8c\xf6\xc2\x27\x40\x47\xfd\xf1\x78\xdf\x2e\x96\xd2\x8f\x43\x07\x4c\x46\x6a\x9a\x46\x83\x71\xf9\xe3\xa1\xa3\xe0\x84\xc8\x97\x53\xbb\x17\xfd\x12\x76\x6f\xea\x91\xe9\xc4\xe5\xe8\x09\x29\x48\xb3\xd5\x95\x18\xfc\x86\xc2\xba\x3e\xfa\xcf\xeb\x9c\x3c\xa7\x64\x57\xcf\xed\x1d\x26\xc7\x33\xaf\x2d\x08\x5c\x03\x0f\x9e\x9b\xf8\xc7\x2e\xba\x85\x35\x7b\x97\xa3\xd1\x25\xbb\x3c\x1f\xf7\x1c\x6d\x46\x0f\x87\xe8\xe6\x74\x99\x90\x09\x6d\xf6\xfe\x79\x39\xda\x5e\x8e\xbf\xed\xcd\xda\x5c\xce\xd7\x78\x98\x5a\xf5\x2e\x2f\x8d\x2a\xae\xc3\xff\x8d\xa4\xbe\xdc\x72\xc5\xec\x39\x5b\x22\x86\x3f\x1d\xc9\xb9\x95\xbd\xb0\x45\xbd\x35\xd4\x96\x1e\x28\xaf\x1c\xbe\x31\x0f\x25\x78\x3b\xd1\x06\xe5\xa3\x25\x1a\xaa\xae\x27\x84\xb7\x68\xe8\xaa\x02\x2f\x5a\x7c\xdc\x86\x58\x46\xf1\xd8\x7b\x3b\xa0\x0a\xcb\xee\x84\x2a\xef\xe9\x7f\xa5\xe1\x0b\xf0\x83\x82\xa8\x39\x39\xd8\xf3\x58\x2d\x92\x85\xe9\xa2\x03\xb6\xc2\xd5\x68\x78\x3d\x70\xf5\x5f\x3d\x0e\xb8\x75\xb7\x3f\x12\xf5\xc1\x91\xae\x8a\x95\x7d\xf0\x2e\xa7\xe3\x72\x14\x34\x15\x4d\xb2\x92\xb7\xc2\xb0\xac\xb0\x87\xc9\x5b\x57\xf2\xc0\x51\xce\x7b\x3d\xd9\x12\x44\xa4\xa0\xb0\x42\x6b\x58\x4a\x8a\xf8\x23\x15\x5f\x7c\x37\xfe\xa2\x86\xbc\x13\xae\x68\xb5\xd6\xec\x9d\x45\xf8\x2a\xbe\xf4\xa1\x33\xa4\x94\x74\xd5\xc4\x9b\xf9\x96\xd7\xad\x43\xd2\xca\xcf\x96\x4b\x92\xca\xad\xb3\xa9\x22\x23\x4c\x74\xad\x47\x21\x25\x61\x24\x7e\x1f\x5b\x9e\x95\x21\xa8\xed\xb6\x66\xad\xbb\x37\xab\x01\x34\xcd\x45\x40\x8e\x78\xbb\x22\x9d\x60\x6c\xf7\x32\x38\x82\x1f\x74\x29\x50\xc9\x52\x94\x59\xaf\xb2\x74\xc6\x47\x4f\x53\x29\x3c\x02\x55\xa3\x55\x34\xd3\x4d\x8c\x7a\xaa\xc6\x76\x2b\x24\xa2\x77\x26\xbc\x5a\x5c\x97\x1f\x9e\x5e\xa6\x11\xfd\x04\x86\x3a\xbe\x9e\xc7\x09\xe5\xab\xe8\xb1\x70\x23\x0d\xd4\x2e\x28\x53\x23\xe0\x70\x4c\x39\xf3\x52\x8a\x2a\x29\xed\x2c\x10\x2f\x6a\xdf\xa9\x3a\x38\x62\x06\xac\x25\x76\x6e\xd5\x6d\xfe\x27\x86\xce\x11\x0c\xea\x7c\x28\x45\x87\x42\x47\x66\x93\x40\xe3\xe0\xfc\xea\xe2\x7c\x08\x8d\xf9\x70\xb1\x18\x32\x06\x4f\x34\x51\xf6\xea\x42\x16\x98\x5f\x87\xd0\x38\x3d\xed\x9d\x9c\xf4\xb8\x9a\xaf\x17\x88\x92\xd3\x53\x38\x69\x83\x53\x66\x17\x82\x8b\x58\x00\xf1\x73\x72\x1b\xc2\xa0\xce\xe9\xd8\x62\xbb\x1b\xba\x71\xf4\x5b\xd5\x6b\x71\x04\x36\x2b\xe0\xf9\xb8\xed\xe1\x92\x77\xcb\x25\x9e\x3f\x43\x95\xba\x45\x86\x20\x4f\x09\xa3\xcd\xd6\xd8\x72\xd4\x94\x6d\x6e\xb7\x70\x47\x43\x17\x58\x40\xfa\xe4\x59\xd3\x1b\x24\xb9\x64\x62\x44\x6c\x60\x0d\x29\x07\x36\xd0\x52\x73\xdc\x28\xb2\x9b\x90\xfd\x27\xa4\xbd\x89\xa3\x00\x9f\x29\x27\x98\xd3\x03\xb5\x1b\xe6\xe4\x64\x37\x0c\xe7\x8e\x86\xab\x34\xee\x08\x45\xc9\x6e\xe4\xbd\xfd\x60\xaf\xdb\xf0\xaa\x9a\xb5\x33\x5a\x23\xa8\xae\xac\x5d\xe9\x1d\x9c\xb5\xd0\x02\x7d\x59\x6d\x5a\x5c\xa1\x90\xbf\xe2\xe6\xd9\x70\xee\x31\xf5\x0d\xce\xbd\xc3\x14\x6d\x6b\x40\xa1\x36\xe5\x0d\x0d\x6f\xef\xbb\x48\x5b\x88\xb2\xf8\xc4\x7b\x95\xc3\x8f\xd8\xea\xfe\xc5\x26\x4c\x9d\x0f\xa4\x8d\x26\x44\x9a\x04\x2b\x85\x2f\xb6\x2e\x2d\x30\xbe\x2b\x73\xa4\xe6\x2d\x4d\x50\x9f\x90\x57\xf5\x5a\x90\xe9\xaa\x58\xe5\x74\x08\x8d\x38\x85\xef\x98\xd6\x8d\x25\x61\xc5\x10\x1a\xdf\x31\x20\xb3\x4c\xb7\xb8\x0d\xa1\x41\x60\x4a\xd7\xc0\xe8\x24\x4b\x23\xbd\x0e\xe3\x85\xdf\x45\x9e\x92\x05\xd6\x5a\xc4\xe9\xaa\xa0\xfa\xe7\x85\xa8\x20\x0a\xf4\x0a\x73\x5e\x21\x85\x79\xb6\xca\xf5\xaf\x73\x01\xcf\x3f\xeb\xd0\x11\xa2\x8f\xc8\x46\xff\x16\x09\xd8\x88\x6c\x74\xd0\x35\x82\xae\x29\xbd\xd1\x3f\xae\x05\x2c\xff\xac\x03\x9f\x0a\xb2\xf9\x2c\xea\x5f\x4f\x25\xd5\xfc\xbb\x0e\xbe\x41\xf0\x0d\x25\x3a\xcd\x9b\x8d\x80\xe6\x9f\x59\x48\x0a\xe7\xda\xfc\x94\xd6\x3e\x99\x77\xe2\x7c\x35\x9d\xc6\x9f\x44\xac\x69\x3a\x6b\xa3\x4e\xcb\x27\x6d\x87\x05\x53\x47\x39\x12\x75\xf7\x31\x55\x1a\x6b\x54\x99\x2d\xf7\x26\xc9\xa8\xad\x8c\x9b\xd5\x69\xee\xbb\xa8\x17\xfb\x79\xb5\x1c\x09\xce\x77\x02\x59\x33\x8a\xa7\xd3\x36\x28\x13\x6a\xed\xa6\x64\x74\x96\xd7\x83\xc7\xd0\x87\x63\x68\x08\xfe\x46\xf3\x22\xc7\x5c\x6f\xad\x55\x3a\xf4\xb1\x44\x5f\x9a\x6f\x87\xb6\xc6\xd3\xfb\x8e\xf1\x9e\xc8\x72\x67\xd5\x91\x24\x26\x8c\xfa\x7d\x54\x48\x14\xbd\x4b\xe3\xe2\x09\x07\x69\xae\xd2\xb8\x68\x03\x9b\x67\x79\x31\x27\x69\x64\xf7\x32\xc9\xd6\x62\x87\x84\x23\xe0\xa0\xdd\x22\x7b\xa5\x3e\xe9\xda\xb9\x6c\x6f\x54\xc2\xf3\xfd\xcd\xf9\x08\x07\xd0\x60\x0d\xbd\xa8\x6c\x78\x2c\x1b\xf0\xcf\x49\xca\x3b\x9f\xc4\xbf\x53\x4e\xb8\x20\x9a\xf9\xe4\x93\xb0\x75\x61\xb1\x61\xe8\xb2\x78\x4a\xb5\x8e\x80\xa8\xda\x1b\x5f\xcc\x4e\x8e\x2d\x96\xb2\xc2\x9a\x82\xa4\x8a\xeb\x20\x41\x30\x6a\xd0\x32\xbe\xc3\x1a\xe1\x12\x5e\x04\x40\x5b\xa6\x4b\xfe\xa7\x82\x78\x93\x67\x4b\xdf\xcd\xb5\x69\x10\x50\xb7\x94\x81\x46\xc1\xbd\x16\xd2\x20\x6b\xae\xae\x4d\x3a\xe0\xc8\x9e\x15\xac\xe8\x77\x20\x31\xab\x86\xb6\x7b\x6b\x28\x46\x66\x2d\xce\x21\x1a\xa1\xb7\xbf\xca\xb5\xb9\xc5\x6a\xce\x59\x43\xcb\x3c\xce\xf2\x58\xc6\x0a\x05\x97\xd1\x1b\x01\xb5\x91\x2b\x49\x56\x32\x74\xd8\x0a\x11\xf2\x97\x70\x6e\x11\x60\xe1\xd0\x6a\x59\xe7\x77\x1a\x69\x3c\x7f\x66\xde\xf2\x71\x2a\x25\xb3\xbb\x41\xf5\x96\x43\xc3\x8a\xb3\x84\x0f\x89\x87\x1f\x14\x58\x1b\x56\x5e\x4e\x10\xab\x04\x6f\x0a\xff\xc0\x5f\x86\xb0\xaa\xba\x3e\x34\x3a\x3c\x86\xcf\x7b\x5c\xf7\x0a\x8c\x2c\xcb\x0b\x4d\xa7\xb5\xf3\x51\x68\x73\x47\xba\xaa\x35\xe8\xc0\x75\xd7\x1c\x4e\x44\xdd\x72\xe4\x2c\xb6\x11\x0a\x46\x7e\x45\xc9\xf2\x57\x4a\xf2\x26\xdf\x25\x7d\x9e\x65\xfc\x3b\x7c\x07\xf7\xcb\x28\x48\x90\x5f\x06\xfd\x3e\x3a\x96\xf5\xf1\xac\xac\xc0\xfa\x7d\x3d\x3d\x8d\xdd\x1e\xb9\x66\xcf\x93\x2c\xcb\x3d\xaa\x16\x2e\x17\x71\x9b\xf5\xb3\x1b\xa2\xd2\xeb\x41\xa7\x0f\x9d\xc7\xd0\xf7\x8d\x0a\x5e\x4d\x4d\x68\x5c\xa9\x70\xdb\xed\xce\x0c\x39\x7a\xdd\xa9\x4e\xd4\x2e\xd3\x6d\x91\xbd\x4c\x8b\xd2\x1d\xf8\x79\x96\x3f\xcd\x68\x3e\x41\xd7\x39\x93\x45\x27\xfc\x3b\x8d\xca\x1b\xc1\x03\x4f\x1d\x93\x79\x31\x02\x50\x1c\xa3\x8d\x81\x31\x31\xdd\x51\x33\x11\xb3\xe7\x18\x9d\x61\x96\x3b\xac\xab\xb0\x96\xa3\x6f\x82\xd7\x1d\xcf\xb1\x6a\xd8\x02\xfc\x0b\x2d\xce\x69\x21\x45\xc0\x0d\xa5\x4b\xdb\x6f\xdd\xb1\x49\x8a\x18\x47\xcf\x32\x14\x44\xd6\x78\xc7\x30\x5a\x7c\x3b\x90\x36\x7a\xd1\xa0\xc0\xe5\x8a\xc2\x40\x3c\x88\x46\xa1\x5b\x47\xd3\xf4\x6f\x17\x3c\x3b\x2b\xb1\x73\xa2\xc2\x4b\x3e\x28\xf1\x84\xc5\x13\x2b\xbb\x03\xb7\xc8\x34\x3b\xa2\xb5\x9b\xf3\xb2\xab\x68\xd4\x98\xd1\xa2\x01\x07\x68\xee\x55\x41\x73\xc7\xd0\x78\x77\xf1\x54\xdd\xed\x1e\x20\xf6\x71\xd3\x56\x12\x5f\x93\xd7\x41\xaf\xcc\x6f\x07\x15\x5d\x6a\xa4\xed\x84\x05\x3a\x6d\x9c\x1d\x65\x18\xbf\x00\xde\xcb\x3f\x88\x63\x17\x0a\xcb\xf3\x55\x92\x70\x39\xe4\x44\x97\x60\xdd\x4a\x4c\xf1\x46\xb9\xac\x09\xe4\x07\xe0\xc5\xea\xc2\x91\xe3\x1d\x84\x80\x22\x71\x0a\xe5\x30\x87\x3f\x19\x10\xfe\xb0\x0b\xb1\x82\xc4\xd2\x0f\xf1\x9d\x9a\x10\xb6\xef\x84\x78\xb5\x01\xc4\xee\xbf\x7a\xd2\x7a\xe7\x07\xe0\x47\xae\x97\x29\x1e\x7e\x05\x95\x6d\xbd\x8e\x6b\x4f\xb7\xd9\x35\xc4\xeb\xb7\xee\x99\x6f\x88\xec\xfd\x4f\x8b\xb4\x3b\x3b\x7d\xf6\xfa\xe2\xdc\xe6\x42\xd4\x61\x7f\x91\xf2\xc5\xd0\x7b\xd5\xe6\xef\xd5\x8f\xcd\x7b\x60\xed\x94\x81\x57\xb7\x42\xf7\x0d\xd9\xe4\x35\x90\xda\x74\x2c\x95\x9c\x70\xd6\x0e\x52\xad\xa4\x22\x0b\xac\x1d\x57\x63\x0f\x44\xbe\x38\x3d\xd5\xd5\x6b\xbb\xbf\x60\x69\x70\xbf\x63\x18\x7b\x50\xab\xf2\xa5\xea\xa8\xbf\xfe\xd1\x10\xef\x0a\x04\xc2\x91\xd4\xe0\x47\xf1\xb8\x2b\x78\x03\xdb\xf6\x16\x85\x19\xc6\xc7\x98\x7b\x32\xc1\x2d\x19\x21\xc0\x0c\xfb\x30\x74\x1d\x7f\x60\x90\x3e\x29\x26\xf3\x81\xb0\x44\xf5\xda\x9c\xf1\xc5\x9f\x3e\x74\xa0\x92\x41\x08\x75\x28\xa0\x0c\xb8\x3e\xc2\x59\x80\xf7\xa4\x61\xeb\xde\xe7\x0a\xb2\x2f\x21\x2d\xd0\xfb\x12\xf4\x7e\x05\xda\x2f\x41\x2d\xd8\x07\x1c\x76\x74\xd0\x19\x1f\x5f\x46\x7f\x3c\x90\x15\x3a\x3f\xe1\x1f\x59\xc1\xae\x32\x28\xb2\x92\xea\x63\xa7\x7b\x36\xd9\x45\x76\x5f\x01\x5b\x15\xaa\x16\xcc\x2a\x3f\x14\xd9\x03\xbd\x8a\x51\x6d\x07\x61\xf7\x4a\xf3\x9f\x3e\x4e\x8a\x34\x17\xfe\x7e\x09\x7f\xdf\x07\xef\x56\x30\xc6\x6b\xd0\xde\x6f\xc4\xde\xa5\x2c\x9e\xa5\xb8\x46\x7b\x97\xd1\x81\xdd\x50\x9c\x4e\x4d\xf8\xf3\x12\x5a\xb6\x54\x55\xe9\xc4\xe9\xd4\x57\xe5\x4c\x85\xba\xf7\x7e\xdb\xf2\x4a\x7c\xd0\x86\xc7\xc8\x58\xb3\x18\x2b\x1f\xf4\xfb\x43\xce\x04\xe2\x9f\x03\xc1\x11\xf8\x77\x96\xc3\x6f\x16\x01\xf3\x2c\x2f\x7c\x28\x9b\xc7\x43\x81\xb5\x75\xac\xe1\xe5\x78\x6e\x85\x9f\xeb\x66\xac\x20\x8b\xa5\xde\xc7\xe6\x65\x57\xce\x5c\x4b\x4e\xf7\xe0\xf0\xde\xfd\x1f\x1e\x3c\xfc\xf1\xa7\xea\xa7\xee\xe0\xf0\x5e\x89\xab\xd7\x03\x92\x6e\x60\x9d\xe5\x11\x34\xb3\x1c\x8a\x75\xd6\xc2\xac\x69\x64\x52\xd0\x9c\xf1\x86\x85\xaa\xcf\x20\x4e\x27\xc9\x2a\x8a\xd3\x19\x07\xea\x15\xf3\x9c\x52\x51\x0f\xb7\x4c\x11\x31\x48\xae\xe3\x89\x11\xb5\x20\x2a\x51\x06\x6c\x92\x15\x45\xcc\xe6\x30\x23\x34\x89\x27\x1c\x87\xa8\x4d\xd2\x08\xe6\x9b\xe5\x9c\xa6\x98\x4a\x44\xd8\x2b\xcd\xbe\xbe\xe7\x70\xbc\x9b\xfd\xce\x4f\xe3\x3f\xfa\xed\xc3\x1f\x1e\x7c\x1e\x35\x48\xe7\xf7\xcb\x55\xbf\xff\xa4\xdf\xb9\x5c\xf5\x7f\x78\xfe\xfc\x72\xd5\x7f\xd8\xe7\xbf\x9c\x3c\xe4\xbf\x3c\xff\x09\x7f\x79\x7e\xf2\x94\xff\x72\xf2\x1c\x7f\x79\xde\x7f\xc8\xff\x1e\x88\x5f\x9e\x3d\x1f\xff\x31\x40\x6c\xdb\xd1\xe5\xaa\xff\x00\x2b\xf4\x1f\x3c\x7f\x7e\xd9\x53\x05\xcd\x4b\x76\xf7\xd8\x2c\x54\x45\x2d\x61\x21\xd7\x1c\x30\x72\x3a\xa3\x9f\xa8\xf2\x06\x96\xbf\x85\x0c\x03\x6f\x79\xb1\xe1\xcc\x85\x15\x54\xba\x3e\x2c\x36\xb5\x5c\x44\x57\xf9\x3c\x69\x42\x1a\xcb\x6c\x9d\x17\x3f\x5a\x6a\xac\x96\xb7\x8a\x9d\xcb\xb4\x80\xd5\x55\xb8\xdf\xe8\x52\x9a\x20\x45\x05\xae\xbd\x6a\x24\xc2\xb1\xf1\xdb\x50\x34\x6b\x2b\x7c\xf5\xf9\xe1\x28\xd6\x7d\x9e\xe5\xc6\x70\xf8\xfd\xb6\x75\xa7\x77\x39\x24\x6d\xe1\x67\x14\xd2\x53\xb4\x70\x96\x55\x4a\xd9\x84\x2c\xd5\x3d\xa2\xac\x56\x77\xa8\x33\x47\xbd\x4c\x3a\xa0\x52\x2a\xaa\xdf\xe5\x2d\xbc\xed\x31\xf1\x34\x8b\xa8\x88\xf0\x99\x17\xc5\x72\xd8\xeb\x61\xcc\xa2\x4a\xc7\xd5\x9d\x64\x8b\xde\x7f\xad\x28\xc3\xeb\xff\xde\xbd\x1f\x1e\x0c\xee\xff\x74\xaf\x17\xb3\x4e\x31\xa7\x39\xed\x90\x0e\xb6\xbe\xec\x08\xa2\x3b\x6a\xd8\x3a\x71\xda\xf9\x40\x3e\x12\x36\xc9\xe3\xa5\xe5\x71\x61\xf5\xd0\x67\x01\x45\xa4\xcf\x10\xca\xd4\xaa\x99\x33\xf9\xd5\xfd\xcd\xe5\x65\x03\x3d\x9c\xc2\x20\xbd\xcb\xcb\xe6\xe5\xa8\xb5\xe5\xff\x8c\x5b\xdb\xcb\x51\x73\xf4\xcf\xcb\xf1\xe5\x68\x7c\xb7\x75\x39\xe6\x5f\xd1\xb9\x53\xe3\x40\xbf\xda\xce\xd7\x3b\x8d\xfc\x2a\xfb\x72\x10\xf8\x7e\x18\xf8\x7e\x2f\xf0\xfd\xbe\xab\xdd\xd7\x5f\x2f\x2e\x07\xb0\xdd\xc2\xf2\x10\xff\xbe\x87\x7f\xdf\xf7\xd8\x15\x77\x66\x23\xd0\xc7\xde\x37\x37\xac\x1a\xce\x51\xe7\xb2\x77\x79\xf9\xcf\x6f\xef\x1e\x1c\x77\x9b\xad\xed\xe8\x72\xfc\xc7\xe7\x31\xfa\x99\x5d\x5e\x7e\xfb\x7d\xc3\xb5\xe7\x17\xca\x3f\xd6\x2b\x6e\x70\x9d\x99\xeb\x2b\xe0\x2a\x6a\x79\x94\xed\xe3\x39\x8a\x18\x6b\xdd\x46\x25\x04\xc8\x85\x14\x72\x76\x2c\x33\x0f\x97\xc4\xed\xf4\x3f\x95\x49\x4f\xd1\xd1\x29\xec\x88\x56\x7a\xa1\x96\x27\x53\xe1\xbb\xb2\x87\x13\xa6\xad\xd8\x63\x0f\xea\x54\x7a\x31\x11\xa2\xa7\xa3\x78\x1c\xf2\x4f\x75\x0c\x7e\x11\xa6\xbf\xdb\x6f\xa2\xbc\x33\xea\x1f\x14\x25\xa5\x94\x98\x74\xb3\x4d\xa0\x08\x5b\x97\x81\x90\xfc\xe7\xed\xd6\x89\x11\x53\x64\x28\xe4\x25\xb0\xdd\x80\x6b\x61\xf5\x74\x95\xeb\x2f\x17\x19\x86\x8c\x3f\xcf\xb3\x85\xd1\x0f\xa3\x01\xaf\x87\xa7\x9e\x1e\x44\xdb\x10\xc4\xc8\x87\xf6\x03\x7d\x5e\xc6\x76\x2f\x48\x4d\x2f\xec\x95\xf6\xeb\xb3\x27\x6f\xd1\xa3\xb2\x04\x39\x3d\x7b\x7d\xf1\x02\x8e\x40\x13\x50\x27\x4f\x2e\x9e\xc1\x11\x68\xa2\xe9\xc5\xd9\x3b\x5e\x4d\x13\x4a\xa7\x2f\x5f\xbf\x43\xa8\xfb\xd5\xb7\xf3\x67\x4f\xcf\x5e\x9f\xc0\x11\xfc\xa0\xc3\xbd\x7a\xf5\xb2\x2c\x78\x50\x15\xbc\x7f\xf6\xec\x3f\xe0\x08\x1e\x9a\x5f\x4e\x9e\xfc\x0a\x47\xf0\xa3\x2d\x05\x16\x59\xd4\x4c\xdb\xf0\xc9\x67\xba\x6e\xa6\xf0\x1d\x2f\x39\xe0\x7f\x7d\x07\x9f\x1c\xe9\x12\xa7\x11\xfd\x74\x36\xd5\x22\x9d\xec\x70\x7f\x09\x61\xcc\x97\xf8\xe4\x49\xa4\x5a\xa2\x03\xdf\x91\xb5\xaa\xa7\xc5\x41\x79\xec\xdc\x2f\xe1\x26\xcd\xd6\xce\x99\x7e\xc7\xc9\x5c\x78\x3d\x87\xb3\x66\xab\x0e\x96\xa1\xca\x47\x47\xe0\xb4\x6e\x0d\x60\xfc\x45\xc1\x50\x9d\x41\xc8\xdd\xb2\xca\x16\xa0\x99\xa9\x36\x94\xe4\x6d\xa1\x21\x3b\xab\x02\xcd\x89\xe2\x62\x62\xbb\x05\x99\x24\x14\x21\x03\x6a\x51\x69\xd1\x34\xa9\x13\x19\xf2\x64\xce\xce\x23\xe4\x19\x44\xd3\x86\xc1\xa1\xb6\x26\xf0\x0e\xe3\xe0\x08\x44\x21\x74\xca\x3a\x2d\xe0\x87\x0e\xe7\x62\xa5\x42\x79\x74\x04\x03\x4b\x53\xb5\xaf\x56\x9c\xa1\x3c\xb6\x0d\x8f\x80\xda\xec\xe1\x8f\x96\x7a\x7b\x6f\x00\x1d\x68\x36\xcb\xc6\xbe\x83\x87\x9c\x9b\x0f\x1d\xc5\xec\xf9\xd9\xdb\xd3\x27\x17\x17\x2f\x5f\xff\x22\x3e\x59\xd1\x15\x8d\xd3\x46\xbb\x0a\xe8\x68\x63\x00\x47\x3b\xe0\x52\xaf\xfb\xbd\x68\xf1\x1b\xb2\x45\xe5\x38\xe4\x34\x80\xb8\xfb\xf8\x3f\x2d\x65\xb0\xe3\x1f\x1b\x74\xd4\x17\xe7\x24\x3c\x65\x4a\x9b\x7a\xe9\x67\xba\xab\xe1\xaf\xd2\x72\x6d\xa3\xbd\x1e\x3c\x79\xf5\xf2\xc9\xf9\xb3\xf3\x92\x88\xca\x9d\xa0\x21\x5d\x55\xa0\x71\xda\xd0\x2a\xbc\x79\xfb\xf2\xec\xed\xcb\x8b\x5f\x8d\x1a\xe5\xcd\x69\x59\xe9\x47\xbd\xca\x93\xb7\xe7\xfa\x14\x6a\x47\x2a\x9c\xc1\xd2\xd6\x22\xe9\xb3\x41\x0c\x18\xf9\x63\x10\xf6\xd4\xe0\x00\xfb\xf8\xe4\x19\x39\xe9\x32\xab\x4d\x14\x22\x2c\xab\x6a\x83\xe6\x6f\xf0\xcf\xb5\x18\x6c\x4c\xb5\xa6\xe9\x0f\x23\x1c\x2e\x3e\x20\xe3\x90\x16\x61\x28\x1f\xa8\x52\xe1\x9e\x67\xeb\x53\xd0\xf1\xb1\xbe\xd9\xd4\xa9\x6c\xac\xae\xb9\x1a\xa5\x45\x48\x28\x21\x9e\xcc\xf3\x97\xec\x39\xb6\xa6\xb0\x19\x87\xc9\x32\xdf\xa3\x91\xeb\x21\x9e\xc2\x9a\x42\x14\x47\xf8\x7a\x4b\x9c\x46\x20\xdd\xa9\x40\x26\x4e\x21\xf9\x0d\xe6\x20\x45\x3f\x77\xc2\x94\x77\x9e\x99\xa8\x4d\xd4\x08\x5c\xca\x59\x23\x86\xb0\x3b\xee\x5c\xed\xec\x88\x52\x1b\x32\x93\x2a\x1f\xb9\x8e\xd7\xf6\x42\x7c\x75\xf6\xf4\xc9\x2b\xb5\x10\x0d\x7f\x61\x3e\x64\x88\x86\x1f\x1a\x1a\xff\x20\xe9\x8a\xe4\x9b\xab\xe7\xf4\x3a\xc7\x1f\x4e\x49\x3e\x99\x5f\x3d\x59\xe6\x71\x72\x75\x4a\x36\x57\xff\x58\xa5\xf4\xea\x1f\xab\x64\x73\xf5\x64\x35\x5b\xb1\xe2\xea\x9c\x2e\x0b\xca\xb5\xf5\xab\xb3\x49\x91\xf1\x7f\x5f\x67\x1f\xc5\x87\x13\x3a\xc1\x1f\x1a\x5d\xb6\x4c\xe2\xc2\x3c\xeb\x35\xae\xb4\x5c\x27\x8e\x4f\xa2\x4e\x17\xae\x1a\x49\x1c\x27\x8c\xd3\xc4\x29\x52\xf4\x70\x72\x38\x35\x9c\x14\x4e\x04\x27\x80\xb7\x7d\x9b\x66\x71\x52\xce\xaf\x5e\xbe\xbe\x12\x9b\x02\x1c\x41\xef\x64\x94\x9d\x8c\x8f\x65\x98\xe1\xe5\x78\x7c\x97\x9f\x60\x59\xeb\x80\xf3\xec\x71\xcf\x21\xf9\xd4\x5a\xe2\x7c\x86\x95\xdd\x2a\x00\xec\xc0\xb9\x2e\xcf\xd5\x30\xd4\x85\x4e\x84\x22\x9b\xe4\x43\x4c\xc2\xf3\x4c\xac\x0b\xdf\xbe\xaa\x97\x7b\x76\x58\xbd\x78\xd4\x60\x05\x49\x23\x92\x64\xa9\x11\x50\xec\x46\x47\xed\x6c\xdb\x6c\x77\x54\xde\xba\xd9\x7e\x54\x06\x94\x47\xfd\x32\x9a\xe8\xc6\xec\x79\xe9\x91\x6d\xcf\x6a\xcb\x88\x19\xf0\x6a\x72\x80\xae\x78\x08\xe0\xba\x1f\x2b\x8a\xf4\x31\xb0\x80\xc6\x5a\x3f\xfc\xba\x5c\x62\xb3\xf6\x57\x9a\x58\xc4\xb5\x6b\x76\x11\x68\xc7\x14\x23\xcc\x9f\x9a\x67\x0f\x29\x1e\x32\xf6\x9b\x71\x01\xea\x99\x0a\x7b\x72\x8d\xb9\xd5\x66\xf1\xcf\xce\xd7\x1c\x73\x4d\x89\x0d\x54\x6c\x2a\x08\xff\x1a\x77\x05\x15\x80\xe3\x66\x66\xf7\x18\x51\x62\xeb\xf7\x45\xb6\xb0\xe2\xf6\x92\x89\xda\x17\x38\x7a\x74\x2f\xe4\xcc\xe2\xf5\xa4\xac\x52\x98\x5e\x69\x3b\x9e\xe7\x7c\x54\xc8\x47\xe5\xd2\xac\x80\x15\xa3\x91\x79\x1c\xb6\x11\x78\x92\x47\x54\x4e\xee\xa7\x7b\xc0\xa1\xa7\x66\x3d\xa0\x7d\x16\x1b\x1c\x06\x8f\x60\x8b\xcc\x4c\x7b\x3e\x3a\xec\xf7\xfb\x6d\x70\x02\xfc\xc2\xed\x8b\x70\xc1\x4a\x33\x97\x8b\xce\xbb\xb8\x9d\x19\x51\x7f\x1a\x9e\x58\x84\xfa\xe9\xa9\x1d\x3c\x87\x26\xe1\x3b\xd2\x68\xec\x81\x34\xf8\x18\x92\xff\x75\x00\x2d\x46\x45\x85\x71\x78\xb3\x45\xc6\x31\xea\x11\x78\xe4\xae\x1e\x02\x71\x87\xb3\xcd\xb9\x34\xec\x0f\x14\xc7\xe8\x6d\xd5\x19\xf0\x13\x5d\x0c\x43\xcf\xab\x17\x41\xa7\x89\x10\x09\xd6\xe0\x7d\x05\x0a\xea\x95\xae\xbf\x6b\xc8\xf0\xc8\xae\xa8\xdd\x65\x5a\xd8\x69\x5b\xf8\x7b\x47\xf0\x2f\x9a\xc3\xbf\x6f\x48\xfe\x02\xbe\xb6\xf5\xef\x9a\x8d\xff\xd6\x1b\x89\xc8\x06\x23\xaf\xd5\x8c\x65\xef\x48\xf0\x67\x9f\x88\x2b\x06\xd4\x9b\xa4\xf6\x66\xa6\xbf\xf9\x13\x26\xc7\x7b\x39\xb6\xdf\x06\xf4\xb7\x6f\x30\x1a\x85\x65\xc2\x3c\x12\x45\xc0\xb2\xbc\x88\xd3\x99\x5e\x78\x2e\x3e\xa1\x67\x26\x13\x29\xad\xe2\x29\x64\x29\x95\x27\xbf\x66\x96\x03\xb9\xbe\xce\x5b\x7c\xfb\x24\xb0\xcc\xe9\x34\xfe\x04\xd9\x14\x48\x9a\x15\x73\x6a\xbc\xf0\xc9\x28\x55\x4d\x88\x94\x8b\x8b\xe5\xaa\xd0\x67\xbb\x04\xf6\xed\x7e\x9e\x0b\x04\x95\x69\x8b\x9f\x39\x71\xde\xd5\x11\x15\xd3\x6b\xcd\xc9\x47\x0a\x71\x01\x24\xc9\x29\x89\x36\xb6\x5e\xb1\xd7\x9e\x59\x6d\x1a\xe8\x8c\x18\xda\xa9\x42\xce\x4a\x81\x5d\x2d\x94\x38\x50\xfd\x69\xfc\xb3\x01\x07\xfe\xbd\xaf\xbc\x68\xec\x8a\x7b\x46\x38\x80\xc6\xb7\x9e\x98\x7b\x44\x13\x7b\xb6\xe4\xdb\xe9\x04\xb7\xa6\x54\xaa\xeb\x7f\x11\xb9\x6e\x66\xeb\x3b\xce\xec\x2c\x76\xce\x8c\x60\x15\xff\x23\x40\xe1\xa1\xe7\xa4\x6f\xeb\xbb\x1b\x1a\xdb\x45\xcd\xb0\x22\x31\xce\x38\xb5\xf9\x68\xd4\x76\x9e\x6b\xad\x94\x15\x15\xef\x3b\x43\xe3\x10\x53\x0e\x95\x53\x62\x6d\xe5\xa7\x5e\x8f\xd9\x10\x43\x8b\x53\x45\x29\x19\x77\x27\xc8\xf3\x5f\x05\x68\x19\x0e\xbf\x9c\xf2\x1a\xc2\x3d\x0c\xfe\xf5\x29\xd7\xd8\xd1\x37\xf5\x76\x83\xb7\x68\xc3\xbf\x73\x86\x1d\x5d\xa9\xe8\xab\xe0\x4d\xc7\x5f\x14\xed\x5b\x65\x50\xab\xfd\xb0\x8e\xe1\x85\xed\x11\xba\xaf\x33\xc8\x96\xbe\xbd\x73\x91\x2d\x82\xfb\xa0\xbc\x02\x97\x6e\xcf\x35\x57\xe0\x1c\xb8\xf7\xcf\xcb\xe8\xe0\xdb\x9e\x18\x2f\xbf\xf3\x37\xec\xe5\x43\x1d\xd4\xc2\x54\x55\xde\x57\x8f\xd9\x5e\x68\x1f\x21\xaf\xec\x72\xd7\x7c\x22\x76\x39\x60\x71\x42\xd3\x02\xa6\x24\x4e\x56\x39\x3d\xf6\x2a\x6d\x77\xca\x4b\xfb\x70\x87\x42\x63\x59\x8d\xa9\xff\x37\x6d\xac\xab\x69\x85\x23\x99\x60\x2d\x4e\x9b\x95\x7f\x7a\xdb\xb8\x2a\xab\x7c\xdf\x15\x97\x68\xdd\xbd\x85\x8b\x76\x03\xd1\x35\xc6\xca\x45\xbc\xa2\xc2\x0d\x1e\x2a\x7b\xe6\x71\x73\x3a\x57\x7c\xeb\x75\x71\xae\x0d\xe8\x28\x59\x5e\xa8\x6a\xbe\xb9\x0b\x46\x71\xe0\x93\xaf\x8f\x7c\x2c\x6d\x46\x6f\xd4\x45\xfd\x54\x51\x1b\x72\x30\x76\x46\xfd\xcc\x68\x71\xa2\xcd\x85\xe7\xa6\x42\x9f\x2a\x14\x28\x6a\xae\xf4\x6b\xb4\x50\x3a\xa5\xe0\x85\x8a\xed\x38\xbe\x97\x7a\x6c\x3b\x95\xc9\xae\x5e\x69\xb7\x28\xee\xe3\xbf\x80\x8e\x13\xb6\x9e\x57\x69\xd4\x3b\xf7\x77\x1f\xcd\x9e\x19\x32\x4c\x61\xe7\x95\x9f\xdd\xed\xe2\x6e\x1c\x4c\x3e\x1c\xbb\x0f\xc6\xe1\x51\xaa\x90\xfa\x87\xca\x4f\x40\xf5\xb4\xab\x6d\x40\xaf\x1b\xbd\x3d\x46\x47\xc4\x7b\x89\x0f\x0e\x2d\x1e\x73\xa4\x56\xd5\x01\xf7\x98\x24\x2d\x12\xfd\x6b\xc0\x7b\x09\xf7\x7f\x30\x83\x7e\x0d\xde\xfc\xda\x6c\xb9\x27\x47\x7a\x99\xf1\x8b\xf8\xf0\xcb\x58\x70\x6f\xee\xdb\x8b\xf1\xdc\x59\x37\x04\x70\x05\xb7\x58\xbe\xa2\xe9\x5b\xfa\xb1\x2e\x86\xf6\x5a\x3d\x85\xd6\x01\xa2\x5c\x66\x7c\x9b\x33\x3e\xb0\xcc\xd7\xc6\x9b\x98\x4e\xbc\x8f\xd8\x73\xfd\x3a\x58\xb8\x88\x3f\xd1\x28\x58\xea\xda\xce\x1f\xfd\xeb\x9d\xa8\xb5\xde\x8b\xa8\xe7\xe0\x69\xca\x49\x14\xa5\x06\xc6\xa9\x17\xaa\xa2\x0d\xd7\x57\xa9\x13\xa4\xef\xf3\xd7\x34\x99\x40\x6c\xbc\x76\xb6\x8e\x93\x44\x5c\x7f\xe2\xac\xf0\x61\xa0\x39\x2c\x39\x85\xd5\xc5\xba\x3e\xaa\x18\xf9\x5d\x72\xad\x46\xa5\x36\x82\x41\x18\xbd\xfb\x41\xa0\x3d\x99\x49\x23\x4a\x25\x24\xd4\xbc\x7a\x8d\xc2\xe0\x5c\xbb\x15\x8d\x32\xef\x1c\xd8\xe4\x1d\xde\xf7\x92\xa7\x75\xd5\x6d\xc5\x2c\xf4\x5b\xf7\x7c\xb2\x51\x3b\xd9\x37\xfe\xd9\xc4\xe7\xc7\xb4\x11\x15\x59\x92\xb6\x42\x63\x6e\x35\xec\x53\x7e\x70\xfb\xaf\x11\x6e\x21\xb9\x1a\xb6\xdd\x48\xba\x34\x6e\xb0\xc9\x32\xc1\x63\xe7\xc5\x15\x2f\xad\xb7\x6a\x5c\xe7\xd7\xdb\xb6\xbe\xbf\x77\xda\xaf\x1e\x07\x2e\xfb\x14\xbc\x51\xc3\x2b\x34\x6b\xe7\xb0\xb2\x81\x9f\x8f\x30\xd2\x0a\x8e\xab\x24\xb6\x9b\x36\xdc\xc7\xfc\xd6\x07\xbc\x33\x9b\x7a\x57\xb2\x7e\x1b\x46\x8d\x5f\x7f\x95\x2e\x72\x41\x62\xf4\x7d\x52\xd0\x22\x12\x22\xec\x85\x1c\xd1\xdf\x17\xe8\x1b\x98\xb3\xa8\xf2\x96\xf2\x82\x73\xf8\x1f\x6e\x03\xcf\x2b\x3c\x10\x07\x25\xab\x9a\x9a\x8d\x1a\x4f\x36\x91\x45\x09\x1a\x1b\x8f\x23\xdb\x4b\xab\x4a\xe5\xca\x26\x6b\x0d\xf6\xf4\x64\xfb\x55\x79\xa9\x89\x98\x36\xbf\xbb\xd8\xaf\xbf\xee\xef\xcb\x26\x7b\x5d\x06\xf0\xc9\x1f\xef\x87\xa1\x75\xf0\x07\xf2\xc7\x07\x35\xe0\x21\x78\x55\xc1\xf0\x07\x53\x15\x54\xd5\x71\x1b\x1d\xac\x2b\xf4\x1a\xb4\xa2\x7d\x5f\x1f\x35\x8e\xc8\xce\xde\x29\x92\xf7\x6a\xef\x95\x1f\xc2\xb1\x3c\x41\xe3\x43\xec\x17\xeb\xec\x24\x9e\xc5\x05\xfa\xa3\x4a\xaf\xb6\xa1\x27\x68\xe0\x73\x88\xc2\xdb\xd3\xb7\xa3\xf9\xfa\xf6\xbe\xa0\x39\x6c\xa8\xec\x4f\x1b\x06\x7d\x8f\x07\xe7\x8b\x67\xaf\xde\x3c\x7b\x6b\x1b\xe0\xc4\xc9\xbd\x2e\x0d\x8a\x93\x28\xe5\x18\xee\x3d\x78\x00\x43\xb8\xf7\xe0\x07\x5b\xd2\xbd\x38\x3b\xfb\x8f\x73\xfd\x61\x30\x67\x08\xdc\x58\x0f\x9f\x70\xd1\x3d\x10\x0f\xa0\x69\xfc\xfe\x18\x1e\xfc\x08\xc7\x30\xf8\xa9\xdf\x87\x21\x70\xf5\x4d\x75\xf6\x91\xdf\xd8\xc8\xc5\xa7\x30\xd9\x48\x02\xb4\xf4\x1d\x55\xf2\x85\xd2\xb8\xe2\xd8\x3e\x5e\x56\x03\x50\x3f\x3c\x9a\x4c\x0c\xd8\x3a\x84\xde\x89\x69\x00\x37\x6d\x58\xb4\x21\x6a\xc3\xbc\x0d\xa7\x6d\x60\x6d\x58\x18\x11\x44\x98\x5b\x9e\x6b\xb3\xe2\x69\x2a\xcc\xd2\xdd\x82\x22\x93\x38\x80\xa0\xfb\xe2\x50\x87\x9f\x17\xc5\x92\xf9\xa3\xd2\x7a\x83\x1f\x07\xf7\xee\xff\x68\x6c\x29\x51\x99\x68\x10\x94\x7b\x89\xf4\x89\x9c\x64\x29\x2b\xf2\xd5\xa4\xc0\x47\xa7\x16\x64\xc9\x44\x26\x39\xe8\x77\x7e\xfa\x89\xd3\xc0\x07\xbf\x33\xd0\xa3\x7a\xf9\xc9\x6d\xc3\x75\xac\xbe\x48\x94\x83\x19\x5f\x3d\x6a\xfb\x32\xa7\x8c\xe6\x1f\x29\x24\x94\x2c\x25\x56\x91\x7c\x98\xc0\x74\x95\x24\x98\x46\x07\xbd\xd1\x27\x9b\x49\x42\xdb\x9c\x28\x7c\x65\x84\x9a\xe7\xae\x48\xa4\x5d\x2c\x1f\xf4\xdd\xc0\x01\xaf\xea\x1b\x54\xf7\xaa\xac\x4c\x1e\xc3\xb1\x74\x67\xb4\x50\x5c\xd0\x6c\x79\x4f\x97\x08\xc6\x34\xb0\xcd\xed\xc2\xf5\x1d\x62\xeb\xc9\x74\xc3\x16\x23\x3b\x27\xa4\xc5\x51\xef\x2e\x9e\x0a\xc4\xae\xf1\xbc\xa0\x98\xd7\x9d\x39\x33\xcd\x2b\x74\xdf\x5d\x3c\x35\x12\xb3\x7f\xb5\xa9\x96\x2f\xb5\xd6\xbf\x21\xe9\xbc\xc1\xf8\x95\x99\x84\x13\x31\xea\x73\x09\x29\xd9\xe3\x51\xed\xb4\xa8\x11\x91\x39\xf1\xc5\xbb\xb5\xf8\xd4\xe5\x3e\x3c\xf4\xee\xe2\xe9\x9e\x6c\xa4\x43\xfe\x49\x4e\x0a\x91\x2c\x47\xf6\x76\x4c\xd5\xeb\x01\x2b\x48\x5e\x74\xb2\x69\x07\x1f\xd9\xec\xac\x29\xbd\x81\x4e\xf5\x95\x8f\xb9\xc9\x7f\x08\xf7\x9e\xd2\x1b\x69\xa7\x16\x31\x2d\x51\xb6\xe6\x7f\x39\xec\xd8\xeb\x81\x86\x38\x22\x1b\xe8\x74\x60\x3d\x8f\x27\x73\xf8\x20\xfc\x95\xf1\xb0\x99\xac\xc9\x86\x41\x9c\x22\x9f\x62\x05\xcc\x92\x09\xcd\xfb\x78\x68\x8a\x59\xd6\x86\x01\xfe\x88\x27\x51\xf3\x42\x6c\xba\x8e\xe0\x08\x1e\xc2\x01\xa7\x02\x3a\x9c\x8c\xb6\xcd\x60\x16\x11\x78\xb1\x82\x4d\x18\x24\x99\x9f\x63\xc6\x51\xdb\x4d\x25\x6b\x38\x82\x26\x6f\xcd\x5a\x89\x38\x0e\x5c\x8b\x5e\x47\x2d\xc9\x1e\x27\x84\x8b\x70\x4e\xd1\x9a\x2b\xcd\x0f\xdd\x24\xb4\x1d\x81\xf1\x00\x3b\x51\xb9\xde\x97\xd3\xa3\x24\x3c\x4d\xbb\xeb\xf8\x26\x5e\xd2\x28\x26\xdd\x2c\x9f\xf5\xf8\x6f\xbd\x97\xe7\x67\x57\x9c\xda\x2b\x3e\xb3\xff\xf6\x94\x24\x93\x55\x42\xf8\x19\xff\x8a\xe0\xa7\xab\x59\xfc\x91\xa6\x57\xc5\x9c\x5e\x71\xf2\xba\x87\x4f\x05\xb8\xc8\x08\x70\x45\xd2\xe8\x4a\x76\xd6\xd1\x11\xce\xa6\x9c\x5b\x9f\xe7\xd9\x82\xcf\x35\x93\xdd\xe3\xd0\x6d\x35\x40\xe1\x59\xc7\x71\x7c\x2f\x87\x51\x8e\x56\x39\xd8\xe5\x68\x98\x93\xb4\x2e\x59\x8a\x6b\x0c\xf5\x4c\xd6\xb6\x96\x88\xa4\x16\x8e\x60\x00\x07\xf0\x10\xee\x42\x53\x32\xf2\xa0\x85\x27\x4a\x8d\x9c\x03\xad\xa5\xb6\x65\x32\x63\x1c\x8b\xf3\xf1\x44\xe1\xb7\xae\x23\xab\x76\x7f\xf6\xc8\x43\x89\x8d\x8b\x22\xfe\x4f\x47\x4f\x0d\x6e\x23\x86\x23\x5d\x2d\x93\x35\x39\xe5\x51\xd5\x74\xb9\xac\xab\x4b\xdd\x8a\x80\xc7\x8e\x5a\xb7\x83\x9c\x83\xdd\xe4\xc8\x9f\x3b\x0e\xea\x9d\xb7\x4e\x7a\x4b\xfb\xb5\x52\x27\xb5\x4c\xec\x1c\xe7\xd0\x3f\x55\x25\xb6\xa1\xd1\x4e\x05\x14\x88\xd0\x13\xfc\xa0\x32\x6e\x85\xb9\xba\x96\x43\xf5\xfb\xca\x00\x9f\x22\x4b\x1e\xe9\x49\xf8\xe4\xed\xa7\x24\x14\x45\x85\xd6\x08\x72\x6f\x0f\x1e\x62\x38\x9a\xc3\x95\xbc\x6d\x2f\xff\x5a\x5c\x8a\xad\xfe\x0c\x8e\x47\x5e\x35\x4d\x15\xe9\x5e\x2e\x7d\x2f\xc8\x46\x3c\x62\xf1\x58\x8c\xaa\x75\xd8\xcb\xa6\x58\xf3\xb1\x51\xd3\x3b\x5a\x1e\x0a\xf5\xb6\x3b\xbb\x31\x38\xb4\xbb\x3d\x34\x18\x7f\x07\xff\x56\xd5\xea\x06\x65\x7f\xde\x5d\xe3\x63\x73\xde\xb9\x0b\xb0\x75\x0d\xc7\xea\x4b\xf2\x0b\x79\xb6\x56\xaa\x56\x35\x5f\xd3\x4f\xa1\xda\xc8\x99\xbe\xf1\x57\x61\xc9\xce\x69\xd3\xe0\xf0\x03\xab\x15\x64\xf7\xdb\x1a\xd3\xd6\x18\xea\xb9\x5e\xab\x50\xcf\x75\xd6\xe0\x7f\x53\x7a\x13\xb0\x1d\x35\xde\x63\x8d\xf7\xef\x55\x8d\xf7\x58\x23\x66\xd9\x7b\x59\x69\x0f\xcb\x91\xc8\xed\x0d\x8d\xb5\xd6\x88\x56\xac\x90\x71\xec\xb7\xb2\x2d\x49\xbc\x3f\x98\x58\xab\xf2\x0a\xf1\x0f\x7b\x9a\x9f\xd6\xbb\x03\x29\xd7\xeb\xfd\x8d\x4f\xef\x77\xa3\x7b\xff\x3e\x80\x4e\x01\x5b\x69\x12\x46\x48\xa3\xa0\x02\xf1\x73\x0c\x63\x6f\xaa\x11\x61\xef\xf8\x46\x67\xd2\xea\x37\x19\x71\x58\xfe\x5e\xbd\x5e\xa5\x2f\x0b\x5e\x47\xe4\x10\x50\x2f\xf8\xf5\xdb\x30\x68\xf9\x13\x4b\x04\xed\x29\x76\x60\x9e\xe5\x2a\xcc\x7b\x68\xbf\x49\x24\xd7\x84\xbd\xdd\x08\x83\x35\xff\xda\xc5\x85\x64\xfc\xbe\x69\x75\x2b\x19\xe3\x7b\x33\x44\x35\x66\xe4\xdb\x8f\xb2\xf5\x90\xab\xa2\xbd\x1e\x9c\xaf\x52\xa9\xcb\x56\xaa\x35\xff\x90\x4d\xf1\x03\x36\xa3\xd5\xdb\x0c\xe1\x01\xd6\xbb\x90\x85\x50\xcc\x09\xbe\x01\x5b\x90\x38\x65\xf0\x0f\x92\xc2\x83\x62\x6e\xe2\x43\x38\x89\x10\xf5\x4c\xc3\x3a\x63\x8d\xcc\x73\x5e\x05\x37\x67\x1c\xa3\x90\xa5\xb9\x1c\x90\xba\x48\xac\x0a\x57\xc8\x58\x63\x0e\xa6\x2d\x5a\xfc\x2e\x6a\xc2\x74\x84\xd4\x39\xf6\x2a\x25\x53\x95\x71\xde\xf0\xd0\xe2\x05\xf6\xe5\xbc\xfe\xe0\x18\x1c\xc9\xa4\x17\xc7\x02\x87\xbc\x1c\x26\x51\xd4\x94\x59\x31\x84\x74\x6c\xc1\x5d\x78\xd8\x86\x46\x14\x7a\x90\x4c\x50\xf8\xf2\xfc\x6c\x27\x91\x1a\xb3\x89\xab\xf5\x41\x1b\xee\xeb\x3c\xf5\xb5\x69\xdc\x43\x60\x47\xe2\xf6\xa3\x11\xa1\xd8\x8d\x48\x65\x7c\x77\x20\xa3\x3f\x17\xe9\x2e\xcf\x1c\xec\x34\x4e\x6f\x15\x63\x1f\x7d\xad\x86\x6f\x1f\xde\x1f\x7d\xb5\xb6\x6f\xd5\x2c\x2d\xdb\x6c\xc8\xfa\xa1\xcd\xf3\x59\x05\x29\xf7\x22\x7d\x06\xeb\x37\x4d\x7c\x3b\x43\xe3\x19\x77\x4b\x95\x10\xb4\x76\x57\x95\x40\xcf\xbc\xd9\x07\xbc\xbb\xa6\xa8\x31\x18\x84\x76\xd5\xaa\xe9\x30\x8c\xd1\xf8\x60\xdf\xcb\x9f\x68\xf7\x76\x49\x77\x83\x3c\xdb\x0d\x82\x6c\xf3\x25\xd9\x06\xb4\x45\x72\x9b\xfc\x06\xd1\x9f\x6e\xf0\xd6\x29\x15\xa2\x3f\xdf\xe6\xce\xa4\x0a\x8e\x6a\x82\x4d\xca\xde\x0a\x0a\x7c\x39\x0f\x84\x61\xa4\x36\xe5\xc1\xba\xb4\x87\x58\x49\x0f\x14\x6d\x7f\x2a\xed\xc1\x8c\x16\x40\xca\x36\xea\xf3\x1e\x38\xe7\x43\x5e\x25\xe0\xbc\x2a\xb6\x4e\xb9\x93\x44\x64\xb3\xe3\xf0\xb4\x23\xe9\x41\x65\x13\xaa\x4f\x7b\xe0\x9d\x08\x21\x18\x70\xe1\x7f\xc1\x14\x54\x6a\xdf\x2d\x35\x3d\xed\xd1\x98\x9c\x51\xd9\x03\xd5\xa8\xcb\x77\x9a\x4b\xb9\xca\x74\x15\x76\x29\xd7\x77\xde\xa0\x83\xba\x4c\x35\x2e\x88\x0d\x60\x08\x5e\x08\xda\xf8\xe4\xfb\x23\x61\xd6\xb3\xc2\x94\x8d\xae\xa0\x77\xbc\x30\x1e\xde\xbe\x2b\x2a\x9b\x63\x19\x7c\xe7\x3e\xca\xc3\xfb\x50\x4a\xd9\x5b\x0c\x71\x9d\xd7\xbe\x5f\x0e\xe8\x1d\x86\xef\xe0\x21\x6c\xb7\xea\xe4\x09\xfe\x50\xf9\x6a\x0a\xe0\x58\x68\x48\x43\xbd\xb3\x9f\x9d\x63\x81\xd1\x37\x36\x8f\xa7\xc5\x7b\xb5\x33\xaf\x59\x1b\x52\xdf\xd1\x80\xc9\x37\xd0\xd2\x36\x3c\x6c\x75\x27\x59\x3a\x21\x45\xb3\xfc\xda\xe7\xb5\xdc\xbc\x81\xce\x59\x80\xb7\x01\x47\xd0\x10\xba\xff\xd5\x69\x86\xff\x5c\xac\x28\xe3\xff\xbe\xa7\x51\x2a\x7e\xba\x98\xaf\x72\xfc\xe1\x79\x1e\xf3\x7f\xce\x49\xb1\xca\xf9\xfe\xf6\xa5\x49\x3f\xde\xeb\x92\x5d\x52\xc0\x9b\xe7\x6d\xf3\x76\x79\x8b\xbc\x31\xde\x92\x6a\xa4\x71\xd5\xd8\x85\xee\x34\x4e\x05\xb2\xab\xd3\xec\xea\x62\x75\xf5\x9e\x5e\x5d\xcc\xaf\x9e\xe7\x57\xe7\xa4\x16\xcb\x7b\x5d\xe8\xd7\xe6\xf4\x78\xef\x6c\x49\x7b\x81\xab\x2d\x73\x77\x1e\x90\x72\xea\xbd\x09\x23\xb4\xed\x81\x61\x62\x58\x3d\x2f\x83\x2a\xf0\x27\x65\x50\xa5\x46\xe1\xd0\x2a\xf4\xe5\x60\x58\xc0\xf7\xdf\xc3\x02\xa5\x53\x91\xaf\x68\x15\x19\xa4\x2a\x95\xe9\x38\xfe\x86\xcc\x1b\x6e\x28\x06\xae\x69\x4e\x98\xd5\x6b\x6b\x21\xc9\x1f\xec\x53\xb4\xfd\xfa\xc3\xc2\xc2\x52\x0e\x0c\x9a\x5f\xdd\x2c\x16\xaa\xbc\xee\xf0\x69\xf0\x4c\xd3\x77\xd2\xdf\xb3\x13\xe6\xb0\x23\xba\xdb\xf6\xc7\x83\x22\xd4\x35\x0f\xe8\x3e\xbd\xe4\x47\xa8\xaf\xd6\xc7\xd3\x38\xfd\x73\x3d\x3c\x8d\xd3\xfd\xfa\x77\x1a\xa7\xfe\xde\x39\xd1\xd4\xdf\x0e\x14\x37\xfd\x75\xe9\x41\xb4\x06\xf6\x4e\x10\x62\xec\x58\xfe\x08\x6d\x03\xa4\x3e\xf6\xfa\xfd\x5e\xa0\x8b\x38\xf5\x01\x1a\x90\xb6\x33\xeb\xc3\xdb\xe6\x01\x19\x8c\x5b\x38\x83\x71\x38\x3c\xd5\x22\x43\x4b\xbd\xa1\x9f\xec\xbd\x12\xe7\x2f\x4b\x07\xe2\x0e\xa3\x87\xac\xff\x1d\x79\x4a\xd6\x3b\x68\xfa\xfb\xf2\x94\xe0\x29\xe9\x36\x59\x37\x0c\xd2\xbf\x5a\x86\x0b\x0f\x59\xb7\xcf\x05\xf2\xfe\x2f\x21\x6d\x7f\x22\xec\x35\xf0\xb7\x67\x50\xf9\x6b\x26\xf3\x6f\x4e\x16\xb2\xd7\x10\xfe\x7d\x34\xfd\x05\x93\xfa\x77\xb3\xfc\xdf\x37\x58\xff\x62\xfc\xf4\x97\xcd\xdd\xd7\x97\x09\xff\xd7\xce\xd1\x5f\x22\xb9\x2d\xe3\x40\xbd\xba\x2c\xec\x0b\xb7\x52\x28\x77\xa5\x09\x32\xc6\xf8\x56\x89\x82\xbe\x1d\xe8\xa9\x82\xea\x88\x0a\xdb\xa0\xbe\xb2\x32\x1a\xd0\x30\x5d\xc0\x5b\x68\xad\xd3\x55\x92\xd4\x41\x6a\x5d\xf2\x28\xaf\x7f\x3a\xe8\xd0\x3e\x00\xdc\x46\xe7\xf5\xa6\xf3\x71\xfa\x53\x9b\xd0\xc7\x07\x7d\xbb\x44\x39\xae\xa2\x68\x66\x7f\xb9\xbc\xec\x1e\x7f\xed\xc4\x3e\x5f\x87\xe2\xda\xe4\x3e\x5f\x99\x6c\xff\xa1\xe4\x0b\x88\x3e\x15\xd9\x2f\xfe\x32\x92\x3d\x39\x89\xfc\x07\x85\x2f\x4a\x45\xe4\x2d\xf1\xb3\x51\x00\x58\x24\x2d\xda\x8d\xc7\x9c\xdc\x3f\x89\x4c\x1f\xf4\x5b\x1c\xa4\xfe\x95\xf3\x22\xa1\x82\x1e\x4e\x2f\xe4\x93\x0b\xc2\xa2\xa7\x6d\x04\xff\xfb\x72\x23\xd5\x13\xef\x95\x11\xff\x52\xd4\xd7\x10\xef\x91\x14\x7f\x05\xe9\x4e\x6a\x27\x9b\x7f\xdd\x46\xff\xba\xf4\x4e\xc2\x33\xa5\x72\xef\x71\x7c\x53\x2a\x39\x14\x4c\xe4\x64\xb8\xa3\xdc\x29\xdd\x51\x78\x25\xfd\x21\x5f\x93\x3c\x99\x38\xaa\x8c\x49\x56\xd9\x80\xc4\x6f\x91\xe1\x90\x3f\xd4\xbf\xe2\x27\xd3\xf2\x66\xb4\xec\x18\x3b\xe4\x0d\x9a\xef\x36\xd0\x71\xc6\x08\xa7\xee\x41\x8f\x1a\xe5\x50\x83\xce\xf4\x95\x5b\x04\xec\x48\xe8\x63\x5e\xc3\x7a\xb5\x51\x31\x0f\xaf\x24\x29\xff\x5b\x66\xa3\xba\xef\x16\x0a\x2c\x5a\x6b\xd1\x3d\xbf\xe3\xf1\x5a\xa9\x0c\xc1\x22\x50\xc2\xdb\xbc\xe9\x9b\xc4\x91\x0f\xdd\xc1\x2c\xa3\x13\xf6\xf0\x9f\xfa\x1b\x87\xa6\xfc\xb1\xd7\x83\x6b\xca\x95\x47\xe1\x42\xc7\xc8\x02\xef\xe6\x17\xd9\x82\xa6\xc5\xbf\xf1\x4e\xd1\x4f\x13\xba\x34\x72\x2d\x10\x06\x84\x53\x5d\xd0\xbc\x2d\x9b\x65\xf0\x10\xe2\x94\x15\x94\x44\x90\x4d\xa1\x0f\xcd\x41\xe7\x21\xe4\x24\x9d\x51\xe3\x7b\xe7\x41\xcb\xc1\xc4\x24\x26\x26\x9c\x03\xd9\x3c\x5b\x25\x11\x5c\xd3\x24\x4b\x67\x50\x64\x48\xd7\x32\xa7\x1f\xe3\x6c\xc5\xa4\x8b\xe0\xfe\x0b\xc4\x9c\xfb\xc0\xa5\xee\x6d\x56\x4a\xa4\xae\xc2\x04\x07\x7d\x07\x0f\x0d\x06\xa8\x02\x4b\x1e\xee\xb9\x7e\x34\x64\xbe\x6b\x5f\x9f\xb7\xb5\xc7\x77\xc4\x9b\x0b\x68\xf7\x21\x2d\x94\xf1\xc6\x68\xa5\x36\x1f\x90\xb1\xa9\xfc\x15\x19\x81\x4a\xcd\xeb\xcf\xe5\x04\x32\x7a\x74\x6b\x1b\xe4\x17\x8e\x91\xa7\xe9\x2a\x33\xd0\xfb\x7d\x28\xda\x67\x38\xf6\xca\x0e\xe4\xa9\xe7\xc0\xda\xf7\x55\x7b\x65\x08\xaa\x73\xa0\xfa\xbf\x80\x2b\xbf\x42\x2a\x35\x77\x04\xbf\x2a\x7f\xee\x97\x4e\xcd\x85\x76\x39\xf5\x0b\x52\xaa\x85\xc6\xe9\x76\x3c\xbb\x6f\x5a\xb5\xba\x91\xac\xe7\x5e\xd7\xdf\xf0\xff\x7c\xde\x3d\x8d\xd3\xaf\xc4\xb9\x6a\xf4\xbe\x2a\xdf\x2a\xa4\xfb\x70\xad\xe6\xfb\x12\xf0\x8a\xb9\x35\xc7\x9a\xa3\x73\x2b\x7e\x35\xab\xee\xe4\x56\x97\xc4\xda\x5c\x6c\xa6\x55\xf7\xef\xc9\xc6\xb6\x88\xd3\x60\x42\xb5\xbf\x31\x53\x9b\x5d\x3b\x5d\x7a\x48\x59\xba\x04\x2c\xab\x8e\xfd\x15\xc6\x56\x8b\xca\xdb\xd8\x5a\x79\x1f\xac\xa4\x5a\x41\x13\x91\x2f\x47\x5c\x6d\xe5\x9d\x99\xe2\x6a\x6b\x87\x73\xbf\xa5\x7a\xe6\x37\xde\x83\x5d\xd9\xeb\x04\xa9\x3b\x52\xd5\x21\x41\xbb\xf2\xcc\x79\x5a\x73\x60\xbc\xad\x39\x50\x76\x73\x7b\x66\xa7\x53\x0a\xfe\x5f\x91\x9f\xae\x1a\xd9\x60\x52\xb9\xbf\x27\x85\x5d\x09\xe5\x57\x60\xbf\x42\xfa\x36\xaf\xba\x51\xab\x7d\x06\x05\xbe\xb7\x56\xa8\xb9\xbf\x3d\xf7\x5b\x50\x01\xfa\x4b\xb3\xbf\x79\x07\xec\x56\xad\x57\xbc\xf8\xf5\x32\xcf\x55\xfe\x6e\xf2\x41\xf9\x50\x08\xd1\x3c\x5b\xe5\x4c\xa4\x76\xc3\x47\xd2\xd5\x13\xb0\xf6\x8e\x78\xb3\x27\x9e\xed\x16\x0e\xef\x1b\x28\xec\x40\xa2\x17\x18\x85\xfb\xe2\x45\x95\x7f\xae\xc1\x2b\x87\xe2\x8e\xe6\x08\x3e\x9f\x57\xe0\xb2\x4b\x01\xf8\x1b\x84\xbf\xb9\xa9\xe0\x6f\x4a\x78\x7f\x03\x8b\xc5\x8e\xb4\x7c\xb2\x9f\x0d\x3e\x59\xb2\x71\x99\x86\x05\xb5\x45\x38\xa8\x12\xf1\xe1\x58\x2c\xe2\x74\x55\x50\xd6\x6c\xb5\xab\x17\x6c\x6b\x5a\x67\x6c\xbf\xf6\x2d\xe6\xb1\xef\x3d\xbc\x94\x19\x10\x35\x54\xd6\x42\x32\x3a\xc9\xd2\x48\x42\x3a\x3c\x18\xea\xd9\x8b\x5b\x8d\xab\xc1\x44\x7f\x66\x40\x5f\x7c\xb5\x01\x35\x49\xfa\x1b\x47\xb2\xca\x45\x4d\xf3\x38\x8a\xe9\x42\xbd\xaf\x9e\x64\x6b\x9a\x4f\x88\x79\x05\x6f\x0d\x80\x04\xad\xeb\x3e\xd4\xbe\x12\xac\xda\xf4\x9f\x03\xe4\x78\xb8\xb7\x93\xd6\x48\x38\xe5\x25\xed\x46\x89\xae\x15\x98\x42\xad\xa4\xa3\x41\x1a\x46\x3e\xfc\xaa\xe0\x49\xa3\x0d\x53\x92\x30\xba\x5f\x14\x22\x4a\x19\x2e\x6d\xf6\x8f\x1f\x94\x55\x06\xf7\x42\x51\x7f\xd5\x54\x71\x85\xe3\x54\x91\xb6\x7f\x80\xda\x95\xea\x0e\x9e\x31\x6c\xc1\xa9\x47\xc1\x11\x15\x0b\xa8\x5a\xf1\x07\xcb\x3d\xd9\x0f\xec\xc5\xee\xc8\xc2\xf9\x6e\x90\x9b\xdd\x20\x2f\x5e\xec\x9f\x63\x60\x3e\xdf\x1f\xf6\xe6\x66\x47\xb2\x01\x03\x31\xca\x22\x04\xb9\x57\x64\x81\x84\x99\x4a\x14\x23\xd8\x0f\x45\x16\x48\x94\xf9\x62\x1f\x5c\x2f\x3c\xb8\x14\x9c\x11\xdd\xc6\x47\x87\x8f\xd1\xb8\x0d\x2f\xce\xde\xf9\x93\x67\x8e\x70\x9c\x79\x8f\x77\x3e\xbb\x6c\xbb\x17\xdd\xbc\x94\xd7\x56\x6e\xe0\x1b\x94\xd9\x25\x79\xc3\x63\x38\x2a\x81\x8f\x8e\xe0\xf0\x3e\x1c\x43\x1f\x86\xf2\x5b\x25\xa0\x7c\xd4\x71\xce\x6c\x3c\xb9\x1d\x71\x2a\xc0\x31\x66\x6f\x16\x6e\x68\x64\xcc\xde\x9c\x3a\xc4\x2a\x18\xb5\x62\xcc\x68\xc2\x10\x71\xf8\x60\xf9\x7c\x7e\x3b\xea\xcc\x71\xf1\x8f\x5d\x28\xe4\xf1\x3a\x9e\xbd\xc8\x56\x39\x88\xe8\x88\x3a\xe2\x24\x5b\xde\x6e\x46\x97\x19\x53\x1d\xaf\xac\x0a\x87\xa1\x29\xd5\x48\xd7\xb2\x5e\x2c\x33\x23\x63\x9c\x7c\xe4\xfa\xe5\xeb\x77\x17\xcf\x02\x95\xac\x1a\x5f\xa7\xef\xb8\x42\x6e\xdd\xfb\x81\xdb\xfd\xfb\xe6\x76\xb3\xcc\xd8\xe1\xd7\x18\xa3\xc1\xed\x07\x69\xc0\x37\x76\xa7\xd6\xf9\xb3\xa7\x67\xaf\x4f\xc2\xb5\x0e\xbf\xf2\xd8\xbe\xf8\xff\x22\x5f\x85\xfb\xf2\xff\xf3\x89\xcd\x27\xc1\x77\xe2\x2d\xb7\xd4\x97\x95\x1c\x35\x33\xce\xbe\x7c\xf6\x23\xfc\xcf\x55\x9c\xdf\x30\x38\xcd\x22\x0a\xdf\xc3\xcb\x67\x0f\xe1\x1c\x23\xf5\xf2\x48\x7e\x8c\x32\x7c\x80\x98\x24\x49\xb6\x06\x32\x99\x50\x86\xa9\x39\x45\xc0\x2d\x83\x24\xbe\xa1\x82\x70\xa6\xa3\x7e\x87\x40\x93\x39\xc9\x9f\x14\xd5\x15\x33\x2c\xb2\x9c\xa2\x5d\x95\x14\xf1\x75\xa2\x99\x62\x94\x32\x2e\x2e\x97\x0f\xca\x48\x95\x32\x46\xa5\x2b\x70\x35\xfb\x2d\xe1\x7c\xb3\x6c\x18\x6a\x92\xfb\x34\xbe\xae\x51\xc1\x11\xf4\x46\x64\x39\xbe\xec\x1e\x2f\x8e\x2f\xbb\xc7\x3d\xcd\xd4\xd9\xeb\xc1\x39\x2d\xd0\xfa\x54\xcc\x29\x70\x65\x4f\x11\x7c\x43\xe9\x12\x3f\x16\xf1\x82\xb6\xe1\x9a\x4e\xc8\x8a\x09\x23\xe5\x8a\xd1\x1c\xe8\xa7\x65\x12\x4f\xe2\x22\xd9\xe8\xd8\xd8\x92\x4e\xe2\x69\x4c\x23\x99\x57\x12\x31\x16\x73\xba\x81\x35\x49\x8b\x2e\x9c\x67\x50\xe4\x9b\x58\x5c\xb6\x2f\x48\x8c\xc9\x75\x2a\x6f\x00\x04\x6f\xc6\xa9\x8e\x92\xa0\xf5\x80\x53\xf1\x7b\x96\xd2\x96\x32\x93\xd1\x94\xd1\x2e\x3c\x89\xa2\x38\x9d\xf5\xd8\xea\xba\xc8\xc9\x04\x3b\x82\xfa\x39\x44\x19\x15\x8f\x47\x4f\x33\x3e\x79\x3a\x42\xf4\x52\xc8\x57\xfa\x0c\x08\xb7\x08\x29\x5c\xf4\x9c\xc9\xfc\x13\x0b\x25\x4c\x4e\x8c\xc1\x6e\x62\xc3\x6d\x90\x27\x80\x36\xc4\x0c\xa7\xd0\xbe\xdc\x11\xf4\x3d\x86\x81\x27\x31\x9d\x4a\xb3\xcc\xeb\xc1\x31\x34\x96\x0b\x7c\xcf\xeb\xcd\x69\x63\xbf\xfb\x7d\xad\x2a\x11\x55\x9f\x18\x55\x6d\xae\xb9\x26\x8c\x3e\x45\xf1\x61\x64\x51\xe2\xdd\xe2\xcb\x60\xa8\xd8\xea\xa9\xfc\x50\x71\x4e\x92\xa5\xb3\x13\x52\x50\x71\xf0\x1a\x56\xfc\xa7\x7f\xae\xc0\x65\x16\x04\x5e\x54\xc2\xbe\xac\xbe\x55\x80\x59\x1e\xc5\x29\x49\x4a\xa0\x33\xf1\xbb\x16\x88\x5c\x3e\x63\x26\x8b\x90\xc9\x4b\xf8\x13\x6f\x71\x5b\x5b\x6b\x09\x29\xe2\x8f\xf4\x22\x5e\x54\x95\xde\x6a\x1f\xdb\x95\x39\x4f\x3c\xa5\x30\xb4\xd6\x16\x7e\x6c\x5b\x40\x68\x71\xf3\x42\x8a\xa8\xd6\x0a\xe9\x1a\x53\xe1\x39\xd1\xde\x16\x44\x44\x36\x76\xc3\xea\x2a\xa6\xed\x00\x9e\xc6\x69\x00\xf6\x34\x4e\x5d\x70\x1f\xad\xc6\xad\xab\x3e\x04\xba\x24\xb1\xfb\xa7\x97\x89\x66\xb4\xbc\xe4\x71\x5a\xd0\x3c\x25\x09\xb0\x22\xcb\xc9\x8c\xe2\x65\x88\x58\x31\x72\xc7\x82\x69\x9c\x50\x56\xf2\xa2\x28\xe3\x5b\xf0\x1f\x9f\x75\x3e\xc3\x74\x57\x64\x11\x27\xb1\x53\x38\x4b\xb2\x6b\x92\x08\x6a\xec\xc5\x39\xc9\x16\x8b\x2c\x7d\x83\xa6\xf2\x26\xc9\xf3\x01\xee\x97\x87\x3b\xc2\x59\x17\x71\x9a\xe8\x8f\xf4\xf1\x8a\x72\x63\x14\xf5\xe5\x2f\xad\xf0\x25\x0f\x47\xc1\x7f\x3a\x38\x72\x53\x4f\xf2\xf5\xcf\x51\x8e\xe2\x31\x86\x5d\x70\x8c\x41\x3f\xe4\x7d\xbc\x12\x35\x48\x6c\x57\x5f\xe0\xe5\x50\xa4\x7c\x31\x26\xf1\xef\x54\x8c\x54\xf3\x86\x6e\x3c\xc7\xf1\x1b\xba\x81\x63\xfe\xb7\xb5\xf7\x94\x0e\xbf\x57\xfc\x1c\xd1\x69\xb4\xf8\x99\x88\x3a\x19\xc5\x96\xf1\xe4\x46\x5e\x37\xe0\x1c\x4f\xf3\x6c\x81\xbf\xe3\xfe\xa8\xa0\x8a\x7c\x03\xa3\x06\x4d\x3b\x64\x85\x49\x4d\xd2\xce\xec\xba\x31\x06\xc2\xc0\xfe\x88\x3f\x34\xda\x22\x79\x0b\x2c\xb2\x8f\x7c\xef\xc9\xb3\xd5\x4c\x5e\x6a\xc4\xac\x50\x5b\x09\x25\x93\xb9\x6a\x40\xa8\x0a\xfc\x2b\x12\xb0\xc8\x58\xa1\x36\xa5\x09\xdf\x73\x12\x4a\x58\xd1\x86\xeb\x55\x21\x71\x0a\x9f\xaf\x94\x7e\x2a\x04\xa5\x10\x17\x74\xc1\x27\x2a\x2e\x1a\x0c\x88\xd8\xb5\x4b\x0c\x1f\x49\x1e\x93\xb4\x80\x62\x4e\xc4\xb6\x35\x59\xe5\x39\x4d\x0b\xc8\xb3\xac\xb0\x18\x70\x9e\x65\x4c\x0d\x79\x4a\x16\x94\x39\xbc\xc7\x99\xc6\xe4\xbf\x0f\xe6\xaf\x9c\x2c\xfb\x86\x91\xe3\xb3\x6e\x22\x97\x49\x5c\x68\xd7\x10\xeb\x79\x9c\x50\xce\x93\x3f\x63\x3a\x1c\xa6\x78\xd6\xe2\x32\xac\x06\x47\x0e\x7b\x60\x1d\xce\x95\x2a\xc3\x44\xc7\xf6\xef\xfe\x00\x47\xa2\xb6\x73\x95\xab\x88\x0e\xa3\x85\x03\x18\xd8\x8f\x0b\xa9\x1a\xfc\x9f\x63\xfc\x47\x6b\xda\x1b\x93\x24\xbb\xf8\x01\x1e\xbb\xf9\x87\xab\x61\xc2\x74\x2f\x24\x92\x04\x08\x8a\xcb\x84\x22\x1f\x5a\xf2\xb6\xa1\xe3\xdc\x3a\x82\x5c\xaa\xae\xe9\x4a\xff\x63\x98\xb1\xf6\x0a\xda\xf2\xb9\x5b\x97\xfd\xf7\x78\x53\xab\x32\xa5\x9a\x3f\x3e\x82\x0f\x21\x38\x43\xde\x61\x57\xdb\x58\xb7\x25\x6a\x75\x60\xe0\x54\x0b\x75\xac\xd7\xf3\x2e\x09\x06\xd7\xe8\x3d\x29\x98\x9f\x00\x9b\xa3\x5e\x4c\x73\x6d\xd1\x61\x2e\xc4\x98\x41\x96\x52\x2f\xea\xeb\x9c\x92\x9b\x7d\xc6\xea\x43\xa7\x53\xeb\x83\x72\x70\xe0\xbb\x4d\x55\xef\x7e\x1a\xfb\x02\x78\x63\xd6\x4a\xb6\xe0\x7c\x69\xaf\xcc\x2c\x91\xa5\x20\x3c\x3d\xcd\xf5\x46\x92\x98\x30\x1a\xbd\xa5\xff\xb5\x8a\x73\xf3\x5d\x09\xf1\x06\xed\xf3\x38\x8d\x80\xa8\xe1\x5a\x93\x0d\x17\x33\x39\x9d\xc5\x8c\xff\x4e\xd2\x08\xdb\xe7\xc7\x0a\x4d\x62\xa2\x9c\x7b\x9d\x45\xd4\xd0\x16\x3d\x8b\x9f\x8d\x38\xc9\x63\x3c\x0a\xac\xd2\x88\x4e\xe3\x94\x46\x36\x5b\xc8\x2c\x41\x8b\x2c\x5a\x25\x54\x64\x62\x2a\x61\x1d\xcf\x7d\x09\xe5\xfd\xda\xa5\x9f\x96\x59\x5e\x54\x07\x1c\x27\xf8\x2d\xdf\x78\xf8\x48\x1f\x41\x7d\x3a\xba\x57\xe4\xfa\x3a\x77\x39\xc0\x1c\x53\x74\x15\xb0\x46\xd7\x0f\xd9\x6c\x74\x7b\x62\x58\x7a\x0d\x38\x40\x79\xe7\x59\xcc\x42\xbf\xff\x45\xa3\xa3\x59\x12\x68\xfb\x3a\xc1\x04\x6f\xce\x9b\xde\x75\x8f\xbe\x1a\xf9\x0d\xdf\x95\xc4\xe1\x62\x95\x46\x7c\x72\xc9\xc7\x2c\x8e\x20\xa7\x4b\x8a\x59\xe8\xf9\xe9\x88\xa6\x2c\xfe\x48\x51\xc9\x51\x9d\xe1\x8a\x75\x02\xfc\x20\x85\x07\x95\x78\x36\x87\xa7\x6f\xde\xf9\x1a\x59\xcf\x69\xaa\x9d\x94\xa6\x9c\xa1\x68\xda\x79\x77\xde\x06\x9a\x5e\x89\x7f\x3a\x2b\x86\xca\x07\xfd\x48\xf3\x8d\x0a\xce\xe0\x2d\x04\xa4\x61\xc9\x37\x42\x9e\xf2\x66\xd0\x6f\x7b\x41\x49\xaa\x75\x67\x5f\x7d\xc3\x40\x6a\x6b\x03\x17\x5c\x08\x54\x8e\x6f\x71\x92\x08\x96\x97\x72\x99\x2f\x01\x7c\xc8\x82\x51\x11\x17\x24\x58\x44\x5d\x09\x00\xbc\x9c\x2a\x4c\x69\x56\x3d\xf2\x00\x24\xa7\xb0\x24\x8c\xd1\x08\xe2\xb4\x0d\x71\x21\x50\xb3\x78\xb1\x4c\x36\xd5\x8d\x4e\xb5\x2d\x0b\xbc\x0a\x97\x6c\x9d\xeb\x38\xa6\x38\xf0\xf0\xc7\x0d\xdd\xc8\x17\x8b\x9d\x7d\x3b\x22\x05\x31\xe3\x26\x2c\x8d\x0a\x4a\x2f\xb9\x77\x6a\xcd\x35\x25\xaa\xc0\x63\x19\x84\x2f\x13\x15\xb6\x80\xe8\xf6\x74\x91\x93\x75\x45\x2b\x1e\xd2\x6d\x21\xea\xd0\xc8\x11\x84\x38\x1d\x1d\xf3\xbb\xd1\x2a\x27\x7c\x94\x94\x6d\x5a\xe4\x07\xe7\x25\xd5\x07\x73\x48\xd4\x1f\x7d\xe1\x7b\x81\xc2\x01\xe0\x55\xa2\xb3\x49\x96\xb2\xcc\x2b\xc3\x54\x51\x77\x4d\xf2\x34\xbc\x99\xf1\x52\x61\xb3\x88\xa7\x7e\x5e\xe2\xda\xa0\xa6\xba\x4e\xd0\x00\xc2\x17\xc4\x35\x05\xfb\xa1\x15\xf5\x47\x6f\xdb\xbf\xab\xf3\x3f\x0d\xd9\x79\x2e\x9b\xb8\x82\x7d\x00\x8d\x6a\xa5\x75\xe1\x24\x8e\x60\x93\xad\xf8\xe2\x9d\xf1\x95\x90\x89\x55\x12\x17\xc7\xfe\x6c\x52\x1e\xd1\xb6\xc7\xfb\xe3\x9e\x5d\x51\x17\xc3\xf6\xde\x68\xf0\x92\xc8\xa7\xe8\x9a\x18\xf9\x04\xc9\x63\xdc\x9d\xa3\x70\x38\x84\x4f\x5d\xe5\x7f\x96\x84\x2f\xcf\xd2\xf4\x50\xd9\x21\xcc\x0e\xca\x0b\x0f\x4e\x2b\x17\x5b\x64\x61\xed\x07\x95\x92\xa6\x84\x5b\x20\x34\x03\x30\x85\xd9\x32\xa7\x13\x52\xd0\x73\x2e\x2e\x68\x20\x5c\x55\xef\xfd\xd9\x47\x9a\xe7\x71\x44\x43\xa1\xa8\x2b\x46\xd5\x52\x10\x2f\x98\xcb\x41\x13\x24\xbd\x36\x86\xae\xc8\x60\x32\xc7\x18\x95\x50\xb8\x26\xa2\x24\x29\xd0\x4f\x31\xc3\x4d\x44\x49\x43\xb5\x0e\xf5\x79\xd1\x9b\xa8\x45\xa8\xda\x97\x66\xbd\x2c\x4d\x36\x9c\xad\x57\x9c\xef\xf9\xee\x81\xde\x83\xe2\xbd\xa1\x94\xae\xd5\x12\xa8\x45\x79\x4e\x29\x3e\xcf\x32\xec\xf5\x04\x69\x1f\x18\x3e\xbd\x35\x5b\xc5\x11\x65\xbd\x7f\xc3\x15\x17\xa7\x33\xd6\x13\x24\x77\xe4\x06\x8d\xed\xe1\x79\x2a\x4e\xa7\x59\x77\xaf\xd0\x63\x8b\x51\x8c\xc9\xee\x5e\x4d\x3c\x3c\xa3\x05\x08\x4a\xf6\x11\x38\xe4\x4a\xac\x61\x10\x9d\x9b\x3c\x55\x6b\x99\xab\x86\x56\x1f\x2a\x3f\xe9\x50\x27\x12\x21\x70\xac\xf1\xa0\xf7\x8c\xa3\xd9\xbf\x5d\x3d\x09\xf6\x26\x4c\xf7\x4e\xda\x15\x05\x77\x4c\x93\x8e\x77\x78\xea\xe8\x02\xc7\x2a\xe4\x9f\x2c\x37\x59\x82\x41\x6a\xb0\x64\x0f\xdc\xc2\xa9\xb3\x9e\x44\xce\xa1\x43\x91\x8e\xb6\x16\x4e\xe0\x1f\x3a\x29\xfc\x1d\x82\x03\x93\x0a\xbe\x04\xa3\x4e\xe5\xbd\xb7\x0d\xf0\xa9\x8b\x74\x0d\x92\xd9\x16\x34\x9f\x49\x49\xcd\x9a\x3a\x87\x94\x82\xae\xf5\xc8\xd5\x31\xac\x21\x45\xbc\xe1\x53\xbb\x09\xd7\x9d\x66\xf9\x33\x32\x99\x37\xab\xeb\xaf\x4f\x21\xf6\x30\x24\xe4\xa7\xae\xd8\xbb\x3e\x75\x25\x65\x9e\xb5\x56\xaf\x1e\xf5\x7a\x70\x4d\x26\x37\x6b\xbc\x0f\x12\x17\x37\x28\xc2\xd2\x6c\x3d\x04\x92\xb0\xac\x54\x5f\x05\xe1\x76\x65\xf4\xea\x46\x7f\xde\x35\xb5\x40\xe1\xc9\xf3\x8b\x67\x6f\xf1\x04\x38\x99\xc7\x49\x54\x9e\x01\xd1\xdd\xfb\x9a\xd2\xd4\x46\x26\xbc\xbc\xa3\x36\xb0\x8c\xa3\x5b\xa3\x73\x38\x4d\x23\x58\x2d\x61\x1d\x17\xc2\x2a\xa6\xe3\xe2\x2d\x76\x0d\x2c\x1e\x2d\x57\x9e\x97\x0c\xb0\xb0\x7e\x0f\xa1\x35\xde\xeb\xf1\x0d\x65\xba\x4a\x70\x7c\x0a\x8a\xfb\xd7\x37\xe6\xd4\x24\xb4\xa0\x21\xa4\x10\x62\x62\x7f\x70\x82\xb1\xd9\xee\xa5\xa1\xdc\x5a\x41\x29\x16\xcb\x57\xb7\xd7\x5d\xf6\x53\x4e\xb8\xea\x6a\x6e\x64\xfb\xee\x50\xbd\x1e\xbc\xc3\xbe\x57\x4a\x82\x31\xe5\x71\xda\x41\x63\x6d\x75\x24\x5d\xd0\x45\x96\x6f\x3a\x09\x25\x37\xac\xfe\x5c\xd8\xc5\xc7\x9c\xf4\xf5\xed\xdd\x6c\xf5\x85\xae\xe3\x0a\xca\xfe\x5e\x0f\x4e\x9f\xbd\xfd\xe5\x59\x78\x88\xcd\xfd\x2c\x70\x84\xc7\x13\x41\x59\xe3\x76\x3b\x71\x59\xaf\x66\xdb\x75\xbe\x4c\x54\xed\xdd\x32\x6f\x17\xb5\x01\x05\x59\x1b\x21\x9d\xa3\x21\x66\x78\x8c\xaf\x53\xd0\x42\x78\xce\x69\x81\x91\x02\x5c\x4a\xa8\xd3\x31\x8a\x14\x82\x5b\x11\x34\x45\x28\x35\x93\xab\x2d\x48\x4e\x69\x56\xc2\xf8\x82\x75\xcc\x68\xab\x1b\x3a\x06\xd5\x6a\xe8\xfe\xb1\x2d\xf5\x18\x6d\x6b\x09\x8e\xa5\xd4\x3c\x8c\x35\x72\x54\x27\x49\xc0\xb3\x87\xf9\xac\xb4\x5f\x53\xdc\x87\x65\x6b\xd9\x5a\x40\x70\xf2\x33\xa8\x10\x0b\x38\xdb\x82\xeb\x8a\x0c\x56\xa9\x60\x8a\xb6\x2d\x5a\xd9\x97\x1f\x81\x1c\xe0\xbd\x25\x4f\x78\x4c\x7d\x98\xc2\xfa\x27\x72\xe1\xd1\xd1\x91\x6f\xc0\xbc\xc6\x91\xfd\x07\xd8\x9c\x5a\xe7\x4b\x75\x2c\xd8\x7b\xb8\x60\xaf\x8d\xcb\x6d\xef\x4b\xad\x66\x2a\xbf\x81\x5c\x1e\x11\x29\x88\x63\xa7\xf2\xdf\xe1\x55\x5b\x99\x95\x41\xed\x86\x6e\xf8\x76\x73\x43\x37\xa5\xb5\xc6\xfc\x55\x58\x02\xec\xde\xf3\x6a\x47\x2e\xd8\x23\x9f\x79\x01\x95\x7a\x8f\x05\x2c\x68\x8c\xf7\xd5\x57\x99\xbf\x39\x1e\x37\x40\x0e\xc3\x53\x3a\x93\x38\x9f\xac\xe2\x42\x18\x3c\x8b\x39\xda\x59\x13\xcb\x9d\xda\x77\x42\x72\xcd\x69\xf5\x97\x3b\x35\x17\x3b\x9f\x3d\xa3\x34\xba\xa1\x1b\x7f\xb2\x35\x89\xc8\xb8\x09\xac\x88\x71\xee\x24\x62\x26\x67\x97\xf9\x7c\xf5\x6f\xe8\xa6\xdc\x92\x03\x18\x26\x73\x3a\xb9\x39\x93\xaf\x61\x9b\x49\xab\xf1\x56\x43\x96\x58\xb7\x19\x7c\x8b\xeb\x5e\x11\x8b\x71\x08\xe7\x13\xdb\x13\x6f\xd1\xea\x2a\x24\xb8\x88\x3b\x87\xf6\xf8\x55\xc5\xce\xb0\x92\xd1\xe9\xd9\xeb\x8b\x17\x63\xf8\x19\xfa\xb0\xdd\x56\xbf\x3f\x86\x81\x7b\x39\x05\x18\xeb\x8a\x10\xde\xb2\x21\x90\xd1\xc9\x93\x8b\x67\x1c\xdd\x40\xa0\x13\xbf\xaa\x17\x41\xd1\xfd\xa2\x49\xc4\xcb\xf1\xed\xb2\x35\x7f\x1e\xf7\x63\xe0\x95\x83\x0d\x09\x07\x38\x41\x77\x40\x42\x29\xa0\xc7\x70\x78\x3f\x0c\xd5\x54\x60\xd2\xc5\x38\x70\x99\x57\x02\x2b\x2f\xba\x3b\x47\x47\x75\x8d\x57\x44\x28\x07\xba\xbd\x2b\x9c\xbe\x7c\xf5\xea\xa5\x51\xab\x15\x1a\x22\x4e\x79\x70\x88\x14\xa5\xd5\xe4\xca\x0f\x8f\xe1\x87\x9f\x42\xb3\x8b\x20\x41\x94\x8a\xaa\x12\xa5\xfa\x50\x83\x52\x80\xd4\x50\xa9\xf5\x56\x23\x55\xfb\xfa\x18\xf4\x17\xc0\x6d\x82\x4b\xc0\x40\x13\x9d\x81\xe7\x14\xe0\xc0\x7a\xd6\xd5\x95\x5a\x39\xd5\x33\xb1\x1e\xe6\x68\x96\xeb\xeb\x67\xe0\x8c\xcd\xe9\x2f\x3f\x3d\x46\x26\xde\x9d\x58\xab\x5a\xa3\x58\xa1\xf6\x9e\x75\x8a\x2a\x63\x90\x58\x7c\x22\x99\x4b\x0a\x53\x2c\x78\x93\x9c\x6a\xcd\xbe\x7f\xf6\xec\x3f\xfe\x6c\xb3\x11\xd9\x7c\x59\xc3\x27\x4f\x7e\xad\xd5\x03\x6b\x85\x5e\x89\xac\x4e\xe0\x2f\xec\x8d\x3d\x66\x19\xfc\xf8\xa0\x3f\xd0\xf2\xdf\xf5\x7a\xd0\xef\xf7\xfb\x1d\xfc\x9f\xf8\xf1\x7d\xbf\x0f\x59\x5e\xfe\xdc\xe9\xc3\x01\x5c\xc0\x01\xa8\xcf\x43\xed\x07\xeb\xe7\x6e\xbf\xcf\xa1\x0f\xca\x82\x03\x8e\x45\xfe\x20\x38\x82\xef\x00\xf4\x53\x41\xd3\x88\x46\x2f\x59\xa6\x42\x33\x7b\xff\xbc\x64\x77\x9b\xcd\xe3\xe1\xe8\xa0\x33\xbe\x8c\xfe\x78\xf0\x79\x7b\x19\xfd\x71\xff\x73\xab\xd3\x3c\x1e\x5e\x46\x97\x51\x87\xff\xb5\x7d\x2f\x7f\x14\x3f\x6c\xf9\x5f\xf2\x9f\x56\xab\x79\x3c\x6c\x5e\x6c\xa1\xd5\xe4\xbf\x36\x8f\x87\x43\xeb\xdf\x51\xb7\x3d\xbe\x8c\x0e\x5a\xc7\xf8\x5f\x53\x34\x24\x20\x8e\x11\xc3\xf1\xf6\x92\xdd\xfd\x8d\x97\x7e\xdb\xab\x36\xa7\x6b\xc2\xe2\xc9\x3e\x94\x4a\x42\x2b\x3a\x7d\x64\x6e\x5d\x3a\xcd\x7f\xbe\x90\xca\xe2\xf7\x92\xbe\xdf\xb6\x9e\x4a\x1a\x68\xcc\xb2\x13\x52\x88\xf4\x03\x06\xc7\x8d\x1a\xbf\xe2\x9f\xce\xe9\x69\xe7\xe4\xa4\xd1\x86\x5e\xd9\xc5\x4e\x39\x05\x3d\x2b\x63\x81\xa8\x54\x55\xc1\xb1\xa8\x03\xff\xe5\x97\x5f\x7e\xe9\x8c\xde\x8f\xdf\xbf\xef\x3c\xab\x2a\xa8\x89\xad\x83\xb7\xa0\x7b\x32\xe8\xcc\x4f\xd0\x89\x49\xce\x1f\xf7\x3e\x07\x29\x37\xc9\xae\x45\xfb\xeb\xaf\xa7\xa7\xc6\xd0\x0c\xfa\x01\xbc\x0a\xee\x32\xfa\xe3\x47\x0f\x08\xef\x15\x76\xaa\x1a\x83\xf7\x01\x2a\x4b\x50\x03\xf2\xf0\x73\x2d\xa1\x55\xf7\x1f\x06\x09\x94\x00\x0f\xea\x31\x95\xad\x7a\xa0\xc6\x86\x0f\x37\x17\x2f\x45\xbc\xa0\xd2\x09\x80\xe1\xfd\x3a\x8a\x1a\xca\x74\xee\xbb\x88\x17\x5e\xee\x7b\xf1\x62\xb8\x58\x0c\x19\xeb\x9e\x9f\x9f\x9f\x8b\x66\x2f\xa3\x61\xf9\xd7\x65\xf7\x32\x3a\x70\xfb\xa2\x6a\xb5\xfd\xb5\xda\xb5\x95\x5c\xf8\x00\xac\x01\xe8\x83\x59\x2c\x2c\xc2\xcb\xff\x42\x64\xf3\x1a\x6d\x5f\x8d\x10\xc9\x32\x00\xc3\x80\xf5\xc3\xe9\x50\x3e\x08\x55\xde\xf3\xcf\x25\x61\xcb\xd7\xb4\xf8\x07\xcb\x52\x4d\xe8\xf5\x8e\xb9\xd4\xb8\x6c\x36\x3b\xc7\x5c\x3e\x59\xfe\xfb\x6f\x9f\x3f\x85\xc3\x1f\x0f\x0f\xc5\x7c\x0f\xe1\x79\x96\x43\x44\x0b\x12\x27\x0c\x98\xbc\xa8\x63\xc3\x5e\xaf\xc8\xb2\x84\x75\x63\x5a\x4c\xbb\x59\x3e\xeb\xcd\x8b\x45\xd2\xcb\xa7\x13\x5e\xf5\xdf\x18\xc5\xf3\x43\xe7\x5e\xf7\x5e\xb5\x95\x89\x32\x24\x81\x0b\xce\xd3\x2c\xdd\x5e\xac\xe8\xf6\x3d\x8d\xb6\x17\xf3\xd5\xf6\x79\x1e\x6f\xcf\x49\xb1\x3d\x5f\xa5\xad\xf6\xf1\x25\x6b\x1d\x37\xf9\xaa\x6c\x1f\x7e\x6e\x5d\xb2\xe6\x3f\x48\xba\x7d\x4e\xaf\xb7\xa7\x24\xdf\x3e\x59\xe6\xdb\x53\xb2\xd9\xfe\x63\x95\x6e\xff\xb1\x4a\xb6\x4f\x56\xb3\xed\x39\x5d\x6e\xcf\x26\xc5\xf6\x75\xf6\x71\x7b\x42\x27\xbc\x0a\x5f\x5a\xed\xfb\x9f\xc5\x8f\x97\x51\x6b\x28\xfe\xe1\xa2\x54\xfc\xd4\x3a\xbe\x64\x9c\x92\x77\x17\xdb\x5f\x4e\x2f\xb6\xa3\x67\x4f\x4f\xdf\x8c\x47\xe7\x27\xe3\x8b\xd6\xb6\x39\xfa\xed\xf7\x31\xff\x47\x08\x87\xfb\x9f\x5b\x2d\x5d\x48\x67\xd7\x4c\xbc\xb5\xcd\x0c\x3f\x77\xfe\xe7\xdd\xc5\xd0\x76\xc2\xfc\xe5\xd4\xfd\xf6\xec\xe4\x62\x08\x9d\xfb\x70\x17\x1e\xd8\x25\xe7\xbc\xe4\x07\x4f\xc9\xd3\x93\x60\x09\xd6\x79\xe0\x29\x39\x3d\x09\x96\x60\x9d\x87\x9e\x92\x37\x27\xc1\x12\xac\xf3\xa3\x55\xa2\x79\x69\xa3\x2d\x19\x3d\x65\xb9\x0c\x11\xe2\xc3\x3a\x53\xa2\x41\xea\x79\x9e\x2d\x5e\x9e\x9f\x35\xfd\xb1\x46\x96\x13\xb5\xe5\x2e\x27\x5d\x03\xab\x10\x47\xdb\xe7\x1a\xfd\xad\x8e\x1c\xe5\xa4\x4b\x3f\xd1\x49\x53\xd4\xc6\xb4\x0a\x86\x42\x60\x94\xda\xfe\x79\x49\xb6\x16\xbe\xfc\xfa\xe7\xc8\x13\x97\xc0\xff\x70\xc9\xe9\xfd\xfe\xbb\xf8\x6a\x1d\x8c\x91\x5c\x5b\xcd\x0c\xbe\xfe\xc8\xb2\x32\x5c\xcd\xa8\x50\x79\x8d\xb7\x21\xc1\x97\xcf\x84\x6e\xa0\x3c\x6a\xd1\x95\x3c\xf1\xe6\x0b\x82\xd2\xbb\x48\x54\x19\xc5\xe3\xd1\x60\x2c\xc6\x03\x89\x1b\x0d\xc6\x41\x53\x5a\x35\x08\x5a\xa3\x1c\x43\x3f\x70\x59\x5a\x0e\xa6\x05\x7f\x28\x4e\x8b\xb8\x31\xf9\x6b\xee\xe5\xeb\xe9\xea\xfd\x3a\x85\x61\xd3\x5c\x15\x3d\x8b\x29\x4a\x21\x48\x89\x50\xc9\x77\x1d\x36\xc4\xb8\xdd\xf3\xde\x4a\x7a\xa6\x0a\x37\xd2\x3d\xa7\x0a\xaa\xe9\xc2\x6a\xee\x74\xdd\x0b\x4f\x17\xa8\x9b\x44\x0e\x77\x38\xd6\xa2\xc9\x1a\x17\x0d\xae\xde\xb3\x25\x99\xf8\x6f\x03\xc0\x60\x6d\x38\x52\x9d\x3c\x1c\xf3\xb5\xd4\x00\xcc\xb1\xa2\x13\x15\xe2\x00\x08\xcf\xa5\x3b\x98\xfe\x2f\x78\x1d\xa2\xd1\x52\x6f\x72\xdd\x7b\x6e\x21\x30\xbf\x2e\x11\x9e\x94\xf0\x15\x63\x7f\xff\xbd\x3e\x50\x35\xf6\xe0\xbf\x84\xe9\xee\x7b\x99\x0e\x47\xec\x77\x4d\xd2\x95\xc0\xa1\x51\x53\xe2\x0a\x8e\xa0\xf1\x5b\xe3\x96\x8e\x25\x7f\xf9\x90\xab\x06\xa6\xc2\x0f\x50\x0d\xf6\x81\xc1\x17\x9c\x2f\x91\x2d\x9b\x65\x67\xc4\x27\x9f\x57\x18\xdf\x92\xce\x51\xfc\x3f\x49\x65\xfe\x0f\xf7\x0e\xc9\xdb\xe9\x9d\x9d\xf5\xdf\x3a\xd3\x4f\x18\x63\xc8\xdb\x7d\xfb\xfc\x29\x57\x8e\x44\xf3\xac\xb2\xef\x6c\x28\xc9\xcf\x8b\xdc\x8a\x0e\x33\xbe\x44\x64\x63\xfc\x3e\xcf\x56\x56\x15\x8c\x1f\x34\x3e\x89\xa4\x29\xe7\x45\x8e\x5f\xec\xdd\x37\xa7\x6c\x95\x14\x8e\x5a\xbf\x4a\x8b\x7c\x95\x4e\x48\x41\xf1\x11\x7c\x49\x9a\xb5\x55\x86\x02\xd6\xba\xf2\x6d\x99\xa6\xea\x80\x55\xaf\x7c\x75\x57\x76\x07\x06\xfd\x10\x84\xea\x60\x0d\x48\xd5\x65\x13\x68\x6c\x6d\xbd\xe5\x38\xb8\x57\x0d\x7c\x08\x84\x5b\x4e\x89\xb5\x84\x46\xac\xfe\x17\x5e\xa4\xc1\x46\xd4\xf7\x1b\xd5\x03\xe3\x68\x4d\x02\xff\x5c\x26\x7d\x4e\x0b\x05\x66\xbd\x47\xcc\x3b\x81\x90\x3f\x1f\xc1\xfd\x9f\x02\x17\x26\x87\xc2\x96\xc3\xe1\x1c\x46\xd6\x11\xfc\xf4\x53\x08\xc3\xe0\x27\x1f\x06\xbb\xd3\x55\xb1\xf3\x1e\x71\x4e\x97\x79\x36\xa1\x8c\x49\x46\x6f\x32\x2b\x7a\xfa\x2d\xc5\xe8\xa9\x49\xb6\x90\xce\xb4\x69\x04\xd3\x2c\x89\xb8\xa2\xb7\x9e\xc7\x05\xc5\x7d\x49\x9e\x43\x85\x4b\xc2\x62\x95\x14\xf1\x32\xa1\x1d\x2c\x62\xc2\x69\x85\x00\xd7\x99\x12\x6a\xed\x63\x92\x42\xf3\xa6\xb3\x8c\x44\xeb\x5d\x36\x47\xff\x6c\x8d\xef\x5e\xb6\xb6\xa3\xcb\xf4\xb2\x18\xf7\x66\x6d\xdc\xd0\x02\xe0\xcd\x4b\x76\xc9\x0e\x5a\x3b\xa0\xfe\xc9\xa1\xee\xf6\x30\x0b\x61\xa8\x5d\x0e\xf1\x6d\x4f\x7b\x43\xc3\x7b\x03\xa3\x32\x7e\xcb\x80\x4b\x64\x03\x64\x8c\xe8\xa5\x08\xdc\xf7\x3b\xab\x54\xe0\x9e\x0c\x91\x22\xb0\xe4\xad\x1c\xcb\x62\x4e\xe1\x23\x49\xe3\x24\x21\xf0\x8f\x73\xe0\x4a\x19\x64\xd7\x1f\xe8\xa4\x90\xc3\x9a\xe2\xe3\x50\x4b\xae\x4f\xa7\x05\x97\x39\x9d\x6c\xda\xe1\x0d\x08\x0a\xcd\xbb\x7c\x2d\x6f\xf9\x9b\x3c\xfb\x18\x47\x34\xaa\x72\x9b\x7a\xe2\x43\x4b\xe1\xa0\x51\xec\xba\xc9\xc8\xc2\x27\x93\x62\x45\x12\x79\xd5\xcf\x09\xf5\xfb\xdd\x6a\xe3\x33\xea\x8f\xfd\x6e\x70\x3a\xcc\x60\x0f\x98\xc3\xb1\x03\xd2\xf2\x3c\x7c\x60\x8d\x7f\x39\x04\x5c\xbd\x35\x3a\xe1\xdb\x79\x43\x8a\xbf\xac\x78\x1a\x33\x75\xbc\xa9\x72\x56\xe8\x7f\x6e\xa9\x52\xf8\x4a\x6b\x6e\x9b\xb5\x3c\x19\x36\xa3\x92\x64\xb2\x4a\x48\x41\xc5\xb9\xb8\x59\x9e\x90\xdb\xb0\x88\x93\xb8\x20\xf9\x46\xfd\x9e\xae\x16\xe2\x47\x9b\x61\xcb\x3a\x01\x31\x54\x9d\xba\x47\xe5\x8f\xae\x27\x19\x6a\x42\x46\x93\x1e\xf6\xe7\x0c\x8f\xae\xcb\x22\xe4\x2c\x2a\x89\x84\xe2\x77\x88\x19\xfc\xe6\x6b\xbf\xbf\x43\x0f\xe0\x7c\x3f\x5f\xe8\x52\xbb\xec\xaa\x67\xb7\x02\x7c\x3a\xfa\x88\xd7\xf8\x0e\x06\xfd\xbe\x5b\xca\x67\xb9\x39\x5f\x40\x07\x16\x2d\xe8\x71\x18\xaf\x87\xdb\x1c\x8f\xe3\x70\xa0\xae\x09\xc0\xd6\x38\xd4\xb9\x1c\xa3\x64\xd0\xac\xc7\x0f\xe8\x39\x9d\x0a\x43\x4f\xfd\x29\x5d\x49\x6c\xff\x49\x5d\x31\xa3\xb4\xee\x08\xd5\xd2\x15\xf7\x25\x57\xb6\x7c\x5b\x76\x84\x57\xf5\x8f\x76\x9f\x8a\x35\x68\x71\xbe\xdf\xa5\x3f\x95\xe3\x2c\x95\x5d\xcf\x0c\xc8\x13\x53\xa8\xe4\x30\x58\xf2\x43\xb0\xe4\x41\xb0\xe4\xa1\x29\x41\x3c\x42\xe3\x8e\x21\xf1\xd5\xf1\xbb\xad\x77\xbd\xf2\x98\x0b\xfa\x1a\xd4\xde\x47\xa9\xc9\x20\x8a\x53\xed\xf1\xd7\x81\x8a\xdf\x31\x99\x94\xb5\xba\x05\x5d\x3f\x8e\x65\x3a\xae\xd1\x4f\xe5\x4f\x83\xfe\xd8\xf6\xff\x54\xa8\x22\x3d\xb7\x30\x97\xdc\x32\xb1\x22\x06\x44\x56\x54\x79\x95\xf3\xee\x55\xd4\x65\xf8\xf0\xcc\xa9\x4c\x88\x57\x7d\x9f\x19\xdf\x5b\xd0\xd1\x89\xb7\x89\x09\xc9\xd7\xca\x3c\x69\xca\xd5\xaf\xa0\xf0\x1b\x66\xb1\x41\x0b\x9e\x9c\xbf\xe9\xbe\x7e\x76\x81\xa9\x0d\x5f\x9e\x9f\xb5\xe1\x5e\xab\xb2\xba\x4a\x8b\x7b\x9b\x9f\xc5\xef\xb7\x20\x5b\xf2\xe5\x48\x12\xde\x40\x72\x4d\x26\x37\x9c\x49\x96\xa2\x03\x10\xb3\xb4\x51\xc8\xf7\x95\x42\xcb\x57\x2c\x89\xba\xd5\x8b\x9b\xb3\x65\x28\x16\xeb\xb8\x5a\xb5\x9e\xb5\x29\x37\x34\xdf\xd1\x56\x9f\xf0\x72\x97\x3e\x90\xb5\x46\x4e\xb4\xb6\xcd\xb2\x1a\xbb\x7a\x8d\x85\x26\x31\xce\x5c\x28\x23\x92\x4d\x95\x74\xbc\xb2\xe0\xf7\xca\x83\xb2\x83\x36\x4b\x44\xfe\x8b\xd0\xa7\x37\xee\x7f\x6d\x7a\x37\x1b\x07\x5c\x0c\x9f\xc7\x9c\x25\x49\x51\xd0\xc5\xb2\x40\x7f\x42\x10\x89\xee\x9e\x4b\x2e\x35\x2a\xcc\xb3\xec\x86\x75\xc5\xca\xc7\xa9\xe4\xa0\x0a\xd2\x73\xc4\xd6\xd7\x4e\x6d\x5d\x54\x2a\x65\x0c\x56\x25\xf3\x1b\x18\xa9\x08\x4b\xa5\x76\xc5\x22\x16\x35\x4e\x81\x40\x4e\x27\xd9\x2c\x8d\x7f\xa7\x11\xc8\x49\xe3\xeb\xec\xe5\xf9\x99\x5c\x77\x2a\x36\x0a\xa3\xf1\x8a\x7c\x25\x56\x13\x5f\x7b\x0c\x7d\x39\xa1\xc8\xe0\x03\x13\x0c\xdd\x72\x03\xa5\x1a\x22\x49\x91\x6c\x31\xa7\x49\x4c\xae\x13\x0a\x64\x92\x67\x8c\xa1\x73\xfe\x75\x9e\xad\x19\xcd\xc5\x01\xe7\x23\xcd\x59\x9c\xa5\xac\x0b\xaf\xb3\x54\x11\xd4\xe3\xd4\x08\x79\xa1\x2e\xdf\x72\x37\x7e\xaa\x11\xc5\x6c\x92\xad\x72\x32\xa3\x11\xe2\x42\xcf\xdc\x6b\x0a\x39\x1e\xa4\x22\xec\x6e\x0a\xab\xe5\x24\x5b\x88\x5c\xe0\x1f\x32\x7e\xb2\x4f\x28\x61\xb4\x0b\x6f\xf0\x5f\xae\x02\xd0\x9c\xf7\xc9\x41\xbf\x5f\x38\xd6\x07\xd6\xe1\x94\x3a\x81\x58\xd5\xf6\x57\x05\x59\xb8\x12\x08\x42\xa2\xa2\xe4\x4b\x38\xa8\x58\x78\xc5\xa8\x78\x87\xac\x01\xef\x2e\x9e\x62\x2e\xa2\x46\xcb\x61\x1b\x3d\xab\xa8\x4a\x20\x32\x8d\x73\x56\x40\xe9\x80\x3c\x85\x62\x9d\xf1\x69\x2f\xe6\x39\xa5\x55\x00\xa7\x15\xc2\x2b\x8f\x2b\x0c\x5f\x21\x68\xc3\xc4\x56\x56\x49\xc8\xb0\x27\xb5\x32\xe2\x3b\x29\xf3\x8a\xd7\x3b\x2a\x5e\xd7\x1c\xb1\x27\x01\xe5\x5b\x44\x27\xf3\xc1\x13\x5e\x8f\xee\x60\xf7\x7a\x62\x2d\x61\xc6\x77\x3c\x7d\x24\x1b\x1c\x1d\x11\x8e\xcf\x35\x60\xc1\xf9\xe2\xd8\x67\x6c\x13\x69\xb6\xfe\x5f\xb8\xa6\xb4\x39\x12\x0b\x33\xcd\xd6\xc6\x83\x53\xba\xcc\x11\x13\x16\xe8\xe4\xc8\x51\x5c\x54\x23\x72\x3b\x7f\xbe\x4a\x12\xb4\x8f\x78\xb4\x66\x0b\x54\x38\xe6\xed\x86\x93\xab\xd6\x00\x1b\xd7\x0c\xf6\x48\xaf\xaf\xd1\x63\xe0\x55\x8d\x1b\x1f\x45\x4b\x8e\x3b\xee\x24\x4b\x3f\xd2\xbc\xe0\x0b\x53\xe4\xc1\x28\x32\x20\xb8\xd6\xbb\x0a\xa4\x4c\x70\xa3\x2c\xf3\x8b\x38\xcf\x91\x57\x29\xdf\xf6\xc9\x82\xa2\xb7\xfd\x35\x55\x39\xc8\x30\xa2\xbd\xa0\x43\x94\x2e\x22\x46\x1b\x96\x44\xbe\x8e\x89\x96\x1d\x2e\x3e\x4a\x35\xa2\x14\x15\x92\xbd\x55\xbe\x1a\x7e\x08\x62\x05\x2c\x33\xc6\x62\x2e\xb2\x10\x53\x49\xd5\x88\x23\x6a\x0b\xe3\x63\x1b\x1f\x07\x6c\xa3\x9d\x51\x25\x27\x6b\x4b\x8b\x22\x9e\xf5\x92\x58\xfc\x32\x0e\xa9\x24\x21\x16\xf5\xdc\xfc\x45\x46\x2e\x2f\xd0\x1e\x0d\xb4\xdf\xdb\xd0\x96\x80\x59\x40\x3f\x2d\xe9\xa4\xa0\x91\x54\xa9\xcd\x42\xde\xaf\x8b\xec\x1d\xb3\xbd\x9c\x4b\xb1\xe4\x67\x5f\xbf\x3e\x50\x51\xc0\x15\xdd\xc0\x92\x7c\xa4\x3f\x5f\x27\x1f\x45\xc1\x11\xc5\x4c\x27\x72\xca\x50\x53\x5c\xa3\x2b\x1c\x4e\x98\x34\x96\x78\x49\x5c\xcb\xc0\x75\xa1\x3c\x4b\x9f\xd5\xa3\x2a\x30\xa8\x2a\x92\xde\xb1\x01\xa5\x2d\x52\x6e\x82\x7c\x8a\xf8\x60\xbd\x4c\xa7\x99\x6f\x77\xd6\xe8\x8f\x05\xcd\x36\xf9\x31\x03\x3c\xf2\x4e\xe3\xd9\x8a\x33\xdf\xaa\x80\xf5\x9c\x14\x10\x17\x10\xfb\x3b\x51\x36\x1e\x92\x8d\xe5\x44\x55\x86\xa4\xea\x08\x50\xfa\xe4\x6a\x83\x2e\x3e\xf9\x82\x07\x83\x26\x93\x8a\x08\xe5\xf2\x5b\x1a\x68\xb1\xe9\x96\xcf\xfd\xd5\xad\xcc\x15\xbc\xbe\x79\xcc\xbb\x85\x9d\xc7\xe3\xb6\xe9\x33\xf5\x58\x47\xba\x48\x32\x9d\x7e\xba\xaa\x08\xc7\xc4\xe5\x0e\xa1\x81\x73\x56\xc5\x27\x42\x32\x19\x32\x36\x54\x45\x72\x9d\x5e\x43\xc8\xc0\x00\xe3\xc0\x49\x25\x7e\x54\x6a\x8d\x4a\x0e\x4a\x98\xbb\x7c\xba\xd2\x0c\x1c\xe1\x83\x79\x68\xd2\x62\x8e\xa2\x6d\x16\x7f\xa4\x69\xdb\x90\x67\x59\x44\x36\x0e\x22\xa3\x62\xcc\xec\x7a\x12\x61\x1a\x61\x73\x4e\xed\x50\x35\xb4\x21\x79\x6b\xa8\x95\xa0\x2a\x60\x7c\xa5\xaa\x46\x52\x11\x6f\x50\xe9\x49\x56\xd2\xb7\x7b\xe6\xd2\x8d\xcb\x65\xfb\x08\x0e\x0e\xe2\x90\x16\x25\x00\x85\x8c\x14\x3f\xea\x2b\x22\xf6\x07\x15\xf4\x7a\xf0\x1b\xcd\xb3\x72\x99\xd2\x8f\x98\x63\x48\xe8\xb0\x92\x60\x1a\xb5\x21\x4e\x27\xc9\x0a\x0d\xf2\x45\xbc\xa0\x26\xe5\x75\xcf\x11\x05\x89\x0b\xae\x25\xbd\xbf\x70\x8c\xe3\x72\x74\x04\x87\x70\x0c\x03\x18\x42\xbf\x05\x43\x03\x34\xd4\xab\xa7\x73\x3a\xb9\x41\xfa\x0e\xef\x57\x5e\xad\x86\xfc\x09\x10\x5a\xe7\x52\xaf\xad\x13\x95\x91\x16\x5d\xe3\x83\x60\x65\x0a\xda\x7a\x30\xc3\x67\xdc\x94\x21\xa1\x11\x4d\xe9\xa7\xe2\x44\xbc\xd4\xeb\x08\x08\xa7\x33\x86\xf5\xd2\x3e\xc5\x0a\x05\xdc\xd5\xb5\x0d\x81\xc2\x87\x1d\x7f\xe7\xbf\xb4\xa4\xf1\xc6\x68\xd4\x4d\x6d\x85\xb3\x5d\x75\xa4\x22\xc1\xda\x96\x35\x6f\x1e\xd1\xb8\x81\xe5\x18\x6c\x6b\x0f\x9a\xdc\x0d\x98\xa1\x09\x23\x6d\xf2\x3a\x3f\x3c\xe1\x04\x97\x89\x5f\x21\x43\x53\x96\x74\x56\xc2\xb4\xc0\x70\xc1\xb5\x2f\x71\xbf\xb0\x2a\x26\xc2\xd6\x05\x13\x92\xf2\x83\x95\x48\xb6\x11\xe9\x08\xf1\x6a\x04\x2d\x68\xbf\x65\xa9\x26\xbb\xf4\x9d\xad\xf8\x7d\x11\xda\xd3\xfe\xbc\x65\xcb\x33\x9f\x7a\xdb\x92\x3f\xc2\x0b\x52\xb1\x86\x7a\x5f\x06\x9c\x35\x34\x29\xd7\xd0\x42\xde\x3c\x70\x01\x20\x65\x29\xd7\x4b\x76\x2f\xa7\x75\x20\x95\x58\x59\xde\x8d\x76\xe5\x13\xb3\x41\x2d\xe6\x09\x2e\x94\x2f\xbd\x4c\xf1\xdf\xd7\xd7\x6a\x48\x96\x1e\xbb\x6e\xe3\xe8\xfc\x8a\x5b\x17\xff\xa9\x5d\xbd\xa6\x1c\x65\x6b\xfe\xd7\xa6\x0d\x05\x5d\x2c\xcb\x02\x15\x67\x85\x6a\x0c\x47\xaf\x67\x60\xd4\xd6\xc7\xda\x3c\x6e\xad\xbb\xbf\xfc\x52\x06\x82\x6f\xb7\xb0\xee\xbe\x37\x7f\x7d\x16\xe2\xbf\x08\xe3\x0f\x06\x8f\xac\x8f\x7c\x2d\xde\x7f\xe4\x84\xb2\x8a\x0b\xc3\xf7\x14\x52\x4a\x31\x45\x59\xa1\xde\x98\x53\x1b\x78\x2c\xde\x26\x16\x7d\x16\x29\x90\x08\xdf\x41\x96\x34\x8d\x18\x64\x4e\x06\x82\x79\xb6\x86\x35\x15\x89\x5d\x97\x39\x2d\xf8\x11\x4a\x86\xd1\xb5\xf9\xfa\xe3\x0a\xe4\x27\x3c\xb1\xe3\x25\x0e\x26\x7b\x16\x02\xc8\xc6\x44\xb0\xaa\x34\xa7\x70\xce\x54\x24\xc9\xe8\xd7\x26\xd2\x8a\x98\x7b\xab\x62\xd2\x53\x4b\x9f\x33\x45\x9b\x6f\xfa\x36\x42\xd1\x0c\xc7\x6a\x85\x29\xab\x49\xd5\xd5\x50\x67\x1f\xe3\x53\xe2\x9e\x46\x6d\x6d\xd5\xad\x46\xe9\x8d\x60\xb0\xa6\x68\x1f\xaf\x4a\xf9\xd9\x72\xd0\x86\xfb\xad\xae\xa1\x66\x80\x7b\x7d\x80\xd7\xb1\x1a\x5d\xeb\xee\xfb\x36\x0c\x3c\x40\x42\xde\x6a\x70\xcf\x5c\x38\xed\x02\x53\x05\xc4\xa9\x5f\x1f\xc3\x43\x9f\x46\x6b\xb1\x71\x40\x6d\x2d\x7f\xf2\x99\x16\x05\x47\xaa\x81\x52\x81\xa2\xea\x3d\x73\x1f\xa3\x06\x60\x37\xf6\x15\x84\x58\x51\x70\x54\x33\xc8\x6a\x59\xda\x67\x06\xdf\x94\xaf\xbb\xb3\x59\xdb\x99\x51\xd5\x0c\xce\x94\x8d\xc6\xaf\xf4\x8a\x27\xc1\xeb\x67\xb1\x92\x08\x28\xb8\x7c\x67\x1a\x21\x18\xeb\xd2\x3c\x94\x6f\x7b\x77\xf8\x59\x1f\x25\x78\xba\x5a\x5c\xa3\x29\x12\xd3\xc8\xa7\x2c\x8e\x68\x4e\x23\x91\xa7\xd3\x10\xed\x2e\xef\xac\xbb\x91\x3f\x47\x41\xc5\x32\x7d\x93\x65\x1e\x84\xdc\xcc\xf6\x61\x1b\x70\x9d\xc1\xaa\xbb\xde\x75\x77\x57\x8a\x0b\x64\x0e\x7d\x04\x26\xd9\x2a\x2d\x44\xe2\x7d\x92\x17\x4c\xe8\x00\xd7\x74\x16\xa7\xa9\x4c\x3a\xba\xb3\xff\x14\x0e\xc0\xe1\xc9\x6a\x3a\x68\x39\x02\x5d\xfa\x97\xf5\xde\xdb\x59\xed\x20\x74\x9b\x1e\x39\x7d\xf1\x79\x01\xa8\x19\xd6\x25\x02\x3c\x16\x96\x0a\x79\x5a\xae\x76\xbd\x72\x3d\xed\xbb\x2b\x5b\x41\x80\x81\x9b\x38\x8d\xcb\xca\x51\x0b\x4c\xff\x5e\x0d\x45\x1e\x05\xda\x3b\xbe\x7c\xb3\xc6\x23\xae\xa5\x05\xb0\xe6\xce\x9d\x3e\x78\x6e\x46\xb9\xc1\x9b\xa7\x8b\x65\xd7\x74\xaf\x02\xbf\x71\x41\x80\x96\x1f\xc2\x57\x8e\x78\x83\x21\x53\x4b\x17\xc2\xd2\xcf\x94\xb5\xef\xe5\xf9\x19\x67\x7d\x7c\x99\x02\xe1\x85\x35\xf7\xe5\xf9\xd9\x15\x46\x15\x1e\x99\xcf\x9c\x69\xfe\xfd\x75\x58\x8d\x3b\x4c\x0d\xed\xdb\xe7\x4f\xaf\xe4\xdd\x6a\x08\x6d\x75\x3f\x2a\x9d\xfb\x85\xff\x17\x7a\x6c\x8a\x2f\xa6\x2a\xb6\xd3\x63\xd3\xb4\x7c\x0b\xdd\xe5\x54\xe4\xfc\x8e\x91\x60\xf5\xd2\xe9\x92\xe4\x85\x32\x5e\x89\xcc\x28\x59\x0a\xc8\x54\x45\x06\xcb\x9c\x7e\x44\x35\x22\xce\x27\xab\x04\x5f\xc5\x58\xfa\x0d\x58\x53\x3c\xb2\x99\xc3\xe8\xd7\xbb\x83\x97\x99\xe0\x35\x2f\xee\x6a\x4c\x0d\x6e\xb8\xb1\xe0\xed\x64\x7d\x83\xba\x97\x80\x9e\xf8\x2c\xb4\xa8\xe8\x62\x59\x6c\xdc\xd8\x04\x95\xbb\x55\x26\x7e\x66\x22\x51\x20\x3e\xd6\x71\x43\x81\xe0\x65\x42\x1b\x68\x8c\x93\x81\x07\xaa\xff\x54\x77\x0c\xff\x09\x59\x0e\xff\x89\x8e\x02\xef\x2e\x9e\xfe\xa7\xa1\x5f\x97\x31\x20\xf8\xd4\x61\x20\x10\x24\xf6\xf9\x9a\x08\x97\x39\x73\x65\x67\x37\x34\x65\x9e\x6f\x56\xdc\xc9\x4d\xbc\x5c\xd2\xc8\x17\x8c\xf2\x4a\xe4\xd3\x3e\x92\xbf\xaa\x0c\xff\x16\xc6\x42\xbe\x1e\x21\x68\x28\xeb\x58\x9e\x3f\x34\xd7\x53\x27\x08\xda\x2c\x63\x09\xfd\xb4\x24\x16\xc7\x77\xaf\xa6\x6d\x4b\x1b\x6a\x75\xf1\x74\xd3\x14\xeb\x88\xef\x77\xf8\x00\x10\xc3\xd8\x97\x91\xee\x0b\x6b\x5b\x9f\x44\xa3\x55\x3c\x82\x6b\xd4\x41\x08\x7c\x55\x87\x43\x1a\x46\x18\x6b\xa8\xe1\x08\x64\x54\x8d\x24\x47\x32\x10\x45\x47\x83\xe7\x59\x6e\x3c\xb2\x58\x7a\xb6\x78\x4c\xad\xa3\x71\xcb\x89\x29\xe0\xcb\x42\x6b\xcc\xb7\xcd\xca\x69\xab\x26\xa7\x7a\x69\x48\x7e\x50\xee\x87\x3a\xa2\x40\x0e\x26\x89\xac\x4c\xa0\xee\xcf\x16\x0f\x35\xeb\x64\x95\xae\x54\x23\xf2\xc5\x67\x81\x72\x67\x2a\x56\xd0\x43\x9f\x54\x57\x30\xf9\xbc\xb7\xfd\x9a\xbe\xc1\x81\x3e\x41\xb2\x2f\x0e\x12\x0f\x41\x01\x16\x3e\x38\xf2\xe0\xab\x0b\x56\xe0\x12\x1f\xed\xa1\x58\xad\x7c\x1c\x01\x9f\x46\x82\x9b\x34\x5b\xa7\x82\xb1\x9c\xa9\x9e\x56\xcf\x72\x3e\x97\x7b\x01\x1b\x21\x68\x30\xe8\x61\x07\x77\xd4\x4d\x95\x12\x69\x01\x0f\xca\xda\x00\x88\xfa\xe9\x17\x0b\x51\xcc\x3f\x92\xbf\xd7\xec\x93\x28\xba\x88\x17\xf4\x22\xc3\x1b\x25\x2e\xdb\x8d\xb5\xe3\x73\x09\xf6\xe6\x54\x73\x3d\x43\xe0\xfb\xef\xe1\xce\x8e\x91\xfa\x73\x3d\xf2\x26\x12\xe6\x47\xf7\x28\x82\x9c\x2e\x48\x8c\x7a\xea\x2a\x15\x44\xc8\x6b\x3e\xb9\xca\xa4\x7e\xa1\x29\x02\x75\xf4\x4c\xe6\x24\x67\xaf\xe8\xb4\xe0\xea\xa1\x25\x38\x0d\x69\xdd\x09\xf0\xb3\x69\x5f\x31\x24\xba\x6f\xc1\xef\xbf\xd0\x45\x6c\x61\xd0\xd4\x96\x70\x05\xef\x6a\x70\x38\x47\xc3\x04\x6f\x1c\x9f\xaf\x8a\x19\xfc\x7c\x04\x83\xc3\xdd\x96\xb6\x32\xaf\x0c\x07\xb7\x6d\x68\x3b\x1f\xc1\x3b\x12\x7b\x77\xd8\x42\xad\xf2\xd1\x84\x0d\xd3\xbb\x1f\xda\x2b\x6d\x7c\xde\x51\x08\xd5\x17\x4c\xc1\x35\x81\x37\x78\x5e\xab\xce\xfd\x44\xbd\xbf\xb1\xc7\x73\x7f\xda\x2b\x97\xaa\xba\xfa\xf4\x48\x9f\x88\x39\x49\xa3\x84\x96\x4f\x15\xb9\x1a\x51\x69\x37\x55\x20\xcf\xe3\x4f\xef\x73\xb2\xf4\xcf\x8a\x2f\x23\xa4\x85\xca\x5f\xe8\x10\x60\xd9\xb3\x25\x9d\x34\x27\xe5\x57\x9a\xcb\xc4\xef\x7e\x79\x96\x5b\x69\xe6\x39\xf8\x2e\x27\xbe\xea\x90\x62\xd9\x5a\x68\x4e\xd8\x53\xe1\xd1\x80\x27\x3f\x9a\x13\xc7\x24\xe2\x67\xf6\x80\x2b\x40\x05\x6b\xe6\x9d\x32\x8a\x6d\xa3\xac\x3d\x05\x72\xb4\x95\x7b\x82\x7a\xb1\xd7\x76\x33\x60\x6f\x16\x76\x18\x6e\xc9\x1d\xfe\xf1\x10\x8e\x16\x73\xf9\x80\x42\x94\x79\xd4\x68\x6c\x34\xa4\xbc\xcb\x51\x53\xcd\xe0\x7a\xa8\x77\x04\xf2\xd4\x68\x5a\xdd\xf2\x9e\x8e\xb5\x17\x5f\x43\x2d\xf4\x7a\x7e\x57\x3d\xf9\x76\xac\xfe\x66\xac\xa7\x2d\x28\x23\x50\xdf\x2c\xf8\xce\x81\x62\xea\x67\x18\x38\x87\x10\x90\xf1\x68\xf8\x76\xd5\xe1\xae\xf0\xc5\x3b\x06\x3e\x2e\x8f\x6a\x30\x1a\xf7\x59\x2e\x3e\xff\x84\x04\xdc\x19\xf1\x4c\x28\x9d\xf6\xd8\x6a\xb9\xcc\xe4\x11\x65\x4e\x96\x4b\x4b\x09\xa9\x99\x68\x9f\xb7\xaf\x76\x9a\x15\x07\xa0\x6c\x6a\x1e\x6b\xd9\xce\x73\x6d\x9d\xb7\x4c\x41\x17\x4b\x99\x3a\xd4\xa0\xf2\x9a\xb2\xe2\x14\xdd\xb9\xac\xc3\xca\x24\xcb\xe9\x45\xf6\xef\xd4\x0e\x4d\x8f\xbd\xce\x34\xe7\x1c\xdc\x2c\xc1\x17\xf6\xc4\xc1\xe3\x79\xb6\x4a\x23\xb7\x5d\x51\xf8\xd2\x76\x29\xf5\x1f\x64\xd5\xb6\x8a\xf7\x9d\x7b\xc7\xc0\xa7\x1a\x15\xb5\x97\x9f\x86\x57\xe1\x6b\xf2\x7a\x7f\xc7\x63\xfb\x44\x64\x53\xec\xbf\xe9\xd6\x86\xcd\x65\x50\x7b\xe8\xfc\x8a\x65\x35\xa5\x28\x71\x97\x1b\xf1\x4b\xf3\x8f\xcf\x01\x9d\xce\x75\xb9\xab\xb3\x86\x56\xe8\x4b\x68\xfb\xe6\xb5\x6e\x59\xe9\xd5\xa7\x5a\xcd\xa9\x73\x02\x0c\x5b\x68\x2a\x1c\x3e\x4b\xb6\xf4\x45\xd6\xa1\x7c\xfd\xf0\x0c\xe6\x4e\x27\x99\x5e\x0f\x84\xc3\x52\x8e\x29\x71\x49\xba\x91\x6a\x26\xda\xb2\x94\xc7\x83\x54\x40\xb9\x5e\x4a\x60\x49\x53\x92\x14\x1b\x91\x2a\x75\x2e\xf2\xb7\xaa\x58\x19\xef\xac\x1f\xb8\xbb\xaf\xd6\x13\x53\x37\x75\x2e\x08\x78\x23\xa8\x46\x7f\x31\x7e\x43\x17\x97\x6b\xeb\x2e\x0c\xfa\x3b\x82\x20\x74\x14\x4c\x72\xaf\xde\xac\x67\x9e\xee\x38\x6b\x3d\x74\x00\xf3\x9f\x4e\x2b\x49\x54\x7a\x7a\x04\x92\x0b\x1a\xfd\xff\xd9\xa8\x19\xa8\x61\x33\x87\x7b\xb4\x0d\x1c\xda\x0c\xaa\xac\x11\xf0\xc1\x57\x72\x56\x1a\x66\x7d\x6f\x8e\xe8\x63\x61\x53\x56\x97\xa6\xc1\x27\x4c\xfd\x97\x03\xb0\x4f\x46\xfe\xba\x97\x71\xc2\x43\xfc\xb7\x8f\xd4\x1e\xcf\xcf\x88\xbc\x2e\x52\xe8\xb5\x75\xd4\xdb\x2d\x18\xd2\x05\x7c\xbe\xd2\xa5\x60\x3a\x43\x4f\x67\xcf\xd6\xfa\xa5\x1e\xa0\xea\x0d\xc6\xf2\xa5\x42\xd1\xc2\xbb\x34\xd6\x9c\x15\x63\x3b\x62\x9e\x6c\xce\x72\xe9\x34\x1a\x77\xf1\x36\xc2\x78\x87\xed\x18\xbf\xa2\xf7\x0d\x16\x3f\x72\xcf\x23\xf8\xc6\xb0\x75\xfa\x18\xc5\x5d\xe1\x37\x17\x77\x2b\xcf\x39\xd1\x10\xff\x26\xf4\xc8\xb8\xab\xfc\x77\xe3\xae\xf2\xe0\xe5\xdf\x2a\x1f\x5e\x93\xd6\xca\x7c\x9f\x5d\x7f\xa8\xc9\x74\x9b\x5d\x7f\xe0\x7a\x5c\x19\x06\x99\x5d\x7f\xb0\x02\xd7\xcd\xc9\xd5\x37\x82\xda\xc3\x81\x33\x99\x65\x60\x88\xdc\x26\xfd\x7a\x52\x8e\x59\xca\xb8\x26\x20\x18\xa5\x69\x1e\x30\x96\x39\x5d\x92\x9c\x9a\x28\x6c\xb7\xf6\x9c\xb2\xa0\x47\x4d\xaf\x27\x1f\x8e\x46\xd7\xd7\x05\xc9\x0b\xa0\x29\x3e\x2d\x4a\x72\xdc\x9d\x4e\xce\x2f\x2c\x26\x62\x5d\x12\x45\xcd\x41\x1b\x1a\x91\x9d\x8e\x42\x6f\x69\xe7\x91\xb9\x4a\x38\x10\x0e\xbd\x77\xfa\x66\x9f\x86\xa4\x9d\x36\x60\x46\x9f\x2a\x45\xab\xdc\xed\x9d\xe9\xd2\x5e\xee\xb2\x3e\x6c\xb7\x5a\x92\xe9\xb2\xac\x65\x29\x84\x92\x82\x6a\x27\x50\xa6\x3e\xe7\x51\x42\xa8\x40\x1b\x0d\x47\x35\x50\x61\x12\xc8\x16\xf2\x3d\xe8\xe6\x1f\x88\x14\x0d\x31\x43\x61\xe2\xf8\x1c\xf6\x9d\x92\xce\x49\x5a\x2b\x42\x51\x6f\x04\x83\xa7\x94\x4f\xa3\x7b\x42\x16\x63\xcf\xa8\x7c\x2f\x3e\xd8\x66\xcc\x24\x5b\x0a\xb8\x40\xa7\x82\xec\x1b\xdb\x06\x6b\xed\x2c\x18\x33\xd4\x7d\xfd\x88\x75\x35\x19\x21\x02\x28\xc4\x42\x14\x13\x12\x40\x12\x3e\xb2\x78\x71\x4a\x5c\xbb\x51\x7d\x41\x1e\x96\x32\x4c\xac\xd6\x79\x5d\x1e\x38\x85\xb2\x39\xf1\x2b\x9a\xc6\x31\xc2\x7a\x46\xc4\x5e\x80\x13\x6d\x3f\x0b\x6f\x39\x06\x5d\xbb\x56\xe1\x23\x8b\x49\xaa\xb7\xff\x76\x4f\xe7\x8e\x38\x9d\x2f\xe1\x90\x12\xa5\x70\x96\xc4\x08\x91\xb3\x69\x08\xed\x2d\xd7\x91\x1b\xaa\x5a\xcb\x8b\xf5\xd4\xaa\x0d\x51\x10\xaa\x0c\x84\xed\xbd\xb7\xaf\x5d\xfb\x56\x30\x7d\xd0\x6e\xc6\x8f\x99\xd4\x3a\xea\x7a\xe0\x2a\x27\x01\x5c\xaf\xd1\x83\x27\x80\xab\xd7\x93\x4f\x56\x57\xdb\x39\xdb\x73\x72\x77\x2d\xb4\x3f\x13\xd1\x69\xed\xdd\xb8\x33\x9c\xe5\xef\x2e\x9e\x8a\xa6\xdb\x72\xbb\x69\xab\x97\x74\x64\x7c\x73\x1b\x62\x66\x85\x93\xf1\x45\x33\xc1\x17\xdc\xad\xdd\x44\xdb\x3a\x50\xdc\x6f\xb7\xa0\x7d\xf2\x06\xdf\xca\x6b\x90\x23\x09\xf8\xc8\xbf\x01\xd6\x6f\xc5\xda\x73\x68\x7a\xd3\xda\xa7\xfa\xa6\x7d\xef\x03\x94\xdb\xea\xee\xa6\x8d\x7a\x36\xa3\xe1\xce\x29\x3f\x3d\x5b\x2c\x8b\x6a\x09\x59\x67\x28\x6b\x89\x95\x3b\xae\x69\xa9\xa9\x34\x37\xab\x33\x4a\x88\x79\xc9\x55\x3f\xf5\x7a\x2a\xb9\x8c\x11\x66\xbb\x58\x31\x7c\x21\x33\xca\x52\xe9\xa7\xb1\x26\x1b\x23\x22\x44\xe5\x1e\x9d\xc5\xc5\x7c\x75\x8d\x41\xa9\x22\x6a\x51\xfd\x13\x33\xb6\xa2\xac\x37\xb8\x7f\x58\x25\x1e\x9d\x74\xaf\x62\xf6\x44\xec\x9c\x62\x00\x9c\x83\xd4\x44\x37\x86\x70\x70\xf1\x23\xfe\x6b\x40\x25\x9e\x69\x9a\x68\x3a\x80\xf1\x75\xea\x61\xa7\x49\x79\xe3\x76\x24\x27\xfe\x91\xbb\x95\x38\x4a\x6d\xad\xf6\x2b\x1c\x18\x6b\x17\x8f\xe7\xf5\x87\xdb\xae\x3e\xc1\xba\x06\x1d\x7c\xfd\x2d\xf3\xac\xc8\xb8\xac\x3f\x8d\x53\x7f\x38\x36\xff\xd3\x10\xd3\xd3\x6c\xf1\xf3\x06\xd7\x91\x4b\xb8\x48\x44\x8f\xcb\x17\x29\x17\xe4\x13\xc4\x29\x2b\x28\x89\xba\x7b\xbe\x08\xb9\x88\xd3\xce\x82\x7c\xea\x35\x42\x27\x15\xbf\xf5\x28\x17\x0f\x11\x95\x31\x53\x38\x10\x46\x3e\x8a\x32\x2e\x38\xf4\x1a\xd3\x3c\x66\x5d\xa5\x40\xe0\x3a\x41\x8c\xd5\xa7\xd0\xd1\x59\x9d\x91\xb0\xfd\x9f\x05\xa3\x1f\x8b\x7f\x86\xe2\xeb\x2d\xaf\x9a\xbd\x4a\xef\x2d\x5e\x76\xd5\x0e\xa4\xd5\x74\x92\x4f\x7b\x4d\x27\x9f\xb0\xf0\x74\xf2\xc9\xfe\xbf\x6a\x3a\x1f\xff\x2b\x4c\xa7\x15\x02\x4f\x54\x64\xf7\x42\xea\x03\x99\x48\xb1\xc6\x32\x61\xd2\x5c\x8c\xa6\xe9\xb8\x89\x94\xb6\xf8\x64\xe2\xbe\x35\xcd\x72\x50\x2f\x7f\x73\x71\x8d\x63\x21\x3c\xb9\x72\x9a\xc4\x94\x41\x26\x1e\xc6\x2e\x67\x66\x9a\x0a\x97\x53\x28\x72\x92\xb2\xb8\x88\x3f\x96\xf1\xc3\x0a\x4b\xd9\xb2\x08\x6d\x96\x4e\x5f\xd7\xb4\x0a\x88\xc6\x00\x3d\x2d\x0c\x9d\x01\xa7\x43\x96\xb6\x61\x3d\xcf\xe4\xf3\x3c\x5c\xb9\xc1\xb0\x7e\x9a\xd0\x85\x08\x3e\xa8\xc1\x62\x85\xf6\x2f\xe3\xc9\xcd\xbf\x6f\x9a\xd3\xb4\xad\x48\xf2\x18\x0c\xda\x60\x29\xe0\x12\x54\xdf\x08\x07\x62\x5b\x15\x1b\xa6\x2c\x1f\xf5\xdd\x94\x9a\xaa\xe3\xea\xa1\x6b\x66\xf8\x31\x99\xf7\x84\x77\xcc\x76\x6a\x4f\xb8\xd2\x77\xdd\x1f\xc3\x1e\x6a\xae\xbc\xda\x18\x88\xab\x0d\xb3\x3d\x6f\x7c\xa1\x4e\xd7\x28\x1e\x6b\xeb\x64\xbb\x85\xea\x3b\x32\x52\x1e\x78\x94\xdc\x24\xc8\xbe\x2e\xa8\xc9\x39\x66\x9b\x36\x4a\x7f\xce\x77\x8c\xc2\x68\xdc\x65\x59\x5e\x28\x31\x73\x6c\x4e\xf4\x22\x4e\x9b\xf6\xd4\x92\x7c\x86\x29\xeb\xc7\xe2\x60\xd0\x9d\x90\x24\x69\x96\xd2\xa1\x0d\xfd\x96\xbb\x23\x4b\x86\x69\xc4\xec\xdf\xe9\x34\xcb\x69\x03\xe5\x49\xe8\xd5\xa4\x05\xf9\xf4\x95\x5b\x7d\x32\x2d\x68\xee\x6d\x54\xa6\x67\xb0\x5d\x6b\x6d\x54\xe8\x44\xc9\xe1\x8e\xcb\x1f\x9b\x2d\x18\xc2\x41\xa9\xf7\x2b\xb4\x8f\x2a\xbc\x59\x1e\x51\xe9\x6e\x56\xa5\x6b\x68\x6c\x28\xc9\x35\xe9\xdc\xf8\xaf\x15\xc9\x91\xba\xea\x13\x1a\x1c\xf5\x0f\x6b\x4a\x6f\xf4\xdf\x23\xb2\xd1\x7f\x9d\x67\x2b\xb3\x3e\x1a\x25\xf5\x2f\xe2\xf8\x62\xc2\x94\xa7\x1a\xf9\x59\x39\x34\x96\x03\x11\xb3\x13\xf9\xd2\xbc\xe0\x56\xc7\x0b\xe0\x86\x5a\xe9\x00\x56\x69\x5c\xbc\x20\xec\x84\x4e\xe2\x05\xe6\x18\x44\xad\xc7\xba\x2a\xb5\x56\xd2\x0d\xdd\x40\x9c\xc2\xc2\xb7\x66\x9c\x45\x30\x27\xec\x6c\x9d\xbe\xc9\xb3\x65\x73\xd1\x06\x7c\xe3\xcc\xf3\x28\xcf\x1d\xff\x9d\x89\x74\xe5\x13\xbc\xa3\x26\x47\x62\xb9\x83\x8f\xd5\x84\x9e\x7f\x6a\x2e\xf0\x4d\x31\xed\xa6\x05\xee\xc4\xec\x35\x79\x2d\x0b\x3c\x2f\x34\xed\x7e\xf5\x67\xbf\x04\x82\xae\xd8\x91\x37\xaa\xaa\x03\xbb\xe4\xce\x62\xa4\x20\x47\xf1\x38\xe8\xe5\x67\xce\xdc\x8e\xbd\x5a\x90\x8c\xfb\x5a\x99\x02\x10\xd2\x2c\xed\xc4\x69\x41\x67\x34\x67\x48\x2c\x5b\x90\x24\xa1\xac\x40\xae\xd8\xb1\xfb\x82\xee\x6c\xf8\x3c\xc9\x48\xe1\xd0\xcd\x67\xa8\xc8\x30\x3b\xad\x59\x12\x22\xd6\x61\xc6\xbd\x22\x43\x7c\x43\xbf\x33\x79\xa3\x94\xe7\xdf\x0e\x7c\xb2\x03\x35\x23\x33\x1d\x95\xff\x20\x22\x75\x15\x3f\x16\x19\x39\x2c\x17\xa4\x76\x19\x6f\xe3\x2a\x41\x22\xf9\x83\xbd\x6a\xcb\xdb\x95\xd2\xbf\xd8\x7b\xdf\x52\x56\x77\x33\x7e\x30\xbd\x8e\xf4\xd0\xc3\x70\xfd\xed\xd6\x76\xc6\x96\xd2\xcd\x57\x43\x16\x79\x2a\xa1\xfc\xf3\x55\x11\x59\x04\xdc\x0a\x6b\x19\xf0\x62\xc3\x63\x7c\xcd\x76\xeb\x7c\x97\x91\x96\x1e\x4c\x11\xd9\xf8\x10\x45\x64\xe3\x01\xe6\x72\xd7\x07\x8d\x0e\x36\x9e\x6e\x89\x38\x64\x5f\xbf\xb0\xc4\x53\x45\x9a\x9d\x3c\x55\x44\x89\xb7\x95\xca\x5c\xe5\x6d\xaa\x2c\xc6\xca\xba\xab\xbc\xce\xa8\x78\x7c\x37\xe5\xbf\x85\xca\xf2\xa6\xcb\xf9\x19\x86\xd1\xb4\x90\x21\x20\x59\x8e\x7e\x3c\x4f\xa2\x48\xe4\x26\xb6\x9a\x31\xc9\x34\x7a\x70\x60\x94\x1d\x78\x07\xe4\x2e\x0c\xe8\x3d\x38\xe0\x0d\x0f\xf4\xa4\x04\xfa\x38\xdf\x85\x07\xf4\x7e\x05\x83\x59\x3e\x3d\xf3\x77\xb7\x2a\xc5\xbf\xb8\x60\x5b\x61\x7e\x40\xf3\xbb\xd2\x91\xb8\x7a\x7c\xef\x01\xfd\xa1\x7a\xd3\x79\xca\x05\x16\xaf\xb0\xcc\xe2\xb4\x00\xbc\xb2\xc2\xc7\x30\xf3\x3c\xcb\xd9\xde\x56\x97\xc3\x9f\x1e\xfe\xa8\x8f\xe8\xbf\xd3\x09\xe1\xa7\xc1\x6c\x6a\x8e\x24\x14\x5c\x16\x30\x38\xbc\x2f\x7b\x40\x18\x44\xf1\x74\x4a\x31\x22\x12\xcf\x28\x44\xc7\xc3\x99\x77\x3d\xa7\x29\xac\xb3\xfc\x06\xdd\xa9\xca\x4b\xb5\x36\xac\xab\x80\x64\x56\x64\x39\x46\x24\x2f\x80\xd1\x25\xc9\x49\x41\x93\x8d\x35\x6d\x72\x7d\x1c\xe0\xbf\x07\x72\xe1\xdd\x85\x87\x86\x03\xe8\x4b\x3c\x4e\xc4\x8b\x32\x1b\x52\x91\x89\x53\x4d\x42\x0a\xaa\x56\x77\x9c\x16\x99\x58\x6e\xeb\xb8\x98\x67\xab\x02\x1d\xd7\x75\x07\xe5\x5e\x0f\x44\x3e\x38\x59\x63\x93\xad\x30\xd6\x92\xff\xbf\x20\x89\xe8\xca\x75\xb6\x2a\xd4\x1b\xec\xf8\xb0\xb2\xea\x88\x8e\x26\x2e\xb4\x1e\x75\x6d\x4e\x54\xd2\xe6\x40\xfe\x74\x50\x49\xad\xbb\x70\x4f\xe6\xed\x46\x3e\x39\x74\x56\x4b\x44\x0a\x62\x9b\x50\x45\x49\x69\x79\xac\xae\xef\x5a\x0e\xd0\xf5\xea\xfa\x3a\xa9\x94\xc7\xa0\x02\x66\x1b\xdc\xb5\x7b\xe2\x18\x03\xca\x26\x34\x9b\x96\xa2\xdf\x8f\x8d\x5c\xb3\xb7\x7c\xde\x9b\x22\x6e\xd5\xbe\xb0\x17\x5f\xe1\x67\xd7\x8f\x4c\x36\x76\x4a\x8a\x79\x17\x39\xa7\xd9\x19\xc0\x5d\x50\x68\xee\xe2\x1b\x8b\x0a\xb8\x26\xcb\xa2\x8e\x41\x56\xae\x0b\xbf\x5b\x2c\x71\xa2\xd7\x99\x38\x95\xb2\x76\xb5\xa1\x52\xd9\x38\x2e\x0d\xc9\xf9\x13\xea\xf8\x02\x22\x06\x3c\x5c\xb2\x26\xe2\x18\xb4\x05\xae\x43\xcc\x27\x53\x48\xef\x5b\x7b\x83\x4c\x30\x32\x07\x89\xe5\x07\x20\x51\x53\x85\x24\x49\x04\xea\x74\x69\x3d\xb4\x83\x1f\x4f\xe2\xe9\x54\x21\x20\xd7\xcc\x44\x00\x9d\x5a\x0c\xbc\x37\xcc\x8d\x69\xb2\x95\x66\x4d\x0f\x4c\x68\xea\x75\xa6\xf3\xea\xcf\x4d\xad\xdb\xfc\xec\x2d\x48\x1b\xc5\xe2\xed\x18\x41\xd8\x28\x1e\x7b\xc3\x87\x9a\x77\xac\xca\x42\x1b\x2b\x51\xe8\x2a\x5a\x85\x69\xb7\x1e\x8c\x5d\x3e\x38\xd8\xfb\x3c\x2b\x86\xe8\x40\x1b\x6c\xfb\x78\xfb\xfc\xec\xed\xe9\x93\x8b\x8b\x97\xaf\x7f\xb1\x96\x80\xc8\x5b\xa0\xe2\x3d\xa4\x48\xc8\x8c\xa5\x40\x22\x79\x67\x6a\x84\x86\xf4\xf1\x7f\x61\x2b\x1a\x1e\xf7\x44\x52\x84\x23\xb1\xb4\xcb\xfc\x27\xbe\xc4\x7a\x2c\x9e\x71\x16\x6b\x1c\x34\x5c\x5f\x44\x89\xc6\xb3\x0e\xf9\x9f\xb2\x91\x8e\xf8\xc9\xd5\x67\x15\xee\x4e\x63\x0f\xff\x5e\x97\x43\xb0\xfa\x81\xf3\xf9\x77\x9a\x67\xcf\xe3\x24\x69\xfe\xf7\x7f\x2b\x0a\x7b\xf0\xa0\xdf\xc2\x24\xbc\x2e\x78\x39\xb4\xf5\xa8\x24\xa6\xef\xe0\x41\x9f\x23\x32\x59\x45\x93\x0d\xa6\x7c\x94\xb3\xd8\xf8\xad\xd1\x86\xc6\x50\x79\x7f\x94\x5f\xf1\x73\x43\xb7\xe2\x3d\x79\x7b\x5e\xf2\x02\xe1\xbb\xe8\x8c\x7e\x12\xd3\x8b\x38\x30\xac\x0e\x13\xe9\xcb\x74\xe7\x8f\xbc\x90\xf5\xa0\x18\x05\x23\x40\x47\x82\xb2\xdf\x7e\x6b\x8c\x75\x9e\x91\x17\x04\xc4\x48\x41\xad\x4d\xf1\xc4\x76\x2b\xb5\xee\x58\x64\xb1\x48\x28\x2d\x7a\xab\xdd\xfa\xda\x94\xb5\x41\xbf\x89\xfc\xac\x0d\xc7\x8b\x67\xaf\xde\x3c\x7b\x7b\x5e\xfe\x5e\x26\xf4\x99\xcc\x57\xe9\x0d\xcd\xd5\xf7\xc6\xc1\xa0\x3f\xec\xf7\x1b\xf0\x18\x46\x8d\x41\xbf\xd1\x06\x68\xf4\xfb\x8d\x71\x59\xde\x19\xfc\x70\xaf\xdf\x00\x2c\xef\x0c\x7e\xe0\x7d\xbe\xa7\xca\xf1\x6e\x91\xe3\x3b\x53\x0c\xdb\x6b\x8e\x2e\x0f\x2e\x3b\x63\xf1\x46\x69\x6f\x16\xdb\xe6\x06\x7f\x97\x68\xae\xc2\x0c\xfd\xc9\x97\x59\x15\x1f\x29\xdf\xa6\x91\x61\x92\xb2\xb6\xb5\xfa\x90\x26\x27\xac\xb5\x60\x5e\x4d\xdd\xf7\xd0\x18\x6f\x30\x10\xe1\xa0\xfc\x4c\x42\x9e\x0e\xd8\x36\x5e\xad\x23\x9e\x91\xfc\xb7\xda\x18\x06\x63\x15\x59\x6a\xd0\x86\x99\xa5\xb0\xee\x81\xd6\x3f\x6d\x74\x45\x40\x6a\xa3\xd3\x10\x82\x4a\xab\x5f\x1d\x39\x0e\x9a\x88\x6b\x34\x18\xa3\x32\xdb\x82\x03\x29\xaa\xc5\xe7\xc3\xb1\xc7\x80\x56\xd6\xc6\xcc\x5b\xc7\xd0\x87\xa1\xa0\x68\xd4\x17\x29\xb6\x1a\x07\x0d\x38\x2e\xc1\x86\xd0\x29\x07\x0e\x0c\x81\xfc\x56\xa6\x74\x55\x66\xe5\x2a\x67\x54\x5b\xd8\xd0\x63\xa6\x65\x97\x41\x66\xa4\xff\xb5\x8a\x3f\x92\x84\x43\x17\x19\x2c\xb2\x88\x26\x96\x15\x7a\x92\x64\x29\x7d\x1f\x17\x73\x29\x67\x25\x3e\x04\xf5\xda\xa3\xa3\x72\xab\x28\x67\x14\xd1\x5e\x39\x37\xe3\xa0\xd9\x5b\x39\x04\x36\x65\xdf\x21\x44\xb8\xcd\xbb\xdb\xa4\xe5\x8d\xc4\xe7\xc6\xf0\x11\xf1\x1a\x2b\x8e\xc1\xf2\x0a\xf1\x42\x0d\xdd\x2b\xcb\x96\xe6\x48\x02\x1d\xf4\x7d\x2b\x3f\x98\xf4\xf6\x7a\x68\xf1\x4d\xb2\x75\x27\xa1\x1f\x69\x02\x64\x19\xb7\xe1\x5a\x1e\x32\xf0\xc2\x65\x9a\x8a\x99\xd0\x20\xba\xf6\xa0\xc8\x7c\x5b\x17\xf1\x82\x36\xe5\xaf\x65\x83\x70\x80\xa3\x62\x35\x2c\xbc\x1d\x56\xcb\xa8\xca\x7f\x8f\xf3\xa1\x5f\x89\x5a\x9c\x57\xda\xac\x61\x87\x4a\xe9\x19\x8f\xc4\x6f\xd4\xb7\xd5\x61\x99\x66\x56\x25\xe4\xb7\x32\x1e\x9c\xa5\xf0\x3c\xce\xe9\x34\xfb\xd4\x3d\xbc\x8f\x16\xde\x7f\x9b\x89\x4e\x73\xee\x94\x42\x4d\xd0\xc0\x80\x58\x27\xc0\xdb\xdd\xb9\x2f\x57\x49\xd2\x1b\xfc\xf8\x70\x60\x2f\xbf\x8e\xa6\x2f\x2f\x64\x3a\x33\x93\x82\xd2\x79\xa8\x5a\x6a\x2f\xce\xce\xfe\xa3\x92\xed\x78\xe1\x54\x76\x59\xe5\xb8\x9e\x90\x24\xa1\x11\x9e\x09\x31\x59\x61\xb9\x2e\x63\x06\x8b\x55\x41\x0a\x1a\x95\xa9\x6b\xe5\x59\x2e\x15\x4f\x41\xf2\xb5\x78\x43\xe9\x52\xbc\xff\x21\x46\x21\x4e\x81\x6d\xd2\x89\x48\x3e\xc0\xbf\xab\x0d\x45\xe0\x70\x67\xbf\x26\x8f\xc5\xe9\xd9\xe9\xb3\xd7\x17\x15\xfd\xbc\x2d\x9c\x5c\xf9\xe0\x21\xde\xad\x2d\x28\x49\x99\x30\x3d\x8a\xa4\x72\x46\xab\x6d\x75\x9e\x54\x38\xc8\x74\x4a\x27\x38\x39\x22\x51\xef\x84\x24\x78\x6e\xc6\x7c\x58\x3f\x0c\xef\x0d\x86\x87\x0f\xe0\xa0\x7f\xaf\xdf\x87\x4e\x67\x54\xe9\x6d\x87\x6d\x6c\xae\x35\xee\x74\x1e\x2b\x5c\x15\xf8\x61\xbf\x2f\xc7\xa6\x3a\xe5\x72\x49\xa6\x20\xa2\x8c\xe2\xeb\x02\xf4\x53\xcc\xe4\x23\x40\x62\xbc\x14\x2a\x44\xa1\x4e\xae\x24\xfa\xb0\x92\x39\x87\xf1\x81\x11\xc2\xf0\x54\x4e\xa3\xb6\xbc\x14\x44\xcb\xa0\x7d\x1f\xf8\x1f\x94\x2e\x55\xbf\x44\x35\x95\x98\x9a\x44\x11\xeb\xb1\xd5\x35\x3e\xf0\xc1\xa0\xc9\x25\x2a\xef\x73\x4b\x55\x45\x09\x5c\x54\xe9\xfa\x4a\xeb\x0d\x15\x4f\x9c\x74\xe1\x42\xca\xe5\xf5\x7c\xc3\x29\xe4\x3c\x03\xfa\x2c\x96\xc3\x2b\x6d\x32\xb2\xda\xcb\x14\x26\x84\x51\x7e\xe4\x5e\x93\xb4\x60\xb0\xc2\x74\x21\xda\x44\x49\xb6\x21\x33\x12\xa7\x0a\xc9\x95\x28\x7f\x99\xbe\xc9\xb3\x59\x4e\x19\xdf\x73\xc4\x64\x73\x64\x7c\x93\xa0\xa9\x7e\xc2\x17\xe3\x55\x4a\xaf\x52\x95\x51\xb1\x29\x69\x06\x6c\x35\x99\x8b\x51\x89\xc5\x91\x11\x13\x89\x5a\xcc\xa9\x4b\x83\x73\x5a\x98\x3b\x89\xc1\x7c\xe2\x57\x99\x4a\xd0\xde\x5e\x4c\xd5\xff\x4a\xfe\xea\xda\xe6\x90\xf9\x9e\x20\xed\xe6\x46\x74\xc7\xbc\x3e\x0f\x68\x16\xc2\x39\xe8\x4e\x99\xd8\x53\x5e\x92\xbf\x26\xaf\x43\x97\xa1\x46\x0d\xdf\x09\x71\x6f\x37\x43\xd0\x9c\x93\x6e\xa9\x7c\xda\x6d\x9a\xce\xca\x3b\xee\x1a\x78\x1f\x77\x1a\xed\x2b\x9f\xbe\xf2\xd0\x2d\x37\xdf\x9f\x61\xf0\x00\x83\xf3\x03\xb3\x67\x77\x4d\xfc\x8b\x66\xc0\x9a\xd3\x53\x35\x65\xd2\xd7\xe9\xfb\xef\x4d\x6e\xf1\x35\xa1\x4d\xbe\xb0\x0a\x69\xdb\x0f\xc7\x15\xf4\xee\x87\xd2\x5c\x54\xf2\x99\xe5\x2c\x05\x9a\xf5\xd6\x77\x76\x00\xdd\xbb\x4e\x92\x50\x17\xe4\xc6\x51\x91\x28\xd2\xe1\xdb\xd0\x58\xd8\x8e\xf6\xee\xa0\x48\x02\xef\x1c\x49\x12\x43\xd7\x4d\x77\x4c\xc1\xbe\xdd\x4a\xf2\x6d\x31\x10\x62\x0e\x12\x45\xe7\x52\xba\xf9\xef\xfa\x54\x37\xfc\x8f\x92\xf1\x3f\xd6\x85\x8a\x98\xf8\x8e\xe4\x6d\xd1\xdb\x70\xe5\x41\xb8\x08\xb5\x1a\x6f\xa9\xcf\x07\xa5\xe2\xdc\x3b\xb7\x1b\x01\x3f\x74\x6d\x88\x93\x47\x0f\xc3\x21\x12\xdb\x9c\xbf\x4e\xb0\x19\xf3\x94\x53\xf6\x67\xb7\xc9\xc1\x5c\xd0\x75\xba\x9d\xce\xd1\xc7\x4a\xc6\x0e\xeb\x57\x4e\x50\xd7\x3b\xa7\xc5\x6f\x5c\x89\xf7\xc9\x76\xdb\x14\x7a\x3b\xa9\x79\x67\x4f\xa9\xd9\xf1\x2c\x5a\x2b\xc2\xd2\xb2\x1c\x79\x69\xb5\x62\x09\x6f\x3d\xaa\x1d\xdb\x3c\xb5\x6b\xf0\x98\xda\x17\x2f\xb2\x77\x17\x4f\x9b\xc1\x91\xd3\x67\xad\x42\xdf\x77\xe9\xdf\xd1\x88\x50\xe6\x6b\x27\x48\xe3\x0c\x27\xb1\xd2\x5e\xcd\x1b\xd0\xa5\xd0\xb4\x43\xad\x55\x73\x3b\x45\x3b\xa2\x51\xea\x56\xd3\xc3\xa0\xf5\xd2\xd3\x7d\x26\xb0\x9c\xcd\x9a\x71\x12\x79\x57\xd4\x2c\x7a\x47\xa8\x26\x79\xb2\x35\x4e\x25\xbc\x3c\x96\x39\x42\xc1\x0d\x4d\x90\x63\x57\xab\x35\x60\x90\x3d\x5f\x77\x41\xad\x41\x29\x0c\x12\x9b\x27\x38\x5b\xd4\xdf\xb5\x5d\x69\x5d\xe1\xf0\xfe\xc4\x3d\x3b\xeb\xf6\xbd\xc2\xf0\x8b\x66\x6a\x4e\xd8\x93\x24\x9e\xa5\x34\x7a\x91\xad\x72\x7d\x45\xdb\x73\xb5\x9f\xf2\xe7\x7d\x21\x0d\x1c\xd5\xe5\xd8\x77\x24\xd6\x56\x3b\x0c\x8d\x3b\x5f\x65\x07\xb6\x85\x02\x74\xd4\x06\xfe\x1d\x3c\xe8\x0b\x0b\x50\xf0\x92\x8a\x6c\x92\x78\x36\x2f\xce\xc9\xc7\x38\x9d\xa1\x61\xc0\x23\x17\x9a\x75\xec\xd7\x92\x9e\x9f\xca\xd2\x22\x6e\xfa\x9b\x7d\x93\x74\xeb\x52\x62\x3f\x1c\x3f\x18\x38\x4a\x04\xe1\x2b\x37\xa7\x37\xe7\xf3\x78\x5a\xd0\xc8\x59\x63\x77\xf4\x90\x22\x25\x49\x4e\xce\x2f\x24\x7c\x68\x22\x5d\xc8\x60\x30\xac\x88\xce\x30\x75\x0d\xe9\x12\x5b\x7e\xd3\x72\x1c\x4c\xc4\x32\xd2\x13\xc1\xc0\x91\x1d\xc1\x68\x87\x0e\x4e\xba\x57\xc4\xa6\xb4\x74\x06\xae\xb6\xdf\x32\x93\xbd\xac\x60\x9a\xa2\x26\xee\xbb\x83\x6e\x37\x3d\xc6\x32\xd7\x6b\xd8\xbc\xb5\xe3\x78\xdb\xd2\x7b\xb6\x10\x69\xbb\xf8\x02\x79\xbc\xf3\x29\x51\x5f\xeb\xee\x12\xf2\xee\x5d\x9e\xa9\x71\xb9\x44\x7a\x8e\x06\xb6\xbf\xaa\x47\xc7\x60\x9c\x13\x86\x3a\x0d\x2e\xd6\x77\x1a\x33\xef\xc6\x7c\x3b\xc4\xb7\x46\xf9\xfd\xf7\xd6\xa9\x03\xad\xc0\xbe\x86\x7a\x3d\xf5\x26\x23\x7c\x60\x98\xe8\xbd\x7c\x7d\x0d\x72\x3a\xa3\x9f\xbe\x51\x0c\x2d\x9e\x49\xc4\x6b\x15\x38\x82\xde\x3f\x9b\x9d\xed\xe5\x41\xeb\xb8\x79\x3c\x6c\x5e\x46\x77\x5b\xa3\x2e\x8c\x5b\xc7\xcd\xcb\xe8\xa0\x35\xc4\xbf\x9b\xc7\x43\xf9\xc3\x65\x97\x03\x1c\xb7\x8e\xbf\xed\x55\xeb\x41\x19\x32\xa4\x6f\x7c\x94\x4d\x70\xf5\xb3\x55\x4e\x3b\x49\x7c\x9d\x93\x7c\xd3\x9d\x65\xd9\x2c\xa1\x93\x2c\xa2\xc2\x65\x3e\x2e\x7a\x12\xe4\x8a\x17\x5d\x71\x62\xf1\xaf\xee\x07\xd6\x65\xd9\x2a\x9f\xd0\xee\xbc\x58\x24\x7a\x23\x2c\x5b\x50\x7c\x81\x47\xbe\xd1\x06\x49\x9c\x52\x61\xd4\xb9\xdf\xbd\xdf\xbd\xd7\x3d\x84\xc3\x7e\xff\x3e\xb0\x25\x9d\x88\xd4\xed\xe8\x13\xc7\x20\x92\xce\x67\x24\xdd\xac\xe7\xd4\x74\x4a\xc0\x14\xad\xab\x1c\x97\xda\x22\x8b\xe2\x69\x2c\xec\x6b\xc2\x9d\x0e\x3d\xe8\x44\x8a\x1b\x98\x64\x69\x21\x13\xbc\x5d\x67\xc5\x5c\xa4\x0d\xe6\xd5\xf5\xdc\xfd\x31\xcb\x9c\x71\x7d\xc3\x07\x76\xd4\x39\x18\x1f\x8f\xfa\x9d\x9f\xda\xdd\xf1\xdd\xd6\xaf\x62\xb4\xcd\x8f\xa7\xbe\x8f\xef\x7d\x1f\x4f\xf0\xe3\x85\x5b\xf0\x62\x6f\xbc\xe7\x62\x16\xed\xeb\x1f\xdf\x79\x4c\x3a\x67\x9a\xc6\x16\xe5\x98\xa6\xb6\x3c\x53\x3c\xf6\x7a\x50\x3e\xb3\x80\x26\x26\x26\x79\x70\x09\x31\xc3\x87\x0f\x52\x16\x7f\xa4\x6d\x88\x32\x88\x0b\xc0\x87\xea\x16\x76\x06\x7b\xf5\xaa\x81\xfb\x1e\x07\x8b\x67\x56\x56\xd3\x9c\x16\xee\x15\xfe\x5b\xe7\xf2\x48\xf3\xe5\xf0\x87\x1b\x6a\xdd\x72\xd5\x94\x05\x1b\xca\x0b\x02\xc3\x71\xca\x3d\x85\x46\x25\x5c\x44\x36\x9e\xf2\xd3\x0a\x0f\x3a\xbb\x98\x10\x9f\xf7\x89\x93\xd4\xbc\x5f\x0f\x76\x77\xe5\xb3\xab\xd0\x59\x73\x6a\xd7\x92\xae\xb6\x70\xe0\x3b\x2f\x85\xf4\x38\x55\xb9\x6b\xb9\xbf\x79\x91\xf8\x3a\xd9\x54\x73\xae\x89\x28\xf1\x8a\xab\xec\xa3\x13\x76\x28\xee\xd9\xd5\x0b\xc3\x42\x0d\xee\x34\xe0\x18\x3a\x03\x18\x3a\xcf\x42\xd4\xcd\xee\x66\x68\x1b\x0a\x41\x4c\xa5\xf4\x77\xc5\x26\xf0\x89\xa8\x16\xdc\xf5\xb0\x20\xff\x33\x37\xa1\x31\x2d\x5e\x18\x7a\x61\x42\xcb\x97\x78\xc2\xf0\xcc\x84\x97\xcf\xec\xd4\xe0\x2f\x2b\x94\x5e\x47\xaa\x25\xed\x95\x1e\xe1\x79\xd7\x2a\xd1\xa8\x07\xfc\x74\x1f\x45\x25\x41\x85\x6b\x1d\x5e\x45\x4c\x92\x55\x24\x5e\xe8\x44\x60\x8e\x77\x0f\x2e\x2e\x27\x58\x09\xca\xbf\x71\x76\x45\x40\x34\xcb\x9a\xe5\x9b\xd8\xd8\x80\xc7\xc0\x74\xea\x00\xdf\x0b\x03\xaf\x1d\xe0\xfb\x61\xe0\xc8\x01\xfe\x21\x0c\x3c\x77\x80\x1f\x84\x81\x17\x0e\xf0\xc3\x30\x30\x73\x80\x7f\xf4\x03\xfb\x67\xb1\x1a\xe9\x60\x62\x3e\x4c\xee\x20\x5c\xd0\xd1\x4e\x9e\xe5\x55\x34\xed\x3e\x62\x4a\x6b\xcd\x54\x29\xc5\xb1\x57\xa3\xe0\x08\x1a\x22\x40\xca\x79\x70\xa7\xd9\xe0\x7a\x49\x83\xf3\x68\x09\xbf\xdd\x42\xa3\xc8\x8c\x6f\xe1\x38\x60\xb9\x89\x54\x11\x3f\x27\xa5\x9b\x9b\xe7\x01\x3e\x4d\x13\x2f\x05\x21\x27\xc0\x33\xfe\x5e\xd8\x22\x73\x7c\x6f\xf6\x15\xe8\x95\xe0\xe5\xc4\x4a\xb2\x0d\x29\x1c\x80\x3f\xd5\xc1\x71\x2f\x0a\x69\xe6\x2a\xbc\xde\x71\x6c\xdf\xb5\xc5\x62\x2e\xc4\x2a\x62\x44\xaa\x14\x0d\xe9\x9a\xe9\xcd\x7e\xa2\xf9\x6d\xca\x7d\xd2\x0e\x57\x76\x72\x8f\xec\xd9\xa8\x54\xb3\x03\xad\x6a\x5e\xd7\xa2\x59\xf7\xf9\x6a\x4f\xce\x9a\xc2\x50\xc3\x4d\x0d\xaa\x3b\xe5\xd3\x55\xfe\x56\x46\xa6\x3e\xf2\xc1\xca\x94\x80\x65\xfc\x67\x19\x8a\x60\x6b\x69\xe5\xda\x8d\xd3\xa5\x5c\xb6\xe6\xc5\xf9\x7b\xda\x88\xa4\xd3\x79\xb2\xc1\x60\xd6\xff\xfe\xef\x38\x5d\xca\x0c\x70\x31\x13\xea\xf1\x2a\x9d\x66\x79\xb1\x4a\xd1\x21\x97\xeb\x61\x24\x61\x99\x8e\x46\x3e\xf5\xca\xc4\xcd\x3a\x5e\x21\xc6\xe5\x1b\xc3\x12\x86\xa3\x5d\x90\x0d\x5c\xd3\x6a\x81\xe3\x85\xea\x84\xe4\x74\xba\x4a\xf0\xce\x92\xeb\x81\x39\x5d\x26\x64\x42\xb9\xb2\x17\x6b\x97\xf3\x55\x66\x23\x8e\x49\xe5\x5b\x12\xd1\x27\x71\xba\xec\xca\x6a\xcd\x46\xbb\xd1\x86\x46\xd7\x78\x2d\x99\xeb\xef\xf8\x1c\x1a\x6e\x14\xeb\x79\x9c\x50\x58\xd3\x46\x4e\x01\xdf\xe9\x74\x8c\x1f\x42\x5f\xca\x29\x6b\x49\x3f\x1a\xfc\x51\xec\x7b\xfe\x43\xdb\x32\x13\x41\xa0\xa7\xce\xfa\xbf\xc6\x2b\x51\x19\x70\xea\x4b\xd4\x64\x78\x23\xe7\xe5\xfa\xb2\xce\xdf\xe2\x54\x2d\x8c\x24\x2d\xe8\x00\x47\x5b\xfe\x7a\x00\x22\xa2\x15\xe3\x3a\xaa\x62\xf1\x5b\x4b\xfa\x42\xeb\xeb\x00\x8b\x95\xe5\x85\x44\x51\xb3\x6a\xb7\x0d\x8d\xd3\x46\xab\x2b\xc3\xf0\x64\xa4\xac\xbd\x0a\x3a\x9d\x7c\x97\x20\x60\x8e\x72\x27\xec\x14\x1d\x38\xd8\xd9\xba\x6b\xf2\x0a\x66\x7c\x72\x05\x6e\xfd\x80\x5b\x37\xb9\x62\x24\x6a\x23\xa1\x03\x86\xa1\x3f\x8c\xd8\x0d\xae\x13\x4a\xcf\xf7\x21\xf4\x8d\xed\xb0\xea\x4b\x69\xa8\xb1\x7c\xa1\xf0\x7b\x1b\xe7\xac\xe5\x99\x27\x15\x87\x19\x98\x0b\xc1\x45\xfb\x31\xe0\xce\x4b\x87\x7a\x54\x7e\x42\x03\xf3\xdd\xb1\xbf\x79\x6a\x28\x67\xfe\xdd\xec\x54\x1f\x1c\x2b\xde\x81\x87\x46\x4a\x16\xb4\x01\x24\x9f\x01\xe1\xdc\x5b\x86\xea\x0b\xbb\x8a\x7a\x2e\xde\x77\x94\x7d\x12\x45\x34\x6f\x46\x71\x4e\xf1\x6b\x1b\x38\x2a\x8f\x11\xa6\xf2\x85\xf9\x48\x92\x36\x2c\x69\x1e\x67\x4e\xd6\x3c\x79\xf0\x6d\x43\xb1\x58\xda\x6e\x5d\xb1\xf0\xc8\x16\x4f\x5f\x97\x11\xb1\x5c\xcc\x4e\xb2\xc5\x32\x21\x71\x2a\xc2\x24\xc0\x0a\xc3\xc3\x80\x3b\x6c\xad\x4c\x62\x8d\x57\xe5\xf2\x6c\x27\x09\xf1\x1e\xd5\x54\xbe\x82\xf3\x78\xb1\x4c\x02\x0f\x28\xf0\xee\xfa\xaf\x49\xab\xfc\x07\xf6\xbb\xf9\x76\xfd\x9a\xe2\x86\xa4\xbd\x5d\x06\x22\x18\x89\x14\xca\x37\xfa\xab\x7c\x0a\x7f\xb6\x3d\xd1\x4e\x39\x43\x5d\xe7\xd5\x7f\x03\xfc\x9c\xd2\x3d\x73\x36\x90\x28\xea\x88\x39\xa4\x51\x07\x1f\x29\xef\x89\x17\x23\x85\xb1\x69\x9a\x75\x1b\x4e\x33\xbe\xc7\x25\xf0\x79\xa5\x8f\xc4\x73\x2d\xfb\x11\xe3\x1f\x05\xdd\x6e\xa9\xe4\x81\x23\x97\xb7\xec\x57\x92\x57\x55\x86\x88\x52\xeb\xd1\x99\xd6\xac\xad\x5f\xd2\x8b\xad\x1f\x39\xb8\x5c\x11\x7e\xd7\x3f\xeb\x26\x33\x10\xcb\xa2\xa1\x5e\x64\x8b\x76\xa9\x56\xb6\x21\x66\x22\x95\x60\xdb\xf0\x56\x72\x9c\x87\x4d\xc9\x52\x6a\xa5\x35\xe6\x15\x19\xfa\x54\x1e\x68\xab\x3a\xbc\xa4\x15\x08\x61\xf4\x80\x8b\x32\x5b\x7b\xbd\xb3\xc8\x16\xe1\x4b\xa0\x5e\x0f\x5e\x67\x90\x2d\x3d\x23\xe6\x15\x6f\x96\xbf\x9d\xf9\x6b\xe5\x40\x94\xaf\x28\x0c\x8d\x52\xdb\xe7\x59\xd0\x6a\x9f\x8e\xd5\xbb\xfd\x38\xf6\x33\x2a\x27\xa1\x81\x1f\x1b\x5c\x7b\x90\xfd\xbf\x5b\x4e\x87\x37\xc9\x02\x9e\xe8\xf8\xe0\xb9\xf8\xbf\x1d\x48\x9c\x27\xa4\xa0\x0d\xbd\x11\xfc\x80\xae\xa6\x7c\x42\xf6\x68\x41\x9f\x52\x4f\x66\x09\xdd\xa1\x55\xfe\xaa\x3b\xb4\x1a\x9c\xb2\x47\x6b\x21\xae\x03\xbf\x07\x86\xe0\x5e\xde\x13\x4c\x05\x21\x39\xc3\x44\xad\xe5\x2a\x20\x51\xa5\xa4\x8b\x0d\x66\xd0\x86\x06\x89\x22\xdd\x5b\x45\xdd\x44\x5b\x90\x1d\x0e\xaa\xca\x4a\x95\x48\xbb\x25\x90\xf7\xb2\xce\x25\xa5\x5a\x99\x21\x5f\x31\x74\x71\xc6\xaf\x5a\x30\x9a\x40\x66\x6f\xae\x1c\x87\xcc\xc2\xa8\xa2\x8f\x55\xee\x59\xf4\xb2\x85\xad\xca\xf9\xbe\x55\x31\x5e\xdb\x32\x36\x4d\x95\xb5\x46\x63\xd8\xea\x58\x64\x5a\xaa\x2d\x7c\xcc\xe2\x08\x03\xd3\x45\x98\xbe\x75\xf0\xd7\xba\xaa\x55\x0e\xf6\xd7\xdc\xd6\x5c\xb7\x6e\xab\x58\x73\xf1\x76\x0b\xcd\xa1\x75\x8a\x6d\x03\xab\xb7\xf8\x2c\x97\x69\x1d\xf5\xfc\x62\x0e\xac\x33\x2c\x21\x48\x3b\x65\x68\xa0\xd4\xb5\x9d\x04\xaf\x4e\x83\x4d\x5b\xde\x92\x58\x76\x41\xd1\x0f\xce\x93\x67\xed\x8e\x2f\xd1\x9a\x15\xb3\x91\x67\x4b\x9a\x17\x1b\x89\xc4\x93\x66\x42\x42\xc4\xa8\x7f\x8e\x9c\x3d\x0f\xd3\x70\xb0\x86\xab\x9f\xd8\xf9\x39\xaa\xef\xbe\x8f\x62\xc1\x06\x4b\x7c\x05\xa7\xbe\x8f\x5c\x00\x04\xbe\x7b\x3f\xfb\x61\x0b\x1a\x40\x62\x24\x03\x29\xbf\x9f\xf8\x3e\x62\x44\x71\xa8\xc0\xfb\xdd\xdb\x7b\xe1\x69\x19\x2e\xf2\x96\xf8\x3e\x4a\xc9\x1b\x2e\xf2\x96\xf8\x1b\xae\x04\xf9\x8e\x72\x6f\xb1\x5d\x69\x5c\xff\x58\x9e\xe4\xd0\x9a\x57\xe2\x2a\x16\xad\x1e\x45\xc0\x97\x3e\xec\x6d\x43\xe1\xc2\xcb\x7c\x55\xc7\x7d\x33\xce\x5c\x13\xc6\xaf\xdb\xad\xc7\x26\xa5\x20\xfc\x09\x5e\xab\x10\x63\xb5\x58\xbf\xff\xde\x40\x1a\x92\x02\x35\xc2\xca\xce\xe9\x93\x93\x4d\x29\x06\x74\x40\x5b\xf1\x2a\xc8\xc5\x66\xf9\xff\xb2\xf7\xed\xcf\x4d\x1c\x4b\xa3\xbf\xe7\xaf\x98\xe4\x90\xec\x0a\xcb\x7a\x18\x63\x82\x40\xe1\x72\x31\x0f\x7f\x17\x03\x41\xa6\x72\xc0\x9f\x2f\xb5\x92\x46\xd2\x06\x69\x57\xb5\xb3\xc2\x76\x0e\x39\x7f\xfb\xad\xe9\x9e\xf7\xcc\xae\x56\x40\x72\x72\xbf\x0a\x95\x8a\xb5\x3b\x3d\xdd\x3d\x3d\x3d\xb3\xf3\xe8\x07\x35\x07\xbb\xbd\xa9\x55\x98\xbc\x63\x54\xab\xaa\xd7\xa9\x78\xd6\x36\x4b\x97\x25\x2d\x62\xc3\x53\xaf\xa4\x5e\x38\x1a\x47\x2c\xdf\xea\x39\x1b\x80\x21\x8e\x95\x35\xc9\x07\x8c\x23\x5b\x56\x10\xc8\xd0\x02\x42\x60\xd7\x92\xf9\xe1\x07\xab\x0d\x55\x32\x7f\x94\x2c\x69\x36\x4d\x8a\xd1\x5a\x5d\x69\xfc\x15\x27\x5d\x96\xac\xe8\x71\x78\x4a\x13\xf1\xba\x43\x45\xcb\x84\x55\x15\xf1\x5a\xbf\xd8\xc1\x91\xac\x6a\x55\x65\x9c\x91\xc7\x4b\xe6\x4e\x43\x7f\x0f\x69\x12\xb6\x9e\x95\xfa\x25\xc2\x49\xaf\xae\x45\x76\x1c\xc8\xf0\xee\xde\xcf\xa3\xfb\xbb\x84\xe9\xf0\xe7\x38\xcb\x2f\xdb\xf2\x33\xe7\x9a\xd8\x19\x7e\xdd\xe4\x3e\xd9\x3f\xb2\x44\xf0\xc0\xe8\x2c\xab\x60\xa0\x2a\xf4\xdd\x0a\xaa\xe7\xc3\x15\x7a\x21\x78\xae\x60\x61\x70\x0f\xbd\xd4\xe2\x30\xf8\x81\x0b\x2e\x35\x3b\x0c\x7e\x27\x04\x1e\x62\x5e\x8b\xa1\x22\x86\x90\xe8\xa2\x1b\xfd\xb8\x04\x7f\x15\x34\xc0\x61\xce\xf9\xfc\x68\xb3\x5e\xe7\x45\x89\xf6\x25\x69\x36\x5f\x52\x02\x47\x0e\xb4\xa4\x85\xaa\x83\xce\x55\xf9\x47\x5a\x2c\xf3\x64\x2a\xf3\x07\x4a\x0a\x8a\xa6\x33\x07\x8b\xa3\x27\x2b\xc0\x5f\xc8\x7a\xda\x5e\x7d\xab\x7a\xa1\xc0\x7f\xfc\x5f\x89\xae\x5f\x26\x9c\x3f\xb7\x4a\xc6\x83\x91\x73\x89\x6b\xcf\x60\x4d\x97\x5b\x19\xd0\xb8\xeb\x79\x10\x8c\x56\x31\x10\x98\xee\xe1\xbe\x04\xfc\xa4\xc0\x47\x4a\x86\xbc\x80\x5c\x8d\x32\xaf\x72\x0e\x99\xb0\x3f\x32\x34\xc6\x32\xab\x3e\xa5\xa5\x4e\xc2\xbe\x9f\xcf\xf6\x01\x96\x4c\xe9\x9a\xf2\xbd\x6a\x9e\x91\xcb\x05\xc5\xbc\xc0\x70\x33\xa1\x3d\x6c\x85\x45\x57\x5e\x90\x2c\x77\x2e\x44\x30\x18\x5e\x29\xbc\x32\xec\x14\xff\xf6\x1e\x1d\x8e\x8c\xdc\x83\x67\x18\xe7\x60\x84\xd8\x01\xb6\x5e\xce\x62\x58\xc4\xb6\x2a\x52\x22\x88\x48\xd8\xf6\xf4\x82\x87\x45\x2c\x9f\x82\xad\x49\xd5\x64\x9d\x6f\x4a\xd8\xa3\x54\xf6\x57\x20\x98\x5b\x9c\x32\x99\xf7\x54\x44\xb9\x66\xe7\xf8\xf7\xa2\xca\x2f\xd7\x01\xc3\xe8\x71\xc8\x21\x9f\xfc\x82\xb5\x06\x6e\xad\xc0\xfd\x03\x74\x27\x16\xc7\xa1\x76\x49\x9f\x18\xbc\x7f\x3c\x4e\xca\x24\x6e\x29\x41\xc5\x32\xcc\x30\x32\x62\x76\x13\x67\x6a\xab\x99\xab\xb8\x2a\xf1\xf7\xbc\x46\x92\x04\xc3\x94\xd4\x5f\x70\xe0\x55\x8e\xf8\xea\x6c\xb2\xd4\x0f\x01\x0a\x7c\xcb\x3d\xbe\xbb\x79\x16\xee\xce\x41\x87\x66\xf7\x3e\xc5\xb7\x11\xd5\xa8\xb7\x5f\xaa\x54\x9a\x4d\x03\xd3\x66\x80\x2c\x0c\x7b\x26\xda\xc2\xf5\xce\xdc\x10\xd8\x4c\x89\xba\xc3\xa1\x0d\x54\x67\xf0\xab\x8f\x94\x7e\x32\xf9\x0f\xf8\x6a\xd7\x39\x6f\x84\x6a\x8a\x18\xc8\xea\xfa\x4b\x8e\x3b\x6c\x49\x90\x42\x45\xa7\x8a\x4b\xa1\xbf\x7b\xf5\x33\x7a\xf5\xfe\x17\xf4\xaa\xd5\x7d\x34\x9b\x06\x3a\x6f\x3b\xfe\xca\x3e\x2d\x2f\x29\xcd\xe2\x59\x91\xaf\xda\xa4\xcc\x45\xbf\xb6\xd1\x8e\x8a\xa5\x1f\xd3\xd2\xb3\xb0\x04\x4a\x4f\x8a\x7c\x65\xf6\x31\xd8\x93\xf0\xf9\x90\xbf\xb7\x7b\x38\x60\x6a\x02\x28\xce\x72\x13\x41\x99\x83\x85\x71\xee\x54\x2e\xf3\xa6\xba\xc1\x39\x0a\xbc\x3e\xcb\xbf\x40\x5f\x0c\x29\x80\x1d\x80\x7e\xe2\xba\x12\xb7\x22\x6f\x99\xea\xe6\x09\xd0\x55\x54\x54\x8c\xd8\xbf\xaf\x79\x20\x6d\xad\x71\xe2\x54\xed\x91\xc3\xcc\xab\x30\x20\xd2\x2d\x44\x8c\x4a\xaf\x8a\x17\xfa\xd4\xe2\x45\xda\xac\xb5\x6a\x78\x31\x31\x9f\xe5\x0d\x58\x31\x98\xd7\xf0\x0d\x7c\x2a\x46\xc9\xea\x0f\x9a\x56\x9c\x0d\x1b\x7f\x77\xea\xdd\xc8\xff\x4f\x9b\x6b\x78\xb5\xcf\x98\x6d\x84\x74\xc8\xb6\xca\xa4\x2e\x3e\x54\xa3\x4f\x0d\xb9\x3f\x54\xd4\x02\xab\x30\x59\x74\x7f\xd8\x64\xea\xb3\xaa\x37\x98\xf1\xb8\xb2\xbd\x2c\xea\x17\x28\xb6\xff\x43\x40\x3d\xe5\xea\x2b\xb8\xd2\xa9\x53\xf3\x97\xc5\x96\xaf\xe8\x0e\xa4\x43\x98\xc2\xb4\x61\x8f\x6d\xc2\xb5\x49\xc2\xc0\x92\xc9\x1d\x69\xe5\x82\x2f\x1b\x7f\xcb\x33\x7a\x4c\x97\x65\xd2\x16\xcb\x4d\xf7\x32\xb2\x91\x4b\x9a\x13\x78\xe0\x1b\xad\x23\x98\xee\x2c\x1c\xa0\x47\xac\x2b\x5d\x7a\x49\xf9\xd9\xf4\x54\x6b\xc8\x90\xc4\x80\xc9\xf6\x64\x73\x1d\xc5\x5a\x18\x1a\xd4\xe0\xa1\x76\x28\x1b\x70\xec\x32\x2d\x27\x0b\x12\x7b\xbd\xca\xff\x41\xdc\x0b\xbc\x3f\x18\x78\x3a\x2f\x77\x2b\x78\xc7\x77\xcc\xfb\x4b\x38\x5f\x2f\x78\x27\x75\xbd\xfc\xce\xfc\xdf\xb8\xa0\xc9\x87\x7b\x01\x22\x78\xbb\xb0\x2b\x95\x1d\x08\xc8\xa8\xe4\x9f\xd1\x90\x5b\x3b\x90\x11\xd3\x5e\x0d\x15\x40\x0e\x7d\x28\xc4\x44\x2b\xf1\x07\x83\xc1\x0a\x79\xe1\xa5\xc3\x0e\x74\x40\x3f\xea\xe9\xf8\x01\x65\x91\x18\xdc\x94\xec\x40\xea\xd6\x11\xbd\xdd\x88\x56\x15\x41\xbe\xc1\x6e\x48\x8f\xec\xeb\xd1\xc2\x69\xff\x78\x74\xb8\x0b\x71\x72\x93\x1c\x1c\xb6\x49\x46\xe7\x49\x49\xc9\x94\x95\x01\x6e\x20\x58\xfd\x67\xb2\x73\xd4\x3b\xfc\x71\x67\x7e\xc8\x4d\x72\xa7\x92\xa7\x29\x9d\x25\x9b\x65\x59\xc3\x8f\xc1\x4e\xdd\xa9\xa9\x98\x4f\xc9\x03\x59\x73\x40\x92\x31\x7f\x97\x17\x31\xbe\xa9\x4a\x67\xa0\xc6\x49\xd2\x26\x63\xd7\x89\x34\x81\xe4\xa4\xb0\xc0\x1f\x8b\x9f\x01\xdb\x0f\x9a\x4d\xf7\xf3\xd9\x3e\xc6\xbf\x9e\x24\xcb\xc9\x66\x09\xc6\x24\x0c\x62\xfa\x92\x49\x5e\x14\x74\x52\x62\x94\x5f\x7d\x7c\x84\xe0\x8b\x84\x81\x29\x91\x8b\x13\x8c\x0e\xca\x45\x82\x35\x68\x36\x45\x78\x37\xe0\x17\x06\x0d\xd0\x8d\x18\xb7\x49\x12\x34\x7e\xe0\x28\x95\x61\x1f\x84\xf4\x87\xcb\x51\xeb\xeb\x73\xb9\xc8\x97\xf4\x54\xe2\xe2\xca\x30\xd6\x16\xa6\x89\x65\x5e\x4a\xf6\x78\xa1\x36\x4f\x4d\xe4\xef\x96\xe7\xf0\x35\x46\xbf\x10\x12\x27\xd9\x64\x91\x17\x64\x9f\xf4\x89\x48\xda\x2a\xde\xec\xc9\x37\xf6\x6a\x42\x94\x0e\x49\x62\x19\x8f\xda\x5c\xb6\xd5\x35\xaf\x43\x19\x6b\x1f\x38\x2f\x45\x74\x1f\xab\x93\xc7\x9c\x7f\xa4\x15\x88\xeb\x29\xf0\x6c\x61\x83\xb7\xca\x60\xc5\x35\x02\x04\x97\xc4\xa4\x20\xc9\xa4\xc8\x19\x43\xcf\x18\x0e\x1a\x60\x0e\xc4\xae\x38\xe2\xc3\x4e\x0b\x4e\xf0\xb2\x6d\x29\xd9\x90\xe5\xbd\x3f\x9c\xe5\x03\xfd\x32\x38\x78\xbb\x5d\x70\x07\x41\x6f\x10\x3e\x43\xa4\x1f\x29\x44\x20\x55\xd1\x84\xf9\x03\xef\x24\xab\xd4\x1d\xfc\xfb\x7e\xcb\x90\xb1\x96\x08\xa2\x6e\x90\xc5\x23\x4d\x31\xef\xa8\x24\xfb\xd1\xdb\xb7\x6f\xdf\xee\x9f\x9e\xee\x1f\x1f\x9f\x3d\x7b\x36\x58\xad\x06\x8c\xbd\x13\x9b\x82\x40\x8d\x37\xe5\xa4\xa2\xd2\xf9\xbb\x8b\xc8\x35\xdd\x29\x73\x71\xf5\x58\xb5\xd0\x94\x7d\x84\x87\x89\x71\x44\xb3\xa8\x25\x0f\x1f\xa3\xe9\x74\x4a\x4e\x4f\x4f\xc9\xf1\x31\xe1\xf4\x88\xa4\x44\xce\x9f\x9e\x9e\x5d\xbc\x7b\x17\x55\x4c\x6c\x65\x7e\x32\x7a\x29\x08\x7f\xa0\x74\xed\xdb\x3c\x35\x5f\x4a\xba\x41\x33\xe5\x2f\x3e\x69\x6c\x40\x16\x9a\x02\xc6\x19\x2e\x36\xce\xe5\xe3\x8a\x0c\x01\xf4\x81\xdd\xe4\x0d\xb8\x3e\x0f\x1c\xbb\x42\xb0\x0b\x93\x53\xcf\x7d\xd2\x03\xeb\x2b\xf9\xfc\x13\xb9\x7b\xf7\xee\xdd\xaa\xed\x20\x48\x4d\xec\x50\xbd\xaf\xca\xca\xbf\x6c\xdc\x94\x13\xef\x1d\xc1\xbb\x9e\xb7\x6f\x75\x07\x9f\x9f\x5d\x48\xc1\x77\x46\xa3\x11\xef\xe6\x60\xb5\x41\x6d\xb5\x77\x51\xfd\x76\x89\xa8\x3b\x18\x75\x0e\x0e\x09\x6d\x94\x7b\x48\xc7\xe8\xd5\xd0\x97\x28\xc3\x41\x02\x76\xbf\x2b\x15\xed\x3f\x65\xe4\xdf\xb7\x7b\x57\x64\x96\x30\xb8\x47\xda\x88\x08\x70\x22\x6c\xdb\x24\xc9\xec\x9d\x28\xdf\x01\x97\x93\x9a\xac\x28\xd0\x85\x65\x8e\xa9\x75\x4c\x9e\xdc\x8d\x6a\xa5\x47\xa8\x71\xa0\x0d\x58\x9c\x3d\xf4\x9e\x1f\x3e\x42\x2c\x28\xc0\x27\x31\x28\x7a\x9b\x8f\x30\x88\x72\x1a\x79\x17\xb5\x6d\x5d\x59\xb5\x49\xf4\xce\x72\x22\x21\xf5\xb1\x45\xaa\x35\xcd\xd1\x32\xd4\xfa\xa8\x56\x97\xa4\xde\x6c\xd3\x1a\x27\xa0\xe4\xcd\x9b\x58\x72\x53\xc7\x70\x5d\x6c\x56\x49\x46\x0a\x9a\x4c\x93\xf1\x92\xba\x79\x1f\xf2\x99\x0e\x27\x09\x2b\x3c\xd5\xf7\x37\xc1\xc9\x87\x8c\x29\xa1\xbc\x1b\x92\x12\xdd\xdd\xe7\xb4\x24\x09\x74\x93\xa8\x85\x31\xff\x53\xfc\x20\xb0\x64\x25\x16\x2e\x8a\x91\xff\xb5\x4c\xb3\x0f\x2a\xac\x66\x96\x4f\xe9\xaf\xac\x93\x17\xf3\xee\x34\x65\x65\x77\x99\x94\x94\x95\x10\x0a\xa0\x9b\xac\xd3\xee\xa6\x4c\x97\xe0\xcf\xff\x0f\xfe\xeb\xfd\x64\xc3\xca\x7c\xf5\x3e\xcd\xd8\x9a\x4e\xca\xf7\x72\x2e\x7b\xcf\xff\xc3\x5c\x67\x82\x4c\xd7\xd9\xdc\x63\x05\x3f\x06\x48\xa3\xd9\x4d\x18\xbc\x4b\x37\xab\xb8\x7b\x93\x44\x52\x03\xdf\xa7\x64\x8f\x44\xe4\x66\xd7\x3c\x6b\xb4\x27\x40\xce\x05\xff\x1a\x20\x16\xe7\x1a\xec\x37\x8c\xae\x13\x45\xae\xb1\x02\x9d\xa5\x57\x7e\xee\x16\xcf\xb4\x86\xc2\x6d\xb1\xf5\x96\x6d\x66\xb3\xf4\xea\x5e\xb0\xa1\xe2\x2e\xd0\x6d\xa8\x60\xd1\x1b\x53\x32\x74\xb0\x94\xc0\xa6\x9c\x80\x2a\x8a\x47\xf0\xb8\x7a\x97\x67\xd4\x09\x56\x2e\x1b\xf5\x2e\x28\x13\x6c\x1b\x2f\x3f\xe7\x62\x04\xda\x7b\x24\x8a\xbf\xbb\x30\xc0\x21\x21\x0d\x27\x2e\x4f\x99\xc4\xe4\x2e\xc3\x5a\xc8\xb9\x7f\x08\x93\xbd\x1c\x3f\x91\x9e\x5f\x0d\x5c\x52\x4c\x10\x57\x3d\x34\x80\x0c\x58\x14\x1e\x19\x62\x1b\xf6\x48\x74\xfe\x5d\x4b\x7d\xb1\x49\xf8\xfe\x4f\x34\x08\x33\x4d\x80\x65\xb3\xa0\xb7\x27\xd0\x55\x7c\x81\x45\x75\x38\x58\x19\x79\x41\xb2\x31\x46\x4d\xb8\x8c\xc8\x63\x38\x2c\x92\x5d\x27\x22\x85\x78\x53\xdb\x83\x8a\x35\x8a\x07\x38\x08\x01\x56\xe9\xb5\xda\x82\x59\x33\x1d\x9e\x26\x98\x7c\x7b\x67\xf0\xfe\xc5\xe8\x3a\x67\xa5\x90\x46\xed\x66\x6c\x56\xe4\x2b\x61\x1f\x21\xc2\xc4\x8e\x50\xc0\x8e\xdc\xac\x86\x79\xe7\xc7\x56\x69\xac\x23\x3e\x97\x10\x1f\x8c\x6b\x58\xba\xa2\xe6\xac\xe0\x5c\xa5\x03\x9c\x51\xae\x67\xdf\xba\x28\xc7\xca\xe5\xe2\x5f\xa4\xcc\x07\xe2\xea\x97\x37\x68\x80\xf7\xf5\xbf\xfb\xfd\x26\x17\x7c\x86\xc0\xe2\x40\xb2\xb2\x0e\xcc\xe9\xe9\x6f\x34\xfe\xd6\x96\xca\x0e\xf7\x57\x56\x77\x88\x89\xce\xcc\x8c\x47\x2a\x8f\x6c\x79\x13\x5e\xe4\x97\x71\x65\x87\x58\x23\x86\x77\xa0\x6d\x96\x40\x42\x3c\xfb\x8b\xd5\xff\x01\xdd\x2e\x3a\x1b\x8f\xdb\xf2\xff\xcf\xbb\xbd\xcc\x1b\x77\x7a\x99\xef\xd0\xe5\xdd\x2e\x39\x99\x91\x75\xc2\x18\x9d\x92\x44\x66\x00\xff\x40\xaf\xdb\xb0\x24\x4d\x97\x4b\xc2\x37\x11\x2a\x18\x34\x55\xbe\xc9\xb2\xba\xf4\x62\xe8\x10\xf2\xb2\x5c\xd0\xe2\x32\x65\x54\x57\x36\xb2\xd0\x88\xfa\x98\x9a\x41\x74\x93\x44\xf2\x31\x29\x52\xbe\x40\x62\x0a\xbd\xc6\x6b\x0b\x42\x74\x50\x20\xd4\x4d\x46\x2f\x9f\x2b\xf9\x3a\x67\x0a\x1f\xe8\xb5\x6d\x9f\x5f\x1b\x6e\x0c\x69\x74\xde\x27\xe3\x71\xb1\xa5\x77\x2d\xa2\x56\xfe\x22\xce\xe1\x3d\x6f\x21\x6f\xc3\x6f\x8b\xd3\xa7\xfd\xeb\x9d\xc6\x99\x90\x4d\x02\x87\x9a\x5d\x0e\x57\x88\x09\x7c\xc6\x02\x29\x97\xb5\xbb\x21\x87\x89\x3d\x47\xc1\x13\xcc\xeb\xd5\xb6\x5d\x05\x4d\xc5\x96\xeb\x54\xe8\xf3\x24\x9b\x6f\x92\xb9\xd3\xeb\x1d\x88\xad\xef\x54\xc6\x8a\x22\xf4\xb5\xac\xc7\x3a\xc6\x4a\x4d\xdb\x1c\x07\x82\xe2\x34\xea\x65\xb7\xa7\x4d\xb6\x77\xdb\x29\x99\x93\x85\xdf\xd3\xee\x3e\xc5\x73\x1f\xb2\xe4\x15\x1e\xc6\x56\x2c\x05\xa3\xeb\x4e\x47\xef\x5f\x3d\x7e\xfd\x1e\xc3\xc2\x90\x21\xec\xc0\xb4\x8c\x44\x29\xc6\xa8\x21\x43\xdc\xa4\x59\x55\x3c\xd8\x67\x2f\xdf\xbc\x76\x20\xb1\xba\x07\x79\xd8\xeb\xbd\x7f\xfb\xf8\xe1\xeb\x11\x19\x92\xf8\xd6\xd1\x6d\x72\x93\x1c\xf6\x7a\x64\x8f\xdc\xbd\xd3\x92\x87\xcb\x06\x52\x1d\xa9\x5e\xc4\x4d\x5f\xe5\xd3\xcd\x32\x27\xfb\x64\x91\x64\x53\x3e\xd8\xd5\x31\x12\xfa\x2c\x31\x12\xcb\x4c\x78\x8c\x8c\xe1\x3e\x8f\xf4\xef\xde\xe9\xb5\x06\xb6\xf4\x56\xf9\xf4\x46\x3f\x9e\xa6\x1f\xd3\x29\xcd\xa6\x6d\xc2\x7f\x31\x3b\x33\x91\xbc\x92\x55\x50\xe4\x7b\x0d\xb6\xa7\x7f\xaa\xb7\xe1\x0f\x21\xf4\xc1\x08\x2f\x6e\x61\xa2\xbe\x6e\x93\x55\x9b\x4c\x1d\x3b\x51\xae\xea\x10\xc7\x6d\x92\x67\xac\x2c\x36\x93\x32\x2f\x48\x41\x57\xc9\x9a\x89\x7c\x68\xbd\xfd\xbb\x77\xb9\x7e\xf7\xef\xf6\x7a\xfb\xfd\xbb\x77\xef\x5a\xd3\xd3\x35\xb9\xcf\xfb\x91\x7f\x15\xaf\xc9\x4f\x43\xff\xd4\xb3\xdb\x25\xb0\x71\x2c\x3e\x52\xb2\xa4\xc9\x5a\x60\xc5\xcc\x7b\x09\x99\x6d\x96\x4b\xe8\x0a\x58\x12\x4f\xae\x27\x4b\x19\x06\x9e\x57\x2a\x43\x13\x84\xda\xea\x5f\x93\x3d\x5e\x55\xb6\x6b\xdf\xeb\xec\x66\xdf\x37\x8d\x4f\x60\x6a\x6e\x77\xb3\x29\x27\xdb\x45\x0c\x07\x2f\x6f\xce\x1e\xfd\xc5\xc5\x2a\xd9\xfc\x5a\x62\xd5\xf8\x04\xa6\x6d\xc2\xb4\xad\x0c\xdc\xfb\x6c\x58\xd4\x31\x2d\x6c\x8d\x6d\xcb\xa5\xae\x29\x56\x6d\x8e\xa1\x26\x5a\xbe\x78\xab\xb0\xd2\x80\x08\x68\x8d\x36\xfe\xee\x37\x4b\xef\x12\x35\xc3\x2a\x6d\x80\x0c\xb5\x69\x2b\x0f\x19\x78\x43\xf6\xab\x5c\x48\x8b\xfd\xac\xc1\x48\x6c\xec\x8b\x21\x93\x50\xff\xeb\xdc\x18\x07\x28\x79\x30\x44\xae\x0f\x04\xf9\x6a\x00\x7d\x23\x14\x5b\xcf\xdf\x93\x5b\x15\xd5\xfa\xde\xdb\x5d\xda\x55\x75\xd5\xbe\x4d\x7e\x26\x73\x3b\x8a\xb2\xe2\x06\xf5\x0f\x91\x63\x0d\x84\xb8\x98\x14\xf6\x13\x9c\xa9\x69\x72\x1d\x38\x1c\xd8\xa5\x69\x22\xf3\xee\x5f\xa9\x75\xd2\x3c\x0c\x18\x83\x16\x92\x7d\xd2\xff\xb2\x66\xfa\x37\xf2\xf2\x7d\xd0\x0a\x61\x37\x5d\x32\xd8\xdf\x85\xa7\x0a\xb3\x04\x41\x1b\xa7\xa0\x69\x95\x3d\x98\x82\xdc\x1f\x8a\xb5\x4a\x58\xb2\x78\x68\x15\xdb\x13\x5a\x4f\x5c\xbf\x38\xa7\xed\xd6\xca\xac\xa2\xab\x8c\xb5\xd7\x97\x8d\xe2\x2a\x03\x90\xcf\x6d\x3e\x7e\x77\xec\x26\x7c\x0d\xc3\x97\xaf\xc2\x0f\x2e\x8b\xb7\xf3\xf3\xbb\x97\xce\x56\x45\x42\x28\xed\x60\xf9\x4d\x73\x47\x6c\x0d\x8b\x6e\xda\xf8\xfd\xfd\x29\xff\x33\x3e\xe5\x78\x0b\x0f\x9f\x73\x3e\xb1\x7d\xc5\x4f\x7a\x70\xc4\x6e\x9d\xc0\x49\x93\x49\x9c\x34\xf9\xdc\x93\x3d\x72\xab\x26\x47\x4b\xb0\x64\x57\x19\x7c\x8d\xcf\x3f\xf6\xc0\xce\xe2\xaf\x5d\x06\xfc\x89\xb2\xdf\x02\x55\xb1\x4c\x20\x7b\x8e\x6f\xa3\xfc\xb7\xab\x18\xb6\x2d\x19\xfe\x82\x92\xa8\x58\x52\x7c\x35\x91\xfc\x59\xcb\x0b\xae\xb8\xbb\xf2\xf6\x75\x96\x19\x7b\xe1\x6e\x35\xcf\x77\xf6\x83\x10\x35\x8b\x13\xf2\x47\x2c\x50\xc8\x96\x45\x0a\xc1\xee\x0d\x6f\x4c\xfe\x03\x0b\x98\xbd\xa1\x73\xa0\xb6\x5f\xb3\xa0\xd9\xb1\xeb\xbf\xd6\xa2\x46\xf3\x28\x8e\x04\x83\x3c\x8a\x45\x4e\x23\x1e\xff\x03\x0b\x1d\x6d\x6a\x52\x71\x18\x6a\x86\x99\x92\x53\x86\x99\x3a\x10\x0d\x52\x7a\xbd\x8a\xbc\x2b\x9b\x2c\xbd\x0a\x21\x87\x0c\x78\x33\x30\x4b\x75\x4c\x5e\xd0\x78\xb6\xf2\x7e\x0c\x6f\x6d\xc2\x2e\xa1\x01\x0b\x9a\x4a\x3c\x22\x4b\x87\x1b\x70\x4d\xf4\xbf\x27\x41\x3b\x4c\xc4\x2a\x38\x1f\xaf\xc2\x13\xf0\x4a\x4c\x53\xee\x5b\x3e\x05\x05\x50\xc0\x08\xf2\xdf\xa3\xd6\x86\xe0\xd5\x32\xd1\x2c\xbc\xa8\x6a\xb7\x08\xa9\xd1\xb8\xe1\xf6\x02\x0f\x8e\xe9\x06\x55\xed\x17\x61\x40\x2b\xe4\xc0\xa5\x30\xa8\x90\x06\xc4\xf3\x19\x08\xa1\x30\x0f\x31\xc6\xe9\x19\x28\xf1\x78\x10\x2a\x1a\xa9\x14\x54\x00\x87\x19\xb4\xd4\x92\x9b\x05\x5b\x11\xca\xaf\xcc\xff\x6b\xf4\xf2\x45\xec\x9c\x8d\x2a\xa5\x7b\x91\xbc\x68\x75\x14\x8c\x0c\x57\x15\x1c\x51\x5e\x22\x13\xcb\x5c\x8b\x0c\x0c\x23\x43\xdf\x77\x07\xaa\xde\x38\x08\x0d\x00\x89\xb7\xac\x76\x88\x5e\x27\x05\x4b\xb3\xf9\x93\x65\x32\x67\x21\x14\xf4\xaa\xa4\xd9\x34\xfe\xd7\xef\x10\xc8\xee\x95\x09\x0d\x58\xab\x5c\x8a\xf0\x3e\xf5\x61\x30\x1f\x4c\x10\x51\x27\xff\x48\x8b\xd9\x32\xbf\x0c\x23\x84\x5b\xd4\x34\xcf\xaa\xae\x69\x02\x06\x22\x03\xb9\xa5\x09\x79\xf0\xcb\xc2\x59\xc0\xfb\x93\x0e\xac\x5b\x1f\xc7\x53\x8f\x7f\x79\x07\xe6\x6e\xc9\x51\xbb\xb2\x48\x27\x0a\x3d\x3e\x55\xa9\x52\x32\x9d\xa2\x9d\x89\xc8\xd4\xff\x42\xe4\x41\x6f\x93\x88\x16\xc9\xc3\xf1\xb8\x88\x74\x9e\x7e\x1b\x72\x17\xd0\x9d\x60\x6d\xe0\x17\xc9\x8a\xd6\x01\xbb\xd0\x45\x91\x5f\xaa\x00\x7d\x6e\x85\xeb\xa8\x4d\xce\xe1\xff\xfd\x8b\x36\x89\xae\xf3\x08\xab\xbd\xe5\x9b\xc3\x0a\x22\xa2\x0e\xff\x73\x70\xa1\x08\x35\xa9\xc1\xff\xde\xda\xb1\x0a\xff\x71\xe8\xd7\x91\x95\x20\xfb\x82\xd1\x57\x90\x06\xe0\x31\x8a\x54\xa3\xb6\xa0\x9a\x82\x35\x86\x33\x01\x79\xef\x54\x03\xda\x90\xbc\x67\x8c\xa6\x40\x0e\x3e\x04\x3e\x87\xb6\x20\xab\x82\x13\x49\x48\xe0\xb9\x68\x1b\xf7\xbd\xdf\x58\x83\x4c\xab\x36\x84\x7e\xd2\x8f\x78\xc9\xac\x9f\x4b\x4e\x0b\x9e\xdc\xef\x0c\x2d\x12\x32\x14\xf0\xea\xbe\x9f\x16\x09\x03\x1e\x95\xf3\x1d\xaf\xdf\x56\x60\x38\xb0\x9c\x13\x14\x5a\x78\x09\xc1\xdc\xb9\x06\xeb\xb7\x3a\x48\x94\x16\xc9\x96\xab\x9f\xaa\xfa\x62\x82\x7b\x0c\x68\x9c\x54\x2d\xe2\x32\xa8\x42\x71\xae\x65\xb7\xbc\xc9\x18\x64\xd9\x0b\xf7\xe0\x75\x63\xb8\xe6\x80\x4d\x21\x73\x43\x73\xf8\x18\x78\x59\x4c\xd3\x2c\x59\x56\xa9\x0f\x47\x8b\xfc\x0a\x6e\x90\xd6\x45\x9b\xbc\x7d\xfc\xf0\xb5\xa6\x61\x57\xca\x6d\xb5\x12\xdd\x8c\x5a\x24\xb5\x07\x7b\xdd\x5b\x98\x70\xd6\xec\x9e\x77\xb4\xe7\x3d\xb5\x18\x87\xc6\x79\x01\x54\x65\x56\x15\xf0\x26\x86\xa7\x46\x68\x82\x6b\xf3\x00\x0f\x76\x5d\x68\xbb\xe7\x3f\xc3\x1b\x7b\xce\x85\x74\x11\x1c\x01\x6e\x7d\x29\x24\x60\x76\xab\xa7\x8b\x85\x1c\xd3\x1f\x64\xca\x97\xb5\xdf\xf3\x6f\x2f\x2b\x2c\x23\x1e\x17\x09\x8b\x57\xd2\x26\xdc\xed\x0c\xe7\xeb\xba\xf4\x17\x78\xf6\x1b\x3e\xb0\xd5\x8e\x0a\x1e\x3e\x7d\x32\x2c\x75\xd0\xc1\x03\x0a\x34\x7f\x3a\x58\x59\x9b\x2c\x71\xd8\x9a\x61\xca\xee\x93\xe5\x3d\xb2\xb7\x97\x7a\xc1\x78\xc5\xb9\xa4\x08\xff\xca\x6b\x9d\xa7\x17\x1d\x96\x66\x93\x60\x32\x54\xb1\x17\xc4\xd0\xb0\xfe\x5e\x90\x08\xfb\x82\x62\x93\x4d\x92\x12\x13\xd7\x07\x81\xa6\x78\xa0\x0a\x1b\xb2\xd8\xa6\xea\xc4\x16\xf2\xb7\x7f\x52\x44\xaa\x0a\x19\x02\xbe\xba\xad\x27\x09\x6f\x6d\x9d\x18\xd8\x15\xd2\xd8\x64\x65\x1a\x34\x7a\x42\x69\xa8\xa3\xe8\x0a\x81\x58\x68\xc8\x90\xec\x9d\x64\xb3\x34\x4b\xcb\xeb\xc6\x6c\x92\x3f\x5a\xf2\xd8\x42\x47\xf2\xdb\xe4\xe9\xb6\xeb\xb3\xfb\xc0\xff\x25\x57\xd6\x4a\xc5\x83\x86\x2e\x30\xec\x70\xd4\x8b\x75\x98\x1c\x81\x6d\xb1\xc6\xdc\x6d\x24\x9a\xe3\x8e\xff\x76\x37\x43\x7e\xd0\xfb\x64\x3c\x2e\x5c\x18\xbe\x8a\xd0\x2d\x14\x8c\xe1\x88\xe4\xbf\x3a\x65\xfe\x66\xbd\xa6\xc5\xa3\x84\x81\x1d\xe5\x97\x8e\xe0\x4c\x61\x87\xce\xc8\x02\x24\x5c\x8e\x0d\x70\xfe\x58\x07\x8e\xcd\xb1\xf0\xf3\x17\x95\x8d\x20\x62\xa2\xf7\xc5\x2f\xff\xc9\x31\xe6\x4f\x95\xe6\x3f\xd4\xf6\x17\x15\x8a\x2e\x4a\xb7\x15\x57\x95\x4b\x26\x51\x16\x43\xd5\x35\x55\xcc\xc8\x7f\x86\x56\x7a\xd1\x1c\xcd\x7f\xbf\x57\x96\x08\xf5\xaf\xe7\x7a\x1b\xdb\xd8\xe3\x7f\x3d\xb6\xb7\xf3\x8d\xba\xf4\x1f\xe0\xbc\xbe\x82\x11\x3e\xf0\x1c\xc6\x38\x8e\x6b\xa1\xfc\x17\x9d\x34\x9b\xd2\xab\x97\xb3\x58\x71\x1d\xb2\xcd\xda\xc6\xaf\x3b\xcd\x55\xcf\x68\x8f\x30\x3d\x12\x5f\xd9\x70\x92\x6d\x38\x3e\xf2\x03\x71\x8a\x61\x2c\x3e\x81\xf7\xf1\x01\xe7\xe2\x07\x64\xaf\x4f\x06\x64\xbf\x6f\xaf\x00\xd1\x6b\xa6\x81\x59\xb1\xfa\x38\xc8\x4f\x32\x9e\x5b\x35\x33\x01\xab\xa8\x4c\xf6\x04\x03\xfb\xc0\x68\x2e\xfc\x49\x6f\xf2\x96\x6c\x33\x12\x9b\xd3\x52\x6c\xe5\xbc\x13\xb8\xfa\x19\xfd\x63\x52\x33\xc5\x5b\xd6\xed\x38\xdf\x7f\xf1\x7a\xaa\xf6\x13\x8c\x99\x3a\x80\x76\xf5\x97\xd6\x9b\x4a\xed\xa5\xce\x7d\xc8\x02\x42\x7e\xf8\x01\xfe\xdc\x1f\x6e\x5f\xa4\xd8\x4a\x09\x1f\x88\x3a\x83\x6c\x93\x24\x6a\x53\x25\xc9\xca\x55\xe2\x0e\x24\xfd\x58\x0c\x51\x45\x0c\x54\xa9\x04\x7c\x4c\xfe\xad\x06\x5f\xae\x06\xf6\x3a\x85\xfc\x39\x8a\x50\x47\x74\x57\x55\x78\x38\x1e\x17\x7f\x2b\xc2\x97\x2a\x82\xed\x34\x42\xfe\x0c\x35\xa8\x23\xb9\xab\x12\xbc\xc5\x8f\xcb\x4e\x1b\xee\xb4\xf8\x0f\x6b\x85\xfa\x78\xdb\x1d\x69\x8b\xd9\xf8\x88\xff\xd1\x2a\xe5\x75\xd8\x8e\x4a\xe6\xe4\x17\xb1\x30\x34\xd2\x19\xab\x7a\x8d\x06\x85\xef\xfe\x2d\x83\xa8\xfd\xf0\xa1\x82\x8e\x3e\xc3\x85\x1f\x4e\xed\x25\xab\xe0\xda\xc4\x03\xa9\x71\x9a\x71\x75\xd6\x60\xa8\xc2\x52\xae\x48\x18\x5f\xcf\xc0\x79\x59\x8c\xd9\x05\x26\x7e\x78\x0d\x23\x08\x3c\x5e\x54\x47\xef\xad\x9a\x7e\xc2\xd1\x49\xbe\x5a\x6f\x4a\xbd\x33\xd6\x21\x8d\x83\xe1\x22\xd4\x2d\x18\x32\x20\x2f\xd7\x6c\x2a\xd2\x80\x02\xde\xc2\x9b\xea\x46\xf1\x49\xf9\xf3\x1a\xa5\x6a\xfe\xa1\x8d\x52\x54\x76\x69\x14\x2e\x3a\x3e\xb7\xaf\x54\xdd\x3f\xb8\xb7\x14\x9d\xa6\x4d\x33\x2f\x53\x54\xbb\xda\x62\x27\x12\xb8\x40\x34\xee\x1d\x02\xdd\x5c\x4f\x03\x16\xef\xbb\xd1\x08\x8c\x8f\x6d\x34\x60\x6d\xb8\x2b\x95\x40\xdf\xd6\xd3\x31\xce\x9c\x77\x20\x16\x3a\x29\x87\xc8\x34\xe6\x6d\x43\xc5\xcd\xae\xa3\x26\xde\x07\x8f\x7f\x51\x5f\xa5\x74\x82\xb9\x39\x2e\xfc\x63\xab\x9a\x42\xde\xfc\xca\xe2\x55\x7a\x45\xa7\x95\xa5\xbb\x1e\xa7\x7d\x9d\xd3\x2e\x64\xa7\xb3\xde\xb0\x45\x5c\x70\x29\x3e\x66\x93\x64\x4d\x63\x73\xbb\xe1\x1a\xcf\x6b\x01\x55\xd7\xe3\x30\x6e\x3d\x53\x3c\x75\x14\xe1\xea\xd0\xfd\xb4\x1a\xc2\xdb\x8d\xdb\x46\x15\x43\xec\x36\xa4\x28\xb9\x95\xd5\x3c\x0b\x2a\x35\x71\x88\xf4\xdc\xaf\xe9\xfc\xf1\xd5\x3a\x8e\xfe\x6f\x1c\x41\xd6\x3c\x4d\xe5\xd7\x3c\xcd\xe2\xe8\x13\xe4\xec\x8b\x5a\x51\x9b\x44\xa9\x79\x66\x1f\xfa\x9a\x84\x50\x1a\xfd\xda\x18\xa3\x9e\xca\x43\x18\x8d\x1e\xdf\x81\x47\x3d\x87\x5a\x38\x2d\x21\x2b\x96\x0d\xd5\x70\x49\xd8\x15\xd2\xca\x10\x3c\x5d\xf2\xe4\xe5\xeb\xd3\x87\x67\x67\x27\x2f\x9e\x06\x2d\x02\x7a\x6d\x72\x1e\xcd\xe7\xfa\x6e\x5f\x5f\x07\x56\x19\x9f\x5d\x52\xfa\x41\x2c\x8b\xbf\x27\x7d\x65\x62\x56\x61\x72\x00\x04\x9e\x3e\xdd\x85\x80\xb0\x7d\xad\xa1\x61\xe6\xf2\x94\xa0\x26\x51\x71\x53\x3d\xa7\x65\x69\xa7\x5d\x0e\x30\x27\x60\xe1\x8f\x98\x21\x90\x51\x51\xdb\x35\x17\x09\xd1\x8b\xe6\x73\x90\x61\x24\x65\x63\x98\x39\x54\xc2\xef\x54\xe1\xe9\x53\x90\x61\x64\xc8\xa6\x49\x95\x50\x1d\xa9\x19\x0f\x9f\x9f\x3c\x1c\x3d\x1e\xa9\x86\xbd\xc9\xd2\xf2\xe1\x32\x4d\x58\xac\xb9\x6a\x13\xae\x1c\x9a\x90\x01\x63\x62\x6d\x13\xde\xc5\x06\xee\x57\xaf\x4f\x5e\xbe\x3e\x39\x7b\x6b\x21\x7f\x55\xa4\x79\x91\x96\xd7\x16\xfe\xbe\x8d\x5c\xc3\xd8\xf8\xfb\x26\xf2\x87\xaf\x47\xa6\x3e\x9b\x17\xe7\x4f\xe5\xbd\xf9\xa8\xe6\x76\x7d\xde\x04\xe8\xa9\x42\xd5\x2f\xf3\x03\xf1\xf3\xa0\x02\xe1\xbc\x39\xac\xe8\x15\x09\x7d\x28\x7e\x1e\x56\x61\xb6\x70\x6f\x81\x7e\xea\x20\x3f\x12\x3f\x8f\xaa\x91\xcf\x2b\xc0\x4d\xd5\xb2\xac\x06\xa4\xe6\x2a\x15\x96\x6a\x86\xc4\x1b\x19\xaa\xf0\xfe\xdf\xd5\x4e\x85\xd7\xc1\xc1\xda\x61\x9b\x31\x2b\x0b\x3e\x7a\x0f\x5a\x17\x7c\x09\x90\xab\x6b\xf5\x96\x3f\x1b\x05\x5a\x20\x14\x36\x64\xfd\x00\xac\x55\x1b\x3f\x68\x2e\x2e\x54\x06\x1a\xb8\xd8\x3f\xbb\xcc\x8f\xd3\x79\x8a\xc7\xea\x41\x56\xba\x5d\x72\xfa\xf2\xf4\xf1\x8b\xb3\x91\x7f\xd2\x30\xa2\xa5\x9a\xf2\xaa\x52\x8a\xda\x60\xcf\xe8\x72\x4d\x0b\x5c\xd0\x5b\x5f\x03\xd8\x1c\xd8\xcb\x28\x5b\xf8\x12\x08\x26\x72\xf7\x0e\xd2\xf6\xc3\x08\x94\x59\xe7\x15\xef\x39\x64\x67\x9a\x5f\x36\x05\xbc\xae\xf8\x50\x39\xb2\x38\x19\xbd\xfc\xf3\xc5\x21\x26\x9c\x60\xab\x4d\x77\x0c\xbb\xb8\x6f\x3f\x1e\x36\x68\xa0\x68\x1d\x3b\xc9\xbc\xd3\x25\xd1\xb6\x4b\xa3\xd8\xf2\xb6\xe8\xb7\xc9\x61\x13\xc4\xa6\x00\x9b\xe0\xb7\x3e\xb9\xdb\xc8\x54\x31\x0f\x41\x7a\x29\xfd\x70\x92\xcd\xf2\xe0\xf1\x16\x68\x81\x67\xcb\x5c\xd9\x58\x89\x0b\x14\xcc\x7c\xba\xde\xca\x5b\xb0\xf1\x5f\x8b\xbf\x4b\x43\x52\x9f\xc3\xa3\xa7\xb6\xf6\xdc\x23\x46\x5f\x9b\x00\x4a\x8e\x29\xd0\x06\x76\x96\x14\x73\x5a\xda\x17\x70\x32\xf1\x6e\x30\x8a\x8e\xd1\x9a\x97\x33\xd5\x18\x83\x0a\xc8\x7d\xcb\x1d\x9c\x41\x9a\x0c\x2d\xc9\x88\x26\x28\x6c\xf6\xc6\x81\x73\xc7\xa1\xc9\x4f\x26\x8a\xd0\x49\x1c\x40\x0d\xc3\x6d\x24\x55\xe1\x7d\x18\x4a\xf4\xe1\x72\x69\xa6\xd8\xda\x22\xd5\x6d\xb7\x82\x1a\x69\x2c\x7b\xbc\x71\x17\x4d\x93\x6b\x14\xb2\x88\x83\xa4\x9e\x9f\x14\xf9\x0a\x74\xb4\x01\x4e\xdf\x8e\x4b\x25\xe5\x7e\x73\xf6\x08\x2c\xdc\x2d\x3a\xd0\x81\xb0\x74\xb5\x5f\xab\x27\x73\x03\xa9\x47\x1a\xd8\xd5\xcc\x69\xf9\xe6\xec\xd1\x93\xcd\x72\x89\x9a\xed\xee\x5f\xd0\x77\xc0\x00\x3d\x15\x01\xb5\x1d\xb8\x29\x72\xa5\xc0\x8e\x5d\x57\xf3\x2a\xdf\x97\xed\x5b\x95\xe8\x67\xb4\x74\x8e\x7e\x06\xab\x65\xe9\x60\xda\x6c\x45\x2b\xa1\x79\xf5\x1d\x16\xaa\xba\xda\x9d\x86\x0b\xd0\x9f\xd5\x7a\x2a\x68\x75\x09\xe5\x61\x93\x4b\x6b\x9f\x02\x96\x83\xa7\x2f\x5f\x9c\x3d\xbb\x80\xb0\xf7\xc6\x0a\x07\xdd\x01\x6f\xca\x5c\x09\x4d\xd7\x17\x3f\x63\x53\x2a\xbf\xa7\xd6\xe4\x61\x69\xde\x03\xf4\x0b\x9a\xd0\x74\x19\xc7\xae\x6f\x2a\x24\x21\xb0\x0f\xd8\x07\xa6\xca\x88\x49\x49\xf2\xac\xfc\xe7\x4c\x5f\xdc\x5d\x37\xad\xd1\x31\x58\x8b\x1f\x1f\x8b\x5d\x65\x74\x0c\x1a\x01\x1e\x8c\xcd\xd4\x01\xd3\x5a\x93\xe8\x38\xa8\x0b\x41\x55\x10\x55\xee\x36\xd4\x83\x63\x73\x47\x10\x5e\x7e\x1f\x1f\x37\xdf\x35\x40\x0b\x0d\xbd\xa9\x39\x16\xec\x76\xc9\xd9\xcb\xe3\x97\x03\xf2\x9a\xae\xf2\x8f\x94\x7c\x97\x1b\xf6\xab\xdf\x91\x59\xb2\x5c\x8e\x93\xc9\x07\x92\x66\x24\xa3\x57\x25\x59\x25\xbf\x42\x78\xa6\x25\x4d\x18\xed\x78\x6a\x21\x28\x39\x1a\x21\x0f\x1d\x61\x6e\x81\xb9\xc0\xb4\x92\x25\x9f\x3e\x29\x08\x93\xba\xa3\x26\xf5\x48\x9e\xd3\x2c\xa5\x59\xe9\x2f\xe8\xad\xc5\xfc\x31\x74\xe3\x31\x5f\xcb\x1f\x3f\x54\x71\x14\x9c\x41\xe7\x4a\xaf\x76\xd4\x71\x34\xce\xae\x42\xd8\x26\xeb\xfe\x3c\xef\x5d\x6c\x5b\xde\xf3\xcf\x00\x8e\xbc\x63\xd5\x3c\x32\x24\xab\xe4\x03\x7d\x0a\xaf\xe3\xe8\x18\x55\x4a\x78\x07\x36\x56\xfe\x63\xa9\xfe\xf0\xe3\x16\x0c\x80\x63\x39\x04\xc4\x54\xdf\x78\x1c\x48\x78\x44\xb2\xcb\x70\xd0\x35\x0f\x9b\x8e\x09\x4b\xe3\x6f\x55\x8d\x0a\x0d\x75\xab\xc2\x72\x1d\x41\x10\x74\xab\x09\xbb\xd9\xc3\xd2\xc0\x5b\x71\x5f\xbf\x7b\xec\x76\xc9\xb3\xc7\xcf\x5f\x3d\x7e\x3d\x6a\x34\xc5\x1e\x4b\xac\xe1\x34\xda\x06\x51\x6b\x20\xc0\xec\x5a\xe4\x9b\x6c\x1a\xb8\x29\x85\xc9\xd2\xcd\x99\x85\x77\xae\xd2\x6d\xde\x2b\x85\x50\x0f\x2d\x95\xa2\xc5\x42\x0a\x93\xb6\xf7\x39\xb6\x26\x7f\xf2\xc0\x60\x55\x4c\xe6\xc9\x74\xaa\x66\x72\x55\xc8\x15\x2e\xda\x79\xf2\x5e\x81\xf6\xae\x56\x86\x3f\x91\x70\x50\x6e\xa6\xb3\x02\x98\x57\xdb\xe1\x4b\xae\x6a\xf5\x9b\x6a\xeb\x6a\xfb\x0c\xbe\x5a\xd5\xcf\xe0\x96\xd2\xae\x80\xe5\x15\x57\x58\x15\xf3\x65\xcb\xcc\x71\x0a\x4c\x3b\xb3\x06\xbe\x64\x7c\x46\x4b\x96\x6c\x97\x99\x83\x81\xe4\x19\x33\x24\x2f\x73\xc7\x35\x92\xbc\x00\xe6\xd5\x76\x90\xbc\xaa\xd5\xbf\xdd\x50\xf2\x6c\xbb\xe4\x19\xdb\x41\xf2\x0c\x58\x66\x5c\xf2\x2a\xba\xcd\x16\xc9\x8f\x80\x69\x47\xf2\xf8\xf2\x73\x24\x3f\x52\x4e\x7a\xb5\xc7\xdf\xff\xfe\xb7\x58\x1c\x99\xee\xc3\xe8\x7b\x1d\x38\xd8\xf2\x8e\xd9\x47\xa3\x86\xc7\xec\xd5\x74\x9a\x91\x19\x19\x8e\x7d\x56\x0a\xc2\xa0\x73\x9f\xac\x34\xd2\xae\x7d\xdb\x2f\x01\x6c\xd6\x6e\x92\xbe\x71\x07\x50\x47\x83\x13\xb9\xfd\xf9\x44\x9a\x52\xe1\x64\x8e\xbe\x80\x4c\x63\x3a\x9c\xd0\x9d\x2f\x21\xd4\x9c\x12\x27\xf5\xe3\x17\x91\xda\x81\x16\x27\x76\xf7\xcb\x88\xb9\xb7\x42\xdb\x3e\x1b\x5a\x4f\xb9\xda\xee\x32\x85\xd9\x75\xfb\x47\x0d\xe7\xb1\x91\xb9\xda\xf1\xb7\x85\x16\x68\x08\xb6\x62\xee\x1b\x05\x81\x6f\x49\xa6\x20\x1c\x96\xba\x00\x83\xaf\x88\xe2\x1e\xf1\xc1\xe5\x38\x80\x90\x21\xc1\x91\x79\xcf\xba\x00\x83\xcc\x06\xe2\x15\xd9\xe3\x30\x91\x73\x8b\x66\xf0\x23\x68\x85\xbc\x1a\x43\xae\xee\xf4\x94\x6d\xdb\xf6\x9e\x3c\x7f\x7e\x82\x13\xb5\x5e\x87\xc7\x51\xaf\x13\x91\x3d\x22\x56\x56\x37\x43\xf1\x28\xec\x66\xed\xdc\x26\xe3\x9b\x21\xda\x24\xf8\xb5\xc9\x78\x42\xf5\xbe\xcf\x3a\x86\xc1\x67\x7c\x2a\x7e\xd3\xfe\xdc\xbf\xe5\x19\xad\xf3\x15\xff\xcd\x81\x95\xae\xe2\x5b\xd7\xaa\xef\x04\xe2\xea\x00\x23\x32\xba\x4d\xf4\xe6\xec\x11\xe4\xb5\xa8\xb6\x92\x7c\x27\x28\x37\x40\xf6\x28\xc7\xdd\x60\x49\xa7\xe4\x4d\x96\x7e\xa4\x05\x4b\x96\xe4\x2c\x5d\xd1\x00\x0d\xae\xc7\x90\x5a\x88\x0c\x45\x5a\x79\x9d\x69\x48\xb4\x11\x9e\xf9\xda\x94\x0c\xb9\x70\xee\x19\x2f\x65\xb6\x7b\x32\x24\xf2\xe7\x8d\xbe\x05\xb0\xc4\x3c\x21\xf0\xd7\x2c\x98\x62\x76\x39\xfe\xc7\x7c\x0d\xc1\xe7\xc8\x10\x83\xd0\x99\x05\x33\x99\xa6\x6b\x66\x24\xac\x10\x45\x98\x07\x9b\xff\x71\x5f\xbf\x00\xb7\x27\xf1\xcb\x2c\x84\xf6\x96\xb9\xfd\x0a\xa1\xe1\xaf\x59\x80\xc7\xb0\xe8\xb4\xf7\x94\x5a\xa4\x55\xf8\x07\xf0\xaf\x15\xbf\x2d\x00\xcc\x4e\x0b\x39\x93\xe1\x97\x5d\x88\xf9\x63\xa1\x14\x7f\xba\xc5\x90\x1a\x5c\x94\xc3\x6f\x1b\x60\x84\x7e\x63\xf8\xc3\x2f\x12\x49\x76\x15\x84\x78\x0e\x01\x1a\x9c\x98\x2f\x6c\x50\x88\xb2\x01\x30\x22\x18\x87\x59\x2c\xc2\xbb\xf3\x3f\xd6\x6b\x19\x4d\xde\x0c\x2d\x6e\x16\x89\xc3\xdb\xa5\x13\x69\x1e\x41\x56\xc9\x15\x19\x12\xa5\x91\xa7\xc9\x95\x55\x9a\x66\x56\x69\x6a\x89\xc7\x0c\xf9\x21\x3c\x83\xe5\xa3\x09\xc6\x8c\xee\x1d\xd9\xdd\x2b\xf6\x7a\x3a\x32\x97\x55\xb8\x19\x97\x45\x32\x81\xca\xe2\xa7\xad\x4e\x10\x66\x07\x14\x0a\x7e\xd9\x85\x18\x8b\x06\x4a\xf1\xa7\x5d\x2c\x63\x15\xe6\x3a\xca\xa2\x2c\x52\x11\x53\x70\xd6\x96\x4f\xb6\x5a\x42\x2e\x24\x50\x4a\xf8\x85\x85\xe9\x4c\x79\xc5\x8e\xae\x57\xe3\x7c\x09\x79\xda\x0c\xd7\x57\xf2\xc3\x0f\xa2\x84\x8f\xb7\x50\xa6\x00\xc0\x7f\xae\x61\xe2\x48\xa4\x77\x82\x2c\x4e\x82\x5a\x07\x73\x38\x45\x70\x6d\x1c\x5e\x77\x18\xb3\x57\x84\xd3\xce\x7d\x95\x6f\x49\x64\x89\x01\x2b\x9c\x9f\xcc\xf4\x42\x72\xe2\x32\xa5\xf1\x5f\xa3\x97\x2f\x40\x10\xfc\x87\x2d\x28\x43\x4a\xbe\x88\x36\x19\xa4\x00\xe2\x7f\xcc\xd7\xc2\xc0\x9a\x0c\x65\x74\x28\x6b\x32\x33\x62\xb3\xc8\x4b\x02\xf1\x68\xcd\x61\xca\x5b\x54\xbb\x3c\x79\xe5\xc2\x23\xd3\xf4\x87\x71\x60\x1e\xa2\x93\xa7\x76\x93\x70\xca\xc5\xc1\x8a\xb6\xa0\x37\xcb\xaf\x55\xe1\x88\x96\x6e\x61\xca\x9e\xd3\x64\xad\xeb\x9f\xa8\x67\x13\x4a\x5e\x9d\x28\x34\xf2\x3a\xcd\x46\xa5\xae\x34\x15\x9c\x71\x2d\x6a\x82\x8a\x53\x7e\x39\x60\xe5\x33\x53\xf5\xc4\xd9\xb9\x35\xc0\xc5\x79\x9e\x58\x0d\xf0\x27\xeb\x23\x92\x5c\xb3\x93\xec\x54\x03\x1d\xeb\x17\x6e\x53\x14\x5d\xb8\xf4\xb2\x1a\x15\x68\x90\x82\x16\xcf\xcc\x6d\x9d\x8b\x5e\xdc\xd0\x21\x98\x71\x77\x1b\x80\xb3\x05\xe6\xdc\xa5\x06\x78\xb1\x50\xdb\xd7\xda\x61\x68\xa3\x03\xdc\x4a\x15\x7d\x23\xae\xbd\xdc\x93\x54\x47\xd6\x4a\x28\x90\x98\xd6\x02\x0f\x89\x04\x6b\x20\x90\xcc\x23\x12\x00\xd5\xb7\xfe\xa6\x8c\x83\xa0\xe6\x81\xa2\x73\x18\x68\x82\x2d\xf2\x8d\x56\x33\x88\xaa\xa5\xe0\x9f\xe5\x9b\xc2\xf9\x82\xe0\xd9\x8f\xf9\xa8\xc1\xf1\x14\xc8\xfe\x5a\x88\xc5\xa8\xf9\xa8\x2b\x8c\x8c\x0d\x80\x44\x69\x2e\x61\xbd\x77\x26\x2d\x67\x03\x21\x26\x2a\x19\xf0\x50\x01\xe2\xa3\x03\xc3\xbf\x42\xb2\xe8\x2c\x7f\x73\xf6\xc8\xfb\xd0\xda\x10\xd0\x21\xee\xd7\x12\x12\xbd\xd9\x70\xb0\x5c\x9f\xfa\x24\x17\x09\x7b\xb8\x84\x5d\x08\x17\xa9\xe2\x30\xf4\xda\xee\xec\xe3\xd1\x19\xac\x20\x8e\x93\xeb\x65\x3a\x5f\x94\xa3\xe4\x63\x9a\xcd\xf9\xea\xd4\x99\xa2\x04\xcf\xe2\x97\x5d\xf8\xc6\x10\x8a\xf1\xe4\x01\xc9\x62\xa7\xe0\xec\x51\xa8\x40\x6e\x04\x50\xd0\x72\xf5\xee\x42\xe8\xa9\x5d\x2e\xc9\xdd\x81\xc4\x2a\x92\xdc\x60\x59\x32\x99\x50\xc6\xf2\xc2\xcd\x71\xf3\x86\x89\x74\x1e\x29\x26\xbb\x31\x93\xd0\xb8\xe3\x12\x0a\x5a\xde\x44\x59\x45\x58\x14\xd6\x51\xc6\x89\x56\x90\xf6\x28\x57\x10\xc5\xc4\x15\x61\x9a\x58\x56\x47\x12\x3e\x51\x55\x14\xf9\x90\xf6\x09\x8a\xa4\x83\xb5\x19\x84\x00\xc6\x22\xe7\xa4\x0d\xd2\x03\x4a\x4a\x1a\x52\x55\x0e\xba\x5d\x04\xf9\x95\x75\x26\xf9\xaa\x3b\xdf\xa4\x53\xca\xba\xff\xe8\x5e\x26\x45\x96\x66\x73\xd6\xe5\x98\xbb\x1e\xa7\x5c\x0b\x7c\x4e\x41\xcf\x47\x8b\x74\xc6\x37\x61\x61\x8e\x2d\x10\x47\x3e\x23\x4a\x1b\x32\x35\x65\xe5\x3e\x43\x24\x5d\xd8\x9b\xaf\xf8\x32\x3e\xcd\x70\x11\x95\xe6\x99\xc1\x70\x68\xd0\x09\x06\x64\x0b\xec\x7d\xa7\x30\x83\xc8\xd2\xab\xca\x0b\x6d\x33\xeb\x17\x5e\x5d\x04\x0f\x0d\x6c\x8c\x27\xd9\x3b\xb8\x4c\xa9\x45\xd7\x49\xd6\xeb\xe5\x75\xcc\x57\xa0\x6d\x92\x14\xf3\x0d\x97\x03\x6b\xe9\x89\xaa\xca\x2d\x6b\x5d\x50\x98\xb5\x5e\xe5\x4c\xa4\x37\x8c\x99\x97\x5e\x51\xda\xb4\x18\x0b\x43\x77\x47\x7c\xa3\x4f\x86\x04\x3f\x5c\xe1\x3d\xf1\x8d\x7e\x68\x03\x7c\xcf\x02\x58\xe6\xd9\x9c\xaf\xe1\x55\x9a\x69\xfb\x85\x0d\x6c\x64\x67\xd3\x1b\x4a\x67\x07\x70\xa3\xdf\x11\x97\xbd\x64\x48\xc4\x2f\xbb\x78\x5d\x50\x90\x11\x7c\x6e\x5c\x51\x38\xa0\x2a\x29\x63\x03\xe0\x82\x2e\x21\x71\xd2\x19\xc6\x8a\x35\x1f\x1d\xac\x09\x2b\x9f\x6c\xca\x0d\xec\x27\xf5\x83\x0d\x24\xb6\x5d\xd4\x21\x22\xfc\x4d\x74\x20\x05\xbf\xf8\x95\x68\x9c\x13\x3e\xc6\x07\x34\x62\x30\x58\xe0\xc6\x7b\xbf\x92\xe9\x90\x60\x3d\xfb\xa0\xa6\x37\x84\xf5\x1c\x02\x35\x9d\x12\x9c\x37\x8e\x4e\xa9\xb9\x1c\x39\x86\xc9\xd7\x11\x03\x82\x8c\x16\x79\x51\x3a\x70\xf0\x2e\x04\x6c\x4b\xed\x54\xbf\x0b\x01\x4b\x46\x8d\xa7\x4a\x06\x6c\x58\xfd\xca\xae\x20\x96\xe0\x48\xdd\x59\xd7\xdd\xe8\x77\x66\x69\xc1\xf4\x62\x4e\x01\x3e\xb1\x5e\x57\x55\xf9\xc5\xc4\xfd\xc4\x7a\xed\x88\x56\x2c\x4b\x99\xc5\x09\x7f\xe1\x33\xcb\xdf\x9e\xc2\xf9\x82\x0d\x69\x1f\x32\x18\xc0\x76\x6f\xfc\x62\xbe\x0d\x57\xb0\x7b\xe4\x17\xf3\x6d\x05\xdb\x52\xd4\xd6\x73\x0d\x37\x2e\x7c\x5d\xe7\x88\xb6\xb9\x55\xe4\x2b\x87\xa3\x94\xbd\x3a\x55\xac\x9f\xb0\x57\xa7\x8e\x7a\xd0\x22\x9d\xa6\x74\xa5\xf5\x4d\xbc\x70\xbf\x30\x73\x5a\xde\xe8\xc7\x32\xde\x13\xc4\x68\x69\x93\x59\x4a\x97\xd3\x36\x9f\x1b\x1c\xc7\x12\xc8\x22\x28\xcf\x93\x74\x2c\xb5\x96\x9f\x6c\xdb\x30\xe1\x8b\x5b\x7c\xae\x89\x11\x9b\xa0\xe1\x9b\xca\x21\xda\x73\x20\x7d\x11\x6f\xca\x89\x8a\x03\x17\xfe\xc8\x2c\x53\x86\xcb\x22\x76\xb2\x5a\x2f\x83\x2d\x70\x9d\x4b\x53\xf6\x02\x32\xce\xc9\xa8\x49\x7e\xb6\xdf\x29\x88\x7e\xe6\xa4\xe4\x25\x2a\x98\x2b\x31\xa2\xbe\x18\xe7\x22\x96\x43\x9e\x79\x4a\x4a\x3e\x7d\x82\xf3\x5e\x9b\x0d\x20\x53\x91\x05\x52\x9b\x7d\x57\x76\x8b\x48\xb8\x10\xf6\x3c\x0b\x38\xee\xe7\x90\x40\xf8\xdc\x88\xa4\xa3\xdd\x06\xd1\x4b\xb0\x7f\x70\x8f\xa4\x7b\x7b\x2e\x2f\xf9\xa6\x3c\x4f\x2f\xb0\xa7\x4d\x6e\x6a\x39\x71\x1a\x92\xcb\x78\x95\xda\x72\x42\xe4\x47\xe2\xbf\x6e\xeb\x9f\xb3\x55\xd9\x26\xf6\xb3\x7e\x00\xdb\x21\xeb\xc9\x82\xc5\x17\x2e\x06\xf5\xb6\xe5\x6b\x8e\x1c\xec\xa0\x3b\xa8\x7a\xa3\xbc\x80\xb5\x6a\x13\x4d\x12\x87\x78\x66\x45\x4c\x9c\x32\xce\xf3\x25\x4d\xb2\x28\x94\xa8\x72\x9b\xfa\x6d\x53\xc1\x6d\x6a\x48\xfc\x50\x7c\x15\xea\xa8\xa0\x43\xc6\xcf\x33\xbd\x50\xd2\xad\xbb\xd7\x78\xa0\xd8\x32\xc1\x7b\xa1\x40\xb0\x84\xbf\xa0\x30\xbe\xd9\x71\x9a\x83\x55\xbf\x23\x27\xc3\x66\x50\x3a\x8d\x90\x01\xe9\xd5\x3a\xfc\xea\xf1\xf9\x85\xd3\x84\xa8\xb2\x87\x9c\xb5\xc8\xf7\xe4\x8e\x1e\xaa\x4e\x18\xc8\xdf\x43\x4e\xc4\x38\x1b\xdc\xd9\x65\x32\x88\xd3\xa6\xf4\x1c\xd6\xdd\x89\x21\x30\xb1\xdb\xf3\x5f\xc8\x27\xbc\xf6\x1b\x20\xb6\xdd\xd1\xd6\x0f\x08\x7c\x95\xbf\x0e\x31\x40\x55\x47\x51\x4e\x3c\x75\x93\x4e\x05\xf1\xe6\x73\x56\x24\x17\x0f\x4d\x38\xc1\xd6\xff\x29\xec\x34\x96\xce\x69\x9a\xfd\x39\x1c\x9d\xa6\x59\x14\xba\xf7\x7e\xba\xcc\xc7\xc9\xd2\x08\x15\xdb\x36\x48\xf2\xdd\xc3\xc0\xc9\xca\x10\x08\xd1\x98\x66\x13\x3a\x20\x51\xaf\xd7\xeb\xef\xc3\x7f\x91\x9f\x1f\x05\xe2\xba\x0c\x74\x30\x53\x1f\x02\xc3\xa8\x0c\x5c\x0f\x2c\x22\xdc\xf8\x07\x24\x7a\x98\x65\x39\x39\xce\x57\x69\x96\x06\x28\xa0\x83\x35\x07\x3b\x0e\x94\x26\xe3\x71\x11\x2a\xfb\xbd\xdd\xbc\x75\xbd\xfd\xfe\xc1\xfe\xad\x9a\xd6\xed\x7f\x49\xeb\xc4\xbd\xe8\xa3\x45\x91\xb2\xb2\xae\x7d\xff\xfb\x51\x75\xfb\xbc\x32\xa3\x7d\x46\x34\x86\xb0\x85\xf6\x80\x74\xff\x7b\xfa\xaf\x7e\xfb\xe0\xf7\xb8\x5c\x7c\x62\xe5\xa7\x6c\xfa\xa9\x98\xb6\xba\xba\x9e\x38\x05\x18\x18\x77\x6d\x98\xdb\xd8\x9d\x44\xf9\x87\x65\x4c\x86\x22\xf3\x31\x38\x7d\x07\x64\xb2\x29\xc1\x4c\xd5\x2b\x20\xe0\x35\x0a\x66\x22\x06\x82\x9e\x30\x69\x83\x05\x48\x38\xa3\x17\x01\x63\xf6\xa8\x5c\x44\x95\xc5\x03\xce\xd7\x36\x04\xac\xdc\x8e\xe0\xa0\x0e\x41\x36\xdd\x8e\xe0\x56\x1d\x82\xa2\x16\x01\x6f\xe1\xbd\xd0\x77\x52\x88\x6b\x4f\xc8\xd6\xf8\x2c\xa1\xf8\x4d\xe3\xaa\x51\x3a\xa5\x84\xce\x66\x74\x52\x92\x74\xb5\xce\x8b\x92\x61\x19\xba\xc1\x6e\x4d\xa2\x8e\x10\xc1\x23\x5e\x2c\xc6\x85\x45\xe5\x29\xb3\x39\xf5\x40\x91\x98\x9f\x34\x79\xe9\x6d\x55\xcf\x02\x40\x6d\x63\x03\x81\x82\xac\xd8\x1c\xc0\x5f\x11\x13\x7d\xf1\x70\xcc\x37\xf0\x60\xd0\x9d\x8c\x99\x17\xad\x60\xcc\x3c\x87\xc4\x29\xb2\x2c\xd2\xfa\xd8\xa9\xfa\xf1\xa5\x73\x25\x23\xc8\xc4\x7e\xa1\x17\x73\x42\x9c\x27\xd8\x35\xf8\x4b\x0f\x52\x1d\xec\x38\xd8\xe1\xb5\xe9\x36\xc6\x39\x74\x2f\x89\x64\x1d\xaf\xcc\x20\x03\x65\x15\x55\x2a\xa0\xf5\x8d\x97\x43\x00\x5e\xbb\xd0\xf2\x32\xcd\x82\x85\x97\x1e\x5e\xb7\xad\xc6\x5b\x17\x56\xde\x23\x58\xa0\xf0\xd2\x14\xca\xd6\x7c\x4e\xc9\x74\x3a\x12\x86\x18\x37\xfa\xf1\x54\xe4\xfd\x57\x1e\x8a\x70\xa1\xdf\x26\xd3\xb4\xa0\x00\xef\xea\x48\x5e\x2e\xe0\x76\x1a\x0f\x0e\x8e\x45\xf5\xd8\xac\x6d\xf5\x91\x00\x70\x54\x67\x6f\xa8\x29\x90\x9b\x88\xd4\x06\xb9\x17\x40\x01\x3a\x14\xae\xaa\x4f\xa7\x1c\xaa\x28\xe0\x0a\x7a\xe2\xcc\xd0\x15\x9e\xae\x3e\xde\x8c\xc7\x4b\xf7\x08\xbd\xdb\x25\x6c\xb3\x86\x39\x87\xe4\xd9\xf2\x9a\x1c\x74\x7a\xfb\xac\xbc\x5e\x52\x2e\xdc\xb8\x8f\x36\xe9\x24\x2f\xe0\x51\x22\x6b\x79\xdd\x70\xa3\x6f\x8b\xcd\x5f\x2f\xd9\x7d\x65\x79\x92\x8a\x7e\xea\x37\x66\x4d\x5a\xdf\x98\xfc\xa9\x77\x15\x4c\x32\x4d\xfc\x8b\x39\xdd\xef\x57\x2c\x29\x93\x31\x7b\x44\xd3\x65\xe0\x63\x0c\x91\x94\xf1\xa3\x70\xdf\x8f\x42\xec\xe7\x09\x13\x18\xb6\x6c\x9d\xcd\x7a\x13\x83\xb0\xbb\x0d\x72\xf9\x94\xba\xe0\xa6\x9f\xb0\x27\x20\x7f\x2a\x74\x5d\x67\xaf\x99\x31\xc7\x5e\xb3\x50\x86\x2c\x8d\x07\x1e\x3d\xe7\x5b\x7b\x96\x0e\x26\xba\x0a\xe6\xc7\x0a\xa4\xd4\xb2\x5f\xc1\x74\x12\xe2\xe8\x49\x91\xaf\x8e\x61\x8c\xa9\xc2\x6e\x97\x77\xd0\x25\x25\x8b\xe4\x23\x25\x09\x59\xa5\x57\x24\x9f\x91\x75\xce\xd2\x32\xe5\x6f\xb2\x29\xc9\xe8\x1c\x6e\x3f\x50\x09\x58\x5b\x08\x91\x4c\xf3\xcb\x8c\xc0\xd1\xb4\x89\x6e\xb2\xa0\x93\x0f\x03\xb8\xd2\x63\x83\x6e\x77\x9e\x96\x8b\xcd\x18\x6e\xf4\xf0\x73\x28\xff\xa4\x8c\x6d\x28\xeb\x1e\xf4\x8f\x8e\x2c\x5d\xb1\xf8\xfe\x36\xe0\xc0\x64\xf5\xd5\x4f\x43\xd2\x23\x3f\xfc\x80\x3d\x22\x1f\x84\xfc\x31\xea\x75\x28\xd6\xa3\x85\xe2\xbe\x89\xe2\xbe\x8d\x82\x3f\x3a\xc1\x1e\xd5\x93\x97\x7c\xc4\x99\x1b\xe5\x90\x40\x54\x67\x39\x97\xbc\x78\x68\x91\x3d\x20\xd7\x22\x37\xd1\xa3\xea\x5e\x48\xbd\x7a\xf7\xc2\x5a\xd5\x0b\x9e\x2d\x74\xbb\xe4\x6c\x41\xc9\x2c\x5f\x2e\xf3\xcb\x34\x9b\x93\x49\x3e\xa5\xa2\xab\x18\xd9\xac\x55\xef\x31\x4a\x49\xb9\xa0\xa4\xa4\xac\x64\x7c\xbb\x66\xa2\xa0\x57\xc9\x6a\xcd\x2b\xe4\x33\x72\xb9\x48\x4a\x52\xf2\xff\xad\x68\x92\xb1\x4e\xfd\x37\xdb\x7c\xfc\x5e\x78\x24\xa8\x1a\x1a\x2e\x19\xb3\x27\x30\xce\xad\x0a\x56\x36\x40\xe2\x7f\xde\x35\xe2\x23\x13\xad\xfe\xa2\x2b\xb4\x1a\xe3\x91\x87\xcf\x58\x00\x88\x5f\x0e\x3e\xf9\xcd\x37\x98\x44\xb8\x10\x36\x09\x8c\x7f\xbf\x27\x07\x87\xd6\xb2\xe6\x5a\x2a\x01\x62\x42\xa8\x2e\x39\x38\x6c\xd9\xc3\x6f\x82\x37\x74\x58\xa3\xcc\x45\x37\x7f\x63\xf7\xba\x1c\xb9\x26\x6f\xbc\xc2\x59\x2e\xce\x6f\x40\x9b\x0c\x0e\xf5\x27\xd3\x1d\xfa\x16\x87\xfb\xb5\x6a\x2a\x2b\xb5\x1c\x96\xfb\x07\x12\xff\xfe\x4f\xa4\x0f\xf3\x8d\x2a\x96\x0b\x1c\x2d\x42\x84\xe4\xb5\x7c\xfe\xbe\x1f\x92\xfe\x81\xbb\x1a\x14\xea\xef\xac\x06\xec\x95\x96\x71\x51\x48\xdc\xb5\x15\xfc\xdd\x65\x35\xe5\x4b\xd2\xf6\x7e\x3e\xec\xf5\x44\xbb\x60\x96\xec\x1f\x1e\xf5\xee\xde\x41\x01\xc6\x65\xf2\x81\x0f\xb6\x34\x2b\x73\x92\x4c\x26\xf9\x26\x2b\xc9\x92\x26\x6b\xb4\xf9\x28\x36\x4b\xca\x5a\x75\xb8\x94\x28\xf9\x86\xec\xf0\xc7\x5e\xcf\x65\x1b\x18\x22\x37\xa1\x0c\xf6\x9f\x40\x3d\xdc\x90\xe0\x54\x63\x35\x85\x0f\xfc\x82\x7e\xa4\x05\xa3\x7c\x88\x9b\x2d\xf7\x08\x0b\xc6\x6e\x0a\x92\x9c\x38\x67\xa2\x62\x01\xc0\xfc\x5c\xe1\x10\x66\xb4\x51\x3e\xf3\x17\xc9\x8b\xd0\x01\xa6\x70\x72\x0d\x7e\xcc\xaa\xf3\x3e\x06\x3f\xe0\x86\x3e\x6c\xc9\xdf\x6e\xb1\x6f\x66\x6a\x87\x1b\x18\x27\x7d\xbb\x8c\xe7\xe0\xbc\x46\x87\x59\x37\x8a\xb2\xbb\x6a\x80\xd0\x84\xd6\x2c\x18\xf8\x18\x04\x17\x13\xe2\xfb\x61\x2b\xad\x5d\xaf\x36\x83\x3b\xd9\x9a\x52\xdc\xe8\x1c\x77\xb0\xd9\x08\xaa\xf3\xb2\x7b\x28\x48\x57\xc6\x98\xf0\xd1\x54\x64\x93\x0f\xe1\xe8\x1f\xb8\x97\x0f\xea\x57\x68\xa9\xd8\xed\x92\x45\x92\x4d\x97\xd4\x16\x36\xa3\xeb\xa4\x48\x4a\xba\xbc\x26\x63\x3a\x49\x36\x38\x20\x66\xcb\x3c\x29\xf9\x80\x5e\xe7\x69\x56\xc2\x36\x8d\xd0\xa2\xc8\x0b\x46\x62\x58\xb1\x90\x7f\xf4\x7f\x3c\xba\xd3\xda\xda\xb1\x86\x0f\xb6\x35\x2a\xad\x7d\xf0\xe7\x75\x59\x45\x2a\x76\x43\x54\xc0\x43\x97\xdc\xf1\x15\xec\xa8\x77\xf8\xa3\xab\x61\xa4\x26\x95\x77\x08\x71\x13\xad\x25\xdb\x52\x70\xbb\x48\x6f\x92\x83\x43\x1f\xf3\xad\xa3\x6a\xc4\x95\x49\xa8\x7d\xd4\xfd\xc3\xc3\x5e\x40\x16\xf4\xb0\x0a\x77\x65\xf2\x68\x1f\xf7\x8f\x47\x7c\x4a\xf7\x90\x6b\x97\x4c\xf3\x5f\xb7\x6b\x6c\x75\xc8\x9a\xcf\xc4\x19\x5f\x84\x55\x6b\xdd\x82\x16\x7e\x5e\x2c\x29\x00\xed\x44\x58\xcb\xa9\xb1\xbb\xd2\x4c\xd3\xdb\x2d\x87\x6b\x9f\xdd\x29\x9d\x25\x9b\x65\x19\x46\x5e\x2e\x8a\xfc\x12\x82\x8e\x3e\xe6\xac\xc6\xd1\x9b\xec\x43\xc6\xb7\x04\x5c\x7d\x49\x44\xf6\x88\x9c\x51\xcd\x5a\x15\x69\x65\x54\x8c\x91\x37\x8c\x8a\x00\x01\x2c\x06\x9f\xca\x07\xf6\x77\x46\xf8\x2a\xdc\xe8\xc7\x5f\xf5\x4b\x13\x8c\xd7\x1e\x38\x2e\xdb\x0b\x00\x98\x32\x75\x00\xac\xe1\xce\x97\xc5\x07\x7c\xc9\x7f\x70\xfb\xee\x01\x3d\x72\x71\xc1\x71\xb3\x05\xdf\x15\xf0\xb7\xfa\xb7\x6f\x1d\x51\xbd\x4d\xaa\x0c\xf7\xfc\x81\x3e\x64\x71\xb2\x4c\x13\x16\xd8\xdd\x6f\xf5\x4e\x91\x62\x47\x04\x86\x94\x3c\x9b\xc1\x84\x9d\xba\x27\x76\x40\x1a\x3a\xcc\x48\x1f\xca\x46\x1e\x84\x03\x70\x6a\x9c\xc9\x09\x14\x36\xc0\x33\x75\x0c\x87\xc5\x0b\xbb\xf8\x58\x9e\x48\x62\xe9\xd4\x2e\x95\xee\x0c\xb2\xf8\xd2\x21\xae\x0f\xee\xb0\xfc\xd4\x2e\xff\x59\xbb\x6d\x48\x88\x9f\x6d\x88\xb7\xea\x38\x0f\x8b\xaf\x23\xdf\xb0\x74\x99\x67\xd4\x51\x57\xcb\x02\x54\x1d\xbf\xd5\xa4\x74\x9e\xd3\xf2\xc6\x81\xff\x5d\xd8\xb2\x92\x09\xf5\xaf\x9b\x97\xfa\x1c\x71\xec\x91\x88\x45\x17\x90\x98\x5a\x8d\x90\x90\x7e\x3d\x05\xd3\x22\x48\xe9\xf5\xd9\x2a\xe6\xa5\xc6\x86\x03\x10\xc8\x64\x75\x61\xd2\x0f\xeb\x9e\x77\x56\xac\x98\x32\x27\x44\x4b\xcd\xc2\xd0\x01\xc0\x95\xa5\x8d\x1a\x2d\xc6\xc7\x30\x00\x17\x86\x56\x4a\x30\x78\x67\x02\x4d\xb5\x6e\x4a\x18\xbc\x29\x6e\xbb\xdb\x20\x87\x9e\xb8\x4c\x6f\x7b\x9b\x2a\x13\x0a\xde\xf9\xea\x06\x8e\x37\x21\x65\x53\x1b\x32\x11\x56\xed\x9a\x41\x84\x86\x3b\x2d\x4f\xc2\xb0\x6a\x91\xb7\x0e\xf0\x60\x84\x52\x5d\x14\x94\x2d\xf2\x25\x48\xd3\x49\xcd\xc9\x06\xe4\xf0\xb0\xcd\xa7\xf2\x84\xcc\xe8\xa5\x12\x7b\x99\xcb\x9f\x36\xfc\x80\x1c\xde\x06\x70\x03\x10\x65\x6d\x2f\x80\x15\x9c\xec\x9e\x32\x87\x0e\xb0\xa0\x16\x03\x72\x70\x00\x50\xd8\x37\x65\xce\xe5\x6f\x2f\xd3\x06\xe4\xe0\x08\x40\xac\xbd\x76\x97\x8b\xcc\x02\xbc\xc4\xec\xec\x00\x8a\x2e\x54\x12\xd6\x02\x3b\x1d\x90\x7e\x1f\x19\xc3\x6e\x2c\x73\x7b\x2f\xfc\xbb\xbe\xea\x5a\x40\x5c\x46\xdd\x4d\x68\xbe\x0e\xd7\x43\xb3\x0c\xfc\x77\xdb\xce\xf3\x8b\xfc\xb2\x0d\xc7\x6f\xe2\xb5\x3a\xcf\x9e\x65\x9d\xc5\x66\x95\x64\xe9\x6f\xd4\xee\x7a\x88\x62\x9b\x96\x9b\x12\xec\x94\x1f\xce\x73\x61\x0b\xde\x16\x97\x72\x6d\x72\x99\x96\x8b\x7c\x53\x8e\x36\xb3\x59\x7a\xd5\x26\x29\x43\x6b\xe5\xed\xb9\x00\x4c\x03\x68\x79\x9a\xfb\xe9\x13\xe9\xb7\xc9\xb7\xdf\x3a\x48\x25\x4d\x89\xbc\x62\x46\x33\x31\xde\xe8\xc7\xeb\x9c\xbd\xa0\xf3\x63\x75\x91\xe1\x20\xd5\x6a\x17\xe2\x15\xb6\x89\xa2\xaa\x7f\xab\x61\xa3\x6e\x75\xe0\xd2\x2c\x78\xdc\x4a\x86\xa8\xfb\xea\x24\x1d\x16\x21\x2c\x6a\xb5\x82\x07\xb1\x61\xf0\x95\x07\x2e\x27\x8b\x00\xf0\xc2\x03\x16\x93\x46\x00\x76\xea\xf3\x21\x67\x8f\x00\xf4\xa9\x07\x2d\x9d\x01\x03\xc0\x97\x1e\xb0\x9c\x71\x02\xc0\xd7\x1e\x70\x12\xb8\x41\x8f\x8d\xe3\x55\xdd\x7b\x1d\xc6\xc8\x0f\x3f\x10\x8c\xa0\x23\x20\x2e\xc2\x67\xb4\xaa\xbe\x55\x5d\xd4\xde\x5e\x5d\xf6\xd1\xfd\x21\xe9\x63\xa5\x55\xb4\x0d\xd4\xa4\xb4\x12\x95\x20\x20\x13\x02\x54\x54\xc7\xee\xd5\x74\x16\x55\x74\x04\xa0\x49\x65\x21\xaa\x2c\xa2\x36\xaa\x49\x45\x55\x79\x36\x2d\x48\x4c\xab\x48\x20\x9c\x49\x61\x2a\x6a\x4c\x23\x88\xe2\xc9\x2e\xdc\x13\x0e\x03\xf6\xb2\xca\x06\x2e\xd4\xc1\x49\x90\x01\x54\x32\xcd\xe9\x65\x15\xa7\x02\x90\x58\xe4\xb1\xca\x65\x84\xc1\x4b\xd9\x45\xd0\xaa\x2d\x21\x43\x9f\x78\xac\x0f\xec\x05\xe5\xd3\x00\x65\x05\x65\x92\x3d\x15\xf0\xa7\xbc\xa7\xa1\x3c\x50\x11\xc7\x83\xc6\x7e\x8d\xd8\xf9\xaf\xeb\x08\x33\x5e\x32\xd3\xac\x30\x39\x3f\xb8\x20\x43\x7b\x1a\xbb\x67\x94\xde\xe2\xa5\x7b\xf6\xd4\x44\x7e\x32\x8f\xf6\x93\xf3\xc3\x0b\x27\x94\x00\x31\x9c\x79\xdc\xb9\xde\x76\x21\xf2\x2e\x14\xcf\x16\x29\x33\x0e\xeb\x96\xcb\xfc\x92\x91\xeb\x7c\x83\x1f\xe7\x12\xcf\x05\xf9\x58\xe7\xbb\x50\xeb\x2b\x25\x27\x6a\xc8\xdd\x25\x66\x77\xe6\xad\x4e\x47\xb4\x7c\x6d\xcc\xe8\xaf\x05\xaa\x58\xe2\x7c\x22\x60\xdd\x4d\x9b\x5b\xde\x28\xdd\x27\x54\x0a\xa9\x86\x61\x30\x1c\x44\x1c\x49\x96\xbd\xb3\x39\xb9\xe6\x71\xab\x05\x6d\x5c\xca\x62\x43\x6b\x36\x91\xc2\x10\x77\xb7\x0e\x48\xb4\x4a\x7e\xbe\xd8\xcf\x24\x0a\x3d\xaa\xdb\x64\x99\xae\x52\x2f\xfb\x93\xd6\xff\x73\xf5\xf3\xa2\x91\xf0\x8d\xd6\xf9\xc2\x07\x5a\x8d\xd0\x04\x19\x08\xa1\xad\xe0\x14\x9b\x75\x2f\xdc\x28\xec\x6c\xe6\xf5\xb2\xfd\x21\x12\x38\xc8\xbe\x19\xbf\xd0\xeb\x4d\xdd\xd9\xee\x12\x46\xae\xc2\xe2\xa4\x98\xff\x92\x96\x0b\xb9\x58\x49\x8a\xb9\xea\x88\xcf\x3c\x0f\xf7\x43\x89\x1b\x1e\x72\x71\xb5\x3f\xc2\xa5\x62\x43\x1a\x84\xbb\xb1\xe7\x89\xf9\x39\x76\xd2\x21\x01\x3d\xcf\x62\x1a\xac\xb8\x42\x43\xcc\x6a\x36\x8a\x3c\x87\xf8\x1e\x9e\xdc\x2d\x89\xf0\xe9\xdb\xac\x79\xcf\x05\xfd\xc5\x6b\xc4\x96\xb1\x1e\x60\xa4\xca\x3b\xc0\x12\x50\x05\x1b\x55\x34\xcc\x26\xd4\x34\x16\x64\x8c\x81\x4e\x3a\x09\x63\xe9\x3c\x8b\xff\xf5\xbb\xbd\x84\xb5\x35\xc4\xb1\xf8\x9f\x91\xd8\x2a\xef\x30\xf9\x59\xe6\x9f\x1e\xa7\x88\x55\x45\x67\x47\x4e\x50\xcd\x5d\x74\x96\xc2\x93\xaa\xd4\x80\xca\x2c\xdf\x53\x46\x5d\x59\x1a\x50\xba\xcb\x79\xb4\x1d\xf9\xf6\xd2\x18\x15\xe5\x42\x2d\xdd\x1d\x75\xd2\x50\x01\x4b\x78\x44\x2f\xb6\x21\xda\xc1\x32\xde\x43\x12\x08\x11\x1e\x10\xf6\x16\x46\xfb\x7f\xc6\x56\x25\xf3\x58\x6b\xcc\xc0\x11\xb6\xca\xdc\x0e\xfa\x32\x64\x12\x1d\x5f\xf1\x6f\x77\x8b\xec\xf3\x5f\xf7\xd1\xea\x80\xec\x55\x64\xb1\x33\x02\xd9\x38\xc7\x42\x5d\x74\x6b\x3e\x19\xbd\x94\x13\x3e\xb9\xa4\x64\x9a\x93\x2c\x2f\xc1\xb1\x9b\x7f\xa5\xf1\xac\x07\x2f\xf6\xf9\xc7\x1a\xae\x18\x07\x26\x0e\x72\xd3\x3e\x24\x11\xe6\x1a\x9b\x35\x5a\x09\x73\x2c\x70\xe7\x91\xaf\x28\x2e\x3a\x9d\xca\xb0\x88\x14\x54\x45\xdd\xa4\xe4\x9f\x2c\x97\x08\x2e\xa6\xea\xd0\xc3\xba\xc8\xac\x06\x9f\xc1\x94\xa9\x2b\x97\x72\x41\x0b\xf0\x61\xcf\x72\x32\xc9\xb3\x92\x5e\x95\xfb\xb3\x82\x52\x71\x2d\xce\xc0\x66\x47\x84\x86\xc2\xf5\x33\xdf\x12\x73\x0e\x4d\xac\x5c\xdf\xb2\x0f\x24\x9f\x91\xc9\x32\x9f\x7c\x20\x93\x45\x92\xcd\x9d\x8b\x57\x5e\x2f\x59\x32\xd1\x2c\x81\x12\x9a\x8a\x9b\x6c\x68\x4b\x7c\xf0\xe3\xfe\xad\x3e\xbe\xe6\xfb\x75\x78\xdd\xfa\x13\x27\x70\xcb\x50\x42\x0c\x24\xc7\x28\x53\x5c\x2e\x04\xb7\x8d\x66\x25\xb8\x13\xac\xd8\x30\x5a\xc8\xf1\x2e\xea\xab\xd9\x1a\x39\x8f\x65\x5e\xea\x1c\xaf\xea\x44\xd8\x4b\x8a\xc2\xa1\x46\xe9\x3c\x73\xd0\xaf\xfc\x77\xe0\xde\xe0\xbd\x5d\xac\xe0\xa5\x33\xb5\x7c\x0b\x78\x43\x49\x8e\x85\x1e\xf2\x11\xc5\x92\x15\x25\x09\x23\x8f\xfe\x11\x31\x12\xbf\xc8\xa7\x49\x0b\x74\x62\x7d\x5d\x2e\x30\x36\x7a\x3e\x4d\x4a\xda\xea\x74\x3a\x2e\x9a\xf1\xa6\x04\x7d\x42\x83\xca\xff\x1a\x91\x78\x9e\xe7\x73\x08\x8d\xd1\x0a\xa9\x45\xf4\xaa\x77\x1c\x76\x84\xea\x76\xc9\xad\xa3\x5e\x4f\x29\xc0\xfe\x4f\xe4\xa8\xa7\x4e\x1a\xc0\xce\xc2\x3a\xf3\x6a\x6e\xfa\xd2\xd4\xa8\x45\xd9\xd8\x0c\xc1\x28\xc6\x25\x24\x5e\x9b\x0c\xff\x71\x76\x20\xdd\x2e\x84\xf3\x4a\x0b\x3a\x25\xe3\xeb\x90\x31\xd9\x34\x2f\xa6\xe9\x72\x49\x85\x39\xd9\x3e\xef\x24\xb1\x8f\xea\x8e\x97\xf9\xb8\xbb\x4a\x58\x49\x0b\x51\xdc\x31\x8a\x3b\xbf\xea\xb9\xc3\xb4\x2d\x7a\x20\x7f\x75\xca\xfc\x49\x7a\x45\xa7\xf1\xad\x56\xa7\xa0\xeb\x65\x32\xa1\x71\xf7\xbf\x3b\x0f\x7a\x7b\x37\xba\x6d\x12\x45\x2d\x11\x5a\xf0\x1b\x4f\x79\x21\x00\x17\x57\xf7\xfb\xa4\x47\x1e\x90\x68\xdf\x8c\x42\xa8\xf5\x99\x13\xe5\x9f\x12\x6b\xfc\x41\x80\x32\x7c\x8d\x3a\x1b\xaa\x2f\x75\xdf\xc6\x80\x26\x2b\x4d\xea\x8b\x51\xe2\x30\x60\xcd\x2e\x75\x68\xbc\xef\x5e\x78\x0c\x3b\x37\x5b\xd1\xab\xc8\xbd\x16\x43\xed\x78\x20\xe5\xb1\x27\xd4\x65\x8f\x44\x6f\x91\x56\xcb\xad\x21\x14\xc5\xa8\xa2\x2c\x21\xa2\xd3\x8a\x3a\x30\x29\x3e\xd0\x42\xdb\x93\xf7\xd7\xd1\x71\x45\x0d\x1c\x2b\x9f\x3e\x29\xad\xff\xf4\xc9\xd0\x8f\xe8\xac\xb6\xda\x03\x25\xde\x3d\x31\xe8\xf6\x48\xf4\xac\xaa\x3d\x82\x80\x59\x49\xbe\xab\x69\x92\x66\x46\x57\x83\x0a\x23\x51\x41\x81\xfb\xcb\x1b\xf4\x58\x3f\x20\x43\x22\x4f\x1c\x2a\x62\x7d\x1c\x04\xe2\x1f\x9a\xa1\x2e\x6f\x1c\xf0\xd5\x11\x0e\x6e\xe7\xb5\x8c\x9c\xe9\xc2\x07\x22\x08\x7a\x28\x01\xa3\x8b\xd0\xbd\x69\xb4\x5f\xb8\xc0\x23\x03\x6e\x14\x06\xd1\x37\x8e\xea\xb7\x0b\x22\xef\x1c\xc5\x2f\xb7\x58\x1a\xe2\xb1\x63\x27\x9a\x02\x2f\x94\x57\x8e\xe2\x97\x47\x5d\x7d\x81\x99\x1f\xec\x82\x03\x18\x77\x8e\xfa\xc1\x05\x92\xd7\x8e\xe2\x97\x5d\xec\xc5\xf5\x73\x05\x2d\x0c\xe2\xc9\x50\x2c\xdd\xec\x52\x2b\x8c\xa9\x5b\x75\x2e\x63\x73\x59\xf1\x30\x6f\x1c\xd4\x59\x83\x3a\x8a\xe0\xda\x74\xba\x78\x1c\x13\x4d\xbb\xd8\xb2\xb9\xb4\x8b\x3c\xab\x41\x59\x20\xcf\xbd\x2f\xfd\xfe\x08\xda\x13\xca\x42\xc7\x9c\xd0\x62\x43\xec\xfc\x39\x27\xe2\xa7\x0d\x50\x19\xba\xd2\x15\xa8\x15\xba\xb1\x06\x4a\xc5\x7e\xac\x84\xa9\x0e\x3e\xaa\x0a\x03\xe1\x47\x5d\xae\x99\xe6\x27\xe4\xf4\x64\x40\xc4\x2d\xd7\xe5\xe9\x15\x24\x7c\xc1\x8d\x8a\xe6\x93\xc3\xa1\xd7\x13\x89\xb3\xbc\x4c\x27\xb8\x8d\x99\x24\xeb\xb4\x4c\x96\xcc\xcc\x3d\x6b\xb5\xee\x1b\xe2\x04\x9a\xe2\xcd\x30\xe3\xae\x42\x49\x83\xf8\xc7\xff\xd4\x31\x8d\x37\x59\x7a\x55\x15\xfb\xf8\x4a\x83\x89\x71\x13\x35\x8c\xca\x7d\xd5\x24\xfb\xe7\x3f\x25\x10\xdf\x21\xb3\x32\x59\xad\xc3\x99\x65\xfe\x59\x99\x58\xa6\x36\xfd\x88\x48\xff\x0b\xbb\x0b\x88\x88\xf4\x64\x99\x27\x2a\xc1\x93\x1d\xa7\x2a\x4c\xf8\xea\xcb\x09\x9b\x89\x4f\xfc\xcc\x27\xdf\xca\x9b\xcc\x5f\x2d\x2f\x3f\xb9\xcb\x1b\x92\xe8\xa0\x73\x70\xa7\xd3\x93\xeb\x0c\x46\xcb\x67\x79\xfe\xe1\x91\x48\x2f\x14\x1b\xf1\xb2\x24\x52\xc4\x30\x53\x91\x71\x4d\xf7\x3d\x0c\x98\xbb\x92\x21\x6c\xc4\x4b\x88\xb1\xbb\x92\xa1\x75\xf1\x65\x06\xe1\x49\x33\x19\x95\x14\x5f\x3a\x91\x55\xac\x22\x8c\xa7\xaa\x23\x86\x59\x14\x54\x44\x23\xe5\xc4\x6e\x16\xa7\x4c\x46\xbc\x62\x3a\xd8\x95\xf0\x37\x34\xc2\x20\x38\xce\x89\x16\x06\xdc\x47\x2a\x06\x4e\xf0\xd9\x04\xa9\xbc\x0b\xb5\x39\xc1\x60\xb4\xc0\x0b\xfe\x34\x8b\xcd\xf0\x41\x86\xc3\xb7\x09\x62\x86\x51\x34\x83\x9d\xf9\x8d\x12\x13\x8f\x72\x75\x74\x24\xa2\xd9\xd5\x0f\xbe\x4c\x55\xd0\x21\x3b\x9a\x40\x88\x69\x11\xcc\xc8\x76\x73\xb7\x24\x04\x67\xd3\xcf\xa5\xc4\xcd\x47\xab\xa7\xd7\x53\xa9\x72\x1c\xcc\x7c\xf4\x1b\x29\x45\x85\xe5\x2c\xc4\x97\xd9\x84\x40\xd4\x24\xa9\x8e\xa6\x31\x8f\x67\xdd\x63\x82\x16\x81\x2b\x17\xa5\x40\xa1\xfb\x98\xaa\xca\x67\xfa\xe4\xbc\xee\x5a\xc1\xac\x2e\x63\xc0\xa9\x68\x6f\x73\x5a\x3e\xb2\xde\x59\xba\x22\x17\x9a\x7a\xa8\xca\xa9\x75\xb2\x29\x0a\x9a\x95\xcb\x6b\xf2\xec\xec\xf4\xf9\x6d\x91\x3a\x08\x60\xc1\xfb\x4d\xf9\xc2\x1d\x1c\xee\x43\xb8\x53\x3c\xc5\x63\x06\x76\xa8\xf8\xfe\xc9\xe9\x99\x65\x94\x72\xfc\xf0\xec\xf1\xd9\xc9\xe9\xe3\xf7\xcf\x5f\x3e\x7a\xf8\x7c\x40\xa2\xb7\x6f\xdf\xbe\xdd\x3f\x3d\xdd\x3f\x3e\x3e\x7b\xf6\x6c\x00\x57\xbb\xdd\x2e\xb9\xaf\x09\x0e\xbf\xe3\x1d\x5c\xa6\x2b\xba\x0f\x7d\xfa\x1d\xe9\xfe\x54\x81\xee\x3d\xe6\x13\x18\x05\xd0\x0e\xe0\x7a\x7a\x1b\x66\x56\xd2\xf5\xf0\xbb\x7e\x1d\x89\xd3\x0a\xec\x1d\x4c\xd8\xd0\x8c\x42\xaf\xd3\xeb\xf9\x54\x2c\xc4\x15\xb8\xac\x4a\x9c\xad\x01\x89\xaa\xe4\xc6\xe9\x7a\xf0\x86\x8c\x6a\x04\x83\x55\x43\xe2\x00\x1c\xa7\x66\xf5\x8a\x96\x9b\x28\xfc\xf6\xfe\xf2\xf8\xf1\xff\x19\x60\x3a\xe9\xfd\xf3\x5f\x2e\x7e\xf9\x25\x80\x81\x8f\x50\xab\x12\xa4\x4a\xd4\x52\x0a\x54\x81\x59\x49\xd5\x91\xb6\x3e\x62\x67\x0c\x7a\x79\xef\x9b\x6f\x7e\x6f\xf1\x2f\xe1\xff\x0b\x00\x00\xff\xff\xab\xac\xf4\x7a\x01\xa7\x02\x00") -func assetsJsMoment284JsBytes() ([]byte, error) { +func assetsJsMoment2270JsBytes() ([]byte, error) { return bindataRead( - _assetsJsMoment284Js, - "assets/js/moment-2.8.4.js", + _assetsJsMoment2270Js, + "assets/js/moment-2.27.0.js", ) } -func assetsJsMoment284Js() (*asset, error) { - bytes, err := assetsJsMoment284JsBytes() +func assetsJsMoment2270Js() (*asset, error) { + bytes, err := assetsJsMoment2270JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "assets/js/moment-2.8.4.js", size: 96381, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/moment-2.27.0.js", size: 173825, mode: os.FileMode(420), modTime: time.Unix(1597262110, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -465,7 +465,7 @@ func assetsJsPunycodeJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/punycode.js", size: 4128, mode: os.FileMode(420), modTime: time.Unix(1468174457, 0)} + info := bindataFileInfo{name: "assets/js/punycode.js", size: 4128, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -485,7 +485,7 @@ func assetsJsSjis_mapJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/sjis_map.js", size: 52851, mode: os.FileMode(420), modTime: time.Unix(1468174422, 0)} + info := bindataFileInfo{name: "assets/js/sjis_map.js", size: 52851, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -505,12 +505,12 @@ func assetsJsStrutilJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/js/strutil.js", size: 32343, mode: os.FileMode(420), modTime: time.Unix(1467921154, 0)} + info := bindataFileInfo{name: "assets/js/strutil.js", size: 32343, mode: os.FileMode(420), modTime: time.Unix(1597233330, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _assetsTemplatesIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5b\x73\xdb\x36\x16\x7e\xcf\xaf\x80\xd1\xdd\x5a\x9a\x94\x92\x9c\xc6\x93\x5d\x57\x62\x9b\x8d\xb3\x93\xcc\xd6\x8e\xa7\x76\x9e\x32\x79\x80\xc8\x23\x11\x0d\x08\x70\x00\x48\xb6\xeb\xea\xbf\xef\x00\xbc\x08\x20\x21\x9b\x72\xd3\x6c\x77\xb7\x7e\x11\x89\xcb\x39\xdf\xb9\xe0\x5c\x60\x4e\x53\xba\x46\x09\x23\x4a\xcd\xb0\x16\x82\xcd\x89\xc4\x88\x2f\x23\xba\x98\xe1\x83\x42\xc2\x9a\xc2\x35\xfa\xfa\x6b\x74\xa0\x80\xc8\x24\xa3\x7c\x89\xe3\x27\x08\x4d\xe7\x2b\xad\x05\xaf\x77\xce\x35\x47\x73\xcd\xa3\x14\x16\x64\xc5\xb4\xa5\x90\x30\x9a\x7c\x9a\x61\x09\x0b\x09\x2a\x1b\x0c\x31\xd2\x54\x33\x98\xe1\x9f\xca\x11\x4b\x07\xa1\x29\xad\x89\x2c\xd9\x6d\x91\xd1\x44\x70\xd4\x3c\x45\xb2\x5e\x3b\x1d\x53\xcb\x77\x5c\x32\x8e\x9f\x98\x17\x55\x90\x06\x42\xb1\x62\x2c\x92\x74\x99\xe9\x9a\xb0\x3b\x9b\x83\x52\x64\x09\x51\x22\x56\x5c\x37\x02\x0e\xb4\xd0\x84\x9d\x95\x73\x0a\xfd\xfa\x2b\x9a\x0c\xd1\xc1\x0c\x4d\x2a\x12\x86\x08\x30\x48\xb4\xd9\x90\x8b\x14\xd8\x0c\x53\x0d\xb9\xba\x00\x79\x41\x96\x50\xca\x99\x11\xbe\x84\x19\x56\x99\xb8\x7e\x5f\xa4\x44\x43\x3a\x70\x17\x0d\x1b\x62\x08\x4d\x45\xa1\xa9\xe0\x68\x4d\xd8\x0a\x66\xf8\x68\x82\xe3\xa3\xc9\x74\x5c\x8e\xee\x5c\xf6\xec\x18\xc7\xcf\x8e\x1f\x5c\x76\x3c\xc1\xf1\xf1\xc3\xd4\x5e\x1c\xe3\xf8\xc5\xc3\xd4\x8e\x26\x16\x5c\x87\xde\x74\x5c\xaa\x64\xab\x21\x2d\x05\x5f\xc6\x77\x77\x48\x69\x22\x75\xa3\xcd\xa7\xe8\x08\x6d\x36\x51\x60\xdc\x1a\xa1\x79\xdf\x6c\xa6\xe3\x8a\x46\x45\x52\x2c\xba\xb4\x7d\x4b\xb5\xf7\x4c\xc7\xc6\xd8\xd6\x29\xf6\xf1\x4d\x63\xb2\x73\xb8\x06\xe9\x78\xa7\x7d\xaf\x16\xd9\xfd\x77\x87\x29\x55\x64\xce\x20\x3d\x3c\xf1\x24\x99\xce\x26\x9b\xad\xa3\xdc\xeb\xc6\x49\x06\x6b\x29\x78\xc4\x60\xa1\x1b\x5f\x6e\x79\xf3\xbe\xc0\xdf\xb1\xd4\x03\x6e\xdf\x7b\x01\x7f\xea\x19\x20\x9e\x79\xba\xdd\x57\xa4\xea\xc8\x05\x64\xda\x9a\x65\x3a\x4e\xe9\x3a\x7e\xf2\xc4\x0d\x36\x79\x6d\xcb\x44\x70\x4d\x28\x07\x19\x2d\xd8\x8a\xa6\xbd\xa2\x8f\x4b\x47\x2d\x19\x55\x3a\xaa\xe8\x21\x29\xae\x2d\x09\x09\x05\x10\xdd\xf0\x41\x94\xa3\x9a\xa5\xa7\x49\xeb\xcc\x95\xf0\x83\x6a\x45\x7d\x64\x5d\x3e\x89\x60\x51\x9e\x46\xdf\x22\xf3\xa0\xf2\xe8\x79\xa3\xa7\xbb\x3b\xb4\x04\x7d\x09\xdc\xd8\xa3\xa6\x80\x36\x9b\x27\xb5\x1e\x0d\x95\x4a\xa8\x6a\x7a\xf4\x4a\x70\x0d\x5c\x8f\xde\x00\x49\x41\xaa\x0f\x87\x57\xe2\xf0\xa3\x1b\x28\xaa\x3d\xb5\x14\x5a\x38\x02\xec\xd8\x8d\x94\xbe\x35\x8e\x90\x08\x26\xe4\x09\xfa\xea\xc5\x8b\x17\x0e\xc5\x1a\xe7\x29\x55\x05\x23\xb7\xe7\x24\x87\x81\x96\xb7\xa7\x90\x88\x14\xce\xa8\x79\x13\x43\x0b\xbb\xc1\x50\x5a\xcd\x7b\x09\x88\x74\xf0\x79\x64\xba\x12\x7d\x04\xd0\x62\x74\x46\x28\x9b\x8b\x1b\xb4\xd9\xfc\x50\x0e\x9c\x8a\x9c\x50\xfe\x10\xf2\xb6\x10\x01\xdb\x1e\xd7\xb6\x3d\x76\xe2\xbf\x93\x44\xd4\x6a\xfe\xb3\x49\x06\x2b\x2e\x81\xa4\xd8\x86\x25\x4f\x83\xbb\x34\x81\x2f\xcb\x9d\xf8\xe3\x87\xc9\xc7\x61\x19\xbd\xec\xc1\x68\xe3\xeb\x62\x7a\x5e\x63\xfa\x76\x8b\xc9\x59\x65\xbc\xbd\xa5\x61\x7f\xff\xdf\xeb\xfd\x47\xcf\x90\x86\x1b\xed\xa5\x48\xd7\x2f\xce\x44\x0e\x5c\x0f\x4c\xfe\xda\xca\x21\xc1\xa4\xb3\xe1\x70\xb4\x90\x22\x3f\x17\xd7\x83\xdd\x0e\x72\xff\x69\xb9\x97\xfb\x82\x32\xb8\xa4\xbf\x6c\xf9\xfe\x44\xae\x47\xa7\x44\x93\x11\x03\xbe\xd4\xd9\x83\x5e\xe9\x3d\x56\x0f\xa1\x98\xd3\x2e\x70\x5a\x51\xa5\x47\x39\x51\x79\x68\x41\xd2\x94\x1a\x57\x36\x0b\x4e\xd0\xdf\x8a\x1b\x1c\xc8\x87\x36\xcc\x5e\x5a\x1e\x4d\xe6\x8a\xd1\x04\x7d\x5f\x66\xc4\xd6\x8c\xc9\x97\x27\x68\x52\xe5\xcc\x41\x78\x49\x80\xe4\xd0\xd6\x2d\xfb\xa4\xd1\x16\xd5\xe0\xf6\x2f\x9a\x51\x7d\x40\xff\x75\x79\xd5\x87\xff\x34\x60\xa3\x2a\xc7\xfa\x83\xbf\x47\xa6\xdd\xab\x34\x9f\x93\xe4\xd3\x95\x78\xcb\xe7\xe2\xc6\x91\xf7\x1f\x24\xf9\x84\xb4\x40\x76\xbc\x57\x91\x4e\xa4\x14\xd7\xbe\x0d\x3c\x6c\x7f\x88\x5e\xc1\x09\x03\xaa\x20\x09\x48\xb3\xae\x4e\x07\xf6\x70\xc7\x97\x75\x38\x40\x0b\x21\x9b\x6a\xc1\x39\x3e\x65\xbc\xf8\x17\xe5\xa9\x73\x5c\x4c\x04\x2b\x27\x20\xbd\x82\x1b\xed\x84\xf7\x47\xd5\x3d\x9f\xa5\xd4\x51\x9e\xa7\xfd\x59\xf0\xfc\x59\xf0\xdc\x6b\xdb\xff\x44\xc1\x73\x3f\xa8\x3c\x8d\xc4\x62\xa1\x40\x6f\x41\x7e\x1b\x2a\x21\x1e\x55\xbc\x3c\xa6\x56\xa8\xba\x91\x3d\x6f\x3f\xbe\x48\x88\x7d\x38\xbc\xf5\xc6\x9b\x02\x03\x0d\xef\x38\x0c\x2a\x79\x87\xdf\xa1\xba\x0f\x9b\x21\xbe\x62\xac\x17\x5c\x2d\xc9\xce\x40\x4c\x76\xc2\xa8\xb4\x73\x2a\xae\x39\x13\x24\xc5\x28\x93\xb0\x98\xe1\xbb\x3b\x94\x09\x65\xe2\x2a\x29\xe8\x78\x7d\x34\xae\x43\xe8\xf8\xee\xae\x06\x37\x7a\x7b\x8a\x36\x9b\x71\x5a\x6f\xed\x03\x52\x91\x35\x38\x18\x49\x2f\x55\x35\x79\x89\x01\x51\xe0\x27\x2f\x3b\xe4\xea\xae\x1f\x8c\x8c\x48\x08\xe8\x2a\xe4\x94\xb5\x13\x06\x9d\xd2\x6f\x0b\x50\x56\x9e\xc5\xdd\x91\xfd\xc8\xb9\xe6\xd2\xa6\x9e\x71\x22\x97\x9e\x8b\xf4\xb6\xdd\x89\xbf\x64\xec\x8d\x47\xb4\x5e\x2c\xdd\x57\x33\x90\xc5\xff\x94\x22\x9f\x8e\x75\xd6\x9e\x49\xbb\x41\xa4\x36\x61\x27\x88\x18\x1a\x36\x82\x98\x12\xb5\x5e\x65\x06\x9b\x90\xf8\x14\xe1\x1f\x30\x7a\xea\x4f\x96\xe1\xb1\x8c\x3a\x3a\xf5\x90\x8e\x7d\xa8\x41\xe4\x55\xe8\x0a\x83\x77\x4b\xe9\x7e\x42\x04\x22\x61\x49\xe2\x51\xe0\xae\x44\x18\x97\x37\x50\x26\x0e\x0f\xde\x6e\x7c\x57\x02\x5b\xfd\x7e\xf8\x38\x1c\xfd\x2c\x28\x1f\x1c\x7e\x83\x0e\x87\xae\xc6\xaf\xc4\x87\xc9\xc7\x9d\x2a\x2f\x67\xb7\x3a\xf7\xa1\xdd\x2b\xe3\x74\x6c\xdd\x6c\x97\xdb\x3d\xe8\x75\x6e\x6e\x1d\x94\xee\xfe\x4d\x79\x7d\x39\x34\x89\x76\x87\xc8\xb8\xab\xd5\x8e\xba\x4a\x62\x95\x0b\x3d\xac\xee\x76\xa2\x5f\x1b\xf6\x16\x88\xcd\x99\x6b\x4b\xc7\xeb\x95\xf7\x56\xce\x74\xec\x1c\xd1\xfb\xaf\x0c\x9e\x6d\x8f\x75\x15\xcc\x68\x3a\xc3\x19\x4d\x21\xaa\x63\xc2\x6e\x15\x3b\x01\x4d\x8b\xe5\x92\x41\x35\x31\x58\x10\xa6\xc0\xa4\xb0\xdb\x02\x66\xb8\x24\x8c\x77\x84\x49\xb4\xed\x9e\xed\xf0\x8d\xab\xf4\x37\x34\x85\x3a\x38\xf5\xec\x7c\x56\x85\xd3\xf6\x74\xda\x3b\x5f\x4e\xd3\xc2\x75\xe4\x0c\x44\xb0\x9d\x82\x6a\xb9\xfa\x2c\x72\x5e\x66\xdb\x20\xdc\x53\x4e\x93\xbe\x76\x48\x8a\x02\x65\x4b\xbb\x3d\x20\x94\x45\x49\xe9\xec\x75\xd4\x5f\xb1\x7a\x96\x93\x35\xe2\x64\x1d\x69\x32\xdf\xa2\x9c\x32\x5a\xab\x28\x23\xea\xcd\xd5\xd9\x8f\xdb\xdc\xe5\x76\xbc\x88\x24\x9a\xae\xe1\x04\xb5\x57\xa1\x0d\x8e\xa7\xa4\x4a\xd4\x5f\x55\xa3\x51\xa6\x73\x86\x51\x4a\x34\x89\x4a\xdd\xce\xb0\x26\x73\x1c\x9b\xad\x26\xd1\x4e\xc7\x8c\xb6\x20\x74\x38\x1d\xf4\x63\x55\x30\x42\x79\x88\xd7\x85\x99\xb0\x15\x63\x80\x63\x80\x90\x12\x2b\x99\x40\x88\xd2\xa5\x9d\xd9\x81\xdb\x39\x45\xa3\xb3\xb7\x67\xaf\x43\x18\x73\x9a\x07\x09\x9b\xf5\x3e\xd9\xe9\x78\xc5\x02\x95\xb1\x26\xf3\x96\x61\x4d\x51\xb1\x90\x24\x07\xa4\x89\x5c\x82\x8e\xe6\x8c\xf0\x4f\x33\x8c\x7f\xb3\x39\x5d\x9e\x05\xe1\x80\xed\xa9\xf2\x2d\xab\x64\x92\x8a\xc4\x54\x66\xb5\xe8\xd5\xaf\x21\xb6\xd9\x60\xd3\x7e\xe6\x0c\x94\x42\x16\xe3\x5c\xc8\x14\xe4\x0c\x4f\x9a\x86\xe7\x9a\xa6\x3a\x3b\x41\x47\x93\xc9\x5f\xad\xbf\xdb\x65\xa1\xfb\xcd\x2d\x8a\xbe\x3e\xe2\xc1\xad\xbc\x83\x2f\xa3\x39\xe5\xa9\x45\x3f\xc3\x0b\x21\x73\x52\x77\xc0\xd6\x4d\x9c\x82\xcd\xef\xa4\x82\x48\x5c\x06\x95\xd7\xc4\x55\x4b\x6c\xdf\x1c\x34\x9b\x3d\xc9\x59\x4f\xd9\xdd\x40\x16\x44\x6a\x37\xb3\x19\x07\x1a\x5d\x10\xa9\x55\x63\x36\x43\x21\x32\xeb\xfc\x64\x49\xf6\xaf\xa5\x0d\xa5\xb1\xa1\x64\xa6\xfe\x42\x79\x0a\x37\x5e\x89\xdd\x2f\x42\x9a\x67\x95\xb7\x73\x6e\xff\xba\x7c\xfb\x57\xb7\x05\x5e\xc6\x24\xed\x76\xd9\x2f\xca\x88\x74\x2a\x9d\xaa\x0e\x88\xae\x6e\x0b\x68\xca\x4a\xfc\x9e\x7f\xe2\xe2\x9a\x5b\x69\xb0\x31\x19\x1a\x18\x55\x98\x9d\x97\xf4\x17\x30\x03\xf3\x5b\x0d\x6a\xf8\xf8\x1b\xe8\x83\x28\x42\x67\x22\x25\x4c\xa1\x28\x8a\xfd\xdb\x20\x33\x8c\x16\x24\xad\x1c\x21\x11\x7c\x41\x65\x1e\x95\x7d\x58\x44\xaa\x7e\xab\xb3\x25\x4a\x29\x61\x62\x19\x28\xee\xcb\xe9\x4e\xb4\xe8\xac\x28\x33\x93\xeb\x6c\x55\x12\x0d\x9a\x35\x61\x42\xd5\x31\x2c\xa5\x2a\xa7\x0d\x21\x8c\x88\xa4\x24\xca\x68\x9a\x02\x9f\x61\x93\x3d\x71\xfc\xb5\xa6\x39\xa8\xef\xfc\xf4\x65\x99\x64\xcf\x7d\x18\xb6\x9f\xc2\xf1\xa9\x95\x17\x11\xc6\x9a\x7b\xb7\xef\xa7\xe3\xec\x79\x40\xcd\x21\x61\x4c\xa5\xe4\x8a\x52\xc4\x2f\x25\xa0\x5b\xb1\x42\x6a\x55\x3d\x5c\x13\xae\x4d\xcf\x9d\x06\x39\x15\x3d\x19\x2d\x84\xd0\xfd\xb5\xd6\xe9\x1e\x43\xfa\x8b\x5f\x11\x9e\x00\x0b\xe8\xaa\x17\x69\xc2\x97\xcd\xf5\xb4\xd3\xc2\xbf\x64\xec\x55\xe9\x4b\x83\x61\x50\xbd\x6d\x7e\x7b\xfe\x2b\xa5\xed\xb8\x55\xf7\x1b\x09\x0e\xff\x1f\x1e\x5b\xdd\x00\xd4\xfa\xfc\x4d\xce\x7a\x25\x50\xa5\x3f\xa4\x33\xaa\x6a\x9a\xdf\xa0\xea\xeb\x13\xc2\xd1\xe5\xd9\xd5\x05\x52\x20\xd7\x20\x91\x90\x08\xb8\x06\x89\x92\x95\xd2\x22\x47\x0a\xb4\xa6\x7c\xa9\x4e\x1c\x3f\x46\x68\x6a\xf2\x1c\x92\xc2\xe4\x5b\xf3\xe8\x27\x04\x07\x95\x99\x8c\x96\x52\x98\x2a\xdb\x0f\xd3\x9d\x8f\x5f\xca\x01\x48\xdf\xad\xf4\x52\x50\xbe\x34\xa8\x7c\xfb\xd7\x1f\xda\x88\x6a\x05\xf6\xb8\x18\x23\x4b\xc1\x70\xa7\x81\xf2\xbf\x3d\xb9\xbb\x43\x6a\x74\x6e\xaa\x1b\x53\x4c\x38\x09\x50\x99\xec\x27\x5c\xe6\xb1\xbb\xb6\xfb\x51\x4b\x90\x3c\x8e\xdf\x2b\x68\x2b\x2f\xbc\xb7\xfd\xb5\x4b\xc7\xbc\xa8\x75\x39\x1c\xd2\x10\x9a\xcd\xd0\xe1\x61\x5b\xb9\x7d\x2c\xd0\xea\xef\x32\x48\x3e\x6d\x6f\x0c\xbd\x65\x8c\xcc\x81\xa1\x85\x90\x5d\x53\x94\xf9\xb4\xb3\xc5\xa4\x61\x5e\xac\x3c\xf3\x92\x35\x18\xc0\x97\xd6\xcf\xea\x0c\xdf\xb0\x0d\x1a\x7a\x27\xf5\x4b\xb2\x36\xee\x0c\x0a\x1a\x1d\x77\x61\x8f\x2d\xee\x8e\xd0\xa1\x66\xb9\x3b\x14\xd6\x60\x63\x09\x5f\x98\x0e\x8f\xfb\x34\x66\xb7\x44\x9c\x98\x6a\xac\xdc\x8f\xcc\xcb\x2e\xb8\xa5\x1e\x4b\x6d\x99\x8e\x03\x23\xb2\xd2\x62\x21\x92\x95\x0a\xba\x7f\x58\x91\x2e\xd3\xfb\x65\x0f\x7b\xe0\x83\xc7\xf9\x1e\x89\xc1\x34\x8f\x38\x7e\x6d\x7e\x10\x49\x53\x09\x4a\x05\xa5\xf5\x64\x2d\x77\x3d\x46\xd8\x6a\x67\xc1\x48\x02\x99\x60\xb6\x3d\x50\x22\x07\xc1\xe1\x07\xb8\x21\x79\xc1\x60\x94\x88\x56\xcc\xfa\xa2\xe7\xee\x3e\xf7\xc8\x75\x11\x99\x32\x1a\xc7\x4e\x58\xee\xef\x1c\xfd\x5d\xa2\x61\xe4\x6b\xca\x28\x6f\xb4\x4b\x4d\xfb\x9c\x95\xbd\xa5\x2e\x84\xac\xa5\x36\x8f\x7d\x64\xe6\xab\x7c\x6e\x82\xc9\x7e\x52\x5b\x46\xee\x07\x90\x5f\x4a\xc2\x95\x02\x59\x9e\xc1\x97\x2b\x9d\x01\xd7\x34\x21\x26\x2f\xec\x12\xb5\x9b\x23\x73\x5d\xe4\x90\x64\xf7\x08\x67\xa6\x09\xa7\x2a\xef\x97\x1d\xb7\x09\xac\xf6\xf2\x5a\x31\xe7\xef\xce\x5f\xe3\xf8\x5c\x70\xd8\x95\xfa\x3a\xc9\xef\xe2\xc7\x97\x6f\xcf\x71\x6c\x7f\x7a\x6f\x7a\xf5\xd3\xcb\xb3\xb3\xd3\x63\x1c\x9b\x87\xe8\xec\x34\xf0\xf9\x68\x6d\x98\x6e\xbe\x7c\x54\xf0\xae\x94\x88\x0e\x66\xe8\xd0\x48\xd9\x3e\xc6\x7b\x59\xf2\x7d\xf5\xf4\x7b\x1d\xd1\x86\xd3\xb6\xc2\xf8\x03\xc8\x5f\x10\xa5\xae\x85\x2c\xff\x6f\xdb\x10\x34\x31\xb1\x32\xe7\x21\xfa\x1e\xe1\x4b\x48\x24\x68\x8c\x4e\x10\xbe\xa8\x37\xd8\x52\xea\x61\x55\x35\x0c\xf6\x3d\xdb\xcd\xbe\x9e\xea\x6a\x7f\x68\x36\x36\x8c\xfe\x77\x3a\xb6\xaa\xe9\xaf\x3a\x8a\xfa\xd3\x8c\x61\xa0\xc7\xd8\xb7\x65\xb3\x57\x0f\xaf\x79\x8a\xc4\x02\xe5\xdb\x1b\x88\x7f\x07\x00\x00\xff\xff\xcf\x3c\x31\x97\xf5\x2f\x00\x00") +var _assetsTemplatesIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5b\x73\xdb\x36\x16\x7e\xcf\xaf\x80\xd1\xdd\x5a\x9a\x94\x92\x9c\xc6\x93\x5d\x57\x62\x9b\x8d\xb3\x93\xcc\xd6\x8e\xa7\x76\x9e\x32\x79\x80\xc8\x23\x11\x0d\x08\x70\x00\x48\xb6\xeb\xea\xbf\xef\x00\xbc\x08\x20\x21\x9b\x72\xd3\x6c\x77\xb7\x7e\x11\x89\xcb\x39\xdf\xb9\xe0\x5c\x60\x4e\x53\xba\x46\x09\x23\x4a\xcd\xb0\x16\x82\xcd\x89\xc4\x88\x2f\x23\xba\x98\xe1\x83\x42\xc2\x9a\xc2\x35\xfa\xfa\x6b\x74\xa0\x80\xc8\x24\xa3\x7c\x89\xe3\x27\x08\x4d\xe7\x2b\xad\x05\xaf\x77\xce\x35\x47\x73\xcd\xa3\x14\x16\x64\xc5\xb4\xa5\x90\x30\x9a\x7c\x9a\x61\x09\x0b\x09\x2a\x1b\x0c\x31\xd2\x54\x33\x98\xe1\x9f\xca\x11\x4b\x07\xa1\x29\xad\x89\x2c\xd9\x6d\x91\xd1\x44\x70\xd4\x3c\x45\xb2\x5e\x3b\x1d\x53\xcb\x77\x5c\x32\x8e\x9f\x98\x17\x55\x90\x06\x42\xb1\x62\x2c\x92\x74\x99\xe9\x9a\xb0\x3b\x9b\x83\x52\x64\x09\x51\x22\x56\x5c\x37\x02\x0e\xb4\xd0\x84\x9d\x95\x73\x0a\xfd\xfa\x2b\x9a\x0c\xd1\xc1\x0c\x4d\x2a\x12\x86\x08\x30\x48\xb4\xd9\x90\x8b\x14\xd8\x0c\x53\x0d\xb9\xba\x00\x79\x41\x96\x50\xca\x99\x11\xbe\x84\x19\x56\x99\xb8\x7e\x5f\xa4\x44\x43\x3a\x70\x17\x0d\x1b\x62\x08\x4d\x45\xa1\xa9\xe0\x68\x4d\xd8\x0a\x66\xf8\x68\x82\xe3\xa3\xc9\x74\x5c\x8e\xee\x5c\xf6\xec\x18\xc7\xcf\x8e\x1f\x5c\x76\x3c\xc1\xf1\xf1\xc3\xd4\x5e\x1c\xe3\xf8\xc5\xc3\xd4\x8e\x26\x16\x5c\x87\xde\x74\x5c\xaa\x64\xab\x21\x2d\x05\x5f\xc6\x77\x77\x48\x69\x22\x75\xa3\xcd\xa7\xe8\x08\x6d\x36\x51\x60\xdc\x1a\xa1\x79\xdf\x6c\xa6\xe3\x8a\x46\x45\x52\x2c\xba\xb4\x7d\x4b\xb5\xf7\x4c\xc7\xc6\xd8\xd6\x29\xf6\xf1\x4d\x63\xb2\x73\xb8\x06\xe9\x78\xa7\x7d\xaf\x16\xd9\xfd\x77\x87\x29\x55\x64\xce\x20\x3d\x3c\xf1\x24\x99\xce\x26\x9b\xad\xa3\xdc\xeb\xc6\x49\x06\x6b\x29\x78\xc4\x60\xa1\x1b\x5f\x6e\x79\xf3\xbe\xc0\xdf\xb1\xd4\x03\x6e\xdf\x7b\x01\x7f\xea\x19\x20\x9e\x79\xba\xdd\x57\xa4\xea\xc8\x05\x64\xda\x9a\x65\x3a\x4e\xe9\x3a\x7e\xf2\xc4\x0d\x36\x79\x6d\xcb\x44\x70\x4d\x28\x07\x19\x2d\xd8\x8a\xa6\xbd\xa2\x8f\x4b\x47\x2d\x19\x55\x3a\xaa\xe8\x21\x29\xae\x2d\x09\x09\x05\x10\xdd\xf0\x41\x94\xa3\x9a\xa5\xa7\x49\xeb\xcc\x95\xf0\x83\x6a\x45\x7d\x64\x5d\x3e\x89\x60\x51\x9e\x46\xdf\x22\xf3\xa0\xf2\xe8\x79\xa3\xa7\xbb\x3b\xb4\x04\x7d\x09\xdc\xd8\xa3\xa6\x80\x36\x9b\x27\xb5\x1e\x0d\x95\x4a\xa8\x6a\x7a\xf4\x4a\x70\x0d\x5c\x8f\xde\x00\x49\x41\xaa\x0f\x87\x57\xe2\xf0\xa3\x1b\x28\xaa\x3d\xb5\x14\x5a\x38\x02\xec\xd8\x8d\x94\xbe\x35\x8e\x90\x08\x26\xe4\x09\xfa\xea\xc5\x8b\x17\x0e\xc5\x1a\xe7\x29\x55\x05\x23\xb7\xe7\x24\x87\x81\x96\xb7\xa7\x90\x88\x14\xce\xa8\x79\x13\x43\x0b\xbb\xc1\x50\x5a\xcd\x7b\x09\x88\x74\xf0\x79\x64\xba\x12\x7d\x04\xd0\x62\x74\x46\x28\x9b\x8b\x1b\xb4\xd9\xfc\x50\x0e\x9c\x8a\x9c\x50\xfe\x10\xf2\xb6\x10\x01\xdb\x1e\xd7\xb6\x3d\x76\xe2\xbf\x93\x44\xd4\x6a\xfe\xb3\x49\x06\x2b\x2e\x81\xa4\xd8\x86\x25\x4f\x83\xbb\x34\x81\x2f\xcb\x9d\xf8\xe3\x87\xc9\xc7\x61\x19\xbd\xec\xc1\x68\xe3\xeb\x62\x7a\x5e\x63\xfa\x76\x8b\xc9\x59\x65\xbc\xbd\xa5\x61\x7f\xff\xdf\xeb\xfd\x47\xcf\x90\x86\x1b\xed\xa5\x48\xd7\x2f\xce\x44\x0e\x5c\x6f\x45\x90\x60\x32\xd9\x70\xb4\x90\x22\x3f\x17\xd7\x83\xdd\xae\x71\xff\x39\xb9\x97\xef\x82\x32\xb8\xa4\xbf\x6c\x35\xf7\x13\xb9\x1e\x9d\x12\x4d\x46\x0c\xf8\x52\x67\x0f\xfa\xa3\xf7\x58\x3d\x84\xa2\x4d\xbb\xb4\x69\xc5\x93\x1e\x85\x44\xe5\x9b\x05\x49\x53\x6a\x9c\xd8\x2c\x38\x41\x7f\x2b\x6e\x70\x20\x13\xda\x00\x7b\x69\x79\x34\x39\x2b\x46\x13\xf4\x7d\x99\x0b\x5b\x33\x26\x53\x9e\xa0\x49\x95\x2d\x07\xe1\x25\x01\x92\x43\x5b\xb1\xec\x93\x40\x5b\x54\x83\xdb\xbf\x68\x2e\xf5\x01\xfd\xd7\x65\x54\x1f\xfe\xd3\x80\x8d\xaa\xec\xea\x0f\xfe\x1e\x39\x76\xaf\xa2\x7c\x4e\x92\x4f\x57\xe2\x2d\x9f\x8b\x1b\x47\xde\x7f\x90\xe4\x13\xd2\x02\xd9\xf1\x5e\xe5\x39\x91\x52\x5c\xfb\x36\xf0\xb0\xfd\x21\xba\x04\x27\x0c\xa8\x82\x24\x20\xcd\xba\x3a\x11\xd8\xc3\x1d\x5f\xd6\xe1\x00\x2d\x84\x6c\xea\x04\xe7\xf8\x94\xf1\xe2\x5f\x94\xa7\xce\x71\x31\x11\xac\x9c\x80\xf4\x0a\x6e\xb4\x13\xd8\x1f\x55\xf1\x7c\x96\x22\x47\x79\x9e\xf6\x67\xa9\xf3\x67\xa9\x73\xaf\x6d\xff\x13\xa5\xce\xfd\xa0\xf2\x34\x12\x8b\x85\x02\xbd\x05\xf9\x6d\xa8\x84\xd8\xb3\x6c\x79\x4c\x95\x50\x75\x20\x7b\xde\x78\x7c\x91\xe0\xfa\x70\x60\xeb\x8d\x37\x05\x06\x1a\xde\x71\x18\x54\xf2\x0e\xbf\x43\x75\xef\x35\x43\x7c\xc5\x58\x2f\xb8\x5a\x92\x9d\x21\x98\xec\x84\x51\x69\xe7\x54\x5c\x73\x26\x48\x8a\x51\x26\x61\x31\xc3\x77\x77\x28\x13\xca\x44\x54\x52\xd0\xf1\xfa\x68\x5c\x07\xcf\xf1\xdd\x5d\x0d\x6e\xf4\xf6\x14\x6d\x36\xe3\xb4\xde\xda\x07\xa4\x22\x6b\x70\x30\x92\x5e\xaa\x6a\x32\x12\x03\xa2\xc0\x4f\x5b\x76\xc8\xd5\x5d\x3f\x18\x19\x91\x10\xd0\x55\xc8\x29\x6b\x27\x0c\x3a\xa5\xdf\x0a\xa0\xac\x3c\x85\xbb\x63\xfa\x91\x73\xb5\xa5\x4d\x25\xe3\xc4\x2c\x3d\x17\xe9\x6d\xbb\xfb\x7e\xc9\xd8\x1b\x8f\x68\xbd\x58\xba\xaf\x66\x20\x8b\xff\x29\x45\x3e\x1d\xeb\xac\x3d\x93\x76\xc3\x47\x6d\xc2\x4e\xf8\x30\x34\x6c\xec\x30\xc5\x69\xbd\xca\x0c\x36\xc1\xf0\x29\xc2\x3f\x60\xf4\xd4\x9f\x2c\x03\x63\x19\x6f\x74\xea\x21\x1d\xfb\x50\x83\xc8\xab\xa0\x15\x06\xef\x16\xd1\xfd\x84\x08\xc4\xc0\x92\xc4\xa3\xc0\x5d\x89\x30\x2e\x6f\xa0\x4c\x19\x1e\xbc\xdd\xf8\xae\x04\xb6\xfa\xfd\xf0\x71\x38\xfa\x59\x50\x3e\x38\xfc\x06\x1d\x0e\x5d\x8d\x5f\x89\x0f\x93\x8f\x3b\x55\x5e\xce\x6e\x75\xee\x43\xbb\x57\xc6\xe9\xd8\xba\xd9\x2e\xb7\x7b\xd0\xeb\xdc\xac\x3a\x28\xdd\xfd\x9b\xf2\xca\x72\x68\x52\xec\x0e\x91\x71\x57\xab\x1d\x75\x95\xc4\x2a\x17\x7a\x58\xdd\xed\x14\xbf\x36\xec\x2d\x10\x9b\x2d\xd7\x96\x8e\xd7\x25\xef\xad\x9c\xe9\xd8\x39\xa2\xf7\x5f\x13\x3c\xdb\x1e\xeb\x2a\x98\xd1\x74\x86\x33\x9a\x42\x54\xc7\x84\xdd\x2a\x76\x02\x9a\x16\xcb\x25\x83\x6a\x62\xb0\x20\x4c\x81\x49\x61\xb7\x05\xcc\x70\x49\x18\xef\x08\x93\x68\xdb\x37\xdb\xe1\x1b\x57\xe9\x6f\x68\x0a\x75\x70\xea\xd9\xf3\xac\x0a\xa7\xe1\xe9\x34\x76\xbe\x9c\xa6\x79\xeb\xc8\x19\x88\x60\x3b\x05\xd5\x72\xf5\x59\xe4\xbc\xcc\xb6\x41\xb8\xa7\x9c\x26\x7d\xed\x90\x14\x05\xca\x96\x76\x63\x40\x28\x8b\x92\xd2\xd9\xeb\xa8\xbf\x62\xf5\x2c\x27\x6b\xc4\xc9\x3a\xd2\x64\xbe\x45\x39\x65\xb4\x56\x51\x46\xd4\x9b\xab\xb3\x1f\xb7\xb9\xcb\xed\x75\x11\x49\x34\x5d\xc3\x09\x6a\xaf\x42\x1b\x1c\x4f\x49\x95\xa8\xbf\xaa\x46\xa3\x4c\xe7\x0c\xa3\x94\x68\x12\x95\xba\x9d\x61\x4d\xe6\x38\x36\x5b\x4d\xa2\x9d\x8e\x19\x6d\x41\xe8\x70\x3a\xe8\xc7\xaa\x60\x84\xf2\x10\xaf\x0b\x33\x61\x6b\xc5\x00\xc7\x00\x21\x25\x56\x32\x81\x10\xa5\x4b\x3b\xb3\x03\xb7\x73\x8a\x46\x67\x6f\xcf\x5e\x87\x30\xe6\x34\x0f\x12\x36\xeb\x7d\xb2\xd3\xf1\x8a\x05\x6a\x62\x4d\xe6\x2d\xc3\x9a\xa2\x62\x21\x49\x0e\x48\x13\xb9\x04\x1d\xcd\x19\xe1\x9f\x66\x18\xff\x66\x73\xba\x3c\x0b\xc2\x01\xdb\x53\xe5\x5b\x56\xc9\x24\x15\x89\xa9\xcc\x6a\xd1\xab\x5f\x43\x6c\xb3\xc1\xa6\xf1\xcc\x19\x28\x85\x2c\xc6\xb9\x90\x29\xc8\x19\x9e\x34\xad\xce\x35\x4d\x75\x76\x82\x8e\x26\x93\xbf\x5a\x7f\xb7\xcb\x42\x77\x9a\x5b\x14\x7d\x7d\xc4\x83\x5b\x79\x07\x5f\x46\x73\xca\x53\x8b\x7e\x86\x17\x42\xe6\xa4\xee\x7d\xad\x9b\x38\x05\x9b\xdf\x43\x05\x91\xb8\x0c\x2a\xaf\x89\xab\x66\xd8\xbe\x39\x68\x36\x7b\x92\xb3\x9e\xb2\xbb\x75\x2c\x88\xd4\x6e\x66\x33\x0e\x34\xba\x20\x52\xab\xc6\x6c\x86\x42\x64\xd6\xf9\xc9\x92\xec\x5f\x4b\x1b\x4a\x63\x43\xc9\x4c\xfd\x85\xf2\x14\x6e\xbc\x12\xbb\x5f\x84\x34\xcf\x2a\x6f\xe7\xdc\xfe\x75\xf9\xf6\xaf\x6e\x0b\xbc\x8c\x49\xda\x8d\xb2\x5f\x94\x11\xe9\x54\x3a\x55\x1d\x10\x5d\xdd\x16\xd0\x94\x95\xf8\x3d\xff\xc4\xc5\x35\xb7\xd2\x60\x63\x32\x34\x30\xaa\x30\x3b\x2f\xe9\x2f\x60\x06\xe6\xb7\x1a\xd4\xf0\xf1\x77\xcf\x07\x51\x84\xce\x44\x4a\x98\x42\x51\x14\xfb\xf7\x40\x66\x18\x2d\x48\x5a\x39\x42\x22\xf8\x82\xca\x3c\x2a\xfb\xb0\x88\x54\xfd\x56\x67\x4b\x94\x52\xc2\xc4\x32\x50\xdc\x97\xd3\x9d\x68\xd1\x59\x51\x66\x26\xd7\xd9\xaa\x24\x1a\x34\x6b\xc2\x84\xaa\x63\x58\x4a\x55\x4e\x1b\x42\x18\x11\x49\x49\x94\xd1\x34\x05\x3e\xc3\x26\x7b\xe2\xf8\x6b\x4d\x73\x50\xdf\xf9\xe9\xcb\x32\xc9\x9e\xfb\x30\x6c\x3f\x85\xe3\x53\x2b\x2f\x22\x8c\x35\x37\x6e\xdf\x4f\xc7\xd9\xf3\x80\x9a\x43\xc2\x98\x4a\xc9\x15\xa5\x88\x5f\x4a\x40\xb7\x62\x85\xd4\xaa\x7a\xb8\x26\x5c\x9b\x9e\x3b\x0d\x72\x2a\x7a\x32\x5a\x08\xa1\xfb\x6b\xad\xd3\x3d\x86\xf4\x17\xbf\x22\x3c\x01\x16\xd0\x55\x2f\xd2\x84\x2f\x9b\x8b\x69\xa7\x85\x7f\xc9\xd8\xab\xd2\x97\x06\xc3\xa0\x7a\xdb\xfc\xf6\xfc\x27\x4a\xdb\x71\xab\xee\x37\x12\x1c\xfe\x3f\x3c\xb6\xba\x01\xa8\xf5\xf9\x9b\x9c\xf5\x4a\xa0\x4a\x7f\x48\x67\x54\xd5\x34\xbf\x41\xd5\x17\x27\x84\xa3\xcb\xb3\xab\x0b\xa4\x40\xae\x41\x22\x21\x11\x70\x0d\x12\x25\x2b\xa5\x45\x8e\x14\x68\x4d\xf9\x52\x9d\x38\x7e\x8c\xd0\xd4\xe4\x39\x24\x85\xc9\xb7\xe6\xd1\x4f\x08\x0e\x2a\x33\x19\x2d\xa5\x30\x55\xb6\x1f\xa6\x3b\x1f\xbc\x94\x03\x90\xbe\x5b\xe9\xa5\xa0\x7c\x69\x50\xf9\xf6\xaf\x3f\xae\x11\xd5\x0a\xec\x71\x31\x46\x96\x82\xe1\x4e\x03\xe5\x7f\x6f\x72\x77\x87\xd4\xe8\xdc\x54\x37\xa6\x98\x70\x12\xa0\x32\xd9\x4f\xb8\xcc\x63\x77\x6d\xf7\x43\x96\x20\x79\x1c\xbf\x57\xd0\x56\x5e\x78\x6f\xfb\x0b\x97\x8e\x79\x51\xeb\x5a\x38\xa4\x21\x34\x9b\xa1\xc3\xc3\xb6\x72\xfb\x58\xa0\xd5\xdf\x65\x90\x7c\xda\xde\x18\x7a\xcb\x18\x99\x03\x43\x0b\x21\xbb\xa6\x28\xf3\x69\x67\x8b\x49\xc3\xbc\x58\x79\xe6\x25\x6b\x30\x80\x2f\xad\x9f\xd5\x19\xbe\x61\x1b\x34\xf4\x4e\xea\x97\x64\x6d\xdc\x19\x14\x34\x3a\xee\xc2\x1e\x5b\xdc\x1d\xa1\x43\xcd\x72\x77\x28\xac\xc1\xc6\x12\xbe\x30\x1d\x1e\xf7\x69\xcc\x6e\x89\x38\x31\xd5\x58\xb9\x1f\x99\x97\x5d\x70\x4b\x3d\x96\xda\x32\x1d\x07\x46\x64\xa5\xc5\x42\x24\x2b\x15\x74\xff\xb0\x22\x5d\xa6\xf7\xcb\x1e\xf6\xc0\x07\x8f\xf3\x3d\x12\x83\x69\x1e\x71\xfc\xda\xfc\x20\x92\xa6\x12\x94\x0a\x4a\xeb\xc9\x5a\xee\x7a\x8c\xb0\xd5\xce\x82\x91\x04\x32\xc1\x6c\x7b\xa0\x44\x0e\x82\xc3\x0f\x70\x43\xf2\x82\xc1\x28\x11\xad\x98\xf5\x45\xcf\xdd\x7d\xee\x91\xeb\x22\x32\x65\x34\x8e\x9d\xb0\xdc\xdf\x39\xfa\xbb\x44\xc3\xc8\xd7\x94\x51\xde\x68\x97\x9a\xf6\x39\x2b\x7b\x4b\x5d\x08\x59\x4b\x6d\x1e\xfb\xc8\xcc\x57\xf9\xdc\x04\x93\xfd\xa4\xb6\x8c\xdc\x8f\x1e\xbf\x94\x84\x2b\x05\xb2\x3c\x83\x2f\x57\x3a\x03\xae\x69\x42\x4c\x5e\xd8\x25\x6a\x37\x47\xe6\xba\xc8\x21\xc9\xee\x11\xce\x4c\x13\x4e\x55\xde\x2f\x3b\x6e\x13\x58\xed\xe5\xb5\x62\xce\xdf\x9d\xbf\xc6\xf1\xb9\xe0\xb0\x2b\xf5\x75\x92\xdf\xc5\x8f\x2f\xdf\x9e\xe3\xd8\xfe\xf4\xde\xf4\xea\xa7\x97\x67\x67\xa7\xc7\x38\x36\x0f\xd1\xd9\x69\xe0\x93\xd1\xda\x30\xdd\x7c\xf9\xa8\xe0\x5d\x29\x11\x1d\xcc\xd0\xa1\x91\xb2\x7d\x8c\xf7\xb2\xe4\xfb\xea\xe9\xf7\x3a\xa2\x0d\xa7\x6d\x85\xf1\x07\x90\xbf\x20\x4a\x5d\x0b\x59\xfe\xc7\xb6\x21\x68\x62\x62\x65\xce\x43\xf4\x3d\xc2\x97\x90\x48\xd0\x18\x9d\x20\x7c\x51\x6f\xb0\xa5\xd4\xc3\xaa\x6a\x18\xec\x7b\xb6\x9b\x7d\x3d\xd5\xd5\xfe\xc4\x6c\x6c\x18\xfd\xef\x74\x6c\x55\xd3\x5f\x75\x14\xf5\x47\x19\xc3\x40\x8f\xb1\x6f\xcb\x66\xaf\x1e\x5e\xf3\x14\x89\x05\xca\xb7\x37\x10\xff\x0e\x00\x00\xff\xff\x1b\x77\x5e\x40\xe9\x2f\x00\x00") func assetsTemplatesIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -525,12 +525,12 @@ func assetsTemplatesIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/templates/index.html", size: 12277, mode: os.FileMode(420), modTime: time.Unix(1467929039, 0)} + info := bindataFileInfo{name: "assets/templates/index.html", size: 12265, mode: os.FileMode(420), modTime: time.Unix(1597260999, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _assetsTemplatesLayoutHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x6d\x73\xdb\xb8\x11\xfe\x9e\x5f\xb1\x61\xdb\xb3\xdd\x1a\xa4\x64\xe7\x3a\xa9\x43\xaa\xe3\x71\x72\x4d\x32\xcd\x5c\xe6\x9c\x4e\xdb\xb9\xc9\x74\x40\x72\x49\xc2\x02\x01\x1e\xb0\x54\xec\x7a\xf4\xdf\x3b\xe0\x8b\x44\x89\x72\x2c\xfb\x2e\xae\xbf\x08\x2f\xbb\x8b\x67\x77\x1f\x2c\x40\x38\x7c\xfe\xfa\xc7\x8b\x4f\xff\xfe\xf8\x06\x0a\x2a\xe5\xec\x59\xe8\x7e\x40\xe5\x8c\x57\x55\xe4\x95\x5c\xc8\x42\xe7\xe7\x55\xe5\xcd\x9e\x01\x84\x05\xf2\xd4\x35\x00\x42\x12\x24\x71\xf6\x81\x0b\xf9\x56\xe7\x61\xd0\x76\xdb\xa9\x12\x89\x43\x52\x70\x63\x91\x22\xaf\xa6\x8c\xbd\xf4\x86\x53\x05\x51\xc5\xf0\x97\x5a\x2c\x22\xef\x5f\xec\x1f\xe7\xec\x42\x97\x15\x27\x11\x4b\xf4\x20\xd1\x8a\x50\x51\xe4\xbd\x7b\x13\x61\x9a\xe3\x86\xa6\xe2\x25\x46\xde\x42\xe0\x97\x4a\x1b\x1a\x08\x7f\x11\x29\x15\x51\x8a\x0b\x91\x20\x6b\x3a\xc7\x20\x94\x20\xc1\x25\xb3\x09\x97\x18\x4d\x77\x18\x32\x98\xa1\x31\x68\x06\x86\x94\x66\xab\xd1\xd9\xb3\x56\x43\x0a\x35\x07\x83\x32\xf2\x44\xa2\x95\x07\x74\x53\x61\xe4\x89\x92\xe7\x18\x54\x2a\xf7\xa0\x30\x98\x75\x03\x36\x28\x74\xee\xbb\xd1\xb1\xb6\xa5\x1b\x89\xb6\x40\xa4\x5e\x25\xb1\x36\xb8\xfa\xa5\x46\x73\xc3\x6a\xc1\xa6\xfe\x74\xe2\xbf\x60\xb6\xd4\x9a\x0a\x85\xd6\xfa\x89\xb5\x3d\xec\xfb\xcc\xc4\x5a\x93\x25\xc3\x2b\x76\xea\x9f\xfa\x27\x7e\x29\xd4\x43\xd4\x9b\xd1\x95\x42\x18\xf4\x99\x0e\x63\x9d\xde\x38\x3e\xb8\x08\x19\x2d\x25\x9a\xc8\x73\x59\xbf\x20\x23\xbd\x66\x42\x8a\x64\x1e\x79\x73\xc4\x4a\x57\xa8\xa2\x8c\x4b\xbb\xca\x9a\xe2\x0b\x48\x24\xb7\x36\xf2\x14\x5f\xc4\xdc\x40\xfb\xc3\x52\xcc\x78\x2d\xa9\xef\x5a\xe2\x24\x12\x46\xba\xf2\xc0\x68\x89\x8d\xb8\xc8\x39\x09\xad\x3a\x5b\x00\x61\x2a\x56\xd6\x1c\x1c\x2e\x14\x1a\x96\xc9\x5a\xa4\x2b\x99\x6d\x29\xc9\xca\x94\x9d\x80\x6b\xd8\x92\x9d\x0e\xe4\x36\x25\x3b\x1c\xce\xed\x26\xf3\x30\xf8\x0b\xf9\x96\x54\x6c\xb8\x4a\xfb\xe8\xfd\x6e\x4b\x1a\x20\x14\x65\x0e\xd6\x24\x23\x4a\x40\x81\x22\x2f\x28\xf2\x4e\x26\x1e\x70\x49\x6d\x24\xdf\xea\xdc\x9b\x41\xd7\xda\x5c\x38\xe0\x1b\x78\x83\x54\x2c\x06\x8e\xb6\xdd\xaf\x39\x3e\x9d\xf4\x9e\xff\x65\xd3\xf3\x4c\x9b\x72\xcb\xa9\x66\xa8\x6b\x4b\xcc\xa8\x4f\x84\x45\x6e\x92\x62\x3b\x24\x83\xb5\x9c\x22\xcb\x8d\xae\x2b\x70\x7a\x4c\x28\x97\x16\x9e\xa6\x83\xd4\xad\x43\xd3\x6b\xe5\xf2\xa6\x2a\xdc\x7e\x82\x55\x8b\xf5\x4b\x85\x81\x18\xf8\xd5\x6b\xaa\xaa\x26\x47\xb8\x52\xa7\x0d\x8f\x1b\xe1\x4f\x78\x4d\xfd\x8e\xa4\xa6\xad\x72\x36\xc7\x1b\x86\x8a\x1c\x55\x5b\xa9\xc3\x83\x8e\x2f\x42\xe5\x07\xc7\xb0\x56\x3d\xf2\x36\xbc\xe8\x48\xee\x01\xaf\x49\x27\xba\xac\x24\x12\x46\x9e\xce\x32\x0f\x2a\xc9\x13\x2c\xb4\x4c\x9d\xd9\xcb\x16\x29\x88\x74\x15\x20\xb7\x70\xa6\x93\xda\x0e\xf6\x02\x99\x1a\x87\x9b\xe4\xf7\xb8\x40\x45\xbe\x25\x5d\x7d\x34\xba\xe2\x2d\xc1\x0f\x8f\xbc\xb1\xbb\x83\x00\x4b\x61\xa9\x0d\x70\x63\x4b\x64\x43\xe7\x7d\x89\x2a\xa7\x02\x66\x30\x81\xef\xbe\x83\x7e\xe9\x51\xe4\x1b\x1a\xf7\x8c\x1d\x40\xda\x3b\x40\x6b\x14\x4c\x10\x96\x3b\x16\x00\xf8\x41\xa8\x14\x4a\xb4\xd6\xd1\x1e\x42\x4b\x46\xab\x7c\xb6\x36\x1d\x06\xdd\x10\xdc\xde\x0e\x16\x81\xe5\x72\x8c\x76\x93\xfb\xfb\xb8\x40\xfa\x37\x87\x4e\xfa\xdb\x42\xce\x8c\x2e\x37\x41\xbf\xfa\x0d\x50\x3b\xab\xbf\x0e\xf7\x56\xa9\xd9\x39\x14\x06\x6e\xcf\x6c\x30\x37\xac\xe5\xa0\xaa\xf4\xd5\x64\xd0\x34\xae\xfe\x6d\xd7\x12\x29\x46\xcb\x73\x20\x6e\x72\x77\x7d\xf8\x4f\x2c\xb9\x9a\xf7\xc5\xd6\x5d\x1d\xec\x59\x10\xe4\x82\x8a\x3a\xf6\x13\x5d\x06\xdd\x1d\x25\x58\x95\xd2\xb1\x7f\xdb\xf5\xb8\xd3\xde\x28\xc9\xd3\x3f\x77\x25\xf9\x6f\x82\xde\xd6\xb1\x37\x83\xb6\x31\x0a\x0c\xdf\x0e\xcb\x26\xfc\x30\xa8\xe5\xa8\x46\x8f\x3a\x61\xa0\x78\x5f\xbb\xf7\x39\xd6\x86\x32\x46\x7f\x79\xdc\x71\x37\x4a\x0e\xab\x84\x94\xb6\x69\x59\xe2\xc9\x1c\xd3\xbd\x52\xb3\xe2\x73\x73\xe9\x8b\xbc\x37\xae\xa8\x81\x25\x83\xbc\x74\x37\x29\x85\x09\x61\x3a\xa4\x3b\xe9\x3c\x97\x78\xd9\x48\x34\xd5\x6e\x94\x22\x5b\x71\xf5\xb5\xa3\x41\x67\x99\x23\x72\xc1\x6d\xb3\xda\xa5\xae\x4d\x82\xf0\x57\x38\x28\xb8\x65\x4d\x55\x65\xb6\x19\x3b\x80\x33\x38\x50\x7a\x6b\x6c\xb9\x74\xa7\x8a\x5b\x64\xbc\xf6\x4e\xb3\x17\xbd\x1b\x8d\xbd\xd7\xc2\x26\xeb\x81\xd1\x16\xba\x83\x14\x0f\x09\xe5\x3a\x56\x31\x4f\xe6\x9f\xf4\x3b\x15\xeb\xeb\x1f\x84\xb1\xb4\x33\x5e\xcd\x34\x1c\xde\xde\x92\x26\x2e\x3f\x74\x05\x60\xb9\x3c\xfa\x96\xc8\x52\x74\xc7\xe1\xb9\x94\x8f\x4b\xa1\xc1\x52\x2f\x90\x25\xc2\x24\x12\xef\x4e\xc7\xeb\x66\x15\xe0\x52\xae\x0a\xdb\xe3\xf6\xe0\x1d\x37\xbd\x2f\x28\x25\x5c\x89\x92\xb9\xc6\x36\xdf\x8b\xd3\xd9\x7b\x51\x86\x41\x71\xba\x35\x51\x6d\x03\x7d\x2f\x4a\x10\x16\x9a\x0f\x1d\x6d\xa1\xd4\x6a\x8e\x37\x7e\x18\x9b\x3b\x63\x79\x7f\xed\x0a\x62\xa9\xe3\xa0\xe4\x96\xd0\x04\xa9\x4e\x6c\xf0\xfe\xdd\x07\xbf\x4c\xbd\xed\x6a\x38\x6b\xea\xbe\xae\x09\x4a\x6d\x10\x38\x75\xc5\xca\x45\xc6\xdf\x0a\x4d\xb5\xe3\xe6\xd6\xdd\x22\xae\xc4\xf8\x54\xb9\x23\xf5\xc2\xf2\x58\xe2\x7b\xe1\xb6\x6f\x1f\xc9\x98\x14\xc4\xa4\xd8\xb5\x6d\x7e\x52\xae\x72\x77\x77\x7e\xdd\xca\x42\x13\xc8\x51\xa6\xc6\xe7\xca\x16\xa0\xde\xba\x4b\x51\xa2\x55\x26\xc6\x25\x7d\x98\xce\xb5\xd8\x5d\xa7\x64\x7f\x2a\x9e\x27\x09\x56\xe4\xf2\xa5\x12\x5c\x1d\x8f\xbb\x79\x3c\xbb\xbd\x75\x1c\xf1\x5b\x9d\x8b\x46\x05\xfe\x08\xd3\xc9\x04\x96\xcb\x3f\xec\xa6\xee\x0e\xdf\x1e\x0b\x75\x5d\x6f\x1e\x06\x77\xad\xf7\xe4\x90\xff\xee\x3e\x30\x6d\x85\x98\x02\xcf\xb2\x07\x23\x77\xea\x97\x4e\xfb\xbc\x55\x6e\x80\x3f\x31\xee\x52\x28\x51\xd6\xe5\x43\x11\x7f\x10\x0a\x96\xcb\x79\x5c\xd9\x27\x05\xcb\xaf\x1f\x05\x96\x5f\x3f\x15\xd8\x9f\xf0\xca\x65\xd2\xa2\x4a\xd1\x3c\x8c\x0d\xad\xea\x65\xa3\xf9\xe4\x4c\xee\x70\x1b\x4c\x44\x25\xdc\xcd\xe6\x11\xd0\x7f\xea\x95\xff\x5f\xe8\x79\x4d\xc5\x63\x80\x9f\xd7\x54\x3c\x1a\xf3\x3d\xd5\xfd\xf9\xfe\xe7\x0d\xaa\xfb\x8f\x9b\xf6\x05\xc9\x9b\xbd\x51\xfb\x1f\x37\xbf\xea\x09\xa5\x7f\x25\xdc\xf0\xe1\xe7\x33\xf0\x2f\xda\x71\x38\xfb\xbc\xc7\xc5\x7f\xbd\x62\x68\x13\x23\x2a\x6a\x3f\x4d\xae\x56\x2f\x81\x53\x7f\x3a\xf5\x27\xcd\x03\xde\x95\x6d\xee\x49\x8d\xd8\xec\x6b\x3a\xab\xd7\xc3\x3d\xd5\x76\xbd\x16\xde\xaf\xc5\x55\x5e\x4b\x6e\xd8\xd4\x3f\xf5\x5f\xee\x21\x5f\xea\xd2\x5d\xc2\x4f\xfc\x97\xfe\x8b\x3d\xc4\x33\x21\xd1\x8a\xff\x22\x3b\xf5\xa7\x7b\x63\xb2\x64\x6a\x12\x72\x0f\xc9\xf5\x0b\xa6\xbd\x5b\xba\x4f\x59\x56\xab\x84\x84\x56\x80\x2a\xb5\xff\x14\x54\x1c\x5a\x32\xc7\x60\xeb\x2c\x13\xd7\x47\x70\xbb\x4a\xb4\x41\xaa\x8d\x72\x5f\x3f\xbe\x50\x29\x5e\xff\x98\x1d\xb6\x42\xc7\xcd\x58\xf7\x3a\xc3\x3a\xcd\xae\x7f\x04\xcf\xa3\x08\xd8\xf4\x55\x67\x66\xd9\x53\x70\xc1\x0d\xf0\x4a\xbc\xd5\x96\x20\x02\xcf\x91\xeb\xfc\xe3\xbb\xa6\x7b\xf6\xd9\xeb\xc5\x45\x76\xd8\x09\x6d\xbd\xfe\x3c\x5f\xa1\xed\xe6\x8f\xc1\x0b\xbc\xa3\x21\xde\xde\xfa\x9f\x22\x37\xb5\x13\x40\xa2\x65\x5d\x2a\x0b\x11\xfc\x3c\xfd\xfe\x78\xfa\xfd\xf1\x8b\xc9\xf1\xc9\xe4\x78\x3a\xf9\xfc\xaa\xe3\xf0\x3a\x56\x61\x10\xeb\xf4\x66\xf6\x2c\x0c\xda\xff\x1f\xfc\x2f\x00\x00\xff\xff\xdd\x0b\xb1\xae\x50\x18\x00\x00") +var _assetsTemplatesLayoutHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x6d\x73\xdb\xb8\x11\xfe\x9e\x5f\xb1\x61\xdb\x8b\xdd\x0a\xa4\x64\xdf\xb5\x57\x87\x54\xc7\xe3\xe4\x9a\x64\x9a\xb9\xcc\x39\x9d\xb6\x73\x93\xe9\x80\xe4\x92\x84\x05\x02\x3c\x60\xa9\xd8\xf5\xe8\xbf\x77\xc0\x17\x89\x12\xe5\x58\xf6\xdd\xf9\xfc\x45\x78\xd9\x5d\x3c\xbb\xfb\x60\x01\xc2\xe1\xf3\x57\xdf\x5f\x7c\xfc\xcf\x87\xd7\x50\x50\x29\xe7\xcf\x42\xf7\x03\x2a\x67\xbc\xaa\x22\xaf\xe4\x42\x16\x3a\x3f\xaf\x2a\x6f\xfe\x0c\x20\x2c\x90\xa7\xae\x01\x10\x92\x20\x89\xf3\xf7\x5c\xc8\x37\x3a\x0f\x83\xb6\xdb\x4e\x95\x48\x1c\x92\x82\x1b\x8b\x14\x79\x35\x65\xec\x5b\x6f\x38\x55\x10\x55\x0c\x7f\xaa\xc5\x32\xf2\xfe\xcd\xfe\x79\xce\x2e\x74\x59\x71\x12\xb1\x44\x0f\x12\xad\x08\x15\x45\xde\xdb\xd7\x11\xa6\x39\x6e\x69\x2a\x5e\x62\xe4\x2d\x05\x7e\xae\xb4\xa1\x81\xf0\x67\x91\x52\x11\xa5\xb8\x14\x09\xb2\xa6\x33\x01\xa1\x04\x09\x2e\x99\x4d\xb8\xc4\x68\xb6\xc7\x90\xc1\x0c\x8d\x41\x33\x30\xa4\x34\x5b\x8f\xce\x9f\xb5\x1a\x52\xa8\x05\x18\x94\x91\x27\x12\xad\x3c\xa0\x9b\x0a\x23\x4f\x94\x3c\xc7\xa0\x52\xb9\x07\x85\xc1\xac\x1b\xb0\x41\xa1\x73\xdf\x8d\x8e\xb5\x2d\xdd\x48\xb4\x05\x22\xf5\x2a\x89\xb5\xc1\xd5\x4f\x35\x9a\x1b\x56\x0b\x36\xf3\x67\x53\xff\x6b\x66\x4b\xad\xa9\x50\x68\xad\x9f\x58\xdb\xc3\xbe\xcf\x4c\xac\x35\x59\x32\xbc\x62\xa7\xfe\xa9\x7f\xe2\x97\x42\x3d\x44\xbd\x19\x5d\x2b\x84\x41\x9f\xe9\x30\xd6\xe9\x8d\xe3\x83\x8b\x90\xd1\x52\xa2\x89\x3c\x97\xf5\x0b\x32\xd2\x6b\x26\xa4\x48\x16\x91\xb7\x40\xac\x74\x85\x2a\xca\xb8\xb4\xeb\xac\x29\xbe\x84\x44\x72\x6b\x23\x4f\xf1\x65\xcc\x0d\xb4\x3f\x2c\xc5\x8c\xd7\x92\xfa\xae\x25\x4e\x22\x61\xa4\x2b\x0f\x8c\x96\xd8\x88\x8b\x9c\x93\xd0\xaa\xb3\x05\x10\xa6\x62\x6d\xcd\xc1\xe1\x42\xa1\x61\x99\xac\x45\xba\x96\xd9\x95\x92\xac\x4c\xd9\x09\xb8\x86\x2d\xd9\xe9\x40\x6e\x5b\xb2\xc3\xe1\xdc\x6e\x32\x0f\x83\xbf\x90\xef\x48\xc5\x86\xab\xb4\x8f\xde\xef\x76\xa4\x01\x42\x51\xe6\x60\x4d\x32\xa2\x04\x14\x28\xf2\x82\x22\xef\x64\xea\x01\x97\xd4\x46\xf2\x8d\xce\xbd\x39\x74\xad\xed\x85\x03\xbe\x85\x37\x48\xc5\x72\xe0\x68\xdb\xfd\x92\xe3\xb3\x69\xef\xf9\x5f\xb7\x3d\xcf\xb4\x29\x77\x9c\x6a\x86\xba\xb6\xc4\x8c\xfa\x44\x58\xe4\x26\x29\x76\x43\x32\x58\xcb\x29\xb2\xdc\xe8\xba\x02\xa7\xc7\x84\x72\x69\xe1\x69\x3a\x48\xdd\x26\x34\xbd\x56\x2e\x6f\xaa\xc2\xed\x27\x58\xb7\x58\xbf\x54\x18\x88\x81\x5f\xbd\xa6\xaa\x6a\x72\x84\x2b\x75\xda\xf0\xb8\x11\xfe\x88\xd7\xd4\xef\x48\x6a\xda\x2a\x67\x0b\xbc\x61\xa8\xc8\x51\xb5\x95\x3a\x7a\xd1\xf1\x45\xa8\xfc\xc5\x04\x36\xaa\xc7\xde\x96\x17\x1d\xc9\x3d\xe0\x35\xe9\x44\x97\x95\x44\xc2\xc8\xd3\x59\xe6\x41\x25\x79\x82\x85\x96\xa9\x33\x7b\xd9\x22\x05\x91\xae\x03\xe4\x16\xce\x74\x52\xdb\xc1\x5e\x20\x53\xe3\x70\x93\xfc\x1e\x97\xa8\xc8\xb7\xa4\xab\x0f\x46\x57\xbc\x25\xf8\xd1\xb1\x37\x76\x77\x10\x60\x29\x2c\xb5\x01\x6e\x6c\x89\x6c\xe8\xbc\x2f\x51\xe5\x54\xc0\x1c\xa6\xf0\xd5\x57\xd0\x2f\x3d\x8a\x7c\x43\xe3\x9e\xb1\x03\x48\x07\x07\x68\x83\x82\x09\xc2\x72\xcf\x02\x00\xdf\x09\x95\x42\x89\xd6\x3a\xda\x43\x68\xc9\x68\x95\xcf\x37\xa6\xc3\xa0\x1b\x82\xdb\xdb\xc1\x22\xb0\x5a\x8d\xd1\x6e\x73\xff\x10\x17\x48\xff\xe2\xd0\x49\xff\xba\x90\x33\xa3\xcb\x6d\xd0\x2f\x7f\x01\xd4\xce\xea\xcf\xc3\xbd\x53\x6a\xf6\x0e\x85\x81\xdb\x33\x5b\xcc\x0d\x6b\x39\xa8\x2a\x7d\x35\x19\x34\x8d\xab\x7f\xbb\xb5\x44\x8a\xd1\xf2\x1c\x88\x9b\xdc\x5d\x1f\xfe\x1b\x4b\xae\x16\x7d\xb1\x75\x57\x07\x7b\x16\x04\xb9\xa0\xa2\x8e\xfd\x44\x97\x41\x77\x47\x09\xd6\xa5\x74\xec\xdf\x6e\x3d\xee\xb4\xb7\x4a\xf2\xec\xcf\x5d\x49\xfe\xbb\xa0\x37\x75\xec\xcd\xa1\x6d\x8c\x02\xc3\x77\xc3\xb2\x0d\x3f\x0c\x6a\x39\xaa\xd1\xa3\x4e\x18\x28\xde\xd7\xee\x43\x8e\xb5\xa1\x8c\xd1\x9f\x1f\x77\xdc\x8d\x92\xc3\x2a\x21\xa5\x6d\x5a\x96\x78\xb2\xc0\xf4\xa0\xd4\xac\xf9\xdc\x5c\xfa\x22\xef\xb5\x2b\x6a\x60\xc9\x20\x2f\xdd\x4d\x4a\x61\x42\x98\x0e\xe9\x4e\x3a\xcf\x25\x5e\x36\x12\x4d\xb5\x1b\xa5\xc8\x56\x5c\x7d\xe9\x68\xd0\x59\xe6\x88\x5c\x70\xdb\xac\x76\xa9\x6b\x93\x20\xfc\x0d\x5e\x14\xdc\xb2\xa6\xaa\x32\xdb\x8c\xbd\x80\x33\x78\xa1\xf4\xce\xd8\x6a\xe5\x4e\x15\xb7\xc8\x78\xed\xbd\x66\x2f\x7a\x37\x1a\x7b\xaf\x84\x4d\x36\x03\xa3\x2d\x74\x07\x29\x1e\x12\xca\x4d\xac\x62\x9e\x2c\x3e\xea\xb7\x2a\xd6\xd7\xdf\x09\x63\x69\x6f\xbc\x9a\x69\x38\xba\xbd\x25\x4d\x5c\xbe\xef\x0a\xc0\x6a\x75\xfc\x6b\x22\x4b\xd1\x1d\x87\xe7\x52\x3e\x2e\x85\x06\x4b\xbd\x44\x96\x08\x93\x48\xbc\x3b\x1d\xaf\x9a\x55\x80\x4b\xb9\x2e\x6c\x8f\xdb\x83\x77\xdc\xf4\x3e\xa3\x94\x70\x25\x4a\xe6\x1a\xbb\x7c\x2f\x4e\xe7\xef\x44\x19\x06\xc5\xe9\xce\x44\xb5\x0b\xf4\x9d\x28\x41\x58\x68\x3e\x74\xb4\x85\x52\xab\x05\xde\xf8\x61\x6c\xee\x8c\xe5\xfd\xb5\x2b\x88\xa5\x8e\x83\x92\x5b\x42\x13\xa4\x3a\xb1\xc1\xbb\xb7\xef\xfd\x32\xf5\x76\xab\xe1\xbc\xa9\xfb\xba\x26\x28\xb5\x41\xe0\xd4\x15\x2b\x17\x19\x7f\x27\x34\xd5\x9e\x9b\x5b\x77\x8b\xb8\x12\xe3\x53\xe5\x8e\xd4\x0b\xcb\x63\x89\xef\x84\xdb\xbe\x7d\x24\x63\x52\x10\x93\x62\xd7\xb6\xf9\x49\xb9\xca\xdd\xdd\xf9\x55\x2b\x0b\x4d\x20\x47\x99\x1a\x9f\x2b\x3b\x80\x7a\xeb\x2e\x45\x89\x56\x99\x18\x97\xf4\x61\x3a\x37\x62\x77\x9d\x92\xfd\xa9\x78\x9e\x24\x58\x91\xcb\x97\x4a\x70\x7d\x3c\xee\xe7\xf1\xfc\xf6\xd6\x71\xc4\x6f\x75\x2e\x1a\x15\xf8\x23\xcc\xa6\x53\x58\xad\xfe\xb0\x9f\xba\x7b\x7c\x7b\x2c\xd4\x4d\xbd\x79\x18\xdc\x8d\xde\x93\x43\xfe\x87\xfb\xc0\xb4\x15\x62\x0a\x3c\xcb\x1e\x8c\xdc\xa9\x5f\x3a\xed\xf3\x56\xb9\x01\xfe\xc4\xb8\x4b\xa1\x44\x59\x97\x0f\x45\xfc\x5e\x28\x58\xad\x16\x71\x65\x9f\x14\x2c\xbf\x7e\x14\x58\x7e\xfd\x54\x60\x7f\xc0\x2b\x97\x49\x8b\x2a\x45\xf3\x30\x36\xb4\xaa\x97\x8d\xe6\x93\x33\xb9\xc3\x6d\x30\x11\x95\x70\x37\x9b\x47\x40\xff\xa1\x57\xfe\xad\xd0\xf3\x9a\x8a\xc7\x00\x3f\xaf\xa9\x78\x34\xe6\x7b\xaa\xfb\xf3\xc3\xcf\x1b\x54\xf7\x1f\x37\xed\x0b\x92\x37\x7f\xad\x0e\x3f\x6e\x7e\xd6\x13\x4a\xff\x4a\xb8\xe5\xc3\x8f\x67\xe0\x5f\xb4\xe3\x70\xf6\xe9\x80\x8b\xff\x66\xc5\xd0\x26\x46\x54\xd4\x7e\x9a\x5c\xad\x5f\x02\x67\xfe\x6c\xe6\x4f\x9b\x07\xbc\x2b\xdb\xdc\x93\x1a\xb1\xf9\x97\x74\xd6\xaf\x87\x07\xaa\xed\x7b\x2d\xbc\x5f\x8b\xab\xbc\x96\xdc\xb0\x99\x7f\xea\x7f\x7b\x80\x7c\xa9\x4b\x77\x09\x3f\xf1\x4f\xfe\xe2\x4f\x0f\x90\xcf\x84\x44\x2b\xfe\x87\xec\xd4\x9f\x1d\x0c\xca\x92\xa9\x49\xc8\x03\x24\x37\x4f\x98\xf6\x6e\xe9\x3e\x67\x59\xad\x12\x12\x5a\x01\xaa\xd4\xfe\x4b\x50\x71\x64\xc9\x4c\xc0\xd6\x59\x26\xae\x8f\xe1\x76\x9d\x69\x83\x54\x1b\xe5\x3e\x7f\x7c\xa1\x52\xbc\xfe\x3e\x3b\x6a\x85\x26\xcd\x58\xf7\x3c\xc3\x3a\xcd\xae\x7f\x0c\xcf\xa3\x08\xd8\xec\x65\x67\x66\xd5\x73\x70\xc9\x0d\xf0\x4a\xbc\xd1\x96\x20\x02\xcf\xb1\xeb\xfc\xc3\xdb\xa6\x7b\xf6\xc9\xeb\xc5\x45\x76\xd4\x09\xed\x3c\xff\x3c\x5f\xa3\xed\xe6\x27\xe0\x05\xde\xf1\x10\x6f\x6f\xfd\x4f\x91\x9b\xda\x0b\x20\xd1\xb2\x2e\x95\x85\x08\x7e\x9c\x7d\x33\x99\x7d\x33\xf9\x7a\x3a\x39\x99\x4e\x66\xd3\x4f\x2f\x3b\x12\x6f\x62\x15\x06\xb1\x4e\x6f\xe6\xcf\xc2\xa0\xfd\x07\xc2\xff\x03\x00\x00\xff\xff\xeb\x72\xe4\xe9\x51\x18\x00\x00") func assetsTemplatesLayoutHtmlBytes() ([]byte, error) { return bindataRead( @@ -545,7 +545,7 @@ func assetsTemplatesLayoutHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "assets/templates/layout.html", size: 6224, mode: os.FileMode(420), modTime: time.Unix(1467928150, 0)} + info := bindataFileInfo{name: "assets/templates/layout.html", size: 6225, mode: os.FileMode(420), modTime: time.Unix(1597262138, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -619,7 +619,7 @@ var _bindata = map[string]func() (*asset, error){ "assets/js/iso88591_map.js": assetsJsIso88591_mapJs, "assets/js/jquery-1.11.0.min.js": assetsJsJquery1110MinJs, "assets/js/jquery-ui-1.10.4.min.js": assetsJsJqueryUi1104MinJs, - "assets/js/moment-2.8.4.js": assetsJsMoment284Js, + "assets/js/moment-2.27.0.js": assetsJsMoment2270Js, "assets/js/punycode.js": assetsJsPunycodeJs, "assets/js/sjis_map.js": assetsJsSjis_mapJs, "assets/js/strutil.js": assetsJsStrutilJs, @@ -693,7 +693,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "iso88591_map.js": &bintree{assetsJsIso88591_mapJs, map[string]*bintree{}}, "jquery-1.11.0.min.js": &bintree{assetsJsJquery1110MinJs, map[string]*bintree{}}, "jquery-ui-1.10.4.min.js": &bintree{assetsJsJqueryUi1104MinJs, map[string]*bintree{}}, - "moment-2.8.4.js": &bintree{assetsJsMoment284Js, map[string]*bintree{}}, + "moment-2.27.0.js": &bintree{assetsJsMoment2270Js, map[string]*bintree{}}, "punycode.js": &bintree{assetsJsPunycodeJs, map[string]*bintree{}}, "sjis_map.js": &bintree{assetsJsSjis_mapJs, map[string]*bintree{}}, "strutil.js": &bintree{assetsJsStrutilJs, map[string]*bintree{}}, From 5c3f10e40866ca1235ff10f4e5cd34fde567aace Mon Sep 17 00:00:00 2001 From: Adam Carr Date: Wed, 12 Aug 2020 21:00:20 +0100 Subject: [PATCH 3/4] Bounce momentjs from 2.8.4 to 2.27.0 --- assets/templates/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/templates/layout.html b/assets/templates/layout.html index 3df71d7..cada36c 100644 --- a/assets/templates/layout.html +++ b/assets/templates/layout.html @@ -140,7 +140,7 @@

Jim

- + From 8d36e3d7b29a466a9d5955c41229688fb6a1a580 Mon Sep 17 00:00:00 2001 From: Adam Carr Date: Wed, 12 Aug 2020 21:00:55 +0100 Subject: [PATCH 4/4] Fix deprecation warning in momentjs 2.27.0 --- assets/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/templates/index.html b/assets/templates/index.html index d109f26..3c3746b 100644 --- a/assets/templates/index.html +++ b/assets/templates/index.html @@ -51,7 +51,7 @@
- {{ getMoment(date(message.Created)).fromNow() }} + {{ getMoment(message.Created).fromNow() }}
{{ fileSize(message.Raw.Data.length) }} @@ -113,7 +113,7 @@
- {{ getMoment(date(message.Created)).fromNow() }} + {{ getMoment(message.Created).fromNow() }}