From 7859e5f876fae1b4339a200f1161dd90b91f97db Mon Sep 17 00:00:00 2001 From: devintegral2 Date: Tue, 3 Dec 2019 14:07:47 +0300 Subject: [PATCH 001/147] Rebranding for 1.9.8 --- cmd/geth/consolecmd_test.go | 4 ++-- cmd/utils/flags.go | 6 +----- console/console.go | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/cmd/geth/consolecmd_test.go b/cmd/geth/consolecmd_test.go index c3f41b187c42..d685d72e804d 100644 --- a/cmd/geth/consolecmd_test.go +++ b/cmd/geth/consolecmd_test.go @@ -67,7 +67,7 @@ func TestConsoleWelcome(t *testing.T) { // Verify the actual welcome message to the required template geth.Expect(` -Welcome to the Geth JavaScript console! +Welcome to the Lachesis JavaScript console! instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}} coinbase: {{.Etherbase}} @@ -141,7 +141,7 @@ func testAttachWelcome(t *testing.T, geth *testgeth, endpoint, apis string) { // Verify the actual welcome message to the required template attach.Expect(` -Welcome to the Geth JavaScript console! +Welcome to the Lachesis JavaScript console! instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}} coinbase: {{etherbase}} diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 8a53f525f6bf..4b519395e744 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1170,11 +1170,7 @@ func SetP2PConfig(ctx *cli.Context, cfg *p2p.Config) { if !(lightClient || lightServer) { lightPeers = 0 } - ethPeers := cfg.MaxPeers - lightPeers - if lightClient { - ethPeers = 0 - } - log.Info("Maximum peer count", "ETH", ethPeers, "LES", lightPeers, "total", cfg.MaxPeers) + log.Info("Maximum peer count", "total", cfg.MaxPeers) if ctx.GlobalIsSet(MaxPendingPeersFlag.Name) { cfg.MaxPendingPeers = ctx.GlobalInt(MaxPendingPeersFlag.Name) diff --git a/console/console.go b/console/console.go index ae9f28da0486..0c8c061591b9 100644 --- a/console/console.go +++ b/console/console.go @@ -299,7 +299,7 @@ func (c *Console) AutoCompleteInput(line string, pos int) (string, []string, str // Welcome show summary of current Geth instance and some metadata about the // console's available modules. func (c *Console) Welcome() { - message := "Welcome to the Geth JavaScript console!\n\n" + message := "Welcome to the Lachesis JavaScript console!\n\n" // Print some generic Geth metadata if res, err := c.jsre.Run(` From 5e8fbc755da76e46f08873f459399e7abd4cf4c7 Mon Sep 17 00:00:00 2001 From: devintegral2 Date: Tue, 3 Dec 2019 14:47:11 +0300 Subject: [PATCH 002/147] Replace eth->ftm in web3.js --- internal/jsre/deps/web3.js | 112 ++++++++++++++++++------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 950576f4d9b7..0fe3d0453f53 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -926,7 +926,7 @@ var SolidityParam = require('./param'); * @returns {SolidityParam} */ var formatInputInt = function (value) { - BigNumber.config(c.ETH_BIGNUMBER_ROUNDING_MODE); + BigNumber.config(c.FTM_BIGNUMBER_ROUNDING_MODE); var result = utils.padLeft(utils.toTwosComplement(value).toString(16), 64); return new SolidityParam(result); }; @@ -1758,10 +1758,10 @@ if (typeof XMLHttpRequest === 'undefined') { */ -/// required to define ETH_BIGNUMBER_ROUNDING_MODE +/// required to define FTM_BIGNUMBER_ROUNDING_MODE var BigNumber = require('bignumber.js'); -var ETH_UNITS = [ +var FTM_UNITS = [ 'wei', 'kwei', 'Mwei', @@ -1792,11 +1792,11 @@ var ETH_UNITS = [ ]; module.exports = { - ETH_PADDING: 32, - ETH_SIGNATURE_LENGTH: 4, - ETH_UNITS: ETH_UNITS, - ETH_BIGNUMBER_ROUNDING_MODE: { ROUNDING_MODE: BigNumber.ROUND_DOWN }, - ETH_POLLING_TIMEOUT: 1000/2, + FTM_PADDING: 32, + FTM_SIGNATURE_LENGTH: 4, + FTM_UNITS: FTM_UNITS, + FTM_BIGNUMBER_ROUNDING_MODE: { ROUNDING_MODE: BigNumber.ROUND_DOWN }, + FTM_POLLING_TIMEOUT: 1000/2, defaultBlock: 'latest', defaultAccount: undefined }; @@ -2530,7 +2530,7 @@ var BigNumber = require('bignumber.js'); function Web3 (provider) { this._requestManager = new RequestManager(provider); this.currentProvider = provider; - this.eth = new Eth(this); + this.ftm = new Eth(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -2711,7 +2711,7 @@ AllSolidityEvents.prototype.execute = function (options, callback) { var o = this.encode(options); var formatter = this.decode.bind(this); - return new Filter(o, 'eth', this._requestManager, watches.eth(), formatter, callback); + return new Filter(o, 'eth', this._requestManager, watches.ftm(), formatter, callback); }; AllSolidityEvents.prototype.attachToContract = function (contract) { @@ -2849,7 +2849,7 @@ var addFunctionsToContract = function (contract) { contract.abi.filter(function (json) { return json.type === 'function'; }).map(function (json) { - return new SolidityFunction(contract._eth, json, contract.address); + return new SolidityFunction(contract._ftm, json, contract.address); }).forEach(function (f) { f.attachToContract(contract); }); @@ -2867,11 +2867,11 @@ var addEventsToContract = function (contract) { return json.type === 'event'; }); - var All = new AllEvents(contract._eth._requestManager, events, contract.address); + var All = new AllEvents(contract._ftm._requestManager, events, contract.address); All.attachToContract(contract); events.map(function (json) { - return new SolidityEvent(contract._eth._requestManager, json, contract.address); + return new SolidityEvent(contract._ftm._requestManager, json, contract.address); }).forEach(function (e) { e.attachToContract(contract); }); @@ -2891,7 +2891,7 @@ var checkForContractAddress = function(contract, callback){ callbackFired = false; // wait for receipt - var filter = contract._eth.filter('latest', function(e){ + var filter = contract._ftm.filter('latest', function(e){ if (!e && !callbackFired) { count++; @@ -2909,10 +2909,10 @@ var checkForContractAddress = function(contract, callback){ } else { - contract._eth.getTransactionReceipt(contract.transactionHash, function(e, receipt){ + contract._ftm.getTransactionReceipt(contract.transactionHash, function(e, receipt){ if(receipt && !callbackFired) { - contract._eth.getCode(receipt.contractAddress, function(e, code){ + contract._ftm.getCode(receipt.contractAddress, function(e, code){ /*jshint maxcomplexity: 6 */ if(callbackFired || !code) @@ -2955,8 +2955,8 @@ var checkForContractAddress = function(contract, callback){ * @method ContractFactory * @param {Array} abi */ -var ContractFactory = function (eth, abi) { - this.eth = eth; +var ContractFactory = function (ftm, abi) { + this.ftm = ftm; this.abi = abi; /** @@ -2972,7 +2972,7 @@ var ContractFactory = function (eth, abi) { this.new = function () { /*jshint maxcomplexity: 7 */ - var contract = new Contract(this.eth, this.abi); + var contract = new Contract(this.ftm, this.abi); // parse arguments var options = {}; // required! @@ -3004,7 +3004,7 @@ var ContractFactory = function (eth, abi) { if (callback) { // wait for the contract address and check if the code was deployed - this.eth.sendTransaction(options, function (err, hash) { + this.ftm.sendTransaction(options, function (err, hash) { if (err) { callback(err); } else { @@ -3018,7 +3018,7 @@ var ContractFactory = function (eth, abi) { } }); } else { - var hash = this.eth.sendTransaction(options); + var hash = this.ftm.sendTransaction(options); // add the transaction hash contract.transactionHash = hash; checkForContractAddress(contract); @@ -3053,7 +3053,7 @@ var ContractFactory = function (eth, abi) { * otherwise calls callback function (err, contract) */ ContractFactory.prototype.at = function (address, callback) { - var contract = new Contract(this.eth, this.abi, address); + var contract = new Contract(this.ftm, this.abi, address); // this functions are not part of prototype, // because we don't want to spoil the interface @@ -3093,8 +3093,8 @@ ContractFactory.prototype.getData = function () { * @param {Array} abi * @param {Address} contract address */ -var Contract = function (eth, abi, address) { - this._eth = eth; +var Contract = function (ftm, abi, address) { + this._ftm = ftm; this.transactionHash = null; this.address = address; this.abi = abi; @@ -3336,7 +3336,7 @@ SolidityEvent.prototype.execute = function (indexed, options, callback) { var o = this.encode(indexed, options); var formatter = this.decode.bind(this); - return new Filter(o, 'eth', this._requestManager, watches.eth(), formatter, callback); + return new Filter(o, 'eth', this._requestManager, watches.ftm(), formatter, callback); }; /** @@ -4006,8 +4006,8 @@ var sha3 = require('../utils/sha3'); /** * This prototype should be used to call/sendTransaction to solidity functions */ -var SolidityFunction = function (eth, json, address) { - this._eth = eth; +var SolidityFunction = function (ftm, json, address) { + this._ftm = ftm; this._inputTypes = json.inputs.map(function (i) { return i.type; }); @@ -4109,12 +4109,12 @@ SolidityFunction.prototype.call = function () { if (!callback) { - var output = this._eth.call(payload, defaultBlock); + var output = this._ftm.call(payload, defaultBlock); return this.unpackOutput(output); } var self = this; - this._eth.call(payload, defaultBlock, function (error, output) { + this._ftm.call(payload, defaultBlock, function (error, output) { if (error) return callback(error, null); var unpacked = null; @@ -4144,10 +4144,10 @@ SolidityFunction.prototype.sendTransaction = function () { } if (!callback) { - return this._eth.sendTransaction(payload); + return this._ftm.sendTransaction(payload); } - this._eth.sendTransaction(payload, callback); + this._ftm.sendTransaction(payload, callback); }; /** @@ -4161,10 +4161,10 @@ SolidityFunction.prototype.estimateGas = function () { var payload = this.toPayload(args); if (!callback) { - return this._eth.estimateGas(payload); + return this._ftm.estimateGas(payload); } - this._eth.estimateGas(payload, callback); + this._ftm.estimateGas(payload, callback); }; /** @@ -5236,7 +5236,7 @@ var uncleCountCall = function (args) { return (utils.isString(args[0]) && args[0].indexOf('0x') === 0) ? 'eth_getUncleCountByBlockHash' : 'eth_getUncleCountByBlockNumber'; }; -function Eth(web3) { +function Ftm(web3) { this._requestManager = web3._requestManager; var self = this; @@ -5256,7 +5256,7 @@ function Eth(web3) { this.sendIBANTransaction = transfer.bind(null, this); } -Object.defineProperty(Eth.prototype, 'defaultBlock', { +Object.defineProperty(Ftm.prototype, 'defaultBlock', { get: function () { return c.defaultBlock; }, @@ -5266,7 +5266,7 @@ Object.defineProperty(Eth.prototype, 'defaultBlock', { } }); -Object.defineProperty(Eth.prototype, 'defaultAccount', { +Object.defineProperty(Ftm.prototype, 'defaultAccount', { get: function () { return c.defaultAccount; }, @@ -5510,28 +5510,28 @@ var properties = function () { ]; }; -Eth.prototype.contract = function (abi) { +Ftm.prototype.contract = function (abi) { var factory = new Contract(this, abi); return factory; }; -Eth.prototype.filter = function (options, callback, filterCreationErrorCallback) { - return new Filter(options, 'eth', this._requestManager, watches.eth(), formatters.outputLogFormatter, callback, filterCreationErrorCallback); +Ftm.prototype.filter = function (options, callback, filterCreationErrorCallback) { + return new Filter(options, 'eth', this._requestManager, watches.ftm(), formatters.outputLogFormatter, callback, filterCreationErrorCallback); }; -Eth.prototype.namereg = function () { +Ftm.prototype.namereg = function () { return this.contract(namereg.global.abi).at(namereg.global.address); }; -Eth.prototype.icapNamereg = function () { +Ftm.prototype.icapNamereg = function () { return this.contract(namereg.icap.abi).at(namereg.icap.address); }; -Eth.prototype.isSyncing = function (callback) { +Ftm.prototype.isSyncing = function (callback) { return new IsSyncing(this._requestManager, callback); }; -module.exports = Eth; +module.exports = Ftm; },{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],39:[function(require,module,exports){ /* @@ -6023,7 +6023,7 @@ module.exports = Swarm; var Method = require('../method'); /// @returns an array of objects describing web3.eth.filter api methods -var eth = function () { +var ftm = function () { var newFilterCall = function (args) { var type = args[0]; @@ -6101,7 +6101,7 @@ var shh = function () { }; module.exports = { - eth: eth, + ftm: ftm, shh: shh }; @@ -6491,7 +6491,7 @@ RequestManager.prototype.reset = function (keepIsSyncing) { */ RequestManager.prototype.poll = function () { /*jshint maxcomplexity: 6 */ - this.timeout = setTimeout(this.poll.bind(this), c.ETH_POLLING_TIMEOUT); + this.timeout = setTimeout(this.poll.bind(this), c.FTM_POLLING_TIMEOUT); if (Object.keys(this.polls).length === 0) { return; @@ -6701,23 +6701,23 @@ var exchangeAbi = require('../contracts/SmartExchange.json'); * @param {Value} value to be tranfered * @param {Function} callback, callback */ -var transfer = function (eth, from, to, value, callback) { +var transfer = function (ftm, from, to, value, callback) { var iban = new Iban(to); if (!iban.isValid()) { throw new Error('invalid iban address'); } if (iban.isDirect()) { - return transferToAddress(eth, from, iban.address(), value, callback); + return transferToAddress(ftm, from, iban.address(), value, callback); } if (!callback) { - var address = eth.icapNamereg().addr(iban.institution()); - return deposit(eth, from, address, value, iban.client()); + var address = ftm.icapNamereg().addr(iban.institution()); + return deposit(ftm, from, address, value, iban.client()); } - eth.icapNamereg().addr(iban.institution(), function (err, address) { - return deposit(eth, from, address, value, iban.client(), callback); + ftm.icapNamereg().addr(iban.institution(), function (err, address) { + return deposit(ftm, from, address, value, iban.client(), callback); }); }; @@ -6731,8 +6731,8 @@ var transfer = function (eth, from, to, value, callback) { * @param {Value} value to be tranfered * @param {Function} callback, callback */ -var transferToAddress = function (eth, from, to, value, callback) { - return eth.sendTransaction({ +var transferToAddress = function (ftm, from, to, value, callback) { + return ftm.sendTransaction({ address: to, from: from, value: value @@ -6749,9 +6749,9 @@ var transferToAddress = function (eth, from, to, value, callback) { * @param {String} client unique identifier * @param {Function} callback, callback */ -var deposit = function (eth, from, to, value, client, callback) { +var deposit = function (ftm, from, to, value, client, callback) { var abi = exchangeAbi; - return eth.contract(abi).at(to).deposit(client, { + return ftm.contract(abi).at(to).deposit(client, { from: from, value: value }, callback); From f741a5c690e274cd27ef3663e8e1b3097b48515f Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Tue, 29 Sep 2020 15:09:23 +0700 Subject: [PATCH 003/147] change eth namespace to ftm namespace in web3.js --- cmd/geth/consolecmd_test.go | 4 ++-- cmd/geth/genesis_test.go | 4 ++-- console/console.go | 9 ++++++--- internal/jsre/deps/web3.js | 18 +++++++++--------- 4 files changed, 19 insertions(+), 16 deletions(-) diff --git a/cmd/geth/consolecmd_test.go b/cmd/geth/consolecmd_test.go index d685d72e804d..249381818b91 100644 --- a/cmd/geth/consolecmd_test.go +++ b/cmd/geth/consolecmd_test.go @@ -31,8 +31,8 @@ import ( ) const ( - ipcAPIs = "admin:1.0 debug:1.0 eth:1.0 ethash:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0" - httpAPIs = "eth:1.0 net:1.0 rpc:1.0 web3:1.0" + ipcAPIs = "admin:1.0 debug:1.0 ethash:1.0 ftm:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0" + httpAPIs = "ftm:1.0 net:1.0 rpc:1.0 web3:1.0" ) // spawns geth with the given command line args, using a set of flags to minimise diff --git a/cmd/geth/genesis_test.go b/cmd/geth/genesis_test.go index 0563ef3c4271..9dbfae185ce1 100644 --- a/cmd/geth/genesis_test.go +++ b/cmd/geth/genesis_test.go @@ -42,7 +42,7 @@ var customGenesisTests = []struct { "timestamp" : "0x00", "config" : {} }`, - query: "eth.getBlock(0).nonce", + query: "ftm.getBlock(0).nonce", result: "0x0000000000001338", }, // Genesis file with specific chain configurations @@ -63,7 +63,7 @@ var customGenesisTests = []struct { "daoForkSupport" : true } }`, - query: "eth.getBlock(0).nonce", + query: "ftm.getBlock(0).nonce", result: "0x0000000000001339", }, } diff --git a/console/console.go b/console/console.go index 0c8c061591b9..3136611c7372 100644 --- a/console/console.go +++ b/console/console.go @@ -191,7 +191,7 @@ func (c *Console) initExtensions() error { if err != nil { return fmt.Errorf("api modules: %v", err) } - aliases := map[string]struct{}{"eth": {}, "personal": {}} + aliases := map[string]struct{}{"ftm": {}, "personal": {}} for api := range apis { if api == "web3" { continue @@ -305,9 +305,9 @@ func (c *Console) Welcome() { if res, err := c.jsre.Run(` var message = "instance: " + web3.version.node + "\n"; try { - message += "coinbase: " + eth.coinbase + "\n"; + message += "coinbase: " + ftm.coinbase + "\n"; } catch (err) {} - message += "at block: " + eth.blockNumber + " (" + new Date(1000 * eth.getBlock(eth.blockNumber).timestamp) + ")\n"; + message += "at block: " + ftm.blockNumber + " (" + new Date(1000 * ftm.getBlock(ftm.blockNumber).timestamp) + ")\n"; try { message += " datadir: " + admin.datadir + "\n"; } catch (err) {} @@ -319,6 +319,9 @@ func (c *Console) Welcome() { if apis, err := c.client.SupportedModules(); err == nil { modules := make([]string, 0, len(apis)) for api, version := range apis { + if api == "eth" { + api = "ftm" + } modules = append(modules, fmt.Sprintf("%s:%s", api, version)) } sort.Strings(modules) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 0fe3d0453f53..3ff5a7c6e30d 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2508,7 +2508,7 @@ module.exports={ var RequestManager = require('./web3/requestmanager'); var Iban = require('./web3/iban'); -var Eth = require('./web3/methods/eth'); +var Ftm = require('./web3/methods/ftm'); var DB = require('./web3/methods/db'); var Shh = require('./web3/methods/shh'); var Net = require('./web3/methods/net'); @@ -2530,7 +2530,7 @@ var BigNumber = require('bignumber.js'); function Web3 (provider) { this._requestManager = new RequestManager(provider); this.currentProvider = provider; - this.ftm = new Eth(this); + this.ftm = new Ftm(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -2610,7 +2610,7 @@ var properties = function () { }), new Property({ name: 'version.ethereum', - getter: 'eth_protocolVersion', + getter: 'ftm_protocolVersion', inputFormatter: utils.toDecimal }), new Property({ @@ -2632,7 +2632,7 @@ Web3.prototype.createBatch = function () { module.exports = Web3; -},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/eth":38,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ +},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ /* This file is part of web3.js. @@ -2711,7 +2711,7 @@ AllSolidityEvents.prototype.execute = function (options, callback) { var o = this.encode(options); var formatter = this.decode.bind(this); - return new Filter(o, 'eth', this._requestManager, watches.ftm(), formatter, callback); + return new Filter(o, 'ftm', this._requestManager, watches.ftm(), formatter, callback); }; AllSolidityEvents.prototype.attachToContract = function (contract) { @@ -3336,7 +3336,7 @@ SolidityEvent.prototype.execute = function (indexed, options, callback) { var o = this.encode(indexed, options); var formatter = this.decode.bind(this); - return new Filter(o, 'eth', this._requestManager, watches.ftm(), formatter, callback); + return new Filter(o, 'ftm', this._requestManager, watches.ftm(), formatter, callback); }; /** @@ -3470,7 +3470,7 @@ var getOptions = function (options, type) { switch(type) { - case 'eth': + case 'ftm': // make sure topics, get converted to hex options.topics = options.topics || []; @@ -5516,7 +5516,7 @@ Ftm.prototype.contract = function (abi) { }; Ftm.prototype.filter = function (options, callback, filterCreationErrorCallback) { - return new Filter(options, 'eth', this._requestManager, watches.ftm(), formatters.outputLogFormatter, callback, filterCreationErrorCallback); + return new Filter(options, 'ftm', this._requestManager, watches.ftm(), formatters.outputLogFormatter, callback, filterCreationErrorCallback); }; Ftm.prototype.namereg = function () { @@ -5874,7 +5874,6 @@ module.exports = Shh; * * Reference: https://github.com/ethereum/go-ethereum/blob/swarm/internal/web3ext/web3ext.go#L33 */ - "use strict"; var Method = require('../method'); @@ -13636,3 +13635,4 @@ module.exports = Web3; },{"./lib/web3":22}]},{},["web3"]) //# sourceMappingURL=web3-light.js.map +// From 071217f8bb9cfae7930fe4285874f7dcdf40d309 Mon Sep 17 00:00:00 2001 From: devintegral2 Date: Wed, 4 Dec 2019 14:41:44 +0300 Subject: [PATCH 004/147] Refactoring "eth" -> "ftm" for web3ext --- internal/web3ext/web3ext.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 927dba1897b3..62cc7dbfe79d 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -20,9 +20,9 @@ package web3ext var Modules = map[string]string{ "admin": AdminJs, "clique": CliqueJs, - "ethash": EthashJs, + "ftmash": FtmashJs, "debug": DebugJs, - "eth": EthJs, + "ftm": FtmJs, "miner": MinerJs, "net": NetJs, "personal": PersonalJs, @@ -89,9 +89,9 @@ web3._extend({ }); ` -const EthashJs = ` +const FtmashJs = ` web3._extend({ - property: 'ethash', + property: 'ftmash', methods: [ new web3._extend.Method({ name: 'getWork', @@ -458,9 +458,9 @@ web3._extend({ }); ` -const EthJs = ` +const FtmJs = ` web3._extend({ - property: 'eth', + property: 'ftm', methods: [ new web3._extend.Method({ name: 'chainId', From 738bf782c3d4fb76d639b2cfc5c5454d50941e0e Mon Sep 17 00:00:00 2001 From: devintegral2 Date: Wed, 4 Dec 2019 15:11:08 +0300 Subject: [PATCH 005/147] Fix version record --- internal/jsre/deps/web3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 3ff5a7c6e30d..ce718046de24 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2609,8 +2609,8 @@ var properties = function () { inputFormatter: utils.toDecimal }), new Property({ - name: 'version.ethereum', - getter: 'ftm_protocolVersion', + name: 'version.lachesis', + getter: 'eth_protocolVersion', inputFormatter: utils.toDecimal }), new Property({ From f45b5b81580fc2ce3b463fd1c4d426d8d659d96e Mon Sep 17 00:00:00 2001 From: "a.guzev" Date: Thu, 26 Dec 2019 19:16:12 +1000 Subject: [PATCH 006/147] console: no modules renaming --- console/console.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/console/console.go b/console/console.go index 3136611c7372..3a7d44f0a2f3 100644 --- a/console/console.go +++ b/console/console.go @@ -319,9 +319,6 @@ func (c *Console) Welcome() { if apis, err := c.client.SupportedModules(); err == nil { modules := make([]string, 0, len(apis)) for api, version := range apis { - if api == "eth" { - api = "ftm" - } modules = append(modules, fmt.Sprintf("%s:%s", api, version)) } sort.Strings(modules) From 5b55105cada103815134ef41d983243ff93f3213 Mon Sep 17 00:00:00 2001 From: "a.guzev" Date: Thu, 26 Dec 2019 22:47:21 +1000 Subject: [PATCH 007/147] console: hide eth module --- cmd/geth/consolecmd_test.go | 4 ++-- console/console.go | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/cmd/geth/consolecmd_test.go b/cmd/geth/consolecmd_test.go index 249381818b91..7f6b0596b243 100644 --- a/cmd/geth/consolecmd_test.go +++ b/cmd/geth/consolecmd_test.go @@ -31,8 +31,8 @@ import ( ) const ( - ipcAPIs = "admin:1.0 debug:1.0 ethash:1.0 ftm:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0" - httpAPIs = "ftm:1.0 net:1.0 rpc:1.0 web3:1.0" + ipcAPIs = "admin:1.0 debug:1.0 ethash:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0" + httpAPIs = "net:1.0 rpc:1.0 web3:1.0" ) // spawns geth with the given command line args, using a set of flags to minimise diff --git a/console/console.go b/console/console.go index 3a7d44f0a2f3..801799078630 100644 --- a/console/console.go +++ b/console/console.go @@ -319,6 +319,9 @@ func (c *Console) Welcome() { if apis, err := c.client.SupportedModules(); err == nil { modules := make([]string, 0, len(apis)) for api, version := range apis { + if api == "eth" { + continue // hide module + } modules = append(modules, fmt.Sprintf("%s:%s", api, version)) } sort.Strings(modules) From 0f98fd36fd54d14af70f107e3eaff3e69557024d Mon Sep 17 00:00:00 2001 From: "a.guzev" Date: Thu, 26 Dec 2019 22:51:43 +1000 Subject: [PATCH 008/147] ftm in unitMap --- internal/jsre/deps/web3.js | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index ce718046de24..4dc552cf78da 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -1903,14 +1903,26 @@ var unitMap = { 'microether': '1000000000000', 'micro': '1000000000000', 'finney': '1000000000000000', - 'milliether': '1000000000000000', - 'milli': '1000000000000000', + 'milliether': '1000000000000000', + 'milli': '1000000000000000', 'ether': '1000000000000000000', 'kether': '1000000000000000000000', 'grand': '1000000000000000000000', 'mether': '1000000000000000000000000', 'gether': '1000000000000000000000000000', - 'tether': '1000000000000000000000000000000' + 'tether': '1000000000000000000000000000000', + + 'noftm': '0', + 'femtoftm': '1000', + 'picoftm': '1000000', + 'nanoftm': '1000000000', + 'microftm': '1000000000000', + 'milliftm': '1000000000000000', + 'ftm': '1000000000000000000', + 'kftm': '1000000000000000000000', + 'mftm': '1000000000000000000000000', + 'gftm': '1000000000000000000000000000', + 'tftm': '1000000000000000000000000000000' }; /** From 2e3d4509ff04767a3741a3ff3326358e5e5d60f0 Mon Sep 17 00:00:00 2001 From: "a.guzev" Date: Thu, 26 Dec 2019 22:53:18 +1000 Subject: [PATCH 009/147] mutable version --- build/ci.go | 15 ++++++++------- cmd/geth/misccmd.go | 2 +- eth/backend.go | 2 +- miner/stress/1559/main.go | 2 +- miner/stress/clique/main.go | 2 +- miner/stress/ethash/main.go | 2 +- mobile/geth.go | 2 +- params/version.go | 16 ++++++++-------- 8 files changed, 22 insertions(+), 21 deletions(-) diff --git a/build/ci.go b/build/ci.go index d7d2ce72e06c..cfd9400b95e0 100644 --- a/build/ci.go +++ b/build/ci.go @@ -59,6 +59,7 @@ import ( "time" "github.com/cespare/cp" + "github.com/ethereum/go-ethereum/crypto/signify" "github.com/ethereum/go-ethereum/internal/build" "github.com/ethereum/go-ethereum/params" @@ -118,7 +119,7 @@ var ( // A debian package is created for all executables listed here. debEthereum = debPackage{ Name: "ethereum", - Version: params.Version, + Version: params.Version(), Executables: debExecutables, } @@ -492,12 +493,12 @@ func doDocker(cmdline []string) { case env.Branch == "master": tags = []string{"latest"} case strings.HasPrefix(env.Tag, "v1."): - tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), "v" + params.Version} + tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), "v" + params.Version()} } // If architecture specific image builds are requested, build and push them if *image { - build.MustRunCommand("docker", "build", "--build-arg", "COMMIT="+env.Commit, "--build-arg", "VERSION="+params.VersionWithMeta, "--build-arg", "BUILDNUM="+env.Buildnum, "--tag", fmt.Sprintf("%s:TAG", *upload), ".") - build.MustRunCommand("docker", "build", "--build-arg", "COMMIT="+env.Commit, "--build-arg", "VERSION="+params.VersionWithMeta, "--build-arg", "BUILDNUM="+env.Buildnum, "--tag", fmt.Sprintf("%s:alltools-TAG", *upload), "-f", "Dockerfile.alltools", ".") + build.MustRunCommand("docker", "build", "--build-arg", "COMMIT="+env.Commit, "--build-arg", "VERSION="+params.VersionWithMeta(), "--build-arg", "BUILDNUM="+env.Buildnum, "--tag", fmt.Sprintf("%s:TAG", *upload), ".") + build.MustRunCommand("docker", "build", "--build-arg", "COMMIT="+env.Commit, "--build-arg", "VERSION="+params.VersionWithMeta(), "--build-arg", "BUILDNUM="+env.Buildnum, "--tag", fmt.Sprintf("%s:alltools-TAG", *upload), "-f", "Dockerfile.alltools", ".") // Tag and upload the images to Docker Hub for _, tag := range tags { @@ -952,7 +953,7 @@ func doWindowsInstaller(cmdline []string) { // Build the installer. This assumes that all the needed files have been previously // built (don't mix building and packaging to keep cross compilation complexity to a // minimum). - version := strings.Split(params.Version, ".") + version := strings.Split(params.Version(), ".") if env.Commit != "" { version[2] += "-" + env.Commit[:8] } @@ -1095,7 +1096,7 @@ func newMavenMetadata(env build.Environment) mavenMetadata { } } // Render the version and package strings - version := params.Version + version := params.Version() if isUnstableBuild(env) { version += "-SNAPSHOT" } @@ -1193,7 +1194,7 @@ func newPodMetadata(env build.Environment, archive string) podMetadata { } } } - version := params.Version + version := params.Version() if isUnstableBuild(env) { version += "-unstable." + env.Buildnum } diff --git a/cmd/geth/misccmd.go b/cmd/geth/misccmd.go index b347d31d97e1..27e8af9c32b1 100644 --- a/cmd/geth/misccmd.go +++ b/cmd/geth/misccmd.go @@ -134,7 +134,7 @@ func makedag(ctx *cli.Context) error { func version(ctx *cli.Context) error { fmt.Println(strings.Title(clientIdentifier)) - fmt.Println("Version:", params.VersionWithMeta) + fmt.Println("Version:", params.VersionWithMeta()) if gitCommit != "" { fmt.Println("Git Commit:", gitCommit) } diff --git a/eth/backend.go b/eth/backend.go index 793d3b81f1b1..4c6e2c525005 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -164,7 +164,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) { if !config.SkipBcVersionCheck { if bcVersion != nil && *bcVersion > core.BlockChainVersion { - return nil, fmt.Errorf("database version is v%d, Geth %s only supports v%d", *bcVersion, params.VersionWithMeta, core.BlockChainVersion) + return nil, fmt.Errorf("database version is v%d, Geth %s only supports v%d", *bcVersion, params.VersionWithMeta(), core.BlockChainVersion) } else if bcVersion == nil || *bcVersion < core.BlockChainVersion { if bcVersion != nil { // only print warning on upgrade, not on init log.Warn("Upgrade blockchain database version", "from", dbVer, "to", core.BlockChainVersion) diff --git a/miner/stress/1559/main.go b/miner/stress/1559/main.go index 90f210b2726d..63852d2097e5 100644 --- a/miner/stress/1559/main.go +++ b/miner/stress/1559/main.go @@ -218,7 +218,7 @@ func makeMiner(genesis *core.Genesis) (*node.Node, *eth.Ethereum, error) { config := &node.Config{ Name: "geth", - Version: params.Version, + Version: params.Version(), DataDir: datadir, P2P: p2p.Config{ ListenAddr: "0.0.0.0:0", diff --git a/miner/stress/clique/main.go b/miner/stress/clique/main.go index 2aad40bb51ce..549ceed47711 100644 --- a/miner/stress/clique/main.go +++ b/miner/stress/clique/main.go @@ -170,7 +170,7 @@ func makeSealer(genesis *core.Genesis) (*node.Node, *eth.Ethereum, error) { config := &node.Config{ Name: "geth", - Version: params.Version, + Version: params.Version(), DataDir: datadir, P2P: p2p.Config{ ListenAddr: "0.0.0.0:0", diff --git a/miner/stress/ethash/main.go b/miner/stress/ethash/main.go index 7958e9ab8ef7..8055c41456ce 100644 --- a/miner/stress/ethash/main.go +++ b/miner/stress/ethash/main.go @@ -147,7 +147,7 @@ func makeMiner(genesis *core.Genesis) (*node.Node, *eth.Ethereum, error) { config := &node.Config{ Name: "geth", - Version: params.Version, + Version: params.Version(), DataDir: datadir, P2P: p2p.Config{ ListenAddr: "0.0.0.0:0", diff --git a/mobile/geth.go b/mobile/geth.go index 704d432e0440..ea7bb0727e60 100644 --- a/mobile/geth.go +++ b/mobile/geth.go @@ -131,7 +131,7 @@ func NewNode(datadir string, config *NodeConfig) (stack *Node, _ error) { // Create the empty networking stack nodeConf := &node.Config{ Name: clientIdentifier, - Version: params.VersionWithMeta, + Version: params.VersionWithMeta(), DataDir: datadir, KeyStoreDir: filepath.Join(datadir, "keystore"), // Mobile should never use internal keystores! P2P: p2p.Config{ diff --git a/params/version.go b/params/version.go index 8d222ac04708..877f7b91d24c 100644 --- a/params/version.go +++ b/params/version.go @@ -20,7 +20,7 @@ import ( "fmt" ) -const ( +var ( VersionMajor = 1 // Major version component of the current release VersionMinor = 10 // Minor version component of the current release VersionPatch = 8 // Patch version component of the current release @@ -28,24 +28,24 @@ const ( ) // Version holds the textual version string. -var Version = func() string { +func Version() string { return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch) -}() +} // VersionWithMeta holds the textual version string including the metadata. -var VersionWithMeta = func() string { - v := Version +func VersionWithMeta() string { + v := Version() if VersionMeta != "" { v += "-" + VersionMeta } return v -}() +} // ArchiveVersion holds the textual version string used for Geth archives. // e.g. "1.8.11-dea1ce05" for stable releases, or // "1.8.13-unstable-21c059b6" for unstable releases func ArchiveVersion(gitCommit string) string { - vsn := Version + vsn := Version() if VersionMeta != "stable" { vsn += "-" + VersionMeta } @@ -56,7 +56,7 @@ func ArchiveVersion(gitCommit string) string { } func VersionWithCommit(gitCommit, gitDate string) string { - vsn := VersionWithMeta + vsn := VersionWithMeta() if len(gitCommit) >= 8 { vsn += "-" + gitCommit[:8] } From 82aa4ef053214fff09a6bfec3bd5fb2c00add94f Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Thu, 12 Mar 2020 13:41:32 +0300 Subject: [PATCH 010/147] Add web3.utils.toMoniker method --- internal/jsre/deps/web3.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 4dc552cf78da..038ab736bdde 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -1925,6 +1925,25 @@ var unitMap = { 'tftm': '1000000000000000000000000000000' }; +/** + * Should be called to validator descriptions to hex-string over JSON + * + * @method toMoniker + * @param {String} name is validator name in utf8 + * @param {String} description is validator description in utf8 + * @param {String} webSite is validator web site URL + * @returns {String} hex string with JSON data + */ +var toMoniker = function (name, description, webSite) { + var jsData = { + Name: name, + Description: description, + WebSite: webSite + }; + + return toHex(jsData) +}; + /** * Should be called to pad string to expected length * @@ -2453,6 +2472,7 @@ var isTopic = function (topic) { }; module.exports = { + toMoniker: toMoniker, padLeft: padLeft, padRight: padRight, toHex: toHex, From 7c97ce0b5a1e47dedad7f5278b5ea6a090622f30 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 13 Mar 2020 11:03:24 +0300 Subject: [PATCH 011/147] Declaration for toMoniker --- internal/jsre/deps/web3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 038ab736bdde..bf2860e390fe 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2615,7 +2615,7 @@ Web3.prototype.toChecksumAddress = utils.toChecksumAddress; Web3.prototype.isIBAN = utils.isIBAN; Web3.prototype.padLeft = utils.padLeft; Web3.prototype.padRight = utils.padRight; - +Web3.prototype.toMoniker = utils.toMoniker; Web3.prototype.sha3 = function(string, options) { return '0x' + sha3(string, options); From 38484cc29ce82fd7975692be37e34c0c12a8f055 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Tue, 17 Mar 2020 12:39:21 +0300 Subject: [PATCH 012/147] Add fmt methods to web3.js --- internal/jsre/deps/web3.js | 45 +++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index bf2860e390fe..3dda12ee4d92 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5473,6 +5473,43 @@ var methods = function () { params: 0 }); + //>>>> + var getEvent = new Method({ + name: 'getEvent', + call: 'ftm_getEvent', + params: 2 + }); + + var getEventHeader = new Method({ + name: 'getEventHeader', + call: 'ftm_getEventHeader', + params: 1 + }); + + var getHeads = new Method({ + name: 'getHeads', + call: 'ftm_getHeads', + params: 1 + }); + + var getConsensusTime = new Method({ + name: 'getConsensusTime', + call: 'ftm_getConsensusTime', + params: 1 + }); + + var currentEpoch = new Method({ + name: 'currentEpoch', + call: 'ftm_currentEpoch', + params: 0 + }); + + var getEpochStats = new Method({ + name: 'getEpochStats', + call: 'ftm_getEpochStats', + params: 1 + }); + return [ getBalance, getStorageAt, @@ -5496,7 +5533,13 @@ var methods = function () { compileLLL, compileSerpent, submitWork, - getWork + getWork, + getEvent, + getEventHeader, + getHeads, + getConsensusTime, + currentEpoch, + getEpochStats, ]; }; From 213711adca2fab9a0d7daf47315d11b84f5ff08a Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Tue, 17 Mar 2020 14:00:40 +0300 Subject: [PATCH 013/147] Remove unused web3.js methods --- internal/jsre/deps/web3.js | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 3dda12ee4d92..043c5a4b1987 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2644,11 +2644,6 @@ var properties = function () { name: 'version.lachesis', getter: 'eth_protocolVersion', inputFormatter: utils.toDecimal - }), - new Property({ - name: 'version.whisper', - getter: 'shh_version', - inputFormatter: utils.toDecimal }) ]; }; @@ -5473,7 +5468,6 @@ var methods = function () { params: 0 }); - //>>>> var getEvent = new Method({ name: 'getEvent', call: 'ftm_getEvent', @@ -5550,10 +5544,6 @@ var properties = function () { name: 'coinbase', getter: 'eth_coinbase' }), - new Property({ - name: 'mining', - getter: 'eth_mining' - }), new Property({ name: 'hashrate', getter: 'eth_hashrate', @@ -6056,16 +6046,7 @@ var methods = function () { }; var properties = function () { - return [ - new Property({ - name: 'hive', - getter: 'bzz_hive' - }), - new Property({ - name: 'info', - getter: 'bzz_info' - }) - ]; + return []; }; From 724599fd8d27c277f8142162b6b15bd59b54a02f Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Wed, 18 Mar 2020 11:51:06 +0300 Subject: [PATCH 014/147] Fix getConsensusTime return value --- internal/jsre/deps/web3.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 043c5a4b1987..a96aaa701bfd 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5489,7 +5489,8 @@ var methods = function () { var getConsensusTime = new Method({ name: 'getConsensusTime', call: 'ftm_getConsensusTime', - params: 1 + params: 1, + outputFormatter: utils.toDecimal }); var currentEpoch = new Method({ From ce62838a95ac15d5a63478949c24bb1fa3852f62 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Wed, 18 Mar 2020 12:48:39 +0300 Subject: [PATCH 015/147] Add formaters for web3.js methods --- internal/jsre/deps/web3.js | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index a96aaa701bfd..1bfabc623933 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3878,6 +3878,26 @@ var outputBlockFormatter = function(block) { return block; }; +/** + * Formats the output of a block to its proper values + * + * @method outputEpochStats + * @param {Object} block + * @returns {Object} + */ +var outputEpochStats = function(data) { + + // transform to number + data.epoch = utils.toDecimal(data.epoch); + data.start = utils.toDecimal(data.start); + data.end = utils.toDecimal(data.end); + data.totalBaseRewardWeight = utils.toBigNumber(data.totalBaseRewardWeight); + data.totalFee = utils.toBigNumber(data.totalFee); + data.totalTxRewardWeight = utils.toBigNumber(data.totalTxRewardWeight); + + return data; +}; + /** * Formats the output of a log * @@ -5502,7 +5522,8 @@ var methods = function () { var getEpochStats = new Method({ name: 'getEpochStats', call: 'ftm_getEpochStats', - params: 1 + params: 1, + outputFormatter: outputEpochStats }); return [ From acb4b982a793bac766e3e4b686b39d783c8aee70 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Wed, 18 Mar 2020 13:01:18 +0300 Subject: [PATCH 016/147] Fix new formatter for web3.js --- internal/jsre/deps/Makefile | 4 ++++ internal/jsre/deps/web3.js | 11 ++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 internal/jsre/deps/Makefile diff --git a/internal/jsre/deps/Makefile b/internal/jsre/deps/Makefile new file mode 100644 index 000000000000..9a47d2548b63 --- /dev/null +++ b/internal/jsre/deps/Makefile @@ -0,0 +1,4 @@ +.PHONY: all + +all: + go-bindata -pkg deps ./ diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 1bfabc623933..cb23eb5e2c15 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3881,11 +3881,11 @@ var outputBlockFormatter = function(block) { /** * Formats the output of a block to its proper values * - * @method outputEpochStats - * @param {Object} block + * @method outputEpochStatsFormatter + * @param {Object} epoch stats data * @returns {Object} */ -var outputEpochStats = function(data) { +var outputEpochStatsFormatter = function(data) { // transform to number data.epoch = utils.toDecimal(data.epoch); @@ -4017,7 +4017,8 @@ module.exports = { outputBlockFormatter: outputBlockFormatter, outputLogFormatter: outputLogFormatter, outputPostFormatter: outputPostFormatter, - outputSyncingFormatter: outputSyncingFormatter + outputSyncingFormatter: outputSyncingFormatter, + outputEpochStatsFormatter: outputEpochStatsFormatter }; @@ -5523,7 +5524,7 @@ var methods = function () { name: 'getEpochStats', call: 'ftm_getEpochStats', params: 1, - outputFormatter: outputEpochStats + outputFormatter: formatters.outputEpochStatsFormatter }); return [ From cf858a754519a3f7030d94c29dca4aa569b3e6cb Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Wed, 18 Mar 2020 13:44:22 +0300 Subject: [PATCH 017/147] Add formatters for web3.js --- internal/jsre/deps/web3.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index cb23eb5e2c15..9e3bc5634527 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5504,7 +5504,8 @@ var methods = function () { var getHeads = new Method({ name: 'getHeads', call: 'ftm_getHeads', - params: 1 + params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter] }); var getConsensusTime = new Method({ @@ -5518,12 +5519,14 @@ var methods = function () { name: 'currentEpoch', call: 'ftm_currentEpoch', params: 0 + outputFormatter: utils.toDecimal }); var getEpochStats = new Method({ name: 'getEpochStats', call: 'ftm_getEpochStats', params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter], outputFormatter: formatters.outputEpochStatsFormatter }); From b192e7dbf1bc63a3b36730988d3038d6698c6403 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Thu, 19 Mar 2020 10:14:43 +0300 Subject: [PATCH 018/147] Add all fmt methods in web3.js --- internal/jsre/deps/web3.js | 199 +++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 9e3bc5634527..343802297ce0 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5530,6 +5530,181 @@ var methods = function () { outputFormatter: formatters.outputEpochStatsFormatter }); + var headerByNumber = new Method({ + name: 'headerByNumber', + call: 'ftm_headerByNumber', + params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter], + }); + + var headerByHash = new Method({ + name: 'headerByHash', + call: 'ftm_headerByHash', + params: 1, + inputFormatter: [utils.toHex], + }); + + var stateAndHeaderByNumber = new Method({ + name: 'stateAndHeaderByNumber', + call: 'ftm_stateAndHeaderByNumber', + params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter], + }); + + var getValidators = new Method({ + name: 'getValidators', + call: 'ftm_getValidators', + params: 0, + }); + + var getReceiptsByNumber = new Method({ + name: 'getReceiptsByNumber', + call: 'ftm_getReceiptsByNumber', + params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter], + }); + + var getReceipts = new Method({ + name: 'getReceipts', + call: 'ftm_getReceipts', + params: 1, + inputFormatter: [utils.toHex], + }); + + var getPoolNonce = new Method({ + name: 'getPoolNonce', + call: 'ftm_getPoolNonce', + params: 1, + inputFormatter: [utils.toHex], + }); + + var suggestPrice = new Method({ + name: 'suggestPrice', + call: 'ftm_suggestPrice', + params: 0, + }); + + var getValidationScore = new Method({ + name: 'getValidationScore', + call: 'ftm_getValidationScore', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getOriginationScore = new Method({ + name: 'getOriginationScore', + call: 'ftm_getOriginationScore', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerPoI = new Method({ + name: 'getStakerPoI', + call: 'ftm_getStakerPoI', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getRewardWeights = new Method({ + name: 'getRewardWeights', + call: 'ftm_getRewardWeights', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: [formatters.outputBigNumberFormatter, formatters.outputBigNumberFormatter] + }); + + var getDowntime = new Method({ + name: 'getDowntime', + call: 'ftm_getDowntime', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: [utils.toDecimal, utils.toDecimal] + }); + + var getStaker = new Method({ + name: 'getStaker', + call: 'ftm_getStaker', + params: 1, + inputFormatter: [utils.toDecimal], + }); + + var getStakerID = new Method({ + name: 'getStakerID', + call: 'ftm_getStakerID', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: utils.toDecimal + }); + + var getStakers = new Method({ + name: 'getStakers', + call: 'ftm_getStakers', + params: 0, + }); + + var getDelegatorsOf = new Method({ + name: 'getDelegatorsOf', + call: 'ftm_getDelegatorsOf', + params: 1, + inputFormatter: [utils.toDecimal], + }); + + var getDelegator = new Method({ + name: 'getDelegator', + call: 'ftm_getDelegator', + params: 1, + inputFormatter: [utils.toHex], + }); + + var getDelegatorClaimedRewards = new Method({ + name: 'getDelegatorClaimedRewards', + call: 'ftm_getDelegatorClaimedRewards', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerClaimedRewards = new Method({ + name: 'getStakerClaimedRewards', + call: 'ftm_getStakerClaimedRewards', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerDelegatorsClaimedRewards = new Method({ + name: 'getStakerDelegatorsClaimedRewards', + call: 'ftm_getStakerDelegatorsClaimedRewards', + params: 1, + inputFormatter: [utils.toDecimal], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getEventTime = new Method({ + name: 'getEventTime', + call: 'ftm_getEventTime', + params: 1, + inputFormatter: [utils.toHex, null], + outputFormatter: utils.toDecimal + }); + + var ttfReport = new Method({ + name: 'ttfReport', + call: 'ftm_ttfReport', + params: 3, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toDecimal, null], + }); + + var validatorTimeDrifts = new Method({ + name: 'validatorTimeDrifts', + call: 'ftm_validatorTimeDrifts', + params: 2, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toDecimal], + }); + return [ getBalance, getStorageAt, @@ -5560,6 +5735,30 @@ var methods = function () { getConsensusTime, currentEpoch, getEpochStats, + headerByNumber, + headerByHash, + stateAndHeaderByNumber, + getValidators, + getReceiptsByNumber, + getReceipts, + getPoolNonce, + suggestPrice, + getValidationScore, + getOriginationScore, + getStakerPoI, + getRewardWeights, + getDowntime, + getStaker, + getStakerID, + getStakers, + getDelegatorsOf, + getDelegator, + getDelegatorClaimedRewards, + getStakerClaimedRewards, + getStakerDelegatorsClaimedRewards, + getEventTime, + ttfReport, + validatorTimeDrifts ]; }; From babbeee7098cb502b0c1c65ebe5363a73d5811e7 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Thu, 19 Mar 2020 11:19:45 +0300 Subject: [PATCH 019/147] Fix new methods --- internal/jsre/deps/web3.js | 160 +++++++++++-------------------------- 1 file changed, 48 insertions(+), 112 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 343802297ce0..7eaec3835906 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5530,138 +5530,83 @@ var methods = function () { outputFormatter: formatters.outputEpochStatsFormatter }); - var headerByNumber = new Method({ - name: 'headerByNumber', - call: 'ftm_headerByNumber', - params: 1, - inputFormatter: [formatters.inputBlockNumberFormatter], - }); - - var headerByHash = new Method({ - name: 'headerByHash', - call: 'ftm_headerByHash', - params: 1, - inputFormatter: [utils.toHex], - }); - - var stateAndHeaderByNumber = new Method({ - name: 'stateAndHeaderByNumber', - call: 'ftm_stateAndHeaderByNumber', - params: 1, - inputFormatter: [formatters.inputBlockNumberFormatter], - }); - - var getValidators = new Method({ - name: 'getValidators', - call: 'ftm_getValidators', - params: 0, - }); - - var getReceiptsByNumber = new Method({ - name: 'getReceiptsByNumber', - call: 'ftm_getReceiptsByNumber', - params: 1, - inputFormatter: [formatters.inputBlockNumberFormatter], - }); - - var getReceipts = new Method({ - name: 'getReceipts', - call: 'ftm_getReceipts', - params: 1, - inputFormatter: [utils.toHex], - }); - - var getPoolNonce = new Method({ - name: 'getPoolNonce', - call: 'ftm_getPoolNonce', - params: 1, - inputFormatter: [utils.toHex], - }); - - var suggestPrice = new Method({ - name: 'suggestPrice', - call: 'ftm_suggestPrice', - params: 0, - }); - var getValidationScore = new Method({ name: 'getValidationScore', - call: 'ftm_getValidationScore', + call: 'sfc_getValidationScore', params: 1, - inputFormatter: [utils.toDecimal], + inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); var getOriginationScore = new Method({ name: 'getOriginationScore', - call: 'ftm_getOriginationScore', + call: 'sfc_getOriginationScore', params: 1, - inputFormatter: [utils.toDecimal], + inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); var getStakerPoI = new Method({ name: 'getStakerPoI', - call: 'ftm_getStakerPoI', + call: 'sfc_getStakerPoI', params: 1, - inputFormatter: [utils.toDecimal], + inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); var getRewardWeights = new Method({ name: 'getRewardWeights', - call: 'ftm_getRewardWeights', + call: 'sfc_getRewardWeights', params: 1, - inputFormatter: [utils.toDecimal], - outputFormatter: [formatters.outputBigNumberFormatter, formatters.outputBigNumberFormatter] + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter }); var getDowntime = new Method({ name: 'getDowntime', - call: 'ftm_getDowntime', + call: 'sfc_getDowntime', params: 1, - inputFormatter: [utils.toDecimal], - outputFormatter: [utils.toDecimal, utils.toDecimal] + inputFormatter: [utils.toHex] }); var getStaker = new Method({ name: 'getStaker', - call: 'ftm_getStaker', - params: 1, - inputFormatter: [utils.toDecimal], + call: 'sfc_getStaker', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] }); - var getStakerID = new Method({ - name: 'getStakerID', - call: 'ftm_getStakerID', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: utils.toDecimal + var getStakerByAddress = new Method({ + name: 'getStakerByAddress', + call: 'sfc_getStakerByAddress', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] }); var getStakers = new Method({ name: 'getStakers', - call: 'ftm_getStakers', - params: 0, + call: 'sfc_getStakers', + params: 1, + inputFormatter: [utils.toHex] }); var getDelegatorsOf = new Method({ name: 'getDelegatorsOf', - call: 'ftm_getDelegatorsOf', - params: 1, - inputFormatter: [utils.toDecimal], + call: 'sfc_getDelegatorsOf', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] }); var getDelegator = new Method({ name: 'getDelegator', - call: 'ftm_getDelegator', - params: 1, - inputFormatter: [utils.toHex], + call: 'sfc_getDelegator', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] }); var getDelegatorClaimedRewards = new Method({ name: 'getDelegatorClaimedRewards', - call: 'ftm_getDelegatorClaimedRewards', + call: 'sfc_getDelegatorClaimedRewards', params: 1, inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter @@ -5669,40 +5614,39 @@ var methods = function () { var getStakerClaimedRewards = new Method({ name: 'getStakerClaimedRewards', - call: 'ftm_getStakerClaimedRewards', + call: 'sfc_getStakerClaimedRewards', params: 1, - inputFormatter: [utils.toDecimal], + inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); var getStakerDelegatorsClaimedRewards = new Method({ name: 'getStakerDelegatorsClaimedRewards', - call: 'ftm_getStakerDelegatorsClaimedRewards', + call: 'sfc_getStakerDelegatorsClaimedRewards', params: 1, - inputFormatter: [utils.toDecimal], + inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); - var getEventTime = new Method({ - name: 'getEventTime', - call: 'ftm_getEventTime', - params: 1, - inputFormatter: [utils.toHex, null], - outputFormatter: utils.toDecimal - }); - var ttfReport = new Method({ name: 'ttfReport', - call: 'ftm_ttfReport', - params: 3, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toDecimal, null], + call: 'debug_ttfReport', + params: 4, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ] }); var validatorTimeDrifts = new Method({ name: 'validatorTimeDrifts', - call: 'ftm_validatorTimeDrifts', + call: 'debug_validatorTimeDrifts', + params: 3, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex] + }); + + var validatorVersions = new Method({ + name: 'validatorVersions', + call: 'debug_validatorVersions', params: 2, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toDecimal], + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex] }); return [ @@ -5735,30 +5679,22 @@ var methods = function () { getConsensusTime, currentEpoch, getEpochStats, - headerByNumber, - headerByHash, - stateAndHeaderByNumber, - getValidators, - getReceiptsByNumber, - getReceipts, - getPoolNonce, - suggestPrice, getValidationScore, getOriginationScore, getStakerPoI, getRewardWeights, getDowntime, getStaker, - getStakerID, + getStakerByAddress, getStakers, getDelegatorsOf, getDelegator, getDelegatorClaimedRewards, getStakerClaimedRewards, getStakerDelegatorsClaimedRewards, - getEventTime, ttfReport, - validatorTimeDrifts + validatorTimeDrifts, + validatorVersions ]; }; From f6bc784a30789aa47808955bfa069894e64686cc Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 12:34:29 +0300 Subject: [PATCH 020/147] Slice debug methods in debug namespace --- internal/jsre/deps/web3.js | 122 +++++++++++++++++++++++++++++-------- 1 file changed, 97 insertions(+), 25 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 7eaec3835906..ea0f266387e1 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2541,6 +2541,7 @@ module.exports={ var RequestManager = require('./web3/requestmanager'); var Iban = require('./web3/iban'); var Ftm = require('./web3/methods/ftm'); +var Debug = require('./web3/methods/debug'); var DB = require('./web3/methods/db'); var Shh = require('./web3/methods/shh'); var Net = require('./web3/methods/net'); @@ -2563,6 +2564,7 @@ function Web3 (provider) { this._requestManager = new RequestManager(provider); this.currentProvider = provider; this.ftm = new Ftm(this); + this.debug = new Debug(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -5628,27 +5630,6 @@ var methods = function () { outputFormatter: formatters.outputBigNumberFormatter }); - var ttfReport = new Method({ - name: 'ttfReport', - call: 'debug_ttfReport', - params: 4, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ] - }); - - var validatorTimeDrifts = new Method({ - name: 'validatorTimeDrifts', - call: 'debug_validatorTimeDrifts', - params: 3, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex] - }); - - var validatorVersions = new Method({ - name: 'validatorVersions', - call: 'debug_validatorVersions', - params: 2, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex] - }); - return [ getBalance, getStorageAt, @@ -5691,10 +5672,7 @@ var methods = function () { getDelegator, getDelegatorClaimedRewards, getStakerClaimedRewards, - getStakerDelegatorsClaimedRewards, - ttfReport, - validatorTimeDrifts, - validatorVersions + getStakerDelegatorsClaimedRewards ]; }; @@ -5759,6 +5737,100 @@ Ftm.prototype.isSyncing = function (callback) { module.exports = Ftm; +},{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],380:[function(require,module,exports){ +/* + This file is part of web3.js. + + web3.js is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + web3.js is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with web3.js. If not, see . +*/ +/** + * @file debug.js + * @author Marek Kotewicz + * @author Fabian Vogelsteller + * @date 2015 + */ + +"use strict"; + +var formatters = require('../formatters'); +var utils = require('../../utils/utils'); +var Method = require('../method'); +var Property = require('../property'); +var c = require('../../utils/config'); +var Contract = require('../contract'); +var watches = require('./watches'); +var Filter = require('../filter'); +var IsSyncing = require('../syncing'); +var namereg = require('../namereg'); +var Iban = require('../iban'); +var transfer = require('../transfer'); + +function Debug(web3) { + this._requestManager = web3._requestManager; + + var self = this; + + methods().forEach(function(method) { + method.attachToObject(self); + method.setRequestManager(self._requestManager); + }); + + properties().forEach(function(p) { + p.attachToObject(self); + p.setRequestManager(self._requestManager); + }); + + + this.iban = Iban; + this.sendIBANTransaction = transfer.bind(null, this); +} + +var methods = function () { + var ttfReport = new Method({ + name: 'ttfReport', + call: 'debug_ttfReport', + params: 4, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ] + }); + + var validatorTimeDrifts = new Method({ + name: 'validatorTimeDrifts', + call: 'debug_validatorTimeDrifts', + params: 3, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex] + }); + + var validatorVersions = new Method({ + name: 'validatorVersions', + call: 'debug_validatorVersions', + params: 2, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex] + }); + + return [ + ttfReport, + validatorTimeDrifts, + validatorVersions + ]; +}; + +var properties = function () { + return []; +}; + +module.exports = Debug; + },{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],39:[function(require,module,exports){ /* This file is part of web3.js. From 0b35000402fa6c7a2b441b2aea9b103f05694781 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 12:47:42 +0300 Subject: [PATCH 021/147] Fix error for module web3/methods/debug --- internal/jsre/deps/web3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index ea0f266387e1..b9f9b34f625c 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2661,7 +2661,7 @@ Web3.prototype.createBatch = function () { module.exports = Web3; -},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ +},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ /* This file is part of web3.js. From 9f865a9f593d728477d8796717c66169b7b34f7f Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 13:10:44 +0300 Subject: [PATCH 022/147] Slice sfc methods in sfc namespace --- internal/jsre/deps/web3.js | 299 +++++++++++++++++++++++-------------- 1 file changed, 186 insertions(+), 113 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index b9f9b34f625c..882ebcbd1bca 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2542,6 +2542,7 @@ var RequestManager = require('./web3/requestmanager'); var Iban = require('./web3/iban'); var Ftm = require('./web3/methods/ftm'); var Debug = require('./web3/methods/debug'); +var Sfc = require('./web3/methods/sfc'); var DB = require('./web3/methods/db'); var Shh = require('./web3/methods/shh'); var Net = require('./web3/methods/net'); @@ -2565,6 +2566,7 @@ function Web3 (provider) { this.currentProvider = provider; this.ftm = new Ftm(this); this.debug = new Debug(this); + this.sfc = new Sfc(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -2661,7 +2663,7 @@ Web3.prototype.createBatch = function () { module.exports = Web3; -},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ +},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/sfc":381,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ /* This file is part of web3.js. @@ -5532,104 +5534,6 @@ var methods = function () { outputFormatter: formatters.outputEpochStatsFormatter }); - var getValidationScore = new Method({ - name: 'getValidationScore', - call: 'sfc_getValidationScore', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getOriginationScore = new Method({ - name: 'getOriginationScore', - call: 'sfc_getOriginationScore', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getStakerPoI = new Method({ - name: 'getStakerPoI', - call: 'sfc_getStakerPoI', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getRewardWeights = new Method({ - name: 'getRewardWeights', - call: 'sfc_getRewardWeights', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getDowntime = new Method({ - name: 'getDowntime', - call: 'sfc_getDowntime', - params: 1, - inputFormatter: [utils.toHex] - }); - - var getStaker = new Method({ - name: 'getStaker', - call: 'sfc_getStaker', - params: 2, - inputFormatter: [utils.toHex, utils.toHex] - }); - - var getStakerByAddress = new Method({ - name: 'getStakerByAddress', - call: 'sfc_getStakerByAddress', - params: 2, - inputFormatter: [utils.toHex, utils.toHex] - }); - - var getStakers = new Method({ - name: 'getStakers', - call: 'sfc_getStakers', - params: 1, - inputFormatter: [utils.toHex] - }); - - var getDelegatorsOf = new Method({ - name: 'getDelegatorsOf', - call: 'sfc_getDelegatorsOf', - params: 2, - inputFormatter: [utils.toHex, utils.toHex] - }); - - var getDelegator = new Method({ - name: 'getDelegator', - call: 'sfc_getDelegator', - params: 2, - inputFormatter: [utils.toHex, utils.toHex] - }); - - var getDelegatorClaimedRewards = new Method({ - name: 'getDelegatorClaimedRewards', - call: 'sfc_getDelegatorClaimedRewards', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getStakerClaimedRewards = new Method({ - name: 'getStakerClaimedRewards', - call: 'sfc_getStakerClaimedRewards', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - - var getStakerDelegatorsClaimedRewards = new Method({ - name: 'getStakerDelegatorsClaimedRewards', - call: 'sfc_getStakerDelegatorsClaimedRewards', - params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter - }); - return [ getBalance, getStorageAt, @@ -5659,20 +5563,7 @@ var methods = function () { getHeads, getConsensusTime, currentEpoch, - getEpochStats, - getValidationScore, - getOriginationScore, - getStakerPoI, - getRewardWeights, - getDowntime, - getStaker, - getStakerByAddress, - getStakers, - getDelegatorsOf, - getDelegator, - getDelegatorClaimedRewards, - getStakerClaimedRewards, - getStakerDelegatorsClaimedRewards + getEpochStats ]; }; @@ -5831,6 +5722,188 @@ var properties = function () { module.exports = Debug; +},{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],381:[function(require,module,exports){ +/* + This file is part of web3.js. + + web3.js is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + web3.js is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with web3.js. If not, see . +*/ +/** + * @file sfc.js + * @author Marek Kotewicz + * @author Fabian Vogelsteller + * @date 2015 + */ + +"use strict"; + +var formatters = require('../formatters'); +var utils = require('../../utils/utils'); +var Method = require('../method'); +var Property = require('../property'); +var c = require('../../utils/config'); +var Contract = require('../contract'); +var watches = require('./watches'); +var Filter = require('../filter'); +var IsSyncing = require('../syncing'); +var namereg = require('../namereg'); +var Iban = require('../iban'); +var transfer = require('../transfer'); + +function Sfc(web3) { + this._requestManager = web3._requestManager; + + var self = this; + + methods().forEach(function(method) { + method.attachToObject(self); + method.setRequestManager(self._requestManager); + }); + + properties().forEach(function(p) { + p.attachToObject(self); + p.setRequestManager(self._requestManager); + }); + + + this.iban = Iban; + this.sendIBANTransaction = transfer.bind(null, this); +} + +var methods = function () { + + var getValidationScore = new Method({ + name: 'getValidationScore', + call: 'sfc_getValidationScore', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getOriginationScore = new Method({ + name: 'getOriginationScore', + call: 'sfc_getOriginationScore', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerPoI = new Method({ + name: 'getStakerPoI', + call: 'sfc_getStakerPoI', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getRewardWeights = new Method({ + name: 'getRewardWeights', + call: 'sfc_getRewardWeights', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getDowntime = new Method({ + name: 'getDowntime', + call: 'sfc_getDowntime', + params: 1, + inputFormatter: [utils.toHex] + }); + + var getStaker = new Method({ + name: 'getStaker', + call: 'sfc_getStaker', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] + }); + + var getStakerByAddress = new Method({ + name: 'getStakerByAddress', + call: 'sfc_getStakerByAddress', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] + }); + + var getStakers = new Method({ + name: 'getStakers', + call: 'sfc_getStakers', + params: 1, + inputFormatter: [utils.toHex] + }); + + var getDelegatorsOf = new Method({ + name: 'getDelegatorsOf', + call: 'sfc_getDelegatorsOf', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] + }); + + var getDelegator = new Method({ + name: 'getDelegator', + call: 'sfc_getDelegator', + params: 2, + inputFormatter: [utils.toHex, utils.toHex] + }); + + var getDelegatorClaimedRewards = new Method({ + name: 'getDelegatorClaimedRewards', + call: 'sfc_getDelegatorClaimedRewards', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerClaimedRewards = new Method({ + name: 'getStakerClaimedRewards', + call: 'sfc_getStakerClaimedRewards', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getStakerDelegatorsClaimedRewards = new Method({ + name: 'getStakerDelegatorsClaimedRewards', + call: 'sfc_getStakerDelegatorsClaimedRewards', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + return [ + getValidationScore, + getOriginationScore, + getStakerPoI, + getRewardWeights, + getDowntime, + getStaker, + getStakerByAddress, + getStakers, + getDelegatorsOf, + getDelegator, + getDelegatorClaimedRewards, + getStakerClaimedRewards, + getStakerDelegatorsClaimedRewards + ]; +}; + +var properties = function () { + return []; +}; + +module.exports = Sfc; + },{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],39:[function(require,module,exports){ /* This file is part of web3.js. From 2b0da9905ba078d01841ca5bf40553d186a3ac04 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 15:59:57 +0300 Subject: [PATCH 023/147] Fixes for web3.js --- internal/jsre/deps/web3.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 882ebcbd1bca..f3e09a3d0f89 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5522,7 +5522,7 @@ var methods = function () { var currentEpoch = new Method({ name: 'currentEpoch', call: 'ftm_currentEpoch', - params: 0 + params: 0, outputFormatter: utils.toDecimal }); @@ -5688,6 +5688,8 @@ function Debug(web3) { } var methods = function () { + // Output formaters for 'samples' and 'count'? + var ttfReport = new Method({ name: 'ttfReport', call: 'debug_ttfReport', @@ -5811,8 +5813,7 @@ var methods = function () { name: 'getRewardWeights', call: 'sfc_getRewardWeights', params: 1, - inputFormatter: [utils.toHex], - outputFormatter: formatters.outputBigNumberFormatter + inputFormatter: [utils.toHex] }); var getDowntime = new Method({ From dde266308edfafbdab6088e2146620ad45059ab0 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 19:15:25 +0300 Subject: [PATCH 024/147] Add output formatters for debug methods --- internal/jsre/deps/web3.js | 43 +++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index f3e09a3d0f89..869076ef5406 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3902,6 +3902,43 @@ var outputEpochStatsFormatter = function(data) { return data; }; +/** + * Formats the output of a block to its proper values + * + * @method outputTtfReportFormatter + * @param {Object} ttfReport stats data + * @returns {Object} + */ +var outputTtfReportFormatter = function(data) { + + // transform to number + data.stats.samples = utils.toDecimal(data.stats.samples); + + return data; +}; + +/** + * Formats the output of a block to its proper values + * + * @method outputValidatorTimeDriftsFormatter + * @param {Object} validatorTimeDrifts stats data + * @returns {Object} + */ +var outputValidatorTimeDriftsFormatter = function(data) { + data.forEach(function(v, k, m){ + data[k].stats.samples = utils.toDecimal(data[k].stats.samples); + + if (data[k].has('histogram') && utils.isArray(data[k].histogram)) { + data[k].histogram.forEach(function(item) { + item.count = utils.toDecimal(item.count); + return item + }) + } + }); + + return data; +}; + /** * Formats the output of a log * @@ -4022,7 +4059,9 @@ module.exports = { outputLogFormatter: outputLogFormatter, outputPostFormatter: outputPostFormatter, outputSyncingFormatter: outputSyncingFormatter, - outputEpochStatsFormatter: outputEpochStatsFormatter + outputEpochStatsFormatter: outputEpochStatsFormatter, + outputTtfReportFormatter: outputTtfReportFormatter, + outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter }; @@ -5695,6 +5734,7 @@ var methods = function () { call: 'debug_ttfReport', params: 4, inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ] + outputFormatter: formatters.outputTtfReportFormatter }); var validatorTimeDrifts = new Method({ @@ -5702,6 +5742,7 @@ var methods = function () { call: 'debug_validatorTimeDrifts', params: 3, inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex] + outputFormatter: formatters.outputValidatorTimeDriftsFormatter }); var validatorVersions = new Method({ From 3aa22738fe8d1aed3c713247d9372f63c28b6a93 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 19:29:35 +0300 Subject: [PATCH 025/147] Fix errors in web3.js formatter --- internal/jsre/deps/web3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 869076ef5406..363d99c5fb63 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3925,7 +3925,7 @@ var outputTtfReportFormatter = function(data) { * @returns {Object} */ var outputValidatorTimeDriftsFormatter = function(data) { - data.forEach(function(v, k, m){ + Object.keys(data).forEach(function(k){ data[k].stats.samples = utils.toDecimal(data[k].stats.samples); if (data[k].has('histogram') && utils.isArray(data[k].histogram)) { From 7dcd75d1816b0b55ede3f1ef86fab47959d45258 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 19:37:45 +0300 Subject: [PATCH 026/147] Fix errors in web3.js formatter --- internal/jsre/deps/web3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 363d99c5fb63..052bf8bc41c4 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3928,7 +3928,7 @@ var outputValidatorTimeDriftsFormatter = function(data) { Object.keys(data).forEach(function(k){ data[k].stats.samples = utils.toDecimal(data[k].stats.samples); - if (data[k].has('histogram') && utils.isArray(data[k].histogram)) { + if (data[k].hasOwnProperty('histogram') && utils.isArray(data[k].histogram)) { data[k].histogram.forEach(function(item) { item.count = utils.toDecimal(item.count); return item From 2207d037adabf6be917204cb6fda404fd822ccf7 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 19:52:02 +0300 Subject: [PATCH 027/147] Optimize formatters code --- internal/jsre/deps/web3.js | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 052bf8bc41c4..2724f7697d11 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3902,6 +3902,23 @@ var outputEpochStatsFormatter = function(data) { return data; }; + +/** + * @method outputValidatorTimeDriftsFormatter + * @param {Object} validatorTimeDrifts stats data + * @returns {Object} + */ +var outputHistogramFormatter = function(data) { + if (utils.isArray(data)) { + data.forEach(function(item) { + item.count = utils.toDecimal(item.count); + return item + }) + } + + return data; +}; + /** * Formats the output of a block to its proper values * @@ -3910,16 +3927,18 @@ var outputEpochStatsFormatter = function(data) { * @returns {Object} */ var outputTtfReportFormatter = function(data) { - // transform to number data.stats.samples = utils.toDecimal(data.stats.samples); + // histogram + if (data.hasOwnProperty('histogram') && utils.isArray(data.histogram)) { + data.histogram = outputHistogramFormatter(data.histogram) + } + return data; }; /** - * Formats the output of a block to its proper values - * * @method outputValidatorTimeDriftsFormatter * @param {Object} validatorTimeDrifts stats data * @returns {Object} @@ -3929,10 +3948,7 @@ var outputValidatorTimeDriftsFormatter = function(data) { data[k].stats.samples = utils.toDecimal(data[k].stats.samples); if (data[k].hasOwnProperty('histogram') && utils.isArray(data[k].histogram)) { - data[k].histogram.forEach(function(item) { - item.count = utils.toDecimal(item.count); - return item - }) + data[k].histogram = outputHistogramFormatter(data[k].histogram) } }); From 020608b97ebe0510698a82185a21624f1014d936 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 20:28:08 +0300 Subject: [PATCH 028/147] Output formatters for sfc methods --- internal/jsre/deps/web3.js | 87 ++++++++++++++++++++++++++++++++------ 1 file changed, 75 insertions(+), 12 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 2724f7697d11..7ddd82e897d0 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3883,8 +3883,6 @@ var outputBlockFormatter = function(block) { }; /** - * Formats the output of a block to its proper values - * * @method outputEpochStatsFormatter * @param {Object} epoch stats data * @returns {Object} @@ -3902,12 +3900,58 @@ var outputEpochStatsFormatter = function(data) { return data; }; +/** + * @method outputStakerFormatter + * @param {Object} staker data + * @returns {Object} + */ +var outputStakerFormatter = function(data) { + data.createdEpoch = utils.toDecimal(data.createdEpoch); + data.createdTime = utils.toBigNumber(data.createdTime); + data.deactivatedEpoch = utils.toDecimal(data.deactivatedEpoch); + data.deactivatedTime = utils.toBigNumber(data.deactivatedTime); + data.delegatedMe = utils.toDecimal(data.delegatedMe); + data.stake = utils.toBigNumber(data.stake); + data.totalStake = utils.toBigNumber(data.totalStake); + + if (data.hasOwnProperty('baseRewardWeight')) { + data.baseRewardWeight = utils.toBigNumber(data.baseRewardWeight); + data.claimedRewards = utils.toBigNumber(data.claimedRewards); + data.delegatorsClaimedRewards = utils.toBigNumber(data.delegatorsClaimedRewards); + data.downtime = utils.toBigNumber(data.downtime); + data.missedBlocks = utils.toBigNumber(data.missedBlocks); + data.originationScore = utils.toBigNumber(data.originationScore); + data.poi = utils.toBigNumber(data.poi); + data.txRewardWeight = utils.toBigNumber(data.txRewardWeight); + data.validationScore = utils.toBigNumber(data.validationScore); + }; + + return data; +}; /** - * @method outputValidatorTimeDriftsFormatter - * @param {Object} validatorTimeDrifts stats data + * @method outputStakersFormatter + * @param {Object} stakers data * @returns {Object} */ +var outputStakersFormatter = function(data) { + if (utils.isArray(data)) { + data.forEach(function(item) { + if (!isString(item)) { + item = outputStakerFormatter(item) + } + return item + }) + }; + + return data; +}; + +/** + * @method outputHistogramFormatter + * @param {Array} histogram data + * @returns {Array} + */ var outputHistogramFormatter = function(data) { if (utils.isArray(data)) { data.forEach(function(item) { @@ -3920,8 +3964,19 @@ var outputHistogramFormatter = function(data) { }; /** - * Formats the output of a block to its proper values - * + * @method outputDecimalProperties + * @param {Object} data + * @returns {Object} + */ +var outputDecimalProperties = function(data) { + Object.keys(data).forEach(function(k){ + data[k] = utils.toDecimal(data[k]) + }); + + return data; +}; + +/** * @method outputTtfReportFormatter * @param {Object} ttfReport stats data * @returns {Object} @@ -4077,7 +4132,10 @@ module.exports = { outputSyncingFormatter: outputSyncingFormatter, outputEpochStatsFormatter: outputEpochStatsFormatter, outputTtfReportFormatter: outputTtfReportFormatter, - outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter + outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter, + outputDecimalProperties: outputDecimalProperties, + outputStakerFormatter: outputStakerFormatter, + outputStakersFormatter: outputStakersFormatter }; @@ -5870,35 +5928,40 @@ var methods = function () { name: 'getRewardWeights', call: 'sfc_getRewardWeights', params: 1, - inputFormatter: [utils.toHex] + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputDecimalProperties }); var getDowntime = new Method({ name: 'getDowntime', call: 'sfc_getDowntime', params: 1, - inputFormatter: [utils.toHex] + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputDecimalProperties }); var getStaker = new Method({ name: 'getStaker', call: 'sfc_getStaker', params: 2, - inputFormatter: [utils.toHex, utils.toHex] + inputFormatter: [utils.toHex, utils.toHex], + outputFormatter: formatters.outputStakerFormatter }); var getStakerByAddress = new Method({ name: 'getStakerByAddress', call: 'sfc_getStakerByAddress', params: 2, - inputFormatter: [utils.toHex, utils.toHex] + inputFormatter: [utils.toHex, utils.toHex], + outputFormatter: formatters.outputStakerFormatter }); var getStakers = new Method({ name: 'getStakers', call: 'sfc_getStakers', params: 1, - inputFormatter: [utils.toHex] + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputStakersFormatter }); var getDelegatorsOf = new Method({ From 9c8bc9bca90016af4fd5958578dfc41f0c89a36a Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Fri, 20 Mar 2020 20:37:51 +0300 Subject: [PATCH 029/147] Fix error in output formatter --- internal/jsre/deps/web3.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 7ddd82e897d0..f02a8a7b5ee7 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3937,7 +3937,7 @@ var outputStakerFormatter = function(data) { var outputStakersFormatter = function(data) { if (utils.isArray(data)) { data.forEach(function(item) { - if (!isString(item)) { + if (typeof(item) != 'string') { item = outputStakerFormatter(item) } return item From 765377e39b31d347ec14f90c97f3f5654cbb5c83 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Mon, 23 Mar 2020 09:32:21 +0300 Subject: [PATCH 030/147] Add devintegral3 author in web3.js header --- internal/jsre/deps/web3.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index f02a8a7b5ee7..5d7bfed09d31 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5860,7 +5860,8 @@ module.exports = Debug; * @file sfc.js * @author Marek Kotewicz * @author Fabian Vogelsteller - * @date 2015 + * @author devintegral3 + * @date 2020 */ "use strict"; From aadf0d033f3cc47985fd81b23f0613965d0f8dca Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Mon, 23 Mar 2020 14:06:50 +0300 Subject: [PATCH 031/147] Use decimal integer for output staker ID --- internal/jsre/deps/web3.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 5d7bfed09d31..230c407f40e7 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3906,6 +3906,7 @@ var outputEpochStatsFormatter = function(data) { * @returns {Object} */ var outputStakerFormatter = function(data) { + data.id = utils.toDecimal(data.id); data.createdEpoch = utils.toDecimal(data.createdEpoch); data.createdTime = utils.toBigNumber(data.createdTime); data.deactivatedEpoch = utils.toDecimal(data.deactivatedEpoch); @@ -3939,6 +3940,8 @@ var outputStakersFormatter = function(data) { data.forEach(function(item) { if (typeof(item) != 'string') { item = outputStakerFormatter(item) + } else { + item = utils.toDecimal(item) } return item }) From 04771e9d1f591244bb168dea9a2ed1281c86d1d6 Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Mon, 23 Mar 2020 14:19:16 +0300 Subject: [PATCH 032/147] Use decimal integer for output staker ID --- internal/jsre/deps/web3.js | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 230c407f40e7..0bdaf04e94d0 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3996,6 +3996,20 @@ var outputTtfReportFormatter = function(data) { return data; }; +/** + * @method outputKeysToDecimal + * @param {Object} data + * @returns {Object} + */ +var outputKeysToDecimal = function(data) { + var newData = new Object(); + Object.keys(data).forEach(function(k){ + newData[utils.toDecimal(k)] = data[k] + }); + + return newData; +}; + /** * @method outputValidatorTimeDriftsFormatter * @param {Object} validatorTimeDrifts stats data @@ -4010,7 +4024,7 @@ var outputValidatorTimeDriftsFormatter = function(data) { } }); - return data; + return outputKeysToDecimal(data); }; /** @@ -4138,7 +4152,8 @@ module.exports = { outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter, outputDecimalProperties: outputDecimalProperties, outputStakerFormatter: outputStakerFormatter, - outputStakersFormatter: outputStakersFormatter + outputStakersFormatter: outputStakersFormatter, + outputKeysToDecimal: outputKeysToDecimal }; @@ -5827,6 +5842,7 @@ var methods = function () { call: 'debug_validatorVersions', params: 2, inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex] + outputFormatter: formatters.outputKeysToDecimal }); return [ From ccc3b098bbab34947e5c1a2f416b4910c870dbee Mon Sep 17 00:00:00 2001 From: devintegral3 Date: Mon, 23 Mar 2020 17:12:46 +0300 Subject: [PATCH 033/147] Add output formatters for delegators --- internal/jsre/deps/web3.js | 48 +++++++++++++++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 3 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 0bdaf04e94d0..6b01b6bdd294 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3950,6 +3950,44 @@ var outputStakersFormatter = function(data) { return data; }; +/** + * @method outputDelegatorFormatter + * @param {Object} staker data + * @returns {Object} + */ +var outputDelegatorFormatter = function(data) { + data.toStakerID = utils.toDecimal(data.toStakerID); + data.amount = utils.toBigNumber(data.amount); + data.createdEpoch = utils.toDecimal(data.createdEpoch); + data.createdTime = utils.toBigNumber(data.createdTime); + data.deactivatedEpoch = utils.toDecimal(data.deactivatedEpoch); + data.deactivatedTime = utils.toBigNumber(data.deactivatedTime); + + if (data.hasOwnProperty('claimedRewards')) { + data.claimedRewards = utils.toBigNumber(data.claimedRewards); + } + + return data; +}; + +/** + * @method outputDelegatorsFormatter + * @param {Object} delegators data + * @returns {Object} + */ +var outputDelegatorsFormatter = function(data) { + if (utils.isArray(data)) { + data.forEach(function(item) { + if (typeof(item) != 'string') { + item = outputDelegatorFormatter(item) + } + return item + }) + } + + return data; +}; + /** * @method outputHistogramFormatter * @param {Array} histogram data @@ -4153,7 +4191,9 @@ module.exports = { outputDecimalProperties: outputDecimalProperties, outputStakerFormatter: outputStakerFormatter, outputStakersFormatter: outputStakersFormatter, - outputKeysToDecimal: outputKeysToDecimal + outputKeysToDecimal: outputKeysToDecimal, + outputDelegatorFormatter: outputDelegatorFormatter, + outputDelegatorsFormatter: outputDelegatorsFormatter }; @@ -5988,14 +6028,16 @@ var methods = function () { name: 'getDelegatorsOf', call: 'sfc_getDelegatorsOf', params: 2, - inputFormatter: [utils.toHex, utils.toHex] + inputFormatter: [utils.toHex, utils.toHex], + outputFormatter: formatters.outputDelegatorsFormatter }); var getDelegator = new Method({ name: 'getDelegator', call: 'sfc_getDelegator', params: 2, - inputFormatter: [utils.toHex, utils.toHex] + inputFormatter: [utils.toHex, utils.toHex], + outputFormatter: formatters.outputDelegatorFormatter }); var getDelegatorClaimedRewards = new Method({ From bbf657a79423f4d47f837148b952f0605434e8e6 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:34:25 +0300 Subject: [PATCH 034/147] web3js: fix timestampNano formatting for getBlock --- internal/jsre/deps/web3.js | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 6b01b6bdd294..b6cdd3eaf87b 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3866,6 +3866,7 @@ var outputBlockFormatter = function(block) { block.gasUsed = utils.toDecimal(block.gasUsed); block.size = utils.toDecimal(block.size); block.timestamp = utils.toDecimal(block.timestamp); + block.timestampNano = utils.toDecimal(block.timestampNano); if(block.number !== null) block.number = utils.toDecimal(block.number); From 26f375bed618a1db8e9d751684648ce78d0d3420 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:34:59 +0300 Subject: [PATCH 035/147] web3js: fix getStakers(0) formatting --- internal/jsre/deps/web3.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index b6cdd3eaf87b..ba145ab1ed8c 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3938,13 +3938,12 @@ var outputStakerFormatter = function(data) { */ var outputStakersFormatter = function(data) { if (utils.isArray(data)) { - data.forEach(function(item) { + data.forEach(function(item, i) { if (typeof(item) != 'string') { - item = outputStakerFormatter(item) + data[i] = outputStakerFormatter(item) } else { - item = utils.toDecimal(item) + data[i] = utils.toDecimal(item) } - return item }) }; From 93ed034a6e6c3e2b8206f738776877db05140c48 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:36:44 +0300 Subject: [PATCH 036/147] web3js: refactor delegations formatting --- internal/jsre/deps/web3.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index ba145ab1ed8c..6687505dc504 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3977,11 +3977,10 @@ var outputDelegatorFormatter = function(data) { */ var outputDelegatorsFormatter = function(data) { if (utils.isArray(data)) { - data.forEach(function(item) { + data.forEach(function(item, i) { if (typeof(item) != 'string') { - item = outputDelegatorFormatter(item) + data[i] = outputDelegationFormatter(item) } - return item }) } From d14496f5703aee0541393dad521397038a85efe4 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:37:13 +0300 Subject: [PATCH 037/147] web3js: refactor histogram formatting --- internal/jsre/deps/web3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 6687505dc504..96dd4c4360fa 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3994,9 +3994,9 @@ var outputDelegatorsFormatter = function(data) { */ var outputHistogramFormatter = function(data) { if (utils.isArray(data)) { - data.forEach(function(item) { + data.forEach(function(item, i) { item.count = utils.toDecimal(item.count); - return item + data[i] = item }) } From ee49da5ac1d9b373daedd92d73f4c0b42e347098 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:39:47 +0300 Subject: [PATCH 038/147] web3js: add debug.blocksTPS, debug.blocksTransactionTimes, rename ttfReport -> blocksTTF --- internal/jsre/deps/web3.js | 175 +++++++++++++++++++++++++------------ 1 file changed, 118 insertions(+), 57 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 96dd4c4360fa..677c3d5c04f9 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -1192,7 +1192,7 @@ module.exports = SolidityTypeInt; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file param.js * @author Marek Kotewicz * @date 2015 @@ -1211,7 +1211,7 @@ var SolidityParam = function (value, offset) { /** * This method should be used to get length of params's dynamic part - * + * * @method dynamicPartLength * @returns {Number} length of dynamic part (in bytes) */ @@ -1239,7 +1239,7 @@ SolidityParam.prototype.withOffset = function (offset) { * @param {SolidityParam} result of combination */ SolidityParam.prototype.combine = function (param) { - return new SolidityParam(this.value + param.value); + return new SolidityParam(this.value + param.value); }; /** @@ -1271,8 +1271,8 @@ SolidityParam.prototype.offsetAsBytes = function () { */ SolidityParam.prototype.staticPart = function () { if (!this.isDynamic()) { - return this.value; - } + return this.value; + } return this.offsetAsBytes(); }; @@ -1304,7 +1304,7 @@ SolidityParam.prototype.encode = function () { * @returns {String} */ SolidityParam.encodeList = function (params) { - + // updating offsets var totalOffset = params.length * 32; var offsetParams = params.map(function (param) { @@ -1746,13 +1746,13 @@ if (typeof XMLHttpRequest === 'undefined') { /** * Utils - * + * * @module utils */ /** * Utility functions - * + * * @class [utils] config * @constructor */ @@ -1819,7 +1819,7 @@ module.exports = { You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file sha3.js * @author Marek Kotewicz * @date 2015 @@ -2770,7 +2770,7 @@ module.exports = AllSolidityEvents; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file batch.js * @author Marek Kotewicz * @date 2015 @@ -2815,7 +2815,7 @@ Batch.prototype.execute = function () { requests[index].callback(null, (requests[index].format ? requests[index].format(result.result) : result.result)); } }); - }); + }); }; module.exports = Batch; @@ -3002,7 +3002,7 @@ var ContractFactory = function (ftm, abi) { */ this.new = function () { /*jshint maxcomplexity: 7 */ - + var contract = new Contract(this.ftm, this.abi); // parse arguments @@ -3150,7 +3150,7 @@ module.exports = ContractFactory; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file errors.js * @author Marek Kotewicz * @date 2015 @@ -3425,7 +3425,7 @@ var extend = function (web3) { } }; - ex.formatters = formatters; + ex.formatters = formatters; ex.utils = utils; ex.Method = Method; ex.Property = Property; @@ -4017,11 +4017,11 @@ var outputDecimalProperties = function(data) { }; /** - * @method outputTtfReportFormatter - * @param {Object} ttfReport stats data + * @method outputBlocksTTFFormatter + * @param {Object} blocksTTF stats data * @returns {Object} */ -var outputTtfReportFormatter = function(data) { +var outputBlocksTTFFormatter = function(data) { // transform to number data.stats.samples = utils.toDecimal(data.stats.samples); @@ -4047,6 +4047,47 @@ var outputKeysToDecimal = function(data) { return newData; }; +/** + * @method outputKeyValuesToDecimal + * @param {Object} data + * @returns {Object} + */ +var outputKeyValuesToDecimal = function(data) { + var newData = new Object(); + Object.keys(data).forEach(function(k){ + newData[utils.toDecimal(k)] = utils.toDecimal(data[k]) + }); + + return newData; +}; + +/** + * @method outputBlocksTPSFormatter + * @param {Object} data + * @returns {Float} + */ +var outputBlocksTPSFormatter = function(data) { + var minTime = 0; + var maxTime = 0; + var totalCount = 0; + Object.keys(data).forEach(function(k){ + var time = utils.toDecimal(k); + var count = utils.toDecimal(data[k]); + if (minTime == 0 || minTime > time) { + minTime = time; + } + if (maxTime == 0 || maxTime < time) { + maxTime = time + } + totalCount += count; + }); + if (maxTime <= minTime) { + return 0.0; + } + + return totalCount * 1e9 / (maxTime - minTime); +}; + /** * @method outputValidatorTimeDriftsFormatter * @param {Object} validatorTimeDrifts stats data @@ -4185,14 +4226,16 @@ module.exports = { outputPostFormatter: outputPostFormatter, outputSyncingFormatter: outputSyncingFormatter, outputEpochStatsFormatter: outputEpochStatsFormatter, - outputTtfReportFormatter: outputTtfReportFormatter, + outputBlocksTTFFormatter: outputBlocksTTFFormatter, outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter, outputDecimalProperties: outputDecimalProperties, outputStakerFormatter: outputStakerFormatter, outputStakersFormatter: outputStakersFormatter, outputKeysToDecimal: outputKeysToDecimal, - outputDelegatorFormatter: outputDelegatorFormatter, - outputDelegatorsFormatter: outputDelegatorsFormatter + outputKeyValuesToDecimal: outputKeyValuesToDecimal, + outputBlocksTPSFormatter: outputBlocksTPSFormatter, + outputDelegationFormatter: outputDelegationFormatter, + outputDelegationsFormatter: outputDelegationsFormatter }; @@ -4657,7 +4700,7 @@ module.exports = HttpProvider; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file iban.js * @author Marek Kotewicz * @date 2015 @@ -4857,7 +4900,7 @@ Iban.prototype.address = function () { var base36 = this._iban.substr(4); var asBn = new BigNumber(base36, 36); return padLeft(asBn.toString(16), 20); - } + } return ''; }; @@ -4902,7 +4945,7 @@ var IpcProvider = function (path, net) { var _this = this; this.responseCallbacks = {}; this.path = path; - + this.connection = net.connect({path: this.path}); this.connection.on('error', function(e){ @@ -4912,7 +4955,7 @@ var IpcProvider = function (path, net) { this.connection.on('end', function(){ _this._timeout(); - }); + }); // LISTEN FOR CONNECTION RESPONSES @@ -4951,7 +4994,7 @@ Will parse the response and make an array out of it. IpcProvider.prototype._parseResponse = function(data) { var _this = this, returnValues = []; - + // DE-CHUNKER var dechunkedData = data .replace(/\}[\n\r]?\{/g,'}|--|{') // }{ @@ -5055,7 +5098,7 @@ IpcProvider.prototype.send = function (payload) { try { result = JSON.parse(data); } catch(e) { - throw errors.InvalidResponse(data); + throw errors.InvalidResponse(data); } return result; @@ -5230,7 +5273,7 @@ Method.prototype.extractCallback = function (args) { /** * Should be called to check if the number of arguments is correct - * + * * @method validateArgs * @param {Array} arguments * @throws {Error} if it is not @@ -5243,7 +5286,7 @@ Method.prototype.validateArgs = function (args) { /** * Should be called to format input args of method - * + * * @method formatInput * @param {Array} * @return {Array} @@ -5297,7 +5340,7 @@ Method.prototype.attachToObject = function (obj) { obj[name[0]] = obj[name[0]] || {}; obj[name[0]][name[1]] = func; } else { - obj[name[0]] = func; + obj[name[0]] = func; } }; @@ -5360,8 +5403,8 @@ var DB = function (web3) { this._requestManager = web3._requestManager; var self = this; - - methods().forEach(function(method) { + + methods().forEach(function(method) { method.attachToObject(self); method.setRequestManager(web3._requestManager); }); @@ -5860,19 +5903,11 @@ function Debug(web3) { var methods = function () { // Output formaters for 'samples' and 'count'? - var ttfReport = new Method({ - name: 'ttfReport', - call: 'debug_ttfReport', - params: 4, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ] - outputFormatter: formatters.outputTtfReportFormatter - }); - var validatorTimeDrifts = new Method({ name: 'validatorTimeDrifts', call: 'debug_validatorTimeDrifts', params: 3, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex] + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, utils.toHex], outputFormatter: formatters.outputValidatorTimeDriftsFormatter }); @@ -5880,14 +5915,40 @@ var methods = function () { name: 'validatorVersions', call: 'debug_validatorVersions', params: 2, - inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex] + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex], outputFormatter: formatters.outputKeysToDecimal }); + var blocksTransactionTimes = new Method({ + name: 'blocksTransactionTimes', + call: 'debug_blocksTransactionTimes', + params: 2, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex], + outputFormatter: formatters.outputKeyValuesToDecimal + }); + + var blocksTTF = new Method({ + name: 'blocksTTF', + call: 'debug_blocksTTF', + params: 4, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex, null, utils.toHex ], + outputFormatter: formatters.outputBlocksTTFFormatter + }); + + var blocksTPS = new Method({ + name: 'blocksTPS', + call: 'debug_blocksTransactionTimes', + params: 2, + inputFormatter: [formatters.inputBlockNumberFormatter, utils.toHex], + outputFormatter: formatters.outputBlocksTPSFormatter + }); + return [ - ttfReport, validatorTimeDrifts, - validatorVersions + validatorVersions, + blocksTransactionTimes, + blocksTTF, + blocksTPS ]; }; @@ -6117,7 +6178,7 @@ var Net = function (web3) { var self = this; - properties().forEach(function(p) { + properties().forEach(function(p) { p.attachToObject(self); p.setRequestManager(web3._requestManager); }); @@ -6666,7 +6727,7 @@ module.exports = { You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file namereg.js * @author Marek Kotewicz * @date 2015 @@ -6853,7 +6914,7 @@ module.exports = Property; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file requestmanager.js * @author Jeffrey Wilcke * @author Marek Kotewicz @@ -6920,7 +6981,7 @@ RequestManager.prototype.sendAsync = function (data, callback) { if (err) { return callback(err); } - + if (!Jsonrpc.isValidResponse(result)) { return callback(errors.InvalidResponse(result)); } @@ -6953,7 +7014,7 @@ RequestManager.prototype.sendBatch = function (data, callback) { } callback(err, results); - }); + }); }; /** @@ -7057,7 +7118,7 @@ RequestManager.prototype.poll = function () { } var payload = Jsonrpc.toBatchPayload(pollsData); - + // map the request id to they poll id var pollsIdMap = {}; payload.forEach(function(load, index){ @@ -7087,7 +7148,7 @@ RequestManager.prototype.poll = function () { } else return false; }).filter(function (result) { - return !!result; + return !!result; }).filter(function (result) { var valid = Jsonrpc.isValidResponse(result); if (!valid) { @@ -7162,16 +7223,16 @@ var pollSyncing = function(self) { self.callbacks.forEach(function (callback) { if (self.lastSyncState !== sync) { - + // call the callback with true first so the app can stop anything, before receiving the sync data if(!self.lastSyncState && utils.isObject(sync)) callback(null, true); - + // call on the next CPU cycle, so the actions of the sync stop can be processes first setTimeout(function() { callback(null, sync); }, 0); - + self.lastSyncState = sync; } }); @@ -7226,7 +7287,7 @@ module.exports = IsSyncing; You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ -/** +/** * @file transfer.js * @author Marek Kotewicz * @date 2015 @@ -7245,7 +7306,7 @@ var exchangeAbi = require('../contracts/SmartExchange.json'); * @param {Function} callback, callback */ var transfer = function (ftm, from, to, value, callback) { - var iban = new Iban(to); + var iban = new Iban(to); if (!iban.isValid()) { throw new Error('invalid iban address'); } @@ -7253,7 +7314,7 @@ var transfer = function (ftm, from, to, value, callback) { if (iban.isDirect()) { return transferToAddress(ftm, from, iban.address(), value, callback); } - + if (!callback) { var address = ftm.icapNamereg().addr(iban.institution()); return deposit(ftm, from, address, value, iban.client()); @@ -7262,7 +7323,7 @@ var transfer = function (ftm, from, to, value, callback) { ftm.icapNamereg().addr(iban.institution(), function (err, address) { return deposit(ftm, from, address, value, iban.client(), callback); }); - + }; /** From 337fe8a099472340b93a2a2afbe0a4488c87c0b5 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 30 Jul 2020 09:40:42 +0300 Subject: [PATCH 039/147] web3js: rename delegator -> delegation, add sfc.getDelegationsByAddress --- internal/jsre/deps/web3.js | 61 ++++++++++++++++++++++---------------- 1 file changed, 35 insertions(+), 26 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 677c3d5c04f9..b70920f8a144 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -3919,7 +3919,7 @@ var outputStakerFormatter = function(data) { if (data.hasOwnProperty('baseRewardWeight')) { data.baseRewardWeight = utils.toBigNumber(data.baseRewardWeight); data.claimedRewards = utils.toBigNumber(data.claimedRewards); - data.delegatorsClaimedRewards = utils.toBigNumber(data.delegatorsClaimedRewards); + data.delegationsClaimedRewards = utils.toBigNumber(data.delegationsClaimedRewards); data.downtime = utils.toBigNumber(data.downtime); data.missedBlocks = utils.toBigNumber(data.missedBlocks); data.originationScore = utils.toBigNumber(data.originationScore); @@ -3951,11 +3951,11 @@ var outputStakersFormatter = function(data) { }; /** - * @method outputDelegatorFormatter + * @method outputDelegationFormatter * @param {Object} staker data * @returns {Object} */ -var outputDelegatorFormatter = function(data) { +var outputDelegationFormatter = function(data) { data.toStakerID = utils.toDecimal(data.toStakerID); data.amount = utils.toBigNumber(data.amount); data.createdEpoch = utils.toDecimal(data.createdEpoch); @@ -3971,11 +3971,11 @@ var outputDelegatorFormatter = function(data) { }; /** - * @method outputDelegatorsFormatter - * @param {Object} delegators data + * @method outputDelegationsFormatter + * @param {Object} delegations data * @returns {Object} */ -var outputDelegatorsFormatter = function(data) { +var outputDelegationsFormatter = function(data) { if (utils.isArray(data)) { data.forEach(function(item, i) { if (typeof(item) != 'string') { @@ -6084,27 +6084,35 @@ var methods = function () { outputFormatter: formatters.outputStakersFormatter }); - var getDelegatorsOf = new Method({ - name: 'getDelegatorsOf', - call: 'sfc_getDelegatorsOf', + var getDelegationsOf = new Method({ + name: 'getDelegationsOf', + call: 'sfc_getDelegationsOf', params: 2, inputFormatter: [utils.toHex, utils.toHex], - outputFormatter: formatters.outputDelegatorsFormatter + outputFormatter: formatters.outputDelegationsFormatter }); - var getDelegator = new Method({ - name: 'getDelegator', - call: 'sfc_getDelegator', + var getDelegationsByAddress = new Method({ + name: 'getDelegationsByAddress', + call: 'sfc_getDelegationsByAddress', params: 2, inputFormatter: [utils.toHex, utils.toHex], - outputFormatter: formatters.outputDelegatorFormatter + outputFormatter: formatters.outputDelegationsFormatter }); - var getDelegatorClaimedRewards = new Method({ - name: 'getDelegatorClaimedRewards', - call: 'sfc_getDelegatorClaimedRewards', - params: 1, - inputFormatter: [utils.toHex], + var getDelegation = new Method({ + name: 'getDelegation', + call: 'sfc_getDelegation', + params: 3, + inputFormatter: [utils.toHex, utils.toHex, utils.toHex], + outputFormatter: formatters.outputDelegationFormatter + }); + + var getDelegationClaimedRewards = new Method({ + name: 'getDelegationClaimedRewards', + call: 'sfc_getDelegationClaimedRewards', + params: 2, + inputFormatter: [utils.toHex, utils.toHex], outputFormatter: formatters.outputBigNumberFormatter }); @@ -6116,9 +6124,9 @@ var methods = function () { outputFormatter: formatters.outputBigNumberFormatter }); - var getStakerDelegatorsClaimedRewards = new Method({ - name: 'getStakerDelegatorsClaimedRewards', - call: 'sfc_getStakerDelegatorsClaimedRewards', + var getStakerDelegationsClaimedRewards = new Method({ + name: 'getStakerDelegationsClaimedRewards', + call: 'sfc_getStakerDelegationsClaimedRewards', params: 1, inputFormatter: [utils.toHex], outputFormatter: formatters.outputBigNumberFormatter @@ -6133,11 +6141,12 @@ var methods = function () { getStaker, getStakerByAddress, getStakers, - getDelegatorsOf, - getDelegator, - getDelegatorClaimedRewards, + getDelegationsOf, + getDelegationsByAddress, + getDelegation, + getDelegationClaimedRewards, getStakerClaimedRewards, - getStakerDelegatorsClaimedRewards + getStakerDelegationsClaimedRewards ]; }; From dae4daaa2f79e5ff3d8c776fed93c778814620f8 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Tue, 29 Sep 2020 16:50:01 +0700 Subject: [PATCH 040/147] web3js: go generate --- internal/jsre/deps/bindata.go | 110 +++++++++++++--------------------- 1 file changed, 41 insertions(+), 69 deletions(-) diff --git a/internal/jsre/deps/bindata.go b/internal/jsre/deps/bindata.go index 97e167eb68cb..37fca42abe8f 100644 --- a/internal/jsre/deps/bindata.go +++ b/internal/jsre/deps/bindata.go @@ -1,14 +1,12 @@ -// Code generated by go-bindata. DO NOT EDIT. +// Code generated for package deps by go-bindata DO NOT EDIT. (@generated) // sources: -// bignumber.js (17.314kB) -// web3.js (401.802kB) - +// bignumber.js +// web3.js package deps import ( "bytes" "compress/gzip" - "crypto/sha256" "fmt" "io" "io/ioutil" @@ -21,7 +19,7 @@ import ( func bindataRead(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } var buf bytes.Buffer @@ -29,7 +27,7 @@ func bindataRead(data []byte, name string) ([]byte, error) { clErr := gz.Close() if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } if clErr != nil { return nil, err @@ -39,9 +37,8 @@ func bindataRead(data []byte, name string) ([]byte, error) { } type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte + bytes []byte + info os.FileInfo } type bindataFileInfo struct { @@ -51,21 +48,32 @@ type bindataFileInfo struct { modTime time.Time } +// Name return file name func (fi bindataFileInfo) Name() string { return fi.name } + +// Size return file size func (fi bindataFileInfo) Size() int64 { return fi.size } + +// Mode return file mode func (fi bindataFileInfo) Mode() os.FileMode { return fi.mode } + +// Mode return file modify time func (fi bindataFileInfo) ModTime() time.Time { return fi.modTime } + +// IsDir return file whether a directory func (fi bindataFileInfo) IsDir() bool { - return false + return fi.mode&os.ModeDir != 0 } + +// Sys return file is sys mode func (fi bindataFileInfo) Sys() interface{} { return nil } @@ -86,11 +94,11 @@ func bignumberJs() (*asset, error) { } info := bindataFileInfo{name: "bignumber.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x75, 0xfc, 0x15, 0x5e, 0x7d, 0x27, 0x1a, 0x9a, 0xb5, 0xfb, 0x16, 0x90, 0xf4, 0x93, 0xac, 0xcb, 0x6c, 0x9c, 0xcd, 0x68, 0xe6, 0xd0, 0x3a, 0xcf, 0xa3, 0x83, 0x5c, 0x20, 0x34, 0x66, 0x45}} + a := &asset{bytes: bytes, info: info} return a, nil } -var _web3Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x7b\x13\x39\xd2\x38\x0e\xbf\xcf\xa7\x50\xfc\xdc\x0f\xb6\x89\xb1\x73\x60\x18\xc6\x99\x0c\x1b\x02\x33\x64\x6f\x20\x5c\x40\x76\x76\xef\x6c\x96\xab\xed\x96\xed\x1e\xda\xdd\xfe\x75\xb7\x73\x18\x92\xef\xfe\xbf\x54\x3a\x95\x0e\x7d\x70\x12\xe6\xb4\xc9\x0b\x70\x4b\xa5\x53\xa9\x54\x2a\x95\x4a\x55\x19\xfd\x7f\xcb\x28\xa3\x7b\x9d\xc9\x32\x19\x17\x51\x9a\x10\xda\x29\x7a\x49\x2f\xeb\x7e\x51\x29\x79\x27\xed\x2d\xbb\x5f\xa2\x49\x67\x3d\x39\x49\x4f\xf9\xaf\x02\x7e\x9d\x05\x19\x09\xf6\x8a\xcb\x05\x4d\x27\x44\xd6\xb5\xd7\x92\x45\x5b\x0f\x1e\x88\xc4\x5d\x56\x66\xf9\xe0\x41\xd0\xcd\x68\xb1\xcc\x12\x12\x74\xd2\xde\xfa\x66\x97\xa5\x47\x32\x2d\x12\x69\xac\xd6\xc9\x5e\x42\xcf\xc9\xcb\x2c\x4b\xb3\x4e\xeb\x20\x48\x92\xb4\x20\x93\x28\x09\xc9\x3c\x0d\x97\x31\x25\xed\xd6\x46\xba\xd1\x6a\xb7\xba\xbb\xc5\x2c\x4b\xcf\xc9\xa4\x3f\x4e\x43\xba\xd7\x7a\x73\xf4\xe2\xf8\xf5\xcb\x4f\x6f\x8f\x3e\x7e\xfa\xf1\xe8\xf8\xed\x8b\x56\x6f\x72\xcd\xea\x8b\xf7\x58\xdf\xf7\xbe\xd0\x8b\x45\x9a\x15\xf9\xf0\xcb\xf5\xf5\x2e\x1b\xc3\xc9\xe6\x69\x7f\x1c\xc4\x71\x27\xee\x8b\xac\x9e\xec\x7d\x87\xf2\x01\x26\x7b\x00\xb8\x75\x7a\x42\x4f\x77\x45\x57\xf3\x4e\xf2\x2c\x19\xd2\xee\x75\x2f\xee\xe9\x92\xb4\xc7\x71\x77\x2d\xa0\x58\x93\x32\x13\x7a\x11\x35\xc2\xd5\x24\xcd\x3a\x0c\x3a\xdd\xdb\xdc\x4d\xbf\xcf\xfa\x31\x4d\xa6\xc5\x6c\x37\xdd\xd8\xe8\xe6\x9d\x8c\x21\x5e\x75\xe3\xba\xdb\xf9\xb2\x35\x3c\x51\x5d\x16\x55\xf4\x38\x96\x7a\xa2\xed\xee\x97\x35\x9e\x20\x3b\xb3\x77\xb2\x46\xc8\x97\x35\x42\x08\x69\x8d\xd3\x24\x2f\x82\xa4\x68\x0d\x49\x91\x2d\x69\x8f\xa7\x46\xc9\x62\x59\xe4\xad\x21\x39\x81\x6f\x09\x0d\x79\x49\x30\xa7\xad\x21\x69\x7d\x4a\xcf\x13\x9a\xb5\x7a\x3a\x87\x8d\x8e\xe5\x04\x61\x98\xd1\x3c\x6f\x89\x9c\x6b\xf8\xff\x54\x54\x2d\x8b\xc3\xff\x22\x2d\x5d\x16\xf5\xed\xa5\x9f\x50\x11\xa3\xbd\xd1\x65\x41\xf3\x9d\x6d\x7f\x7b\x12\x48\x61\x7a\x8d\x90\xeb\xde\x9d\x20\xe0\x46\xfd\x51\xc3\x41\xd8\x6b\x86\x80\x95\x51\xfd\x47\x1d\xfa\x38\x4d\x0a\x9a\x14\xb7\x1e\xfc\x9f\x72\xde\xd9\x8c\xfd\x61\xa6\x7d\x12\xc4\xf9\x6f\x37\xf4\x8c\xe6\x34\x3b\xf3\xad\xfa\x3f\xfa\xa4\xe5\xcb\xd1\x7b\x3a\x8d\xf2\x22\x0b\xfe\x0b\x26\xaf\x57\x55\x07\x3d\x3f\xba\x15\xdf\x2f\xb2\x20\xc9\x27\x5e\xd6\xf7\x67\xc1\x41\x66\x91\xc2\xea\x48\xc8\x69\xf1\xa1\x9a\xa4\xee\x0c\x17\x76\xd3\xbf\x49\xa3\x5f\x79\x02\x82\x26\x88\xaf\xaa\x60\x91\x45\xf3\x20\xbb\xf4\xf6\x23\x4d\xe3\xda\xc9\xdb\x17\x6d\xfd\x79\x51\x68\xee\xc1\x95\xd5\x94\x21\xe1\xa0\x74\x1b\xff\x23\x21\xc1\xdb\xfb\x30\xca\xd3\xf3\xe4\x16\x3d\x0f\x92\x34\xb9\x9c\xa7\xcb\x7c\x85\xae\x47\x49\x48\x2f\x68\x68\xec\x5d\x77\x36\xb1\xba\x72\xd4\x1d\xb3\xf6\xf3\x28\xb9\x0d\xe3\xde\x5f\x02\x26\x5e\x26\x21\x0d\x5b\x16\x9a\xe8\x19\x23\x84\xbf\x00\x8e\x46\x51\x18\x36\xc3\xd1\xcd\xea\x3f\x0b\xe2\xa5\xb7\xfb\xcb\x28\x29\xb6\xbf\x79\x52\x3d\x05\x6f\xe9\xf9\xf3\xe8\x77\x44\xfe\xad\xd6\xdc\xc1\x2c\x48\xa6\xbf\x27\xe9\xdc\x09\xe5\x94\xd4\x8d\xa4\xfa\x4a\xaa\xf1\x62\xe6\x1d\xdf\x8d\x6a\x11\xb4\x76\xba\xb6\x76\xdd\xfb\x72\x7d\xda\xdb\xfe\xdd\x0e\xfd\x7f\xa1\x33\xef\xef\x24\x3b\x4e\x96\x49\x78\x63\x52\xb9\xf5\xc6\x75\x7f\xec\xfd\x73\x1f\x7b\xef\x0f\x7d\x7f\xe4\x33\x87\x77\xf0\xe2\xbc\xf0\x47\x93\x36\xbf\xee\x66\xae\xf7\xaa\x9d\x3b\xdb\xab\x56\x9d\xf7\x49\x96\xce\x6f\x39\xed\x45\x7a\xcb\xa3\xe6\xed\x04\xbe\xdf\x77\xdd\xfc\x11\xf0\x17\x25\x61\x94\xd1\x71\x71\xe8\xdd\x33\x57\xe8\xc9\xed\x26\x22\x1a\x07\x8b\x8f\xbf\xeb\x64\xf8\x31\xd9\xec\xb4\x4b\x17\x69\x1e\x55\x1d\xd4\x17\xc1\x65\x30\x8a\xa9\x29\x14\xfc\x2e\x5c\xa9\x8c\xe6\xee\xe4\xf8\x75\x3b\x1a\xd8\x97\xe3\x7d\x61\xe2\xf3\xb7\x3f\xc9\xdc\x09\x92\x4a\xea\x6e\x46\x67\xbf\x03\xfa\xff\xb0\x58\xbf\x8b\xf3\xe3\x8d\xf9\xe4\xd7\xc6\xba\xcd\xf4\xee\xd1\xde\x10\xed\xb7\xde\xb8\xbe\xf6\xcc\x1e\x7a\xb6\xb4\x2a\x39\xee\x71\x13\x39\x0e\x8c\x37\xc8\x9e\xb4\x70\xe8\xb4\xfb\x83\x49\x9a\xcd\x83\xa2\xa0\x59\xde\xee\xee\x02\xc0\x87\x34\x8e\xc2\xa8\xb8\xfc\x78\xb9\xa0\x26\x2c\x6b\x9f\x41\xad\x0d\x1e\x3e\x5c\x23\x0f\x0d\x48\xa1\x73\x27\x51\x4e\x02\xb2\xc8\xd2\x94\x01\x93\x62\x16\x14\x24\xa3\x0b\x76\xc8\x4a\x8a\x9c\x88\xb9\x23\x2c\x93\xd5\x70\x58\x90\x79\x50\x8c\x67\x34\x1f\xb2\x4f\x91\x8d\x7e\x9e\x9c\xe2\x8f\xc7\xc6\xd7\xa9\x99\xb9\x63\x7d\x9f\x9e\x3c\x39\x3d\x39\xed\x91\x7e\xbf\xbf\x46\x1e\x0e\x9c\xb1\xc9\x1e\xef\x11\x65\x4d\xd3\xe9\x8a\x29\x2e\x66\x51\xde\xff\x04\x0b\xe3\x47\x89\x20\x06\xd8\xe7\xe8\x3a\x64\x19\x87\x49\xb1\x8b\x80\xf9\xbe\xed\x83\x3e\x82\x1c\xd1\xdc\xee\xda\xf5\xee\xda\x9a\xa7\x1f\xfd\x45\x96\x16\x1c\x6b\x7b\x24\xa1\xe7\x46\x5f\x3b\x5f\xae\xbb\xbb\xd5\xa5\xfa\x20\xbd\x64\xcb\x71\x91\xb2\xc6\x3d\xb0\x75\xed\xf6\xa3\x5c\xcc\xb9\x46\x08\x23\x47\x89\x14\x61\xd7\xb2\xbe\xce\x12\xfb\x30\x6f\x9d\x81\xc0\x76\xe7\xdf\x27\x9d\x93\xcd\x47\xdf\x9d\x3e\xec\xfe\xfb\xb4\xfb\x6c\xd0\xe5\xe3\x34\x0f\x0e\xa5\xdd\xba\xee\x7d\x69\x61\x52\x6c\x0d\xbf\xeb\xb5\x38\xbd\xb5\x86\x5b\x8f\xaf\x4f\x7b\xdf\xfc\xce\xe4\xfd\x3c\x4d\xe3\x1a\xda\x1e\x31\x90\x12\xc2\x66\x79\xf2\x7f\x4e\xa5\xf0\xeb\xb1\xfe\x79\x8a\x92\x77\xf0\x47\x1d\x19\x43\xcf\x6e\x4a\xc3\xac\xf0\x2a\x44\xcc\xe1\x6d\x0a\x66\xa9\x2b\x92\xaf\x59\xa4\x82\x76\x79\x8b\x55\x65\x6f\x42\xb5\xff\x61\xa8\x35\x69\xf6\xe1\xff\x34\x22\x5a\xd1\x9f\x7a\x8a\x7d\xf2\x7b\x53\x2c\xdb\xc3\x14\xc9\x16\x7e\x9a\x2d\x66\x94\xc0\x66\x07\x84\xdb\xf7\x51\x2e\xcb\x55\x3f\x04\x5d\xc2\xcf\xc7\xe8\xf7\x29\xce\xd8\x31\xbe\x4c\xfa\x25\x62\x6b\x55\x3f\x9f\x1a\xf5\x88\xa2\x1e\x2a\x87\x4e\xde\x98\xcc\x59\xe9\x95\xe8\x9c\x17\x70\x08\x9d\x25\xaf\x4a\xe9\x66\x99\x2a\x52\xe7\x8d\x56\x96\xbe\x19\xb1\xb3\x4a\x38\xa9\x7f\xd9\xea\x5d\x77\x6f\x46\xf8\xa2\x77\xf5\x94\xff\x6d\x13\xca\x1f\x3c\x84\x0e\x7f\x9c\x45\x39\x99\x44\x31\x65\x94\xba\x08\xb2\x82\xa4\x13\x72\x4e\x47\x3b\xfd\x5f\xf2\xfe\x1a\x80\x88\x2f\x06\x30\xc9\x28\x25\x79\x3a\x29\xce\x83\x8c\x0e\xc9\x65\xba\x24\xe3\x20\x21\x19\x0d\xa3\xbc\xc8\xa2\xd1\xb2\xa0\x24\x2a\x48\x90\x84\x83\x34\x23\xf3\x34\x8c\x26\x97\x50\x47\x54\x90\x65\x12\xd2\x0c\x08\xbe\xa0\xd9\x3c\x67\xed\xb0\x8f\x9f\xde\x1e\x93\xd7\x34\xcf\x69\x46\x7e\xa2\x09\xcd\x82\x98\xbc\x5b\x8e\xe2\x68\x4c\x5e\x47\x63\x9a\xe4\x94\x04\x39\x59\xb0\x94\x7c\x46\x43\x32\xba\x14\x54\x44\xc9\x8f\xac\x33\x1f\x44\x67\xc8\x8f\xe9\x32\x09\x03\x36\xe6\x1e\xa1\x51\x31\xa3\x19\x39\xa3\x59\xce\x66\x68\x47\xb6\x25\x6a\xec\x91\x34\x83\x5a\x3a\x41\xc1\xc6\x90\x91\x74\xc1\x0a\x76\x49\x90\x5c\x92\x38\x28\x74\x59\x17\x05\x7a\xa4\x21\x89\x12\xa8\x76\x96\xca\x95\x1d\x15\xe4\x3c\x8a\x63\x32\xa2\x64\x99\xd3\xc9\x32\xe6\x82\xe3\x68\x59\x90\x9f\x0f\x3f\xbe\x3a\x3a\xfe\x48\xf6\xdf\xfe\x8b\xfc\xbc\xff\xfe\xfd\xfe\xdb\x8f\xff\xda\x25\xe7\x51\x31\x4b\x97\x05\x61\x12\x25\xd4\x15\xcd\x17\x71\x44\x43\x72\x1e\x64\x59\x90\x14\x97\x24\x9d\x40\x15\x6f\x5e\xbe\x3f\x78\xb5\xff\xf6\xe3\xfe\xf3\xc3\xd7\x87\x1f\xff\x45\xd2\x8c\xfc\x78\xf8\xf1\xed\xcb\x0f\x1f\xc8\x8f\x47\xef\xc9\x3e\x79\xb7\xff\xfe\xe3\xe1\xc1\xf1\xeb\xfd\xf7\xe4\xdd\xf1\xfb\x77\x47\x1f\x5e\xf6\x09\xf9\x40\x59\xc7\x28\xd4\x50\x8f\xe8\x09\xcc\x59\x46\x49\x48\x8b\x20\x8a\xe5\xfc\xff\x2b\x5d\x92\x7c\x96\x2e\xe3\x90\xcc\x82\x33\x4a\x32\x3a\xa6\xd1\x19\x0d\x49\x40\xc6\xe9\xe2\xb2\xf1\x44\x42\x65\x41\x9c\x26\x53\x18\xb6\xa2\x32\x42\x0e\x27\x24\x49\x8b\x1e\xc9\x29\x25\xdf\xcf\x8a\x62\x31\x1c\x0c\xce\xcf\xcf\xfb\xd3\x64\xd9\x4f\xb3\xe9\x20\xe6\x15\xe4\x83\x1f\xfa\x6b\x0f\x07\x92\xd9\xfe\x0d\xc8\x76\x9c\x86\x34\xeb\xff\x02\x2c\xf2\x6f\xc1\xb2\x98\xa5\x19\x79\x13\x64\xf4\x33\xf9\xdf\xb4\xa0\xe7\xd1\xf8\x57\xf2\xfd\x9c\x7d\xff\x8d\x16\xb3\x90\x9e\xf5\xc7\xe9\xfc\x07\x00\x0e\x83\x82\x92\xed\xcd\xad\x6f\x80\xe1\xd5\x6f\x05\x15\x02\x2c\x2a\x23\xe4\x31\xdf\xde\x21\x24\x05\x04\xcc\x76\x41\x1f\xe4\x61\x52\x98\x80\x51\x52\xf8\xe0\x8e\x1d\xc0\x65\x09\xe4\x8b\xcb\x24\x98\x47\x63\xc9\xc6\x51\x89\x90\xe7\x00\x8f\xf2\x95\xfc\x50\x64\x51\x32\x35\xcb\xe4\x90\xe6\x83\x7e\x4f\x03\x6b\x8c\x19\x0d\xbc\x63\x3c\x76\x41\x97\x65\xb0\x9e\x6e\xab\xfe\x02\x70\x94\x8b\x01\x1a\x9c\x39\x47\x55\xf4\x60\x87\x15\x7c\x5a\x5a\x88\xa3\xfc\xbe\xaa\x02\xb6\x11\x0e\x7c\x75\xa5\x4e\x8f\xa4\x04\x7a\x3f\xcb\x82\x4b\x0e\xce\x99\xb8\x25\x0a\x1c\x30\xfa\x44\x12\x80\x58\x49\x9c\x43\x84\xa4\x48\x09\x4d\x18\x0d\x0f\x42\xca\xfe\x53\xad\x30\x66\x1c\x70\x36\xc9\xb8\x92\x90\x6b\xcd\x8d\x99\xd7\x8d\x47\xcc\xc0\x72\x73\x67\x86\x24\xb2\x07\x35\xe4\x46\x17\x81\xf7\xcf\x69\x31\x4b\x43\x4f\xb7\xb8\x72\x3d\xcd\xe6\x84\x4b\x2e\xa9\x31\x23\x6b\x84\xaf\x41\x51\xfc\x93\x98\x19\x91\x45\xfe\x06\xbd\x27\x5f\x38\xf1\x5c\x2b\xb1\xfc\x6f\x1c\xf3\x39\xf9\x82\x2b\xbb\x86\x2c\x78\xab\x90\x93\x2f\xf0\xae\xe1\x9a\x88\xcf\x88\xf1\x06\x2e\x11\x31\x32\x84\xbe\xb0\x9d\x88\xb1\x7b\x40\x88\x81\x0c\xb4\x53\xe3\x2e\x39\x38\x92\x28\x62\xd8\xcc\x4d\xf1\x0e\x61\xad\x3f\x89\xe2\x82\x66\x1d\x54\xb6\x8b\x74\x10\x82\x8a\x0a\x21\x14\x48\x22\x00\x9d\x42\xf7\x64\xf3\x74\x97\xf3\xcf\x68\x42\x3a\xeb\xb8\x11\x5c\x07\x7f\xa0\xc1\x9f\x72\xb4\xa3\xe4\x2c\x88\xa3\x50\xd3\x00\xab\x71\x7d\x48\xda\x64\x83\xe0\xca\xd7\xb0\xac\x81\x6b\x36\x29\xb0\x84\xd2\xc8\x22\x0e\xa2\x84\xd3\x97\x35\x8d\x1c\xe0\x9d\xc8\x29\x9f\x45\x91\x7e\x34\xfa\x85\x8e\x8b\x6b\xab\x42\x39\xc9\xba\x1c\xaf\x36\xb4\xe0\xca\xa7\x0e\x75\xc3\x99\xb9\x1e\x2f\x6f\x09\x5c\x30\x69\xa8\x58\xde\x39\x61\xc0\xa7\x3d\x72\x02\xe0\xa7\xdd\x66\xa8\x89\xa3\x1c\x24\x20\xbe\xf8\xca\xb1\x93\x63\x34\x00\x0b\xe0\xd8\xf1\xa5\x2f\x74\x81\x32\xc4\x38\xcd\x36\xc2\x4d\xee\x2e\x7d\x81\x9d\xbc\x8c\xbe\x73\x49\xe0\x53\x5a\xe0\x15\x98\x0b\xce\x21\x48\x96\x15\x13\x7d\x63\x25\x8c\x1a\xfa\xf3\x60\xd1\x29\xe3\xb1\xa0\x95\xf3\xac\x11\x83\x77\xf2\x9a\x3b\xbc\xa7\x27\x50\xe4\x94\xb3\x67\xf9\xa5\x56\x11\xea\x8f\xd8\xa7\x8e\x26\x93\x9c\x16\x4e\xa7\x32\x1a\x2e\xc7\x14\xf5\x2b\x18\x8f\x7b\xa4\xa6\x73\x80\x9d\x22\x28\xa2\xf1\xbb\x20\x2b\x5e\xc3\x4b\x22\xab\xe6\xbe\x9d\xdf\xf1\xf4\x53\xd6\x95\x31\xa6\x44\xc3\x0f\x6e\x95\x6f\x82\x62\xd6\x9f\xc4\x69\x9a\x75\x3a\x4e\x8b\x1b\x64\x67\xab\x4b\x06\x64\x67\xbb\x4b\x1e\x92\x9d\x6d\x31\x68\x84\xbe\x60\x3c\x26\x1b\xa4\xa3\x36\x1d\x03\xeb\x25\x28\x24\xcf\xd0\xde\x45\xc8\xce\x36\x19\x1a\x09\x25\x9d\x95\xa8\xef\x91\x4d\x8c\xfd\x8c\xe6\xcb\xb8\x90\xd4\xc3\x67\xf0\xcd\x32\x2e\xa2\x9f\xa3\x62\xc6\xe7\x44\x52\xa0\xd1\xb7\x9e\xa2\xa3\x9e\x39\x83\xb2\x72\x31\x42\x5e\xbf\x79\xe2\xf3\x93\xbe\xd5\xaa\x6f\x0d\x34\xec\x01\x5a\x23\x6a\x78\xad\xd6\xae\x5e\x38\x34\x9e\x88\x11\x8b\xce\x8a\x5d\x21\xcd\x5e\x06\xe3\x59\xc7\x66\x4c\x11\xa6\x2d\xc6\xf5\x4b\xe7\x4b\xcf\xd5\x69\x17\x17\xe2\x08\x81\xae\x6c\xb8\xda\xce\x8e\xd9\x7d\xb9\x8e\x10\x11\xaa\xb5\xcb\xa8\x98\xc6\x13\x01\x62\xcf\x11\x74\xc0\xed\x92\xc4\x13\x7c\xd8\x93\x85\x9b\x30\x97\xe2\xc6\x1e\xa1\xe2\x19\x1e\x19\x90\x6d\x0d\x7a\x4d\x68\x9c\x53\x6b\x78\x83\x01\x09\xd3\xa4\x5d\x90\x20\x0c\x89\x28\x55\xa4\x66\x95\x7d\x12\x15\xed\x9c\x04\x71\x46\x83\xf0\x92\x8c\xd3\x65\x52\xd0\xb0\x04\x4b\x5f\x69\x9c\xd7\x7a\x11\x0e\x06\xe4\xe3\xd1\x8b\xa3\x21\x99\x44\xd3\x65\x46\x09\x3b\xb0\x25\x34\x67\x27\x40\x76\x4a\xbb\xcc\x4d\x66\xf5\x5b\x10\xc9\x1f\x67\x92\xcd\xc9\xa0\x18\x81\x12\x2b\x25\xcb\x5c\xa1\x35\xa3\x93\x00\xd4\x31\xe7\xb3\x34\xa6\xbc\x87\x51\x32\x5d\xaf\x61\x04\x15\x3c\xc0\xe6\xfc\x62\xd0\x3d\x92\x3a\x2b\xdf\x58\xe4\x72\x4e\x6a\x45\x7d\xcf\x16\xd7\x71\x55\x63\x88\x80\x78\xc3\xe4\x3c\xd0\x64\x9d\xd3\xc2\x99\x53\x4e\x56\x6f\x83\x39\xb5\xf7\x21\x9d\x83\xe5\x4c\xb7\xac\x67\xf3\xa9\xde\xcf\x74\xc5\x9e\x3a\x15\x5f\x14\x18\xd4\x52\xad\xfc\xab\x18\xb6\xac\x64\x91\xd1\xb3\x28\x5d\xe6\xaa\x43\xdb\xbb\x0c\x25\x51\x42\xa2\xa4\x70\x4a\xd4\xe1\x1f\xf5\xd7\xd7\x20\xfb\x9b\xa4\x19\x81\x47\xc2\x11\xd9\x23\x5b\xbb\x24\x22\xdf\xcb\x01\xc8\xf7\xc2\x24\xda\xd8\x28\x2b\xce\xfe\xac\x3e\x6f\xec\x91\x8d\x8e\xc4\x41\x44\x1e\x91\xad\x53\x26\xe1\x93\xab\x2b\xb2\xb9\x5b\x5a\x49\x05\x2b\x17\xf4\xb0\x41\x22\xf2\xb0\x6c\xe6\x36\xec\x5e\x30\xe1\xa0\x8c\xed\xcb\xbf\x6b\x27\xd5\x4c\xb9\xee\x76\xba\xd6\x14\x0e\x06\x64\x12\x65\x79\x41\x68\x4c\xe7\x34\x29\xd8\xf9\x8a\xa3\xa9\x47\xf2\xcf\xd1\x82\x44\xc5\x2a\x53\x6e\x60\x7f\xd3\x87\x7d\x86\xbf\xca\x19\x80\xa7\xf3\x61\x18\xb1\x46\x82\x58\x2d\x72\x81\x4f\x87\xff\xb8\xf8\xf6\xf3\x45\x4d\x3a\x25\x0c\xe2\x24\x22\x1b\x64\xeb\x54\xf2\x09\xb2\x41\x9c\x6e\x78\xd0\x5e\x8b\x60\x8b\xf9\x79\x20\xc5\x56\xe9\xa1\x7d\x4e\x15\x37\x66\x3d\x7f\x68\xa6\xc2\x84\x2d\x13\x53\xb7\x5c\xfc\x35\x94\x49\xca\x18\xd2\x66\x15\x43\x22\x8d\x68\xba\x96\xa3\x0c\x06\x64\x1c\xc4\xe3\x65\x1c\x14\x54\x0a\x3e\xec\xc8\x27\xfa\x42\xa2\x82\xce\x6f\xc1\x8e\x18\x2b\x3a\xf9\x13\x31\xa5\xae\x0d\x7b\xbd\xd2\xbe\x72\xcb\x09\xf9\xfd\x18\x0c\x66\x2e\x5f\x9d\xb7\x10\x47\x5b\x24\xfa\x51\xa3\x0d\x11\xba\x48\x71\x33\x99\x56\x68\x8c\x38\x64\x63\x8d\x91\x4c\x57\xb7\x9a\x4a\x25\xe2\xd7\x25\x95\xeb\x41\x50\xc3\x1e\xf1\x0f\xea\xf7\xe9\x88\x50\x31\xad\x23\xe2\xd0\x20\xdb\x34\x41\x4b\xa5\x92\xa8\x04\x21\x65\x3a\xa2\x72\x84\x88\x12\x70\xc2\x80\xd6\x34\x62\xaa\x35\x44\x78\x88\xbe\xd3\xb1\x81\x9b\xd5\x15\x44\xb2\x14\xa7\x62\x0c\xcf\x89\x38\xf7\x9e\xc2\xad\xe3\xfe\x1d\x6b\x94\xf8\x90\x3b\x30\x32\xb9\xbe\xb4\x5a\xc4\xd0\x8b\xc8\x1a\xb5\x86\xa9\x4a\xe5\xa0\x47\x55\xab\x67\xc0\x18\xe5\x1c\x88\x95\xb9\xeb\x91\x36\x51\x47\xa9\x93\xa8\x4f\x0e\x16\x5d\x2b\x65\x92\x83\x01\xc9\x97\x73\x7e\x43\xe7\xd9\xa5\x84\x88\xa8\xe0\x45\x75\x27\xd1\x29\xe3\x8a\xea\x0b\xb6\x24\x1f\xff\x91\xcd\x9b\x88\x90\xd2\xa6\x83\x82\xc1\x80\x64\x74\x9e\x9e\xc1\x35\x26\x19\x2f\xb3\x8c\xc9\xa7\x4a\x38\x4d\x21\x59\x74\x33\xca\xa1\xe7\x9e\xde\xe6\xab\x68\xfc\x24\x32\x1b\x6b\xfe\x8c\x91\x91\x47\x4e\xfd\x8d\x29\xed\x83\xb5\x0e\x4b\xae\x75\xbc\xa7\x56\xc9\xe3\x3c\x54\x56\x58\x57\x0e\x92\xac\xd8\x0e\x86\x2f\x49\xcc\xfb\x0b\xde\x5b\xd6\xd6\x58\xdc\x32\x61\x53\x0b\xe8\x7d\x87\xdb\xab\xda\x26\x18\xe2\x5a\xb4\xd3\xed\x79\xb3\x9f\xa7\x69\x5c\x96\xc7\x84\x90\x92\xac\xe3\x8a\x3c\x7c\xb9\x59\xda\x6c\x55\x26\xe7\xc2\x65\xb9\xef\x69\x50\xda\xe3\x63\x9e\xb9\xc6\x08\xc2\xb5\xdf\x00\xd4\x29\x9b\x0d\x69\x38\x3b\x7c\xdc\x6b\xf1\xbb\xdf\xd6\xf0\x1b\xf8\xc9\xfa\xd6\x1a\x3e\x61\xbf\xf1\x75\x6c\x6b\xf8\xb4\xe7\xb3\xf5\x88\x92\xa2\x35\xdc\xda\x64\x3f\x33\x1a\xc4\xad\xe1\xd6\x36\xfb\xcd\x6f\x65\x5b\xc3\xad\x1d\xf6\xb5\xe4\x50\xd0\xc0\x52\x80\x3d\xb9\x3e\xed\x3d\xfd\x2d\xed\xa2\x6a\xae\xa1\x6f\x66\x4d\x84\x2b\x59\xc5\xa8\xc8\x2c\x67\xdb\x16\xe1\xdc\x15\x4d\x8c\xfc\x45\x2b\x2c\x8d\xcc\x9e\x34\xa9\xeb\x16\x76\x47\x25\xc6\x46\x8d\x1a\x45\x57\xe2\xde\xe9\x92\x6c\x27\x5b\xd2\x06\x26\x4c\xd6\xb0\xeb\x2d\x99\xbe\xbb\xb7\x64\xba\xb7\x64\xfa\x6f\xb1\x64\xd2\x0b\xe1\xae\xcc\x99\x9e\x47\xd3\xb7\xcb\xf9\x08\x58\xa1\xe2\xce\xa3\x68\x9a\x40\x62\xff\x17\xc5\xc9\x97\x45\x14\x9b\xf6\x35\xfd\x01\xa4\xf1\x7f\x25\xd8\xd8\x0b\x32\x4e\x93\x49\xe4\x18\x03\xc9\x93\x19\xda\x15\xe0\xec\x02\xdb\x82\x1c\x38\xe7\xd5\x39\x01\x7e\x4f\xe0\xc1\x06\x3b\x67\x31\xbe\xa5\xad\x64\x61\x29\xb0\xb9\x01\xe5\xcc\x43\x86\x63\x0e\x19\xe5\x24\xa1\xd3\xa0\x88\xce\x68\x4f\x72\x22\xb8\x38\x2a\xce\xd3\x76\x4e\xc6\xe9\x7c\x21\xa5\x55\x28\xc5\xe6\x56\x95\x9c\xc4\x69\x50\x44\xc9\x94\x2c\xd2\x28\x29\x7a\xfc\x3a\x94\x91\x7d\x98\x9e\x27\xd6\x99\xce\x54\x93\xb8\xc7\xb7\x2b\x8e\xe5\x2b\x85\xef\x6b\x39\x16\xb6\x94\x12\x4a\x43\x38\x45\x8f\xf4\x1c\x87\x7e\x63\x18\x40\xda\xb5\xb2\xf3\x31\xdb\x35\x18\x30\xd4\x2f\xb9\xb0\x6a\xb7\xcf\xe7\xa2\x33\xee\xbf\xfc\xf8\xea\xd3\xf3\xc3\x9f\xde\x1e\xbf\x79\xfe\xf2\xfd\xa7\xf7\x47\xc7\x6f\x5f\x1c\xbe\xfd\xe9\xd3\x9b\xa3\x17\x2f\xd1\x19\x4e\x69\xe2\x60\x26\xfb\x8b\x20\x7c\x4d\x27\x45\x87\x7f\x15\xe9\xc7\xf3\x34\x3f\x50\x58\x14\x6d\xf6\x8b\x54\x88\x4b\x5b\x4f\xba\x3d\xf2\xe4\xb1\x79\xc3\x83\x77\x4b\x18\x4e\x87\x37\x62\x1a\x60\x98\x13\x2f\x0f\xbf\x25\x38\x7f\xae\xce\xc6\xe6\xa1\x79\x55\x1c\xba\x52\x87\x81\x45\x0f\x42\x8a\xf4\x15\xbd\x90\xe3\xce\x97\xa3\xbc\xc8\x3a\xdb\x08\x7f\xb1\x75\xb5\xcf\x8b\x4b\x2d\xf7\x06\x79\xb2\xd3\x25\x03\x8c\x22\x1b\xdd\xef\xa3\xe9\xac\x10\xc5\x7a\x24\x26\x0f\xbf\x32\x3e\xc5\x0e\x7c\xa7\x68\x2d\x95\xe9\x6e\x8d\x5d\x79\x3c\x33\xd1\xaa\xb4\x73\xbf\xdb\x0c\x58\x6a\x53\xde\x58\xb7\xcf\xd7\xfc\x06\xa9\x9f\xa0\x3a\x4e\xc7\x25\xf9\xf2\x15\xf1\x41\xe6\xdf\x76\xee\x94\x71\x67\xf3\x59\x9b\x64\xe9\xfc\xb8\x98\x3c\xbd\x9f\x38\xcf\xc4\x89\x77\x46\x65\x8c\x4c\xbc\x42\x92\x93\xc6\xbe\x69\x90\xac\xce\xc8\xec\x27\x47\xe5\x73\xd6\xde\xbc\xdd\x5f\x9b\x6c\x88\xea\xc9\x33\x42\xda\x5b\x6d\x32\x24\xed\xcd\xf6\xed\x79\x54\x1d\x26\xd9\x89\x95\x95\xfa\x07\x83\xcb\x09\x13\x8c\xe7\xcb\xb8\x88\xb8\x50\x39\xba\x24\xdb\xff\x99\x33\xf1\x5c\xd9\xd0\x05\xac\xe6\x82\x4e\x69\x56\xb1\x95\xbc\x17\xb5\xd6\xed\xdf\xab\xce\x88\xb0\x65\x2e\x99\x11\x81\x26\x8b\xfa\x18\xd6\x54\x8b\x6a\x73\x8d\xe6\x34\xb7\xb2\xb6\xbb\xfd\x45\x7a\xde\xd9\xda\x7e\xda\xed\x9a\x28\x3d\x98\xd1\xf1\x67\x12\x4d\x0c\x9c\x22\xb1\xc8\x42\x44\x1e\x4d\x13\x1a\x1e\xe6\x6f\x75\xb6\xa3\x88\x56\x75\xcc\xe8\x85\xe8\xb1\x89\x0c\x49\xb4\x70\xe8\x83\xb6\x0b\x53\x12\x4b\xd9\x91\xe5\x3c\x62\x62\x78\x10\xe7\xda\x6a\xd9\x6e\xbd\x16\x5f\x3e\x0c\x49\x76\xb3\xd9\x23\x5b\xdd\x1e\xd9\x7a\x82\xe4\x91\xed\xae\x91\xdb\x25\x7b\x7b\x7b\x8c\x64\xbd\x54\x98\x31\xf6\xf1\x28\x88\xa1\x53\x84\xab\x0e\xf4\x85\x07\x17\x35\x5d\x22\xe2\x8a\x04\x5b\x08\x34\xc8\xc3\xb1\x83\x65\x38\xd3\x82\x61\x45\xbb\x4a\x38\x84\x65\x11\x4d\x09\x97\xd3\x2d\x7a\x53\x5d\x30\xf0\x67\x18\xc5\x32\x60\x3e\x8f\x7b\xbc\x37\x48\x97\xd9\xe9\x92\xab\x2b\xd2\xda\x6c\x09\x1d\xf1\x60\x40\xc6\x8a\x8a\x98\xf0\x2c\x27\x52\xb5\xce\x81\x60\x96\x95\x98\xed\x4a\xd8\xf2\xf2\xd6\x9a\x64\x31\xb1\x1e\xfd\xa3\x67\x72\xf9\x7c\xce\xa3\x64\x69\x2f\x81\xf6\xe4\x96\x7f\x6d\xa8\x5b\x56\xbe\xa5\xee\xc6\x1a\x74\xe8\x06\xe4\xb3\xac\xa6\x9f\xe3\x4a\x02\xf2\x91\x0e\x5d\x89\x76\x44\xf3\x2e\xd5\x1c\xdf\x05\xd9\x7c\x1d\x94\x09\x7e\x5f\x86\x32\x87\x71\xd7\xa2\x0c\x30\x86\xe4\x61\x13\x45\xa2\x39\x17\x45\x0e\x27\xf7\x99\x9b\x5b\x2b\x51\xc0\xf4\xc3\xe8\x2c\x0a\x69\xf8\xfc\xb2\x82\x81\xdf\x84\x9a\x6a\x70\x73\x7c\xd7\xc8\x59\x96\x62\xe7\x78\x65\xf4\x1c\xdf\x06\x3f\xee\x15\x2c\xaf\x5a\xa1\xa8\x4c\xdc\xd2\xaf\xa5\x1b\xe3\x45\x6e\x6b\xe6\x5c\x94\xe2\x48\x34\xed\xa2\xc8\x11\xce\x7c\x18\xf2\x2c\x2f\xd8\xac\x6e\x29\xad\x6d\xb5\xc9\x33\xbe\x2f\x0b\xb7\x18\xab\x61\xb3\xf4\xd8\x88\x1e\xe5\x56\x6c\x7c\x31\x9d\x68\xc4\x31\xf1\xa1\xe2\x60\xe3\xc8\x1d\x49\x30\xa7\xfc\x75\x0f\xfb\x65\xc9\x5f\x02\x86\xd5\xa9\x6a\xf0\x60\xde\x39\x81\x42\x1b\x3d\x82\x35\xe5\xac\x90\x78\x5f\x4d\xf6\x48\xd9\x33\xdd\x87\xdd\x01\x3a\xcf\xe4\xd1\xaf\x82\x27\xe6\x70\x45\x25\xca\x9f\x6c\x9d\x9a\x72\x70\x7b\xf3\x82\xc9\xcb\xee\xe4\xf6\xf3\x38\x1a\x53\x26\x96\x6c\x93\x87\x50\xdd\x8a\x74\x5e\x33\x33\xf8\x08\x7e\x67\x13\xb4\x2a\xfa\x4b\xf5\x00\xce\x26\xa3\xce\x87\x16\x1f\xe0\x88\x13\x37\x60\x36\xe6\x9e\x3c\xee\x8a\x3d\xbc\x48\x05\x7c\x97\x3c\x94\x47\x4a\xdf\x0c\x58\x15\x71\xd1\xf0\xc9\xe3\x9e\x68\x7f\xb5\x29\xa8\x38\x92\xf3\xe1\x7b\xce\xe4\x77\x8a\xfd\x20\x1f\x47\x51\x15\xfe\x3d\x67\xf9\xdf\x10\xf3\x52\xa5\x03\xaa\x81\x66\xf8\x5f\x6d\x02\xb4\x6f\x9a\xb2\x19\xd8\xd7\xde\x6b\x4a\xa6\xa0\x94\xb7\x97\xa0\x5c\x55\xe8\x62\xdb\xe7\xbd\x66\x05\x69\xca\xc0\x5d\x6b\xf3\xa2\x45\x36\x88\x38\xe0\x00\xda\xf9\x6f\x65\x53\xf0\x78\xb3\x47\x70\x52\x99\xc3\x80\x2f\xd2\xee\x03\x1d\x34\x87\xd6\x77\xcf\x86\x81\x15\x3b\x74\x52\x1c\x38\xbc\xc0\x87\x65\x19\x4e\x29\x8e\xcc\xa1\x9b\xe4\xf6\x23\x4d\xe3\xa1\x9d\xe0\x40\x31\x09\x64\x68\x27\x60\x28\x25\x96\x0d\xed\x04\x17\xea\xd8\x01\x3b\xf6\xc2\xe1\x46\x75\x8a\xa7\x3e\x17\xf0\xd8\x0f\x89\x07\xab\x53\x3c\x70\x18\xdb\x28\xc9\x85\xf4\x4d\x8f\x9b\xe3\x96\x33\x27\x08\xa7\xb9\xb0\x82\xea\x87\xde\x75\x77\x2d\xef\x74\xcd\x9b\xa1\xd6\x70\xeb\x69\xaf\x65\xde\x28\xb5\x86\xdb\x60\xbe\x00\x0b\xa3\x35\xdc\xda\xea\xb5\xf0\xbd\x54\x6b\x68\x7e\x5e\x9f\xf6\xb6\x36\x7f\x67\x7f\x2e\x87\xdc\x30\xbe\xc2\x01\x51\x94\x14\x65\xfe\x87\xc4\xd5\x55\x94\x14\xdc\x35\x0b\xfb\xf1\x58\xfd\x3a\xd5\x89\x3b\xe8\xb7\xe5\xb9\x25\x4a\x0a\xee\xb7\x25\x4a\x8a\x27\x8f\x15\xd8\x53\x5d\xd1\xf6\x37\x4f\x4a\xea\x62\xf0\x35\x7e\x8c\xec\xa3\xe1\x57\x74\xc5\x05\xe0\xb6\x0d\xc2\x61\x52\xac\x68\x76\x61\x94\xa8\xb0\xb6\x80\xe6\x2a\x4a\xde\xc8\xb6\x22\x4a\x0a\x29\x2a\x3e\xbb\x91\x3f\x17\xde\xab\x7a\x1b\x88\xad\x46\x21\xec\xee\x8d\x20\xee\x8d\x20\xfe\xbc\x46\x10\x44\x5b\x41\x70\x51\xe9\x8e\x0c\x20\x1a\xd8\x35\xd8\xac\x9e\xdb\x2d\xa4\x60\x8d\xae\xdd\x76\xf4\x3d\x12\xea\xf9\x8c\x26\xea\xb1\x62\x8f\x1b\x7e\x33\x01\x5c\x79\x6f\x90\x92\xe5\xc0\x6b\x18\x61\xe9\xbe\xed\xb7\x89\xc0\x49\xa5\xfc\xc8\xff\xbf\xba\x22\xed\x36\xe2\xb3\xa9\x7c\xb6\xc0\x7f\xec\xa2\x77\x86\x51\x22\x5a\x6f\xec\xee\x63\x4a\x0b\x6c\xef\x0b\xd6\xe3\xed\x5c\xbe\x02\x05\x5e\xc2\x2a\x31\x4c\xdd\xb5\x7c\xcf\x2d\x5d\x4d\x29\x5a\xaa\x99\x74\xad\xb8\x32\xd2\x91\x7d\xec\x1a\xd6\xec\x80\x1e\x6c\xcd\x6e\x37\x52\x69\x87\x06\x26\xfe\xc6\xb1\x03\xdf\x3d\x36\x46\xc6\x38\xa3\x8c\x98\xe4\x7a\x30\x7d\xb2\x70\x72\x0f\xa3\xc9\x84\x82\x35\x32\x47\xb9\x75\x2e\x39\x57\x8f\x42\xf0\x71\x44\xa2\x44\xcc\x92\x34\x5c\x4e\xbc\x87\x10\xf3\xe8\xc2\xb6\x43\x5f\x3f\x82\x05\xe7\x30\xaa\x17\xe5\xa8\x3c\xf7\x3f\x98\x35\xe9\xae\xf4\x4a\x4f\x13\xa4\x22\xd5\x55\x30\x9a\xce\x47\x51\xe2\xba\xb7\x29\xd2\x29\x65\xdc\x9d\xd5\x40\xa7\x7d\xbe\xa8\x82\xc5\x82\x26\xb0\x96\x82\x84\x3f\x80\xb0\xb0\x2b\x6a\xab\xbb\x84\x11\x8c\x69\x16\x8d\x19\x7b\x92\xbd\xaa\x2f\x2c\x6e\x4f\xd3\x89\x80\x85\x7d\xa8\x12\xb5\x72\x78\x75\x7a\xbf\x2a\xb4\x2a\xbd\x05\xbf\x32\xd9\x25\xf5\xd8\x1d\x07\x71\x2c\xf0\x2b\xef\x70\xf8\x88\x66\x81\x5e\xba\x79\xf4\xab\xf0\x2c\x08\x77\x75\xb3\x20\xef\xb1\xff\x25\xa1\x81\xef\x5f\xcf\xa5\x1d\xc6\xb7\x32\x04\xf5\xeb\x4c\x2b\x51\xe3\x77\xcd\xe4\x5b\xb8\x62\x55\xac\xef\xed\x81\x74\x31\x89\x12\xeb\xa1\x52\x1d\x12\xb4\xcb\x22\x51\x95\xb8\x5e\xb6\x95\x06\x3c\x77\x3f\x7f\x5e\x7e\xf4\xe7\x1a\x5f\x57\x43\xd3\x60\x99\x19\xb5\x57\x0d\x7a\x1d\x46\xad\xdf\xff\x77\xc9\x33\xd2\x6e\x93\x61\x33\x6b\x2c\x84\x32\xaf\x4d\xd6\x0a\x78\x63\xbc\x9f\x2b\x27\x94\xcc\xe8\x7b\xeb\xa5\xf5\x17\x7e\x9c\xc9\xbd\x47\x5e\x09\x07\x98\xe1\x07\x73\x4c\x64\x40\xe2\x95\x58\xd4\x8d\x79\x51\x08\x4e\x95\x6c\xfc\xf9\x9c\x33\xa9\xe5\xb5\x4b\xf8\x95\x1f\x29\xa1\x3b\x31\x61\x9d\xd5\x51\x67\x6c\x6b\x25\xb8\x43\x9b\x92\x1f\x79\x32\x21\x90\x37\xf0\x0d\xb0\x48\xe7\x8b\xe2\x12\xab\x04\x1b\x6c\xa2\xb5\xab\xd0\xa4\x47\xc4\x9e\x86\x20\x7d\xac\x80\x1b\xe9\x6e\xaa\xd4\xd1\x94\x17\x13\x95\x03\x11\x55\xd6\x8d\xc1\xb8\x58\xd9\xf0\x88\x05\x37\x19\x87\x7e\x89\x57\xee\x1c\xea\x75\x94\x17\xce\xb3\xbf\x13\x63\x34\xa7\x1e\x8f\x50\x95\xa3\xd7\x35\xbb\xdb\x8b\x7a\x14\x24\xaf\xe9\x97\x8b\x90\x9b\xb5\x8a\x47\x70\x4a\x15\x59\xa4\x05\x7a\xe8\xca\x0b\x4b\xe1\x88\x3b\x1d\x22\xc6\xc3\x3e\xf5\x7e\x50\x80\x9a\x6f\x8a\x8c\xbd\x4d\xad\x47\xbe\x7d\x95\x2c\x48\xfb\xf6\xcb\xf6\x14\x62\x36\x4f\xf6\x70\x8f\x35\x2c\x1e\xc6\xc6\x9e\xab\xe8\x17\x4f\xb5\xdc\xe7\x59\x1c\x52\x8b\x40\x9d\x14\x3f\xb9\x55\x4f\xe6\x06\x03\x39\xdd\xf4\x8c\x66\x97\xc5\x0c\x1c\x91\xa0\x7a\x30\x76\x5c\xaf\x53\xd2\x1c\xcd\xc1\x8f\xf1\x4c\xd7\x7f\x43\xa1\x1c\x2f\xdd\x69\x13\xae\xd2\xf9\xba\x47\xda\x6d\xa9\x7c\xaf\x50\x52\xbc\xe3\xb3\x64\xe9\xf4\x94\xfa\xee\xfa\xb4\xb7\xd5\x28\xd0\xde\x57\xd4\xc9\xc1\x6d\x74\xb5\x52\x2e\x63\x20\x25\x5a\x39\x69\x63\xc6\xfe\xe7\xaa\x32\xf8\xf5\x58\xff\x3c\x45\xc9\x3b\xf8\xc3\xd2\xcd\xb1\x34\xae\x9c\x63\xbf\xa4\x76\x8e\xfd\x7e\x8a\xaa\x43\xfa\x39\xa7\xc6\x06\x1a\x3a\xe7\xee\x7d\x15\x15\x1d\x2b\xbc\x8a\x8e\x8e\xc3\xdb\x4a\x3a\x96\xba\xa2\x96\xce\x2c\x52\xa1\xa6\xe3\x2d\x56\x95\xbd\x89\xa2\x8e\xe1\xb6\x44\x51\xd7\xcc\x4b\xbe\xe8\x56\x03\x45\x5d\xa3\x50\x5e\x5f\xeb\x65\x9d\xe7\xf6\x6f\x15\xf2\xe0\xc5\x57\x21\x10\x59\xc2\x26\x11\x9e\xbe\x22\x91\xd8\x85\x2a\xc8\x44\xb6\x5b\x5d\xfe\x46\x3a\x5d\x2e\x49\x35\x79\x30\xe7\x69\xef\x6e\x9f\xca\xa9\x51\x36\xa0\xbb\xbb\x0f\x3d\x52\xf9\x78\xc7\xc3\x87\x91\x7f\xdb\x28\x6f\xee\xd8\x76\x4c\xb3\x22\x88\x12\xbf\x73\x5b\x07\x91\xfc\x36\xa9\x86\xa8\x39\x50\xdf\x4c\xaf\x26\x6b\x51\xc4\xca\xa8\x75\x05\x51\xd0\x6c\xce\x8e\xfc\xd1\x04\x6a\x36\xfb\x1d\x0a\x97\xb5\x64\x1a\x9d\xd1\x44\x9a\xb4\x98\x47\xea\x32\x5f\xb9\x96\xfd\x0b\x3f\x66\x6b\x73\x5b\xc0\x32\xaf\xdc\x69\xd7\x6f\x7c\x8b\x21\x9a\x2f\x11\xee\x99\xb6\x55\x78\x85\xe3\xf4\x8c\x66\xd9\x79\x16\x15\x05\x05\x73\x2f\xde\xab\x16\xd9\x80\xde\x37\xc6\xdd\x39\x68\xd9\x73\xfc\x8a\x1f\xac\x20\xf4\x51\x34\x4a\x04\x0a\x0b\xd7\xe9\xb0\xfd\xd0\xbe\x11\x32\x5d\xad\xa4\xd5\x9c\xd6\xda\x96\xe0\xcd\xe3\x3f\xc0\x8f\xc1\xc1\x00\x54\xe1\xc1\x9c\xad\x0a\x70\x79\x28\xb4\x59\x6c\xbc\x8c\x13\x50\x7e\xc7\x10\x47\x9f\x29\x09\x48\x1e\x25\xd3\x98\x2a\x27\x5c\x00\xd9\x37\xec\xa1\x81\x82\xb9\x8f\x19\xee\x93\x83\xb7\x76\x75\x45\x4e\xda\x27\x5b\xa7\xed\xd3\xae\x12\x06\x6b\x7c\x00\x88\xee\x99\x78\x67\x5f\xd8\xaf\x61\x89\xe8\xce\x6d\xa0\x38\x2a\xc0\x56\x61\xab\x47\x1e\x81\x31\xf6\x26\xf4\x65\x0b\x7b\xa1\xd1\x1d\x72\x04\x59\xe9\xa5\xa1\x27\xfd\x3a\x94\x9d\x16\xa4\x37\x87\x87\x12\x50\x37\x30\x18\x90\x20\x8e\xc9\x28\xc8\xa3\x31\x77\x7e\x00\x2f\x05\x76\xb6\x85\x02\x27\x4e\xd9\xc9\x58\xf6\xa6\x47\x76\xb6\xeb\x8c\x4e\xcc\x85\x2d\x38\x9a\x3c\x81\x4b\x5d\x24\xa1\x53\x10\x20\x21\x22\xd4\xc9\x69\x8b\xec\xfd\x00\xeb\x53\xa7\x3d\xe6\x89\x95\xca\xb4\x7d\x59\xdb\xaa\x1c\x60\x46\x4b\x7b\x56\xb1\xda\x71\xab\xa5\x34\xab\x7d\x7e\x19\xde\x60\x1c\xa2\xdb\xb5\xb6\x51\x54\xe4\xc1\x03\x82\xbf\x4f\xd0\x6f\xe4\xff\xed\x54\xee\xba\x2a\x2c\xc6\x60\x7a\xa3\xb9\x11\xcb\xb7\x6a\x6a\xe4\x2c\x98\x73\x23\x26\xcc\x9c\x1a\xe4\x6e\xed\x96\x33\x63\xf5\xab\x62\x62\x50\x9b\x5f\x7b\x5e\xee\x72\x62\x4c\xbf\x27\x9a\x91\xa2\x99\x80\xb3\x51\x0b\x6c\x11\xb6\x39\xd2\xf9\x21\xa9\x25\x8c\x15\xb6\xc4\x54\x6c\x3d\x56\x80\xdb\xa7\x27\x3b\x02\x54\xa6\x71\x10\x05\xb1\x75\x6a\x25\xe8\x6f\x77\x77\x00\xac\xde\x60\x7b\xc0\x63\x11\x43\xac\xdf\x13\x50\x63\x77\x34\x91\xd1\x84\x74\x50\x16\xe2\x90\x36\x3f\xbe\xe1\xc4\x02\xc3\xf6\xbd\x86\xd8\xaa\x98\x72\xb1\x49\xc8\x53\xb5\x6f\x9e\x61\xde\x7c\x53\xdd\x52\xc1\xf7\x9c\x09\x17\x9f\x2d\x63\xde\x8d\x8a\x4e\xcc\xca\xf1\x74\x6b\xd7\x6b\x8d\xe6\x59\x65\xf0\xa1\x88\xfc\xd2\xf9\x35\x5c\x28\x96\xee\xf6\xc2\x55\x51\x1c\xe4\x05\x39\x39\x65\xc2\x04\xaf\xf7\x46\xd3\xbe\xee\x9f\x77\x35\x07\x20\x67\x11\xc7\xc1\x12\x1c\x68\xf4\x33\x28\xf8\x54\x34\xd0\x84\x48\x2a\x8c\x63\xd1\x11\x46\x71\x60\xfb\xa6\x89\x8c\x2e\x49\x48\x27\xc1\x32\x06\x45\x68\xbe\x64\x72\xaa\xda\x98\x5b\xc2\x47\x4d\x4f\xc4\x78\xb4\x67\xd1\x38\x46\xdd\x80\x01\xeb\x1d\x71\x45\x51\xb8\xe1\xe9\xad\xd4\xa8\x5e\x3a\x6a\x97\x3a\x62\xb4\x44\x72\x7b\x8d\x00\xc5\x0b\x52\x3e\x69\x31\x8a\xef\x91\x16\x5b\x04\xec\xbf\xd3\xd6\xa9\xa6\x76\x01\x81\xd2\xa0\x50\xb2\x8c\xed\x67\x0f\x68\x36\x1b\xa1\xcd\xf6\x2e\x67\xf5\xb7\x66\x21\xb8\x1e\xaa\x9c\x95\xc0\xf7\x06\xe1\x29\x8f\xcf\x7a\x0e\x37\xbc\x6c\x38\xc6\x78\xd9\xbf\xb0\xea\x2d\x22\x16\xdc\xaa\xf3\xef\x13\x7e\x1a\xff\xf7\x69\xb7\x5e\x44\x10\xca\x5b\xe5\xea\xa1\xfc\xde\xc1\x8a\x61\x21\xa1\x9b\xb3\x0e\xf9\xf0\xd4\xbd\xcb\xb2\x70\xe6\xb9\xb4\x10\xf7\xe8\xf6\xc6\xe0\x75\x46\x6d\xde\xca\x08\x3f\xa8\xd2\x03\xaa\xcd\x16\x6a\x5c\xc1\x2a\xfb\x6f\x6c\x4c\xbc\x4b\x4a\xff\xfc\x5e\x51\x5d\xa7\xb2\x34\x9e\x60\x67\xb2\x82\x95\x39\x85\xd4\xb3\xe4\x93\x53\x9f\x07\xf1\xfe\x62\x99\xcf\x3a\x8e\x5b\x52\xf9\x4c\x5b\xfa\x18\x75\x6b\x66\x63\x71\x1d\xae\x9f\xf9\xbc\x7f\xe2\x96\x90\x13\xcf\xce\x59\x8f\x60\xe7\xb2\x96\x6f\xd2\x5b\x79\xf4\x15\x13\x88\x3d\xf9\xde\x7a\xfe\xa0\xeb\x8e\xd4\x21\x10\xff\xdb\xcf\x9f\xcf\x1d\x6b\x8d\x1b\xd6\xd2\x89\x60\xb3\x09\x7e\x52\x2b\xe6\x63\xe5\xd9\x58\x73\xee\x08\x2d\xdd\x91\xb1\x24\x91\x3b\xdb\x26\x0e\x41\xf9\xfd\xe8\x24\x4b\xe7\x5e\x73\x03\x0e\xe5\xe3\x2d\x23\xfb\xc1\x8e\x65\x20\x64\x58\x06\xad\xf0\x60\x4a\x32\x35\xde\x72\x03\x16\x25\x06\x82\x59\x94\xe1\x4c\xb3\x86\x55\x7d\x15\x5e\x05\x7b\x13\xbe\xb1\xe4\x82\xae\x78\xe2\x03\xdd\x93\x82\x8e\x40\xd7\x43\xb2\x0d\xc6\x0f\x5d\xe9\xce\x59\x20\xaf\x6c\x11\x55\xd6\x89\x9b\x77\x2a\xf6\xad\x28\x28\xf0\xa1\xe0\x77\xec\xb8\xf4\x06\xd9\xe1\x1e\xef\xf9\x6e\x9b\x33\x90\x9c\x04\x93\x82\x66\x6a\x91\xe0\xfe\xde\x68\xad\xfa\xcb\xf8\x1c\x77\x6b\xce\x51\xe2\xb0\x9b\x54\x62\x4f\xc4\x8d\x79\x5b\x56\x3f\x76\xea\x51\xea\x43\xda\x0e\x78\x53\xc9\x68\x1a\x72\x1a\xf2\xb0\xba\x6f\x0c\x76\x63\xaf\x1a\xa6\x11\xa3\x32\xbd\xcd\xa2\x69\xdf\x20\xd1\xdd\x72\xad\x3f\xc4\x1e\x82\xff\x1a\x52\xbf\x34\x48\x6d\xf8\xf7\x87\x22\xfe\x7b\xda\x47\x7f\xbf\x0b\xed\x13\x2f\xe9\xe3\xe8\x8c\x37\x25\x7d\x3b\x86\xd8\x8a\x9b\x8a\x43\xac\x76\xfd\xcd\x76\x16\xb3\x17\xab\xd4\x2f\xe6\xcf\x4b\x6f\xb1\x43\x5f\xfe\xf5\x57\xbe\x84\x17\xe2\xd6\xcf\x35\x52\xad\xeb\x7e\x87\x6c\x91\x0d\xb3\x77\x5d\xee\x90\x89\x87\x11\xf3\x4c\x3d\x77\x3f\x6c\x5d\xba\x19\x0f\xb6\x2b\x9c\xd9\x1b\xb8\xb6\x2c\xbe\x0c\x2e\xb6\xb6\xe2\xd8\xf0\x9c\xab\x95\xb5\xdd\x35\xd5\xaa\xde\x8b\x44\xab\xeb\xb5\x17\xbc\xe5\x57\xbb\xea\x4d\xdc\xf5\x69\x6f\xeb\xf7\x8e\xbb\x7f\x5c\xff\xec\x6d\x59\xf1\xee\x4d\x78\x22\x81\xff\xb9\xad\xcb\x52\x3f\x7d\x5b\xa2\xb7\x6f\x4b\xfc\x60\x6d\xe9\x79\xfd\xb6\x54\xcf\xdf\x96\xe8\xfd\xdb\x12\x3d\x80\x5b\x9a\x2f\xe0\x9c\x1a\x1b\x58\xd8\x38\xfe\x51\xbe\xe2\x23\xb8\x63\xef\x2b\xb8\xe3\xd5\x9f\xc1\x1d\x37\x7d\x07\x77\xec\x3e\x84\x3b\xbe\x83\x97\x70\xcb\x5b\x3f\x85\x3b\x6e\xfc\x16\xee\xf7\x0e\xea\x7f\xdc\xc0\xe2\x6c\x59\x65\x72\x26\x5d\xab\xf0\x1f\x82\x38\x91\xd5\xd9\x12\x9b\x9d\x2d\x0d\x2b\xb1\xa5\xcf\xf0\x6c\xa9\x2d\xcf\x96\xd8\xf4\x6c\x89\x6d\xcf\x96\x96\xf1\x99\xa7\xde\x26\x8b\xe3\x37\xb5\x3f\x3b\xf6\x1b\xa0\x1d\xdf\xc0\x02\xed\xb8\xb1\x09\xda\xb1\xc7\x06\xcd\x2e\x7d\xb3\x35\x52\x61\x86\xd6\x74\x91\x34\x37\x44\xfb\xb6\xc9\x2a\x69\x2f\x73\x0a\x8a\xd9\x71\xd1\xe6\xd1\xf8\xa6\x29\xa1\xc9\x19\x09\x53\x0a\xd6\x0a\xf0\x3a\x30\x48\x42\x70\x60\x4b\xfe\xf9\xe6\xf5\xab\xa2\x58\xbc\xa7\xff\x6f\x49\xf3\x62\x0d\x04\xb3\xcb\x05\x4d\x27\x56\x0e\xf7\x63\xa3\xde\x6f\xb4\x25\x5e\x44\xc3\x7d\x1b\x9a\x7c\xb9\xde\x5d\x33\x22\x45\x96\x42\x9a\x09\x20\xa9\xff\x92\xcf\xd8\xee\x13\x4d\x93\x34\xa3\xc3\x38\x4a\xe8\xda\x35\xb7\x58\x65\x78\x68\xe4\xea\xfe\xfe\xe5\xec\xfd\xcb\xd9\x3f\xf1\xcb\x59\xfe\x6a\x56\xd8\xb0\x19\xcf\x66\xf9\x86\x43\x6e\xf6\x7a\x56\xec\x7d\xc7\x45\x14\x43\x9d\x5c\x9f\x09\x6b\x87\x3f\x4f\x72\xc0\xa2\xe2\x52\xb1\x44\x5d\x64\x1c\x07\x79\x4e\x4e\xa0\xc8\xa9\xe8\x26\xcf\xd0\x4c\x98\x57\xb5\x36\x80\x7b\x23\x58\xa5\x42\xb9\xca\x38\x08\xa9\xf0\x64\xdd\xdc\xc9\x39\x40\xb2\x9a\x8e\xdf\x1e\x7e\xfc\xc0\xce\xd6\x30\x09\xed\x73\x1a\xb5\x39\x69\xb6\x3f\xa3\xdf\x6f\xd0\xef\x9f\xd0\xef\xfc\xd7\x60\x94\xca\x8f\x49\x94\x24\xf4\x52\x7d\xd1\x79\x91\xc2\x53\x46\x99\xb2\x88\xc6\x66\x42\x12\x24\x66\xc2\x3c\x1a\x67\x76\x4a\x1c\x47\x4e\x21\x03\xde\x00\x95\x1f\x46\x91\x69\x16\x24\xa1\x1a\x8a\x91\xf5\x93\xf1\xf5\xd1\xf8\x7a\x67\x7c\xbd\x34\xbe\xfe\xcf\xf8\xfa\x97\xf1\xf5\xd6\xf8\x7a\x61\x7c\xfd\xc3\xf8\x3a\xe6\x5f\x6b\xa7\xe5\xae\x6b\xd8\x1c\xbd\xdb\x7f\xc1\xa6\x78\x48\x76\xb6\x7b\x2a\xf1\xc3\xe1\x4f\x6f\xf7\x3f\x1e\xbf\x7f\xf9\xe9\xf5\xcb\xb7\x3f\x7d\x7c\x35\x24\x8f\x75\x26\xcc\xea\x50\xff\xd4\x39\x25\x94\x33\x24\x5f\x88\x95\xa0\x9d\xa8\x43\xc6\xa7\x17\x47\x3f\xbf\x25\xd7\xba\xa6\x77\x47\xaf\x5f\x33\xe8\x8f\x87\x6f\x5e\x1e\x1d\x7f\x1c\x92\xad\xcd\xcd\xcd\x81\xe8\xa1\xb8\xf1\x7e\x1e\xa7\xe3\xcf\x43\xd2\x66\xac\x33\x2f\xda\x46\xde\xfe\x18\xe2\x18\x0f\xf5\xdb\x46\xfe\x00\x83\xed\xe7\x75\xbe\x4f\xee\xe3\x60\xdc\x6f\x64\x7f\xf5\x8d\x6c\x4d\xb9\x80\xc8\x67\xc1\xce\x5d\x79\x80\x38\xc8\x2e\x17\x45\xfa\xf7\x0f\x78\x73\x18\x43\xda\x23\x1d\xfe\x82\x35\xe8\x05\x18\xb0\x9c\xb6\x37\xb4\x93\xeb\xbe\x01\x28\x2e\xc7\x0f\x54\x45\x12\x79\xf0\x40\xe6\xf6\xa5\xbf\x08\x2e\x26\xcf\xe8\x45\xdb\x7e\x45\x67\x78\xfe\xfa\x81\x6c\xb3\xd2\xb6\xeb\xe3\x6d\xe9\x2e\xd2\x2c\x4e\xe4\x65\xb8\xba\xe0\xb7\x9c\xb3\x13\xeb\xb5\x1d\x07\x95\x38\x62\x9d\xeb\xbf\xa2\x17\x7d\xd0\x5e\x0a\xcf\xbd\x3e\x1b\x23\x86\x15\x39\x6c\xdd\x3a\x3f\xd1\x71\xf5\xdb\x90\x6c\x7f\xf3\x84\x97\x44\x8f\x93\xe5\x9b\x33\xc6\xf2\x14\x8e\x5b\xc3\x6f\xbe\xeb\xb5\x4c\x94\xb7\x86\x4f\x37\xaf\x4f\x7b\xdb\x8d\x7c\x3e\xdd\xf3\xbd\x7b\xbe\xf7\xe7\xe5\x7b\x9a\xed\xf1\x77\xfe\x77\xc0\xf7\x2c\xd9\x7d\x75\xd1\xdd\x23\xb9\xcb\x82\x3e\xc1\x7d\xa5\x50\x43\x36\xaf\xed\x0f\x04\xbb\xd7\xb1\x88\x26\x4f\x31\x00\xfb\x56\x22\xfc\x32\x89\x8a\x37\xc1\x42\x89\x8b\x6d\x29\x51\x0f\x39\x0f\x6a\x6f\x4a\x59\x93\x49\xed\x43\xcd\x16\xdb\x5b\x86\x9c\x3f\x44\x19\x9b\x9b\xaa\xd0\xff\x56\xe4\x8d\x82\xd1\x28\x98\x52\xd5\x12\xce\x43\xc2\xff\xd0\xce\x9b\x7b\xea\x44\xd9\x6f\xaa\xb3\xe3\xf4\x8c\xc6\xc1\x58\x36\x6b\x67\xeb\x33\xc6\xd0\x97\x3d\xf5\x57\x8e\x20\x7e\xaa\x85\xc8\x67\x41\x92\xa4\x89\x31\x6e\x13\x42\x9f\x6b\x86\x15\x10\x35\xad\xc0\xc9\x6a\xe8\x81\xc0\xa8\xd4\xe7\xa5\x61\x35\x50\x5d\x4d\xe2\xec\x36\xf4\x02\x19\x95\xa9\xf3\x98\x3d\x36\x0f\xa0\x7f\x88\x26\xa0\x41\xae\x1e\x38\x04\xfa\xd9\x84\xf5\x81\xe2\xb9\x86\x53\x5f\x65\xc5\xb8\xbf\x8d\xea\xc6\xd5\x37\x2d\x80\xca\x14\x2b\x94\x61\xc5\xfc\xc6\x56\xda\x11\xc3\x22\x08\x85\x29\x29\x98\x7a\x5e\x2c\xe8\x98\x6d\x5e\xca\x3c\x1f\x1b\x5d\x09\xef\x29\x3e\xcb\x29\x5d\xc5\x88\x32\xb8\x50\x84\xe3\xb2\x6c\xb0\xc6\xb3\x20\x0b\xc6\x05\xcd\x72\xa9\xe2\x87\x7b\x79\x51\x1a\xed\x23\xde\x36\xa2\x69\xd2\x43\xb6\xd0\x64\x73\xcd\xef\xf6\x23\x9a\xce\x0a\x22\x3d\xd2\x5a\xde\x7d\xc5\x18\x0c\x69\x93\x83\xf4\xa0\x77\x79\x0f\xda\xf1\xf8\x18\xe2\x16\x22\x00\x03\x11\x69\xe1\xb5\xaa\xba\x21\xde\xea\xf6\x7f\x49\xa3\x04\x82\x35\x90\x67\x50\x07\x19\x92\xd6\x66\xab\x4b\x36\x04\x70\x89\xe1\xdb\x8d\xe7\x02\xa2\xf5\xfc\xd9\x27\x03\x06\xb1\xe2\x6c\x88\x1e\x6e\x70\x8f\xcb\x37\x9d\x97\x32\x43\x44\xd3\x11\x0d\x6c\x9d\x60\x86\x08\x91\x3c\x5c\x1f\xd3\xd6\xbc\x70\x6f\xcd\x15\xb3\x12\x25\xac\x12\x3f\xb2\xb0\x3f\x6a\x8f\xa3\x24\xd6\xb8\x36\x3b\xe4\x1e\x48\x8e\xf9\xd6\xae\x44\xfa\x19\x0f\xf6\x3c\x18\x90\x1f\xa3\x24\x24\xfc\x71\x97\xe8\xa8\x0a\xd6\xcc\x24\x8a\x56\x4b\xdf\xe4\x83\xed\x4b\x0f\xe2\x47\xcd\xe8\x85\x34\x61\x56\x67\x2e\x96\xc6\x4f\x3d\xec\xc4\x51\x7e\x56\x62\xd5\x6c\xe3\x77\x2f\x60\x5c\x23\x6c\x6a\x76\x49\xb4\xb1\xb7\x8d\xc1\x65\x20\x64\x6c\xdb\xa1\x9b\xea\x44\xac\x1d\x11\xfa\x42\xb5\x30\x21\x1d\x5e\x64\x6f\x8f\x6c\x76\x8d\x53\xda\x28\xa3\xc1\x67\x0d\xca\x46\xb9\xb1\x47\xc4\xab\x72\x36\x83\x07\xb3\x20\x3b\x48\x43\x0a\x35\x78\x0f\x61\x6c\xb2\xa5\x39\x4e\x5e\x64\xcd\x28\x84\x4f\xda\x4a\x24\xb2\xcf\x8a\xfc\x76\x34\x02\xcd\xfd\xf7\x10\xc9\x4d\x66\x3e\x2f\xca\x5e\xa7\x9b\x93\xed\xf1\x31\xdf\x59\x64\x74\x12\x5d\xf0\x08\x5a\x9b\x17\x5d\x36\x0b\xc0\x35\xfc\xee\xed\x45\xa8\xb7\xf2\xd9\xf7\xda\x2e\xc3\x11\x34\x88\x81\x9b\x57\x06\x13\xf0\x85\xf8\x34\x7c\xed\x0b\xb7\xeb\xa2\x1b\x98\x2a\x18\xc5\x0b\xcc\xf3\xd9\x87\xe5\x20\xcc\xb6\xf9\x72\x90\x33\xc2\x5a\xd2\xd4\x31\x49\x33\xdb\x84\x2e\x2f\xb2\xb2\x70\xf8\x68\x46\x19\xd4\x58\xcc\xcd\x7e\xd1\x89\x6e\xb6\xd2\xc1\x3a\x51\x44\x06\x37\xbc\xb6\x69\x10\xd6\xdf\x8d\x3d\x92\xc8\x7d\xe1\x7b\xb2\x4d\x9e\xb1\x93\x0d\xd9\x20\x6c\x3f\x48\x7c\x34\x21\x5c\xc8\xcf\xe8\xc5\x5d\x92\x86\x15\x73\xc0\xa6\x8d\x1a\xd6\xf0\x9b\x11\x87\xc3\x33\x10\x75\xfc\x36\x14\xf0\xbb\x4d\xab\xe5\xb1\x74\xb2\x8c\x63\x85\x86\x01\x3d\xa3\x49\xc1\x1f\x0a\x00\xcb\xff\x25\x4f\x13\x12\x8c\x22\x9b\xc7\x4b\xb7\x89\x1f\xd3\x1f\x97\x71\x6c\xbf\xa1\x94\x8f\x09\x58\xe9\x47\xbc\xb4\xfb\x18\x8a\x37\xec\xb4\xab\x19\xbb\xdb\x86\x21\x48\xb1\xca\xb1\xea\x94\x7d\xf7\xc1\x84\x22\x4a\x42\x7a\x71\x34\xe9\xb4\x3b\xed\x2e\xf8\x86\x7c\xb4\xe5\x79\x0e\xa9\xe0\x1d\x3b\xc1\xe2\x72\x41\x45\x73\x00\x04\x54\x64\xfa\x33\xeb\x44\xdd\x2f\x32\x7e\x70\x9f\xc1\xef\x92\x6b\x21\x8a\x99\x96\x7f\xaa\x15\xb2\x41\xda\x1d\x36\x73\xaa\xf6\x0d\xd2\xee\xb6\x1b\xad\xbd\x30\xca\x17\x71\x70\xc9\xe7\x05\x7c\x8c\x26\x05\x93\x6d\x15\x36\xec\x37\x6b\x17\x90\xfd\x82\x17\xab\x7a\xe1\xca\x6a\x33\x27\xdf\xbf\xbc\x8c\x1e\xb0\x2d\xcd\xa2\x18\x3a\xed\xcb\x60\x8b\x97\x1d\x61\x56\xd7\x25\x8f\x7e\x50\x89\x6a\x5a\xdd\xbe\x55\x3e\x7c\x56\x36\x9b\xce\xcc\x1a\x68\x16\x60\x7c\xb2\xc9\x33\xfb\x4d\xab\x78\x0f\xc6\xd6\x8c\x76\x36\x32\x18\xe8\x81\xa6\x67\x34\x8b\xd3\x20\xa4\xa1\x52\x04\x7b\xd6\x04\x1e\xc0\x47\x4d\x24\x65\x6f\x1a\x07\xe4\xe3\xd1\x8b\xa3\x21\x99\x07\x9f\x41\x35\x1c\x25\x67\xcb\x38\xa1\x59\x30\x8a\xe9\x5d\x0e\x50\x9f\x06\xec\xd7\xbb\x5b\xe4\x11\x41\xd9\xdd\x6e\x3f\xa3\x8b\x38\x18\xd3\x4e\x9b\xb4\xc1\xa9\x1b\x3b\x2d\xb4\xcc\x08\x91\x69\x72\x46\xb3\x22\xd7\xf1\x36\x41\xee\x0b\xe9\x38\x9a\x07\xb1\xcd\x64\xa3\xc4\xcf\xec\x8b\xf4\x05\x2f\xe0\x52\x5e\x65\xec\x4c\xd3\xad\x21\x17\xf0\x44\x4d\xb5\xd1\x1f\x8b\xd4\x0d\x8e\xa9\xc2\xcf\x34\x19\x63\xad\x6c\xcb\x78\xe2\x5d\x8d\x0b\xd5\x55\x1d\x99\x35\x91\x5a\x52\x77\x7c\x9e\xb8\xdc\x42\x7d\x6a\xee\x28\xc6\x61\x9f\x03\xc4\x34\xcf\x3f\xce\x82\xa4\xb3\x09\x4e\x64\x1f\x71\xab\x73\x61\xbd\x2f\x08\x6b\xab\x0b\xb1\x5b\x51\x8e\x81\xc5\xfd\x25\xb8\x69\x16\xa8\x0c\x92\x4b\xe1\x78\x47\xb8\x23\x4d\xca\xd1\xda\x17\x78\xdd\x4f\x42\xae\xfe\xe7\x34\x14\x4d\x2e\x73\xe1\x48\x3d\x27\x23\x3a\x49\x33\xda\x77\xe8\xea\x95\x38\x3a\x54\xe3\xfe\x4a\xec\x41\x35\xa4\xf5\x0a\xf6\x79\x03\xf9\x6a\xfd\x3e\x14\xa6\x62\xf3\xe0\x82\x87\xad\xbc\x88\x8a\xcb\x21\x79\x0a\x2a\x6c\xb9\xeb\x44\xb9\x70\x69\x0c\x45\xbb\xf6\x26\x83\x26\xb9\xb3\xc1\x20\x76\x8d\xa2\x78\x3a\xab\x0b\x5b\x65\x85\x21\xdd\x19\xa3\x1d\x76\x0a\xe1\x48\x6b\x7b\xab\x80\xf8\x4a\x7f\xff\x70\xf4\xb6\xaf\xb0\xcc\xdb\xd3\x0e\x2c\xc1\x75\x6c\x4e\x02\x3b\x94\x67\x8f\x2c\x82\x3c\x67\xbc\xab\x98\x65\xe9\x72\x3a\x33\x57\x80\x1a\x88\xa0\x35\xa8\xd5\xbd\x9c\xd4\x5c\xed\x11\x9c\x96\x3c\x32\x6f\xe9\x88\x25\x80\x78\xdb\x61\x56\x57\x53\xdb\x99\xb4\x1f\x45\x15\x90\xce\x7a\x94\xff\x18\x25\x51\x41\x2d\xa4\x5b\xdd\x00\x09\x11\x75\xc2\x94\xb2\xdc\x8e\xa2\x75\xf1\x5e\x6c\x2a\x7c\x1d\xb0\xf3\x52\x02\xdc\x9f\xfc\x4c\x6d\x41\x6a\x4a\x0b\x08\x57\x7c\x34\x39\x4e\x22\xaf\xb6\x0b\xca\x16\x33\x2a\x7e\xa8\x05\x47\x8a\xb4\xa7\xb4\x53\xca\x21\xba\x37\x6a\xa3\xea\x87\xaa\xa6\xc3\x3b\xd3\x85\x22\xe0\xb6\x2b\x27\x34\xcb\xd2\x4c\xba\xa4\xe1\x3d\xce\x49\x92\x16\x64\x9c\x66\x19\x1d\x17\xc3\x73\xb5\x6e\xcc\x5e\x1b\x0b\x88\x15\x94\x24\xb0\xe4\x99\xf0\xdf\x33\xf8\xaf\x5f\xa4\xaf\xd3\x73\x9a\x1d\x04\x39\xed\x00\x73\xe1\xfa\x5e\xcd\xc7\x18\xd4\x3f\xc4\x2d\xb3\xb8\xba\x39\x61\xff\x9f\xea\xa3\x38\x02\xc1\x7e\xbf\x31\xe1\x71\x4f\x64\x09\x3d\x27\x2f\xd9\xa8\x3a\x6d\xb8\xea\x85\x8e\x80\xad\xea\xbf\xdb\x05\xa1\x17\x51\x5e\xe4\x3d\xb2\x88\x69\x90\x83\x58\x0c\x23\x4f\x13\x85\xaa\x49\x1a\xc7\xe9\x79\x94\x4c\xa1\x64\xce\xb8\xa0\xb5\x8c\x44\x0f\x7b\xe0\x5f\xa1\xa7\x9f\x7d\x54\x44\x89\x55\xbd\x07\xef\x57\xa6\x57\xe1\xe0\x33\x85\x45\xc8\x19\x3e\x5c\x46\x47\x60\x4f\xab\x98\x2c\x27\x01\xc6\x6a\xc1\x57\x05\x9f\x78\x8e\x5a\x41\x59\xef\xd2\x3c\x8f\x46\x31\x9f\x42\x70\xa1\x21\x8c\xfa\x3e\x1c\x32\xf9\x32\x2b\xf8\x4f\x26\x52\x4b\x6c\xbd\x9c\x4c\xa2\xe9\xa5\xf8\x38\x92\xa4\xf4\x88\x7c\x66\xcd\xf3\x3f\x7d\x5d\x05\x9f\xe2\x66\x8b\x83\xcd\x35\x98\xba\x5c\xe2\x9f\xf2\x2a\x8a\xc3\x4d\x35\x9c\xba\xff\xe1\x9f\xe2\xc2\x48\xe7\xf1\x02\x8f\x1e\xa9\x85\xa9\xef\x71\x78\x81\x5f\x83\x51\x6a\xe4\x79\x4a\xc8\x7b\x18\x3e\x00\xb8\xbe\xc1\x79\xbc\x04\xea\x05\x2a\xcc\x3f\x05\x16\x10\x08\xb1\x20\xd0\x07\x5c\xa6\x08\x84\x50\x8d\xc3\x29\xfa\x5d\xc8\xdf\xb6\x48\xc1\xf9\x82\x75\xf2\xbd\x52\x72\x3a\x27\x87\x71\x90\xb0\x93\x41\xa0\x58\xb3\x48\x17\xba\xb2\x34\x23\x01\x79\xf5\xf2\x9f\x70\x08\x97\xd2\xda\x9d\x31\x14\xb5\xcf\xca\xa3\xdd\xcf\x33\x2a\xfd\xec\x05\xe8\x2a\x57\x44\x41\x41\xc1\x02\xd8\x7a\x0a\x72\x72\x4e\xd9\x02\xd1\x0e\x56\xe4\x30\xd6\x90\x34\xf4\x33\x35\x8e\xe4\x72\x9c\x98\xa5\x70\x51\x87\xd5\x2c\x99\x04\x16\x8a\x78\x09\x1c\x35\xd6\xe4\x54\x9c\x3b\x59\xf2\x10\xde\x86\x45\x05\xe4\x99\xd1\xc8\x10\x7f\x21\xc9\xaa\x76\xf9\x06\x1c\xc7\x9e\x15\x7c\x4e\xa3\xfb\x05\xfb\xdf\xb2\xc4\x8b\xb4\x6a\x81\xa3\xf3\xc2\x6f\xb6\xd4\xd9\x6a\xfb\x1d\x17\x3b\x20\xe4\x6e\x96\x7a\x11\xcd\x69\xfe\x7b\x2c\xf3\x44\x28\x17\xd9\xe2\x56\xaa\xaa\x9c\x1f\xf3\xd9\x16\x4d\x94\x29\x8b\x43\x0d\xaa\x23\x8d\x68\x42\x53\x81\xbc\x3a\x64\x53\xaf\x49\xc1\xac\x4d\x39\xb9\xd2\x15\x68\x00\x85\x7e\x6c\x7b\x63\x4d\x42\xcd\xf1\xe7\x1b\x26\x03\xc2\xaa\x97\xe5\xc5\x8f\xab\x2b\xb2\xb9\xeb\x3d\xdb\x88\x7a\x9d\xb3\x09\x4f\x37\x0e\x44\x02\xe5\xb2\x27\x0f\x1e\x10\xf1\xdb\x27\xf3\xb3\x26\xed\x5c\x7c\xc0\xf0\xb9\x40\x33\x44\x31\x51\x58\xa9\x44\x36\x2f\xda\xbd\x76\x1b\xdf\xb7\x58\x8e\xd2\x7c\xa5\x31\x9d\x94\x8a\x74\x89\x0c\x1d\xeb\xa1\x14\x45\x27\x1c\x4c\x06\xf1\x50\x27\x31\x61\x35\x09\xb0\xc5\x79\xda\xce\xc9\x58\x85\x74\x71\x48\xcb\x8c\xf8\xd2\x84\xbe\x4a\xa8\x06\x9d\x91\xcd\x3a\x4d\x7d\x97\x41\x32\x0c\x7c\x84\x28\xcb\xb7\x5e\xe1\xc5\x77\x07\x39\xad\x53\x05\xb0\x46\xa2\x76\xea\x5a\x93\x5b\xfe\xb5\x60\x96\xfb\x8b\x78\x99\xeb\x2e\x88\x6f\xaf\x77\x43\x05\x64\x2a\x92\x66\x74\xfc\x39\x97\xa7\x26\xce\x22\xe5\x2d\x67\x2e\xde\xca\xc5\x97\xe0\xc6\xd7\x1b\x8c\x98\x93\xfc\xd8\x1b\x88\xd8\x0c\x29\x8c\x1a\x60\xeb\x3f\x40\x05\xb0\x63\x3b\x08\xae\x24\xa6\xce\xaa\xdc\x98\x39\x51\xde\xd2\xa0\x0d\xfe\xb3\x79\x71\xb2\xf9\xe8\xbb\xe0\xd1\xe4\xf4\xcb\xe3\xcd\xeb\xff\x19\x44\xfd\x82\xe6\x85\x02\x5f\x61\xf0\x15\x63\xfe\x4a\xa3\x6d\x30\x4e\x50\x00\x0c\xfe\xd3\xd9\xbc\xe8\x3e\xab\x1c\x28\xa6\xc0\xc1\x40\x07\xcb\xe2\xe1\xb0\xa0\x7b\xdc\x85\xb0\xb0\x3a\x9c\xc3\x43\x5e\xb6\x21\xa3\x61\x9b\x14\x2c\x3c\x01\x12\xd3\x57\x85\xb7\x33\x66\x5f\x18\xa3\x43\x60\xfb\x8f\x7e\xf4\x82\x59\x5d\x86\xd8\x5d\xed\x1c\xbc\x1d\xe7\x73\xf6\xef\x38\x58\xe4\x20\x3c\x88\xdf\x3d\xec\x9e\xd1\xee\x2d\xf7\x3a\x8f\x3a\x6b\x54\x7e\xa4\xf6\x76\x8e\x19\x1a\x8c\x67\x64\x1c\xe4\x4e\x35\x51\xce\xa9\x64\x39\x17\xb3\x83\x48\x89\xaf\xb1\xe6\x04\xc5\xdb\xca\x97\xf3\x39\x0d\x4b\x69\xcb\x6a\xee\xae\x69\xcc\xaa\xbe\x8a\xd6\x06\x03\x3e\x20\x0b\x39\x81\x2a\x29\x7e\x39\x1b\x90\xd6\x86\x08\x88\x57\x41\x0e\xae\x68\x66\xc1\x8e\x6c\xc4\xd4\xa4\x48\x59\xc7\xe7\xee\xe5\xf1\x26\xdc\x50\x12\x8b\x3c\xc0\x75\x77\x31\x23\x31\x85\xc7\xd4\x28\xfe\xde\x62\x41\x33\xd6\x5b\x39\x0f\x09\xc4\x2e\x9c\x46\x3c\xbc\x5d\x90\xd3\x79\xb0\x60\xf3\xb1\x65\xe8\xf9\x3a\xca\x7e\x01\x75\x1a\x9c\xb2\x6d\x3d\xe9\x92\x1f\xc8\xb7\x6c\x37\x17\x59\x27\xd1\x69\xbf\x48\x8f\x59\x43\x42\x13\xb4\xbe\xb7\x87\x32\x81\xe2\xab\x2b\xfc\x7e\xcf\x53\x23\xd6\x2d\x59\x35\x96\x78\x0a\x47\x6b\x52\x73\x7c\x83\xef\xeb\xe8\x0b\x8a\x4c\xdf\x88\x83\x9e\x24\xc7\x12\x5a\x2c\xd2\x3b\xa5\x45\xa9\xbc\x56\xfb\xf2\x0a\xa4\x88\x54\xc6\x8a\xfc\xec\x47\xd7\xa2\x9d\x76\x5b\xd0\x92\x4b\xa7\x06\x82\x6f\x44\xb5\x08\x68\xec\xf4\x9e\x55\x54\x41\xc7\xb2\x17\xe8\xd6\xdd\xa6\x69\x60\x79\x33\x6d\xf9\xc7\xa8\xf4\x3b\x76\xee\x99\x70\xff\xf9\xf2\x22\x4e\x91\xb8\x41\xc1\x75\x04\x6c\x92\x90\xdd\xff\x8d\xbd\x52\xea\x46\xf4\x65\xb3\xd2\xda\x9a\x2a\x69\xd3\x2a\x69\x4a\x9e\x5a\xd2\x34\x18\x69\x91\x32\x89\x32\x0a\xc9\xf6\x26\x77\x19\xf4\x48\xdc\x0f\xf2\x36\xf9\xf3\x84\xcd\x0b\xc2\x6d\x3b\x5c\xdb\xae\x5a\x52\xf6\x5f\xf6\x0b\xe7\x03\x98\x6f\x2b\xfb\xad\x66\xf4\x6b\x49\x33\xde\x6d\x4f\xfa\xd4\x95\xf8\x40\x32\x3c\xdf\x6b\xab\xb6\x59\x4f\x45\xe2\xee\xcb\x57\x9f\x09\x21\x23\x2f\xc2\x8d\x92\xaa\x51\x3f\xa6\xea\x91\xc7\x9b\xfe\x4b\x02\xe9\x87\x58\x1e\xa6\x73\x2d\xe5\xd6\xc7\xd8\xf4\x9e\x24\x7d\x37\x5f\x46\xdc\x4d\xbe\x93\xf9\xce\x80\xa4\xc3\xbb\x61\x89\x85\xb2\x6f\x49\x5e\x04\xc9\x98\x71\x11\x5d\xf8\xea\x4a\x21\x4d\x14\x86\xc7\x6b\xf0\xcb\xf0\x9b\xe1\x4d\xe5\xa6\x11\xc0\x8b\x54\x95\xed\xa6\x88\x92\xe7\xe1\x3a\x2c\x7d\x70\x6c\x8b\x1a\xa2\xc8\x13\x21\xc9\x8b\x1f\xc1\x5a\x45\xcf\x60\x34\xbc\x6f\xed\xbb\x43\x0f\xef\x4b\x63\xdc\xc8\x1e\xd7\x63\xe7\x47\x6d\x43\xb2\x2a\x7e\x64\xd1\x1b\x61\x48\x96\x68\x37\x1c\x11\xeb\x53\x51\x3f\x1c\xde\xf5\x1b\x0c\xe6\x48\xf4\xad\xe1\x62\x60\xf2\x45\xb2\x8c\x63\x08\x92\xd0\x71\x57\x08\xd8\x6d\x83\x0a\xc3\x33\x76\x71\x5d\xdb\x70\xe4\x23\xde\xd9\x06\xec\x80\x03\xde\x84\x19\xf0\xa4\x1b\x4d\xa4\xe8\x5e\xd3\xd1\x80\x07\xc0\xfa\xb1\x38\x01\x35\x1a\x8e\xc4\x0d\x8a\xd1\x90\xa5\x41\xc1\xca\x31\xd8\x07\x12\xbe\x8f\x82\x89\x5c\x2a\xa9\xce\x1c\xc4\xdf\x73\x73\x5d\x69\x03\x84\xca\x31\xb0\x62\xf6\xa3\x01\xe5\x39\x29\xbb\x74\xf7\xa9\xf5\x75\xb8\x98\xe4\xaf\x70\xb5\x2d\xeb\x35\x19\x43\xd4\xa7\x0e\xf5\xec\x6d\xf8\x38\xba\xca\xa8\x03\x31\xee\x97\x6c\x02\xe9\x72\x4e\x46\x71\x3a\xfe\x4c\x66\x34\x08\x69\xc6\x3e\xd2\xb9\x6d\xb4\x11\xe5\xcf\x59\xb2\x4f\x68\x98\xd1\x0b\xe5\x16\x1d\xca\x92\x49\x14\x17\xb6\x32\xd3\x43\xb0\x00\x6b\x78\x1f\x66\x29\x95\xe7\xfc\x6f\xb6\xb6\xf5\x41\x9f\x83\xd7\xe0\xa5\xfc\x98\xce\xeb\xc2\x55\xf9\x4e\xe9\x2e\x94\x2f\xe0\xb0\x3e\x69\xaf\xb9\xfd\xb8\xc1\xcc\xc4\x29\x13\xf3\x16\xd1\xd8\x9d\x87\x8f\x2c\xb9\x6e\x1e\x0a\x05\x54\x31\x01\x50\x93\x31\x01\x50\xac\x72\x02\x9e\x3c\xd6\xf8\xe7\xd0\x37\xc6\x3f\x54\x85\x6b\xf2\xa1\xdf\x01\xba\x11\xf6\x4b\xfc\x8e\x08\x91\x6f\x28\x7f\xf4\x64\x2a\xbc\xf9\x19\xaa\x5f\x3c\x1d\x04\xc3\x21\xff\x4f\xa6\x08\x03\x92\xa1\xfe\xc9\x73\x90\x71\xc9\x10\x7f\xc8\x72\xc7\xc5\xe4\xe9\x50\xfc\x2f\xd3\xc0\x5c\x65\x28\x7f\xe8\x7a\x38\xac\xfc\xa5\xd3\x05\xbc\xfa\x29\xea\x71\x6d\x6e\x87\xbe\x44\x0e\xed\x9a\x72\x0e\x3d\x69\x06\xac\xb4\x9a\x1c\xda\x09\x72\x1c\x3f\x53\x18\xc5\xcf\x14\x8d\x01\xd2\xc4\x0f\x09\xa7\xa4\xc5\x21\xfe\x90\xb9\xa6\xca\x7a\xe8\xa4\x28\xac\x71\x41\x7d\xa8\x7f\xf2\x1c\x24\x1d\x0f\xf1\x87\xcc\x35\x4e\x22\x43\x3b\x41\x42\xa1\x7c\x2b\xc7\x3a\xba\x0f\xdd\x24\xd9\x43\x07\xd2\x49\x92\x75\x4a\x61\x6c\x88\x7e\xe3\xfe\x26\xd3\xa1\xfa\x25\xd3\xf9\x9e\x3a\x54\xbf\xd4\xe8\xf9\x7a\x1f\xea\x9f\x6a\x4c\x6c\x97\x1c\xca\x1f\x32\x95\x6d\x58\x43\xf1\xbf\xaa\x83\xf1\xbb\xa1\xfc\x21\x53\x81\x6d\x0c\xe5\x8f\x1e\x2c\x30\xee\x9f\x4e\x3c\xea\x6e\x0d\xb7\xbe\xeb\x55\xba\xb7\xe9\xb5\x96\xc5\xe4\x69\x6b\xf8\xf4\x9b\xeb\xd3\xde\xf6\x56\x13\x87\x0f\xe6\x12\xde\xe3\x0b\xb8\x25\xfc\x1c\xb4\x86\xa4\xb5\xd9\xdf\xde\xec\x6f\xb5\xd6\xae\xa5\x27\xb8\xed\x46\x81\x8a\xef\x1d\x49\xdc\x3b\x92\xf8\x2b\x38\x92\x10\xb5\xac\xb9\xae\xe0\xfe\x4e\x27\x93\x8c\x5e\x92\x9f\xa3\x78\xfc\x99\x92\xef\x7f\xa1\x93\x89\xed\x4d\xa2\xa1\xc3\x38\x00\x8b\x82\x84\x1c\x31\x89\x3b\x00\xa8\x28\x48\x5c\xb0\x1f\x83\x11\x03\xfb\x47\x3a\xa5\x71\x5e\xd0\x38\xa6\x19\xf9\x7e\x02\x89\x2e\xf0\x4f\xc1\x19\xf9\x39\x4d\x43\xf2\xfd\xb4\xd4\xcb\xc5\x63\xed\xdd\x47\xb8\x82\x7c\x13\x24\xc1\xd4\x74\x3d\xd1\x1f\x30\x2c\x0c\x32\x0e\x30\xe7\x00\xd2\xc5\xc4\xe1\x08\x0e\x47\x36\x70\x34\x0a\x12\x09\xf2\x12\xac\xf8\x6d\x08\x2e\x79\xe5\x03\x5a\xcc\x24\xe0\x8b\xe7\x15\x70\xe1\x48\xb9\x9b\x9d\x55\xd5\x97\xcf\x54\x7d\x6f\xc1\x31\x79\x19\x60\x42\x0b\x09\xf8\x8e\x66\x39\xbc\xa4\x2a\x87\x5e\x08\x10\xd5\x89\xf3\x20\x9b\x57\x75\x83\xe5\x2b\x60\x5a\x14\x10\xb4\xc9\x85\xcf\x45\x96\x04\x95\x5c\xc5\x80\x94\xec\x82\x9d\xa8\xb4\x6f\x8f\x28\xb6\x2a\x44\x51\xe5\xcb\x5d\x84\x70\x20\xe9\x8c\x49\xbc\xdb\xa0\x49\xe8\xe9\x1b\xcf\x90\x60\xcf\xe1\xc4\xe4\x42\x8d\x58\xba\xc2\x64\x96\x2e\x68\x56\x5c\x7a\xe0\x16\x22\x4b\x82\xbe\x2a\x8a\xc5\xbb\x2c\x3d\x8b\x42\x2f\xb9\xb1\x85\xba\x10\xd9\x8a\xd8\x16\xe3\x8a\x12\xd1\x62\x6c\x17\x68\xe6\xd0\x70\x6d\x4d\xc9\xea\x3f\xd3\xd1\x0e\xe9\xc8\x6a\x4c\xa7\xbc\x99\xbd\x42\x12\x7a\x6e\x2d\x1b\x5d\x12\xf9\xe7\x15\x91\x56\x51\xcf\x25\x14\x02\xa2\xfc\xa9\x0b\x3d\x67\xcb\x05\xfc\xf4\xe3\x2a\xc2\x91\xc8\x7c\xf1\xdc\xc9\xcb\x67\xb2\xe4\x87\x99\x5b\x32\x81\x35\xc0\x72\xdf\xd2\xc2\xc9\x5d\x68\xc2\x67\x20\x72\x1d\x38\x70\xa3\x5f\x7f\x95\x6d\x30\xba\x76\xfb\xa0\x09\x1c\x80\xc4\x67\x07\xc3\x68\xca\xd6\x47\x8d\x60\x11\x0d\xd5\x66\x28\xfe\xe7\x47\x0e\xdc\x49\x81\xad\xdc\x28\x8a\xc9\x67\x68\x7c\xf5\x14\x0c\xa2\x97\x21\xfe\x70\x9a\xf8\xa4\xd6\x00\xff\xe1\x0c\x50\x00\x74\x74\xfb\x82\x9c\x23\x9a\x0f\xd1\xef\x0e\x37\xe6\xb9\xee\xee\x32\x89\x69\x30\x00\x0f\xbc\x39\x25\x7a\x0c\x29\xdf\x89\xc1\x25\xd0\x1a\x23\x37\xcf\xf8\xea\xc6\x56\x3a\x2e\x26\x34\xca\x3a\x65\x38\x4d\x8a\x29\x0f\x87\x0c\xae\xa7\x71\x5c\x78\x65\xd2\xf6\xf4\x25\xa3\x3c\x56\x84\xee\xc5\x67\x4a\x17\x87\xf9\x87\xcb\x64\x1c\x25\xd3\xca\xae\x40\x59\x0b\xbe\x19\x05\x7a\x3a\x82\xf9\xc2\x73\x6d\xbf\x62\x41\xc9\x57\x30\xdc\x9b\x14\x7c\x79\x60\xe4\x8b\x59\x09\x05\xdf\x1e\x38\xf1\xec\x5a\x82\xb1\x4f\x07\x0a\xbf\xc0\xe5\x80\x2a\xc5\x0b\x6b\xd4\x29\x13\x3c\x6d\xeb\xe7\x54\xb2\x79\x91\xe2\xad\xd5\x86\x46\x69\x9e\xba\x31\x2e\x65\xed\x55\x38\xe5\x16\x8e\x12\xf2\x67\xea\x1f\x19\x86\x12\xdf\x0e\x1c\x36\x6c\xe1\x90\x2a\xc5\x03\xeb\xde\x0a\xcb\x32\x07\xf6\x6d\xa1\xd3\xe7\xb2\xb2\x4e\x8e\xa7\xdd\xc3\xe7\xfb\x6f\x51\x63\xec\xd3\x81\xd2\xde\x69\x38\x98\xf8\xf6\xc1\x49\xc7\x29\x0a\x10\x12\xd8\x2e\x66\x2f\x7c\xbe\xf5\xe3\x87\xdc\xfc\x52\xc8\x74\xae\x68\x5e\xd7\xc1\x9d\xb4\x0d\x59\x76\x7d\x1a\x46\x19\xa8\x8a\xc7\xc1\x02\x1e\x5f\xa0\x0b\x4c\xcf\x8c\x1e\x1e\xec\xbf\x33\xd6\x3e\x2b\x87\x2d\xe4\x22\x2e\x4a\xb2\xe5\xcb\xa4\x4a\x9e\x6f\xbc\xf5\x64\x10\x7d\xd1\x8c\x5c\xd9\xe0\x4f\x46\xf1\xdf\xaa\x80\xa3\x27\x8a\x77\xc3\x5e\x27\xc4\x91\x8e\x79\xe7\x9c\x80\x0e\xa6\x2d\xf7\xa4\x24\x0d\x69\xbb\x67\x40\x4c\xc1\x2e\x64\x48\xda\x4c\xe8\xf8\x34\x8e\x23\x9a\x14\xff\xe0\xe0\x6d\x7d\x27\xdd\xed\xdd\xa4\x35\x5a\x9c\xa7\xd9\xe7\xb2\x06\x13\x5a\x7c\x12\xa0\x16\x88\x19\x2f\x60\x68\xaf\xf2\x5b\x76\x8b\x0a\x85\x76\x59\xbf\x68\x31\xfb\x04\x73\x3d\x4e\xe3\x7f\xfc\x0e\xfd\x3b\x9f\x45\xf9\x42\xb9\x46\x76\xba\x97\xcf\x66\xb7\x46\x1b\xfc\x3c\xf5\xee\x25\x51\x7e\x90\x26\x09\x77\xd9\x84\x96\x5b\xd7\xa0\xbd\x8e\x77\xbb\x7c\xf0\xc0\xbb\x8d\xe2\x2a\x3b\x5d\xff\x0e\xc6\x9d\x14\x48\x99\xbc\x94\xe6\xc1\x38\x14\x02\x27\x08\x89\xc6\xab\xb7\x65\x75\x4b\x67\xa2\xf8\x84\xc0\x55\x4e\xc6\xc1\xa2\x35\xdc\xde\x64\x49\xf8\x48\xd2\x1a\x6e\x6f\xb1\x34\x7d\x1c\x68\x0d\xb7\x1f\xab\x14\x2e\x3a\xb5\x86\xdb\x4f\x55\x12\x16\xee\x5b\xc3\x9d\x6d\x95\xc1\x56\x78\x6b\xb8\xb3\xa3\x13\xb4\x50\xdf\x1a\xee\xe8\x4a\xf5\xb1\xb0\x35\xdc\xf9\xd6\x49\xa6\xc5\xac\x35\xdc\x79\xea\xa4\x27\xb4\x68\x0d\x77\xbe\x73\xd2\xa5\x20\xdc\x1a\x3e\xde\x74\x32\xf3\xd9\xac\x35\x7c\xbc\xe5\xa6\x33\x59\xb8\x35\x7c\xac\xbb\x2f\xcf\x38\xad\xe1\xe3\x6f\x54\xa2\x79\x70\x6e\x0d\x1f\x3f\x51\x59\x52\x6a\x69\x0d\x1f\x7f\x5b\xad\xdb\xbb\x3e\xed\x6d\xef\xdc\x6b\xde\xee\x35\x6f\xff\x2d\x9a\xb7\x20\x8e\xc1\xbf\xc4\xed\xdc\xb8\x22\x05\x97\xa3\x0a\xf1\xe9\x42\x64\x94\x98\x97\x67\xdc\xa2\x1f\xe9\x18\xa0\x37\x12\x4e\xc7\x8c\xa9\x0b\x8e\xe4\xea\x69\xbc\x8a\x9a\x1f\xe1\x72\xd7\xaa\x0c\xd2\x24\xc4\x39\x0f\x7d\x64\x82\x48\x56\x24\x32\x95\x73\xd7\xfd\x38\x36\x86\x62\x0a\x46\xe6\xd1\xaa\x07\x37\xf5\x3d\x62\x99\x96\x95\x28\x3d\xcc\x04\x7c\x44\xfe\x85\x5f\xce\xb3\xff\x70\xb2\x63\x2e\xc9\x37\x21\xa7\x87\xd5\x51\xbe\x2d\xa9\x55\xba\x03\xdf\x53\xbf\xae\xae\x20\xfc\x0d\xb1\xdd\x3e\xb0\x44\x48\x3d\x69\x33\x29\x14\xc2\x0a\xb4\x7b\xa4\x5d\xa4\xfc\xe7\x69\x9f\xa3\x19\x85\x3b\x9c\x78\x6e\x43\x45\x33\x27\x93\x53\x30\x70\x51\xf6\xa1\xe2\x86\xb4\xeb\x89\x99\x6d\x55\xc3\xfa\xc3\x8a\xef\x21\xe2\xe1\x1e\x74\xa0\x23\xfc\xbc\xa4\x63\xe0\xe9\x06\xa5\xcd\x82\x7e\xb7\x05\xae\x28\x34\x5e\x0d\x3c\x9b\x8f\xbb\xb0\x73\x8a\x2a\x8c\x7b\x82\x16\x87\x41\x11\xc8\x11\xb0\xdf\x7d\xf6\x0f\xd9\x43\xbf\xaf\xae\xc0\x28\x56\x01\xc0\x55\x72\x2e\x41\xc4\xd7\xd5\x95\x0e\xbe\x09\xda\x46\xd6\xb4\xbc\x23\x47\x80\x27\x9b\xa7\xfd\x9c\x31\x04\xe5\x61\x9d\x41\xcf\x85\x80\xa3\x29\xcc\x9d\xae\x5f\x3c\xd3\x85\x5b\xd9\x13\xa6\xb6\x42\xba\x73\x2f\x6d\x3b\xbf\xa8\xe7\xe9\xdd\x93\xcd\x53\xf4\xf0\x6a\x1d\xda\xef\x92\x2f\xf0\xd4\x21\x48\x92\xb4\x20\x93\x28\x09\x79\xbf\xa2\x64\xca\x1b\x7a\xa6\x9a\x1f\xa7\x49\x9e\xc6\xb4\x7f\x1e\x64\x49\xa7\x8d\x4b\x70\x67\x39\x8c\x15\xc7\xe9\xb4\x8d\x4c\x5f\x45\x8f\x19\x2a\x1c\x87\x4b\x54\xb0\x21\x1c\x98\x0b\xe6\xae\xe3\x5b\x9d\x3d\xde\xad\x9e\x49\x10\xe6\x11\x0a\x6a\x94\xbe\x0e\x61\x8a\x1b\x2c\xc7\x0b\x3a\x66\x12\x80\x67\x3d\xf6\xc0\x21\xd3\x28\x18\x7f\x56\x21\x44\xc1\x13\x81\x38\xec\xca\xeb\xd6\x4e\x90\x4d\x97\xf0\x12\xe4\x44\xfd\x42\xce\x78\x4c\x2b\x74\x59\x23\x84\x7e\xae\x2c\x86\xdd\xc6\x75\x1c\x08\x36\xf1\x5b\xa6\x1b\x0b\xcd\x36\x92\x65\x1c\x3b\xe8\x4e\x25\xa5\x09\xe7\x77\xfa\x00\x2c\x21\x26\x28\xc8\x1a\xd7\xcc\x02\x26\xfb\xa3\xc8\x54\x1a\x22\xf1\x9b\x73\xf6\x4e\xda\x83\x83\x52\xbb\xe7\x65\xac\x3d\xc9\xde\xd9\x61\xab\xd3\xed\xe9\x86\x10\x86\xeb\x67\x2a\x28\x8a\x60\x3c\xfb\x98\x1e\x48\x3f\x58\x78\xca\xa4\x73\x2c\x7c\xe6\xd6\x53\xcb\xc7\xcd\x3f\x9d\xe1\xc8\xa2\xfd\x20\x8e\xd5\x7e\x22\x80\x4b\xce\x14\x4e\x37\xd5\x01\xc3\x73\xc2\xf0\x1e\x31\x80\x54\x5b\xc3\x6d\x90\xee\xf9\xaa\x6f\x0d\xb7\x41\x76\xc7\x21\xdb\x76\x00\xd8\xda\x08\x5b\xc3\xc7\x3b\x4c\x64\x7e\x7c\x2f\x32\xdf\x8b\xcc\x7f\x6d\x91\x19\x45\x7b\x81\xb3\xf7\x5d\x85\x7b\xf9\x7b\x9e\x26\xd9\x62\x6c\xca\x9b\xbf\xf0\x44\x75\x75\x98\x65\xa9\x2d\x02\xf3\x34\x25\x89\xba\x2a\x0a\x36\x58\x43\xc8\x74\x64\x4c\x40\xc7\xa7\x52\x49\x53\x64\xe4\x22\xae\x77\x8d\x9f\xc0\x20\x0c\xa5\x4b\x47\xc6\x8e\x45\x61\xf0\x92\x0d\x5d\x13\x09\x96\x45\x60\x10\x86\x1e\x1b\x5b\x22\xc6\xcf\x0b\x15\xda\xba\x75\xb0\x06\xe3\xc4\xac\x38\x0c\x7d\x32\xb7\x6f\xe0\x39\x0f\x0a\x2e\x21\x6a\x47\x24\x99\x76\x55\xff\x05\x8c\xb7\x6b\xbe\xfd\xdc\x74\x2e\xa0\xf0\x6b\x74\xd3\x9d\x02\x7d\x4f\x94\x84\x5c\xcd\x24\x61\x7b\xa8\x6e\x9a\x65\x3d\x21\x89\xe6\xae\x4c\xcc\xc9\x87\xff\x12\xc2\xa2\x06\x10\xf8\xc1\x1e\x26\x15\x2a\x7b\x04\x5e\xb7\x97\x3c\x60\x13\x55\x9e\x00\xcc\x29\x3e\x1e\x94\x0a\xec\xbc\x48\x49\xb5\x4c\xac\x91\xfd\x11\x95\xf6\x1d\xd9\xc7\x2e\xb0\x2e\x16\x51\x3f\xca\xff\x11\xc4\x51\xf8\x9e\xe6\x8b\x34\xc9\xa9\x68\xca\x79\x7c\xe7\x8c\xc1\xdf\x5e\x87\xaf\xb1\xfe\x61\x72\xe6\xad\x75\xd7\xa9\xf4\xda\xed\x5f\x69\xe5\xdc\x65\x93\x33\x58\xbe\xe7\x82\x6b\x08\x5f\x86\x68\xbc\x2f\xfa\x00\x4e\x23\x70\x82\x13\xc4\x5e\x4f\x85\x3a\xdf\x10\xbf\x28\x01\x94\xa5\xf5\x93\x7c\xf0\xad\xe1\x36\xe8\xd1\xc4\x8a\x6c\x0d\x77\xc0\xea\xad\x51\x90\xef\xfb\x0d\xff\x7e\xc3\xff\xf3\x6e\xf8\x7a\xbf\x57\x62\xf9\x1d\xa9\xc8\x1a\xea\xaa\xd8\x89\x27\xb3\xc0\x72\x21\xeb\x0f\x20\x73\x55\x75\x9a\x84\x43\xef\xa6\xb0\x1e\x4c\x3e\x88\x12\xd0\xfb\xe8\x10\x82\xc0\x94\xc6\xd0\x88\x38\xee\xdb\x3f\xb9\x7a\x09\x3f\x32\x83\x6d\xde\x7e\xa7\xcc\xe1\x0e\x34\xd8\x3b\x09\xa5\xe4\x02\x30\xf6\xbd\x26\xd2\x95\xb3\x99\xea\x6d\x40\x38\xfb\xf5\x57\x6d\x3e\xf5\x1c\x45\x3d\x51\xce\xba\xd5\x09\x46\x91\x47\x0d\x82\xdc\x3e\x13\xcb\xcf\x32\x8f\xef\xbd\xb7\x47\xda\xa8\x4f\x6d\xf2\xe0\x81\xe1\xc7\x19\x9d\x9b\x79\xb3\x86\xb3\xff\xeb\xae\xb5\x0d\x57\x35\xe8\xf1\x0c\x4d\x3a\x90\x58\xb2\x5d\x43\x1e\x77\x18\xed\xd9\x19\xac\x8a\x18\x58\xee\x69\x1a\x68\x4f\x1c\xde\x39\x42\x39\xa8\x42\x23\xd2\xf2\x48\xed\x55\x03\xe9\x51\xc5\xf3\x12\x9e\xa2\xf8\xd1\xda\xfb\xb2\x29\x08\x43\x49\xc3\xb9\x3e\x86\x63\xda\x90\x69\xd7\xaa\xa6\x52\x7a\xe2\xa4\xe2\xaf\xb2\xf2\x64\xaf\x8f\xeb\x37\x27\x14\xf4\x0a\x71\x95\xd9\xc7\x9a\x2a\xa5\xfd\x51\xfd\xf9\x44\x8b\x99\x54\x37\xeb\x4e\x9a\x7e\x2f\x6a\x55\xa9\x13\x47\xcd\xa1\x11\xa0\x55\xa5\x0d\xe6\x95\x73\x8b\x46\x93\xca\xf9\xcd\xdd\xcd\xa8\x5d\x5f\xbd\xa2\x46\x32\xbc\xbb\x98\x5b\xce\x7b\x2d\xb5\xb2\xe0\xac\x42\xdb\xa8\x78\xac\x39\x79\xae\xde\x8a\x77\xac\x74\x3a\xf7\xe3\xb8\x72\xba\x00\x48\x5c\xf4\xac\x4c\x60\x5c\x15\x5a\xd3\xc1\xd5\xa9\xcd\x78\x14\xe8\x2a\xd5\xca\xa8\xad\x8a\xdc\x94\x9b\x1c\xb0\xfd\x93\x93\x3e\xa5\x45\x2e\x8c\x57\xe2\x4b\x12\xd2\x45\x9c\x5e\xd2\x50\x9a\x08\xc2\xf3\xc1\xf1\x2c\x88\x12\xfb\xb9\x1a\xd4\xf6\x63\x9a\xc9\x1e\x79\x7c\x0f\xc8\x03\xab\x8f\x24\xe5\xba\xbc\x56\xaa\xc5\x35\xc3\x43\xee\xb1\xbc\xdc\xd0\xcf\xda\x4a\x5a\xc4\x06\x0f\xb2\x25\xa4\xb0\xd4\xe4\x0b\xf1\x9a\x21\x90\x8c\xa3\xe6\xfd\x11\x82\x94\xef\xc9\x87\x65\x90\x3f\x18\x90\xf3\x20\xe2\xea\x72\x10\xb9\x16\x85\x56\xc1\xca\x9b\x32\x73\xde\xc5\x52\x50\xf1\xa2\x75\xc7\x68\xd7\x74\xbc\xbc\x4e\xe1\x69\xb2\xd1\xbe\xbd\x2b\x41\x7f\x37\x36\x76\xcd\x63\xd3\x60\x40\xf2\x22\x5d\x70\x5d\x6d\x94\x4c\x49\x30\x61\x5d\xf9\x66\x93\xcf\x55\x4e\x3a\x45\x34\xa7\xe9\xb2\xe8\x3a\x47\x47\x8e\x80\x1f\xc8\x37\x9b\xde\xc3\x22\xef\x7d\x9f\xd5\xfe\xb3\xa8\x5c\x87\x54\xe8\x92\x2f\xd7\x9e\x33\x9d\x8d\x40\xfe\x60\xcf\x7b\x0e\x55\x33\xe2\x3d\x6d\xea\x93\x9f\xf6\x0b\xac\x18\x13\xdc\x97\x04\x7c\x65\x8c\x19\x61\x83\x8f\xe0\x11\x93\x98\x97\x49\x68\x63\xa0\xed\x3b\x7c\xd2\x18\x39\x14\xc1\x7f\x8e\x37\xe2\x1b\xb7\xca\x96\x1f\xae\x59\xf9\x13\x71\xb1\x66\x50\xcd\x94\x16\x1f\x75\x53\xef\x39\xa9\x69\x8e\x82\xba\xf1\x2a\xc8\x67\x98\xa8\x7a\x92\x30\xbb\xfe\x23\x7c\x34\xe9\x08\x00\x3f\xb5\x79\x0b\x79\x3b\x08\x11\x8c\x44\x5d\xfd\xb1\xb9\x00\xcd\x1e\x41\x98\x23\x7f\x77\xe4\x5f\x99\xf3\xf6\x27\xca\x79\x7b\xd9\x5f\x34\xe9\x98\x14\x77\x75\x45\xd6\xa1\xc5\xca\x62\x44\xb1\x6e\x0f\x6d\xe2\xbf\x9b\x2c\x01\xfc\xd7\x70\x39\xd8\x43\x4a\x43\x14\x21\x7a\xa7\x72\x66\xe4\xdf\x60\xa0\xee\xf9\xe2\x74\x8a\xa8\x16\x8e\x15\x92\x8d\xaf\xb7\xbb\x35\xcd\x13\x43\x54\x53\x1c\xb5\x64\xaa\x1b\x54\x36\x18\x10\xbe\x59\x49\x71\x21\x48\x42\x22\x6e\x46\x48\x30\x0d\xa2\x44\xac\x9c\x73\x2a\x02\xfc\xd5\xfc\xf9\x65\x4f\x7b\x03\xac\xa9\xc1\x96\x75\x9c\xed\xbf\x66\x48\x63\xee\x96\x4d\x5c\x0a\xb2\x2d\x81\xed\x8e\x39\x1d\xa7\x49\x48\x18\xc3\xad\xad\x04\x91\x6e\x3d\xb1\x12\x83\x23\x82\x2e\xac\x69\x87\xbd\x5e\x8c\xee\xb8\x43\xd8\x75\x3b\x12\x25\xc4\x89\x16\x71\xca\xbc\x48\x33\x1a\x2a\x37\xee\x5c\x02\x01\x8d\xcf\x34\xc8\x49\x30\x67\x1b\x52\xdf\xcb\xaf\xed\xbf\x52\xfe\x6d\xff\x79\xbc\xcb\xdf\x45\x17\xab\x7b\x78\x5d\x9a\x5b\xc6\x31\xdc\x12\x36\x24\xd2\x4e\x36\x3d\x50\xa0\x2b\x06\x49\xe8\x3f\x06\xec\x98\x7d\xa9\x7c\x69\x58\x52\x9c\x05\x56\x73\x68\xb0\x2b\xc5\x07\x06\x38\x55\x05\xa3\xc8\xb8\x5c\xe0\x2f\x8a\xa8\x3c\xbe\x43\x5a\x30\x8a\xc8\x1e\x83\x94\x72\xd6\x43\xae\x09\xad\x1f\x93\x3e\x21\x25\x24\x40\xa2\xa9\x28\x2e\x6b\x91\x63\x4b\xe8\xb9\x4a\x92\x63\x4a\x2e\xaf\x31\x31\x58\xba\x91\x2d\x69\x53\x10\xc4\xdd\x15\x8b\x6e\x57\x14\xb5\xe5\x60\x43\xb2\x10\xbe\x4e\xa4\xa2\x38\x74\x4a\xfb\x24\x65\x01\xa1\xa4\x65\x7d\xfc\x93\x49\xaa\x2d\x3d\xf1\x50\x68\xa0\x27\x82\xa1\xd4\x77\xfd\x42\x2a\xb6\xe8\x6f\x65\x0d\xec\x4f\xfd\xe0\xd2\xb5\x3a\x45\x62\xfa\xeb\x48\x3a\xe8\xa9\xd9\xc7\x1c\x6c\x30\xe0\xa1\x15\xb5\x95\x85\x51\xa9\xb6\x95\xf8\x72\xbd\xcb\x80\x25\x96\xd6\xcd\xb6\x05\x62\x50\xc5\x70\xc6\xcd\xe0\x2d\x0e\x10\x32\x7e\x94\x10\x47\x63\x0a\x57\x0d\xda\x5e\xc3\x8a\xfe\xe7\xb3\x1d\x01\xfb\x8f\x72\x8b\x11\xe2\x58\x8d\xe4\xfd\x45\xba\x30\x1c\xcc\x99\xdd\x8b\x83\xbc\x10\x90\x4e\xd5\xfe\xee\x70\x42\xea\xb0\x82\xe0\xbc\x68\x5d\xbd\x38\x81\x38\xb4\x90\x6e\xf7\x49\xa3\xb0\xa6\x4b\xac\x21\x01\xdc\xe7\x41\x49\x7e\x20\x9b\x76\x6d\x62\xa6\x25\xed\xef\xcb\xb5\x5c\xaf\x05\x90\x7f\xb7\x52\x09\x22\x34\x59\xcc\x52\xaa\xd3\x94\xa9\x1d\x1e\xd6\xba\xd9\xe5\xfe\x22\xb8\x0c\x46\x31\xf5\x75\xcf\x3d\x0e\x70\xfb\xa9\x9c\x26\xa1\x0e\x48\x95\xa4\xc9\x23\x51\x09\x46\x87\xbd\x4d\x5c\x97\x4d\x3d\xf8\xf6\x63\x9c\xd1\xaf\x82\xed\xc8\xa5\xd2\x83\x11\xa3\x5a\xe5\x04\x81\xed\xdb\xc6\x1e\xaf\x68\xd7\x9c\xc4\xd2\x1b\x41\x7c\xa2\x35\x74\x00\x52\xee\x83\x58\x08\xa6\x96\x20\xa4\xe4\x3c\xc8\x95\x40\xb9\x66\xe2\x8a\x2f\x6d\xb8\x7a\x45\x47\x18\x6d\x98\x65\xdd\xbf\xce\x82\x7c\xe6\x43\x3a\xeb\x35\xcd\xb2\xb2\x9b\x48\x7c\xe5\xe8\xbb\x57\xac\x92\x78\x98\x38\x1a\x86\xfc\xda\x0b\x71\x5d\xd6\x13\x7f\x5b\x25\xc7\x2e\xb2\x07\x65\x4a\x84\xaf\x52\x09\x71\x12\x65\x79\x51\x2e\x20\xae\x28\xe3\x95\x68\x40\x7c\x6a\x0f\xdf\xf5\xab\xf1\x55\xe7\xf8\x12\x02\x6d\xf2\x81\xd7\xcd\xb3\xd5\x58\x53\x94\xd7\xa2\x7a\x95\xa1\xfb\x79\x9a\xd2\xc9\x73\x20\xa1\x2b\x13\xd8\x95\x9b\x20\x3b\xdf\xbe\xe0\x76\xa5\x90\x24\x3e\x0d\x03\xb4\x1b\x0b\x5e\xb6\xd6\xac\x4e\x3b\xeb\xd9\xd4\x45\x4d\xd7\xa6\x0c\x34\x51\xf5\x0f\xd6\x06\x03\x6b\x07\x36\x2e\x70\xb4\xcb\x63\xa4\xbe\xb4\x2a\xef\xf0\x7d\x79\x30\x30\x7c\xe9\x96\x86\x9d\x1e\x8f\xc1\x2d\x6e\xca\xe3\x34\x45\xc9\xb4\x42\x36\x33\xd5\xd8\xe6\xc8\xf9\x24\x5e\xbb\x9c\x08\x8b\x43\x55\xa2\x10\xf9\x82\xa4\xae\xa6\x12\xd1\x84\x24\xa9\xae\x81\xb1\xb7\x45\x90\xe7\x34\xec\xb1\x2a\xb4\xeb\x3b\x06\x91\xa3\x25\x6d\xf2\x32\x45\x78\x30\x03\x16\x3a\x0d\x73\x48\x9f\xef\x54\xd3\x66\x95\xac\x2c\x43\x69\x4b\x79\xad\xad\x2c\x66\xc8\xb5\x24\xc4\xaa\x81\x08\x61\xd2\xa8\x40\x75\xa9\x27\x0b\x8c\xe8\x38\x58\xe6\x94\x9d\xc4\xc3\x34\x69\x17\xe4\x3c\x48\xc0\x28\x29\x5f\xa4\x51\xcc\xaf\xc3\x93\x82\x66\x93\x60\xac\xbc\x63\x37\x38\x8a\x37\x39\x6e\xdb\xfb\x54\x3d\x43\x24\x8e\x7f\x5d\xb5\xa8\xd1\xe2\xfc\x89\x16\xdc\x5d\x33\xdb\x20\x7b\xe4\x7c\x16\x8d\x67\x60\x35\xc0\xd6\x77\x91\x8a\x7d\x8c\x2c\xe2\x65\x5e\x7f\xf7\x2a\x18\x41\xcd\x04\x6b\xee\xe1\xb7\x64\xaa\x91\x61\x57\x17\x54\x55\xb1\x7a\x01\xf2\x36\xc2\x63\xb9\xe0\x88\xac\x95\x6f\x24\xc8\x54\x09\x31\xe6\x53\x87\x3e\xb7\x48\x6f\xce\x7d\x3d\xc7\x1e\xef\x79\xb7\xc1\xfd\x79\x19\x6f\x72\x4e\xc3\xde\x63\x70\xc9\x53\x16\xdf\x81\xd8\xdd\xfe\xb4\x61\x38\xc7\x9f\xfb\x7a\x85\x78\x4e\xd3\x5e\xbb\x25\x8b\x6e\x77\x95\xfd\xb3\x69\x2c\xd1\x1a\x7e\x5b\x66\x02\xad\x4c\x1a\x5a\xc3\xed\x1d\xd7\x26\x5a\x8c\xbc\x35\xdc\xd9\xba\x3e\xed\x6d\x3f\xb9\xb7\x7d\xba\xb7\x7d\xfa\x6b\xdb\x3e\x21\x63\x67\x61\x03\x79\x07\xd6\xce\x25\x7e\x2c\x85\x75\x25\x7f\x98\x75\x34\x91\x97\xce\xfb\xd9\x34\x1f\x96\xa8\x6e\x90\x90\x27\x8e\xb0\xa2\x12\x1c\xfb\x4e\x6e\x27\x8c\x7d\xca\x4a\x09\xb6\x71\x02\x3e\xdf\xf3\xf5\xe1\xfd\xbb\x03\xce\xdc\x6f\xd3\x01\x1e\x70\x09\x58\x2d\x85\x17\x8c\x45\x4a\xde\xbf\x3b\x10\x17\x05\xfe\x0e\x88\xf7\xe8\xe0\x45\x51\xb7\x3c\x4b\x73\x7c\xfd\xe5\x36\x7e\x70\xf4\xf6\xed\xcb\x83\x8f\x87\x47\x6f\xc9\xcb\xf7\xef\x8f\xde\x0f\xc9\x81\xd2\xff\x8e\x79\x95\xfc\x48\x1f\x52\xd2\xde\x20\xac\x3e\xb2\xd1\xee\xfb\xfb\xa0\x5d\xde\x34\x1d\xbb\x7a\x68\xcf\xb5\x08\x05\x5b\x3d\x11\xaf\xcc\xdf\x84\xb4\xa4\x1d\x12\xdb\x2a\x18\x0d\x13\xde\xa5\xd1\x3c\x0f\xa6\x94\xec\x91\xf5\x75\xf1\xd4\x90\x6d\xeb\xe2\x77\x9f\x87\x8c\x75\x52\xfa\xb2\xd8\x33\xe2\x4d\x1e\x12\x35\x5d\x7f\xff\x70\xf4\x16\x66\x25\x53\x5d\xf2\x84\x59\x15\x7d\x73\x1e\x93\x69\x1c\x88\xaa\xcd\xd1\xea\xd9\xfc\xc8\xef\xab\xf1\x78\xe7\x79\xd3\x29\xfd\x78\xf8\xe6\xe5\xd1\xf1\xc7\x21\x11\xb7\xde\x8c\xb8\x58\x27\xe7\x39\xd9\x20\x6d\xf6\x5f\x30\x9e\x31\x8e\xd1\x36\x62\xda\x08\x3f\x92\xdf\xde\xef\x56\xf7\xbb\xd5\x5f\x7b\xb7\x42\x9b\x15\x3c\xbb\xfc\xa3\x9a\xe9\x36\x7f\xcd\xde\xe8\x11\xfd\x1d\xbe\x65\x97\x4e\x87\xd8\xfa\x57\x87\x33\x1c\x93\x29\x37\x8e\x21\xe2\x91\x2d\xb4\xa5\x0f\x0b\xb6\x15\xf2\xd7\x7e\x08\xbf\x90\xb6\xbc\x48\x93\x8e\xf3\x79\xec\x0a\x52\xf1\x1e\x39\x4f\x93\x6e\xcd\x1b\x7a\x94\x99\xa4\xc9\xe5\x3c\x5d\xaa\x16\x55\x42\xc9\xe9\x4d\x22\x6d\x4a\x25\xae\x68\xc8\xe5\x01\x88\x62\xe0\x84\x6b\x12\x69\xea\x78\xf6\x3c\x4d\xe3\x6b\x08\xaf\x1a\x82\x0f\x72\xbe\x49\x50\x0e\x19\xa2\xd9\x81\x07\x22\x34\x34\x3c\xa6\xcb\x13\x1f\x44\x23\x60\x8b\x52\xd4\x3e\x58\x33\xa6\x09\xbb\xdf\x62\x10\xa6\xe7\x28\x5e\xaf\x1d\x81\x01\x21\xdf\xbd\x13\x89\x3c\xa2\x42\xd4\x17\x35\xc1\x05\x87\xf8\x5d\x62\xef\xea\x2f\xaf\x0d\x96\x4b\xaf\x88\x31\xb6\x39\x7d\x86\xdc\x07\x38\xb8\x31\xb2\x70\x1d\x6a\xf7\xe0\xde\x70\x41\xde\x0a\xca\x51\x87\xaa\xab\xf2\x12\xc4\x29\xd1\xf5\x50\xde\xd1\xf4\xda\x7c\x74\xb0\x42\x3d\x43\x2b\x84\x43\xf3\x8a\x71\xe1\xa2\xd5\xf4\xb0\xd2\x88\xa4\x2b\xf5\x1b\x0d\x27\x8f\xa6\x49\x50\x2c\x33\x7b\x38\x38\xbd\x6c\x3c\x18\xa6\x7c\x3c\x0a\xaa\x6a\x40\xe0\xc1\xa0\x79\xff\xc5\x13\x07\x49\xde\x82\x23\x05\x49\xa8\x54\x4b\x45\x0a\x41\x89\x27\x51\x12\xc4\x7e\xb3\x67\x5e\x87\xcf\xa8\x14\xaf\x6b\x2b\x4b\x54\x6f\x20\x45\xe6\xd1\x33\x9a\x5d\x16\x33\xae\xb2\x9e\x8f\x22\x60\x19\x29\x8f\x12\x0d\x7d\x13\x71\x16\x2a\xb1\xe5\xf1\x0d\x22\xba\xe3\xb8\xb6\x53\x8b\x5b\xfd\x42\xaf\x00\xef\x3d\x88\x68\x7f\x1d\xca\x41\x47\x9d\x6b\x11\xa9\xd7\x5c\xb7\x76\x1e\xb7\x9f\xa2\x72\xfe\xb2\x55\x38\x17\xe4\x8e\x3a\x25\xb5\x77\xba\xae\x4a\x53\xcc\xd3\x47\xd9\xb1\xdb\xb2\x74\x14\xc3\xa2\x92\x9f\x83\xe7\x65\x11\x4c\x5b\x94\x3f\x89\x20\xc6\x94\x65\x0d\x20\x80\xf0\xfc\x31\xba\xd1\xc9\xc9\x32\x8e\x4b\x9e\xb8\x68\xcd\x22\x71\x6f\xff\x4d\x85\x30\xd4\x57\x16\x9a\x11\x32\xad\xd1\x9c\x55\x5c\xf7\x0b\xec\x3b\x8f\x63\x3a\x7c\xfb\xea\x91\x33\xfb\xea\xbc\x6b\x07\xd7\x5b\xa9\x36\xe8\x7b\x0d\xc5\x99\x44\x32\x4e\x93\x71\x50\x74\x8c\xd9\xef\x96\x3b\xb2\x29\xe5\x7a\xc2\x8b\x4d\x39\xd7\xb3\x77\x5b\x5a\xc6\xe1\x42\x7e\xf7\xe0\xf2\x30\xc1\x15\x84\xe5\x10\x9c\x10\x78\x2d\xa1\x6a\xf6\xc1\x03\xd0\x37\x98\xbd\xa8\xde\xa6\xcb\xbd\xef\x00\x0e\xee\xd0\xfd\x4e\x90\x4d\xad\xd5\xa5\xc5\xc7\x67\x46\xc9\x21\xfe\x12\xae\x79\xb6\x90\x2b\x14\x31\x3e\x71\xff\xa2\xea\xb5\x9f\x6a\xf1\xc9\x24\x5f\x94\x94\x86\xeb\xdb\xee\xee\xb2\x95\xf9\x4b\x1a\x25\x9d\x56\xcb\xad\x5c\xbd\x8a\xe3\xe4\xc6\xf1\x84\xaf\x37\x40\x36\xec\xb0\x65\xde\xed\xe1\x1e\xe1\xab\x9a\x24\x2d\x0e\x8d\xbe\x2a\x14\x7a\x1c\x0e\x69\xe0\x86\x6d\xc3\xb3\x85\x6e\xcf\x6a\x05\xb7\xaf\x36\x12\xc4\xb5\xd3\x65\xb1\x58\x16\xaf\xd3\xa9\x66\xd7\xc2\x19\x0f\x5a\x2d\xd2\xfb\x0f\x77\x34\x83\xc4\x32\x13\x4c\x73\x6b\x18\x93\xed\x07\x8a\xc3\xf0\x5b\x2e\x83\x9f\x66\x34\x5c\x8e\x29\x9a\xab\x60\x3c\xee\x11\xe1\x8b\x12\xf3\x93\x60\x3c\x3e\x11\xc9\x9c\x27\x32\xa4\x88\x6f\x49\xe5\xcf\xcc\x29\xeb\xe7\xb3\x68\x52\x74\xba\x64\xe8\x60\x54\x66\x39\x4a\xab\x60\x3c\x96\x5a\x2a\x6e\xed\xcd\x49\x9b\xc6\xb4\xa0\x72\x1c\xda\x4b\x92\x99\xce\xa9\xea\x06\x2c\x03\xdd\x5f\x89\x87\x25\x62\x69\xb3\xad\x9e\x8b\x71\xa5\x9e\x15\xee\x4a\x2e\x32\x1a\xae\x16\x7e\x3c\x9e\x1b\x6c\xe9\xe7\x8f\xee\x92\x69\xbb\xde\x25\x53\x55\xf1\xad\x72\x23\x3b\xb3\x02\x62\x48\x80\x86\xf3\x07\x5b\xec\xb0\xfd\x3e\x39\x02\xe5\x1f\xca\x01\x54\x29\x2d\x63\xdb\xff\x06\xaf\x1a\xad\x67\x6d\xde\x27\x8d\x95\xd4\xf8\xb5\xbc\x4d\x31\x50\xf3\xe4\x5a\xc6\x01\xa5\x81\x21\xb4\x74\x82\x00\x4e\x0d\xea\xf5\x01\x60\x07\x56\x9a\x28\xbc\xa0\x27\x8a\xdd\xf3\xb6\x4f\x4b\x07\x60\x58\x4d\x78\xef\x84\x0d\x5c\x22\x97\x58\x55\x57\xc2\x75\x8e\xb2\x6e\xe8\x1b\xeb\x69\x13\x05\xfc\x6d\x9d\x5d\x0e\xfc\xba\xc9\x37\x9c\x06\x3d\xfa\xbf\xea\x48\x22\x38\x88\xc8\xda\x60\x40\x3e\x1e\xbd\x38\x1a\x92\x8c\x72\x8b\xac\x1e\xc9\x53\x61\x3a\xa3\xae\xb8\xb4\x31\x4e\xc0\x35\x5d\x7d\x56\x2e\x2a\xda\x39\x49\xe8\x98\xe6\x79\x90\x5d\xb2\xc5\x02\x21\xb0\x73\x46\x6e\x6d\x70\x58\x0c\xee\xa2\xc9\x79\x9a\x7d\xe6\x52\xde\x7c\x19\x17\xd1\x22\x46\xa1\x1c\xcc\xe0\x29\x7e\xff\x46\x83\x87\xc4\x6b\xcc\xfd\x8d\xb4\xe5\xe6\x75\x98\x66\x0c\xb2\x79\xc3\x88\x54\x37\x46\x43\xbe\x71\x98\x27\x13\x55\xaa\x2f\x71\xe4\xf3\x60\xb3\xce\x3a\x77\xe2\xc2\x9e\xfa\xce\x0f\x65\xb0\x16\x3b\x25\x8e\x81\xa3\xd9\x4f\xe1\xd0\xc9\x57\x53\x8d\x1d\xa4\xb7\x9e\xd2\x23\x94\xae\x5f\x10\xbc\x3d\x26\x07\xc0\x73\xe4\xe6\x39\x3e\x6c\xf0\x1c\xc5\xf4\x84\x49\x8f\xd9\x45\x8f\xe9\xa7\x28\x96\xd3\xc2\x0a\x15\xe3\x73\x72\x55\x79\x10\xab\x9e\xee\x88\x56\x8c\x57\xc3\x78\x86\x5c\x46\x2f\x44\x47\x39\xb9\x5c\x79\xd8\xaa\xe0\x1d\x0c\x9c\x20\xc3\x51\x7a\xd1\x37\xd8\x91\xfe\xd8\x25\x12\x40\x72\x21\xf8\x7f\x57\xa6\x2a\x96\xc3\x7f\xa8\x74\xc4\x68\xe4\x4f\x53\x8e\xa4\x17\xe2\x7d\xb7\xcb\xcd\x39\x1a\xb4\x6b\xa2\x12\xfe\x5c\xc2\x91\x5b\xc3\x1d\x70\x61\x84\xbd\x86\x33\xc6\xfc\xdd\xfd\xcd\xe8\xfd\xcd\xe8\x5f\xfb\x66\x54\x5c\x8b\x8a\x37\xbf\xff\x15\x01\xf6\xee\xd4\x65\x38\x1c\x02\x1e\x92\x83\x34\x39\xa3\x8c\x15\x05\x22\xe6\x31\x9c\x83\xe1\x2c\x00\x81\x8b\x65\x24\x17\x46\xc0\x41\x9c\xa7\x24\x88\xe3\xf4\x3c\xe7\xf1\xd9\x41\x51\x97\xf7\xd7\x58\x45\x52\xf0\x7f\x13\x5d\xd0\xf0\x9a\x67\xad\xb9\xf7\x1a\x6b\xe2\x46\xb5\x48\xed\x28\xc7\x42\x65\xa9\x0e\x9c\x1d\x53\x25\x4a\xae\xae\x64\x84\x74\x9d\xd1\x56\x3a\xd4\x76\xd7\x56\x06\xf0\xb3\x9c\x10\x91\xb8\x62\x96\xf7\xa1\x23\xf5\x8b\x46\x43\x5c\x0f\x71\x34\x01\x55\x73\x17\x6a\xdf\x74\xea\x04\x48\xc1\xf7\xf1\x93\x56\xe3\xce\x48\x46\x51\x52\xed\xc0\x91\x8b\x89\x9a\x8c\xd3\xca\xcb\x1f\xdb\x12\x36\x55\xfa\x7d\x71\xd8\xea\xb1\x49\x38\xa3\x59\x34\x01\xc7\x1e\x19\x1d\x07\x8c\xe3\xa0\x48\x35\x0f\x1e\x90\x38\xf8\xf5\x92\xc4\x69\x10\x92\xf0\x32\x09\xe6\xd1\x98\xa4\x09\xcd\xa1\x35\x31\x21\xba\x21\x11\xcd\x3a\x55\x7a\x02\x80\x92\x06\xf6\xb2\x71\x07\x8a\xcd\xd6\x94\x16\x47\xea\x90\xec\x71\xe1\xcc\x26\x46\x0b\xac\x75\xfe\x01\xb0\x32\x41\x4c\x89\x3c\x26\x97\xdf\x7a\x18\x9a\xfe\xd2\xab\x17\x9e\x9d\x9f\x47\x10\xb0\x04\xf5\x8a\x80\x0e\x22\xa7\xfc\x04\x3d\x74\x9e\x56\x71\xe1\x7d\x99\x51\xa1\x5e\xec\xc1\x05\xde\x98\xaf\x0e\x7e\x38\x9e\xd1\x0b\x9f\xda\x40\x6b\x4d\xad\x04\xcb\x15\x65\x83\x22\x86\xe6\x53\xc4\xd5\x2e\x55\xca\x5b\x0a\x7f\x19\x85\xfb\x99\x88\x4f\xce\xaa\x12\x8b\xac\x4b\x86\x72\xbd\x09\x30\x57\x56\xf2\x5d\x13\x78\xde\xd7\x41\x37\x87\x56\xb7\x7b\x0e\x1c\x5b\x02\x1a\x8a\x7d\xb9\x30\x45\x8a\xeb\x71\xf3\x03\x19\x96\x59\x02\x05\x38\x28\xb3\xdd\x1a\xdc\x5f\x0d\x57\xba\xd6\xea\xab\x72\x5d\x5f\xef\x6e\x52\xa3\x28\x65\xea\xa7\xd0\x41\x87\x53\x60\x3e\x63\x14\xe8\x41\xb8\x45\xea\x52\x55\xb3\x1f\x86\xfc\x59\x84\x52\xa2\x05\x49\x48\x72\x5a\xe4\x64\xb9\x80\x0c\x71\x1a\x01\x96\x11\x15\x34\x63\x7b\x47\x7a\x26\x84\x2d\xe1\xc7\xb4\xbf\xb6\x86\x9e\x46\xbc\x4e\xa7\xf9\x7e\xf1\xa1\x08\xb2\x62\xcd\xd6\x34\xe6\x34\x9e\xa8\xc4\x89\xfb\x80\x59\xb0\x70\xb3\x16\x23\x50\x18\x8d\x27\x8e\x13\x1f\xf9\xca\x6e\x4a\x0b\xae\xcf\x62\x85\xad\xa7\x76\xa0\x5f\xd0\xc3\xcc\xa1\x7b\x44\x9e\x3c\x2d\x9e\xc1\x5a\xe9\xfb\x18\x07\x64\x4c\x69\xd1\xb1\x1e\xfd\x08\x4b\x46\xe7\x94\x33\x18\x88\x17\x34\xf0\x4c\x94\xf5\x51\xa0\x0d\xcc\x26\xe1\xa2\x5b\x26\x4a\xb3\x23\x70\x85\xd1\xef\xf7\xc9\x2f\x4b\xee\x09\x98\xb5\xc9\x78\xaf\x73\x5e\x2e\x79\x19\x59\xf1\x2a\xf2\xda\x7e\x02\x6b\xad\x74\x35\x0c\xff\x19\x93\x67\x7a\x0f\xa6\xdc\x90\xb3\xee\x9d\x26\x7f\xbc\x63\x9a\x7d\x1a\xfd\xab\x77\xc4\xfa\xf5\x48\x77\x91\xc6\x31\x27\x1f\x3f\xd9\x0a\xda\xd4\x60\x36\x5d\x2a\x95\x08\xa8\x6d\x93\x37\xca\x0c\xd7\x20\x96\xb4\x84\x5c\xc4\x8c\xa6\xce\x9c\x4a\x23\x0b\x46\x7a\x72\xac\xbe\x49\xf0\x3d\x9b\xf2\xd1\x44\xda\xf8\x24\xdf\x94\x3a\x6e\x46\x19\xda\x4c\x19\x86\xa6\x95\xd7\xcf\xac\x04\x5d\xc9\x50\x16\x72\x49\xe7\x56\xe8\xb9\x1d\x91\x96\xea\x03\xa0\x4f\xb6\x37\x6a\xc6\x78\xde\xa5\x71\xcc\xf8\x8c\xee\x09\xa7\xc1\x21\x2f\xc2\xce\x69\x74\x4e\x93\x02\x8e\x9c\x7d\x46\x71\x30\x34\xbd\x97\x2c\x84\xa1\xfd\x09\xc7\x14\x90\xe3\x61\x78\xda\x93\x57\x54\x46\x72\x4f\x13\xa3\xc8\xc1\x7e\x8c\xb8\x82\x18\xe8\x97\x6d\xd6\x32\x6c\xa1\x43\xe2\x96\x4c\xd6\x23\x4e\x7c\x0f\xb9\xdc\x3c\xb7\x03\x3d\x71\x9a\x3a\xc8\x28\x8c\x09\xec\xb5\x0f\x3c\x2f\x1d\x81\xd9\x71\x0d\x36\xba\x70\x35\xf0\x81\x34\x7c\xab\xa8\xca\x4a\x75\x5d\xa5\xca\x1e\xbf\x52\xcd\xec\x0c\xb2\x25\x20\xa5\x2e\xe3\x4b\xad\x31\xb5\xb0\xa9\xc5\x60\x4b\xf4\x45\xd0\x0e\x1a\xcc\x04\x04\x29\x67\xde\x7d\x32\xa6\x56\x88\xb0\xac\x51\x19\x62\xcb\x3d\x28\xcb\xd7\x6c\xcf\xc9\xc2\xd7\x4e\xea\x77\x69\xbf\xfb\x09\x3d\x17\xb7\x4e\x18\x07\xd8\x59\x18\x67\x92\x51\x68\xf8\xc6\xf3\x33\xc7\x9a\x65\xdf\x19\x8f\x3c\x62\xee\x78\x54\xcb\x07\x89\xe0\xc8\xe2\x5c\x58\x41\xbd\x96\x47\x52\x97\xbd\x54\x94\xf5\x77\xa3\x5a\xef\x6c\x2c\x6d\x46\x04\xa1\xeb\x08\x10\xfb\x6a\xc8\x28\x5c\x32\xb0\x33\xc7\x82\x26\x21\x18\xb8\xa9\x49\x0e\x72\x50\xb4\x24\x39\xa3\x50\xe5\x0c\x46\x57\x94\x4e\x00\x98\x15\x62\x52\x4f\x97\x2b\x57\x54\xeb\xcb\x24\xc8\xf3\x68\x9a\xd0\xb0\xef\xf6\xd1\xa6\x28\x1f\x4f\xf6\xcd\x8e\x92\xb1\xc6\xa3\x9a\x09\xf2\x36\x83\x4d\xc6\xd0\x48\xb4\x3d\x31\x89\xb1\x74\x18\xc4\x19\x0d\xc2\x4b\xfd\x60\x5d\x0b\x8a\xf9\xed\x29\xcd\x14\x64\xa5\xf4\x5a\x37\xae\x68\xd2\xb1\x5a\x53\x4e\xe0\x36\x5d\x97\x5c\x7a\x65\x72\x2e\xee\xf3\x0b\xc9\xa4\xe8\x22\x15\x63\x8b\xe6\x73\x1a\x46\x41\x41\xe3\x4b\xbb\x59\x41\xee\xe3\xa6\xb4\x6d\x4a\x27\x50\x7d\xa7\xc4\xd5\x84\xcf\x6d\x15\xd6\x64\x73\x96\xcf\xb6\x1f\x3e\x18\x74\x97\x7b\xee\x84\xe9\xb0\x37\x73\x93\xb7\x71\xc3\x3e\xd4\x0f\xa9\x8e\x31\x98\x23\x1e\x8d\x35\x4f\xe2\xba\xd4\x1d\x08\xc2\x35\xba\x13\xbe\x6e\x3a\x10\xbc\xef\xd6\x8f\xc7\x91\x1c\xd2\x85\x14\x1c\xcc\x81\xd4\xf0\x77\x78\x5a\x3e\x4f\xcf\xa4\x4a\x93\x04\xf9\x65\x32\x56\x87\x1f\x9f\x60\xe4\xe3\xdb\xcb\x04\xde\x4e\x1b\x08\x40\x32\x86\x85\x2d\x87\x77\x61\x43\xf8\x55\x6a\x36\x04\x7f\x07\xa3\x53\x2b\x66\xbb\xcf\x7b\x82\x23\x53\x78\x4d\x4e\x54\x49\x5b\x28\xb7\x76\xd4\x12\x3b\xca\xc1\x80\x1c\x4e\x34\x67\x8c\x72\xf5\xae\xef\x92\x0a\xff\x2b\x24\x2a\x88\x76\xd3\xa5\xcb\x9d\xcf\x28\x18\x63\x88\xd1\x77\x09\x67\xaa\x39\x89\x0a\x93\xad\x7a\x37\x6a\x87\xd8\xd5\x32\xf3\xed\x1e\x3e\xf4\x8b\x1a\xed\x09\xc5\xfb\x31\x84\x48\xf1\xf0\xb7\xaf\xe8\xa0\xc7\x92\xc7\x33\x6a\x5b\xef\xc5\xe9\xb4\xac\x5d\x62\x31\xa6\x8a\xb3\x05\xd4\x32\x64\x7b\x42\x89\x3f\x3e\x7f\xc4\x12\x13\xc4\x39\x00\xd8\x03\x6b\x4e\x47\x8e\x9f\x29\x21\x88\x1f\xbe\xe0\x09\x43\x41\x63\x9d\x6e\x9f\xef\xc8\xe3\x40\x7a\x2c\x04\xbf\x2a\x34\x24\x6c\x75\xcf\xb2\x34\x49\x97\xb9\x72\x5f\x28\x0c\x03\xd8\x6e\x6f\xbb\x22\xe2\xd5\x08\x61\xb7\xed\x35\xaf\x05\xa7\x12\xa9\xb6\xd2\x6b\x42\x40\xae\x0d\x1d\xab\xa1\x7e\x0e\x6f\x31\x6f\xd7\x35\xfc\xd8\xb9\x22\xe5\xb8\x75\x82\xbf\x55\x5c\x90\x5e\x9f\xf6\x76\x36\x9b\x5c\x81\xb6\x97\x39\xd7\x8b\x8f\x8b\xf6\xda\xfd\x85\xe8\xfd\x85\xe8\x9f\xf8\x42\x54\x3f\x15\x45\x2a\xeb\x9b\xbc\x17\x15\xc0\x2b\xdc\x64\xfa\x82\xbf\x35\x7e\x62\x9a\x4c\xa2\xa9\x17\x8e\x67\x49\xc0\xc3\x51\x60\x05\x75\x89\x46\x41\xe2\x09\xd4\x02\xda\x64\x1e\x69\x8a\xdb\x48\xf3\xcb\xcc\x51\x34\x15\x1e\x0c\x2c\x2b\x46\x0e\xf4\x3c\x9a\x5a\x4a\x7d\x6c\xcd\xc8\x35\xce\x57\x1c\xe2\x4a\xc1\x5e\x9b\x5e\xab\x74\x3a\xb6\xc4\x05\x3d\x63\x49\x1b\x86\x54\xc4\x7b\xe7\x7d\x86\x56\xa4\xaa\xac\x04\xdb\x55\x4a\xa0\x28\x7f\x97\x51\x71\x0d\x8a\x6e\x27\x8c\xba\x47\x3a\xdd\x6a\x60\x84\x4b\xb0\x83\x84\x70\x7f\x4f\xae\xae\xdc\x3c\x71\x36\xf5\x67\xd2\x20\x8b\x23\x56\x14\x75\x2d\x59\x2c\x8b\x17\x74\x12\x2c\x63\xef\xc5\x49\x5d\x1f\xd9\x8e\x6c\xb7\xa3\xae\x7c\xbd\xe1\x5b\x18\xc9\xf4\x43\xd4\xa2\xc7\xf7\x54\xf9\x3d\x0e\xee\x82\x35\x8a\xdf\xa2\xfb\xf6\x8b\x2e\x2e\xa0\xb0\x5a\x4a\xe6\xd8\x68\xd4\x53\x21\xca\xf6\xe0\x41\xd2\xd6\x2b\x7a\xe1\x19\xb9\x58\x55\x7c\xb0\x39\x32\x8a\x4c\x27\x24\x30\x7c\x03\x82\xe3\x49\x65\x47\xa0\xec\x02\xd8\xba\x7b\xf5\xf2\x9f\xd6\x72\x83\x3a\x98\x5c\xec\x5d\x68\x52\x97\x6f\xf8\xd8\x75\x0c\xdf\xe5\x15\xb9\xd4\xf6\xbb\x75\x7a\x23\x7f\x7f\x31\x2e\x8f\xe1\xfa\x0f\x5d\xc1\xc2\xe7\xd5\x95\x45\x43\xfb\x63\x88\xbb\x80\x1c\x9f\x61\x78\x8f\xc7\x2d\x59\x2d\xf4\x49\xb8\xa1\xf2\x5f\x3d\x9a\x72\x10\xae\xba\x48\x45\xc0\xe8\xa8\x20\xf3\x68\x3a\xe3\x82\xa3\xf2\x5e\x2c\x94\x54\x4e\xcb\x45\x5a\xdb\x6e\x91\x9a\xad\x9e\xb4\xe7\xc1\xc5\x8f\x94\xbe\xa3\xd9\x4f\x41\xde\xee\x11\xf6\xfd\x2e\x8b\xd2\x2c\x2a\x2e\x8d\xf4\x69\x90\xbf\xcb\xa2\x31\x15\xbf\xd9\x7f\x30\xcd\xec\x47\x92\x26\x63\xea\x7b\xc5\xf8\x99\x5e\x56\xbc\x63\xfc\x4c\x2f\x9b\xbe\x64\x84\x9a\x1c\x5c\xf3\x1a\xf6\x90\xdd\xc5\x0b\x3a\x8e\xe6\x41\xdc\xc1\x00\xee\x4b\x32\xf3\xb2\xf5\x6b\x13\x3b\xf2\xb9\x79\xd7\x34\xef\xab\xfa\xee\x49\xff\xa6\xd4\x7d\x4f\xd7\x7f\x44\xba\x16\x42\x91\x43\xd8\x70\xff\x2a\x83\x09\x09\xaa\xf6\x8a\x4a\x8d\xe9\xf9\xc2\x14\x8f\x44\xfa\x9a\x21\x13\xd5\x52\x70\x71\xd1\xfd\xa2\x34\x83\x17\x7d\xbc\x9d\xae\xcb\xd3\xb9\xd6\x88\x99\x00\xca\x43\x46\x2a\xf1\x67\x02\xa8\x37\x20\x2c\x1d\xe1\x02\x5e\x9b\xf9\xab\x77\xa0\xbc\x6d\xd8\x50\x52\xf9\x77\xd1\x07\x92\xf2\x17\x82\x2c\x0d\x39\x0d\x72\x3f\xdc\x34\xc8\x0d\x28\x20\x5f\x04\xaa\x45\x45\x94\x6f\x0c\x15\xaf\x0d\x93\x50\x35\x55\xdb\x60\x25\xf5\x63\x18\xc3\xcf\xa7\x6a\xc9\x59\x75\xd5\x2d\xba\xe0\xe5\x2d\x3b\xb0\x46\x0f\x8a\x8b\xbe\x34\xfc\xf3\x56\x80\x9f\x19\x4b\x2d\xc4\xc5\xca\xcb\x46\x86\xe8\xb9\xc9\xf2\x11\xd1\x82\x2a\x57\x91\x0a\x5e\xb5\xca\x52\xb2\x2b\xb6\x5c\xd6\xe0\xa8\x43\x3a\xca\x50\xcd\xda\xf2\x41\xb9\xf4\xe9\x81\xd2\xa4\x27\x33\x1b\x2c\xb5\x52\xd0\xf2\x26\x4b\x16\x9d\x0a\x86\xb3\x9c\x2f\xe3\xa0\x88\xce\xe8\x4f\x41\x7e\x9c\xc3\x9b\xbe\xb2\xaa\x1c\x58\xab\xae\x69\x6d\x0d\x53\xa3\x1c\x1a\x3b\x9d\x4c\xe8\x58\xd4\xcc\x57\x6e\xc9\x72\x28\x2f\xe0\xa3\xe7\x52\x68\x7b\x51\x9a\xd6\x22\xb2\x58\x9c\x4e\x6d\xe3\x4b\x9d\x81\x22\x0a\x39\xda\x41\x50\xf1\x79\x75\x83\x9e\x07\xca\x0c\xb6\x4e\x11\x28\x5a\x6a\xb4\x0e\x81\xc8\x9a\xaf\x3c\x38\x38\x55\x2e\x36\xa8\xb0\xc1\x52\x33\x6b\xc2\x26\x46\x50\x83\xf6\xd9\x4d\x94\x73\x26\xf0\x52\x28\xf4\x0f\xf8\x68\xd8\x1f\x05\x39\xad\xe5\x8d\x3e\x50\x1f\x19\x78\xe0\x0c\x02\xe0\xf9\xd3\x20\x7f\x1d\xcd\xa3\xc2\x43\xbf\x26\x80\x28\xab\x12\x4b\x88\xde\xc8\x37\xca\xe4\xd1\xaf\xbe\xdd\x4e\x67\x1a\xd0\x45\x34\xa7\x79\x11\xcc\x17\xa5\x45\x14\x84\x5e\x58\x3c\x23\x29\x63\x5b\x46\x76\x59\xb5\x4a\xa7\x82\x3a\x13\x46\x93\x49\x34\x5e\xc6\xf0\xae\xa7\x0c\xd3\x1a\xc8\x1c\x48\x5a\x04\xf1\x8b\x26\x15\x58\x90\x58\x6a\x36\x57\xaa\x00\xd7\x3c\xce\x5c\xaf\x6e\xb6\x2b\x6b\x46\x05\x9d\x77\xed\x17\x7d\x8e\x59\x25\x40\xb9\x17\xd8\xc6\xaa\xf6\x49\x6d\xbc\x60\xdd\xf2\x1e\x71\x9d\x4c\x83\xc5\x1d\xa7\x53\xef\x2a\xc6\x1c\xc5\xb7\x86\xe3\x74\xaa\xd5\x6f\xee\x42\x86\x7a\x8d\xc5\x8c\x2b\xc4\x4b\x19\x5d\x7b\x44\x13\xf6\x65\x6c\x6a\x6a\x9c\x56\x86\x87\xc6\xec\xa2\xbb\xb8\x4e\x67\xd7\x32\x2a\x6e\xb0\xfd\x79\x2b\x31\x9a\x88\xd3\xa9\xa7\x6a\x99\x5a\x52\xa5\x2a\x64\x9e\x2e\xe0\x2a\xa7\xfe\xc4\x7c\x3e\x8b\x72\xc6\x8d\x17\x69\x5e\xdc\xe0\xc8\xfc\x2e\xcd\xab\xa5\x22\x37\x06\x53\x25\xd7\x76\x2b\xc5\x13\xcd\x3a\xa9\xcc\x42\x07\x03\xe8\x74\x7f\x11\x5c\xc2\xbb\x8a\x3d\x43\x4d\x86\xb3\x04\x92\x21\xa9\x28\x62\xef\x79\x4d\x66\x62\xd8\xf3\x34\xfb\xfc\x31\x7d\x97\xa5\x67\xb4\xbc\x0c\x02\xc2\x65\x17\x42\xe2\x2d\x2f\x28\x21\x50\x68\x81\x09\x8e\x3c\x65\x58\x52\x73\xd6\xc2\x3b\xc9\xdd\xac\x60\x9e\x82\xd2\xc9\x9e\xf1\xf5\x8c\x9c\xa0\xcf\x53\x32\x54\x66\x0c\xd7\xba\x55\xae\x83\xe7\xea\xf8\x38\x4e\xcf\xe1\x59\x89\xd4\x6b\x54\x55\x5f\xfd\x0c\x82\xc7\x4e\x64\xc4\x44\xd2\x24\xbe\xe4\x01\x21\x0a\xe3\x75\x86\x7c\x21\xc1\x5f\x42\xf8\x1e\xf6\xc8\x67\x12\x64\x68\x3f\xda\xc1\x0f\x24\xec\xa3\x35\xeb\x63\x23\xde\xa5\xee\x83\x80\xfe\x85\x95\xaa\x97\x9b\xd5\x51\xba\x9f\xac\xcd\x7b\x85\x6a\xc2\x16\x74\x0d\xf8\xa5\x17\x8b\x28\xbb\xf4\xac\x78\x94\x8b\xc9\x2d\xe7\xee\x63\xbc\xd0\x2c\xaf\x6c\x09\x58\xa0\x9e\x05\x00\x94\xed\x93\x25\x2c\x88\xee\xae\x6f\x55\xbe\x0f\xce\x25\xc9\x88\x14\x2f\x18\xaa\x7e\x3f\x1f\x47\x91\xbd\x7c\x65\x19\xbc\xdb\xfe\x3d\x17\x88\x53\x70\x48\x9a\xd3\xeb\x50\x35\x00\xfe\x94\x21\x0a\x9a\x8f\x39\x0c\x06\xab\xac\x08\x58\x9b\x78\x35\x96\x2e\x46\xbd\xdc\x6e\xb1\x92\xac\x6b\x00\x8e\xa2\x66\xf4\xaf\x98\xaa\xad\x91\xf3\x85\x4b\xc1\x66\x3e\x11\xbf\xc6\x4b\xe8\x39\xdc\xe8\x75\xcc\x60\xda\x70\xd5\x31\x0a\x92\x7e\x94\xff\x23\x88\xa3\xb0\x03\xb1\x2e\x44\xca\x8b\x28\xa3\xe3\xa2\xe3\xbb\xe7\x10\x2e\xc5\x00\x50\xd4\xd8\xe9\x3a\x97\x28\x58\xd0\xd1\x31\x88\x64\x0f\x3c\xd5\x1a\x5e\xeb\x3c\x15\x35\xa8\x42\xf4\xcc\xac\x89\xab\x27\x6c\x1b\x12\xe1\x57\x5c\xc2\xb6\x65\x50\x70\xbd\xd0\x3f\x5c\x26\xe3\x28\xf1\x4b\x2b\xc2\x91\x37\xba\x79\x5a\x37\x93\x88\xeb\xd7\xc8\x10\xcf\xc0\x0b\x12\x18\x21\x46\xc9\x14\x0e\x38\xde\xe3\xad\x0b\x66\xfa\x92\x12\x6e\x9d\x6a\x2a\xc0\x50\x66\xf9\x59\x34\x9d\xd1\xbc\xae\x3c\x86\x42\xb4\x23\x72\x3f\x27\xe9\x79\xf2\xa1\x08\x0a\xea\xf3\x2b\x88\x72\xcb\x1b\xc0\x55\xec\xda\x35\x2c\x96\x71\x4c\xc3\xba\x2a\x30\x54\xc9\x51\x57\xbb\x97\x2a\x89\x20\x50\x77\x81\x3a\xac\x85\xe8\xe9\x7a\x2a\x2a\xa8\x29\x69\xdc\xad\x0d\x3d\x69\x08\xd6\x77\x36\x18\x96\x67\xa1\x92\x36\x2f\x19\xfa\x93\x51\x09\x63\xe7\x1b\x7a\xd2\x38\x6c\xd9\xf5\xfb\xb0\x34\x07\x97\xf3\x0f\xa8\x3c\xaf\xa4\xac\xad\x93\xf3\x54\x61\x83\x18\xbd\x37\x54\x0e\x43\x6f\x2a\x86\xc7\xa7\x9a\xa1\x27\x0d\xc3\x5a\x68\xf4\x24\x62\x68\x9b\x0b\x0d\x4b\xd2\x39\xf7\x32\x6c\xb6\xf8\x05\x53\x6b\xb8\xf5\xb4\xcc\x13\x11\x63\xe1\xad\xe1\xce\xce\xf5\x69\x6f\x67\xeb\xde\x8b\xc5\xbd\xd1\xd6\x7f\x8d\xd1\x96\xa0\xf4\xbb\x08\x47\xb3\x9a\xef\xfe\x86\x96\x5a\x3c\x5a\x8e\x69\x82\xc5\xd3\xbe\x42\x10\x80\xe6\x6e\xfb\x83\x38\x1e\x58\x91\x2d\xe1\x3d\xae\x1d\x16\xc7\x75\xe6\x2f\x8d\xca\xdd\x08\x60\x15\x4e\xfc\x7d\x21\xc0\x3e\xf1\xcd\x4d\x38\x99\xc7\xc1\x6f\x57\x77\x00\xaf\x2b\x15\xbb\x03\xae\x95\x27\xdd\xae\x5a\x88\x9b\x17\xc0\xb1\x0e\xea\x94\xdf\x18\x46\x06\xc7\x15\x20\xe2\x13\x43\xdc\x49\x00\x02\xb6\x3f\xd8\x93\x61\xb8\xaa\x04\xbb\x00\xfd\x84\x0b\x9f\x2c\xb2\x69\x8e\x65\xdd\x1b\x84\x7c\x96\x32\xbe\x0e\x8f\x07\x7e\x20\x80\xd7\xf3\x47\x47\xd9\x34\xe7\x51\x06\xd6\x85\xf0\xd6\xac\xc3\x58\x18\xab\xec\x34\xee\xde\x0f\x0e\x29\xc9\x1c\x1c\xec\x4f\xbc\x6e\x74\x07\xe7\x1f\x9b\xed\xbb\xa0\x42\x4c\xec\x68\x3c\x34\x44\x44\x55\x48\x3f\x1c\x85\xd8\x17\xb7\x2a\xca\xc9\x38\xcd\x32\xd7\xa5\x24\x9c\x80\x82\x82\xee\x67\xd3\xdc\x17\xe5\x4f\xc7\x19\x7f\x48\xfe\x06\x27\xa8\x9c\x7c\x81\xf3\xd3\x35\x6b\x2f\x2a\xc4\x9b\x0e\xc3\xeb\xa4\x67\xaa\x70\x3b\xa5\x73\xa4\x0f\xb9\x1c\x0a\x50\xe4\xd8\x82\x04\x1a\xf1\xec\x8c\xcf\x1f\x02\x80\x42\xc8\x70\xe7\x02\x9b\x27\x38\x11\xd4\xd1\xbb\xd8\x56\x1b\xc0\xd3\xbf\x2c\xb8\xcc\xd7\x8c\xb9\x5b\xef\x38\xc1\x1f\x83\xae\x72\x49\xce\xce\xc5\x8e\x8a\xde\xba\x31\x10\xe0\xdc\xbd\x70\x25\xbc\xbe\x94\x30\xca\x58\x05\xac\x57\xb4\x70\x56\x97\xd8\x91\x84\xb8\xbe\xb7\x57\x46\xc8\xe6\xcb\x25\x76\xf6\x15\xf1\xd7\x2a\xa2\xa4\x75\x1c\x87\x02\x55\x2e\x78\xa5\x52\x06\x6c\x94\x30\xa9\x18\x41\x24\xd2\x77\x1c\xcc\x43\x5e\xce\xa6\xa1\x5d\x6f\x97\xb8\xe3\x0d\x62\xd5\xaa\x36\xd9\xaa\xa4\x3c\xd5\x7e\x25\xd9\x19\x61\x47\x57\x67\x18\xab\xf2\x0b\x33\x5a\x68\x49\x38\xd2\x6b\xcd\xcd\xf1\xf2\xe9\x78\x62\x83\x16\xa9\xdf\xf3\xbf\x11\x3b\x74\x8f\x94\x78\xf5\xf7\x39\x87\x17\xef\x56\xd0\x70\x8d\xa0\xa4\x15\xb6\x4f\x25\x51\x6b\x24\xea\x6f\x16\x9d\xc3\x5b\xbc\x72\xde\x6f\x14\xa3\x43\xb8\x17\xdf\xec\x91\xa7\x52\x1b\x54\xd1\xc4\x32\x59\x04\xe3\xcf\x47\x5c\x0f\x6d\x58\x01\x42\x92\xa1\x1b\x32\x93\x74\x17\x4c\x37\x4b\xb2\x2a\xfe\x43\x91\xde\x1e\xd9\x26\xcf\x64\xa2\xf4\x80\x4e\xe4\x39\x50\xbb\x04\x50\x7e\xcb\xcb\x1c\xa0\x63\x21\xa7\x27\x8a\x9b\x33\x2a\x74\x29\xd8\x7d\xb3\x8a\x7d\x77\xb2\x79\x4a\x86\x3e\x27\xdd\x07\x10\xfb\x39\x40\xe1\xb6\x25\xb2\xec\x80\xde\x41\x1c\xe3\xc5\xdd\xef\xf7\xe5\xfa\x3e\xb0\xcb\x5a\x9b\x8f\xe3\x1e\xe7\x90\x6f\x77\x10\xd6\x57\x82\xb2\xdd\x28\x50\x35\xf4\xcc\xb8\xfd\x32\x99\xfb\x82\x83\xb7\x87\xf2\xd0\x15\x18\xaf\xc3\x82\x24\x34\x7d\xa8\x48\x30\x1e\xf8\x9a\x9f\x8c\x58\x1d\x3c\x68\x20\x03\x17\x68\xf3\xd2\xae\x98\x55\x88\xdb\x5b\x47\xb5\xd0\xab\xb2\xd8\xc8\xab\x04\x3e\xf6\xef\x9b\x52\x06\xb3\xac\x25\xd5\x1e\x03\x07\x19\x2d\xff\x09\x97\xc9\x86\x58\x88\xd9\x0f\xb8\x7d\x36\xa5\x2f\x5c\x04\x8b\x3f\x76\x31\xad\xd0\xe7\xae\x9a\x25\x97\x96\x70\xfa\x5a\x7e\xdd\xf7\x14\x57\xeb\x68\x15\xe3\xa3\xc5\x8c\x23\x41\x54\xdd\x33\xba\xe6\x3e\xbc\x83\x52\x78\x09\x77\x8c\xf5\x80\x9c\x8d\x3b\x4f\x65\x9b\x34\xd8\x73\x1d\xdc\xb8\x3c\x00\xb9\xb7\x91\x2f\x2a\x0c\x27\x08\x3d\x6e\x5c\xb1\x6b\x3a\x15\xe6\x9d\xa6\xa1\xe3\x40\xbd\xc8\x2e\xad\x77\x83\x08\x14\x9e\x0a\x96\x8f\x97\x18\x6f\x1b\xc7\xf0\xb8\xbc\xe3\xb8\xa8\xe1\x14\xbf\x47\xa8\xd7\x39\x8e\xdd\x79\xd9\x3a\x92\x64\x2a\x37\x8a\x26\xe7\x4a\x7b\xdb\x30\x8b\xd4\xee\x0a\x56\x0b\x7f\xaa\xa5\x56\xbb\x66\x24\x49\x09\x40\x61\x8e\xf9\x03\xd9\x84\x43\x8d\x71\xd6\x74\xa5\x43\x1c\x31\x34\x48\xf8\x3b\xed\x24\x14\xbe\x1c\x21\xe4\x6b\xf2\x48\x1e\x54\x9d\xd8\xb7\x35\xcb\xd5\x88\xf7\xc6\xd6\x8d\x35\x0f\x1d\xf3\x16\x4f\x54\x57\x0b\xde\xdc\xd1\x3e\xcd\x8b\x68\x1e\x14\xf4\xa7\x00\x14\x88\x75\x54\x85\xc0\xeb\x28\x0a\xd7\x7c\x17\xd4\xf4\xf5\xa9\xa3\xd9\x0c\xa1\x71\xd5\xcd\x8e\x07\xb4\x6c\x66\xde\xcb\x66\xa8\x0c\x1d\x06\x21\x50\xa4\x2e\x50\xc8\x07\x78\x2a\xa6\xb4\x78\x61\x87\xf6\x91\x3b\xab\x5d\x4d\xdd\x5c\x89\xba\xee\x78\x9e\x1a\x21\x5e\xde\xe8\x8a\x95\x59\x11\xa9\xdf\x2b\x35\xdf\x22\x00\x21\x2e\x2a\xf1\x8c\xc8\xbe\x12\x61\xbf\x6d\x34\x42\x55\xff\x8d\x02\x12\xaa\x42\xab\x0e\xf2\x6b\x46\x27\xd4\x3a\x1a\x36\xc0\x6c\x31\x96\x6e\xaf\x72\x7e\x6a\xae\x63\x44\x02\xba\xdc\x2a\xa5\x62\x5c\xa2\xec\x1f\x9b\x2b\x11\x23\x4a\x8b\x04\xc3\x62\x8a\x11\x6c\x04\xcf\x89\xeb\x27\xce\xd2\xb8\x3e\x03\xe7\xb3\x9f\x58\x8f\xdb\x64\xc8\x3f\xac\x9d\xa4\xdd\x73\x84\x97\xa1\xf6\xcf\xa6\xf2\x94\x67\x39\x31\x9c\x53\x9d\xc5\x3b\x2e\xfd\x96\x72\x06\x59\x4b\x0c\x32\xac\x4a\xd9\xf6\xa3\x02\x16\x55\x6f\x3d\x9e\xd8\x42\x78\x82\x0b\x43\xd0\x59\x37\xb1\xa3\xad\x71\x60\x9b\x2f\xb0\x0c\x25\x7d\x73\xe8\xb4\xb2\xad\xc2\x42\x67\x3f\x58\x2c\xe2\x4b\xe1\x29\xa8\x11\x61\x75\x6d\x33\x36\xbe\x05\x58\xcd\xb0\xc4\x1b\xd5\x5d\x33\x0f\x22\xfe\x8e\x66\x3c\x3a\x04\xcf\xad\x63\xef\x78\x26\xec\x6b\x85\xdf\x91\xe9\x7a\xc5\x63\x57\x49\xa5\xe0\xe2\xb0\xa9\x31\x5c\x06\xe8\x4a\xcd\xde\xc9\x2f\x2b\x6e\x8a\x48\x7c\x24\x3a\xa9\xb4\x98\xde\xad\xa5\x8b\x1f\xf6\xf9\xa7\x8c\x3d\x24\xcb\x02\x81\x47\xd9\x78\x19\x07\xd9\xfa\xfa\xfa\x7a\x75\xc4\x21\x49\x41\xbb\x77\x12\x73\x88\x6b\x7f\x5b\xc3\xed\x27\x7e\x07\x2e\xdb\xf7\xb7\xff\xf7\xb7\xff\x7f\xed\xdb\x7f\x71\xf5\xcf\x60\x65\x4c\x28\x7f\x24\x8b\xdf\x2d\x46\x85\xcf\xb2\xa0\xda\x10\x60\x6d\x30\x80\x98\x57\x41\xc6\x48\x99\xed\x60\xcb\xdc\x1c\x22\x23\xb8\x30\x9a\x4c\x68\x46\x93\x82\xd0\xe4\x2c\x87\x42\xa3\x2c\x3d\xcf\x69\xb6\x86\x1c\x7a\x9e\x47\x49\x98\x9e\x83\xc6\x02\x45\x7a\x20\x0f\x1e\x88\x9c\xfe\x3f\xdf\xbc\x7e\x55\x14\x0b\xe1\x2b\x96\x73\x4d\x33\x8d\xec\xf9\x61\x81\xf5\x89\x40\x05\xd1\x34\x49\x19\x23\x88\xa3\x84\xb2\x9e\x24\x69\x48\xd7\x90\x77\x30\xa7\x46\x35\xf0\x8b\x79\xcc\x46\x26\x36\xb6\x76\xb7\x69\x23\xd7\x1c\x93\xff\x7c\xf5\x7e\xdb\xa8\x6e\x96\x6d\xb7\xbb\xa5\xa5\xa4\xe4\xc0\x5a\x78\x27\x91\xe9\x9a\x44\x80\xfc\xc4\x44\x7b\x70\x8f\xc9\x9d\x69\xb3\x5e\x2a\x03\x08\xa3\x3c\xde\xf2\x67\x69\x5e\xf4\x48\x11\xcd\x69\xba\x2c\x7a\xac\xc2\xac\x07\x4a\xe6\xf3\x34\x13\x8f\xd1\x60\x33\x61\x70\x64\x8f\xc0\x7f\x57\x57\xa4\x2d\x88\x3d\x4e\xc7\x41\xcc\x12\x87\x4f\xbf\x79\xfc\x0d\x04\x96\xe5\x7b\x0f\xaf\x90\xed\x84\xe2\xd7\xd5\x15\xd9\x54\xd9\xac\x19\xb2\x07\xad\xa9\x34\xd9\x28\xd9\x53\xed\xd7\x0a\x4f\x8b\x8c\x2e\x20\x52\x1b\x3d\xb7\xa6\xcc\x92\x9d\x04\xe0\x7b\x74\x96\x11\x92\xd3\xf3\x34\x8d\x69\x90\x5c\xc3\x1d\x2b\xdb\x9f\xa5\x04\xa3\xb1\x2c\xdc\x32\xa2\x03\x9f\xd9\x96\xe1\xfb\x07\x63\x1a\xc9\x5d\x66\x07\xcc\x8b\x40\x56\x3d\x47\x35\xbf\x41\xe1\x84\xc4\x78\x18\xdc\x00\xea\x6c\x42\xb4\x78\x05\x43\x7e\xf5\x7e\x5b\xc7\x75\xe5\x92\x16\xc2\x3c\x9a\x08\x06\x63\x38\xbf\xb3\x2a\x32\xc6\xc3\xab\x04\x79\x58\xd6\x9a\x2e\x68\xd2\x69\xbf\x3b\xfa\xf0\x51\x86\xa2\xe4\x84\xc3\x3b\xb7\xbb\x86\x3c\xe9\xc1\xdc\x3e\x78\x60\x4e\xaa\x71\xe8\x5b\x82\x41\x4d\xfb\x79\x90\x47\x63\xd2\x26\x1b\xd0\x85\xe7\x4b\xc6\x1e\x50\x15\x1b\xa4\x3d\x54\x57\x85\xaa\x9e\x7e\x91\x8a\x47\x6b\xed\x51\x90\xd3\x27\x8f\xdb\xd6\xf8\xb5\x1f\xe9\x57\x34\x08\x69\xd6\x69\xef\x03\x5f\x8d\x7e\x0d\xf8\x69\x0b\xda\xe7\x23\xac\x28\xc4\xe4\x63\x9a\x14\x8f\xd8\x41\xbb\xdd\x23\x6d\x26\xf9\x47\x63\xa8\x62\xf0\x4b\x2e\xd5\x8e\xea\xc6\x4a\x4c\x59\x0d\xb9\xf2\x88\x23\x97\xc9\x18\x1d\xaa\x6d\x4d\xb2\xef\xe2\x79\x81\xae\xaf\xfd\xb1\xa5\xab\x48\x2f\xb7\x63\x0d\x4a\x5d\x9a\x4d\x72\x92\x66\x4c\x5a\x15\xc1\x8a\x81\x1e\xb5\x76\x5f\x63\x2e\x09\x3b\xf0\x20\x82\x47\x91\x89\x26\x97\xaa\x7e\x81\x64\xa9\xc8\xc7\x6e\xa2\x7d\xd6\x00\x07\x69\x92\x50\xf1\x6c\x41\x52\x98\xa6\x44\xe3\x72\x51\xb6\x2e\x03\x36\x7c\xa4\x17\x85\xd3\x41\x01\x8b\x5e\x6b\x08\xeb\x78\xb3\x5b\x55\x5d\x7a\x2f\xea\xef\xf8\x1a\xc4\xab\xa4\x79\xec\x60\xa0\x81\xa0\x86\x08\xf6\x15\xc7\xa9\xa0\x04\x91\xf5\xa3\x13\xad\x83\x14\x59\x34\x9d\xd2\x8c\x87\x18\x62\xb3\x0f\x62\x8b\xf2\x17\xca\x70\x50\x47\x30\xd0\x03\x1f\xd5\x98\x91\x82\x9b\xd0\x0f\x18\xaf\xec\x1a\xdc\x24\x01\xdf\xce\x79\x11\x14\x74\x3c\x0b\x92\xa9\x5f\x81\xc0\xcd\xfb\x25\xe2\x83\xf0\x12\x0c\xeb\xe1\x46\xf8\x31\xe3\x30\x36\xcb\x5b\x37\x23\xfd\x36\xa0\x18\x0d\x28\x6f\x95\x50\x08\x29\xfb\x32\xab\x86\xa2\xe0\x4c\xe6\xbd\xb5\x52\x37\x56\x2b\xd2\x16\xc1\x57\x5b\xf6\xc5\x96\xd1\x32\x3b\x0b\x5e\x5b\x28\xd6\x1b\x81\x8b\x59\xb3\xb2\xbc\xaf\x97\xde\x47\x5e\xaa\x83\x37\x0f\xb1\x90\xef\x96\x03\xd8\x5d\xa8\x62\x02\x62\xa5\xe1\x75\xa5\x2f\xcb\xe3\x4b\x46\xef\xfc\x6d\x29\x2c\x2e\x46\xd5\x25\x6b\x2b\xca\x45\xfd\xd4\x64\xa6\x4a\x08\x90\x0a\x4e\x5b\x18\x60\xe7\x87\xa4\x5d\x90\x49\x10\xc5\x34\xec\x93\x23\x76\x4e\x3b\x8f\xd8\xd9\x23\x80\xa8\x60\xe5\xab\x09\xb5\xe9\x99\x0b\x8d\x4f\xa5\xcf\x50\xd1\x27\xa2\x70\x48\xbe\x53\x7f\x52\xdf\xc7\x76\x9f\x6c\x31\x1e\x92\xf6\x76\x7f\x53\x29\x0f\xa5\xfe\xb1\x9d\xd0\xe2\x53\x1c\xe5\x05\x4d\xa2\x64\xaa\xb2\x95\xf6\xf0\xd4\x30\xe8\x92\x0a\xae\x8c\x87\x38\x73\xc9\x57\x5a\x15\xb2\x41\xea\x49\x70\xd4\x05\x78\xe8\x52\x55\x60\x9c\xf6\x99\x98\xdb\x1a\x3e\x65\xbf\x0c\xf9\xb9\x35\xdc\xfa\x96\x9d\xfc\x77\xee\x4f\xfe\xf7\x27\xff\xbf\xf8\xc9\x5f\x1b\xfe\xc3\xa3\xc5\x3b\x32\xfa\x57\x86\x9c\xf8\x54\x39\x8a\xa6\xdc\x06\xb7\xff\x0b\x3f\xa1\xf3\x7b\x90\xf0\x35\x9d\x98\x1b\x82\x8a\xf5\x78\x89\x1e\xce\x19\x1b\x27\x87\xe0\xec\xe2\x7c\xc6\x7a\xdf\x31\x0d\xb4\xbe\xe7\x85\xc9\x43\xb2\xed\xbe\xbc\x03\x8b\x3f\x26\xc5\x9b\xef\x0f\x89\xff\x45\x9c\x60\xee\xef\xc4\xa9\x2e\x48\xc8\xe1\xf3\xfd\xb7\x62\x92\x43\xf2\xdd\xb7\x64\x9c\xce\x17\x4b\x11\x67\x65\x74\x49\xe6\xe9\x59\x94\x4c\x51\x34\xb1\xc7\x64\x3c\x0b\x32\xd8\x0b\xf8\xcd\x6c\xc8\x4d\xa9\xa4\xb9\xba\x84\x8e\x29\x7f\xb4\x50\xa4\xac\x41\x8e\xab\x9c\x74\xf6\xc9\x1e\xd9\xda\xec\x91\xe7\xec\xff\xad\x1e\xe9\xf7\xfb\x3d\xf2\x7f\x64\x8f\xec\x7c\xd3\x65\x87\x1d\x92\x2f\xe8\x38\x9a\x44\x7c\x21\x1d\x7e\x38\xda\xda\x79\xb2\xf5\xc4\x36\x31\x8b\xf2\x14\xd2\xc5\x38\x5c\xaf\xb2\xd7\xfc\x4d\x2c\xeb\x08\x1b\xa0\x79\xb5\x86\x6f\x96\x85\x24\x15\x4a\x30\xe1\xda\xc0\xac\xdf\x98\x50\x56\x31\x9e\x47\x36\xa2\xf6\x7e\xbb\xcf\xd0\x72\x90\x86\x74\xbf\xe8\x6c\x22\xad\x35\x1b\x5b\xfb\xff\x9c\x6c\xce\x00\xf9\xbb\x5d\x20\xd6\x22\x3d\x5e\x2c\x68\x76\x10\xe4\x5a\x95\x8d\xb2\xf3\xe5\x28\x2f\xb2\xce\xe3\xae\x7c\x91\x2b\x12\x36\x7b\x8f\xad\x1b\x33\x9e\xbb\x88\xa3\xa2\xd3\x6e\x77\xcd\xc7\xca\x49\xd7\xb4\xae\x1a\xa7\x21\x1b\x5c\xe2\xeb\xbc\x94\x0f\x01\xe6\x87\x3d\xb2\xcf\x04\x42\xf8\xf8\x7e\x8f\xfc\x5f\xd7\x89\x01\xe0\x99\x59\x31\xb1\x06\xa4\x72\x2a\x1b\x52\xf2\x88\xec\x93\x0d\xb2\xb5\x89\xec\x8c\x7c\x7e\xf1\x65\xec\x51\xdb\x86\xe9\xba\xdb\xff\x25\x8d\x12\x36\x4c\xdb\x52\x71\xbc\x04\x8f\xbb\x30\xc5\x6f\x8e\x5e\x30\xc2\xde\xda\x94\x4c\x49\x58\xf8\x01\xe5\x7b\x28\xee\xdb\xcd\x27\x8f\x6d\x82\x9b\xa7\xe1\x77\xdf\x6e\x6d\x96\x11\x9a\x49\x5f\xda\x8f\x31\xa7\x26\x51\xb8\x92\x8a\x32\x3a\x0f\xa2\x84\xeb\x8e\x58\x9e\xbe\x7b\x14\xce\x5d\x4c\xf6\x20\x80\xb5\xdd\xf2\x76\xd7\x72\x5b\x03\xcc\x4a\x82\x29\x8b\xd7\xef\x0c\x13\x39\xdd\x24\xc8\xda\x87\x49\xc1\x3d\xe2\xf4\xc8\xd6\x66\x97\xfc\xff\x19\xd6\x36\x9c\x5a\xb8\x53\x1c\x61\x7e\xee\x7b\x81\xab\xea\x52\x25\x75\x7d\xc6\x3c\xd5\xbf\x43\xe2\x26\xe8\xb0\x0e\x84\xc1\x3f\x5c\xa8\x43\x82\x78\xeb\x20\xd8\xa7\x9c\x2f\xff\xe4\x0c\xb0\xb7\x6b\xff\x24\x08\x4b\x68\xbd\xe4\xdc\xae\x3a\x51\x66\xeb\xfa\x49\x21\x08\xd1\x72\x2e\x5f\xe7\x58\x44\xc5\x60\xf6\x55\x8e\xd3\xf7\x00\x65\x49\x31\x9a\x0d\xe1\x5a\xb1\x35\xac\x15\x63\x39\x7d\x54\x63\x9d\xcf\x80\x20\x7f\x2e\x7d\x06\xa0\x97\x0a\x22\x1a\x28\xd9\x7a\x82\x58\xd8\x28\xc8\xe9\xce\x13\xb2\x07\x65\xb4\x7a\x68\xe7\x89\x61\x02\x10\x86\x94\x6b\x16\x61\x0f\xec\xf0\x42\x3d\xb2\xf5\x8d\x29\x09\xab\x7e\x3e\x1f\x05\x49\x87\x17\x33\x99\x9f\xb5\x98\x85\x5b\x12\xb4\x70\x9f\xb3\xa1\x17\xa9\xb1\x7b\xb1\xe9\x23\xe0\x5a\x35\xbb\x94\x2b\x9a\x2b\x93\xc0\x5e\xf7\x1d\x8f\x05\x91\xa4\x85\x10\xca\xbe\x8f\x7e\x68\x4d\x41\x22\xe1\xee\x6e\x26\x1a\xa9\xf9\x2c\xe0\xd2\x1a\xec\x6f\x17\xe3\x78\x99\x47\x67\x2a\x74\x65\x34\x8a\xe2\xa8\x50\x02\xce\x28\x48\x3e\x0f\x46\x59\x90\x8c\x67\x24\xa7\xd9\x59\x34\x96\x1b\x60\xc0\x3d\xbd\xb6\xbe\x1f\x44\x3f\xf4\x6d\x1a\x52\x61\x24\x72\xb9\x0b\x4d\x68\xc6\xb6\xa1\x20\x9e\xa6\x59\x54\xcc\xe6\x24\xa4\xf9\x38\x8b\x46\x9c\x2d\x09\xf9\x87\x26\xfd\xf3\xe8\x73\xb4\xa0\x61\x14\x80\x10\xc4\xbe\x06\x87\x49\x41\xb3\x24\xe0\x4f\x27\x3e\x3d\x0f\x92\xcf\x9f\x84\x9b\xd9\x4f\x7c\x5e\xff\x7f\x3f\x89\x91\x26\xd3\x4f\x6c\x88\x9f\xe0\x2d\xd1\xa7\x30\x9a\x46\xce\x53\x0e\x39\x35\x3e\x8a\x1c\xc9\x3d\x55\xce\x80\xf4\x19\x53\xa4\x9e\x6d\xb6\x01\xad\x3e\xb7\x57\xe4\xc8\x62\x8b\x62\x46\x0f\xf8\x3e\xd5\xfe\xe7\xcb\xf6\xee\x9a\x97\x67\x0a\x1e\xdb\xb1\x76\xee\x0e\xae\x60\x83\xb4\x37\x41\x54\x82\x56\xb0\xb9\x0b\x43\xc7\x0b\x86\x0d\xb2\x47\x3a\x5c\x9c\xea\x7c\xf7\x94\x3c\xd2\x4d\x74\xe5\xb3\x81\x47\xdb\xd6\x7e\xab\xbc\x6e\x98\x4d\xa1\x3a\x45\x83\x35\x6a\x2b\xc1\x44\x10\xae\x80\xb0\x79\x00\xf1\x28\xc9\x8b\xa8\x58\x16\xd2\x59\x72\x14\xd2\xa4\x60\x9b\x96\xed\x78\x9f\xd7\x72\x98\x84\x51\x46\x4d\x03\x06\xf3\x8d\x4d\xde\x93\xb2\xac\x7a\x64\x03\xaf\xa6\x5a\xa8\xa5\x16\x34\xd5\xd2\x6d\xb5\x56\xe1\x45\x66\x4f\xbc\x0e\x94\xcd\x23\xb0\xc9\x19\xda\x2f\x3f\xbe\x62\xf3\x20\x5f\xb7\x60\x0c\xa0\x54\xd5\xb7\xae\xc5\xaf\xd3\x2a\x7e\x2d\x9f\xd2\x71\xe4\x8a\xe8\xdc\x51\xce\x5f\xca\x61\x3e\xee\xc8\x9d\xe0\x41\xa5\x54\xde\x54\x7b\x91\x47\xf1\x21\x15\x1e\xfc\x39\x1d\x6f\x49\x09\x9d\x87\xc8\x3f\x4b\xa5\x9c\x10\x61\x3f\x2f\x11\x27\x2b\x2c\xfc\x69\x27\x2f\xb5\xba\x72\x85\x05\xe8\x7a\xe9\xeb\x41\x3c\x66\x1d\x95\xc1\x3b\xaa\x1e\x49\x3d\x5a\x1b\x18\x1b\xd6\xd6\xb8\xa3\xb4\x28\x61\xf0\x9f\x7f\xbe\x3c\xd9\x7c\xf4\xdd\xe9\x97\xed\xeb\xce\xcb\x8f\xaf\xd8\xef\xfd\x47\xff\x77\xfa\x65\x6b\xe7\xfa\x4a\x7d\xec\x6c\xf6\x76\xb6\xae\xbb\xff\x33\xe8\x17\xa0\x04\x55\x1b\xb8\xf1\x2e\xaf\x8c\x31\x20\x70\xfe\x3c\x6f\x6b\x45\x84\x89\x27\x98\x70\xfa\xf7\xa2\xed\x85\x5e\x82\x77\x83\xb7\x17\xee\x4a\xb2\x10\xa7\x07\x85\x1f\xf7\xec\x3c\x86\x38\xff\xfe\xbc\x6f\x6e\x38\xec\x09\x89\x92\x92\x81\x1b\xdc\xe7\x6e\x86\xee\x65\x23\x8d\x06\xbf\xbd\xd9\xc8\x6a\x93\x8b\x94\x6c\xa4\xf9\x72\xce\x00\x8f\x73\x71\x7c\x98\xa7\xe1\xa3\xef\xbe\x7d\xb4\xb5\xa9\xb2\xe1\x8c\x0b\xbd\x1b\xa7\x31\xe9\x1c\x7e\x38\x1a\x1c\xbe\x3c\x20\xec\xdc\x30\xdc\xde\xdc\xdc\xe9\xda\x3c\x19\x55\xeb\x9e\x42\x51\xae\x33\x70\x99\xd7\x70\xd8\xe2\x4c\xb8\xdd\x23\xdb\xcd\x6c\x55\x31\x53\x35\xb6\x14\x42\xa7\x7d\xf2\xcf\xf7\x2f\x7f\x72\x1c\x09\xaa\x02\xfe\xd1\x94\xd6\xe8\x4e\x2a\x82\xac\x1b\x9e\x26\x80\x0e\x78\x99\x73\x86\xfc\x6d\x8f\x3c\xee\x92\x21\x69\xb7\x1b\x8d\x7b\x1c\x47\xf0\x90\x4c\x75\x10\x94\x4f\x51\x62\x8f\x8f\x61\xe1\xa7\xfd\x7f\x1c\xfd\xf8\xaf\xa3\xf7\xff\x6b\xcf\x2a\xd4\x51\x32\xa7\x76\xfd\xde\xc9\xe5\x40\xb7\x1e\xfb\xd6\xd6\xea\x23\x17\xab\xc9\x7f\x2e\x71\x0f\x1e\xee\xd0\x9c\x0a\x9c\xe1\x05\x9e\x73\x08\xbe\x77\x12\x83\xf3\x39\x20\x33\x0e\x1d\xee\x80\x1f\xa3\x43\x6c\xe9\x51\x46\x9e\x3f\xd4\x29\xc5\x38\xa1\xf2\x33\x8a\x79\x9e\xd9\x7a\xd2\xed\x91\xed\x4d\xe5\xe2\xcc\x90\xf2\x24\x7a\xad\x41\xca\xc2\xcd\x16\x68\x89\x57\xaa\x43\xc8\xe2\x4a\x7d\xac\x57\x6c\x0d\xcd\xcf\xeb\xd3\xde\xce\xe3\x7b\x35\xfe\xbd\x1a\xff\x2f\xae\xc6\x17\x2a\xfc\xc5\xb8\xda\x7e\xef\x16\x16\x77\x2d\x1d\xa2\xb0\xb5\xbb\x52\x68\xb5\x1a\x3b\x3d\xae\x67\x5a\x8c\xbd\x96\x60\x8b\xa0\x98\xf5\x48\x42\x0d\xeb\xef\x4f\xa0\xb9\x70\x1e\x9e\xca\xab\x6a\x1c\xdc\x59\x7a\x2d\x10\xf6\x3a\x60\xe3\xc3\xfe\xe3\xa9\x3a\x6b\xac\x6e\x78\x81\x2b\x16\x32\xa1\xf3\x85\x41\x0f\x75\x79\xe5\x8a\xd2\x2a\xd6\x4f\x93\x4e\x1b\x46\xd5\xc6\xc1\x50\xbb\x86\xfd\x74\x9e\x32\x26\xc6\xdf\x12\x1e\xbe\x3b\x20\xfa\x5e\x99\xbf\x30\x6c\xf7\x08\x45\xac\xf7\x13\x67\x83\xe2\xc2\xbb\x63\x3b\xc3\xf4\xf6\x20\x09\x71\xfb\xa8\xf9\xd2\xca\xc8\x9a\x7a\x63\xf0\xfa\xf0\xc3\xc7\x97\x6f\x61\x05\x1d\x1c\xbd\x7d\xfb\xf2\xe0\xe3\xe1\xd1\x5b\xf2\xfe\xe5\x87\x77\x47\x6f\x3f\xbc\xfc\x50\xda\x6a\x18\x14\x01\x6e\x96\x7d\xe3\xcd\x69\xf0\x50\x98\x11\xce\x83\x8b\x71\x3a\x5f\xc4\xf4\x22\x2a\x2e\x87\xe4\x09\x50\x96\xd5\x43\xd0\x85\x2a\x3b\x04\x56\x95\xde\x6f\xba\x9e\xc8\x35\xc2\xe6\xe0\x8b\x19\xc8\x1a\x0e\x7e\xa1\x6d\x3b\x21\xba\xc3\x03\x7c\x03\x7f\x09\xc9\xf9\x2c\x1a\xcf\xc8\x3c\x28\xc6\x33\x21\xbe\xf2\x4d\x88\x31\xb4\xd0\x28\xe7\x89\x5a\x00\x4d\xfb\x23\x5d\xc3\x75\x94\xd3\x5b\xb0\x40\xf0\xc7\xa1\x8d\x26\x9d\x4f\x7e\x42\x3e\x81\xb7\x71\x51\x78\xea\xba\x43\x57\x85\xd9\x58\x05\xd8\xae\x03\x65\xc7\x0c\x2f\x8d\xa5\x0b\xd5\x88\xbe\xdb\x15\x5d\x3b\x58\x9c\x44\x19\x35\x3c\x02\xd8\xe8\x2a\x1b\x0f\x1b\x8a\xa7\xf5\x0a\x70\x1d\xd8\x17\x9b\xb6\xe8\xbf\x90\xc6\xb4\xa0\x55\x35\xd8\x83\xb1\x71\x83\x5f\x61\xff\xcc\x76\x2d\x20\x44\x41\x10\xbc\x3e\x50\xee\x70\x5b\xa9\x84\x3b\xcb\x21\x29\x77\xb5\x1c\x15\xfd\xb5\x35\x29\x0c\x9a\x24\xbc\x66\xab\x3d\xe0\x45\x26\x13\xfe\x34\xcf\x43\xe2\x91\x59\x18\x7b\x56\xc5\xab\xca\x66\x83\x3d\x4b\x5e\xfb\x07\xf7\x6c\xae\x1d\xf4\xca\x25\xfe\xe2\xe5\xa3\x83\x57\xc7\x6f\xff\xf7\xe5\x7b\x55\x4f\x48\xc7\xb3\x65\xf2\x99\x86\xe2\x55\x09\x7f\x31\x2a\xfe\xfa\x19\x5d\xc4\xc1\x98\x76\x06\xff\xbe\x3e\xf9\x77\xf2\xef\xec\xf4\xd9\xbf\xbf\x0c\xa6\xbd\xf6\xf5\xd5\xa3\x47\x57\x5f\xda\x5d\x70\x2d\xfc\xc5\x0b\xff\xef\x53\x59\xe2\x44\x94\x39\x65\x85\x4e\x64\xa9\xd3\x13\x7f\x39\xbb\x94\x51\xa8\xa4\x8c\x6e\x0b\xb5\xa4\x1a\x42\x65\xc4\x35\x1f\xcb\x6e\x4b\x4e\x6a\x60\xc0\x5d\xb3\x80\x78\xc4\x5f\x06\x03\xb8\x03\xa5\xc2\x1d\x06\x78\xda\x80\x0a\xd6\x1c\xd2\x67\x79\x07\x2c\xcb\x5c\xb9\xc2\xef\x8c\x05\x43\x36\x08\x7f\xff\x6a\x88\xea\xea\xce\xda\xe2\x64\xae\x53\x03\x9f\x2d\x18\xf4\x1d\x95\x12\xd6\x34\xdc\x98\x66\xcd\x5d\x7c\xba\x33\x7b\x76\x67\xc4\xd0\xc1\xe7\xae\xb2\xa0\x06\xd7\x77\xc9\x98\xc6\xe0\x50\x5f\x3e\xe2\x34\xca\x8c\x63\x1a\x64\xd2\x84\xcb\x6a\x45\x24\x5b\x0b\xda\x0f\x04\xbe\x1a\x0a\x59\x91\x6f\x8f\x33\xcb\xdb\x7b\x1d\xfe\xab\xb4\xab\x14\x38\xc3\xf0\xd7\x3d\xb2\xb5\xb9\xb9\x49\x1e\xf2\xcb\x19\xcf\x5d\xab\xd7\xf1\x03\xbc\xdb\x03\xec\x48\x7c\x31\x0e\x92\x53\x41\x2f\x3c\x16\x8b\x78\xd7\xb7\x3a\xaa\xdc\x19\xb3\x48\x04\xc2\xfd\x08\xcb\x4a\xa7\xc3\x9c\x45\xf0\x80\xf0\xa6\xdd\x9e\xa5\xad\xc7\xe0\xc2\xf9\x0f\xe3\x91\x3f\x89\x2d\x34\x08\xc3\x1c\x47\x0a\x17\x56\x0e\xae\x34\xc6\xd5\xc3\xbd\x35\xbe\xe1\xca\x83\x81\x38\x6b\x47\xdc\x5d\xbd\xe0\x7a\xb0\x1b\xcb\x5b\x21\x95\x7a\x18\xf2\x52\x41\x96\x45\x67\x14\x33\xdc\x20\x54\xb3\x27\xdb\xab\xe0\xb0\x1e\x68\xc3\x5b\xbd\xdf\xa6\x14\xc9\x14\xf2\xb5\x7a\x14\x92\xab\x2b\xf9\x75\xb2\x79\xaa\xb6\x4c\xb8\xc2\xe6\x7d\xd3\xd0\x22\xc1\x2c\xc1\x13\xb1\x44\xe7\xdd\xbc\xc8\x9e\xea\x4d\x95\xc4\xcb\x40\xfb\xaa\x61\x59\xb7\xdc\xd5\xe4\x3a\xc2\x2b\x95\x9c\xcf\xa8\xf4\x3b\x10\x72\xb1\x1c\x4e\x5f\xa0\x71\x67\xfb\x7b\x88\xd0\x2c\x88\xb8\x02\xb5\xae\x7d\xa7\x3a\xda\x4f\xd2\xac\xc3\xf0\xf2\x99\x5e\xf2\x93\xa2\x6f\x00\xa6\x13\x98\x8e\x1f\xa8\x3f\x0b\xf2\xa3\xf3\xe4\x1d\x04\x5a\x2a\x2e\x21\x76\xa1\xc5\x05\x4a\xd0\xf3\x99\x5e\x9e\x96\xdb\x76\xb6\xd3\x84\x1c\xbe\x3b\x68\xdb\x41\xfc\x85\x6c\x51\x51\xa7\x63\x66\xa1\x97\xc9\x01\xf6\x41\x28\xdc\x8d\x13\x74\xdc\x88\x72\x92\x17\x11\x0f\x46\x12\x85\x88\xa8\xb1\x59\x68\x29\xc2\xfd\x76\x9c\x9d\xf2\xd3\x92\x94\x03\xd8\xee\x91\x51\xd1\x8f\x1e\xa7\x02\xb3\x57\xd3\x34\xa1\x42\xf3\xd4\x59\xff\x64\x8b\xfd\xe7\x59\x54\x80\xbf\x14\x8b\x1b\x21\x10\xeb\x08\xf5\xc9\x3d\x43\x49\x17\x83\xeb\x65\xb5\x0b\x05\x92\x77\xe8\x55\x2f\x08\xd6\x30\xfd\x58\xf5\xd2\x0f\xe8\xe9\x0a\x31\x36\xd9\x5d\x83\x73\xaf\x80\x22\x89\xa6\x7a\x2c\x11\xcf\x11\xaa\xf6\xac\x29\x7b\x19\xa2\x67\xbf\xbe\x51\x55\x58\x3c\xdf\x4c\x6c\x50\x54\x8d\xa5\x06\x73\x28\xb5\xfb\x28\xb1\xfe\x7c\xfb\xa4\x65\x76\x27\xb4\x89\xd6\x19\xc5\x71\xc7\xf3\xaf\x74\x09\x56\xd6\xfa\xb5\x59\xab\xbd\x61\xb3\xdb\x8d\x76\x8b\xe4\xd8\x30\xbb\x8f\xed\xb4\x35\x1f\x84\x17\x5b\x69\x41\xf2\xe5\x62\x91\x66\x05\xe8\xd6\xf8\x4d\xed\xbb\x03\xa2\xb4\x2a\x6d\xc3\x11\x64\x39\x61\x36\x7e\xa9\x70\x93\xc5\x58\x4f\x65\x2b\x51\x98\xf7\x58\x0f\x34\x55\x69\x41\x8f\x1c\xea\xda\xbb\x69\xa9\xb7\x1b\x57\x8f\xab\x31\xe8\x38\x69\x2f\x79\xa5\x7d\x7d\xda\xdb\xf9\xe6\x5e\xa5\x7b\xaf\xd2\xfd\xaf\x50\xe9\x8a\x87\x15\xb7\x7a\x8e\xbd\x1f\x64\x69\x42\xfe\x77\x39\x0f\xce\xa2\x9c\x7c\x1f\xb0\xcf\xbf\x7d\xe6\x9f\xfd\x39\xf5\xaa\x7b\x07\x03\x72\x98\x44\x45\x14\xc4\xd1\xaf\x94\xfc\x9d\xf7\x82\x11\x6a\x40\x72\xb0\xc4\x92\x06\x37\x30\x50\xb6\x54\x0d\x27\xe7\x7d\xd0\xea\xca\x62\x32\x8a\x88\x08\x40\x75\x18\x0e\xc9\x66\xdd\xcd\x1b\xb7\xf6\x60\xc3\xb7\xdd\xea\x7a\xcd\x4c\xbc\xee\x74\xf5\x2b\x34\x19\xeb\x6a\x22\x11\x0a\x2d\x69\x83\x1e\x8f\x13\x5e\xfe\x3a\xa5\x87\x54\x3d\x13\x59\x8d\xcc\x92\xbe\x77\xbd\x6e\x88\xd0\x08\x58\x7b\x4e\xef\x07\x6b\x02\x3d\x25\xae\x78\x79\x5b\x3d\xd1\x98\xe1\x34\x95\x67\x75\xcb\x54\xcb\xb2\x49\xc7\x98\x47\x99\xed\xae\xb7\x51\xd4\xa9\x20\x3c\x63\x67\x54\x39\x3b\xe4\xf0\x05\xe4\xc8\xde\xa9\x49\xdb\xd8\x28\xf3\x33\xe4\x7f\xfd\xc3\xdf\x0a\x39\xd5\xe8\x6c\xf9\x3c\x48\x8c\x54\xa5\xcb\x77\x41\xfc\x7f\x76\x60\x92\x2f\x84\x9a\x1b\x5e\x48\x1c\xa8\xc3\xa3\x34\x20\xf2\x9b\xea\x28\x65\x5d\x5d\xe4\x33\xcf\xcb\x6c\xab\x01\xbf\x79\x86\x44\x83\xd5\x9e\x15\x10\x99\x27\x5a\x97\xa1\xdc\xa7\x0f\xd2\x39\x0b\xa0\x67\xaa\xed\x3e\x3d\xa3\xd9\x65\x47\x7a\x43\xfe\x10\x25\xd3\x98\xbe\xe1\x08\xef\x92\x21\xf1\x66\xe8\x9a\xc4\xb4\xaa\x8e\xf8\xc1\xc5\x04\xaa\x83\x96\x12\xde\x25\xdd\x20\x0b\x22\x99\xc6\x29\xd2\xb0\x2d\x12\x19\x72\x7e\xf6\xf6\xf6\x38\xd5\x60\x20\xe1\x76\x41\xc2\xb2\x33\x37\x03\xe3\xd7\xba\x6d\x5f\x75\x42\x86\xb5\x7c\x4a\x0e\x06\x3c\x34\x9f\x4a\x12\x5e\xd9\x31\x73\x91\xeb\xb1\x91\x3f\x79\xce\x88\x46\xf0\x1e\xad\x86\x1d\x3d\x67\x40\xe5\x2e\xbe\x45\xc7\x2d\xfe\xc2\xeb\xca\x39\x53\x15\x55\x49\x01\x27\xec\x82\xf2\x48\x2c\x8a\x8e\xe4\x3d\x5d\x32\x89\x68\x1c\x5a\xa6\x07\xa2\x15\xa3\xa7\x16\xcf\xc1\x1d\xb4\x18\x0f\xef\x9a\x45\x86\x32\xd9\x8a\xfa\x20\xc9\xc2\x75\x84\xe5\xb0\x37\x09\xdb\x97\xac\x4d\x7e\x0b\x16\x67\xea\xe1\x1d\x59\x51\xd4\x27\xe4\x44\x26\x06\x3e\xb9\x17\x03\xef\xc5\xc0\xbf\xb6\x18\xa8\xdf\xe7\xf1\x45\x73\x57\x2f\xf4\xee\xe6\xee\x9e\x81\xbc\x91\xea\xc6\x52\x63\x65\x38\x27\x8a\x48\x2d\xd2\x0a\x99\x7d\xa2\x53\xa4\x70\xb9\x26\x73\xd9\xa7\x71\x71\x0f\x3c\x4f\xe7\x6b\xc9\x60\x13\x81\x81\x4f\x7e\x1c\x94\x50\x1b\x42\xe3\x0c\x54\x82\x7b\x7a\xf6\x15\xb1\x72\x0c\xa5\x2b\x68\x0c\xde\x04\x49\x30\xa5\xfa\x75\x3e\x63\x59\x1c\x15\x86\x2a\x40\xba\xf0\xd0\xe0\x68\xbf\x9f\x1b\x18\x72\x2a\xce\xe6\x35\xf6\xef\x21\x65\x1c\x26\x4a\x4c\xff\x9e\x96\xf8\x37\x0a\x72\xee\x73\xa1\x2c\x12\xc5\x94\x82\x97\x4a\xcf\x26\x65\x7a\x9a\xb7\x1d\x8b\xca\x36\xcd\xf6\x80\xc4\x1c\x44\x88\x36\x4a\x63\x4d\x18\xee\x44\x51\xf8\x1c\x45\x1c\xca\x8e\x4f\xfa\x32\xcc\x99\x60\xa3\x52\xea\xdc\x1c\x73\x67\x9c\xfa\x92\x42\x84\xe6\x10\xdb\xae\x1a\x67\x9f\xbc\x61\xac\x3c\xa2\xb9\x08\x22\x0d\xf8\x70\xbc\x50\x1a\x9e\x3d\x1b\xe3\x4d\x0e\xea\xea\xed\x32\x8e\xb5\x63\x8c\x1e\x93\x22\xe9\x45\x04\xd7\x66\x3e\xdc\xfd\x31\xe3\x0f\xdd\x59\xd8\x1d\xb2\xf6\xb5\xe2\xee\x38\x98\x6c\x14\x6d\xc7\x0e\x70\xa2\x42\xc9\x98\x07\x31\x52\x13\x3e\xe6\xfd\xbb\x03\x11\x61\xa2\x3a\x76\x8c\x46\x9b\x70\xf5\xca\x09\x0f\x90\xae\x4e\x9c\x36\x9a\x38\xe8\x21\x83\x74\xb1\x64\x10\x9d\x4a\xf2\xa0\x03\xd5\x52\x89\x8d\x75\x0f\x77\x2d\xa1\x20\xdf\xe3\x46\x4f\x69\x4b\x86\x54\x4e\x17\x7b\x04\x82\x64\x57\x85\x90\x22\xcf\xf4\x6f\x4e\xdd\x50\xe4\x94\xb1\x03\xf4\x59\xe3\x59\xdf\xc1\x3a\xe7\xf7\x2a\x7a\x2d\xc6\xbc\x8b\x78\xee\x80\xb7\xfa\xac\x68\xba\x23\x2e\xc1\xbd\x27\x46\x8a\x19\x2c\x17\xa3\xd0\xde\xac\xc0\xd9\x0c\x1c\x7b\x9e\x79\x01\x54\x55\xde\xd8\x24\x02\x17\xbe\x90\x45\xf2\xfd\x94\xa4\xc3\x15\x22\x17\x05\x72\xdd\x36\x42\x42\xb3\x18\x44\xd8\x1d\xab\xd8\x47\x6c\x2f\xc9\x2b\x3b\x5f\x16\xf2\x04\x00\xa3\x65\x80\x01\x21\xcf\x08\x30\xa4\x8e\x29\x7e\x2d\x88\x54\x67\x80\x66\xa9\x44\x99\x51\xe5\x56\x19\xab\x38\x1c\x54\x49\x17\xb9\x1c\x9f\xa6\xb4\x35\xfa\x05\xa3\x8b\x65\xc8\xa1\x8d\x96\x51\x1c\x02\xc2\xc4\xa0\x58\xa6\xe3\xdf\x16\x18\xfe\xc7\xa3\x17\x47\xeb\xeb\xeb\x20\xde\xb7\x73\xb2\x9c\xc6\x97\x7d\x11\x45\x8c\x1d\x08\x96\x39\xdb\x13\x0b\xd5\x4a\x82\x5c\xca\xb2\xdf\xd2\xae\x46\xdd\x90\x30\xc6\x01\x19\xea\xbd\xf5\x96\x11\xe9\x69\xf4\xcb\x09\xcb\x3e\xd9\x3c\x3d\x65\x62\x17\xfe\xbc\xba\x52\x76\x9b\x36\x28\xff\xb1\x05\x65\xd8\x58\x76\xfd\x57\x45\x56\xed\x00\x49\x10\x17\x76\xd0\xab\x10\x55\x76\x8b\xaa\x2e\xd5\xb5\xd1\x29\x0f\x81\x92\xf8\x9f\x65\x11\xc7\xcf\xb7\x90\xdf\xf5\x69\x78\x15\x3f\xd0\xc4\x8a\x60\xe1\x0b\x55\x60\x9c\xd5\xa1\x2d\x53\xa2\xd4\x17\x53\xfa\x7e\xc6\x88\xc5\xa2\xcc\xeb\x3c\xa6\x79\x76\xc3\x1c\x5e\xb4\x83\x99\x99\x32\x8a\xb4\x0c\x68\xbc\xe1\x54\xcc\xee\x1a\xd5\x94\x0f\xc1\xbe\x86\x12\xa4\xc2\xb2\x9a\x7a\x7a\x96\x61\xae\x68\x52\xef\xce\x51\x72\xc8\x65\x46\xe1\x86\xf4\xfd\xbb\x03\xe5\x81\x89\x9b\xb2\x8c\x83\x44\x09\x9b\x51\x22\x94\x2e\x7e\x5f\x4f\x99\xeb\xeb\xb1\xdf\xef\x5f\xe3\xf8\x6e\xb6\x2f\x3d\xad\xc9\x94\x45\x3d\x9c\xb4\xce\xa7\x7d\xa9\xbb\xf9\x55\x88\x50\xd2\x80\xe9\x93\x1e\xcf\x5a\x19\xa2\x45\xc9\x12\xc5\xce\x1b\x69\x03\xd3\xf4\xfa\xef\xdb\x7b\xbd\xcf\xbd\xde\xe7\xaf\xad\xf7\x11\x4a\x9f\x70\x74\x8b\x9b\x3f\x9f\xde\x47\x69\x6b\xb0\xe2\x87\x33\x27\xa5\xd1\x79\xf1\xdc\xe0\x23\x6c\x18\xa6\xcb\x0f\x47\x53\x01\x23\xb5\x92\x77\x2b\x02\x85\xad\x69\x79\x29\xef\x78\x6c\xfa\xc5\x05\x17\xf9\x42\x2c\xe9\xca\x92\x83\x3a\xac\x66\xb4\xb3\x08\x20\x47\xed\xd2\xf1\x75\xd0\xd2\x37\xeb\x5d\xbe\x3c\x60\xd1\x62\x59\xa8\xc7\x6b\x09\x3d\x17\xd8\xec\xe8\xed\x92\x09\x1d\x43\xd2\x56\x70\x56\x1c\x8d\x21\x69\x87\xa3\x4f\xbe\x5c\x29\x26\xee\xa8\x3e\xa9\x46\xa7\xb4\x59\xa3\x0a\xce\xdb\xa8\x2f\x57\x36\xba\xed\x36\xba\x58\x16\xaf\xe8\x45\xfd\x30\x5f\xd1\x8b\xb2\x31\x9a\x59\xd5\x03\xac\x6f\x8b\x03\x95\x0d\xcd\xdf\x96\x35\x2e\xb1\x19\x9d\x68\x38\x39\x11\x3d\x8d\xe4\x9e\x18\x7a\x4f\x74\x0b\x80\x4f\x4b\x76\xae\x17\xcf\xf5\xae\xc5\x69\xa7\x35\xdc\x81\x2d\xea\xe9\xfd\x16\x75\xbf\x45\xfd\xb5\xb7\x28\x7d\x35\x41\x8b\xd9\x8d\xee\x25\x04\xf0\xdd\xbe\x4a\x2c\x89\xfe\xef\x0b\xff\xef\xbb\x04\xf1\xdf\x83\xd4\x6c\x9b\x0c\x44\x9a\x23\x5b\x40\x0b\x91\x2c\xc1\xc6\x65\xed\x8d\xd3\x64\x12\x4d\x25\x18\x0a\x85\x83\xa1\x65\x64\x15\x09\x76\x2e\x9e\xad\x19\x17\x34\x22\x51\xc2\xfc\xc8\x43\x81\x5b\xc8\x80\x44\x09\x72\x98\x7f\xb8\x4c\xc6\x7c\x8b\xc1\x50\x39\x4f\x95\x60\x8c\x15\x67\xd4\x06\x12\xa9\xaa\x2e\xee\xa0\x08\x43\x44\xa3\x20\x91\xd9\xdc\xeb\xa1\xd3\x1f\x99\xac\x84\x10\xf0\x99\xd6\xe4\xce\x40\xe9\xbc\xc5\x1b\x41\x50\x02\x6e\x9e\x76\xc9\x83\x07\x44\xfc\xee\x83\x4e\xf0\x68\xd2\x69\x6f\x5e\xb4\xb9\xeb\x92\xcd\x2e\x79\x46\x5a\xb4\x98\xb1\xdd\x03\x02\x93\x3e\xbf\x7c\x15\xe4\xb3\x16\x19\xda\xc9\x5c\xa3\xdb\xd2\x52\x02\x8a\xff\xf4\x63\x96\xce\x9f\xff\x06\x3d\x6d\x8b\x2e\xa1\xb0\x42\xcf\x2f\xa1\x61\xd6\xe9\xfd\x24\x3c\x64\xe5\x54\x34\x2f\x2f\x24\x1f\x87\x82\xd5\xe3\x59\x26\xe3\x98\xfe\x46\x03\x38\x66\x6d\xd5\x74\x1d\xc3\x94\x76\x5a\xce\x0f\x1a\xe7\x41\xba\x4c\x1a\x5d\x33\xdd\xc1\x38\xbc\x6d\x73\x12\xc2\x43\x29\x01\xe3\xa3\x72\xa6\xe0\x37\xec\xff\xb1\x6a\x10\x4d\x86\x33\x09\x18\xc0\xe8\xb3\xea\xde\xcb\x62\x76\xd7\x07\x84\xc6\x87\x83\x3b\x3a\x1b\x40\x00\xe0\xf2\xb3\x01\x57\x7d\x70\x2e\x1e\x51\x6f\x8f\x16\xb8\x33\x8b\x9a\x7e\x2c\x6e\xd0\x05\x74\xc7\xcd\xb9\x2b\xf7\x7f\x41\xb0\x87\xee\xc3\xe7\xfb\x6f\xad\x60\x64\x82\xa7\x72\xad\x0c\x7f\x40\x2b\x74\x33\xd7\x6b\x6b\xbc\x77\x7d\x6e\x19\xa5\xde\xd2\xbc\x2c\x66\x5a\x1b\xd4\x23\x6d\x1c\xba\xb9\xdd\x13\xc3\x9c\xd2\x62\x58\xa2\xf3\x94\xbe\x4a\xfb\xb8\xa0\x18\x49\x4f\xe8\xe9\x8c\xc2\x67\x41\x6c\x44\x19\xeb\x5b\x81\xb3\xcf\x82\xd8\x71\x46\xa2\xd2\xae\xd7\x00\x3d\x2b\x0d\x45\xf8\xf9\xbb\xc9\x60\x44\xd1\x9b\x0c\x47\x14\x6d\x38\xa0\x26\x67\x51\xc6\x5d\x82\x18\x2c\x37\x6b\x4f\x4e\x02\xd0\x3d\x3d\x49\x36\xe5\xe4\xab\x23\x14\xb2\xe6\x34\xae\xf0\x86\xe4\x44\x0b\x54\xfc\x7a\x4f\xb8\xd1\xfc\x51\xdf\xe6\xd9\x10\x38\xf2\x39\xe7\x27\x0a\x18\x85\x8e\xb4\xee\xb1\x86\xb8\x1a\x9e\xa7\x7c\xd6\x28\xa0\x92\x63\x73\x9a\x05\x53\xba\x5f\x34\x39\x39\x0b\xd0\x52\x1c\xf9\x20\xd4\xa1\xb6\x02\x4b\x7c\xdd\x71\x8e\x5d\xa4\x70\xb2\x5c\x05\x2d\xde\x81\x09\xe7\x8e\x35\x63\x62\x50\xa5\xc3\xb1\x32\x7f\xfb\xf9\xf6\x0e\x4c\xae\xfa\x3a\x7a\xe6\xec\xc8\x1a\x9a\x12\x19\x6f\x37\x2c\x5f\x6f\x7b\xce\x12\xd7\xf6\xaf\x6c\xf1\x92\xeb\xd5\xe8\x97\x35\x51\x4d\xbb\xb0\xff\xd6\x63\x02\xc0\x1c\x4c\x28\x89\xee\x6b\x60\x02\x91\xf2\x2d\x06\xdd\x5b\x2b\xa1\xec\xf9\x22\x8a\xf9\xe1\xad\x96\xbc\x05\x68\x05\x8d\xbb\x10\x12\x0f\x9b\xe5\xf4\x67\xcb\x6b\x0d\xe9\xd1\x2e\xe6\x74\xab\x4a\x64\x75\x3b\xb8\x75\xcb\x89\xaa\x9a\x1b\x39\x85\x2f\xe8\x38\x9a\x07\x71\x39\x2a\xb4\x14\xd8\x10\x09\xba\x40\x09\x51\xfe\x71\x07\x6c\x0a\x4f\x35\x83\x2d\x8f\x95\x5c\x72\x04\x03\xf9\xba\x72\xd0\xf5\x2b\x08\x55\x58\xcd\x3c\x3e\x7a\x4e\xa8\x2b\x8d\x49\x95\x72\x06\x57\x76\xf8\xfd\x23\x71\x9a\x9b\xe0\xe9\x3d\x1d\xd3\x68\xd1\x80\xcc\xdd\x32\x4d\x08\xc0\x05\xbd\x2d\x05\x88\x1a\x1b\x0f\xb0\xe1\x2a\xae\xe5\x62\x9e\xc1\xd9\x80\x4d\x28\x80\x8b\x45\x77\x24\x20\xd6\x2e\x6f\x76\x40\x7a\x1f\x9c\x37\x5f\xe2\x6e\x01\x3f\x22\x2a\xe1\x9a\x70\x36\x86\x07\x8f\x2c\xe4\x86\x96\xae\xeb\x6d\xa3\xae\xde\xbc\x9f\xf6\x4c\xf9\xd6\x98\x6f\x1c\xd1\x34\x59\x61\x1c\x26\x74\xc9\x38\x4a\x81\xbe\xf2\x38\x1a\x74\xbe\xbc\xc7\x77\x2e\x6b\x97\x10\x8e\x30\xee\xaa\xea\x28\x04\xfe\xf7\x76\xd4\xca\xb9\x49\x47\xd9\x5e\x70\x67\x27\x02\x33\x42\x7a\xd5\x98\x10\xa4\x7f\x68\x7e\x80\x9b\x50\x8c\x31\xc2\x5b\x71\xa5\x31\x97\x4f\x65\x5c\xf3\xba\x69\xe3\xd0\x7d\x19\xec\xbc\x64\x0a\xcd\x3a\x7d\x63\x2d\xed\xc8\xeb\xd7\xaf\x1b\xf6\x21\x2e\xa5\x20\x55\xd3\x4a\x2d\x7f\xa0\xd9\x82\xd6\x6e\x4f\x0a\x03\x1c\xba\x1a\x01\x0e\x4c\x45\x2f\xf2\xe5\x68\x1e\x15\x3f\xa7\x59\x9d\x94\xa4\x01\x4b\x56\xba\x2f\xbf\xfa\xea\xbb\x41\xab\x02\xaa\x74\x2b\x2e\x69\xcf\x3a\xe2\x38\xd7\xdf\x5a\xf1\xd3\xc3\x69\x4a\xd1\x61\xa4\x1e\xa4\xa1\x09\x06\x4b\xd8\x48\x01\xd9\xdf\x2a\x24\x0e\x60\x6e\x49\x5b\x7c\x70\x21\xf4\x51\xc2\xc8\x43\x05\xcb\xd2\x95\x60\x5a\x06\x20\x64\xa7\xb2\x6c\xab\x51\xd3\xa0\x17\x31\x12\x9d\xe8\x8a\x01\x28\xcf\xdc\xaf\xcc\x42\xa5\x25\x50\xf3\xe6\x8a\x76\x32\x5e\xbf\x7e\xed\x02\x73\xea\x47\x55\x2a\xc2\x34\x06\xcd\x12\xe0\x5b\x58\x38\xf0\x98\x6c\x4a\xd9\x5d\xe5\xa3\x59\xd3\x11\x23\x5d\xa5\x75\x35\x4d\x47\xd5\xc2\x8d\x92\x51\x90\x63\x45\x85\xe8\x00\x30\x4a\xb1\x6e\x05\x8c\x02\xb9\xee\xf6\x56\x68\x63\x1e\x25\xa6\x75\x8b\xd3\x82\x80\xb8\x61\xfd\xb3\x20\x9f\x65\x41\x51\x39\x86\x12\x98\x46\x3b\xc3\xea\x3d\x92\xb7\xb3\x15\x1d\xf2\x83\xd4\x9f\x33\xc4\x75\xb0\x79\xb8\x58\xbd\x87\xd3\x20\x7f\x97\x45\xe3\x4a\x9c\x95\xc0\xdc\x58\x09\xbc\x7a\x2f\x45\xd8\xa1\xbc\xaa\x97\x0a\xe6\x86\x6d\x8c\xd0\x15\x5a\x45\x33\xe5\x60\x5f\x89\x86\x64\x4c\x86\x7f\x70\x5b\x9b\xaa\xbe\xd9\xa0\xa8\x45\xcc\x42\x8c\x6b\x97\xfe\x58\xdb\x31\xa0\x2b\xcd\x51\x64\xbc\x58\x08\xc6\x45\x9a\x49\xf1\x47\x5a\x3e\x80\x19\x71\x8f\x30\x58\xc3\x96\x58\x40\xfb\x1a\x9b\x48\x4b\x07\xe7\x29\x6a\x0f\x3d\xb7\xe3\x50\x07\x19\x05\x4b\x25\x78\x3c\x76\x60\x99\xd3\xa3\x38\x45\xdc\x7a\x42\xd7\xc3\x50\x21\xc3\xcd\x5b\x37\x76\x3d\x69\x8e\xd1\xa7\xc5\xac\xd3\xed\xb9\x24\xfb\x3a\x9d\x22\xd9\xb8\x59\x97\x7c\x03\xd5\x86\x18\xd5\x2e\xf4\x25\xf6\x3b\xa2\x40\x7f\x1a\xa7\xa3\x20\xee\x33\xa4\xf6\x03\x37\x59\xc4\x3c\xf3\x35\x19\x8d\x83\xc5\xdb\x9b\x36\xcb\x0a\x3b\x8d\xf2\xc4\xaa\x26\x91\x55\x8a\x6e\xd0\x7e\xfa\x80\x63\x4a\xc9\x02\x1d\xff\xf4\xd4\x79\xa3\x7a\x59\xcc\xb4\x3d\x9f\x65\x98\xd3\x1a\x6e\x3d\xed\xb5\x1c\x03\x21\x61\xa0\xae\x2d\x73\x5a\xc3\xed\x6f\x20\x81\xcf\x69\x6b\xb8\xfd\x1d\xff\x54\xb4\xd0\x1a\xee\xf0\x22\xd1\x28\x48\x5a\xc3\x9d\x9d\x9e\x69\x3e\xf8\xff\xb1\xf7\xee\xfb\x6d\xdb\xcc\xa2\xe8\xdf\xc9\x53\xa0\xdd\xe7\x6b\xa4\x98\xb6\x75\xb7\xa3\xc4\x5d\xcb\x91\xed\xd8\x2b\x71\xec\x6d\x3b\x6d\xbf\xed\x9f\xeb\x1f\x25\x42\x16\x1b\x89\xd4\x22\x29\x5f\xd2\x78\xbf\xcf\x79\x8e\xf3\x62\xe7\x87\xc1\x85\xb8\x52\x94\x2f\x69\xda\x65\x7f\x6b\xa5\x22\x09\x0c\x06\xc0\x60\x30\x18\xcc\x05\x1e\xd9\x20\xfd\xd8\x6d\xb5\xe0\x99\x9b\x11\xfd\xd8\x6d\x51\xf0\x8c\xb3\xff\xd8\x6d\x51\xb4\xf8\x65\xef\x8f\xdd\x16\x69\x90\x1b\x01\xfd\xd8\x6d\x35\x6f\xcf\xbc\xe6\xab\x27\x7b\xc4\x27\x7b\xc4\x7f\xb6\x3d\xa2\xcb\x18\xf1\xde\x36\xf3\xe5\xcd\x04\x4b\xd8\x00\x42\xb9\x8f\x38\x7b\x4c\x13\x7b\x78\x3b\xdf\x64\x25\x37\xae\xbf\x8b\xcd\x4a\x09\x93\xfa\xd5\xd5\xd5\x3c\x26\x8d\x2d\xce\x0d\x4b\xd8\x48\x58\x3c\x80\xc3\xd9\x08\xf9\xd3\x50\xc2\xfd\x91\x0e\x24\x66\x32\x7a\x4d\xe0\x51\x33\xd6\xdf\x55\xb8\xc2\x38\xd1\x75\xe3\x46\x2b\xae\x42\x0b\x08\x7c\xb2\xf8\x65\x6c\x6a\x1f\x71\x66\xd9\xd4\xd4\xcd\x4b\xde\x5d\x6e\xcf\xbc\x56\xed\x69\xb7\x78\xda\x2d\xfe\xd9\xbb\xc5\x77\x6a\xbd\xfe\x70\x86\xe6\x25\xed\xe0\x73\x53\xce\x43\x9c\xa4\x71\xe4\x8f\x9f\xec\x39\x1f\xdb\x9e\xf3\xb6\x9c\x85\x5f\x84\xaf\x72\xb3\xc1\x22\xfd\x70\x5e\xd0\x54\x11\x4f\xd9\xac\x9e\x5b\x0b\xdd\xe3\x86\x32\x9c\x90\x8d\xe0\xc8\xbf\x7a\x8f\xe7\xdd\x5c\xc8\x45\x5f\x78\xcf\x9f\x3d\xd3\x71\x33\x0a\x14\x78\xa6\x95\xbf\x89\x33\xdb\x11\x1f\x24\xc3\xbd\x67\xcf\x4a\xde\x4d\x97\xbe\x82\xc3\x83\x23\x3c\x88\x2f\x69\x70\xa8\xa2\x3b\x2b\x5e\xce\x8a\xab\xfa\xb5\x60\x40\x66\xd1\x38\x1e\x7c\x2e\x47\x29\x4a\xd9\x02\x62\x71\x95\x2b\x63\xf0\x58\x6e\xdc\x9c\xa3\xf7\xc0\x37\xdf\xf9\xdc\xcf\xbd\xfe\x5e\xe4\x9a\xd3\x76\x6d\xec\xec\x52\xf9\xf9\x29\x37\x3b\xc5\x73\xb3\xc8\x5d\xa6\x3e\x37\x1a\xf2\x36\xc9\x9a\x35\x2c\x35\x22\x2d\xde\xfc\xad\x42\x41\xd2\xed\x09\xa7\x6a\xd7\x6d\x87\xf3\x52\x44\x02\x27\xcb\xbb\x8f\x77\x3e\xd8\x9c\xa3\x16\xce\xa7\x43\x2e\xec\x10\xcb\x4d\xb9\x9c\x6f\xb7\xb9\x70\x6e\x51\x11\x69\x5a\x21\x5d\x4e\xaf\x3f\xc9\xe9\x4f\x72\xfa\x3f\x5b\x4e\x67\x42\x7a\x3a\x72\x68\x75\xe6\x88\xdf\x38\xc1\xb3\x09\x01\xfd\xf3\x1c\x25\xd0\x20\x4e\xf0\x4a\x18\xab\x72\xfa\x5a\xe9\xc0\x09\x25\x1d\x2d\xe7\xf9\x6b\x42\xa1\xe3\xd1\xe8\xd1\xb5\x43\xdf\x8f\x3c\x4e\xb8\xe3\xf1\x48\xb9\xdd\xc0\x57\x2c\xe8\xf4\xce\xb7\xb8\xd0\x49\x47\xf3\x2f\x74\xd2\x11\x5c\xe8\x50\xc1\x65\x91\x7b\x9b\x22\x39\xdf\xbd\x39\x19\xe2\x81\xb4\x35\x5d\x5a\x6f\xea\x98\x88\x90\x8e\x46\xe7\xf6\x02\xaa\x51\x08\xb2\xe8\xb2\x8a\x1a\x0d\xa3\x61\xec\x6e\xd1\xf2\xf5\x7e\xcd\xa5\x38\xdb\xf7\xaf\x19\x11\x1c\x87\x5f\xf4\xcb\x61\xa9\xed\x79\x45\x55\xab\x9f\xbb\x20\x12\x46\x87\xf1\xaf\xc5\x08\xd8\x8a\xdc\xaf\xe1\x89\x9f\x7c\x3e\x49\x66\x69\x86\x83\x43\x6c\x5c\x06\x4b\xcd\x17\x17\xbc\x1f\x12\x11\x26\x32\xdd\xa1\x1f\x16\xb4\xef\x2c\x73\x3f\x0a\xf0\x83\xe0\x30\x09\x2f\xfd\x0c\xd3\x23\xa1\xa3\xf5\xa2\x62\xf7\xeb\x3b\x4d\xfa\x35\xb7\xfb\x45\xc5\xee\x87\xc0\xc8\x4f\xe7\xb6\xee\x2c\x73\xbf\xa6\x2f\x70\x46\x37\xf4\xc2\xb1\x2f\x28\x75\xff\xe6\x4b\xcc\x7d\x51\xb1\x7b\xd3\xfd\xf1\xcd\xa4\xb0\x71\x57\x91\x7b\x53\xfd\xbc\x86\x5d\x45\xee\x3b\xe4\x44\x8e\xcb\x30\x05\xbd\x93\xc4\x93\x43\x3f\x4d\xaf\xe2\x24\x28\x1a\xff\x92\x75\xee\xbd\x0e\xe6\x8d\x89\xab\xc8\xbd\xc9\x70\x5e\xc3\xae\x22\x0f\xc1\x7a\xe6\xb5\x5d\x50\xca\xde\xbc\x78\x58\x5d\x45\xe9\xac\x0f\x37\x6f\x34\xa5\xf1\x2c\xca\x9f\x27\x61\x9a\x86\xd1\xc5\xf3\xd2\xd8\x4e\xe3\x54\xbf\xba\x92\xb0\xb4\x7c\xb5\xe8\x29\x50\xb1\xde\x11\xcd\xbf\xe5\x3a\x1e\x8d\xa4\x04\x62\x9a\xed\x85\x72\x8a\xd6\x2c\x23\x5a\x8d\xa7\x33\xf4\xd3\x19\xfa\x9f\x7d\x86\xce\xef\xba\xfa\x5f\xbe\x68\x77\x5d\x9b\x63\x7c\x8d\xde\xe2\x04\x5f\xa4\x5f\xfc\xf4\x4b\x88\xde\xf8\x63\x7c\xfd\x9f\x49\x36\x4c\x57\x46\x33\xf5\x38\xdc\x61\xd1\x4c\x8f\xf0\x10\x27\x38\x1a\xe0\x2e\x22\xed\xa7\xdd\xd5\xd5\x8b\x30\x1b\xcd\xfa\x2b\x83\x78\xb2\xca\x4f\xdd\xab\x17\xf1\xb2\xf8\xdd\x1f\xc7\xfd\xd5\xf4\xca\x4f\x26\xab\x61\x94\xe1\x24\xf2\xc7\xab\xa4\x4b\xf8\x3a\xe3\xff\x5d\xb9\x88\xff\xd7\x87\x66\xf3\x91\xaf\xc6\xf2\xfb\xae\x63\x82\xcd\x3f\xfc\x70\x0d\x3f\xfe\x16\x97\x5d\xd4\xf2\x15\x67\x57\x71\xf2\xf9\x08\x43\xa8\xda\x22\x45\xb9\x5e\xdc\xd4\x96\xf7\xbf\x7c\x39\x2f\x28\x75\x1f\xdf\xbc\x9b\x68\xb0\x1d\xf9\xfd\x31\x9e\x87\xa5\x54\xd2\x8e\xa0\xbd\xc0\x7d\x70\xbb\xf2\xa7\x25\x71\xcb\x4b\x3a\x70\xb3\x16\xb8\x07\x6e\x41\x7c\x15\xb1\x28\xc4\x45\x88\xf1\x62\x76\xac\x2c\x5f\xcb\xbb\x9b\x3a\x10\x9b\x4d\x4b\xa0\x45\x0b\xd9\x91\x32\xbe\xdd\x1b\xa5\x04\x67\x49\x88\x2f\xe7\x45\x80\xe0\xc5\xec\x68\x59\xbe\xde\x87\xb4\x32\xb2\xdb\xcd\x21\x2a\x52\xc6\x41\x4e\xda\xa7\x7b\x0f\xd1\x05\x2e\xe1\xce\x6c\xc7\x45\xfd\x70\x8f\x31\xa1\xd9\x1b\xe6\xc4\x48\xb5\xe3\xa0\x7e\xb8\xf7\x68\xb0\x84\x2d\xc5\xc8\xd0\x42\x76\x7c\x8c\x6f\x1c\xa5\x56\x29\x94\x0a\x6e\x75\x0d\x15\xa7\xce\x96\xa5\xdb\xbf\x9c\x1f\x4a\x2f\x73\x46\x94\xbf\xe4\x7c\x40\xba\x71\x9c\xaa\xcf\x9c\xfa\x25\x40\x84\x04\xf3\xc7\x0b\x2c\x5d\x4c\x4e\x67\xd2\x83\x24\x8b\x3f\xea\x35\xe3\x28\xbc\x74\xfa\xc6\x90\x39\x81\xef\xce\x33\x64\x31\x6c\x8b\x52\x56\x81\x0d\xdf\x1d\xc7\x2b\xcb\xf9\x8a\x08\x4b\xb6\x60\xb7\xd6\x7b\xc9\xe6\xd3\x99\xea\xe9\x4c\xf5\xcf\x3e\x53\xb1\x03\x15\xbf\x20\xfa\xb6\x51\xda\xef\x62\x58\xcd\xbd\xa3\xfc\x69\xc8\x85\x71\x9a\xe2\x2f\x1b\x15\x59\xa0\xd1\xeb\xb2\xc2\xa8\x94\xbc\x74\x76\x33\x25\xf2\x01\x8b\x40\xf9\xfa\xb9\xc4\xc0\xc3\x6c\x30\xaa\x90\xef\x7a\x6e\x91\x81\x9f\x62\xf4\x82\x50\x7c\x9a\xbd\xe8\x2a\x9f\x60\xb2\x92\x8b\x74\x25\x1d\x85\xc3\xac\xa2\x25\x14\x41\x46\x72\xc0\x9a\x59\x80\xb1\x64\x70\x5f\x8b\xf0\x15\x8d\x40\x45\x2f\x64\x5f\x5b\xd0\x98\xe2\x28\x08\xa3\x8b\x47\xc7\xe3\x90\xb6\x23\xdb\x10\xd9\x90\x62\xa1\x03\x4d\x6c\x34\x70\x46\x65\x9a\x60\xe5\x56\x92\x0e\x44\xa9\xf9\x96\x84\x0c\x9a\x2e\x23\x28\xa4\x60\x91\x9d\x2c\x52\x75\x14\x46\x69\xe6\x8f\xc7\xa5\x5a\xd6\x4a\xdb\x7d\xdd\xdd\x85\x0a\xf0\xb8\xc0\xd9\x87\xf8\xa2\x44\x40\x31\x52\xca\xe9\x63\x4f\x5b\xd4\x8a\x14\xb4\x3a\x8d\xe7\xc6\xe1\x20\x45\xe6\xb4\xd7\x1b\xf9\xd1\x05\x2e\xd1\xa4\x4d\xf8\xa0\x20\x64\x93\x2c\x65\xf4\x14\x41\x88\x74\x4c\x6a\x24\x1e\x8f\x65\x79\x60\x61\x7e\x93\x8e\x46\x2b\xc0\x1a\x0d\x76\x93\x8e\x4c\x76\xe3\x16\x9f\xe6\xdc\xd2\x18\x64\x80\x8c\x5b\x1a\xc5\x92\xe0\x41\xd5\xf4\x6e\x62\x44\x36\x4d\xfd\xe3\x21\x62\x92\x2e\x32\xae\x29\x68\xb3\x0c\x07\xbd\xe8\xfd\x9a\xd7\xc8\xf8\x01\xda\x96\x49\xcf\x90\x44\x29\x0e\x38\x1b\x75\xc9\x3f\x14\x58\x3a\x1a\x75\xc9\x3f\x54\x78\xb5\x25\x64\x68\xb5\x9e\x44\xd2\x27\x91\xf4\x1f\x2e\x92\xe6\x7a\x7e\xee\x63\xfd\x40\xd9\xa2\xa9\x7f\xf8\x11\xbe\x20\xf3\xec\x27\x9b\xfd\xd0\x91\x97\x20\x5d\x7d\xa7\x16\x85\x44\xff\x5c\x3d\x1f\x0e\xfc\xa9\x0c\xc4\x05\x63\xaf\xb7\x79\x68\x42\x90\x30\x61\x8e\xe8\xcc\x7a\x19\x6d\xa0\x17\xb5\xeb\x41\x27\x78\x15\x34\x06\x41\xab\xf5\xca\x5f\x6b\xb7\x06\xad\x57\xad\x46\xa7\x85\xeb\xeb\xb5\x57\x83\x76\x0d\x37\x5b\x41\xa7\xd5\xee\x34\xfa\x2f\x72\x5c\x6c\x60\xfc\xba\x5f\xaf\xd7\xfb\x83\xda\x5a\x6b\xf0\x6a\x30\xf4\xd7\xd6\xeb\xc3\xda\xa0\xb9\x8e\x3b\xcd\x7e\xd0\xae\x0f\x5e\xd5\xfb\xeb\xfe\xb0\x56\x7b\xe1\xe6\x4d\x14\xc7\xae\x24\xe9\xfa\xfd\xb0\x6b\x19\xc4\x9c\x13\x32\x37\xf8\xae\xb5\x7f\x74\xa7\xa7\x85\x09\xda\x06\x64\x7d\x5c\x2d\x70\xcd\xee\x52\xa8\x0a\xc7\x2c\x9e\xc5\x1f\xbb\x75\xef\xc7\x39\xf3\xf4\x63\xb7\x41\x98\x6d\xfb\x89\xd9\x3e\x31\xdb\x7f\x36\xb3\xcd\x79\x2d\x57\x7e\x69\xcc\xb6\xc8\x30\x79\x98\xc4\x5f\xf0\xc4\x8f\x56\x02\xfc\xf3\xb7\x4a\xe7\xaf\x5f\x90\xde\x27\x5d\x3f\x55\x24\x4a\xdf\xe9\x0b\x25\x23\x81\x56\x22\xd5\x4b\xdc\x25\xf7\xfe\xe2\x19\xfe\x0b\xb2\xf5\xf3\xb1\x78\xfc\x7c\xfd\x65\x73\x7c\xdf\x3b\xc5\xb7\xa5\x4b\x05\x49\xbe\x6d\xa1\x5b\xb4\x11\xfe\x0f\xdb\x5b\x5a\x17\xd2\x6d\x7f\x27\xe9\xb5\x9d\xfd\x7e\xa0\x04\xdb\x3f\x6c\x50\xc2\xd1\x5e\x91\x0d\x65\x18\x46\x38\xb8\x4f\x06\x6e\x9e\x39\x36\x8b\x11\x4b\x5b\x9d\xa7\xb3\x86\x74\xdc\xe2\xb0\x2d\x12\xb2\xae\xa0\x7d\xb2\xb1\x85\x38\x65\x94\x04\xc3\xa4\x8d\xa5\x96\x03\x7b\x6e\x36\x7d\x3e\xae\x3b\x6c\xa4\xbe\x7e\x9c\x8d\xc7\xb7\x92\xb1\x7b\x38\x44\xf8\x3a\x4c\xa1\xb8\x75\xc8\xb5\x16\x0b\x73\xca\xf3\x0c\x36\xbc\x35\x9a\xc3\x46\xce\xbb\xbf\x8c\xea\x67\x55\x47\x9a\xf9\x95\x69\x3c\xad\x54\x21\x6f\x35\xbb\xf7\x22\xfc\x1f\xd6\x13\x8c\xd6\x0f\xb2\x70\xa3\x0e\x37\xb5\x6f\xc8\x31\xcb\x62\x3b\x29\xaa\x76\x10\x2e\x62\x64\xaf\x78\x2f\x9c\xd4\x58\x3e\x7d\x37\xd4\x11\xa2\x24\xe2\x09\x4a\xf2\x74\xde\xef\x70\x56\x91\x4e\xe7\x38\x9a\x4d\x70\xe2\xf7\xc7\xb8\x8b\xb2\x64\x86\x4d\xd5\x9f\x3f\xc1\x69\x61\xaa\x6e\x29\x9f\x37\x14\x06\xe5\x2d\x92\x72\x78\xa7\x73\x92\x78\xa7\x5a\x16\xef\xd4\x91\xc6\x5b\x2f\xf2\x5a\xd1\x88\x89\xe6\xeb\x3c\x7b\x3f\xed\x84\x3d\xbb\x4b\xdc\xff\xc3\x83\xf2\x1e\x1d\x32\xd6\x17\x02\xdf\x4f\x6f\xa2\xc1\x3b\xd8\x6f\x88\xc8\x0b\x5d\xa8\x9e\x29\x39\xd1\x37\x59\x91\x8a\xe4\xa6\xa1\x55\x53\x26\x09\x40\xa8\x2c\x03\x6e\x97\xd1\x12\xe0\xb0\x32\x18\xf9\xc9\x66\x56\xa9\x55\x57\xb2\xf8\xd3\x74\x8a\x93\x9e\x9f\xe2\x4a\x95\x7f\x86\xac\xca\x95\x7a\xd5\xb9\xf1\xf0\x99\x75\x67\x1e\xcd\x37\xee\x3c\x8d\x2a\x8f\x88\xc6\x6b\x5c\x90\x0e\x99\x2b\x46\x08\x28\x4a\x82\x6d\xf1\xd6\x96\x62\x5b\x55\xf4\xf0\xcc\xf6\xa2\x0a\xdd\xee\x25\x8d\x4d\x9e\x8a\xbb\xa8\x83\x7c\xd4\x17\xeb\x65\x7e\xd7\xef\x0e\x02\x86\x72\x33\x27\x6b\x87\x68\xda\xf3\x05\x7b\x55\x32\x3d\xba\x9a\x12\xdd\x3e\xd8\x66\x52\xf4\x5b\x35\x7b\xf9\x05\xce\x16\x4c\x5e\x7e\x81\x5d\xdb\xc9\xf7\x9d\xbb\xdc\x42\x1c\xe5\xb3\x97\xeb\x66\x73\x5d\x59\x1e\x35\x95\xe4\xa7\x67\xaa\x7a\x9d\x4c\x13\xab\xa2\x6d\x56\x25\x13\xa1\xcb\x53\xf6\x58\xe9\xd0\xf9\x00\x49\x07\x73\x2d\x66\x0f\x39\x62\x77\x9e\x8e\xd8\x4f\x47\xec\x7f\xf6\x11\x5b\xd2\x67\x32\x0e\x31\x61\x2c\x5d\x3d\x69\xff\x17\x1e\x0e\x13\x7c\x83\x7e\x0d\xc7\x83\xcf\x18\xbd\xf9\x03\x0f\x87\xae\x68\x3d\x0b\x85\xf6\xd9\xf7\x13\x72\x84\x3f\xf0\xa3\x01\xf6\xa1\xac\x2d\xa8\xcf\x1d\xe2\x00\xb1\x2a\xef\xfc\x4b\xf4\x6b\x1c\x07\xe8\xcd\x85\xf3\x90\xdf\xca\x0f\xf9\xff\xc5\xb8\xa9\xe2\x3c\xcc\x58\x6c\x51\x4a\x5b\x4b\xa0\x3a\x3d\x0b\xad\x2d\x05\x2d\x4e\x92\x58\x0b\x1e\xb4\x4a\xdf\x51\x1b\x04\xba\xed\xec\x65\x2f\x52\xb2\x31\x4e\xe3\x28\x0d\xfb\x63\x4a\x60\x53\x1f\x9c\x48\xd0\x84\xdd\xf9\x90\xbd\x68\x9a\xc4\x97\x61\x80\x93\x54\xd4\xf2\xc7\x69\x6c\x56\x8d\xc7\x63\x52\x95\x50\x1b\xb7\x1e\x47\x51\x1c\xd0\xaf\x61\x34\x88\x27\x32\x64\x02\x8c\xe5\x14\xa0\x57\xae\x59\x38\xc1\x64\xb1\x85\x29\xaa\xa3\x14\x0f\xe2\x28\x80\xdd\x31\x8c\x2e\xc6\x38\x8b\x23\x18\x4e\xd2\xbd\x82\x83\x3e\x47\x55\x39\xee\xf3\x97\x68\x43\x74\x45\xd2\x33\x90\xb6\x41\x03\x7c\x2b\xbd\xe4\xb8\xc8\x5a\x07\xe7\xe1\x8f\x48\x28\xa3\x24\x8e\xe2\x59\x3a\xbe\x81\x30\x18\x8e\x7d\x98\x7c\xb2\x9c\x47\x50\xe0\x67\xbe\xf3\x84\xac\xf6\x56\x51\x79\x44\x81\xd2\x79\x02\x46\x3e\xa9\xfd\xa0\xf4\x5e\x49\x6e\x18\x47\x69\x4c\xb6\x2e\x42\x14\x15\x4a\x1a\x2b\x7b\xd1\xa5\x3f\x0e\x83\x43\x56\xbe\x22\xcb\x3c\xdc\x0b\x1b\x06\x43\x92\xf0\xd5\x3d\x9e\x91\xf9\x4a\x16\x1f\xd2\x77\x80\xd2\x0a\xed\xbd\x07\xdd\x64\xc6\x16\xd2\xf9\x85\x9d\xca\x37\xd4\xb9\xa2\xc2\x2c\x03\xcd\xaf\xca\xa1\x53\xbc\x91\x30\xfd\x85\xa0\x7b\x44\xa9\x10\x0b\x41\x4d\xea\x66\x36\x4a\xe2\x2b\xa4\x76\x4f\x2f\xaf\x74\x87\x75\x93\x7e\x5a\x29\x75\xf2\xf7\x17\x9a\x7d\x90\x66\x0b\x49\x40\x3f\x97\x0a\xe9\x67\x3e\x31\x00\x70\x83\x22\xa4\xe0\xb9\xa5\x68\x83\xa7\xce\x94\x64\xe3\x22\xea\x78\x18\x42\x30\xe7\x9e\xca\xfd\x0c\x64\x09\x79\x9e\x74\x0a\x27\x89\x2e\xe2\x5b\x7a\x53\xd5\xcd\x6d\xc8\x9f\x02\x67\x11\x1a\x9b\x3f\x64\x46\x6d\xb9\x7d\x43\xc8\x65\xd9\x5e\x15\x12\xd4\x83\x73\xba\x8f\x0d\x36\x6a\x2c\x3a\x19\x90\x02\x6f\xc9\x77\x8b\x92\x89\xd6\x7b\x08\xc2\x84\x16\xbe\x33\xc2\x04\x9c\x64\xea\xe4\x4c\xe6\x6e\xa4\x98\x3e\x00\x2d\xaa\x34\xc8\xf5\x6c\x30\x1b\x15\xde\xca\xbd\x48\x2f\x9d\x47\x7b\x4a\x87\x04\xd1\xa1\x39\xdb\x1f\xce\xc4\xbe\x4a\xa4\x4d\x7e\x26\x64\x22\x9f\x41\x71\x19\x9f\x2a\xbb\x6a\xae\x90\x96\x44\x5d\x75\xd7\x77\x6e\xf7\xf3\x76\xee\x8c\x1c\xa9\x98\xe0\xa2\x23\x4a\xbe\x1d\x8a\x4f\x73\x39\x36\x8d\xfd\x7f\x0b\xd0\xf6\x82\xb9\x4b\xc6\xf2\x55\x98\x25\x71\x4c\xb2\x38\x88\xd1\x60\x8c\xfd\x68\x36\x45\x11\xc0\x27\x03\x2c\x8e\xed\x45\x43\x25\x61\x6f\x59\x79\x14\x49\x39\x20\x8a\x68\x5c\x1d\x4b\x22\x1c\x9d\xd2\xd2\x67\x44\x48\x22\xd5\xbb\x88\x02\x09\x83\xae\x01\xa8\x6b\x03\xd9\xcd\x7f\xde\xf2\x9c\xd8\xab\xab\xfa\xe8\x2b\x0c\x80\x09\x60\xea\x6e\xce\x10\xaa\x88\x15\x3e\x67\x72\xe3\xa9\x10\x4a\x89\x08\xca\xcc\x68\xe1\x74\x73\x11\x92\x23\x5d\xa8\xeb\x8e\x49\x1d\xcb\x9c\x1b\x73\x5b\x38\xf2\x02\x84\x4a\xa4\x50\x97\x77\x88\x5a\x96\x59\x06\xf9\xb5\x34\x3c\x39\xfe\x6c\x74\x2a\x4c\xa3\xfa\x19\xdf\xa4\x95\xbc\x6e\x95\x6b\x79\x21\x59\x3c\xfa\xe9\x27\xe4\x1a\x43\x42\x4c\xc9\x09\x7d\x5f\x51\x0a\xbd\x56\xc7\x59\x17\x80\x0b\xc6\x3b\xdf\x7d\x12\x4c\x78\x01\x91\xff\xf9\xb0\x4f\xf0\x60\xe4\x47\x61\x3a\xe1\xc7\xd0\x62\xe6\x00\x00\x8a\x87\x97\xb6\x21\x0f\xec\x67\x8c\xa7\x22\x7f\x00\xef\xec\xea\xcb\x3f\xd2\x51\x18\x91\x86\xae\x07\xf1\x64\x3a\xc6\xd7\x61\x76\xd3\x6d\xc3\x91\x8c\x14\x20\x04\x51\x21\x9b\xc3\x67\x7c\x43\x35\x05\x62\x34\xa5\xf1\x5a\x5d\x45\x09\x9e\xc4\x97\x18\xf9\xe3\x31\xf4\x2a\xf5\x10\xbe\x1e\xe0\x69\x06\x62\x3f\x7b\x25\x97\xcf\x46\xf8\x06\x45\x98\x8e\x48\x1f\xb3\xfa\x01\xe9\xf1\xcc\x1f\x8f\x6f\x50\xff\x06\x86\x8c\x0c\x0f\x4b\x05\x00\x34\xf3\x2b\xd9\x90\xc2\xe8\xa2\x52\x95\xf6\x81\xca\x0f\x4a\xef\xd0\xd7\xaf\x04\xdf\x95\x30\x0a\xf0\xf5\xc1\xb0\x02\x6e\x8a\x84\xd8\xce\x5f\x54\x61\xf2\x97\xeb\xfa\x06\x21\x51\xd8\x67\x7c\x73\xb6\x22\x56\xa2\x6e\x0e\x6d\x52\x24\x29\x6f\x98\x26\xff\x8d\xc9\x13\x4e\x99\x64\xde\x07\xd4\x36\x17\xc5\x51\x19\x9e\x40\x4d\x6a\x8b\x68\x92\x59\x0c\x9b\x2a\x50\x07\x15\xa2\x0e\x01\x67\xe9\x4c\x8a\x33\xa5\xf7\x04\xb0\xa4\x8a\xf4\xd0\x60\x65\xfb\x64\xf7\xfc\xf0\xe0\xc3\x87\xbd\x8f\xef\xce\x4f\xf6\xf6\xb7\x0f\x3e\x9d\xc8\xc7\xa3\x32\x33\x60\x0a\x55\x8a\xc4\xf4\x28\x47\x47\x53\x26\x23\x78\x6d\xf9\x99\x8f\x36\xd0\xe9\xd9\x6b\xf5\xfd\x1e\xb8\x1b\xf3\xd7\xe5\x96\xaa\x00\xb8\x32\x9d\xa5\xa3\x8a\x4e\xf7\x4c\xc4\x53\x4a\xef\x05\x29\x2d\xfc\x19\xdf\x54\x8d\x31\xc8\x01\x2e\x30\x78\xa5\xc4\x4d\x01\x99\x35\xca\x97\xd4\xc4\x9f\x2a\x4c\x32\x04\xb2\x05\x86\x02\x24\x46\x48\x53\x1d\xa6\x7d\x7f\x2a\xa9\x2e\x24\xbd\xb6\xea\x29\x4e\x05\x57\xe0\x1a\xd5\x3f\xf5\x31\xd8\xf7\xa7\xa7\x50\x2d\x84\x2d\x9e\x8f\xcc\x29\x14\x3f\x93\x3c\xd2\x45\xe3\x8a\xdf\x3c\x5a\x58\x66\x8e\x55\xa9\x59\x09\x6f\x72\x72\xb0\x75\xd0\xe5\x44\x86\xc6\xf1\xc5\x7f\xe8\x52\x75\xec\x90\xab\xef\x2b\x49\x97\x50\x16\xa4\xd6\xa3\x23\xfb\xb6\x32\xf1\xa7\x15\x97\xb1\x02\xff\x03\xfb\xc5\x20\x1f\x65\x32\xf6\xec\xa8\x17\x06\xb2\xe3\x8d\xa0\x88\xcf\x18\xa5\xb3\x04\xf4\xc4\x9c\x59\x85\x29\x4a\xb3\x90\xd0\x03\xe5\xe4\x38\x40\xfe\x10\x1c\x84\x92\x24\xbc\xf4\xc7\xda\x5e\xab\xc0\x24\x03\x02\x6e\xff\x74\x69\x84\xc1\x99\x8e\x62\xde\xa5\x95\x41\x6e\x0f\xa0\xd6\x11\x5f\x9c\x0e\x33\x5c\x77\x22\x7f\xba\x45\x78\xcc\xf4\xcc\x96\x1a\x43\x7f\x9c\x62\xf9\x96\x8d\xb9\x3d\xcd\x1d\x53\x91\xce\x9f\xb5\x89\xee\x00\x83\xcc\x0b\xcc\xb8\xb4\x68\x1d\x87\xff\xd7\xc6\x78\xfe\x00\x35\x4b\x8c\x63\x79\xc5\x00\x52\x28\x4c\xea\x25\x54\x54\x47\x49\x5b\xec\xee\x61\x52\x71\x71\xeb\x19\x90\x7c\xc9\xe9\xca\xb8\x74\xa4\x07\xd5\x50\x6f\xbc\xb4\xd4\x4b\x66\xea\x0a\xa6\x90\xfe\xb1\xdb\x80\xd0\x3e\x4c\x19\xfe\x63\xb7\x09\x6e\xa8\x6b\x65\xee\xc8\x58\xcc\x4d\x9c\x65\x61\x74\x61\xf7\xec\x05\xc6\x14\x48\x99\x6b\xd1\x86\xf0\x59\x7b\x6d\x94\xc8\x23\x3d\x0b\xfb\x20\x57\xd0\x22\xd6\x28\xeb\x37\x41\x79\xfd\xe9\x5a\xef\xe9\x5a\xef\x1f\x7e\xad\xc7\x22\xfa\xb2\x53\xcb\x5d\xa2\xfa\xce\x33\x87\x75\xe4\xbe\xd0\x52\x5f\x2c\x62\x38\xcb\x97\x74\x9d\x1d\x0e\x36\x83\x20\x85\xa1\x13\xbb\x9b\x1f\x81\x5a\x2a\x45\x33\x2a\x7e\x31\xa7\x37\x8f\x08\x5f\x61\x06\x91\xf2\x10\x24\x05\xa0\x9b\x2a\xdd\xed\x9f\x3f\x97\xcf\x07\xec\x7c\xf6\x5c\x57\x12\x91\x6d\xf3\x39\xbb\xb6\x92\xca\x49\xbc\x8a\xc6\xe9\xe1\xae\x74\xa4\x5c\x1c\x31\x87\x2b\x85\xa3\x31\xb9\x89\x8c\xbd\x45\xd5\xe8\x12\x8a\xe8\xbe\xcd\x7b\x9a\x5a\x36\x0b\x9b\x3d\x0e\xff\x53\xf7\x2d\x7d\x7b\x72\xe9\x2e\x85\x85\x20\x0f\x44\x04\x28\xff\xf4\x13\xe0\x4e\x15\x53\x61\x74\x01\xdc\xb8\xaa\x40\xe4\xd7\x17\xf3\x52\x9a\x52\x88\xb2\x97\xf2\x5d\x3b\x29\xa4\xa1\xb1\x9f\x42\x33\xc7\x19\x99\xec\x1f\x36\x36\x8c\x81\xe6\x7f\xc6\x8b\xd5\x55\x9a\xb9\x5d\x21\x29\x58\x6a\x59\x32\x23\x32\x5b\x92\x66\x28\x8d\xa9\x9d\xe3\x74\x0a\xac\x1b\xce\xce\x7e\x74\x93\x91\x03\xbf\x87\xfa\x78\x48\x18\x00\x5d\xe2\xfc\x0a\x15\x46\x83\x2a\x19\xb5\xbf\x70\x58\xf9\xc1\x82\xf5\x4f\x3f\x21\xdb\xc8\x57\x8d\xfa\xc8\xbc\x6e\x20\xa8\x5a\xdc\xa3\x9d\x9d\x8d\x29\xdf\x8c\xf0\x75\x86\x7a\x87\x9f\xd0\xe0\x66\x30\xc6\x9e\xe8\x26\x0c\xbb\xd8\x6c\xa0\x27\xd0\x65\x66\xb3\x34\x4d\xe2\x01\xe1\x59\x29\x1d\x1d\xa3\x15\xe9\x18\x2c\x96\x89\x6d\x2e\x2c\x1d\x61\xa4\xa1\x97\xba\xf5\x50\xad\x4c\xff\x2c\xc3\x4a\x49\xc1\x25\x9a\x49\xc6\x60\xcf\x05\x00\xdd\x8c\x4d\xd2\xc5\x56\x4c\x3b\x28\x47\xba\x5f\xdd\x12\xea\xd6\xcb\x85\xf0\xbd\xc0\xcb\xd9\x04\x7b\x2f\xeb\x90\xa8\xce\x00\x38\x0b\x59\x27\xdc\x4e\x72\xcf\x9a\x96\xd3\x99\x6b\xb3\xd8\x64\x5e\x93\xff\x90\xac\x6b\xda\x23\x72\xb4\xa4\x9c\x5a\xa2\x5c\x78\x69\x49\x2a\x27\xd6\xab\x74\xd2\x87\x0f\x7e\x10\x08\xdb\x2e\x29\xef\xa7\xf8\xae\x4f\x8f\x74\x70\x90\x58\x2c\x37\xde\x82\xf7\x92\xad\x38\x15\xe8\xc4\x48\xc8\x96\xbe\x79\xbb\x85\x16\x8b\xe1\x30\x7f\xa5\x6a\xa5\x72\x16\x04\x5a\x05\x0d\xf9\x52\x48\xc8\xb3\xe8\x96\x68\x0d\x02\x13\x2a\xe7\x8a\x34\x07\xd5\x82\xd1\xb6\x4a\xb5\x02\x21\xb7\x01\x1b\x91\xd5\xd5\x6c\x17\x44\xf6\x7d\xca\x51\xfa\x24\xfb\xfe\xd3\x65\xdf\xdc\xa4\x8d\x27\xec\x7d\x28\x1f\xdd\xbd\xbe\x1f\xa9\xd2\x6e\xd8\xf7\x85\xeb\x2d\xbe\xa6\xea\xea\x22\xd7\xdd\xe3\x89\x9f\x64\xdb\xac\x60\xee\x76\xeb\xbc\x1a\x03\xb5\x12\x34\xcb\xfb\xa2\xe9\xbc\xa5\xd7\xe2\x12\xec\x38\x4b\xc2\xe8\xe2\x16\x5c\x5b\x6c\xef\x89\xb4\xdc\xf7\x23\xf9\xd3\x2f\xfe\x78\x86\x6f\xd1\x25\xf9\x0f\xbb\x0e\x21\x90\x87\x38\xc1\x73\x6e\x48\x3d\xd5\xbc\x00\x82\xd4\x30\x9c\x54\xb1\x38\x1b\x79\x80\x11\x91\xd6\x3d\xda\x92\xb9\x85\x81\xda\x8d\x8e\x32\x64\x9b\xee\xfb\x51\x25\x8b\xab\x4c\x55\x04\x3a\x1c\xf2\x99\xab\x7c\x2a\x16\x2b\x22\x52\x0f\xd2\x44\x54\x5e\x84\x54\x7d\x43\x21\x32\x3f\xdd\x17\xa6\xfe\x98\x41\xdc\x0a\x13\x22\x8b\xd9\x1c\x62\x78\x8f\x4e\x62\xe6\xd9\x2b\x77\x07\xaa\x33\xe8\x95\xaa\xd9\x35\xde\x9e\x90\x63\xa0\x1b\x36\x49\x17\x5c\x24\x84\xa7\x34\xce\x46\x72\x4a\xf0\x4a\x15\x1a\x61\xd8\x46\x69\x16\x66\x33\x2a\x70\x99\xe6\x5f\x01\x9e\xc6\x69\x98\xc9\x58\x32\xb8\x02\x3d\x00\x33\x18\x87\x38\xca\x74\x4b\x8c\xd2\x0d\x1b\x26\x16\x3c\xd5\xb8\x39\x82\x8b\x62\x64\x8e\x1f\x57\xc1\x17\x5e\x25\x0b\xd2\x1b\xce\xa2\x00\x6c\x22\x07\x38\xc9\xfc\x50\x4c\xbf\x63\xf9\x88\x89\x5d\x6c\x1d\x3d\xfa\x12\x12\x78\xdd\x61\x2d\xb1\x91\x27\xb3\xa9\x65\xfc\x92\x64\x5b\xe1\xbd\x9e\xc5\xb9\x44\x4b\x40\x77\x69\x03\x12\x6d\x8e\x67\xb8\x4b\xff\xc3\xc5\x5c\x2d\xd9\xbb\x73\x56\xd8\xe4\xe7\x93\x02\x71\xed\xc3\x01\xe2\x9c\x10\x71\x0e\x89\x2a\x93\x59\x9a\xc1\x56\x87\x27\x38\xca\x04\xdd\xf4\x6f\x32\x9c\x36\x1b\x55\x26\x8c\xff\x50\xd5\x26\x92\x95\x7b\xf0\xe9\x23\x93\xa0\x4d\x20\xaf\x4f\x49\x15\xcd\xa2\xf0\xbf\x67\x18\x85\x01\x8e\xb2\x70\x18\xaa\xac\xb8\xd4\x64\xf3\xe1\x29\x31\xc5\xd0\xa4\x9d\x6d\xfa\xb0\xed\x48\x9b\xd0\x6b\x9d\x0a\xf8\x20\x57\xfc\x7e\x58\x5d\xf1\x33\xc2\x59\x57\xf8\x00\x73\xd0\x7f\xde\x97\x0a\x0c\x61\x95\x0f\xa3\x35\x0a\x82\xb9\x21\xfe\xd8\x6d\x12\xd9\x95\x67\xee\xbf\x3d\xf3\xda\xa5\x72\x25\x33\xf5\x6e\xbb\x54\xc2\xb6\xd7\xb2\x16\x3e\x26\x02\xc6\xd0\x1f\x64\x71\x72\xe3\x51\x8d\x32\x19\xd8\x67\x84\x4f\x13\x59\x3f\x1e\x22\xd1\x9b\x8d\x0d\xf4\x23\x8d\xc8\xf4\x23\x94\x79\xb6\xba\x8a\x7a\xf1\x64\x12\x47\xff\x75\xfc\xfc\xd9\x33\xa3\xf3\xf9\x2f\xd6\x00\xc7\xa9\xf2\x23\x19\x86\x04\xff\x58\xf5\x90\xf4\x0a\x47\x83\xe5\xbe\x9f\xe2\x4e\x4b\xfb\x30\x09\xda\x7a\xd1\xcb\xe9\xe7\x60\xa8\xbd\x1c\x84\xd3\x11\x4e\x96\x29\xe4\xea\xeb\xe7\xcf\x6e\x9f\x3f\xc3\xe3\x14\x23\xa9\x33\x54\x63\x4e\xfb\xc2\x87\xe1\x47\xf4\xd3\x4f\xec\xc3\x8a\x3f\x09\x44\xdf\x36\xf7\xb7\x9e\x3f\x7b\x46\x3f\x54\x4e\x39\xce\x1e\x52\x51\x85\x67\x82\x21\xfd\x40\x11\x83\xdf\x32\x3e\x67\x62\x94\x65\xc4\x58\x43\x34\x1c\x06\xaa\xf4\x93\xf8\x2a\xc5\x49\xf5\xf9\xb3\x67\x62\xc4\xe2\x38\x5b\xe9\x25\x37\xd3\x2c\xfe\xaf\x63\x5a\xf5\x16\x8e\x4f\xf2\xfe\x23\xbe\xa3\x3f\x9f\x3f\x7f\x56\x51\xcf\x63\xcf\x10\x55\x89\x1c\x8f\xe2\x24\x1b\xcc\xb2\x94\xbe\x21\xcb\xa6\x87\x36\x10\xaf\xfb\x5a\x7a\x7d\x3e\x0e\xfb\xe4\xd3\xca\x38\xec\x4b\xef\x41\x1b\xd6\x83\x4e\x91\xaf\xa4\xd4\x8a\xf4\x4e\x81\xe0\x8f\x2f\x62\x00\x41\x7e\xbc\x7e\x2e\xb0\xf8\x10\xc7\x9f\x67\x53\x94\xf9\xfd\x31\x96\x30\x39\x7e\x7b\xf0\x1b\x3b\xf4\x89\x77\x7b\x1f\x7f\x39\xb7\xbd\x3f\xfe\xf4\xf6\x7c\x7f\xef\xb7\xf3\x9a\xeb\x43\xdd\xf5\xa1\xe1\xfa\xd0\xb4\xb6\xed\x6a\x47\xfe\x68\xb4\x25\x7f\x34\xda\x93\x3f\xf2\x36\xc5\xd0\xf4\xe2\xc9\x94\x9c\x14\xc7\xe6\x10\xd9\xa6\x54\xab\x15\xc4\xb3\x3e\x11\xfb\x49\xad\xbc\x00\xb0\x58\x19\x0b\x24\x9b\x2a\x84\x10\x4e\x10\x85\xe8\x0d\x6a\xb4\x3b\xaf\x51\xb8\xb4\xa4\x80\x17\x42\x22\x7a\x83\xea\x8d\x75\xe3\x1b\xf9\x0b\x4e\xc3\x33\xb4\x41\x60\xbc\x41\xf5\xd7\xea\x77\x7a\x97\x5a\x50\xab\x42\xab\x55\xd1\xef\xa8\x76\x5d\xaf\xf7\xf5\xfa\xf9\xe3\xed\x73\xa5\xd7\xbf\xfa\xe3\xcf\xe8\xdd\x4e\xa5\xf1\xfb\x7a\x55\xed\xed\x35\x0d\x91\xa8\xbe\x0b\xb5\x97\x0b\x8d\x80\x34\xc8\x69\x3f\xbe\x56\x3f\x82\xa5\x01\x69\xf3\x3a\x44\xbf\xa3\xca\x75\xde\x21\xf6\xbb\x21\xfd\x6e\x4a\xbf\x5b\x55\xad\xb3\x00\xa5\x92\x5e\xa3\x9f\x7f\xfe\x19\xad\x43\xc9\xf4\x1a\xfd\x84\x6a\xd7\xc3\x21\x1d\xa0\x4e\x53\xab\x42\x56\xc7\xe9\x35\x19\xc8\xf4\x5a\xfb\xc4\x17\xcf\x69\x0a\xdf\xaf\x5f\x3f\x77\x76\x6a\x32\x1b\x67\xe1\x74\x1c\x0e\x40\x4d\x60\x76\xef\x9a\x90\x71\x70\x7a\x7d\xf6\xda\xf2\xad\x45\xbf\x35\xac\x1f\xd7\xe9\xc7\xd6\x59\x41\xeb\xe9\xac\x8f\x40\xc0\xf1\xd0\x24\xbc\x46\x83\x78\x3c\x9b\x44\xa9\x42\xfd\x32\x4c\x22\x29\x54\x02\xe8\xd5\x4b\x42\x33\xb5\x3a\x1f\x29\xf6\x58\xab\xd7\x6a\xfa\xd0\x8a\x95\x4c\x07\xab\x92\xc1\xc4\xb4\xaa\xe8\x2b\xf9\x4d\xc7\xdb\x51\xa5\x2e\x57\xa9\x77\xa4\x2a\xf5\x8e\xab\x4e\x43\xae\xb3\x5e\x45\x79\x9d\x86\x31\xeb\x82\x1b\xd0\x3a\x59\xc1\x48\x85\xd1\xa5\x3c\x5a\xe4\xb1\xf4\x88\x5d\xaf\x4b\xe3\xc3\xc8\xb3\xc5\x5e\xd5\xf8\x8b\x86\x32\xa4\x85\x23\xaa\xf0\x47\x46\x63\x65\x86\x55\x61\x9d\x4a\xbd\x39\x63\xab\xb0\x55\xa5\xe2\x9c\x01\x56\x58\x2e\xab\x58\x34\xca\x70\x5b\x00\x8a\x60\x9c\x98\x9c\xf0\x87\x6b\x2b\x13\x64\x0c\x60\x63\x01\x0e\x08\x55\x1a\xe8\x77\x14\x9c\x92\xff\x5d\xaf\xa3\xdf\xd1\x75\xe3\xec\x4c\x5f\x48\x50\x36\x44\xbf\x6f\x40\xc1\xeb\xd0\x28\xa0\x30\x49\xf8\x79\x0b\x87\x5a\xb1\xaf\x1c\x26\x78\x40\x3b\x17\xa0\xa3\x41\x1c\xb1\x0d\x26\xdf\x95\x8e\x7a\x07\x1f\xc9\x1e\x51\xbb\xae\xd5\x3c\x54\xbb\xae\xd5\xe1\xdf\x06\xfc\xdb\x82\x7f\xd7\x3d\xa0\x05\xf2\x6f\x03\xfe\x6d\xc1\xbf\xeb\xf0\x6f\xbd\x4f\xfe\x6d\x76\xf2\xcd\xec\xe5\x4b\x86\xd4\x4b\xb4\xb9\x7d\x4c\x03\xb2\x23\x2a\x0e\x21\x22\x10\x24\x61\x36\x9a\xac\xf0\x32\xab\x39\x2a\xa4\xf4\x06\x13\x1f\x56\xe8\x83\x24\x61\xac\xe0\xeb\x8c\x86\x0f\x10\x5d\x3e\x0f\xe2\x23\x9c\xe2\xac\x8b\x1c\x5b\x24\x1b\x84\xe3\xcf\xe1\x94\x99\xfe\xc6\x43\x14\x1d\xc5\x70\x1c\x1b\xf9\x29\xea\x63\x1c\x81\x7b\x00\xbb\xe0\xf2\xa3\x00\x6c\xf8\x82\x30\x40\x51\x9c\x31\x3b\x4c\x93\x14\x68\x36\x17\x0e\x89\xdb\x8b\x9e\x7f\xc6\x37\x87\x49\x18\x27\x47\xd4\x04\x78\x63\x23\x7f\x6f\x25\x1d\x6e\x17\xa6\xcd\xa9\xd9\x01\x55\x7c\xe3\x7f\xdc\xe2\x70\xc3\xde\x7c\xfe\xd6\xc2\x9f\x3f\xe3\x9b\x5f\xe3\x04\xac\x18\x3f\xe3\x9b\x95\x2b\xf2\xdb\x5e\xec\x38\xfc\x82\x59\xa9\x34\xbc\x78\x4b\x18\x10\x5a\x45\xad\xa2\x65\x24\x1c\x01\x12\x18\x20\x13\x2c\x1f\x39\x8e\x63\xfe\xcc\x1b\x5c\x42\x9d\x52\x2d\x90\xfe\xa7\x83\x11\x26\xc7\x0f\x44\x44\x68\x4b\x1f\xd2\xa3\xf8\x8a\xc0\xae\xf0\x66\x96\xc8\x2e\xfd\xb2\xb0\x0f\x32\x5c\xfb\xb0\xf0\x46\xa5\x71\x96\xde\x9d\xea\x4b\x35\xb7\x11\x25\xe8\x50\xd1\x83\xfe\x7c\xc3\x30\x64\xcf\x16\x29\x04\x31\xb2\x13\xe5\xe9\x20\x59\xcb\x91\x3f\x09\x95\x53\xa8\x73\x46\x47\x16\x66\x9c\xbd\xb1\xb0\x1a\x37\xc3\x42\xd2\x7e\x62\x00\x87\x70\x3a\xfa\x50\xca\x68\xff\xc0\x10\xff\x97\x40\xdc\x89\x39\x9b\x85\xa3\x38\x43\x84\x24\xdd\x85\x32\x79\x0f\x50\xb7\x80\x42\xc8\xc7\xb3\x7e\x19\xc8\x20\x3e\x71\x98\x67\xd2\xde\x06\x1f\xf2\x9d\x8a\xc9\x68\x67\xd2\x2e\x26\x97\x58\x57\x0a\x00\xa6\x0c\x32\x7b\x3d\x07\xdb\xfd\xf0\x1a\xd8\x76\x11\xb6\xbf\x6f\x00\x13\x3f\x65\x83\xbc\x9a\x53\xc7\x57\x54\x63\xa8\x5b\x26\x1b\xe5\x13\x0e\xa4\xc5\xd6\xdd\xcf\xa8\x43\xf8\x99\x36\x61\x68\x63\x03\xb5\xe6\x4d\xda\x77\x37\xb4\xf6\x3e\x3b\x46\xdc\xb5\x66\x0c\x5a\x67\x43\x72\x86\x7e\x27\xb2\x84\xb9\x88\xe6\x72\x73\x59\xa6\x2b\x66\x33\x61\x74\xf9\xde\xc2\x69\x8c\xd7\x6e\x66\x43\x8a\xe6\xfc\x46\x3c\xe5\x2c\x87\xbf\x72\x70\x1d\x99\x61\x31\x3e\xba\x2c\xea\xd8\x88\x17\x8e\x8c\xbc\x99\x7f\x15\x10\x8d\x93\x9d\x3c\x2c\x67\x6a\x59\xc1\xcd\x43\xfc\x0d\x6a\x81\x27\x0b\x7d\x28\xa2\x7d\x75\x2e\x4e\x39\x04\x26\x69\x2e\xd8\x91\x02\x60\xaa\xd0\xad\xae\x21\x42\x8a\xaa\x70\xed\x58\x4a\x67\xe8\x77\xf7\xe2\x74\xfc\xa9\xc2\xb7\x7d\x05\xea\x08\x34\x4f\xd5\xa5\x68\x9f\x03\xa7\x24\xeb\x49\xd3\x83\xa3\x41\x72\x33\xa5\xa6\xb1\xb2\x9c\xb7\xef\xa1\x78\x38\x4c\x71\x66\xcc\x0c\x5d\x23\x41\xdc\x13\xf5\xf2\xc2\x9e\xb9\x57\x7b\xf9\x09\x31\xff\x59\xcf\x7f\x36\xf2\x9f\x4d\x0f\x58\x8c\x7c\xca\x50\x70\x0d\xf0\xa2\xb8\x12\xae\x79\xe5\x4f\x51\x23\x0a\x40\xf6\x6c\x65\x23\x87\x10\x43\xe8\x7b\xff\x94\x82\x21\xf2\x8b\x3e\xa4\xca\x37\xb5\x6c\xb3\xa0\x6c\xd3\x7a\x24\x2a\x33\x84\x2a\xad\x7a\x2a\x81\xaa\x8f\x75\xf5\xb1\xa1\x3e\x36\x3d\xa1\xb0\x30\x36\xef\xd5\x55\xb4\x47\x4e\xbe\xdf\xc5\x18\xd9\x27\x5d\x19\x26\xeb\xac\x7b\xe8\x7e\xe4\x66\x23\x1a\x76\x20\x28\x2d\x59\x5b\x06\xf6\x1d\x66\xc1\x42\xe1\x46\x92\x8a\xea\x04\x53\x8b\x8e\xab\x26\x0d\xd6\x19\xbc\xfe\x5d\x61\xb6\x35\x9b\x06\x28\xad\xeb\xd3\xa1\xd5\x32\xe6\x07\x6a\x35\xd4\x5a\x0d\xbd\x96\x55\xdb\x94\x36\xf5\xe9\xd4\x6a\x35\x6d\x6a\xa8\xf7\xda\xd9\xc1\x7e\xf4\x97\xb7\x40\xdb\x89\xe1\xc8\x72\xc6\x11\xfb\x2f\x1d\xd5\x0d\x54\x7f\xcd\x7e\xbe\xe1\x33\xc4\x5e\x38\xf6\x5d\x98\xe3\x70\x98\x01\xa5\x7b\x0e\x45\x59\xe1\xc4\x71\xd4\x33\x32\x79\x92\xba\xa6\x26\x24\xaf\xdf\x25\x45\x57\x25\xad\x1b\x72\xd7\xef\x92\x52\xab\x92\x36\x74\xa9\xeb\x77\x49\x7f\x95\x36\xa5\xd7\xc6\x36\xbc\xb4\x64\xdb\x00\x00\xb9\xba\x8a\x5c\xdd\x81\x5c\x63\x0e\x72\xcd\x42\xe4\x6a\x77\x44\xae\xa1\x22\xd7\x70\x20\xd7\x9c\x83\x5c\xad\x10\xb9\xfa\x1d\x91\x6b\xaa\xc8\x35\x1d\xc8\xd5\xe6\x20\x57\x2f\x44\xae\x31\x17\x39\x2b\xe9\x7e\x9a\x82\x11\x51\x9a\xf9\x19\x36\x0b\x00\x3b\xc9\x6a\x96\x8e\x01\xcb\xc8\x74\x3d\x1a\x7c\x21\x73\x91\x35\x6c\x5f\xc8\x40\x64\xba\x76\xdc\xaa\x44\xb1\xae\xa7\x39\xbc\x0f\x96\x4f\x85\x9e\x3c\xa4\xb5\xa3\x9f\x5a\x2c\xcb\x47\x3f\xb6\x98\x2b\x48\x39\xb7\xe4\x4b\xa8\x5a\x8e\x12\xc4\xfa\xe1\xd8\xd5\xdd\xd8\x99\xeb\xc7\xc0\xce\x58\x42\x2a\x76\xb5\xbb\x60\xd7\x90\xb0\x6b\xb8\xb1\x33\x17\x90\x81\x9d\xb1\x86\x54\xec\xea\x77\xc1\xae\x29\x61\xd7\x74\x63\x67\xae\x20\x03\x3b\x63\x11\xa9\xd8\x35\xe6\x63\x67\x52\x2b\xe6\x91\xad\xed\x72\x09\xdd\x86\x2d\xeb\x48\x17\x72\x8c\xe5\xa4\x6e\xae\x96\x55\x65\x88\x3e\x4d\x97\xec\xc3\x8e\xc2\x5d\xd4\x68\x77\x56\x9b\x0d\xa6\x81\xae\xda\x54\xc1\x5c\x62\x11\x02\x52\xca\x3c\x87\x99\x6a\xf8\x45\xca\x12\x3e\x21\xc8\xe1\x3d\xf4\x07\x58\xe8\x88\x05\x90\xff\xc4\xd7\xfe\x64\x2a\x4e\xca\xf9\x07\x3e\xa7\x14\x56\x86\xaf\x33\xe9\x76\x7b\x65\x73\xfb\x78\x85\x9d\x23\x2a\x13\x6e\x92\xfe\x19\xdf\x78\x68\x30\xbc\x10\xd2\x7c\x0e\x65\x3a\xf6\x09\x12\xd7\x19\xd2\xa1\x30\x09\xbf\x92\xb7\x63\x03\xc4\x74\xda\x3d\x8b\x12\xfb\x9c\x86\x4d\xdd\xc5\xe3\x29\x4e\x2a\x9b\xdb\xf4\x5a\x9f\xea\xec\x9f\x3f\x63\x36\x2b\x72\x93\xaf\x9f\x3f\x87\x10\xb8\x60\x40\xa2\x58\x15\x74\xdb\x0d\x8f\xdb\x25\x74\xdb\x60\x3b\x22\x59\x26\x74\xdb\x2d\x2f\x37\x49\xe8\xb6\xc1\x87\x71\x12\xb4\x7f\xec\x76\xea\xb7\x67\x5e\xbb\x71\x2f\x6b\x91\x6f\x69\x26\xf2\x68\xc6\x1c\xdf\xd0\x2c\x83\xae\x84\x97\x88\x19\x50\x90\xe6\xd1\x20\x9e\x4c\xe3\x08\x62\xae\x93\x6f\xab\xcf\x9f\x89\x79\x1f\x87\xfd\x15\x56\xf4\xeb\x57\xd9\x00\x40\x78\x7d\x3e\xb0\x71\x87\x9f\xe2\xdc\xaa\xc3\x4f\xb1\xf4\xed\xd7\x38\x09\xc0\x2f\x5d\x14\x10\x6f\x64\x08\xb3\x21\x18\xfc\x01\xad\x6f\xf2\x5b\x9e\x1c\xa6\xf5\xb3\x82\x19\x06\xd7\xaa\x1e\x59\xa8\xd2\xfb\x4f\xd9\x70\x1d\xa0\xe0\x68\xb0\x42\x1e\x34\xac\x3b\x2d\xf1\x95\x3e\x16\x19\xa2\x88\x2f\xdb\x97\xd3\xf7\x5b\x3b\xf9\x65\x13\x7d\xb6\xde\x60\xf5\x53\x6a\x9f\x47\x96\x15\xbf\xc5\xca\xf0\x64\x3a\xf6\x33\x1b\x83\x12\x51\xa6\xff\x8c\x58\x44\x1e\xae\x41\x05\xaf\x02\xc1\xeb\x40\xef\x17\x7e\xc1\x2b\x3c\xc2\x64\x17\xb5\x50\xa5\xde\x58\x47\xfd\x30\x4b\xab\x45\x00\xc3\x4b\x0b\xbc\xbd\x5f\xee\x0a\xee\x7c\xfb\x63\xef\xfc\xb7\x9d\x83\xa3\xfd\xf3\xfd\x83\xad\x6d\xb4\x09\xb1\x0d\x32\x3f\xca\x50\x82\xa7\x09\x4e\x71\x94\x85\xd1\x05\x57\xc4\x10\x32\x9c\xc4\x41\xde\x77\x2b\xcc\xad\xed\x52\x30\x19\x3b\x35\x60\x4a\x97\x82\x9a\xc9\x91\x78\xb4\x53\x94\xe5\x92\x30\x9f\x4d\x8a\x6e\x0f\xfc\xbe\x67\x09\x18\x3c\x88\x24\x1f\x72\x11\xa5\xb8\xd4\x3b\x41\xf7\x64\x0e\xd0\xc9\x08\x93\x51\xcf\x62\x34\x63\x7e\x02\x84\x05\x20\x52\x18\x40\x2b\x20\x57\xf3\x87\xc1\xf0\xa2\x0b\xa4\xcb\x71\xad\xca\x3b\xaa\x81\x2d\x6c\x17\x29\x85\xcd\xc8\x2f\x8c\x5c\x93\x61\x43\x9f\xda\x63\x4a\xb8\x13\xd2\x23\xc8\x7f\xc6\x37\x2b\xd6\xb2\xdc\x35\x74\x30\xbc\x40\x95\x03\x68\xc5\x1f\x57\xa1\xce\xc0\x36\x78\x25\xc7\x40\x6d\x8b\x07\x12\xa5\x13\x7a\x4b\x48\x84\xf7\x8e\x10\xca\xa0\xa8\x4f\xe4\x5c\x11\x0e\xdc\xdf\x55\x29\xc1\x2c\x80\x14\x69\x41\xde\xe3\xf9\xd5\xf3\x0a\xdd\xa6\xb7\xe9\x30\xc7\x49\x85\x5d\x9e\xc1\x10\x7a\xe8\x4f\x14\x5e\x76\x51\x78\x99\xf3\xc6\x5b\xc5\xf4\x40\x99\x6f\x15\x52\x57\x89\x0b\xc5\x24\x07\x5d\x03\x20\x67\x0e\xa1\xf5\xd9\x8d\xb3\xba\x56\x2d\xb2\x87\x2e\xa1\x95\xa4\x27\xc7\x42\x7c\xa2\xa7\x87\xa5\xa7\x2d\xfc\x50\xf4\x24\x20\xdd\x8f\x9e\x54\x3e\x7d\x07\x7a\xda\x8b\xc2\x2c\xf4\xc7\xe1\x17\x9c\x22\x1f\x45\xf8\x6a\x7c\xc3\x30\x0c\xd8\x70\xcc\xa7\x25\xbe\x6b\x5c\x0f\xe3\x64\xb2\x1f\x07\x18\x6d\x53\x67\x35\x88\xd3\x9c\x73\xba\x38\x91\xe9\x14\xac\xab\xc1\xcf\x8f\x53\xad\xd8\x64\xec\x64\xf8\xdd\x91\xec\x83\x91\x55\xc5\xfc\x60\xe3\x14\x77\x24\xb8\x30\x0a\x15\x0b\x1b\x31\x4d\x12\xb9\x58\x54\xd4\x9b\xd3\x29\xa1\x05\x18\x2d\x9e\x6e\x3a\xb5\x5c\x33\x90\x21\xde\x10\x3f\xf9\xa6\x48\x69\xd0\x3c\x15\x67\x44\x72\xa6\x86\xf5\x71\x32\xa1\xd3\xee\xdb\x74\x37\x94\xbe\x73\x92\xda\xc8\xc9\xeb\xb5\xad\x24\xb5\xa3\x01\x5b\x19\xeb\x59\x3c\xa4\x84\x4e\x3d\x00\x6c\xfd\x00\xfb\xa2\x4a\xe9\x85\x03\x36\x3a\x2a\x1f\x86\x60\x0e\xa9\x68\x09\xb4\x67\xf7\x24\x1f\xb6\x04\x4d\xdc\x94\x19\x4e\xca\x18\x51\x51\xa3\xa2\xc0\xcf\x7c\xd4\x07\xd9\x4b\x2d\xe1\x90\xc7\x00\x34\x4d\x75\xc1\xdd\x9d\x75\xc0\x87\x38\x81\xb9\x1c\xc4\xd1\x20\xc1\x19\x5e\x66\xc3\x31\x8e\x2f\x14\xa6\x2c\xdd\x4b\x1d\x2d\x36\xd6\x10\x50\x03\x30\xa7\xfe\x2d\x8c\xa7\xe0\x40\x62\x29\x38\x58\x60\xd3\xfb\x9a\x32\x57\x18\x02\x94\x29\x3b\x09\x6f\xe0\x6d\xb0\x06\x24\xf0\x25\x76\x2e\x89\x3f\x09\x58\x34\x6a\x16\x8b\x46\x10\x46\x17\x0f\xc0\x4d\xf2\xce\x6f\x70\xf2\x60\xf0\x2b\x2f\x48\x9b\x2f\x54\x32\x29\x53\xef\x8a\x63\xee\xa4\x30\x56\xb2\xab\x85\x79\xa5\x43\xe7\xe0\x1e\x38\x0a\x6c\xb3\xef\xc3\x17\xb9\xba\x8d\xa6\x68\x7b\xc8\xbf\xf4\xc3\xb1\xdf\x1f\x63\x6a\x86\x98\xba\xb7\xc5\x73\xde\x99\xd2\x54\xb5\x13\x46\x6c\xe3\x2b\xdc\xa7\x18\x5c\x75\x9f\xf9\x18\x67\xcc\x3d\x9a\x46\x4d\xa3\x90\xf2\x5d\x03\x85\x29\xc2\xc3\x21\x1e\x64\xe1\x25\x1e\xdf\x20\x1f\x05\x38\xcd\x92\x19\x3c\x7b\x28\xc1\x7e\xb0\x1c\x47\x03\x5c\x6a\x9f\x29\x4b\xbd\x80\xc6\x63\xd1\x30\x05\xfe\xd8\x94\xcc\x47\xb2\x52\x9e\x88\x45\x95\x45\xa9\x5f\x54\x9c\x4f\xfe\xbc\x68\x79\xfa\xdf\xc9\xe7\x62\x06\x85\xd4\x12\xe1\xb0\x10\x00\x2a\x5c\x2d\x4a\x51\xcb\x45\xc9\x02\x0c\x19\x02\x22\x11\x54\xd9\x82\xc3\x01\x0b\x98\xc9\x39\xf5\x8e\x34\x21\xd6\xc5\x67\xd6\x9e\xab\x6c\xae\x37\xd6\x57\x9b\x0d\xf9\x13\x55\x89\xd8\xbe\x68\x72\x50\x17\xd5\x95\xaf\xaa\xfc\xdb\x45\x8d\x32\x67\xa7\xd4\xaa\xca\xf6\xe7\x2b\xb2\x91\x73\x6d\xf2\x53\x0b\x1b\xe9\x93\x11\x96\x84\x02\x96\x69\xcb\x47\x23\xd0\x1a\x13\x21\xb3\xc4\x52\xe4\x22\xec\x66\xc4\xf1\x81\x08\x03\x7c\x59\x13\xa1\x89\xad\x6b\x4b\x87\xbe\xc1\x61\x89\x59\x7b\x9b\x2a\x4f\x4d\x47\x6e\xc8\xb6\xce\x55\xa6\xd4\xeb\x3a\xfd\xa6\xc8\x9f\xf8\x94\xe2\x31\x1e\x64\xb4\xe1\xe3\x2c\xf1\x33\x7c\x71\x53\x71\x99\x6b\x4b\xda\x67\x10\x17\x37\xd0\x0b\xca\x4a\x5f\x38\xcd\xc3\xd8\x6c\x1c\xfa\x69\x4a\xd8\xc4\x5b\x3f\xc5\x81\xe2\x31\x27\xff\x15\x1b\x87\x31\x50\xc7\x38\x81\x03\x17\xd9\xd5\xdc\x90\x8a\x17\xb9\x9e\xdc\x8f\xdd\x67\x14\xd8\xa8\xbb\x90\x62\xe4\x24\x33\x36\xf3\x86\xa5\xc8\x6e\x34\x8f\x02\x66\x9f\x07\x71\x71\x43\x51\xf4\x90\xfb\x02\x47\x1f\x03\xcf\x61\xe9\xc9\xc8\xbe\x6b\xf4\x5f\xbb\xcf\xb9\x17\xda\xea\x4d\x91\x87\x0a\x6f\x8c\x74\xcc\x2d\x13\xaa\xb3\x6d\x99\x4b\x56\xaa\x4c\xc3\x6b\xbf\x7a\x53\x75\xd8\x69\x96\x60\x7f\x72\x27\x55\x36\xc8\x50\x4c\xf9\x2c\xdb\xe0\x37\x1b\xcb\xfd\x90\x1a\x6c\xab\x27\x1a\x2a\x9d\x40\x1c\x6b\x49\x33\x5d\x47\x95\x66\x43\x55\x4c\x4b\x0a\xdf\x63\xc0\x4f\x53\xfb\xea\x2f\x0b\x3c\x42\x76\x2c\x7b\xad\x6d\x87\xe5\x22\xe2\xd4\x4f\xe0\xb8\x65\x13\x10\xcd\xed\x0d\x8e\x37\xb9\x75\x15\x17\x1a\x7f\xf8\xe1\xc5\x70\x3c\x4b\x47\x2f\xca\x6d\x73\x14\x8a\x6b\xa3\x13\xc3\xdc\x45\xf5\xa2\x79\x85\x73\x2d\xa4\x35\x9d\xca\xb7\xa5\xb2\xf2\xfc\x7c\x42\xcf\xbe\xbd\x15\xf6\xe3\xcf\xdb\xf9\x14\xa2\x78\xec\x40\x3d\x83\x4a\xa4\x36\xa4\xdb\x4d\x76\xd0\x36\x9c\x83\xd9\x7b\x59\xe9\x5d\xa4\xa0\x97\x55\x94\x13\x9e\x9d\x2b\x97\xaf\x17\xde\x4d\x37\xd5\x1e\x59\x15\x82\x7a\x6a\x99\x5c\xc1\x0f\x54\xfd\x0d\xf6\x43\x3e\x53\x7c\xbb\x03\x3d\x6c\xef\x6d\xcf\x50\x45\x73\x8e\x12\x5e\x52\xaf\x9d\xbb\x68\x9e\x73\x18\x85\xba\x42\x51\x97\x2b\x9a\xa4\x7a\x77\xd2\x38\x8b\xe9\xcc\x0f\x48\xff\x33\xa7\x33\xd7\x04\x2f\x38\x9d\x56\xc5\x6f\xc9\xe9\x14\x75\xef\x31\x9d\x45\x0a\xdf\x72\x57\x07\xdf\x74\x3a\xef\x3d\x5d\x05\x4b\x60\xce\x7c\xe9\x7a\xd3\x82\x49\xa2\x9b\x89\xd0\xf3\x0e\x6c\x62\x1d\xb3\xba\xbe\x44\x1b\x28\xbc\x94\x67\xab\x68\x8b\x60\x3b\x26\x0d\x2c\xdd\x1b\xf9\x61\x04\x39\x4f\x5c\x77\xad\x6f\xc1\x6e\xe0\x9c\x77\x1e\x6d\xb8\x83\x0f\xe8\x2a\x36\x65\x07\x21\x75\x0d\x62\x90\x86\x26\x6f\x4c\xdb\x25\xc4\x9d\xe8\xeb\x22\x8e\xf2\xb6\xc7\xb7\x03\xed\x24\x24\x35\xa1\xcc\x1d\xe9\xd5\xdb\x9e\x65\xef\x31\xc1\xd3\x26\x0e\x45\xfc\xcf\x8c\xab\x31\x28\x95\xfa\x19\x33\xea\x5e\xd1\xeb\x18\x30\x34\x9a\xa5\xd2\x91\xd0\x8a\x30\x61\x29\xe6\x32\x12\x52\x39\x21\xb2\xde\x90\x30\xbb\x2c\x02\x84\xfd\xbc\x1a\x61\x16\x7a\x9f\xe2\x07\x91\x3c\xd3\x12\xc8\x99\x0b\xc3\x5e\x90\xfc\xc1\x54\x32\x51\x87\x7a\x03\x40\x7e\x3c\xe8\x82\x70\x6d\xd0\x65\x59\x79\x32\x50\xae\x02\x34\xcc\xe4\x55\x28\x4e\x5b\x68\xab\x03\x2c\xd2\x6f\x48\xe4\x85\xe4\x30\x9c\xcd\x85\x58\xa1\xc9\x11\xaf\x1c\xe6\xac\xbf\x1d\x1c\xc1\x79\x99\x11\x9d\x59\xe6\x3a\x4e\xa0\x5f\xb9\xa2\xdb\x43\x4a\xbf\xbc\xbc\x59\x9b\xd0\xcf\xf0\x90\x7d\x5d\x2a\xfa\xe8\x5a\x31\x3b\xc2\x13\x0c\x52\x38\xec\xae\x94\x04\xd8\x55\x14\x9c\xf6\xc1\xa1\x1d\x5e\x9b\xd5\xb9\x04\x8b\x2f\x79\xdc\x79\xca\x4c\x69\x42\x79\x8e\xb7\x30\x05\x74\x76\x40\xf6\xdc\x99\xbb\x6e\x03\x5c\x62\xdd\x8a\x7d\xea\x69\xdd\x3e\xad\x5b\x74\xf7\x75\x7b\x9f\xd5\x01\x16\xc2\xa3\x30\x5d\x78\x6d\x58\x31\x61\x14\x0d\x5c\xe4\xb7\x83\x23\x27\x07\x90\x3d\xc8\x0c\x0e\x70\x5f\xb6\x63\xc5\xec\x24\x1f\x9a\x3e\x1e\xc4\x13\xb6\x74\x08\x5b\x08\xe3\x59\x5a\x9e\x79\x88\xc1\x2a\xcb\x1e\x04\x29\xf1\x6e\x54\x9c\xb8\x2f\xe4\x01\x05\x22\x12\x97\x96\x6c\x1e\xfe\xa3\x38\x4e\x31\x9a\x84\xd7\x44\x16\xb2\xf4\x0f\x3c\x41\x4d\x21\x0d\xc9\x84\xc8\xa4\x30\x17\xd9\xc5\x97\x20\x9d\x92\x93\x4e\x3a\xeb\xa7\xf8\xbf\x67\x38\xca\xac\x2a\x06\xa4\x8a\x76\x52\x5a\x0f\x75\x14\x9d\xaa\x41\x19\x25\x6d\x56\xe6\xab\xfa\xc9\xce\x66\xc3\xca\x16\x23\x29\x5f\x6d\xd6\x48\x49\xe4\x0f\x26\x30\xb7\x1e\x0f\xcf\xd0\xef\x1b\xb4\xde\x69\x58\x18\xba\x24\xff\xcd\x4d\xa0\xdf\xf6\x58\x79\x25\xa0\x89\x24\xda\x1e\xfa\x41\x40\x26\x70\x8e\x02\x64\x0a\x69\xae\x7a\x2b\xf4\xbf\x76\xf5\xc7\xe1\xfb\xde\x31\xfa\x5f\xed\xd5\x35\x34\x65\x40\x53\xa6\xcb\xb3\xc1\x3c\xfc\x3c\x48\xd7\x40\x4e\x9e\xfa\xc1\x0a\x7f\x2a\x90\x8d\x0f\x7d\x7e\xfd\x3c\x4b\x79\xec\x7c\x11\x08\x85\x99\x2b\x43\xe0\x64\x81\xc7\x42\xf6\x57\x00\x59\xbe\x7d\x26\x68\x59\x2b\xd9\xf5\x78\x2c\x04\x94\x74\x1f\x09\x80\x52\x11\xcd\x92\x0c\x0a\xc4\xb3\x7c\xe4\x63\xb3\x38\x7c\x89\x71\x25\xbf\xf2\xeb\x35\x4f\x8b\x9b\xa5\x5c\x30\xfb\x81\x7e\xb9\x76\x67\x06\x22\xaa\xd1\x58\x27\x1b\xd2\x78\xb9\x62\x86\xcc\xa2\x4c\xd0\x0e\xf8\x15\x99\x50\x23\x46\xb0\x06\x50\xfa\x62\x99\xe6\x9c\x16\x11\x56\xfe\xa5\x15\xb0\x35\x4b\xef\x85\x78\xbb\x66\xe8\x05\x9a\xea\x0d\xbe\x12\x7a\x81\x08\x28\x0a\x16\xb9\xaf\x8b\xf1\x9e\x39\xb8\x18\xef\xc1\xad\x45\x79\x3b\x17\xb3\x42\xa4\xd2\xe2\xf0\x05\x39\xfb\x51\xdb\x44\x21\x5a\x72\xb9\xe5\xcb\xd0\x69\x9c\x7b\xe9\x4d\x81\xf4\xaa\x61\x87\x36\x72\xdb\x77\x7e\xf8\x97\x41\x7b\x2a\x4a\x36\x33\x84\xcd\x20\xb0\x0f\x02\xcc\xf5\x20\x8e\x06\x7e\xc6\x61\x96\xd6\xc0\x7c\x8a\xa6\x82\xa1\xc0\x92\x1d\xf9\x01\x0d\x64\xc4\x16\xea\xb7\xe1\x32\xb3\x48\xe7\x33\xdf\x84\x23\x40\xb3\x25\xae\xdc\xa1\x9c\xce\x12\x6c\x7c\xe0\x1d\xce\x94\xcc\xc5\xd2\x22\x86\x18\xb0\x68\xec\xa7\x19\x3c\xcf\x5f\xd3\xb9\x78\x7d\x5a\x51\x97\xf3\x32\xaa\x57\xa9\x8b\xd9\x19\x73\x06\xb3\x79\x12\x53\xc1\xc1\x4d\x31\x39\xb8\x0d\x7d\x0d\x4a\x9b\x29\xdd\x36\x17\xd4\xf3\xff\x15\x17\x41\x36\x17\x05\xfb\xcd\x82\xed\x56\xa1\xe8\x1e\xe8\xe1\x8c\xfe\xf7\xe3\x00\xdf\x52\xf5\xe0\x89\x38\xad\xd1\x4b\x11\x38\x49\x48\xdd\xe9\xbd\xed\xb9\xa0\xb0\xb9\xba\x15\xf4\x45\x60\xe9\xc2\x86\x09\x11\x48\xde\x41\xe0\xe0\x47\xc0\x06\x40\x32\x9c\xd4\x08\x9c\x60\x0a\x98\x79\xda\xa9\x8e\xb6\x6d\x34\x71\xab\x78\x23\x2c\x60\x18\x48\x27\x5a\xfd\xd8\x93\xac\x0f\x8b\x6d\x00\x0b\x02\x9c\xa9\xf6\xa1\x16\x3f\x4e\x90\x9b\xc9\x08\x28\x6a\x51\xa4\x2a\x76\xc9\xf7\x09\xd8\x7e\x3a\xf0\xcf\x27\xd6\x3c\x0c\x18\xb6\xa4\x5c\xd2\x56\x8d\x4b\x9c\x27\x06\x02\x15\xb6\x44\xd0\x68\xc0\xa9\x5c\xbb\x9b\xb1\x4b\xfb\xab\x2f\x8b\x9b\x57\xad\x57\xaa\xe8\xe5\xea\xc2\x18\x08\x55\x8b\xe3\x2c\xf3\x1e\xe3\x29\xf2\x33\x34\xc6\x84\x0b\xc6\x11\x5f\x01\x2c\xcd\x07\xb5\x04\x85\xfd\x1a\x18\xae\xc9\xb7\x90\x38\xdf\x4c\xc2\x88\x1a\x89\xb2\x43\xbc\x11\x2e\x51\x7d\x64\x95\xe8\xf4\x49\xf8\x53\x42\x9a\x80\xfd\x31\x3d\xf2\x86\x97\xe8\xa7\x9f\xac\xfa\x78\x3d\x50\xc7\xe1\x9d\x74\x19\x39\x26\xaa\x32\xc5\x79\x3e\xd7\x9b\x2d\x7b\x25\xed\x16\x49\x73\x91\x44\x18\x4a\xb3\x57\x16\x82\xe6\xcd\x3d\x2c\x21\xaf\xae\x92\x83\x0c\xcd\xf7\xe5\x12\xb9\x40\x5e\x67\xa6\x5f\x20\x81\xc3\xef\xb9\x3a\x08\x7e\x15\x4f\x6d\x04\x5d\xa7\xe4\x3b\x5d\xc6\x3f\xde\xb2\x7a\x5c\xbc\xad\xed\x81\xe4\x37\x67\x06\xa8\x7c\x64\x6b\x6f\x9e\xe5\xdf\x3d\x2d\x15\xc0\xf4\x8e\xc9\x1e\x76\x33\x14\x34\x88\xc7\x63\x4c\xe9\x3f\x1e\x72\xd1\x00\x44\x4d\x0c\xc9\xf4\x8a\x44\x0f\x49\x14\x95\x9c\xbc\xc9\x36\x9a\xf8\x57\xd2\x2b\xab\x5f\xa2\xdd\xf5\x83\x3a\xa0\x0b\x21\xa5\x4c\xed\xfc\xe2\x11\x52\x3c\x30\x2e\x48\xeb\x93\xf5\x69\x98\xe3\xba\x00\xa5\xfe\x98\x62\x0f\x3f\x00\x18\xa8\x24\x7d\x1a\x7e\x14\x27\xe1\x25\x95\x55\x38\xc7\xb0\x02\xe4\x57\xa9\xb9\x9c\x2f\x59\x0e\x9a\xb1\x56\xcb\xc9\x35\x77\xe9\x59\xb1\x7c\x33\x18\xe1\xc9\xdd\xe0\xda\x05\x4e\xa6\x32\x07\x8b\xe9\xa1\x04\xcf\x0a\x82\x26\x65\xbc\xcd\x93\x36\xd2\x53\x0c\x15\xb1\xf8\x5b\x5d\x0c\x1b\xc4\xd1\x25\x4e\x32\x45\x86\xa5\xe9\xee\xb8\x31\x25\x58\x7c\x52\xeb\x3f\xb7\xdb\xea\x21\xad\xa2\x3a\xaf\x8a\x97\x25\xed\x61\xe6\xbb\x58\xa9\xa8\xcd\x3f\xd6\x09\xef\x26\x19\x1f\xcd\x4e\xd4\x8f\x44\x16\xab\x69\x9c\xa6\x61\x7f\x8c\xdd\x2b\xd6\xd2\xd4\x62\xce\x4d\xf9\x40\x99\xf6\xa0\xf4\x1b\x3f\x81\xff\x69\x40\x41\x42\x7d\x4e\x56\x70\x57\xfa\x9d\x3b\x3c\x59\x2b\x7d\xc6\x37\x5d\xd5\x2f\xca\x5a\x4c\xf3\x94\xb2\x17\x22\xcb\xb8\x0b\xff\xce\x29\x28\x56\x65\xd7\x74\xe7\xb2\xd7\x60\x22\xbc\x6e\x99\x60\x2f\x2c\xe4\x7a\xf5\xe8\xfc\xbe\x77\xbc\x66\xaf\x20\xb1\xf0\x96\xbd\x84\x58\x38\x12\x50\xfa\x6e\xe5\x60\x8a\xa3\xe3\xe3\x0f\x46\xb5\xf2\xce\x64\xf2\xf4\xdb\x05\xaf\x49\x78\xbd\x17\xa9\xe5\x4a\x9b\x1e\xd1\x55\x9c\x2e\xb6\x8c\x91\x73\xdd\x98\xac\x44\xf3\x0d\x74\x70\x13\x72\xa8\x73\x03\xe7\x06\xb6\xdc\x2b\x03\x76\x05\xf8\x1d\x0e\x43\x7d\x8d\x17\xc0\x81\x2c\x60\x29\x4d\x01\x06\xe9\xe3\x70\xee\x45\x99\x63\x1c\xc5\xf4\x8d\xc6\x00\x59\xd2\x7e\x5c\xc4\x3d\xca\x2e\x69\x8a\xbc\xb8\xa6\x63\x6b\x7b\x09\xbd\x78\x61\xf7\xad\xb0\x96\x5f\xc9\x62\x9a\x6f\xc8\xe5\xca\x31\xa7\x96\x83\x54\x9d\x84\xc9\x2b\xca\xc4\x29\xc6\xc6\x65\x55\x95\x97\x40\x5f\xbf\x52\x72\xcd\xeb\xac\xf0\x49\xbc\xe1\xc7\x5e\x43\x47\x63\x95\x93\x28\x95\xcd\xbb\xd7\xa0\xed\xc0\xd5\x86\xf8\x69\xbf\xdd\x60\x3d\xb7\x11\xa7\x0d\x34\x2b\x2e\x72\x19\xc3\xee\xa5\x0e\x62\xf1\x75\x87\x58\x75\xbe\x7b\xc9\x45\xbc\x99\xe5\x41\x3c\x99\xfa\x19\x6c\x2f\x65\x97\xa1\xbc\x2d\x68\x9b\x98\x24\xfe\x94\xdd\x13\x6d\xcb\xef\x2e\xc8\x3d\x94\xe1\x60\x4c\xdb\x3e\xe6\xe4\xed\x20\x64\x89\xba\x5c\xbc\x51\xa1\x6f\x51\xbc\x34\xf7\x9d\xa3\x96\x91\x23\x2d\x29\x4b\x30\xff\x62\x0b\xd4\x48\xc4\x5d\xad\x02\x79\x67\x3b\xc6\x42\x7f\xcd\x43\x2c\x29\xee\x54\xb5\x5c\x49\xd1\x6a\x0c\xed\xfd\x69\xed\xba\xdd\xec\xd4\x3b\x83\x35\x48\x6c\xd0\x69\x77\x5a\xed\x61\x7b\x78\x56\xe5\xaa\x78\x00\xcd\x1f\xf2\x7e\x38\xce\x91\x25\x50\x70\x8e\x85\xe3\xf0\x25\xea\xe6\x8c\x8c\x86\xb5\x59\x7c\xcf\x2b\x5a\x63\xb2\xbf\xd2\xa2\xc2\x23\x5f\x27\x39\x9d\xde\x79\xc9\xa8\x31\x1b\xf8\x82\xbe\xc3\x1a\x7e\xd8\x00\x0e\xa6\x30\xaa\x2d\xbd\xa9\x9f\xa4\xb8\xa2\x2c\xd4\x82\x8b\xc9\x24\x55\x14\x3f\x79\x35\xab\x57\x02\x29\x8e\x68\x0c\xaf\x39\x8b\x8e\x12\x86\x81\x4c\x91\x7a\xb5\x08\x22\xbf\x8c\x93\x0e\xc3\x2c\x29\x84\x01\xee\x04\xa7\x19\xb5\x6d\xf0\xc7\x96\x05\xaa\xc1\x3c\xad\x9d\xa1\x8d\x0d\x94\xaf\x3d\xf4\xd3\x4f\x7a\xbb\xa7\x75\x56\x86\xaf\x49\x97\x0a\x6a\xfb\x9a\x5e\x60\x98\x2d\x23\x95\xc3\x18\x8b\x5f\x6b\x91\x99\xf2\x34\x3c\xd4\xaa\x16\x58\xd7\xc5\x97\xec\x88\x0e\x57\x41\x39\x0c\xb3\xbc\x01\x7f\x0a\x0d\xd4\xf4\x5b\x6b\xa3\xb8\x72\xab\x53\xef\x94\x63\x14\xd6\xa3\x91\xe3\x18\xe4\x49\xa7\x13\x55\x34\x2f\xbc\x2b\xe2\x8b\xf0\x2a\xf1\xa7\x53\x90\x23\xfd\x8c\x35\x2f\xab\x4c\x90\x4f\x76\xfa\x54\xf2\x4a\x2b\x5c\xbd\x8a\xab\x8f\xe1\xca\x96\x3b\xfc\xd8\x3e\x95\x75\x20\xb9\xf3\x65\x8f\x10\x7a\xb8\x8c\x5f\x24\xd5\x73\x1d\x81\xdc\x5b\xd6\x59\xea\x10\x1a\x05\x94\x6a\xc4\x01\x23\xbf\xd8\xb1\x1c\x9c\x8a\x42\x44\xe9\xde\x8b\x80\x50\xd7\x10\xd5\xa4\x89\x2d\x0c\x2a\xc5\xae\x1d\xc8\xbc\x31\x6f\xba\xfb\x78\xa8\xe6\xca\x27\xcb\x51\xa7\xc0\xfb\x9c\x35\x4d\x6d\x50\xd8\xef\xdc\xef\xfc\x6f\x12\xc3\xc5\xbe\x85\x6d\xfe\xb5\x1b\x18\x59\x96\x76\x8d\x8a\xb9\xac\x84\x7f\xa5\xa9\x8d\x50\x5c\x2d\x1d\xa7\xb0\xc7\x6b\x30\x0f\x52\xa3\xab\x13\xbe\x69\xe3\x9e\x58\x6d\x0e\x69\xa0\x40\xd9\x61\x71\x8e\x75\x7b\xb1\xde\x2d\x84\xce\x42\xd1\x73\xb6\x6d\xf6\xeb\x52\x74\x83\x38\x77\x3e\xb1\x05\x40\xb3\xfa\xac\x1a\x62\x49\xee\x99\x21\x02\x24\xb0\xce\xde\x45\x32\xe9\x41\xff\x72\x98\x70\x05\x6c\x40\x61\xf6\x46\x84\xe3\x0a\xc7\x5c\xd7\x7e\x54\x7e\x3b\x2d\xda\xb4\x95\xfd\xd5\x2c\xc8\x55\x8b\x96\x4f\x84\xac\x44\xdf\x56\xc2\x4b\x4b\x11\x49\x47\xc8\xe8\xc5\x2c\x43\xb5\x82\x39\x20\xb8\x10\x35\x8b\x09\x7d\x60\x5e\x92\xbd\xb2\x14\x96\x74\x81\xba\x85\xb5\xa5\xb4\xa4\x17\x24\xa4\x37\xb4\x1c\xd7\x6e\x4b\x1f\x5b\xd8\x3d\x74\x2a\x26\x4e\x28\xbe\xe4\x6b\x19\xf4\x68\xdb\x93\x4c\x00\x62\x87\xd2\x2e\x9a\xa4\x47\xc8\xed\xfd\x77\xdc\xa7\xb4\x00\x2d\x22\xd2\xf1\x37\xd8\x9b\xf2\xa8\xca\xf3\xd9\x34\xf7\x9e\xb7\xb0\x69\x4e\x76\x2c\x8c\x82\xe4\x51\x7f\x67\x96\xfd\xd0\x28\xea\xfb\xd2\x03\x6e\x29\xce\xd8\x05\x8e\x08\x03\xdf\x60\x57\x61\x1a\x07\x49\xb5\x20\x2f\x26\x0d\xb0\xbc\x53\xb0\xdb\x6f\x38\xbf\xca\xc8\xe7\xdc\xc4\xd6\x1c\xe3\x14\xe6\x86\x21\x4f\x9e\xb2\x89\x29\x51\x17\xe9\xb0\xe4\x7b\x93\xc4\x64\x14\x85\x8f\x75\x9b\x10\x4d\x2c\xac\x8d\xb1\xb2\x35\x7d\xac\xd4\xfb\x17\xd0\x31\xf9\x69\x3a\x9b\xe0\x40\xbd\x4f\xf4\xc7\x09\xf6\x83\x1b\x69\xbf\x53\x0e\x64\xb3\x88\xa6\xad\x2c\x11\xd1\x6c\x31\xb6\x67\xe7\x5f\x0b\x1d\x9a\x08\xe3\x02\x13\xf5\x24\xc5\x0b\xf3\x7a\xb7\xbe\x68\x16\x2d\x0a\xeb\x2f\x94\xb8\x0d\x92\xa7\x2a\xa4\x03\x4e\x05\x48\x10\xbf\x9d\x07\x9c\x1b\x3a\x25\x79\xf5\xb0\xca\xb6\x54\xde\x2c\x76\x8d\xbc\x08\xe7\x84\xb0\xe1\x36\x21\x94\x3d\x99\x4b\x55\xbf\xd8\x40\x85\xda\x51\x06\xad\x40\x29\x6a\x68\x26\xac\x37\x24\xef\xed\x26\x12\xf3\xae\x4c\x3e\x07\x43\xb8\x2f\xa1\xff\x2d\xbe\x2c\x99\x67\x85\x61\x5e\x98\xbc\xa7\xd0\x49\x2b\xe5\xee\x49\xb6\x08\x78\xb8\xd3\x27\x8d\x91\xb5\xbc\xf7\x0b\x57\x18\x4c\x59\xbc\xa0\xf2\xea\x58\x5e\x83\x59\x5e\xb0\x07\x90\x53\x48\x33\x00\xb8\xd8\x2b\x24\x0f\x54\x8e\xa9\x6d\x45\x18\x31\x4b\x5e\x66\x07\xc0\x4c\x66\x2e\x70\x04\xc6\xbc\xc5\xd0\x44\x94\x72\x07\x30\x1a\x3a\xbb\x18\x96\xa9\x33\x00\x15\x96\x24\x24\x6d\xa2\x4e\x0b\x4c\x8e\xe1\x03\xb7\x9f\xdd\x1b\xa2\x78\x12\x12\x19\xc1\x43\x3e\xfd\x74\x15\x8e\xc7\xa8\x8f\x45\x83\x01\x4a\xfc\x28\x88\x27\xe3\x9b\x07\x3a\xdc\x53\xab\x09\x36\x4c\x1e\xda\xfb\xc5\x83\x29\x25\x8d\x7f\x03\x2e\x44\x27\x39\x30\x59\x90\x44\x8d\x2b\xf8\x1a\x0f\x66\x19\xae\xbc\xe0\xd1\xa8\x5e\x78\x2c\x71\x87\xc7\xcc\xb7\x1c\x62\xd1\x03\x41\xf7\xd0\x0b\x32\x1c\xe4\xff\x5f\xb8\xcf\xcc\x14\x8c\xcc\xdd\x38\x35\x7b\x9c\x44\x3d\x46\x5d\x54\xb1\x69\x37\xea\xa7\xd3\xcc\x66\xd9\xa1\xa8\xfe\xc1\x79\x95\x64\x28\x91\x29\x9c\x4a\xa7\xb5\x6a\xa4\x35\xb7\xb8\xd5\xd1\xa5\x2d\xad\x6b\x53\x5a\xa1\xf1\x66\x69\xe2\x81\x5c\x81\x2b\x62\xdc\xe5\x69\x90\xd9\x42\xba\xad\xae\xb0\x44\xde\xd2\x78\x00\xfe\xd6\x80\xb5\x84\x36\xb3\x62\x0c\xc0\x6e\xda\x50\x93\x8b\x64\xd0\x4c\x41\xce\x93\xc9\xf2\x31\x47\x2f\x4d\x7d\xb6\x92\x1a\x3a\x4f\xe1\x6c\x77\x96\x3a\x62\xa2\xd4\x82\x87\xf1\xfc\x48\x2d\xa4\xe8\xbb\x69\xb5\x6d\x9a\x01\x45\xc5\x1d\x30\xbe\xcc\x59\x9e\xc6\x92\x3d\x01\xcb\x21\x7e\xdd\x5d\x1f\x6e\x89\x12\x27\x14\xe2\xf6\x6f\x36\x0d\xd7\x23\xea\xc7\xdf\x6f\xed\xdc\x22\xb2\x7d\x72\x0b\x4a\xdb\x2e\x9c\x4b\x79\x9c\xd9\x16\x6f\x71\x0b\x69\xc5\x2d\x1d\x76\x3b\x3f\x7c\x0e\x86\x5d\x69\x7b\x96\x28\x64\x41\xf5\x38\x73\xa9\x5a\x64\x5f\xfe\x3e\xf4\xe5\x85\xd2\xc1\x77\xa0\x8e\xf8\x9b\xa8\xcd\x2d\x8b\xaf\x94\x26\xf9\x05\x1f\x6a\x57\x58\xd9\xc7\x6f\xd8\x43\x7f\x3e\xb2\x06\x3b\xdf\x8e\xbe\x91\xc2\x41\xdb\x5d\xe3\xcc\xa5\xdc\xb5\xc9\x2e\x04\x3c\x11\x5b\xb8\xb8\x22\x61\x4f\x87\x57\xc8\x18\xec\x99\x6e\x7b\x2e\xef\x4e\x2a\xc6\xd2\xbe\x19\x5d\x5a\x81\x2d\x56\xc1\x60\xc5\x1a\x92\xc0\xa9\x98\x57\xf4\x25\xee\xeb\x0c\x39\x00\x84\x31\x3f\x6a\xfb\x92\x1e\xdf\x40\x63\x3f\xbc\xa6\xc9\x40\xa0\x82\x75\x48\xa5\xb3\x35\x35\xcc\x54\xa0\xbb\xf4\x26\xd6\x13\xdf\x3d\xf4\xc1\x7f\x01\x3f\x7e\x60\x05\xf1\xf7\xce\x98\xbf\x47\x3d\xb1\x8d\x19\x2e\xaa\x28\xbe\x17\x63\x7c\x70\x14\x4d\x45\xf1\x43\x31\xee\x92\x7a\xe2\x6f\xce\xbb\xbf\xb9\xb2\xf8\xdb\x6f\x15\x9e\x62\xdb\xe3\x38\xa1\x3d\xdc\xde\x51\x4a\x1f\xee\xbe\xbf\xb0\x6d\x1d\xf2\xf8\x96\xdc\x3d\x8a\x14\xe4\xb9\x2a\x4f\x64\xba\x94\x53\x5a\xb2\xfc\x95\xb7\x67\x5e\xbb\xf9\xbd\x26\xa5\x7c\xf0\x1c\x94\x8b\xe6\x9e\x54\x72\x4e\x1a\x88\x99\xe9\x27\xb5\xb4\x93\xbc\xa2\x23\xf1\x24\xe8\x47\x73\xe0\xe2\xa7\x9a\x7c\x72\xdf\xcf\x46\x1e\xb2\xa4\xa0\xcc\x8f\xd7\x1f\xe2\x81\x3f\x46\xd3\x78\x7c\x33\x0c\xc7\x28\x1e\x22\xba\x69\xb1\x53\xbc\xe5\xc8\xcb\x62\xdb\x6f\xa8\x05\xb5\x86\x15\xc6\x24\x5e\xef\x90\xf7\xb7\xaf\xcd\xd8\x41\x92\xad\x65\xff\x0f\x83\xa9\x81\x8d\xe0\xac\x4f\x66\x50\x27\xe2\x9d\x95\x69\x12\x67\x31\xf9\x84\x36\xc8\xe9\x43\x2f\xc0\xea\xa1\x0d\x14\xe1\x2b\x82\x40\x31\x84\x68\x36\x1e\x3b\x16\x8a\xc0\x20\x5f\x26\x52\xbc\x23\x5b\x24\x4f\x3e\x27\xc5\x4a\x6e\xa7\x62\xfb\x43\xd8\x4f\xfc\xe4\x66\x9e\x8e\x5c\xca\x0f\xea\x04\x05\xd9\x42\x99\xd6\x93\x08\x17\xbc\xcb\xfe\x18\x85\xd1\x08\x27\xa1\x12\xc0\x55\x89\xe8\xa0\xe7\x19\x35\x23\x8c\x9a\xd3\x59\x22\xec\x1f\x8f\x31\x0c\xee\x71\xc2\xcf\x60\xe4\x67\x1c\x21\x16\xca\x83\x8a\x41\xc6\xa9\x12\xa1\xa2\x38\x80\x5c\xee\x8a\x2f\x71\x92\x84\x01\x4e\xd1\x21\x55\x88\x84\x38\xa5\x0c\x7c\x7a\x83\xc2\x88\x65\x33\xce\x11\x28\xd1\x82\x9e\xab\xe1\x64\x51\x00\x86\xcc\xe5\x28\xb7\x48\xd4\x40\x32\x51\xfb\x37\x27\x94\x84\x15\xe9\xa6\xc0\x24\x51\xf6\x17\x0b\xf1\x38\xe8\xa2\x17\x90\x29\xeb\x85\x6e\x38\x62\x6f\x93\xfc\x4d\x70\x36\x8a\x83\x42\x1f\x79\xa9\xb4\x1e\x23\xdf\xe6\x78\x86\x90\x19\xce\x90\xa2\xaf\x18\x64\xf3\x79\x75\x06\x31\x9c\xfa\x57\x91\xf9\x45\x62\x24\x44\x58\xc8\xd3\xea\xb9\xcc\x89\x37\x67\x17\x13\x1c\x59\x4c\x87\xc9\x8e\x52\x8c\x05\xca\x99\x0f\x3b\x77\xe5\xe5\xad\xe9\x1f\xac\x08\x30\x33\x29\xee\xfa\x15\x0a\xc7\xd2\xc4\x8e\xd3\x0f\xbc\xc9\x91\x9f\x1e\x5c\x45\x8c\xec\x6f\x2a\x2f\x48\xcd\x17\x55\xe1\xf3\x44\x1e\x61\x13\xe4\xe5\xc9\x8b\xb9\xfd\xa0\xb5\x0a\xa7\xdb\x52\xeb\xff\x49\x67\x53\x22\x6a\x45\x61\xb6\xe2\x13\xe1\x94\x6d\x7d\x7e\x72\x31\x23\xa3\x6b\x1d\x0f\x64\xc9\xa0\x50\x30\x4e\xb9\xc7\x6d\xf2\x22\x45\x39\x47\x0f\xa9\x52\x98\x4f\x3a\x5d\xa5\x26\x04\xb9\x83\xca\x7e\xe0\xd8\x76\x10\x57\x8c\x0f\x71\x82\xa3\x01\x69\x00\xc6\x79\xaa\xaf\x57\x63\x18\x98\x5c\x6c\x03\xe8\xdc\x67\x90\x2d\x35\x86\x8d\xa9\x6e\xc3\x4a\x49\x65\xa6\x49\x55\xde\xb3\x88\x8e\x03\x4c\x20\x5d\xb5\x66\x08\xd4\x4d\x3e\x1f\x79\x06\x9b\x4a\x55\x5c\xc3\x11\x51\x1a\x42\xca\x01\x90\x4a\xf5\xef\xcc\x2b\x79\xc4\x72\xb4\xc1\xd8\x26\xbf\xb3\x98\xcb\x8b\x68\xb9\x62\x8e\x67\x36\x02\x4b\x2e\x8f\x93\x6d\xae\x5c\x1e\x41\x5d\x5a\x23\xfc\x9d\xba\x4e\x9c\x54\xc3\x8b\xdf\x85\x6c\x8a\xdc\xd5\x1d\x73\x85\x0e\x18\x33\x63\x49\x02\x80\xa4\xc0\x84\x3e\x08\x50\x1a\x4f\x30\x4d\x3d\x85\xae\x46\x38\x42\x37\xf1\x2c\x11\x66\xf6\x3e\x11\x67\x29\xf0\x07\x8e\x9d\x7b\xdf\x5d\x50\x77\x74\x2e\xda\xcb\x10\x65\x00\x2b\x2b\xe6\xc8\x88\xa1\xbf\xe3\x76\x37\x17\x8d\x52\x73\xda\x8b\xa7\x44\xd8\x99\xe6\x72\x0f\x93\x77\xee\x21\x4e\x49\xc0\x40\xc3\xa4\xc8\x54\x13\xd0\x44\x3e\xf0\x94\xb2\xd5\x49\xf7\xcf\xb2\xf2\xcb\x1d\xc7\x1d\x1a\x51\x2e\xb1\x45\xff\xac\x6b\x5c\x44\x3c\xe4\x97\x6d\x1f\xfd\x09\x18\x4d\xcc\xa9\x87\xd8\x56\x9d\x17\xd3\x37\x6b\x19\x60\xb5\x70\x8b\x25\xd3\x79\x2a\x17\x3f\x43\x1b\x52\xfb\xea\xa7\x05\x52\x17\x39\x36\xd9\x6d\x74\x15\x47\x2f\x32\x2a\x3f\x73\x77\x47\x29\x78\xe1\x38\x8e\xa7\xc8\xef\xc7\x97\x96\x6d\xb0\xb8\xcb\x2f\x38\xb4\x17\xee\x0e\x03\x17\x15\xad\xca\xfd\x14\x6f\x4b\xe4\xd5\x2a\xb5\x78\xc4\xe1\x04\x7a\x0a\xf6\x2f\x8b\xac\x1b\xdb\xc6\x37\x18\xc7\x11\x7e\x04\x8e\x07\x70\xd1\x46\xbe\x87\xc0\x8b\x12\x3b\x19\x29\x36\x77\x23\x93\x73\x91\xa8\xc2\x11\xe7\xa7\x56\x7b\x32\xfb\x19\xd9\x7a\xbb\x1f\x21\x1f\x3c\x6f\xb5\x58\x84\x85\x91\x85\x8c\x38\xef\xc5\x20\x6c\xe1\x69\x84\xf1\x83\x1a\x0e\x31\x0d\x2f\xa2\x70\x18\x0e\xfc\x28\x63\x01\x25\x43\xda\x7b\x00\x49\xdb\xb1\x1d\x93\x7f\x95\x3c\x88\xe9\x59\x59\x7e\xf3\x00\x61\x63\xcc\xe6\x75\xb2\x70\x84\xc1\x97\x4d\xaf\xe6\x8c\x35\xb2\x9a\x85\x89\x91\xd2\x6e\x30\xe6\x0e\x1a\x7e\xb0\x54\x2f\xb2\x7f\xb6\xb2\xb1\x1b\xb6\x30\x0e\xed\x7f\x79\x00\xa7\xb5\xeb\x5a\xad\x56\xaf\x35\x6a\x4d\x0f\xd5\xae\x6b\xad\x5a\xbb\xd6\xa9\xad\x9d\x3d\x1a\x60\x0f\x75\x4a\x87\x5e\x61\xe1\xeb\xf8\x8c\x18\x2b\xf6\x8a\x39\x04\xc3\x72\xe5\x0f\xf4\xbf\x5f\xbf\x42\xcc\x5e\x4d\xd4\x18\xa2\x8a\x98\xde\x1f\x36\x2c\x8a\x42\xf9\x0f\xa0\x4a\x46\x43\xfc\x67\x69\x63\x52\x1d\x00\x25\x8f\x31\x8e\x2e\xb2\x11\x35\x3d\x72\x72\x91\xf2\x31\x63\xf2\x85\xb2\x58\xa4\x98\xed\x68\x10\x07\x84\xde\x31\xfd\xa1\x93\x3b\xbc\x2e\x8e\xfd\x29\x08\x00\x47\x83\x95\x5d\x7c\xed\x6e\x73\x5e\x00\x99\x52\xab\x7d\xe1\xe0\x2e\x39\xb1\x96\x88\xec\x62\x89\x6b\x30\x2f\xac\x8b\xa5\x8a\x32\x24\x9f\xb2\xe1\xfa\x42\xd1\x5c\xd8\x54\x38\x63\xb9\xf0\xa9\xfa\xfa\x15\xed\xe2\xeb\xc2\xf0\x2d\x73\x08\x68\xe0\x67\x38\x62\x7b\xbe\x4a\x41\x0e\xe6\xef\x26\x24\xe9\x1e\x36\x1f\xf0\x13\xc6\x0d\x25\xca\x84\x34\xbf\x8b\xde\xeb\x96\xc5\xa5\x0c\x6d\x08\xec\xea\x3c\x7e\x86\x78\xd3\x70\xa7\x34\x83\x92\x3a\x53\xa2\x81\x9d\x17\x0b\x47\x42\x06\xf6\x57\x83\x61\x59\x7c\x15\xb3\x91\x2f\x42\x1d\xe4\x24\xe6\x2e\x1d\xa6\xc7\x39\x8f\x51\x78\x8e\x03\xf8\xb1\xca\x92\x28\xfc\xbc\x8e\xd1\xa9\xde\xd8\x9f\x4c\x11\xbe\x86\x48\x92\xfd\x50\xef\x1c\xbd\x57\x25\x65\xcc\xdb\x06\x7a\x9f\x3a\xb0\x05\x49\x51\x10\xff\x97\x23\x50\x3a\xd4\x27\x22\x69\x84\x61\xab\x45\x7e\x86\x7c\x94\x85\x13\x8b\xc4\x6d\x0b\xc9\x2e\x77\xd7\x9d\x14\x42\x1e\x1c\x52\x14\x6d\x10\xf4\xd8\x2c\x9c\x86\x3c\x2a\x36\xf9\x4f\xa5\xd1\x42\xcb\xa8\x12\x52\x8c\x5f\xa2\xf5\x6a\x55\x44\xcb\x76\x4a\xf1\x14\x8e\xda\xe3\x25\x14\x8a\x70\xdb\x5f\x37\xf2\xa6\xdf\xbc\xe1\x6d\x58\xca\x8b\x46\x4b\x08\xfe\xce\x6d\x49\x1e\x53\xba\xb8\xee\x35\xa6\xee\x28\xf7\x65\xbb\xbf\x81\xcc\xc1\x2e\x93\x31\xd8\xa4\x42\xb1\xd9\x2e\x6d\xa8\x68\xda\x72\xac\xf8\x61\xe4\xf7\xf5\x93\x87\x74\x00\x28\xcb\x4e\x69\x0c\x0e\x22\x04\x2a\x82\x61\x98\xdd\x57\x14\xcc\x17\xa7\x58\x5d\x0e\x26\x45\x3e\x97\x0d\xdd\x6b\x61\x4d\xa6\x1c\x65\x8b\x8b\xe4\x64\x32\x76\x86\x61\x11\xd5\x4e\x05\x0c\x1e\x67\x7e\x03\x96\x0e\xfd\x03\xd2\x6f\x36\x08\xe9\xa7\x0a\x5f\xb0\x10\xbc\x22\x4a\x6d\xa0\x7d\x3f\x1b\xad\x0c\x70\x38\xce\x6b\xae\xa2\x05\x22\x12\xd9\xcf\xbf\xa5\x76\x1e\x87\x39\x92\x71\xfc\xbd\xab\xdd\x27\x3b\xee\xca\xb4\x60\x9c\x77\x55\x5a\x98\x77\xce\x95\xc1\xc2\x49\x8d\xe2\x2a\x47\x3f\x37\x4f\xce\x2b\x26\x8d\x30\xf3\xfb\x9a\xd3\xa4\x8e\xd4\x5b\x7c\x0a\x24\xb1\x61\x18\x8e\xc7\x3c\xec\x2c\x73\x93\x80\xf3\xd6\x7c\xa1\x84\x1f\xe6\x22\xdb\xa1\x57\x06\xe5\x74\xf1\x29\x35\xcb\x0c\x52\x29\x42\x79\x28\xe3\xb3\x12\x47\x30\xe6\x0a\x52\x77\x9f\xb4\x68\x09\x99\x4c\x22\xfb\x11\x4b\x66\x0f\xe6\x81\x8a\x7c\x4d\xd4\x1b\xf2\xc9\xf9\x95\x3b\xca\xfc\xf9\x15\xda\x20\xff\x3a\x12\xa8\x4d\xce\xbf\x90\x6d\xe6\xba\xe9\x07\xb8\xb3\xde\xd7\xc3\xaf\x8b\x62\x7e\xfa\x19\xc9\x9c\xa3\xe0\x9e\xa0\xc4\xdd\x1d\x6d\xb5\x52\xbb\x7e\x55\xeb\xbc\x42\x2f\x49\x17\xbe\xc0\x9e\xbe\xb3\xb3\xb3\x53\x45\x4b\xf4\xc5\xcf\x3f\xa3\xda\x75\xbd\x06\xdb\x3d\x41\xc0\xb1\xdd\xd3\x2e\x56\x6a\xd7\xad\x4e\xbb\x46\x81\x5d\xe9\xc0\xae\xca\x02\x83\xe1\xc5\xe9\x0c\x3c\x7d\x2a\x80\xc6\x9b\x37\xb4\x26\x5a\x42\x30\xd2\x85\xf5\x59\xdd\xd5\x0d\xa8\xc3\xfe\x8a\xcb\x2e\x6d\xa0\xda\x4a\xdb\x59\x06\xc6\x94\x15\x7d\x49\xed\x6d\x38\xb5\x55\xd1\xcf\x68\xa5\x8d\xfe\x03\xd5\x51\x17\x2d\xd7\xcb\x88\x28\x06\xe7\x50\xc5\x0d\x0f\x25\x03\x7f\x30\xc2\x2c\xbb\xce\x7c\x81\x83\xd4\x3c\x27\xf4\x98\x54\x2a\xb4\x2a\x39\x2a\x29\x48\x92\xdd\x44\x1a\x0c\xfb\x15\x13\xad\xba\x81\xce\x93\x0a\x2d\x0f\x04\xb9\xd6\x5f\xb3\xf4\xe9\x2a\xcf\xe1\x53\x11\xe5\x73\xf8\xe8\x2b\xaa\x95\x0c\x6b\x1e\xe1\x2b\xc9\xd9\x09\x6e\x1d\x99\x02\x24\xe2\xe9\x7b\x9e\x69\x23\x69\x77\x3e\x65\x47\xfb\x79\x86\x34\x38\x1a\x80\x21\x0d\xfd\xaf\xdd\x90\x66\x17\x5f\x9b\x9a\x00\x1b\x38\x52\x70\x83\x02\x5d\xa1\xbf\xcb\xc5\xdf\xd4\xd5\x17\x23\x7c\x5d\x5a\x85\x51\xe2\xe4\xb9\x60\x54\xcd\x52\xad\x3f\x14\x23\x1f\xe1\x6b\x33\x84\x26\x1b\x3f\xe9\x68\x3f\x3f\x91\x90\x35\x70\xe6\x5d\x8f\xa9\x57\xa5\x4f\x9e\xe9\xa2\xc7\x48\x3a\xeb\x26\xa0\x11\xbe\xee\x8d\xfc\xa4\x74\x9e\xad\x74\xee\x81\x0e\x72\xa4\x85\xf4\x20\x77\x75\xcf\x43\x1c\xc7\x8e\xad\x71\x00\x4b\x80\xb4\xaa\xb9\xda\xa7\xde\xa9\xda\xf8\x9d\xad\x2a\x69\xa7\x36\x2c\xae\xeb\x60\x10\x02\xdc\x1f\x71\x18\x55\x5e\xbc\xb8\x43\xc4\x4d\x89\xc2\xe9\x7a\x5b\x44\xd3\xc3\x57\x0a\x25\xdc\xf2\x0b\xc6\x21\x3c\xfd\xf5\x52\x13\x5f\x6c\xd4\x66\x5b\xac\xc7\xf2\x91\x32\x69\x95\xc5\x12\xa5\xd0\x3a\x1f\xf8\xd1\x85\x3e\xb2\xa3\xcc\x22\xab\xe6\x6a\x91\xd4\x74\x72\xa3\x6c\x0b\x6d\x14\xe4\xc7\xa4\xab\xa5\x09\x9a\x09\xe8\xf4\x5e\x94\xb1\xce\xae\xa4\xb3\x7e\x9a\x25\x95\xd0\x43\x8d\xaa\x07\x49\xf8\x72\x95\x05\x59\x51\xeb\x55\x9b\x03\xee\xc2\x7b\x9e\x32\x4c\xab\xa8\x51\xd6\x7d\xf6\x83\x9f\x85\x51\xbd\xdc\xa6\xc5\xca\xf2\x7d\x4b\x3c\xde\x6d\xeb\x62\xd5\xff\xba\xdd\xab\x2c\x02\x0f\xb5\xa6\xc6\xd0\x9e\x7d\x0f\xa3\xb8\xfc\x8f\xda\xc6\xe8\x70\x7c\xc7\x3b\x99\x84\x20\xdd\x91\xe8\xd4\xad\x0c\x93\x78\x42\xde\xf6\xe2\x00\xc3\x26\x55\x76\x43\x92\x01\xde\x63\x4f\x52\xe8\xf6\xee\xdb\x92\x20\xc7\x85\x16\xc3\x77\xbd\x39\xb1\x55\x44\xf7\x27\x79\xb9\x95\xdf\xa2\x44\xad\xc5\x76\x29\x51\x4d\x6c\x54\xe2\xcd\x63\xef\x55\x5a\xd3\xf3\x72\x39\x87\x92\x16\x3d\xef\xed\xca\x80\x11\xf4\x66\x56\x09\xf9\x9a\xd0\xb7\x2a\xbb\x6e\x71\xe1\xad\x4a\x43\xb8\xec\x4e\xf5\xe9\x64\x67\x79\xbd\xdc\x46\xf5\x29\x1b\xae\x8b\x6d\x8a\x3d\xdc\x6d\x93\xa2\x8d\xfe\x75\x7b\x54\xc9\xf6\x1f\x6a\x65\xcd\xb2\xe1\xba\x7d\x83\x22\xa3\xf8\x98\xdb\x53\x96\xdc\x14\x18\x18\x05\x98\x1c\xd1\x3f\x1d\xed\xf5\xb8\xa7\x53\x05\xa7\x03\x7f\x8a\x2b\x05\x1b\xa7\xc9\x96\xd1\xc0\xcf\x06\x23\x54\x31\xd3\x47\x03\x0a\xa3\x24\xbe\x02\xba\x85\x8c\x2b\x95\x17\xfb\xfe\x78\x18\x27\x13\x1c\xb0\x69\x08\xfc\xcc\x37\x53\xd0\x2d\xce\xc0\xe5\x49\xbd\x3b\xff\x66\x73\xb5\x08\x99\x7c\xd7\xcc\x1b\x28\x8c\xb2\xee\x9c\x0c\xcb\x33\x6e\x56\xc7\x65\x0c\xa0\x6c\x0d\xb3\x88\x51\x0f\xb5\x10\x50\xe8\x8a\xc3\xa9\x96\x0e\x40\x23\x52\xf0\x42\x2e\x4c\x1c\xb0\x6c\x66\x92\x17\xba\x33\x13\xaf\x64\x27\x7b\x23\xa5\x44\x9b\xcc\xd2\x0c\xf5\x31\x0a\xc9\x88\x4e\x70\x94\xd1\x3c\x6b\x3e\x5c\xaf\x27\x38\x13\x1e\x0b\xa5\x72\xfb\x6a\x79\x3a\x55\xe5\x3e\xcd\x71\x48\x5d\xab\xf2\x04\xf1\x9f\xf1\x34\x43\xb3\x68\xca\x93\x06\xaa\xd9\x41\x25\x9b\x96\x9a\x85\xfb\xbe\x65\xe3\x00\x99\x06\x37\xc5\x28\x08\x2f\x31\xd7\xe7\x92\x66\x70\x90\xdd\x95\x59\xf3\x68\x23\xfd\x82\x25\xd1\x66\x49\x4c\xb3\x18\x85\x59\xca\xbd\x62\x10\xa1\xe0\xfb\xde\x31\xf5\xad\xc8\xd3\x84\xb8\xee\x4b\xa6\x52\x59\x77\x99\x79\x1f\x02\x2b\x65\x9b\xcd\x00\x64\xe0\x64\x9e\x8a\xda\xce\xaa\x33\x25\x5a\x3e\xda\xf2\x33\x9f\x0b\xeb\xb5\xb2\x92\xe6\x66\x10\xa4\xd0\x06\xcf\x0b\xee\x18\x69\x46\x0b\xe5\x37\x45\x11\x64\xc1\xc8\x3c\xce\x8c\x5d\x10\x5d\xf3\xcc\x09\x80\xf2\x4b\xea\x53\xe2\x4b\x16\x94\xd4\x9e\x18\x38\xde\xe3\x4c\xe6\x39\x45\xa7\xf2\xc2\xe4\xf7\xa5\xea\xcd\xdf\x1b\x59\xc9\x32\xc9\xcc\x4d\xf7\xfa\x3c\x1d\x9d\x1c\x50\x54\x1a\x20\x16\x4c\x54\x05\x25\xfb\x38\x03\x19\xcd\x89\x13\xc9\x68\x4d\x62\xca\x80\xe1\xfc\x48\x69\x9b\xd0\x35\x17\xf9\x72\x53\x22\x1b\x30\x83\x68\x97\x36\xd4\x24\xe9\x65\x29\x98\xe7\x3a\x4d\x91\x7f\xe9\x87\x63\x88\xd8\x45\xf9\x02\x30\x3b\x37\xd5\x9c\x48\xce\x2a\x61\x74\x19\x7f\xc6\xa9\x9e\x64\xb8\xc2\x92\x03\x7b\xe8\x6a\x14\x0e\x46\x56\x56\xdd\xbf\x29\x60\xd5\x66\xab\x7c\xa1\xf4\xe3\x78\x8c\xfd\xe8\x16\x05\xf1\xce\x78\x96\x8e\xd0\xaf\x23\x9c\xd1\x78\x26\x3c\x17\x2d\xb8\x6b\x4d\xfd\x04\x18\x05\x7b\x95\x73\x6d\xc1\xae\xef\x10\x0e\x44\x70\x7a\x18\xf1\xfb\x6f\xf3\x02\xe0\x16\x25\x24\xd7\x9a\xe1\xa9\x72\x5d\x71\x39\x16\x04\x63\xcf\x14\xac\xc6\x5a\xa5\x45\x95\xc5\x47\x07\x7c\x41\x9d\x09\x5b\x22\x39\x71\x5b\xb4\x25\xe4\x35\x37\x4e\x83\x91\x75\xa9\x55\xc8\x47\xc9\xd0\xcc\x45\xf7\xbc\x78\x2e\x2b\x6c\x68\x29\x99\x8b\x0a\x73\xe8\x79\x6d\x7b\x44\xbf\x5e\x3c\x8b\x32\x4e\x5f\x16\x66\x42\x80\x46\x34\x91\xf0\x11\xc4\x2d\xde\x50\xf1\x5f\xd5\x9a\x7c\x6d\xf2\x22\xd7\x90\x33\x0c\x8e\xe2\x59\x14\xa0\xd9\x94\x3a\x14\x0e\xc6\xb3\x00\x6b\x74\x6f\x56\xd3\x30\xca\x8d\x5c\xe4\x0f\xe5\x63\xdb\x0a\x2c\x82\xf8\x2a\x92\xf1\x88\xa3\xf1\x0d\x1a\xce\xc4\xa2\xb4\x44\xd2\x5f\x5d\x45\x63\x9c\x52\xa7\x4a\xbb\xac\x05\x7c\x23\xc1\x13\x3f\x8c\x54\xe1\xaa\x5c\xbf\x26\xfe\x75\x45\xe9\x17\x5c\x9c\xa2\x65\x5b\x66\x76\x6f\xfe\x95\xaa\x98\x73\xaa\x79\x70\x4d\x39\x50\x32\xc7\x43\x69\xfd\x25\x92\x08\xd0\x45\x4f\x40\x1b\x4e\x72\x22\x5f\xd5\x3e\x86\x51\x45\x6e\xf2\x25\x6a\x79\x0a\x9d\xd9\xcc\x27\x79\x06\x6f\x1b\x91\x10\xba\x93\x00\x16\xbb\x6d\x51\x3e\x4f\xd5\x2c\xec\xf7\x1b\x79\x04\xc4\xdb\x25\x69\x3d\x39\x8d\x26\x08\x66\x38\x21\xa7\x49\xb1\x31\x2c\xe7\x07\x04\x70\x86\xb4\x57\x64\xdc\x45\xdd\x83\x04\x57\xb1\xe5\xaa\x77\xcd\x31\x52\x52\x60\xe5\x0c\x1f\xa6\xdc\x2c\xaa\x70\x5f\x99\x85\xe9\xc9\xb0\xe4\x11\xb5\xa0\xa1\x70\x32\xb4\xbc\x21\xcf\xf4\x7c\xaa\xe4\xb1\x45\x8b\xb0\x75\x2b\x9c\x54\xfc\x3d\xb9\xe9\xfb\x1a\xbb\x95\xce\x42\x59\xe8\xe4\x75\x4f\x2b\x37\xc7\x6e\xf8\x17\x99\xbc\x9d\x1b\x1b\x62\x8e\x89\x75\xc6\x0a\x2d\xde\x54\x1e\x26\x4e\x9a\x8e\x4c\xf4\xfc\x0c\x3e\xf2\x53\xc8\x90\xeb\x3c\x71\xcf\x4d\x45\x9e\xb3\x6b\xd9\x07\x8a\x4e\x3a\x83\x4e\xc3\xae\xe1\x14\xc5\x91\x74\x14\xae\x77\x50\xa5\x5d\x6f\x80\x25\x6b\xd5\x72\x2c\xde\xa5\x95\xf9\x31\x58\x3c\xda\xcf\xc3\x0f\x12\xf5\xb5\x28\x03\x59\x61\xc0\xd4\x22\x57\x33\x3a\x08\x0b\xe4\x24\xbf\x6b\x74\x3b\xd2\x10\xa2\x21\x92\xe7\x05\xb9\x2b\x6d\x43\x22\xe6\x40\x09\xdd\x76\xbc\xbb\xd9\x68\x77\xec\x4e\x62\x45\xa9\xae\xef\x1c\x61\x8d\xc7\x56\x2b\x1f\x66\xed\x18\x8b\xf0\x1e\x6e\x0d\x81\xa9\x86\x98\x63\x89\x9d\x6b\x52\xf8\xc2\x79\x78\x95\x09\xa3\x97\x87\x50\x91\x00\xc2\xb2\x8a\x47\x2d\xe1\x58\x49\x00\x5a\x61\x5e\xa6\xd4\xa0\xef\xcd\x6c\x38\x2c\x1b\x33\xdf\x90\x8f\x16\x1b\xeb\x4f\xd3\x00\x58\x86\x3c\xd8\x34\x2d\x7f\xf9\x8c\x7d\xce\x08\xc2\x14\xb8\x1e\x47\xb8\xb4\x0b\x11\x65\x45\xcc\x7f\x68\xee\xf2\x5e\x60\xce\x67\x80\x57\xe5\x05\x43\xca\xa6\x4b\x51\x4b\xce\x57\x9d\xd0\x82\x32\xa1\x28\x63\xe0\x58\x8f\x0e\x8d\x04\x53\xd8\xa8\x10\x2c\xe4\xc1\xc6\x97\x08\xe9\x04\x5f\x1b\x28\xe9\x1c\x6b\x8a\xbf\x0f\xe6\x3b\xb1\xc3\x92\xdc\xa4\x02\x17\x27\x83\x44\x1f\x63\x40\xd9\xcf\x68\xbe\x78\x56\x33\x8f\x19\x8a\xc2\x14\xe1\xe1\x10\x0f\xb2\xf0\x12\x8f\x6f\x90\x8f\x02\x9c\x66\xc9\x0c\x9e\x3d\x90\xd3\x97\xe3\x68\x80\x4b\x45\x19\x2d\x49\xa1\x4a\xa2\x07\x40\x29\x0f\xc8\x0d\x25\x16\xd7\x5c\x90\x41\x78\xa0\x9d\x01\x6d\x70\x72\x14\xc9\x84\x1c\x6a\x09\x47\xe9\x22\x42\x2f\xa8\x36\x9f\xea\x79\xd1\x85\xe8\x7e\xc7\x32\xbe\xe6\x81\xa8\x18\x0c\x9a\xb7\x56\xe6\x09\xf0\x0b\x70\x56\x69\x84\x38\x93\xdd\x91\xe6\xc1\xba\x78\x48\x79\xd7\xe2\x91\x92\xdf\xb5\xeb\x8d\xd5\x66\xa3\x9c\x98\x9f\x32\x8d\x8f\x12\xff\xde\x67\x93\xf6\x42\x04\x4e\x0a\xa3\x0c\x27\x43\xc9\x5a\x18\x39\x57\x05\xe7\xaf\xac\xeb\x9c\x6a\xe9\x76\xcb\xe2\x23\xfa\x68\x84\xc7\x53\x9c\x10\xf1\xa7\xc4\x22\xd8\x61\xb8\x31\xdf\x60\x1d\xe5\x6f\x70\x8f\x47\x65\x26\xdd\xa9\x82\x76\x75\xe5\x9c\xf6\x6a\x17\xba\x54\xb1\x09\x5b\x6e\xfd\x9c\x5c\x55\x31\x1e\x04\xd0\xae\xfb\x3d\x63\x5d\xd8\x03\xe0\x22\xf5\xbc\xc8\x56\x22\x1c\x16\xd5\x2c\x62\x79\x86\x4b\x95\xc2\x17\x3f\x36\x5a\xe9\x89\xb0\xe4\xdd\xfd\xcd\xde\xc3\xd3\x13\x11\xa1\x79\x50\x0a\xd2\x02\xa3\xab\xbf\x05\x4d\xed\x4e\xfc\x41\x29\xba\x9a\xf8\x83\xfb\xd0\x96\xa8\x7e\x2f\xfa\xfa\x8c\xed\x2a\x24\x89\xbe\x7a\xe7\x80\x16\x99\x07\x4a\x64\xb4\x11\x5a\x77\x31\x62\x2b\x3c\xfe\x0a\x4d\xd2\x1c\x1f\x06\x82\x0d\x38\x31\xb0\x1f\xb9\x17\x03\xcf\xd4\x02\x21\x7d\xf7\xfd\x6c\x44\xc3\xfa\x3e\xe3\xef\xd9\x30\xbf\xce\x23\xfd\xde\x9e\x79\xed\xd6\xf7\x1a\xde\x97\x21\x53\xe1\xe1\x88\xab\x0f\x1e\xef\x97\x43\x5e\x34\xee\xaf\xc0\x50\x8e\xff\xeb\x0a\xfa\x2b\xbe\x43\xf0\x5f\x5b\x00\x5d\xf3\x8a\x82\x47\x8d\xcd\xa7\x4c\x22\x00\x29\x1a\xac\xf4\xbe\x20\x3c\x8d\x52\x5b\x72\x81\x71\x85\x91\xed\xb4\xca\x99\x68\xb1\xb2\xdc\x48\x4b\x3c\xde\xcd\x4c\x8b\x55\xff\xeb\xec\xb4\xca\x22\xf0\x50\x9c\xb2\x0f\xed\xd9\x4d\xb5\x28\x2e\xff\x00\x5b\x62\xa3\xfc\xc4\x9f\x0a\xe1\x70\xe2\x4f\x17\x8f\xbd\x60\x71\x11\x37\x41\xb8\xac\x32\xe9\x98\xdf\xd5\x60\x19\x2d\x6d\xa0\xa6\xdb\x66\xf9\x26\xc3\x75\x8b\xd1\x32\xfd\x73\x99\x2e\xd3\x3f\xa7\x01\x33\x07\xdc\xc8\x01\x57\x42\xb4\x84\xea\x55\x8b\x4d\x34\xff\x52\xc6\x32\x9a\x03\x6e\x6a\x80\x1b\x4e\xc0\x0d\x2b\x60\x3b\xe4\x2c\x09\xa7\x63\xb8\x7a\xa9\xd0\x61\x79\xf3\x06\xfc\x26\xbe\xd2\xe7\x06\x79\x5e\x27\x8f\x80\x82\x0d\x8a\x98\x8a\x3f\xe8\x54\x54\xfe\x40\x6f\x48\xeb\x3f\xfd\x84\x00\x9b\x3f\xd0\x4b\x54\x5b\x59\x6b\x4b\x33\x54\x7d\x8d\xfe\x28\x08\x77\x21\xcd\x3d\xb5\x05\x9f\xf8\x53\xb0\x99\xdd\xcc\x2a\x15\x8e\x30\x74\xba\x83\x5e\xa2\x4a\x13\x2d\xa3\x3f\xaa\xac\xa7\xcd\xa1\xd5\xdb\xc9\x88\xcf\x60\x2a\x2e\x82\x80\xa7\xfb\x36\xa9\x91\x7d\x20\x28\xa1\x0d\x24\xa1\xd3\x31\x9c\x49\x20\xb6\x5e\x5e\xdc\x6e\x1c\x3c\x0a\xc7\x18\x55\xe4\x7e\xb2\x70\x01\xae\x58\x23\xd6\x61\x91\x9b\x59\xbc\xcf\x8c\xb3\xca\x50\xef\x61\x27\xaf\xf0\xe4\xbb\xdb\x59\x0a\x56\xbb\x10\xa3\xff\xae\x4d\x2d\xd9\x0e\x41\xed\x7a\xe4\xad\xa4\xbc\xb9\xa5\xa8\xb5\xe0\xe6\x20\xea\x09\x43\x79\xf1\x46\x18\xca\xcf\xe7\xfb\x46\x89\x04\x5f\xe2\x24\xc5\xfb\x52\xc1\xfc\x95\x2d\xae\xd9\x0f\xf9\x67\x27\x75\x17\x02\xb5\x6d\x01\xfc\x4f\xe7\x3f\x84\xfd\x90\x15\xca\x3a\x58\xc8\x69\xd4\x86\x4f\xf9\xc2\x66\xb6\xf9\x7f\x54\xcf\xd0\x06\xfa\xa3\x5c\xac\x4e\x0b\x4b\xd9\xbb\x88\xe2\x04\x7f\x33\xae\x22\x81\xdc\x8b\x02\xf0\x73\xce\xa7\x3b\x24\x6f\x0e\x86\xf3\x78\x86\xd4\x0e\x85\xf1\xc3\xc6\x06\x5a\xae\xcf\xe1\x49\x32\x85\xc9\xb5\xef\xc4\x88\xad\x22\x41\x22\xd2\x5e\xa6\xf8\x43\x1c\x4f\xf3\x25\xe1\xe9\x38\x78\xd2\x8c\x2a\x22\x87\x76\xe3\xe9\x4f\xbb\xe8\xc5\xe6\xdb\xde\xd6\xf6\xce\xbb\xdd\xbd\xff\x7a\xff\x61\xff\xe3\xc1\xe1\xff\x3e\x3a\x3e\xf9\xf4\xcb\xaf\xbf\xfd\xfb\xff\xf8\xfd\x41\x80\x87\x17\xa3\xf0\x8f\xcf\xe3\x49\x14\x4f\xff\x3b\x49\xb3\xd9\xe5\xd5\xf5\xcd\x97\x5a\xbd\xd1\x6c\xb5\x3b\x6b\xeb\xaf\x96\x56\x37\x58\x84\x5b\x71\xb4\x13\x8b\x76\x61\x54\xf3\x21\x76\x78\xa5\xe4\x96\x1b\x8a\x85\xa9\x4d\x14\xd2\xda\xb1\xb9\xa9\x90\x99\x0e\x1d\xfb\x0d\x73\xec\x4a\x89\x90\x24\x2d\x8f\x9c\x9a\x64\x07\x16\xb4\x8c\xea\xd5\x33\xf0\x5e\xc9\x05\xa6\x86\x49\x5c\x1c\x68\xa3\x0c\xd0\xea\x19\xdf\xe0\x65\x31\xcc\x02\x95\x0a\x44\x91\x12\xb9\xe7\x2b\x11\x66\x00\xfd\xaf\xb4\x45\xd9\xb7\x26\x2a\x0e\xde\x83\xd8\x10\x2f\x2d\x29\x1f\x04\xd9\x8a\x1f\x8c\x22\x8d\xd8\x92\xd6\xb0\x08\xb7\x79\xee\x1e\xfd\x90\x2f\xed\x11\xaf\x9d\x99\x7d\xda\x4f\x47\xff\xa7\xa3\xbf\x38\xfa\x7f\x3a\xd9\x59\xae\x77\xd0\xdb\xed\xd2\x0e\x5a\xf5\xce\xdb\x6d\xd9\x47\xab\xde\x51\x9f\xe0\xeb\xdd\x9d\xb6\x28\x32\x7f\xad\xe3\x56\x49\x1c\x1e\xd0\x79\xab\xde\x71\x7a\x6f\xd5\x3b\xff\x00\x8d\x40\xf9\xc3\x3a\x0c\xc6\x7d\xce\xea\x76\x7f\x7f\xb0\x8c\x8a\x03\x7c\x18\x87\x51\xe6\x72\x32\xae\x77\x1c\x4e\xc6\xd6\xc3\x74\x8e\xa9\xdb\xcb\x58\x34\x59\xd6\xd5\x58\x02\x7a\x8f\x13\x94\x4e\xc4\xf7\x72\x56\x03\xda\x5c\x74\x6d\x7c\xd7\xc7\x28\xba\xaa\x84\xcb\x1a\x5f\x7c\x0b\xf9\xac\x41\xa5\xc5\x7c\x8d\x79\x2d\x21\xdf\xf2\x17\x8f\xed\x69\xac\x36\x5c\xce\xd1\xb8\x0e\xb2\x8f\xc0\x50\x75\x33\x26\x22\x50\xbe\x58\x1a\x64\xb1\x68\x41\xd8\xdc\x14\xee\x92\x72\xb4\xd1\x79\x59\x3e\x14\x06\x23\xcb\x0f\x25\xf6\x30\x69\x9f\xfa\x70\xef\x7d\xea\xc3\x77\xb0\x4f\x95\xc1\xe1\xa1\xf7\x29\xeb\x72\xfa\xb0\xfd\xb4\x4d\x89\xbf\x07\xdb\xa6\xd2\x2b\x7f\xba\x1d\x05\xa1\x1f\x55\x16\xdd\xb1\x6c\x47\xf2\xef\x7f\xcb\xfa\xf0\x38\x5b\x56\x99\x65\xf2\xfd\x6f\x59\x1f\xb6\xb5\x4d\xeb\x69\xc7\x32\x76\x2c\x69\xc5\x2c\xb4\x79\x7d\xd3\xdd\x4b\xcc\x8b\x84\x2d\x01\xa4\xf4\x91\x47\xc3\x87\x2f\xec\xee\x84\x2e\xee\x5a\x8d\xfc\x3f\x5c\xac\xd0\x8f\xa4\xfb\xec\x2b\xfd\x96\x2f\xff\x79\xea\x02\x20\x2c\xb7\xb6\xa0\x73\x2f\x6d\x01\xcb\x51\xfb\x2d\x95\x06\x1e\x92\x5e\xa5\x23\xbf\xae\xbd\x1a\x4d\xfc\xc1\x23\xaa\x16\x3c\xc4\x9b\x85\x5f\xd0\xda\x3f\x41\xdd\x60\xe4\x8b\xbd\x83\x2a\x42\x31\x62\x91\xbe\xec\x6f\xb5\xa1\x26\x98\xdc\xec\x6f\xb5\x6d\x32\x1e\x98\x38\x7f\xc6\x37\x34\x0b\x36\xb5\x83\x15\x7d\x05\xe7\x5f\x3f\xca\x78\x12\xef\x38\x99\x50\x1b\xed\xed\x5f\x0e\xcf\x61\xd3\x3d\x89\xdf\xe3\x5c\x18\x44\x57\x57\x57\x2b\xf1\x14\x47\x69\x3a\x5e\x89\x93\x8b\xd5\x20\x1e\xa4\xab\x90\x84\x3b\x5e\xd5\xea\x8c\xb2\xc9\xd8\xa2\x08\xd9\xbe\x9c\xbe\xdf\xda\xc9\xd1\x16\xcf\x25\x83\x21\xcc\xf7\x01\xd1\xf6\x38\xc3\xfb\x85\xa5\x3c\x87\x3d\x8a\x0c\x4c\x4a\x1e\xc2\x88\xbb\xbd\x48\xe1\x9e\x73\x57\x97\x16\xaa\xd4\x1b\xeb\x8a\xa7\x8b\x01\xdf\x61\xa4\x26\x87\xc5\xd0\x13\xa4\xec\x6f\xb5\xe7\x61\x1b\x66\xcc\x16\x59\x0f\x52\x2d\x7d\xc8\x62\x34\xa5\x56\xa7\xb2\x77\x8e\x63\x87\x33\xfc\x62\xb4\xdd\x81\x0d\x4f\x17\xd5\x1b\xeb\x60\x42\xaa\x7c\xa5\x9d\x03\xcc\xb5\x2f\x39\x3e\x4a\xdb\xb7\x77\x76\xbb\x71\x10\xed\x63\xfb\xe1\x60\xa9\xd1\x07\x30\xb3\xfe\x1c\x0c\x0d\xef\x1b\x4a\xf3\x73\x52\x34\xcd\xaf\xf8\x67\x3e\x57\xeb\x5a\x3e\xbf\xbb\x82\xf1\xd4\x69\xac\xd5\x6a\x3a\xe0\x05\xbd\x83\xe6\xfa\xfd\x94\x93\x77\xb7\x20\x85\x3f\xa1\x11\x42\x15\x90\x08\xdb\x87\x0c\xac\x64\xd1\xde\xc5\x4a\x9f\xd7\xa5\xb1\x00\x6c\x80\x0a\x2a\xa7\xfe\x38\x43\x9b\xf0\x9f\xc5\xc5\x62\xa0\x2e\x4a\xde\x0f\x41\x5e\x98\x6c\x1e\x9f\x83\xe1\x0a\x75\x8b\xc0\x15\xde\x19\x0f\xf0\x2b\xc8\x5b\x03\xc5\x95\xfc\x8e\x6a\xcd\x85\x04\x5e\x75\x8a\x2d\xe2\x2d\x59\xe9\x8c\x7b\x98\xb5\x85\x97\x1a\x21\x0f\x66\xa2\x9c\xaf\x0e\x2b\x2c\x97\x5b\x18\x84\x16\xa0\x43\xfc\x1e\xc6\xc6\x96\x12\x6d\x91\x33\x72\x0e\x4c\xf8\x04\x8b\x37\xce\xe3\x32\xdf\x63\x68\x8f\xd8\x93\xa5\x9c\xc4\xc4\x69\xd1\xfc\x85\x05\xcb\x77\x6c\x63\x22\xe0\xd5\x8f\xcc\x98\x45\xc3\x95\x1b\xb4\xbc\xe1\xf8\x58\x8f\x02\x44\x8c\x03\xcf\x01\xe7\x05\xb3\xea\xb2\x44\xcb\xce\xbf\x56\x46\x72\x30\x86\xdc\x09\x84\x41\xe1\xc4\x26\x19\x05\x1b\xf4\xaa\x36\x2f\xfc\xe9\xcc\x12\x84\x26\xc4\xc0\x99\x9f\x95\x83\x52\x9d\x1e\x94\xa4\x81\x2e\x4c\xfb\xa3\x61\x2f\x90\x75\x8e\x82\x0d\x63\xcb\x50\x99\xef\x24\xb2\x62\x31\x63\xac\x6d\x68\xa3\x2c\xd5\x92\x74\x34\x9c\xfe\x2c\xd1\x2e\x44\x80\x39\x5e\xaf\xac\xcd\x75\x29\x1e\x2c\xfb\x1d\xdf\x89\xf7\x2e\xc8\x77\x1f\xd0\xfb\xd6\xe2\x57\x26\xf5\xa6\x3c\x37\x97\x2a\x29\xda\x0d\xe9\xbd\xca\xdd\xf3\x0f\x48\xe1\xea\x62\xd3\xa6\xfb\xb5\x8b\xb3\x2f\x56\xcd\x43\x0e\xb1\xe1\x3e\x60\x0a\xc5\x06\xa1\x42\xce\x65\x7d\xd7\x9e\x63\xba\xb0\xb0\x61\x57\x25\x16\x70\x5c\x29\xde\xef\x6e\x5f\x17\x1c\xdf\x29\x34\xfb\xd9\xdd\xe3\x87\xcf\x6e\x7b\xdd\xe3\x47\xd2\xee\xda\x1a\x39\xd3\xaf\xfd\xad\xcf\xf4\x83\x70\x3a\xc2\xc9\xf2\x23\x9b\x08\xc0\xe9\x5d\x6e\xea\xaf\x39\xc4\x9b\x99\x3b\x1f\xe4\x34\xdf\x83\x8e\x1d\x12\x8e\x93\x8a\x43\xbb\xfc\xd2\x6d\x42\x20\xde\x6b\x99\x30\x94\x1a\xe4\x0c\xe7\x67\x50\x89\xfe\xe4\x8c\x98\x55\xdc\x81\x97\x19\x8b\xaa\x40\x8b\x2c\x90\x4e\x83\x9c\x6e\xe8\xdc\x64\xf8\x3a\x23\xa7\x48\x9f\x3d\xa3\x29\xed\x13\xf3\xcd\xe2\xa9\x36\xfc\x00\x0f\xc2\x89\x3f\x1e\xdf\xb0\x34\xa0\x41\xe9\x9b\x1b\x79\x54\x6e\x59\x2b\x6c\xe0\x4e\x04\x1a\x6a\xb3\x8b\x27\xe3\xb8\x0b\x7e\x8f\x9a\x9e\x23\x9f\x12\xe9\x56\x47\xee\xfc\x62\x17\x3b\x4a\x4d\x87\xa3\x96\x5c\x66\x25\x9f\xdd\x3c\x81\xc4\x2e\xbe\xbe\x63\x26\x08\xcb\xf0\x4a\xe4\x23\xdf\x37\x2c\x38\x9d\xda\xcd\x43\x18\x4d\x67\xd9\x7d\xe6\x94\x93\x87\x4a\x74\x77\xa0\xb3\x87\x22\x8e\x81\xc6\x28\x2c\xf4\x71\xe7\xa4\x12\x30\x5a\xf6\x10\x36\xf9\xe4\x6c\xa0\xbc\x0d\x5a\xe1\xb5\x95\x7a\x7a\x0a\xf5\x70\x8d\x40\x0e\xa8\x2b\x03\xbd\xb5\xeb\xe6\xdd\x3b\x6d\xde\x5d\x6d\xb7\x95\x36\x88\x6e\xbb\xe1\x69\xca\xf3\xf5\x27\x53\xbb\x7f\xba\xee\xdb\xb5\x3b\x1a\x91\xcc\x8b\x34\xe1\xe6\x21\x05\x1c\x80\x85\xc6\xd5\x9a\x88\x8a\x94\xd8\x90\x1d\x55\x1f\x26\x21\x3d\xb8\xbc\xce\xe5\x78\xa5\x95\xc4\x25\x55\x51\x44\x56\x07\xe7\x65\x3c\x48\x70\xf6\x40\x4a\x25\x22\xff\xee\xda\x03\x07\x41\x2f\x19\x9b\xb0\x79\x22\x53\x47\xdf\xb2\x1a\x43\xd9\x39\xd8\x11\x20\xd8\xaa\x33\x12\xfa\x22\xea\xa3\x20\x1e\x75\x0f\xf7\x02\x6f\xb7\x87\x8c\x2f\x0b\x07\xa6\x39\xe1\x65\xe9\xa1\x4a\x8a\x2e\xab\x8f\x93\xdd\x10\xbf\x40\x31\x45\x3b\xfa\x56\x8a\x8b\xc9\xba\x5e\x14\x19\x53\xab\xc4\xf5\x05\x3a\x2c\x7b\x94\xcc\xcd\xf1\x38\xbe\x42\x7e\xd2\x0f\xb3\xc4\x4f\x6e\x10\x53\x2f\x7d\xc6\x37\x96\xb8\x83\x9f\x65\x8d\xc4\xcf\xd6\x86\x0b\x06\x4a\x57\xb7\x94\x1b\xad\x39\xce\x90\x04\xa5\x02\x37\x48\x88\xff\x06\xba\x8d\x38\x41\x61\x14\xe1\x04\xa2\xcf\xc6\xb3\x0c\x04\x08\x3d\x0a\x1f\xc4\x4c\xa4\x3a\x46\x4a\x86\xec\x81\xb6\x62\x04\xa4\xe3\x1a\x3f\xb9\x46\x68\xa9\xb1\x08\x09\xc4\x92\x56\x32\x2e\xd2\x47\x86\x52\xc1\x50\x2a\x68\x34\xf6\xdb\xc1\x11\xcc\x27\xbd\x06\x9c\xfa\x01\x1a\xc4\x51\x9a\xf9\x91\xde\xbc\x35\x89\x94\x3a\xc7\x6e\xc5\x9a\xc0\xfb\x34\x3c\x43\xbf\x6f\xa0\xda\x75\x7b\x40\xff\x67\x73\x87\x31\x0a\x37\x3b\xf4\x7f\xc5\x9a\xb1\x58\xd3\x89\x85\xda\xb3\x8d\x22\xff\x82\x38\x64\xb0\x03\x3d\x46\x14\x32\xc1\xc4\x1f\x24\x12\x59\x41\xbe\x32\x1b\x33\xb6\x0c\x24\x74\xda\xc6\xc7\x1d\x7a\x52\x55\x5f\x9c\x2f\x98\xbb\x45\x20\x83\x61\xfe\x6e\xe2\x8f\xed\x6f\xf6\x58\xf4\x31\xc0\x2b\x84\x25\x56\x18\x09\x65\xc1\x29\x2f\x13\x88\xcc\x28\xfd\xf0\xc1\xc8\x64\x92\xe0\xad\xcc\x0d\x3e\xf6\x58\xd1\xc3\x60\xa8\xff\xa7\x47\x0f\x9b\x23\xa6\x2e\x22\x22\x12\x1e\x9a\xd3\xd0\xdc\x08\x62\xee\x1a\x73\xa3\x88\xb9\xab\x3e\x52\x24\xb1\xfb\x73\xbb\x1e\x55\x4f\xc3\x78\x5b\xf6\x63\x22\x5d\xec\xda\x83\xa3\x15\x06\x1c\x2b\xe4\x98\xf2\x58\x69\x40\x73\x09\x85\x4b\x1a\xfc\x92\x49\xa0\x52\x75\x86\x1c\x9b\xf8\x03\xfb\x25\x91\x38\xf8\x3b\x8c\xe0\x5e\xfd\xad\x15\xe6\xd7\x9d\xd6\xb2\xe5\xf5\x38\xec\x2f\x13\x54\x02\xb0\x6d\x4d\xb5\xaf\x38\x1a\x2c\x83\x4d\xa3\xe5\x3d\x75\xb3\xd4\x3e\x4c\x82\xf6\x7c\xe3\xbb\x74\xe4\x37\xda\x3a\x48\xf2\xb2\xa1\x83\x4b\x47\x7e\xbb\xde\x30\x5f\x36\xd7\x2d\x25\x9b\xda\xab\x24\x9c\xe2\x49\x50\xef\xd4\xac\xb6\x7f\xca\xab\x69\xff\x73\x30\xd4\xdb\xc1\x97\xd3\xcf\xc1\xb0\xe8\xde\x41\xed\x7a\x1c\xe0\xe5\xc1\xb0\x6f\x7d\x9d\x25\x8e\xd7\xcb\x17\x63\x3f\x98\xf8\x91\xed\x73\x6c\x07\x86\x07\xfa\xeb\xa9\x1f\x2c\xfb\x51\x1a\x5e\xbf\x6a\xe8\x83\x40\x3e\x85\x69\x5c\xaf\xd5\x1b\xfa\x88\xb3\x4f\xaf\xd6\x5e\xad\xe9\x33\x44\x3e\x7d\xc1\x49\xcc\x5c\xaf\x2d\x5f\x23\xc7\x37\xaa\x23\x5b\x1e\xe1\x6b\xed\x83\x8f\x75\xe2\xa2\x71\x37\x02\xe3\x7d\x32\xd0\x27\x37\xf1\xfb\xfd\x30\xb3\xbe\x5c\x1e\xe3\x0b\x7f\x70\xf3\xd8\x77\x40\x62\xf5\xc0\x93\xbe\x68\xe0\x65\xbe\x56\xc4\x23\x5b\x22\xf0\x4c\x56\x86\x66\x16\xca\xd6\x81\xf8\xdd\x68\x89\xdf\x84\xea\xf9\x6f\x42\xec\xe2\x37\xfd\x95\x93\x76\x6e\x5f\x0a\xbf\x18\x21\x53\x0c\x28\xfd\x1a\x77\x58\x14\x1d\x4e\xad\xd2\x53\x96\xa8\x4f\x82\x36\xf3\xb7\xb1\x52\x83\x50\x22\x6d\x56\x26\x40\xf1\x46\xd0\x9d\xfc\x86\x92\x9b\x78\x23\x53\x99\x78\x19\xa9\xaf\x24\x9a\x82\x67\x42\x4a\xf0\x23\xa7\x20\x3a\x2a\x03\x36\x50\x8c\x5e\xa4\xdf\x9c\x4c\x16\x55\x44\x2a\x0a\x48\x99\xd7\x2e\xae\x98\x74\x87\x62\x63\x5d\xea\xb6\xeb\x5e\xb1\x36\xd9\x53\xe9\xaa\xdb\x6e\x79\x0a\xe1\x75\xdb\x6d\x2f\x9f\xf8\x6e\xbb\xe3\xa9\xa3\xd7\x6d\xaf\xe9\x37\xc2\x3a\x29\x77\x3b\x35\x8f\x51\x6b\xb7\x03\xf8\x08\x4a\xe9\x76\x1a\x9e\x4c\x2b\xdd\x4e\xcb\xb3\x51\x4b\xb7\xd3\xf4\x64\x0a\xe9\x76\xda\x9e\x4c\x3f\xdd\x0e\xe0\xa5\xd0\x4c\xb7\xb3\xe6\xe9\x54\xd3\xed\xac\x7b\x3a\xdd\x74\x3b\xaf\x3c\x83\x48\xba\x6b\x35\xcf\x42\x4e\xdd\x35\xc0\x9f\x2d\x89\xee\x1a\x60\xcf\x48\xa3\xbb\xd6\xf2\x0c\xe2\xe8\xae\x01\xe2\x84\x8c\xba\x6b\x80\x73\xbe\xce\xba\x6b\x1d\xf9\x02\xdd\xcb\x97\x6c\x77\x8d\x5f\xad\x93\xc5\xdc\x5d\x7b\xe5\xf1\xa5\xda\x5d\xaf\x79\xf9\x12\xee\xae\xd7\xbd\x7c\x71\x77\xd7\x01\x9d\x9c\x82\xbb\xeb\xd0\xb8\x60\x34\xdd\xf5\xd6\xed\x99\xd7\xa9\x3d\x5d\x1e\xfc\xf5\x97\x07\xbd\x11\x1e\x7c\x26\x9d\x82\x95\x42\xdd\x80\x68\x9a\xb3\x74\x36\x25\x03\x83\x59\x7c\x6a\xa9\xdf\x20\xc7\xd3\x90\xe6\xe8\x87\x0d\xf4\x82\x43\x7e\x61\xb1\x08\x11\x4e\x1a\x0f\x78\x5d\x51\x68\x8e\x2f\xda\x39\xc2\x43\x9c\x60\x38\xe8\x25\xe1\x05\x9c\xc9\xc2\x28\xcc\x72\x30\xe9\x6c\x8a\x13\x50\x5d\x6f\x68\xe9\x39\x24\x28\x9b\xb3\x8b\x09\x8e\x32\xad\x00\xca\x62\x34\xf2\xa3\x60\x8c\x95\x71\x93\x61\xf7\xad\x90\x15\x9b\x1a\xa8\x6a\xba\x03\x4a\xba\x6f\x1a\x4b\x9e\x9a\x40\x85\x51\xb6\x2e\x69\xe8\x87\x72\x7d\xa1\x98\x50\x67\xc7\x3c\xe6\xe7\x35\xa8\x12\xfe\x13\x81\x0a\x2f\x64\x6c\x94\x43\x84\x15\xb1\x98\xa6\xff\x02\x48\x97\x21\xbe\x72\xa1\xe8\x6c\x5e\x42\x78\x8f\xa3\x80\xbe\x7e\x55\xcb\x73\x82\x03\x2c\x41\x67\xcc\xab\xff\x40\xd6\x9c\xb0\x1d\x81\x45\x67\x07\x6e\x54\xad\x1a\xad\x38\xb1\xaa\x77\xec\x68\xb9\x5b\x5a\xac\xc6\x5e\x94\x35\x1b\x8b\x36\xb1\x58\x8d\x9d\x71\xec\xdf\xa5\x4a\xa7\x05\xef\xf3\xf2\x77\x24\xa5\x15\x4a\xc1\x1e\x92\x5f\xdd\x64\xf8\x00\x92\x03\x19\xaf\x6d\x79\x97\x15\xfa\xdb\xa5\x8b\x2e\x6f\xab\xcc\x8a\xc8\x4b\x2f\xa6\x42\xc8\xa1\xbd\x15\xb8\xa1\x0d\x3b\xce\x16\xcd\xc2\xf6\x35\xcb\xbe\x7a\x93\xd9\x8c\x9f\x17\x72\x17\xb4\xa1\xb2\x48\x3e\xed\xbc\xfe\x69\x78\x76\xa7\xe4\xd9\xb9\x39\x77\xf8\x05\x53\x55\x6d\xee\x38\xaa\x16\x15\x8c\x35\x4f\x6d\xe1\x21\xe6\x46\x68\xeb\x88\x32\xdf\xd6\xac\x67\x64\x34\xc9\x6b\x02\x0f\x45\x44\xea\x93\x99\xb9\xd9\xae\x3f\x9d\x8e\x6f\x58\xc3\x7e\x72\x31\x23\x2c\x3c\x2d\xf2\x57\x64\xfc\x7a\x65\x9a\xc4\x59\x4c\x70\x94\x39\x77\x91\xe1\x84\xbe\xfb\xd8\x15\x2c\x9d\xfa\x93\xac\xf3\xd7\xc8\x3a\x10\x30\xfa\x2f\x88\x4b\x64\xcd\xa9\x54\xc2\x44\x02\xb6\x58\x7a\x8f\x87\xb2\x5c\xb7\x4e\xaa\x9c\x30\x66\x21\x95\xa4\xaa\x4b\xed\xe6\xcf\x26\xe9\xb9\xf8\x4a\xa7\x65\xe7\x22\x27\x84\x4d\x6c\xd0\xe1\x5b\xf1\xfb\x29\xfd\x91\x86\x11\x0b\xc6\x4a\x58\x46\xed\xba\x5e\x63\x7f\x55\xf4\x55\x4d\xe3\xcb\x96\x57\xa5\x6a\xb5\x50\xdf\xdf\x6a\x6b\xd6\x14\x36\x03\x10\xdd\x6b\x12\x6d\xb0\x51\xb5\x18\x80\xf0\xb4\x37\x85\xb7\x63\xb9\x26\xd8\x9e\xab\xf8\xd4\xe4\xa4\xb5\xeb\xce\x5a\xab\xdd\x68\xd6\xea\x1e\xaa\x5d\xe3\xe1\x20\xf0\xfb\xeb\xaf\x2c\x79\x15\x6b\xd7\xaf\xd6\xfb\x7e\x30\x18\x62\x0f\x06\xa6\xd9\x68\xb7\xd6\x3a\x6a\xb9\x33\xe7\x8d\x98\x96\x46\x4f\xee\xc5\xbe\xc8\xa4\x67\xdb\xbb\xae\xfc\x29\xc2\xe0\x5e\x3d\x7f\x0f\xa9\x77\xdc\x3b\x86\xfb\xfa\x9a\xcf\x06\x45\xe2\x9c\xc0\xe3\xe9\x05\x51\xe8\x88\xc0\xbb\x7f\x2e\x95\xde\x3f\xe5\x0f\x67\x36\x97\x10\xe9\x33\x21\x38\xb3\x00\xf9\xab\x54\x2a\x12\x4c\xea\x29\x8e\xbe\x22\xf9\x25\xec\x75\xad\xaa\xe6\x23\x8e\xbe\x96\x04\xd8\x68\x55\x2d\x00\x21\x94\xb1\xe2\x92\x6e\x82\xbb\x9f\x71\xc8\xae\x72\x43\x61\xbf\xee\x57\x86\xb4\x86\xa4\x31\x45\x4b\xa8\xa6\x8b\x0f\x4a\xe9\xba\x56\xba\x5e\x58\xba\xa1\x95\x6e\x14\x96\x6e\x6a\xa5\x9b\x85\xa5\x5b\x5a\xe9\x56\x61\xe9\xb6\x56\xba\x5d\x58\xba\xa3\x95\xee\x14\x96\x5e\xd3\x4a\xaf\x15\x96\x5e\xd7\x4a\xaf\x17\x96\x7e\xa5\x95\x7e\x55\x3c\x3b\x35\x6d\x76\xe6\x4c\x66\x5d\x2b\x5e\x3c\x9b\xf5\x86\x56\xbc\x78\x3a\xeb\x4d\xad\x78\xf1\x7c\xd6\x5b\x5a\xf1\xe2\x09\xad\xb7\xb5\xe2\x6d\x83\x1b\xac\xae\x12\x86\xfc\x39\x8c\x2e\x48\xd5\xd0\x1f\xf7\x6d\x62\xb3\x4f\xb6\x81\x53\xeb\x40\xf5\xe1\x93\x75\x50\x06\xf0\xc9\x3a\x00\x01\x7c\x6a\xda\xd0\xe9\xe5\x77\xd0\xea\x37\x82\xc4\xce\x4e\xc5\xf7\x50\xdf\x43\x03\x0f\x05\x9e\xb4\x40\x3d\x84\xd6\x3c\xb2\x85\xd6\xce\x74\xde\x10\xd0\x7a\x81\x87\x44\xd5\x7c\x84\x3c\x84\xea\x0d\x0f\x9d\x9c\xd6\x8d\x7a\x03\x5a\x8f\xb6\x44\xab\xe6\x8b\x96\xd4\x5b\x23\xf5\x1a\x46\xbd\x3e\xad\x27\x90\xf4\xa5\x7a\x4d\x0f\xa1\x06\xb4\xd7\x34\xea\x15\xf5\xaf\x25\xfa\xd7\x5a\xa8\x7f\x6d\xd1\xbf\xf6\x42\xfd\xeb\x88\xfe\x75\x16\xea\xdf\x9a\xe8\xdf\xda\x42\xfd\x5b\x17\xfd\x5b\x5f\xa8\x7f\xaf\x44\xff\x5e\x2d\xd4\xbf\x7a\xcd\x63\xfd\xab\x9b\x04\x53\xd4\xc1\x7a\xdd\x63\x1d\xac\x9b\x14\x53\xd4\x43\x82\x25\xed\x61\xdd\x24\x99\x42\x12\x6d\x7a\x9c\x44\x4d\x9a\x29\xec\x63\x4b\xf4\xd1\x24\x9a\xc2\x3e\xb6\x45\x1f\x81\x6a\xcc\x4e\xbe\x7b\xe7\xe8\xa4\x87\x50\x9b\x76\xd2\xa4\x9b\x80\x56\xb4\x76\x92\xd0\xdb\x2b\x5a\xd1\x24\x9c\x01\xad\x68\xef\x64\xdd\x43\xa4\xa3\x27\xa7\x75\x93\x72\xfa\xb4\xa2\xb5\x93\x84\x63\x34\x6a\x50\xd1\x24\x9d\xa2\x3e\xb6\x45\x1f\x1b\x76\x5e\xe3\xea\x23\xa1\x39\xda\xc7\x86\x9d\xd9\x38\xfb\xd8\xe6\x7d\x6c\xd8\xb9\x8d\xab\x8f\x2d\xd1\xc7\x86\x9d\xdd\xb8\xfa\xf8\x2a\xef\xa3\x9d\xdf\x38\xfb\xd8\x12\x7d\xb4\x33\x1c\x57\x1f\x09\x63\x64\x7d\xb4\x73\x1c\x57\x1f\xd7\xf3\x3e\xda\x59\x8e\x93\x56\x9b\x1e\xef\xa3\x9d\xe7\xb8\xfa\xd8\x10\xb4\xda\xb0\x33\x1d\x57\x1f\xd7\x44\x1f\x9b\x76\xa6\xe3\xea\x23\x59\xfe\xb4\x8f\xcd\xba\x7d\x41\xee\xee\xba\x89\xb5\x05\xb8\x36\xed\x5c\x67\x77\xd7\xde\x49\x32\xac\x64\x6d\x9d\x9c\x36\xed\x5c\x67\x77\xb7\x60\x41\x76\xa0\xa2\x9d\xeb\xec\xee\x3a\x3a\xd9\xf2\x50\xa3\x09\x15\x4d\xd2\x29\xea\x63\x3d\xef\xa3\x9d\xe9\xb8\xfa\xd8\xca\xfb\x68\x67\x3a\xae\x3e\xc2\x44\xd2\x3e\xda\x99\x8e\xb3\x8f\x35\xd1\x47\x3b\xd3\x71\xf6\xb1\xe9\xb1\x3e\xb6\xec\x4c\xc7\xd5\xc7\x9a\xe8\x63\xcb\xce\x74\x5c\x7d\x6c\x8a\x3e\xb6\xec\x4c\xc7\xd5\x47\xc2\xca\x69\x1f\x5b\x76\xa6\xe3\xea\xe3\x2b\x31\x8f\x2d\x3b\xd3\x71\xf5\x91\x2c\x0f\xd6\x47\x3b\xd3\x71\xd2\x6a\x9b\xd3\x6a\xcb\xce\x74\x5c\x7d\x6c\xe4\x7d\x5c\xb3\x2f\xc8\xbd\x3d\xb7\xa0\xda\xa1\x9d\xb4\x73\x9d\xbd\x3d\x7b\x27\x81\xe6\x80\x07\xb4\xec\x5c\x67\x6f\xaf\x40\x0c\x68\x83\x08\x68\xe7\x3a\x7b\x7b\xf6\x4e\x12\xde\xd1\x80\x61\x6d\xdb\x45\x1d\x57\x1f\xc9\x7c\xd0\x3e\xb6\xed\x4c\xc7\xd5\xc7\xa6\xe8\x63\xdb\xce\x74\x9c\x7d\xac\x89\x3e\xda\x99\x8e\xab\x8f\xf5\xbc\x8f\x76\xa6\xe3\xea\xe3\xba\x98\xc7\xb6\x9d\xe9\xb8\xfa\x08\x34\x47\xfb\x68\x67\x3a\xae\x3e\x82\x48\x4e\xfb\x68\x67\x3a\xce\x3e\x36\x3d\xde\x47\x3b\xd3\x71\xf5\xb1\x25\xfa\xd8\xb1\x33\x1d\x67\x1f\xeb\xbc\x8f\x1d\x3b\xd3\x71\xf5\xb1\x21\xfa\xd8\xb1\x33\x1d\x57\x1f\x5f\x89\x79\xec\x34\xcd\x05\x09\xd7\x28\x19\x4e\x26\x38\x08\xfd\x8c\x39\x95\x81\xbb\x82\x5a\x8e\x1c\x71\xd1\x06\xaa\xc0\x7f\x97\x90\xaf\x6b\x58\x69\x99\x3a\x2b\x53\x27\x65\xfa\xf6\x32\x0d\x56\xa6\x41\xca\x0c\xec\x65\x9a\xac\x4c\x93\x94\x09\x0c\x6d\xae\xa6\xaa\xdc\xb1\x58\xea\x2e\x18\xd0\x16\x32\xa5\x8b\x6c\xba\x7e\xe6\xdb\x0e\xe6\x7e\xe6\x8b\x50\x3e\x7e\xe6\xbb\x95\x63\xd1\xdb\x30\x4b\x4f\xe2\xcc\x1f\x0b\x98\xd1\x96\x9f\xf9\xd4\x83\xe4\x25\x5a\xb7\x40\x87\x3a\x1f\xf0\x30\xe3\xd0\x85\xc7\x09\x94\x37\x3a\xe3\x4c\x79\x25\xd0\x3c\xcd\x41\xfe\xfc\xf3\xcf\xa8\x0d\x17\x6f\xb5\xeb\xf5\x5a\x7e\xdf\x96\x97\xf8\x17\x6a\x36\x0c\xe2\x50\xfb\xb2\x8b\x36\x10\xa8\xdd\x87\xe3\x38\x4e\x2a\x52\x27\x57\x15\xdd\xbb\xab\x73\x50\xf6\x03\xda\x90\x9e\xf4\x85\x23\x50\xaf\x54\x2a\x39\x6e\x4b\xa8\xd3\xa2\xf9\xd2\x5e\x41\x30\xd1\x56\x95\x2a\x6c\xec\xfa\x59\x5e\x95\xe1\x9c\x2b\x67\xe5\xb7\xe5\xb5\xb3\x26\x38\xa6\x9a\xd5\xc1\xcd\xd3\xcd\x1a\x5c\x62\x91\xce\xb6\xca\x74\xf6\x83\xb5\xb3\x1f\xee\xda\xd9\x0f\xd6\xce\x7e\x28\xdb\x59\xb3\xb7\xb2\x13\x55\x45\x74\x9f\x07\x9b\x82\x9c\x7a\x76\xff\x41\x30\x78\xa7\x6e\x0c\xe0\xa3\x68\xf3\xa4\x2a\xcc\x2b\x3f\xc7\x1b\x52\xd1\x79\x5b\xc8\x77\x97\x19\xc6\x3b\xbd\xdf\x16\xba\xf7\x70\x5c\x71\xa1\xa2\xeb\x7f\x81\x09\x5c\x61\xec\x9e\xda\xef\x2e\x76\xd9\x2d\x59\xa5\xb2\xab\x5c\x4b\xec\x2e\x7c\x1f\x41\x69\x61\x57\xb9\x8b\xd8\x75\x5e\x42\xcc\xbf\x71\x38\x62\xb9\x81\x61\x0e\x59\x04\x9e\x00\xc6\x54\x2d\x5a\x22\x59\x39\xb8\x21\x14\xb2\x7a\x50\xb0\x82\x53\xa6\xb8\xa1\x83\xc7\xfc\xfa\xdf\xd8\x78\xe1\xf3\xb9\x41\x0b\x2e\xef\x4a\x1e\x41\x83\x7c\xb5\x7b\x38\xd0\x5f\x02\x49\x4d\xf5\x75\xed\xa1\xd4\x43\xea\x15\x1a\xf0\x49\xb4\x81\x7c\xb4\x84\x2a\x95\x3e\xfa\x89\x6e\x8e\x95\xff\x4b\x7e\x06\x55\xc2\x06\xae\xd1\x12\xca\xa4\xf6\x44\xc0\xe2\x88\x4c\x53\x4a\x57\x2a\x8d\x53\xde\x6c\xa0\x65\x94\x56\xa1\x5a\x5f\x33\x7a\x13\x58\x69\xe7\xff\x72\x58\xc1\x76\x5c\x19\xa0\x9f\xd0\xff\x7d\x1c\xac\xb4\x43\xd0\x5c\xac\xfa\xe8\x77\x34\x40\xbf\x13\xc4\x1e\x1e\x19\x4d\x00\x9c\x8b\x0c\x41\xa4\xd2\x47\x5f\x1f\x78\x70\xe4\xdb\xea\x63\x57\x9a\xf4\xb9\x89\xf7\xcb\x04\x59\xe3\x7e\x62\x9a\x8b\x22\xac\x06\x13\x8c\xc3\x59\xcc\x51\xfa\xae\x61\xcd\xd8\xba\x14\x46\x2e\xfb\x5b\x6d\x8b\xef\x57\x71\x79\xd3\xe1\x2b\x8f\x2f\xa6\x5c\xe6\xab\x19\xf9\xf7\xb7\xda\x56\x93\x01\xe7\x24\xcc\xc9\x55\xff\x50\x53\x70\xa7\xd0\x0e\xf3\x27\x4e\xf6\xf2\x7b\x88\x89\xa3\x4e\x65\x62\x22\x76\x27\xfe\x80\x4c\x86\x92\x19\xde\x9c\x0f\x56\xcc\x9c\x93\x3c\x9b\x3d\x9d\x97\xc2\x0c\xec\x2c\xb2\xb5\xc3\x02\xaa\xf1\xb7\x76\x31\xfb\xe7\xc7\x64\xa3\x8b\xed\x25\x8b\x33\x84\x76\x30\x0e\xfa\xfe\xe0\x33\x8b\xab\x39\x89\x03\x58\x52\x84\x66\xc4\x7c\xc3\xcb\xde\xce\x5b\x22\x02\x59\xc4\x03\x30\x73\x82\xaf\x8a\xb5\x1c\x58\xb8\xd0\x56\xf6\x09\x00\x66\xcc\x23\x56\x7d\x6f\xe7\xed\xca\x76\x44\x63\x95\x83\x01\xd5\xce\x5b\x8b\xc1\xcf\xd4\x61\x2e\xc3\xcc\x0c\x0b\x4c\x66\xdc\xa2\x29\x0b\x41\xc5\x05\x12\xfa\x68\xbb\x67\x96\x42\x79\xd0\x42\x72\x28\x0f\xb5\x3c\x8f\x51\xfe\x1e\xdf\xa4\x59\x82\xfd\xc9\x66\x14\xb0\xde\x59\xac\x23\x63\x66\x16\x2b\xc0\x79\xac\x01\x9b\x90\x7d\x84\x27\x18\x82\x8c\x83\x31\x26\x9d\x27\x16\x2b\x13\xfc\xe7\x23\x7c\x9d\xd1\xd7\x76\xf1\x1d\x5f\xbe\x65\x31\x53\xa1\xf5\x95\x74\x1c\x0e\x70\x85\xa3\x20\x6e\xea\x05\x2e\x36\xfb\x49\x65\xd6\xb6\xf0\x3f\x65\xd6\xee\x31\xba\x60\x38\x3c\x0a\xd3\x85\xc7\xf6\x9b\xd1\xcd\x49\xde\xa1\x3e\x1e\xc4\x13\xe6\x75\x4f\x08\x22\x8c\x67\x69\x39\x92\x11\x5d\x2c\x25\x8e\x17\xf4\xa6\x32\xb7\x0b\x9a\x6f\x84\x79\x60\x83\xf3\xde\x65\x1e\xac\xe5\xf2\xb5\x6a\x34\x2e\x87\x63\xa6\xcd\xe7\x9f\x21\xb3\xeb\xa5\xf5\x48\x23\x4a\xa3\x0d\x14\x5e\xb2\x29\xac\x39\x56\x62\x7c\x89\xd1\xde\x2f\x70\xfe\x4c\x67\xfd\x14\xff\xf7\x0c\x47\x59\xc1\xe9\x19\xf0\x15\x0e\x0c\x73\x0d\xa0\x75\x7c\xb4\x09\x31\x27\x81\xfc\x31\x2a\xc7\x74\xa0\xa1\x60\x45\x00\xf1\x90\xda\x95\xd5\x55\xc4\x66\x24\x7f\x67\xcd\x96\x5b\x1c\x35\x86\x9a\x9e\xe7\x16\x82\x10\x09\x46\x34\x0a\xe7\x68\x83\x5e\x18\x16\x5c\x9c\xd8\x79\x5b\x64\x70\xcd\x37\x9d\x45\xe2\xd4\x75\x9a\x4f\xc2\xc7\xf7\x2e\x7c\xa0\xff\x9c\x26\x38\xc5\xc9\x25\xa6\x62\x48\x3c\x23\xa2\xbc\x24\x7e\x80\x1a\xc3\xcf\xc2\xfe\x98\x71\x60\xb4\x95\xa0\xb7\x49\xe8\x47\xe8\x1d\x75\xcf\x44\xc3\x70\x8c\x71\x34\x58\x19\x00\x08\x1e\xf2\x19\x22\x60\x6b\xf4\x73\x72\x04\x45\xfe\xcb\x8f\xd0\x6e\x32\xeb\xdf\xa0\x3f\x46\xe4\x3f\x2b\x57\xb8\xff\x9f\x17\x13\x3f\x1c\xaf\x0c\xe2\x89\x5d\xde\x39\x39\xe2\xcd\x15\x88\x3d\x72\xa1\xd2\xd2\xcf\xb3\x3c\xdf\x4b\x34\x20\x07\x05\x9a\x32\xe9\xf9\xb3\x67\x64\xd0\x81\xf4\x44\x3a\x24\x50\x12\x51\xa5\x50\x15\x66\x9d\xfe\xfa\x13\xad\xae\xc6\x97\x38\x19\x8e\xe3\x2b\x52\x07\x36\xbe\x3a\x4f\x07\x4a\xea\xd5\x3b\xd5\x9f\x48\xd9\xd7\xe2\x73\x43\xfe\xbc\xae\x7f\x6d\xb2\x3d\x8c\x35\x06\x78\x02\x2a\x04\xac\x68\x77\x75\x15\xf1\x66\x51\xbf\x4e\x8a\x00\xca\xd0\x74\xed\xb5\xa8\xd2\xc8\xab\x88\x32\xcf\x00\x01\x5a\x88\x96\x6a\xaa\xa5\x58\xb1\x67\x80\x0a\x2b\x77\x0b\xff\x12\x82\x94\x4b\x2c\x2d\xf5\x9b\xd2\x77\xf8\x87\x97\xa1\x45\x96\x96\xfa\x8d\xd7\xcf\xdd\x05\x96\x96\xfa\x75\xf6\x9d\xfc\x0b\x1d\xe7\x8d\xc2\xc3\xd2\x06\xf4\xfc\xcd\x1b\x96\x0f\x52\x7e\xdd\xa0\x2a\x40\xe5\x2d\x43\xc8\x6c\x49\x54\xab\x5d\xd7\xea\x4c\xeb\x97\x17\x65\x5c\x8f\x14\x22\x2f\x6f\x75\xea\x60\xcb\xa3\x32\xa0\xff\x55\x69\x84\xbd\xa4\x37\x48\x9c\x94\xf2\x97\x55\x46\x30\xd2\x14\xac\xae\x22\xb2\x4b\xc0\x4d\x0c\x0a\xa5\x85\x44\x17\x8f\xb1\xd2\x5e\xa4\x08\xe0\xa5\x28\x8e\xc6\x37\x74\x39\x6e\xfd\x7a\x70\xb4\x85\xfe\x40\x6f\xd0\x3a\xc0\xe4\x0d\xd6\x6d\x58\xd0\xbb\x38\xb5\xb3\xec\x1b\xef\x2f\x5f\x4b\xca\x59\x40\xac\xab\x15\xc7\xeb\xbf\x50\xe6\x5c\x54\xe4\x34\x8a\x6b\x32\x8c\xd9\x2a\xe3\x89\xa2\x59\x3e\x60\x06\xea\x45\x12\x0f\x72\x4b\x3d\x20\x34\xd8\x1b\x29\x96\x81\xd0\x1d\xe4\x20\x34\x5f\x16\xe2\xd2\x01\x21\x6c\x93\xe6\x29\x2b\x7a\xa6\x8b\x46\xec\xb3\x84\xab\xaa\x7a\x5e\x44\x28\x42\x0e\xc1\x08\xdd\x4d\x38\x42\x0b\x0a\x48\x48\x95\xe7\xcc\x43\x57\x4e\xf7\xf2\xd9\x4b\x2c\x8d\xd7\x9a\x64\x25\x8a\x4b\x02\x96\x53\xc4\x92\x0a\x2f\x20\x69\xb5\x9e\x24\xad\xef\x5d\xd2\x72\xc8\x57\x0e\xf5\xce\xc9\x51\xb1\x9c\xb3\xa8\x7a\xc7\xc2\xd2\x75\x5e\xfe\xc4\xc4\xff\x79\x4c\xbc\xf0\x34\xfb\x08\x2c\x7b\x2f\x1a\x24\x18\x22\x37\x30\xe0\x1a\x48\x26\x87\xe4\x93\xbb\x8c\xa8\x31\x8d\xe3\x0b\xdc\x96\x7f\x45\xb5\xbf\xd5\xe6\x50\x76\x57\x98\x7f\xde\x26\x65\x16\xd8\x05\xda\x4f\xbb\xc0\xdf\x62\x17\xd8\x1e\xe3\x41\x96\xc4\x51\x38\x40\xbd\x38\xc0\xfd\x38\x9e\xaf\xf0\xdf\xee\x15\x29\xfc\xe9\xd7\x85\x76\x84\xed\x9e\xaa\xf0\x27\xcf\x0f\xb5\x03\xc8\xac\x5d\x65\x20\x6a\xbd\x22\x2d\x26\xc1\x47\x59\x48\x8f\x85\x5f\x80\xef\x84\x1f\x4f\xbd\xd4\x9b\xaf\x37\x83\x32\x0b\xac\xe3\xbf\x77\x72\xe4\xff\x39\xeb\xf8\x60\x96\x4d\x67\x59\xf9\x4b\xbb\x83\xc2\x4b\xbb\x83\xc5\x2f\xed\x74\xa9\xee\x40\xbb\xc4\x3b\xf8\x6b\xaf\x83\x1e\x5d\xaa\x33\x75\xf3\xe2\xcd\xc3\x4a\x76\x05\x0d\x7d\x2f\xd2\xdd\x3f\xe9\x84\x7d\xa0\x5d\x6b\xba\x84\xa8\x83\x12\x97\x16\x07\x0b\x5e\x5a\x3c\x65\xb1\xfb\x7b\x30\xdf\xcd\x8f\xc7\x7b\xe8\xb7\x95\x57\x8d\x26\x37\x10\x47\x69\x46\x96\xf7\xc5\x8d\xc1\x7d\xa7\x7e\xb0\xb2\x19\xa5\xe1\x6f\xa4\xb4\xc8\x05\x37\xf5\x03\x99\xfd\x05\x7e\xe6\x4b\x17\xa1\xae\x0b\xd0\x54\xbd\x01\x25\xb5\x8e\x73\x83\x5f\xc5\x00\xf8\xb5\x5a\xb4\xaf\xa7\x15\xe9\xbb\x12\x8a\x00\x51\xcc\xa2\x4c\xf4\x4c\x0b\x66\x05\xb6\x78\x87\xf4\x9b\x01\x8c\xbe\x58\x56\x31\xfb\x97\xf6\xdd\x68\x8d\xc6\xb4\x19\xfb\x29\x8d\x9c\x85\xa6\x71\x1a\xaa\x1e\xf8\xa4\x51\xf2\x9d\xd4\x3f\x8c\x79\x67\x45\x0b\x4b\x1a\x46\xcb\xa8\xae\x35\x72\xe8\x07\xf9\x33\x0c\x94\xc8\x36\xa2\xbe\xa6\xac\x44\x6e\x2b\x0f\xa9\xa5\x36\x92\x87\xd4\x92\x4b\xdb\x82\x6b\xa9\x96\xd9\x4b\x1a\x20\x6e\x87\xc8\x2d\x70\x67\x91\x85\x38\x74\x8a\x78\x87\x33\x29\xe1\xbc\x32\x55\x54\x81\x2f\x46\xb3\x78\xe6\xa4\x3e\x57\x54\x34\x97\xc9\xf1\x97\xf5\x3d\xbf\x08\x92\x50\x60\xfb\x8a\xe1\x21\xa1\x81\x71\xf4\xf6\xf9\xb3\x5b\x2b\xdf\xe4\xcb\xe5\xfa\x55\xa3\xb9\x10\xef\xbc\x5f\x62\xb2\x27\xde\xf9\xad\x78\xe7\xde\xf1\x01\x82\x90\xb8\xe5\x58\xe7\x1e\x0b\xa0\x7b\x5f\xd6\xf9\x97\xb3\xc3\x7c\x49\xcc\xe1\x87\x16\x56\x45\xd3\x01\xd8\x23\xd0\xad\x24\x7e\x14\xc4\x93\x8a\xc1\x01\xab\xd5\x15\x4d\x52\x2a\x86\xc3\x52\x87\x9d\x1a\x5c\xae\xd1\x3a\xf3\x08\xb8\x27\x46\xa5\x33\x2a\x4e\x9c\x0b\x31\xaa\xbf\x77\xe6\x85\xff\x51\x8c\x6a\x75\x6f\xbb\x87\x5e\xad\xbd\x5a\x5b\xae\x23\x46\x1b\x68\x1f\x67\xa3\x38\x40\x0d\x17\xb7\x82\xd0\xde\x77\xe5\x56\x9b\x41\x40\xfd\x07\xd5\x05\x51\x82\x0b\xf0\xd5\x4b\x6a\xd3\x3f\xbe\x68\x95\x06\xfe\x0f\x4e\x62\xc8\x1d\x96\x8d\x30\x4a\x70\x2a\xf1\x45\xa5\x23\xa4\x1c\xeb\x31\x79\x36\xf0\xbe\x13\x2f\x60\x0b\xf1\x0b\xc3\x41\x5d\x8d\xce\xe6\x01\x34\x85\x67\x5f\xd8\x71\x84\xd1\x24\x4e\x30\x15\x1e\x97\x97\xa1\x6f\xae\x51\xe4\xeb\x7d\x79\xb9\xe4\x02\x87\xf9\x5c\x64\x81\xaf\xdd\x2f\xca\xf9\xd3\x02\xff\x66\xa7\x38\x14\xc5\xf1\xb4\x9c\x18\xf2\x91\x93\xa3\x73\x65\x0b\x62\x77\xaf\x89\xbc\x48\x11\xcd\x89\xa6\x16\x22\xba\xfb\x85\x9b\x7d\x22\xba\x6f\x45\x74\xff\x47\x62\x7e\xc5\x24\x27\xf1\xc0\xbf\x50\xf8\x2d\x7d\x70\x96\xcf\xb7\x86\x00\x5c\xa9\x14\x8b\xc0\x55\xf4\xf5\xab\xfe\xea\x4e\x5b\x8c\xbd\xc7\xf3\xe3\x0a\xac\xae\xa2\x4f\x04\xbe\x5a\x2f\x34\x22\x05\x80\x66\x41\x94\xb9\x1a\x85\x63\x8c\x2a\x3f\x54\x72\x5f\xeb\x3c\x06\x37\x78\x1c\x1a\x31\xb7\x85\x09\xa7\xa1\xc8\x0c\xc5\x96\x84\x54\x15\xa5\xee\xd8\x0d\xf1\x78\xcb\xec\x5e\x12\x05\x2d\xc4\x4b\xfe\xde\x8e\x5b\x96\x1c\x5d\x34\x49\xd6\xe3\xf2\x95\x3c\x13\x12\xb4\xf6\xd7\xe7\xf9\x78\xdc\x24\xe1\xe5\x62\x62\x1b\x31\xaf\xc5\x97\xe3\xdd\xcd\x7a\x1e\xeb\x99\x3c\x49\x1f\xcd\x44\xe0\x36\x07\xd1\x43\x3f\x4d\xc9\x42\x5e\x26\xa8\x05\xe8\x3d\xbe\x41\x5b\x38\x09\x2f\x69\x4e\xc8\x1d\x3e\x28\x8d\xe2\x98\xd3\x87\x6f\xdf\x6f\xed\x34\xf2\xd6\xc4\x73\xc9\xc4\xe3\xbd\x38\x1a\x86\x17\x33\x96\x89\x32\x86\xac\x90\x69\x51\x7e\xc9\x24\x9e\xe2\x24\xbb\x41\x7f\xd2\x63\x31\x78\x93\x02\xf3\x3d\x19\xd1\x1c\xc7\x29\x79\x08\x23\x96\x2e\x20\x8b\x85\x2f\xcd\x0a\xda\xc2\x43\x7f\x36\xce\xba\xa8\x85\x2a\xf5\xc6\x3a\x24\x52\xae\xba\xe0\x3b\x12\x9a\xe3\x84\x27\x32\xcf\xc1\x91\xf1\x9f\x87\x66\x98\xb1\xe4\x99\x29\x80\xca\x0f\xf5\xd2\x87\x2c\x46\x53\x9c\x0c\xe3\x64\x22\x01\x57\x20\x4b\xe9\x1f\x07\xc3\x8b\xae\x6b\x94\x11\xbd\xf8\x3a\x86\x98\x33\xf5\xc6\xfa\x6a\xb3\xa1\x85\xe0\xa6\x5d\xa1\xa8\x6b\x9f\x72\x84\x94\xc6\x6f\xab\x45\x09\x49\x8b\x12\xc8\x93\x59\x09\x72\xd2\xe2\xeb\x6d\x7e\x16\xd1\x03\xe0\x73\xb7\xa4\xab\x72\xc6\x50\x32\x7e\x03\x1b\xdd\x70\x7f\xb3\x61\x9c\xc0\x29\x26\x6f\xf4\x01\x12\x83\x7e\x0e\x86\x46\xd2\x78\x4a\xed\xfc\xf4\xa8\x98\x61\x2d\x52\xf1\xcf\x7c\xb2\xd6\x69\xfa\xc9\x7b\x83\xf1\xd4\x69\xac\xd5\x6a\x3a\xe0\x82\xec\xf5\x83\xe1\x85\xdd\xf0\x82\x4c\xc4\x86\xf8\xc9\x09\x8f\x14\x77\x05\xc3\x30\xd7\x3b\x5c\x57\x50\x0f\xba\xb2\x2c\xe8\x2e\xf9\x66\xa7\x0c\x36\x50\x0b\x7f\x58\x29\x59\x39\xf5\xc7\x19\xda\x84\xff\x2c\x9e\x88\x96\xbb\xd1\x48\x7e\xed\xf7\x21\x3b\x9a\x48\x3d\x18\xae\xb0\xa8\x24\x15\xde\x19\x0f\xf0\x73\x4e\x2a\x2b\x2e\xcf\xab\x56\x73\xa1\xdc\x2e\xea\xd4\x5b\x0d\x08\xc3\xcc\x91\x14\x96\x79\xd9\x83\xef\x3e\xa3\x55\x42\x3e\x94\x07\x79\x62\x76\xec\x66\x89\xee\x04\xe5\x20\x9b\xd2\xc1\xa6\xe9\xe6\x0d\x7d\x8e\x2d\xd4\x13\xc8\xc9\x7b\x51\x80\xaf\x6d\x35\x4e\x6b\xd7\x4c\x01\x64\x89\xd6\x39\x27\x44\x97\x40\x45\x08\xcb\xe2\x8d\x33\x7f\x7d\x8e\x0d\xaf\x94\xbf\x71\x56\xe2\x5b\xde\x06\x99\x95\x15\xf6\x64\x33\xc2\xc8\xb7\x16\x5a\x34\x7f\x31\xc7\xc8\x42\xfd\xc8\x04\x75\xad\x83\x3c\x2e\xd2\x1b\x8e\x8f\xd5\xb8\x40\x74\x92\xe5\x39\xe6\xc9\xb2\x81\x02\xf3\x34\xbe\x79\xaf\xf5\x39\x43\x2c\xa3\x77\x9e\x1a\xd8\xfc\x3e\x3f\x1b\x03\xc0\x57\x86\xd8\x3a\xba\x66\x71\x91\xc5\x28\x7f\xc5\x3a\xee\x40\x64\x4f\x8c\xb1\x1d\x74\x28\x47\xb3\x63\x60\x2d\x58\x28\xb6\x1c\x75\x6a\xcb\x21\x4d\x9f\xd3\x98\x03\x01\x3f\x57\x9a\x80\xd1\x13\x23\x2d\x7f\xb4\x8d\x75\x99\xf1\x46\xf3\x42\x41\xd9\x3a\xcb\x47\x5f\x7e\x67\x0f\x58\x25\x35\xf1\xdb\xc1\x91\xda\x1d\x70\x9d\xb2\x78\x5c\x1b\xe3\xf6\x07\xb5\x81\xf9\x83\xdb\xc0\x48\xb3\xf9\x1a\xfd\x51\x30\x7a\xe4\x2f\xaf\x71\xfa\x07\x98\xc3\x18\x1d\x39\xfd\x43\x37\x8b\xe1\x7f\xb7\xe6\x6b\x3d\xe0\x14\xf9\x93\x98\x03\xd3\x4d\x43\xa3\xb6\x29\xd1\x98\xc4\x69\xed\x6c\x69\xa9\xd8\xa4\x48\x02\x2e\x1d\x7d\x39\xdf\xb0\x04\x31\x63\x7b\x59\x5e\xaf\xc8\x80\x52\x3e\x46\xdc\x6b\x43\x2f\x13\x6c\xa6\x70\x23\x5f\x70\x13\x7f\x28\xd1\x32\x4c\x6d\xe9\xf6\xe7\x47\xaf\xb1\x88\x06\x0f\x10\xc4\x86\x8a\x08\x42\x32\xa4\x42\xa1\x4b\x4c\x58\xac\x9a\x87\x1c\xb2\xe9\x7d\xc0\x14\xca\xa6\x79\x90\x1d\x71\x94\x74\x09\x30\x1e\xd2\x05\x55\x36\xec\xaa\x58\x4c\x0a\xcd\x11\x9e\x6e\x8b\x6c\xd1\x28\x34\x7b\xa0\x1e\x3d\x85\x2e\xcf\x09\x7b\x7b\xe6\xad\xfd\xbd\x7d\xe8\x17\x48\xeb\x3e\x3f\x39\xfa\xe3\xea\x8e\x9c\xe9\xb5\x5d\x59\xaf\xff\x09\xda\xa5\x63\x30\xce\xec\x71\xe3\x5d\xaa\x44\x92\x5f\x16\xe9\x91\x04\x1e\x47\x78\x96\xfa\xfd\x31\x66\xe1\xc0\x24\x74\x8e\x91\x9c\x6a\x91\x42\xd1\xdf\xbc\x43\x6a\x86\x35\x69\x5b\x38\x82\x6c\xca\x88\x19\xda\x32\x1b\x63\x53\x93\x24\xca\x43\x8c\x95\x30\x45\x3e\xa2\x09\x98\xd1\x25\x4e\x52\x88\x5a\x36\xf2\x33\x14\xe1\x8b\x31\x1e\x64\x38\x20\x6c\x78\xc0\x52\xaa\x66\x4c\xe1\x93\xc5\x68\x1c\x66\xd9\x18\x2f\xd3\x00\x97\x2b\x2a\x50\x9c\x24\x71\x82\x82\x18\xa7\xd1\x8b\x0c\xf9\xc3\x21\x1e\xd0\xba\x14\xa9\x17\x29\x4a\xf1\x60\x96\x84\xd9\x8d\x27\x2a\xf6\x67\x19\x0a\x33\xa8\xc4\x6b\x84\x59\x2a\x02\x2a\x84\xe3\x30\x63\x4e\xdc\x34\xaf\x6b\x48\xf8\xf3\x04\x47\x74\x3f\x48\x6d\x8a\x32\x3a\x20\x1f\x68\xe7\x84\xba\x4c\x7b\x2b\xcf\xdf\x5d\x93\xb6\x15\x1f\x52\xde\xcb\x66\xd0\xce\x03\x46\x6e\xbd\x0d\xa7\x86\xcb\xa2\xd3\x42\xc8\x4e\x68\x64\xf7\xc2\xce\x73\xda\x6f\xa2\x5d\xf2\xcb\x92\x38\xee\xfd\x69\xed\xcc\x43\x95\xf7\xa7\xcd\x33\x16\x2c\x00\x7d\x25\x8f\xec\x2a\xa0\xde\xa9\x5a\x92\xc8\xbd\x3f\xad\xd3\x4a\x35\xb5\x52\xb3\xb8\x52\x83\x56\xaa\xab\x95\x6a\xc5\x95\x9a\xb4\x52\x43\xad\x54\x17\x95\xd4\x3a\xb6\xec\x48\xc6\x90\x71\x2f\x43\xd7\xa0\xf5\xc4\xa0\xf5\xec\x83\x66\xe2\x23\x0d\x17\xeb\x13\xbd\x30\x19\x0e\x79\xda\x41\x8a\x34\x0d\xb2\x5a\xab\x91\x2f\xb6\xfe\x9a\x13\xd1\x54\x21\xd7\xad\x90\x1b\xa5\x20\xd7\x9c\x03\x2f\xc1\xd0\x20\x37\x4b\x41\xae\xbb\x66\xc7\x93\x60\x68\x90\x6b\x1a\xe4\xf9\x13\xd9\xf3\x93\xe4\x06\xf5\xf5\x74\xaa\x74\xaa\xfa\x34\xfe\x85\xa9\xc9\xc8\xe8\xe4\x13\xd6\x93\xde\xa4\x19\x9e\xa0\x61\x3c\x4b\x50\x16\x4e\xf4\xb9\x5f\x30\x28\x6f\x84\xaf\xb3\x63\xb2\xfa\xdc\xf1\x63\x2d\x11\x6f\xf7\xe3\x20\x1c\xde\x50\x4e\x48\xe9\xb0\x04\x16\xeb\x6e\x2c\x7a\xa7\xd4\x71\xe0\xb7\x53\x48\x79\x09\xd1\x56\x8c\x4c\x71\xb6\x24\xb9\xbf\xa0\x14\x67\xb3\xa9\xfa\xa1\xc0\xa3\x63\xfe\x61\x7f\xef\x17\xea\xda\x51\x74\xc2\xdf\xfb\xe5\xbc\x86\x36\xd0\xde\x2f\x66\x6a\x34\xa9\x48\x9d\x16\xa9\x5b\xa3\x19\xcb\x4b\x1a\xa6\x32\x9d\xf5\x2f\x31\x11\x15\x5c\x47\xff\x1a\x0d\x7e\x0c\x6d\xd3\xe8\xc7\x5f\x11\x7d\x72\x45\x3f\x96\x8b\xb3\x30\xc7\xa2\x7c\x7e\x1d\x6a\x0f\x73\x2c\x9a\x6d\x88\x66\xeb\x4a\xb3\xf5\x79\xcd\xd6\xd5\x66\xeb\x8b\x35\x0b\x61\x74\xc2\x1a\x5f\x82\x04\x48\xd8\x50\x57\xa0\xab\x6a\x13\xaa\x36\xf8\x62\x86\xaa\x35\x75\x99\x3a\x66\x84\x91\x75\x11\x6b\x45\x40\xad\x35\x7a\xae\xd7\x63\xfb\xd3\x8f\x75\xfa\xb1\x6e\xfd\xd8\xa0\x1f\x1b\xd6\x8f\x4d\xfa\xb1\x69\xfd\xd8\x2a\x6a\xb3\x5d\xd4\x66\xa7\xa8\xcd\x35\xd1\x66\x81\x46\xaa\x14\xe7\x41\x8b\x73\x1f\x54\x8e\x03\x21\x53\x49\x21\xfb\x11\x3d\x48\x72\x57\xa7\xf2\x5a\x92\x3e\x4a\x71\x66\xb5\x88\xbd\x77\xee\xed\x1d\x06\x37\xf7\x32\x03\x2e\xa4\x96\x3e\xa6\xa1\x86\x7e\x03\x22\x44\x95\xdf\xc8\xdc\xf3\x55\x02\xcf\x62\xef\x7d\xad\x57\xac\xd3\x8a\x0d\x56\x71\x4d\xab\xd8\x76\x56\x6c\xd0\x8a\x2d\x56\xb1\xae\x55\x5c\x73\x56\x6c\xd2\x8a\x9d\x33\x81\x9a\x52\xb1\x9e\x57\xbc\xd7\x2e\x56\x14\xa5\x9e\x22\xc2\x63\xc7\x1f\xb3\x94\xec\x2c\x78\x3c\x3c\xde\x25\x7a\x3c\x87\xc3\x18\x9c\x80\x63\x8b\x1f\x6f\xc5\xd7\xea\x84\x87\xa4\x1c\xbd\xc2\x9b\xee\xb8\xd8\x8b\x4e\xa6\x7e\x61\xc7\x93\xdf\xdc\xe6\x1f\xc3\x4b\xfa\xa5\xd3\x5a\x6d\x36\x74\xb5\x9c\x58\x26\x82\x60\x2b\x25\x5d\xa1\x94\xf5\xa1\x7c\x91\x44\x50\xcd\xe0\xe7\xd8\xbf\xc4\x28\x1e\x07\x4e\x56\xbb\x80\xfc\xd0\x3b\xa7\x93\xdb\xd3\xe3\x1d\x2a\x2d\xf6\xfc\xf1\x60\x36\x26\x2b\x2c\xc2\x57\xce\x66\x7b\x2c\x11\x4c\x8f\x26\x82\xa9\x5d\xb7\x82\x26\xfc\x1f\x5a\xe2\x12\x9a\x9e\xaf\xa5\xc7\xf2\xc2\xf4\x68\x5e\x98\xda\x35\xab\xd1\x84\x98\xf2\x3d\x2e\xa0\xd6\xaa\xe8\x0d\xaa\xf4\xce\xa5\xe7\xff\x40\x75\xd4\x45\xb5\xaa\x09\xb1\xc1\x20\x36\x28\x44\x06\xb0\xc5\x20\xd6\x35\x88\xf5\x12\x10\x9b\x0c\x62\xd3\xe8\x56\x85\xb6\xa3\x40\x6c\x94\x80\xd8\x62\x10\x5b\xd6\x5e\x37\x35\x88\xcd\x12\x10\xdb\x0c\x62\xdb\xda\xeb\x96\x06\xb1\x55\x02\x62\x87\x41\xec\x58\x7b\xdd\xd6\x20\xb6\x4b\x40\x5c\x63\x10\xd7\xac\xbd\xee\x68\x10\x3b\x73\x21\xe6\x62\x3f\x05\xaa\x54\x5f\xd3\xab\xeb\xde\x31\x82\xa6\xc9\xee\x73\xb1\x7c\x8f\x45\x44\x4a\x5d\x5c\x03\xaf\x0e\x49\xd7\x7a\x96\x24\x1c\x3c\x5d\x7e\x32\x1b\x64\x68\x14\x5e\x8c\x90\x1f\x05\x68\x1c\x5f\x21\x3f\xb9\x98\x41\xf8\x17\x70\x73\xfe\xef\x99\x9f\x18\x89\x7b\xa0\x01\x1f\x6d\x90\x56\xb8\x14\x67\x51\x1e\x5c\xf4\x69\x11\xba\x4b\x58\x8f\x4f\xbc\xcf\x0a\x06\x09\x4e\x67\xe3\x0c\xc5\xc3\xa2\xe6\x47\x74\x0b\xa8\x5c\xf8\xe8\x25\xba\xf0\xa9\xeb\x4a\x7d\xad\x8a\x96\x10\x7d\xd5\x67\xaf\xda\xf0\xaa\x0f\xaf\x6c\x48\x8e\x29\x20\xa9\x2b\xf4\x48\xf8\x12\x5d\x5c\xc3\x0c\x57\x81\x20\x78\x01\x21\x76\x4a\x05\x6c\x89\x60\x48\x87\x7e\x3b\x38\x42\x10\x4e\x52\xfe\xf8\x8e\x72\xb8\x8b\x11\xfa\x1d\x5d\x8c\xcb\x32\x39\xbb\x52\xe5\x37\xc6\xe2\xde\x51\x16\x57\xa9\xbc\xcb\xb7\x6f\xb2\x93\xbd\x93\xc4\x82\x2a\x2b\xd0\x51\x0b\x74\xf2\x02\x3a\x3d\xff\xc6\xb8\xe1\x3b\xca\x0d\x2b\xb4\x99\x7c\xbf\x7d\xc7\xf9\x1f\xec\xb7\x4b\x88\xb4\x66\xc2\x68\x30\x18\x0d\x0e\xa3\xae\x22\x50\x37\x30\xac\xa9\x05\x6a\x45\x18\x36\x19\xf4\x26\x87\xde\x50\x31\x6c\x68\x18\xd6\x2d\x18\xb6\x18\x8c\x16\x87\xd1\x54\x11\x68\x1a\x18\x36\xd4\x02\x8d\x22\x0c\xdb\x0c\x7a\x9b\x43\x6f\xa9\x18\xb6\x34\x0c\x9b\x16\x0c\x3b\x0c\x46\x87\xc3\x68\xab\x08\xb4\x0d\x0c\x5b\x6a\x81\x56\x11\x86\x6b\x0c\xfa\xda\x99\x42\x22\x02\xc3\x8e\x86\x61\x5b\xc1\xb0\x54\xe2\x8f\x94\x27\x9d\x10\xba\xd6\x12\x69\x27\xe6\x5d\x77\x51\x58\x19\xbe\xce\xe4\x7b\x27\x59\x93\xca\x43\x29\x28\x69\x1c\xe8\x6d\x91\x79\x7f\x35\x1d\xfb\x04\x9b\xeb\x0c\x39\xc1\xb1\x38\x33\x95\xbc\x65\x1b\x44\x71\x71\x55\xa4\xd4\x55\x93\x77\xc8\x25\xab\x45\x77\x50\x72\xc1\xd2\xc6\xc8\x9e\x7a\x37\xd2\x6d\xb7\xbc\xfc\x52\xa4\xdb\xee\x78\xec\xae\xa4\xdb\xa9\xdf\x9e\x79\x6b\x7f\xef\x48\x84\x4f\xf7\x55\x4f\xf7\x55\x8f\x76\x5f\xa5\x2d\xf1\xfc\x3e\x47\xbf\xc9\xf9\x7b\xdd\xe1\x3c\x54\x56\xb8\xf7\xe2\x68\xfe\x5e\x3d\x9a\xbf\xbf\xeb\xd1\xfc\xbd\x7a\x34\x7f\x5f\x74\x34\x9f\xa7\x60\x7e\xba\xa9\x7a\xba\xa9\x7a\xba\xa9\x52\xbe\x3c\xdd\x54\x3d\xdd\x54\x3d\xdd\x54\xe5\xcd\x3e\xdd\x54\xe9\x1f\x9f\x6e\xaa\x1c\x8f\x4f\x37\x55\x4f\x37\x55\x4f\x37\x55\xf0\xf7\x74\x53\x55\x4e\x89\xfb\x74\x53\xf5\x74\x53\xf5\x74\x53\x25\xfd\x3d\xdd\x54\x3d\xdd\x54\x3d\xdd\x54\x3d\xdd\x54\xfd\x4f\xbe\xa9\x7a\xb0\x3b\xaa\xbb\xdd\x4e\x95\xb9\x97\x2a\x71\x23\xf5\x58\x77\x51\x7f\xef\x7c\x28\x4f\x77\x51\xff\xfc\xbb\x28\xf9\xee\xa8\xd7\x9a\xeb\xe8\x24\xdf\x1c\xf5\x5a\xd2\xb5\x11\x3c\x3c\xfe\x9d\x11\xf5\xd2\x14\xb7\x46\xf6\xa0\x02\xdc\x43\xbb\xe8\x5a\x09\xdc\x38\x65\x8f\x62\x29\x66\xba\xa9\xaf\x88\xc2\x0c\xa5\xfd\xf8\xda\x84\x73\x2c\xd0\x39\x96\xaf\xe9\xf8\x9f\x4d\x9a\x6c\xb4\x3b\xee\x43\x39\x3b\x74\x87\xf3\xd5\xb8\xef\xf1\x8d\x4d\x8f\xab\xb6\xe8\x71\xff\xf1\xb9\x0d\xb3\x41\x21\x43\xc0\xa3\x4a\x84\xe8\x5f\xf2\x38\x39\x54\x87\xac\x12\xd9\xda\xf8\xd8\x9f\x2a\x80\xcc\x48\x68\xca\x67\x23\x28\x9a\xed\xec\x4f\x7a\x51\xf9\x03\x2d\xd1\xf1\x59\xe2\x8d\x56\xd1\xbf\xa0\x57\x8e\x58\x0a\x57\xfe\xd4\x8e\x33\xec\x1b\xa6\x86\x40\x9a\x80\x63\xbb\x63\x3c\x79\x4d\x66\x7c\xfe\xf4\xf4\xac\x2a\x7e\x96\x55\x43\x10\xcd\x1f\x2c\xcb\xac\x00\x74\x6f\xb5\x1c\xd7\x84\x80\x16\xc4\xc8\xbf\x4e\xa6\xc7\xae\x32\x54\x5a\x16\x4e\xce\x8d\x76\xc7\xa1\x10\xa9\x39\x95\x21\xd6\x46\xcb\x2a\x46\xa4\xf5\xa4\x29\x46\xf2\x41\x0b\xb5\x2f\x7f\xe4\xc3\x39\x37\x03\x3c\x28\x07\xd5\xea\x9f\x65\x3c\xb5\xf9\x10\xab\x29\xa2\xcb\x28\xa2\x2a\xb5\xc8\xb2\x88\x42\xd0\xa0\xd3\x84\x71\x8c\x2a\x95\xef\x0a\x09\x3b\x08\xd7\x4a\xb4\x05\x04\xeb\x26\xd6\x9c\x50\xd5\xf7\x6a\x67\xbf\x92\xba\x15\xb6\xa6\x48\x15\x86\xd7\x59\x9e\xd7\x20\xd2\xf3\x18\x68\xc7\xa7\x4f\x10\x07\xc5\x72\xa3\x95\x93\x7a\x68\x9c\xdd\xc9\x58\x28\x73\xc5\xc4\x32\x05\xbb\xef\x55\xee\xed\xb5\x1e\x42\xe8\xed\xb5\x16\x96\x78\xcd\x3d\x56\x13\x77\x7b\x2d\x6b\x6c\x0b\xb8\xa1\x09\x71\x70\x87\x1d\x7e\x2b\x89\xa7\xca\x2e\xcf\x5e\xc0\x20\x7c\x83\xa8\x78\x01\x69\x4e\x0d\x34\xa7\xe9\xf9\xc9\xc4\x93\x52\x22\xd4\x1c\xaa\xbf\x6a\xc8\x60\xf5\x58\x73\x04\x75\x29\xea\x97\xb6\x8a\x09\xa8\xae\x0a\x42\x8d\x18\x57\x4a\x88\x21\x6d\xf0\x82\xc5\x77\x18\x64\x3c\x0b\x36\x70\x61\xf8\x42\xf0\x22\xbb\xf8\xcf\xb0\x99\x2f\x2f\x5b\xf7\xf0\x05\xd8\x3d\x9a\x93\x00\xe9\x3b\x5a\x6d\x64\x88\x1e\x66\xc5\x01\xa4\xc5\x57\x1d\xa3\xf9\xe2\x95\x47\x0a\x15\x9f\x34\x7b\xad\xc7\x3a\x66\xde\x2f\x5d\xdf\xb7\x3c\x5f\x3e\xda\x29\xf0\xdb\x06\x71\x26\xac\x0a\xa7\x38\xb9\xc4\xcf\x9f\x55\x06\x55\xd4\xa8\xd5\x1b\xa8\x7f\x83\x7a\xff\xdf\xff\x1b\x24\xe1\x00\xed\xe3\x34\x0a\xc7\x2b\x68\x73\x3c\x46\x49\x78\x31\xca\x52\xc4\xca\x07\x2b\xcf\x9f\x3f\x3b\xc2\x41\x98\x66\x49\xd8\x9f\x01\x7c\x3f\x0a\x20\x28\x4f\x18\xa1\x34\x9e\x25\x03\x0c\x6f\xfa\x61\xe4\x27\x37\x84\x1d\x4c\x52\x8f\x45\x69\x48\xe0\xbf\xf1\x2c\x43\x13\xe0\xe9\x03\xe0\xac\x1e\xf2\x13\x8c\xa6\x38\x99\x84\x59\x86\x03\x34\x4d\xe2\xcb\x30\xc0\x01\x0d\x3a\x41\xd6\xe9\x30\x1e\x8f\xe3\xab\x30\xba\x40\x83\x38\x0a\x42\xba\x86\x49\xa5\x09\xce\xba\x6c\xc5\x2f\x23\x15\xad\x14\x14\xc3\x14\x9f\x41\x1c\x60\x34\x99\xa5\x19\xd9\xa8\xfd\x30\x02\xa0\x7e\x3f\xbe\x24\x9f\xa6\x37\xd0\x45\x14\xc5\x59\x38\xc0\x1e\x8d\x2b\x34\x0e\x53\xd0\x2c\xcb\xed\x45\x81\x86\x4c\x10\xa6\x83\xb1\x1f\x4e\x70\xb2\xe2\xc2\x21\x8c\xe4\x81\xe0\x38\x4c\x93\x38\x98\x0d\xf0\x83\xa3\x81\x58\xd7\x82\x78\x30\x13\x71\x30\x48\x8d\xd5\x38\x61\x31\x32\x26\x7e\x86\x93\xd0\x1f\xa7\xf9\x30\xc3\xdc\x40\x35\x09\x75\x32\xcf\x27\xbb\x7b\xc7\xe8\xf8\x60\xe7\xe4\xd7\xcd\xa3\x6d\xb4\x77\x8c\x0e\x8f\x0e\x7e\xd9\xdb\xda\xde\x42\x6f\xff\x8d\x4e\x76\xb7\x51\xef\xe0\xf0\xdf\x47\x7b\xef\x76\x4f\xd0\xee\xc1\x87\xad\xed\xa3\x63\xb4\xf9\x71\x0b\xf5\x0e\x3e\x9e\x1c\xed\xbd\xfd\x74\x72\x70\x74\x8c\x7e\xdc\x3c\x46\x7b\xc7\x3f\xc2\x87\xcd\x8f\xff\x46\xdb\xbf\x1d\x1e\x6d\x1f\x1f\xa3\x83\x23\xb4\xb7\x7f\xf8\x61\x6f\x7b\x0b\xfd\xba\x79\x74\xb4\xf9\xf1\x64\x6f\xfb\xd8\x43\x7b\x1f\x7b\x1f\x3e\x6d\xed\x7d\x7c\xe7\xa1\xb7\x9f\x4e\xd0\xc7\x83\x13\xf4\x61\x6f\x7f\xef\x64\x7b\x0b\x9d\x1c\x78\xd0\xa8\x59\x0d\x1d\xec\xa0\xfd\xed\xa3\xde\xee\xe6\xc7\x93\xcd\xb7\x7b\x1f\xf6\x4e\xfe\x0d\xed\xed\xec\x9d\x7c\x24\x6d\xed\x1c\x1c\xa1\x4d\x74\xb8\x79\x74\xb2\xd7\xfb\xf4\x61\xf3\x08\x1d\x7e\x3a\x3a\x3c\x38\xde\x46\xa4\x5b\x5b\x7b\xc7\xbd\x0f\x9b\x7b\xfb\xdb\x5b\x2b\x68\xef\x23\xfa\x78\x80\xb6\x7f\xd9\xfe\x78\x82\x8e\x77\x37\x3f\x7c\xb0\xf6\x92\xe0\xae\xf4\xf1\xed\x36\xfa\xb0\xb7\xf9\xf6\xc3\x36\x6d\xe9\xe3\xbf\xd1\xd6\xde\xd1\x76\xef\x84\x74\x27\xff\xd5\xdb\xdb\xda\xfe\x78\xb2\xf9\xc1\x43\xc7\x87\xdb\xbd\x3d\xf2\x63\xfb\xb7\xed\xfd\xc3\x0f\x9b\x47\xff\xf6\x18\xcc\xe3\xed\xff\xfd\x69\xfb\xe3\xc9\xde\xe6\x07\xb4\xb5\xb9\xbf\xf9\x6e\xfb\x18\x55\xe6\x0c\xc9\xe1\xd1\x41\xef\xd3\xd1\xf6\x3e\xc1\xf9\x60\x07\x1d\x7f\x7a\x7b\x7c\xb2\x77\xf2\xe9\x64\x1b\xbd\x3b\x38\xd8\x82\x81\x3e\xde\x3e\xfa\x65\xaf\xb7\x7d\xfc\x1a\x7d\x38\x38\x86\xd1\xfa\x74\xbc\xed\xa1\xad\xcd\x93\x4d\x68\xf8\xf0\xe8\x60\x67\xef\xe4\xf8\x35\xf9\xfd\xf6\xd3\xf1\x1e\x0c\xda\xde\xc7\x93\xed\xa3\xa3\x4f\x87\x27\x7b\x07\x1f\xab\x68\xf7\xe0\xd7\xed\x5f\xb6\x8f\x50\x6f\xf3\xd3\xf1\xf6\x16\x8c\xee\xc1\x47\xe8\xea\xc9\xee\xf6\xc1\xd1\xbf\x09\x50\x32\x06\x30\xf8\x1e\xfa\x75\x77\xfb\x64\x77\xfb\x88\x0c\x28\x8c\xd4\x26\x19\x82\xe3\x93\xa3\xbd\xde\x89\x5c\xec\xe0\x08\x9d\x1c\x1c\x9d\x48\x7d\x44\x1f\xb7\xdf\x7d\xd8\x7b\xb7\xfd\xb1\xb7\x4d\xbe\x1e\x10\x28\xbf\xee\x1d\x6f\x57\xd1\xe6\xd1\xde\x31\x29\xb0\x47\x9b\xfd\x75\xf3\xdf\xe8\xe0\x13\x74\x99\xcc\xd1\xa7\xe3\x6d\xfa\x53\xa2\x58\x0f\x66\x12\xed\xed\xa0\xcd\xad\x5f\xf6\x08\xda\xac\xf0\xe1\xc1\xf1\xf1\x1e\xa3\x13\x18\xb2\xde\x2e\x1b\xee\x95\xe7\xcf\x5e\xae\xaa\x3a\xaf\x7d\x3f\x1b\x3d\xac\xde\xab\x5c\xd4\x69\x1a\xf8\x58\x14\xa1\x8f\xa5\xac\xb3\xe1\xc2\xce\x8f\xb2\x14\x65\x7e\x9f\x4b\x2c\xa4\xca\xf9\x97\xb1\x35\xd8\x66\x2e\x47\xd5\x3c\x84\xea\x1e\x42\x0d\x0f\xa1\xa6\x87\x50\xcb\x43\xa8\xed\x21\xd4\xf1\x10\x5a\xf3\x10\x5a\xf7\x10\x7a\xe5\xa1\x7a\xcd\x43\xf5\xba\x87\xea\x0d\x0f\xd5\x9b\x1e\xaa\xb7\x3c\x54\x6f\x4b\x16\x96\x6b\xb4\x2e\xf9\x46\xe0\x91\xf2\x04\x46\xbd\x4d\xe1\x92\x7a\xd0\xd6\x2b\x06\xbf\xc1\x60\xd4\xa1\x8d\x1c\x4e\x93\xb5\xd5\x62\xb8\xbc\x62\x30\xd6\x25\x3c\xd7\x18\xac\x0e\xc3\xa5\x4e\x61\xd6\xe5\x58\xcb\x75\x56\x97\xe3\x52\xa3\x30\x00\x0f\x8e\x67\x93\xc2\x22\xf0\xeb\x72\xbf\x65\x38\x2d\x56\xb7\xcd\x70\x5f\x63\x30\x1a\x12\x9e\x75\x06\x6b\x9d\xe1\xc2\xfa\x5d\x6f\x9e\x55\x5f\xcb\x73\x91\xcc\x99\x0b\x8e\xc7\x9a\x34\x56\x0d\x06\x93\xe3\xdc\x51\xc7\x03\xfa\xd6\xd4\xfa\xde\x61\x75\x9a\x39\x2c\xa8\xdb\xce\x71\xe6\x30\xf8\x78\x40\x5b\x75\xad\xef\x50\xa8\x2d\x75\x70\x8d\x21\xd8\xc9\x07\x57\x00\x69\x48\x03\x4d\x91\xcd\x01\xad\xb3\x3a\xd2\x60\xc1\xc4\xb4\xf3\xc1\x15\x30\x9a\xd2\x40\x53\x64\x25\x84\x1a\x6c\x64\x6b\x12\x30\x3e\x1a\x6b\x62\xf6\x04\x85\x22\x36\x3a\x14\x59\x75\x36\xd2\x79\x2b\x83\xa2\xc8\xc6\x0a\xd0\x93\x5b\xe2\xb4\xd5\x94\xc6\xb3\x93\x7f\x53\x68\x7a\xcd\x83\x4f\x30\x54\x9c\x5e\x5f\xe5\xb4\xc7\x69\xaa\xde\x96\x86\x75\x8d\x95\x55\xe6\xa3\x9e\x13\x81\x98\x8b\x57\xac\x20\x27\x9e\x75\xa9\x0c\x47\x7c\x0d\x7e\xcb\x67\x29\xb1\x96\x5b\x79\x55\xde\xbe\x58\xf3\xf2\x9a\x58\x57\x40\xe6\xa0\xf8\xfa\x6c\xe7\xb4\x2f\xfa\xd9\xc8\x51\x10\xe3\xc4\x48\x86\xc2\x45\xda\x94\xcc\x5b\x20\x0c\x31\x65\xf0\xdb\x39\x02\xd0\xcf\xb5\x7c\x21\x42\x83\x2d\x86\x48\x47\x43\xba\xa9\x0e\xbe\xe8\x74\x3d\x87\x23\xc6\x4e\x2c\x68\xf8\xae\xc0\x11\x0c\xa4\x2e\x0d\x52\x27\x6f\x57\x2c\x3c\xb6\x80\xeb\x4d\xcb\x7c\x88\x0e\x68\x88\x73\x40\x62\xc1\x35\xa4\xff\xb6\xc5\x2a\x56\x07\xa8\x6d\x29\xd7\x52\x67\x46\xcc\x64\xde\x29\x54\xaf\xa3\x33\x25\x4b\xf6\xf9\x88\xac\x10\xcb\x7c\x20\x11\xaa\xb9\xe6\xa1\xda\x75\x7b\x73\xbd\xb1\xf6\xea\xd5\x2b\xf2\xbb\xb3\xbd\xf5\x6a\xfb\xed\x66\x9d\xfc\x5e\xdf\xa9\xbf\x7d\xdb\xdb\xea\x91\xdf\x9b\xaf\xda\xcd\x9d\xad\xd6\xb6\x3a\xdf\xa3\xc4\xd9\x40\xbb\xb6\xd9\x58\x7f\xbb\xdd\x81\x06\x7a\xad\xad\xad\x7a\xa3\x05\x0d\x6c\xad\xd5\x9a\xdb\x3b\x4d\xf2\x7b\x6d\xb3\xb3\xb5\xd6\xd9\x86\x86\x39\x42\x67\x56\x7d\xc0\xd1\xde\xe1\xf6\xfe\x56\xbd\x53\x83\xf0\xfb\x73\x74\x48\xa2\x6c\xae\x45\x92\x5e\xd1\x5d\xf9\xae\x77\x45\x54\x99\x08\x48\x38\x82\x60\x77\xd6\x5a\xed\x46\xb3\x06\x23\xb8\xbd\xd3\xdb\xda\x7c\xbb\x0e\x1d\x7c\xb5\xfe\x76\x73\xab\xb7\xb3\x4d\x7e\xd7\x6b\xcd\x46\xbb\xb5\x06\x83\xd3\x6b\x6e\x35\xb6\xeb\x3b\xb5\x33\xa7\x6a\xbc\xac\x52\xde\xaa\xd8\x2d\xed\xa5\x54\x2f\xb8\xa9\x99\x6f\x8e\x4f\xb1\x00\xdd\x6b\x6e\x16\xe9\xb8\xbe\xd9\x3f\x97\x4a\xf3\xcb\x83\x73\xd3\x90\x09\x15\xdd\xa9\x48\xf5\xd0\x06\xaa\x98\x05\x10\x35\x00\x95\x1a\xcb\x0d\x1f\xa4\x97\x8b\x19\x95\x1a\x00\x99\x5d\xa9\x06\xd0\xb4\x2e\x35\xc1\x15\xa8\xc6\xd0\x3c\x5b\xe7\x5d\x24\xee\x1f\x08\x29\x3a\xaf\x1c\x81\x01\x9c\x8f\xc6\xee\x02\x09\x14\x48\x9c\x05\x40\xfc\x3c\xff\xe2\x86\x00\x32\xd1\xf9\x17\x37\x04\xd8\xa6\xcf\x53\x37\x04\xd8\x34\xce\xd3\xc4\x1e\xd1\x7a\x75\x95\xac\xb2\xcf\xe4\xd0\x7c\xe9\x27\x21\x91\x8e\x2d\x97\xb4\xfe\xd8\x43\xfd\xb1\x87\x06\x63\x0f\x05\x63\x0f\xe1\xb1\xa5\x21\x3f\xf1\x50\x3f\xf1\xd0\x20\xf1\x50\x90\x78\x08\x27\x7a\x63\x3e\x41\xc5\x27\x08\xef\x9a\x2e\x23\xfd\x04\x82\x8e\xc3\xc7\xba\xfe\x71\x40\x3e\x0e\xe8\xc7\x86\xfe\x31\x20\x1f\x03\xfa\xb1\xa9\x7f\x84\x03\x03\xa6\x1f\x5b\xfa\x47\x91\xa6\xda\x57\xf3\x52\xf3\x2e\xe9\xb7\x82\x56\x53\x42\xf8\xef\xd2\x06\xaa\x5b\xd7\x76\x46\x96\x8f\x3f\x46\x4b\xf9\x9a\x5a\xfa\x32\x3e\x0d\xcf\xce\xaa\x5f\x6d\x4e\x0c\xe0\xb5\xf3\xa6\xde\xa9\xfe\xf9\xfc\x99\xca\x1a\x49\x1b\x68\x58\xaf\xf4\xc7\xde\x60\xec\x05\xe3\x2a\x5a\x42\xa3\xb1\xdd\xf7\xe6\x16\x09\x85\x5c\xf8\xa6\xd9\xa0\xaa\x36\x0b\xb4\x86\x0e\xcd\x18\x79\x03\x5a\x6b\xdd\x09\xad\xa9\x43\x33\xa6\xca\x80\xd6\x69\x39\xa1\xb5\x74\x68\xc6\xdc\x4a\xd0\xfe\x5c\x5d\x65\x10\xd7\x6b\x4e\x88\x6d\x1d\xa2\x41\x10\xc8\x1e\x26\x9d\x4c\x62\x66\x9d\x2e\xf2\x05\x25\x71\x36\xae\x64\x5e\x4a\xa6\xd5\xe6\xb4\x01\x34\x90\x2d\xe1\xb1\x7d\xca\x61\x45\x18\x4b\x8a\xfc\x01\xdd\x06\xb6\x2f\x40\xee\xd0\x2e\x59\x93\x75\xab\x1b\x10\xac\x97\xbe\xad\x36\x2c\x33\xe3\x26\x51\xa0\xea\x27\x68\x49\xa2\xd6\xe4\xee\xd4\xda\xae\xf4\x13\x6f\x90\x78\x41\x02\x23\x9e\xdc\x8f\x5a\x5b\x3a\xb4\xfb\x52\xab\x0a\xed\x5e\xd4\xda\xd0\xa1\xdd\x9b\x5a\xeb\x3a\xc4\x07\xa6\xd6\x04\x6e\xad\x0b\xc8\x35\x71\x90\x2b\x70\xd4\xc4\x46\xae\xc0\x88\x6d\x5f\x80\x45\x53\x72\x4d\x9c\xe4\x0a\x1b\x80\xad\x36\x6c\x0d\xa6\x85\x86\xce\xca\xf7\xe4\x74\x0c\x20\x43\x82\xd5\xaf\x26\x61\x92\x7f\x36\x50\x65\x97\x9a\xe6\x0e\x08\x67\x0e\x2c\x3d\xdd\x65\x26\xbc\xbb\xd4\xfc\x36\x20\xe5\x6c\x23\xb2\xcb\xcc\x74\x77\xa9\x21\x2d\x26\xe5\x7c\x6b\xb9\x26\x2b\x07\xc6\xb2\xb0\x23\xf4\xad\xe5\x5a\xac\x1c\x18\x26\xf7\x49\xb9\x81\xb5\x1c\x18\x30\x2b\xc3\xa2\x8b\xb5\x3b\x2c\xb5\xc6\x3d\xcc\xb3\x02\x3f\xf3\x85\x30\x44\x1e\x2c\x1b\xff\xfc\x34\x8c\xbc\x64\xf4\x36\xcc\xd2\x93\x38\x03\x8e\x47\x61\x46\x5b\x7e\xe6\x53\xab\xad\x97\x68\xdd\x02\x1d\xea\x7c\xc0\xc3\xcc\x48\xda\x08\xe5\x8d\xce\x6c\x06\x81\x99\x85\x18\xb1\x7c\x8b\xd4\x98\x29\x07\x49\xa4\xc9\xf6\x19\xfa\xba\x41\x13\x0b\xe7\x36\x12\xa2\xc4\xbf\x50\xb3\xa1\x53\x6b\x0e\xa9\x52\xa9\xe4\x45\x97\x10\xe1\x0f\x04\xe4\xab\x2a\x01\xd5\x22\xeb\xb6\xde\x72\x08\xd0\xbc\x2a\x1d\x8e\x5c\x78\x96\x5e\x96\x17\x9e\x0d\x60\x4c\x70\xd6\x80\xcd\x13\x9c\x6d\x1d\x95\xf3\x74\xe4\xf9\x30\x79\x8e\x1d\x30\x8e\xb1\xa4\xed\x58\x5d\x85\x93\x20\x82\xec\x2e\xd4\x21\xcb\x6a\x38\x35\xa5\x27\x2f\x33\x9b\x4b\x31\x59\xc2\xea\x96\x65\x74\x0b\xe1\xec\xa2\x0d\x24\x8b\xef\xf7\x3b\xbf\xb5\x4b\x1d\xdf\xec\x27\xb2\x5d\x38\x8a\xed\x5a\x9c\x49\x50\xd1\x19\x6c\x57\xb8\xeb\xed\x2a\xc7\xab\xdd\x85\xcf\x55\x94\x42\x76\x95\x33\xd5\xae\xf3\x30\x35\xdf\x14\xee\x88\xde\x84\xd3\xc9\x65\x19\x2c\x02\x18\x6c\xb5\x28\xbb\x31\xd7\x26\x48\x61\x53\x83\x71\x1c\x15\x33\x28\x30\x25\x20\xa5\x72\xed\x02\x3c\xba\xcd\x20\xe8\xe7\x73\x83\x48\x68\x3d\x93\xd6\x18\x9a\xf0\x55\xb1\x8b\x82\x9f\xb7\xf4\xf6\x1f\xc9\x16\x71\xc3\x7a\xe5\xda\x43\x37\x1e\xfa\x62\x4b\xf3\x51\xa9\x5c\x83\x67\xe7\x0d\xfc\xfb\x25\xcf\xd6\x7e\x6b\xc0\x69\x14\xc3\xa9\x5c\x57\x7f\xaa\xdc\x54\xa9\x3b\xf9\xff\x25\x0f\x5f\xaa\xd5\xea\xff\xcf\xde\xdb\x6f\xc7\x6d\x23\x0b\xe2\x7f\xc7\x4f\x81\x99\xdf\x19\xbb\x15\xb5\x24\x02\xfc\x02\x6d\x2b\xbf\x4d\x14\xfb\x3a\x1b\x3b\xf6\xb1\x9d\xb5\xef\xf1\xb1\x33\x20\x09\xaa\x19\xb7\xba\x75\xbb\x29\xab\x35\x13\xcf\xd9\xd7\xd8\xd7\xdb\x27\xd9\x83\x02\x48\x82\x24\x00\x76\xcb\x72\xee\x64\xc6\x9a\x33\x4e\x77\xb3\x50\x55\xa8\x2f\x14\xf1\x51\xb8\x67\xc3\xe6\x8f\x62\x13\x88\xfe\x21\x30\xb6\xac\x59\x70\x05\xe3\xb8\x6e\x03\x06\xe0\xed\x6a\xef\xf6\xe4\x1f\xc0\x9c\x1d\x63\xb8\x8d\xcc\x84\xd0\x7e\x6b\x51\x59\x70\x41\x2a\xb1\x99\x2e\x8c\x98\x36\xf7\xef\x2f\x80\xab\xcd\x37\xdf\x7c\x33\xf1\xc9\xc1\x42\x67\x4a\x7e\x70\xee\x86\xa9\x37\xc3\xc8\x7b\xe0\xb6\xdb\x0c\x63\xbd\xed\x47\xed\x6f\x81\x3d\x4f\xf5\xe7\x6a\x29\x23\xd3\x10\x8d\xe5\x7e\x1e\x0b\xf4\x75\x2f\xe6\x51\x9e\xd1\xee\x64\xa9\x27\xf0\x26\x77\x14\x8b\x77\x0c\xbb\x70\xec\xad\x2e\x6b\x6e\x4d\xdb\x6d\x86\x93\x83\xbd\xad\x36\x35\xc0\x76\x5b\x95\x6a\xe5\x3c\x7a\xf2\xed\xc9\xef\xa0\x1a\x47\xf3\xf7\xfc\x0a\x9a\xae\x79\xb6\xe2\x95\xe5\xee\x24\x8b\x42\xe1\xca\xc1\x1b\x54\xa8\xbc\xc8\xb0\x51\xcd\xa3\x33\x96\xb5\xea\xd1\xb7\x58\x19\x34\xd4\x01\x1e\x6a\xe9\x8c\x65\x06\x4d\x7d\xf5\x51\xae\x03\x5b\xb6\x46\xd5\x90\xe6\xdb\x89\x3e\xbe\x9d\xc6\xf1\x97\x2d\x4e\xff\x0a\x47\x56\x3e\xf7\xd2\x7d\xaf\xb0\x9a\x46\xd8\x5a\x32\xed\xc5\xa3\x6f\x0f\xf0\x16\x2b\x19\xc3\xbb\xaa\x6f\x72\xfd\xe2\x18\x4e\x9f\xb6\x4b\x18\xe5\xa2\xac\x26\x86\x02\x54\xdd\x25\x0d\x5e\x64\x39\x4b\x69\x62\xa8\xcd\xe4\x6d\x12\x9a\xb2\x3c\x2b\x78\x67\x8d\xc3\x04\x98\xf9\x39\xe1\xb8\xf0\xba\xcf\x3e\x7d\x09\xc4\x96\xa1\x9b\x93\xef\xe1\x0c\xfa\x00\xc1\x36\x73\xcf\xe6\xe9\x62\xf1\x28\x35\x4f\x16\x43\xc2\x68\x9e\x2a\x86\xd7\x55\xf3\x44\xb1\x78\xc4\x9b\x69\xe2\x01\xa7\xd6\x79\x62\xeb\x9c\xb0\xe5\x6d\x01\xe6\x7d\x90\x3c\x61\x6a\xa9\x05\xf3\x4a\x26\xfe\xdd\x12\x18\xdd\xb3\xa7\xf5\x5f\x3d\xa1\x64\x46\x54\x9f\x73\x78\xf5\xa6\x44\x07\xc8\x7f\x8b\xde\xa9\x8f\xb4\xfd\x88\x03\xed\x73\x64\xbb\x3b\x52\xb1\x34\x59\xc0\xe1\x58\xf9\x6e\x09\xaf\x0f\x3e\x36\x97\xa9\x31\xbf\x09\xc1\xd4\xd2\x84\x09\x24\x21\x20\x61\xf2\x4d\x26\x86\x03\xb2\x1c\xed\x03\x21\xdb\x44\x23\xba\x8f\x88\x67\x95\x1a\x4c\x9b\x4d\x26\x29\xba\x8d\x32\x99\xe7\x8a\x8f\x39\x60\xf6\x36\x21\x93\xab\xb0\x23\x53\x7c\xe8\x3e\x0a\xc6\x48\xa4\xe8\x1d\xca\xd0\x3b\x94\x4b\xcc\x11\xcf\x13\x9e\x32\x53\xd1\xa1\x1e\xe6\x68\x07\xe6\x25\xef\xe2\x53\xa6\x7a\x71\x80\xbc\x4d\xec\xf1\x20\xf0\x49\x60\xa7\x75\xf4\x75\x43\x8e\x7a\x7b\xe8\xeb\xa3\xad\xfb\x22\xf0\xfb\x61\x92\xfb\x9c\xf4\x67\x79\x90\x45\xa5\xc2\x5f\x72\xd3\x74\x1f\x3a\x46\x99\x69\x8a\x0f\x01\xc9\xfb\xf7\x91\xef\xa9\x5e\x82\xfa\x8d\x77\x8b\xa2\x63\x64\xe2\x83\x6d\x77\x5a\x6b\xab\xc9\x40\x35\x89\x56\x4f\xb6\xb1\xfe\x09\x6f\xd4\x99\x08\x84\x09\xc3\x41\xe5\x13\xd4\x99\x04\x84\xc9\xc2\xcc\x0c\xe3\xeb\x13\x85\xb9\x19\x26\xd0\x27\x09\x79\x1f\xe6\xcb\x04\xdf\x3f\xeb\x04\x9f\xc8\x85\x0f\x8b\xf9\x72\xb9\xd2\xe7\xdc\x8e\x60\xa0\x56\x7f\x9f\x44\x04\x6a\x21\xb4\x98\x47\xe6\xe9\x06\xd3\x74\x9f\x69\x86\x6e\xc7\x79\x20\xe3\x74\xdd\x1f\x71\x36\xe8\xcb\x14\xc2\x60\x32\x40\xa4\xcf\x3b\xcd\x1e\x40\x03\xd7\xc4\x41\x37\x21\xef\xce\x19\x88\x67\x5f\xa6\x0b\x6e\x74\xba\x00\xf4\xb1\xc5\x4c\x81\x59\x2d\xed\x24\x81\x52\x8d\xfd\xd8\x94\x00\xb0\x4f\x0b\xd0\x3f\x74\x81\x8d\xf5\x8c\x91\x30\xfa\xdc\xb5\x31\x14\x95\x7f\x9f\xe9\x83\xc1\xf4\x80\xfe\x0e\x4f\xc2\xa8\xf3\x16\xaf\x9d\xc2\xee\xcf\x0a\x10\x12\x6c\x37\x2f\x20\x00\x3b\x38\xe1\xbb\x44\xfe\xbb\xce\x0d\x64\xd8\x0b\x13\x9e\x53\xf1\xca\xef\x47\x71\x96\x87\x5e\x0c\x9f\xbd\xd8\xcb\x73\x0c\x9f\x8b\xd8\xe3\x61\xe2\x9b\xe7\x0c\x8a\x22\xf3\xbc\xd4\x87\xc9\x85\x88\x86\x14\x87\x58\x7e\x0e\x8a\x84\x16\x0c\x10\xa4\xbc\x60\x41\xc1\x82\x1d\xa6\x0b\xb6\xca\x3c\xb5\xb0\xaf\x44\xa7\xb5\x74\x9c\xa2\x85\x88\xda\xa4\x33\x07\xc7\xc3\xe4\xc5\xb2\xb0\xf4\x65\x88\x1e\x19\x71\x09\x09\x76\x1d\xa4\x45\x93\x91\x61\xba\xe3\x1d\x83\x81\x9a\x10\xf3\x21\xf6\x2f\x43\xf5\x27\x0c\xd5\x42\x2b\xdb\x0d\xd6\x46\xe5\x74\x86\x6b\xa9\x20\xe7\x80\x4d\x48\xff\xa8\xb3\x76\xae\x59\x0d\x47\x77\xe3\x44\x0c\xe0\xc9\x97\x79\xfd\xff\x9e\x81\xf9\x8f\x77\x2c\xef\x07\x79\x89\x43\xf9\xb7\xe6\x54\x2e\x5a\x2d\x2f\x16\x39\xca\xba\xe7\xf5\xb4\x1e\x3c\xea\x5f\x9d\xf2\x63\x77\x19\xa0\x9e\xa8\xe5\x2d\x0e\xf9\xc4\x94\xc1\x20\x7d\x49\xb9\x5c\x3f\x5b\x95\x67\x7c\xb2\x30\x0e\x63\xeb\xff\x5a\x55\x3f\xd5\xef\xf9\xe2\xcb\x64\xd1\x7f\xcf\x6c\x26\x82\xa5\x3a\xd1\x31\x22\xf7\xea\xcf\xf7\x8f\x25\x86\xfa\x07\xc7\xdc\xf0\x9f\x26\x0b\xf4\x17\x05\xb6\x67\x9d\x2f\x54\x3e\x5a\xb0\xf9\x9a\x8f\xef\x0a\xec\xcf\x8f\xd5\xef\xe3\xab\x8b\xee\x1b\xae\x41\x2c\xa7\xbc\x7a\xb8\x62\xf0\x99\xcd\xbf\x2b\xab\xb5\x41\x40\xcd\x12\xfe\x02\x1d\xa0\xc9\x02\x2a\x7b\xee\xa1\xaf\x3b\x93\x1f\xfd\x99\x2c\x8d\x56\x3d\x4b\xad\x57\x66\x87\xdf\x40\x21\xbd\xfa\x3d\x97\xb3\x72\xce\xd1\x44\x3d\xbb\x8f\xd4\x96\xcc\xbe\x14\x5b\x6d\x5a\x05\xdd\xa0\xa0\x56\x29\x3f\x7a\x23\x81\xa0\xec\xe8\x40\x10\x60\x0b\xe7\xcb\xcb\xc9\x62\x8a\x30\x3a\x42\x64\x6f\x8b\x8a\xed\x08\x6e\x42\xd9\x05\xad\xbf\x67\x2c\x9e\x2d\x51\xec\xef\x8f\x4c\x85\x2e\x3a\x10\x75\x86\x34\x69\x71\x5e\x7f\x8d\x4d\x24\xde\xdb\x65\xd3\xc3\x0c\xfd\xb3\xaf\xb4\x3d\x3a\x5c\xcf\xcb\x8c\x4f\xbc\xbd\x2f\xab\x5e\x5b\xaf\x7a\x0d\x1e\x15\xf0\x28\x34\x3d\x3a\x85\x47\x83\x05\x23\xc8\x59\xe0\x51\xfc\xc9\xcb\x68\x91\xa3\xd6\xfd\xef\xbd\x8c\x76\xca\xce\xce\x98\xb7\x69\x16\xd3\xf0\x40\x28\x43\x68\xd8\x68\x3c\xa9\x5b\xde\xbf\x8f\x88\x5c\xf4\xaa\x7f\xf9\xe6\x9b\x6f\x50\xbc\xb7\x87\xd0\x3b\x33\xa6\xee\x5f\x07\x13\x0e\x06\x98\x30\xdd\xdb\xdb\x0e\x53\xb7\x9d\x6f\x0c\x2f\x9d\x9e\xe0\xb6\xdf\xc6\x4d\xf2\x5d\x60\xad\xdb\x58\x32\xab\x75\x1b\x6f\xea\x7a\xd3\x5b\x32\xdb\xc5\xe4\x0f\x31\x25\x3b\x76\xbb\x6e\x67\xbe\x93\x00\xb5\x86\xa3\x94\xb8\xaf\x7a\x0e\x45\x7e\x55\x0f\xf7\x9d\x0b\xa6\xb6\xd5\xcf\x0c\x4e\x35\x4e\x38\xba\x8d\x0a\xd8\xec\xf6\x0f\xf1\xf1\xd4\x76\x85\xcb\x19\x83\x0a\x73\x0c\xdd\x46\x29\x80\x33\xb9\x3a\xf8\x0e\xa9\x75\x42\x13\xff\x90\xac\x94\xa7\x82\xf1\x66\xa9\x55\x2d\xb6\xa9\xb5\x56\xb9\xf5\x4f\x3e\xc1\x89\xf6\x04\xfb\x9d\x47\x9d\x46\xe6\xb1\xad\x21\x06\xf7\xd4\x4c\x38\xd8\xb8\xac\x9c\xcc\xa1\x5d\xa4\x30\xca\x27\x58\x7b\x82\xb1\xfe\x28\x96\x3b\x5b\xe5\x23\x12\x9a\x47\x3c\x58\x40\x16\x94\x66\x68\xbf\x26\xbb\x2f\x84\xba\x2f\x2f\x7a\xb3\x2e\x1e\x43\x43\x82\x8e\x6b\xc1\xec\x0b\xd1\x9a\x28\x88\xc0\x75\x6a\x40\x20\x62\x5d\xbf\x4e\xbb\xf8\x13\xe1\xd1\x94\x7e\x41\xed\x4c\xb8\x2d\x01\x9b\x96\xf9\xd0\xc8\x12\x69\xbf\xda\x3a\x1a\x59\x0e\x9d\x54\x42\x10\x15\x31\xd1\xfa\x77\x59\x1a\x95\x30\xa1\x82\x81\x92\xe1\x85\x19\x26\x52\x30\x50\x12\xfc\xd4\x0c\x13\x2b\x18\xf0\xf9\xd9\x97\x65\xd8\x2f\xcb\xb0\x5f\x96\x61\x87\xd9\xe6\x97\x65\xd8\x7f\xca\x39\xde\x30\xda\x79\x8e\x37\x8c\x46\xe7\x78\xf5\x77\xb6\xe1\x1c\x6f\x18\x7d\x99\xe3\xbd\xf1\x39\xde\x30\xda\x76\x8e\xd7\xa4\x9c\xee\x1c\x2f\x28\xc8\xbd\x69\xbb\x59\x3b\x33\x2f\xcd\x52\xef\x0f\xbd\x34\xbb\x89\x82\xdf\xe5\xe2\x82\x86\xce\x97\x59\xe0\xee\x2c\xf0\x26\x82\x35\xd5\xc3\x4d\x14\x68\xbf\xbf\x8e\x02\x55\xa5\x1b\x20\x0e\xb5\x3a\xd1\x3b\xd5\x74\xd3\xfa\xf7\xfc\xd1\xd3\x5f\x9e\x3e\x7c\xf8\xe2\xc1\xcb\x17\xfd\xd9\xe2\x67\x3f\xfc\xf2\xc3\x4f\xdf\x3f\x78\xfd\x60\x78\x2b\xf7\xf3\xa7\x3f\xff\xf4\xfd\x2f\x27\x4f\x7f\x7a\xf1\xf2\xdb\x9f\x9a\x96\x1a\x39\x39\xad\x7c\xb2\xdd\xb4\xb2\xd6\x62\x35\x5b\xd6\x45\x5b\x7a\x73\xd2\x35\x69\xf1\x76\x8d\xa7\xe8\xca\x56\xaa\xbc\x92\x53\x22\x15\xba\x8f\x48\x70\x0f\x55\x86\x29\x11\xad\xcf\x6f\x36\x68\x1f\x85\xe8\x6b\x74\x25\x4f\x0f\x56\xf5\x21\x4d\xf8\x44\xf6\x60\xa6\x12\xfd\x05\x45\x83\x5c\x04\xd2\x40\x7e\xf9\x1a\x1d\xa3\x2b\xf4\x17\x14\x9a\xb2\x44\x7e\xf9\x9f\x02\x2b\x41\x5f\x23\x41\xc7\x17\x74\xf6\x0c\xc0\x1b\x39\x2d\xf7\xba\xf7\xf3\x95\xfc\xf9\x3f\x2d\x53\xc1\x9a\xd8\xce\x4b\x54\xc2\x75\x02\x06\xa1\x35\x92\xd9\x48\xc9\x6c\xe4\x01\xcd\x8d\x41\x30\x0d\xa8\x94\x2e\xba\x92\xa0\x57\x96\x69\xa5\xd6\x40\xba\x62\xbc\x82\x0b\x7e\x86\xbd\x16\x72\xed\x77\xfd\xe3\x68\xdf\x7a\xab\x1c\x5d\x6b\x78\xfc\xf0\xc5\x73\xc1\xeb\xc6\xc3\x26\x63\xd0\xef\x9d\xb0\xcc\x8f\x09\x30\x20\x51\x1b\xeb\x93\xf5\x65\xcf\xb6\x8c\x60\x8f\x6b\x30\x8b\x08\xd5\xcd\x13\xbf\xa2\xfb\x28\xbe\x87\x7e\x75\xcc\xcc\x41\x1f\xe0\x68\xaa\xb9\x2a\x4a\x4d\x3e\x2d\xab\x67\xcb\x35\xd4\x71\x15\x56\x05\x97\xe5\xfe\xba\x87\x0e\x90\x69\x37\x75\x8d\x5c\x6f\x74\x1f\xa9\x7a\x11\x26\x60\xf1\x37\xe8\xe0\xbb\x63\x04\x64\x34\x2c\x16\x5a\xdd\x1d\xd5\x3a\xd5\x6f\x8e\x81\xac\x7d\x73\xf5\x80\xf2\x13\x8d\x72\x07\xd5\x81\xe1\xbd\xa7\x61\x60\xbb\xa9\x25\xcd\xb0\x16\x7c\x53\x81\x01\x8d\xa8\x85\xda\x77\xa2\x1f\x1d\xa1\x67\xab\xf2\xac\xac\xca\x0f\x1c\x9d\x2f\xe7\x57\x8b\xe5\x59\xc9\xe6\x68\xf9\x81\xaf\xd0\x7f\x3c\x9c\x90\xbd\xbb\x68\xf3\x8e\xa2\x7d\xb4\x79\x17\xc1\xbf\x21\xfc\x1b\x88\x30\x63\x46\xa9\x2c\x5a\x92\x97\xe7\x07\xde\x21\x6f\x13\x3b\xb6\xcc\x5b\x98\x53\x18\x8e\x8d\xf6\x31\xb2\xe8\xd5\x0b\xf0\x72\x8e\x4f\x0d\x3f\x75\x81\xb1\xbe\xce\xa6\x03\xfb\xd9\xdb\x75\x35\x65\x0d\xfe\x53\xf1\xb3\xf3\xe5\x8a\xad\xae\x3a\x37\xd1\x09\x17\x78\xa9\x0f\x44\xd6\x55\x4a\xe3\xad\x33\x66\xef\x7f\x69\xec\xd9\x18\xdf\xbd\xb5\x1d\x7f\xbb\x95\x1d\xbf\xb3\xae\xe3\xbb\x56\x75\x6e\xfe\x2a\x81\xe5\x45\x75\x7e\x51\x3d\x86\x57\xeb\x0e\x2c\x82\x24\x3d\xe7\xeb\x72\xc5\x73\xed\xa2\x81\xb4\xac\xd6\x75\x41\x68\xd9\xb8\xf3\xb6\x50\x37\x7e\xba\x98\xd7\x6a\xd2\x6a\x70\xb3\x15\xbf\x8b\x08\x09\xa6\x88\x84\xd1\x14\xf9\x34\x98\xa2\x10\x93\x7e\x63\x75\x67\xc1\x5d\xf1\x4c\x7f\xd4\xbf\xb4\xa0\x7e\x69\xb6\xde\x5b\xa0\xf7\xae\x87\xed\x1a\xf7\x17\xc0\x4c\x2d\xdc\x84\x58\xbf\x7b\xd7\xdf\xde\xbc\xb5\x44\xfb\x2d\x4c\x4d\xfc\x01\x1e\x69\x72\x0b\x7e\xd9\x98\x1d\x2c\xc2\x8d\x95\x12\x00\x4e\x9a\xdb\x7a\x61\x04\x88\x3c\x0f\x1d\x20\x31\xd0\x36\x37\x25\xe8\x92\x10\xd9\x8b\x4f\x3e\xd7\x8a\x9e\x61\x62\xce\x20\x34\xe3\xe4\x59\xdd\x89\xc7\x6c\x01\x73\x3f\xbd\xae\x1d\x21\x62\x9a\x43\x4b\xd7\xcb\x55\x3a\x2e\xff\x1e\xfa\x4f\xa9\x24\xf8\x84\x94\xa8\xbb\x28\x26\x64\x6d\x9d\x36\x7f\x42\xe0\x0e\xfa\x3e\xb8\x88\xf5\xae\x62\x16\xd6\x2b\xa8\x05\x79\x67\x3d\x41\xd2\x29\x24\x48\xae\x53\x41\x90\x74\x4a\x07\x92\xeb\xd7\x0c\x54\x0c\xe3\x31\x8e\x71\x97\x65\x7c\x2d\x9e\x71\x97\x69\xbc\x0b\xd7\x46\x3d\x48\xe3\x6a\xa6\x46\xca\x45\xb5\x94\xd6\x6c\xd6\xf4\x9c\xc1\x64\x5e\xed\xce\x06\x51\x08\x88\x43\xb8\x6f\xf6\xdd\x31\xc8\xc5\x06\x33\x5f\x5e\x22\x05\x33\xbe\x1a\xf1\x5c\x0c\xb0\x6b\x8b\x0f\xc8\x44\x19\xfc\x40\x7e\x94\x49\x2f\x7c\xb6\xbb\xc0\xcb\x19\xaf\xd8\xf0\xc9\x0e\x6f\x0d\x1a\xb2\x27\xa5\x78\x05\x99\x5f\x9c\x2d\xa0\x73\x06\xb7\xaa\x25\x58\xa7\xd9\x53\xd4\x66\xd2\x46\xe0\x1d\xdf\x49\x74\x1a\x1d\x2d\xb5\x6f\x28\x16\x42\xe2\xaf\x4e\x3d\x1b\xed\xb9\x60\x1f\x6b\xb0\xf3\xe5\xa5\x35\x2f\xb5\x4a\xeb\xa5\x31\xcf\x31\xf5\xe4\xa5\xd0\xc2\xcb\x37\x1b\x1b\xef\x2f\x37\xd2\xd6\x8e\xa1\x07\x76\x20\x30\xb6\x63\x60\x7d\xbb\xdd\x37\xd7\x33\x03\x47\x58\x6d\x7b\x14\x40\x97\x26\x42\x2f\x01\xbc\x1e\xba\x16\xcb\x5f\x6e\x70\x0b\x8e\xb7\x01\x97\xf6\xf5\x72\x83\x5d\x7a\x54\xb0\x8f\x1b\x58\xd0\xa3\xd3\xbc\xd7\x17\x2b\xf0\x28\x79\x9d\x88\x30\xf5\x71\x2b\x7f\xb9\x09\x54\x2c\x40\x93\x89\xe2\xad\x39\x1a\xac\xe8\xab\xf3\xc1\xb6\xd7\x1b\xc0\xf6\xb8\xc1\x26\xa3\x86\xc4\xf6\xb8\x87\xed\xc9\x38\xb6\xdf\xd5\xa9\x3a\xa1\xd0\x61\x9f\xa8\x1f\x12\x2d\x66\x8a\x76\x7a\xdb\x7b\x3e\x5b\xa2\x67\xa5\xc3\xb2\x05\xc9\xfa\xce\x47\x7c\x4f\xfb\x2a\x53\xb9\xe6\xfb\x27\x9b\x7c\x47\x72\x0d\x5a\x97\x19\x0b\x20\x69\x41\x63\x01\xa9\x86\x7e\xdc\x42\xdb\x43\x12\x0c\x16\xb3\xe5\x53\x99\xa5\x1c\x77\xe6\xc3\x74\xbe\xac\x9d\x7d\xbe\x84\x44\xcf\x11\xe2\xc5\x0b\x74\x4b\x62\x74\xe2\x41\xf3\x95\x49\xdd\xe9\xfb\xf7\x5b\x26\xc1\xb4\xeb\xfe\xc1\x55\x9a\x3e\x41\x07\xda\x73\x9b\xa1\xa3\xae\xeb\x34\x38\x8c\xc8\x9f\xec\x88\xbc\x3b\xe7\xd1\x76\x77\xab\x19\x8f\x7e\x97\x15\x57\x1a\x1a\x98\xed\x18\x32\x17\x05\xd7\xee\xf9\x93\x11\x1a\x8f\x77\xa4\xe1\x1a\xdb\x56\x6c\xb1\x3e\x5f\xae\x9d\x56\x02\xe1\xf7\x59\xf9\x58\x3a\xc6\xcb\x37\xda\x84\x62\x6b\x87\xd6\x31\x4f\x36\xdc\x66\xe0\x53\x90\x63\xa3\x9f\x35\x7e\x9c\x97\x88\x55\x30\x04\x42\xbc\x34\xe7\x84\x2f\x3d\xe8\x83\xb1\x68\x6b\xf3\x72\xe4\x35\x01\xc0\x08\xf7\xd2\xab\xbb\x23\xa1\x6d\x2e\xff\xd2\xab\x3b\xa3\xe0\x2c\xe3\xd6\xd1\x11\x3a\x99\xb9\x82\xdf\xf6\xc3\xfa\x35\x87\x8c\xf1\xd0\x88\xb4\xf0\x55\xc7\xe1\x66\x5c\x19\x31\xee\xdd\x42\x6a\xdd\xea\x65\x63\x70\xdb\x37\xd9\xe0\xa6\xd1\x44\x4b\x42\xf6\xb6\x19\x00\x25\x02\xd2\x43\x40\x06\x08\x9c\x52\x14\xb9\xc7\x6a\x79\xe9\x10\xe2\x5c\xf3\x86\x97\xad\x6b\xbc\x43\x93\x7f\x28\xf6\xe5\x0f\xb7\x6b\x66\xe0\xab\x2b\x7e\xcc\x35\xaf\x79\xd9\xba\x90\x8e\x11\x7e\x68\x31\xce\x97\x97\x9f\x3e\x41\xfb\xc3\xd2\xf4\x46\x32\xd0\xb7\xd5\xd3\x3a\xd3\x90\x62\x7c\xeb\x4d\x66\xc2\xf3\xd1\x97\xb6\x0e\x16\x9b\x23\x76\xf2\x95\x6e\x0b\xe1\x92\x8e\xc5\x8e\x7f\xae\x6d\x51\x86\x49\x9a\x1b\xdf\x15\x35\x80\x6f\x66\x7c\x44\xbb\xe1\x34\xd0\xd7\x30\x79\x35\x9c\x07\xba\xee\x5e\x2a\x7c\x9d\xad\x54\xb0\x49\x2a\xe3\xe5\xbc\xbb\xdf\x09\xef\xa1\xa3\x2e\xff\x7b\xe8\xeb\xfe\x0f\x40\x1c\x16\x68\x9a\xdd\x5c\xff\x24\x9b\xa0\x3e\x79\x0e\x4f\x9f\x66\xac\x99\x37\xce\x41\xa2\x23\xa3\xea\x75\x90\x7a\x16\x70\x88\xf3\xc8\xb8\x99\xee\xc5\x7f\x5d\x70\xfe\x37\x3e\x44\x3a\x63\xeb\x59\x6d\xdc\x5b\xdd\x45\x3f\xe0\xe2\x53\x26\x0b\xc7\xe7\x84\xb6\x4f\xe9\x6d\xe9\xfc\xee\x73\x88\x2d\x3d\xfb\xac\x9c\x96\x1a\xaa\x89\x39\x3d\xe1\xdc\x69\x6e\x4e\x43\xa5\xa6\xe7\x74\x54\xd7\x9d\x57\x6c\x45\xe1\xee\xc4\xe3\x41\x27\x1e\x5f\xb7\x13\x8f\x07\x9d\x78\xbc\x5b\x27\xcc\xaa\x92\xa6\xab\x9c\xac\x5a\xa2\x15\xaf\x56\x25\xff\xc0\x0d\x1b\x10\x91\x3a\xdc\x2d\xe3\xc1\xf9\xc5\x7a\x56\xb3\x61\x12\x91\x01\xf2\xc9\x10\xf2\xd3\xcb\x13\x1b\x4e\x0f\x35\xa4\xa7\x43\x17\xb6\x9e\x27\xba\xa1\x5d\x93\xf6\xf8\xa5\xb6\x50\x1a\xc2\x59\x73\xd8\x69\x8b\x08\xb1\xe5\x62\x4e\xfd\xb1\xdd\x9f\xe9\x14\xfb\x97\xed\x9a\xd7\xdc\xae\xe9\xef\xba\x59\xd3\x1f\xdb\xaa\xe9\x3b\x36\x6a\xfa\x5f\xb6\x69\xde\xf4\x36\x4d\x7f\xcb\x4d\x9a\x06\xb5\x74\xb6\x68\xfa\xdb\x6c\xd0\xf4\xed\xc7\xf0\x9b\x8d\x87\x77\x69\xf0\xf1\xed\x94\xe2\x7f\x91\xed\x9a\xfd\x02\x3b\x21\x26\xbf\xdb\x1e\xce\xba\xdc\x8e\xa0\xf9\xc7\x2a\xb7\x73\xad\xdd\x96\xea\x71\xbb\xdb\xb3\x86\xd9\xa9\x20\x4f\x88\x49\x67\x5b\x48\x88\x89\x75\x9b\x09\xdd\xb2\x20\x8f\x00\xec\x6c\x35\xa1\xaa\xaa\x45\x88\xc9\x8d\x1d\x21\xd6\xbb\x6f\xad\xc9\x33\xd8\xe4\xe0\x6d\xb2\x34\x4d\x93\x3c\xcc\xa7\x5a\xc1\x9e\xbd\xa9\x09\x32\x22\x09\x23\x09\x61\x7a\x39\x9f\x3d\x43\xdd\x1e\x43\xd3\x04\x87\x89\x87\x43\xa6\x57\xff\x31\x13\xc1\x21\x29\x78\x26\x6b\x06\xd5\xb5\x81\xb6\x24\x12\xc5\xbe\x4f\xa2\x48\x96\x15\x52\x95\x83\xcc\x44\x28\x4f\x83\x80\xd1\x58\xaf\x2b\xb4\x25\x91\x3c\xf5\x32\xc2\xbd\x5c\x2f\x43\x64\x26\x12\xc4\x69\x18\x50\x9c\xeb\x45\x8a\x7a\xa9\xe9\x4d\x57\x29\x12\xf6\x74\xcd\x2a\x45\x38\xfa\x52\xa6\xe8\x86\x72\x22\xba\x73\x99\x22\xd1\x64\x2c\x2f\xd2\x63\xc6\x30\x33\xa2\x5f\xca\x14\xdd\x7c\x6e\x44\xb7\x2d\x53\x64\x54\x4e\x37\x3f\xa2\xa3\x65\x8a\x7c\xea\x2e\x53\x24\x86\xf1\xbb\x94\x98\xb2\x25\xf2\x2f\x92\x2d\xfd\x4b\x1f\x6e\xb9\xd9\x83\x2d\x9f\xe9\xc8\xca\xf5\x93\x28\xf9\xa8\xe9\xae\x42\xf4\x4b\xbd\x83\xd7\x70\xd7\x4d\x77\x93\xef\x21\x3b\x3f\x9f\x5f\x4d\xd4\x8f\x53\xc4\x56\xa7\x17\x67\x7c\x51\xad\xfb\x77\xf2\xe8\xc7\x67\x5a\x7e\xa0\x94\x52\x4b\xa2\x47\xde\xdb\x04\x84\x32\x52\x24\x90\x57\xe4\x31\xa1\x8c\x13\xb2\x37\x1d\xc2\xc5\xd8\x8f\x83\x20\x81\x32\x83\xc4\xe7\x45\x14\x66\xb9\x9e\x1a\x0c\x1a\xa4\x61\xe6\x15\x69\x56\xc0\x05\x08\x59\x90\xfb\x29\x29\x4c\x88\x79\x92\x86\x79\xca\x42\xb8\x3d\x1b\xd3\x24\x4f\xd3\xcc\x89\xd8\x4f\xc2\x28\x23\x61\x0a\xe9\x8c\x1f\xd0\x34\xf4\xa9\x09\x71\x98\x14\x18\xe3\x02\x38\x4e\x23\x2f\xcc\x3d\x9c\x38\x11\x27\xc4\x2f\x28\x61\x70\xe5\x36\x2b\x70\x12\x14\x49\x6a\x42\xcc\x52\x9c\x85\x3c\x07\x8e\x73\x16\xe5\x14\x63\xea\x44\x9c\x53\x2f\x66\x4c\xca\x98\xf9\x9e\xef\x91\xc0\x28\x63\x4c\xa8\x1f\xa6\xf2\xce\x88\x20\x8c\xbd\xa8\x48\xb9\x13\x31\x09\x7c\x4c\xc3\x14\xee\x8e\x08\x38\x0f\x52\x42\x33\xa3\x28\x42\x2f\x8b\xf3\x0c\x2e\x10\xcf\xc3\xa2\x48\x03\x4e\x9c\x88\x63\x92\xf2\x30\x8f\x41\x14\x05\x89\x53\x9a\x44\x46\xe5\x51\x2f\xe7\x29\x96\x97\x57\xf8\x29\x8e\x92\x28\xc5\x6e\x19\xa7\x79\xe6\x45\xb2\x42\x25\x09\xb3\x18\x13\x3f\x34\x21\xce\x70\x92\x16\x58\x32\x90\x15\x51\x42\xa2\x24\x70\x22\xe6\x41\x92\x46\x49\x06\xb2\x4b\x78\x81\x03\x96\x1b\x65\xcc\x8b\x94\x07\x31\x85\x6b\xc4\x7d\x1a\x14\x24\xe4\xbe\x13\xb1\x57\x64\x38\xc9\x33\x68\x40\x53\x9a\xe5\x61\x6a\xe4\x98\x04\x5e\xc6\x70\x96\xc1\x25\xed\x31\xcb\x92\x2c\x0a\xdd\xca\xcb\x79\x42\xb2\x08\x1c\x24\x4c\x48\xea\x91\xd8\x88\x38\x60\x71\x40\x03\x06\xef\x08\x11\x67\x11\x0f\xa8\x9b\xe3\x30\x4b\x3d\x96\xe4\xc0\x49\x9a\x07\xb8\x48\xf3\xc0\xe8\xd2\x51\x91\x50\x9a\x03\x62\xea\x63\x1c\xfa\xa9\x9b\xe3\x84\xfa\x3c\xc4\x21\x01\x97\xe6\x51\x94\x17\xcc\xec\x20\xd4\xc7\x59\x14\x41\x86\x4f\xf2\x34\xf0\x09\xf6\xdc\xb1\xc2\xf3\x7c\x12\x67\x54\xde\xf9\x5e\xa4\x04\xfb\x46\x73\x4b\x8b\x30\x89\x8b\x4c\xd5\x37\xe5\x85\xc7\xb9\xdb\x2a\xb2\x88\x7b\x5e\x5a\x80\xe1\xfb\x39\xa3\xb4\xc8\x8c\x56\x91\x87\x2c\x4e\x70\x00\x88\x13\xdf\x63\x2c\x26\x6e\x51\x78\x51\xc6\x22\x3f\x94\xd7\xbb\x78\x9e\x4f\x89\xd9\x41\x70\x40\x12\x92\xc8\x77\x2f\x8f\x79\x3c\xe2\xb1\x5b\x14\x24\x4e\x63\x8f\x51\x08\x2e\x41\x94\x13\x52\x14\x46\x97\x26\x1c\x0b\x31\x81\xc8\xc2\x8c\x44\x59\x42\x22\x27\xe2\x20\x27\x59\x94\x17\x60\x15\x21\xcb\x02\xc2\x78\x6e\x8c\x15\xbe\x4f\xbd\x1c\x83\xc8\x92\x3c\x09\x53\x3f\x2f\x9c\x88\xa3\xd0\x63\xb1\x1f\x06\xd2\x41\x58\x11\xf9\x39\x37\x9b\x5b\xc4\x3c\x96\x42\xdc\xf6\xb3\x38\x4e\x09\x73\x87\x4d\x8a\x33\x92\x25\x44\x46\xb7\x98\xe7\x8c\xf3\xc8\x84\x38\x21\x31\x21\x99\x14\x19\x0e\x28\xf1\x43\x3f\x75\x22\x66\x24\x2d\x38\x65\x32\xce\x66\x05\xf6\xfc\xc8\xe8\x20\x8c\x62\x16\x45\x01\x70\x9c\x66\x01\xf1\x3d\xcf\x1d\xdd\x32\x12\xa4\x34\x8d\x3d\x88\xb3\x5e\x41\x93\x38\xc1\xc6\xe8\x16\x47\x59\x88\x19\xc8\xd8\x8b\xc2\x20\xe5\xbe\xdb\x2a\x72\x9c\x10\x4e\x71\x02\x88\x23\x5e\x84\x04\x1b\xc7\xbc\x3c\x4a\x12\x2f\x22\xa0\x8b\x30\x8c\x42\x96\x8c\x78\x5e\x11\x78\xdc\x0f\xa5\xec\xc2\x38\xc6\xc4\x23\xcc\x68\xc7\x5e\xc4\x98\x27\x7b\xe6\x93\x34\xcd\x71\xea\x56\x1e\x4e\x58\x90\x61\x0c\x61\x33\xa5\x39\xc9\xbd\xcc\xc8\x31\xe6\x7e\x1c\x65\x9e\xb4\x63\x1c\x60\x96\x86\xee\xe8\x46\xe2\x80\xc6\x71\x00\x76\x9c\x17\x94\xf3\x34\x49\x4c\x88\xfd\x20\xf5\xd2\x2c\x85\x9e\x71\x9c\xa4\x01\x1d\x31\x37\x3f\xc1\x99\x97\xa5\xa0\x94\x2c\xcc\x92\x90\x45\xbe\x31\x1e\xf3\x9c\x32\x16\x40\xd8\xe4\x7e\x80\x29\xcb\xdc\xe6\x16\xa6\x49\x96\xb1\xa0\x90\x23\x43\xe4\x73\x3f\x36\x22\x8e\x28\xe1\x51\x21\x83\x55\x1e\xa5\x24\xa5\xcc\x2d\x8a\x38\xa0\x05\x25\x1c\x1c\x24\xcc\x79\x91\x12\x73\xac\x88\x29\x0b\x23\x5f\x8e\x34\x81\x8f\x63\x52\x44\x6e\xab\xa0\x41\x46\x63\x8a\x65\x26\x84\x0b\x8f\xa5\xb1\x31\x6c\xd2\x2c\x8b\x3d\x22\x95\x87\x59\x14\xf8\x09\x77\xe7\x6e\x89\x97\xf2\xa2\x28\x98\xcc\x22\x23\x1f\x73\x62\xb4\x0a\x16\x84\x5e\x94\x71\xf0\xbc\x9c\x53\x92\xe6\xdc\x9d\xbb\xa5\xbc\x48\x98\x5f\xc8\x91\x81\x64\x51\x9c\x60\x73\x5e\x11\xc5\x38\xa6\x85\x1c\xc2\xfc\x98\x84\x3e\x71\x2b\x2f\x63\x24\xf6\x79\x06\x32\xe6\x8c\x44\x11\x4e\x8c\x32\xce\x31\x8d\x52\x2a\x87\x26\x22\x0c\x89\x74\x27\x01\x87\x89\x08\xcb\x59\x9c\xe7\xe0\x20\x59\xce\x3d\x9e\x62\x63\xd8\x2c\xc2\x38\x0f\x8a\xb8\x50\x83\x2e\xcf\x71\xec\xb6\x63\x2f\x2a\xbc\x28\x96\xf9\x42\x4c\x70\x1c\x15\xa9\xd1\xa5\x3d\x16\xf9\x71\x9e\x81\x83\x30\x92\xd1\x84\x32\xf7\x08\x82\xb1\x5f\x24\xd4\x0b\xd4\xc4\x5d\xe2\xe5\xcc\xc8\x31\x4e\x63\xec\xa5\xbe\x8c\xc7\x3e\xce\x82\x18\xbb\x65\x4c\x68\x9e\xc6\x71\x11\x4a\xab\xf0\x82\x38\xa7\xc6\x78\xec\x93\x8c\xb1\x34\x06\xab\x08\xbc\x2c\x26\x41\xe2\x76\x10\x3f\x4b\x78\xca\x3d\x10\x05\x0e\xb3\x24\xe5\xa9\x51\x79\x81\x8f\xf3\x28\xce\xa0\x67\x49\x86\x3d\x2f\x0f\xdc\x76\x1c\x64\x59\x98\x07\x32\xf1\xce\x52\x9f\x07\x24\x35\x0e\x4d\x22\x5d\x21\x49\x02\xc1\xaa\xc8\xa2\x30\xe6\x22\xbc\xba\x62\x45\x91\xa5\x51\xc1\xe4\x20\xc9\xf2\xa8\x60\xdc\xc8\x71\x94\x05\x01\x4e\x28\x20\x0e\x58\x10\x87\x14\xc7\x6a\x12\xf5\xad\xe3\xd8\x6a\xfb\x5e\xf8\xea\xba\x27\x54\x6d\xd7\xa0\xbd\xea\x9c\x50\xfd\xe5\x7a\x27\x54\x43\x4c\xb6\x5b\x3a\x30\x2c\x47\xdc\x7c\xf5\xd1\xeb\x2e\x1d\x44\xcc\x4b\x78\x3d\xe1\xee\xa7\x59\x96\x78\x96\xa5\x83\x34\x8d\x62\xc6\xe5\xf0\x4b\x83\x8c\xb1\xb8\x9b\xba\x38\x88\xf8\x59\xc4\x0b\x3f\x86\x48\x56\xf0\x24\x28\xa8\x88\x64\x26\x48\x16\x06\x45\x11\xfa\xe0\x05\x61\x81\x73\x3f\x2a\xb6\x9d\xd5\x0f\xb1\xc7\x43\x22\x83\x0f\xcb\x79\x44\x49\x6e\x59\x3a\x48\x52\x2f\x8c\xa8\x34\x48\x92\xfa\x3c\xca\x70\xb1\x25\x11\x5c\x50\x3f\x4f\xa4\xcd\x17\x69\x80\xd3\x3c\xb2\xf4\x24\x4c\xb9\x97\xe5\x32\x0d\xc2\x7e\xcc\x09\x8e\x93\x5d\x96\x0e\x6e\xfa\x1c\xe9\x36\xa5\x61\x01\xce\xb3\x57\x7e\x7d\x84\xed\xa5\x5f\x1f\x11\x7b\xed\xd7\x47\xbe\xbd\xf8\xeb\xa3\xc0\x5e\xfd\xf5\x51\x68\x2f\xff\xfa\x28\xb2\xd7\x7f\x7d\x14\x5b\x0a\xc0\xca\x0e\x42\x79\x58\xe3\x3e\x70\xf9\x7c\x2e\x9f\x0f\x0f\x7b\x48\x19\x40\x73\xe3\x11\x28\xf9\x7c\x2e\x9f\x5b\x9a\x13\x68\x4e\xac\xcd\xc9\x5c\x3e\xb7\x34\xf7\xa1\xb9\x6f\x6d\xee\xcf\xe5\x73\x4b\xf3\x00\x9a\x07\xd6\xe6\xc1\x5c\x3e\xb7\x34\x0f\xa1\x79\x68\x6d\x1e\xce\xe5\x73\x4b\xf3\x08\x9a\x47\xd6\xe6\xd1\x5c\x3e\xb7\x34\x8f\xa1\x79\x6c\x6d\x1e\xcf\xe5\x73\xc3\xb6\xbe\x2d\x8b\x1e\x4b\xcb\x30\x21\x67\xd2\x28\xfa\x15\xf7\x60\xcb\xad\x34\x08\x53\xab\x54\xda\x82\xa9\x55\x26\xed\xc0\xd4\x2a\x93\x26\x60\x6a\x95\x4b\xf5\x9b\x5a\xe5\x52\xf3\xa6\x56\x5c\x6a\xdd\xd4\x8a\x4b\x85\x9b\x5a\x15\x52\xd9\xa6\x56\x85\xd4\xb3\xa9\xd5\xa9\xd4\xb1\xa9\xd5\xa9\x54\xaf\xa9\xd5\x4c\xaa\xd6\xd4\x6a\x26\xb5\x3a\x37\xd5\x1d\x74\x1d\xdd\xdd\xf2\x3a\x54\x6b\x3d\xed\x9a\xfe\xab\x52\xd6\x1e\xb6\x1d\x37\x7f\x00\x23\x78\xbd\x7c\x36\x04\xd9\xa2\x50\xb4\x24\x23\x44\xf0\xaa\xac\x4f\x1b\xe8\x55\xa3\xd1\xd7\x88\xbc\x05\x48\x73\x2d\xd7\x16\xc7\x5c\xe2\x50\xe7\x0b\xfa\x38\xe0\xd4\xfc\xb5\x2a\x50\x1f\x1d\xa1\xff\x80\x6a\xc4\x76\xe2\x75\x49\xe7\x9d\x2a\x54\x6f\x66\x4d\x9d\xe3\xcd\xd8\x59\x3c\x05\x36\xd7\x5a\xb8\xcf\xe3\x49\xa8\x59\xa7\x0a\xf6\x4c\x16\xff\xd5\x8b\x57\xcf\xa1\x44\x71\x5d\x0e\xb8\x03\x47\x07\x70\xb0\xe9\xf5\x1d\xea\x82\xc5\xae\x13\xa6\x12\x72\xde\xe1\x62\x3e\xe4\x62\x66\xe2\x62\x3e\xe4\x62\xa6\x73\xd1\x85\x8b\x87\x70\x96\x4a\xc6\xba\x4a\x2d\x35\x73\x3e\x68\xb5\xb7\x77\x29\xbe\xdd\x6a\x14\x6f\xa7\x51\xdc\x6a\x14\x6f\xa5\x51\x3c\xeb\x14\xf8\x9e\xd5\x55\xb8\xb5\xc2\xdc\x73\x55\xab\x5b\x13\x12\x56\x12\xee\x82\xc1\x3e\xe6\x44\x53\x69\x8d\x2f\x1a\x55\x29\x9e\x77\xd8\x98\x1b\xd8\x98\x99\xd8\x98\x0f\xd8\x98\x75\xd8\xe8\x22\x8c\x06\xf8\x48\xe4\xd4\xe9\x4e\xb5\xc3\x5d\xa1\x24\x6e\xd5\x1e\xbb\xd4\xfe\xaa\x8c\x65\xe4\x32\x0e\xcc\x3d\xc8\xb9\x82\x74\x9c\x09\x97\x90\x38\xd2\x02\x89\xf5\x56\xe8\x1a\x56\x32\x80\x8d\x99\x45\x1f\x76\x5e\xc3\x8e\xf2\xd0\x46\x9a\xb9\x10\x5a\x19\xf7\x47\xae\x2e\x78\x1b\xca\x66\x12\x7c\x06\x35\xdb\x04\x1e\xa1\x49\x6f\x0f\xdd\xaf\xbd\xb3\xf9\xe5\xff\x47\x18\xdd\x45\x83\x6d\xd3\x43\x3e\xc4\xbf\xb5\x06\xc7\xd9\x10\xff\xee\x37\xde\x62\xe1\x02\x5f\x97\x0b\x90\xe2\x96\x3c\x48\xed\x0c\x39\x90\x9a\x18\xd0\x37\x23\x6d\x47\xc5\x57\xa5\x4d\xbd\xed\xa8\xf7\xaa\x34\x31\x67\xaf\x89\xaf\x8a\xe2\xcf\xd0\x6d\x54\xcc\x54\x59\x7c\xf1\xc5\x7c\x8e\x4f\xb6\x91\xbe\xcf\xe7\xa2\xcd\x5c\xb5\x11\x5f\x4e\xe7\x8e\x62\xfa\x33\xa8\xa6\x2f\x50\xa7\x92\x0e\x7c\xce\xe4\xe7\x54\x7d\xb6\x37\x9f\x43\x73\x41\x25\x95\x24\xe1\x73\x26\x3f\xa7\xea\xb3\xbb\x24\xff\x4c\xd6\xe4\x57\x01\x47\x8e\x2b\x6c\x2e\xcb\x4b\xef\xc9\xe2\x07\x6c\x56\x57\xec\x57\x0f\x3b\x35\xfb\x67\xda\x2d\x12\xac\x1e\x75\x9c\x95\xf9\xe1\x6d\x6a\xd2\x20\x52\x34\x67\x5d\x9a\xf3\x0e\xcd\x59\x97\xe6\x5c\xa7\x39\xdb\x86\x26\x96\xfd\xe4\x6a\x68\x90\xe7\x4d\xb8\x1c\x14\x68\x5d\xf6\x7f\x56\x5f\x5a\xa1\x3d\x0c\xda\x87\x82\xa6\x5f\x3f\x93\x65\xb8\xdd\x34\x65\x3f\x15\x70\x4d\x73\xd6\xa5\x39\xef\xd0\x9c\x75\x69\xce\x75\x9a\xb3\x96\xa6\x31\xeb\x1c\xbf\x87\xc0\xcc\xeb\x8f\x50\x7d\xe9\x47\xfb\x61\xaa\x1f\xc1\x79\x7f\x2c\x5d\xc7\xa8\x7e\x84\x60\xf0\x63\x69\x0b\xa1\x1f\xe0\xa2\x04\x01\x33\x9b\x37\x2c\x9a\x9c\x52\x02\x0a\x82\xb3\xb6\x2f\x32\x5c\x54\x58\x0f\x17\xb3\x6d\x62\x55\x4b\x56\xfc\x2b\x24\xe2\xa6\x59\x01\xa9\x6c\x66\x22\x98\x5d\x8b\xe2\x8f\xc6\xd0\xd3\xa7\xf8\x63\x69\xa2\xf8\x63\x79\x1d\x8a\xe6\x60\xd7\xa7\xf8\xca\x48\xf1\x95\x89\xa2\xd9\xda\xfa\x97\x57\x58\x48\xc2\xe4\x45\xed\xf6\x00\x68\xe5\x0e\xe6\x41\xea\xa8\xb4\x2f\xc3\x23\xb0\x48\x74\x16\x6b\x5c\xdb\xb1\xf9\xf3\x79\xce\x2a\x8e\x2e\xdd\x6f\xfa\xe2\x0f\xde\x37\x8d\xf6\x0d\xaf\x9b\xa7\x26\xb6\x61\x00\x2a\x4c\x6d\xe0\xc5\xb6\x30\xb5\x81\x77\x68\x6e\x6a\x03\xaf\xd0\xdc\xd4\x06\x5e\xc9\x27\xf9\x1c\xae\xef\x98\xdb\xee\xef\x80\x77\xfa\x49\x3e\x03\x28\x29\x3a\xae\x4b\x2e\x1f\x08\xcd\x7a\x13\x88\xc0\x94\x99\x78\x84\x29\x85\xcc\xc4\x23\xcc\x5e\xa4\xa6\x36\x30\x79\x91\x9a\xda\xc0\x3c\x09\x33\xb5\x81\x69\x92\xc1\x6d\x06\xe2\x0f\xa6\x5d\x26\xd2\xd4\x2b\x62\x15\x06\x4c\xdc\x4c\xa4\x1c\x84\x65\xed\xb7\x23\x8e\x94\x46\x35\x4c\x76\x6e\xf4\xb2\x12\x6d\xce\x10\x32\x83\x47\x60\xff\x6c\x90\x0d\x3c\x6a\x8a\x51\x4c\x1e\x81\xdd\x33\xc9\xec\x23\x4f\xe7\x96\x0d\x99\xed\xe3\xd1\x66\x19\x25\x41\x10\x51\x3a\x24\x88\x5b\x82\x20\x9e\x54\x11\xec\x44\x82\x74\x9c\xa0\x36\x2f\x29\x09\x12\x08\xb1\x43\x82\xa4\x25\x48\x66\xf5\xb8\x34\x01\x78\x2d\xbc\x8e\x13\xd4\x66\x32\x25\x41\x5f\x10\xcc\x87\x04\xfd\x96\xa0\x2f\x68\xe5\x8a\xa0\x3f\xe2\x0e\x7d\x3c\xda\xdc\xa7\x24\x18\x08\x82\x7c\x48\x30\x68\x09\x06\x82\x16\x57\x04\x03\x9d\x20\x1f\x27\xa8\xcd\x96\x4a\x82\xa1\x20\x58\x0c\x09\x86\x2d\xc1\x50\xd0\x2a\x14\xc1\x50\x27\x58\x8c\x13\xd4\xe6\x57\x25\xc1\x08\x5e\x2a\x86\x04\xa3\x96\x20\x64\xef\xa7\x8a\x60\xd4\x79\x89\x18\x27\xa8\xcd\xc8\x4a\x82\xb1\x20\x38\x1b\x12\x8c\x5b\x82\xf0\xda\xa4\xc6\x64\x01\xef\x4a\x02\x3e\xf9\xec\xc5\x97\x4b\x71\x6e\xee\x52\x1c\x2c\x92\x7b\x75\xb3\x99\x40\x06\x75\x58\x7c\xef\xa6\xaf\xc5\x31\x93\xc1\xff\x94\x17\xe3\x9c\x2c\x17\x1f\xf8\x4a\x56\xf9\x45\xd5\x12\xf9\xe4\x20\x2d\x2b\x91\xa0\xe4\x88\xc1\xfe\xec\x94\x17\xcb\x15\x57\xdb\xa9\x07\x5a\xd3\xce\x9a\x68\x6b\x77\xd5\xf2\xb5\x4f\x6e\xe2\x22\x9e\x3f\xea\x15\x3c\x3a\x9f\x4d\x7d\x90\xbb\x08\x7b\x24\x38\xf2\x55\x9d\xe2\x2f\xa7\x9b\xac\x47\x95\x42\x4c\x76\x3d\xdd\x24\x9a\x8c\x9c\x6e\xea\x6c\x6b\x18\x9c\x6e\x0a\x31\xf9\x72\xba\xe9\xa6\x4f\x37\x09\xad\x6c\x77\xba\xc9\xa8\x9c\xce\xe9\x26\xa9\x20\xe7\xe9\x26\x79\x8e\x76\xcb\xd3\xdf\xfe\x1f\xfa\x3c\x13\x5f\x64\x07\x29\x5b\xf3\x28\xe8\x3d\x38\xcb\xc3\x3e\xe8\x87\xf3\xf7\x79\xd1\xfb\x31\x2b\xcf\x67\x7c\xf5\xbb\x1c\x89\xd2\x58\x85\xef\x82\x43\xf9\x40\x32\x06\x9f\x75\x7e\xfe\x15\x8e\x4e\xbd\xda\xea\x4e\x20\xd8\x3c\x73\x02\x5d\x6f\xe0\xb4\xdf\xc6\x8f\x42\x1d\x1d\xa1\x67\x7c\x75\x06\xa3\xe8\xc9\x6c\x59\x66\x1c\xe1\xfe\xb5\x29\xa2\xf9\xb3\x13\xdc\x3d\xbb\x14\xc6\x53\x14\x24\x53\x14\xe0\x29\xf2\xfd\x29\x22\xe1\x14\xe1\x78\x8a\x92\x29\x42\x58\xdb\x6a\x14\xd2\x29\x0a\xbd\x29\x0a\xc8\x14\xf9\xc1\x14\x91\x68\x8a\x30\x9d\x22\xec\x4d\x11\xd1\xe1\x92\x29\x0a\xf1\x14\x05\xfe\x14\xf9\xe1\x14\x91\x78\x8a\x70\x32\x45\x58\xe0\xd7\xe0\x22\x6f\x8a\x42\x32\x45\x41\x30\x45\x7e\x34\x45\x91\x3f\x45\x61\x38\x45\x41\x3c\x45\x7e\xa2\x01\xfa\x78\x8a\x88\x3f\x45\x38\x9c\xa2\x78\x8a\x50\x44\xa6\x28\x0c\xa6\x28\x80\xab\x05\x74\x40\xc1\x09\x99\x22\x1c\x4c\x51\x24\x00\xf1\x14\x85\xfe\x14\x05\xe1\x14\xf9\xb1\x06\x48\x92\x29\x22\x78\x8a\xb0\x20\x39\x45\x88\xd0\x29\x22\xde\x14\x61\xc1\x8e\x04\x7b\xeb\x90\x2b\x31\xcb\x95\x74\xe5\x2a\xb8\x10\x72\x14\xfd\x26\xe2\xf3\x14\xa1\x50\xe7\x56\x11\x16\xdd\x12\xdc\x02\x43\x9e\xce\xa5\xaf\x04\x27\xb8\x12\x00\xd1\x14\xe9\xdd\xc5\x91\x94\x87\x10\x30\x70\xef\x77\x15\x21\x14\x2a\x04\x2c\xe4\xe7\xc7\x52\xb0\x61\xd8\x93\x57\xe0\x29\x6d\x85\x52\xfb\x81\x4e\x41\xa8\x46\x98\x86\x2f\x54\x1a\x49\xb5\x87\xba\x0e\x85\x0a\x84\x3d\x08\xbb\x10\x3a\x14\x82\xad\xb3\x9a\xce\x8d\x50\x17\x67\x17\x73\x06\xd7\xa4\x88\xa4\x72\x3d\x2b\x8b\xc1\x0d\x4f\xe0\x05\x3f\xbc\xfc\xe5\xc5\xa3\x1f\x1e\xca\x3b\xa5\x84\xc4\xc8\x14\x41\xe7\x85\x84\xa8\xb0\x48\xa5\x26\x90\xae\xb2\x54\xac\xd4\x49\x94\xf5\x82\x40\xa8\x4e\xff\xc5\x77\x4f\x5f\xf3\x35\x62\x8b\x5c\xd5\x46\x3f\x07\x95\xca\xfb\x34\x0c\x7c\x08\xf8\x5f\x9e\x75\xf5\xd9\x4b\x29\xbd\x8d\x77\x17\x5e\x46\x28\xf1\xbc\x69\xff\x59\xfd\xae\x20\x41\x0c\x00\xa4\x03\x40\x3d\x8f\x0c\x40\x7c\x0d\x64\xf8\x34\xd0\x9f\x1a\x08\x84\x5d\x02\xc4\x40\x20\xea\x32\x69\x02\x89\x7b\xfd\x30\x10\xa2\x1d\x46\x86\x28\x92\x3e\x95\x21\x0a\xa6\x83\x98\x00\xd2\xbe\xb4\x86\x20\x59\x8f\xcc\x00\x20\xef\x77\x65\x08\xc2\x35\x90\x21\x85\xa2\xcb\xe5\xb0\x39\x75\xb5\xc6\x74\x54\x1f\x84\x8e\x10\xf0\xe9\x88\x55\x05\x7d\x22\x06\xbb\xa0\x6e\xbb\x89\xe8\xa8\x61\xc6\xd4\x65\x98\x94\x8e\xea\x3b\xa1\x23\xfa\x66\x7d\x26\x0c\x26\xd1\x27\x33\xe4\x24\xa3\xa3\x1a\xcf\xe9\x88\xd5\x70\xea\xb6\xee\xa2\x4f\xc3\xa0\x79\xab\xba\x54\x94\xc0\x66\x41\x12\xed\xa9\x45\x99\x7e\x07\xc4\x48\x3d\xe8\x62\x31\xf5\x31\xd4\x41\x8c\x36\xa1\xf3\x69\x78\x1e\x77\xd9\x70\xf8\x06\x76\x98\x7f\xd2\xe7\xd4\x1a\x28\xb0\x43\xa3\x69\xb7\x33\x06\xab\xe8\x74\xc6\x1a\x27\xb0\xc3\x7e\x79\x0f\xc4\x16\x2a\xb0\x39\x14\xd0\x51\x51\x60\x3a\x2a\x0a\x42\x47\x55\xef\x53\xb7\xda\x82\x1e\x0a\x5b\xac\x70\x89\x3b\xa2\x2e\x13\x8e\xe9\x88\x32\x28\x1d\x91\x64\x42\x47\x4d\x8b\x51\xb7\x42\xd3\xbe\xbc\x0d\x83\x47\x9f\xca\x10\x24\xa7\x2e\x95\x72\x3a\xe2\x42\x45\x5f\xa3\xfa\x1d\x55\xd3\xb1\x2c\x23\xf0\x3c\x1a\x78\xd8\x1a\x41\x14\x8c\x35\xcd\x68\x14\x68\x8b\x20\x35\x11\xcf\x44\x24\xe8\x12\x31\xc2\x84\x5d\x3c\x46\x66\xa2\x2e\x1e\x23\x4c\xdc\xc2\x18\xa8\xe8\xc1\xd6\xd8\x3c\xe9\x93\x30\x20\x61\xfd\xee\xd8\x13\x0e\x45\xc8\x80\x24\xeb\x08\xd6\x00\x90\xb7\x00\xd6\x00\x22\x59\x30\x34\x2e\xfa\x5a\xb1\xe6\x5d\x4e\x61\x62\x3a\xd2\x0b\x42\x5d\xd2\xf6\xfb\x24\x4c\xb6\x41\x7b\x7a\x37\xd9\x06\x1d\x17\x78\x44\x47\x0c\x35\xa6\xe3\x86\x4a\xe9\x88\x52\x12\xea\x50\x0a\xa3\x6e\x5f\x4a\xfb\x1c\xd8\x03\x89\xd3\x55\x72\x3a\x62\xc4\xbc\x2f\x53\x7b\x3c\xb1\x5a\x90\xfe\x02\x62\x78\x8a\xb7\x70\x7b\x4c\xb6\x70\x26\xec\x6f\xe1\xf8\x38\xd8\xc2\x9e\x71\xe8\x74\x7d\x1c\x8d\xb9\x24\x8e\x47\x82\xa1\x9e\x82\x9b\x31\x24\x63\xe1\x12\xb3\x31\xbf\xc7\xe9\x16\xd1\x12\x67\x63\x81\x0c\xe7\x5b\x04\x4b\xcc\xb7\x08\x65\xb8\xe8\x6b\xc8\x68\x2e\x63\xa1\x02\xe3\x31\x0f\xc5\x64\x0b\x07\xc1\xfe\x88\x97\xe1\x60\x9b\xc0\x16\x6e\x11\x76\x70\xe4\x8c\x6e\x38\xde\x22\x2c\x61\xba\x85\x2f\xe2\x64\x0b\xaf\xc7\x6c\x8b\x68\x8a\xd3\xb1\x08\x86\x33\x57\x08\xc3\xf9\x58\x58\xe0\x5b\x84\x51\x5c\xf4\x22\xd4\x2e\xa9\x0a\xf6\x02\x4b\x30\x32\xb3\x4c\x3a\x52\xc1\xd6\x14\x45\xe2\x36\x61\x0f\xb4\xe7\x9e\xe1\x79\xd8\x53\xce\x10\x22\xea\x08\xcd\x44\x23\xee\x40\x8c\x0f\xc7\xf6\xdc\xa4\xa5\x62\xcb\x4c\xea\x9e\xda\xb2\x92\x96\x8b\x21\x9f\x59\x4f\x9a\x43\x88\xbc\x23\x2d\x5b\x6a\x02\x18\x2c\x69\x89\x6a\x6b\x96\x80\xab\x7b\x98\x8e\xb1\x4f\xa8\xdd\x50\x7c\x3a\x66\x28\x01\x1d\x53\x74\x48\xdd\x9d\x8f\xa8\xdb\x94\x62\xed\xf9\xf0\x29\xa5\x76\xd1\x25\xd4\x25\x3a\x46\xc7\xcc\x2b\xa5\x6e\x27\xc8\xa8\xdb\x74\x72\x3a\x66\x18\x9c\x8e\x39\x41\x41\xc7\x4c\xbc\x93\x56\x58\x8c\x00\x8f\xb8\x2b\x26\x23\x16\x8a\xfd\xd1\x90\x81\x03\xa7\xa5\xe2\x70\xd4\xe1\x71\x34\x1a\x35\x70\xec\x8a\xc4\x74\xd4\x13\x71\x32\x1a\x32\x30\x73\x78\x23\x4e\x47\xc2\x05\xce\x46\xa3\x16\xd6\xc3\x81\x81\x04\x1f\x89\xbd\xb8\x18\x0d\x49\x2a\xb5\x70\x76\x13\x3b\xfd\x0a\x93\xf1\xd0\xe2\x3b\x22\x07\x0e\x46\xdc\x1a\x87\xa3\xb1\x05\x47\x4e\x07\xc6\xf1\x68\x6c\xc3\x74\x24\xf8\xe0\x64\xd4\x03\x31\x1b\x09\x03\x38\x1d\x8d\x81\x38\x1b\x0d\x05\x38\x1f\x8d\x47\x98\x3b\x82\x1d\x2e\xba\xd1\x68\x97\xfc\x81\x7a\x92\xa4\x39\xb6\xd4\xd9\x27\xf6\x02\x4b\x2a\x51\x33\x6d\x78\xee\xb7\x18\x02\xb3\x21\x06\x76\x23\x0a\xbb\x12\x31\xe7\x10\x4d\x72\x6c\x22\x1f\x7b\x9d\xf4\xcf\x3e\x7e\xd6\x2b\x2a\xe6\x0c\xa2\xd5\xad\x39\x7f\x90\xcf\xcd\xb9\x43\x2b\x3e\xdb\x0a\x4a\x2b\x1e\x03\x8e\x5c\xf3\x52\x4b\xe6\x50\x9b\xb7\x39\x77\x68\x15\x6c\xe9\xbf\x53\xbf\x98\xda\xbb\x47\xe8\x18\xf3\x3e\x1d\x13\x40\x40\xdd\x2a\x0e\xe9\x58\x17\x22\x6a\xb5\x9f\x98\x8e\x19\x1f\xa5\x2e\xf9\x25\x5d\xe2\xb6\x24\xc2\x61\x1d\x29\x75\x69\x2f\xa3\x63\xd6\x97\x53\xb7\xfd\x72\xea\x76\xbf\x82\x8e\x79\x08\xf6\x46\x5c\x04\xe3\x11\x2f\xc4\x64\xd4\x0d\xb1\xef\x1a\x29\x9c\x16\x8e\xc3\x51\x17\xc1\x91\x37\xa6\x27\x1c\x8f\x46\x32\x4c\x47\xbd\x05\x27\xa3\xe1\x02\xb3\xd1\x80\x87\xd3\x91\x98\x89\xb3\xd1\xb8\x81\xf3\x91\xb0\x84\xb9\x23\x2e\xe1\xc2\x19\x36\x64\xf6\xe0\xee\x03\x1e\xf5\x4b\x4c\xec\x8e\x89\xfd\x11\xb7\xc7\xc1\x88\xe1\xe3\x70\xd4\x77\x70\x34\x1e\xdd\x62\x47\x78\xc3\x74\xdc\x79\x12\x67\xfc\xc0\x6c\x34\xfe\xe1\x74\x34\x88\xe2\xcc\x19\x44\x70\x3e\x1a\xa5\x30\x1f\x09\x53\xb8\xe8\xc6\x91\xdd\x92\x07\x63\x4c\xa9\xf9\xb5\xad\x90\x34\xdc\x18\x53\x86\xbb\xda\x76\x0d\x63\xc6\xa0\x00\x60\x3e\xc5\x98\x37\x34\x39\x9f\xe1\x79\x54\x23\xb0\x01\xc4\x2d\x83\x86\xa7\xba\xce\x6d\x29\x43\xcb\x9f\x25\x67\x68\x7b\x68\xa0\x90\xb6\x0c\x9a\x59\xc8\x3a\x00\xa6\x81\xc3\xea\x7b\x5c\x57\x8e\x01\x75\xd1\x11\x8e\x79\xce\xc1\xd5\x1e\xd3\x11\xe1\x12\xea\xd9\x0c\xc7\xa7\x6e\xc3\x09\xa8\xcb\x70\x42\x3a\x62\x17\x11\x1d\x91\x5a\x4c\x47\x4c\x8f\xd2\x11\xd5\x26\xd4\x26\x77\x46\x47\x74\x9a\x52\xb7\xd5\x66\x74\xc4\x6a\x72\x3a\xa2\x39\x4e\xdd\x86\x5b\x50\x97\xd9\x63\xcf\xe9\xb6\x18\x7b\x56\xbd\x62\x32\xe6\xd3\xd8\x1f\xf3\x49\x1c\x8c\x78\x35\x0e\xc7\x9c\x02\x47\x63\x91\x03\xc7\x23\xbe\xdd\x8c\x7b\x56\x35\xe2\x64\xcc\x81\x30\x1b\x89\x8f\x38\x1d\x8b\x20\x38\x73\x46\x28\x9c\x8f\x45\x18\xcc\xed\x83\x73\x31\x12\x21\x20\x3f\x70\xeb\x0a\x8f\x58\x1a\x26\x23\x9e\x8e\xfd\x31\x67\xc6\xc1\x98\xb3\xe2\x70\x2c\x54\x45\xf6\x50\x84\xe3\xb1\x60\x81\xa9\xdb\x5d\x92\x31\x87\xc7\xcc\x1a\x2c\x70\x3a\xe6\xcb\x38\x1b\x09\x17\x38\x77\x06\x4b\xcc\xc7\x42\x19\x2e\x7a\x01\x67\x97\xac\x40\xb1\x4d\x4d\x51\xa4\xc6\x69\xca\x0b\x64\x5b\x62\xee\xb3\xdf\x3e\x27\x26\xdc\x41\x2b\x11\x23\xfe\x50\xef\x8f\x29\x2b\x68\x9e\x0e\x71\xc7\x1d\x83\xb6\x8e\x8a\xc6\x6c\x40\x63\x6a\x88\x98\xd5\x64\x8d\x2c\xa7\xca\x40\x4d\x19\x80\x26\xab\xe1\xf3\x5c\x43\x3b\x7c\xca\x9b\xbe\x0e\x9f\x15\x1d\x29\x9b\x7a\xea\x54\x12\xa6\x6e\x25\x11\x6a\xe9\x91\x4f\x5d\xda\x09\xa8\xab\x3f\x21\x75\x5b\x5d\x44\xdd\x96\x11\x53\xbb\x3c\x28\x75\xd9\x45\x42\xed\xf6\xcc\xa8\x5b\xf5\x29\x75\xeb\x30\xa3\x16\x9b\xca\xa9\x5b\x45\x9c\xba\x6c\xaa\xa0\x6e\x53\xc6\xde\x88\x1f\x61\x3c\x62\x7c\x98\x8c\x78\x2a\xf6\x1d\x06\x88\x03\xa7\x9f\xe2\x70\xc4\x15\x71\xe4\x8d\xc4\xa0\xd8\xe9\x73\x4d\x06\x6b\xe1\x3d\xb1\x46\x6d\x66\xf3\x56\x9c\x8e\x84\x36\x9c\x39\xe2\x22\xce\x47\x62\x08\xe6\x23\x3e\x8b\x0b\x67\x70\x13\x23\xba\x85\x71\xec\x34\x25\x4c\x9c\x4e\x8b\xfd\x11\xbf\xc4\xc1\x88\x63\xe2\xd0\xe1\x99\x38\x1a\x89\x35\x38\x1e\x0d\x56\x23\x9e\x84\x93\x11\x1f\xc5\xcc\x11\x00\x70\xea\x8c\x5a\x38\x73\x86\x16\x9c\xdb\xfc\x1f\xf3\x31\x17\x2e\xba\xa1\x67\xf7\xa1\xdb\x60\x23\x35\xab\x81\x87\x0d\x43\xb7\x4a\x35\x0c\x83\xb6\x42\x6a\x6a\x16\x34\x49\x8e\xe9\x69\x68\xe9\x7e\x24\x51\x1a\xc6\xe8\x36\x65\x1a\x3e\xa5\x5a\x07\x4c\xc3\x74\xd3\xf7\x61\x53\xa6\x19\xf9\xf0\x69\xaa\x75\xc2\xf4\xaa\xae\xe5\x71\x86\x61\x5a\xca\x6d\x88\x95\xb7\x72\x33\xbd\xa4\x6b\x99\xef\xb0\xa7\x2e\x31\x60\x6a\x16\x2a\xa1\x2e\xfd\xfa\xd4\xd5\xc7\x80\x3a\x0c\x27\xa4\x2e\xe1\x45\xd4\xd5\x93\x98\xda\xc4\x43\xa9\xc3\xac\x12\xea\x52\x35\xa3\x2e\x8d\xa4\xd4\x61\x08\x19\xb5\x99\x79\x4e\x5d\x96\xcc\xa9\xd9\x62\x0b\xea\x50\x32\xf6\x9c\x5a\xc6\xd8\xe9\xae\xc4\xe9\xaf\xd8\x77\xfa\x0a\x0e\x5c\xee\x80\x43\xa7\x2b\xe1\xc8\xe9\x10\x38\x76\x45\x04\x35\xde\x18\x1f\x25\xce\x68\x81\x99\xcb\x63\x70\x6a\x09\x1a\x38\xb3\x05\xd9\xdc\xe9\xb9\x98\x3b\x83\x02\x2e\xac\x11\x11\x7b\x4e\xad\x63\xa7\x23\x62\xe2\xf6\x6e\xdf\x62\x69\x38\x70\x3a\x1a\x0e\x5d\x2e\x8c\x23\xab\x1f\xe2\xd8\x19\x19\x30\x75\x7a\x3f\x4e\x9c\xbe\x88\x99\x25\x58\xe1\xd4\xe9\x6e\x38\x73\x45\x07\x9c\x5b\xbd\x18\x73\x67\xe4\xc0\x85\x16\x1c\x76\x19\x53\xa9\x18\xe0\x89\x01\x61\x23\x9c\x61\x3c\xbe\xdb\x2e\x6e\x0c\xc3\xb1\x6c\x37\x0c\xc4\x0a\x9f\xe1\x51\x28\xf1\x11\x23\x1f\x51\xf3\xd0\x14\x84\x15\x27\xe6\x71\x86\x7a\x66\xfe\x93\xa6\xdf\xa6\x10\x2c\xf9\x34\x3d\x4a\x1b\xa4\x06\x3e\xb3\xbb\xf2\xb0\xc7\x30\xfc\x9a\xed\x84\x37\x42\x34\xb4\x29\x14\x13\x86\x47\xf5\xa2\x92\xb5\xe7\xf2\x31\x76\xc9\x54\xc1\x10\x97\xfe\x15\x8c\xef\xd2\xb5\xfa\x3d\x70\x09\x5b\xc1\x84\x76\xb1\x2a\x88\x68\xb4\xcf\xb1\xc5\xb4\xd4\x63\xea\x92\xa8\x82\x49\x6c\x5a\x52\xcf\x99\xdd\x4a\x15\x44\xea\xb2\x47\x05\x93\x99\x55\xae\x9e\xe6\x2e\x33\x52\x30\xdc\x65\xa2\x0a\xa6\xb0\x7b\x68\x9d\x11\x1b\x1d\x1b\xbb\x7a\x80\x89\x45\xc8\xd8\xb7\x59\x1c\x0e\x5c\xcc\xe2\xd0\xa5\x16\x1c\xb9\x84\x81\x63\x47\x17\x6d\xf1\x37\xb1\xab\x10\x33\x97\xa5\xe2\xd4\x19\x0f\x33\x97\x47\xe1\xdc\x6e\xdf\x98\xdb\x8c\x0e\x17\xe3\xde\xd5\xbe\xdc\x58\x21\xb0\x3b\x16\x60\x32\x6e\x70\xd8\x1f\xf3\x3e\x1c\x38\xbd\x0f\x87\xe3\x41\xa0\x56\xb6\xb3\xbb\xf1\x78\x50\xc2\x74\x3c\xb8\xe1\x64\x3c\x1a\xd4\xe6\xe0\xf2\x32\x69\x14\xd6\xa7\xd9\x58\x58\x93\x86\xe1\xe0\x93\x8f\x45\x9c\xda\x48\x80\x8a\x36\xb2\xcb\x8f\x7a\x5d\x83\x27\x6c\xfd\x7e\x8d\xaa\x19\xab\xd0\x9a\xcf\x79\x56\x41\x3d\xa2\x17\xdf\x3d\x7d\x8d\xca\xc5\x79\x7d\x4d\x44\x53\xd1\xe0\xc9\xb7\x2f\x7a\x17\x17\xb7\x07\x13\xa7\xa8\xdd\xf8\x0f\x17\x28\xaa\x2f\xf0\x59\x7d\x99\xea\x0d\x3d\xf5\xab\x04\x90\x5f\xea\xcf\xe2\xcb\x54\xeb\x4f\x9f\x73\xad\xaa\xd2\xf7\x0f\x5e\xc8\xc2\x58\x48\x16\x7e\x71\xdf\x51\x25\xa0\x9b\x0b\xaa\xe4\x17\xad\x4a\xca\x75\xaf\xa8\x72\x97\xd6\x7b\xcf\xaf\x9a\x12\x60\xef\xf9\x95\xa1\xf4\xdd\x7b\x7e\x55\xd7\xd5\x7b\xcf\xaf\xcc\x65\xf5\x04\x0d\xa9\xa2\x30\x42\x69\x59\xad\x11\xcb\xb2\xe5\x2a\x2f\x17\xa7\xa8\x5a\xa2\x67\x27\xd8\x88\xf7\xbb\x12\x4a\x01\xbd\xe9\xd7\x40\x36\xdd\x1d\x12\x46\xf6\xbb\x43\x5a\x74\xcf\x96\x02\xe1\xb3\x13\xfc\xa6\x7c\x8b\x0e\x10\x36\xd4\x28\x55\x74\x65\x79\xfe\x49\xdd\xbb\x37\x6d\x7b\x55\x8e\x4f\xfc\x67\xe2\x63\x74\xa0\xa1\x86\x3a\x7c\x7b\xe8\xf6\x00\xb1\xa1\x60\xe9\xb7\xeb\x35\x3f\x4b\xe7\x1c\xe1\x08\xad\x2f\xd2\xf7\xfc\xca\x20\xfe\xf5\x45\xfa\x23\xbf\x5a\x37\x2a\x68\xbf\xdb\x85\xb2\x78\x01\x40\x52\x34\xf5\x97\xfb\x08\x47\xcd\x37\xfb\x15\x2b\x27\x50\x71\x4a\xf1\x63\x16\xe4\xba\xc6\xae\x78\x79\xa3\x90\xbe\x55\x4c\x19\xf1\xba\xaf\x6e\x49\xcb\xea\x05\x54\x45\x39\xd6\x8a\xa0\x34\x78\x6d\x28\xa5\x41\x05\xd4\x68\x50\x64\xd8\xc6\x64\x35\x24\xb0\x5b\x4d\x97\x4e\xb1\x5a\x9e\x41\x80\x99\xf3\xa2\x42\x84\x82\x67\x08\xca\xe6\x86\x52\x38\x6f\x26\x25\x3a\x92\x77\x43\x78\x50\xc0\xb1\x36\xae\xc9\xe4\xd9\x09\x51\x36\xb8\x87\xf6\x1b\x09\xec\xa1\xbf\x20\x42\xdf\x42\x8d\x47\xb0\xad\x12\xfd\x05\xee\xb8\xd8\x9a\xbd\x55\x79\x3a\xdb\x9e\xbf\x00\xca\x77\xb6\x4c\xee\x75\xb8\x24\x14\x1e\x4b\x5e\xd1\x3e\x22\x81\x85\xe1\x3d\x03\xc7\x03\xb2\xa6\xca\xfe\xa2\x03\xe5\x22\xe3\x88\xb3\x6c\xa6\xcc\x0e\x95\x6b\xc4\xce\xcf\xe7\x25\xcf\x85\x2e\xd9\x02\xf1\xcd\x39\x5b\xe4\x3c\xaf\xeb\x32\x42\x78\x9f\x1a\xb1\x09\x11\x28\x34\x19\x5b\xa0\x94\xa3\x74\xb5\x7c\xcf\x17\xa8\x5c\x54\x4b\x44\x65\x51\xe0\x35\x5a\x67\x6c\x2e\xd1\x4b\x94\x6b\x33\xb6\xcb\x59\x99\xcd\x10\x9b\xcf\x97\x97\x6b\x40\x2d\xf0\x56\x4b\x81\xf6\x62\xcd\x73\x74\x59\x56\xb3\xe5\x45\x25\x19\x5c\x97\xcb\xc5\x10\x8b\x12\x34\x94\xd7\x9c\xb4\x5f\xee\xdf\x57\xd7\xca\xb4\x3f\x89\x80\xe2\x63\x93\xe4\x3a\x96\x8b\xa5\xe5\xc6\x6e\xc3\x55\x68\x21\x88\xb5\x9f\x21\x66\x4d\x4a\xa9\xc4\xaf\x91\xd0\xbe\x6f\x56\x95\xad\x1f\xb1\xde\x8f\xf8\xad\x2a\xec\xf9\x9b\xfe\x13\x5c\x0a\x30\xb8\x6a\xc7\x10\x01\x4f\x64\xe1\x4b\x54\x2e\x3e\xf0\xd5\x9a\xdb\xa3\x60\xb9\xf8\xf0\xa2\x17\x08\x3b\x3f\x6d\x35\x40\x60\xc7\x00\xd1\x62\xd3\x25\xb6\x7e\x83\x43\x61\xd0\x7d\xec\x1f\x3b\x13\x0e\xed\x17\xbe\xc8\x56\x57\xe7\xd5\x0e\x57\x01\xaa\x8a\xb5\xcb\x93\xa6\x5d\x0b\x3c\xed\x86\x7c\x6b\x09\xdd\x9c\x7f\x0e\xaa\xad\x44\x5c\xb5\x7b\x4f\xdc\x94\xa7\xb5\x20\x4d\x49\xc7\x7f\xf0\x4a\xcf\xd3\xba\xcc\xcd\x01\xa9\x76\x35\x56\x5f\x07\x12\x6c\xd5\x07\x83\x9b\xb3\x0c\xd9\xc7\x0f\x8b\xb2\x2a\xd9\x5c\x2f\x7d\xd5\x85\xe1\x9b\x6c\xc6\x16\xa7\xfc\xf1\xf3\xb6\x2c\xaa\xac\x3c\xe6\x6d\xbc\x42\xfe\xaf\x6f\xd2\xe6\x36\xf2\x7e\x6a\x78\x63\x2d\x0a\x6b\x9b\xe7\x8f\xf5\x36\x04\xe8\xf8\xea\x6f\xbb\x36\x54\xf2\xe6\x15\x85\xf8\xff\x96\xbc\x41\x9b\x50\xfd\x19\x2b\xd3\xba\xae\x6a\x93\xe5\xc3\xc0\xa3\xe4\x47\xe9\x55\xf0\x79\xfc\xda\x36\xc3\x48\x64\xcc\x27\x00\x9d\xed\xda\x8b\xc6\x30\x74\x3b\xb1\xc0\xae\xba\xb0\x2b\x05\x6b\x64\xf2\x21\x2f\xd7\x15\x9f\x37\x56\x6c\xc6\x58\x40\xe7\xb7\x4b\x2d\xa8\x3b\x40\x17\x62\xa0\x95\xa5\xd6\xde\x94\x6f\xdf\x4c\x26\x8a\xdb\x77\x6d\xb8\x16\x89\x64\xf3\xea\x02\xdf\xa1\xac\xb6\x49\x34\x86\x80\xdd\x73\xa4\x95\x4d\x52\x3d\x4f\x9a\xd7\x6c\x14\xe3\x01\xfc\xe7\x45\xbe\x44\xeb\x4b\x76\x2e\xd3\x8f\x39\x5b\x57\xd2\x18\x86\x21\xbc\x72\xab\xac\xc7\x6c\x57\x61\x2e\xc7\xaf\x0c\x36\x0c\x15\xc5\x77\x75\xf5\x81\x6b\xdc\x98\x0b\x5e\xc7\xd5\xaf\x13\x52\x46\x42\x97\xe1\x8d\xac\x42\xcb\x8b\x6a\x10\x81\x9b\x90\xeb\x56\x59\x27\xe4\xda\x75\xd6\x19\x32\xde\xf3\x2b\x59\x02\x3a\x0a\x8e\x7c\xa2\x3f\x29\x3f\x58\x1e\x68\x75\xa3\x23\x63\xd5\xe8\x23\xf4\x42\x58\xa0\x7a\x09\x58\x2d\xd7\xeb\x36\x4d\x87\x9a\x87\x90\x10\xc3\x6b\xa9\x6c\xd1\x0c\x54\xad\xe0\x26\xf5\x78\x75\xc6\xd6\xef\x3b\x2e\x5b\xdb\xee\x64\xd2\x31\x51\xe1\x88\xf5\xe8\xfa\xae\xd3\x75\xe1\xb4\x02\x8b\x26\x82\x8e\xc9\xbe\x03\x9b\xfd\xca\x68\xf8\xe2\x99\xc8\xa8\x24\x66\x05\x55\xfb\xdd\x80\xed\xe7\x8f\xb7\x67\x7b\x65\x67\x7b\xee\x66\x7b\xee\x60\x7b\xb5\x05\xdb\xce\x22\xd2\xeb\xba\x8a\xb4\x9c\xfe\xd8\xae\x8e\xf4\x58\x11\x66\x89\xab\xe2\x9b\x4a\x2f\xc5\xfc\xfd\x83\x17\x87\x2a\x41\xeb\xd4\x62\x9e\xa2\xac\x38\x35\x14\xd7\x3e\x9f\x33\xc1\xc4\xa6\x42\x7d\x2c\x2a\xe1\x9a\xb4\x74\x4c\x88\x9a\xca\xce\xc3\x89\x9a\x6e\xd1\xed\xef\x1f\xbc\x30\x56\xdc\x7e\xb9\x2a\xcf\xe7\xfc\x60\xb7\x29\x22\xd9\xa8\x33\x51\xa4\xff\xf4\xc7\x99\x2e\x52\x13\x11\x82\xed\x12\x2a\x94\x66\xfd\xeb\x81\x54\x16\xcb\xd7\x18\x1d\x0b\xb8\x43\x29\xd5\x07\x52\xc7\xcb\xd5\xa4\xbd\x67\x5d\x5d\x1c\x5f\x93\x3e\x5c\xcf\xcb\x8c\x4f\xbc\x29\x22\x7b\x83\xbb\x30\x1a\xb4\xe4\x9a\x68\xc9\x14\x05\x0e\xb4\xfe\x35\xd1\x06\x53\x14\xed\xd9\x2f\xd2\xb8\xf6\xbb\x07\x5f\xe3\x43\xbd\xb1\xd6\xc2\x2a\x99\x43\xfd\x9d\x63\x8b\x06\xfe\x16\x14\x6e\xe6\x9d\x46\xd0\xda\x91\x39\xb2\x6b\xf7\xf1\x16\x14\xcc\xa3\x1e\x4e\xc8\x8d\x0d\x7b\xff\x24\x61\xb5\x89\x2e\x37\x10\x5c\x5b\x5c\x3b\x86\x58\x5b\x88\xeb\x06\xda\x06\xca\x59\x3f\xbf\x81\xea\x95\xd0\xd7\x0a\xb3\xdf\x0d\xc9\xb4\x57\x55\x5f\x2b\xee\x7e\x37\x0c\xa6\x6d\x55\xf7\xbb\x61\x34\x55\xc5\xde\xef\x46\xf8\xe3\xdb\x29\x0d\x3e\xa9\xe0\xfe\xef\x59\x69\xff\xb3\xd5\xc3\xff\xef\xa9\x6c\x0f\x37\x15\x94\x0b\x9e\xdf\x6c\x89\xfb\xef\xd8\x9a\xb7\x55\xeb\xd9\x9a\x6b\xcf\x5e\xfb\xc4\x59\x01\x7f\xe8\xcb\x9b\x28\x40\x0b\x76\xc6\xd7\xe7\xba\x97\x1e\xe9\x6c\x08\x10\xc1\x86\xfc\xef\xdf\x3f\x9a\xd0\x7c\x8b\xa2\xa0\xb9\xc2\xc6\x84\xe6\x75\x14\x08\x3e\x80\xa9\x4d\x14\x1c\xaa\x2f\x82\x7f\x43\x66\xd0\xa2\x96\xe8\xd5\x74\x4a\xf9\x37\xbe\x46\x0c\x2d\xf8\xe5\xfc\x0a\x49\x5f\xcb\x4d\x84\xf5\x80\x82\x3a\xb7\x79\x2c\x2e\xce\x52\xbe\xfa\x88\xe0\x56\x29\xb8\x55\x45\x7c\xf0\x09\xa4\xf3\x87\xce\x26\xf3\xe5\x25\xb4\x10\xff\x35\x35\xe8\x36\xee\x46\xb7\x21\x40\x2d\x97\x4d\x2b\x97\x3a\x22\xd4\xe2\xa9\x07\x66\xb9\xfa\xe7\x11\xcf\x87\xb7\xb2\xc0\x0b\xbd\xc8\xeb\xce\x77\xd6\x92\x86\x10\xbf\x28\x3b\x19\x95\xe8\xe1\x54\x70\x6d\x1e\xc3\xd4\xfd\x5a\x86\x5b\x3d\xe1\xb1\xe8\xed\x31\xea\xde\xbe\xad\xbf\x99\xf7\x35\xf5\x5d\x59\x5d\x96\x6b\x8e\x7e\x7a\xfa\x72\x0d\x18\xc6\x14\x53\x5f\x94\xa2\x0c\xe4\x23\xfa\x56\xe8\x57\xc8\xe5\x00\x04\xa3\x46\x12\x56\x54\x7c\x85\x16\xfc\x94\x55\xe5\xe2\xf4\x06\x04\x0f\xa8\xb8\x10\xbc\x52\xc1\xe1\x62\x59\x4d\xac\x52\x3d\x3a\x42\x8b\xe5\x68\xa6\x0a\x77\xb2\x48\x81\xfe\xa3\x91\xee\x3d\x23\x98\x14\xec\x3f\x6a\x21\x1b\x52\x52\x25\x19\x25\x98\xda\x1a\x5a\x75\xde\xeb\x70\xd7\xc9\x00\x6c\x5a\xf9\xf6\xa7\xef\x35\xad\xc0\x72\x02\x8c\xdb\xe7\x6c\x0d\xcb\x0b\x5b\xf9\x50\xa3\x29\xc0\x21\x5c\xa2\x51\x56\xb5\x14\x24\x6a\xbc\x37\xac\xfc\x6f\x7f\xfa\xfe\x66\x54\x2f\xd7\x76\x5a\xc5\xb3\x45\x3e\x61\x8b\x65\x35\xe3\x2b\xc5\x88\xcb\x0c\xd8\x22\xd7\xcd\x40\xf4\x70\xc4\x14\x5a\x3f\xbb\x2d\x05\x32\x66\x15\x8d\xe7\x29\xf8\xdf\xcd\x3e\x9e\x3e\xff\xdc\xe6\xf1\xf4\xf9\x67\xb2\x8e\xa7\xcf\x6f\xc6\x38\x96\xab\x8e\x6d\x2c\x57\x3b\x98\xc6\x72\x75\x6d\xcb\xf8\x6d\x47\xcb\xf8\xed\x77\xb6\x8c\xd7\x9f\xdf\x34\x5e\x7f\x36\xdb\x78\x7d\x53\xc6\xb1\xe9\x59\xc7\x66\x27\xf3\xd8\x7c\x82\x7d\xbc\xdb\xd1\x3e\xde\xfd\x4e\xf6\x01\x8b\xf2\xba\x65\x2c\xe4\xcc\xa8\x7a\x21\x9c\xf3\xa2\xda\x3e\x2b\x5b\x80\x4d\xc8\x6f\x68\x59\x34\x98\xe0\x0a\x9b\x9b\x32\x06\x40\x76\x33\xe6\x00\xa8\x3a\x06\x01\xbf\x3c\x9e\x90\xd0\x65\x07\x12\x48\x37\x85\x85\xc9\x0e\xc4\x2b\xd0\x02\xdd\x47\x3e\xb1\xad\x74\x69\x96\x32\x69\x4d\xe5\xfe\x7d\xb4\x80\x25\xf2\xc6\x18\xe4\xd6\x21\x82\x0e\xd0\xc2\x78\x59\xbd\xd9\x84\x04\x9e\xa1\xad\x7d\x44\xf5\xcb\x93\x9b\x21\x1d\xcd\x64\x81\x0e\x0c\x37\x86\x0e\x48\xf7\x97\xba\x04\xb9\xff\x4e\xeb\x85\xa9\xfc\x7f\x3b\xf3\x7d\x3e\xb1\xbf\x5c\xd4\xd6\xfb\xfc\x86\xac\x57\xea\xbd\x6b\xa9\x9a\xf1\xd6\xf6\xbc\x85\xf1\x0e\x22\x26\xa0\xba\x86\xfd\x6a\x5e\xd0\xe0\x19\x37\x60\x45\xfe\x77\xb7\xe0\xe7\xcb\x8a\x55\xfc\x73\x07\xe0\x15\x50\xb9\x29\x13\x06\x6c\x37\x63\xc2\x92\x31\xdd\x84\x57\xcb\xd1\xf8\x2b\x40\x46\xed\x57\xf5\x08\xec\x40\x45\xf5\xc5\x9e\x48\x07\xdb\x5f\x9e\x4f\xa2\x60\x60\x96\x9f\xaa\xb0\x1b\x8a\x39\x7f\x2c\x8d\x8d\x84\x1c\x01\xb1\xbb\xc2\x9e\x0f\x14\xf6\xf8\x3a\x0a\xfb\x36\xcf\x3f\x77\xe6\xcb\xf2\xfc\x33\x65\xbe\xf2\xca\xef\x9b\x78\x67\xce\x7b\xef\xcc\xf9\x4e\xef\xcc\xf9\xd6\xef\xcc\xfd\x11\x61\xbf\x49\x64\x61\xc3\xa8\x39\xf9\xcd\xd8\x6a\x75\x25\x9a\xd5\x63\x88\xbc\x18\xbe\x33\xac\xb4\xd7\xc3\x9b\x71\x0c\x13\xa9\xfd\x36\xe7\x46\xfb\x92\x86\xe2\xe1\x53\x23\xba\xfc\x66\x5e\x5d\xf9\x76\xa1\xae\x00\x5f\x16\xfa\xdc\xe6\xda\x74\xc3\xf1\x6a\x79\xce\x57\xd5\x15\xfa\xbb\xba\x62\x18\x00\xc1\xbc\x1a\x14\x83\x69\x45\x65\x20\xeb\x43\x13\x9e\x3a\xac\x34\x77\xa2\x77\xa3\xcb\xba\x3c\x5d\x94\x45\x99\xb1\x45\x85\x52\x78\x5e\x2e\x34\xdf\x00\xa2\x8e\xd9\xdf\x76\x5e\xba\x66\xa6\xfe\xe5\x06\xe6\x81\x87\x1c\xd8\xdd\xb1\x23\xae\xc9\xd3\x73\x61\x96\x6c\xbe\xd7\x91\xfd\xa8\xe0\x90\x31\x20\x37\x92\xd3\xd0\x6e\x25\x44\xde\x55\xf3\x27\xf8\xea\xa5\x2e\xea\x7e\x2f\x3a\x6b\xbe\x5d\x9f\xfd\x44\x64\x6f\x06\xed\xc5\xdf\xae\xd3\xda\xd3\x5d\xb1\x60\x8a\x13\xcc\x70\x0a\x67\x6a\x32\x9c\x63\x8e\x8b\xbd\x01\x92\xb7\xff\x46\x5d\x9d\x22\xec\x6d\xbd\x3c\x00\x46\x37\x6d\xcc\x76\x10\x96\x2f\xd5\xe6\x09\x08\x8b\xf5\x17\xf9\xdf\xdf\x7e\x33\x1c\xc0\x10\x79\x7f\xe3\x03\x7f\x3a\x46\xc3\x55\x30\xfd\x4f\x8e\xcd\x35\xf8\x71\xc3\x46\x7f\x2f\xa0\x35\x69\xef\x23\x90\x3e\x34\xe7\x8b\xd3\x6a\x86\xbe\x46\x74\xcb\xad\xd4\xfd\x40\x73\xb2\x5c\x7c\xe0\xab\xfa\xd5\x50\x0b\xc3\x2a\x3e\x88\x41\xbb\x3e\x1d\xb0\x55\xe0\xa9\x47\xed\x46\xbb\x9d\x95\xb9\x8f\xe8\x65\x37\x88\xde\x59\xa3\x9c\x55\x0c\xb1\xf5\x8e\x74\xb6\x9e\xc9\xea\xae\x14\x6e\xb4\x00\x7d\x58\x2d\x5f\xfb\xc4\xbe\x14\x02\x8f\x3f\x61\xcf\x8e\xa2\xd5\x35\x2a\xc3\xce\x9d\x1a\xee\xb1\x54\x66\xc3\x64\xad\x5e\xd3\x2e\x1e\xa9\x36\x03\x2e\xd9\xdd\xad\x37\xef\x77\x69\xbb\x4f\x7a\xb5\x4b\x78\x75\xab\x37\x83\x2d\xfc\xe2\xaf\xe6\xe1\xf0\xfc\x62\x3d\x9b\xd4\x89\x94\xc8\x11\x4c\xef\x95\x66\xe8\x5e\x2e\x81\x0c\xfb\x64\xeb\x54\x44\x53\x70\x1d\x41\x6a\x9c\xd3\xae\xdb\x58\x37\x92\x0c\xbc\x02\xd0\x08\x93\xcc\x96\xe7\x30\x48\x5a\xc6\x7e\x34\x9a\xb6\x36\x66\xcf\x51\x36\x5f\x2e\x5c\x6f\x2a\xdb\x9a\x34\xe0\xe9\xdb\x32\xfc\x68\xb7\x65\x78\xec\xb4\x65\x1d\x33\x64\x29\x92\xdd\x66\xe7\xab\x69\xa7\xeb\x09\xc0\xff\x19\x0c\xfb\xcf\x52\x32\x43\xa4\x75\x2c\x95\xf8\x86\x61\xb6\xde\x35\x66\x27\x00\x67\x98\xea\x85\x75\x99\x9c\x58\xc8\x34\x2e\x74\xd9\xf1\x9f\x51\x37\xb8\xdc\xc6\x07\x2e\x95\xc9\xd7\xe8\xdf\x94\x6f\x4d\x62\xb7\x9b\x2a\x00\x77\xd6\x97\x9b\xf4\xd8\xba\x6f\xa6\xb7\x5b\x46\x6d\x8d\xf9\xf8\x76\x4a\xc3\x6d\xf6\xbb\x1c\x7d\xfd\x27\x34\xab\xaa\xf3\xf5\xdd\xa3\xa3\xb3\x6a\xb6\x3e\x4c\xf9\xd1\x45\x55\xd0\x5f\xd7\xe8\x03\x39\xc4\x87\x04\xa5\x57\xe8\x7f\x9c\xb1\x6a\x56\xb2\xb5\xb0\x98\x76\x83\x0c\xec\x0a\x91\x9b\x3d\x8e\x8e\xd0\xf7\xbc\x92\xc7\xe1\x38\x17\xe2\x2e\x59\x3a\xe7\x6b\xf4\x57\x45\xe9\xaf\xb7\xbe\x82\x6d\xfc\x2b\xce\x1f\x34\xfb\x5f\x06\x3b\x69\xd0\x1d\xa9\xbc\x3b\xe8\xf6\xed\xfa\xe7\x7b\x76\xf4\xe8\xaf\xb2\x3b\x1a\xf2\x27\xf0\x43\x8b\xfb\x4c\x7d\xef\xa2\x56\xbf\xde\xbe\x6d\xd8\x9f\x73\xdc\x61\xb2\x01\x76\xb2\x71\x0a\x3b\x67\xfe\x3a\x95\xbb\xf1\x7f\x5a\xe6\xfc\xf0\xd7\x35\x5a\xae\xd0\x77\x72\x2b\x4d\x59\x94\x3c\x47\xd9\x32\xe7\x53\xc0\xc2\x16\x39\xba\x58\x73\x54\x56\x62\x5c\xfb\xab\x90\xa3\xd6\x07\xb5\x0f\xa7\xe9\xc3\xa9\xfa\xde\xed\x83\xfc\xf5\x9e\xdc\x93\xd4\x36\x3b\x6c\xa0\x8f\x75\x64\xbf\xfd\xa6\x7d\x3b\xbc\x2c\x17\xb9\x78\xbb\xec\xc0\xc8\xad\x43\x82\x17\xa4\xff\x0c\x9b\x7d\x6e\x7d\x75\xf4\xf5\xc1\x8d\xfd\x7d\x7d\x74\x4b\xf6\x76\x5d\xad\xca\xc5\xe9\xc3\xd5\xf2\xec\x64\xc6\x56\x27\xcb\x5c\x68\xee\x05\xfc\x78\x58\x68\xbf\x2a\xe1\xbf\x64\xef\xf9\x42\xca\xb8\x6f\xb2\xe7\x17\x8b\x2b\x21\xdf\x5b\x5f\x35\x11\xec\x22\x5b\x93\x9c\x8b\x1f\x27\x92\x8e\xec\x20\x2c\x6d\xc2\xe6\xfb\x7a\x08\x84\x9f\xb2\xe5\xc5\xa2\xe2\x2b\x35\x73\x09\x3f\xcd\xeb\x58\x21\x9b\xb7\xc1\x02\x9e\xc2\x79\xc6\xfa\x0b\xdf\x54\x2b\x26\xbe\x5c\xce\xca\x39\x47\x93\x1a\xdb\x7d\x85\x44\x92\xfe\x0a\xda\xb4\x08\x33\xd5\xbd\x6f\xab\xba\xc1\xfe\xbe\x70\xf5\xaf\x40\xa7\x12\xf8\x9b\x63\xe4\x6d\xbe\xa7\x9e\x27\x74\x2e\x7f\xba\x0f\x3f\x7d\xf7\xf0\xa1\xf8\xc9\x42\x49\x88\x0b\x5e\xd7\xd7\x17\xab\xd5\xf2\x94\x55\x7c\x0a\x56\x57\xcd\xf8\x8a\xc3\x39\x4f\xb4\xe0\x9b\x0a\x09\x16\x58\x56\xf1\x15\x34\x82\x6e\x6c\xc3\x1f\x30\x38\x91\xe0\xb7\x91\xb7\x79\x78\xe2\x79\x7b\xc2\x42\xbd\xcd\xf7\xf0\xf1\xef\x22\x38\xcf\x97\x97\x2d\x7d\x68\xf6\x95\x94\xbc\x1c\xca\x27\xaa\x8b\x02\x81\xff\xf0\xe1\x1e\x1c\xcd\xf4\xf6\xd0\x3e\xd2\x30\xc3\x83\xfd\xba\xe2\x90\xa2\xde\x66\xc1\xaa\xab\x17\x8b\x33\x56\x65\x33\x9e\xb7\xf4\xee\xa1\xe5\x62\x7e\x85\xd8\xf9\x39\x87\x7e\x97\x6b\x70\x40\x74\xb1\x28\xab\xa9\x78\xd1\xcc\xd8\x9a\xc3\xdb\xa6\x10\x44\x83\xa9\x81\x11\x42\xaa\xea\x7d\x51\x0d\x56\x31\xd4\x33\xed\xeb\x39\x2b\x57\xc3\x9e\x41\xbf\x14\xaf\x5f\x29\xd1\x1d\x1c\x28\xde\x6f\xf5\x3b\x60\x69\x29\x00\xc5\xff\x55\xbc\x97\x50\xb5\x37\x5e\xc7\x19\xf8\x02\x9c\x01\x46\xe1\xd6\x17\x1a\x2b\x97\x79\x4b\xd7\xc8\xcb\x45\xce\x37\xe8\x18\x1d\x60\xa3\xd9\x37\x7e\x74\xe7\x8e\x66\xfc\xfb\xfb\xb2\x99\xc5\xf8\x81\xce\x1b\x00\x79\xdb\x37\x76\x61\x4a\x0f\x85\xc6\xa5\x64\xe4\xaf\x07\xc7\xb5\xfa\xef\x69\xf2\x42\xfb\xc7\x86\xf8\x51\x23\xfa\xe6\x1b\x84\xbd\xda\x80\xd0\x6f\xca\x87\x94\x4a\x6a\x4e\xa4\xb1\xa2\xdf\x50\xc7\x0e\x1b\xe1\x6f\x41\x08\x10\xda\x94\xd4\x08\x3f\x9b\xf1\xec\xfd\x8b\x8c\xcd\xd9\xea\x7f\x89\x56\x13\xa1\x87\x67\xcb\x72\x21\x77\x53\x83\x00\x9a\x9f\xba\x1e\xdf\xfe\x2c\xbd\xbe\x15\x4e\x35\x5b\x2d\x2f\xd1\x83\xd5\x6a\xb9\x9a\x40\xaf\xee\x3c\x16\xa9\x50\x6b\x9a\x3f\xef\xdf\x41\xfb\x2d\x82\xc3\x6a\x29\x23\xeb\x04\x47\x7b\x87\xd5\xf2\xe7\xf3\x73\xbe\x3a\x61\x6b\x3e\xd9\x43\xfb\x12\x81\x30\xf9\xc5\xb2\x12\x06\x0e\xcc\x4a\xb9\xdc\x11\x0f\xeb\x8e\x7e\xfc\x0c\x23\x41\x2b\x27\xc8\xaa\x45\x26\xde\x8a\x63\x2a\x97\xd9\xd4\xe0\x24\xa5\x6c\xd0\xc6\x44\x17\xe0\x37\x75\x1b\xa9\x51\x98\xaa\xdc\x50\x6f\xaf\xaf\x17\xe9\x10\x27\x75\x43\x93\x5a\x34\xb4\xb7\x95\x71\x3e\x7c\x48\x55\xac\x53\x61\x0e\x1f\xa4\x57\x15\x47\x6b\xfe\x5f\x17\x7c\x91\x41\xa0\xb3\x33\xda\xd2\xa8\x4d\x07\x06\xc2\xab\xb3\x74\x39\x6f\x1c\xc9\x46\x99\x7a\x5d\xca\x64\x48\xb9\xc1\x34\x2e\xa4\x48\x0a\x08\x2b\x01\x9d\x78\x0d\x4b\xcd\xc6\x63\x03\x13\x10\x86\x75\x26\xfc\x21\x13\x0e\x83\xbf\xb7\x23\x93\x98\x48\x2e\x3d\xc5\xe5\x03\xaf\x83\x62\xff\xd8\x62\x35\xd1\x16\x9d\x79\xe0\x0d\x3a\x13\x7c\x92\x44\x31\x55\xcc\xc6\x92\xd9\x87\x5b\x32\x8b\xc9\xae\x9d\x6a\x21\x4d\x5c\x75\x3b\xda\xf5\x80\xc6\x36\x01\x43\xdf\x25\x44\xea\xaf\xc6\x89\x7e\xd2\xd4\x20\x15\xa9\xfb\x30\xb9\x1a\x64\x4d\x2d\xfc\xe8\xa0\xd2\x80\xd6\x3f\x08\x25\xc8\x68\xb5\xe5\xe0\xd2\xf6\x58\x27\xac\x8f\x32\x1a\xca\xfd\x63\x87\xeb\xf7\x22\x7a\xdb\xec\x73\x25\xc2\x8d\xec\x57\x9c\xe5\x27\xcb\x45\x55\x2e\x2e\xe0\xf0\x2c\x68\xbf\x0d\x45\x82\x93\x1f\xa0\xef\xdf\x1c\x03\x5b\x27\x22\xb1\x30\x8c\x06\x77\x7e\x58\x7c\x60\xf3\x32\x07\x20\x29\xed\x3b\xaa\x5b\x8d\xbc\xbb\x54\x90\x44\x08\x13\x05\x6f\x1a\x3a\x6f\x95\x9b\x88\xa6\xcd\x8f\xfb\xfb\x22\x19\xaf\x23\x54\x0f\xcd\x6d\x19\x46\x64\x22\x28\xa2\xe4\xdf\xb5\x60\x68\x84\xf6\x1f\x36\x8c\x1d\x1d\xa1\x1f\x0a\x74\xc9\x91\xc8\xd7\x2e\xce\x91\xc8\x54\xa7\xa8\xac\xfe\xef\xff\xfe\x3f\xf5\xb0\xa4\xa3\x00\x8e\x6f\x59\x7a\x3e\x00\xbc\x33\x08\xfe\xd2\x7a\x5f\x80\x17\x4c\x5a\x2b\x17\xc0\x58\x37\x43\xa2\x7f\xf1\xf5\x2f\x81\xc1\x7c\x87\xba\xfa\x04\x55\x75\x31\x1d\x0f\xb5\xae\x24\x5b\xb0\x39\x1c\x7e\x68\xe4\xf8\x9c\xb3\x1c\x15\xe5\x6a\x5d\xd5\x52\x82\x6e\xed\xae\xe6\xe1\xe8\x86\x26\x8b\xe5\x50\xbc\xeb\xbd\xda\x26\x24\xa1\xdb\x4a\xff\x2a\xb2\x6a\xbc\x36\xf2\xad\x79\x1d\x8e\x61\x3d\x3c\x0f\x6a\x83\x3a\xa9\x51\x81\x5a\xd0\xb1\xc5\x61\xee\xf5\xe3\x81\x8e\x0c\xcb\xd7\x0c\xa8\xb9\xd3\x68\xd7\x94\x80\x35\xd6\xdb\x9a\xaf\x16\xa3\xba\x09\xfc\x0e\x26\x58\xa7\xf5\xb2\xef\x7e\x5f\xb6\x67\xec\x0a\x95\x8b\x6c\x7e\x01\x2f\x21\xe2\xe5\x42\x7f\xa5\x31\x49\xf9\x61\x2d\x9d\x07\x3b\x48\x07\x4c\xf9\x7a\x02\xf4\xd4\x7b\x1a\x81\xbd\x49\x92\x96\x2e\x50\xdf\x26\x50\x0f\x92\x17\x29\xb0\xb1\xfc\xe0\x73\xca\x7c\x38\xc2\xf7\x25\x4a\x95\x44\x1f\xde\xac\x44\x21\x64\x5c\x53\xe8\x31\x08\xdd\xdb\xf4\xc5\xee\x6d\xbc\x93\x3d\xf4\x1b\x48\x64\x22\x79\x90\xbf\x36\xfa\x08\xac\xfa\x80\x37\x2a\xc3\x3b\x06\xf6\xf4\x57\x30\xb3\x26\x6a\x79\x1a\xb5\xf0\xf3\xcb\x87\x07\x14\xe5\x30\x53\xc6\xf3\x26\xf2\xd6\x61\x53\x9d\xc0\x6a\xbe\x43\x40\xd3\xbe\x43\xfc\xb9\xd7\xcb\x49\x54\xae\xd1\x8e\xc6\x92\xbf\x06\x5f\x37\x25\xd1\xc0\xea\xa8\x06\x54\xf4\x00\xa8\x25\x25\x5a\x8c\x6d\x67\x7f\x3a\xe9\x4e\x3b\x4f\x54\x9d\x9d\x6b\xd9\xc8\xa4\x3a\x3b\x47\xc7\xbd\xb1\x64\x0f\xfd\xe9\xf8\x58\x06\xe5\x7e\x76\xa2\x16\x31\xaa\xb3\xf3\x7e\x9e\xa1\xbd\xa0\xb7\xd0\x7b\x9f\x73\xf2\x4d\x88\x15\x1d\x03\x83\x77\x3e\xf0\xd5\xba\x5c\x2e\xee\xdc\x45\x77\x60\xd2\xf7\xce\x54\xfc\x2a\xf9\xb9\x73\x57\xcb\x0a\xe1\x77\xd9\x5d\xf5\xbb\xfc\x72\xeb\xab\x8f\x6a\x92\xee\xc5\xf2\x8c\xa3\x6f\x9f\x7c\x8f\xd2\x8b\x72\x9e\xa3\xe5\x79\x55\x9e\x95\x7f\xe3\xab\xf5\x14\xcd\xcb\xf7\x1c\xad\x0e\x7f\x5d\x4f\xe5\x2b\x31\xcc\xb4\xaf\xcf\x79\x56\x16\x65\x26\x9c\x37\x2f\x41\xe1\xe7\xac\xaa\xf8\x6a\xb1\x06\x7c\xd0\xa8\x9a\x71\x54\x2c\xe7\xf3\xe5\x65\xb9\x38\xbd\x2b\xe7\x3c\x85\xf9\xf5\xce\x45\xa2\x3b\xb5\xd1\xdc\x91\x93\xbb\x1d\x80\x43\x76\x96\xf7\x66\x51\x9b\x23\x92\xe2\xd9\xad\xaf\xa4\xba\xd4\xa1\xc9\x66\x9a\xbb\x3b\x80\x89\x3e\x83\xee\x40\x39\xed\xdb\x45\x6f\xd6\xf8\x4f\xda\xf7\xc3\xc5\x32\xe7\x2f\xaf\xce\x79\x9b\xcc\xb5\x73\xd5\xea\xc5\xa3\x5c\xe8\xf3\xc6\xcf\xcb\xc5\xe9\xf2\x7f\xbe\x40\x1f\xbc\x43\x7a\xe8\xc1\xeb\x79\xdb\x42\x3b\x4b\xda\x30\xa3\x42\x63\x8d\x89\xad\x2e\x67\x6c\xde\xc3\x14\x1f\x7a\x07\x72\x22\x66\x55\xef\x8d\x92\xa7\x18\xd5\x6f\x33\xb6\x7e\x7a\xb9\x78\x56\x6f\x81\x39\x56\x40\x87\xdd\xdf\x01\xbc\x59\x22\x81\xaa\x71\x52\x28\x75\xc4\xe8\x82\xcb\xf5\x21\xf1\x1c\x0e\x12\xef\x09\xd9\xe8\xb2\x7a\xf3\x5e\x16\x30\x14\x10\xf0\xb9\x33\xf9\xd5\xeb\xd7\xf3\x59\xb9\x58\x8a\x5e\x31\x74\xc9\x53\xa4\x0e\xaa\xaa\x59\xeb\x43\x65\xd0\x4a\x26\x1f\x6f\xa9\x23\xaa\xb0\x6c\xf2\x71\xfa\xf7\x8f\x6f\xa7\x34\xda\x66\x49\x64\x70\x62\xf7\xf5\x93\xc7\x8f\xaa\xea\xfc\xb9\x18\x32\xd6\x55\x83\xed\xcf\x69\x79\x2a\x37\xb3\x1c\xfe\xba\xfe\xf3\x36\x98\xef\x5c\xac\x39\xbc\xb0\x65\xd5\x9d\x7b\xb7\x86\x84\xbe\x2b\x4f\x7f\x02\x84\xf7\x44\x87\x7f\x5d\xcf\x44\x50\x2e\x4f\x17\xcb\x15\xbf\x3b\x2f\x17\xfc\x56\x43\xfa\x92\xa7\xfe\x56\x24\x85\x92\x5e\xf1\x54\x8e\x4d\xf2\x98\xf1\x9d\xc3\xa3\x79\x99\x1e\x09\x14\x22\x38\xdf\x3a\x3a\x42\xf9\x72\x71\xa7\x42\xcb\x0f\x7c\xb5\x2a\x73\x5e\xaf\x38\xd4\x0b\x1c\xb7\xb4\x33\xc8\x6a\xe9\x40\x44\xb8\x3b\xcd\x8e\x06\x58\x90\xe8\x00\x1c\x4a\x9a\x5d\x28\x61\x21\xb0\x4e\xa6\x83\x00\x77\xf7\x6e\x7d\x34\x88\x43\x3e\x51\x2b\x5b\x35\xcb\x7f\xbe\x4b\xc8\xc7\xb7\x42\x0c\xd3\x37\x52\x0c\x6f\xf7\x6e\x1d\x1d\xfd\x7f\x68\xbd\xbc\x58\x65\xfc\x09\x3b\x3f\x2f\x17\xa7\x3f\x3f\x7f\x7c\x2c\x1e\x1e\xcc\x61\x17\xe9\xaf\xeb\xc3\x33\x76\x7e\xeb\xff\x05\x00\x00\xff\xff\x73\x19\x9e\x3a\x8a\x21\x06\x00") +var _web3Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x7b\xdb\x36\xd2\x38\x0e\xbf\xf7\xa7\x80\xf5\xdc\x4f\x24\xc5\x8a\xe4\x43\x9a\xb6\x74\xdd\xac\xe3\x24\x8d\x77\x9b\x38\x57\x62\x6f\x77\x6f\xaf\xef\x5c\xb4\x08\x49\x6c\x28\x52\x3f\x92\xf2\x61\x63\x7d\xf7\xff\x85\xc1\x69\x70\x20\x45\xd9\x4e\xdb\xed\xda\x2f\x12\x11\x18\x0c\x80\xc1\x60\x30\x00\x06\x33\x39\xfd\x7f\xf3\x38\xa7\x7b\x9d\xd1\x3c\x1d\x96\x71\x96\x12\xda\x29\x7b\x69\x2f\xef\x7e\x51\x29\x45\x27\xeb\xcd\xbb\x5f\xe2\x51\x67\x3d\x3d\xcd\xce\xf8\xaf\x12\x7e\x5d\x84\x39\x09\xf7\xca\xeb\x19\xcd\x46\x44\xe2\xda\x6b\xc9\xa2\xad\x47\x8f\x44\xe2\x2e\x2b\x33\x7f\xf4\x28\xec\xe6\xb4\x9c\xe7\x29\x09\x3b\x59\x6f\x7d\xb3\xcb\xd2\x63\x99\x16\x8b\x34\x86\x75\xb4\x97\xd2\x4b\xf2\x2a\xcf\xb3\xbc\xd3\x3a\x08\xd3\x34\x2b\xc9\x28\x4e\x23\x32\xcd\xa2\x79\x42\x49\xbb\xb5\x91\x6d\xb4\xda\xad\xee\x6e\x39\xc9\xb3\x4b\x32\xea\x0f\xb3\x88\xee\xb5\xde\x1e\xbd\x3c\xf9\xf9\xd5\xa7\x77\x47\xc7\x9f\x5e\x1f\x9d\xbc\x7b\xd9\xea\x8d\x16\x0c\x5f\xb2\xc7\xda\xbe\xf7\x85\x5e\xcd\xb2\xbc\x2c\x82\x2f\x8b\xc5\x2e\xeb\xc3\xe9\xe6\x59\x7f\x18\x26\x49\x27\xe9\x8b\xac\x9e\x6c\x7d\x87\xf2\x0e\xa6\x7b\x00\xb8\x75\x76\x4a\xcf\x76\x45\x53\x8b\x4e\xfa\x3c\x0d\x68\x77\xd1\x4b\x7a\xba\x24\xed\x71\xda\x2d\x04\x14\xab\x52\x66\x42\x2b\xe2\x46\xb4\x1a\x65\x79\x87\x41\x67\x7b\x9b\xbb\xd9\x0f\x79\x3f\xa1\xe9\xb8\x9c\xec\x66\x1b\x1b\xdd\xa2\x93\x33\xc2\xab\x66\x2c\xba\x9d\x2f\x5b\xc1\xa9\x6a\xb2\x40\xd1\xe3\x54\xea\x89\xba\xbb\x5f\xd6\x78\x82\x6c\xcc\xde\xe9\x1a\x21\x5f\xd6\x08\x21\xa4\x35\xcc\xd2\xa2\x0c\xd3\xb2\x15\x90\x32\x9f\xd3\x1e\x4f\x8d\xd3\xd9\xbc\x2c\x5a\x01\x39\x85\x6f\x09\x0d\x79\x69\x38\xa5\xad\x80\xb4\x3e\x65\x97\x29\xcd\x5b\x3d\x9d\xc3\x7a\xc7\x72\xc2\x28\xca\x69\x51\xb4\x44\xce\x02\xfe\x3f\x13\xa8\x65\x71\xf8\x5f\xa4\x65\xf3\x72\x79\x7d\xd9\x27\x54\xc4\xa8\xef\xfc\xba\xa4\xc5\xce\xb6\xbf\x3e\x09\xa4\x28\xbd\x46\xc8\xa2\x77\x2f\x04\xb8\x55\x7b\x54\x77\x10\xf5\x9a\x11\x60\x65\x52\xff\x51\xbb\x3e\xcc\xd2\x92\xa6\xe5\x9d\x3b\xff\x1f\x39\xee\x6c\xc4\xfe\x30\xc3\x3e\x0a\x93\xe2\xb7\xeb\x7a\x4e\x0b\x9a\x5f\xf8\x66\xfd\x1f\x7d\xd0\x8a\xf9\xf9\x07\x3a\x8e\x8b\x32\x0f\xff\x0b\x06\xaf\x57\x87\x83\x5e\x1e\xdd\x49\xee\x97\x79\x98\x16\x23\xaf\xe8\xfb\x4f\xa1\x41\x6e\xb1\xc2\xea\x44\x28\x68\xf9\xb1\x9e\xa5\xee\x8d\x16\x76\xd5\xbf\x49\xa5\x5f\x79\x00\xc2\x26\x84\xaf\x43\x30\xcb\xe3\x69\x98\x5f\x7b\xdb\x91\x65\xc9\xd2\xc1\xdb\x17\x75\xfd\xe7\x92\xd0\x5c\x83\x6b\xd1\x54\x11\xe1\xa0\x72\x19\xff\x23\x11\xc1\xdb\xfa\x28\x2e\xb2\xcb\xf4\x0e\x2d\x0f\xd3\x2c\xbd\x9e\x66\xf3\x62\x85\xa6\xc7\x69\x44\xaf\x68\x64\xac\x5d\xf7\x36\xb0\x1a\x39\x6a\x8e\x89\xfd\x32\x4e\xef\x22\xb8\xf7\xe7\x40\x89\x57\x69\x44\xa3\x96\x45\x26\x7a\xc1\x18\xe1\x4f\x40\xa3\xf3\x38\x8a\x9a\xd1\xe8\x76\xf8\x2f\xc2\x64\xee\x6d\xfe\x3c\x4e\xcb\xed\x6f\x9e\xd5\x0f\xc1\x3b\x7a\xf9\x22\xfe\x1d\x89\x7f\xa7\x39\x77\x30\x09\xd3\xf1\xef\xc9\x3a\xf7\xc2\x39\x15\xb8\x91\x56\x5f\xcb\x35\x5e\xca\xbc\xe7\xab\xd1\x52\x02\xad\x9d\xad\xad\x2d\x7a\x5f\x16\x67\xbd\xed\xdf\x6d\xd3\xff\x27\xda\xf3\xfe\x4e\xba\xe3\x68\x9e\x46\xb7\x66\x95\x3b\x2f\x5c\x0f\xdb\xde\xff\xec\x6d\xef\xc3\xa6\xef\x8f\xbc\xe7\xf0\x76\x5e\xec\x17\xfe\x68\xda\xe6\xd7\x5d\xcc\xf5\x5a\xb5\x73\x6f\x6b\xd5\xaa\xe3\x3e\xca\xb3\xe9\x1d\x87\xbd\xcc\xee\xb8\xd5\xbc\x9b\xc2\xf7\xfb\xce\x9b\x3f\x02\xfd\xe2\x34\x8a\x73\x3a\x2c\x0f\xbd\x6b\xe6\x0a\x2d\xb9\xdb\x40\xc4\xc3\x70\x76\xfc\xbb\x0e\x86\x9f\x92\xcd\x76\xbb\x74\x96\x15\x71\xdd\x46\x7d\x16\x5e\x87\xe7\x09\x35\x95\x82\xdf\x45\x2a\x55\xf1\xdc\xbd\x6c\xbf\xee\xc6\x03\xfb\xb2\xbf\x2f\x4d\x7a\xfe\xf6\x3b\x99\x7b\x21\x52\x05\xee\x66\x7c\xf6\x3b\x90\xff\x0f\x4b\xf5\xfb\xd8\x3f\xde\x5a\x4e\x7e\x6d\xaa\xdb\x42\xef\x81\xec\x0d\xc9\x7e\xe7\x85\xeb\x6b\x8f\xec\xa1\x67\x49\xab\xd3\xe3\x9e\x36\xd1\xe3\xc0\x78\x83\xec\x49\x0b\x87\x4e\xbb\x3f\x18\x65\xf9\x34\x2c\x4b\x9a\x17\xed\xee\x2e\x00\x7c\xcc\x92\x38\x8a\xcb\xeb\xe3\xeb\x19\x35\x61\x59\xfd\x0c\x6a\x6d\xf0\xf8\xf1\x1a\x79\x6c\x40\x8a\x33\x77\x12\x17\x24\x24\xb3\x3c\xcb\x18\x30\x29\x27\x61\x49\x72\x3a\x63\x9b\xac\xb4\x2c\x88\x18\x3b\xc2\x32\x19\x86\xc3\x92\x4c\xc3\x72\x38\xa1\x45\xc0\x3e\x45\x36\xfa\x79\x7a\x86\x3f\x9e\x1a\x5f\x67\x66\xe6\x8e\xf5\x7d\x76\xfa\xec\xec\xf4\xac\x47\xfa\xfd\xfe\x1a\x79\x3c\x70\xfa\x26\x5b\xbc\x47\x94\x35\x4d\xa7\x2b\x86\xb8\x9c\xc4\x45\xff\x13\x4c\x8c\xd7\x92\x40\x0c\xb0\xcf\xc9\x75\xc8\x32\x0e\xd3\x72\x17\x01\xf3\x75\xdb\x07\x7d\x04\x39\xa2\xba\xdd\xb5\xc5\xee\xda\x9a\xa7\x1d\xfd\x59\x9e\x95\x9c\x6a\x7b\x24\xa5\x97\x46\x5b\x3b\x5f\x16\xdd\xdd\xfa\x52\x7d\xd0\x5e\xf2\xf9\xb0\xcc\x58\xe5\x1e\xd8\x65\xf5\xf6\xe3\x42\x8c\xb9\x26\x08\x63\x47\x49\x14\x61\xd7\xb2\xbe\xce\x12\xfb\x30\x6e\x9d\x81\xa0\x76\xe7\x5f\xa7\x9d\xd3\xcd\x27\xdf\x9f\x3d\xee\xfe\xeb\xac\xfb\x7c\xd0\xe5\xfd\x34\x37\x0e\x95\xcd\x5a\xf4\xbe\xb4\x30\x2b\xb6\x82\xef\x7b\x2d\xce\x6f\xad\x60\xeb\xe9\xe2\xac\xf7\xcd\xef\xcc\xde\x2f\xb2\x2c\x59\xc2\xdb\xe7\x0c\xa4\x82\xb1\x59\x9e\xfc\x9f\x73\x29\xfc\x7a\xaa\x7f\x9e\xa1\xe4\x1d\xfc\xb1\x8c\x8d\xa1\x65\xb7\xe5\x61\x56\x78\x15\x26\xe6\xf0\x36\x07\xb3\xd4\x15\xd9\xd7\x2c\x52\xc3\xbb\xbc\xc6\xba\xb2\xb7\xe1\xda\xff\x63\xa4\x35\x79\xf6\xf1\xff\x34\x62\x5a\xd1\x9e\xe5\x1c\xfb\xec\xf7\xe6\x58\xb6\x86\x29\x96\x2d\xfd\x3c\x5b\x4e\x28\x81\xc5\x0e\x18\xb7\xef\xe3\x5c\x96\xab\x7e\x08\xbe\x84\x9f\x4f\xd1\xef\x33\x9c\xb1\x63\x7c\x99\xfc\x4b\xc4\xd2\xaa\x7e\x7e\x67\xe0\x11\x45\x3d\x5c\x0e\x8d\xbc\x35\x9b\xb3\xd2\x2b\xf1\x39\x2f\xe0\x30\x3a\x4b\x5e\x95\xd3\xcd\x32\x75\xac\xce\x2b\xad\x2d\x7d\x3b\x66\x67\x48\x38\xab\x7f\xd9\xea\x2d\xba\xb7\x63\x7c\xd1\xba\xe5\x9c\xff\x6d\x13\xce\x1f\x3c\x86\x06\x1f\x4f\xe2\x82\x8c\xe2\x84\x32\x4e\x9d\x85\x79\x49\xb2\x11\xb9\xa4\xe7\x3b\xfd\x5f\x8b\xfe\x1a\x80\x88\x2f\x06\x30\xca\x29\x25\x45\x36\x2a\x2f\xc3\x9c\x06\xe4\x3a\x9b\x93\x61\x98\x92\x9c\x46\x71\x51\xe6\xf1\xf9\xbc\xa4\x24\x2e\x49\x98\x46\x83\x2c\x27\xd3\x2c\x8a\x47\xd7\x80\x23\x2e\xc9\x3c\x8d\x68\x0e\x0c\x5f\xd2\x7c\x5a\xb0\x7a\xd8\xc7\x4f\xef\x4e\xc8\xcf\xb4\x28\x68\x4e\x7e\xa2\x29\xcd\xc3\x84\xbc\x9f\x9f\x27\xf1\x90\xfc\x1c\x0f\x69\x5a\x50\x12\x16\x64\xc6\x52\x8a\x09\x8d\xc8\xf9\xb5\xe0\x22\x4a\x5e\xb3\xc6\x7c\x14\x8d\x21\xaf\xb3\x79\x1a\x85\xac\xcf\x3d\x42\xe3\x72\x42\x73\x72\x41\xf3\x82\x8d\xd0\x8e\xac\x4b\x60\xec\x91\x2c\x07\x2c\x9d\xb0\x64\x7d\xc8\x49\x36\x63\x05\xbb\x24\x4c\xaf\x49\x12\x96\xba\xac\x4b\x02\xdd\xd3\x88\xc4\x29\xa0\x9d\x64\x72\x66\xc7\x25\xb9\x8c\x93\x84\x9c\x53\x32\x2f\xe8\x68\x9e\x70\xc5\xf1\x7c\x5e\x92\x5f\x0e\x8f\xdf\x1c\x9d\x1c\x93\xfd\x77\xff\x24\xbf\xec\x7f\xf8\xb0\xff\xee\xf8\x9f\xbb\xe4\x32\x2e\x27\xd9\xbc\x24\x4c\xa3\x04\x5c\xf1\x74\x96\xc4\x34\x22\x97\x61\x9e\x87\x69\x79\x4d\xb2\x11\xa0\x78\xfb\xea\xc3\xc1\x9b\xfd\x77\xc7\xfb\x2f\x0e\x7f\x3e\x3c\xfe\x27\xc9\x72\xf2\xfa\xf0\xf8\xdd\xab\x8f\x1f\xc9\xeb\xa3\x0f\x64\x9f\xbc\xdf\xff\x70\x7c\x78\x70\xf2\xf3\xfe\x07\xf2\xfe\xe4\xc3\xfb\xa3\x8f\xaf\xfa\x84\x7c\xa4\xac\x61\x14\x30\x2c\x27\xf4\x08\xc6\x2c\xa7\x24\xa2\x65\x18\x27\x72\xfc\xff\x99\xcd\x49\x31\xc9\xe6\x49\x44\x26\xe1\x05\x25\x39\x1d\xd2\xf8\x82\x46\x24\x24\xc3\x6c\x76\xdd\x78\x20\x01\x59\x98\x64\xe9\x18\xba\xad\xb8\x8c\x90\xc3\x11\x49\xb3\xb2\x47\x0a\x4a\xc9\x0f\x93\xb2\x9c\x05\x83\xc1\xe5\xe5\x65\x7f\x9c\xce\xfb\x59\x3e\x1e\x24\x1c\x41\x31\xf8\xb1\xbf\xf6\x78\x20\x85\xed\x5f\x80\x6d\x87\x59\x44\xf3\xfe\xaf\x20\x22\xff\x12\xce\xcb\x49\x96\x93\xb7\x61\x4e\x3f\x93\xbf\x65\x25\xbd\x8c\x87\xff\x26\x3f\x4c\xd9\xf7\x5f\x68\x39\x89\xe8\x45\x7f\x98\x4d\x7f\x04\xe0\x28\x2c\x29\xd9\xde\xdc\xfa\x06\x04\xde\xf2\xa5\xa0\x46\x81\x45\x65\x84\x3e\xe6\x5b\x3b\x84\xa6\x80\x80\xd9\x2a\xe8\x83\x3c\x4c\x4b\x13\x30\x4e\x4b\x1f\xdc\x89\x03\x38\xaf\x80\x7c\x79\x9d\x86\xd3\x78\x28\xc5\x38\x2a\x11\xf1\x1c\x90\x51\xbe\x92\x1f\xcb\x3c\x4e\xc7\x66\x99\x02\xd2\x7c\xd0\x1f\x68\x68\xf5\x31\xa7\xa1\xb7\x8f\x27\x2e\xe8\xbc\x0a\xd6\xd3\x6c\xd5\x5e\x00\x8e\x0b\xd1\x41\x43\x32\x17\x08\x45\x0f\x56\x58\x21\xa7\xa5\x85\x38\xca\xef\x2b\x14\xb0\x8c\x70\xe0\x9b\x1b\xb5\x7b\x24\x15\xd0\xfb\x79\x1e\x5e\x73\x70\x2e\xc4\x2d\x55\xe0\x80\xf1\x27\xd2\x00\xc4\x4c\xe2\x12\x22\x22\x65\x46\x68\xca\x78\x78\x10\x51\xf6\x9f\xaa\x85\x09\xe3\x90\x8b\x49\x26\x95\x84\x5e\x6b\x2e\xcc\x1c\x37\xee\x31\x03\x2b\xcc\x95\x19\x92\xc8\x1e\x60\x28\x8c\x26\x82\xec\x9f\xd2\x72\x92\x45\x9e\x66\xf1\xc3\xf5\x2c\x9f\x12\xae\xb9\x64\xc6\x88\xac\x11\x3e\x07\x45\xf1\x4f\x62\x64\x44\x16\xf9\x0b\xb4\x9e\x7c\xe1\xcc\xb3\x50\x6a\xf9\x5f\x38\xe5\x0b\xf2\x05\x23\x5b\x40\x16\xbc\x55\x28\xc8\x17\x78\xd7\xb0\x20\xe2\x33\x66\xb2\x81\x6b\x44\x8c\x0d\xa1\x2d\x6c\x25\x62\xe2\x1e\x08\x62\x10\x03\xad\xd4\xb8\x49\x0e\x8d\x24\x89\x18\x35\x0b\x53\xbd\x43\x54\xeb\x8f\xe2\xa4\xa4\x79\x07\x95\xed\xa2\x33\x08\xc1\x45\xa5\x50\x0a\x24\x13\xc0\x99\x42\xf7\x74\xf3\x6c\x97\xcb\xcf\x78\x44\x3a\xeb\xb8\x12\x8c\x83\x3f\xd0\xe0\x4f\x39\xda\x71\x7a\x11\x26\x71\xa4\x79\x80\x61\x5c\x0f\x48\x9b\x6c\x10\x8c\x7c\x0d\xeb\x1a\x18\xb3\xc9\x81\x15\x9c\x46\x66\x49\x18\xa7\x9c\xbf\xac\x61\xe4\x00\xef\x45\x4e\xf5\x28\x8a\xf4\xa3\xf3\x5f\xe9\xb0\x5c\x58\x08\xe5\x20\xeb\x72\x1c\x6d\x64\xc1\x55\x0f\x1d\x6a\x86\x33\x72\x3d\x5e\xde\x52\xb8\x60\xd0\x50\xb1\xa2\x73\xca\x80\xcf\x7a\xe4\x14\xc0\xcf\xba\xcd\x48\x93\xc4\x05\x68\x40\x7c\xf2\x55\x53\xa7\xc0\x64\x00\x11\xc0\xa9\xe3\x4b\x9f\xe9\x02\x55\x84\x71\xaa\x6d\x44\x9b\xc2\x9d\xfa\x82\x3a\x45\x15\x7f\x17\x92\xc1\xc7\xb4\xc4\x33\xb0\x10\x92\x43\xb0\x2c\x2b\x26\xda\xc6\x4a\x18\x18\xfa\xd3\x70\xd6\xa9\x92\xb1\x70\x2a\xe7\x99\x23\x86\xec\xe4\x98\x3b\xbc\xa5\xa7\x50\xe4\x8c\x8b\x67\xf9\xa5\x66\x11\x6a\x8f\x58\xa7\x8e\x46\xa3\x82\x96\x4e\xa3\x72\x1a\xcd\x87\x14\xb5\x2b\x1c\x0e\x7b\x64\x49\xe3\x80\x3a\x65\x58\xc6\xc3\xf7\x61\x5e\xfe\x0c\x2f\x89\x2c\xcc\x7d\x3b\xbf\xe3\x69\xa7\xc4\x95\x33\xa1\x44\xa3\x8f\x2e\xca\xb7\x61\x39\xe9\x8f\x92\x2c\xcb\x3b\x1d\xa7\xc6\x0d\xb2\xb3\xd5\x25\x03\xb2\xb3\xdd\x25\x8f\xc9\xce\xb6\xe8\x34\x22\x5f\x38\x1c\x92\x0d\xd2\x51\x8b\x8e\x41\xf5\x0a\x12\x92\xe7\x68\xed\x22\x64\x67\x9b\x04\x46\x42\x45\x63\x25\xe9\x7b\x64\x13\x53\x3f\xa7\xc5\x3c\x29\x25\xf7\xf0\x11\x7c\x3b\x4f\xca\xf8\x97\xb8\x9c\xf0\x31\x91\x1c\x68\xb4\xad\xa7\xf8\xa8\x67\x8e\xa0\x44\x2e\x7a\xc8\xf1\x9b\x3b\x3e\x3f\xeb\x5b\xb5\xfa\xe6\x40\xc3\x16\xa0\x39\xa2\xba\xd7\x6a\xed\xea\x89\x43\x93\x91\xe8\xb1\x68\xac\x58\x15\xb2\xfc\x55\x38\x9c\x74\x6c\xc1\x14\x63\xde\x62\x52\xbf\x72\xbc\xf4\x58\x9d\x75\x71\x21\x4e\x10\x68\xca\x86\x7b\xda\xd9\x31\x9b\x2f\xe7\x11\x62\x42\x35\x77\x19\x17\xd3\x64\x24\x40\xec\x31\x82\x06\xb8\x4d\x92\x74\x82\x0f\x7b\xb0\x70\x15\xe6\x54\xdc\xd8\x23\x54\x3c\xc3\x23\x03\xb2\xad\x41\x17\x84\x26\x05\xb5\xba\x37\x18\x90\x28\x4b\xdb\x25\x09\xa3\x88\x88\x52\x65\x66\xa2\xec\x93\xb8\x6c\x17\x24\x4c\x72\x1a\x46\xd7\x64\x98\xcd\xd3\x92\x46\x15\x54\xfa\x4a\xfd\x5c\xe8\x49\x38\x18\x90\xe3\xa3\x97\x47\x01\x19\xc5\xe3\x79\x4e\x09\xdb\xb0\xa5\xb4\x60\x3b\x40\xb6\x4b\xbb\x2e\x4c\x61\xf5\x5b\x30\xc9\x1f\x67\x90\xcd\xc1\xa0\x98\x80\x92\x2a\x15\xd3\x5c\x91\x35\xa7\xa3\x10\x8e\x63\x2e\x27\x59\x42\x79\x0b\xe3\x74\xbc\xbe\x44\x10\xd4\xc8\x00\x5b\xf2\x8b\x4e\xf7\x48\xe6\xcc\x7c\x63\x92\xcb\x31\x59\xaa\xea\x7b\x96\xb8\x8e\x7b\x34\x86\x18\x88\x57\x4c\x2e\x43\xcd\xd6\x05\x2d\x9d\x31\xe5\x6c\xf5\x2e\x9c\x52\x7b\x1d\xd2\x39\x58\xcf\x74\xcb\x7a\x16\x9f\xfa\xf5\x4c\x23\xf6\xe0\x54\x72\x51\x50\x50\x6b\xb5\xf2\xaf\xa6\xdb\x12\xc9\x2c\xa7\x17\x71\x36\x2f\x54\x83\xb6\x77\x19\x49\xe2\x94\xc4\x69\xe9\x94\x58\x46\x7f\xd4\x5e\x5f\x85\xec\x6f\x94\xe5\x04\x1e\x09\xc7\x64\x8f\x6c\xed\x92\x98\xfc\x20\x3b\x20\xdf\x0b\x93\x78\x63\xa3\xaa\x38\xfb\xb3\xda\xbc\xb1\x47\x36\x3a\x92\x06\x31\x79\x42\xb6\xce\x98\x86\x4f\x6e\x6e\xc8\xe6\x6e\x25\x92\x1a\x51\x2e\xf8\x61\x83\xc4\xe4\x71\xd5\xc8\x6d\xd8\xad\x60\xca\x41\x95\xd8\x97\x7f\x0b\x27\xd5\x4c\x59\x74\x3b\x5d\x6b\x08\x07\x03\x32\x8a\xf3\xa2\x24\x34\xa1\x53\x9a\x96\x6c\x7f\xc5\xc9\xd4\x23\xc5\xe7\x78\x46\xe2\x72\x95\x21\x37\xa8\xbf\xe9\xa3\x3e\xa3\x5f\xed\x08\xc0\xd3\xf9\x28\x8a\x59\x25\x61\xa2\x26\xb9\xa0\xa7\x23\x7f\x5c\x7a\xfb\xe5\xa2\x66\x9d\x0a\x01\x71\x1a\x93\x0d\xb2\x75\x26\xe5\x04\xd9\x20\x4e\x33\x3c\x64\x5f\x4a\x60\x4b\xf8\x79\x20\xc5\x52\xe9\xe1\x7d\xce\x15\xb7\x16\x3d\x7f\x68\xa1\xc2\x94\x2d\x93\x52\x77\x9c\xfc\x4b\x38\x93\x54\x09\xa4\xcd\x3a\x81\x44\x1a\xf1\xf4\x52\x89\x32\x18\x90\x61\x98\x0c\xe7\x49\x58\x52\xa9\xf8\xb0\x2d\x9f\x68\x0b\x89\x4b\x3a\xbd\x83\x38\x62\xa2\xe8\xf4\x3f\x48\x28\x75\x6d\xd8\xc5\x4a\xeb\xca\x1d\x07\xe4\xf7\x13\x30\x58\xb8\x7c\x75\xd9\x42\x9c\xd3\x22\xd1\x8e\x25\xa7\x21\xe2\x2c\x52\xdc\x4c\x66\x35\x27\x46\x1c\xb2\xf1\x89\x91\x4c\x57\xb7\x9a\xea\x48\xc4\x7f\x96\x54\x7d\x0e\x82\x2a\xf6\xa8\x7f\x80\xdf\x77\x46\x84\x8a\xe9\x33\x22\x0e\x0d\xba\x4d\x13\xb2\xd4\x1e\x12\x55\x10\xa4\xea\x8c\xa8\x9a\x20\xa2\x04\xec\x30\xa0\x36\x4d\x98\xfa\x13\x22\xdc\x45\xdf\xee\xd8\xa0\xcd\xea\x07\x44\xb2\x14\xe7\x62\x0c\xcf\x99\xb8\xf0\xee\xc2\xad\xed\xfe\x3d\x9f\x28\xf1\x2e\x77\xa0\x67\x72\x7e\xe9\x63\x11\xe3\x5c\x44\x62\xd4\x27\x4c\x75\x47\x0e\xba\x57\x4b\xcf\x19\x30\x45\xb9\x04\x62\x65\xee\xbb\xa7\x4d\x8e\xa3\xd4\x4e\xd4\xa7\x07\x8b\xa6\x55\x0a\xc9\xc1\x80\x14\xf3\x29\xbf\xa1\xf3\xac\x52\x42\x45\x54\xf0\x02\xdd\x69\x7c\xc6\xa4\xa2\xfa\x82\x25\xc9\x27\x7f\x64\xf5\x26\x21\xa4\xb6\xe9\x90\x60\x30\x20\x39\x9d\x66\x17\x70\x8d\x49\x86\xf3\x3c\x67\xfa\xa9\x52\x4e\x33\x48\x16\xcd\x8c\x0b\x68\xb9\xa7\xb5\xc5\x2a\x27\x7e\x92\x98\x8d\x4f\xfe\x8c\x9e\x91\x27\x0e\xfe\xc6\x9c\xf6\xd1\x9a\x87\x15\xd7\x3a\xde\x5d\xab\x94\x71\x1e\x2e\x2b\xad\x2b\x07\xc9\x56\x6c\x05\xc3\x97\x24\xe6\xfd\x05\x6f\x2d\xab\x6b\x28\x6e\x99\xb0\xa9\x05\xb4\xbe\xc3\xed\x55\x6d\x13\x0c\x71\x2d\xda\xe9\xf6\xbc\xd9\x2f\xb2\x2c\xa9\xca\x63\x4a\x48\x45\xd6\x49\x4d\x1e\xbe\xdc\xac\xac\xb6\x2e\x93\x4b\xe1\xaa\xdc\x0f\x34\xac\x6c\xf1\x09\xcf\x5c\x63\x0c\xe1\xda\x6f\x00\xe9\x94\xcd\x86\x34\x9c\x0d\x9e\xf6\x5a\xfc\xee\xb7\x15\x7c\x03\x3f\x59\xdb\x5a\xc1\x33\xf6\x1b\x5f\xc7\xb6\x82\xef\x7a\x3e\x5b\x8f\x38\x2d\x5b\xc1\xd6\x26\xfb\x99\xd3\x30\x69\x05\x5b\xdb\xec\x37\xbf\x95\x6d\x05\x5b\x3b\xec\x6b\xce\xa1\xa0\x82\xb9\x00\x7b\xb6\x38\xeb\x7d\xf7\x5b\xda\x45\x2d\xb9\x86\xbe\x9d\x35\x11\x46\xb2\x8a\x51\x91\x59\xce\xb6\x2d\xc2\xb9\x2b\x9a\x18\xf9\x8b\xd6\x58\x1a\x99\x2d\x69\x82\xeb\x0e\x76\x47\x15\xc6\x46\x8d\x2a\x45\x57\xe2\xde\xe1\x92\x62\x27\x9f\xd3\x06\x26\x4c\x56\xb7\x97\x5b\x32\x7d\xff\x60\xc9\xf4\x60\xc9\xf4\xdf\x62\xc9\xa4\x27\xc2\x7d\x99\x33\xbd\x88\xc7\xef\xe6\xd3\x73\x10\x85\x4a\x3a\x9f\xc7\xe3\x14\x12\xfb\xbf\x2a\x49\x3e\x2f\xe3\xc4\xb4\xaf\xe9\x0f\x20\x8d\xff\x2b\xc1\x86\x5e\x90\x61\x96\x8e\x62\xc7\x18\x48\xee\xcc\xd0\xaa\x00\x7b\x17\x58\x16\x64\xc7\xb9\xac\x2e\x08\xc8\x7b\x02\x0f\x36\xd8\x3e\x8b\xc9\x2d\x6d\x25\x0b\x53\x81\x8d\x0d\x1c\xce\x3c\x66\x34\xe6\x90\x71\x41\x52\x3a\x0e\xcb\xf8\x82\xf6\xa4\x24\x82\x8b\xa3\xf2\x32\x6b\x17\x64\x98\x4d\x67\x52\x5b\x85\x52\x6c\x6c\x55\xc9\x51\x92\x85\x65\x9c\x8e\xc9\x2c\x8b\xd3\xb2\xc7\xaf\x43\x19\xdb\x47\xd9\x65\x6a\xed\xe9\xcc\x63\x12\x77\xfb\x76\xc3\xa9\x7c\xa3\xe8\xbd\x90\x7d\x61\x53\x29\xa5\x34\x82\x5d\xf4\xb9\x1e\xe3\xc8\x6f\x0c\x03\x44\x5b\x28\x3b\x1f\xb3\x5e\x43\x00\x03\x7e\x29\x85\x55\xbd\x7d\x3e\x16\x9d\x61\xff\xf5\xf1\xdb\x4f\x2f\x0e\x7f\x7a\x77\xf2\xf6\xc5\xab\x0f\x9f\x3e\x1c\x9d\xbc\x7b\x79\xf8\xee\xa7\x4f\x6f\x8f\x5e\xbe\x42\x7b\x38\x75\x12\x07\x23\xd9\x9f\x85\xd1\xcf\x74\x54\x76\xf8\x57\x99\x1d\x5f\x66\xc5\x81\xa2\xa2\xa8\xb3\x5f\x66\x42\x5d\xda\x7a\xd6\xed\x91\x67\x4f\xcd\x1b\x1e\xbc\x5a\x42\x77\x3a\xbc\x12\xd3\x00\xc3\x1c\x78\xb9\xf9\xad\xa0\xf9\x0b\xb5\x37\x36\x37\xcd\xab\xd2\xd0\xd5\x3a\x0c\x2a\x7a\x08\x52\x66\x6f\xe8\x95\xec\x77\x31\x3f\x2f\xca\xbc\xb3\x8d\xe8\x97\x58\x57\xfb\xbc\xb8\x3c\xe5\xde\x20\xcf\x76\xba\x64\x80\x49\x64\x93\xfb\x43\x3c\x9e\x94\xa2\x58\x8f\x24\xe4\xf1\x57\xa6\xa7\x58\x81\xef\x95\xac\x95\x3a\xdd\x9d\xa9\x2b\xb7\x67\x26\x59\xd5\xe9\xdc\xef\x36\x02\xd6\xb1\x29\xaf\xac\xdb\xe7\x73\x7e\x83\x2c\x1f\xa0\x65\x92\x8e\x6b\xf2\xd5\x33\xe2\xa3\xcc\xbf\xeb\xd8\x29\xe3\xce\xe6\xa3\x36\xca\xb3\xe9\x49\x39\xfa\xee\x61\xe0\x3c\x03\x27\xde\x19\x55\x09\x32\xf1\x0a\x49\x0e\x1a\xfb\xa6\x61\xba\xba\x20\xb3\x9f\x1c\x55\x8f\x59\x7b\xf3\x6e\x7f\x6d\xb2\x21\xd0\x93\xe7\x84\xb4\xb7\xda\x24\x20\xed\xcd\xf6\xdd\x65\xd4\x32\x4a\xb2\x1d\x2b\x2b\xf5\x77\x06\x57\x10\xa6\x18\x4f\xe7\x49\x19\x73\xa5\xf2\xfc\x9a\x6c\xff\xdf\x94\xa9\xe7\xca\x86\x2e\x64\x98\x4b\x3a\xa6\x79\xcd\x52\xf2\x41\x60\x5d\xb6\x7e\xaf\x3a\x22\xc2\x96\xb9\x62\x44\x04\x99\x2c\xee\x63\x54\x53\x35\xaa\xc5\x35\x9e\xd2\xc2\xca\xda\xee\xf6\x67\xd9\x65\x67\x6b\xfb\xbb\x6e\xd7\x24\xe9\xc1\x84\x0e\x3f\x93\x78\x64\xd0\x14\xa9\x45\x16\x21\x8a\x78\x9c\xd2\xe8\xb0\x78\xa7\xb3\x9d\x83\x68\x85\x63\x42\xaf\x44\x8b\x4d\x62\x48\xa6\x85\x4d\x1f\xd4\x5d\x9a\x9a\x58\xc6\xb6\x2c\x97\x31\x53\xc3\xc3\xa4\xd0\x56\xcb\x76\xed\x4b\xe9\xe5\xa3\x90\x14\x37\x9b\x3d\xb2\xd5\xed\x91\xad\x67\x48\x1f\xd9\xee\x1a\xb9\x5d\xb2\xb7\xb7\xc7\x58\xd6\xcb\x85\x39\x13\x1f\x4f\xc2\x04\x1a\x45\xf8\xd1\x81\xbe\xf0\xe0\xaa\xa6\xcb\x44\xfc\x20\xc1\x56\x02\x0d\xf6\x70\xec\x60\x19\xcd\xb4\x62\x58\x53\xaf\x52\x0e\x61\x5a\xc4\x63\xc2\xf5\x74\x8b\xdf\x54\x13\x0c\xfa\x19\x46\xb1\x0c\x98\x8f\xe3\x1e\x6f\x0d\x3a\xcb\xec\x74\xc9\xcd\x0d\x69\x6d\xb6\xc4\x19\xf1\x60\x40\x86\x8a\x8b\x98\xf2\x2c\x07\x52\xd5\xce\x81\x60\x94\x95\x9a\xed\x6a\xd8\xf2\xf2\xd6\x1a\x64\x31\xb0\x9e\xf3\x47\xcf\xe0\xf2\xf1\x9c\xc6\xe9\xdc\x9e\x02\xed\xd1\x1d\xff\xda\x80\x5b\x22\xdf\x52\x77\x63\x0d\x1a\x74\x0b\xf6\x99\xd7\xf3\xcf\x49\x2d\x03\xf9\x58\x87\xae\xc4\x3b\xa2\x7a\x97\x6b\x4e\xee\x83\x6d\xbe\x0e\xc9\x84\xbc\xaf\x22\x99\x23\xb8\x97\x92\x0c\x28\x86\xf4\x61\x93\x44\xa2\x3a\x97\x44\x8e\x24\xf7\x99\x9b\x5b\x33\x51\xc0\xf4\xa3\xf8\x22\x8e\x68\xf4\xe2\xba\x46\x80\xdf\x86\x9b\x96\xd0\xe6\xe4\xbe\x89\x33\xaf\xa4\xce\xc9\xca\xe4\x39\xb9\x0b\x7d\xdc\x2b\x58\x8e\x5a\x91\xa8\x4a\xdd\xd2\xaf\xa5\x1b\xd3\x45\x2e\x6b\xe6\x58\x54\xd2\x48\x54\xed\x92\xc8\x51\xce\x7c\x14\xf2\x4c\x2f\x58\xac\xee\xa8\xad\x6d\xb5\xc9\x73\xbe\x2e\x0b\xb7\x18\xab\x51\xb3\x72\xdb\x88\x1e\xe5\xd6\x2c\x7c\x09\x1d\x69\xc2\x31\xf5\xa1\x66\x63\xe3\xe8\x1d\x69\x38\xa5\xfc\x75\x0f\xfb\x65\xe9\x5f\x02\x86\xe1\x54\x18\x3c\x94\x77\x76\xa0\x50\x47\x8f\xe0\x93\x72\x56\x48\xbc\xaf\x26\x7b\xa4\xea\x99\xee\xe3\xee\x00\xed\x67\x8a\xf8\xdf\x42\x26\x16\x70\x45\x25\xca\x9f\x6e\x9d\x99\x7a\x70\x7b\xf3\x8a\xe9\xcb\xee\xe0\xf6\x8b\x24\x1e\x52\xa6\x96\x6c\x93\xc7\x80\x6e\x45\x3e\x5f\x32\x32\x78\x0b\x7e\x6f\x03\xb4\x2a\xf9\x2b\xcf\x01\x9c\x45\x46\xed\x0f\x2d\x39\xc0\x09\x27\x6e\xc0\x6c\xca\x3d\x7b\xda\x15\x6b\x78\x99\x09\xf8\x2e\x79\x2c\xb7\x94\xbe\x11\xb0\x10\x71\xd5\xf0\xd9\xd3\x9e\xa8\x7f\xb5\x21\xa8\xd9\x92\xf3\xee\x7b\xf6\xe4\xf7\x4a\xfd\xb0\x18\xc6\x71\x1d\xfd\x3d\x7b\xf9\xdf\x90\xf2\xf2\x48\x07\x8e\x06\x9a\xd1\x7f\xb5\x01\xd0\xbe\x69\xaa\x46\x60\x5f\x7b\xaf\xa9\x18\x82\x4a\xd9\x5e\x41\x72\x85\xd0\xa5\xb6\xcf\x7b\xcd\x0a\xda\x94\x41\xbb\xd6\xe6\x55\x8b\x6c\x10\xb1\xc1\x01\xb2\xf3\xdf\xca\xa6\xe0\xe9\x66\x8f\xe0\xa4\x2a\x87\x01\x5f\xa4\xdd\x07\xda\x68\x06\xd6\x77\xcf\x86\x81\x19\x1b\x38\x29\x0e\x1c\x9e\xe0\x41\x55\x86\x53\x8a\x13\x33\x70\x93\xdc\x76\x64\x59\x12\xd8\x09\x0e\x14\xd3\x40\x02\x3b\x01\x43\x29\xb5\x2c\xb0\x13\x5c\xa8\x13\x07\xec\xc4\x0b\x87\x2b\xd5\x29\x1e\x7c\x2e\xe0\x89\x1f\x12\x77\x56\xa7\x78\xe0\x30\xb5\x51\x92\x0b\xe9\x1b\x1e\x37\xc7\x2d\x67\x0e\x10\x4e\x73\x61\x05\xd7\x07\xde\x79\xb7\x90\x77\xba\xe6\xcd\x50\x2b\xd8\xfa\xae\xd7\x32\x6f\x94\x5a\xc1\x36\x98\x2f\xc0\xc4\x68\x05\x5b\x5b\xbd\x16\xbe\x97\x6a\x05\xe6\xe7\xe2\xac\xb7\xb5\xf9\x3b\xfb\x73\x39\xe4\x86\xf1\x35\x0e\x88\xe2\xb4\xac\xf2\x3f\x24\xae\xae\xe2\xb4\xe4\xae\x59\xd8\x8f\xa7\xea\xd7\x99\x4e\xdc\x41\xbf\x2d\xcf\x2d\x71\x5a\x72\xbf\x2d\x71\x5a\x3e\x7b\xaa\xc0\xbe\xd3\x88\xb6\xbf\x79\x56\x81\x8b\xc1\x2f\xf1\x63\x64\x6f\x0d\xbf\xa2\x2b\x2e\x00\xb7\x6d\x10\x0e\xd3\x72\x45\xb3\x0b\xa3\x44\x8d\xb5\x05\x54\x57\x53\xf2\x56\xb6\x15\x71\x5a\x4a\x55\xf1\xf9\xad\xfc\xb9\xf0\x56\x2d\xb7\x81\xd8\x6a\x14\xc2\xee\xc1\x08\xe2\xc1\x08\xe2\xcf\x60\x04\xc1\x35\xa5\x7b\xb2\x7f\x68\x60\xd6\x60\x4b\x7a\x6e\xb6\x90\x81\x31\xba\xf6\xda\xd1\xf7\x28\xa8\x97\x13\x9a\xaa\xb7\x8a\x3d\x6e\xf7\xcd\xf4\x6f\xe5\xbc\x41\x2a\x96\x03\xaf\x5d\x84\x75\xf4\x6d\x3f\x4d\x04\x41\x2a\xd5\x47\xfe\xff\xcd\x0d\x69\xb7\x91\x98\xcd\xe4\xab\x05\xfe\x63\x17\x3d\x33\x8c\x53\x51\x7b\x63\x6f\x1f\x63\x5a\x62\x73\x5f\x30\x1e\x6f\x17\xf2\x11\x28\x88\x12\xdb\xd0\x5d\x6b\xf7\xdc\xce\xd5\xd4\xa1\xe5\x21\x93\x46\x8a\x71\x91\x8e\x6c\x62\xd7\xb0\x65\x07\xea\x60\x5b\x76\xbb\x92\x5a\x2b\x34\x30\xf0\x37\x36\x1d\xf8\xe6\xb1\x31\x2d\x86\x39\x65\xbc\x24\x67\x83\xe9\x91\x85\x33\x7b\x14\x8f\x46\x14\x6c\x91\x39\xc5\x2d\xda\x5c\xaa\x27\x21\x78\x33\x22\x49\x22\x06\x49\x9a\x2d\xa7\xde\x2d\x88\xb9\x71\x61\x8b\xa1\xaf\x1d\xe1\x8c\xcb\x17\xd5\x8a\x6a\x52\x5e\xfa\x9f\xcb\x9a\x6c\x57\x79\xa1\xa7\xf9\x51\x71\xea\x2a\x14\xcd\xa6\xe7\x71\xea\x3a\xb7\x29\xb3\x31\x65\xb2\x9d\x61\xa0\xe3\x3e\x9f\x53\xe1\x6c\x46\x53\x98\x4a\x61\xca\x9f\x3f\x58\xd4\x15\xd8\x96\x5d\xc1\x08\xb1\x34\x89\x87\x4c\x38\xc9\x56\x2d\x2f\x2c\xee\x4e\xb3\x91\x80\x85\x55\xa8\x96\xb4\xb2\x7b\xcb\x4e\xfd\xea\xc8\xaa\x4e\x2d\xf8\x85\x49\x03\xe2\x0e\xc3\x24\x11\xe4\x95\x17\x38\xbc\x43\x93\x50\x4f\xdc\x22\xfe\xb7\x70\x2b\x08\x17\x75\x93\xb0\xe8\xb1\xff\x25\x9f\x81\xe3\x5f\xcf\x8d\x1d\x26\xb7\xb2\x02\xf5\x1f\x98\xd6\x52\xc6\xef\x97\xc9\x37\x6f\xc5\xa4\x58\xdf\xdb\x03\xd5\x62\x14\xa7\xd6\x2b\xa5\x65\x44\xd0\xfe\x8a\x04\x2a\x71\xb7\x6c\x9f\x18\xf0\xdc\xfd\xe2\x45\xf5\xbe\x9f\x1f\xf7\xba\xc7\x33\x0d\x66\x99\x81\xbd\xae\xd3\xeb\xd0\x6b\xfd\xf8\xbf\x4b\x9e\x93\x76\x9b\x04\xcd\x4c\xb1\x10\xc9\xbc\x06\x59\x2b\xd0\x8d\x49\x7e\x7e\x32\xa1\x14\x46\xdf\x43\x2f\x7d\x78\xe1\xa7\x99\x5c\x79\xe4\x7d\x70\x88\xe5\x7d\x38\xc5\x4c\x06\x1c\x5e\x4b\x45\x5d\x99\x97\x84\xe0\x51\xc9\xa6\x9f\xcf\x33\x93\x9a\x5d\x9e\xeb\x3e\x44\x42\x31\x5c\x9d\xd5\x09\x67\xac\x69\x15\x94\x43\x2b\x92\x9f\x74\x32\x21\x94\x97\xef\x0d\x68\x48\xa7\xb3\xf2\x1a\x9f\x06\x36\x58\x41\x97\xce\x41\x93\x1b\x91\x6c\x0a\x40\xf3\x58\x81\x36\xd2\xd3\x54\xa5\x8f\x29\x2f\x25\x6a\x3b\x22\x50\x2e\xeb\x83\x71\xa7\xb2\xe1\xd1\x09\x6e\xd3\x0f\xfd\x08\xaf\xda\x2f\xd4\xcf\x71\x51\x3a\x2f\xfe\x4e\x8d\xde\x9c\x79\x9c\x41\xd5\xf6\x5e\x63\x76\xd7\x16\x78\x0f\x24\x6f\xe7\xe7\xb3\x88\x5b\xb3\x8a\xb7\x6f\xea\x04\xb2\xcc\x4a\xf4\xbe\x95\x17\x94\x5a\x11\xf7\x35\x44\x8c\xf7\x7c\xea\xd9\xa0\x00\x35\x9f\x12\x19\x8b\x9a\x9a\x89\x7c\xdd\xaa\x98\x8a\xf6\xa5\x97\xed\x20\xc4\xac\x9e\xec\xe1\x16\x6b\x58\xdc\x8d\x8d\x3d\xf7\x7c\x5f\xbc\xd0\x72\x5f\x65\x71\x48\xad\xfb\x74\x32\xfc\xd2\x56\xbd\x94\x1b\x0c\xe4\x50\xd3\x0b\x9a\x5f\x97\x13\xf0\x3f\x82\xf0\x60\xea\xb8\xce\xa6\xa4\x15\x9a\x43\x1f\xe3\x75\xae\xff\x62\x42\xf9\x5b\xba\xd7\x2a\xdc\xb3\xe6\x45\x8f\xb4\xdb\xf2\xcc\xbd\xe6\x6c\xe2\x3d\x1f\x25\xeb\x28\x4f\x9d\xda\x2d\xce\x7a\x5b\x8d\xe2\xeb\x7d\xc5\xa3\x38\xb8\x84\xae\x3f\x8b\xcb\x19\x48\xc5\x61\x9c\x34\x2d\x63\xff\xf3\x13\x32\xf8\xf5\x54\xff\x3c\x43\xc9\x3b\xf8\xc3\x3a\x92\x63\x69\xfc\x4c\x8e\xfd\x92\x87\x72\xec\xf7\x77\x08\x1d\x3a\x96\x73\x30\x36\x38\x98\x73\xae\xdc\x57\x39\x99\x63\x85\x57\x39\x9a\xe3\xf0\xf6\xd9\x1c\x4b\x5d\xf1\x70\xce\x2c\x52\x73\x3a\xc7\x6b\xac\x2b\x7b\x9b\xf3\x39\x46\xdb\x8a\xf3\xb9\x66\xce\xf1\x45\xb3\x1a\x9c\xcf\x35\x8a\xe0\xf5\xb5\x1e\xd4\x79\x2e\xfd\x56\x61\x0f\x5e\x7c\x15\x06\x91\x25\x6c\x16\xe1\xe9\x2b\x32\x89\x5d\xa8\x86\x4d\x64\xbd\xf5\xe5\x6f\x75\x94\xcb\xb5\xa8\x26\xef\xe4\x3c\xf5\xdd\xef\x0b\x39\xd5\xcb\x06\x7c\x77\xff\x11\x47\x6a\xdf\xec\x78\xe4\x30\x72\x6b\x1b\x17\xcd\xfd\xd9\x0e\x69\x5e\x86\x71\xea\xf7\x69\xeb\x10\x92\x5f\x22\x2d\x61\x6a\x0e\xd4\x37\xd3\xeb\xd9\x5a\x14\xb1\x32\x96\x7a\x80\x28\x69\x3e\x65\x7b\xfd\x78\x04\x98\xcd\x76\x47\xc2\x53\x2d\x19\xc7\x17\x34\x95\x96\x2c\xe6\x66\xba\xca\x45\xae\x65\xf6\xc2\x37\xd8\xda\xca\x16\xa8\xcc\x91\x3b\xf5\xfa\x6d\x6e\x31\x44\xf3\x29\xc2\x1d\xd2\xb6\x4a\xaf\x62\x9c\x5d\xd0\x3c\xbf\xcc\xe3\xb2\xa4\x60\xe5\xc5\x5b\xd5\x22\x1b\xd0\xfa\xc6\xb4\xbb\x84\xc3\xf5\x02\x3f\xde\x07\xe3\x07\xbd\x09\x8d\x53\x41\xc2\xd2\xf5\x35\x6c\xbf\xaf\x6f\x44\x4c\xf7\x38\xd2\xaa\x4e\x9f\xd6\x56\xd0\xcd\xe3\x36\xc0\x4f\xc1\xc1\x00\x4e\xc0\xc3\x29\x9b\x15\xe0\xe9\x50\x1c\x63\xb1\xfe\x32\x49\x40\xf9\xd5\x42\x12\x7f\xa6\x24\x24\x45\x9c\x8e\x13\xaa\x7c\x6f\x01\x64\xdf\x30\x83\x06\x0e\xe6\xae\x65\xb8\x2b\x0e\x5e\xdb\xcd\x0d\x39\x6d\x9f\x6e\x9d\xb5\xcf\xba\x4a\x19\x5c\xf2\xf4\x5f\x34\xcf\xa4\x3b\xfb\xc2\xee\x0c\x2b\x54\x77\x6e\xfa\xc4\x49\x01\x26\x0a\x5b\x3d\xf2\x04\x6c\xb0\x37\xa1\x2d\x5b\xd8\xf9\x8c\x6e\x90\xa3\xc8\x4a\xe7\x0c\x3d\xe9\xce\xa1\x6a\xb7\x20\x9d\x38\x3c\x96\x80\xba\x82\xc1\x80\x84\x49\x42\xce\xc3\x22\x1e\x72\x9f\x07\xf0\x40\x60\x67\x5b\x1c\xdd\x24\x19\xdb\x15\xcb\xd6\xf4\xc8\xce\xf6\x32\x5b\x13\x73\x62\x0b\x89\x26\x77\xdf\xf2\x10\x92\xd0\x31\x28\x90\x10\x08\xea\xf4\xac\x45\xf6\x7e\x84\xf9\xa9\xd3\x9e\xf2\xc4\xda\x63\xb4\x7d\x89\x6d\x55\x09\x30\xa1\x95\x2d\xab\x99\xed\xb8\xd6\x4a\x9e\xd5\xae\xbe\x0c\x27\x30\x0e\xd3\xed\x5a\xcb\x28\x2a\xf2\xe8\x11\xc1\xdf\xa7\xe8\x37\x72\xfb\x76\x26\x57\x5d\x15\x0d\x63\x30\xbe\xd5\xd8\x88\xe9\x5b\x37\x34\x72\x14\xcc\xb1\x11\x03\x66\x0e\x0d\xf2\xb2\x76\xc7\x91\xb1\xda\x55\x33\x30\xa8\xce\xaf\x3d\x2e\xf7\x39\x30\xa6\xbb\x13\x2d\x48\xd1\x48\xc0\xde\xa8\x05\x26\x08\xdb\x9c\xe8\x7c\x93\xd4\x12\x36\x0a\x5b\x62\x28\xb6\x9e\x2a\xc0\xed\xb3\xd3\x1d\x01\x2a\xd3\x38\x88\x82\xd8\x3a\xb3\x12\xf4\xb7\xbb\x3a\x00\x55\x6f\xb1\x3c\xe0\xbe\x88\x2e\x2e\x5f\x13\x50\x65\xf7\x34\x90\xf1\x88\x74\x50\x16\x92\x90\xb6\x3c\xbe\xe5\xc0\x82\xc0\xf6\x3d\x82\xd8\xaa\x19\x72\xb1\x48\xc8\x5d\xb5\x6f\x9c\x61\xdc\x7c\x43\xdd\x52\x31\xf7\x9c\x01\x17\x9f\x2d\x63\xdc\x0d\x44\xa7\x26\x72\x3c\xdc\xda\xe3\x5a\xa3\x71\x56\x19\xbc\x2b\x22\xbf\x72\x7c\x0d\xcf\x89\x95\xab\xbd\xf0\x50\x94\x84\x45\x49\x4e\xcf\x98\x32\xc1\xf1\xde\x6a\xd8\xd7\xfd\xe3\xae\xc6\x00\xf4\x2c\xe2\xf8\x55\x82\x0d\x8d\x7e\xfd\x04\x9f\x8a\x07\x9a\x30\x49\x8d\x4d\x2c\xda\xc2\x28\x09\x6c\xdf\x31\x91\xf3\x6b\x12\xd1\x51\x38\x4f\xe0\x10\xb4\x98\x33\x3d\x55\x2d\xcc\x2d\xe1\x9a\xa6\x27\x42\x3b\xda\xa3\x68\x6c\xa3\x6e\x21\x80\xf5\x8a\xb8\xa2\x2a\xdc\x70\xf7\x56\x69\x4b\x2f\xfd\xb3\xcb\xf3\x61\x34\x45\x0a\x7b\x8e\x00\xc7\x0b\x56\x3e\x6d\x31\x8e\xef\x91\x16\x9b\x04\xec\xbf\xb3\xd6\x99\xe6\x76\x01\x81\xd2\xa0\x50\x3a\x4f\xec\xd7\x0e\x68\x34\x1b\x91\xcd\x76\x2a\x67\xb5\x77\xc9\x44\x70\x1d\x53\x39\x33\x81\xaf\x0d\xc2\x41\x1e\x1f\xf5\x02\xae\x76\x59\x77\x8c\xfe\xb2\x7f\x61\xd6\x5b\x4c\x2c\xa4\x55\xe7\x5f\xa7\x7c\x37\xfe\xaf\xb3\xee\x72\x15\x41\x1c\xde\x2a\x0f\x0f\xd5\x77\x0e\x56\xe8\x0a\x09\xdd\x5c\x74\xc8\xf7\xa6\xee\x2d\x96\x45\x33\xcf\x85\x85\xb8\x40\xb7\x17\x06\xaf\x0f\x6a\xf3\x46\x46\xb8\x3f\x95\x8e\x4f\x6d\xb1\xb0\xc4\x03\xac\x32\xfb\xc6\x36\xc4\xbb\xa4\xf2\xcf\xef\x0c\xd5\xf5\x25\x4b\x93\x11\xf6\x21\x2b\x44\x99\x53\x48\xbd\x46\x3e\x3d\xf3\x39\x0e\xef\xcf\xe6\xc5\xa4\xe3\x78\x23\x95\xaf\xb3\xa5\x6b\x51\x17\x33\xeb\x8b\xeb\x67\xfd\xc2\xe7\xf4\x13\xd7\x84\x7c\x77\x76\x2e\x7a\x04\xfb\x94\xb5\x5c\x92\xde\xc9\x91\xaf\x18\x40\xec\xc0\xf7\xce\xe3\x07\x4d\x77\xb4\x0e\x41\xf8\xdf\x7e\xfc\x7c\x5e\x58\x97\x78\x5f\xad\x1c\x08\x36\x9a\xe0\x1e\xb5\x66\x3c\x56\x1e\x8d\x35\xe7\x7e\xd0\x3a\x3b\x32\xa6\x24\xf2\x62\xdb\xc4\x0f\x28\xbf\x1b\x1d\xe5\xd9\xd4\x6b\x68\xc0\xa1\x7c\xb2\xe5\xdc\x7e\xa7\x63\x59\x06\x19\x26\x41\x2b\xbc\x93\x92\x42\x8d\xd7\xdc\x40\x44\x89\x8e\x60\x11\x65\xf8\xd0\x5c\x22\xaa\xbe\x8a\xac\x82\xb5\x09\xdf\x58\x72\x45\x57\xbc\xec\x81\xe6\x49\x45\x47\x90\xeb\x31\xd9\x06\xb3\x87\xae\xf4\xe2\x2c\x88\x57\x35\x89\x6a\x71\xe2\xea\x1d\xc4\xbe\x19\x05\x05\x3e\x96\xfc\x7e\x1d\x97\xde\x20\x3b\xdc\xd1\x3d\x5f\x6d\x0b\x06\x52\x90\x70\x54\xd2\x5c\x4d\x12\xdc\xde\x5b\xcd\x55\x7f\x19\x9f\xbf\x6e\x2d\x39\x2a\xfc\x74\x93\x5a\xea\x89\x70\x31\xef\xaa\xf0\x63\x5f\x1e\x95\xae\xa3\xed\x38\x37\xb5\x82\xa6\xa1\xa4\x21\x8f\xeb\xdb\xc6\x60\x37\xf6\xea\x61\x1a\x09\x2a\xd3\xc9\x2c\x1a\xf6\x0d\x12\xdf\xaf\xd4\xfa\x43\xac\x21\xf8\xaf\x21\xf7\x4b\x43\xd4\x86\x7f\x7f\x28\xe6\x7f\xe0\x7d\xf4\xf7\xbb\xf0\x3e\xf1\xb2\x3e\x0e\xca\x78\x5b\xd6\xb7\x43\x87\xad\xb8\xa8\x38\xcc\x6a\xe3\x6f\xb6\xb2\x98\xad\x58\x05\xbf\x18\x3f\x2f\xbf\x25\x0e\x7f\xf9\xe7\x5f\xf5\x14\x9e\x89\x5b\x3f\xd7\x3a\x75\x59\xf3\x3b\x64\x8b\x6c\x98\xad\xeb\x72\x3f\x4c\x3c\x7a\x98\x67\xe8\xb9\xd7\x61\xeb\xd2\xcd\x78\xa7\x5d\xe3\xc3\xde\xa0\xb5\x65\xed\x65\x48\xb1\xb5\x15\xfb\x86\xc7\x5c\xcd\xac\xed\xae\x79\xac\xea\xbd\x48\xb4\x9a\xbe\xf4\x82\xb7\xfa\x6a\x57\x3d\x85\x5b\x9c\xf5\xb6\x7e\xef\x70\xfb\x27\xcb\x5f\xbb\xcd\x6b\x9e\xbb\x09\x07\x24\xf0\x3f\xb7\x75\x99\xeb\x17\x6f\x73\xf4\xe4\x6d\x8e\xdf\xa9\xcd\x3d\x8f\xde\xe6\xea\xd5\xdb\x1c\x3d\x7b\x9b\xa3\x77\x6f\x73\xf3\xe1\x9b\x83\xb1\x81\x85\x8d\xe3\x16\xe5\x2b\xbe\x7d\x3b\xf1\x3e\x7e\x3b\x59\xfd\xf5\xdb\x49\xd3\xe7\x6f\x27\xee\xfb\xb7\x93\x7b\x78\x00\x37\xbf\xf3\x0b\xb8\x93\xc6\x4f\xe0\x7e\xef\x58\xfe\x27\x0d\x2c\xce\xe6\x75\x26\x67\xd2\xa3\x0a\xff\x21\x98\x13\x59\x9d\xcd\xb1\xd9\xd9\xdc\xb0\x12\x9b\xfb\x0c\xcf\xe6\xda\xf2\x6c\x8e\x4d\xcf\xe6\xd8\xf6\x6c\x6e\x19\x9f\x79\xf0\x36\x99\x1c\xbf\xa9\xfd\xd9\x89\xdf\x00\xed\xe4\x16\x16\x68\x27\x8d\x4d\xd0\x4e\x3c\x36\x68\x76\xe9\xdb\xcd\x91\x1a\x33\xb4\xa6\x93\xa4\xb9\x21\x5a\xa3\xb8\xff\xed\x79\x41\xe1\x60\x76\x58\xb6\x79\x10\xbe\x71\x46\x68\x7a\x41\xa2\x8c\x82\xb5\x02\x3c\x0a\x0c\xd3\x08\xfc\xd6\x92\x7f\xbc\xfd\xf9\x4d\x59\xce\x3e\xd0\xff\x37\xa7\x45\xb9\x06\x8a\xd9\xf5\x8c\x66\x23\x2b\x87\xbb\xaf\x51\x2f\x37\xda\x92\x2e\xa2\xe2\xbe\x0d\x4d\xbe\x2c\x76\xd7\x8c\x00\x91\x95\x90\x66\x02\x68\xea\xbf\x16\x13\xb6\xfa\xc4\xe3\x34\xcb\x69\x90\xc4\x29\x5d\x5b\x70\x8b\x55\x46\x87\x46\x1e\xee\x1f\x1e\xcc\x3e\x3c\x98\xfd\xcf\x7d\x30\x2b\x5e\xcb\x0a\x1b\x36\xe3\xb9\x2c\x5f\x70\xc8\xed\x5e\xcd\x8a\xb5\xef\xa4\x8c\x13\x7d\x9c\x09\x53\x87\xbf\x4b\x72\xa0\xe2\xf2\x5a\x49\x44\x55\x62\x98\x84\x45\x41\x4e\xa1\xc4\x99\x68\x24\xcf\xd0\x22\x98\x63\x5a\x1b\xc0\xad\x11\xcc\x51\x71\xb4\xca\xe4\x07\xa9\x71\x5f\xdd\xdc\xb3\x39\x40\x32\x4c\x27\xef\x0e\x8f\x3f\xb2\x9d\x35\x0c\x41\xfb\x92\xc6\x6d\xce\x98\xed\xcf\xe8\xf7\x5b\xf4\xfb\x27\xf4\xbb\xf8\x77\x78\x9e\xc9\x8f\x51\x9c\xa6\xf4\x5a\x7d\xd1\x69\x99\xc1\x0b\x46\x99\x32\x8b\x87\x66\x42\x1a\xa6\x66\xc2\x34\x1e\xe6\x76\x4a\x92\xc4\x4e\x21\x03\xde\x00\x95\x1f\x46\x91\x71\x1e\xa6\x91\xea\x8a\x91\xf5\x93\xf1\x75\x6c\x7c\xbd\x37\xbe\x5e\x19\x5f\xff\x6b\x7c\xfd\xd3\xf8\x7a\x67\x7c\xbd\x34\xbe\xfe\x6e\x7c\x9d\xf0\xaf\xb5\xb3\x6a\x7f\x35\x6c\x8c\xde\xef\xbf\x64\x43\x1c\x90\x9d\xed\x9e\x4a\xfc\x78\xf8\xd3\xbb\xfd\xe3\x93\x0f\xaf\x3e\xfd\xfc\xea\xdd\x4f\xc7\x6f\x02\xf2\x54\x67\xc2\xa8\x06\xfa\xa7\xce\xa9\xe0\x9c\x80\x7c\x21\x56\x82\xf6\x9c\x0e\x19\x9f\x5e\x1e\xfd\xf2\x8e\x2c\x34\xa6\xf7\x47\x3f\xff\xcc\xa0\x8f\x0f\xdf\xbe\x3a\x3a\x39\x0e\xc8\xd6\xe6\xe6\xe6\x40\xb4\x50\xdc\x77\xbf\x48\xb2\xe1\xe7\x80\xb4\x99\xe0\x2c\xca\xb6\x91\xb7\x3f\x84\xe0\xc5\x81\x7e\xd3\xc8\x9f\x5f\xb0\xd5\x7c\x99\xc3\x93\x87\xe0\x17\x0f\xcb\xd8\x9f\x7c\x19\x5b\x53\x7e\x1f\x8a\x49\xb8\x73\x5f\x6e\x1f\x0e\xf2\xeb\x59\x99\xfd\xf5\x23\x5e\x1b\x86\x90\xf6\x44\x87\xbc\x60\x15\x7a\x01\x06\x2c\xa7\xed\x0d\xe7\xe4\xfa\x6c\x00\x86\x2b\xf0\xbb\x54\x91\x44\x1e\x3d\x92\xb9\x7d\xe9\x24\x82\xeb\xc8\x13\x7a\xd5\xb6\x9f\xd0\x19\xde\xbe\x7e\x24\xdb\xac\xb4\xed\xee\x78\x5b\xba\x88\x34\x8b\x13\x79\x13\xae\x6e\xf7\x2d\x87\xec\xc4\x7a\x6a\xc7\x41\x25\x8d\x58\xe3\xfa\x6f\xe8\x55\x1f\x8e\x2e\x3b\xf2\xf1\x39\x71\x2e\x4f\x19\x55\x64\xb7\x75\xed\x7c\x3b\xc7\xcf\xde\x02\xb2\xfd\xcd\x33\x5e\x12\xbd\x49\x96\x0f\xce\x98\xc4\x53\x34\x6e\x05\xdf\x7c\xdf\x6b\x99\x24\x6f\x05\xdf\x6d\x2e\xce\x7a\xdb\x8d\xfc\x3c\x3d\x88\xbd\x07\xb1\xf7\x67\x10\x7b\xfc\x79\xff\x3d\xc8\xbd\xaf\xa1\xb8\xcb\x82\x3e\xbd\x7d\xa5\xf0\x42\xb6\xac\xed\x0f\x84\xb8\xd7\xf1\x87\x46\xdf\x61\x00\xf6\xad\x34\xf8\x79\x1a\x97\x6f\xc3\x99\xd2\x16\xdb\x52\xa1\x0e\xb8\x0c\x6a\x6f\x4a\x55\x93\x29\xed\x81\x16\x8b\xed\x2d\x43\xcd\x0f\x50\xc6\xe6\xa6\x2a\xf4\xb7\x9a\xbc\xf3\xf0\xfc\x3c\x1c\x53\x55\x13\xce\x43\xba\x7f\x60\xe7\x4d\x3d\x38\x51\xf6\xdb\xfa\xec\x24\xbb\xa0\x49\x38\x94\xd5\xda\xd9\x7a\x8b\x11\xf8\xb2\xc7\x7e\xe4\x08\xe2\xa7\xa5\x10\xc5\x24\x4c\xd3\x2c\x35\xfa\x6d\x42\xe8\x6d\x4d\x50\x03\xb1\xa4\x16\xd8\x58\x05\x1e\x08\x4c\x4a\xbd\x5d\x0a\xea\x81\x96\x61\x12\x5b\xb7\xc0\x0b\x64\x20\x53\xdb\x31\xb7\x46\x1b\xae\xaa\x52\x04\x67\x30\xab\x07\x0e\x81\x7e\x36\x61\x7d\xa0\x78\xa4\x61\xcb\x57\x8b\x18\x37\xb7\x11\x6e\x8c\xbe\x69\x01\x54\xa6\x5c\xa1\x0c\x2f\x26\xa7\xf4\xa8\x9c\xba\x13\x1a\xe6\x98\xcc\x31\x66\x18\x9b\x04\xaa\x88\x3d\x05\x18\xeb\x39\x99\x36\xbb\x18\x68\x3d\x20\x49\x12\xfb\x41\x30\x4b\xe9\x46\x2f\x19\x58\x0c\xb9\x6c\xa0\x1a\xc0\xe2\x61\x6a\x06\x8e\x07\xa9\x71\x09\x56\xc8\x6f\x0a\xa7\x5d\x64\x5c\x84\x49\x1c\x85\x65\x96\x93\x88\x16\xc3\x3c\x16\xfa\x6f\x99\x91\x09\xbd\x7a\xc2\x4d\x80\xe1\xe1\x20\xf9\xeb\xc7\xa3\x77\x96\x8d\x5c\x99\xbd\xcd\xd2\xf8\x33\xf7\x00\xe5\x35\x75\x8b\x0b\x54\x03\x4f\x49\x61\xbd\xf0\x95\x40\x2d\x30\x0b\x1a\x19\xd5\xe5\x2f\xe9\xf9\xc7\xb8\xb4\x2a\xbd\xa4\xe7\xa4\x60\xa9\x27\x1f\x7e\x5e\x5b\xe2\x18\x9b\xeb\x06\xac\xa3\x24\x0a\xcb\x50\x5d\xa8\xa8\x7e\x3a\x17\x08\x3d\xdc\xb6\x9e\x6c\x01\xd7\xf0\x59\xc9\x5f\x8b\x97\x61\x19\xaa\xc5\xef\x5d\x38\xa5\x01\xd0\x81\x0f\xe6\x4b\x5d\x38\x30\x30\x41\xee\x2f\x1c\x5b\x20\xd1\xae\x11\xb2\x00\xe3\x12\x79\xa5\x0d\x11\xb8\x78\x15\xdd\x65\x03\x3d\x0b\x23\xd9\xcb\x32\x23\xf4\x6a\x46\x87\x4c\x8d\x54\xaf\x64\xf0\xb8\x0a\xf7\x45\x3e\x1a\x6b\x14\xe7\x94\xc1\x45\x22\x18\x9e\x65\x0a\x39\x9c\x84\x79\x38\x2c\x69\x5e\xc8\x9b\x36\x30\x8f\x11\xa5\x91\x46\xe7\xad\x23\x1e\xa7\x3d\xf4\x24\x81\x6c\xfa\x07\x0e\xfc\x41\x13\xe9\x0f\xda\xf2\xad\x2d\xfa\x60\x8c\x18\x07\xe9\x41\xeb\x8a\x1e\xd4\xe3\xf1\xf1\xc5\x0d\xb5\x00\x06\xe2\x41\xc3\xa3\x71\x65\xa8\xb1\xd5\xed\xff\x9a\xc5\x29\x84\x4a\x21\xcf\x01\x07\x09\x48\x6b\xb3\xd5\x25\x1b\x02\xb8\xc2\xfe\xf4\xd6\x63\x01\xb1\xb2\xfe\xd3\x07\x03\x3a\xb1\xe2\x68\x88\x16\x6e\x70\x7f\xe7\xb7\x1d\x97\x2a\x7b\x60\xd3\x17\x14\x28\xb1\x60\x0d\x0c\x71\x74\x5c\x0f\xef\x8e\xec\x3b\xa9\x10\x43\xa2\xd5\x71\xca\x90\xf8\x89\x85\xbd\xc1\x7b\x3c\x95\xb1\xca\xb5\xf5\x2f\x97\x40\x27\x5c\xc9\x56\x9b\xeb\x09\x0f\xb5\x3e\x18\x90\xd7\x71\x1a\x11\xfe\xc6\x52\x34\x54\x85\x4a\x67\x02\xab\xd5\xd2\x06\x35\x60\x82\xd6\x83\xe8\x6d\x13\x7a\x25\x5f\x12\xa8\xd3\x0f\x96\xc6\xcf\x1f\xd8\xde\xbf\xfa\xd4\x82\xa1\xd9\xc6\xcf\xcf\xc0\xc6\x4d\x98\xb6\xed\x92\x78\x63\x6f\x1b\x83\xcb\x30\xe4\xd8\xc4\x4a\x57\xd5\x89\x59\x3d\x22\xf0\x8c\xaa\x61\x44\x3a\xbc\xc8\xde\x1e\xd9\xec\x1a\xe7\x25\xe7\x39\x0d\x3f\x6b\x50\xd6\xcb\x8d\x3d\x22\x9c\x3b\xb0\x11\x3c\x98\x84\xf9\x41\x16\x51\xc0\xe0\x3d\x0e\x61\x83\x2d\xad\xe2\x8a\x32\x6f\xc6\x21\x7c\xd0\x56\x62\x91\x7d\x56\xe4\xb7\xe3\x11\xa8\xee\xbf\x87\x49\x6e\x33\xf2\x45\x59\xe5\x24\xc2\x1c\x6c\x4f\x84\x87\xce\x2c\xa7\xa3\xf8\x8a\xc7\xaf\xdb\xbc\xea\xb2\x51\x00\xa9\xe1\x0f\x2e\x21\x02\x2d\x56\x8f\xbe\xf7\x09\x01\x2c\xff\x61\x02\xd2\xbc\x36\x94\x87\x2f\xc0\xae\x11\xe9\x42\x04\x3d\x10\xcd\xc0\x5c\xc1\x38\x5e\x50\x9e\x8f\x3e\x4c\x07\xf1\x7a\x82\x4f\x07\x39\x22\xac\x26\xcd\x1d\xa3\x2c\xb7\x2d\x59\x8b\x32\xef\x57\xbc\x19\x41\x23\xca\xa0\x86\x62\x6c\xf6\xcb\x4e\x7c\xbb\x99\x0e\x46\xc2\x22\x2e\xbf\xe1\x36\x51\x83\xb0\xf6\x6e\xec\x91\x54\xae\x0b\x3f\x90\x6d\xf2\x9c\x6d\x49\xc8\x06\x61\xeb\x41\xea\xe3\x09\x11\xc0\x61\x42\xaf\xee\x93\x35\xac\x88\x1f\x36\x6f\x2c\x11\x0d\xbf\x19\x73\x38\x32\x03\x71\xc7\x6f\xc3\x01\xbf\xdb\xb0\x5a\x1e\x83\x47\xf3\x24\x51\x64\x18\xd0\x0b\x9a\x96\x7c\xcb\x02\x22\xff\xd7\x22\x4b\x49\x78\x1e\xdb\x32\x5e\xfa\x2d\x3d\xce\x5e\xcf\x93\xc4\x7e\xca\x2c\xdf\xf4\xb0\xd2\x4f\x78\x69\xf7\x4d\x22\xaf\xd8\xa9\x57\x0b\x76\xb7\x0e\x43\x91\x62\xc8\xf1\x25\x06\xfb\xee\x83\x25\x53\x9c\x46\xf4\xea\x68\xd4\x69\x77\xda\x5d\x70\xce\xfa\x64\xcb\xf3\x2a\x59\xc1\x3b\xe6\xba\xe5\xf5\x8c\x8a\xea\x00\x08\xb8\xc8\x74\x2b\xd8\x89\xbb\x5f\x64\xf4\xee\x3e\x83\xdf\x25\x0b\xa1\x8a\x99\x06\xb8\xaa\x16\xb2\x41\xda\x1d\x36\x72\x0a\xfb\x06\x69\x77\xdb\x8d\xe6\x5e\x14\x17\xb3\x24\xbc\xe6\xe3\x02\x3e\x7e\xd3\x92\xe9\xb6\x8a\x1a\xf6\xd3\xd1\x2b\xc8\x7e\xc9\x8b\xd5\x3d\x34\x67\xd8\xcc\xc1\xf7\x4f\x2f\xa3\x05\x6c\x49\xb3\x38\x86\x8e\xfb\x32\xd4\xe9\x75\x47\x58\xb7\x76\xc9\x93\x1f\x55\xa2\x1a\x56\xb7\x6d\xb5\xfe\x07\x94\xe9\xb4\x33\xb2\x06\x99\x05\x18\x1f\x6c\xf2\xdc\x7e\x5a\x2e\x9e\x65\x92\x00\xfb\xfc\x19\x0c\x74\x47\xd9\x5e\x3f\xc9\xc2\x88\x46\xea\x4a\xc6\x33\x27\x70\x07\x8e\x35\x93\x54\x3d\x2d\x1e\x90\xe3\xa3\x97\x47\x01\x99\x86\x9f\xe1\x92\x26\x4e\x2f\xe6\x49\x4a\xf3\xf0\x3c\xa1\xf7\xd9\x41\xbd\x1b\xb0\x1f\xd1\x6f\x91\x27\x04\x65\x77\xbb\xfd\x9c\xce\x92\x70\x48\x3b\x6d\xd2\x06\xdf\x8a\x6c\xb7\xd0\x32\xe3\xb3\x66\xe9\x05\xcd\xcb\x42\x47\xbb\x05\xbd\x2f\xa2\xc3\x78\x1a\x26\xb6\x90\x8d\x53\xbf\xb0\x2f\xb3\x97\xbc\x80\xcb\x79\xb5\x91\x6b\x4d\xcf\xa2\x5c\xc1\x13\x98\x96\xc6\x5e\x2d\x33\x37\x34\xad\x0a\xfe\xd4\xa4\x8f\x4b\x75\x5b\x26\x13\xef\xab\x5f\x08\x57\x7d\x5c\xe4\x54\xde\x57\xb8\xfd\xf3\x44\xc5\x17\x17\x19\xe6\x8a\x62\x6c\xf6\x39\x40\x42\x8b\xe2\x78\x12\xa6\x9d\x4d\xf0\xe2\xfc\x84\x3f\xfe\x10\x8f\x68\x04\x63\x6d\x75\x21\x72\x32\xca\x31\xa8\xb8\x3f\x07\x37\xe9\x82\x94\x61\x7a\x2d\xfc\x5f\x09\x8f\xc0\x69\x35\x59\xfb\x82\xae\xfb\x69\xc4\x2f\xe2\x38\x0f\xc5\xa3\xeb\x42\xc4\x31\x28\xc8\x39\x1d\x65\x39\xed\x3b\x7c\xf5\x46\x6c\x1d\xea\x69\x7f\x23\xd6\xa0\x25\xac\xf5\x06\xd6\x79\x83\xf8\x6a\xfe\x3e\x16\x16\x9b\xd3\xf0\x8a\x07\x8d\xbd\x8a\xcb\xeb\x80\x7c\x07\x97\x49\x72\xd5\x89\x0b\xe1\x53\x1c\x8a\x76\xed\x45\x06\x0d\x72\x67\x83\x41\xec\x1a\x45\xf1\x70\xd6\x17\xb6\xca\x0a\x7b\xd6\x0b\xc6\x3b\x6c\x17\xc2\x89\xd6\xf6\xa2\x80\xe8\x66\x7f\xfd\x78\xf4\xae\xaf\xa8\xcc\xeb\xd3\x7e\x64\xc1\x7b\x73\x41\x42\x3b\x90\x6e\x8f\xcc\xc2\xa2\x60\xb2\xab\x9c\xe4\xd9\x7c\x3c\x31\x67\x80\xea\x88\xe0\x35\xc0\xea\x9a\x09\x68\xa9\xf6\x04\x76\x4b\x1e\x9d\xb7\xb2\xc7\x12\x40\x3c\xb1\x32\xd1\x2d\xc1\x76\x21\xcd\xb8\x11\x02\xd2\x59\x8f\x8b\xd7\x71\x1a\x97\xd4\x22\xba\xd5\x0c\xd0\x10\x51\x23\x4c\x2d\xcb\x6d\x28\x9a\x17\x1f\xc4\xa2\xc2\xe7\x01\xdb\x2f\xa5\x20\xfd\xc9\x2f\xd4\x56\xa4\xc6\xb4\x84\x60\xe1\x47\xa3\x93\x34\xf6\x9e\x76\x41\xd9\x72\x42\xc5\x0f\x35\xe1\x48\x99\xf5\xd4\xe9\x94\x0a\x48\xe0\x8d\x99\xaa\xda\xa1\xd0\x74\x78\x63\xba\x50\x04\xbc\xe7\x15\x84\xe6\x79\x96\x4b\xcf\x50\xbc\xc5\x05\x49\xb3\x92\x0c\xb3\x3c\xa7\xc3\x32\xb8\x54\xf3\xc6\x6c\xb5\x31\x81\x58\x41\xc9\x02\x73\x9e\x09\xff\x3d\x87\xff\xfa\x65\xf6\x73\x76\x49\xf3\x83\xb0\xa0\x1d\x10\x2e\xfc\xee\x45\xcb\x31\x06\xf5\x77\x61\xef\x21\x2e\x51\x4f\xd9\xff\x67\x7a\x2b\x8e\x40\xb0\xe3\x7d\xcc\x78\xdc\x21\x60\x4a\x2f\xc9\x2b\xd6\xab\x4e\x1b\x8c\x2e\xa0\x21\x60\x32\xfe\xaf\x76\x49\xe8\x55\x5c\x94\x45\x8f\xcc\x12\x1a\x16\xa0\x16\x43\xcf\xb3\x54\x91\x6a\x94\x25\x49\x76\x19\xa7\x63\x28\x59\x30\x29\x68\x4d\x23\xd1\xc2\x1e\xb8\x39\xe9\xe9\xd7\x57\x35\x31\x9a\x55\xeb\xc1\x09\x9d\xe9\xd8\x3b\xfc\x4c\x61\x12\x72\x81\x0f\x66\x21\x31\x98\xb5\x2b\x21\xcb\x59\x80\x89\x5a\x70\x19\xc3\x07\x9e\x93\x56\x70\xd6\xfb\xac\x28\xe2\xf3\x84\x0f\x21\x78\xb2\x11\xb6\xb5\x1f\x0f\x99\x7e\x99\x97\xfc\x27\x53\xa9\x25\xb5\x5e\x8d\x46\xf1\xf8\x5a\x7c\x1c\x49\x56\x7a\x42\x3e\xb3\xea\xf9\x9f\xbe\x38\x86\x4f\x71\xc7\xcc\xc1\xa6\x1a\x4c\x5d\xf3\xf2\x4f\x79\x29\xcc\xe1\xc6\x1a\x4e\xdd\xc4\xf2\x4f\x71\x75\xab\xf3\x78\x81\x27\x4f\xd4\xc4\xd4\x37\xaa\xbc\xc0\xbf\xc3\xf3\xcc\xc8\xf3\x94\x90\x37\xa2\xbc\x03\x70\x91\x8a\xf3\x78\x09\xd4\x0a\x54\x98\x7f\x0a\x2a\x20\x10\x62\x41\xa0\x0f\xb8\xd8\x14\x04\xa1\x9a\x86\x63\xf4\xbb\x94\xbf\x6d\x95\x82\xcb\x05\x6b\xe7\x7b\xa3\xf4\x74\xce\x0e\xc3\x30\x65\x3b\x83\x50\x89\x66\x91\x2e\x6f\xab\x72\x12\x92\x37\xaf\xfe\x01\x9b\x70\xa9\xad\xdd\x9b\x40\x51\xeb\xac\xdc\xda\xfd\x32\xa1\xd2\xdd\x65\x88\x8c\x2a\x44\x10\x22\x14\xad\x83\xcd\xa7\xb0\x20\x97\x94\x4d\x10\xed\xe7\x48\x76\x63\x0d\x69\x43\xbf\x50\x63\x4b\x2e\xfb\x89\x45\x0a\x57\x75\x18\x66\x29\x24\xb0\x52\xc4\x4b\xe0\x98\xcd\xa6\xa4\xe2\xd2\xc9\xd2\x87\xf0\x32\x2c\x10\x90\xe7\x46\x25\x01\xfe\x42\x9a\xd5\xd2\xe9\x1b\x72\x1a\x7b\x66\xf0\x25\x8d\x1f\x26\xec\x7f\xcb\x14\x2f\xb3\xba\x09\x8e\xf6\x0b\xbf\xd9\x54\x67\xb3\xed\x77\x9c\xec\x40\x90\xfb\x99\xea\x65\x3c\xa5\xc5\xef\x31\xcd\x53\x71\xb8\xc8\x26\xb7\x3a\xaa\x2a\xf8\x36\x9f\x2d\xd1\x44\x19\x95\x39\xdc\xa0\x1a\xd2\x88\x27\x34\x17\xc8\xab\x43\x36\xf4\x9a\x15\x4c\x6c\xca\xd7\x9c\x46\xa0\x01\x14\xf9\xb1\x15\x9c\x35\x08\x4b\xb6\x3f\xdf\x30\x1d\x10\x66\xbd\x2c\x2f\x7e\xdc\xdc\x90\xcd\x5d\xef\xde\x46\xe0\x75\xf6\x26\x3c\xdd\xd8\x10\x09\x92\xcb\x96\x3c\x7a\x44\xc4\x6f\x9f\xce\xcf\xaa\xb4\x73\xf1\x06\xc3\xe7\x89\xd0\x50\xc5\x44\x61\x75\x24\xb2\x79\xd5\xee\xb5\xdb\xf8\xbe\xc5\xf2\x57\xe8\x2b\x8d\xf9\xa4\x52\xa5\x4b\x65\xe0\x66\x0f\xa7\x28\x3e\xe1\x60\x32\x8e\x8e\xda\x89\x09\xfb\x65\x80\x2d\x2f\xb3\x76\x41\x86\x2a\xa6\x92\xc3\x5a\x66\xc8\xa5\x26\xfc\x55\xc1\x35\x68\x8f\x6c\xe2\x34\xcf\xbb\x0c\x96\x61\xe0\xe7\x88\xb3\x7c\xf3\x15\x1c\x2f\x74\x90\xef\x48\x55\x00\x9f\x48\x2c\x1d\xba\xd6\xe8\x8e\x7f\x2d\x18\xe5\xfe\x2c\x99\x17\xba\x09\xe2\xdb\xeb\x64\x54\x01\x99\x07\x49\x13\x3a\xfc\x5c\xc8\x5d\x13\x17\x91\xf2\x96\xb3\x10\x4f\x56\x93\x6b\xf0\xa6\xed\x0d\x05\xce\x59\x7e\xe8\x0d\x03\x6e\x06\xf4\x46\x15\xb0\xf9\x1f\xa2\x02\xd8\xbf\x24\x44\x37\x13\x43\x67\x21\x37\x46\x4e\x94\xb7\x4e\xd0\x06\xff\xb7\x79\x75\xba\xf9\xe4\xfb\xf0\xc9\xe8\xec\xcb\xd3\xcd\xc5\xff\x0c\xe2\x7e\x49\x8b\x52\x81\xaf\xd0\xf9\x9a\x3e\x7f\xa5\xde\x36\xe8\x27\x1c\x00\x0c\xfe\xaf\xb3\x79\xd5\x7d\x5e\xdb\x51\xcc\x81\x83\x81\x8e\x56\xc7\xe3\xd1\x41\xf3\xb8\x27\x6f\x61\xff\x3b\x85\xf7\xf4\x6c\x41\x46\xdd\x36\x39\x58\x38\xe4\x24\xa6\xcb\x18\x6f\x63\xcc\xb6\x30\x41\x87\xc0\xf6\x9f\xbc\xf6\x82\x59\x4d\x86\xe0\x79\xed\x02\x9c\x8e\x17\x53\xf6\xef\x30\x9c\x15\xa0\x3c\x88\xdf\x3d\xec\x25\xd5\x6e\x2d\x0f\xfe\x80\x1a\x6b\x20\x3f\x52\x6b\x3b\xa7\x0c\x0d\x87\x13\x32\x0c\x0b\x07\x4d\x5c\x70\x2e\x99\x4f\xc5\xe8\x20\x56\xe2\x73\xac\x39\x43\xf1\xba\x8a\xf9\x74\x4a\xa3\x4a\xde\xb2\xaa\xbb\x6f\x1e\xb3\xd0\xd7\xf1\xda\x60\xc0\x3b\x64\x11\x27\x54\x25\xc5\x2f\x67\x01\xd2\xa7\x21\x02\xe2\x4d\x58\x80\x47\xa8\x49\xb8\x23\x2b\x31\x4f\x52\xa4\xae\xe3\xf3\xba\xf4\x74\x13\x6e\x28\x89\xc5\x1e\xe0\x41\xbf\x9c\x90\x84\x82\x4f\x03\x14\xff\x72\x36\xa3\x39\x6b\xad\x1c\x87\x14\x62\x87\x8e\x63\x1e\x5e\x32\x2c\xe8\x34\x9c\xb1\xf1\xd8\x32\xce\xf9\x3a\xca\x7e\x01\x35\x1a\x7c\x23\x6e\x3d\xeb\x92\x1f\xc9\xb7\x6c\x35\x17\x59\xa7\xf1\x59\xbf\xcc\x4e\x58\x45\xe2\x24\x68\x7d\x6f\x0f\x65\x02\xc7\xd7\x23\xfc\x61\xcf\x83\x11\x9f\x2d\x59\x18\x2b\x1c\xf6\xa3\x39\xa9\x25\xbe\x19\x72\x4f\x05\x41\x51\x6c\xfa\x56\x6c\xf4\x24\x3b\x56\xf0\x62\x99\xdd\x2b\x2f\xca\xc3\x6b\xb5\x2e\xaf\xc0\x8a\xe8\xc8\x58\xb1\x9f\xed\xfb\x40\xd4\xd3\x6e\x0b\x5e\x72\xf9\xd4\x20\xf0\xad\xb8\x16\x01\x0d\x9d\xd6\x33\x44\x35\x7c\x2c\x5b\x81\x6e\xdd\x6d\x9e\x06\x91\x37\xd1\x96\x7f\x8c\x4b\xbf\x67\xfb\x9e\x11\x0f\x63\x21\x2f\xe2\x14\x8b\x1b\x1c\xbc\x8c\x81\x4d\x16\xb2\xdb\xbf\xb1\x57\xc9\xdd\x88\xbf\x6c\x51\xba\x14\x53\x2d\x6f\x5a\x25\x4d\xcd\x53\x6b\x9a\x86\x20\x95\xd6\xcf\x64\x7b\x93\x7b\xee\x7a\x22\xee\x07\x79\x9d\xdc\x18\x78\xf3\x8a\x70\xdb\x0e\xd7\xb6\x6b\x29\x2b\xfb\x2f\xfb\x85\x0f\x10\x2c\xb7\x95\xfd\x56\x33\xfe\xb5\xb4\x19\xef\xb2\x27\x5d\x5b\x4b\x7a\x20\x1d\x9e\xaf\xb5\x75\xcb\xac\x07\x91\xb8\xfb\xf2\xe1\x33\x21\x64\xe8\x53\x6e\x9c\x2c\x31\xea\x67\x8d\x3d\xf2\x74\xd3\x7f\x49\x20\xdd\x81\xcb\xcd\x74\xa1\xb5\xdc\xe5\x41\x6e\xbd\x3b\x49\xdf\xcd\x97\x11\xf8\x96\xaf\x64\xbe\x3d\x20\xe9\xf0\x66\x58\x6a\xa1\x6c\x5b\x5a\x94\x61\x3a\x64\x52\x44\x17\xbe\xb9\x51\x44\x13\x85\xe1\x19\x29\xfc\x32\xdc\xd7\x78\x53\xb9\x69\x04\xc8\x22\x85\xb2\xdd\x94\x50\x72\x3f\xbc\x8c\x4a\x1f\x1d\xdb\xa2\x86\x24\xf2\x04\x2a\xf3\xd2\x47\x88\x56\xd1\x32\xe8\x0d\x6f\x5b\xfb\xfe\xc8\xc3\xdb\xd2\x98\x36\xb2\xc5\xcb\xa9\xf3\x5a\xdb\x90\xac\x4a\x1f\x59\xf4\x56\x14\x92\x25\xda\x0d\x7b\xc4\xda\x54\x2e\xef\x0e\x6f\xfa\x2d\x3a\x73\x24\xda\xd6\x70\x32\x30\xfd\x22\x9d\x27\x09\xc4\x2a\xe9\xb8\x33\x04\xec\xb6\xe1\x08\xc3\xd3\x77\x71\x5d\xdb\xb0\xe7\xe7\xbc\xb1\x0d\xc4\x01\x07\xbc\x8d\x30\xe0\x49\xb7\x1a\x48\xd1\xbc\xa6\xbd\x01\x47\x9c\xcb\xfb\xe2\xc4\xb5\x69\xd8\x13\x37\x36\x4d\x43\x91\x06\x05\x6b\xfb\x60\x6f\x48\xf8\x3a\x0a\x26\x72\x99\xe4\x3a\xb3\x13\x7f\x2d\xcc\x79\xa5\x0d\x10\x6a\xfb\xc0\x8a\xd9\x8f\x06\x94\x03\xb3\xfc\xda\x5d\xa7\xd6\xd7\xe1\x62\x92\xbf\x87\xd7\xb6\xac\x0b\x32\x84\xe0\x6b\x1d\xea\x59\xdb\xf0\x76\x74\x95\x5e\x87\xa2\xdf\xaf\xd8\x00\xd2\xf9\x94\x9c\x27\xd9\xf0\x33\x99\xd0\x30\xa2\x39\xfb\xc8\xa6\xb6\xd1\x46\x5c\xbc\x60\xc9\x3e\xa5\x61\x42\xaf\x54\x74\x02\x28\x4b\x46\x71\x52\xda\x87\x99\x1e\x86\x05\x58\xc3\x09\x38\x4b\xa9\xdd\xe7\x7f\xb3\xb5\xad\x37\xfa\x1c\x7c\x09\x5d\xaa\xb7\xe9\x1c\x17\x46\xe5\xdb\xa5\xbb\x50\xbe\x88\xdf\xb9\x37\xd6\xb7\x1b\xbf\xa3\xe9\xc8\x24\x19\x53\xf3\x66\xf1\xd0\x1d\x87\x63\x96\xbc\x6c\x1c\x4a\x05\x54\x33\x00\x80\xc9\x18\x00\x28\x56\x3b\x00\xcf\x9e\x6a\xfa\x73\xe8\x5b\xd3\x1f\x50\x61\x4c\x3e\xf2\x3b\x40\xb7\xa2\x7e\x85\x03\x20\xf5\x3c\x2e\xd0\x3f\xf9\x0b\x36\xa1\x0c\x06\xf2\x87\x4a\x85\xd7\x40\x81\xfa\xd5\x13\x78\xde\xd0\xab\x80\xff\x27\x53\x84\x69\x49\xa0\x7f\xf2\x1c\x64\x76\x12\xe0\x0f\x59\xee\xa4\x1c\x7d\x17\x88\xff\x65\x1a\x18\xb2\x04\xf2\x87\xc6\xc3\x61\xe5\x2f\x9d\x2e\xe0\xd5\x4f\x81\xc7\xb5\xc6\x0d\x7c\x89\x1c\xda\x35\xf2\x0c\x3c\x69\x06\xac\xb4\xa7\x0c\xec\x04\xd9\x8f\x5f\x28\xf4\xe2\x17\x8a\xfa\x00\x69\xe2\x87\x84\x53\x7a\x64\x80\x3f\x64\xae\x79\x98\x1d\x38\x29\x8a\x6a\x5c\x85\x0f\xf4\x4f\x9e\x83\xf4\xe6\x00\x7f\xc8\x5c\x63\x8f\x12\xd8\x09\x12\x0a\xe5\x5b\x39\xd6\xa6\x3e\x70\x93\x64\x0b\x1d\x48\x27\x49\xe2\x94\x6a\x5a\x80\x7e\xe3\xf6\xa6\xe3\x40\xfd\x92\xe9\x7c\xb5\x0d\xd4\x2f\xd5\x7b\x2e\x09\x02\xfd\x53\xf5\x89\xad\x9f\x81\xfc\x21\x53\xd9\x52\x16\x88\xff\x15\x0e\x26\x09\x03\xf9\x43\xa6\x82\x40\x09\xe4\x8f\x1e\x4c\x3d\xee\x40\x52\x38\x5e\x68\x05\x5b\xdf\xf7\x6a\x3d\x50\xf5\x5a\xf3\x72\xf4\x5d\x2b\xf8\xee\x9b\xc5\x59\x6f\x7b\xab\x89\x53\x16\x73\x72\xef\xf1\xa9\xdd\x12\xbe\x48\x5a\x01\x69\x6d\xf6\xb7\x37\xfb\x5b\xad\xb5\x85\x74\xd5\xb8\xdd\x28\x92\xf8\x83\xb3\x97\x07\x67\x2f\x7f\x06\x67\x2f\x02\xcb\x9a\xeb\xab\xf1\xaf\x74\x34\xca\xe9\x35\xf9\x25\x4e\x86\x9f\x29\xf9\xe1\x57\x3a\x1a\xd9\x1e\x5f\x1a\x7a\x74\x04\xb0\x38\x4c\xc9\x11\xd3\xc5\x43\x80\x8a\xc3\xd4\x05\x7b\x1d\x9e\x33\xb0\xbf\x67\x63\x9a\x14\x25\x4d\x12\x9a\x93\x1f\x46\x90\xe8\x02\xff\x14\x5e\x90\x5f\xb2\x2c\x22\x3f\x8c\x2b\x3d\xd1\x3c\xd5\x1e\xb8\x84\xaf\xd6\xb7\x61\x1a\x8e\x4d\xf7\x30\xfd\x01\xa3\xc2\x20\xe7\x00\x53\x0e\x20\xdd\xc0\x1c\x9e\xc3\xb6\xc9\x06\x8e\xcf\xc3\x54\x82\xbc\x2e\xa7\x1e\x08\xae\x93\x15\x83\x51\x39\x95\x80\x2f\xe9\xf9\x7c\x5c\x03\x1a\xb1\x7c\xe5\x15\x7a\x34\xac\x01\x2d\x46\x43\x85\xf5\x45\x1d\xca\x73\x85\x6f\x32\xa9\xc3\x37\x99\x48\xc0\x77\x10\x8f\xa0\x0a\x30\xa5\xa5\x04\x7c\x4f\xf3\x02\x5e\x6e\x55\x43\xcf\x04\x88\x6a\xc4\x65\x98\xd7\x11\xab\x60\xf9\x0a\x98\x96\x25\xc4\x6a\x73\xe1\x0b\x91\x25\x41\xa5\xac\x32\x20\xa5\x10\x62\x3b\x38\xed\xd5\x27\x4e\x2c\x84\x90\xc4\xff\xad\x76\x0e\xc4\x81\xa4\x1b\x36\xf1\x4e\x84\xa6\x91\xa7\x6d\x3c\x43\x82\xbd\x80\x1d\x9a\x0b\x75\xce\xd2\x15\x25\xf3\x6c\x46\xf3\xf2\xda\x03\x37\x13\x59\x12\xf4\x4d\x59\xce\xde\xe7\xd9\x45\x1c\x79\x99\x98\x4d\xff\x99\xc8\x56\x2c\x3c\x1b\xd6\x94\x88\x67\x43\xbb\x40\x33\x4f\xa6\x6b\x6b\x6a\x6f\xf0\x0b\x3d\xdf\x21\x1d\x89\xc6\xf4\xc5\x9d\xdb\xf3\x2e\xa5\x97\xd6\x64\xd4\x25\x91\x5b\x6e\x11\x60\x19\xb5\x5c\x42\x21\xa0\x51\x29\x23\x29\xbc\x2e\xa7\x10\x9e\x03\xa3\x88\xc4\x7c\x63\xf9\x30\xf7\x1c\x88\x02\x26\x19\xf8\xed\x1e\x0d\xdd\xf2\xe7\xb2\xf0\x0b\xb7\x24\x4c\x27\x28\x39\x99\x38\xb9\x29\xcc\x21\x96\xfb\x8e\x96\x4e\xee\x4c\x4f\x1c\x06\x22\xe7\x91\x03\x77\xfe\xef\x7f\xcb\x3a\xd8\xbc\x70\xdb\xa0\x27\x08\x00\x89\xcf\x0e\x86\xd1\x33\x43\x6f\x8d\xc2\x59\x1c\xa8\x25\x5a\xfc\xcf\xb7\x48\xb8\x91\x82\xda\x85\x51\x14\xb3\x5f\x60\x7c\xf5\x14\x0c\xe2\xb7\x00\x7f\x38\x55\x7c\x52\x73\x88\xff\x70\x3a\x28\x00\x3a\xba\x7e\x31\x1d\x62\x5a\x04\xe8\x77\x87\x1b\x1f\x2d\xba\xbb\x4c\x8f\x1b\x0c\xc0\x71\x77\x41\x89\xee\x43\xc6\xf5\x03\x70\x26\xb6\xc6\xd8\xd5\xd3\xbf\x65\x7d\xab\xec\x17\x53\x65\x25\x4e\x19\x85\x97\x62\xce\xc5\x91\xc6\x97\xcf\x11\x5c\x78\xe5\xa9\xe1\x69\x4b\x4e\x79\x88\x19\xdd\x8a\xcf\x94\xce\x0e\x8b\x8f\xd7\xe9\x30\x4e\xc7\xb5\x4d\x81\xb2\x16\x7c\x33\x0e\xf4\x34\x04\xcb\x95\x17\xda\xde\xc6\x82\x92\xaf\x76\xb8\x1f\x3a\xf8\xf2\xc0\xc8\x17\xbe\x12\x0a\xbe\x3d\x70\xe2\x99\xb8\x04\x63\x9f\x0e\x14\x7e\x31\xcc\x01\x55\x8a\x17\xd6\xc0\x29\x13\x3c\x75\xeb\xe7\x5f\xb2\x7a\x91\xe2\xc5\x6a\x43\xa3\x34\x0f\x6e\x4c\x4b\x89\xbd\x8e\xa6\xdc\x22\x53\x42\xfe\x42\xfd\x3d\xc3\x50\xe2\xdb\x81\xc3\x86\x38\x1c\x52\xa5\x78\x60\xdd\x5b\x6c\x59\xe6\xc0\xbe\xdd\x74\xda\x5c\x55\xd6\xc9\xf1\xd4\x7b\xf8\x62\xff\x1d\xaa\x8c\x7d\x3a\x50\xda\x9b\x0e\x07\x13\xdf\x3e\x38\xe9\xe8\x45\x01\x42\x82\xa7\xcd\xda\xa7\x92\x6c\xab\x48\xf1\xc8\x08\xae\x65\xe0\x37\xea\xfc\xbe\xcb\xf4\xe0\x6a\xde\x44\xc2\x75\xbb\x0d\x59\x75\x33\x1c\xc5\x39\x9c\x82\x0f\xc3\x19\xbc\x2b\x41\x77\xb3\x9e\xc1\x3f\x3c\xd8\x7f\x6f\x88\x09\x56\x0e\x1b\xff\xc5\x5c\x17\x66\x33\x9d\xa9\xc5\x3c\xdf\x78\xc6\xca\x20\xfa\xa2\x1a\x29\x04\xc0\x55\x8e\x12\xd5\x75\x21\x8d\x4f\x95\x98\x87\x65\x51\x68\x3e\x1d\xf3\x3a\x3d\x85\x43\xa4\xb6\x5c\xbe\xd2\x2c\xa2\xed\x9e\x01\x31\x06\x93\x97\x80\xb4\x99\x7e\xf3\x69\x98\xc4\x34\x2d\xff\xce\xc1\xdb\xfa\xba\xbd\xdb\xbb\x4d\x6d\xb4\xbc\xcc\xf2\xcf\x55\x15\xa6\xb4\xfc\x24\x40\x2d\x10\x33\x22\x49\x60\x0b\x84\x3b\x36\x2b\x09\x87\x13\x5a\xc4\x45\x55\xbb\x68\x39\xf9\x04\x63\x3d\xcc\x92\xbf\xdf\xb1\x7d\xf0\xf3\xcc\x2b\xdf\xe3\xe2\x20\x4b\x53\xee\xf6\x09\xf1\x75\xd7\x18\xe4\x8e\x77\x09\x7b\xf4\xc8\xbb\xb4\x61\x94\x9d\xae\x7f\x55\xe1\x8e\x0e\xa4\x9e\x5d\xc9\x5c\x60\x60\x0a\x31\x50\x84\x96\xe1\x3d\xfb\x65\xb8\xa5\x6b\x60\xac\xf5\xf3\xc3\x29\x63\xb3\xd0\x0a\xb6\x37\x59\x12\xde\x66\xb4\x82\xed\x2d\x96\xa6\x55\xfc\x56\xb0\xfd\x54\xa5\x70\x75\xa6\x15\x6c\x7f\xa7\x92\xb0\xc2\xde\x0a\x76\xb6\x55\x06\x9b\x4a\xad\x60\x67\x47\x27\x68\x45\xbd\x15\xec\x68\xa4\x7a\xab\xd7\x0a\x76\xbe\x75\x92\x47\xe5\xb4\x15\xec\x7c\xe7\x82\x33\x85\x98\xe5\x6c\x3a\x59\xc5\x68\xc8\x32\xb6\x9c\x8c\x94\x96\xad\x60\xe7\x7b\x27\x5d\x2a\xb4\xad\xe0\xa9\x07\xdb\x64\xd2\x0a\x9e\xba\xc8\x60\xaf\xd7\x0a\x9e\xea\x2e\xcb\xbd\x4e\x2b\x78\xfa\x8d\x4a\x34\xb7\xe5\xad\xe0\xe9\x33\x95\x25\xb5\x8f\x56\xf0\xf4\xdb\xfa\x93\xc3\xc5\x59\x6f\x7b\xe7\xe1\x5c\xef\xe1\x5c\xef\xbf\xe5\x5c\x2f\x4c\x12\xf0\x6b\x71\x37\x47\xce\xe8\xf8\xcc\x39\x12\xf1\x9d\x89\xc8\x20\x51\xaf\x2e\xf8\x4b\x02\x74\xd6\x00\xad\x91\x70\x3a\x64\xd4\xb2\xd8\x68\xee\x79\x8d\xf7\xc0\xe6\x35\x5c\x2a\x5b\xc8\x20\x4d\x42\x5c\xf2\xc8\x67\x26\x88\x14\x45\x22\x53\xb9\x77\xde\x4f\x12\xa3\x2b\xa6\xd6\x62\x6e\x91\x7a\x60\x21\xd0\x23\x96\x49\x5b\xc5\xe1\x87\x99\x80\xb7\xba\xbf\x72\xa3\x00\xf6\x1f\x4e\x76\xcc\x34\xf9\xc2\xe5\xb4\xb0\x3e\xc8\xbf\xa5\x52\xca\x80\x00\x7b\xea\xd7\xcd\x0d\x44\xbf\x22\xb6\xbb\x89\x2f\x0b\x61\xb2\x79\xda\x66\x2a\x22\xc4\x15\x69\xf7\x48\xbb\xcc\xf8\xcf\xb3\x3e\x27\x33\x8a\x76\x3a\xf2\xdc\xc2\x8a\x6a\x4e\x47\x67\x60\x58\xa3\xec\x52\xc5\xcd\x6c\xd7\x13\x32\xdf\x42\xc3\xda\xc3\x8a\xef\x21\xe6\xe1\x9e\x7b\xa0\x21\x7c\xdf\xa3\x43\x60\xea\x0a\xa5\xad\x84\x7e\x2f\x06\x2e\x30\x34\x5d\x0d\x3a\x9b\x8f\xca\xb0\x53\x8c\x3a\x8a\x7b\x62\x96\x47\x61\x19\xca\x1e\xb0\xdf\xfd\x88\xbb\x4c\xd5\xbf\x6f\x6e\xc0\x18\x57\x01\xc0\x15\x76\x21\x41\xc4\xd7\xcd\x8d\x8e\xbd\x0b\xa7\x8e\xac\x6a\x79\x37\x8f\x00\x4f\x37\xcf\xfa\x05\x13\x08\x2a\xc6\x02\x83\x9e\x0a\xa5\x48\x73\x98\x3b\x5c\xbf\x7a\x86\x0b\xd7\xb2\x27\x4c\x7c\x85\x46\xe8\x5e\x09\x77\x7e\x55\xcf\xe2\xbb\xa7\x9b\x67\xe8\xc1\xd7\x3a\xd4\xdf\x25\x5f\xe0\x89\x45\x98\xa6\x59\x49\x46\x71\x1a\xf1\x76\xc5\xe9\x98\x57\xf4\x5c\x55\x3f\xcc\xd2\x22\x4b\x68\xff\x32\xcc\xd3\x4e\x1b\x97\xe0\x4e\x7a\x98\x28\x4e\xb2\x71\x1b\x99\xdc\x8a\x16\x33\x52\x38\x8e\x9e\xa8\x10\x43\x38\x2e\x1f\x8c\x5d\xc7\x37\x3b\x7b\xbc\x59\x3d\x93\x21\xcc\xfd\x0d\x60\x94\x3e\x16\x61\x88\x1b\x4c\xc7\x2b\x3a\x64\x1a\x80\x67\x3e\xf6\xc0\x11\xd4\x79\x38\xfc\xac\x22\x08\x83\x07\x04\xb1\x69\x95\x97\xb9\x9d\x30\x1f\xcf\xe1\x05\xca\xa9\xfa\x85\x9c\x00\x99\xd6\xef\x12\x23\x44\x7e\xaf\x2d\x86\xdd\xd5\x75\x1c\x08\x36\xf0\x5b\xa6\xfb\x0c\x2d\x36\xd2\x79\x92\x38\xe4\xce\x24\xa7\x09\xa7\x7b\x7a\x77\x2a\x21\x46\x28\xc6\xa2\x38\xa1\x05\xff\x68\xe7\xb1\x79\xf8\x87\x54\x76\x2e\xd9\x3b\x59\x8f\x7b\xb6\xee\x79\x05\x6b\x4f\x8a\xf7\xfe\xa8\x9c\x76\xba\x3d\x5d\x11\xa2\xf0\xf2\x91\x0a\xcb\x32\x1c\x4e\x8e\xb3\x03\xe9\x7f\x0b\x0f\x99\x74\xca\x85\x37\xc4\x7a\x68\x79\xbf\xf9\xa7\xd3\x1d\x59\xb4\x1f\x26\x89\x5a\x4f\x04\x70\xc5\x3e\xc4\x69\xa6\xda\x94\x78\x76\x25\xde\x6d\x09\xb0\x6a\x2b\xd8\x86\x1d\x01\x9f\xf5\xad\x60\x1b\x74\x77\x1c\xb1\x71\x07\x80\xad\x85\xb0\x15\x3c\xdd\x61\x2a\xf3\xd3\x07\x95\xf9\x41\x65\xfe\x6f\x51\x99\x61\xbb\x7e\x5f\xf1\x9e\xfe\x5a\x64\x69\x3e\xb3\x6e\x70\x7f\xe5\x89\xea\x06\x31\xcf\x33\x5b\x03\xe6\x69\x4a\x11\x75\x4f\x35\x58\x5f\x0d\x1d\xd3\x51\x31\x81\x1a\x9f\x2a\x15\x4d\x91\x51\x88\xa8\xfe\x4b\xdc\x13\x86\x51\x24\x3d\x49\x32\x69\x2c\x0a\x83\x73\x6e\x68\x9a\x48\xb0\x0c\x11\xc3\x28\xf2\x98\xf6\x12\xd1\x7f\x5e\xa8\xd4\x46\xb5\x83\x35\xe8\x27\x96\xc4\x51\xe4\x53\xb9\x7d\x1d\x2f\xfa\xb3\x79\x31\x51\x10\x4b\x7b\x24\x65\x76\x5d\xfb\x05\x8c\xb7\x69\xbe\xe5\xdc\xf4\x69\xa0\xe8\x6b\x34\xd3\x1d\x02\x7d\xdd\x93\x46\xfc\x64\x4a\xc2\xf6\x10\x6e\x9a\xe7\x3d\xa1\x88\x16\xae\x4a\xcc\xd9\x87\xff\x12\xba\xa2\x06\x10\xf4\xc1\x8e\x2d\x15\x29\x7b\x04\x1e\xd5\x57\xbc\x9b\x13\x28\x4f\x01\xe6\x0c\xef\x0e\x2a\xf5\x75\x5e\xa4\x02\x2d\xd3\x6a\x64\x7b\x04\xd2\xbe\xa3\xfa\xd8\x05\xd6\xc5\x24\xea\xc7\xc5\xdf\xc3\x24\x8e\x3e\xd0\x62\x96\xa5\x05\x15\x55\x39\x6f\xfe\x9c\x3e\xf8\xeb\xeb\xf0\x39\xd6\x3f\x4c\x2f\xbc\x58\x77\x1d\xa4\x0b\xb7\x7d\x95\xc8\xb9\xa7\x28\xa7\xb3\x7c\xc9\x05\x8f\x14\xbe\x0c\x51\x79\x5f\xb4\x01\x7c\x55\xe0\x04\xab\x51\x0b\x34\x14\x7a\x7b\xe3\x55\x24\x80\xb1\xf4\x89\x26\xef\x7b\x2b\xd8\x86\x53\x34\x31\x21\x5b\xc1\x0e\x58\xd4\x35\x8a\xf0\xff\xb0\xdc\x3f\x2c\xf7\x7f\x86\xe5\x5e\x29\xe5\xf7\x74\x40\xd6\xf0\xa4\x8a\xed\x77\x72\x0b\xac\x10\x9a\xfe\x00\x32\x57\x3d\x4c\x93\x70\xe8\xb5\x16\x3e\x05\x93\xcf\xb0\x04\xf4\x3e\xda\x82\x20\x30\x75\x5e\x08\xaa\x47\xdd\xf2\xc9\x0f\x97\xf0\xd3\x36\x58\xe5\xed\xd7\xd1\x1c\xee\x40\x83\xbd\x97\x50\x4a\x2d\x00\x43\xe2\x05\x91\x0e\xa4\xcd\x54\x6f\x05\xc2\xc5\xb0\x1f\xb5\xf9\xc0\xf4\x3c\xee\x89\x72\xd6\x3d\x50\x78\x1e\x7b\x0e\x41\x90\xb3\x69\x62\x79\x77\xe6\xc1\xfd\xf7\xf6\x48\x1b\xb5\xa9\x4d\x1e\x3d\x32\xbc\x47\xa3\x5d\x33\xaf\xd6\x08\x31\xb0\xe8\x5a\xab\x70\x5d\x85\x1e\x7f\xd4\xa4\x03\x89\x15\xab\x35\xe4\x71\x37\xd5\x9e\x85\xc1\x42\xc4\xc0\x0a\x4f\xd5\xc0\x7b\x62\xeb\xce\x09\xca\x41\x15\x19\xd1\x19\x8f\x3c\xbb\x6a\xa0\x3c\xaa\x78\x7e\xc2\x3f\x15\xdf\x58\x7b\xdf\x53\x85\x51\x24\x79\xb8\xd0\x9b\x70\xcc\x1b\x32\x6d\xa1\x30\x55\xf2\x13\x67\x15\x3f\xca\xda\x7d\xbd\xde\xac\xdf\x9e\x51\xd0\xdb\xc7\x55\x46\x1f\x9f\x53\xa9\xb3\x1f\xd5\x9e\x4f\xa3\x72\x2a\x0f\x9b\x75\x23\x4d\x6f\x1b\x4b\x0f\x52\x47\xce\x21\x87\x26\x80\xa9\x49\x2c\x19\x57\x2e\x2d\x1a\x0d\x2a\x97\x37\xf7\x37\xa2\x36\xbe\xe5\xc7\x34\x52\xe0\xdd\xc7\xd8\x72\xd9\x6b\x1d\x2a\x0b\xc9\x2a\xce\x1a\x95\x8c\x35\x07\xcf\x3d\xb5\xe2\x0d\xab\x1c\xce\xfd\x24\xa9\x1d\x2e\x00\x12\xd7\x3c\x2b\x33\x18\x3f\x08\x5d\xd2\xc0\xd5\xb9\xcd\x78\x8a\xe8\x1e\xa9\x55\x71\x5b\x1d\xbb\x29\xe7\x3c\x60\xc1\x27\x07\x7d\x4c\xcb\x42\xd8\x95\x24\xd7\x24\xa2\xb3\x24\xbb\xa6\x91\x34\xf4\x83\x47\x8b\xc3\x49\x18\xa7\xf6\x23\x39\xc0\xf6\x3a\xcb\x65\x8b\x3c\x1e\x0f\xe4\x7e\xd5\xc7\x92\x72\x5e\x2e\xd4\xc1\xe2\x9a\xe1\x97\xf7\x44\x5e\x6d\xe8\xc7\x74\x15\x35\x62\x13\x09\x59\x13\x3a\xae\xd4\xec\x0b\xe1\xda\x21\x7c\x8d\x73\xc8\xfb\x3a\xce\xb9\xad\x05\x7f\xce\x06\xf9\x83\x01\xb9\x0c\x63\x7e\x58\x0e\x2a\xd7\xac\xd4\x07\xb0\xf2\x9e\xcc\x1c\x77\x31\x15\x54\xb8\x78\xdd\x30\xda\x35\xdd\x3d\xaf\x53\x78\x10\x6d\xd4\x6f\xaf\x4a\xd0\xde\x8d\x8d\x5d\x73\xd7\x34\x18\x90\xa2\xcc\x66\xfc\xa4\x36\x4e\xc7\x24\x1c\xb1\xa6\x7c\xb3\xc9\xc7\xaa\x20\x9d\x32\x9e\xd2\x6c\x5e\x76\x9d\x9d\x23\x27\xc0\x8f\xe4\x9b\x4d\xef\x5e\x91\xb7\xbe\xcf\xb0\xff\x22\x90\xeb\x40\x0e\x5d\xf2\x65\xe1\xd9\xd2\xd9\x04\xe4\xcf\x04\xbd\xdb\x50\x35\x22\xde\xcd\xa6\xde\xf8\x69\x6f\xc4\x4a\x30\xc1\x6d\x49\xc8\x67\xc6\x90\x31\x36\x78\x26\x3e\x67\x1a\xf3\x3c\x8d\x6c\x0a\xb4\x7d\x7b\x4f\x9a\x20\x37\x26\xf8\xcf\xf1\x81\x7c\xeb\x5a\xd9\xf4\xc3\x98\x95\x17\x13\x97\x6a\x06\xd7\x8c\x69\x79\xac\xab\xfa\xc0\x59\x4d\x4b\x14\xd4\x8c\x37\x61\x31\xc1\x4c\xd5\x93\x8c\xd9\xf5\xef\xe0\xe3\x51\x47\x00\xf8\xb9\xcd\x5b\xc8\xdb\x40\x88\x9b\x24\x70\xf5\x87\xe6\x04\x34\x5b\x04\xc1\x95\xfc\xcd\x91\x7f\x55\x2e\xe3\x9f\x29\x97\xf1\x55\x7f\xf1\xa8\x63\x72\xdc\xcd\x0d\x59\x87\x1a\x6b\x8b\x11\x25\xba\x3d\xbc\x89\xff\x6e\x33\x05\xf0\x5f\xc3\xe9\x60\x77\x29\x8b\x50\x84\xf8\x9d\xda\x91\x91\x7f\x83\x81\xba\xe5\x4b\xb2\x31\xe2\x5a\xd8\x56\x48\x31\xbe\xde\xee\x2e\xa9\x9e\x18\xaa\x9a\x92\xa8\x15\x43\xdd\x00\xd9\x60\x40\xf8\x62\x25\xd5\x85\x30\x8d\x88\xb8\x17\x21\xe1\x38\x8c\x53\x31\x73\x2e\xa9\x08\x2b\xb8\xe4\xcf\xaf\x7b\xda\x0b\xe0\x12\x0c\xb6\xae\xe3\x2c\xff\x4b\xba\x34\xe4\xce\xe0\xc4\x95\x20\x5b\x12\xd8\xea\x58\xd0\x61\x96\x46\x84\x09\xdc\xa5\x48\x10\xeb\x2e\x67\x56\x62\x48\x44\x38\x0a\x6b\xda\x60\xaf\xef\xa4\x7b\x6e\x10\x76\x18\x8f\x54\x09\xb1\xa3\x45\x92\xb2\x28\xb3\x9c\x46\xca\x79\x3c\xd7\x40\xe0\xc4\x67\x1c\x16\x24\x9c\xb2\x05\xa9\xef\x95\xd7\xf6\x5f\xa5\xfc\xb6\xff\x3c\x3e\xed\xef\xa3\x89\xf5\x2d\x5c\x54\xe6\x56\x49\x0c\xb7\x84\x0d\x89\x0e\x27\x9b\x6e\x28\xd0\x0d\x83\x64\xf4\xd7\x21\xdb\x66\x5f\x2b\x0f\x1e\x96\x16\x67\x81\x2d\xd9\x34\xd8\x48\xf1\x86\x01\x76\x55\xe1\x79\x6c\xdc\x2d\xf0\x77\x45\xa3\x72\x8a\x4e\xed\xc3\xf3\x98\xec\x31\x48\xa9\x67\x3d\xe6\x27\xa1\xcb\xfb\xa4\x77\x48\x29\x09\x91\x6a\x2a\x8a\x4b\x2c\xb2\x6f\x29\xbd\x54\x49\xb2\x4f\xe9\xf5\x02\x33\x83\x75\x36\xb2\x25\x2d\x0a\xc2\xa4\xbb\x62\xd1\xed\x9a\xa2\xb6\x1e\x6c\x68\x16\xc2\xc3\x8a\x3c\x28\x8e\x9c\xd2\x3e\x4d\x59\x40\x28\x6d\x59\x6f\xff\x64\x92\xaa\x4b\x0f\x3c\x14\x1a\xe8\x81\x60\x24\xf5\xdd\xbe\x90\x9a\x25\xfa\x5b\x63\x89\xe6\x5a\xb5\xda\x3d\x62\xbe\xeb\xc8\xf1\xef\xa9\x51\xc7\x92\x6b\x30\xe0\x81\x1c\xb5\x6d\x85\x81\x54\x5b\x48\x7c\x59\xec\x32\x60\x49\x9d\x75\xb3\x6e\x41\x90\x5d\xb3\x49\x61\x0e\x2f\x69\x80\x81\xf1\x3b\x81\x24\x1e\x52\xb8\x61\xd0\x56\x1a\x56\xac\x41\x9f\xc5\x08\x58\x7d\x54\xdb\x89\x10\xc7\x56\xa4\xe8\xcf\xb2\x99\xe1\xce\xce\x6c\x5e\x12\x16\xa5\x80\x74\x50\xfb\x9b\xc3\x19\xa8\xc3\x0a\x82\xab\xa4\x75\xf5\x5e\x04\xa2\xde\x42\xba\xdd\x26\x4d\xc2\x25\x4d\x62\x15\x09\xe0\x3e\x0f\x81\xf2\x23\xd9\xb4\xb1\x89\x91\x96\x3c\xbf\x2f\xe7\xf0\xf2\xdd\xbf\xfc\xbb\xd3\x51\x20\x22\x93\x25\x24\xe5\x31\x9a\x32\xb0\xc3\xdd\x5a\x37\x9b\xdc\x9f\x85\xd7\xe1\x79\x42\x7d\xcd\x73\xb7\x01\xdc\x6a\xaa\xa0\x69\xa4\xc3\x5f\xa5\x59\xfa\x44\x20\xc1\xe4\xb0\x97\x87\x45\xd5\xd0\x83\x27\x41\xb2\x57\x75\xf4\xda\x91\x53\xa5\x07\x3d\x46\x58\xe5\x00\x81\xc5\xdb\xc6\x1e\x47\xb4\x6b\x0e\x62\xe5\x45\x20\xde\xc9\x1a\x7b\x7f\xa9\xef\x41\xe4\x05\xf3\x74\x20\xa2\xe4\x32\x2c\x94\x22\xb9\x66\xd2\x8a\x4f\x6d\xb8\x71\x45\x5b\x17\x6d\x8e\x65\x5d\xbb\x4e\xc2\x62\xe2\x23\x3a\x6b\x35\xcd\xf3\xaa\x0b\x48\x7c\xd3\xe8\xbb\x4e\xac\xd3\x74\x98\x1a\x1a\x45\xfc\xba\x0b\x49\x5b\xd6\x12\x7f\x5d\x15\xdb\x2d\xb2\x07\x65\x2a\x94\xae\x4a\xcd\x70\x14\xe7\x45\x59\xad\x18\xae\xa8\xdb\x55\x9c\x7c\xf8\x8e\x3b\x7c\xb7\xae\xc6\xd7\x32\x37\x9b\x10\xd6\x93\x77\x7c\xd9\x38\x5b\x95\x35\x25\xf9\x52\x52\xaf\xd2\x75\xbf\x4c\x53\x67\xf1\x1c\x48\x9c\x91\x09\xea\xca\xc5\x8f\xed\x6b\x45\x00\x7e\x48\x12\x9f\x86\xd9\xd9\xad\x15\x2e\xfb\xb4\x6c\xd9\xa9\xac\x67\x31\x17\x98\x16\xa6\xee\x33\x52\xf8\x07\x6b\x83\x81\xb5\x02\x1b\x17\x37\xda\xc1\x32\x3a\xb6\xb4\x90\x77\xf8\xba\x3c\x18\x18\x9e\x7b\x2b\x83\x5c\x0f\x87\xe0\x84\x37\xe3\x51\xa1\xe2\x74\x5c\xa3\x93\x99\xc7\xd7\x66\xcf\xf9\x20\x2e\x5c\x49\x84\xd5\xa0\x3a\x15\x88\x7c\x41\xda\x56\x53\x4d\x68\x44\xd2\x4c\x63\x60\xe2\x6d\x16\x16\x05\x8d\x7a\x0c\x85\x76\xb4\xc7\x20\x0a\x34\xa5\x4d\x59\xa6\x18\x0f\x46\xc0\x22\xa7\x61\x04\xe9\xf3\xd4\x6a\x5a\xaa\x92\x95\x75\x28\x6d\x1f\xaf\x4f\x29\xcb\x09\x72\x64\x09\x91\x71\x20\x1e\x99\x34\x26\x50\x4d\xea\xc9\x02\xe7\x74\x18\xce\x0b\xca\x76\xe0\x51\x96\xb6\x4b\x72\x19\xa6\x60\x8b\x54\xcc\xb2\x38\xe1\xd7\xe0\x69\x49\xf3\x51\x38\x54\xbe\xb8\x1b\x6c\xc1\x9b\x6c\xb3\xed\x75\x6a\xb9\x40\x24\x8e\x37\x5f\x35\xa9\xd1\xe4\xfc\x89\x96\xdc\x39\x34\x5b\x20\x7b\xe4\x72\x12\x0f\x27\x60\x2d\xc0\xe6\x77\x99\x89\x75\x8c\xcc\x92\x79\xb1\xfc\xce\x55\x08\x82\x25\x03\xac\xa5\x87\xdf\x80\x69\x89\x0e\xbb\xba\xa2\xaa\x8a\x2d\x57\x20\xef\xa2\x3c\x56\x2b\x8e\xc8\x46\xf9\x56\x8a\x4c\x9d\x12\x63\x3e\x70\xe8\x73\x3b\xf4\xe6\xd2\xd7\xb3\xdd\xf1\xee\x73\x1b\xdc\x9b\x57\xc9\x26\x67\x17\xec\xdd\xfe\x56\x3c\x60\xf1\x6d\x84\xdd\xe5\x4f\x9b\x83\x73\xfa\xb9\x6f\x56\x88\x67\x17\xed\xb5\x57\xb2\xf8\x76\x57\x59\x3d\x9b\x46\x12\xad\xe0\xdb\x2a\xc3\x67\x65\xca\xd0\x0a\xb6\x77\x5c\x4b\x68\xd1\xf3\x56\xb0\xb3\xb5\x38\xeb\x6d\x3f\x7b\xb0\x79\x7a\xb0\x79\xfa\x6f\xb1\x79\x12\x96\x8f\xf7\x60\xe3\x5c\xe1\x34\x53\xd8\x54\xf2\xd7\x58\x47\x23\x79\xd7\xbc\x9f\x8f\x8b\xa0\xe2\xc4\x06\xe9\x78\x62\x07\x2b\x90\xe0\x40\x7b\x72\x35\x61\xd2\x53\x22\x25\xd8\xb4\x09\xc4\x7c\xcf\xd7\x86\x0f\xef\x0f\xb8\x6c\xbf\x4b\x03\x78\x74\x27\x90\xb4\x14\x9e\x2d\x96\x19\xf9\xf0\xfe\x40\xdc\x0f\xf8\x1b\x20\x1e\xae\x83\x63\x46\x5d\xf3\x24\x2b\xf0\xad\x97\x5b\xf9\xc1\xd1\xbb\x77\xaf\x0e\x8e\x0f\x8f\xde\x91\x57\x1f\x3e\x1c\x7d\x08\xc8\x81\x3a\xf6\x1d\x72\x94\x7c\x47\x1f\x51\xd2\xde\x20\x0c\x1f\xd9\x68\xf7\xfd\x6d\xd0\xfe\x6a\x9a\xf6\x5d\xbd\xc8\xe7\x87\x08\x25\x9b\x3c\x31\x47\xe6\xaf\x42\xda\xcf\x06\xc4\xb6\x05\x46\xdd\x84\xc7\x68\xb4\x28\xc2\x31\x25\x7b\x64\x7d\x5d\xbc\x2f\x64\xab\xba\xf8\xdd\xe7\xf1\x69\x9d\x94\xbe\x2c\xf6\x9c\x78\x93\x03\xa2\x86\xeb\xaf\x1f\x8f\xde\xc1\xa8\xe4\xaa\x49\x9e\x98\xae\xa2\x6d\xce\x0b\x32\x4d\x03\x81\xda\xec\xad\x1e\xcd\x63\x7e\x4d\x8d\xfb\x3b\x2d\x9a\x0e\xe9\xf1\xe1\xdb\x57\x47\x27\xc7\x01\x11\x97\xdd\x8c\xb9\x58\x23\xa7\x05\xd9\x20\x6d\xf6\x5f\x38\x9c\x30\x81\xd1\x36\x02\xe8\x08\xd7\x94\xdf\x3e\x2c\x56\x0f\x8b\xd5\x7f\xcd\x62\x05\x6f\x2d\xff\xa8\xd6\xb9\xcd\x9f\xb0\x37\x7a\x39\x7f\x8f\x0f\xd8\xa5\x1b\x20\x36\xff\xd5\xde\x0c\x07\x80\x2a\x8c\x5d\x88\x78\x59\x0b\x75\xe9\xbd\x82\x6d\x7c\xfc\xb5\x5f\xbf\xcf\xa4\x09\x2f\x3a\x48\xc7\xf9\x3c\x50\x06\xa9\x79\x84\x5c\x64\x69\x77\xc9\xc3\x79\x94\x99\x66\xe9\xf5\x34\x9b\xab\x1a\x55\x42\xc5\xe6\x4d\x12\x6d\x4c\x25\xad\x68\xc4\xf5\x01\x08\x99\xe0\xc4\x86\x12\x69\x6a\x77\xf6\x22\xcb\x92\x05\xc4\x72\x8d\xc0\xe1\x39\x5f\x24\x28\x87\x8c\xd0\xe8\xc0\xb3\x10\x1a\x19\xee\xd9\xe5\x86\x0f\x42\x1f\xb0\x49\x29\xb0\x0f\xd6\x8c\x61\xc2\x7e\xa8\x18\x84\xe9\xcb\x89\xe3\xb5\xc3\x3d\x20\xe2\xbb\x57\x22\xb1\x47\x55\x88\xfb\x02\x13\xdc\x6f\x88\xdf\x15\x66\xae\xfe\xf2\xda\x4e\xb9\xf2\x66\x18\x53\x9b\xf3\x67\xc4\xdd\x8a\x83\xe3\x23\x8b\xd6\x91\xf6\x38\xee\x8d\x4d\xe4\x45\x50\x4d\x3a\x84\xae\xce\x9d\x10\xe7\x44\xd7\xe9\x79\x47\xf3\x6b\xf3\xde\xc1\x0c\xf5\x74\xad\x14\x3e\xd2\x6b\xfa\x85\x8b\xd6\xf3\xc3\x4a\x3d\x92\xde\xd9\x6f\xd5\x9d\x22\x1e\xa7\x61\x39\xcf\xed\xee\xe0\xf4\xaa\xfe\x60\x98\xea\xfe\x28\xa8\xba\x0e\x81\xdb\x82\xe6\xed\x17\x2f\x1b\x24\x7b\x0b\x89\x14\xa6\x91\x3a\x59\x2a\x33\x88\x80\x3c\x8a\xd3\x30\xf1\x5b\x3b\x73\x1c\x3e\x5b\x52\x3c\xaf\xad\x2c\x81\xde\x20\x8a\xcc\xa3\x17\x34\xbf\x2e\x27\xfc\xc4\x7a\x7a\x1e\x83\xc8\xc8\x78\x48\x6a\x68\x9b\x08\xea\x50\x4b\x2d\x8f\x43\x10\xd1\x1c\xc7\xd9\x9c\x9a\xdc\xea\x17\x7a\xfb\xf7\xe0\x36\x44\x3b\xe9\x50\x5e\x39\x96\xf9\x13\x91\xc7\x9a\xeb\xd6\xca\xe3\xb6\x53\x20\xe7\xef\x59\x85\xbb\x3f\xee\x65\x53\x72\x7b\xa7\xeb\x9e\x68\x8a\x71\x3a\x96\x0d\xbb\xab\x48\x47\x01\x33\x6a\xe5\x39\xb8\x5d\x16\x91\xbb\x45\xf9\xd3\x18\x02\x5a\x59\xc6\x00\x02\x08\x8f\x1f\xe3\x1b\x9d\x9c\xce\x93\xa4\xe2\x65\x8b\x3e\x58\x24\xee\xe5\xbf\x79\x1e\x0c\xf8\xaa\xe2\x40\x42\xa6\xd5\x9b\x8b\x9a\xdb\x7e\x41\x7d\xe7\x4d\x4c\x87\x2f\x5f\x3d\x72\x61\xdf\x9c\x77\xed\x48\x7e\x2b\x61\x83\xb6\x2f\xe1\x38\x93\x49\x86\x59\x3a\x0c\xcb\x8e\x31\xfa\xdd\x6a\xef\x35\x95\x52\x4f\xb8\xae\xa9\x96\x7a\xf6\x6a\x4b\xab\x24\x5c\xc4\xaf\x1e\x5c\x19\x26\xa4\x82\x30\x18\x82\x1d\x02\xc7\x12\xa9\x6a\x1f\x3d\x82\xf3\x06\xb3\x15\xf5\xcb\x74\xb5\xcb\x1d\xa0\xc1\x3d\xfa\xdc\x09\xf3\xb1\x35\xbb\xb4\xfa\xf8\xdc\x28\x19\xe0\x2f\xe1\x8f\x67\x0b\xf9\x3f\x11\xfd\x13\xd7\x2f\x0a\xaf\xfd\x42\x8b\x0f\x26\xf9\xa2\xb4\x34\x8c\x6f\xbb\xbb\xcb\x66\xe6\xaf\x59\x9c\x76\x5a\x2d\x17\xb9\x7a\x0c\xc7\xd9\x8d\xd3\x09\xdf\x6e\x80\x6e\xd8\x61\xd3\xbc\xdb\xc3\x2d\xc2\x37\x35\x69\x56\x1e\x1a\x6d\x55\x24\xf4\x78\x19\xd2\xc0\x0d\xeb\x86\xd7\x0a\xdd\x9e\x55\x0b\xae\x5f\x2d\x24\x48\x6a\x67\xf3\x72\x36\x2f\x7f\xce\xc6\x5a\x5c\x0b\x0f\x3c\x68\xb6\x48\x97\x3f\xdc\xbb\x0c\x52\xcb\x4c\x30\x2d\xad\xa1\x4f\xb6\xf3\x27\x0e\xc3\x2f\xb9\x0c\x79\x9a\xd3\x68\x3e\xa4\x68\xac\xc2\xe1\xb0\x47\x84\xd3\x4a\x2c\x4f\xc2\xe1\xf0\x54\x24\x73\x99\xc8\x88\x22\xbe\x25\x97\x3f\x37\x87\xac\x5f\x4c\xe2\x51\xd9\xe9\x92\xc0\xa1\xa8\xcc\x72\x0e\xad\xc2\xe1\x50\x9e\x52\x71\x23\x6f\xce\xda\x34\xa1\x25\x95\xfd\xd0\xae\x91\xcc\x74\xce\x55\xb7\x10\x19\xe8\xfa\x4a\xbc\x27\x11\x53\x9b\x2d\xf5\x5c\x8d\xab\xf4\xa7\x70\x5f\x7a\x91\x51\x71\xbd\xf2\xe3\xf1\xd7\x60\x6b\x3f\x7f\x74\x3f\x4c\xdb\xcb\xfd\x30\xd5\x15\xdf\xaa\xb6\xb1\x33\x11\x10\x43\x03\x34\x5c\x3e\xd8\x6a\x87\xed\xec\xc9\x51\x28\xff\x50\x5e\x9f\x2a\x79\x19\x9b\xfc\x37\x78\xcc\x68\xbd\x66\xf3\xbe\x64\xac\xe5\xc6\xaf\xe5\x62\x8a\x81\x9a\x3b\xd7\x2a\x09\x28\xed\x0b\xa1\xa6\x53\x04\x70\x66\x70\xaf\x0f\x00\x7b\xad\xd2\x4c\xe1\x05\x3d\x55\xe2\x9e\xd7\x7d\x56\xd9\x01\xc3\x68\xc2\x7b\x25\x6c\xd0\x12\xf9\xc1\xaa\xbb\x11\x5e\xe6\x1d\xeb\x96\x0e\xb1\xbe\x6b\x72\x00\x7f\x57\x0f\x97\x03\xff\xd9\xe4\x5b\xce\x83\x9e\xf3\xbf\xfa\x30\x22\x38\x82\xc8\xda\x60\x40\x8e\x8f\x5e\x1e\x05\x24\xa7\xdc\x20\xab\x47\x8a\x4c\x58\xce\xa8\x2b\x2e\x6d\x8b\x13\xf2\x93\xae\x3e\x2b\x17\x97\xed\x82\xa4\x74\x48\x8b\x22\xcc\xaf\xd9\x64\x81\x78\xdb\x05\x63\xb7\x36\x78\x36\x06\xbf\xd2\xe4\x32\xcb\x3f\x73\x2d\x6f\x3a\x4f\xca\x78\x96\xa0\x38\x0c\x66\xe4\x14\xbf\x57\xa3\xc1\x63\xe2\xb5\xe1\xfe\x46\x1a\x81\x73\x1c\x46\x79\x55\xbd\x61\x43\xaa\x2b\xa3\x11\x5f\x38\xcc\x9d\x89\x2a\xd5\x97\x34\xf2\xf9\xad\x59\x67\x8d\x3b\x75\x61\xcf\x7c\xfb\x87\x2a\x58\x4b\x9c\x12\xc7\xbe\xd1\x6c\xa7\x70\xe3\xe4\xc3\xb4\xc4\x0c\xd2\x8b\xa7\x72\x0b\xa5\xf1\x0b\x86\xb7\xfb\xe4\x00\x78\xb6\xdc\x3c\xc7\x47\x0d\x9e\xa3\x84\x9e\xb0\xe8\x31\x9b\xe8\xb1\xfc\x14\xc5\x0a\x5a\x5a\x71\x62\x7c\xae\xad\x6a\x37\x62\xf5\xc3\x1d\xd3\x9a\xfe\x6a\x18\x4f\x97\xab\xf8\x85\xe8\x10\x25\xd7\x2b\x77\x5b\x15\xbc\x87\x8e\x13\x64\x37\x4a\xaf\xfa\x86\x38\xd2\x1f\xbb\x32\x5f\x0a\x21\xf8\x5f\xa5\x2a\x89\xc3\x7f\xa8\x74\x24\x67\xe4\x4f\x53\x8d\xa4\x57\xe2\x55\xb7\x2b\xcc\x39\x15\xb4\x43\xa2\x0a\xf1\x5c\x21\x90\x5b\xc1\x0e\x38\x2e\xc2\x9e\xc2\x99\x5c\xfe\xfe\xe1\x62\xf4\xe1\x62\xf4\xcf\x7d\x31\x2a\x6e\x45\xc5\x4b\xdf\xff\x8a\x90\x7d\xf7\xea\x26\x1c\xf6\x00\x8f\xc9\x41\x96\x5e\x50\x26\x8a\x42\x11\x5f\x19\xb6\xc1\xb0\x15\x80\x20\xc9\x32\xb4\x0a\x63\xe0\x30\x29\x32\x12\x26\x49\x76\x59\xf0\x58\xf0\x70\x4e\x57\xf4\xd7\x18\x22\xa9\xf7\xbf\x8d\xaf\x68\xb4\xe0\x59\x6b\xee\xb5\xc6\x9a\xb8\x50\x2d\x33\x3b\xa2\xb2\x38\xb1\x54\xfb\xcd\x8e\x79\x22\x4a\x6e\x6e\x64\x34\x76\x9d\xd1\x56\x47\xa8\xed\xae\x7d\x16\xc0\xb7\x72\x42\x43\xe2\xe7\xb2\xbc\x0d\x1d\x79\xbc\x68\x54\xc4\x8f\x21\x8e\x46\x70\xd2\xdc\x05\xec\x9b\x0e\x4e\x80\x14\x72\x1f\x3f\x64\x35\xae\x8c\x64\x04\x24\x55\x0f\xec\xb8\x98\xa6\xc9\x24\xad\xbc\xfb\xb1\xed\x60\x33\x75\xbc\x2f\xf6\x5a\x3d\x36\x08\x17\x34\x8f\x47\xe0\xce\x23\xa7\xc3\x90\x49\x1c\x14\x3a\xe6\xd1\x23\x92\x84\xff\xbe\x26\x49\x16\x46\x24\xba\x4e\xc3\x69\x3c\x24\x59\x4a\x0b\xa8\x4d\x0c\x88\xae\x48\x44\xce\xce\xd4\x31\x01\x40\x49\xf3\x7a\x59\xb9\x03\xc5\x46\x6b\x4c\xcb\x23\xb5\x47\xf6\xb8\x6d\x66\x03\xa3\xf5\xd5\x65\x5e\x01\xf0\x59\x82\x18\x12\xb9\x4b\xae\xbe\xf4\x30\x0e\xfa\x2b\x6f\x5e\x78\x76\x71\x19\x43\x60\x13\xd4\x2a\x02\x47\x10\x05\xe5\x1b\xe8\xc0\x79\x58\xc5\x75\xf7\x79\x4e\xc5\xe9\x62\x0f\xee\xef\x86\x7c\x76\xf0\xbd\xf1\x84\x5e\xf9\x4e\x0d\xf4\xa1\xa9\x95\x60\xf9\x9f\x6c\x50\xc4\x38\xf8\x14\x31\xbc\x2b\xcf\xe4\xad\xf3\x7e\x19\xf1\xfb\xb9\x88\x85\xce\x50\x89\x49\xd6\x25\x81\x9c\x6f\x02\xcc\x55\x95\x7c\xb7\x04\x9e\xd7\x75\xd0\xcc\xc0\x6a\x76\xcf\x81\x63\x53\x40\x43\xb1\x2f\x17\xa6\xcc\x30\x1e\x37\x3f\x94\x81\x9e\x25\x50\x88\xc3\x3c\xdb\xb5\xc1\xf5\x55\xb0\xd2\xad\x56\x5f\x95\xeb\xfa\x5a\x77\x1b\x8c\xa2\x94\x79\x3c\x85\xf6\x39\x9c\x03\x8b\xc9\xa4\x1d\xf8\x08\x6e\xb1\xba\x3c\xa9\xd9\x8f\x22\xfe\x28\x42\x9d\xa1\x85\x69\x44\x0a\x5a\x16\x64\x3e\x83\x0c\xb1\x19\x01\x91\x11\x97\x34\x67\x6b\x47\x76\x21\x94\x2d\xe1\xbc\xb4\xbf\xb6\x86\x1e\x46\xfc\x9c\x8d\x8b\xfd\xf2\x63\x19\xe6\xe5\x9a\x7d\xd0\x58\xd0\x64\xa4\x12\x47\xee\xb3\x65\x21\xc2\x4d\x2c\x46\xe4\x2e\x9a\x8c\x1c\xd7\x3d\xf2\x8d\xdd\x98\x96\xfc\x38\x8b\x15\xb6\x1e\xda\xc1\xf1\x82\xee\x66\x01\xcd\x23\x72\xe3\x69\xc9\x0c\x56\x4b\xdf\x27\x38\x20\x63\x4c\xcb\x8e\xf5\xe4\x47\x18\x32\x3a\x9b\x9c\xc1\x40\xbc\x9f\x81\x47\xa2\xac\x8d\x82\x6c\x60\x35\x09\xf7\xdc\x32\x51\x5a\x1d\x81\x03\x8c\x7e\xbf\x4f\x7e\x9d\x73\xf7\xbf\xac\x4e\x26\x7b\x9d\xed\x72\xc5\xbb\xc8\x9a\x37\x91\x0b\xfb\x01\xac\x35\xd3\x55\x37\xfc\x5b\x4c\x9e\xe9\xdd\x97\x72\x3b\xce\x65\xaf\x34\xf9\xd3\x1d\xd3\xea\xd3\x68\xdf\x72\xef\xab\x5f\x8f\x75\x67\x59\x92\x70\xf6\xf1\xb3\xad\xe0\x4d\x0d\x66\xf3\xa5\x3a\x11\x81\x53\xdb\xf4\xad\xb2\xc2\x35\x98\x25\xab\x60\x17\x31\xa2\x99\x33\xa6\xd2\xc6\x82\xb1\x9e\xec\xab\x6f\x10\x7c\x8f\xa6\x7c\x3c\x91\x35\xde\xc8\x37\xe5\x8e\xdb\x71\x86\xb6\x52\x86\xae\xe9\xb3\xeb\xe7\x56\x82\x46\x12\xc8\x42\x2e\xeb\xdc\x89\x3c\x77\x63\xd2\xca\xe3\x00\x68\x93\xed\x82\x9a\x09\x9e\xf7\x59\x92\x30\x39\xa3\x5b\xc2\x79\x30\xe0\x45\xd8\x3e\x8d\x4e\x69\x5a\xc2\x96\xb3\xcf\x38\x0e\xba\xa6\xd7\x92\x99\xb0\xb3\x3f\xe5\x94\x02\x76\x3c\x8c\xce\x7a\xf2\x86\xca\x48\xee\x69\x66\x14\x39\xd8\x7b\x11\x3f\x1f\x06\xfe\x65\x8b\xb5\x8c\x23\xe8\xb0\xb8\xa5\x93\xf5\x88\x13\xd3\x43\x4e\x37\xcf\xe5\x40\x4f\xec\xa6\x0e\x72\x0a\x7d\x02\x73\xed\x03\xcf\x3b\x47\x10\x76\xfc\x00\x1b\xdd\xb7\x1a\xf4\x40\x07\x7c\xab\x9c\x94\x55\x1e\x75\x55\x9e\xf5\xf8\xcf\xd4\xcc\xc6\x20\x53\x02\x52\xe9\x27\xbe\xd2\x18\x53\x2b\x9b\x5a\x0d\xb6\x54\x5f\x04\xed\x90\xc1\x4c\x40\x90\x72\xe4\xdd\x07\x63\x6a\x86\x08\xc3\x1a\x95\x21\x96\xdc\x83\xaa\x7c\x2d\xf6\x9c\x2c\x7c\xeb\xa4\x7e\x57\xb6\xbb\x9f\xd2\x4b\x71\xe9\x84\x69\x80\x5d\x84\x71\x21\x19\x47\x86\x47\x3c\xbf\x70\x5c\x32\xed\x3b\xc3\x73\x8f\x9a\x3b\x3c\x5f\x2a\x07\x89\x90\xc8\x62\x5f\x58\xc3\xbd\x96\x1f\x52\x57\xbc\xd4\x94\xf5\x37\xa3\xfe\xd8\xd9\x98\xda\x8c\x09\x22\xd7\xfd\x1f\xf6\xd4\x90\x53\xb8\x63\x60\x7b\x8e\x19\x4d\x23\xb0\x6f\x53\x83\x1c\x16\x70\xd0\x92\x16\x8c\x43\x95\x0b\x18\x8d\x28\x1b\x01\x30\x2b\xc4\xb4\x9e\x2e\x3f\x5c\x51\xb5\xcf\xd3\xb0\x28\xe2\x71\x4a\xa3\xbe\xdb\x46\x9b\xa3\x7c\x32\xd9\x37\x3a\x4a\xc7\x1a\x9e\x2f\x19\x20\x6f\x35\xd8\x62\x0c\xf5\x44\x9b\x13\x93\x04\x6b\x87\x61\x92\xd3\x30\xba\xd6\xcf\xd5\xb5\xa2\x58\xdc\x9d\xd3\x4c\x45\x56\x6a\xaf\xcb\xfa\x15\x8f\x3a\x56\x6d\xca\xf5\xdb\xa6\xeb\x88\x4b\xcf\x4c\x2e\xc5\x7d\xde\x20\x99\x16\x5d\x66\xa2\x6f\xf1\x74\x4a\xa3\x38\x2c\x69\x72\x6d\x57\x2b\xd8\x7d\xd8\x94\xb7\x4d\xed\x04\xd0\x77\x2a\x1c\x4d\xf8\x9c\x55\xe1\x93\x6c\x2e\xf2\xd9\xf2\xc3\x3b\x83\xae\x72\x2f\x9d\xd8\x1c\xf6\x62\x6e\xca\x36\x6e\xd7\x87\xda\x21\x8f\x63\x0c\xe1\x88\x7b\x63\x8d\x93\xb8\x2d\x75\x3b\x82\x68\x8d\xae\x84\x17\x4d\x3b\x82\xd7\xdd\xe5\xfd\x71\x34\x87\x6c\x26\x15\x07\xb3\x23\x4b\xe4\x3b\x3c\x2c\x9f\x66\x17\xf2\x48\x93\x84\xc5\x75\x3a\x54\x9b\x1f\x9f\x62\xe4\x93\xdb\xf3\x14\x5e\x4e\x1b\x04\x40\x3a\x86\x45\x2d\x47\x76\x61\x3b\xf8\x55\x30\x1b\x8a\xbf\x43\xd1\xb1\x15\x6f\xdd\xe7\x3b\xc1\xd1\x29\xbc\x16\x27\xaa\xa4\xad\x94\x5b\x2b\x6a\x85\x19\xe5\x60\x40\x0e\x47\x5a\x32\xc6\x85\x7a\xd6\x77\x4d\x85\xf7\x15\x12\x97\x44\x3b\xe7\xd2\xe5\x2e\x27\x14\x6c\x31\x44\xef\xbb\x84\x0b\xd5\x82\xc4\xa5\x29\x56\xbd\x0b\xb5\xc3\xec\x6a\x9a\xf9\x56\x0f\x1f\xf9\x05\x46\x7b\x40\xf1\x7a\x0c\x71\x51\x3c\xf2\xed\x2b\xba\xe7\xb1\xf4\xf1\x9c\xda\xc6\x7b\x49\x36\xae\xaa\x97\x58\x82\xa9\x66\x6f\x01\x58\x02\xb6\x26\x54\x78\xe1\xf3\x87\x29\x31\x41\x9c\x0d\x80\xdd\xb1\xe6\x7c\xe4\x78\x99\x12\x8a\xf8\xe1\x4b\x9e\x10\x08\x1e\xeb\x74\xfb\x7c\x45\x1e\x86\xd2\x4f\x21\x78\x55\xa1\x11\x61\xb3\x7b\x92\x67\x69\x36\x2f\x94\xd3\x42\x61\x17\xc0\x56\x7b\xdb\x11\x11\x47\x23\x94\xdd\xb6\xd7\xba\x16\x5c\x4a\x64\xda\x48\xaf\x09\x03\xb9\x26\x74\x0c\xc3\xf2\x31\xbc\xc3\xb8\x2d\x96\xc8\x63\xe7\x8a\x94\xd3\xd6\x09\xf8\x56\x73\x41\xba\x38\xeb\xed\x6c\x36\xb9\x02\x6d\xcf\x0b\x7e\x2e\x3e\x2c\xdb\x6b\x0f\x17\xa2\x0f\x17\xa2\xff\xc1\x17\xa2\xfa\xa5\x28\x3a\xb2\xbe\xcd\x73\x51\x01\xbc\xc2\x4d\xa6\x2f\xe2\x5b\xe3\x17\xa6\xe9\x28\x1e\x7b\xe1\x78\x96\x04\x3c\x3c\x0f\xad\x50\x2e\xf1\x79\x98\x7a\xc2\xb3\xc0\x69\x32\x0f\x2f\xc5\x4d\xa4\xf9\x65\xe6\x79\x3c\x16\x0e\x0c\x2c\x23\x46\x0e\xf4\x22\x1e\x5b\x87\xfa\xd8\x98\x91\x9f\x38\xdf\x70\x88\x1b\x05\xbb\x30\x7d\x56\xe9\x74\x6c\x88\x0b\xe7\x8c\x15\x75\x18\x5a\x11\x6f\x9d\xf7\x15\x5a\x99\xa9\xb2\x12\x6c\x57\x1d\x02\xc5\xc5\xfb\x9c\x8a\x6b\x50\x74\x3b\x61\xe0\x3e\xd7\xe9\x56\x05\xe7\xb8\x04\xdb\x48\x08\xa7\xf7\xe4\xe6\xc6\xcd\x13\x7b\x53\x7f\x26\x0d\xf3\x24\x66\x45\x51\xd3\xd2\xd9\xbc\x7c\x49\x47\xe1\x3c\xf1\x5e\x9c\x2c\x6b\x23\x5b\x91\xed\x7a\xd4\x95\xaf\x37\x68\x0b\x63\x99\x7e\x84\x6a\xf4\x78\x9e\xaa\xbe\xc7\xc1\x4d\xb0\x7a\xf1\x5b\x34\xdf\x7e\xd0\xc5\x15\x14\x86\xa5\x62\x8c\x8d\x4a\x3d\x08\x51\xb6\x87\x0e\x92\xb7\xde\xd0\x2b\x4f\xcf\xc5\xac\xe2\x9d\x2d\x90\x4d\x64\x36\x22\xa1\xe1\x19\x10\xdc\x4e\x2a\x3b\x02\x65\x17\xc0\xe6\xdd\x9b\x57\xff\xb0\xa6\x1b\xe0\x60\x7a\xb1\x77\xa2\xc9\xb3\x7c\xc3\xb3\xae\x63\xf7\x2e\xaf\xc8\xe5\x69\xbf\x8b\xd3\x1b\xed\xfb\x8b\x71\x79\x0c\xd7\x7f\xe8\x0a\x16\x3e\x6f\x6e\x2c\x1e\xda\x1f\x42\xb4\x05\xe4\xf6\x0c\xc3\x7b\xfc\x6d\x49\xb4\xd0\x26\xe1\x84\xca\x7f\xf5\x68\xea\x41\x18\x75\x99\x89\x20\xd1\x71\x49\xa6\xf1\x78\xc2\x15\x47\xe5\xb3\x58\x1c\x52\x39\x35\x97\xd9\xd2\x7a\xcb\xcc\xac\xf5\xb4\x3d\x0d\xaf\x5e\x53\xfa\x9e\xe6\x3f\x85\x45\xbb\x47\xd8\xf7\xfb\x3c\xce\xf2\xb8\xbc\x36\xd2\xc7\x61\xf1\x3e\x8f\x87\x54\xfc\x66\xff\xc1\x30\xb3\x1f\x69\x96\x0e\xa9\xef\x11\xe3\x67\x7a\x5d\xf3\x8c\xf1\x33\xbd\x6e\xfa\x90\x11\x30\x39\xb4\xe6\x18\xf6\x90\xdd\xc5\x4b\x3a\x8c\xa7\x61\xd2\xc1\x00\xee\x43\x32\xf3\xb2\xf5\x6b\x33\x3b\xf2\xb8\x79\xdf\x3c\xef\x43\x7d\xff\xac\x7f\x5b\xee\x7e\xe0\xeb\x3f\x22\x5f\x0b\xa5\xc8\x61\x6c\xb8\x7f\x95\x21\x84\x04\x57\x7b\x55\xa5\xc6\xfc\x7c\x65\xaa\x47\x22\x7d\xcd\xd0\x89\x96\x72\x70\x79\xd5\xfd\xa2\x4e\x06\xaf\xfa\x78\x39\x5d\x97\xbb\x73\x7d\x22\x66\x02\x28\x07\x19\x99\xa4\x9f\x09\xa0\x9e\x80\xb0\x74\x44\x0b\x78\x6c\xe6\x47\xef\x40\x79\xeb\xb0\xa1\xe4\xe1\xdf\x55\x1f\x58\xca\x5f\x08\xb2\x34\xe4\x38\x2c\xfc\x70\xe3\xb0\x30\xa0\x80\x7d\x11\xa8\x56\x15\x51\xbe\xd1\x55\x3c\x37\x4c\x46\xd5\x5c\x6d\x83\x55\xe0\xc7\x30\x86\x97\x4f\x55\x93\x33\xeb\xea\x6b\x74\xc1\xab\x6b\x76\x60\x8d\x16\x94\x57\x7d\x69\xf8\xe7\x45\x80\x5f\x19\xcb\x53\x88\xab\x95\xa7\x8d\x0c\xcc\x73\x9b\xe9\x23\x62\x04\xd5\xce\x22\x15\xb2\x6a\x95\xa9\x64\x23\xb6\x3c\xd6\xe0\x58\x43\x3a\xb6\xd0\x92\xb9\xe5\x83\x72\xf9\xd3\x03\xa5\x59\x4f\x66\x36\x98\x6a\x95\xa0\xd5\x55\x56\x4c\x3a\x15\x02\x67\x3e\x9d\x27\x61\x19\x5f\xd0\x9f\xc2\xe2\xa4\x80\x27\x7d\x55\xa8\x1c\x58\x0b\xd7\x78\x29\x86\xb1\x51\x0e\xf5\x9d\x8e\x46\x74\x28\x30\xf3\x99\x5b\x31\x1d\xaa\x0b\xf8\xf8\xb9\x12\xda\x9e\x94\xa6\xb5\x88\x2c\x96\x64\x63\xdb\xf8\x52\x67\xa0\x38\x42\xce\xe9\x20\x1c\xf1\x79\xcf\x06\x3d\xef\x93\x19\xec\xb2\x83\x40\x51\x53\xa3\x79\x08\x4c\xd6\x7c\xe6\xc1\xc6\xa9\x76\xb2\x01\xc2\x06\x53\xcd\xc4\x84\x4d\x8c\x00\x83\xf6\xd8\x4d\x94\x6f\x26\x70\x52\x28\xce\x1f\xf0\xd6\xb0\x7f\x1e\x16\x74\xa9\x6c\xf4\x81\xfa\xd8\xc0\x03\x67\x30\x00\xcf\x1f\x87\xc5\xcf\xf1\x34\x2e\x3d\xfc\x6b\x02\x88\xb2\x2a\xb1\x82\xe9\x8d\x7c\xa3\x4c\x11\xff\xdb\xb7\xda\xe9\x4c\x03\xba\x8c\xa7\xb4\x28\xc3\xe9\xac\xb2\x88\x82\xf0\x97\x7b\x17\xa6\xd9\xf2\xb2\x0c\x4a\x4f\x4c\x9e\x99\x56\x89\x3d\x23\xbb\x0a\xb5\x3a\x93\x41\x8d\x8a\xe2\xd1\x28\x1e\xce\x13\x78\x17\x54\x35\x52\x1a\xc8\xec\x50\x56\x86\xc9\xcb\x26\x08\x2c\x48\xac\x75\x9b\x33\x5d\x80\x6b\x19\x69\xce\x77\x37\xdb\xd5\x55\xe3\x92\x4e\xbb\xf6\x83\x40\xc7\x2c\x13\xa0\xdc\x0b\x70\x43\x2a\xf8\xb4\x3e\x5e\x70\x99\x78\x38\xe7\x67\x3a\x48\x38\x98\x73\xfc\xd5\x2c\x1b\x4e\x3e\x96\x61\x59\xd4\x4e\x74\xca\xc0\x48\xc1\xe0\x6c\x47\x1d\x68\xce\x9b\xc7\x77\x1e\xd4\x78\xe6\x23\x77\x1b\x95\xf3\x1e\xbc\x2b\xf0\xba\x5d\x56\xd2\x99\xd0\x73\xee\x5d\x42\x98\xd6\x7a\x61\x21\x53\xc3\xf2\x47\xa4\x7e\xac\x69\xa4\xe1\x80\x65\x5e\x84\x05\xfd\x40\x2f\xc3\x3c\xfa\x85\xc2\x4e\xcc\xc7\x62\xd5\xe0\x16\xb6\xd7\xd4\xbf\x2a\x19\x10\x56\x99\xe3\xab\x15\xea\x37\x81\x39\x97\x0b\x8e\x70\x5c\x8c\x9b\x0c\xf1\xb1\x0c\x3f\x57\x9c\xea\x2a\xc3\x51\x00\x69\xcc\x07\x16\x46\x1f\x0f\x10\xe9\x50\x25\xae\x1c\x92\x58\x0a\x4a\xf8\xe2\x3e\x24\xa2\x57\x75\xac\x81\x61\x3c\x65\x8f\xe3\x69\xcd\x20\x20\x20\x5c\x36\xa2\x6c\x16\x5e\x2c\xad\xdb\x86\xab\xc0\x51\xdf\x06\x0b\xd0\xc4\x91\xd0\x31\xcb\x78\xeb\x5b\x2e\x6c\x10\x5c\x12\x06\xaf\xba\x4e\xc8\xc6\xf0\xc0\x4e\x1f\xeb\x0b\x69\x18\x2c\x4f\x21\x6b\x12\x16\x47\x97\xa9\x7c\xe6\xd9\x69\x9f\x5b\x13\xa3\x6d\x48\x55\x28\x62\x83\x54\xd7\x6b\x43\x22\x69\xc8\x07\x31\x09\xe3\x29\x8d\x38\x88\x5f\x01\xf0\xc0\xd9\x58\x04\x21\x99\x8c\x3f\x68\x88\xb0\xb2\x88\x83\x3b\xbb\x4c\xcb\x7a\x26\x10\x10\x76\xc9\x69\x5c\x14\xe2\x6c\xbb\xa6\x21\x18\xca\xc6\x90\xe5\xf1\x38\x4e\xa1\x95\x1f\x87\x59\x5e\xd3\x06\x1b\xd2\xc6\x34\xcb\xe2\xea\xc2\xb3\x2c\xb6\xe1\xcb\xa6\xa2\xcc\x96\x62\x06\x16\xf0\xda\xdc\xa4\xf9\x16\xa0\x5c\x27\xcd\x63\xa0\x46\x62\xb1\x7e\x91\xe4\x72\xb1\xf9\x02\x69\xe3\xac\x92\x8c\xae\x72\x02\xb9\xce\xc4\xf1\x2a\x20\x3d\x12\x9b\xc6\x08\xda\x00\x94\x6b\x10\x64\x7d\x8f\xb4\xf9\x2b\x36\xc7\x16\x8e\xa1\x3d\x8d\xcf\xc8\x9e\x5f\x94\x73\x04\xa8\x84\xd7\xf6\x45\x23\xb1\xe5\x94\x53\x1c\x29\x33\xb7\x18\xa3\x97\x6a\xd6\xdd\xe7\xf2\xe5\xc1\x5a\xbb\x84\x95\x19\xa7\xd2\xe1\xcb\x2a\xc9\xac\x21\xb0\xa0\xe5\x21\x37\xab\xb9\x98\xe7\x3f\x2c\x82\x4b\x16\x18\x53\x96\x7b\x96\x97\x3b\x2d\x0a\x8b\xdb\xf1\x63\xbd\xdc\x40\xab\xc5\x2d\xb8\xf2\xb7\x96\x1f\xab\x49\x10\x57\x86\x78\xe6\x93\x23\x08\x7c\xa2\x60\x15\xca\xbf\x89\x8b\x32\x1b\xe7\xe1\xd4\x4b\x77\xe1\x0f\x79\x22\x81\x3c\x44\xe7\x20\x16\xcd\x5d\xac\xbf\x19\xc5\x4b\x3a\xed\x0f\x2d\xf9\x80\xa5\x28\xcf\xb4\x8c\xfa\x34\xe5\x19\xc8\x9d\x08\x2a\xea\x7a\xaf\x1e\x53\x37\xf0\xe0\x58\xc3\xbb\x16\xb2\x2a\x32\xf2\xe2\xfd\xcf\xf4\xba\xe0\xe9\x9e\xfb\xa0\xae\x49\xd2\xd3\xcf\xbe\x85\x46\xe4\x74\xbd\x17\x40\x4b\xba\xce\x95\xa7\xe3\xe3\xd7\xcb\x4f\xc2\x18\xd4\x8a\x9b\x64\x17\x7b\x15\x31\x6a\x0e\xc7\xa4\xe6\x5e\x16\xfd\x22\x9c\xce\x12\xea\xbb\x09\x71\x81\x50\x2c\x35\x35\x17\xea\x85\xab\x02\x6b\x43\x48\x2d\x97\xc5\xfb\x0a\xc2\x65\x76\x3d\xdf\xf6\x2a\x27\x94\x8d\x64\x75\x4e\xfd\x1b\xbd\x2e\x8e\x65\xa7\xef\xc2\xa5\x06\xa2\xaa\x41\x01\xff\x95\xf4\x52\x78\xb9\x4c\xe9\xa5\xe0\x59\xe9\x2d\x6d\x25\x0e\x16\x88\x4e\xed\x91\xfb\x0c\xee\xcf\x04\x0f\x7b\x59\x58\x94\xac\x27\xcb\xdf\xe1\xa4\xf7\xbe\x68\x63\x61\xfb\x03\x10\x68\xa5\x49\xbf\x9c\x62\x62\x66\xbe\xff\x58\xbf\x76\x3b\x14\x7b\x9d\x64\x61\xd5\x34\x47\xc8\xea\x08\x36\x8d\x53\xa1\x14\x6d\xea\xf7\x82\xd3\xf0\xca\x4d\x84\x9d\xf7\x81\x58\x18\x36\x6f\x41\x52\x40\x62\x2a\x60\x9a\xaa\xbb\x08\xa8\x6a\xf5\x91\x54\x96\xb0\x4c\x76\xa8\xf6\xef\x91\x4d\x72\x73\xa3\xfa\xf3\x23\x54\x65\xbc\x5f\x54\x3d\x65\x39\x12\xc7\x02\xe3\x92\xdd\x96\xb8\xc4\xf7\x0f\x2e\x2e\x45\x20\x14\x7f\x56\xa2\x42\x84\xda\xd8\x23\xc8\x50\x63\x81\xfc\x1a\x2a\xdc\x7b\xb2\x61\xf8\x7a\x09\xf8\x66\xb3\xbf\xe9\x35\xc7\xd6\xe8\x1f\x93\x2d\xfa\x3d\x19\x68\x6c\x4f\x14\xb2\x1a\x6e\xfb\x3b\xdf\xa3\x66\x39\x03\x7c\x99\xc7\xa3\x25\x07\xb2\x17\x2e\xfc\x8a\x2b\x4f\x5d\x8d\xf7\xbb\x20\x37\x5a\x9a\x1c\xb8\xae\x15\xe6\x59\x02\xad\xbc\x26\x41\x21\xef\xb2\x84\xdb\xd8\x78\x75\x32\xd1\x69\xad\xca\x2b\x66\x3c\x4b\x89\xf4\x3a\xdc\xe0\xbe\x2e\xc9\xc6\xde\x8b\x39\x7c\x49\xe8\x63\x8e\x24\x1b\x6b\x8b\x5a\x97\x11\x00\xaf\xc1\x0b\x18\x21\x1e\x7b\xf4\x92\x21\x1e\xb1\x2f\xe3\x9e\x5a\xf5\xdd\xca\xf0\x8c\xb0\x5d\x74\x17\xe3\x74\x2e\xa2\x0d\xc4\x0d\x6e\xb4\xbd\x48\x8c\x2a\x92\x6c\xec\x41\x2d\x53\x2b\x50\xaa\x42\xe6\x98\xc2\xeb\x8c\xe5\x46\x70\x97\x93\xb8\x98\xd1\x9c\xcc\xb2\xa2\xbc\x85\x15\xdc\xfb\xac\xa8\x37\x74\x30\xcc\xdf\xaa\x07\xdb\xb0\x7f\x33\x90\xe2\x81\x66\x8d\x54\x9e\x1e\x06\x03\x68\x74\x7f\x16\x5e\x83\xab\xa4\x3d\xc3\xf2\x15\x67\x09\x22\x43\x52\x59\x26\x5e\x13\x2c\x99\x89\x61\x2f\xb3\xfc\xf3\x71\xf6\x3e\xcf\x2e\x68\x75\x19\x04\x84\xcb\xce\x84\x11\x4b\x75\x41\x09\x81\xf4\xdb\x91\xf4\xc5\x42\x6c\xe7\x28\x5c\x4e\xf0\x46\x72\xc7\xe9\x58\x42\xa0\x74\xb2\x67\x7c\x3d\x27\xa7\xe8\xf3\x8c\x04\xea\x65\xe2\x42\xd7\xca\xcd\xea\xb9\x85\x7d\x92\x64\x97\xe0\x29\x4a\x9a\x2a\xd6\xa1\xaf\xf7\x6c\x34\x18\x48\x66\x22\x59\x9a\x5c\xf3\x08\xcf\xa5\xe1\x70\x49\x3a\x3d\xe2\xce\x8d\x7c\xbe\xba\xa4\xe7\x23\x12\xd8\x7e\xb8\xb0\xcf\x23\x5b\xa0\xb1\x36\x36\x92\x5d\xea\x89\x07\xf0\xbf\x70\x3c\xe1\x95\x66\xcb\x38\xbd\xc9\x62\x56\xcf\xd8\x82\xaf\x81\xbe\xf4\x6a\x16\xe7\xd7\x9e\x19\x8f\x72\x31\xbb\x15\xd4\xab\xf6\xa8\xbc\xaa\x29\x60\x81\x7a\x26\x00\x70\xb6\xef\xbe\xcb\x82\xe8\xee\xfa\x66\xe5\x87\xf0\x52\xb2\x8c\x48\xf1\x82\x21\xf4\xfb\xc5\x30\x8e\xed\xe9\x2b\xcb\xe0\x13\x8b\xbf\x16\x82\x70\x0a\x0e\xed\x41\xf5\x3c\x54\x15\x40\x84\xc4\x59\x98\x17\xd4\x27\x1c\x06\x83\x55\x66\x04\xcc\x4d\x3c\x1b\x2b\x27\xa3\x9e\x6e\x77\x98\x49\x96\x65\x3f\x27\x51\x33\xfe\x57\x42\xd5\x36\xb2\xf5\xc5\x3f\xc7\xda\x7d\xcc\x5f\xe6\xb0\xbd\xd0\xe1\x79\x98\x76\x74\x64\x73\x49\x00\x06\xd1\x8f\x0b\xd0\xd0\x3a\xa0\xd5\x88\x94\x97\x71\x0e\x7b\x27\x8f\x31\xad\x08\x12\x02\x80\x02\x63\xa7\xeb\xbc\x8b\xc0\xb6\x07\x43\xd9\x72\xd5\x02\x0f\x5a\x23\x0e\x8d\x07\x51\x03\x14\xa2\x65\x26\x26\xf8\xd7\x79\x16\x2a\x22\x85\x4a\xd8\xb6\x50\x93\xf0\x9d\xc9\x75\x3a\x8c\x53\xbf\xb6\x22\x42\x73\xa2\x33\xb8\x75\x33\x89\xb8\x91\x0a\x0c\x55\x1e\xe2\x1a\x80\x95\x40\x9c\x8e\x61\xcb\xe6\xb5\x58\x73\xc1\xcc\xe8\x10\x22\x50\xc3\x12\x04\x18\xca\x2c\x3f\x89\xc7\x13\x5a\x2c\x2b\x8f\xa1\x10\xef\x88\xdc\xcf\x69\x76\x99\x7e\x2c\xc3\x92\xfa\x22\x05\xa1\xdc\xea\x0a\x30\x8a\x5d\x1b\xc3\x6c\x9e\x24\x34\x5a\x86\x02\x43\x55\x58\xaf\xe9\x80\x11\x15\x31\x81\x97\xbd\x89\x0a\x96\x42\xf4\x34\x9e\x1a\x04\x4b\x4a\x1a\xcf\x65\x02\x4f\x1a\x82\xf5\x99\xeb\x04\xd5\x59\xa8\xa4\x2d\x4b\x02\x7f\x32\x2a\x61\xac\x7c\x81\x27\x8d\xc3\x56\xbd\xa8\x0b\x2a\x73\x70\x39\x7f\x87\xaa\xf3\x2a\xca\xda\x66\xb6\x1e\x14\x36\x88\xd1\x7a\xc3\x8a\x30\xf0\xa6\x62\x78\xbc\xab\x09\x3c\x69\x18\xd6\x22\xa3\x27\x11\x43\xdb\x52\x28\xa8\x48\xc7\x65\x3c\xe6\x50\x41\x75\x96\xd3\x6f\xe3\x8c\x38\xa8\xcc\xc1\xe5\xea\x76\xf8\x41\x03\x18\x8c\xcb\x39\xb3\x0f\xaa\x32\x0c\x3a\x99\xf7\xc5\x81\x3f\xd9\x2d\xe1\xb6\xd3\x4e\xc7\x65\x8c\xed\x75\xe0\x4b\xb4\xa0\xad\xb3\xcb\xa0\x32\xc7\x33\x0a\xe8\x08\x2f\xa8\xcc\x31\x29\xe7\xdc\x77\x05\xd5\x59\xfe\x92\x2e\x3d\xbc\x77\x8b\x0b\xe7\xd1\x3f\x7f\xa1\xd4\x0a\xb6\xbe\xab\x8a\x64\xc1\x14\x86\x56\xb0\xb3\xb3\x38\xeb\xed\x6c\x3d\xb8\x41\x7f\x78\xf5\xff\x5f\xf3\xea\x5f\x70\xfa\x9d\x42\x44\xa3\x07\xfc\xcd\x63\x3f\x37\x7c\xea\x0f\x6e\xd4\x2c\xd7\xe5\x3c\xed\x2b\x04\x91\x6e\x1e\xf6\x39\x4c\x92\x41\x41\xd3\xe8\xd8\x7c\x0b\x27\xbb\xaa\xe8\xea\x06\x83\x96\x5e\x89\x8c\x0d\xd2\xa8\x9c\xd6\x06\x81\x1e\x95\x53\x06\x5f\x4e\x91\x3f\xa8\x4f\x5c\x95\x12\x41\x8a\x51\xc8\xe7\x5b\x04\x10\xd6\x48\x85\x2e\x82\xb1\xf2\xa4\xbb\xa1\x1d\x66\x69\x51\x86\x70\x88\x00\x38\xe5\x37\x86\x99\x85\xd7\xe1\x79\x42\x25\x88\xf8\xc4\x10\xf7\x12\xc0\x9a\xad\x0f\xf6\x60\x18\xa1\xce\xe0\x61\xa9\xf6\x01\x88\xf7\xb1\xf9\xb8\xf0\x59\x37\xe0\xd8\x66\x10\x9f\xac\x3a\xa2\x99\xdc\x51\x32\x98\x59\x36\xeb\x74\x77\xc1\x91\x38\xc8\x7a\xee\xb5\x2e\x1f\x17\x3c\x4a\xf5\xba\xd8\x2a\x34\x6b\x30\x56\xfd\x6b\x1b\x8d\x9b\xf7\xa3\xc3\x4a\x32\xe7\xd1\x23\xa2\x4e\x07\xc5\x65\xa5\xdb\x39\x7f\xdf\x6c\xe7\xd7\x35\x9b\x92\x8e\xa6\x43\x43\x42\x38\x41\xc8\x84\x27\x7c\x36\x29\x91\x6b\x44\x61\x18\x00\xa7\x70\x32\x9a\x1b\x5b\x7f\x86\x59\x9e\xbb\x21\xc9\xc4\x3d\x12\xdd\xcf\xc7\x85\xc7\x46\x46\x61\x80\x3c\xd8\xaf\x17\xe4\x0b\xec\xd6\x17\xac\xbe\xb8\x14\x4e\xc1\x8c\xa8\x65\x9e\xa1\xc2\xf5\x54\x8e\x91\x3e\x52\xe1\x50\x40\x22\xe7\x31\x71\xa8\x09\x3f\x18\x48\xef\x6f\x70\xfc\x68\xc4\x03\x80\xc5\x13\x82\x50\x29\x2a\xc0\x52\x1b\x82\xef\xc8\x3c\xbc\x2e\xcc\x9b\xbd\xf5\x8e\xe6\x6a\x39\xec\x5d\x15\xd2\xb6\x4b\x1e\x3d\x32\xee\x8d\x40\x0d\x30\x0f\x91\x05\x38\x0f\x4f\x59\x0b\xaf\x4d\xcd\x8c\x32\x56\x81\xae\x7b\x43\xa9\xa8\x23\x19\x71\x7d\x6f\xaf\x8a\x91\x4d\xd7\x77\x79\x76\x29\x56\x94\xfe\x21\x3f\x65\xe1\x2d\x38\x1a\xc9\x51\x63\x68\x3b\x8e\x47\xea\xba\x10\x8e\xf2\x08\x10\x1e\xb9\x63\x56\x31\x82\x90\x67\xef\x39\x98\x87\xbd\x9c\x45\x43\x87\x6e\xad\x08\xe7\x18\x26\xaa\x56\xfd\xe6\xbf\x96\xf3\x54\xfd\xb5\x6c\xa7\x9d\xd6\x4a\x37\xbc\x2b\x09\x8c\x55\xe5\x85\xae\xce\x2b\x37\xcd\x43\xb2\xb8\x30\xa6\x0f\x6f\xbb\xe9\x66\xa0\xcc\xfc\x91\xa3\x65\x7e\xc4\xed\x2f\x2a\xa2\x42\xfb\x82\x0b\x0b\xc7\x67\xa8\xbb\x3d\x82\x2a\xae\x79\x3c\xef\x0f\xed\xae\x48\x7f\xbb\xe8\xee\xde\xe2\xb5\xe3\x7e\xab\x18\xef\x22\x3c\xed\x66\x8f\x7c\x27\xcf\x1e\x6b\xaa\x98\xa7\xb3\x70\xf8\xf9\x88\xdf\x7a\x18\x6e\x24\x20\xc9\x38\x89\x34\x93\x74\x13\x8c\x53\xb1\x4c\xa2\xe2\x3f\x14\xeb\xed\x91\x6d\xf2\x5c\x26\xca\x08\xba\x44\xee\x05\xb5\x39\x88\x8a\x7b\x5b\x15\x40\x17\x2b\x39\x3d\x51\xdc\x1c\x51\x71\x72\x87\xc3\x7f\x92\xe7\x32\x12\xfa\xe6\x19\x09\x7c\x41\x5e\x99\xca\x20\x9c\xee\x72\xdf\x14\x4a\xb9\xb6\x06\x99\x2d\x59\x78\x72\xf7\xfb\x7d\x39\xbf\x0f\xec\xb2\xd6\xe2\xe3\xc4\x57\x38\xe4\xcb\x5d\x12\x16\x5a\xc6\xb3\xd5\x28\x54\x18\x7a\xdc\x95\xbe\x8d\x98\x07\x13\x02\xe7\x95\x72\xd3\x15\x1a\xee\x05\xc3\x34\x32\x9d\xf0\x4b\xb0\x59\x58\x00\x4b\x4f\x28\xc7\x01\x02\x15\xc0\x05\xd9\xbc\xbc\x2b\x46\xf5\xfc\xba\xa4\x4b\xa5\x15\xb4\xca\xc7\xb0\x22\x92\x34\x13\x19\x20\x3c\x31\xa7\x33\x86\x80\x92\x3a\x7e\x6b\xd7\xbf\x6e\x4a\x1d\xcc\x72\xb7\xa1\xd6\x18\xd8\xc8\x68\xfd\x4f\x84\xdc\x34\xd4\x42\x2c\x7e\x20\x6c\xa8\xa9\x7d\xe1\x22\x58\xfd\xb1\x8b\xe9\xeb\x23\x1e\xea\x53\x4a\x69\x09\xa7\xcd\xbc\xd7\x7d\xbe\x5c\xf5\x8d\x80\x12\x7c\xa3\x72\xca\x89\x20\x50\xf7\x8c\xa6\xb9\x9e\x1b\xa1\x14\x9e\xc2\x1d\x63\x3e\xa0\x60\xb5\x8e\xaf\xd5\x26\x15\xf6\xdc\x08\x09\xae\x0c\x40\xf1\x11\xa4\x4b\x2e\xc3\x8b\x76\x8f\xbf\xae\xdd\x35\x83\x52\xf2\x46\xd3\xc8\x09\xc0\x5b\xe6\xd7\x96\x79\x0b\x02\x05\x5f\x93\xd5\xfd\x25\x86\xd5\xf5\x10\xbc\x13\x77\x9c\x18\x07\x9c\xe3\xf7\x08\xc5\x85\x50\x29\xb3\xf1\xb2\x76\xa4\xc9\xd4\x2e\x14\x4d\xf6\x95\xf6\xb2\x61\x16\x59\xba\x2a\x58\x35\xfc\x47\x4d\xb5\xa5\x73\x46\xb2\x94\x00\x14\xfe\x3c\x7e\x24\x9b\xb0\xa9\x31\xf6\x9a\xae\x76\x88\xee\xe1\x0e\xc2\x94\x3b\xfa\x4d\x23\x11\x0c\xac\xcc\x48\x9a\xa5\x4f\xe4\x46\x55\x7b\xcf\x76\x9c\x72\x79\xa7\x2b\x9e\x72\x30\x6f\xac\x71\xe8\x98\x77\xc6\x02\xdd\x52\xf0\xe6\x81\x9a\x69\x51\xc6\xd3\xb0\xa4\x3f\x85\x70\x80\xb8\x8c\xab\x10\xf8\x32\x8e\xc2\x98\xef\x83\x9b\xbe\x3e\x77\x34\x1b\x21\xd4\xaf\x65\xa3\xe3\x01\xad\x1a\x99\x0f\xb2\x1a\x4a\xb8\xb2\x19\x81\x05\x9e\x3c\x0b\x14\xfa\x01\x1e\x8a\x31\x2d\x5f\x9a\x26\x8d\x7a\x65\xb5\xd1\x2c\x1b\x2b\x81\xeb\x9e\xc7\xa9\x11\xe1\xa5\xfd\x80\x98\x99\x8e\x15\xfb\x12\xad\x59\x04\xc7\x26\x4c\x4b\xb5\x08\x84\xe2\x66\x7b\x89\x84\x8b\x4a\x3a\x23\xb6\xaf\x25\x98\x19\x13\xbc\x52\x8d\xe6\xdb\x1f\xb9\xea\xa3\xa0\xe1\x48\xb5\x5e\xa5\xb7\x70\xf6\xe8\xe9\xaa\x0c\x08\xee\x67\x06\x59\x68\xd5\x4e\x4a\xac\x8d\x7b\x78\x2c\xe3\x92\x2f\xef\x9e\x3e\xa3\x61\x1d\xcc\x67\x43\x19\x37\xa5\xe0\xbb\xe6\x65\x82\x48\x40\x57\xdb\x40\xd5\xf4\x4b\x94\xfd\x63\x4b\x25\x62\x44\xf9\x97\x60\x58\x4d\x31\x82\xd5\xe3\x31\x71\x03\x0d\x59\x27\xae\xcf\x49\x9b\x96\x93\x4f\xac\xc5\x6d\x12\xf0\x0f\x6b\x25\x69\xf7\x1c\xe5\x25\xd0\x01\x7e\x54\x9e\x0a\x4d\x24\xba\x73\xa6\xb3\x78\xc3\x65\xe0\x3b\x2e\x20\x97\x32\x83\x0c\xcb\x5f\xb5\xfc\xf0\xec\xa5\x4b\x8f\x0a\xee\xef\x1f\xe0\xd2\x50\x74\xd6\x4d\xea\x68\xdb\x2f\x58\xe6\x4b\xac\x43\xc9\x47\x7e\x3a\xad\x6a\xa9\xb0\xc8\xd9\x0f\x67\xb3\xe4\x5a\x84\x9a\x68\xc4\x58\x5d\xdb\x68\x92\x2f\x01\x56\x35\x2c\xf1\x56\xb8\x97\x8c\x03\x0f\x83\x84\x04\x4f\xa6\xb6\x8b\xd6\x90\xc8\x80\x49\x07\x3a\x5b\xed\x49\x65\xda\xd2\x19\x69\x23\x31\xa3\x3c\x88\x44\x3c\x82\x7a\x84\xc5\x5c\x83\x4f\x63\x46\x80\x56\x2e\xd2\xf5\x8c\xc7\xb1\x36\x2a\xc1\xc5\x66\x53\x53\xb8\x0a\xd0\xd5\x9a\xbd\x83\x5f\x55\xdc\x54\x91\x78\x4f\x74\x52\x65\x31\xbd\x5a\xcb\x18\x11\x2f\xc1\xeb\x83\x05\x0e\x9b\x50\x63\x9d\x02\x70\x94\xd4\x41\x27\xa8\xeb\x92\xcc\xa7\x08\xc0\x88\xc5\xef\x05\x80\xd0\xe3\xd0\x2c\x7c\x36\xe7\x05\x3d\xe5\x82\x4e\xae\x11\x5d\x5c\x16\x18\x3c\xce\x87\xf3\x24\xcc\xd7\xd7\xd7\xd7\xfd\x86\x4f\x36\x07\xed\xaa\x5b\x7d\xf3\x42\xb1\x15\x7c\x8b\xae\xf5\x8b\x49\xb8\xd3\x0a\xb6\xbe\xaf\xba\xe9\xe7\xa7\xbf\xad\x60\xfb\x99\x3f\x02\xc0\xf6\xc3\xed\xff\xc3\xed\xff\x9f\xfb\xf6\x5f\x5c\xfd\x33\x58\x11\x3b\xa4\x22\x14\xfa\xef\x16\xe4\xdc\x67\x59\x50\x6f\x08\xb0\x36\x18\x90\xcb\x2c\xff\x1c\xe6\x8c\x95\xd9\x0a\x36\x2f\xcc\x2e\x32\x86\x8b\xe2\xd1\x88\xe6\x34\x2d\x09\x4d\x2f\x0a\x28\x74\x9e\x67\x97\x05\xcd\xd7\x50\x44\xb8\xcb\x38\x8d\xb2\x4b\x38\xb1\x40\xa1\xc2\xc9\xa3\x47\x22\xa7\xff\x8f\xb7\x3f\xbf\x29\xcb\x99\x08\x36\xc8\xa5\xa6\x99\x46\xf6\xfc\xb0\x20\xfa\x44\xa4\xeb\x78\x9c\x66\x4c\x10\x24\x71\x4a\x59\x4b\xd2\x2c\xa2\x6b\xc8\x77\x88\x83\x51\x75\xfc\x6a\x9a\xb0\x9e\x89\x85\xad\xdd\x6d\x5a\xc9\x82\x53\xf2\x1f\x6f\x3e\x6c\x1b\xe8\x26\xf9\x76\xbb\x5b\x59\x4a\x6a\x0e\xac\x86\xf7\x92\x98\xae\x49\x04\xe8\x4f\x4c\xb5\x87\xf8\x6a\x3c\x1a\x2b\x6b\xa5\x32\x80\x30\xca\xe3\x25\x7f\x92\x15\x65\x0f\x9e\x2b\x66\xf3\xb2\xc7\x10\xe6\x3d\x38\x64\xbe\xcc\x72\xe1\xcd\x10\x16\x13\x06\x47\xf6\x08\xfc\x77\x73\x43\xda\x82\xd9\x93\x6c\x18\x26\x2c\x31\xf8\xee\x9b\xa7\xdf\xb4\x77\x25\xb8\x40\x28\x5e\x42\xb2\x5f\x37\x37\xfc\x75\x28\x57\xae\x0b\xfe\x46\xab\xe0\x5e\xee\x79\x24\x44\x51\x29\xd9\x53\xf5\x2f\x55\x9e\x66\x39\x9d\x31\x19\x9a\xd2\x4b\x6b\xc8\x2c\xdd\x49\x00\x7e\x40\x7b\x19\xa1\x39\xbd\xc8\xb2\x84\x86\xe9\x02\xee\x58\xd9\xfa\x2c\x35\x18\x4d\x65\x11\xd7\x0b\x6d\xf8\xcc\xba\x8c\xe0\x11\x98\xd2\x48\xef\x32\x1b\x60\x5e\x04\x32\xf4\x9c\xd4\xfc\x06\x85\x33\x12\x93\x61\x70\x03\xa8\xb3\x09\xd1\xea\x15\x74\xf9\xcd\x87\xed\x8e\xba\x3c\xe1\x9a\x16\xa2\x3c\x1a\x08\x06\x63\xb8\xc6\xb1\x10\x19\xfd\xe1\x28\x17\xdc\x63\x1b\xc7\x9a\xcd\x68\xda\x69\xbf\x3f\xfa\x78\xdc\xee\x69\x86\xe8\x71\xd2\x00\xb8\x0a\xc5\x04\x63\xfb\xe8\x91\x39\xa8\xc6\xa6\x6f\x5e\x4e\xc8\x1e\x69\xbf\x08\x8b\x78\x48\xda\x64\x03\x9a\xf0\x62\xce\xc4\x03\x42\xb1\x41\xda\x81\xba\x2a\x54\x78\xc0\x75\x0d\x78\x2d\x04\x47\x5e\xcf\x9e\xb6\xad\xfe\xeb\x40\xa4\x6f\x68\x18\xd1\xbc\xd3\xde\x07\xb9\x1a\xff\x3b\xe4\xbb\x2d\xa8\x9f\xf7\xb0\xa6\x10\xd3\x8f\x69\x5a\x3e\x61\x1b\xed\x76\x8f\xb4\x99\xe6\x1f\x0f\x01\xc5\xe0\xd7\x42\x1e\x3b\xaa\x1b\x2b\x31\x64\x4b\xd8\x95\x87\xac\xbf\x4e\x87\x68\x53\x6d\x9f\x24\xfb\x2e\x9e\x67\xe8\xfa\x5a\xb2\xa0\xf6\x36\x5c\xcc\x93\x5a\xd6\x2b\xb8\x9b\x41\xcd\x70\xf2\x2c\xcd\x66\x39\xc9\x33\x26\xaf\x76\xb8\x65\x00\xf0\xa3\x3e\xdd\xd7\x94\x4b\xa3\x0e\x3c\xbf\xe1\xee\x57\xe2\xd1\xb5\xc2\x2f\x88\x2c\x0f\xf2\x71\x9c\x51\x9f\x35\xc0\x41\x96\xa6\x54\x3c\x92\x91\x1c\xa6\x39\xd1\xb8\x5c\x94\xb5\xcb\x88\xdf\xc7\xf4\xaa\x74\x1a\x28\x60\xd1\xdb\x20\xf1\x16\xc3\x6c\x56\x5d\x93\x3e\x08\xfc\x1d\x5f\x85\x78\x96\x38\x4f\x09\x2a\x4f\x99\x80\x07\xc2\x25\x4c\xb0\xaf\x24\x4e\x0d\x27\x88\xac\xd7\xea\x3a\x52\x9d\x8b\x94\x79\x3c\x1e\xd3\x9c\x46\x24\x4b\x09\x1b\x7d\x50\x5b\x54\xc0\x39\x46\x83\x65\x0c\x03\x2d\xf0\x71\x0d\x3a\x56\x6d\xc8\x3f\x60\xbc\xb2\x6b\x48\x93\x14\x82\x83\x16\x65\x58\xd2\xe1\x24\x4c\xc7\xfe\x03\x04\xfe\x98\x44\x12\x3e\x8c\xae\xe1\x19\x07\xdc\x08\x3f\x65\x12\xc6\x16\x79\x4c\x69\xd8\xd2\xfb\xa8\x06\x1c\xa3\x01\xe5\xad\x12\xbf\xcd\x12\x19\xe6\x65\xd6\x12\x8e\x82\x3d\x99\xf7\xd6\x4a\xdd\x58\xad\xc8\x5b\x04\x5f\x6d\xd9\x17\x5b\x46\xcd\x6c\x2f\xb8\xb0\x48\xac\x17\x02\x97\xb2\x26\xb2\xa2\xaf\xa7\xde\x31\x2f\xd5\xc1\x8b\x87\x98\xc8\xf7\x2b\x01\xec\x26\xd4\x09\x01\x31\xd3\xf0\xbc\xd2\x97\xe5\xc9\x35\xe3\x77\xfe\x92\x19\x26\x17\xe3\xea\x8a\xb9\x15\x17\x02\x3f\x35\x85\xa9\x52\x02\xe4\x01\xa7\xad\x0c\xb0\xfd\x43\xda\x2e\xc9\x28\x8c\x13\x1a\xf5\xc9\x11\xdb\xa7\x5d\xc6\x6c\xef\xc1\xa4\x63\xdd\x6c\x42\x75\x7a\xc6\x42\xd3\x53\x9d\x67\xa8\xf0\xe5\x71\x14\x90\xef\xd5\x9f\x3c\xef\x63\xab\x4f\x3e\x1b\x06\xa4\xbd\xdd\xdf\x54\x87\x87\xf2\xfc\xb1\x9d\xd2\xf2\x53\x12\x17\x25\x4d\xe3\x74\xac\xb2\xd5\xe9\xe1\x99\x61\xd0\x25\x0f\xb8\xf2\x39\xf5\x0b\x45\x69\x55\xc8\x3a\xa9\x07\xc1\x39\x2e\xc0\x5d\x97\x47\x05\xc6\x6e\x9f\xa9\xb9\xad\xe0\x3b\xf6\xcb\xd0\x9f\x5b\xc1\xd6\xb7\x6c\xe7\xbf\xf3\xb0\xf3\x7f\xd8\xf9\xff\xb9\x77\xfe\xda\xee\x1f\x5e\xc8\xde\x93\xcd\xbf\xb2\xe3\xc4\x9b\xca\xf3\x78\xcc\x4d\x70\xfb\xbf\xf2\x0d\x3a\xbf\x06\x89\x7e\xa6\x23\x73\x3d\xe0\x12\xbb\xc7\x0d\x83\xb0\x8e\xae\xd6\x3a\x0e\xc1\xa5\xc5\xe5\x84\xb5\xbe\x63\xda\x67\xfd\xc0\x0b\x93\xc7\x64\xdb\x7d\xe6\x09\x06\x7f\x4c\x89\x37\x1f\xbb\x12\xff\xf3\x4b\x41\xa4\xf7\x62\x53\x17\xa6\xe4\xf0\xc5\xfe\x3b\x31\xc6\x11\xf9\xfe\x5b\x32\xcc\xa6\xb3\xb9\x88\xd3\x7f\x7e\x4d\xa6\xd9\x45\x9c\x8e\xf9\x4d\x5b\x9c\x17\x25\x79\x4a\x86\x93\x30\x87\xa5\x80\x5f\xcc\x46\xdc\x92\x4a\x5a\xab\x4b\xe8\x84\xf2\x37\x0b\x65\xc6\x2a\xe4\xb4\x2a\x48\x67\x9f\xec\x91\xad\xcd\x1e\x79\xc1\xfe\xdf\xea\x91\x7e\xbf\xdf\x23\xff\x4b\xf6\xc8\xce\x37\x5d\xb6\xd7\x21\xc5\x8c\x0e\xe3\x51\xcc\xe7\xd1\xe1\xc7\xa3\xad\x9d\x67\x5b\xcf\x6c\x0b\xb3\xb8\xc8\x20\x5d\xf4\x63\xcd\x89\x4a\xb8\xe0\x0f\xb0\x59\x43\x58\x07\xcd\x9b\x35\x7c\xb1\x2c\x14\xa9\x48\x82\x09\x3f\x1a\x26\x7e\x63\x40\x19\x62\x3c\x8e\xac\x47\xed\xfd\x76\x9f\x91\xe5\x20\x8b\xe8\x7e\xd9\xd9\x44\x87\xd6\xac\x6f\xed\xff\x75\xb2\xb9\xfc\xe3\x8f\xc4\x81\x59\xcb\xec\x64\x36\xa3\xf9\x41\x58\xe8\x93\x6c\x94\x5d\xcc\xcf\x8b\x32\xef\x3c\xed\xca\xe7\xdf\x22\x61\xb3\xf7\xd4\xba\x30\xe3\xb9\xb3\x24\x2e\x3b\xed\x76\xd7\x7c\x19\x9f\x76\x4d\xe3\xaa\x61\x16\xb1\xce\xa5\xbe\xc6\x4b\xf5\x10\x60\x7e\xdc\x23\xfb\x4c\x1f\x84\x8f\x1f\xf6\xc8\xff\x5a\x2e\xef\x07\x03\xe2\x19\x59\x31\xb0\x06\xa4\x0a\x4a\x18\x51\xf2\x84\xec\x93\x0d\xb2\xb5\x89\xcc\x8c\x7c\xbe\x65\xa5\x37\x2f\xdb\x84\x69\xd1\xed\xff\x9a\xc5\x29\xeb\xa6\x6d\xa8\x38\x9c\x43\xc4\x46\x18\xe2\xb7\x47\x2f\x19\x63\x6f\x6d\x4a\x99\x24\x0c\xfc\x80\xf3\x3d\x1c\xf7\xed\xe6\xb3\xa7\x36\xc3\x4d\xb3\xe8\xfb\x6f\xb7\x36\xab\x18\xcd\xe4\x2f\x1d\x07\x93\x73\x93\x28\x5c\xcb\x45\x39\x9d\x86\x71\xca\x8f\x8e\x58\x9e\xbe\x7a\x14\xce\xfd\x4d\xf1\x20\x80\xb5\xd9\xf2\x76\xd7\x0a\x5b\x00\xc2\x4a\x82\x29\x83\xd7\xef\x0d\x0b\x39\x5d\x25\xa8\xda\x87\x69\xc9\x23\x22\xf4\xc8\xd6\x66\x97\xfc\xff\x19\xd5\x36\x1c\x2c\x3c\x28\x82\xb0\x3e\xf7\x3d\xf7\x56\xb8\x54\x49\x8d\xcf\x18\xa7\xe5\xcf\x90\xb8\x05\x3a\xcc\x03\x61\xef\x0f\xf7\xe9\x90\x20\x9e\x3a\x08\xf1\x29\xc7\xcb\x3f\x38\x03\x1c\x2d\xd5\x3f\x08\xc2\x10\x5a\x4f\x39\xb7\xa9\x72\xf7\xd8\xb8\x9d\x94\x29\x1c\x74\x3e\x95\x8f\x73\x2c\xa6\x62\x30\xfb\x2a\xc7\x69\x7b\x88\xb2\xa4\x16\xcd\xba\xb0\x50\x62\x0d\x1f\x8a\xb1\x9c\x3e\xc2\xb8\xcc\x41\x45\x58\xbc\x90\x0e\x2a\xd0\x43\x05\x0e\xd7\x23\x5b\xcf\x90\x08\x3b\x0f\x0b\xba\xf3\x8c\xec\x41\x19\x7d\x3a\xb4\xf3\xcc\xb0\x00\x88\x22\xca\x0f\x16\x61\x0d\xec\xf0\x42\x3d\xb2\xf5\x8d\xa9\x08\xab\x76\xbe\x38\x0f\xd3\x0e\x2f\x66\x0a\x3f\x6b\x32\x0b\x1f\x38\x68\xe2\xbe\x60\x5d\x2f\x33\x63\xf5\x62\xc3\xc7\x3d\xbe\xe5\xd7\x72\x46\xf3\xb3\x24\x30\xd7\x7d\xcf\x63\x89\xa7\x59\x29\x74\xb2\x1f\xe2\x1f\x5b\x63\x50\x48\x80\x42\x42\x32\x00\xba\x62\x12\x72\x65\x0d\xd6\xb7\xab\x61\x32\x2f\x62\x50\x70\x60\xef\x18\x9f\xc7\x49\x5c\x2a\xfd\xe6\x3c\x4c\x3f\x0f\xce\xf3\x30\x1d\x4e\x48\x41\xf3\x8b\x78\x28\x17\xc0\x90\x47\x0a\x6c\xfd\x30\x88\x7f\xec\xdb\x3c\xa4\xc2\x90\x17\x72\x15\x1a\xd1\x9c\x2d\x43\x61\x32\xce\xf2\xb8\x9c\x4c\x49\x44\x8b\x61\x1e\x9f\x73\xb1\x24\xd4\x1f\x9a\xf6\x2f\xe3\xcf\xf1\x8c\x46\x71\x08\x3a\x10\xfb\x1a\x1c\xa6\x25\xcd\xb9\xe7\xf6\x30\xf9\xf4\x22\x4c\x3f\x7f\x12\x61\x0a\x3f\xf1\x71\xfd\xff\xfd\x24\x7a\x9a\x8e\x3f\xb1\x2e\x7e\x82\xa7\x44\x9f\xa2\x78\x1c\x3b\x2f\x39\xe4\xd0\xf8\x38\xf2\x5c\xae\xa9\x72\x04\xa4\x83\xa2\x32\xf3\x2c\xb3\x0d\x78\xf5\x85\x3d\x23\xcf\x2d\xb1\x28\x46\xf4\x80\xaf\x53\xed\x7f\xbc\x6a\xef\xae\x79\x65\xa6\x90\xb1\x1d\x6b\xe5\xee\x60\x04\x1b\xa4\xbd\x09\xaa\x12\xd4\x82\xad\x5d\x18\x39\x5e\x32\x6a\x90\x3d\xd2\xe1\xea\x54\xe7\xfb\xef\xc8\x13\x5d\x45\x57\xbe\x1a\x78\xb2\xed\x3a\x99\xe4\x2e\x5e\xcc\xaa\x10\x4e\x51\xe1\x92\x53\x2b\x21\x44\x10\xad\x80\xb1\xc7\x31\xdb\x04\xc4\x69\x51\xc6\xe5\xbc\x94\xc1\x36\xe3\x88\xa6\x25\x5b\xb4\xec\xc0\xcd\x1c\xcb\x61\x1a\xc5\x39\x35\xed\x17\xcc\x27\x36\x45\x4f\xea\xb2\xea\x8d\x0d\x3c\x9a\x6a\xa1\x9a\x5a\x50\x55\x4b\xd7\xd5\x5a\x45\x16\x99\x2d\xf1\x06\xe0\x34\x77\xc0\xa6\x64\x68\xbf\x3a\x7e\xc3\xc6\x41\x3e\x6e\xc1\x14\x40\xa9\xaa\x6d\x5d\x4b\x5e\x67\x75\xf2\x5a\xbe\xa4\xe3\xc4\xe5\x2b\x08\xdb\xc6\x71\xc7\x34\x48\x8e\x3b\x7a\x27\xb8\x52\xa8\xd4\x37\xd5\x5a\xe4\x39\xf7\x90\xe7\x1d\xfc\x35\x1d\xaf\x49\x29\x9d\x87\xc8\x19\x50\xad\x9e\x10\x63\xa7\x42\x31\x67\x2b\xac\xfc\x69\x8f\x42\x4b\x8f\xca\x15\x15\xa0\xe9\x95\x8f\x07\x71\x9f\x75\x54\x6f\x6f\xaf\x7a\x24\xf3\x1c\xda\x40\xdf\xf0\x61\x8d\xdb\x4b\x8b\x13\x06\xff\xf7\x8f\x57\xa7\x9b\x4f\xbe\x3f\xfb\xb2\xbd\xe8\xbc\x3a\x7e\xc3\x7e\xef\x3f\xf9\xdf\xb3\x2f\x5b\x3b\x8b\x1b\xf5\xb1\xb3\xd9\xdb\xd9\x5a\x74\xff\x67\xd0\x2f\xe1\x0c\x54\x2d\xe0\xc6\xb3\xbc\x2a\xc1\x80\xc0\xf9\xeb\xbc\xad\x15\x09\x26\x5e\x60\xc2\xe6\xdf\x4b\xb6\x97\x7a\x0a\xde\x0f\xdd\x5e\xba\x33\xc9\x22\x9c\xee\x14\x7e\xdb\xb3\xf3\x94\xdc\xdc\x54\xe5\x7d\x73\xcb\x6e\x8f\x48\x9c\x56\x74\xdc\x90\x3e\xf7\xd3\x75\xaf\x18\x69\xd4\xf9\xed\xcd\x46\x46\x9b\x5c\xa5\x64\x3d\x2d\xe6\x53\x06\x78\x52\x88\xed\xc3\x34\x8b\x9e\x7c\xff\xed\x93\xad\x4d\x95\x0d\x7b\x5c\x68\xdd\x30\x4b\x48\xe7\xf0\xe3\xd1\xe0\xf0\xd5\x01\x61\xfb\x86\x60\x7b\x73\x73\xa7\x6b\xcb\x64\x84\xd6\xdd\x85\xa2\x5c\xa7\xe3\x32\xaf\x61\xb7\xc5\x9e\x70\xbb\x47\xb6\x9b\x99\xaa\x62\xa1\x6a\x2c\x29\x84\x8e\xfb\xe4\x1f\x1f\x5e\xfd\xe4\x78\xad\x54\x05\xfc\xbd\xa9\xc4\xe8\x0e\x2a\x82\x5c\xd6\x3d\xcd\x00\x1d\x70\x69\xe8\x74\xf9\xdb\x1e\x79\xda\x25\x01\x69\xb7\x1b\xf5\x7b\x98\xc4\xf0\x8e\x4c\x35\x10\xce\x9e\xe2\xd4\xee\x1f\xa3\xc2\x4f\xfb\x7f\x3f\x7a\xfd\xcf\xa3\x0f\x7f\xb3\x47\x15\x70\x54\x8c\xa9\x8d\xdf\x3b\xb8\x1c\xe8\xce\x7d\xdf\xda\x5a\xbd\xe7\x62\x36\xf9\xf7\x25\xee\xc6\xc3\xed\x9a\x83\xc0\xe9\x5e\xe8\xd9\x87\xe0\x6b\x27\xd1\x39\x9f\xb7\x3b\x63\xd3\xe1\x76\xf8\x29\xda\xc4\x56\x6e\x65\xe4\xfe\x43\xed\x52\x8c\x1d\x2a\xdf\xa3\x98\xfb\x99\xad\x67\xdd\x1e\xd9\xde\xf4\xee\x69\x25\x75\xad\x3e\xca\xb2\xcd\xe6\x67\x85\x07\xb4\x43\xc8\xe2\x47\xfa\xf8\x58\xb1\x15\x98\x9f\x8b\xb3\xde\xce\xd3\x87\x43\xfc\x87\x43\xfc\x3f\xf7\x21\xbe\x3c\xc1\x9f\x0d\xeb\xad\xf7\xee\x60\x6f\xd7\x9a\x17\x14\x74\xf5\x61\xd9\x12\x47\xf7\xf7\xe2\xae\x87\xa3\x3a\x9c\x0d\xbd\x76\x60\xb3\xb0\x9c\xf4\x48\x4a\x0d\xdb\xef\x4f\x70\x70\xe1\x3c\x3b\x95\x17\xd5\xf2\xc1\x05\xf6\x59\x20\xac\x75\xc0\xc2\x87\xfd\xb7\x8b\x5e\x6a\x0d\xd5\xdd\x2e\x08\xc4\x52\x26\x74\xbe\x30\xc8\x40\x97\x55\x2e\x4f\xad\x62\xfd\x2c\xed\xb4\xa1\x47\x6d\xfd\xb6\xb5\x43\xbb\x86\xe5\x74\x91\x31\x01\xc6\x5f\x11\x1e\xbe\x3f\x20\xfa\x46\x99\xbf\x2d\x6c\xf7\x08\x0e\x1f\xf7\x89\x8b\x40\x71\xd5\xdd\xb1\x9d\xae\x7a\x5b\x90\x46\xb8\x7e\x54\x7d\x0d\xb2\x35\x71\x12\xfd\xf3\xe1\xc7\xe3\x57\xef\x60\xf2\x1c\x1c\xbd\x7b\xf7\xea\xe0\xf8\xf0\xe8\x1d\xf9\xf0\xea\xe3\xfb\xa3\x77\x1f\x5f\x7d\xac\xac\x34\x0a\xcb\x10\xd7\x8a\x9d\xe2\x03\xea\xc7\xc2\x7e\x70\x1a\x5e\x0d\xb3\xe9\x2c\xa1\x57\x71\x79\x1d\x90\x67\xc0\x54\x56\x03\xe1\x14\x54\x19\x20\xa8\x90\x60\xb0\xd2\x74\x3d\x2e\xf5\x85\xb1\xc1\x97\x35\xe3\xe8\x1b\xb6\x7c\x91\x6d\x34\x21\x9a\x33\x80\x15\x1d\x44\x4b\x44\x2e\x27\xf1\x70\x42\xa6\x61\x39\x9c\x08\xc5\x95\xaf\x3f\x4c\x96\x45\x46\x39\x4f\xbc\x6b\xa8\xda\x8d\xea\xa4\x1c\x81\x3a\xad\x05\xd3\x03\x17\x5c\xa0\xff\xe4\xe7\xe1\x53\x78\x14\x17\x47\x67\x6e\x20\x5c\x55\x98\xf5\x55\x80\xed\x3a\x50\x0b\x2b\xf6\x91\xf7\xb6\x40\xa1\x11\x6d\xb7\x11\x2d\x1c\x2a\x8e\xe2\x9c\x1a\xae\x00\x6c\x72\x55\xf5\x87\x75\xc5\x53\x7b\x0d\x78\x87\x8d\xa3\x65\x59\x82\xff\x22\x9a\xd0\x92\xd6\x61\xb0\x3b\x63\xd3\x06\x3f\xbf\xfe\x85\x2d\x58\xc0\x88\x82\x21\x38\x3e\x38\xd6\xe1\x46\x52\x29\xf7\x92\x43\x32\xee\xd1\x3b\x2e\xfb\x6b\x6b\x52\x0d\x34\x59\x78\xcd\x3e\xf0\x80\xa7\x98\x4c\xed\xd3\xe2\x0e\x69\x46\x66\xe1\xba\x38\x28\x58\x02\xf6\x2c\x4d\x8d\x7b\x6a\x14\x7e\xa0\xe5\xf4\x7e\xf9\xea\xc9\xc1\x9b\x93\x77\x7f\x7b\xf5\x41\xe1\x88\xe8\x70\x32\x4f\x3f\xd3\x48\x3c\x25\xe1\xcf\x44\xc5\x5f\x3f\xa7\xb3\x24\x1c\xd2\xce\xe0\x5f\x8b\xd3\x7f\xa5\xff\xca\xcf\x9e\xff\xeb\xcb\x60\xdc\x6b\x2f\x6e\x9e\x3c\xb9\xf9\xd2\xee\x82\xf7\xea\x2f\x5e\xf8\x7f\x9d\xc9\x12\xa7\xa2\xcc\x19\x2b\x74\x2a\x4b\x9d\x9d\xfa\xcb\xd9\xa5\x8c\x42\x15\x65\x74\x5d\xa8\x26\x55\x11\x2a\x23\x2e\xf7\x58\x76\x5b\x0a\x51\x83\x02\xee\x7c\x05\xa2\x23\xd9\x32\x18\xc0\xcd\x27\x15\x3e\x30\xc0\xbd\x06\x20\x58\x73\xd8\x9e\xe5\x1d\xb0\x2c\x73\xd6\x0a\x67\x33\x16\x0c\xd9\x10\xa1\x9b\x0c\x05\x5d\xdd\x54\x5b\x52\xcc\xf5\x64\xe0\x33\x00\x13\xa1\x34\xd0\x1d\x21\x98\xd0\x70\x0b\x9a\x35\x77\xe2\xe9\xc6\xec\xd9\x8d\x11\x5d\xe7\x01\xa4\xa5\xf5\x16\xf8\xbb\x4b\x87\x34\x81\x98\x0d\xf2\xe5\xa6\x51\x66\x98\xd0\x30\x97\x76\x5b\x56\x2d\x22\xd9\x9a\xcc\x7e\x20\x70\xd0\x50\x4a\x44\xbe\xe5\xcd\x2c\x6f\x2f\x73\xf8\xaf\xd6\x98\x52\xd0\x0c\xc3\x2f\x7a\x64\x6b\x73\x73\x93\x3c\xe6\x57\x32\x9e\x1b\x56\xaf\xb7\x07\x78\xac\x07\xd4\x91\xf4\x62\xd2\xa3\xa0\x82\x5f\x78\x90\x32\xf1\x98\x6f\x75\x52\xb9\x23\x66\xb1\x48\x3c\xea\x28\x73\x4a\xa7\xc1\x5c\x3c\xf4\x67\xf3\x62\x62\x9a\x09\xda\x0e\xdd\x31\xb8\xf0\xf8\xc3\xe4\xe3\x4f\x62\xf9\x0c\xa3\x08\x1c\xdb\x28\xe3\xce\xcc\x90\x97\x5a\x09\xe3\x87\xc2\xbd\x35\xbe\xd8\xca\xfd\x80\xd8\x61\xc7\x3c\x22\x82\x90\x78\xb0\x12\xcb\xbb\x20\x95\x7a\x18\xf1\x52\x61\x9e\xc7\x17\x14\x0b\xdb\x30\x52\xa3\x27\xeb\xab\x91\xae\x1e\x68\x23\x20\x82\xdf\x90\x14\xe9\x13\xf2\x89\x7a\x1c\x91\x9b\x1b\xf9\x75\xba\x79\xa6\x96\x4b\xb8\xb8\xe6\x6d\xd3\xd0\x22\xc1\x2c\xc1\x13\xb1\x32\xe7\x5d\xb8\xc8\x9e\x6a\x4d\x9d\xa2\xcb\x40\xfb\xaa\x62\x89\x5b\xae\x68\x72\x1e\xe1\x99\x4a\x2e\x27\x54\x3a\x1b\x88\xb8\x36\x0e\x9b\x2e\x38\x67\x67\x6b\x7b\x84\xc8\x2c\x98\xb8\x86\xb4\xae\x51\xa7\xda\xd1\x8f\xb2\xbc\xc3\xe8\xf2\x99\x5e\xf3\x0d\xa2\xaf\x03\xa6\xe7\x97\x8e\x1f\xc8\x0e\x70\xf4\x99\x5e\x77\x2d\x29\x50\x41\x9e\xcf\xf4\xfa\xac\xda\xa0\xb3\x9d\xa5\xe4\xf0\xfd\x41\xbb\x6b\x47\x89\xe4\x7a\x45\x0d\x4e\xc7\xb8\x42\x4f\x93\x03\xec\x78\x50\x78\xb4\x27\x68\xa7\x11\x17\xa4\x28\x63\x1e\xef\x26\x8e\x10\x53\x63\x5b\xd0\x4a\x82\xfb\x8d\x37\x3b\xd5\x9b\x24\xa9\x07\xb0\xd5\x23\xa7\xa2\x1d\x3d\xce\x05\x66\xab\xc6\x59\x4a\xc5\x79\x53\x67\xfd\x93\xad\xf2\x5f\xe6\x71\x09\x4e\x52\x2c\x69\x84\x40\xac\xdd\xd3\x27\x77\xfb\x24\xfd\x0a\xae\x57\x61\x17\xe7\x46\xde\xae\xd7\x3d\x1b\x58\xc3\xfc\x63\xe1\xa5\x1f\xd1\x7b\x15\x62\x2c\xb2\xbb\x86\xe4\x5e\x81\x44\x92\x4c\xcb\xa9\x44\x3c\xdb\xa7\xa5\xdb\x4c\xd9\xca\x08\xbd\xf5\xf5\xf5\xaa\xc6\xcc\xf9\x76\x6a\x83\xe2\x6a\xac\x35\x98\x5d\x69\xbe\x8e\xa2\x75\xd1\x32\xae\xe3\x73\xc6\xde\x8f\x38\x3e\x77\xfe\x99\xcd\xc1\x94\x5a\x3f\x29\x6b\xb5\x37\x6c\xf1\xba\xd1\x6e\x91\x02\x5b\x5f\xf7\xb1\x31\xb6\x96\x7b\xf0\x2c\x2b\x2b\x49\x31\x9f\xcd\xb2\xbc\x84\x23\x34\x7e\x1f\xfb\xfe\x80\xa8\xc3\x93\xb6\xe1\xed\xb1\x9a\x11\x1b\x3f\x47\xb8\xcd\xe4\x5b\xce\x55\x2b\x71\x94\x77\x0b\x0f\x3c\x54\x6b\x26\x8f\xbc\xe6\xda\xab\x67\xa5\x4b\x1b\xf7\xb8\x56\x53\xd0\xf1\xc4\x5e\xf1\x14\x7b\x71\xd6\xdb\xf9\xe6\xe1\xe4\xf6\xe1\xe4\xf6\xbf\xe2\xe4\x56\xbc\x9e\xb8\xd3\x9b\xeb\xfd\x30\xcf\x52\xf2\xb7\xf9\x34\xbc\x88\x0b\xf2\x43\xc8\x3e\xff\xf2\x99\x7f\xf6\xa7\xd4\x7b\xaa\x3b\x18\x90\xc3\x34\x2e\xe3\x30\x89\xff\x4d\xc9\x5f\x79\x2b\x18\xa3\x86\xa4\x00\x7b\x2b\x69\x56\x03\x1d\x65\x53\xd5\xf0\x64\xde\x87\xc3\x5b\x59\x4c\x06\xa6\x11\x31\xcd\x0e\xa3\x80\x6c\x2e\xbb\x5f\xe3\x36\x1d\xac\xfb\xb6\xef\x5c\xaf\x31\x89\xd7\x67\xae\x7e\x6a\x26\xc3\xa7\x8d\x24\x41\xa1\x26\x6d\xb6\xe3\xf1\xb4\xcb\x9f\xa0\xf4\xd0\xb1\xce\x48\xa2\x91\x59\xd2\xc1\xae\xd7\xd7\x10\xea\x01\xab\xcf\x69\xfd\x60\x4d\x90\xa7\xc2\xdf\x2e\xaf\xab\x27\x2a\x33\x3c\xa3\xf2\xac\x6e\xd5\x29\xb2\xac\xd2\x31\xd9\x51\xc6\xb9\xeb\x6d\x14\xc8\x2c\x8c\x2e\xd8\x9e\x54\x8e\x0e\x39\x7c\x09\x39\xb2\x75\x6a\xd0\x36\x36\xaa\x9c\x09\xf9\x9f\xf8\xf0\x07\x41\x0e\x1a\x9d\x2d\xdf\x00\x89\x9e\xaa\x74\xf9\xf8\x87\xff\xcf\x36\x48\xf2\x19\x50\x73\xf3\x0a\x49\x03\xb5\x59\x94\x66\x42\x7e\x83\x1c\x75\x30\xb7\x2c\x98\x9e\xe7\xf9\xb5\x55\x81\xdf\x08\x43\x92\xc1\xaa\xcf\x18\x71\x89\xca\xba\xf3\xe4\x8e\x7b\xd0\xf9\xb2\x00\x7a\xae\xea\xee\xd3\x0b\x9a\x5f\x77\xa4\xcb\xe3\x8f\x71\x3a\x4e\xe8\x5b\x4e\xf0\x2e\x09\x88\x37\x43\x63\x12\xc3\xaa\x1a\xe2\x07\x17\x03\xd8\xb5\xc2\xfb\xae\xaf\x4b\xbe\x41\x76\x42\x32\x8d\x73\xa4\x61\x41\x24\x32\xe4\xf8\xec\xed\xed\x71\xae\xc1\x40\xc2\xb7\x82\x84\x65\x7b\x6c\x06\xc6\x6f\x6f\xdb\x3e\x74\x42\x67\xb5\x1c\x47\x0e\x06\x3c\xda\xa3\x4a\x12\xae\xd7\xb1\x70\x91\xf3\xb1\x91\xd3\x78\x2e\x88\xce\xe1\xd1\xd9\x12\x71\xf4\x82\x01\x55\xfb\xf1\x16\x0d\xb7\xe4\x0b\xc7\x55\x70\xa1\x2a\x50\x49\x05\x27\xea\xc2\x61\x91\x98\x14\x1d\x29\x7b\xba\x64\x14\xd3\x24\xb2\x0c\x0c\x44\x2d\x46\x4b\x2d\x99\x83\x1b\x68\x09\x1e\xde\x34\x8b\x0d\x65\xb2\x15\xda\x41\xb2\x85\xeb\xed\xca\x11\x6f\x12\xb6\x2f\x45\x9b\xfc\x16\x22\xce\x3c\x73\x77\x74\x45\x81\x4f\xe8\x89\x4c\x0d\x7c\xf6\xa0\x06\x3e\xa8\x81\x7f\x6e\x35\x50\xbf\xc2\xe3\x93\xe6\xbe\xde\xe1\xdd\xcf\x15\x3d\x03\x79\x2b\x8f\x17\x2b\x4d\x92\x61\x9f\x28\xc2\xb1\x48\x5b\x63\xf6\x89\x76\x91\xc2\xaf\x9a\xcc\x65\x9f\xc6\xfd\x3c\xc8\x3c\x9d\xaf\x35\x83\x4d\x04\x06\x8e\xf7\x71\x9c\x4b\x6d\xee\x8c\x33\x50\x09\xee\xce\xd9\x57\xc4\xca\x31\x0e\x59\xe1\xc4\xe0\x6d\x98\x86\x63\xaa\x9f\xe0\x33\x91\xc5\x49\x61\x1c\x05\x48\x3f\x1d\x1a\x1c\xad\xf7\x53\x83\x42\x0e\xe2\x7c\xba\xc4\xca\x3d\xa2\x4c\xc2\xc4\xa9\xe9\xc4\xd3\x52\xff\xce\xc3\x82\x3b\x56\xa8\x0a\x37\x31\xa6\xe0\x8a\xd2\xb3\x48\x99\xee\xe4\x6d\xef\xa1\xb2\x4e\xb3\x3e\x60\x31\x87\x10\xa2\x8e\xca\x80\x12\x86\xcf\x50\x14\x23\x47\x31\x87\xb2\xd6\x93\x0e\x0b\x0b\xa6\xd8\xa8\x94\x65\xbe\x8c\xb9\xc7\x4d\x7d\x29\x21\xe2\x6f\x88\x65\x57\xf5\xb3\x4f\xde\x32\x51\x1e\xd3\x42\xc4\x25\x07\x7a\x38\xae\x26\x0d\xf7\x9d\x8d\xe9\x26\x3b\x75\xf3\x6e\x9e\x24\xda\xfb\x45\x8f\x69\x91\xf4\x2a\x86\x6b\x32\x1f\xed\xfe\x98\x41\x86\xfe\xf8\xb1\x75\x1c\x42\x36\x8a\xa8\x63\x07\x31\x51\xe1\x62\xcc\x7d\x18\x59\x12\x22\xe6\xc3\xfb\x03\x11\x45\xa2\x3e\x3e\x8c\xa6\x9a\x70\xe7\xca\xf9\x0e\x68\xae\x36\x9c\xf6\xab\x22\x80\x3c\x64\x80\x2e\x91\x0c\x96\x53\x49\x1e\x6a\x20\x2c\xb5\xc4\x58\xf7\xc8\xd6\x0a\xfe\xf1\x19\x7b\x7a\x4a\x5b\x1a\xa4\xf2\xab\xd8\x23\x10\x75\xbd\x2e\x4a\x14\x79\xae\x7f\x73\xde\x86\x22\x67\x4c\x18\xa0\xcf\x25\xce\xf3\x1d\xa2\x73\x69\xaf\xc2\x21\xd7\x13\x9e\xfb\xd8\xad\xdf\x29\x9a\x1e\x87\x2b\x68\xef\x09\x83\x62\x46\x5f\xc6\x24\xb4\x97\x2a\xf0\x27\x03\x9b\x9e\xe7\x5e\x00\x85\xca\x1b\x7e\x44\xd0\xc2\x17\x95\x48\xbe\x91\x92\x6c\xb8\x42\x70\xa2\x50\x4e\xdb\x46\x44\x68\x16\x66\x08\x7b\x5c\x15\xab\x88\xed\x08\x79\x65\xff\xca\x42\x9b\x00\x60\x34\x0d\x30\x20\xe4\x19\x31\x84\xd4\x26\xc5\x7f\x06\x22\x0f\x33\xe0\x5c\xa9\xe2\x28\xa3\xce\x73\x32\x3e\xe0\x70\x48\x25\xbd\xe0\x72\x7a\x9a\xba\xd6\xf9\xaf\x98\x5c\x2c\x43\x76\xed\x7c\x1e\x27\x11\x10\x4c\x74\x8a\x65\x3a\x2e\x6c\x41\xdc\x1f\x1f\xbd\x3c\x5a\x5f\x5f\x07\xe5\xbe\x5d\x90\xf9\x38\xb9\xee\x8b\x40\x61\x6c\x3b\x30\x2f\xd8\x8a\x58\xaa\x5a\x52\xe4\x35\x96\xfd\x96\x56\x34\xea\x7e\x84\x09\x0e\xc8\x50\x6f\xaa\xb7\x8c\x60\x4e\xe7\xbf\x9e\xb2\xec\xd3\xcd\xb3\x33\xa6\x74\xe1\xcf\x9b\x1b\x65\x9c\x69\x83\xf2\x1f\x5b\x50\x86\xf5\x65\xd7\x7f\x51\x64\x61\x47\x90\x7e\xea\x2a\x3a\x55\x5d\x99\xaa\x1b\x74\x6d\x58\xca\x83\x9c\xa4\xfe\x97\x57\xc4\xf1\xe4\x2d\x94\x77\xbd\x15\x5e\xc5\xd3\x33\xb1\x62\x54\xf8\x82\x11\x18\x1b\x75\xa8\xcb\x54\x27\xf5\xad\x94\xbe\x9c\x31\xa2\xad\x28\x3b\x3a\x8f\x0d\x9e\x5d\x31\x87\x17\xf5\x60\x59\xa6\xac\x1f\x2d\x6b\x19\x6f\xc0\x14\xb3\xb9\x06\x9a\xea\x2e\xd8\x77\x50\x82\x53\x58\x56\x53\x5f\xce\x32\x90\x15\x4d\x97\x3b\x6c\x94\x02\x72\x9e\x53\xb8\x0e\xfd\xf0\xfe\x40\xf9\x58\xe2\x76\x2b\xc3\x30\x55\x9a\x66\x9c\x8a\x13\x17\xbf\x37\xa7\xdc\xf5\xe6\xf8\xff\xb1\xf7\xae\xeb\x6d\xe3\xca\xa2\xe0\xef\xe4\x29\xd0\x39\xb3\xda\x52\x47\x96\x75\xb3\xec\x28\x71\xef\x9d\x38\x71\xc7\x2b\x49\x27\x13\xa7\x2f\x73\xfc\xb9\xf3\x51\x22\x64\x31\x91\x48\x6d\x92\xb2\xe5\xee\xf8\xbc\xcf\x3c\xc7\xbc\xd8\x7c\x28\xdc\x6f\x24\x25\xdb\xb9\x2d\x7b\xed\x9d\x16\xc9\x02\x50\x05\x14\x0a\x85\x42\xa1\xaa\xd9\x6c\x5e\xaa\x19\xdc\xcc\x68\x79\xd2\x8c\xc9\x8b\x3a\x04\x69\x59\xd4\x7a\x6f\x40\xf9\x55\x98\x90\xf3\x80\x1e\x75\x5e\x1d\x35\x5f\x47\xb3\x92\x1e\xab\xce\x2b\xee\xf0\x52\xf5\xec\x6f\xe7\xd6\xe8\x73\x6b\xf4\xf9\xbe\x8d\x3e\xcc\xe2\x13\x0e\xaf\x70\xec\xe7\x32\xfa\x08\x53\x8d\x6a\xf5\xa1\xc2\x49\x98\x73\x9e\x3e\xd1\xe4\x08\x21\x43\x8f\xea\x61\x99\x29\x80\x52\xe3\xf5\x43\x4f\x2a\xb0\xbb\x52\x55\xca\x6a\x0e\xc7\x7d\x76\xb2\x65\xe9\x55\x86\x06\x54\x23\x95\x2a\x8b\x0a\x03\xb2\xcc\x2d\x35\x17\x6e\x86\x9d\x59\x2e\xf0\xfe\x6c\x44\x90\x4e\x9f\xdd\x4d\x8b\xf1\x39\xeb\xc8\x9a\xc4\x92\xa8\x1b\x03\xb4\x21\xe0\x8c\x24\x19\x03\xb4\x11\x0e\xdf\xbb\xbe\x72\x05\xb1\x2b\x70\x12\x8d\x9e\xe2\x6a\x8d\x0a\x38\x67\xa3\xae\xaf\xbc\xd1\x8e\xdd\xe8\x7c\x91\x3f\xc7\xcb\x72\x32\x9f\xe3\xa5\x8f\x46\xfd\x53\x31\x81\xe5\x6d\x51\x20\x1f\x69\xee\xb6\x0c\xba\xd8\x3a\x74\x2c\xe1\xf8\x40\x34\x64\x27\x37\x18\xe9\x0d\x86\x16\x00\x9f\x78\x16\xad\xa7\x4f\xe4\x82\x45\x79\xe7\xde\xa0\x0b\xab\xd3\xee\xed\xea\x74\xbb\x3a\x7d\xdf\xab\x93\x3c\x92\xc0\xf9\x64\xad\xf3\x08\x06\x7c\xbd\x97\x0e\x3d\xa9\xfd\x5d\xb9\xfd\x5d\x87\x1f\xee\xf3\x8f\x92\x15\x93\x80\x70\xb7\x63\x03\x68\xce\x5e\x73\xb0\x91\xaf\xbd\x51\x12\x8f\xa3\x53\x0e\xa6\xe4\xb9\x51\xa1\x79\xda\x14\x0e\x76\xce\xae\xa6\x69\x07\x33\xec\x25\x87\x39\xa0\x79\xbe\x8d\xce\x80\x97\x1c\xe4\x30\x3b\xba\x88\x47\x74\x89\x51\xa1\x32\xfa\x96\x83\x11\x51\x9c\x62\x13\x88\xbd\x15\x75\xd1\xf0\x43\x2a\x44\x34\x0c\x62\xfe\x99\xc6\x34\xb4\xf0\xe1\xaf\x85\xfe\x01\x11\xd1\xaa\x9c\x15\x08\x5b\x37\xbb\x07\x08\xe6\xbf\xd6\x49\x1d\xfd\xf8\x23\x62\xbf\x9b\x60\x0d\x7c\x3d\xae\x6d\xb4\x96\x1b\x34\x30\x49\xab\x8e\xfe\x0b\xdd\xc3\xf9\x84\xac\x1e\x90\x75\xf4\xc9\xc5\xf3\x20\x9b\xdc\x43\x03\xf3\x35\x35\xe5\xde\x93\x5a\x82\x92\xdc\xe9\x20\x4d\x66\x4f\x3e\x03\xa6\x1b\x0c\x25\x25\x67\xd0\x93\x0b\x68\x98\x20\xfd\x38\x0e\x0f\x49\x39\x91\xaa\xcb\x09\x49\xe9\x10\xb0\x92\x9e\x45\x3c\x9a\xe2\xcf\x44\xc0\x6f\xa4\xad\x12\xd4\x55\x18\x2f\xd2\x7c\x7c\x14\x3a\xf7\x93\x45\x5c\xe9\x78\xe9\x1a\xe8\x70\xb6\x4d\x59\x48\x25\xc5\x03\x46\xa9\xb2\x86\xe0\x33\xe2\xff\x9b\x68\x50\x19\x0c\x6b\x10\x54\x00\x0d\x67\x81\xde\x41\x3e\xfb\xd6\xf7\x06\x90\xdd\xd7\xbf\x37\xa0\x56\x0f\x2a\xc5\x23\xec\xc4\x68\xae\x22\x33\x2f\xc1\x63\xbe\x06\x0a\xca\xd9\x36\x95\xae\x34\xbc\x05\x52\xc3\x6f\x1f\x3e\x79\xfc\xab\x91\x69\x8c\xc9\x54\x6a\x90\xa1\x97\x64\x99\x59\xe6\xf2\xee\x5d\x8a\x5d\x93\x7a\x44\x89\x3b\x33\x07\xf9\x4c\x1a\x82\x1a\x68\x43\xcd\xcb\xbc\xd1\x60\x64\x9e\xe2\x7c\xe0\x31\x77\xf2\x48\xa4\x4d\xb5\x20\xa3\xa4\xc1\x4c\x74\x5a\xe1\xb3\x60\xaa\xa5\x10\x6b\x1a\x59\xb1\xcf\x82\xa9\x15\x6a\x44\xbc\xbb\xbc\x0b\xdd\xb3\x12\x29\x2c\x8a\xdf\x3a\xc4\xb0\xa2\xeb\x90\xc3\x8a\x56\x24\xa8\xca\x5e\x94\x48\x97\x60\x0a\x1e\x9b\xa5\x3b\x27\x06\x68\xef\x9e\xb8\x98\xb2\xbe\x8b\x2d\x94\xe2\xc5\xa9\x1d\xde\x0d\xd0\xb1\x54\xa8\xe8\xc1\x1e\x0b\x92\x79\x20\xcf\xf1\x4c\x08\x35\xad\x39\x95\x27\x02\x58\xc9\x0b\x69\x9c\x60\x0d\xd4\x6a\xe8\x37\x11\x91\x46\x00\x79\xb6\xcd\x49\x1a\x9c\xe2\xc7\x79\x95\x9d\x33\x03\xf5\xf6\x91\x0b\x42\x6c\x6a\x0b\x7a\x89\xce\x3b\x2a\xb1\xf3\x04\x76\x96\xab\x74\x8b\x93\x30\x16\xba\xb1\x84\x26\x02\xe5\x25\xc7\xf8\xf8\xf9\xc7\xdb\x49\x18\x9f\xf5\x65\xfc\x4c\xc5\x91\x41\x9a\x50\x19\xaf\x46\x96\x0b\xdb\x86\x35\xc5\xa5\xdf\x2b\x99\xbc\xe8\x72\x35\xfe\x25\x4d\x14\xf3\x2e\xac\xbf\xe5\x3d\x01\x60\x56\x4f\x08\x8d\xee\x26\x7a\x42\x61\xe5\x2b\x10\xdd\xb8\xeb\xe1\xec\xd9\x3c\x9a\xd2\xcd\x5b\x29\x7b\x33\xd0\x02\x1e\xb7\x21\x78\x3f\xb4\xfc\xfc\x67\xea\x6b\x15\xf9\xd1\x2c\x66\xa1\x55\xa4\xb2\xda\x08\xb6\xaf\x38\x50\x45\x63\xc3\x87\xf0\x29\x1e\x45\xb3\x60\xea\xef\x0a\xa9\x05\x56\xec\x04\x59\xc0\xc3\x94\x5f\x2f\xc1\xba\xf2\x54\x42\xac\x3f\x11\xb2\x67\x0b\x06\xfa\x75\x21\xd1\xe5\x33\x48\xa9\xb0\x58\x78\xbc\x73\xec\x50\x57\xa2\x49\x94\xb2\x88\xf3\x6d\x7e\xbf\x26\x49\xb3\x4e\x3f\xbd\xc5\x23\x1c\xcd\x2b\xb0\xb9\x5d\xa6\x0a\x03\xd8\xa0\x57\xe5\x00\x56\x63\x65\x02\x2b\xce\xe2\x52\x29\xe6\x20\xce\x04\xac\xc2\x01\x54\x2d\xba\x26\x05\xb1\x74\x7a\x93\x0d\xd2\xdb\xe0\xbc\xfa\x14\xb7\x0b\xb8\x3b\xa2\x10\xae\x8a\x64\x23\xfd\xe0\xd0\x85\xec\xbc\xd1\x65\xd8\x56\x42\x75\x7d\x3c\xcd\x91\x72\xcd\x31\x17\x1d\xd1\x69\xbc\x02\x1d\x3a\xb4\x87\x0e\x2f\xd0\x0d\xd3\x51\x01\x79\x3f\xc6\xd7\xae\x6b\x7b\x18\x87\xb9\x75\x15\x21\x0a\x59\xfd\x9d\x88\x1a\x5f\xd6\x41\x94\xac\x05\xd7\xb6\x23\xd0\xd3\x9f\x17\xd1\xa4\x40\xba\x49\x73\x03\xac\xc3\x31\x1a\x85\x57\x92\x4a\x23\xaa\x9f\xf2\xa4\xe5\x65\xc3\x46\xa1\x9b\x3c\x93\xb9\x67\x08\xf5\x3a\x5d\xb4\x7a\x11\x79\xf9\xf2\x65\x45\x1c\xa6\x5e\x0e\x12\x35\xad\xd4\xf2\x11\x4e\xe7\xb8\x74\x79\x12\x3d\x40\xa1\x8b\x3b\xc0\x82\x29\xc0\x22\x5b\x0c\x67\x51\xfe\x47\x92\x96\x69\x49\x12\xd0\x33\xd3\x5d\xdf\x8b\x8f\xbe\x2b\xb4\xca\xa0\xbc\x4b\xb1\xa7\x3d\xf7\x16\xe7\xd9\x59\x79\x47\x73\x30\xbb\xc5\x71\x3e\x7b\xef\xf8\x5a\xe0\x49\xc0\xa1\x69\x86\xda\x8a\x0d\x53\xe0\xe2\xe6\x2d\x98\x82\x01\x86\xb3\xfc\x20\xac\xb0\xab\x04\x30\x6f\xc3\xe6\xd7\x6b\xdb\xbb\x78\x36\xc3\x71\x86\xe3\x6c\x91\xbd\x8b\x66\x95\xec\x3d\x0a\xb8\x97\x04\x1f\x54\x15\x7d\xb4\x5c\xa2\xd1\x40\x46\xcf\xe6\xc9\x68\x52\x36\x99\x15\x50\x37\xb2\x1e\x08\xc1\xde\x57\xdc\xef\x41\xbd\x47\x79\x90\x57\xe0\x0a\x09\xeb\xe7\x49\x17\xc8\xe7\xd8\xdb\x5a\x9b\x04\x89\x89\x67\x73\x60\x39\xc2\x48\x13\x70\x43\x7d\x27\x4c\x9e\xda\xdb\xfd\x24\xd4\xc1\x00\x61\xed\x0d\x58\x01\x8c\x42\xcc\x14\x63\x97\x34\x37\x12\x36\x84\x34\x2a\x68\xdf\x94\x82\xbe\xf7\x62\x8b\xea\x03\x60\xbb\x28\xdf\x67\xa3\x51\xdd\xa9\x5f\x51\x29\xe4\x4b\x7b\x43\xa0\x7c\xd3\x35\x57\xbd\x90\xb7\x84\xd2\xbc\xbe\xb6\x5b\x1f\x5e\xbe\x7c\x69\x03\xd3\x75\x50\xa9\x52\x2c\x51\x1a\xd1\xd6\x0b\x90\xb1\xf6\x1b\x2a\x75\xb5\xf7\x20\x14\x8d\xd1\x56\x64\x8c\x82\x92\x32\xa1\xf5\x9a\x05\xc7\xc2\x5b\xe6\x6e\x45\xd3\x3f\x8a\x93\xb7\xa2\x78\xf0\x92\x95\xc9\x44\x16\x47\x40\xba\x0b\xbb\xd0\x22\xa2\x78\x18\x64\xaa\xec\x63\x68\xc0\x74\x62\x4a\x04\x83\x11\x20\x97\xf5\xc6\x0a\x6d\x4c\x82\x6c\x92\x06\x79\x61\x1b\x1e\x98\x4a\xb2\x6c\x75\x8c\xb8\x2b\x47\x01\x42\x6e\x90\x72\x79\xc3\x7c\x47\x74\x61\xb3\x3a\x86\xa7\x41\xf6\x26\x8d\x46\x85\x7d\xe6\x81\x59\xfb\xc4\x68\x75\x2c\x59\x06\xb2\xac\x08\x4b\x01\xb3\x66\x1b\x43\xe5\xbc\xbd\xa0\x19\x3f\xd8\x0d\xf1\x10\x4f\xcf\xf2\x3b\x75\xcc\x2b\xc2\xcd\x04\x55\x5a\x54\xa7\xb8\x76\x46\xdb\x1c\x49\xa7\x27\xc5\xff\x61\x18\x69\x17\x9b\x82\x51\x9e\xa4\x7c\xaf\xc4\xdd\xa4\xe0\xba\x41\x03\x11\x58\xed\xce\x01\x83\x76\x35\x36\xe6\x6e\x51\xd6\x7d\xf5\x86\x72\x27\x97\x42\xed\xa7\x18\xdc\x1a\xe1\x8a\xe9\xbe\x71\xed\x46\x49\x59\x46\x5d\xad\x64\x3d\x44\x37\xd8\x68\x38\x9d\x22\x1a\xdc\x77\xab\x39\xce\x67\xb5\x7a\xc3\x66\xd9\x97\xc9\xa9\xb2\x91\xae\x86\x92\x8b\x50\xe9\xb5\x55\x9c\x4e\x83\xf7\x7e\x8d\x15\x68\x9e\x4e\x93\x61\x30\x6d\x92\x4e\x6d\x06\xf6\x6b\x96\xfe\xd0\xd5\x64\x34\x0a\xe6\xbf\xae\xdb\x2c\x29\x6c\x35\x4a\x5f\x16\x35\xa9\xb8\xb0\xc9\x06\xcd\x2b\x52\x6a\x7a\x39\x5e\xa0\xe6\x1e\x9e\xb2\x90\x75\x07\xf9\x4c\x3a\xff\x1a\x5e\x7c\xf7\x06\xed\xdd\xc6\x3d\xcb\x9b\x90\x5d\x64\x91\x6e\x7c\xf7\x06\x9d\x6d\x78\x41\xc7\xf4\xde\xa0\xf3\x80\x3e\x0a\x5e\xb8\x37\xe8\xd2\x22\xd1\x30\x88\xef\x0d\xba\xdd\x86\xee\x6b\x0c\x8f\xac\x93\xee\x0d\x7a\x3d\x78\xe6\x3e\x87\xf7\x06\x3d\x5a\x3d\x93\xec\xf7\x06\x3d\x8a\x16\xf7\x0c\xb9\x37\xe8\x91\x06\xb9\xc7\xe0\xbd\x41\xaf\x0b\xce\xcb\xad\x15\xbc\x97\x2b\xf9\x2f\x5f\x8f\x07\xf3\xf5\xfb\x30\x5f\x97\x17\xf3\x0a\x7e\xcc\x57\xf6\x64\xbe\x16\x5f\xe6\xeb\xf0\x66\xbe\x82\x3f\xf3\x35\x7b\x34\xdf\x80\x4f\x73\x88\x87\x8b\xd3\x5b\xaf\xe6\x5b\xaf\xe6\x6b\xf3\x6a\x16\xab\xd2\x53\xc2\x5a\x8a\xd7\xe4\xaa\x3e\x93\x2e\x8f\xc9\xca\xfe\x92\xa5\xbe\x92\xab\xfb\x49\x32\xbb\x42\x45\x1f\xc9\x22\xff\xc8\x95\x7c\x23\xb9\x67\xa4\xcb\x2f\x72\x6d\xaf\xc8\x62\xcf\xbb\xad\x2d\xc4\x82\x35\xd0\x69\x47\xa6\x23\x91\x70\x1b\x59\x30\x9b\x4f\x71\xb6\x01\xa1\xd9\x36\xa8\x83\xe1\x7f\xf1\xb1\x62\xe1\x03\x12\x88\xe0\xff\x34\x8d\xc6\x6e\x8b\x13\x53\xb2\x1d\xd0\x4c\xd1\xe6\x37\x9e\x08\xfb\xbc\xf7\x83\x19\x4e\x69\x57\x3f\x7b\x77\x1d\xc4\x97\xef\xb8\x7e\xb7\x11\x54\xf7\x5e\x8c\x69\xb4\xfe\x61\x9b\x85\x4a\xbd\xc3\x61\x0b\xfb\xc6\x00\x32\xce\xb3\xae\xcd\x2b\xa1\xbc\x33\x5e\xe0\x8b\xec\x9d\xb2\xfb\x52\xa8\x87\x5d\x5c\xa6\xf0\x28\xe9\xaf\xa2\x2e\x70\x17\x70\xf5\x43\x21\xe4\x17\xed\x0c\x9a\x35\xa2\xb8\x47\xde\x1d\x94\x77\xc2\xbb\x83\x02\xba\xc5\x47\x4e\x6a\xef\xfa\x66\x84\xe5\xd5\x89\x2a\x93\xff\x84\x63\xe7\x99\x0e\x0c\xfb\x37\x47\xe5\xe4\xbf\x39\xfa\x86\x86\xfd\x09\xc7\xd9\x41\xb7\x66\xc6\x73\x88\xb6\x86\xfe\x81\xcf\x6b\xfa\xda\x4d\xaf\xf6\xed\xdd\x81\xf6\xf8\xe6\xe8\xae\x30\x41\x94\x1a\x19\x39\x6e\xde\x4b\xa0\xa4\xd3\xbf\xdb\xad\x60\xfb\x76\x2b\x78\xbb\x15\xfc\xcf\xde\x0a\x66\xe3\xd1\xe7\xda\x08\xb2\x22\x21\x3e\x8b\xe2\x1c\x9f\xa6\xc1\xb4\x8b\x1e\xa9\x4f\xff\x9d\x8d\x97\xe1\xb2\x99\x2e\xb4\x8d\x63\xa7\x75\xbb\x71\xfc\x0f\xd8\x38\x1e\x8d\x47\x5f\xfa\xb2\x5d\x85\xab\x76\x9f\xe7\xa2\x5d\xf1\x35\xbb\xaf\xe5\x92\x5d\xd1\x76\x52\x0c\xc8\x29\xe6\x9b\xa5\x28\x89\x8f\x46\x44\x44\x3a\x1d\x12\xa4\x3b\x82\x01\x2e\x0e\x62\x98\x1a\x98\x8d\x47\xef\x0b\xa0\x2c\xa7\x04\x4b\x09\x74\x39\x5e\x5f\xdb\xad\xac\xd7\x69\x74\x1a\xc5\xd5\x89\x35\xe1\x3d\xd4\x7a\xc1\xbe\x30\xb9\x47\x79\xf0\x11\xa7\x6f\x92\xc3\x32\x3a\x05\xa0\x87\x40\xfb\xfb\x17\xa6\xec\x2d\x3e\x0f\xd2\xf0\x0f\x1c\x9d\x4e\x7c\x3e\x34\x92\x3a\x0d\xd8\x43\xa1\x1b\xe6\xa6\xa8\x64\x7b\xcf\x37\x42\xe2\x38\x89\x7c\x9a\x9c\xc7\xb9\xd7\xfd\x4a\xd2\xc7\xe1\x3c\xa4\x59\x9f\xbf\x2c\x55\x94\x97\xaa\x71\x64\x21\x3b\x5a\xf4\x74\xaa\xd0\xe3\xbe\xda\x51\xc1\xd3\x00\xda\xac\x32\xdf\x9e\x5c\x30\x8f\xe9\x6a\x34\x0a\xf0\x42\x62\x6d\xa8\xaf\x8c\xea\x8a\xd4\x16\x53\x79\xf3\x33\x8f\xb5\x53\x4c\xd1\x53\x3c\xc5\xa7\x20\xce\xb3\xd7\xe3\xd2\xd9\xa7\x02\xfb\xa6\xa0\x13\xe6\xb3\x8c\xa0\xd2\x74\x65\xa2\x2b\x73\xb0\xab\x4c\x79\x17\x7c\x21\x5e\x5e\xa3\x27\xaa\xd3\x5f\x4a\xb5\x45\x6b\x77\x65\x5a\xaf\x4e\x78\x55\xba\xf7\xa7\x41\x34\xc3\x21\x5d\x14\x57\xe0\x02\xbd\x5c\x69\x9f\x78\xc0\x3f\x0b\x37\xac\xa4\x42\xad\xd6\x1f\xae\x32\x85\x62\xaf\xa4\x1f\xbe\xa8\xf6\xa8\xcc\x9a\x75\x7a\xc1\x5b\xbc\xb0\x43\xca\x4b\x7d\xa9\xbe\x31\x9c\x3e\xed\xad\x4e\x43\x7e\x31\xb7\x05\xca\x27\xa1\x50\x2b\xef\x34\x15\x54\x79\xcf\xf5\x37\xab\xb8\xf5\x42\x08\x56\xeb\x8b\x56\x9f\xba\x18\xb9\xdf\xbb\x2a\x92\x9f\x9d\x2f\xf5\x71\xb2\x10\x28\xf9\xec\x1d\x70\x00\xac\x6a\x2e\x2f\x37\x98\x1f\x8d\x47\xdf\xab\xb9\xfc\xc1\x6d\xd8\xc7\xdb\xb0\x8f\xdf\x77\xd8\x47\x5f\xcc\xc7\x2b\x47\x25\xae\x6e\x7e\xae\x60\x5b\x06\xb8\x5f\x71\x7e\xe3\x41\x8c\x6f\x38\x32\x58\x85\xc0\xc5\x5b\x5b\x5b\x32\xe3\x9f\x2b\x8b\x60\x88\xb3\x51\x1a\x0d\x23\x32\xfa\xa4\x3a\x9c\x4f\x50\x30\x8f\x14\xd4\x6f\xe8\xa6\xc5\x34\xca\x72\x1c\x17\xdc\x3a\x88\x71\xfe\x5e\x02\x09\x98\x15\xbd\xd2\x31\x4e\xcd\x08\x04\x56\x2b\x3e\xa0\x15\x3c\xe5\xd5\x55\xd0\x5a\xd3\x7e\xc5\xb9\x63\x4d\xd3\xd7\x2e\x75\x71\xb9\x3c\x69\xf4\x56\xf1\xb2\xbd\x5d\x2c\x6e\x17\x8b\x6f\x70\xb1\xf8\x4a\x63\x04\x5f\xdf\xf9\x65\xc5\xe3\x55\x79\x86\xf7\x06\xa7\x59\x12\x07\xd3\x2f\x7d\x90\xf7\xfd\x47\xcd\x2c\xf5\xe6\x64\x39\x8c\xf0\xb9\x0c\xce\x58\x74\x0d\x58\x02\xda\x77\x80\xe7\x6c\x54\xdf\x3b\x81\xae\x10\x07\x26\x9a\x91\x85\xe0\x6d\x70\xfe\x02\x97\xc5\x87\x50\x41\x37\x1a\x77\xef\xdc\x31\x71\xb3\x00\x0a\x6e\xed\x57\x8f\x77\x62\xb7\x23\x3e\x28\x56\xb6\x3b\x77\x2a\x46\x00\xaa\x1c\xe8\x04\x8f\xde\xe2\x51\x72\x56\x1a\x52\x40\xc0\x39\x71\xd5\xbf\x16\x74\xc8\x22\x9e\x26\xa3\x8f\xd5\x38\x45\x83\x2d\x60\x16\x1f\x5c\x95\xb0\x92\xd5\xfa\xcd\xdb\x7b\xd7\x1c\x5f\x48\x8e\x7d\x69\x90\xa1\x55\x82\xc9\xb8\x82\xf3\x78\x49\xaa\x3e\x3e\xd5\x46\xa7\x78\x6c\x56\xb9\xd1\x6f\x8e\xcd\x49\xa1\x39\x0b\x29\x22\x49\x69\x44\x99\xbc\xf2\xad\xc6\x41\xf2\xb5\xe0\x6a\xf9\x4a\xbf\x49\xee\xbd\x70\xae\x54\xb7\xa6\xd5\x67\xc5\xfd\xc1\xe3\x92\xfb\xb4\x72\x38\x54\x60\x8f\x5a\x6e\xeb\xe5\x7c\xb9\x95\xca\xb9\xc3\x42\x64\x18\x85\x4c\x3d\x7d\x15\x17\xc8\x5b\x3d\xfd\x56\x4f\xff\x06\xf5\x74\xee\xe9\x38\xf1\x18\x75\x4a\xd4\x6f\x9c\xe2\xc5\x8c\x54\xfd\x73\x89\x0d\x68\x94\xa4\xb8\x19\x25\xba\x9e\xbe\x53\x39\x33\x55\x45\xff\xbd\x32\x37\x40\x00\x3a\x9a\x4c\xbe\xa7\x0c\x57\x65\xca\xf0\xc3\xbb\x77\x8f\x26\x13\xf5\x5a\x38\x3e\x7f\x85\xb3\x2c\x38\xc5\x07\x9f\xe3\x26\x7c\x36\x99\x94\xde\x84\xcf\x26\x93\x5a\x9d\x2b\x2e\xab\x5c\x78\x2f\x75\xb3\x73\x2e\x4e\x96\x7a\xa0\x2c\x4d\x67\xce\x10\x07\xfc\x98\x6c\x32\x79\xef\x06\xd0\x43\x6f\x21\x87\x2d\xab\xa8\xd1\x28\x1e\x27\xfe\x16\x1d\x5f\xaf\xd6\x5c\x86\xf3\x57\xc1\x92\x31\xc1\x51\xf4\xb7\x19\x55\x43\x69\xbb\x0c\x54\x0f\xbd\xb5\x0e\x22\x51\xfc\x26\xf9\xa3\x18\x01\x17\xc8\xd5\x1a\x9e\x05\xe9\xc7\x77\xe9\x22\xcb\x71\xf8\x06\x5b\x51\x34\x94\xe6\x8b\x01\xaf\x86\x44\x8c\x89\x4e\xf7\x26\x88\x0a\xda\xf7\xc2\x5c\x8d\x03\x82\x30\x7c\x93\x46\x67\x41\x8e\xe9\x96\xd0\xd3\x7a\x11\xd8\xd5\x68\x0f\xf1\x14\x43\xad\xc5\xe4\x17\x81\x5d\x0d\x81\x49\x90\x95\xb6\xee\x85\xb9\x5a\xd3\xa7\x38\xa7\x0b\x7a\x61\xdf\x17\x40\x5d\xbd\xf9\x0a\x63\x5f\x04\x76\x65\xbe\x3f\xba\x98\x15\x36\xee\x03\xb9\x32\xd7\x97\x35\xec\x03\xb9\x6a\x97\x13\x3d\x2e\xc7\xb4\xea\x83\x34\x99\xbd\x09\xb2\xec\x3c\x49\xc3\xa2\xfe\xaf\x58\xe6\xca\xf3\xa0\xac\x4f\x7c\x20\x57\x66\xc3\xb2\x86\x7d\x20\xd7\x21\x7a\xca\xda\x2e\x80\x72\x37\x2f\x1e\xb6\xb6\x50\xb6\x18\xc2\xc9\x1b\x86\x6b\xe1\x8b\x58\x3e\xcf\xa2\x2c\x8b\xe2\xd3\xbb\x95\xb1\x9d\x27\x99\x79\x74\xa5\x60\xe9\xf8\xea\xb0\x53\xa0\x62\xbb\x23\x2a\x3f\xe5\x3a\x9a\x4c\xc8\x2e\x9b\xef\xa4\x75\xd7\x0b\x6d\x17\x6d\x38\x46\xf4\x3a\xb7\x7b\xe8\xdb\x3d\xf4\xf7\xbd\x87\x96\x67\x5d\xc3\xbf\xff\x36\xce\xba\x1e\x4f\xf1\x12\x3d\xc1\x29\x3e\xcd\xfe\x0e\xb2\xbf\x23\xf4\x28\x98\xe2\xe5\x7f\xa7\xf9\x38\x6b\x4e\xf4\xbb\x7c\xed\x3e\x4b\x17\xff\x16\x8f\x71\x8a\xe3\x11\x1e\x20\xd2\x7e\x36\xd8\xda\x3a\x8d\xf2\xc9\x62\xd8\x1c\x25\xb3\x2d\xbe\xeb\xde\x3a\x4d\x36\xc5\xef\xe1\x34\x19\x6e\x65\xe7\x41\x3a\xdb\x8a\xe2\x1c\xa7\x71\x30\xdd\x22\x24\xe1\x65\xce\xff\xdb\x3c\x4d\xfe\xd7\xcb\x6e\x17\xb6\xdc\x37\x76\x32\xa6\x5c\x59\x23\xc8\x7c\xe7\x7b\x6b\xf8\xf1\x4d\x9c\x75\xd1\x88\x81\x38\x3f\x4f\xd2\x8f\x6f\x71\x10\x96\xd8\xc9\x4d\x70\xdb\x58\x3e\xfc\xfb\xef\xf7\x05\x50\x57\x49\x80\x70\x11\x8f\x9e\xc5\xc1\x70\x8a\xcb\xb0\x54\x20\xdd\x08\xba\x01\xae\x82\xdb\x79\x30\xaf\x88\x9b\x84\xf4\xe0\xe6\x04\xb8\x02\x6e\x61\x72\x1e\x4f\x93\xd2\xa1\xe5\x60\x6e\xac\x1c\x5f\xab\xe7\xf4\xf0\x20\xb6\x98\x57\x40\x8b\x02\xb9\x91\xb2\xbe\x5d\x19\xa5\x14\xe7\x69\x84\xcf\xca\x42\x6b\x73\x30\x37\x5a\x8e\xaf\x57\x61\xad\xdc\x7b\x23\x52\x32\x55\xae\x5e\x6f\xd4\xd9\xc9\xf8\x74\xe5\x2e\x3a\xc5\x15\x62\xc5\xbb\x71\xd1\x3f\x5c\xa1\x4f\xe6\x8b\x32\x1c\xe6\x0b\x0f\x0e\xfa\x87\x2b\xf7\x06\xd5\x1e\x4b\x90\xa1\x40\x6e\x7c\xac\x6f\x46\x68\x9a\x12\x94\x0a\x0e\x75\x2d\x0b\xa7\x29\x96\x95\xc3\x3f\x29\x0f\x95\x97\x52\x10\xc9\x97\x5c\x0e\x28\x07\x8e\x73\xfd\x99\x73\xbf\x52\x51\xae\x78\xd9\xc3\x41\x9e\x42\xed\x42\x79\x50\x54\xf1\xb5\x7d\xcb\x1d\x5b\x14\xa2\x70\xb8\xb2\xf2\x3b\x8f\xf6\xba\xb7\xdb\x92\xdb\x6d\xc9\xf7\xbd\x2d\x61\x7b\x12\x7e\xc6\x72\xbd\x3e\xdb\x25\xdb\x85\xb5\x7c\x93\x79\x64\xe6\x60\x1e\x71\x85\x96\xba\xda\xe5\xb3\x22\x27\x2e\x7a\xe2\x54\x98\x3e\x9b\x43\xe7\x17\x73\xb2\xc6\xb2\x54\xd9\x0f\xef\x2a\x42\x30\xca\x47\x93\x1a\xf9\xae\x96\xa1\x42\x3c\xc3\x68\x83\x70\x7c\x96\x6f\x0c\xb4\x4f\x30\x58\xe9\x69\xd6\xcc\x26\xd1\x38\xaf\x29\x9a\x3c\xff\x83\x3d\x0f\x15\xf5\x68\x0f\xb5\x6c\x00\x26\xd6\x20\x74\x76\x8c\xcf\x69\xaa\x4c\x7a\xa6\xf9\xd0\x81\xc6\x1c\xc7\x61\x14\x9f\xde\x38\x1e\x6f\x68\x3b\xaa\x1b\x8e\x0b\x29\x96\xe3\xd8\xc6\xc6\xa8\xce\x2a\x7c\x49\xd7\x30\x65\x85\x15\x50\xe5\xce\x78\xac\x36\x73\x9d\xd5\x58\xc1\xa1\x7f\x38\x34\xd3\x38\x8a\xb3\x3c\x98\x4e\x2b\xb5\x6c\x40\xdb\xeb\x3c\x21\xd6\x0f\x54\x9c\xa4\xe6\x65\x72\x5a\x21\x1b\x09\x81\x72\xb7\x7b\x8a\x73\xda\xa2\x01\x52\xd0\xea\x3c\x29\x4d\x18\x46\x40\x4a\xda\xdb\x9f\x04\xf1\x29\xae\xd0\xa4\xeb\x24\x96\x56\xa1\x7a\x35\x69\xbd\xa7\x29\x13\x84\x30\xa5\x91\x64\x3a\x55\x35\x88\x95\xe5\x4d\x36\x99\x34\x41\x34\x5a\xe2\x26\x33\xfc\x03\xd6\x3f\x4b\x76\xf1\x2a\xb2\x0e\x3a\xb4\xc3\xf8\x6b\xb5\x74\xfb\x99\x11\xb9\x8c\xdd\x37\x87\x88\xcd\xba\xc8\xb2\xf4\xd3\x66\x19\x0e\x26\xe8\xd5\x9a\x37\xd8\xf8\x1a\xda\x56\x59\xcf\xd2\x44\x29\x0e\xe3\x7c\x36\x20\xff\xd0\xca\xb2\xc9\x64\x40\xfe\xa1\xca\xab\xa5\xa3\x12\x95\xb4\x77\xab\x92\xde\xaa\xa4\xdf\xb7\x4a\x2a\x2d\xe5\x3c\xbd\xc3\x3a\x37\x43\x1c\xea\x28\x4d\x4d\xf1\x16\x9f\x92\x61\x0e\xd2\xc7\xc3\xc8\x13\x30\x2e\xdb\xfa\x45\x07\x6d\x7e\xc8\x12\x11\x94\x2d\x1a\x05\x73\xb5\x12\x5f\x1d\x87\xfb\x8f\xdf\xd8\x35\x28\x98\xb0\x1c\x18\x32\x90\xc7\x46\x6b\x39\xea\x87\x0f\xc2\xce\x28\xec\xf5\x1e\x04\x3b\xdb\xbd\x51\xef\x41\xaf\xd3\xef\xe1\xf6\x6e\xeb\xc1\x68\xbb\x85\xbb\xbd\xb0\xdf\xdb\xee\x77\x86\x1b\x12\x17\x57\x35\x41\x3b\x68\xb7\xdb\xc3\x51\x6b\xa7\x37\x7a\x30\x1a\x07\x3b\xbb\xed\x71\x6b\xd4\xdd\xc5\xfd\xee\x30\xdc\x6e\x8f\x1e\xb4\x87\xbb\xc1\xb8\xd5\xda\xf0\x8b\x26\x8a\xe3\x40\x51\x74\x83\x61\x34\x70\x74\xa2\x14\x84\x2c\x03\xc7\xc0\x49\x1f\x5d\xe8\x29\x30\x41\xdb\xaa\xd9\xec\x57\x47\xbd\x36\xb9\xb4\x56\x4d\x60\x16\x8f\xe2\xbd\x41\xbb\x71\xaf\x64\x9c\xee\x0d\x3a\x44\xd6\x6e\xdf\xca\xda\x5b\x59\xfb\x9f\x22\x6b\xb9\xed\xcb\x10\xb6\x45\xae\xbd\xe3\x34\xf9\x1b\xcf\x82\xb8\x19\xe2\x9f\xaf\x45\x40\xbb\xee\x78\x1b\x17\xbc\xcd\x33\x46\xcb\x29\x55\x3b\x48\x24\x0b\x08\xda\x63\x6c\x49\x1f\x95\x90\x8d\xf4\x16\x81\xf2\x9d\xbe\xd0\x82\x3a\x1a\x10\x99\x09\x61\xdc\x10\x56\x40\x8d\x2f\x4a\x19\xdd\x84\xab\x14\xd1\x3f\x28\x25\xac\xf3\xd0\x78\x31\x9d\x52\xc5\x92\xf7\x85\xe2\xbb\x6b\x9d\x0f\x6a\xfd\x94\xce\xb4\x2e\xb2\xaa\x4e\x67\x6c\xb3\x44\xb9\xe3\x88\x72\xec\x10\x83\x36\x8c\x43\x94\x27\xec\x56\x16\x35\x45\x83\x4d\x81\xf0\x2e\xd5\x53\xd9\xe9\xf4\x7f\xd3\x27\x06\x79\x48\x00\xe1\x35\xa8\xc9\xe8\x9f\xc7\x64\xe3\x75\x09\x6f\xd8\x7e\x49\xbe\xda\x72\x91\xa4\xd4\x63\xda\x6f\x5c\x59\xa3\x8c\x1e\xfe\x2f\xd7\x5b\x5a\x76\x40\xf0\xaf\x4a\x30\x1d\xd2\x5a\x8a\xb3\xc5\x34\xaf\x97\x10\x4d\x53\x41\xa8\x54\xd3\xf3\x5c\x9d\x6c\xf9\xae\x80\x6e\x96\x55\x42\x1b\x45\x86\x83\x4d\xbb\xc9\x91\x3f\xfe\x88\x28\x30\xfa\x61\x8f\x32\x8e\xf1\x8a\x2c\x28\xe3\x28\xc6\x21\xef\x27\xa3\x06\xd1\xd6\x80\x95\xf2\x74\xd7\x22\xa3\x9d\x85\x97\x34\x18\x2f\x77\xd1\x46\xe3\x34\x99\xc9\xbd\x76\x90\x9e\x2e\x66\x38\xce\xb3\x26\x7a\x45\x16\xb6\x08\x67\x8c\x93\xa0\x9b\x8c\xbe\x64\x95\x71\x8f\x6e\x9b\x89\x64\x7d\x5a\xbf\x1e\xb0\x9e\xfa\xf4\xeb\x62\x3a\xbd\x54\xdc\xc5\xa3\x31\xc2\xcb\x28\x03\x70\x67\x97\x1b\x2d\x7a\xcd\x85\xd1\x18\xd5\x68\x38\x80\x28\xe3\xad\x01\xc0\x31\x58\xd9\xa6\x38\x3e\xcd\x27\x68\x13\xb5\x4f\xea\xaa\xb5\x90\x21\x08\x30\xf3\x64\x5e\xab\x3f\x44\x5b\x5b\xfc\xe8\x88\xc8\x7f\x98\x4f\xd0\x5b\x3f\xa8\xca\x8d\xde\xdd\xd4\x45\x40\x62\x96\x27\x6e\x56\xd4\x5d\x09\x7c\xcc\xc8\x5e\x71\x2a\xbc\xdc\xa8\xd7\xa6\x4b\xdf\xe1\x07\xd5\xe2\x0a\x65\x84\x2a\x89\xa8\x71\x66\x40\xd9\x6b\xb8\x88\xa6\xe1\x2f\x38\xaf\x29\x9b\x73\x1c\x2f\x66\x38\x0d\x86\x53\x3c\x40\x79\xba\xc0\xb6\xe5\x2f\xa0\x69\x2f\x84\x58\x6f\x66\xf3\x69\x94\xd7\x36\x9a\x1b\xcc\x92\xc9\xa1\x88\x74\x24\xc0\x60\xbb\xe5\x03\x05\x6f\xf8\x98\xfc\x8c\xda\xea\x88\x24\xc3\x0f\xc7\xbc\xc4\x09\x91\xc6\xda\xf3\xa7\x4f\xe8\x9f\xcb\x87\x2a\xb0\x09\xf2\x50\x33\x88\x89\xe6\xdb\xec\xc3\x25\x25\x82\xf6\x59\x93\x4e\x35\x71\xf1\x2d\x19\x7e\x68\x00\x7c\x83\x76\x19\xa3\x85\xd4\x1f\x64\x17\xf1\xe8\x17\x58\x6f\x88\xca\x0b\x24\xd4\x4f\x78\x17\x40\x27\x3e\x66\x20\x35\xe5\xa2\x83\x51\x4c\x1b\x24\xa8\x42\x17\x19\x70\x40\x8b\xee\x03\x0e\xcd\xd1\x24\x48\x1f\xe7\xb5\x56\xbd\x99\x27\xbf\xcd\xe7\x38\xdd\x0f\x32\x5c\xab\xf3\xcf\x19\xd1\x1f\x6a\xed\xba\x77\xe1\xe1\x23\xeb\x35\xc4\xcf\xe5\xc2\x4d\x7d\x75\x14\x4c\x44\x89\x53\x42\x90\x3d\x63\x84\x82\xa2\xca\xc4\x9a\x78\xab\xaf\x63\x10\x8e\xd9\xb0\xf3\xd0\x29\x31\x90\x15\xd1\xe5\x5e\x31\xd8\x70\x97\x99\x62\x02\x79\xaf\xaf\x46\xa5\x3c\x2e\xf7\xe7\x1f\x44\xd2\x53\xc8\x49\x10\xb4\xbc\x2a\x55\x0d\xa5\x41\x9c\xa6\x0d\xa4\x2f\x1d\xfc\x8f\xe3\x42\x61\xdc\x9d\xcd\x4a\x2a\x47\x07\x97\xb2\xcb\xd8\x24\xe7\x78\x73\x46\x65\x8f\x34\x00\x36\x0b\x7d\xad\x8c\xea\x29\xf6\x2d\x27\x72\xf5\x1d\xa5\x98\xe8\x8a\xf3\x45\x8a\xd1\xbf\x8f\x5e\xff\xfa\xf6\xcd\x3e\xe2\xad\x9c\x4f\xa2\xd1\x04\x36\x4f\x7c\x05\x8a\x62\x34\x04\x93\x2d\x03\x31\x24\xa2\x7c\x2b\xe4\x5e\xb3\xd9\xbc\x64\x06\x3c\xd7\xda\x8c\xc8\x96\x30\x9d\x8f\x94\xa2\x4e\xe9\x28\x09\xf7\xb0\x45\x70\xc1\x7c\x5c\x4c\xcf\xb3\x81\xaa\x8f\xda\x36\xf2\xe3\x13\xdd\xba\x4e\x86\x89\x15\x31\x16\xab\x1a\xac\x89\xaa\x2a\x48\xa6\x6c\x93\x14\xaa\x89\x75\xb2\x5e\x57\x87\x8c\x61\xc5\x06\x9a\x8f\x9a\x3a\xec\xbe\xa1\x63\x25\x3d\xf6\x4d\xde\x41\xca\xc6\xdc\x88\x7a\x43\xb6\xd8\xfd\xdb\x2d\xf6\xed\x16\xfb\x3f\x65\x8b\xcd\x04\xc4\x8c\x49\x74\x7d\xa3\xfd\x6f\x3c\x1e\xa7\xf8\x02\xfd\x11\x4d\x47\x1f\x31\x7a\xf4\x01\x8f\xc7\xbe\x70\x37\x2b\xc5\xc6\x79\x15\xa4\x64\x07\xff\x3a\x88\x47\x38\x00\xd8\x82\xd4\x22\x6b\x64\x23\xf9\x25\x38\x43\x7f\x24\x49\x88\x1e\x9d\x7a\xf7\xf8\x3d\xb9\xc7\xff\x37\x13\xa6\xda\xed\x5b\x26\x61\x8b\x52\x8d\x38\x02\xbd\x99\xd9\x41\x5c\xa9\x41\x70\x9a\x26\x46\xf4\x9d\x2d\xfa\x8e\x7a\x20\xd0\xf1\x39\xcc\x37\x32\xb2\x2e\xce\x93\x38\x8b\x86\x53\xca\x5f\xf3\x00\x6e\x61\xa0\x19\x3b\xf1\x21\x4b\xd1\x3c\x4d\xce\xa2\x10\xa7\x99\x28\x15\x4c\xb3\xc4\x2e\x9a\x4c\xa7\xa4\x28\x61\x36\xee\x7e\x8d\xe2\x24\xa4\x5f\xa3\x78\x94\xcc\xd4\x9a\x49\x65\x4f\xe9\x29\x39\x3d\x70\xcd\xa3\x19\x26\x73\x2d\xca\x50\x1b\x65\x78\x94\xc4\x21\x2c\x8e\x51\x7c\x3a\xc5\x79\x12\x43\x77\x12\xf2\x0a\xf6\xf9\x1c\x55\x6d\xb7\xcf\x5f\xa2\x3d\x41\x8a\x62\x66\x20\x6d\x83\x01\xf8\x52\x79\xc9\x71\x51\x8d\x0e\xde\xbd\x1f\x51\x50\x26\x69\x12\x27\x8b\x6c\x7a\x01\x71\x24\x3c\xcb\x30\xf9\xe4\xd8\x8e\xa0\x30\xc8\x03\xef\x06\x59\xa7\x56\xb3\x78\xc4\xa1\x46\x3c\xa9\x46\xdd\xa8\xfd\xa0\x51\xaf\xea\x3e\xa3\x24\xce\x12\xb2\x72\x11\xa6\xa8\x51\xd6\x68\x1e\xc6\x90\x4c\xec\x0d\x83\xaf\xa9\x2a\x0f\xbf\xc6\x0c\x9d\xa1\x28\xf8\xfa\x12\xcf\xd8\xbc\x99\x27\x6f\xe8\x3b\x40\xa9\x49\xa9\x6f\x00\x99\xcc\xd5\x42\xd9\xbe\xb0\x4d\xf9\x9e\x3e\x56\x54\x97\x65\x55\xf3\x83\x72\x20\x8a\x37\x12\x65\x10\xe1\xf6\x2d\xe5\x42\x2c\xf4\x34\x85\xcc\x7c\x92\x26\xe7\x48\x27\xcf\x84\xd7\xc8\x61\x64\xd2\x4f\xcd\x4a\x1b\xff\x60\xa5\xd1\x07\x65\xb6\x90\x05\xcc\x6d\xa9\x50\x7e\xca\x99\x01\x2a\xb7\x38\x42\x49\xdb\x5d\x89\x37\x58\x1f\xa8\xaa\x71\x11\x77\x5c\x0f\x23\xd8\x63\x4f\xd5\x7e\x56\x65\x05\x75\x9e\x10\x85\xd3\xd4\xd4\xf0\x1d\xd4\xa8\x9a\xfc\x5d\xad\xfc\x2a\xbc\x55\xde\x55\x56\x69\x67\xbb\xa2\x30\x75\x63\xd5\x58\xcf\x8c\x6a\xe9\xdf\x2d\xb8\xb8\xb0\x68\x43\x40\x00\x9e\x90\xef\x0e\xdb\x12\x2d\x77\x1d\x0c\x09\x2d\x7c\x65\x0c\x09\x38\xa9\x5c\xc9\x85\xcb\x7a\x2c\x98\x5d\x3b\x0f\x72\xf3\x1a\x8c\x46\x8d\xb7\x72\x25\xd6\xcb\xca\x78\x4f\x23\xa8\x84\xe9\xc4\xaa\x87\x73\xb1\x9c\x12\x1d\x93\xef\x04\x99\xa6\x67\x31\x5c\xce\x47\xca\x6d\x90\x2b\x64\x25\x51\x56\x5f\xec\xbd\xab\x7c\x19\xea\x39\xd9\x48\x31\x7d\xc5\x44\x94\x7c\x7b\x23\x3e\x95\x0a\x6a\x1a\x95\xfd\x12\x6a\x3b\x0c\x4b\x67\x8c\xe3\xab\xf0\x45\xe2\x98\xe4\x49\x98\xa0\xd1\x14\x07\xf1\x62\x8e\x62\xa8\x9f\x74\xb0\xd8\xac\x17\x75\x95\x82\xbd\x63\xe2\x51\x24\xd5\x40\x22\xa2\x71\xbd\x2f\x89\x4e\x74\x4c\xa1\x4f\x88\x6e\x44\x8a\x0f\x10\xad\x24\x0a\x07\x56\x45\x03\x57\x95\x03\xf9\xf3\x92\x27\x13\xdb\xda\x32\x7b\x5f\x9b\xff\x4c\xef\xd2\x17\x71\x86\x50\x4d\x4c\xf0\x92\xc1\x4d\xe6\x42\x17\x25\x9a\x27\xf3\x9d\x85\x3d\xcd\x69\x44\x36\x72\x91\x69\x31\x26\x65\x1c\x63\x6e\x8d\x6d\x61\xcf\x8b\x2a\x74\x26\x85\xb2\x9c\x20\xea\x4e\xe6\xe8\xe4\x87\x4a\xf7\x48\xfc\x59\xef\xd4\x98\x1d\xf5\x23\xbe\xc8\x6a\xb2\x6c\x9d\xdb\x76\xf7\xf6\xf6\x50\x0b\xfd\xf8\x23\xf2\xf5\x21\x61\x26\x48\x1d\x9b\x2c\xf2\x9a\x06\xf4\x50\xef\x67\x53\xef\x2d\xe8\x6f\xb9\xf8\xa4\x98\xc8\x02\xa2\xf6\xf3\x6e\x9f\xe1\xd1\x24\x88\xa3\x6c\xc6\x37\x9f\xc5\xc2\x01\x2a\x28\xee\x5e\xda\x86\xda\xb1\x1f\x31\x9e\x8b\xac\x84\x9c\xd8\xad\x9f\x3e\x64\x93\x28\x26\x0d\x2d\x47\xc9\x6c\x3e\xc5\xcb\x28\xbf\x18\x6c\xc3\x4e\x8c\x00\x10\x86\xa8\x91\xb5\xe1\x23\xbe\xa0\xf6\x01\xd1\x9b\x4a\x7f\x6d\x6d\xa1\x14\xcf\x92\x33\x8c\x82\xe9\x14\xa8\xca\x1a\x08\x2f\x47\x78\x9e\x83\xb6\xcf\x5e\xa9\xf0\xf9\x04\x5f\xa0\x18\xd3\x1e\x19\x62\x56\x3e\x24\x14\x2f\x82\xe9\xf4\x02\x0d\x2f\xa0\xcb\x48\xf7\xb0\x08\xfa\xc0\x33\x7f\x90\xf5\x28\x8a\x4f\x6b\x75\x65\x19\xa8\xfd\xa0\x51\x87\x3e\x7d\x22\xf8\x36\xa3\x38\xc4\xcb\xd7\xe3\x1a\xdc\xef\x23\xcc\xf6\x7e\xa3\x0e\x83\xbf\xd9\x36\xd7\x07\x85\xc3\x3e\xe2\x8b\x93\xa6\x98\x89\xa6\x0f\xb4\xcd\x91\x04\xde\xf2\x47\xfe\x86\xd9\x13\x36\x97\x64\xdc\x47\xd4\x21\x17\x25\x71\x15\x99\x40\xfd\x68\x8b\x78\x92\xb9\x09\xdb\x86\x4f\x0f\x17\xa2\x3e\xa9\xce\x41\x4c\x86\x73\x8d\x7a\x52\xb1\x62\x80\x6c\xa0\x51\xf3\xe0\xdd\xab\xf7\x6f\x5e\xbf\x7c\x79\xf8\xeb\x2f\xef\xdf\x1d\xbe\x7a\xf6\xfa\xb7\x77\xea\xae\xa8\xca\x08\xd8\x3a\x95\xa6\x30\xdd\xc8\x8e\xd1\x56\xc9\x08\x5e\x4f\x83\x3c\x40\x7b\x70\x63\x49\x7b\x7f\x08\xf7\x74\xf9\xeb\x6a\x53\x55\x54\xd8\x9c\x2f\xb2\x49\xcd\xe4\x7b\xa6\xe1\x69\xd0\x87\x61\x46\x81\x3f\xe2\x8b\xba\xd5\x07\xb2\xc2\x15\x3a\xaf\x92\xb6\x29\x6a\xae\x4b\x69\x3f\x0b\xe6\x9a\x80\x8c\x80\x65\x41\x98\x00\x7b\x11\xb6\xd4\xbb\xe8\x55\x30\x57\xac\x15\x8a\x25\x5b\xbf\x5e\x4d\x75\x56\x90\x18\xf5\x7f\x4c\xfa\x5f\x05\xf3\x63\x28\x16\xc1\xf2\xce\x7b\xe5\x18\xc0\x4f\xcc\x04\xa0\xd6\x65\x73\xb4\xb2\xba\x9c\xe8\x0a\xb3\x16\x12\xe4\xdd\xeb\xa7\xaf\x07\x9c\xc1\xd0\x34\x39\xfd\x2f\x53\xa1\x4e\x3c\x2a\xf5\x55\x95\xe8\x0a\xf6\x81\xac\x6e\x8a\x42\xda\x3c\x7c\x6b\xce\x82\x79\xcd\xe7\x9e\xc0\xff\xc0\x63\x31\x94\xbd\x4c\xfa\x9e\xed\xf2\xa2\x50\xbd\x69\x23\x38\xe2\x23\x46\xd9\x22\x05\xcb\x30\x17\x54\x51\x86\xb2\x3c\x22\xfc\x40\xa5\x38\x0e\x51\x30\x86\x1b\x41\x69\x1a\x9d\x05\x53\x63\x9d\xd5\xea\x24\x1d\x02\x77\xe5\xe9\xb4\x88\xc2\x13\x13\x45\x49\x52\x73\x24\x3d\x00\xf4\x32\xe2\x8b\xf7\x86\x0c\x37\x97\xa8\x9f\x2e\x11\x9e\x8a\x2c\xd4\x56\x89\x71\x30\xcd\xb0\x7a\xae\xc6\xee\x39\x95\xf6\x29\x2b\xff\xc3\x0f\x66\x9b\xd5\xab\x20\xc3\x02\x03\xae\xcc\x57\xcf\xb6\xff\xa1\xd5\x9d\x3f\x40\xc9\x0a\xdd\x58\xdd\x24\x80\x34\x06\x53\x88\x84\x82\x3a\x85\xc6\x5c\xf7\xf7\x92\x8e\x8b\xdf\xc2\x80\xd4\x53\xcd\xba\xe7\x70\xeb\xad\x19\x88\x42\x3f\xe2\x32\x92\x15\xd9\xd9\x1e\x98\x09\xfa\xde\xa0\x03\xd1\x70\x98\xf9\xfb\xde\xa0\x0b\xd7\x4e\x77\xaa\x1c\x8a\xb1\x30\x95\x38\xcf\xa3\xf8\xd4\x7d\x1b\x16\xe4\x12\xbb\x7d\x05\x77\xc6\xd0\x9e\xb8\xa3\xf6\xd0\x82\x90\xc1\x91\x85\x43\x90\x2f\xce\x0f\x6b\x94\xd1\x4d\x50\xde\xbd\x3d\xc7\xbb\x3d\xc7\xfb\xbe\xcf\xf1\x78\x10\x5c\xb6\x61\x59\x27\x10\x6e\x99\xff\xab\x27\x5d\x44\xc5\x64\xfc\x2e\x4f\x59\x3e\xa5\xdb\x6c\x5f\xf0\x38\x0c\x33\xe8\x3a\xb1\xb8\x05\x31\x58\xa4\x32\xb4\xa0\xda\x17\xbb\xe4\xd6\x20\xba\x57\x94\x43\x70\x39\x04\x71\xf4\xe9\x9a\x4a\x17\xfb\xbb\x77\xd5\xad\x01\xdb\x9a\xdd\x35\xed\x43\x64\xd5\xbc\xcb\x0e\xaa\x14\x38\x45\x56\xd1\xd8\x36\x6a\xb6\xf3\x24\x66\x17\xac\x34\x89\xc6\xd4\x26\xd2\xf7\x0e\x23\xa3\x4f\x27\xa2\xcb\x36\xa7\x34\x73\x2c\x16\x2e\x07\x1c\xfe\xa7\xaf\x5b\xe6\xf2\xe4\xb3\x5a\x0a\x97\x40\x1e\xbc\x07\x50\xfe\xf1\x47\xc0\x9d\xda\xa4\xa2\xf8\x14\xa4\x71\x5d\xab\x91\x1f\x58\x58\xd9\x70\x69\xa7\x49\x6f\x4c\xa8\x51\xbd\x95\xbc\x2e\x91\x42\x19\x9a\x06\x19\x34\x73\x94\x93\xc1\xfe\x61\x6f\x4f\x74\xb4\xd5\x29\x5b\x5b\xd0\x2f\x3a\x0b\xc1\xd4\xca\xd3\x05\x51\xd1\xd2\x2c\x47\x59\x42\x1d\x19\xe7\x73\x10\xd5\xb0\x4d\x0e\xe2\x8b\x9c\xec\xed\x1b\x68\x88\xc7\x64\xc2\xd3\x29\xcd\x0f\x49\x81\x7a\x6a\x4f\x34\xfe\xa2\x71\xed\x07\x07\x96\x3f\xfe\x88\x5c\x3d\x5d\xb7\xca\x23\xfb\x60\x81\xa0\x5a\x7f\xe8\x27\x2e\xa1\x72\x31\xc6\xcb\x1c\xed\xbf\xf9\x0d\x8d\x2e\x46\x53\xdc\x10\x64\x41\xb7\x8a\xc5\x04\x30\x07\x12\x99\x13\xd2\x3c\x4d\x46\x44\x26\x65\xb4\x37\xac\x56\x94\x1d\xae\x98\x06\x2e\xfe\x73\x20\xce\x86\xde\x84\xba\x6c\xa0\x96\x8b\x1e\x47\xb7\xd1\xa1\xf5\xa9\x5a\x8a\x37\xd7\x5d\x51\x81\xe9\x87\xa6\x98\x55\x6b\xb6\x23\x13\xdc\xfb\x65\x32\xd2\x71\xdd\x97\xbb\x32\x5d\x36\xa4\x4e\x7d\x18\x36\xe4\xb4\x67\xef\x55\x73\x10\xdd\xfe\x83\xa4\x20\x54\x72\x47\x47\x69\x12\xd2\xfd\xa2\xf5\xe0\xd1\x26\xf3\x7b\x7c\xde\x0d\x7d\x0e\xa9\x66\xa3\x43\xa2\x17\x2b\x76\xa6\xfb\x54\xaa\xde\xbf\xaf\xc0\x89\xf9\xa7\x6c\xda\xe1\x43\x10\x86\xc2\x39\x6b\x24\xc3\x52\x8b\xef\xe6\xf0\x28\xfb\x00\x45\x64\x72\xef\x2b\x78\xaf\x38\x7b\x53\x05\x4d\xf4\x84\xea\xaa\x2b\xdb\x2d\x74\x39\x8c\xc6\xf2\x95\x6e\x60\x92\x22\x05\x0c\x04\x06\xf2\x95\x90\x50\x47\xd1\xaf\xa1\x5a\x0c\x26\xac\xc7\x35\x65\x0c\xea\x05\xbd\xed\xd4\x52\x05\x42\x7e\x0f\x34\xa2\x7b\xeb\x09\x1f\x88\x2e\x7b\x9b\xa5\xf3\x56\x97\xfd\xce\x75\x59\xe9\x93\xc6\x33\xd6\x5e\xd7\x1d\xdb\xc3\x61\x10\xeb\xca\x6b\x34\x0c\xc4\xd5\x59\xbc\xa4\x86\xe7\xa2\xab\xb7\x47\xb3\x20\xcd\x9f\x31\x40\x79\x6d\xd6\x7b\xc8\x05\x46\x22\x68\x96\xd3\x62\x58\xaf\x95\xd7\xe2\x38\xeb\x28\x4f\xa3\xf8\xf4\x12\xae\xa6\xb8\xde\x13\xe5\x77\x18\xc4\xea\xa7\xdf\x83\xe9\x02\x5f\xa2\x33\xf2\x1f\x76\xb0\x41\x6a\x1e\xe3\x14\x97\x9c\x75\x36\x74\x3f\x01\x88\x31\xc3\x70\xd2\xa4\xe2\x38\x9f\x35\x00\x23\xa2\x7c\x37\x68\x4b\xf6\x0a\x06\x46\x34\xda\xcb\x31\x3e\x07\xca\x6b\xe2\xe2\x00\x58\x64\xc8\x57\x6e\xc0\xa9\x39\xbc\x80\x48\x31\xc8\x93\x50\xdb\x88\xa8\x31\x86\x56\xc8\xae\xd9\x6e\xd8\x86\x60\x56\xe3\xd3\x28\x25\x9a\x96\xeb\x3e\x0b\x27\xe8\x5d\xc2\x2e\xe6\xaa\xd4\x40\x71\x56\x7b\xad\x6e\x53\x66\x1b\xdf\x5d\x3a\x2b\xdc\x6e\x10\x97\x9c\xc7\xf9\xac\xa9\x5c\x07\xae\xd5\xa1\x01\x86\x69\x9c\xe5\x51\xbe\xa0\xaa\x95\xed\xba\x15\xe2\x79\x92\x45\xb9\x8a\x21\xab\x57\xa0\x06\xd5\x8c\xa6\x11\x8e\x73\xd3\x9b\xa2\x72\xc3\x96\x9b\x04\x6b\xc4\xd1\x7b\xab\x62\x64\xf7\x1d\xd7\x8c\xbc\xd3\x44\x70\xdc\x78\x11\x87\xe0\xcb\x38\xc2\x69\x1e\x44\x62\xd8\x3d\xb3\x46\x0c\xe8\x6a\xd3\xe7\xc6\x67\x8e\xc0\x6b\x8d\x29\xc4\x6d\xae\xf9\xac\x69\xa4\xba\x52\x34\x5a\x71\xe9\x3c\x4f\xa4\x1e\x4b\xaa\x1e\xd0\x06\x14\xbe\x9c\x2e\xf0\x80\xfe\x87\x2b\xb7\x23\x3d\x03\x89\x77\x54\xd8\xc0\xcb\x41\x81\x80\xee\xd1\x08\x71\x01\x88\xb8\x60\x44\xb5\xd9\x22\xcb\x61\x81\xc3\x33\x1c\xe7\x82\x67\x86\x17\x39\xce\xba\x9d\x3a\x53\xc1\x7f\xa8\x1b\x03\xc9\xe0\xae\x7d\xf8\xc8\x20\x18\x03\xc8\xcb\x53\x36\x45\x8b\x38\xfa\x9f\x05\x46\x51\x88\xe3\x3c\x1a\x47\xba\x04\xae\x34\xd8\xbc\x7b\x2a\x0c\x31\x34\xe9\x96\x96\x01\xac\x36\xca\xda\xf3\xd0\xe4\x02\xde\xc9\xb5\x60\x18\xd5\x9b\x41\x4e\x04\x6a\x93\x77\x30\xaf\xfa\x9f\xab\x72\x81\xa5\xa2\xf2\x6e\x74\x06\x2f\xb0\xd7\xc1\x7b\x83\x2e\xd1\x58\x79\xc6\xfa\xcb\x93\xc6\x76\xa5\x24\xc1\xcc\x48\xbb\x5d\x29\x53\xd9\x43\xd5\x96\x9e\x10\xb5\x62\x1c\x8c\xf2\x24\xbd\x68\x50\xbb\x30\xe9\xd8\x3b\x44\x46\x13\x0d\x3f\x19\x23\x41\xcd\xde\x1e\xba\x47\xe3\x28\xdd\x03\x98\x3b\x5b\x5b\x68\x3f\x99\xcd\x92\xf8\xdf\x47\x77\xef\xdc\xb1\x88\x97\xbf\x58\x03\x1c\xa7\xda\x3d\xd2\x0d\x29\xbe\x57\x6f\x20\xe5\x15\x8e\x47\x9b\xc3\x20\xc3\xfd\x9e\xf1\x61\x16\x6e\x9b\xa0\x67\xf3\x8f\xe1\xd8\x78\x39\x8a\xe6\x13\x9c\x6e\xd2\x9a\xeb\x0f\xef\xde\xb9\xbc\x7b\x07\x4f\x33\x8c\x14\x62\xa8\xdd\x9b\xd2\xc2\xbb\xe1\x1e\xfa\xf1\x47\xf6\xa1\x19\xcc\x42\x41\xdb\xe3\x57\x4f\xef\xde\xb9\x43\x3f\xd4\x8e\x39\xce\x0d\xa4\xa3\x0a\xcf\x04\x43\xfa\x81\x22\x06\xbf\x55\x7c\x4e\x44\x2f\xab\x88\xb1\x86\x68\x14\x0b\x54\x1b\xa6\xc9\x79\x86\xd3\xfa\xdd\x3b\x77\x44\x8f\x25\x49\xde\xdc\x4f\x2f\xe6\x79\xf2\xef\x23\x5a\xf4\x12\x36\x4d\xea\xda\x23\xbe\xa3\x7f\xee\xde\xbd\x53\xd3\x77\x61\x77\x10\x35\x7c\x1c\x4d\x92\x34\x1f\x2d\xf2\x8c\xbe\x21\xd3\x66\x1f\xed\x21\x5e\xf6\xa1\xf2\xfa\xfd\x34\x1a\x92\x4f\xcd\x69\x34\x54\xde\x83\x4d\x6b\x1f\x88\x22\x5f\x09\x54\x53\x79\xa7\xd5\x10\x4c\x4f\x13\xa8\x82\xfc\x78\x78\x57\x60\xf1\x32\x49\x3e\x2e\xe6\x28\x0f\x86\x53\xac\x60\x72\xf4\xe4\xf5\x9f\x6c\xab\x27\xde\x1d\xfe\xfa\xfb\x7b\xd7\xfb\xa3\xdf\x9e\xbc\x7f\x75\xf8\xe7\xfb\x96\xef\x43\xdb\xf7\xa1\xe3\xfb\xd0\x75\xb6\xed\x6b\x47\xfd\x68\xb5\xa5\x7e\xb4\xda\x53\x3f\xf2\x36\x45\xd7\xec\x27\xb3\x39\xd9\x1f\x4e\xed\x2e\x72\x0d\xa9\x51\x2a\x4c\x16\x43\xa2\xed\x93\x52\x12\x00\x44\xac\x8a\x05\x52\x7d\x0d\x22\x08\x02\x88\x22\xf4\x08\x75\xb6\xfb\x0f\x51\x74\xff\xbe\x56\xbd\x50\x0e\xd1\x23\xd4\xee\xec\x5a\xdf\xc8\x5f\x78\x1c\x9d\xa0\x3d\x52\xc7\x23\xd4\x7e\xa8\x7f\xa7\x07\xa2\x05\xa5\x6a\xb4\x58\x1d\xfd\x85\x5a\xcb\x76\x7b\x68\x96\x97\x8f\x97\x77\x35\xaa\xff\x08\xa6\x1f\xd1\x2f\x07\xb5\xce\x5f\xbb\x75\x9d\xda\x25\x0d\x6c\xa8\xbf\x8b\x8c\x97\x2b\xf5\x80\xd2\xc9\xd9\x30\x59\xea\x1f\xc1\x5d\x80\xb4\xb9\x8c\xd0\x5f\xa8\xb6\x94\x04\xb1\xdf\x1d\xe5\x77\x57\xf9\xdd\xab\x1b\xc4\x42\x2d\xb5\x6c\x89\x7e\xfe\xf9\x67\xb4\x0b\x90\xd9\x12\xfd\x88\x5a\xcb\xf1\x98\x76\x50\xbf\x6b\x14\x21\xb3\xe3\x78\x49\x3a\x32\x5b\x1a\x9f\xf8\xe4\x39\xce\xe0\xfb\xf2\xe1\x5d\x2f\x51\xb3\xc5\x34\x8f\xe6\xd3\x68\x04\xc6\x01\x9b\xbc\x25\x61\xe3\xf0\x78\x79\xf2\xd0\xf1\xad\x47\xbf\x75\x9c\x1f\x77\xe9\xc7\xde\x49\x41\xeb\xd9\x62\x88\x40\xc1\x69\xa0\x59\xb4\x44\xa3\x64\xba\x98\xc5\x99\xc6\xfd\x6a\x9d\x44\x53\xa8\x85\x40\xd5\x4f\x84\x67\x5a\x6d\xde\x53\xec\xb1\xd5\x6e\xb5\xcc\xae\x15\x33\x99\x76\x56\x2d\x87\x81\xe9\xd5\xd1\x27\xf2\x9b\xf6\xb7\xa7\x48\x5b\x2d\xd2\xee\x2b\x45\xda\x7d\x5f\x99\x8e\x5a\x66\xb7\x8e\x64\x99\x8e\x35\xea\x42\x1a\xd0\x32\x79\x41\x4f\x45\xf1\x99\xda\x5b\xe4\xb1\x72\x8f\x2d\x77\x95\xfe\x61\xec\xd9\x63\xaf\x5a\xfc\x45\x47\xeb\xd2\xc2\x1e\xd5\xe4\x23\xe3\xb1\x2a\xdd\xaa\x89\x4e\xad\x5c\x49\xdf\x6a\x62\x55\x2b\x58\xd2\xc1\x9a\xc8\x65\x05\x8b\x7a\x19\xce\x04\xc0\xfc\x8b\x53\x5b\x12\xfe\xb0\x74\x0a\x41\x26\x00\xf6\x56\x90\x80\x50\xa4\x83\xfe\x42\xe1\x31\xf9\xdf\x72\x17\xfd\x85\x96\x9d\x93\x13\x73\x22\x01\x6c\x84\xfe\xda\x03\xc0\x65\x64\x01\x68\x42\x12\x7e\x5e\xc2\x86\x56\xac\x2b\x6f\x52\x3c\xa2\xc4\x85\xe8\xed\x28\x89\xd9\x02\x23\x57\xa5\xb7\xfb\xaf\x7f\x25\x6b\x44\x6b\xd9\x6a\x35\x50\x6b\xd9\x6a\xc3\xbf\x1d\xf8\xb7\x07\xff\xee\x36\x80\x17\xc8\xbf\x1d\xf8\xb7\x07\xff\xee\xc2\xbf\xed\x21\xf9\xb7\xdb\x97\x8b\xd9\x4f\x3f\x31\xa4\x7e\x42\x8f\x9f\x1d\xd1\x50\xe4\x88\xaa\x43\x88\x28\x04\x69\x94\x4f\x66\x4d\x0e\xb3\x25\x51\x21\xd0\x7b\x4c\x7d\x68\xd2\x07\x45\xc3\x68\xe2\x65\x4e\x6f\xfd\x0b\x92\xdf\x87\xc9\x5b\x9c\xe1\x7c\x80\x3c\x4b\x24\xeb\x84\xa3\x8f\xd1\x9c\xf9\xee\x26\x63\x14\xbf\x4d\x60\x3b\x36\x09\x32\x34\xc4\x38\x06\xff\x7e\x76\x6c\x15\xc4\x21\x38\xe1\x85\x51\x88\xe2\x24\x67\x8e\x94\x36\x2b\xd0\x3c\x26\xbc\x26\xee\xf0\xf9\xfe\x23\xbe\x78\x93\x46\x49\xfa\x96\xfa\xf0\xee\xed\xc9\xf7\x4e\xd6\xe1\xce\x5d\xc6\x98\xda\x04\xe8\xea\x1b\xff\xe3\x2e\x83\x7b\xee\xe6\xe5\x5b\x87\x7c\xfe\x88\x2f\xfe\x48\x52\x70\x43\xfc\x88\x2f\x9a\xe7\xe4\xb7\x1b\xec\x28\xfa\x1b\x33\xa8\x2c\x3a\x7d\x42\x04\x10\xda\x42\xbd\xa2\x69\x24\x3c\xf9\x53\xe8\x20\xbb\x5a\xde\x73\x1c\x47\xf9\xcc\x1b\xbc\x8f\xfa\x95\x5a\x20\xf4\x67\xa3\x09\x26\xdb\x0f\x44\x54\x68\x07\x0d\xd9\xdb\xe4\x9c\xd4\x5d\xe3\xcd\xdc\x27\xab\xf4\x4f\x85\x34\xa8\xf5\xba\xbb\x85\x37\xaa\xf4\xb3\xf2\xee\xd8\x9c\xaa\xd2\xc9\x93\xa0\x43\x55\x0f\xfa\xf3\x11\xc3\x90\x3d\x3b\xb4\x10\xc4\xd8\x4e\xc0\xd3\x4e\x72\xc2\x91\x3f\x05\x95\x63\x28\x73\x42\x7b\x16\x46\x9c\xbd\x71\x88\x1a\xbf\xc0\x42\xca\x7a\x62\x55\x0e\x51\x70\xcc\xae\x54\xd1\xfe\x81\x21\xfe\x2f\x81\xb8\x17\x73\x36\x0a\x6f\x93\x1c\x11\x96\xf4\x03\xe5\xea\x1a\xa0\x2f\x01\x85\x35\x1f\x2d\x86\x55\x6a\x06\xf5\x89\xd7\x79\xa2\xac\x6d\xf0\x41\xae\x54\x4c\x47\x3b\x51\x56\x31\x15\x62\x57\x03\x00\x4c\x59\xcd\xec\x75\x09\xb6\xaf\xa2\x25\x88\xed\x22\x6c\xff\xda\x03\x21\x7e\xcc\x3a\x79\x4b\x72\xc7\x27\xd4\x62\xa8\x3b\x06\x1b\xc9\x01\x07\xd6\x62\xf3\xee\x67\xd4\x27\xf2\xcc\x18\x30\xb4\xb7\x87\x7a\x65\x83\xf6\xd5\x75\xad\x9b\x66\x4f\x8f\xfb\xe6\x8c\xc5\xeb\xac\x4b\x4e\xd0\x5f\x44\x97\xb0\x27\x51\xa9\x34\x57\x75\xba\x62\x31\x13\xc5\x67\x2f\x1c\x92\xc6\x7a\xed\x17\x36\x04\x54\xca\x1b\xf1\x24\x45\x0e\x7f\xe5\x91\x3a\xaa\xc0\x62\x72\x74\x53\x94\x71\x31\x2f\x6c\x19\x79\x33\xff\x2a\x60\x1a\xaf\x38\xb9\x5e\xc9\xd4\x73\x56\x57\x86\xf8\x23\xd4\x83\xab\x28\xf4\xa1\x88\xf7\xf5\xb1\x38\xe6\x35\x30\x4d\x73\x45\x42\x0a\x2a\xd3\x95\x6e\x7d\x0e\x11\x56\xd4\x95\x6b\xcf\x54\x3a\x41\x7f\xf9\x27\xa7\xe7\x4f\x57\xbe\xdd\x33\xd0\x44\xa0\x7b\xac\x4f\x45\xf7\x18\x78\x35\xd9\x86\x32\x3c\x38\x1e\xa5\x17\x73\xea\xe0\xaa\xea\x79\xaf\x1a\x28\x19\x8f\x33\x9c\x5b\x23\x43\xe7\x48\x98\xec\x8b\x72\x12\xb8\x61\xaf\xd5\x0d\xb9\x43\x94\x3f\xdb\xf2\x67\x47\xfe\xec\x36\x40\xc4\xa8\xbb\x0c\x0d\xd7\x10\xaf\x8a\x2b\x91\x9a\xe7\xc1\x1c\x75\xe2\x10\x74\xcf\x5e\x3e\xf1\x28\x31\x84\xbf\x5f\x1d\xd3\x6a\x88\xfe\x62\x76\xa9\xf6\x4d\x87\xed\x16\xc0\x76\x9d\x5b\xa2\x2a\x5d\xa8\xf3\x6a\x43\x67\x50\xfd\xb1\xad\x3f\x76\xf4\xc7\x6e\x43\x18\x2c\xac\xc5\x7b\x6b\x0b\x1d\x92\x9d\xef\x57\xd1\x47\xee\x41\xd7\xba\xc9\x39\xea\x0d\x74\x35\x76\x73\x31\x0d\xdb\x10\x54\xd6\xac\x1d\x1d\xfb\x0b\x66\x31\x3e\xe1\x34\x92\xaa\xea\x04\x53\x87\x8d\xab\xa5\x74\xd6\x09\xbc\xfe\x4b\x13\xb6\x2d\x97\x05\x28\x6b\x9b\xc3\x61\x94\xb2\xc6\x07\x4a\x75\xf4\x52\x1d\xb3\x94\xd3\xda\x94\x75\xcd\xe1\x34\x4a\x75\x5d\x66\xa8\x17\xc6\xde\xc1\xbd\xf5\x57\x97\x40\xd7\x8e\xe1\xad\x63\x8f\x23\xd6\x5f\xda\xab\x7b\xa8\xfd\x90\xfd\x7c\xc4\x47\x88\xbd\xf0\xac\xbb\x30\xc6\xd1\x38\x07\x4e\x6f\x78\x0c\x65\x85\x03\xc7\x51\xcf\xc9\xe0\x29\xe6\x9a\x96\xd0\xbc\xfe\x52\x0c\x5d\xb5\xac\x6d\xe9\x5d\x7f\x29\x46\xad\x5a\xd6\x31\xb5\xae\xbf\x14\xfb\x55\xd6\x55\x5e\x5b\xcb\xf0\xfd\xfb\xae\x05\x00\x90\x6b\xeb\xc8\xb5\x3d\xc8\x75\x4a\x90\xeb\x16\x22\xd7\x5a\x13\xb9\x8e\x8e\x5c\xc7\x83\x5c\xb7\x04\xb9\x56\x21\x72\xed\x35\x91\xeb\xea\xc8\x75\x3d\xc8\xb5\x4a\x90\x6b\x17\x22\xd7\x29\x45\xce\xc9\xba\xbf\xcd\xc1\x77\x28\xcb\x83\x1c\xdb\x00\x20\x4e\xf2\x96\x83\x30\x10\x19\xb9\x69\x47\x83\x2f\x64\x2c\xf2\x8e\xeb\x0b\xe9\x88\xdc\xb4\x8e\x3b\x8d\x28\xce\xf9\x54\x22\xfb\x60\xfa\xd4\xe8\xce\x43\x99\x3b\xe6\xae\xc5\x31\x7d\xcc\x6d\x8b\x3d\x83\xb4\x7d\x8b\x9c\x42\xf5\x6a\x9c\x20\xe6\x0f\xc7\xae\xed\xc7\xce\x9e\x3f\x16\x76\xd6\x14\xd2\xb1\x6b\xad\x83\x5d\x47\xc1\xae\xe3\xc7\xce\x9e\x40\x16\x76\xd6\x1c\xd2\xb1\x6b\xaf\x83\x5d\x57\xc1\xae\xeb\xc7\xce\x9e\x41\x16\x76\xd6\x24\xd2\xb1\xeb\x94\x63\x67\x73\x2b\xe6\x01\xa9\xdd\x7a\x09\x5d\x86\x1d\xf3\xc8\x54\x72\xac\xe9\xa4\x2f\xae\x8e\x59\x65\xa9\x3e\x5d\x9f\xee\xc3\xb6\xc2\x03\xd4\xd9\xee\x6f\x75\x3b\xcc\x02\x5d\x77\x99\x82\xb9\xc6\x22\x14\xa4\x8c\x5d\xff\x65\xa6\xe1\x8d\x8c\xa5\x69\x42\x90\xbc\x7a\x1c\x8c\xb0\xb0\x11\x8b\x4a\xfe\x1b\x2f\x83\xd9\x5c\xec\x94\xe5\x07\x3e\xa6\xb4\xae\x1c\x2f\x73\xe5\x74\xbb\xf9\xf8\xd9\x51\x93\xed\x23\x6a\x33\xee\x88\xfe\x11\x5f\x34\xd0\x68\x7c\x2a\xb4\x79\x59\xcb\x7c\x1a\x10\x24\x96\x39\x32\x6b\x61\x1a\x7e\x4d\xb6\xe3\xaa\x88\xd9\xb4\xf7\x1d\x46\xec\xf7\x34\xda\xe9\x73\x3c\x9d\xe3\xb4\xf6\xf8\x19\x3d\xd6\xa7\x36\xfb\xbb\x77\x98\xcf\x8a\xda\xe4\xc3\xbb\x77\x21\x72\x2d\x38\x90\x68\x5e\x05\x83\xed\x4e\x83\xfb\x25\x0c\xb6\xc1\x77\x44\xf1\x4c\x18\x6c\xf7\x1a\xd2\x25\x61\xb0\x0d\x37\x11\x67\xe1\xf6\xbd\x41\xbf\x7d\x79\xd2\xd8\xae\x94\x93\xdf\xeb\x2d\xf2\x39\xdd\x44\x6e\xcc\x99\xe3\x33\xba\x65\xd0\x99\xf0\x13\x62\x0e\x14\xa4\x79\x34\x4a\x66\xf3\x24\x86\x50\xe9\xe4\xdb\xd6\xdd\x3b\x62\xdc\xa7\xd1\xb0\xc9\x40\x3f\x7d\x52\x1d\x00\xc4\xdd\xcd\x6b\x76\xee\x08\x32\x2c\xbd\x3a\x82\x0c\x2b\xdf\xfe\x48\xd2\x10\x2e\x97\x0b\x00\xf1\x46\xad\x61\x31\x06\x87\x3f\xe0\xf5\xc7\xfc\x94\x47\xd6\xe9\xfc\xac\x61\x86\xe1\x82\xd4\x3e\x99\xa8\xca\xfb\xdf\xf2\xf1\x2e\xd4\x82\xe3\x51\x93\x3c\x18\x58\xf7\x7b\xe2\x2b\x7d\x2c\x72\x44\x11\x5f\x9e\x9d\xcd\x5f\x3c\x3d\x90\x87\x4d\xf4\xd9\x79\x82\x35\xcc\xa8\x7f\x1e\x99\x56\xfc\x14\x2b\xc7\xb3\xf9\x34\xc8\x5d\x02\x4a\x04\x87\xfe\x27\x66\x21\x75\xb8\x05\x15\xee\x12\x08\x59\x07\x76\xbf\xe8\x6f\xdc\xe4\x91\x21\x07\xa8\x87\x6a\xed\xce\x2e\x1a\x46\x79\x56\x2f\xaa\x30\x3a\x73\xd4\x77\xf8\xfb\xba\xd5\xbd\x7f\xf6\xeb\xfe\xfb\x3f\x0f\x5e\xbf\x7d\xf5\xfe\xd5\xeb\xa7\xcf\xd0\x63\x08\x50\x90\x07\x71\x8e\x52\x3c\x4f\x71\x86\xe3\x3c\x8a\x4f\xb9\x21\x86\xb0\xe1\x2c\x09\x25\xed\xce\x3a\x9f\x3e\xab\x54\x27\x13\xa7\x56\x9d\xca\xa1\xa0\xe1\x72\x24\x1e\xdd\x1c\xe5\x38\x24\x94\xa3\x49\xd1\xdd\x87\xdb\xdb\x8b\x14\x1c\x1e\x44\x6e\x0e\x15\x44\x03\x57\xa8\x13\x7c\x4f\xc6\x00\xbd\x9b\x60\xd2\xeb\x79\x82\x16\xec\x76\x00\x11\x01\x88\x00\x43\xd5\x5a\x95\x5b\xf2\x61\x34\x3e\x1d\x00\xeb\x72\x5c\xeb\xea\x8a\x6a\x61\x0b\xcb\x45\x46\xeb\x66\xec\x17\xc5\xbe\xc1\x70\xa1\x4f\xfd\x31\x15\xdc\x09\xeb\x11\xe4\x3f\xe2\x8b\xa6\x13\x96\x5f\xf0\x1c\x8d\x4f\x51\xed\x35\xb4\x12\x4c\xeb\x50\x66\xe4\xea\xbc\x8a\x7d\xa0\xb7\xc5\x03\x80\xd2\x01\xbd\x24\x2c\xc2\xa9\x23\x8c\x32\x2a\xa2\x89\xec\x2b\xa2\x91\xff\xbb\xae\x25\xd8\x00\x48\xd3\x16\xd4\x35\x9e\x1f\x3d\x37\xe9\x32\xfd\x8c\x76\x73\x92\xd6\xd8\xe1\x19\x74\x61\x03\xfd\x83\xa2\xb3\x01\x8a\xce\xa4\x6c\xbc\xd4\x5c\x0f\xb4\xf1\xd6\x6b\x1a\x68\x81\x9d\x98\xe6\x60\x5a\x00\xd4\x84\x1f\xb4\x3c\x3b\x71\xd6\xe7\xaa\x43\xf7\x30\x35\xb4\x8a\xfc\xe4\x99\x88\xb7\xfc\x74\xbd\xfc\xf4\x14\x5f\x17\x3f\x89\x9a\xae\xc6\x4f\xba\x9c\x5e\x83\x9f\x0e\xe3\x28\x8f\x82\x69\xf4\x37\xce\x50\x80\x62\x7c\x3e\xbd\x60\x18\x86\xac\x3b\xca\x79\x89\xaf\x1a\xcb\x71\x92\xce\x5e\x25\x21\x46\xcf\xe8\x15\x35\x88\xaf\x2c\x25\x5d\x92\xaa\x7c\x0a\xde\xd5\x70\xbb\x8f\x73\xad\x58\x64\xdc\x6c\xf8\xd5\xb1\xec\xb5\xb1\x55\xcd\xfe\xe0\x92\x14\x6b\x32\x5c\x14\x47\x9a\x87\x8d\x18\x26\x85\x5d\x1c\x26\xea\xc7\xf3\x39\xe1\x05\xe8\x2d\x9e\x24\x3a\x73\x1c\x33\x90\x2e\xde\x13\x3f\xf9\xa2\x48\x79\xd0\xde\x15\xe7\x44\x73\xa6\x8e\xf5\x49\x3a\xa3\xc3\x1e\xb8\x6c\x37\x94\xbf\x25\x4b\xed\x49\xf6\x7a\xe8\x82\xa4\x7e\x34\xe0\x2b\xe3\xdc\x8b\x47\x94\xd1\xe9\x0d\x00\x17\x1d\xe0\x5f\x54\xab\x3c\x71\xc0\x47\x47\x97\xc3\x10\x92\x21\x13\x2d\x81\xf5\xec\x8a\xec\xc3\xa6\xa0\x8d\x9b\x36\xc2\x69\x15\x27\x2a\xea\x54\x14\x06\x79\x80\x86\xa0\x7b\xe9\x10\x1e\x7d\x0c\xaa\xa6\x19\x2a\xf8\x25\x67\xb3\xe2\x37\x38\x85\xb1\x1c\x25\xf1\x28\xc5\x39\xde\x64\xdd\x31\x4d\x4e\x35\xa1\xac\x9c\x4b\xbd\x5d\xad\xaf\x21\x2c\x06\x60\x4e\xef\xb7\x30\x99\x82\x43\x45\xa4\xe0\x70\x85\x45\xef\x53\xc6\xae\xc2\x90\x4a\x99\xb1\x93\xc8\x06\xde\x06\x6b\x40\xa9\xbe\xc2\xca\xa5\xc8\x27\x51\x17\x0d\x7d\xc5\x62\x0e\x44\xf1\xe9\x35\x48\x13\x49\xfc\x1e\x67\x0f\x56\x7f\x6d\x83\xb4\xb9\xa1\xb3\x49\x95\x72\xe7\x1c\x73\x2f\x87\x31\xc8\x81\x11\xa7\x95\x76\x9d\x47\x7a\xe0\x38\x74\x8d\x7e\x00\x5f\xd4\xe2\x2e\x9e\xa2\xed\xa1\xe0\x2c\x88\xa6\xc1\x70\x8a\xa9\x1b\x62\xe6\x5f\x16\xdf\x73\x62\x2a\x73\xd5\x41\x14\xb3\x85\xaf\x70\x9d\x62\xf5\xea\xeb\xcc\xaf\x49\xce\x2e\x45\xd3\xd0\x67\xb4\x26\xb9\x6a\xa0\x28\x43\x78\x3c\xc6\xa3\x3c\x3a\xc3\xd3\x0b\x14\xa0\x10\x67\x79\xba\x80\xe7\x06\x4a\x71\x10\x6e\x26\xf1\x08\x57\x5a\x67\xaa\x72\x2f\xa0\x71\x53\x3c\x4c\x2b\xbf\x69\x4e\xe6\x3d\x59\xab\xce\xc4\xa2\xc8\xaa\xdc\x2f\x0a\x96\xb3\x3f\x07\xad\xce\xff\x07\x72\x2c\x16\x00\xa4\x43\x44\xe3\xc2\x0a\x50\xe1\x6c\xd1\x40\x1d\x07\x25\x2b\x08\x64\x08\x6b\x44\x50\x65\x13\x0e\x87\x2c\xe2\x25\x97\xd4\x07\xca\x80\x38\x27\x9f\x5d\xba\xd4\xd8\xdc\xee\xec\x6e\x75\x3b\xea\x27\x6a\x12\x71\x7d\x31\xf4\xa0\x01\x6a\x6b\x5f\x75\xfd\x77\x80\x3a\x55\xf6\x4e\x99\xd3\x94\x1d\x94\x1b\xb2\x91\x77\x6e\xf2\x5d\x0b\xeb\xe9\x77\x13\xac\x28\x05\x2c\x41\x56\x80\x26\x60\x35\x26\x4a\x66\x85\xa9\xc8\x55\xd8\xc7\x31\xc7\x07\xe2\x0a\xf0\x69\x4d\x94\x26\x36\xaf\x1d\x04\x7d\x86\xcd\x12\xf3\xf6\xb6\x4d\x9e\x86\x8d\xdc\xd2\x6d\xbd\xb3\x4c\x2b\x37\xf0\xde\x9b\x22\x7f\xe2\x53\x86\xa7\x78\x94\xd3\x86\x8f\xf2\x34\xc8\xf1\xe9\x45\xcd\xe7\xae\xad\x58\x9f\x41\x5d\xdc\x43\x1b\x54\x94\x6e\x78\xdd\xc3\xd8\x68\xbc\x09\xb2\x8c\x88\x89\x27\x41\x86\x43\xed\xc6\x9c\xfa\x57\xec\x1c\xc6\xaa\x3a\xc2\x29\x6c\xb8\xc8\xaa\xe6\xaf\xa9\x78\x92\x9b\x39\xf9\xd8\x79\x46\x81\x8f\xba\x0f\x29\xc6\x4e\xaa\x60\xb3\x4f\x58\x8a\xfc\x46\x65\x2c\x2f\xf7\x38\x88\x83\x1b\x8a\x62\x03\xf9\x0f\x70\xcc\x3e\x68\x78\x3c\x3d\x19\xdb\x0f\x2c\xfa\x8d\xf3\x9c\x2b\xa1\xad\x9f\x14\x35\x50\xe1\x89\x91\x89\xb9\x63\x40\x4d\xb1\xad\x4a\xc9\x5a\x9d\x59\x78\xdd\x47\x6f\xba\x0d\x3b\xcb\x53\x1c\xcc\xd6\x32\x65\x83\x0e\xc5\x8c\xcf\xaa\x0f\x7e\xb7\xb3\x39\x8c\xa8\xc3\xb6\xbe\xa3\xa1\xda\x09\x04\xa2\x56\x2c\xd3\x6d\x54\xeb\x76\x74\xc3\xb4\x62\xf0\x3d\x02\xfc\x0c\xb3\xaf\xf9\xb2\xe0\x46\xc8\x81\x63\xad\x75\xad\xb0\x5c\x45\x9c\x07\x29\x6c\xb7\x5c\x0a\xa2\xbd\xbc\xc1\xf6\x46\x7a\x57\x71\xa5\xf1\x87\x1f\x36\xc6\xd3\x45\x36\xd9\xa8\xb6\xcc\xd1\x5a\x7c\x0b\x9d\xe8\xe6\x01\x6a\x17\x8d\x2b\xec\x6b\x21\x1b\xe9\x5c\x3d\x2d\x55\x8d\xe7\xef\x67\x74\xef\xbb\xdf\x64\x3f\xfe\xb9\x2c\xe7\x10\xed\xc6\x0e\x94\xb3\xb8\x44\x69\x43\x39\xdd\x64\x1b\x6d\xeb\x72\x30\x7b\xaf\x1a\xbd\x8b\x0c\xf4\xaa\x89\x72\xc6\xb3\x6a\x49\xfd\x7a\xe5\xd5\xf4\xb1\x4e\x91\xd3\x20\x68\xa6\x86\x91\x06\x7e\xe0\xea\xcf\xb0\x1e\xf2\x91\xe2\xcb\x1d\xd8\x61\xf7\x9f\xec\x5b\xa6\x68\x2e\x51\xa2\x33\x7a\x6b\x67\x1d\xcb\xb3\xac\xa3\xd0\x56\x28\xca\x72\x43\x93\x52\x6e\x2d\x8b\xb3\x18\x4e\xb9\x41\xfa\xcf\x1c\x4e\x69\x09\x5e\x71\x38\x9d\x86\xdf\x8a\xc3\x29\xca\x5e\x61\x38\x8b\x0c\xbe\xd5\x8e\x0e\x3e\xeb\x70\x5e\x79\xb8\x0a\xa6\x40\xc9\x78\x99\x76\xd3\x82\x41\xa2\x8b\x89\xb0\xf3\x8e\x5c\x6a\x1d\xf3\xba\x3e\x43\x7b\x28\x3a\x53\x47\xab\x68\x89\x60\x2b\x26\x0d\x0f\xbd\x3f\x09\xa2\x18\x92\x96\xf8\xce\x5a\x9f\x80\xdf\xc0\x7b\x4e\x3c\xda\xf3\x07\x1f\x30\x4d\x6c\xda\x0a\x42\xca\x5a\xcc\xa0\x74\x8d\x6c\xcc\x58\x25\xc4\x99\xe8\xc3\x22\x89\xf2\x64\x9f\x2f\x07\xc6\x4e\x48\x69\x42\x1b\x3b\x42\xd5\x93\x7d\xc7\xda\x63\x57\x4f\x9b\x78\x23\xa2\x7c\xe6\xdc\x8c\x41\xb9\x34\xc8\x99\x53\x77\xd3\x2c\x63\xd5\x61\xf0\x2c\xd5\x8e\x84\x55\x84\x29\x4b\x09\xd7\x91\x90\x2e\x09\x91\xf3\x84\x84\xf9\x65\x91\x4a\xd8\xcf\xf3\x09\x66\xf1\xf3\x29\x7e\x10\xbf\x33\xab\x80\x9c\x3d\x31\xdc\x80\xe4\x0f\x86\x92\xa9\x3a\xf4\x36\x00\xe4\xb5\x03\x12\xc4\xd5\x06\x53\x97\x55\x07\x03\x49\x13\xa0\xe5\x26\xaf\xd7\xe2\xf5\x85\x76\x5e\x80\x45\xe6\x09\x89\x3a\x91\x3c\x8e\xb3\x52\x89\x15\x96\x1c\xf1\xca\xe3\xce\xfa\xe7\xeb\xb7\xb0\x5f\x66\x4c\x67\xc3\x2c\x93\x14\xe8\x92\x86\xee\x06\xd2\xe8\x6a\xc8\x66\x5d\x4a\x3f\xc3\x43\xbd\xeb\x52\x33\x7b\xd7\x89\xd9\x5b\x3c\xc3\xa0\x85\xc3\xea\x4a\x59\x80\x1d\x45\xc1\x6e\x1f\x2e\xb4\xc3\x6b\xbb\x38\xd7\x60\xf1\x19\x8f\x1e\x4f\x85\x29\xcd\x03\xcf\xf1\x16\xae\x80\x5e\x02\xd4\x9b\x3b\xa5\xf3\x36\xc4\x15\xe6\xad\x58\xa7\x6e\xe7\xed\xed\xbc\x45\xeb\xcf\xdb\xab\xcc\x0e\xf0\x10\x9e\x44\xd9\xca\x73\xc3\x89\x09\xe3\x68\x90\x22\x7f\xbe\x7e\xeb\x95\x00\xea\x0d\x32\x4b\x02\x5c\x55\xec\x38\x31\x7b\x27\xbb\x66\x88\x47\xc9\x8c\x4d\x1d\x22\x16\xa2\x64\x91\x55\x17\x1e\xa2\xb3\xaa\x8a\x07\xc1\x4a\x9c\x8c\x9a\x17\xf7\x95\x6e\x40\x81\x8a\xc4\xb5\x25\xd7\x0d\xff\x49\x92\x64\x18\xcd\xa2\x25\xd1\x85\x1c\xf4\xc1\x4d\x50\x5b\x49\x43\x2a\x23\x32\x2d\xcc\xc7\x76\xc9\x19\x68\xa7\x64\xa7\x93\x2d\x86\x19\xfe\x9f\x05\x8e\x73\xa7\x89\x01\xe9\xaa\x9d\x92\x9c\x43\xef\x45\xaf\x69\x50\x45\xc9\x18\x95\x72\x53\x3f\x59\xd9\x5c\x58\xb9\x62\x24\xc9\xd9\xe6\x8c\x94\x44\xfe\x60\x00\xa5\xf7\x78\x74\x82\xfe\xda\xa3\xe5\x8e\xa3\xc2\xd0\x25\xf2\x37\x77\x81\x7e\xb2\xcf\xe0\xb5\x80\x26\x8a\x6a\xfb\x26\x08\x43\x32\x80\x25\x06\x90\x39\xe4\xa9\xda\x6f\xd2\xff\xba\xcd\x1f\x6f\x5e\xec\x1f\xa1\xff\xb5\xbd\xb5\x83\xe6\xac\xd2\x8c\xd9\xf2\x5c\x75\xbe\xf9\x38\xca\x76\x40\x4f\x9e\x07\x61\x93\x3f\x15\xe8\xc6\x6f\x02\x7e\xfc\xbc\xc8\x78\x44\x7c\x11\x08\x85\xb9\x2b\x43\xb8\x64\x81\xc7\x4a\xfe\x57\x50\xb3\x7a\xfa\x4c\xd0\x72\x16\x72\xdb\xf1\x58\x08\x28\xe5\x3c\x12\x2a\xca\x44\x34\x4b\xd2\x29\x10\xcf\xf2\x86\xb7\xcd\x62\xf3\x25\xfa\x95\xfc\x92\xc7\x6b\x0d\x23\x6e\x96\x76\xc0\x1c\x84\xe6\xe1\xda\xda\x02\x44\x14\xa3\xb1\x4e\xf6\x94\xfe\xf2\xc5\x0c\x59\xc4\xb9\xe0\x1d\xb8\x57\x64\xd7\x1a\x33\x86\xb5\x2a\xa5\x2f\x36\x69\xae\x68\x11\x61\xe5\x5f\x06\x80\xab\x59\x7a\x2e\xc4\xdb\xb5\x43\x2f\xd0\x5c\x6d\xf0\x95\xf0\x0b\x44\x40\xd1\xb0\x90\x77\x5d\xac\xf7\xec\x82\x8b\xf5\x1e\xae\xb5\x68\x6f\x4b\x31\x2b\x44\x2a\x2b\x0e\x5f\x20\xc5\x8f\xde\x26\x8a\xd0\x7d\xdf\xb5\x7c\xb5\x76\x1a\xdd\x5e\x79\x53\xa0\xbd\x1a\xd8\xa1\x3d\xe9\xfb\xce\x37\xff\x6a\xd5\x0d\x1d\x25\x97\x1b\xc2\xe3\x30\x74\x77\x02\x8c\xf5\x28\x89\x47\x41\xce\xeb\xac\x6c\x81\xf9\x2d\x9e\x0b\x81\x02\x53\x76\x12\x84\x34\x90\x11\x9b\xa8\x9f\x47\xca\x2c\x62\x53\xce\x7c\x16\x89\x00\xcd\x56\x38\x72\x07\x38\x53\x24\xb8\xe4\xc0\x2f\x38\xd7\x52\x0f\x2b\x93\x18\x62\xc0\xa2\x69\x90\xe5\xf0\x5c\x3e\xa7\xa5\x7a\x7d\x5c\xd3\xa7\xf3\x26\x6a\xd7\xe9\x15\xb3\x13\x76\x19\xcc\x75\x93\x98\x2a\x0e\x7e\x8e\x91\xd5\xed\x99\x73\x50\x59\x4c\xe9\xb2\xb9\xa2\x9d\xff\x4b\x1c\x04\xb9\xae\x28\xb8\x4f\x16\x5c\xa7\x0a\x45\xe7\x40\xd7\xe7\xf4\xff\x2a\x09\xf1\x25\x35\x0f\xbe\x13\xbb\x35\x7a\x28\x02\x3b\x09\x85\x9c\xfd\x27\xfb\xbe\x5a\xd8\x58\x5d\x0a\xfe\x22\x75\x99\xca\x86\x5d\x23\xb0\xbc\x87\xc1\xe1\x1e\x01\xeb\x00\xc5\x71\xd2\x60\x70\x82\x29\x60\xd6\x30\x76\x75\xb4\x6d\xab\x89\x4b\xed\x36\xc2\x0a\x8e\x81\x74\xa0\xf5\x8f\xfb\x8a\xf7\x61\xb1\x0f\x60\x41\x80\x33\xdd\x3f\xd4\x71\x8f\x13\xf4\x66\xd2\x03\x9a\x59\x14\xe9\x86\x5d\xf2\x7d\x06\xbe\x9f\x1e\xfc\xe5\xc0\xda\x9b\x01\xcb\x97\x94\x6b\xda\xba\x73\x89\x77\xc7\x40\x6a\x85\x25\x11\x2c\x1a\xb0\x2b\x37\xce\x66\xdc\xda\xfe\xd6\x4f\xc5\xcd\xeb\xde\x2b\x75\xf4\xd3\xd6\xca\x18\x08\x53\x8b\x67\x2f\xf3\x02\xe3\x39\x0a\x72\x34\xc5\x44\x0a\x26\x31\x9f\x01\x2c\xb9\x07\xf5\x04\x85\xf5\x1a\x04\xae\x2d\xb7\x90\xd8\xdf\xcc\xa2\x98\x3a\x89\xb2\x4d\xbc\x15\x2e\x51\x7f\x64\x85\xe8\xf0\x29\xf8\x53\x46\x9a\x81\xff\x31\xdd\xf2\x46\x67\xe8\xc7\x1f\x9d\xf6\x78\x33\x50\xc7\x9b\xb5\x6c\x19\x12\x13\xdd\x98\xe2\xdd\x9f\x9b\xcd\x56\x3d\x92\xf6\xab\xa4\x52\x25\x11\x8e\xd2\xec\x95\x83\xa1\x79\x73\xd7\xcb\xc8\x5b\x5b\x64\x23\x43\xb3\x78\xf9\x54\x2e\xd0\xd7\x99\xeb\x17\x68\xe0\xf0\xbb\xd4\x06\xc1\x8f\xe2\xa9\x8f\xa0\x6f\x97\xbc\xd6\x61\xfc\xcd\x4d\xab\x9b\xc5\xdb\xd9\x1e\x68\x7e\x25\x23\x40\xf5\x23\x57\x7b\x65\x9e\x7f\x57\xf4\x54\x00\xd7\x3b\xa6\x7b\xb8\xdd\x50\xd0\x28\x99\x4e\x31\xe5\xff\x64\xcc\x55\x03\x50\x35\x31\xa4\xc4\x2b\x52\x3d\x14\x55\x54\xb9\xe4\x4d\x96\xd1\x34\x38\x57\x5e\x39\xef\x25\xba\xaf\x7e\xd0\x0b\xe8\x42\x49\xa9\x52\x5a\x1e\x3c\x42\x8a\x07\x26\x05\x69\x79\x32\x3f\x2d\x77\x5c\x5f\x45\x59\x30\xa5\xd8\xc3\x0f\xa8\x0c\x4c\x92\x01\x0d\x3f\x8a\xd3\xe8\x8c\xea\x2a\x5c\x62\x38\x2b\xe4\x47\xa9\x52\xcf\x57\x3c\x07\xed\x58\xab\xd5\xf4\x9a\x75\x28\x2b\xd6\x6f\x46\x13\x3c\x5b\xaf\x5e\xb7\xc2\xc9\x4c\xe6\xe0\x31\x3d\x56\xea\x73\x56\x41\x53\x2b\x5e\xca\xd4\x8b\x74\x17\x43\x55\x2c\xfe\xd6\x54\xc3\x46\x49\x7c\x86\xd3\x5c\xd3\x61\x69\x92\x3b\xee\x4c\x09\x1e\x9f\xd4\xfb\xcf\x7f\x6d\xf5\x0d\x2d\xa2\x5f\x5e\x15\x2f\x2b\xfa\xc3\x94\x5f\xb1\xd2\x51\x2b\xdf\xd6\x89\xdb\x4d\x2a\x3e\x86\x9f\x68\x10\x8b\xdc\x55\xf3\x24\xcb\xa2\xe1\x14\xfb\x67\xac\xa3\xa9\xd5\x2e\x37\xc9\x8e\xb2\xfd\x41\xe9\x37\xbe\x03\xff\xc7\xaa\x05\x09\xf3\x39\x99\xc1\x03\xe5\xb7\xbc\xf0\xe4\x2c\xf4\x11\x5f\x0c\xf4\x7b\x51\x4e\x30\xe3\xa6\x94\x1b\x88\x4c\xe3\x01\xfc\x5b\x02\x28\x66\xe5\xc0\xbe\xce\xe5\x2e\xc1\x54\x78\xd3\x33\xc1\x0d\x2c\xf4\x7a\x7d\xeb\xfc\x62\xff\x68\xc7\x5d\x40\x11\xe1\x3d\x37\x84\x98\x38\x4a\xa5\xf4\x5d\xf3\xf5\x1c\xc7\x47\x47\x2f\xad\x62\xd5\x2f\x93\xa9\xc3\xef\x56\xbc\x66\xd1\xf2\x30\xd6\xe1\x2a\xbb\x1e\xd1\x59\x9c\xad\x36\x8d\x91\x77\xde\xd8\xa2\xc4\xb8\x1b\xe8\x91\x26\x64\x53\xe7\xaf\x9c\x3b\xd8\xf2\x5b\x19\xb0\x2a\xc0\xef\x68\x1c\x99\x73\xbc\xa0\x1e\xc8\xfe\x95\xd1\xd4\x5f\x90\x34\x0e\xcb\x5b\x94\x12\xe3\x38\xa1\x6f\x0c\x01\xc8\x32\xef\xe3\x22\xe9\x51\x75\x4a\x53\xe4\xc5\x31\x1d\x9b\xdb\xf7\xd1\xc6\x86\xfb\x6e\x85\x13\xbe\x99\x27\x34\xdf\x90\xef\x2a\x47\x49\x29\x0f\xab\x7a\x19\x93\x17\x54\x99\x53\xf4\x8d\xcf\xab\x4a\x42\xa0\x4f\x9f\x28\xbb\xca\x32\x4d\x3e\x88\x17\x7c\xdb\x6b\xd9\x68\x9c\x7a\x12\xe5\xb2\xb2\x73\x0d\xda\x0e\x1c\x6d\x88\x9f\xee\xd3\x0d\x46\xb9\x8b\x39\x5d\x55\x33\x70\x91\x91\x18\x56\x2f\xbd\x13\x8b\x8f\x3b\xc4\xac\x0b\xfc\x53\x2e\xe6\xcd\x6c\x8e\x92\xd9\x3c\xc8\x61\x79\xa9\x3a\x0d\xd5\x65\xc1\x58\xc4\x14\xf5\xa7\xea\x9a\xe8\x9a\x7e\xeb\x20\x77\x5d\x8e\x83\x09\x6d\xfb\x88\xb3\xb7\x87\x91\x15\xee\xf2\xc9\x46\x8d\xbf\x05\x78\x65\xe9\x5b\x62\x96\x51\x23\x2d\x69\x53\x50\x7e\x71\x05\x6a\x24\xea\xae\x51\x80\xbc\x73\x6d\x63\x81\x5e\x7b\x13\x4b\xc0\xbd\xa6\x96\x73\x25\x5a\x8d\x65\xbd\x3f\x6e\x2d\xb7\xbb\xfd\x76\x7f\xb4\x03\x89\x0d\xfa\xdb\xfd\xde\xf6\x78\x7b\x7c\x52\xe7\xa6\x78\xa8\x9a\x3f\x48\x3a\x3c\xfb\xc8\x0a\x28\x78\xfb\xc2\xb3\xf9\x12\x65\xa5\x20\xa3\x61\x6d\x56\x5f\xf3\x8a\xe6\x98\x7a\x5f\x69\x55\xe5\x91\xcf\x13\xc9\xa7\x6b\x4f\x19\x3d\x66\x03\x9f\xd0\x6b\xcc\xe1\xeb\x0d\xe0\x60\x2b\xa3\xc6\xd4\x9b\x07\x69\x86\x6b\xda\x44\x2d\x38\x98\x4c\x33\xcd\xf0\x23\x8b\x39\x6f\x25\x10\x70\x44\x63\x78\x95\x4c\x3a\xca\x18\x16\x32\x45\xe6\xd5\xa2\x1a\xf9\x61\x9c\xb2\x19\x66\x49\x21\xac\xea\xde\xe1\x2c\xa7\xbe\x0d\xc1\xd4\x31\x41\x8d\x3a\x8f\x5b\x27\x68\x6f\x0f\xc9\xb9\x87\x7e\xfc\xd1\x6c\xf7\xb8\xcd\x60\xf8\x9c\xf4\x99\xa0\x9e\x2d\xe9\x01\x86\xdd\x32\xd2\x25\x8c\x35\xf9\x8d\x16\x99\x2b\x4f\xa7\x81\x7a\xf5\x02\xef\xba\xe4\x8c\x6d\xd1\xe1\x28\x48\xd6\x61\xc3\x5b\xf5\xcf\xa1\x81\x96\x79\x6a\x6d\x81\x6b\xa7\x3a\xed\x7e\x35\x41\xe1\xdc\x1a\x79\xb6\x41\x0d\x65\x77\xa2\xab\xe6\x85\x67\x45\x7c\x12\x9e\xa7\xc1\x7c\x0e\x7a\x64\x90\xb3\xe6\x55\x93\x09\x0a\xc8\x4a\x9f\x29\xb7\xd2\x0a\x67\xaf\x76\xd5\xc7\xba\xca\x26\x2f\xfc\xb8\x3e\x55\xbd\x40\xb2\xf6\x61\x8f\x50\x7a\xb8\x8e\x5f\xa4\xd5\x73\x1b\x81\x4a\x2d\x23\x96\x5e\x08\x8d\x43\xca\x35\x62\x83\x21\x0f\x76\x1c\x1b\xa7\xa2\x10\x51\xe6\xed\x45\x40\x68\x60\xa9\x6a\xca\xc0\x16\x06\x95\x62\xc7\x0e\x64\xdc\xd8\x6d\xba\xab\xdc\x50\x95\xc6\x27\xc7\x56\xa7\xe0\xf6\x39\x6b\x9a\xfa\xa0\xb0\xdf\xf2\xde\xf9\x37\x12\xc3\xc5\xbd\x84\x3d\xfe\xb2\x0b\x18\x99\x96\x6e\x8b\x8a\x3d\xad\xc4\xfd\x4a\xdb\x1a\xa1\x5d\xb5\xf4\xec\xc2\x6e\xae\x41\x19\xa4\xc6\x34\x27\x7c\xd6\xc6\x1b\x62\xb6\x79\xb4\x81\x02\x63\x87\xe3\x72\xac\xff\x16\xeb\x7a\x21\x74\x56\x8a\x9e\xf3\xcc\xe5\xbf\xae\x44\x37\x48\xe4\xe5\x13\x57\x00\x34\xe7\x9d\x55\x4b\x2d\x91\x37\x33\x44\x80\x04\x46\xec\x3a\x9a\xc9\x3e\xd0\x27\xeb\x84\x23\x60\xab\x16\xe6\x6f\x44\x24\xae\xb8\x98\xeb\x5b\x8f\xaa\x2f\xa7\x45\x8b\xb6\xb6\xbe\xda\x80\xdc\xb4\xe8\xf8\x44\xd8\x4a\xd0\xd6\x8c\xce\x1c\x20\x8a\x8d\x90\xf1\x8b\x0d\x43\xad\x82\xb2\x22\x38\x10\xb5\xc1\x84\x3d\x50\x42\xb2\x57\x0e\x60\xc5\x16\x68\x7a\x58\x3b\xa0\x15\xbb\x20\x61\xbd\xb1\x63\xbb\x76\x59\x79\xdb\xc2\xce\xa1\x33\x31\x70\xc2\xf0\xa5\x1e\xcb\xa0\x1b\x5b\x9e\x54\x06\x10\x2b\x94\x71\xd0\xa4\x3c\x42\x6e\xef\x6f\x71\x9d\x32\x02\xb4\x88\x48\xc7\x9f\x61\x6d\x92\x51\x95\xcb\xc5\x34\xbf\x3d\xef\x10\xd3\x9c\xed\x58\x18\x05\xe5\x46\xfd\xda\x22\xfb\xba\x51\x34\xd7\xa5\x6b\x5c\x52\xbc\xb1\x0b\x3c\x11\x06\x3e\xc3\xaa\xc2\x2c\x0e\x8a\x69\x41\x9d\x4c\x46\xc5\xea\x4a\xc1\x4e\xbf\x61\xff\xaa\x22\x2f\xa5\x89\xab\x39\x26\x29\xec\x05\x43\x1d\x3c\x6d\x11\xd3\xa2\x2e\xd2\x6e\x91\x6b\x93\x22\x64\x34\x83\x8f\x73\x99\x10\x4d\xac\x6c\x8d\x71\x8a\x35\xb3\xaf\xf4\xf3\x17\xb0\x31\x05\x59\xb6\x98\xe1\x50\x3f\x4f\x0c\xa6\x29\x0e\xc2\x0b\x65\xbd\xd3\x36\x64\x8b\x98\xa6\xad\xac\x10\xd1\x6c\x35\xb1\xe7\x96\x5f\x2b\x6d\x9a\x88\xe0\x02\x17\xf5\x34\xc3\x2b\xcb\x7a\xbf\xbd\x68\x11\xaf\x5a\xd7\x17\xd4\xb8\x2d\x96\xa7\x26\xa4\xd7\x9c\x0b\x90\x60\x7e\xb7\x0c\x78\x6f\xd9\x94\xd4\xd9\xc3\x0a\xbb\x52\x79\xb3\xd8\x35\xea\x24\x2c\x09\x61\xc3\x7d\x42\xa8\x78\xb2\xa7\xaa\x79\xb0\x81\x0a\xad\xa3\xac\xb6\x02\xa3\xa8\x65\x99\x70\x9e\x90\xbc\x70\xbb\x48\x94\x1d\x99\x7c\x0c\xc7\x70\x5e\x42\xff\x5b\x7c\x58\x52\xe6\x85\x61\x1f\x98\xbc\xa0\xb5\x93\x56\xaa\x9d\x93\x3c\x25\xd5\xc3\x99\x3e\x69\x8c\xcc\xe5\xc3\xdf\xb9\xc1\x60\xce\xe2\x05\x55\x37\xc7\xf2\x12\xcc\xf3\x82\x3d\x80\x9e\x42\x9a\x81\x8a\x8b\x6f\x85\xc8\x40\xe5\x98\xfa\x56\x44\x31\xf3\xe4\x65\x7e\x00\xcc\x65\xe6\x14\xc7\xe0\xcc\x5b\x5c\x9b\x88\x52\xee\xa9\x8c\x86\xce\x2e\xae\xcb\xb6\x19\x80\x09\x4b\x51\x92\x1e\xa3\x7e\x0f\x5c\x8e\xe1\x03\xf7\x9f\x3d\x1c\xa3\x64\x16\x11\x1d\xa1\x81\x02\xfa\xe9\x3c\x9a\x4e\xd1\x10\x8b\x06\x43\x94\x06\x71\x98\xcc\xa6\x17\xd7\xb4\xb9\xa7\x5e\x13\xac\x9b\x1a\xe8\xf0\xf7\x06\x0c\x29\x69\xfc\x33\x48\x21\x3a\xc8\xa1\x2d\x82\x14\x6e\x6c\xe2\x25\x1e\x2d\x72\x5c\xdb\xe0\xd1\xa8\x36\x1a\x2c\x71\x47\x83\xb9\x6f\x79\xd4\xa2\x6b\xaa\xbd\x81\x36\x48\x77\x90\xff\xdf\xf0\xef\x99\x69\x35\xaa\x74\xe3\xdc\xdc\xe0\x2c\xda\x60\xdc\x45\x0d\x9b\x6e\xa7\x7e\x3a\xcc\x6c\x94\x3d\x86\xea\x1f\xbc\x47\x49\x96\x11\x99\xd6\x53\xeb\xf7\xb6\xac\xb4\xe6\x8e\x6b\x75\x74\x6a\x2b\xf3\xda\xd6\x56\x68\xbc\x59\x9a\x78\x40\x1a\x70\x45\x8c\x3b\x99\x06\x99\x4d\xa4\xcb\x7a\x93\x25\xf2\x56\xfa\x03\xf0\x77\x06\xac\x25\xbc\x99\x17\x63\x00\x7e\xd3\x96\x99\x5c\x24\x83\x66\x06\x72\x9e\x4c\x96\xf7\x39\xfa\xc9\xb6\x67\x6b\xa9\xa1\x65\x0a\x67\xf7\x65\xa9\xb7\x4c\x95\x5a\x71\x33\x2e\xb7\xd4\x42\x8b\x5e\xcf\xaa\xed\xb2\x0c\x68\x26\xee\x90\xc9\x65\x2e\xf2\x0c\x91\xdc\x10\x75\x79\xd4\xaf\xf5\xed\xe1\x8e\x28\x71\xc2\x20\xee\xfe\xe6\xb2\x70\xdd\xa0\x7d\xfc\xc5\xd3\x83\x4b\x44\x96\x4f\xee\x41\xe9\x5a\x85\xa5\x96\xc7\x85\x6d\xf1\x12\xb7\x92\x55\xdc\x41\xb0\xff\xf2\xc3\xc7\x70\x3c\x50\x96\x67\x85\x43\x56\x34\x8f\xb3\x2b\x55\xab\xac\xcb\x5f\x87\xbd\xbc\x50\x3b\xf8\x0a\xcc\x11\xdf\x88\xd9\xdc\x31\xf9\x2a\x59\x92\x37\x78\x57\xfb\xc2\xca\xde\x7c\xc3\x0d\xf4\xcf\x0d\x5b\xb0\xe5\x72\xf4\x99\x0c\x0e\xc6\xea\x9a\xe4\x3e\xe3\xae\x4b\x77\x21\xd5\x13\xb5\x85\xab\x2b\x0a\xf6\xb4\x7b\x85\x8e\xc1\x9e\xe9\xb2\xe7\xbb\xdd\x49\xd5\x58\x4a\x9b\x45\x52\x13\x96\x58\x0d\x83\xa6\x33\x24\x81\xd7\x30\xaf\xd9\x4b\xfc\xc7\x19\x6a\x00\x08\x6b\x7c\xf4\xf6\x15\x3b\xbe\x85\xc6\xab\x68\x49\x93\x81\x40\x01\x67\x97\x2a\x7b\x6b\xea\x98\xa9\xd5\xee\xb3\x9b\x38\x77\x7c\x57\xb0\x07\x7f\x01\x79\x7c\xcd\x06\xe2\xaf\x5d\x30\x7f\x8d\x76\x62\x97\x30\x5c\xd5\x50\x7c\x25\xc1\x78\xed\x28\xda\x86\xe2\xeb\x12\xdc\x15\xed\xc4\x9f\x5d\x76\x7f\x76\x63\xf1\xe7\x5f\x2a\x1a\x9a\x6f\x8f\x67\x87\x76\x7d\x6b\x47\x25\x7b\xb8\xff\xfc\xc2\xb5\x74\xa8\xfd\x5b\x71\xf5\x28\x32\x90\x4b\x53\x9e\xc8\x74\xa9\xa6\xb4\x64\xf9\x2b\x2f\x4f\x1a\xdb\xdd\xaf\x35\x29\xe5\xb5\xe7\xa0\x5c\x35\xf7\xa4\x96\x73\xd2\x42\xcc\x4e\x3f\x69\xa4\x9d\xe4\x05\x3d\x89\x27\xc1\x3e\x2a\x2b\x17\x3f\xf5\xe4\x93\xaf\x82\x7c\xd2\x40\x8e\x14\x94\x72\x7b\xfd\x32\x19\x05\x53\x34\x4f\xa6\x17\xe3\x68\x8a\x92\x31\xa2\x8b\x16\xdb\xc5\x3b\xb6\xbc\x2c\xb6\xfd\x9e\x0e\x68\x34\xac\x09\x26\xf1\xfa\x80\xbc\xbf\x7c\x68\xc7\x0e\x52\x7c\x2d\x87\x1f\x2c\xa1\x06\x3e\x82\x8b\x21\x19\x41\x93\x89\x0f\x9a\xf3\x34\xc9\x13\xf2\x09\xed\x91\xdd\x87\x09\xc0\xca\xa1\x3d\x14\xe3\x73\x82\x40\x71\x0d\xf1\x62\x3a\xf5\x4c\x14\x81\x81\x9c\x26\x4a\xbc\x23\x57\x24\x4f\x3e\x26\xc5\x46\x6e\xaf\x61\xfb\x65\x34\x4c\x83\xf4\xa2\xcc\x46\xae\xe4\x07\xf5\x56\x05\xd9\x42\x99\xd5\x93\x28\x17\x9c\xe4\x60\x8a\xa2\x78\x82\xd3\x48\x0b\xe0\xaa\x45\x74\x30\xf3\x8c\xda\x11\x46\xed\xe1\xac\x10\xf6\x8f\xc7\x18\x86\xeb\x71\xe2\x9e\xc1\x24\xc8\x39\x42\x2c\x94\x07\x55\x83\xac\x5d\x25\x42\x45\x71\x00\xb9\xde\x95\x9c\xe1\x34\x8d\x42\x9c\xa1\x37\xd4\x20\x12\xe1\x8c\x0a\xf0\xf9\x05\x8a\x62\x96\xcd\x58\x22\x50\xa1\x05\x33\x57\xc3\xbb\x55\x2b\xb0\x74\x2e\x0f\xdc\x2a\x51\x03\xc9\x40\xbd\xba\x78\x47\x59\x58\xd3\x6e\x0a\x5c\x12\xd5\xfb\x62\x11\x9e\x86\x03\xb4\x01\x99\xb2\x36\x4c\xc7\x11\x77\x9b\xe4\x6f\x86\xf3\x49\x12\x16\xde\x91\x57\xa0\xcd\x18\xf9\xae\x8b\x67\x08\xd9\xe1\x0c\x29\xfa\x9a\x43\x36\x1f\x57\x6f\x10\xc3\x79\x70\x1e\xdb\x5f\x14\x41\x42\x94\x05\x99\x56\xcf\xe7\x4e\xfc\x78\x71\x3a\xc3\xb1\xc3\x75\x98\xac\x28\xc5\x58\x20\x29\x7c\xd8\xbe\x4b\xc2\x3b\xd3\x3f\x38\x11\x60\x6e\x52\xfc\xea\x57\x24\x2e\x96\xa6\x6e\x9c\x7e\xe0\x4d\x4e\x82\xec\xf5\x79\xcc\xd8\xfe\xa2\xb6\x41\x4a\x6e\xd4\xc5\x9d\x27\xf2\x08\x8b\x20\x87\x27\x2f\x4a\xe9\xa0\xa5\x0a\x87\xdb\x51\xea\xff\xca\x16\x73\xa2\x6a\xc5\x51\xde\x0c\x88\x72\xca\x96\xbe\x20\x3d\x5d\x90\xde\x75\xf6\x07\x72\x64\x50\x28\xe8\x27\x79\xe3\x36\xdd\xc8\x90\x94\xe8\x11\x35\x0a\xf3\x41\xa7\xb3\xd4\xae\x41\x25\x50\x5b\x0f\x3c\xcb\x0e\xe2\x86\xf1\x31\x4e\x71\x3c\x22\x0d\x40\x3f\xcf\xcd\xf9\x6a\x75\x03\xd3\x8b\x5d\x15\x7a\xd7\x19\xe4\x4a\x8d\xe1\x12\xaa\xcf\x60\xa6\x64\xaa\xd0\xa4\x26\xef\x45\x4c\xfb\x01\x06\x90\xce\x5a\x3b\x04\xea\x63\x3e\x1e\x32\x83\x4d\xad\x2e\x8e\xe1\x88\x2a\x0d\x21\xe5\xa0\x92\x5a\xfd\x5b\x96\x95\x3c\x62\x39\xda\x63\x62\x93\x9f\x59\x94\xca\x22\x0a\x57\x2c\xf1\xec\x46\x60\xca\xc9\x38\xd9\xf6\xcc\xe5\x11\xd4\x95\x39\xc2\xdf\xe9\xf3\xc4\xcb\x35\x1c\x7c\x1d\xb6\x29\xba\xae\xee\x19\x2b\xf4\x9a\x09\x33\x96\x24\x00\x58\x0a\x5c\xe8\xc3\x10\x65\xc9\x0c\xd3\xd4\x53\xe8\x7c\x82\x63\x74\x91\x2c\x52\xe1\x66\x1f\x10\x75\x96\x56\x7e\xcd\xb1\x73\xaf\xba\x0a\x9a\x17\x9d\x8b\xd6\x32\x44\x05\x40\xb3\x69\xf7\x8c\xe8\xfa\x35\x97\xbb\x52\x34\x2a\x8d\xe9\x7e\x32\x27\xca\xce\x5c\xea\x3d\x4c\xdf\xb9\x82\x3a\xa5\x54\x06\x16\x26\x4d\xa7\x9a\x81\x25\xf2\x9a\x87\x94\xcd\x4e\xba\x7e\x56\xd5\x5f\xd6\xec\x77\x68\x44\x3b\xc4\x16\xf4\x39\xe7\xb8\x88\x78\xc8\x0f\xdb\x7e\x0d\x66\xe0\x34\x51\x52\x0e\xb1\xa5\x5a\x82\x99\x8b\xb5\x5a\x61\xbd\x70\x89\x25\xc3\x79\xac\x82\x9f\xa0\x3d\xa5\x7d\xfd\xd3\x0a\xa9\x8b\x3c\x8b\xec\x33\x74\x9e\xc4\x1b\x39\xd5\x9f\xf9\x75\x47\x25\x78\xe1\x34\x49\xe6\x28\x18\x26\x67\x8e\x65\xb0\x98\xe4\x0d\x5e\xdb\x86\x9f\x60\x90\xa2\xa2\x55\x95\x4e\xf1\xb6\x42\x5e\xad\x4a\x93\x47\x6c\x4e\x80\x52\xf0\x7f\x59\x65\xde\xb8\x16\xbe\xd1\x34\x89\xf1\x0d\x48\x3c\xa8\x17\xed\xc9\x35\x04\x5e\x54\x58\xc9\x08\x58\xe9\x42\xa6\xe6\x22\xd1\x95\x23\x2e\x4f\x9d\xfe\x64\xee\x3d\xb2\xf3\x74\x3f\x46\x01\xdc\xbc\x35\x62\x11\x16\x46\x16\xb2\xe2\xbc\x17\x57\xe1\x0a\x4f\x23\x9c\x1f\xf4\x70\x88\x59\x74\x1a\x47\xe3\x68\x14\xc4\x39\x0b\x28\x19\x51\xea\xa1\x4a\xda\x8e\x6b\x9b\xfc\x87\x72\x83\x98\xee\x95\xd5\x37\xd7\x10\x36\xc6\x6e\xde\x64\x0b\x4f\x18\x7c\xd5\xf5\xaa\xa4\xaf\x91\xd3\x2d\x4c\xf4\x94\x71\x82\x51\xda\x69\xf8\xda\x52\xbd\xa8\xf7\xb3\xb5\x85\xdd\xf2\x85\xf1\x58\xff\xab\x57\x70\xdc\x5a\xb6\x5a\xad\x76\xab\xd3\xea\x36\x50\x6b\xd9\xea\xb5\xb6\x5b\xfd\xd6\xce\xc9\x8d\x55\xdc\x40\xfd\xca\xa1\x57\x58\xf8\x3a\x3e\x22\xd6\x8c\x3d\x67\x17\x82\x61\xba\xf2\x07\xfa\xdf\x4f\x9f\x20\x66\xaf\xa1\x6a\x8c\x51\x4d\x0c\xef\x0f\x7b\x0e\x43\xa1\xfa\x07\xb5\x2a\x4e\x43\xfc\x67\x65\x67\x52\xb3\x02\xca\x1e\x53\x1c\x9f\xe6\x13\xea\x7a\xe4\x95\x22\xd5\x63\xc6\xc8\x89\xb2\x5a\xa4\x98\x67\xf1\x28\x09\x09\xbf\x63\xfa\xc3\x64\x77\x78\x5d\x1c\xfb\x53\x30\x00\x8e\x47\xcd\xe7\x78\xe9\x6f\xb3\x2c\x80\x4c\xa5\xd9\xbe\x72\x70\x17\xc9\xac\x15\x22\xbb\x38\xe2\x1a\x94\x85\x75\x71\x14\xd1\xba\xe4\xb7\x7c\xbc\xbb\x52\x34\x17\x36\x14\xde\x58\x2e\x7c\xa8\x3e\x7d\x42\xcf\xf1\xb2\x30\x7c\x4b\x09\x03\x8d\x82\x1c\xc7\x6c\xcd\xd7\x39\xc8\x23\xfc\xfd\x8c\xa4\x9c\xc3\xca\x0e\x7f\xc7\xa4\xa1\xc2\x99\x90\xe6\x77\xd5\x73\xdd\xaa\xb8\x54\xe1\x0d\x81\x5d\x9b\xc7\xcf\x10\x6f\x3a\xfe\x94\x66\x00\x69\x0a\x25\x1a\xd8\x79\xb5\x70\x24\xa4\x63\xff\xb0\x04\x96\xe3\xae\x62\x3e\x09\x44\xa8\x03\xc9\x62\x7e\xe8\x28\x3b\x92\x32\x46\x93\x39\x9e\xca\x8f\x74\x91\x44\xeb\x97\x65\x2c\xa2\xf6\xa7\xc1\x6c\x8e\xf0\x12\x22\x49\x0e\x23\x93\x38\x7a\xae\x4a\x60\xec\xd3\x06\x7a\x9e\x3a\x72\x05\x49\xd1\x10\xff\x97\x27\x50\x3a\x94\x27\x2a\x69\x8c\x61\xa9\x45\x41\x8e\x02\x94\x47\x33\x87\xc6\xed\x0a\xc9\xae\x92\xeb\x4f\x0a\xa1\x76\x0e\x01\x45\x7b\x04\x3d\x36\x0a\xc7\x11\x8f\x8a\x4d\xfe\x53\xeb\xf4\xd0\x26\xaa\x45\x14\xe3\x9f\xd0\x6e\xbd\x2e\xa2\x65\x7b\xb5\x78\x5a\x8f\x4e\xf1\x7d\x14\x89\x70\xdb\x9f\xf6\x64\xd3\x8f\x1e\xf1\x36\x1c\xf0\xa2\xd1\x0a\x8a\xbf\x77\x59\x52\xfb\x94\x4e\xae\x2b\xf5\xa9\x3f\xca\x7d\x55\xf2\xf7\x90\xdd\xd9\x55\x32\x06\xdb\x5c\x28\x16\xdb\xfb\x7b\x3a\x9a\xae\x1c\x2b\x41\x14\x07\x43\x73\xe7\xa1\x6c\x00\xaa\x8a\x53\x1a\x83\x83\x28\x81\x9a\x62\x18\xe5\x57\x55\x05\xe5\xe4\x14\xb3\xcb\x23\xa4\xc8\xe7\xaa\xa1\x7b\x1d\xa2\xc9\xd6\xa3\x5c\x71\x91\xbc\x42\xc6\x2d\x30\x1c\xaa\xda\xb1\xa8\x83\xc7\x99\xdf\x83\xa9\x43\xff\x80\xf5\xbb\x1d\xc2\xfa\x99\x26\x17\x1c\x0c\xaf\xa9\x52\x7b\xe8\x55\x90\x4f\x9a\x23\x1c\x4d\x65\xc9\x2d\xb4\x42\x44\x22\xf7\xfe\xb7\xd2\xca\xe3\x71\x47\xb2\xb6\xbf\xeb\xfa\x7d\xb2\xed\xae\xca\x0b\xd6\x7e\x57\xe7\x85\xb2\x7d\xae\x5a\x2d\xec\xd4\x28\xae\x6a\xf4\x73\x7b\xe7\xdc\xb4\x79\x84\xb9\xdf\xb7\xbc\x2e\x75\xa4\xdc\xea\x43\xa0\xa8\x0d\xe3\x68\x3a\xe5\x61\x67\xd9\x35\x09\xd8\x6f\x95\x2b\x25\x7c\x33\x17\xbb\x36\xbd\x6a\x55\xde\x2b\x3e\x95\x46\x99\xd5\x54\x89\x51\xae\xcb\xf9\xac\xc2\x16\x8c\x5d\x05\x69\xfb\x77\x5a\x14\x42\x65\x93\xd8\xbd\xc5\x52\xc5\x83\xbd\xa1\x22\x5f\x53\xfd\x84\x7c\xf6\xfe\xdc\x1f\x65\xfe\xfd\x39\xda\x23\xff\x7a\x12\xa8\xcd\xde\xff\x4d\x96\x99\x65\x37\x08\x71\x7f\x77\x68\x86\x5f\x17\x60\x41\xf6\x11\xa9\x92\xa3\xe0\x9c\xa0\xc2\xd9\x1d\x6d\xb5\xd6\x5a\x3e\x68\xf5\x1f\xa0\x9f\x08\x09\x7f\xc3\x9a\x7e\x70\x70\x70\x50\x47\xf7\xe9\x8b\x9f\x7f\x46\xad\x65\xbb\x05\xcb\x3d\x41\xc0\xb3\xdc\x53\x12\x6b\xad\x65\xaf\xbf\xdd\xa2\x95\x9d\x9b\x95\x9d\x57\xad\x0c\xba\x17\x67\x0b\xb8\xe9\x53\x03\x34\x1e\x3d\xa2\x25\xd1\x7d\x04\x3d\x5d\x58\x9e\x95\xdd\xda\x83\x32\xec\xaf\x18\xf6\xfe\x1e\x6a\x35\xb7\xbd\x30\xd0\xa7\x0c\xf4\x27\xea\x6f\xc3\xb9\xad\x8e\x7e\x46\xcd\x6d\xf4\x5f\xa8\x8d\x06\x68\xb3\x5d\x45\x45\xb1\x24\x87\xae\x6e\x34\x50\x3a\x0a\x46\x13\xcc\xb2\xeb\x94\x2b\x1c\xa4\xe4\x7b\xc2\x8f\x69\xad\x46\x8b\x92\xad\x92\x86\x24\x59\x4d\x94\xce\x70\x1f\x31\xd1\xa2\x7b\xe8\x7d\x5a\xa3\xf0\xc0\x90\x3b\xc3\x1d\x07\x4d\xe7\x32\x87\x4f\x4d\xc0\xcb\xfa\xd1\x27\xd4\xaa\x18\xd6\x3c\xc6\xe7\xca\x65\x27\x38\x75\x64\x06\x90\x98\xa7\xef\xb9\x63\xf4\xa4\xfb\xf2\x29\xdb\xda\x97\x39\xd2\xe0\x78\x04\x8e\x34\xf4\xbf\x6e\x47\x9a\xe7\x78\x69\x5b\x02\x5c\xd5\x11\xc0\x3d\x5a\x69\x93\xfe\xae\x16\x7f\xd3\x34\x5f\x4c\xf0\xb2\xb2\x09\xa3\xc2\xce\x73\xc5\xa8\x9a\x95\x5a\xbf\x2e\x41\x3e\xc1\x4b\x3b\x84\x26\xeb\x3f\x65\x6b\x5f\x9e\x48\xc8\x19\x38\x73\xdd\x6d\xea\x79\xe5\x9d\x67\xb6\xea\x36\x92\x8e\xba\x5d\xd1\x04\x2f\xf7\x27\x41\x5a\x39\xcf\x56\x56\xba\xa1\x83\x1c\x69\x11\xdd\xc8\x9d\x5f\x71\x13\xc7\xb1\x63\x73\x1c\xaa\x25\x95\xf4\xea\xd2\xec\xd3\xee\xd7\x5d\xf2\xce\x55\x94\xb4\xd3\x1a\x17\x97\xf5\x08\x08\x51\xdd\x87\x24\x8a\x6b\x1b\x1b\x6b\x44\xdc\x54\x38\x9c\xce\xb7\x55\x2c\x3d\x7c\xa6\x50\xc6\xad\x3e\x61\x3c\xca\xd3\x97\xd7\x9a\xf8\x64\xa3\x3e\xdb\x62\x3e\x56\x8f\x94\x49\x8b\xac\x96\x28\x85\x96\x79\xc9\xb7\x2e\xf4\x91\x6d\x65\x56\x99\x35\xe7\xab\xa4\xa6\x53\x1b\x65\x4b\x68\xa7\x20\x3f\x26\x9d\x2d\x5d\xb0\x4c\x00\xd1\x87\x71\xce\x88\x6d\x66\x8b\x61\x96\xa7\xb5\xa8\x81\x3a\xf5\x06\x24\xe1\x93\x26\x0b\x32\xa3\x76\xeb\xae\x0b\xb8\x2b\xaf\x79\x5a\x37\x6d\xa1\x4e\xd5\xeb\xb3\x2f\x83\x3c\x8a\xdb\xd5\x16\x2d\x06\xcb\xd7\x2d\xf1\xb8\xde\xd2\xc5\x8a\x7f\xb9\xd5\xab\x2a\x02\xd7\x35\xa7\xa6\xd0\x9e\x7b\x0d\xa3\xb8\xfc\x47\x2d\x63\xb4\x3b\xbe\xe2\x95\x4c\x41\x90\xae\x48\x74\xe8\x9a\xe3\x34\x99\x91\xb7\xfb\x49\x88\x61\x91\xaa\xba\x20\xa9\x15\x5e\x61\x4d\xd2\xf8\x76\xfd\x65\x49\xb0\xe3\x4a\x93\xe1\xab\x5e\x9c\xd8\x2c\xa2\xeb\x93\x3a\xdd\xaa\x2f\x51\xa2\xd4\x6a\xab\x94\x28\x26\x16\x2a\xf1\xe6\xa6\xd7\x2a\xa3\xe9\xb2\x5c\xce\x91\x62\x45\x97\xd4\x36\x47\x8c\xa1\x1f\xe7\xb5\x88\xcf\x09\x73\xa9\x72\xdb\x16\x57\x5e\xaa\x0c\x84\xab\xae\x54\xbf\xbd\x3b\xd8\xdc\xad\xb6\x50\xfd\x96\x8f\x77\xc5\x32\xc5\x1e\xd6\x5b\xa4\x68\xa3\x5f\x6e\x8d\xaa\xd8\xfe\x75\xcd\xac\x45\x3e\xde\x75\x2f\x50\xa4\x17\x6f\x72\x79\xca\xd3\x8b\x02\x07\xa3\x10\x93\x2d\xfa\x6f\x6f\x0f\xf7\xf9\x4d\xa7\x1a\xce\x46\xc1\x1c\xd7\x0a\x16\x4e\x5b\x2c\xa3\x51\x90\x8f\x26\xa8\x66\xa7\x8f\x06\x14\x26\x69\x72\x0e\x7c\x0b\x19\x57\x6a\x1b\xaf\x82\xe9\x38\x49\x67\x38\x64\xc3\x10\x06\x79\x60\xa7\xa0\x5b\x5d\x80\xab\x83\xba\xbe\xfc\x66\x63\xb5\x0a\x9b\x7c\xd5\xc2\x1b\x38\x8c\x8a\x6e\xc9\x86\xd5\x05\x37\x2b\xe3\x73\x06\xd0\x96\x86\x45\xcc\xb8\x87\x7a\x08\x68\x7c\xc5\xeb\xa9\x57\x0e\x40\x23\x52\xf0\x42\x2e\x4c\x1c\xb2\x6c\x66\xca\x2d\x74\x6f\x26\x5e\xc5\x4f\xf6\x42\x49\x89\x36\x5b\x64\x39\x1a\x62\x14\x91\x1e\x9d\xe1\x38\xa7\x79\xd6\x02\x38\x5e\x4f\x71\x2e\x6e\x2c\x54\xca\xed\x6b\xe4\xe9\xd4\x8d\xfb\x34\xc7\x21\xbd\x5a\x25\x13\xc4\x7f\xc4\xf3\x1c\x2d\xe2\x39\x4f\x1a\xa8\x67\x07\x55\x7c\x5a\x5a\x0e\xe9\xfb\x84\xf5\x03\x64\x1a\x7c\x2c\x7a\x41\xdc\x12\xf3\x7d\xae\xe8\x06\x07\xd9\x5d\x99\x37\x8f\xd1\xd3\x1b\x2c\x89\x36\x4b\x62\x9a\x27\x28\xca\x33\x7e\x2b\x06\x11\x0e\xbe\xea\x19\xd3\xd0\x89\x3c\x4d\x88\xeb\x3f\x64\xaa\x94\x75\x97\xb9\xf7\x21\xf0\x52\x76\xf9\x0c\x40\x06\x4e\x76\x53\xd1\x58\x59\x4d\xa1\x44\xe1\xe3\xa7\x41\x1e\x70\x65\xbd\x55\x55\xd3\x7c\x1c\x86\x19\xb4\xc1\xf3\x82\x7b\x7a\x9a\xf1\x42\xf5\x45\x51\x04\x59\xb0\x32\x8f\x33\x67\x17\x44\xe7\x3c\xbb\x04\x40\xe5\x25\xbd\x53\x12\x28\x1e\x94\xd4\x9f\x18\x24\xde\xcd\x0c\xe6\x7b\x8a\x4e\x6d\xc3\x96\xf7\x95\xca\x95\xaf\x8d\x0c\xb2\x4a\x32\x73\xfb\x7a\xbd\x4c\x47\xa7\x06\x14\x55\x3a\x88\x05\x13\xd5\xab\x52\xef\x38\x03\x1b\x95\xc4\x89\x64\xbc\xa6\x08\x65\xc0\xb0\x3c\x52\xda\x63\x20\xcd\xc7\xbe\xdc\x95\xc8\x55\x99\xc5\xb4\xf7\xf7\xf4\x24\xe9\x55\x39\x98\xe7\x3a\xcd\x50\x70\x16\x44\x53\x88\xd8\x45\xe5\x02\x08\x3b\x3f\xd7\xbc\x53\x2e\xab\x44\xf1\x59\xf2\x11\x67\x66\x92\xe1\x1a\x4b\x0e\xdc\x40\xe7\x93\x68\x34\x71\x8a\xea\xe1\x45\x81\xa8\xb6\x5b\xe5\x13\x65\x98\x24\x53\x1c\xc4\x97\x28\x4c\x0e\xa6\x8b\x6c\x82\xfe\x98\xe0\x9c\xc6\x33\xe1\xb9\x68\xe1\xba\xd6\x3c\x48\x41\x50\xb0\x57\x52\x6a\x0b\x71\xbd\x46\x38\x10\x21\xe9\xa1\xc7\xaf\xbe\xcc\x8b\x0a\x9f\x52\x46\xf2\xcd\x19\x9e\x2a\xd7\x17\x97\x63\xc5\x6a\xdc\x99\x82\xf5\x58\xab\x14\x54\x9b\x7c\xb4\xc3\x57\xb4\x99\xb0\x29\x22\x99\xdb\x61\x2d\x21\xaf\xb9\x73\x1a\xf4\xac\xcf\xac\x42\x3e\x2a\x8e\x66\x3e\xbe\xe7\xe0\x52\x57\xd8\x33\x52\x32\x17\x01\xf3\xda\x65\x69\x77\x44\xbf\xfd\x64\x11\xe7\x9c\xbf\x1c\xc2\x84\x54\x1a\xd3\x44\xc2\x6f\x21\x6e\xf1\x9e\x8e\xff\x96\xd1\xe4\x43\x5b\x16\xf9\xba\x9c\x61\xf0\x36\x59\xc4\x21\x5a\xcc\xe9\x85\xc2\xd1\x74\x11\x62\x83\xef\xed\x62\x06\x46\xd2\xc9\x45\xfd\x50\x3d\xb6\xad\xc0\x22\x4c\xce\x63\x15\x8f\x24\x9e\x5e\xa0\xf1\x42\x4c\x4a\x47\x24\xfd\xad\x2d\x34\xc5\x19\xbd\x54\xe9\xd6\xb5\x40\x6e\xa4\x78\x16\x44\xb1\xae\x5c\x55\xa3\x6b\x16\x2c\x6b\x1a\x5d\x70\x70\x8a\x36\x5d\x99\xd9\x1b\xe5\x47\xaa\x62\xcc\xa9\xe5\xc1\x37\xe4\xc0\xc9\x1c\x0f\xad\xf5\x9f\x90\xc2\x80\x3e\x7e\x02\xde\xf0\xb2\x13\xf9\xaa\xd3\x18\xc5\x35\xb5\xc9\x9f\x50\xaf\xa1\xf1\x99\xcb\x7d\x92\x67\xf0\x76\x31\x09\xe1\x3b\xa5\xc2\xe2\x6b\x5b\x54\xce\x53\x33\x0b\xfb\xfd\x48\xed\x01\xf1\xf6\xbe\x32\x9f\xbc\x4e\x13\x04\x33\x9c\x92\xdd\xa4\x58\x18\x36\xe5\x06\x01\x2e\x43\xba\x0b\x32\xe9\xa2\xaf\x41\x42\xaa\xb8\x72\xd5\xfb\xc6\x18\x69\x29\xb0\xa4\xc0\x87\x21\xb7\x41\x35\xe9\xab\x8a\x30\x33\x19\x96\xda\xa3\x0e\x34\x34\x49\x86\x36\xf7\xd4\x91\x2e\xe7\x4a\x1e\x5b\xb4\x08\x5b\xbf\xc1\x49\xc7\xbf\xa1\x36\x7d\x55\x67\xb7\xca\x59\x28\x0b\x2f\x79\x5d\xd1\xcb\xcd\xb3\x1a\x7e\x21\x97\xb7\xf7\xd6\x82\x28\x31\x71\x8e\x58\xa1\xc7\x9b\x2e\xc3\xc4\x4e\xd3\x93\x89\x9e\xef\xc1\x27\x41\x06\x19\x72\xbd\x3b\xee\xd2\x54\xe4\x52\x5c\xab\x77\xa0\xe8\xa0\xb3\xda\x69\xd8\x35\x9c\xa1\x24\x56\xb6\xc2\xed\x3e\xaa\x6d\xb7\x3b\xe0\xc9\x5a\x77\x6c\x8b\x9f\xd3\xc2\x7c\x1b\x2c\x1e\xdd\xfb\xe1\x6b\x89\xfa\x5a\x94\x81\xac\x30\x60\x6a\xd1\x55\x33\xda\x09\x2b\xe4\x24\x5f\x37\xba\x1d\x69\x08\xd1\x10\xc9\x65\x41\xee\x2a\xfb\x90\x88\x31\xd0\x42\xb7\x1d\x3d\x7f\xdc\xd9\xee\xbb\x2f\x89\x15\xa5\xba\x5e\x3b\xc2\x1a\x8f\xad\x56\x3d\xcc\xda\x11\x16\xe1\x3d\xfc\x16\x02\xdb\x0c\x51\xe2\x89\x2d\x2d\x29\x7c\xe2\x5c\xbf\xc9\x84\xf1\xcb\x75\x98\x48\x00\x61\xd5\xc4\xa3\x43\x78\x66\x12\x54\xad\x09\x2f\x5b\x6b\x30\xd7\x66\xd6\x1d\x8e\x85\x99\x2f\xc8\x6f\x57\xeb\xeb\xdf\xe6\x21\x88\x0c\xb5\xb3\x69\x5a\xfe\xea\x19\xfb\xbc\x11\x84\x69\xe5\x66\x1c\xe1\xca\x57\x88\xa8\x28\x62\xf7\x87\x4a\xa7\xf7\x0a\x63\xbe\x00\xbc\x6a\x1b\x0c\x29\x97\x2d\x45\x87\x2c\x37\x9d\x50\x40\x95\x51\xb4\x3e\xf0\xcc\x47\x8f\x45\x82\x19\x6c\xf4\x1a\x1c\xec\xc1\xfa\x97\x28\xe9\x04\x5f\x57\x55\xca\x3e\xd6\x56\x7f\xaf\xed\xee\xc4\x01\x4b\x72\x93\x09\x5c\xbc\x02\x12\xfd\x9a\x00\xca\x41\x4e\xf3\xc5\xb3\x92\x32\x66\x28\x8a\x32\x84\xc7\x63\x3c\xca\xa3\x33\x3c\xbd\x40\x01\x0a\x71\x96\xa7\x0b\x78\x6e\x80\x9e\xbe\x99\xc4\x23\x5c\x29\xca\x68\x45\x0e\xd5\x12\x3d\x00\x4a\x32\x20\x37\x40\xac\x6e\xb9\x20\x9d\x70\x4d\x2b\x03\xda\xe3\xec\x28\x92\x09\x79\xcc\x12\x1e\xe8\x22\x46\x2f\x28\x56\xce\xf5\x1c\x74\x25\xbe\x3f\x70\xf4\xaf\xbd\x21\x2a\xae\x06\x95\xcd\x95\x32\x05\x7e\x05\xc9\xaa\xf4\x10\x17\xb2\x07\xca\x38\x38\x27\x0f\x81\xf7\x4d\x1e\x25\xf9\xdd\x76\xbb\xb3\xd5\xed\x54\x53\xf3\x33\x66\xf1\xd1\xe2\xdf\x07\x6c\xd0\x36\x44\xe0\xa4\x28\xce\x71\x3a\x56\xbc\x85\x91\x77\x56\x70\xf9\xca\x48\xe7\x5c\x4b\x97\x5b\x16\x1f\x31\x40\x13\x3c\x9d\xe3\x94\xa8\x3f\x15\x26\xc1\x01\xc3\x8d\xdd\x0d\x36\x51\xfe\x0c\xe7\x78\x54\x67\x32\x2f\x55\x50\x52\x9b\xef\x29\x55\xcf\x81\xa4\x9a\x4b\xd9\xf2\xdb\xe7\xd4\xa2\x9a\xf3\x20\x54\xed\x3b\xdf\xb3\xe6\x85\x3b\x00\x2e\xd2\xf7\x8b\x6c\x26\xc2\x66\x51\xcf\x22\x26\x33\x5c\xea\x1c\xbe\xfa\xb6\xd1\xc9\x4f\x44\x24\x3f\x7f\xf5\x78\xff\xfa\xf9\x89\xa8\xd0\x3c\x28\x05\x69\x81\xf1\xd5\x37\xc1\x53\xcf\x67\xc1\xa8\x12\x5f\xcd\x82\xd1\x55\x78\x4b\x14\xbf\x12\x7f\x7d\xc4\x6e\x13\x92\xc2\x5f\xfb\xef\x01\x2d\x32\x0e\x94\xc9\x68\x23\xb4\xec\x6a\xcc\x56\xb8\xfd\x15\x96\xa4\x92\x3b\x0c\x04\x1b\xb8\xc4\xc0\x7e\xc8\x5b\x0c\x3c\x53\x0b\x84\xf4\x7d\x15\xe4\x13\x1a\xd6\xf7\x0e\x7f\xcf\xba\xf9\xa1\x8c\xf4\x7b\x79\xd2\xd8\xee\x7d\xad\xe1\x7d\x19\x32\x35\x1e\x8e\xb8\x7e\xed\xf1\x7e\x79\xcd\xab\xc6\xfd\x15\x18\xaa\xf1\x7f\x7d\x41\x7f\xc5\x77\x08\xfe\xeb\x0a\xa0\x6b\x1f\x51\xf0\xa8\xb1\x72\xc8\x14\x06\x50\xa2\xc1\x2a\xef\x0b\xc2\xd3\x68\xa5\x95\x2b\x30\xbe\x30\xb2\xfd\x5e\x35\x17\x2d\x06\xcb\x9d\xb4\xc4\xe3\x7a\x6e\x5a\xac\xf8\x97\xf3\xd3\xaa\x8a\xc0\x75\x49\xca\x21\xb4\xe7\x76\xd5\xa2\xb8\x7c\x07\xbe\xc4\x16\xfc\x2c\x98\x0b\xe5\x70\x16\xcc\x57\x8f\xbd\xe0\xb8\x22\x6e\x57\xe1\xf3\xca\xa4\x7d\xbe\xae\xc3\x32\xba\xbf\x87\xba\x7e\x9f\xe5\x8b\x1c\xb7\x1d\x4e\xcb\xf4\xcf\xe7\xba\x4c\xff\xbc\x0e\xcc\xbc\xe2\x8e\xac\xb8\x16\xa1\xfb\xa8\x5d\x77\xf8\x44\xf3\x2f\x55\x3c\xa3\x79\xc5\x5d\xa3\xe2\x8e\xb7\xe2\x8e\xb3\x62\x77\xcd\x79\x1a\xcd\xa7\x70\xf4\x52\xa3\xdd\xf2\xe8\x11\xdc\x9b\xf8\x44\x9f\x3b\xe4\x79\x97\x3c\x02\x0a\xae\x5a\xc4\x50\x7c\xa0\x43\x51\xfb\x80\x1e\x91\xd6\x7f\xfc\x11\x01\x36\x1f\xd0\x4f\xa8\xd5\xdc\xd9\x56\x46\xa8\xfe\x10\x7d\x28\x08\x77\xa1\x8c\x3d\xf5\x05\x9f\x05\x73\xf0\x99\x7d\x9c\xd7\x6a\x1c\x61\x20\xba\x8f\x7e\x42\xb5\x2e\xda\x44\x1f\xea\x8c\xd2\xee\xd8\x79\xdb\xc9\x8a\xcf\x60\x1b\x2e\xc2\x90\xa7\xfb\xb6\xb9\x91\x7d\x20\x28\xa1\x3d\xa4\xa0\xd3\xb7\x2e\x93\x40\x6c\x3d\x09\xee\x76\x0e\x9e\x44\x53\x8c\x6a\x2a\x9d\x2c\x5c\x80\x2f\xd6\x88\xb3\x5b\xd4\x66\x56\xa7\x99\x49\x56\xb5\xd6\x2b\xf8\xc9\x6b\x32\x79\x7d\x3f\x4b\x21\x6a\x57\x12\xf4\x5f\xb5\xab\x25\x5b\x21\xa8\x5f\x8f\xba\x94\x54\x77\xb7\x14\xa5\x56\x5c\x1c\x44\x39\xe1\x28\x2f\xde\x08\x47\xf9\x72\xb9\x6f\x41\xa4\xf8\x0c\xa7\x19\x7e\xa5\x00\xca\x57\xae\xb8\x66\x3f\xc8\xcf\x5e\xee\x2e\xac\xd4\xb5\x04\xf0\x3f\x53\xfe\x10\xf1\x43\x66\x28\x23\xb0\x50\xd2\xe8\x0d\x1f\xf3\x89\xcd\x7c\xf3\x3f\xd4\x4f\xd0\x1e\xfa\x50\x2d\x56\xa7\x43\xa4\x1c\x9e\xc6\x49\x8a\x3f\x9b\x54\x51\xaa\x3c\x8c\x43\xb8\xe7\x2c\x87\x3b\x22\x6f\x5e\x8f\xcb\x64\x86\xd2\x0e\xad\xe3\x87\xbd\x3d\xb4\xd9\x2e\x91\x49\x2a\x87\xa9\xa5\xd7\x12\xc4\x4e\x95\x20\x15\x69\x2f\x33\xfc\x32\x49\xe6\x72\x4a\x34\x4c\x1c\x1a\xca\x88\x6a\x2a\x87\x71\xe2\x19\xcc\x07\x68\xe3\xf1\x93\xfd\xa7\xcf\x0e\x7e\x79\x7e\xf8\xef\x17\x2f\x5f\xfd\xfa\xfa\xcd\xff\xfd\xf6\xe8\xdd\x6f\xbf\xff\xf1\xe7\xff\xf3\xbf\x83\xe1\x28\xc4\xe3\xd3\x49\xf4\xe1\xe3\x74\x16\x27\xf3\xff\x49\xb3\x7c\x71\x76\xbe\xbc\xf8\xbb\xd5\xee\x74\x7b\xdb\xfd\x9d\xdd\x07\xf7\xb7\xf6\x58\x84\x5b\xb1\xb5\x13\x93\x76\x65\x54\x65\x17\x7b\x6e\xa5\x48\xcf\x0d\xcd\xc3\xd4\xa5\x0a\x19\xed\xb8\xae\xa9\x90\x91\x8e\x3c\xeb\x0d\xbb\xd8\x95\x11\x25\x49\x99\x1e\x92\x9b\xd4\x0b\x2c\x68\x13\xb5\xeb\x27\x70\x7b\x45\x2a\x4c\x1d\x9b\xb9\x78\xa5\x9d\x2a\x95\xd6\x4f\xf8\x02\xaf\xaa\x61\x8e\x5a\xa9\x42\x14\x6b\x91\x7b\x3e\x11\x65\x06\xd0\xff\x44\x5b\x54\xef\xd6\xc4\xc5\xc1\x7b\x10\xeb\xe2\xfb\xf7\xb5\x0f\x82\x6d\xc5\x0f\xc6\x91\x56\x6c\x49\x67\x58\x84\x4b\x99\xbb\xc7\xdc\xe4\x2b\x6b\xc4\x43\x6f\x66\x9f\xed\xdb\xad\xff\xed\xd6\x5f\x6c\xfd\x7f\x7b\x77\xb0\xd9\xee\xa3\x27\xcf\x2a\x5f\xd0\x6a\xf7\x9f\x3c\x53\xef\x68\xb5\xfb\xfa\x13\x7c\x5d\xff\xd2\x16\x45\xe6\xcb\x5e\xdc\xaa\x88\xc3\x35\x5e\xde\x6a\xf7\xbd\xb7\xb7\xda\xfd\xef\xc0\x22\x50\x7d\xb3\x0e\x9d\x71\x95\xbd\xba\xfb\xbe\x3f\x78\x46\x25\x21\x7e\x93\x44\x71\xee\xbb\x64\xdc\xee\x7b\x2e\x19\x3b\x37\xd3\x12\x53\xff\x2d\x63\xd1\x64\xd5\xab\xc6\x4a\xa5\x57\xd8\x41\x99\x4c\x7c\xa5\xcb\x6a\xc0\x9b\xab\xce\x8d\xaf\x7a\x1b\x45\x67\x95\xb8\xb2\xc6\x27\xdf\x4a\x77\xd6\xa0\xd0\x6a\x77\x8d\x79\x29\xa1\xdf\xf2\x17\x37\x7d\xd3\x58\x6f\xb8\xda\x45\xe3\x36\xe8\x3e\x02\x43\xfd\x9a\x31\x51\x81\xe4\x64\xe9\x90\xc9\x62\x04\x61\xf3\x73\xb8\x4f\xcb\x31\x7a\xe7\xa7\xea\xa1\x30\x18\x5b\xbe\xac\xb0\x86\x29\xeb\xd4\xcb\x2b\xaf\x53\x2f\xbf\x82\x75\xaa\x0a\x0e\xd7\xbd\x4e\x39\xa7\xd3\xcb\x67\xb7\xcb\x94\xf8\xbb\xb6\x65\x2a\x3b\x0f\xe6\xcf\xe2\x30\x0a\xe2\xda\xaa\x2b\x96\x6b\x4b\xfe\xf5\x2f\x59\x2f\x6f\x66\xc9\xaa\x32\x4d\xbe\xfe\x25\xeb\xe5\x33\x63\xd1\xba\x5d\xb1\xac\x15\x4b\x99\x31\x2b\x2d\x5e\x9f\x75\xf5\x12\xe3\xa2\x60\x4b\x2a\xd2\x68\xe4\xd1\xf0\xe1\x0b\x3b\x3b\xa1\x93\xbb\xd5\x22\xff\x0f\x07\x2b\xf4\x23\x21\x9f\x7d\xa5\xdf\xe4\xf4\x2f\x33\x17\x00\x63\xf9\xad\x05\xfd\x2b\x59\x0b\x58\x8e\xda\xcf\x69\x34\x68\x20\xe5\x55\x36\x09\xda\xc6\xab\xc9\x2c\x18\xdd\xa0\x69\xa1\x81\x78\xb3\xf0\x0b\x5a\xfb\x1e\xcc\x0d\x56\xbe\xd8\x35\x4c\x11\x9a\x13\x8b\xf2\xe5\xd5\xd3\x6d\x28\x09\x2e\x37\xaf\x9e\x6e\xbb\x74\x3c\x70\x71\xfe\x88\x2f\x68\x16\x6c\xea\x07\x2b\x68\x85\xcb\xbf\x41\x9c\xf3\x24\xde\x49\x3a\xa3\x3e\xda\xcf\x7e\x7f\xf3\x1e\x16\xdd\x77\xc9\x0b\x2c\x95\x41\x74\x7e\x7e\xde\x4c\xe6\x38\xce\xb2\x69\x33\x49\x4f\xb7\xc2\x64\x94\x6d\x41\x12\xee\x64\xcb\x28\x33\xc9\x67\x53\x87\x21\xe4\xd9\xd9\xfc\xc5\xd3\x03\x89\xb6\x78\xae\x18\x0c\xa1\xfc\x0e\x88\xb1\xc6\x59\xb7\x5f\x58\xca\x73\x58\xa3\x48\xc7\x64\xe4\x21\x8a\xf9\xb5\x17\x25\xdc\xb3\xbc\xea\xd2\x43\xb5\x76\x67\x57\xbb\xe9\x62\xd5\xef\x71\x52\x53\xc3\x62\x98\x09\x52\x5e\x3d\xdd\x2e\xc3\x36\xca\x99\x2f\xb2\x19\xa4\x5a\xf9\x90\x27\x68\x4e\xbd\x4e\xd5\xdb\x39\x9e\x15\xce\xba\x17\x63\xac\x0e\xac\x7b\x06\xa8\xdd\xd9\x05\x17\x52\xed\x2b\x25\x0e\x30\x37\xbe\x48\x7c\xb4\xb6\x2f\xd7\xbe\x76\xe3\x61\xda\x9b\xbe\x87\x83\x95\x46\xaf\xc1\xcd\xfa\x63\x38\xb6\x6e\xdf\x50\x9e\x2f\x49\xd1\x54\x5e\xf0\x1f\x39\x56\xbb\x46\x3e\xbf\x75\xab\x69\xe8\xc3\xd8\x6a\xb5\xcc\x8a\x57\xbc\x1d\x54\x7a\xef\xa7\x9a\xbe\xfb\x14\x52\xf8\x13\x1e\x21\x5c\x01\x89\xb0\x03\xc8\xc0\x4a\x26\xed\x3a\x5e\xfa\xbc\x2c\x8d\x05\xe0\xaa\xa8\xa0\x70\x16\x4c\x73\xf4\x18\xfe\xb3\xba\x5a\x0c\xdc\x45\xd9\xfb\x3a\xd8\x0b\x93\xc5\xe3\x63\x38\x6e\xd2\x6b\x11\xb8\xc6\x89\x69\x00\x7e\x05\x79\x6b\x00\x5c\xcb\xef\xa8\x97\x5c\x49\xe1\xd5\x87\xd8\xa1\xde\x92\x99\xce\xa4\x87\x5d\x5a\xdc\x52\x23\xec\xc1\x5c\x94\xe5\xec\x70\xd6\xe5\xbb\x16\x06\xa1\x05\x68\x17\xbf\x80\xbe\x71\xa5\x44\x5b\x65\x8f\x2c\x2b\x13\x77\x82\xc5\x1b\xef\x76\x99\xaf\x31\x94\x22\xf6\xe4\x80\x53\x84\x38\x05\x95\x2f\x1c\x58\xfe\xc2\x16\x26\x52\xbd\xfe\x91\x39\xb3\x18\xb8\x72\x87\x96\x47\x1c\x1f\xe7\x56\x80\xa8\x71\x70\x73\xc0\x7b\xc0\xac\x5f\x59\xa2\xb0\xe5\xc7\xca\x48\x0d\xc6\x20\x2f\x81\xb0\x5a\x38\xb3\x29\x4e\xc1\x16\xbf\xea\xcd\x8b\xfb\x74\x36\x04\xe1\x09\xd1\x71\xf6\x67\x6d\xa3\xd4\xa6\x1b\x25\xa5\xa3\x0b\xd3\xfe\x18\xd8\x0b\x64\xbd\xbd\xe0\xc2\xd8\xd1\x55\xf6\x3b\x85\xad\x58\xcc\x18\x67\x1b\x46\x2f\x2b\xa5\x14\x1b\x0d\xe7\x3f\x47\xb4\x0b\x11\x60\x8e\x97\xab\xea\x73\x5d\x49\x06\xab\xf7\x8e\xd7\x92\xbd\x2b\xca\xdd\x6b\xbc\x7d\xeb\xb8\x57\xa6\x50\x53\x5d\x9a\x2b\x85\x34\xeb\x86\xf2\x5e\x97\xee\xf2\x03\xd2\xa4\xba\x58\xb4\xe9\x7a\xed\x93\xec\xab\x15\x6b\x20\x8f\xda\x70\x95\x6a\x0a\xd5\x06\x61\x42\x96\xba\xbe\x6f\xcd\xb1\xaf\xb0\xb0\x6e\xd7\x35\x16\xb8\xb8\x52\xbc\xde\x5d\x3e\x2c\xd8\xbe\xd3\xda\xdc\x7b\xf7\x06\xdf\x7c\x0e\xb6\x77\x1b\x7c\x4b\x3a\xd8\xd9\x21\x7b\xfa\x9d\x6f\x7a\x4f\x3f\x8a\xe6\x13\x9c\x6e\xde\xb0\x8b\x00\xec\xde\xd5\xa6\xbe\xcc\x26\xde\xce\xdc\x79\x2d\xbb\xf9\x7d\x20\xec\x0d\x91\x38\x99\xd8\xb4\xab\x2f\xfd\x2e\x04\xe2\xbd\x91\x09\x43\x2b\x41\xf6\x70\x41\x0e\x85\xe8\x4f\x2e\x88\x59\xc1\x03\x78\x99\xb3\xa8\x0a\x14\x64\x85\x74\x1a\x64\x77\x43\xc7\x26\xc7\xcb\x9c\xec\x22\x03\xf6\x8c\xe6\x94\x26\x76\x37\x8b\xa7\xda\x08\x42\x3c\x8a\x66\xc1\x74\x7a\xc1\xd2\x80\x86\x95\x4f\x6e\xd4\x5e\xb9\x64\xad\xb0\x8e\x7b\x27\xd0\xd0\x9b\x5d\x3d\x19\xc7\x3a\xf8\xdd\x68\x7a\x0e\x39\x24\xca\xa9\x8e\x4a\xfc\x6a\x07\x3b\x5a\x49\xcf\x45\x2d\x15\xa6\x29\x47\x57\x26\x90\x78\x8e\x97\x6b\x66\x82\x70\x74\xaf\xc2\x3e\xea\x79\xc3\x8a\xc3\x69\x9c\x3c\x44\xf1\x7c\x91\x5f\x65\x4c\x39\x7b\xe8\x4c\xb7\x06\x9f\x5d\x17\x73\x8c\x0c\x41\xe1\xe0\x8f\xb5\x93\x4a\x40\x6f\xb9\x43\xd8\xc8\xc1\xd9\x43\xb2\x0d\x5a\xe0\xa1\x93\x7b\xf6\x35\xee\xe1\x16\x01\x59\xd1\x40\xad\xf4\xd2\x6d\x9b\xf7\xaf\xb4\x92\x5c\x63\xb5\x55\x16\x88\xc1\x76\xa7\x61\x18\xcf\x77\x6f\x5d\xed\xbe\x77\xdb\xb7\x6f\x75\xb4\x22\x99\x17\x59\xc2\xed\x4d\x0a\x5c\x00\x16\x16\x57\x67\x22\x2a\x02\xb1\xa7\x5e\x54\xbd\x9e\x84\xf4\x70\xe5\xb5\x54\xe2\x55\x36\x12\x57\x34\x45\x11\x5d\x1d\x2e\x2f\xe3\x51\x8a\xf3\x6b\x32\x2a\x11\xfd\xf7\xb9\x3b\x70\x10\x50\xc9\xc4\x84\xeb\x26\x32\xbd\xe8\x5b\xd5\x62\xa8\x5e\x0e\xf6\x04\x08\x76\xda\x8c\x84\xbd\x88\xde\x51\x10\x8f\xe6\x0d\xf7\x82\xdb\x6e\xd7\x19\x5f\x16\x36\x4c\x25\xe1\x65\xe9\xa6\x4a\x89\x2e\x6b\xf6\x93\xdb\x11\xbf\xc0\x30\x45\x09\x7d\xa2\xc4\xc5\x64\xa4\x17\x45\xc6\x34\x0a\x71\x7b\x81\x59\x97\x3b\x4a\xe6\xe3\xe9\x34\x39\x47\x41\x3a\x8c\xf2\x34\x48\x2f\x10\x33\x2f\x7d\xc4\x17\x8e\xb8\x83\x1f\x55\x8b\xc4\xcf\xce\x86\x0b\x3a\xca\x34\xb7\x54\xeb\xad\x92\xcb\x90\x04\xa5\x82\x6b\x90\x10\xff\x0d\x6c\x1b\x49\x8a\xa2\x38\xc6\x29\x44\x9f\x4d\x16\x39\x28\x10\x66\x14\x3e\x88\x99\x48\x6d\x8c\x94\x0d\xd9\x03\x6d\xc5\x0a\x48\xc7\x2d\x7e\x6a\x89\xc8\x51\x62\x15\x16\x48\x14\xab\x64\x52\x64\x8f\x8c\x14\xc0\x48\x01\xb4\x1a\xfb\xf3\xf5\x5b\x18\x4f\x7a\x0c\x38\x0f\x42\x34\x4a\xe2\x2c\x0f\x62\xb3\x79\x67\x12\x29\x7d\x8c\xfd\x86\x35\x81\xf7\x71\x74\x82\xfe\xda\x43\xad\xe5\xf6\x88\xfe\xcf\x75\x1d\xc6\x02\xee\xf6\xe9\xff\x8a\x2d\x63\x89\x61\x13\x8b\x8c\x67\x17\x47\x7e\x81\x38\x64\xb0\x02\xdd\x44\x14\x32\x21\xc4\xaf\x25\x12\x59\x41\xbe\x32\x97\x30\x76\x74\x24\x10\xed\x92\xe3\x1e\x3b\xa9\x6e\x2f\x96\x13\x66\xbd\x08\x64\xd0\xcd\x5f\x4d\xfc\xb1\x57\x8f\xf7\x59\xf4\x31\xc0\x2b\x82\x29\x56\x18\x09\x65\xc5\x21\xaf\x12\x88\xcc\x82\xbe\xfe\x60\x64\x2a\x4b\xf0\x56\x4a\x83\x8f\xdd\x54\xf4\x30\xe8\xea\xff\xf4\xe8\x61\x25\x6a\xea\x2a\x2a\x22\x91\xa1\x92\x87\x4a\x23\x88\xf9\x4b\x94\x46\x11\xf3\x17\xbd\xa1\x48\x62\x57\x97\x76\xfb\xd4\x3c\x0d\xfd\xed\x58\x8f\x89\x76\xf1\xdc\x1d\x1c\xad\x30\xe0\x58\xa1\xc4\x54\xfb\xca\xa8\x54\x6a\x28\x5c\xd3\xe0\x87\x4c\x02\x95\xba\x37\xe4\xd8\x2c\x18\xb9\x0f\x89\xc4\xc6\xdf\xe3\x04\xf7\xe0\x9b\x36\x98\x2f\xfb\xbd\x4d\xc7\xeb\x69\x34\xdc\x24\xa8\x84\xe0\xdb\x9a\x19\x5f\x71\x3c\xda\x04\x9f\x46\xc7\x7b\x7a\xcd\xd2\xf8\x30\x0b\xb7\xcb\x9d\xef\xb2\x49\xd0\xd9\x36\xab\x24\x2f\x3b\x66\x75\xd9\x24\xd8\x6e\x77\xec\x97\xdd\x5d\x07\x64\xd7\x78\x95\x46\x73\x3c\x0b\xdb\xfd\x96\xd3\xf7\x4f\x7b\x35\x1f\x7e\x0c\xc7\x66\x3b\xf8\x6c\xfe\x31\x1c\x17\x9d\x3b\xe8\xa4\x27\x21\xde\x1c\x8d\x87\xce\xd7\x79\xea\x79\xbd\x79\x3a\x0d\xc2\x59\x10\xbb\x3e\x27\xee\xca\xf0\xc8\x7c\x3d\x0f\xc2\xcd\x20\xce\xa2\xe5\x83\x8e\xd9\x09\xe4\x53\x94\x25\xed\x56\xbb\x63\xf6\x38\xfb\xf4\x60\xe7\xc1\x8e\x39\x42\xe4\xd3\xdf\x38\x4d\xd8\xd5\x6b\xc7\xd7\xd8\xf3\x8d\xda\xc8\x36\x27\x78\x69\x7c\x08\xb0\xc9\x5c\x34\xee\x46\x68\xbd\x4f\x47\xe6\xe0\xa6\xc1\x70\x18\xe5\xce\x97\x9b\x53\x7c\x1a\x8c\x2e\x6e\xfa\x0c\x48\xcc\x1e\x78\x32\x27\x0d\xbc\x94\x73\x45\x3c\xb2\x29\x02\xcf\x64\x66\x18\x6e\xa1\x6c\x1e\x88\xdf\x9d\x9e\xf8\x4d\xb8\x9e\xff\x26\xcc\x2e\x7e\xd3\x5f\x92\xb5\xa5\x7f\x29\xfc\x62\x8c\x4c\x31\xa0\xfc\x6b\x9d\x61\x51\x74\x38\xb7\x2a\x4f\x79\xaa\x3f\x09\xde\x94\x6f\x13\xad\x04\xe1\x44\xda\xac\xca\x80\xe2\x8d\xe0\x3b\xf5\x0d\x65\x37\xf1\x46\xe5\x32\xf1\x32\xd6\x5f\x29\x3c\x05\xcf\x84\x95\xe0\x87\xe4\x20\xda\x2b\x23\xd6\x51\x8c\x5f\x94\xdf\x9c\x4d\x56\x35\x44\x6a\x06\x48\x55\xd6\xae\x6e\x98\xf4\x87\x62\x63\x24\x0d\xb6\xdb\x8d\x62\x6b\x72\x43\xe7\xab\xc1\x76\xaf\xa1\x31\xde\x60\x7b\xbb\x21\x07\x7e\xb0\xdd\x6f\xe8\xbd\x37\xd8\xde\x31\x4f\x84\x4d\x56\x1e\xf4\x5b\x0d\xc6\xad\x83\x3e\xe0\x23\x38\x65\xd0\xef\x34\x54\x5e\x19\xf4\x7b\x0d\x17\xb7\x0c\xfa\xdd\x86\xca\x21\x83\xfe\x76\x43\xe5\x9f\x41\x1f\xf0\xd2\x78\x66\xd0\xdf\x69\x98\x5c\x33\xe8\xef\x36\x4c\xbe\x19\xf4\x1f\x34\x2c\x26\x19\xec\xb4\x1a\x0e\x76\x1a\xec\x00\xfe\x6c\x4a\x0c\x76\x00\x7b\xc6\x1a\x83\x9d\x5e\xc3\x62\x8e\xc1\x0e\x20\x4e\xd8\x68\xb0\x03\x38\xcb\x79\x36\xd8\xe9\xab\x07\xe8\x0d\x39\x65\x07\x3b\xfc\x68\x9d\x4c\xe6\xc1\xce\x83\x06\x9f\xaa\x83\xdd\x56\x43\x4e\xe1\xc1\x6e\xbb\x21\x27\xf7\x60\x17\xd0\x91\x1c\x3c\xd8\x85\xc6\x85\xa0\x19\xec\xf6\x2e\x4f\x1a\xfd\xd6\xed\xe1\xc1\x97\x3f\x3c\xd8\x9f\xe0\xd1\x47\x42\x14\xcc\x14\x7a\x0d\x88\xa6\x39\xcb\x16\x73\xd2\x31\x98\xc5\xa7\x56\xe8\x06\x3d\x9e\x86\x34\x47\x3f\xec\xa1\x0d\x5e\xf3\x86\xc3\x23\x44\x5c\xd2\xb8\xc6\xe3\x8a\x42\x77\x7c\xd1\xce\x5b\x3c\xc6\x29\x86\x8d\x5e\x1a\x9d\xc2\x9e\x2c\x8a\xa3\x5c\x56\x93\x2d\xe6\x38\x05\xd3\xf5\x9e\x91\x9e\x43\xa9\xe5\xf1\xe2\x74\x86\xe3\xdc\x00\x40\x79\x82\x26\x41\x1c\x4e\xb1\xd6\x6f\x6a\xdd\x43\x67\xcd\x9a\x4f\x0d\x14\xb5\xaf\x03\x2a\xb6\x6f\x1a\x4b\x9e\xba\x40\x45\x71\xbe\xab\x58\xe8\xc7\x6a\x79\x61\x98\xd0\x47\xc7\xde\xe6\xcb\x12\xd4\x08\xff\x1b\xa9\x15\x5e\xa8\xd8\x68\x9b\x08\x27\x62\x09\x4d\xff\x05\x35\x9d\x45\xf8\xdc\x87\xa2\xb7\x79\x05\xe1\x43\x8e\x02\xfa\xf4\x49\x87\xe7\x0c\x07\x58\x82\xcd\x98\x17\xff\x81\xcc\x39\xe1\x3b\x02\x93\xce\x5d\xb9\x55\xb4\x6e\xb5\xe2\xc5\xaa\xdd\x77\xa3\xe5\x6f\x69\xb5\x12\x87\x71\xde\xed\xac\xda\xc4\x6a\x25\x0e\xa6\x49\xb0\x4e\x91\x7e\x0f\xde\x4b\xf8\x35\x59\xa9\x49\x39\xb8\x81\xd4\x57\x17\x39\x7e\x0d\xc9\x81\xac\xd7\xae\xbc\xcb\x1a\xff\x3d\xa7\x93\x4e\xb6\x55\x65\x46\x48\xe8\xd5\x4c\x08\xb2\xb6\x27\x02\x37\xb4\xe7\xc6\xd9\x61\x59\x78\xb6\x64\xd9\x57\x2f\x72\x97\xf3\xf3\x4a\xd7\x05\x5d\xa8\xac\x92\x4f\x5b\x96\x3f\x8e\x4e\xd6\x4a\x9e\x2d\xdd\xb9\xa3\xbf\x31\x35\xd5\xca\x8b\xa3\x3a\xa8\x10\xac\x32\xb5\x45\x03\xb1\x6b\x84\x2e\x42\xb4\xf1\x76\x66\x3d\x23\xbd\x49\x5e\x93\xfa\x50\x4c\xb4\x3e\x55\x98\xdb\xed\x06\xf3\xf9\xf4\x82\x35\x1c\xa4\xa7\x0b\x22\xc2\xb3\xa2\xfb\x8a\x4c\x5e\x37\xe7\x69\x92\x27\x04\x47\x55\x72\x17\x39\x4e\x98\xab\x8f\xdb\xc0\xd2\x6f\xdf\xea\x3a\x5f\x46\xd7\x81\x80\xd1\x5f\x20\x2e\x91\x33\xa7\x52\x05\x17\x09\x58\x62\xe9\x39\x1e\xca\xa5\x6d\x9d\x14\x79\xc7\x84\x85\x02\x49\x4d\x97\xc6\xc9\x9f\x4b\xd3\xf3\xc9\x95\x7e\xcf\x2d\x45\xde\x11\x31\xb1\x47\xbb\xaf\x19\x0c\x33\xfa\x23\x8b\x62\x16\x8c\x95\x88\x8c\xd6\xb2\xdd\x62\x7f\x75\xf4\x49\x4f\xe3\xcb\xa6\x57\xad\xee\xf4\x50\x7f\xf5\x74\xdb\xf0\xa6\x70\x39\x80\x98\xb7\x26\xd1\x1e\xeb\x55\x87\x03\x08\x4f\x7b\x53\x78\x3a\x26\x2d\xc1\xee\x5c\xc5\xc7\xb6\x24\x6d\x2d\xfb\x3b\xbd\xed\x4e\xb7\xd5\x6e\xa0\xd6\x12\x8f\x47\x61\x30\xdc\x7d\xe0\xc8\xab\xd8\x5a\x3e\xd8\x1d\x06\xe1\x68\x8c\x1b\xd0\x31\xdd\xce\x76\x6f\xa7\xaf\xc3\x9d\x78\x4f\xc4\x8c\x34\x7a\x2a\x15\xaf\x44\x26\x3d\xd7\xda\x75\x1e\xcc\x11\x86\xeb\xd5\xe5\x6b\x48\xbb\xef\x5f\x31\xfc\xc7\xd7\x7c\x34\x28\x12\xef\x49\x7d\x3c\xbd\x20\x8a\x3c\x11\x78\x5f\xbd\x57\xa0\x5f\x1d\xf3\x87\x13\xd7\x95\x10\xe5\x33\x61\x38\x1b\x80\xfc\xd5\x6a\x35\xa5\x4e\x7a\x53\x1c\x7d\x42\xea\x4b\x58\xeb\x7a\x75\xe3\x8e\x38\xfa\x54\xb1\xc2\x4e\xaf\xee\xa8\x10\x42\x19\x6b\x57\xd2\xed\xea\xae\xe6\x1c\xf2\x5c\x3b\xa1\x70\x1f\xf7\x6b\x5d\xda\x42\x4a\x9f\xa2\xfb\xa8\x65\xaa\x0f\x1a\x74\xdb\x80\x6e\x17\x42\x77\x0c\xe8\x4e\x21\x74\xd7\x80\xee\x16\x42\xf7\x0c\xe8\x5e\x21\xf4\xb6\x01\xbd\x5d\x08\xdd\x37\xa0\xfb\x85\xd0\x3b\x06\xf4\x4e\x21\xf4\xae\x01\xbd\x5b\x08\xfd\xc0\x80\x7e\x50\x3c\x3a\x2d\x63\x74\x4a\x06\xb3\x6d\x80\x17\x8f\x66\xbb\x63\x80\x17\x0f\x67\xbb\x6b\x80\x17\x8f\x67\xbb\x67\x80\x17\x0f\x68\x7b\xdb\x00\xdf\xb6\xa4\xc1\xd6\x16\x11\xc8\x1f\xa3\xf8\x94\x14\x8d\x82\xe9\xd0\xa5\x36\x07\x64\x19\x38\x76\x76\xd4\x10\x3e\x39\x3b\x65\x04\x9f\x9c\x1d\x10\xc2\xa7\xae\x0b\x9d\x7d\x79\x06\xad\x7f\x23\x48\x1c\x1c\xd4\x82\x06\x1a\x36\xd0\xa8\x81\xc2\x86\x32\x41\x1b\x08\xed\x34\xc8\x12\xda\x3a\x31\x65\x43\x48\xcb\x85\x0d\x24\x8a\xca\x1e\x6a\x20\xd4\xee\x34\xd0\xbb\xe3\xb6\x55\x6e\x44\xcb\xd1\x96\x68\x51\x39\x69\x49\xb9\x1d\x52\xae\x63\x95\x1b\xd2\x72\x02\xc9\x40\x29\xd7\x6d\x20\xd4\x81\xf6\xba\x56\xb9\x22\xfa\x7a\x82\xbe\xde\x4a\xf4\x6d\x0b\xfa\xb6\x57\xa2\xaf\x2f\xe8\xeb\xaf\x44\xdf\x8e\xa0\x6f\x67\x25\xfa\x76\x05\x7d\xbb\x2b\xd1\xf7\x40\xd0\xf7\x60\x25\xfa\xda\xad\x06\xa3\xaf\x6d\x33\x4c\x11\x81\xed\x76\x83\x11\xd8\xb6\x39\xa6\x88\x42\x82\x25\xa5\xb0\x6d\xb3\x4c\x21\x8b\x76\x1b\x9c\x45\x6d\x9e\x29\xa4\xb1\x27\x68\xb4\x99\xa6\x90\xc6\x6d\x41\x23\x70\x8d\x4d\xe4\x2f\xbf\x78\x88\x6c\x20\xb4\x4d\x89\xb4\xf9\x26\xa4\x05\x9d\x44\x12\x7e\x7b\x40\x0b\xda\x8c\x33\xa2\x05\xdd\x44\xb6\x1b\x88\x10\xfa\xee\xb8\x6d\x73\xce\x90\x16\x74\x12\x49\x24\x46\xa7\x05\x05\x6d\xd6\x29\xa2\x71\x5b\xd0\xd8\x71\xcb\x1a\x1f\x8d\x84\xe7\x28\x8d\x1d\xb7\xb0\xf1\xd2\xb8\xcd\x69\xec\xb8\xa5\x8d\x8f\xc6\x9e\xa0\xb1\xe3\x16\x37\x3e\x1a\x1f\x48\x1a\xdd\xf2\xc6\x4b\x63\x4f\xd0\xe8\x16\x38\x3e\x1a\x89\x60\x64\x34\xba\x25\x8e\x8f\xc6\x5d\x49\xa3\x5b\xe4\x78\x79\xb5\xdb\xe0\x34\xba\x65\x8e\x8f\xc6\x8e\xe0\xd5\x8e\x5b\xe8\xf8\x68\xdc\x11\x34\x76\xdd\x42\xc7\x47\x23\x99\xfe\x94\xc6\x6e\xdb\x3d\x21\x9f\x3f\xf7\x33\x6b\x0f\x70\xed\xba\xa5\xce\xf3\xe7\x6e\x22\x49\xb7\x92\xb9\xf5\xee\xb8\xeb\x96\x3a\xcf\x9f\x17\x4c\xc8\x3e\x14\x74\x4b\x9d\xe7\xcf\x3d\x44\xf6\x1a\xa8\xd3\x85\x82\x36\xeb\x14\xd1\xd8\x96\x34\xba\x85\x8e\x8f\xc6\x9e\xa4\xd1\x2d\x74\x7c\x34\xc2\x40\x52\x1a\xdd\x42\xc7\x4b\x63\x4b\xd0\xe8\x16\x3a\x5e\x1a\xbb\x0d\x46\x63\xcf\x2d\x74\x7c\x34\xb6\x04\x8d\x3d\xb7\xd0\xf1\xd1\xd8\x15\x34\xf6\xdc\x42\xc7\x47\x23\x11\xe5\x94\xc6\x9e\x5b\xe8\xf8\x68\x7c\x20\xc6\xb1\xe7\x16\x3a\x3e\x1a\xc9\xf4\x60\x34\xba\x85\x8e\x97\x57\xb7\x39\xaf\xf6\xdc\x42\xc7\x47\x63\x47\xd2\xb8\xe3\x9e\x90\x87\x87\x7e\x45\xb5\x4f\x89\x74\x4b\x9d\xc3\x43\x37\x91\xc0\x73\x20\x03\x7a\x6e\xa9\x73\x78\x58\xa0\x06\x6c\x83\x0a\xe8\x96\x3a\x87\x87\x6e\x22\x89\xec\xe8\x40\xb7\x6e\xbb\x55\x1d\x1f\x8d\x64\x3c\x28\x8d\xdb\x6e\xa1\xe3\xa3\xb1\x2b\x68\xdc\x76\x0b\x1d\x2f\x8d\x2d\x41\xa3\x5b\xe8\xf8\x68\x6c\x4b\x1a\xdd\x42\xc7\x47\xe3\xae\x18\xc7\x6d\xb7\xd0\xf1\xd1\x08\x3c\x47\x69\x74\x0b\x1d\x1f\x8d\xa0\x92\x53\x1a\xdd\x42\xc7\x4b\x63\xb7\xc1\x69\x74\x0b\x1d\x1f\x8d\x3d\x41\x63\xdf\x2d\x74\xbc\x34\xb6\x39\x8d\x7d\xb7\xd0\xf1\xd1\xd8\x11\x34\xf6\xdd\x42\xc7\x47\xe3\x03\x31\x8e\xfd\xae\x3d\x21\xe1\x18\x25\xc7\xe9\x0c\x87\x51\x90\xb3\x4b\x65\x70\x5d\x41\x87\x23\x5b\x5c\xb4\x87\x6a\xf0\xdf\xfb\x28\x30\x2d\xac\x14\xa6\xcd\x60\xda\x04\x66\xe8\x86\xe9\x30\x98\x0e\x81\x19\xb9\x61\xba\x0c\xa6\x4b\x60\x42\xcb\x9a\x6b\x98\x2a\x0f\x1c\x9e\xba\x2b\x06\xb4\x85\x4c\xe9\x22\x9b\x6e\x90\x07\xae\x8d\x79\x90\x07\x22\x94\x4f\x90\x07\x7e\xe3\x58\xfc\x24\xca\xb3\x77\x49\x1e\x4c\x45\x9d\xf1\xd3\x20\x0f\xe8\x0d\x92\x9f\xd0\xae\xa3\x76\x28\xf3\x12\x8f\x73\x5e\xbb\xb8\x71\x02\xf0\x16\x31\xde\x94\x57\x02\xcd\x63\x59\xe5\xcf\x3f\xff\x8c\xb6\xe1\xe0\xad\xb5\xdc\x6d\xc9\xf3\x36\x09\xf1\x2f\xd4\xed\x58\xcc\xa1\xd3\xf2\x1c\xed\x21\x30\xbb\x8f\xa7\x49\x92\xd6\x14\x22\xb7\x34\xdb\xbb\x8f\x38\x80\x7d\x89\xf6\x94\x27\x73\xe2\x08\xd4\x6b\xb5\x9a\xc4\xed\x3e\xea\xf7\x68\xbe\xb4\x07\x10\x4c\xb4\x57\xa7\x06\x1b\xb7\x7d\x96\x17\x65\x38\x4b\xe3\xac\xfa\xb6\xba\x75\xd6\xae\x8e\x99\x66\xcd\xea\xca\x6c\xb3\x96\x94\x58\x85\xd8\x5e\x15\x62\x5f\x3a\x89\x7d\xb9\x2e\xb1\x2f\x9d\xc4\xbe\xac\x4a\xac\x4d\xad\x7a\x89\xaa\x26\xc8\xe7\xc1\xa6\x20\xa7\x9e\xfb\xfe\x20\x38\xbc\xd3\x6b\x0c\x70\x47\xd1\x75\x93\xaa\x30\xaf\x7c\xc9\x6d\x48\xcd\xe6\xed\x60\xdf\xe7\xcc\x31\xde\x7b\xfb\x6d\xa5\x73\x0f\xcf\x11\x17\x2a\x3a\xfe\x17\x98\xc0\x11\xc6\xf3\x63\xf7\xd9\xc5\x73\x76\x4a\x56\xab\x3d\xd7\x8e\x25\x9e\xaf\x7c\x1e\x41\x79\xe1\xb9\x76\x16\xf1\xdc\x7b\x08\x51\x7e\xe2\xf0\x96\xe5\x06\x86\x31\x64\x11\x78\x42\xe8\x53\x1d\xb4\x42\xb2\x72\xb8\x86\x50\x28\xea\xc1\xc0\x0a\x97\x32\xc5\x09\x1d\x3c\xca\xe3\x7f\x6b\xe1\x85\xcf\xef\x2d\x5e\xf0\xdd\xae\xe4\x11\x34\xc8\x57\xf7\x0d\x07\xfa\x4b\x20\x69\x98\xbe\x96\x0d\x94\x35\x90\x7e\x84\x06\x72\x12\xed\xa1\x00\xdd\x47\xb5\xda\x10\xfd\x48\x17\xc7\xda\xff\x21\x3f\xc3\x3a\x11\x03\x4b\x74\x1f\xe5\x4a\x7b\x22\x60\x71\x4c\x86\x29\xa3\x33\x95\xc6\x29\xef\x76\xd0\x26\xca\xea\x50\x6c\x68\x38\xbd\x09\xac\x8c\xfd\x7f\x35\xac\x60\x39\xae\x8d\xd0\x8f\xe8\xff\xdc\x0c\x56\xc6\x26\xa8\x14\xab\x21\xfa\x0b\x8d\xd0\x5f\x04\xb1\xeb\x47\xc6\x50\x00\x4b\x91\x21\x88\xd4\x86\xe8\xd3\x35\x77\x8e\x7a\x5a\x7d\xe4\x4b\x93\x5e\x9a\x78\xbf\x4a\x90\x35\x7e\x4f\xcc\xb8\xa2\x08\xb3\xc1\xae\xc6\x73\x59\xcc\x03\xbd\x6e\x58\x33\x36\x2f\x85\x93\xcb\xab\xa7\xdb\x8e\xbb\x5f\xc5\xf0\xf6\x85\x2f\x19\x5f\x4c\x3b\xcc\xd7\x33\xf2\xbf\x7a\xba\xed\x74\x19\xf0\x0e\x42\x49\xae\xfa\xeb\x1a\x82\xb5\x42\x3b\x94\x0f\x9c\x7a\xcb\xef\x3a\x06\x8e\x5e\x2a\x13\x03\xf1\x7c\x16\x8c\xc8\x60\x68\x99\xe1\xed\xf1\x60\x60\xf6\x98\xc8\x6c\xf6\x74\x5c\x0a\x33\xb0\xb3\xc8\xd6\x1e\x0f\xa8\xce\x37\x7d\xc5\xec\xfb\x8f\xc9\x46\x27\xdb\x4f\x2c\xce\x10\x3a\xc0\x38\x1c\x06\xa3\x8f\x2c\xae\xe6\x2c\x09\x61\x4a\x11\x9e\x11\xe3\x0d\x2f\xf7\x0f\x9e\x10\x15\xc8\xa1\x1e\x80\x9b\x13\x7c\xd5\xbc\xe5\xc0\xc3\x85\xb6\xf2\x8a\x54\xc0\x9c\x79\xc4\xac\xdf\x3f\x78\xd2\x7c\x16\xd3\x58\xe5\xe0\x40\x75\xf0\xc4\xe1\xf0\x33\xf7\xb8\xcb\x30\x37\xc3\x02\x97\x19\xbf\x6a\xca\x42\x50\x71\x85\x84\x3e\xba\xce\x99\x95\x50\x1e\x14\x48\x0d\xe5\xa1\xc3\xf3\x18\xe5\x2f\xf0\x45\x96\xa7\x38\x98\x3d\x8e\x43\x46\x9d\xc3\x3b\x32\x61\x6e\xb1\xa2\xba\x06\x6b\xc0\xa5\x64\xbf\xc5\x33\x0c\x41\xc6\xc1\x19\x93\x8e\x13\x8b\x95\x09\xf7\xe7\x63\xbc\xcc\xe9\x6b\xb7\xfa\x8e\xcf\x9e\xb0\x98\xa9\xd0\x7a\x33\x9b\x46\x23\x5c\xe3\x28\x88\x93\x7a\x81\x8b\xcb\x7f\x52\x1b\xb5\xa7\xf8\x7b\x19\xb5\x2b\xf4\x2e\x38\x0e\x4f\xa2\x6c\xe5\xbe\xfd\x6c\x7c\xf3\x4e\x12\x34\xc4\xa3\x64\xc6\x6e\xdd\x13\x86\x88\x92\x45\x56\x8d\x65\x04\x89\x95\xd4\xf1\x02\x6a\x6a\xa5\x24\x18\x77\x23\xec\x0d\x1b\xec\xf7\xce\x64\xb0\x96\xb3\x87\xba\xd3\xb8\x1a\x8e\x99\x36\x2f\x3f\x43\x66\xd7\x33\xe7\x96\x46\x40\xa3\x3d\x14\x9d\xb1\x21\x6c\x79\x66\x62\x72\x86\xd1\xe1\xef\xb0\xff\xcc\x16\xc3\x0c\xff\xcf\x02\xc7\x79\xc1\xee\x19\xf0\x15\x17\x18\x4a\x1d\xa0\x4d\x7c\x8c\x01\xb1\x07\x81\xfc\x31\x2e\xc7\xb4\xa3\x01\xb0\x26\x2a\x69\x20\x9d\x94\xad\x2d\xc4\x46\x44\xbe\x73\x66\xcb\x2d\x8e\x1a\x43\x5d\xcf\xa5\x87\x20\x44\x82\x11\x8d\xc2\x3e\xda\xe2\x17\x86\x05\x57\x27\x0e\x9e\x14\x39\x5c\xf3\x45\x67\x95\x38\x75\xfd\xee\xad\xf2\xf1\xb5\x2b\x1f\xe8\xbf\xe7\x29\xce\x70\x7a\x86\xa9\x1a\x92\x2c\x88\x2a\xaf\xa8\x1f\x60\xc6\x08\xf2\x68\x38\x65\x12\x18\x3d\x4d\xd1\x93\x34\x0a\x62\xf4\x0b\xbd\x9e\x89\xc6\xd1\x14\xe3\x78\xd4\x1c\x41\x15\x3c\xe4\x33\x44\xc0\x36\xf8\xe7\xdd\x5b\x00\xf9\x77\x10\xa3\xe7\xe9\x62\x78\x81\x3e\x4c\xc8\x7f\x9a\xe7\x78\xf8\xdf\xa7\xb3\x20\x9a\x36\x47\xc9\xcc\xad\xef\xbc\x7b\xcb\x9b\x2b\x50\x7b\x54\xa0\xca\xda\xcf\x1d\x99\xef\x25\x1e\x91\x8d\x02\x4d\x99\x74\xf7\xce\x1d\xd2\xe9\xc0\x7a\x22\x1d\x12\x18\x89\xa8\x51\xa8\x0e\xa3\x4e\x7f\xfd\x83\xb6\xb6\x92\x33\x9c\x8e\xa7\xc9\x39\x29\x03\x0b\x5f\x9b\xa7\x03\x25\xe5\xda\xfd\xfa\x8f\x04\xf6\xa1\xf8\xdc\x51\x3f\xef\x9a\x5f\xbb\x6c\x0d\x63\x8d\x01\x9e\x80\x0a\xa9\x56\xb4\xbb\xb5\x85\x78\xb3\x68\xd8\x26\x20\x80\x32\x34\xdd\x7a\x28\x8a\x74\x64\x11\x01\x73\x07\x10\xa0\x40\x14\xaa\xab\x43\x31\xb0\x3b\x80\x0a\x83\xbb\x84\x7f\x09\x43\xaa\x10\xf7\xef\x0f\xbb\xca\x77\xf8\x87\xc3\x50\x90\xfb\xf7\x87\x9d\x87\x77\xfd\x00\xf7\xef\x0f\xdb\xec\x3b\xf9\x17\x08\xe7\x8d\xc2\xc3\xfd\x3d\xa0\xfc\xd1\x23\x96\x0f\x52\x7d\xdd\xa1\x26\x40\xed\x2d\x43\xc8\x6e\x49\x14\x6b\x2d\x5b\x6d\x66\xf5\x93\xa0\x4c\xea\x11\x20\xf2\xf2\xd2\xe4\x0e\x36\x3d\x6a\x23\xfa\x5f\x9d\x47\xd8\x4b\x7a\x82\xc4\x59\x49\xbe\xac\x33\x86\x51\x86\x60\x6b\x0b\x91\x55\x02\x4e\x62\x50\xa4\x4c\x24\x3a\x79\xac\x99\xb6\x91\x21\xa8\x2f\x43\x49\x3c\xbd\xa0\xd3\xf1\xe9\x1f\xaf\xdf\x3e\x45\x1f\xd0\x23\xb4\x0b\x75\xf2\x06\xdb\x2e\x2c\xe8\x59\x9c\x4e\x2c\xfb\xc6\xe9\xe5\x73\x49\xdb\x0b\x88\x79\xd5\xf4\xbc\xfe\x82\x3a\xe7\xaa\x2a\xa7\x05\x6e\xe8\x30\x76\xab\x4c\x26\x8a\x66\x79\x87\x59\xa8\x17\x69\x3c\xc8\xaf\xf5\x80\xd2\xe0\x6e\xa4\x58\x07\x42\x6b\xe8\x41\xa8\x5c\x17\xe2\xda\x01\x61\x6c\x9b\xe7\xa9\x28\xba\x63\xaa\x46\xec\xb3\x82\xab\x6e\x7a\x5e\x45\x29\x42\x1e\xc5\x08\xad\xa7\x1c\xa1\x15\x15\x24\xa4\xeb\x73\xf6\xa6\x4b\xf2\xbd\xba\xf7\x12\x53\xe3\xa1\xa1\x59\x09\x70\x45\xc1\xf2\xaa\x58\x0a\xf0\x0a\x9a\x56\xef\x56\xd3\xfa\xda\x35\x2d\x8f\x7e\xe5\x31\xef\xbc\x7b\x5b\xac\xe7\xac\x6a\xde\x71\x88\x74\x53\x96\xdf\x0a\xf1\xef\x4f\x88\x17\xee\x66\x6f\x40\x64\x1f\xc6\xa3\x14\x43\xe4\x06\x56\xb9\x51\x25\xd3\x43\xe4\xe0\x6e\x22\xea\x4c\xe3\xf9\x02\xa7\xe5\x9f\x50\xeb\x9b\x5a\x1c\xaa\xae\x0a\xe5\xfb\x6d\x02\xb3\xc2\x2a\xb0\x7d\xbb\x0a\x7c\x13\xab\xc0\xb3\x29\x1e\xe5\x69\x12\x47\x23\xb4\x9f\x84\x78\x98\x24\xe5\x06\xff\x67\xfb\x45\x06\x7f\xfa\x75\xa5\x15\xe1\xd9\xbe\x6e\xf0\x27\xcf\xd7\xb5\x02\xa8\xa2\x5d\x17\x20\x7a\xb9\x22\x2b\x26\xc1\x47\x9b\x48\x37\x85\x5f\x88\xd7\xc2\x8f\xa7\x5e\xda\x2f\xb7\x9b\x01\xcc\x0a\xf3\xf8\xdb\x4e\x8e\xfc\x9f\x33\x8f\x5f\x2f\xf2\xf9\x22\xaf\x7e\x68\xf7\xba\xf0\xd0\xee\xf5\xea\x87\x76\xa6\x56\xf7\xda\x38\xc4\x7b\xfd\x65\x8f\x83\x6e\x5c\xab\xb3\x6d\xf3\xe2\xcd\xf5\x6a\x76\x05\x0d\x7d\x2d\xda\xdd\xf7\xb4\xc3\x7e\x6d\x1c\x6b\xfa\x94\xa8\xd7\x15\x0e\x2d\x5e\xaf\x78\x68\x71\x9b\xc5\xee\xdb\x10\xbe\x8f\x7f\x3d\x3a\x44\x7f\x36\x1f\x74\xba\xdc\x41\x1c\x65\x39\x99\xde\xa7\x17\x96\xf4\x9d\x07\x61\xf3\x71\x9c\x45\x7f\x12\x68\x91\x0b\x6e\x1e\x84\xaa\xf8\x0b\x83\x3c\x50\x0e\x42\x7d\x07\xa0\x99\x7e\x02\x4a\x4a\x1d\x49\x87\x5f\xcd\x01\xf8\xa1\x0e\x3a\x34\xd3\x8a\x0c\x7d\x09\x45\x80\x29\x16\x71\x2e\x28\x33\x82\x59\x81\x2f\xde\x1b\xfa\xcd\xaa\x8c\xbe\xd8\xd4\x31\xfb\x97\xf1\xdd\x6a\x8d\xc6\xb4\x99\x06\x19\x8d\x9c\x85\xe6\x49\x16\xe9\x37\xf0\x49\xa3\xe4\x3b\x29\xff\x26\xe1\xc4\x8a\x16\xee\x1b\x18\x6d\xa2\xb6\xd1\xc8\x9b\x20\x94\xcf\xd0\x51\x22\xdb\x88\xfe\x9a\x8a\x12\xb5\x2d\x19\x52\x4b\x6f\x44\x86\xd4\x52\xa1\x5d\xc1\xb5\x74\xcf\xec\xfb\x46\x45\xdc\x0f\x91\x7b\xe0\x2e\x62\x07\x73\x98\x1c\xf1\x0b\xce\x95\x84\xf3\xda\x50\x51\x03\xbe\xe8\xcd\xe2\x91\x53\x68\xae\xe9\x68\x6e\x92\xed\x2f\xa3\x5d\x1e\x04\x29\x28\xb0\x75\xc5\xba\x21\x61\x54\xe3\xa1\xf6\xee\x9d\x4b\xa7\xdc\xe4\xd3\x65\xf9\xa0\xd3\x5d\x49\x76\x5e\x2d\x31\xd9\xad\xec\xfc\x5c\xb2\xf3\xf0\xe8\x35\x82\x90\xb8\xd5\x44\xe7\x21\x0b\xa0\x7b\x55\xd1\xf9\xc5\xc5\xa1\x9c\x12\x25\xf2\xd0\x21\xaa\x68\x3a\x00\x77\x04\xba\x66\x1a\xc4\x61\x32\xab\x59\x12\xb0\x5e\x6f\x1a\x9a\x52\x71\x3d\x2c\x75\xd8\xb1\x25\xe5\x3a\xbd\x93\x06\xa9\xee\x56\x50\x99\x82\x8a\x33\xe7\x4a\x82\xea\xdb\xce\xbc\xf0\x1f\x25\xa8\xb6\x0e\x9f\xed\xa3\x07\x3b\x0f\x76\x36\xdb\x88\xf1\x06\x7a\x85\xf3\x49\x12\xa2\x8e\x4f\x5a\x41\x68\xef\x75\xa5\xd5\xe3\x30\xa4\xf7\x07\xf5\x09\x51\x41\x0a\xf0\xd9\x4b\x4a\xd3\x3f\x3e\x69\xb5\x06\xfe\x37\x4e\x13\xc8\x1d\x96\x4f\x30\x4a\x71\xa6\xc8\x45\x8d\x10\x02\xc7\x28\x26\xcf\x16\xde\x6b\xc9\x02\x36\x11\xff\x66\x38\xe8\xb3\xd1\xdb\x3c\x54\x4d\xeb\x73\x4f\xec\x24\xc6\x68\x96\xa4\x98\x2a\x8f\x9b\x9b\x40\x9b\xaf\x17\xf9\x7c\xdf\xdc\xac\x38\xc1\x61\x3c\x57\x99\xe0\x3b\x57\x8b\x72\x7e\x3b\xc1\x3f\xdb\x2e\x0e\xc5\x49\x32\xaf\xa6\x86\xfc\xca\xd9\xd1\x3b\xb3\x05\xb3\xfb\xe7\x84\x04\x29\xe2\x39\xd1\xd4\x4a\x4c\x77\xb5\x70\xb3\xb7\x4c\xf7\xb9\x98\xee\x7f\x2b\xc2\xaf\x98\xe5\x14\x19\xf8\x05\x95\xdf\xca\x1b\x67\x75\x7f\x6b\x29\xc0\xb5\x5a\xb1\x0a\x5c\x47\x9f\x3e\x99\xaf\xd6\x5a\x62\xdc\x14\x97\xc7\x15\xd8\xda\x42\xbf\x91\xfa\xf5\x72\x91\x15\x29\x00\x2c\x0b\x02\xe6\x7c\x12\x4d\x31\xaa\xfd\x50\x93\x77\xad\x65\x0c\x6e\xb8\x71\x68\xc5\xdc\x16\x2e\x9c\x96\x21\x33\x12\x4b\x12\xd2\x4d\x94\xe6\xc5\x6e\x88\xc7\x5b\x65\xf5\x52\x38\x68\x25\x59\xf2\x6d\x5f\xdc\x72\xe4\xe8\xa2\x49\xb2\x6e\x56\xae\xc8\x4c\x48\xd0\xda\x97\xcf\xf3\x71\xb3\x49\xc2\xab\xc5\xc4\xb6\x62\x5e\x8b\x2f\x47\xcf\x1f\xb7\x65\xac\x67\xf2\xa4\x7c\xb4\x13\x81\xbb\x2e\x88\xbe\x09\xb2\x8c\x4c\xe4\x4d\x82\x5a\x88\x5e\xe0\x0b\xf4\x14\xa7\xd1\x19\xcd\x09\x79\xc0\x3b\xa5\x53\x1c\x73\xfa\xcd\x93\x17\x4f\x0f\x3a\xb2\x35\xf1\x5c\x31\xf1\xf8\x7e\x12\x8f\xa3\xd3\x05\xcb\x44\x99\x40\x56\xc8\xac\x28\xbf\x64\x9a\xcc\x71\x9a\x5f\xa0\x7f\xe8\xb6\x18\x6e\x93\x82\xf0\x7d\x37\xa1\x39\x8e\x33\xf2\x10\xc5\x2c\x5d\x40\x9e\x88\xbb\x34\x4d\xf4\x14\x8f\x83\xc5\x34\x1f\xa0\x1e\xaa\xb5\x3b\xbb\x90\x48\xb9\xee\xab\xdf\x93\xd0\x1c\xa7\x3c\x91\xb9\xac\x8e\xf4\x7f\x19\x9a\x51\xce\x92\x67\x66\x50\x95\xdc\xd4\x2b\x1f\xf2\x04\xcd\x71\x3a\x4e\xd2\x99\x52\xb9\x56\xb3\x92\xfe\x71\x34\x3e\x1d\xf8\x7a\x19\xd1\x83\xaf\x23\x88\x39\xd3\xee\xec\x6e\x75\x3b\x46\x08\x6e\x4a\x0a\x45\xdd\xf8\x24\x11\xd2\x1a\xbf\xac\x17\x25\x24\x2d\x4a\x20\x4f\x46\x25\x94\xac\xc5\xe7\x5b\x79\x16\xd1\xd7\x20\xe7\x2e\x09\xa9\x6a\xc6\x50\xd2\x7f\x23\x17\xdf\xf0\xfb\x66\xe3\x24\x85\x5d\x8c\x6c\xf4\x1a\x12\x83\x7e\x0c\xc7\x56\xd2\x78\xca\xed\x7c\xf7\xa8\xb9\x61\xad\x52\xf0\x1f\x39\x58\xbb\x34\xfd\xe4\x95\xab\x69\xe8\xc3\xd8\x6a\xb5\xcc\x8a\x0b\xb2\xd7\x8f\xc6\xa7\x6e\xc7\x0b\x32\x10\x7b\xe2\x27\x67\x3c\x02\xee\x0b\x86\x61\xcf\x77\x38\xae\xa0\x37\xe8\xaa\x8a\xa0\x75\xf2\xcd\xce\x59\xdd\xc0\x2d\xfc\xa1\x59\xb1\x70\x16\x4c\x73\xf4\x18\xfe\xb3\x7a\x22\x5a\x7e\x8d\x46\xb9\xd7\x7e\x15\xb6\xa3\x89\xd4\xc3\x71\x93\x45\x25\xa9\x71\x62\x1a\x80\x9f\x77\x50\x19\xb8\x3a\xae\x46\xc9\x95\x72\xbb\xe8\x43\xef\x74\x20\x8c\x72\x4f\x52\x58\x76\xcb\x1e\xee\xee\x33\x5e\x25\xec\x43\x65\x50\x43\x8c\x8e\xdb\x2d\xd1\x9f\xa0\x1c\x74\x53\xda\xd9\x34\xdd\xbc\x65\xcf\x71\x85\x7a\x02\x3d\xf9\x30\x0e\xf1\xd2\x55\xe2\xb8\xb5\x64\x06\x20\x47\xb4\xce\x92\x10\x5d\x02\x15\xa1\x2c\x8b\x37\xde\xfc\xf5\x12\x1b\x5e\x48\xbe\xf1\x16\xe2\x4b\xde\x1e\x19\x95\x26\x7b\x72\x39\x61\xc8\xa5\x85\x82\xca\x17\x25\x4e\x16\xfa\x47\xa6\xa8\x1b\x04\xf2\xb8\x48\x8f\x38\x3e\x4e\xe7\x02\x41\x24\xcb\x73\xcc\x93\x65\x03\x07\xca\x34\xbe\x92\x6a\x73\xcc\x10\xcb\xe8\x2d\x53\x03\xdb\xdf\xcb\xb3\x31\x40\xfd\x5a\x17\x3b\x7b\xd7\x06\x17\x59\x8c\xe4\x2b\x46\xb8\x07\x91\x43\xd1\xc7\xee\xaa\x23\x35\x9a\x1d\xab\xd6\x81\x85\xe6\xcb\xd1\xa6\xbe\x1c\xca\xf0\x79\x9d\x39\x10\xc8\x73\xad\x09\xe8\x3d\xd1\xd3\xea\x47\x57\x5f\x57\xe9\x6f\x54\x16\x0a\xca\x45\x2c\xef\x7d\xf5\x9d\x3b\x60\x95\xd2\xc4\x9f\xaf\xdf\xea\xe4\xc0\xd5\x29\xc7\x8d\x6b\xab\xdf\x3e\x50\x1f\x98\x0f\xdc\x07\x46\x19\xcd\x87\xe8\x43\x41\xef\x91\x3f\x59\xe2\xf8\x03\xb8\xc3\x58\x84\x1c\x7f\x30\xdd\x62\xf8\xdf\xa5\xfd\xda\x0c\x38\x45\xfe\x14\xe1\xc0\x6c\xd3\xd0\xa8\x6b\x48\x0c\x21\x71\xdc\x3a\xb9\x7f\xbf\xd8\xa5\x48\xa9\x5c\xd9\xfa\x72\xb9\xe1\x08\x62\xc6\xd6\x32\x59\xae\xc8\x81\x52\xdd\x46\x5c\x69\x41\xaf\x12\x6c\xa6\x70\x21\x5f\x71\x11\xbf\x2e\xd5\x32\xca\x5c\xe9\xf6\xcb\xa3\xd7\x38\x54\x83\x6b\x08\x62\x43\x55\x04\xa1\x19\x52\xa5\xd0\xa7\x26\xac\x56\xac\x81\x3c\xba\xe9\x55\xaa\x29\xd4\x4d\x65\x90\x1d\xb1\x95\xf4\x29\x30\x0d\x64\x2a\xaa\xac\xdb\x75\xb5\x98\x00\x95\x28\x4f\x97\x45\xbe\x68\xb4\x36\x77\xa0\x1e\x33\x85\x2e\xcf\x09\x7b\x79\xd2\xd8\xf9\xb6\xef\xd0\xaf\x90\xd6\xbd\x3c\x39\xfa\xcd\xda\x8e\xbc\xe9\xb5\x7d\x59\xaf\xbf\x07\xeb\xd2\x11\x38\x67\xee\x73\xe7\x5d\x6a\x44\x52\x5f\x16\xd9\x91\x04\x1e\x6f\xf1\x22\x0b\x86\x53\xcc\xc2\x81\x29\xe8\x1c\x21\x35\xd5\x22\xad\xc5\x7c\xf3\x0b\xd2\x33\xac\x29\xcb\xc2\x5b\xc8\xa6\x8c\x98\xa3\x2d\xf3\x31\xb6\x2d\x49\x02\x1e\x62\xac\x44\x19\x0a\x10\x4d\xc0\x8c\xce\x70\x9a\x41\xd4\xb2\x49\x90\xa3\x18\x9f\x4e\xf1\x28\xc7\x21\x11\xc3\x23\x96\x52\x35\x67\x06\x9f\x3c\x41\xd3\x28\xcf\xa7\x78\x93\x06\xb8\x6c\xea\x95\xe2\x34\x4d\x52\x14\x26\x38\x8b\x37\x72\x14\x8c\xc7\x78\x44\xcb\x52\xa4\x36\x32\x94\xe1\xd1\x22\x8d\xf2\x8b\x86\x28\x38\x5c\xe4\x28\xca\xa1\x10\x2f\x11\xe5\x99\x08\xa8\x10\x4d\xa3\x9c\x5d\xe2\xa6\x79\x5d\x23\x22\x9f\x67\x38\xa6\xeb\x41\xe6\x32\x94\xd1\x0e\x79\x49\x89\x13\xe6\x32\xe3\xad\x3a\x7e\xeb\x26\x6d\x2b\xde\xa4\xbc\x50\xdd\xa0\xbd\x1b\x0c\xe9\xbd\x0d\xbb\x86\xb3\xa2\xdd\x42\xc4\x76\x68\x64\xf5\xc2\xde\x7d\xda\x9f\xa2\x5d\xf2\xcb\x91\x38\xee\xc5\x71\xeb\xa4\x81\x6a\x2f\x8e\xbb\x27\x2c\x58\x00\xfa\x44\x1e\xd9\x51\x40\xbb\x5f\x77\x24\x91\x7b\x71\xdc\xa6\x85\x5a\x7a\xa1\x6e\x71\xa1\x0e\x2d\xd4\xd6\x0b\xb5\x8a\x0b\x75\x69\xa1\x8e\x5e\xa8\x2d\x0a\xe9\x65\x5c\xd9\x91\xac\x2e\xe3\xb7\x0c\x7d\x9d\xb6\x2f\x3a\x6d\xdf\xdd\x69\x36\x3e\x4a\x77\x31\x9a\xe8\x81\xc9\x78\xcc\xd3\x0e\x52\xa4\x69\x90\xd5\x56\x8b\x7c\x71\xd1\x6b\x0f\x44\x57\xaf\xb9\xed\xac\xb9\x53\xa9\xe6\x96\xb7\xe3\x95\x3a\x8c\x9a\xbb\x95\x6a\x6e\xfb\x46\xa7\xa1\xd4\x61\xd4\xdc\x32\x6a\x2e\x1f\xc8\xfd\x20\x4d\x2f\xd0\xd0\x4c\xa7\x4a\x87\x6a\x48\xe3\x5f\xd8\x96\x8c\x9c\x0e\x3e\x11\x3d\xd9\x45\x96\xe3\x19\x1a\x27\x8b\x14\xe5\xd1\xcc\x1c\xfb\x15\x83\xf2\xc6\x78\x99\x1f\x91\xd9\xe7\x8f\x1f\xeb\x88\x78\xfb\x2a\x09\xa3\xf1\x05\x95\x84\x94\x0f\x2b\x60\xb1\xeb\xc7\x62\xff\x98\x5e\x1c\xf8\xf3\x18\x52\x5e\x42\xb4\x15\x2b\x53\x9c\x2b\x49\xee\xef\x28\xc3\xf9\x62\xae\x7f\x28\xb8\xd1\x51\xbe\xd9\x3f\xfc\x9d\x5e\xed\x28\xda\xe1\x1f\xfe\xfe\xbe\x85\xf6\xd0\xe1\xef\x76\x6a\x34\x05\xa4\x4d\x41\xda\xce\x68\xc6\xea\x94\x86\xa1\xcc\x16\xc3\x33\x4c\x54\x05\xdf\xd6\xbf\x45\x83\x1f\x43\xdb\x34\xfa\xf1\x27\x44\x9f\x7c\xd1\x8f\x55\x70\x16\xe6\x58\xc0\xcb\xe3\x50\x77\x98\x63\xd1\x6c\x47\x34\xdb\xd6\x9a\x6d\x97\x35\xdb\xd6\x9b\x6d\xaf\xd6\x2c\x84\xd1\x89\x5a\x7c\x0a\x92\x4a\xa2\x8e\x3e\x03\x7d\x45\xbb\x50\xb4\xc3\x27\x33\x14\x6d\xe9\xd3\xd4\x33\x22\x8c\xad\x8b\x44\x2b\x02\x6e\x6d\xd1\x7d\xbd\x19\xdb\x9f\x7e\x6c\xd3\x8f\x6d\xe7\xc7\x0e\xfd\xd8\x71\x7e\xec\xd2\x8f\x5d\xe7\xc7\x5e\x51\x9b\xdb\x45\x6d\xf6\x8b\xda\xdc\x11\x6d\x16\x58\xa4\x2a\x49\x1e\xb4\xba\xf4\x41\xd5\x24\x10\xb2\x8d\x14\xea\x3d\xa2\x6b\x49\xee\xea\x35\x5e\x2b\xda\x47\x25\xc9\xac\x83\xb8\xa9\xf3\x2f\xef\xd0\xb9\xf2\x96\x19\x48\x21\x1d\xfa\x88\x86\x1a\xfa\x13\x98\x10\xd5\xfe\x24\x63\xcf\x67\x09\x3c\x8b\xb5\xf7\xa1\x59\xb0\x4d\x0b\x76\x58\xc1\x1d\xa3\xe0\xb6\xb7\x60\x87\x16\xec\xb1\x82\x6d\xa3\xe0\x8e\xb7\x60\x97\x16\xec\x9f\x08\xd4\xb4\x82\x6d\x59\xf0\x4a\xab\x58\x51\x94\x7a\x8a\x08\x8f\x1d\x7f\xc4\x52\xb2\xb3\xe0\xf1\xf0\xb8\x4e\xf4\x78\x5e\x0f\x13\x70\xa2\x1e\x57\xfc\x78\x27\xbe\xce\x4b\x78\x48\xc9\xd1\x2b\x6e\xd3\x1d\x15\xdf\xa2\x53\xb9\x5f\xf8\xf1\xc8\x93\x5b\xf9\x31\x3a\xa3\x5f\xfa\xbd\xad\x6e\xc7\x34\xcb\x89\x69\x22\x18\xb6\x56\xf1\x2a\x94\x36\x3f\xb4\x2f\x8a\x0a\x6a\x38\xfc\x1c\x05\x67\x18\x25\xd3\xd0\x2b\x6a\x57\xd0\x1f\xf6\xdf\xd3\xc1\xdd\x37\xe3\x1d\x6a\x2d\xee\x07\xd3\xd1\x62\x4a\x66\x58\x8c\xcf\xbd\xcd\xee\xb3\x44\x30\xfb\x34\x11\x4c\x6b\xd9\x0b\xbb\xf0\x7f\xe8\x3e\xd7\xd0\xcc\x7c\x2d\xfb\x2c\x2f\xcc\x3e\xcd\x0b\xd3\x5a\xb2\x12\x5d\x88\x29\xbf\xcf\x15\xd4\x56\x1d\x3d\x42\xb5\xfd\xf7\xca\xf3\x7f\xa1\x36\x1a\xa0\x56\xdd\xae\xb1\xc3\x6a\xec\xd0\x1a\x59\x85\x3d\x56\x63\xdb\xa8\xb1\x5d\xa1\xc6\x2e\xab\xb1\x6b\x91\x55\xa3\xed\x68\x35\x76\x2a\xd4\xd8\x63\x35\xf6\x9c\x54\x77\x8d\x1a\xbb\x15\x6a\xdc\x66\x35\x6e\x3b\xa9\xee\x19\x35\xf6\x2a\xd4\xd8\x67\x35\xf6\x9d\x54\x6f\x1b\x35\x6e\x57\xa8\x71\x87\xd5\xb8\xe3\xa4\xba\x6f\xd4\xd8\x2f\xad\x51\xaa\xfd\xb4\x52\xad\xf8\x8e\x59\xdc\xbc\x1d\x23\x78\x9a\xac\x3e\xa7\x9b\x57\x98\x44\x04\xea\x74\x09\xb2\x3a\x22\xa4\xed\x3b\x92\x70\xf0\x74\xf9\xe9\x62\x94\xa3\x49\x74\x3a\x41\x41\x1c\xa2\x69\x72\x8e\x82\xf4\x74\x01\xe1\x5f\xe0\x9a\xf3\xff\x2c\x82\xd4\x4a\xdc\x03\x0d\x04\x68\x8f\xb4\xc2\xb5\x38\x87\xf1\xe0\x74\x48\x41\xe8\x2a\xe1\xdc\x3e\x71\x9a\x35\x0c\x52\x9c\x2d\xa6\x39\x4a\xc6\x45\xcd\x4f\xe8\x12\x50\x3b\x0d\xd0\x4f\xe8\x34\xa0\x57\x57\xda\x3b\x75\x74\x1f\xd1\x57\x43\xf6\x6a\x1b\x5e\x0d\xe1\x95\x0b\xc9\x29\xad\x48\x21\x85\x6e\x09\x7f\x42\xa7\x4b\x18\xe1\x3a\x30\x04\x07\x10\x6a\xa7\x02\xe0\x4a\x04\x43\x08\xfa\xf3\xf5\x5b\x04\xe1\x24\xd5\x8f\xbf\x50\x09\x77\x3a\x41\x7f\xa1\xd3\x69\x55\x21\xe7\x36\xaa\xfc\xc9\x44\xdc\x2f\x54\xc4\xd5\x6a\xbf\xc8\xe5\x9b\xac\x64\xbf\x28\x6a\x41\x9d\x01\xf4\x75\x80\xbe\x04\x30\xf9\xf9\x4f\x26\x0d\x7f\xa1\xd2\xb0\x46\x9b\x91\xeb\xed\x2f\x5c\xfe\xc1\x7a\x7b\x1f\x91\xd6\xec\x3a\x3a\xac\x8e\x0e\xaf\xa3\xad\x23\xd0\xb6\x30\x6c\xe9\x00\xad\x22\x0c\xbb\xac\xf6\x2e\xaf\xbd\xa3\x63\xd8\x31\x30\x6c\x3b\x30\xec\xb1\x3a\x7a\xbc\x8e\xae\x8e\x40\xd7\xc2\xb0\xa3\x03\x74\x8a\x30\xdc\x66\xb5\x6f\xf3\xda\x7b\x3a\x86\x3d\x03\xc3\xae\x03\xc3\x3e\xab\xa3\xcf\xeb\xd8\xd6\x11\xd8\xb6\x30\xec\xe9\x00\xbd\x22\x0c\x77\x58\xed\x3b\x27\x1a\x8b\x08\x0c\xfb\x06\x86\xdb\x1a\x86\x95\x12\x7f\x64\x3c\xe9\x84\xb0\xb5\x56\x48\x3b\x51\x76\xdc\x45\xeb\xca\xf1\x32\x57\xcf\x9d\x54\x4b\x2a\x0f\xa5\xa0\xa5\x71\xa0\xa7\x45\xf6\xf9\xd5\x7c\x1a\x10\x6c\x96\x39\xf2\x56\xc7\xe2\xcc\xd4\x64\xcb\xae\x1a\xc5\xc1\x55\x91\x51\x57\x4f\xde\xa1\x42\xd6\x8b\xce\xa0\x54\xc0\xca\xce\xc8\x0d\xfd\x6c\x64\xb0\xdd\x6b\xc8\x43\x91\xc1\x76\xbf\xc1\xce\x4a\x06\xfd\xf6\xe5\x49\x63\xe7\xdb\x8e\x44\x78\x7b\x5e\x75\x7b\x5e\x75\x63\xe7\x55\xc6\x14\x97\xe7\x39\xe6\x49\xce\xb7\x75\x86\x73\x5d\x59\xe1\x5e\x88\xad\xf9\x0b\x7d\x6b\xfe\x62\xdd\xad\xf9\x0b\x7d\x6b\xfe\xa2\x68\x6b\x5e\x66\x60\xbe\x3d\xa9\xba\x3d\xa9\xba\x3d\xa9\xd2\xbe\xdc\x9e\x54\xdd\x9e\x54\xdd\x9e\x54\xc9\x66\x6f\x4f\xaa\xcc\x8f\xb7\x27\x55\x9e\xc7\xdb\x93\xaa\xdb\x93\xaa\xdb\x93\x2a\xf8\xbb\x3d\xa9\xaa\x66\xc4\xbd\x3d\xa9\xba\x3d\xa9\xba\x3d\xa9\x52\xfe\x6e\x4f\xaa\x6e\x4f\xaa\x6e\x4f\xaa\x6e\x4f\xaa\xfe\x93\x4f\xaa\xae\xed\x8c\x6a\xbd\xd3\xa9\x2a\xe7\x52\x15\x4e\xa4\x6e\xea\x2c\xea\xdb\xce\x87\x72\x7b\x16\xf5\xfd\x9f\x45\xa9\x67\x47\xfb\xbd\xd2\x8b\x4e\xea\xc9\xd1\x7e\x4f\x39\x36\x82\x87\x9b\x3f\x33\xa2\xb7\x34\xc5\xa9\x91\x3b\xa8\x00\xbf\xa1\x5d\x74\xac\x04\xd7\x38\xd5\x1b\xc5\x4a\xcc\x74\xdb\x5e\x11\x47\x39\xca\x86\xc9\xd2\xae\xe7\x48\xa0\x73\xa4\x1e\xd3\xf1\x3f\x97\x36\xd9\xd9\xee\xfb\x37\xe5\x6c\xd3\x1d\x95\x9b\x71\x5f\xe0\x0b\x97\x1d\x57\x6f\xb1\xc1\xef\x8f\x97\x36\xcc\x3a\x85\x74\x01\x8f\x2a\x11\xa1\x7f\xa9\xfd\xe4\x31\x1d\xb2\x42\x64\x69\xe3\x7d\x7f\xac\x55\x64\x47\x42\xd3\x3e\x5b\x41\xd1\x5c\x7b\x7f\x42\x45\xed\x03\xba\x4f\xfb\xe7\x3e\x6f\xb4\x8e\xfe\x05\x54\x79\x62\x29\x9c\x07\x73\x37\xce\xb0\x6e\xd8\x16\x02\x65\x00\x8e\xdc\x17\xe3\xc9\x6b\x32\xe2\xe5\xc3\xb3\xef\x34\xf1\xb3\xac\x1a\x82\x69\x3e\xb0\x2c\xb3\xa2\xa2\x2b\x9b\xe5\xb8\x25\x04\xac\x20\x56\xfe\x75\x32\x3c\x6e\x93\xa1\xd6\xb2\xb8\xe4\xdc\xd9\xee\x7b\x0c\x22\x2d\xaf\x31\xc4\xd9\x68\x55\xc3\x88\x32\x9f\x0c\xc3\x88\xec\xb4\xc8\xf8\xf2\x41\x76\x67\x69\x06\x78\x30\x0e\xea\xc5\x3f\xaa\x78\x1a\xe3\x21\x66\x53\x4c\xa7\x51\x4c\x4d\x6a\xb1\x63\x12\x45\x60\x41\xa7\x09\xe3\x18\x57\x6a\xdf\x35\x16\xf6\x30\xae\x93\x69\x0b\x18\xd6\xcf\xac\x92\x51\xf5\xf7\x3a\xb1\x9f\x48\xd9\x1a\x9b\x53\xa4\x08\xc3\xeb\x44\xe6\x35\x88\xcd\x3c\x06\xc6\xf6\xe9\x37\x88\x83\xe2\x38\xd1\x92\xac\x1e\x59\x7b\x77\xd2\x17\xda\x58\x31\xb5\x4c\xc3\xee\x6b\xd5\x7b\xf7\x7b\xd7\xa1\xf4\xee\xf7\x56\xd6\x78\xed\x35\xd6\x50\x77\xf7\x7b\xce\xd8\x16\x70\x42\x13\xe1\x70\x8d\x15\xfe\x69\x9a\xcc\xb5\x55\x9e\xbd\x80\x4e\xf8\x0c\x51\xf1\x42\xd2\x9c\x1e\x68\xce\xb0\xf3\x93\x81\x27\x50\x22\xd4\x1c\x6a\x3f\xe8\xa8\xd5\x9a\xb1\xe6\x08\xea\x4a\xd4\x2f\x63\x16\x93\xaa\x06\x7a\x15\x7a\xc4\xb8\x4a\x4a\x0c\x69\x83\x03\x16\x9f\x61\x90\xfe\x2c\x58\xc0\x85\xe3\x0b\xc1\x8b\xac\xe2\x3f\xc3\x62\xbe\xb9\xe9\x5c\xc3\x57\x10\xf7\xa8\x24\x01\xd2\x57\x34\xdb\x48\x17\x5d\xcf\x8c\x83\x9a\x56\x9f\x75\x8c\xe7\x8b\x67\x1e\x01\x2a\xde\x69\xee\xf7\x6e\x6a\x9b\x79\xb5\x74\x7d\x9f\x73\x7f\x79\x63\xbb\xc0\xcf\x1b\xc4\x99\x88\x2a\x9c\xe1\xf4\x0c\xdf\xbd\x53\x1b\xd5\x51\xa7\xd5\xee\xa0\xe1\x05\xda\xff\xff\xfe\xdf\x30\x8d\x46\xe8\x15\xce\xe2\x68\xda\x44\x8f\xa7\x53\x94\x46\xa7\x93\x3c\x43\x0c\x3e\x6c\xde\xbd\x7b\xe7\x2d\x0e\xa3\x2c\x4f\xa3\xe1\x02\xea\x0f\xe2\x10\x82\xf2\x44\x31\xca\x92\x45\x3a\xc2\xf0\x66\x18\xc5\x41\x7a\x41\xc4\xc1\x2c\x6b\xb0\x28\x0d\x29\xfc\x37\x59\xe4\x68\x06\x32\x7d\x04\x92\xb5\x81\x82\x14\xa3\x39\x4e\x67\x51\x9e\xe3\x10\xcd\xd3\xe4\x2c\x0a\x71\x48\x83\x4e\x90\x79\x3a\x4e\xa6\xd3\xe4\x3c\x8a\x4f\xd1\x28\x89\xc3\x88\xce\x61\x52\x68\x86\xf3\x01\x9b\xf1\x9b\x48\x47\x2b\x03\xc3\x30\xc5\x67\x94\xfc\xff\xec\xbd\xfb\x56\x1b\x39\xf6\x30\xfa\x77\xe7\x29\x34\x73\xd6\x24\xa6\xa9\x40\x49\x75\x53\x25\xa1\xcf\x21\x60\x1a\x4e\x93\x90\x03\x64\xd2\xbd\xb2\x92\x4c\x5d\x54\xd8\x1d\x63\xf3\xb3\x4d\x80\x9e\xce\xac\xf3\x1a\xdf\xeb\x7d\x4f\xf2\x2d\x6d\xa9\xaa\x54\x55\x92\xca\x10\xd2\xbf\xe9\xf9\x85\x59\x93\xb6\xad\xad\xbd\xb7\xf6\x4d\xf7\xad\x9c\xa1\xf3\xcb\xc5\x92\x77\xd4\xc9\x78\x0a\x48\x93\x74\xf6\x89\x17\x5d\xdc\x40\x13\xd1\x74\xb6\x1c\x67\xcc\x11\x79\x85\x26\xe3\x05\xac\x2c\xab\xf4\xa6\x79\x8b\x99\x7c\xbc\xc8\x26\xc9\xf8\x9c\xcd\x37\x4c\x3c\x8c\xa7\xaa\x20\x4a\x1e\x2e\xe6\xb3\xfc\x32\x63\xf7\xce\x06\x92\x4d\xcb\x67\xd9\x65\x95\x07\x83\xd7\xd8\x9c\xcd\x65\x8e\x8c\xf3\x64\xc9\xe6\xe3\x64\xb2\xa8\xc5\x0c\xba\x81\x6a\x0a\xeb\x5c\xcf\xa7\xfb\x07\x27\xe8\xe4\x68\xef\xf4\xcd\xf6\xf1\x10\x1d\x9c\xa0\x57\xc7\x47\x7f\x3f\xd8\x1d\xee\xa2\xe7\xbf\xa0\xd3\xfd\x21\xda\x39\x7a\xf5\xcb\xf1\xc1\x8f\xfb\xa7\x68\xff\xe8\x70\x77\x78\x7c\x82\xb6\x5f\xee\xa2\x9d\xa3\x97\xa7\xc7\x07\xcf\x5f\x9f\x1e\x1d\x9f\xa0\xbf\x6e\x9f\xa0\x83\x93\xbf\x42\xc1\xf6\xcb\x5f\xd0\xf0\xe7\x57\xc7\xc3\x93\x13\x74\x74\x8c\x0e\x5e\xbc\x3a\x3c\x18\xee\xa2\x37\xdb\xc7\xc7\xdb\x2f\x4f\x0f\x86\x27\x0e\x3a\x78\xb9\x73\xf8\x7a\xf7\xe0\xe5\x8f\x0e\x7a\xfe\xfa\x14\xbd\x3c\x3a\x45\x87\x07\x2f\x0e\x4e\x87\xbb\xe8\xf4\xc8\x01\xa2\xdd\x6a\xe8\x68\x0f\xbd\x18\x1e\xef\xec\x6f\xbf\x3c\xdd\x7e\x7e\x70\x78\x70\xfa\x0b\xd0\xdb\x3b\x38\x7d\xc9\x69\xed\x1d\x1d\xa3\x6d\xf4\x6a\xfb\xf8\xf4\x60\xe7\xf5\xe1\xf6\x31\x7a\xf5\xfa\xf8\xd5\xd1\xc9\x10\xf1\x66\xed\x1e\x9c\xec\x1c\x6e\x1f\xbc\x18\xee\x6e\xa0\x83\x97\xe8\xe5\x11\x1a\xfe\x7d\xf8\xf2\x14\x9d\xec\x6f\x1f\x1e\x6a\x5b\xc9\x79\x6f\xb4\xf1\xf9\x10\x1d\x1e\x6c\x3f\x3f\x1c\x0a\x4a\x2f\x7f\x41\xbb\x07\xc7\xc3\x9d\x53\xde\x9c\xfa\xd3\xce\xc1\xee\xf0\xe5\xe9\xf6\xa1\x83\x4e\x5e\x0d\x77\x0e\xf8\x87\xe1\xcf\xc3\x17\xaf\x0e\xb7\x8f\x7f\x71\x24\xce\x93\xe1\xff\xf7\x7a\xf8\xf2\xf4\x60\xfb\x10\xed\x6e\xbf\xd8\xfe\x71\x78\x82\x06\x3d\x22\x79\x75\x7c\xb4\xf3\xfa\x78\xf8\x82\xf3\x7c\xb4\x87\x4e\x5e\x3f\x3f\x39\x3d\x38\x7d\x7d\x3a\x44\x3f\x1e\x1d\xed\x82\xa0\x4f\x86\xc7\x7f\x3f\xd8\x19\x9e\x3c\x45\x87\x47\x27\x20\xad\xd7\x27\x43\x07\xed\x6e\x9f\x6e\x03\xe1\x57\xc7\x47\x7b\x07\xa7\x27\x4f\xf9\xe7\xe7\xaf\x4f\x0e\x40\x68\x07\x2f\x4f\x87\xc7\xc7\xaf\x5f\x9d\x1e\x1c\xbd\x5c\x43\xfb\x47\x6f\x86\x7f\x1f\x1e\xa3\x9d\xed\xd7\x27\xc3\x5d\x90\xee\xd1\x4b\x68\xea\xe9\xfe\xf0\xe8\xf8\x17\x8e\x94\xcb\x00\x84\xef\xa0\x37\xfb\xc3\xd3\xfd\xe1\x31\x17\x28\x48\x6a\x9b\x8b\xe0\xe4\xf4\xf8\x60\xe7\x54\x05\x3b\x3a\x46\xa7\x47\xc7\xa7\x4a\x1b\xd1\xcb\xe1\x8f\x87\x07\x3f\x0e\x5f\xee\x0c\x79\xe9\x11\xc7\xf2\xe6\xe0\x64\xb8\x86\xb6\x8f\x0f\x4e\x38\xc0\x81\x20\xfb\x66\xfb\x17\x74\xf4\x1a\x9a\xcc\x75\xf4\xfa\x64\x28\x3e\x2a\x16\xeb\x80\x26\xd1\xc1\x1e\xda\xde\xfd\xfb\x01\x67\x5b\x02\xbf\x3a\x3a\x39\x39\x90\x76\x02\x22\xdb\xd9\x97\xe2\xde\x78\xf0\xdd\xf7\x9b\xcd\x35\xaf\x17\xc9\x72\x74\xbf\xeb\x5e\xab\x65\x9d\x16\x89\x8f\x2b\x10\xf1\x75\xa5\xd3\xd9\xb0\x61\x97\x4c\x97\x0b\xb4\x4c\xd2\x72\xc4\xc2\xab\x7c\xf8\x6d\xa2\x4d\xb6\x59\x8f\xa3\x5c\x07\x21\xec\x20\x44\x1c\x84\x3c\x07\x21\xdf\x41\x28\x70\x10\x0a\x1d\x84\x22\x07\x21\xea\x20\x14\x3b\x08\xbb\x0e\xc2\xd8\x41\x98\x38\x08\x7b\x0e\xc2\xbe\x83\x70\xa0\x9c\xb0\x8c\x44\x5d\x5e\xc6\xf1\x71\x78\x8e\x03\x07\x02\x2f\xaf\x07\xb4\x62\x89\x9f\x48\x1c\x18\x68\xd4\x78\x3c\x49\xcb\x97\xbc\xc4\x12\x07\x55\xf8\x8c\x24\xae\x50\xf2\x82\x05\x4e\xac\xe6\x5a\xc6\xb2\x6e\xc9\x8b\x2b\x70\x00\x1f\x25\x9f\x9e\xc0\xc5\xf1\x63\xb5\xdd\x2a\x1e\x5f\xd6\x0d\x24\xef\x91\xc4\x41\x14\x3e\xb1\xc4\x45\x25\x2f\xb2\xdd\xd8\x7b\xb7\xf6\x54\xd5\xc5\xbc\x47\x17\x25\x1f\x91\x22\x2b\x22\x71\x96\x3c\x87\x4d\x79\x40\xdb\xbc\x56\xdb\x43\x59\xc7\xab\x71\x41\xdd\xa0\xe6\xb9\xc4\x51\xca\x03\x68\xe1\x56\xdb\x01\x28\x50\x1a\x18\x49\x06\xc3\x5a\xb8\x15\x12\xa2\x08\x5a\x30\x5b\x23\xa2\xb2\x8e\x22\x2c\x50\x4c\x50\x0b\xb7\xc2\xe1\x29\x82\x16\xcc\x2a\x0c\x11\x29\x59\x57\x41\x56\x4a\x23\xaa\xb4\x57\x59\x28\x92\xd2\x11\xcc\x36\xb5\xb1\xe8\xf3\x0c\xc1\xa2\x94\x15\xb0\xa7\x52\x2a\x6d\xcb\x53\xe4\x19\xd6\x65\x0d\x9b\x8e\x1c\x28\x02\x51\x95\xf6\x1a\xd7\xb6\x57\xda\x14\x0e\x14\xb1\x46\x12\xb6\xa1\x0f\x5c\x1b\x41\xa5\x8b\x58\x02\x96\xc6\x43\x15\x98\x92\xf1\x08\x3e\xab\x73\xa9\xca\x97\xfd\xba\x6a\x49\xbf\xf2\x79\xd5\x27\x68\x03\x65\x8d\xaa\xf4\xcf\xa0\xb6\xfd\xaa\x9d\xa4\x66\xa1\x92\x93\x34\x19\x81\x17\xb5\x54\xd2\xe7\x20\x92\xb1\x86\xf0\x83\x9a\x01\x68\x67\x54\x3b\x22\x10\xf4\x25\x23\x61\x8b\x69\xaf\x29\xfc\xaa\xd1\xb8\xc6\x53\xc9\xae\x72\x68\x28\x6f\xe0\xa9\x02\x08\x56\x84\x14\xd6\x74\x2b\xc7\x93\x0e\x8c\x3d\x8d\x3e\xaa\x06\xb4\x18\x2f\x11\x55\x0e\x47\x94\xff\x06\x95\x17\x37\x05\x14\x68\xe0\xfc\xa6\x66\x2a\x4d\xd6\x8d\x42\x18\xa3\x77\x8d\x57\xb2\x3f\x8c\xb8\x87\x68\xf4\x81\xaa\x54\xcd\xae\x83\xdc\xeb\x60\x9b\x92\x28\x8e\x63\xfe\x39\x1c\xee\xc6\xc3\xe7\xdb\x98\x7f\xa6\x7b\xf8\xf9\xf3\x9d\xdd\x1d\xfe\x79\x3b\x0e\xbc\xbd\x5d\x7f\xd8\xd4\xf7\x68\x6e\x24\x10\xb8\xdb\x84\x3e\x1f\x86\x40\x60\xc7\xdf\xdd\xc5\xc4\x07\x02\xbb\x91\xeb\x0d\xf7\x3c\xfe\x39\xda\x0e\x77\xa3\x70\x08\x84\x4b\x86\xde\x69\xd7\x03\x8e\x0f\x5e\x0d\x5f\xec\xe2\xd0\x85\xf4\xfb\x3d\x6b\x48\x15\x6c\xbd\x8a\xa4\xfc\x24\x7a\xe5\xbb\xee\x15\x89\xc5\x44\x60\xc2\x90\x04\x3b\x8c\xfc\x80\x78\x2e\x48\x70\xb8\xb7\xb3\xbb\xfd\x9c\x42\x03\x63\xfa\x7c\x7b\x77\x67\x6f\xc8\x3f\x63\xd7\x23\x81\x1f\x81\x70\x76\xbc\x5d\x32\xc4\x7b\xee\x3b\xe3\xd2\xf8\xaa\x8b\xf2\xda\x85\xdd\x95\x6f\x29\x61\xcb\x4e\x4d\xff\x71\x7c\xc1\x05\xac\xbd\xd6\xc7\x22\x0d\xdb\x37\x2f\x3e\x28\xd0\xe5\xe6\xc1\x87\xee\x41\x26\x64\xdb\x53\x51\xea\xa1\x2d\x34\xe8\x02\x20\x71\x00\x54\x21\x56\x1f\x7c\x50\x7e\xbc\xdd\xa1\xd2\x0e\x42\x79\xae\xb4\x85\xb0\x7b\xba\xb4\x8b\xce\xb2\x34\x86\xfa\xce\x3a\xef\xa3\x6a\xff\x81\x9b\xa2\x71\xcb\x11\x02\xc0\x87\xd1\xc4\x0c\x30\x07\x80\xb9\x11\x00\x86\x9f\x1f\x7e\x33\x63\x80\x31\xd1\x87\xdf\xcc\x18\xa0\x9b\xfe\xb0\x30\x63\x80\x4e\xe3\xc3\x62\xae\xcf\x68\xbd\xb9\xc9\xbd\xec\x23\x9f\x34\x7f\x4a\xe6\x63\x3e\x3a\xd6\x6c\xd2\x26\x13\x07\xa5\x13\x07\x65\x13\x07\xe5\x13\x07\xb1\x89\x86\x50\x32\x77\x50\x3a\x77\x50\x36\x77\x50\x3e\x77\x10\x9b\xb7\x89\x25\x9c\x95\x84\x33\xbc\xdf\xbd\x32\x92\xce\x21\xe9\x38\x14\xe2\x76\x61\xc6\x0b\x33\x51\x48\xda\x85\x39\x2f\xcc\x45\xa1\xd7\x2e\x84\x09\x03\x13\x85\x7e\xbb\xb0\x7a\xa6\x3a\x69\xbe\x4b\x5d\x36\xa9\xbd\x2b\xa8\x3d\x4a\x08\xff\x5d\xdf\x42\x58\xeb\xdb\x4b\xee\x3e\xc9\x04\xad\xd7\x3e\xb5\xfe\xdb\xe4\xed\xf8\xdd\xbb\xb5\xdf\x75\x97\x18\xe0\xd6\xce\x33\x1c\xae\xfd\xf3\xc1\x77\xcd\xd0\xc8\x69\xa0\x02\x0f\xd2\x89\x93\x4d\x9c\x7c\xb2\x86\xd6\xd1\x68\xa2\xbf\x7b\xf3\x19\x55\x0b\x72\xe3\x67\x1e\x11\x4b\x6d\x1a\x6c\xa4\x8d\xad\x23\xf9\x0e\x36\x9f\x1a\xb1\x79\x6d\x6c\x1d\x55\x75\xb0\x85\xbe\x11\x9b\xdf\xc6\xd6\xd1\xad\x82\xed\x9f\x9b\x9b\x12\x23\x75\x8d\x18\x83\x36\xc6\x8e\x41\x20\x7d\x9a\x74\xae\xc4\xa5\x56\x5d\xbc\x04\xcd\x67\xcb\xc9\x60\xe9\x2c\xb8\x5a\x75\x97\x36\xc0\x06\x96\xeb\x6c\xa2\x57\x39\x78\x44\xc7\xa5\xf8\x1f\xd8\x6d\xae\x2b\x01\x73\x07\xba\xdc\x27\xb1\xf6\x1a\x10\xf8\x4b\xaa\xab\x0d\x6e\xd6\xd9\x49\xac\x58\x4d\xe6\x68\x5d\xb1\xd6\xf9\xdd\xad\x35\x18\xa4\x73\x27\x9b\x3b\xf9\x1c\x24\x3e\xff\x32\x6b\xf5\xdb\xd8\xbe\xd4\x5a\x9b\xd8\xbe\xc8\x5a\x49\x1b\xdb\x17\x5b\x2b\x6e\x63\xbc\x67\x6b\x9d\xc3\xae\xb5\xc5\x5c\xe7\x06\x73\x85\x88\x3a\xd7\x99\x2b\x04\x62\x5d\x09\x84\x68\x61\xae\x73\xa3\xb9\x42\x07\xa0\xab\x0d\x5d\x43\xf7\x84\x46\x3b\x94\x1f\xa8\xcf\x31\xc0\x18\x12\x4e\xfd\xb6\x46\x98\xfc\x9f\x2d\x34\xd8\x17\x47\x73\x33\x1e\x99\x73\x4d\x4b\xf7\xe5\x11\xde\x7d\x71\xfc\x36\xe7\x70\x3a\x89\xec\xcb\x63\xba\xfb\xe2\x20\x2d\xe3\x70\x89\x16\xce\x93\x70\x70\x58\x16\x7a\x84\x54\x0b\xe7\x4b\x38\x38\x98\x9c\x72\xb8\x4c\x0b\x07\x07\x98\x1b\x62\x69\x0f\x6b\xf7\xe4\xd3\x1a\x5f\x70\x3c\x2b\x4f\x96\x49\x35\x18\xe2\x5f\x34\x1d\x7f\xff\x33\x8c\x25\xe4\xf4\xf9\x78\xb9\x38\x9d\x2d\x21\xe2\x09\x9c\xd3\xdd\x64\x99\x88\x53\x5b\xdf\x23\xaa\xc1\x0e\x75\x0e\x59\xb1\xec\x3c\xda\x08\xf0\x9d\xc6\x6c\xe7\x79\xf7\x15\x62\x24\xdf\x5b\x14\x87\x99\x6a\x94\x7c\x34\x19\xbc\x43\xbf\x6f\x89\x87\x85\xeb\x33\x12\x15\xc4\xdf\x90\x47\xda\xd6\x5a\x63\x1a\x0c\x06\x35\xe8\x3a\xe2\xf1\x81\xa3\x8c\xd7\x38\x2a\x9f\xfb\x2d\xf6\x0d\x03\xe8\xb2\xaa\x10\x47\x3d\x78\x56\x7e\x5c\x7d\xf0\xdc\x41\x26\x07\xce\x2d\x64\x7d\x03\x67\x5d\x43\xd5\x77\x3a\xea\xf7\x30\xcb\x37\x76\xe0\x70\x8c\xe6\xd9\x8e\xcd\x4d\x98\x09\x22\x78\xdd\x45\x5c\xc8\xd2\x1e\x9c\xba\x10\x33\xaf\xee\x6b\x2e\x76\xb3\x04\xef\x56\xc7\xe8\x1a\xc3\xd9\x47\x5b\x48\x1d\xbe\x7f\xd9\xfc\x2d\x58\x69\xfa\xa6\x9f\x91\xed\xc3\x54\x6c\x5f\x73\x99\x04\xd9\xe6\x60\xfb\xd5\x75\xbd\xfd\xc6\xf4\x6a\xff\xd6\xf3\x2a\x61\x21\xfb\x8d\x39\xd5\xbe\x71\x32\xd5\x7f\x14\xee\x58\xec\x84\x0b\xe5\xca\x17\x2c\x72\x10\x76\x13\x54\xee\x98\xb7\x14\xd4\x08\x53\xd9\x64\x36\xb5\x07\x28\x38\x4a\xc0\xa1\xea\xd5\x05\xf8\x6a\x3e\x06\x21\x8a\x3f\x74\x8c\x44\xd4\xeb\xda\x9a\x64\x13\x4a\x1b\xe7\xa2\xe0\xe3\x67\xb1\xfb\x8f\xd4\x13\x71\x05\x1e\x5c\x3b\xe8\xc6\x41\xbf\xe9\x9e\xf9\x18\x0c\xae\xe1\x66\xe7\x0d\xfc\xfb\x5b\xfd\x5a\xfb\xe7\x0e\x1e\x62\xc7\x33\xb8\x5e\x7b\x38\xb8\x59\x13\xd7\xc9\xff\xc5\xbf\xfc\xb6\xb6\xb6\xf6\xd4\x84\xcd\xeb\xc5\xc6\x11\xfd\x8b\x63\xac\x59\x33\xe0\xf2\xfb\x71\x3d\x04\x0c\xc0\xdb\xcd\xda\xc3\xc1\xbf\x80\x39\x33\xc6\x60\x15\x99\x71\xa1\xfd\x5e\xa3\x32\xe0\x82\xa1\xc4\xb5\x33\xd5\x62\xba\x7e\xf6\x6c\x0a\x5c\x5d\xff\xf0\xc3\x0f\x03\x8f\x3c\x9e\xaa\x4c\x89\x0f\xd6\xd3\x30\xe5\x61\x18\xf1\x0e\xdc\x6a\x87\x61\x8c\xaf\xfd\xc8\xf3\x2d\x70\xe6\xa9\xfc\xbc\x9c\x89\xc8\xd4\x45\x63\x78\x9f\xc7\x00\x7d\xd7\x87\x79\xa4\x67\xd4\x27\x59\xca\x05\xbc\xc1\x23\xc9\xe2\x23\xcd\x29\x1c\x73\xad\xab\x92\x5b\xdd\x71\x9b\xee\xe2\x60\xeb\xa8\x4d\x09\xb0\xda\x51\xa5\x52\x39\xfb\x2f\xb6\x77\xfe\x00\xd5\x58\xaa\x7f\x64\x37\x50\x75\xc1\xb2\x39\x5b\x1a\xde\x4e\x32\x28\x14\x9e\x1c\xbc\x47\x85\x8a\x87\x0c\x2b\xd5\xec\x9f\x27\x59\xad\x1e\xf5\x88\x95\x46\x43\x0d\xe0\xae\x96\xce\x93\x4c\xa3\xa9\xef\x3e\x8b\x7d\x60\xc3\xd1\xa8\x12\x52\xff\x3a\xd1\xe7\x77\x4e\x14\x7d\x3b\xe2\xf4\x9f\x70\x65\xe5\x6b\x6f\xdd\xb7\x12\xab\x29\x84\x8d\x29\xd3\x4e\xf6\xb7\x1f\xe3\x15\x76\x32\xba\x6f\x55\xdf\xe7\xfe\xc5\x16\xdc\x3e\xad\xb7\x30\xc6\xd3\xf1\x72\xa0\x49\x40\xd5\xdc\xd2\x60\x45\x96\x27\x29\x8d\x35\xb9\x99\xdc\xeb\x98\xa6\x49\x9e\x15\xac\xb1\xc7\xa1\x03\xcc\xbc\x9c\x30\x5c\xb8\xcd\xb2\x2f\xdf\x02\x31\x8d\xd0\xf5\x83\xef\xee\x0a\x7a\x07\xc1\x2a\x6b\xcf\xfa\xe5\x62\x5e\x94\xea\x17\x8b\x61\xc0\xa8\x5f\x2a\x86\xe9\xaa\x7e\xa1\x98\x17\xb1\x6a\x99\xb8\xc3\xa9\x71\x9d\xd8\xb8\x26\x6c\x98\x2d\xc0\xba\x0f\x12\x37\x4c\x0d\xb9\x60\xde\x88\x81\x7f\x33\x05\x46\xf3\xee\x69\xf9\x57\x2e\x28\xe9\x11\x95\xf7\x1c\xde\xbc\x1d\xa3\xc7\xc8\x7b\x87\xde\xcb\x8f\xb4\xfe\x88\x7d\xe5\x73\x68\x7a\x3b\x52\xb2\x34\x98\xc2\xe5\x58\x31\xb7\x84\xe9\x83\x87\xf5\x69\x6a\xf4\x33\x21\x58\x5a\x1a\x24\x1c\x49\x00\x48\x12\x31\x93\x89\xe0\x82\x2c\x43\xeb\x40\xc8\xb4\xd0\x88\x9e\x21\xe2\x1a\xa5\x06\xcb\x66\x83\x41\x8a\x1e\xa2\x4c\x8c\x73\xf9\xc7\x1c\x30\xbb\xd7\x41\x22\x76\x61\x7b\x96\xf8\xd0\x33\xe4\xf7\x91\x48\xd1\x7b\x94\xa1\xf7\x28\x17\x98\x43\x96\xc7\x2c\x4d\x74\x49\x87\x5a\x98\xc3\x5b\x30\x2f\x78\xe7\x9f\x32\xd9\x8a\xc7\xc8\xbd\x8e\x5c\xe6\xfb\x1e\xf1\xcd\xb4\x36\xbf\xaf\xc8\x51\x77\x0d\x7d\xbf\xb9\x72\x5b\x38\x7e\x2f\x88\x73\x8f\x91\xf6\x2a\x0f\x32\xa8\x94\xfb\x4b\xae\x5b\xee\x43\x5b\x28\xd3\x2d\xf1\x21\x20\xf9\xec\x19\xf2\x5c\xd9\x4a\x50\xbf\xf6\x6d\x51\xb4\x85\x74\x7c\x24\xab\xdd\xd6\x5a\x69\x31\x50\x2e\xa2\x95\x8b\x6d\x49\xfb\x86\x37\x6a\x2c\x04\xc2\x82\x61\x27\xf3\x09\x6a\x2c\x02\xc2\x62\x61\xa6\x87\xf1\xd4\x85\xc2\x5c\x0f\xe3\xab\x8b\x84\xac\x0d\xf3\x6d\x81\xef\xdf\x75\x81\x8f\x8f\x85\x37\x8a\xc9\x6c\x36\x57\xd7\xdc\x36\xa1\xa3\x96\x7f\x5f\x44\x04\x72\x21\xd4\x98\x7b\xd6\xe9\x3a\xcb\x74\x5f\x69\x85\xee\x96\xeb\x40\xda\xe5\xba\x3f\xe3\x6a\xd0\xb7\x25\x84\xce\x62\x00\x1f\x3e\xdf\x6a\xf5\x00\x2a\xd8\x16\x0e\x9a\x03\xf2\xe6\x9a\x01\x2f\xfb\xb6\x5c\x70\xaf\xcb\x05\xa0\x8f\x15\x56\x0a\xf4\x6a\xa9\x17\x09\xa4\x6a\xcc\xd7\xa6\x38\x80\x79\x59\x80\xfe\xa9\x13\x6c\x2c\x46\x09\x09\xc2\xaf\x9d\x1b\x43\x52\xf9\x9f\xb3\x7c\xd0\x59\x1e\x50\xe7\xf0\x24\x08\x1b\xb3\x78\xe5\x16\x76\x7b\x55\x80\x10\x7f\xb5\x75\x01\x0e\xd8\xc0\x09\xdf\x05\xf2\x3f\x74\x6d\x20\xc3\x6e\x10\xb3\x9c\xf2\x29\xbf\x17\x46\x59\x1e\xb8\x11\x7c\x76\x23\x37\xcf\x31\x7c\x2e\x22\x97\x05\xb1\xa7\x5f\x33\x28\x8a\xcc\x75\x53\x0f\x16\x17\x42\x1a\x50\x1c\x60\xf1\xd9\x2f\x62\x5a\x24\x80\x20\x65\x45\xe2\x17\x89\x7f\x8b\xe5\x82\x95\x46\x9e\x4a\xd8\x97\xa2\x53\x6a\x5a\x6e\xd1\x42\x44\xad\x86\x33\x8f\xb7\xba\x83\x17\xc3\xc6\xd2\xb7\x2e\xba\xa7\xc7\x25\xc4\xbf\x6d\x27\xcd\xab\xf4\x74\xd3\x0d\xef\xe8\x74\xd4\x84\xe8\x2f\xb1\x7f\xeb\xaa\xbf\xa0\xab\xe6\x5a\x59\xad\xb3\xd6\x2a\xa7\xd1\x5d\x0b\x05\x59\x3b\x6c\x42\xda\x57\x9d\x95\x7b\xcd\xb2\x3b\x7a\x12\xc5\xbc\x03\x8f\xbf\xad\xeb\xff\xf7\x74\xcc\x7f\xbe\x6b\x79\x07\xe2\x11\x87\xf1\x6f\xd5\xad\x5c\x34\x9f\x5d\x4e\x73\x94\x35\xef\xeb\x29\x2d\xd8\x6f\x3f\x9d\xf2\x53\x73\x1b\xa0\x5c\xa8\x65\x35\x0e\x51\xa2\x1b\xc1\x20\x75\x4b\x79\xbc\x78\x35\x1f\x9f\xb3\xc1\x54\xdb\x8d\x2d\xfe\x6b\xbe\x7c\x59\xce\xf3\xf9\x97\xc1\xb4\x3d\xcf\xac\x16\x82\x85\x3a\xd1\x16\x22\x4f\xcb\xcf\xcf\xb6\x04\x86\xf2\x07\xcb\xda\xf0\x5f\x06\x53\xf4\x37\x09\xb6\x66\x5c\x2f\x94\x3e\x5a\x24\x93\x05\xeb\x3f\x15\xd8\x5e\x1f\x2b\xe7\xe3\xf3\xcb\xe6\x0c\x57\x23\x96\x33\xb6\xdc\x9b\x27\xf0\x39\x99\x3c\x1f\x2f\x17\x1a\x01\x55\x5b\xf8\x53\xf4\x18\x0d\xa6\x90\xd9\x73\x0d\x7d\xdf\x58\xfc\x68\xaf\x64\x29\xb4\xca\x55\x6a\x35\x33\x3b\xfc\x06\x0a\x69\xe5\xef\xb9\x1a\x8d\x27\x0c\x0d\x64\xd9\x33\x24\x8f\x64\xb6\xa5\x58\x6b\xd3\x28\xe8\x0a\x05\x35\x4a\x79\xff\xad\x00\x82\xb4\xa3\x1d\x41\x80\x2d\x5c\xcc\xae\x06\x53\x07\x61\xb4\x89\xc8\xda\x0a\x19\xdb\x11\xbc\x84\x72\x1b\xb4\xde\x9a\x36\x79\xb6\x40\xb1\xbe\xde\xb3\x14\x3a\x6d\x40\x94\x23\xa4\x41\x8d\xf3\xee\x7b\x6c\x7c\xe0\xbd\xda\x68\xba\x3b\x42\xff\xea\x3b\x6d\xfb\x1b\x8b\xc9\x38\x63\x03\x77\xed\xdb\xae\xd7\xca\xbb\x5e\x9d\xa2\x02\x8a\x02\x5d\xd1\x19\x14\x75\x36\x8c\x60\xcc\x02\x45\xd1\x17\x6f\xa3\x85\x96\x5c\xf7\x7f\xf4\x36\xda\x59\x72\x7e\x9e\xb8\xd7\xd5\x66\x1a\xee\x08\xa5\x0b\x0d\x07\x8d\x07\x65\xcd\x67\xcf\x10\x11\x9b\x5e\xe5\x2f\x3f\xfc\xf0\x03\x8a\xd6\xd6\x10\x7a\xaf\xc7\xd4\xfc\x6b\x60\xc2\x7e\x07\x13\xa6\x6b\x6b\xab\x61\x6a\xd6\xf3\xb4\xe1\xa5\xd1\x12\x5c\xb7\x5b\x7b\x48\xbe\x09\xac\x34\x1b\x0b\x66\x95\x66\xe3\xeb\x32\xdf\xf4\x8a\xcc\x36\x31\x79\x5d\x4c\xf1\x2d\x9b\x5d\xd6\xd3\xbf\x49\x80\x6a\xc3\x91\x4a\x5c\x97\x2d\x87\x24\xbf\xb2\x85\xeb\xd6\x0d\x53\xd3\xee\x67\x06\xb7\x1a\x07\x0c\x3d\x44\x05\x1c\x76\xfb\x17\xff\x78\x66\x7a\xc2\xe5\x3c\x81\x0c\x73\x09\x7a\x88\x52\x00\x4f\xc4\xee\xe0\x7b\x24\xf7\x09\x75\xfc\xc3\x60\x65\x7c\xc6\x19\xaf\xb6\x5a\xe5\x66\x9b\xdc\x6b\x15\x47\xff\x44\x09\x8e\x95\x12\xec\x35\x8a\x1a\x95\xf4\x7d\x5b\x45\x0c\xde\xa9\x19\x30\xb0\x71\x91\x39\x99\x41\xbd\x50\x62\x14\x25\x58\x29\xc1\x58\x2d\x8a\xc4\xc9\x56\x51\x44\x02\x7d\x8f\x07\x1b\xc8\x9c\xd2\x08\xad\x97\x64\xd7\xb9\x50\xd7\xc5\x43\x6f\xc6\xcd\x63\xa8\x48\xd0\x56\x29\x98\x75\x2e\x5a\x1d\x05\x1e\xb8\xce\x34\x08\x78\xac\x6b\xe7\x69\xe7\x7f\x3c\x3c\xea\x86\x5f\x90\x3b\x13\x5e\x4b\xc0\xba\x6d\x3e\xd4\xb3\x45\xda\xce\xb6\x8e\x7a\xb6\x43\x07\x4b\x2e\x88\x25\xd1\xd1\xfa\x9f\xb2\x35\x2a\x60\x02\x09\x03\x29\xc3\x0b\x3d\x4c\x28\x61\x20\x25\xf8\x99\x1e\x26\x92\x30\xe0\xf3\xa3\x6f\xdb\xb0\xdf\xb6\x61\xbf\x6d\xc3\x76\x47\x9b\xdf\xb6\x61\xff\x2d\xd7\x78\x83\xf0\xd6\x6b\xbc\x41\xd8\xbb\xc6\xab\xce\xd9\xba\x6b\xbc\x41\xf8\x6d\x8d\xf7\xde\xd7\x78\x83\x70\xd5\x35\x5e\x9d\x72\x9a\x6b\xbc\xa0\x20\xfb\xa1\xed\x6a\xef\x4c\xbf\x35\x4b\xdd\x3f\xf5\xd6\xec\x75\xe8\xff\x21\x0f\x17\x54\x74\xbe\xad\x02\x37\x57\x81\xaf\x43\xd8\x53\xdd\xb8\x0e\x7d\xe5\xf7\x9f\x43\x5f\x66\xe9\x06\x88\x0d\x25\x4f\xf4\xad\x72\xba\x29\xed\x3b\xde\x3f\xfa\x70\xb4\xb7\x77\x32\x3c\x3d\x69\xaf\x16\xbf\x3a\xf8\x70\xf0\x72\x77\xf8\xf3\xb0\xfb\x2a\xf7\xf1\xd1\xeb\x97\xbb\x1f\x76\x8e\x5e\x9e\x9c\x6e\xbf\xac\x6a\x2a\xe4\xc4\xb2\xf2\xce\x6a\xcb\xca\x4a\x8d\xf9\x68\x56\x26\x6d\x69\xad\x49\x97\xa4\xf9\xec\x1a\x3b\xe8\xc6\x94\xaa\x7c\x29\x96\x44\x96\xe8\x19\x22\xfe\x53\xb4\xd4\x2c\x89\x28\x6d\x7e\x7b\x8d\xd6\x51\x80\xbe\x47\x37\xe2\xf6\xe0\xb2\xbc\xa4\x09\x9f\xc8\x1a\xac\x54\xa2\xbf\xa1\xb0\x33\x16\x81\x61\x20\xbb\xfa\x19\x6d\xa1\x1b\xf4\x37\x14\xe8\x46\x89\xec\xea\x17\x8e\x95\xa0\xef\x11\xa7\xe3\x71\x3a\x6b\x1a\xe0\x6b\xb1\x2c\xf7\x73\xeb\xe7\x1b\xf1\xf3\x2f\x86\xa5\x60\x45\x6c\x17\x63\x34\x86\xe7\x04\x34\x42\xab\x24\x73\x2d\x24\x73\x2d\x2e\x68\x5e\x6b\x04\x53\x81\x0a\xe9\xa2\x1b\x01\x7a\x63\x58\x56\xaa\x0d\xa4\x29\xc6\x1b\x78\xe0\xa7\xdb\x6a\x2e\xd7\x76\xd3\x3f\xf7\xb6\xad\xb5\xcb\xd1\xb4\x86\xc3\xbd\x93\x63\xce\xeb\xb5\x8b\x75\xc6\xa0\xbe\x3b\x61\x58\x1f\xe3\x60\x40\xa2\x34\xd6\x17\x8b\xab\x96\x6d\x69\xc1\x0e\x4b\x30\x83\x08\xe5\xcb\x13\xbf\xa2\x67\x28\x7a\x8a\x7e\xb5\xac\xcc\x41\x1b\xe0\x6a\xaa\x3e\x2b\x4a\x49\x3e\x1d\x2f\x5f\xcd\x16\x90\xc7\x95\x5b\x15\x3c\x96\xfb\xeb\x1a\x7a\x8c\x74\xa7\xa9\x4b\xe4\x6a\xa5\x67\x48\xe6\x8b\xd0\x01\xf3\xbf\x4e\x03\xdf\x6f\x21\x20\xa3\x60\x31\xd0\x6a\x9e\xa8\x56\xa9\xfe\xb0\x05\x64\xcd\x87\xab\x3b\x94\x5f\x28\x94\x1b\xa8\x1e\x6b\xe6\x3d\x15\x03\xab\x2d\x2d\x29\x86\x35\x65\xd7\x4b\x30\xa0\x1e\xb5\x50\xf3\x49\xf4\xcd\x4d\xf4\x6a\x3e\x3e\x1f\x2f\xc7\x9f\x18\xba\x98\x4d\x6e\xa6\xb3\xf3\x71\x32\x41\xb3\x4f\x6c\x8e\x7e\xdc\x1b\x90\xb5\x27\xe8\xfa\x3d\x45\xeb\xe8\xfa\x7d\x08\xff\x06\xf0\xaf\xcf\xc3\x8c\x1e\xa5\xb4\x68\x41\x5e\xdc\x1f\x78\x8f\xdc\xeb\xc8\x72\x64\xde\xc0\x9c\xc4\xb0\xa5\xb5\x8f\x9e\x4d\xaf\x56\x80\x17\x6b\x7c\xb2\xfb\x29\x13\x8c\xb5\x75\xe6\x74\xec\x67\xed\xb6\xbb\x29\x0b\xf0\x9f\x25\x3b\xbf\x98\xcd\x93\xf9\x4d\xe3\x25\x3a\xee\x02\xa7\x6a\x47\x64\xdc\xa5\xd4\xbe\x3a\xa3\xf7\xfe\x53\x6d\xcb\xfa\xf8\x6e\xed\xed\x78\xab\xed\xec\x78\x8d\x7d\x1d\xcf\xb6\xab\x73\xff\x4f\x09\xcc\x2e\x97\x17\x97\xcb\x43\x98\x5a\x37\x60\x11\x0c\xd2\x73\xb6\x18\xcf\x59\xae\x3c\x34\x90\x8e\x97\x8b\x32\x21\xb4\xa8\xdc\x98\x2d\x94\x95\x8f\xa6\x93\x52\x4d\x4a\x0e\xee\x64\xce\x9e\x20\x42\x7c\x07\x91\x20\x74\x90\x47\x7d\x07\x05\x98\xb4\x2b\xcb\x37\x0b\x9e\xf0\x32\xb5\xa8\xfd\x68\x41\x39\x69\x36\xbe\x5b\xa0\xb6\xae\x85\xed\x0e\xef\x17\xc0\x4a\x2d\xbc\x84\x58\xce\xbd\xcb\x6f\x6f\xdf\x19\xa2\xfd\x0a\xa6\xc6\xff\x00\x8f\x30\xb9\x29\xbb\xaa\xcc\x0e\x36\xe1\xfa\x52\x09\x00\x27\xd5\x6b\xbd\xd0\x03\x84\xae\x8b\x1e\x23\xde\xd1\x56\x2f\x25\xa8\x92\xe0\xa3\x17\x8f\x7c\xad\x1d\x3d\xcd\xc2\x9c\x46\x68\xda\xc5\xb3\xb2\x11\x87\xc9\x14\xd6\x7e\x5a\x4d\xdb\x44\x44\xb7\x86\x96\x2e\x66\xf3\xb4\x5f\xfe\x2d\xf4\x5f\x92\x49\xf0\x05\x19\xa3\xe6\xa6\x18\x97\xb5\x71\xd9\xfc\x05\x81\x37\xe8\xdb\xe0\x3c\xd6\xdb\x92\x59\x18\x9f\xa0\xe6\xe4\xad\xf9\x04\x49\x23\x91\x20\xb9\x4b\x06\x41\xd2\x48\x1d\x48\xee\x9e\x33\x50\x32\x8c\xfb\x38\xc6\x4d\x96\xf1\x9d\x78\xc6\x4d\xa6\xf1\x6d\xb8\xd6\xea\x41\x18\x57\xb5\x34\x32\x9e\x2e\x67\xc2\x9a\xf5\x9a\x9e\x24\xb0\x98\x57\xba\xb3\x46\x14\x1c\x62\x03\xde\x9b\x7d\xbf\x05\x72\x31\xc1\x4c\x66\x57\x48\xc2\xf4\xef\x46\x1c\xf3\x0e\x76\x61\xf0\x01\x31\x50\x06\x3f\x10\x1f\xc5\xa0\x17\x3e\x9b\x5d\xe0\x74\xc4\x96\x49\xb7\xe4\x16\xb3\x06\x05\xd9\x8b\x31\x9f\x82\x4c\x2e\xcf\xa7\xd0\x38\x8d\x5b\x95\x12\x2c\x87\xd9\x0e\xaa\x47\xd2\x5a\xe0\x5b\xce\x49\x54\x1a\x0d\x2d\xd5\x33\x14\x03\x21\xfe\x57\x0e\x3d\x2b\xed\xd9\x60\x0f\x15\xd8\xc9\xec\xca\x38\x2e\x35\x4a\xeb\x54\x3b\xce\xd1\xb5\xe4\x94\x6b\xe1\xf4\xed\xb5\x89\xf7\xd3\x6b\x61\x6b\x5b\xd0\x02\x33\x10\x18\xdb\x16\xb0\xbe\xda\xe9\x9b\xbb\x99\x81\x25\xac\xd6\x2d\xf2\xa1\x49\x03\xae\x17\x1f\xa6\x87\xb6\xcd\xf2\xd3\x6b\x5c\x83\xe3\x55\xc0\x85\x7d\x9d\x5e\x63\x9b\x1e\x25\xec\x61\x05\x0b\x7a\xb4\x9a\xf7\xe2\x72\x0e\x1e\x25\x9e\x13\xe1\xa6\xde\x6f\xe5\xa7\xd7\xbe\x8c\x05\x68\x30\x90\xbc\x55\x57\x83\x25\x7d\x79\x3f\xd8\x34\xbd\x01\x6c\x87\x15\x36\x11\x35\x04\xb6\xc3\x16\xb6\x17\xfd\xd8\xfe\x50\xa7\x6a\x84\x42\x8b\x7d\xa2\x76\x48\x34\x98\x29\xba\xd5\x6c\xef\x78\x34\x43\xaf\xc6\x16\xcb\xe6\x24\xcb\x37\x1f\xf1\x53\xe5\xab\x18\xca\x55\xdf\xbf\xd8\xe4\x1b\x92\xab\xd0\xda\xcc\x98\x03\x09\x0b\xea\x0b\x48\x25\xf4\x61\x0d\x6d\x0e\x49\xd0\x59\x8c\x66\x47\x62\x94\xb2\xd5\x58\x0f\x53\xf9\x32\x36\xf6\x78\x06\x03\x3d\x4b\x88\xe7\x13\xe8\x9a\x44\xef\xc2\x83\xe2\x2b\x83\xb2\xd1\xcf\x9e\xd5\x4c\x82\x69\x97\xed\x83\xa7\x34\x3d\x82\x1e\x2b\xe5\x26\x43\x47\x4d\xd7\xa9\x70\x68\x91\xbf\xb8\x25\xf2\xe6\x9a\x47\xdd\xdc\x95\x56\x3c\xda\x4d\x96\x5c\x29\x68\x60\xb5\xa3\xcb\x5c\xe8\xdf\xb9\xe5\x2f\x7a\x68\x1c\xde\x92\x86\xad\x6f\x9b\x27\xd3\xc5\xc5\x6c\x61\xb5\x12\x08\xbf\xaf\xc6\x87\xc2\x31\x4e\xdf\x2a\x0b\x8a\xb5\x1d\x1a\xfb\x3c\x51\x71\x95\x8e\x4f\x42\xf6\xf5\x7e\xc6\xf8\x71\x31\x46\xc9\x12\xba\x40\x88\x97\xfa\x31\xe1\xa9\x0b\x6d\xd0\x26\x6d\xad\x26\x47\x6e\x15\x00\xb4\x70\xa7\x6e\xd9\x1c\x01\x6d\x72\xf9\x53\xb7\x6c\x8c\x84\x33\xf4\x5b\x9b\x9b\x68\x67\x64\x0b\x7e\xab\x77\xeb\x77\xec\x32\xfa\x43\x23\x52\xc2\x57\x19\x87\xab\x7e\xa5\xc7\xb8\x6f\x17\x52\xcb\x5a\xa7\x95\xc1\xad\x5e\xe5\x1a\x57\x95\x06\xca\x20\x64\x6d\x95\x0e\x50\x20\x20\x2d\x04\xa4\x83\xc0\x2a\x45\x3e\xf6\x98\xcf\xae\x2c\x42\x9c\x28\xde\x70\x5a\xbb\xc6\x7b\x34\xf8\x97\x64\x5f\xfc\xf0\xb0\x64\x06\xbe\xda\xe2\xc7\x44\xf1\x9a\xd3\xda\x85\x54\x8c\xf0\x43\x8d\x71\x32\xbb\xfa\xf2\x05\xda\x83\x99\x6e\x46\xd2\xd1\xb7\xd1\xd3\x1a\xcb\x90\xbc\x7f\x6b\x2d\x66\x42\x79\xef\xa4\xad\x81\xc5\xe4\x88\x8d\xf1\x4a\xb3\x06\x77\x49\xcb\x66\xc7\xbf\xd7\xb1\x28\xcd\x22\xcd\xbd\x9f\x8a\xea\xc0\x57\x2b\x3e\xbc\x5e\x77\x19\xe8\x7b\x58\xbc\xea\xae\x03\xdd\xf5\x2c\x15\xbe\xcb\x51\x2a\x38\x24\x95\xb1\xf1\xa4\x79\xde\x09\xaf\xa1\xcd\x26\xff\x6b\xe8\xfb\xf6\x0f\x40\x1c\x36\x68\xaa\xd3\x5c\xff\x26\x87\xa0\xbe\x78\x0d\x4f\x5d\x66\x2c\x99\xd7\xae\x41\xa2\x4d\xad\xea\x55\x90\x72\x15\xb0\x8b\x73\x53\x7b\x98\xee\xe4\xbf\x2e\x19\xfb\x8d\x75\x91\x8e\x92\xc5\xa8\x34\xee\x95\xde\xa2\xef\x70\xf1\x25\x8b\x85\xfd\x6b\x42\xab\x0f\xe9\x4d\xc3\xf9\xdb\xaf\x21\xd6\xf4\xcc\xab\x72\xca\xd0\x50\x2e\xcc\xa9\x03\xce\x5b\xad\xcd\x29\xa8\xe4\xf2\x9c\x8a\xea\xae\xeb\x8a\xb5\x28\xec\x8d\x38\xec\x34\xe2\xf0\xae\x8d\x38\xec\x34\xe2\xf0\x76\x8d\xd0\xab\x4a\x98\xae\x74\xb2\xe5\x0c\xcd\xd9\x72\x3e\x66\x9f\x98\xe6\x00\x22\x92\x97\xbb\x45\x3c\xb8\xb8\x5c\x8c\x4a\x36\x74\x22\xd2\x40\xbe\xe8\x42\x7e\x79\x7a\x62\xcd\xed\xa1\x8a\xb4\xd3\x75\x61\xe3\x7d\xa2\x7b\x3a\x35\x69\x8e\x5f\xf2\x08\xa5\x26\x9c\x55\x97\x9d\x56\x88\x10\x2b\x6e\xe6\x94\x1f\xeb\xf3\x99\x56\xb1\x7f\x3b\xae\x79\xc7\xe3\x9a\xde\x6d\x0f\x6b\x7a\x7d\x47\x35\x3d\xcb\x41\x4d\xef\xdb\x31\xcd\xfb\x3e\xa6\xe9\xad\x78\x48\x53\xa3\x96\xc6\x11\x4d\x6f\x95\x03\x9a\x9e\xf9\x1a\x7e\x75\xf0\xf0\x09\xf5\x3f\xbf\x73\x28\xfe\x0f\x39\xae\xd9\x4e\xb0\x13\x60\xf2\x87\x9d\xe1\x2c\xd3\xed\x70\x9a\x7f\xae\x74\x3b\x77\x3a\x6d\x29\x8b\xeb\xd3\x9e\x25\xcc\xad\x12\xf2\x04\x98\x34\x8e\x85\x04\x98\x18\x8f\x99\xd0\x15\x13\xf2\x70\xc0\xc6\x51\x13\x2a\xb3\x5a\x04\x98\xdc\xdb\x15\x62\xb5\xf9\xc6\x9c\x3c\x9d\x43\x0e\xee\x75\x96\xa6\x69\x9c\x07\xb9\xa3\x24\xec\x59\x73\x74\x90\x21\x89\x13\x12\x93\x44\x4d\xe7\xb3\xa6\xc9\xdb\xa3\xa9\x1a\xe3\x20\x76\x71\x90\xa8\xd9\x7f\xf4\x44\x70\x40\x0a\x96\x89\x9c\x41\x65\x6e\xa0\x15\x89\x84\x91\xe7\x91\x30\x14\x69\x85\x64\xe6\x20\x3d\x11\xca\x52\xdf\x4f\x68\xa4\xe6\x15\x5a\x91\x48\x9e\xba\x19\x61\x6e\xae\xa6\x21\xd2\x13\xf1\xa3\x34\xf0\x29\xce\xd5\x24\x45\xad\xa1\xe9\x7d\x67\x29\xe2\xf6\x74\xc7\x2c\x45\x38\xfc\x96\xa6\xe8\x9e\xc6\x44\xf4\xd6\x69\x8a\x78\x95\xbe\x71\x91\x1a\x33\xba\x23\x23\xfa\x2d\x4d\xd1\xfd\x8f\x8d\xe8\xaa\x69\x8a\xb4\xca\x69\x8e\x8f\x68\x6f\x9a\x22\x8f\xda\xd3\x14\xf1\x6e\xfc\x09\x25\xba\xd1\x12\xf9\x0f\x19\x2d\xfd\x47\x5f\x6e\xb9\xdf\x8b\x2d\x5f\xe9\xca\xca\xdd\x07\x51\xa2\xa8\x6a\xae\x44\xf4\xa1\x3c\xc1\xab\x79\xeb\xa6\x79\xc8\x77\x23\xb9\xb8\x98\xdc\x0c\xe4\x8f\x0e\x4a\xe6\x67\x97\xe7\x6c\xba\x5c\xb4\xdf\xe4\x51\xaf\xcf\xd4\xfc\x40\x2a\xa5\x9a\x44\x8b\xbc\x7b\xed\x13\x9a\x90\x22\x86\x71\x45\x1e\x11\x9a\x30\x42\xd6\x9c\x2e\x5c\x84\xbd\xc8\xf7\x63\x48\x33\x48\x3c\x56\x84\x41\x96\xab\x43\x83\x4e\x85\x34\xc8\xdc\x22\xcd\x0a\x78\x00\x21\xf3\x73\x2f\x25\x85\x0e\x31\x8b\xd3\x20\x4f\x93\x00\x5e\xcf\xc6\x34\xce\xd3\x34\xb3\x22\xf6\xe2\x20\xcc\x48\x90\xc2\x70\xc6\xf3\x69\x1a\x78\x54\x87\x38\x88\x0b\x8c\x71\x01\x1c\xa7\xa1\x1b\xe4\x2e\x8e\xad\x88\x63\xe2\x15\x94\x24\xf0\xe4\x76\x52\xe0\xd8\x2f\xe2\x54\x87\x38\x49\x71\x16\xb0\x1c\x38\xce\x93\x30\xa7\x18\x53\x2b\xe2\x9c\xba\x51\x92\x08\x19\x27\x9e\xeb\xb9\xc4\xd7\xca\x18\x13\xea\x05\xa9\x78\x33\xc2\x0f\x22\x37\x2c\x52\x66\x45\x4c\x7c\x0f\xd3\x20\x85\xb7\x23\x7c\xc6\xfc\x94\xd0\x4c\x2b\x8a\xc0\xcd\xa2\x3c\x83\x07\xc4\xf3\xa0\x28\x52\x9f\x11\x2b\xe2\x88\xa4\x2c\xc8\x23\x10\x45\x41\xa2\x94\xc6\xa1\x56\x79\xd4\xcd\x59\x8a\xc5\xe3\x15\x5e\x8a\xc3\x38\x4c\xb1\x5d\xc6\x69\x9e\xb9\xa1\xc8\x50\x49\x82\x2c\xc2\xc4\x0b\x74\x88\x33\x1c\xa7\x05\x16\x0c\x64\x45\x18\x93\x30\xf6\xad\x88\x99\x1f\xa7\x61\x9c\x81\xec\x62\x56\x60\x3f\xc9\xb5\x32\x66\x45\xca\xfc\x88\xc2\x33\xe2\x1e\xf5\x0b\x12\x30\xcf\x8a\xd8\x2d\x32\x1c\xe7\x19\x54\xa0\x29\xcd\xf2\x20\xd5\x72\x4c\x7c\x37\x4b\x70\x96\xc1\x23\xed\x51\x92\xc5\x59\x18\xd8\x95\x97\xb3\x98\x64\x21\x38\x48\x10\x93\xd4\x25\x91\x16\xb1\x9f\x44\x3e\xf5\x13\x98\x23\x84\x2c\x09\x99\x4f\xed\x1c\x07\x59\xea\x26\x71\x0e\x9c\xa4\xb9\x8f\x8b\x34\xf7\xb5\x2e\x1d\x16\x31\xa5\x39\x20\xa6\x1e\xc6\x81\x97\xda\x39\x8e\xa9\xc7\x02\x1c\x10\x70\x69\x16\x86\x79\x91\xe8\x1d\x84\x7a\x38\x0b\x43\x18\xe1\x93\x3c\xf5\x3d\x82\x5d\x7b\xac\x70\x5d\x8f\x44\x19\x15\x6f\xbe\x17\x29\xc1\x9e\xd6\xdc\xd2\x22\x88\xa3\x22\x93\xf9\x4d\x59\xe1\x32\x66\xb7\x8a\x2c\x64\xae\x9b\x16\x60\xf8\x5e\x9e\x50\x5a\x64\x5a\xab\xc8\x83\x24\x8a\xb1\x0f\x88\x63\xcf\x4d\x92\x88\xd8\x45\xe1\x86\x59\x12\x7a\x81\x78\xde\xc5\x75\x3d\x4a\xf4\x0e\x82\x7d\x12\x93\x58\xcc\xbd\xdc\xc4\x65\x21\x8b\xec\xa2\x20\x51\x1a\xb9\x09\x85\xe0\xe2\x87\x39\x21\x45\xa1\x75\x69\xc2\x30\x17\x13\x88\x2c\xc8\x48\x98\xc5\x24\xb4\x22\xf6\x73\x92\x85\x79\x01\x56\x11\x24\x99\x4f\x12\x96\x6b\x63\x85\xe7\x51\x37\xc7\x20\xb2\x38\x8f\x83\xd4\xcb\x0b\x2b\xe2\x30\x70\x93\xc8\x0b\x7c\xe1\x20\x49\x11\x7a\x39\xd3\x9b\x5b\x98\xb8\x49\x0a\x71\xdb\xcb\xa2\x28\x25\x89\x3d\x6c\x52\x9c\x91\x2c\x26\x22\xba\x45\x2c\x4f\x18\x0b\x75\x88\x63\x12\x11\x92\x09\x91\x61\x9f\x12\x2f\xf0\x52\x2b\xe2\x84\xa4\x05\xa3\x89\x88\xb3\x59\x81\x5d\x2f\xd4\x3a\x48\x42\x71\x12\x86\x3e\x70\x9c\x66\x3e\xf1\x5c\xd7\x1e\xdd\x32\xe2\xa7\x34\x8d\x5c\x88\xb3\x6e\x41\xe3\x28\xc6\xda\xe8\x16\x85\x59\x80\x13\x90\xb1\x1b\x06\x7e\xca\x3c\xbb\x55\xe4\x38\x26\x8c\xe2\x18\x10\x87\xac\x08\x08\xd6\xf6\x79\x79\x18\xc7\x6e\x48\x40\x17\x41\x10\x06\x49\xdc\xe3\x79\x85\xef\x32\x2f\x10\xb2\x0b\xa2\x08\x13\x97\x24\x5a\x3b\x76\xc3\x24\x71\x45\xcb\x3c\x92\xa6\x39\x4e\xed\xca\xc3\x71\xe2\x67\x18\x43\xd8\x4c\x69\x4e\x72\x37\xd3\x72\x8c\x99\x17\x85\x99\x2b\xec\x18\xfb\x38\x49\x03\x7b\x74\x23\x91\x4f\xa3\xc8\x07\x3b\xce\x0b\xca\x58\x1a\xc7\x3a\xc4\x9e\x9f\xba\x69\x96\x42\xcb\x18\x8e\x53\x9f\xf6\x98\x9b\x17\xe3\xcc\xcd\x52\x50\x4a\x16\x64\x71\x90\x84\x9e\x36\x1e\xb3\x9c\x26\x89\x0f\x61\x93\x79\x3e\xa6\x49\x66\x37\xb7\x20\x8d\xb3\x2c\xf1\x0b\xd1\x33\x84\x1e\xf3\x22\x2d\xe2\x90\x12\x16\x16\x22\x58\xe5\x61\x4a\x52\x9a\xd8\x45\x11\xf9\xb4\xa0\x84\x81\x83\x04\x39\x2b\x52\xa2\x8f\x15\x11\x4d\x82\xd0\x13\x3d\x8d\xef\xe1\x88\x14\xa1\xdd\x2a\xa8\x9f\xd1\x88\x62\x31\x12\xc2\x85\x9b\xa4\x91\x36\x6c\xd2\x2c\x8b\x5c\x22\x94\x87\x93\xd0\xf7\x62\x66\x1f\xbb\xc5\x6e\xca\x8a\xa2\x48\xc4\x28\x32\xf4\x30\x23\x5a\xab\x48\xfc\xc0\x0d\x33\x06\x9e\x97\x33\x4a\xd2\x9c\xd9\xc7\x6e\x29\x2b\xe2\xc4\x2b\x44\xcf\x40\xb2\x30\x8a\xb1\x7e\x5c\x11\x46\x38\xa2\x85\xe8\xc2\xbc\x88\x04\x1e\xb1\x2b\x2f\x4b\x48\xe4\xb1\x0c\x64\xcc\x12\x12\x86\x38\xd6\xca\x38\xc7\x34\x4c\xa9\xe8\x9a\x08\x37\x24\xd2\x5c\x04\xec\x0e\x44\x92\x3c\x89\xf2\x1c\x1c\x24\xcb\x99\xcb\x52\xac\x0d\x9b\x45\x10\xe5\x7e\x11\x15\xb2\xd3\x65\x39\x8e\xec\x76\xec\x86\x85\x1b\x46\x62\xbc\x10\x11\x1c\x85\x45\xaa\x75\x69\x37\x09\xbd\x28\xcf\xc0\x41\x12\x92\xd1\x98\x26\xf6\x1e\x04\x63\xaf\x88\xa9\xeb\xcb\x85\xbb\xd8\xcd\x13\x2d\xc7\x38\x8d\xb0\x9b\x7a\x22\x1e\x7b\x38\xf3\x23\x6c\x97\x31\xa1\x79\x1a\x45\x45\x20\xac\xc2\xf5\xa3\x9c\x6a\xe3\xb1\x47\xb2\x24\x49\x23\xb0\x0a\xdf\xcd\x22\xe2\xc7\x76\x07\xf1\xb2\x98\xa5\xcc\x05\x51\xe0\x20\x8b\x53\x96\x6a\x95\xe7\x7b\x38\x0f\xa3\x0c\x5a\x16\x67\xd8\x75\x73\xdf\x6e\xc7\x7e\x96\x05\xb9\x2f\x06\xde\x59\xea\x31\x9f\xa4\xda\xae\x89\x0f\x57\x48\x1c\x43\xb0\x2a\xb2\x30\x88\x18\x0f\xaf\xb6\x58\x51\x64\x69\x58\x24\xa2\x93\x4c\xf2\xb0\x48\x98\x96\xe3\x30\xf3\x7d\x1c\x53\x40\xec\x27\x7e\x14\x50\x1c\xc9\x45\xd4\x77\x96\x6b\xab\xf5\xbc\xf0\xcd\x5d\x6f\xa8\x9a\x9e\x41\x7b\xd3\xb8\xa1\xfa\xe1\x6e\x37\x54\x03\x4c\x56\xdb\x3a\xd0\x6c\x47\xdc\x7f\xf6\xd1\xbb\x6e\x1d\x84\x89\x1b\xb3\x72\xc1\xdd\x4b\xb3\x2c\x76\x0d\x5b\x07\x69\x1a\x46\x09\x13\xdd\x2f\xf5\xb3\x24\x89\x9a\x43\x17\x0b\x11\x2f\x0b\x59\xe1\x45\x10\xc9\x0a\x16\xfb\x05\xe5\x91\x4c\x07\x99\x04\x7e\x51\x04\x1e\x78\x41\x50\xe0\xdc\x0b\x8b\x55\x57\xf5\x03\xec\xb2\x80\x88\xe0\x93\xe4\x2c\xa4\x24\x37\x6c\x1d\xc4\xa9\x1b\x84\x54\x18\x24\x49\x3d\x16\x66\xb8\x58\x91\x08\x2e\xa8\x97\xc7\xc2\xe6\x8b\xd4\xc7\x69\x1e\x1a\x5a\x12\xa4\xcc\xcd\x72\x31\x0c\xc2\x5e\xc4\x08\x8e\xe2\xdb\x6c\x1d\xdc\xf7\x3d\xd2\x55\x52\xc3\x02\x9c\x6b\xce\xfc\xba\x8f\xcd\xa9\x5f\xf7\x89\x39\xf7\xeb\xbe\x67\x4e\xfe\xba\xef\x9b\xb3\xbf\xee\x07\xe6\xf4\xaf\xfb\xa1\x39\xff\xeb\x7e\x64\x48\x00\x2b\x1a\x08\xe9\x61\xb5\xe7\xc0\x45\xf9\x44\x94\x77\x2f\x7b\x08\x19\x40\x75\xed\x15\x28\x51\x3e\x11\xe5\x86\xea\x04\xaa\x13\x63\x75\x32\x11\xe5\x86\xea\x1e\x54\xf7\x8c\xd5\xbd\x89\x28\x37\x54\xf7\xa1\xba\x6f\xac\xee\x4f\x44\xb9\xa1\x7a\x00\xd5\x03\x63\xf5\x60\x22\xca\x0d\xd5\x43\xa8\x1e\x1a\xab\x87\x13\x51\x6e\xa8\x1e\x41\xf5\xc8\x58\x3d\x9a\x88\x72\xcd\xb1\xbe\x15\x93\x1e\x0b\xcb\xd0\x21\x4f\x84\x51\xb4\x33\xee\xc1\x91\x5b\x61\x10\xba\x5a\xa9\xb0\x05\x5d\xad\x4c\xd8\x81\xae\x56\x26\x4c\x40\x57\x2b\x17\xea\xd7\xd5\xca\x85\xe6\x75\xb5\x98\xd0\xba\xae\x16\x13\x0a\xd7\xd5\x2a\x84\xb2\x75\xb5\x0a\xa1\x67\x5d\xad\x33\xa1\x63\x5d\xad\x33\xa1\x5e\x5d\xad\x91\x50\xad\xae\xd6\x48\x68\x75\xa2\xcb\x3b\x68\xbb\xba\xbb\xe2\x73\xa8\xc6\x7c\xda\x25\xfd\x37\x63\x91\x7b\xd8\x74\xdd\x7c\x08\x3d\x78\xb9\x7d\xd6\x05\x59\x21\x51\xb4\x20\xc3\x45\xf0\x66\x5c\xde\x36\x50\xb3\x46\xa3\xef\x11\x79\x07\x90\xfa\x5c\xae\x35\x8e\x89\xc0\x21\xef\x17\xb4\x71\xc0\xad\xf9\x3b\x65\xa0\xde\xdc\x44\x3f\x42\x36\x62\x33\xf1\x32\xa5\xf3\xad\x32\x54\x5f\x8f\xaa\x3c\xc7\xd7\x7d\x77\xf1\x24\xd8\x44\xa9\x61\xbf\x8f\x27\xa0\x46\x8d\x2c\xd8\x23\x91\xfc\x57\x4d\x5e\x3d\x81\x14\xc5\x65\x3a\xe0\x06\x1c\xed\xc0\xc1\xa1\xd7\xf7\xa8\x09\x16\xd9\x6e\x98\x0a\xc8\x49\x83\x8b\x49\x97\x8b\x91\x8e\x8b\x49\x97\x8b\x91\xca\x45\x13\x2e\xea\xc2\x19\x32\x19\xab\x2a\x35\xe4\xcc\xf9\xa4\xe4\xde\xbe\x4d\xf2\xed\x5a\xa3\x78\x35\x8d\xe2\x5a\xa3\x78\x25\x8d\xe2\x51\x23\xc1\xf7\xa8\xcc\xc2\xad\x24\xe6\x9e\xc8\x5c\xdd\x8a\x90\xb0\x94\x70\x13\x0c\xce\x31\xc7\x8a\x4a\x4b\x7c\x61\xaf\x4a\xf1\xa4\xc1\xc6\x44\xc3\xc6\x48\xc7\xc6\xa4\xc3\xc6\xa8\xc1\x46\x13\x61\xd8\xc1\x47\x42\xab\x4e\x6f\x95\x3b\xdc\x16\x4a\xa2\x5a\xed\x91\x4d\xed\x6f\xc6\x91\x88\x5c\xda\x8e\xb9\x05\x39\x91\x90\x96\x3b\xe1\x02\x12\x87\x4a\x20\x31\xbe\x0a\x5d\xc2\x0a\x06\xb0\x76\x64\xd1\x86\x9d\x94\xb0\xbd\x3c\xd4\x91\x66\xc2\x85\x36\x8e\xda\x3d\x57\x13\xbc\x0e\x65\x23\x01\x3e\x82\x9c\x6d\x1c\x0f\xd7\xa4\xbb\x86\x9e\x95\xde\x59\xfd\xf2\x7f\x23\x8c\x9e\xa0\xce\xb1\xe9\x2e\x1f\xfc\xdf\x52\x83\xfd\x6c\xf0\x7f\xd7\x2b\x6f\x31\x70\x81\xef\xca\x05\x48\x71\x45\x1e\x84\x76\xba\x1c\x08\x4d\x74\xe8\xeb\x91\xd6\xbd\xe2\x9b\xb1\x49\xbd\x75\xaf\xf7\x66\xac\x63\xce\x9c\x13\x5f\x26\xc5\x1f\xa1\x87\xa8\x18\xc9\xb4\xf8\xfc\x8b\xfe\x1e\x9f\xa8\x23\x7c\x9f\x4d\x78\x9d\x89\xac\xc3\xbf\x9c\x4d\x2c\xc9\xf4\x47\x90\x4d\x9f\xa3\x4e\x05\x1d\xf8\x9c\x89\xcf\xa9\xfc\x6c\xae\x3e\x81\xea\x9c\x4a\x2a\x48\xc2\xe7\x4c\x7c\x4e\xe5\x67\x7b\x4a\xfe\x91\xc8\xc9\x2f\x03\x8e\xe8\x57\x92\x89\x48\x2f\xbd\x26\x92\x1f\x24\xa3\x32\x63\xbf\x2c\x6c\xe4\xec\x1f\x29\xaf\x48\x24\x65\xaf\x63\xcd\xcc\x0f\xb3\xa9\x41\x85\x48\xd2\x1c\x35\x69\x4e\x1a\x34\x47\x4d\x9a\x13\x95\xe6\x68\x15\x9a\x58\xb4\x93\xc9\xae\x41\xdc\x37\x61\xa2\x53\xa0\x65\xda\xff\x51\xf9\x68\x85\x52\xe8\xd7\x85\x9c\xa6\x57\x96\x89\x34\xdc\x76\x9a\xa2\x9d\x12\xb8\xa4\x39\x6a\xd2\x9c\x34\x68\x8e\x9a\x34\x27\x2a\xcd\x51\x4d\x53\x3b\xea\xec\x7f\x87\x40\xcf\xeb\x4f\x90\x7d\xe9\x27\xf3\x65\xaa\x9f\xc0\x79\x7f\x1a\xdb\xae\x51\xfd\x04\xc1\xe0\xa7\xb1\x29\x84\x7e\x82\x87\x12\x38\xcc\x68\x52\xb1\xa8\x73\x4a\x01\xc8\x09\x8e\xea\xb6\x88\x70\xb1\xc4\x6a\xb8\x18\xad\x12\xab\x6a\xb2\xfc\x5f\x2e\x11\x3b\xcd\x25\x90\xca\x46\x3a\x82\xd9\x9d\x28\xfe\xa4\x0d\x3d\x6d\x8a\x3f\x8d\x75\x14\x7f\x1a\xdf\x85\xa2\x3e\xd8\xb5\x29\xbe\xd1\x52\x7c\xa3\xa3\xa8\xb7\xb6\xf6\xe3\x15\x06\x92\xb0\x78\x51\xba\x3d\x00\x1a\xb9\x83\x75\x90\x32\x2a\xad\x8b\xf0\x08\x2c\x12\x95\xc5\x12\xd7\x6a\x6c\xbe\xbe\xc8\x93\x25\x43\x57\xf6\x99\x3e\xff\x83\xf9\xa6\xd6\xbe\x61\xba\x79\xa6\x63\x1b\x3a\xa0\x42\x57\x07\x26\xb6\x85\xae\x0e\xcc\xa1\x99\xae\x0e\x4c\xa1\x99\xae\x0e\x4c\xc9\x07\xf9\x04\x9e\xef\x98\x98\xde\xef\x80\x39\xfd\x20\x1f\x01\x94\x10\x1d\x53\x25\x97\x77\x84\x66\x7c\x09\x84\x63\xca\x74\x3c\xc2\x92\x42\xa6\xe3\x11\x56\x2f\x52\x5d\x1d\x58\xbc\x48\x75\x75\x60\x9d\x24\xd1\xd5\x81\x65\x92\xce\x6b\x06\xfc\x0f\x96\x5d\x06\xc2\xd4\x97\xc4\x28\x0c\x58\xb8\x19\x08\x39\x70\xcb\x5a\xaf\x7b\x1c\x21\x8d\x65\x77\xb0\x73\xaf\x8f\x95\x28\x6b\x86\x30\x32\xd8\x07\xfb\x4f\x3a\xa3\x81\xfd\x2a\x19\xc5\x60\x1f\xec\x3e\x11\xcc\xee\xbb\x2a\xb7\x49\x97\xd9\x36\x1e\x65\x95\x51\x10\x04\x11\xa5\x5d\x82\xb8\x26\x08\xe2\x49\x25\xc1\x46\x24\x48\xfb\x09\x2a\xeb\x92\x82\x20\x81\x10\xdb\x25\x48\x6a\x82\x64\x54\xf6\x4b\x03\x80\x57\xc2\x6b\x3f\x41\x65\x25\x53\x10\xf4\x38\xc1\xbc\x4b\xd0\xab\x09\x7a\x9c\x56\x2e\x09\x7a\x3d\xee\xd0\xc6\xa3\xac\x7d\x0a\x82\x3e\x27\xc8\xba\x04\xfd\x9a\xa0\xcf\x69\x31\x49\xd0\x57\x09\xb2\x7e\x82\xca\x6a\xa9\x20\x18\x70\x82\x45\x97\x60\x50\x13\x0c\x38\xad\x42\x12\x0c\x54\x82\x45\x3f\x41\x65\x7d\x55\x10\x0c\x61\x52\xd1\x25\x18\xd6\x04\x61\xf4\x7e\x26\x09\x86\x8d\x49\x44\x3f\x41\x65\x45\x56\x10\x8c\x38\xc1\x51\x97\x60\x54\x13\x84\x69\x93\xec\x93\x39\xbc\x6d\x10\xf0\xc5\x77\x2f\xbe\x3d\x8a\x73\x7f\x8f\xe2\x60\x3e\xb8\x97\x2f\x9b\x71\x64\x90\x87\xc5\x73\xef\xfb\x59\x1c\x3d\x19\xfc\x6f\xf9\x30\xce\xce\x6c\xfa\x89\xcd\x45\x96\x5f\xb4\x9c\x21\x8f\x3c\x4e\xc7\x4b\x3e\x40\xc9\x51\x02\xe7\xb3\x53\x56\xcc\xe6\x4c\x1e\xa7\xee\x68\x4d\xb9\x6b\xa2\xec\xdd\x2d\x67\x3f\x7b\xe4\x3e\x1e\xe2\xf9\xb3\x3e\xc1\xa3\xf2\x59\xe5\x07\x79\x82\xb0\x4b\xfc\x4d\x4f\xe6\x29\xfe\x76\xbb\xc9\x78\x55\x29\xc0\xe4\xb6\xb7\x9b\x78\x95\x9e\xdb\x4d\x8d\x63\x0d\x9d\xdb\x4d\x01\x26\xdf\x6e\x37\xdd\xf7\xed\x26\xae\x95\xd5\x6e\x37\x69\x95\xd3\xb8\xdd\x24\x14\x64\xbd\xdd\x24\xee\xd1\xae\x78\xfb\xdb\xfb\x53\xdf\x67\x62\xd3\xec\x71\x9a\x2c\x58\xe8\xb7\x0a\xce\xf3\xa0\x0d\xfa\xe9\xe2\x63\x5e\xb4\x7e\xcc\xc6\x17\x23\x36\xff\x43\xae\x44\x29\xac\xc2\x77\xce\xa1\x28\x10\x8c\xc1\x67\x95\x9f\xff\x84\xab\x53\x6f\x56\x7a\x13\x08\x0e\xcf\xec\x40\xd3\x2b\x38\xe5\xb7\xfe\xab\x50\x9b\x9b\xe8\x15\x9b\x9f\x43\x2f\xba\x33\x9a\x8d\x33\x86\x70\xfb\xd9\x14\x5e\xfd\xd5\x0e\x6e\xde\x5d\x0a\x22\x07\xf9\xb1\x83\x7c\xec\x20\xcf\x73\x10\x09\x1c\x84\x23\x07\xc5\x0e\x42\x58\x39\x6a\x14\x50\x07\x05\xae\x83\x7c\xe2\x20\xcf\x77\x10\x09\x1d\x84\xa9\x83\xb0\xeb\x20\xa2\xc2\xc5\x0e\x0a\xb0\x83\x7c\xcf\x41\x5e\xe0\x20\x12\x39\x08\xc7\x0e\xc2\x1c\xbf\x02\x17\xba\x0e\x0a\x88\x83\x7c\xdf\x41\x5e\xe8\xa0\xd0\x73\x50\x10\x38\xc8\x8f\x1c\xe4\xc5\x0a\xa0\x87\x1d\x44\x3c\x07\xe1\xc0\x41\x91\x83\x50\x48\x1c\x14\xf8\x0e\xf2\xe1\x69\x01\x15\x90\x73\x42\x1c\x84\x7d\x07\x85\x1c\x10\x3b\x28\xf0\x1c\xe4\x07\x0e\xf2\x22\x05\x90\xc4\x0e\x22\xd8\x41\x98\x93\x74\x10\x22\xd4\x41\xc4\x75\x10\xe6\xec\x08\xb0\x77\x16\xb9\x12\xbd\x5c\x49\x53\xae\x9c\x0b\x2e\x47\xde\x6e\xc2\x3f\x3b\x08\x05\x2a\xb7\x92\x30\x6f\x16\xe7\x16\x18\x72\x55\x2e\x3d\x29\x38\xce\x15\x07\x08\x1d\xa4\x36\x17\x87\x42\x1e\x5c\xc0\xc0\xbd\xd7\x54\x04\x57\x28\x17\x30\x97\x9f\x17\x09\xc1\x06\x41\x4b\x5e\xbe\x2b\xb5\x15\x08\xed\xfb\x2a\x05\xae\x1a\x6e\x1a\x1e\x57\x69\x28\xd4\x1e\xa8\x3a\xe4\x2a\xe0\xf6\xc0\xed\x82\xeb\x90\x0b\xb6\x1c\xd5\x34\x5e\x84\xba\x3c\xbf\x9c\x24\xf0\x4c\x0a\x1f\x54\x2e\x46\xe3\xa2\xf3\xc2\x13\x78\xc1\xc1\xe9\x87\x93\xfd\x83\x3d\xf1\xa6\x14\x97\x18\x71\x10\x34\x9e\x4b\x88\x72\x8b\x94\x6a\x02\xe9\x4a\x4b\xc5\x52\x9d\x44\x5a\x2f\x08\x84\xaa\xf4\x4f\x9e\x1f\xfd\xcc\x16\x28\x99\xe6\x32\x37\xfa\x05\xa8\x54\xbc\xa7\xa1\xe1\x83\xc3\x7f\x78\xd5\xd4\x67\x6b\x48\xe9\x5e\xbb\x4f\x60\x32\x42\x89\xeb\x3a\xed\xb2\x72\xae\x20\x40\x34\x00\xa4\x01\x40\x5d\x97\x74\x40\x3c\x05\xa4\x5b\xea\xab\xa5\x1a\x02\x41\x93\x00\xd1\x10\x08\x9b\x4c\xea\x40\xa2\x56\x3b\x34\x84\x68\x83\x91\x2e\x8a\xb8\x4d\xa5\x8b\x22\x51\x41\x74\x00\x69\x5b\x5a\x5d\x90\xac\x45\xa6\x03\x90\xb7\x9b\xd2\x05\x61\x0a\x48\x97\x42\xd1\xe4\xb2\x5b\x9d\xda\x6a\x63\xda\xab\x0f\x42\x7b\x08\x78\xb4\xc7\xaa\xfc\x36\x11\x8d\x5d\x50\xbb\xdd\x84\xb4\xd7\x30\x23\x6a\x33\x4c\x4a\x7b\xf5\x1d\xd3\x1e\x7d\x27\x6d\x26\x34\x26\xd1\x26\xd3\xe5\x24\xa3\xbd\x1a\xcf\x69\x8f\xd5\x30\x6a\xb7\xee\xa2\x4d\x43\xa3\x79\xa3\xba\x64\x94\xc0\x7a\x41\x12\xa5\xd4\xa0\x4c\xaf\x01\xa2\xa5\xee\x37\xb1\xe8\xda\x18\xa8\x20\x5a\x9b\x50\xf9\xd4\x94\x47\x4d\x36\x2c\xbe\x81\x2d\xe6\x1f\xb7\x39\x35\x06\x0a\x6c\xd1\x68\xda\x6c\x8c\xc6\x2a\x1a\x8d\x31\xc6\x09\x6c\xb1\x5f\xd6\x02\x31\x85\x0a\xac\x0f\x05\xb4\x57\x14\x98\xf6\x8a\x82\xd0\x5e\xd5\x7b\xd4\xae\x36\xbf\x85\xc2\x14\x2b\x6c\xe2\x0e\xa9\xcd\x84\x23\xda\xa3\x0c\x4a\x7b\x24\x19\xd3\x5e\xd3\x4a\xa8\x5d\xa1\x69\x5b\xde\x9a\xce\xa3\x4d\xa5\x0b\x92\x53\x9b\x4a\x19\xed\x71\xa1\xa2\xad\x51\xf5\x8d\x2a\xa7\x6f\x94\xe1\xbb\x2e\xf5\x5d\x6c\x8c\x20\x12\xc6\x38\xcc\xa8\x14\x68\x8a\x20\x25\x11\x57\x47\xc4\x6f\x12\xd1\xc2\x04\x4d\x3c\x5a\x66\xc2\x26\x1e\x2d\x4c\x54\xc3\x68\xa8\xa8\xc1\x56\x5b\x3d\x6e\x93\xd0\x20\x49\xda\xcd\x31\x0f\x38\x24\x21\x0d\x92\xac\x21\x58\x0d\x40\x5e\x03\x18\x03\x88\x60\x41\x53\xb9\x68\x6b\xc5\x38\xee\xb2\x0a\x13\xd3\x9e\x56\x10\x6a\x93\xb6\xd7\x26\xa1\xb3\x0d\xda\xd2\xbb\xce\x36\x68\xbf\xc0\x43\xda\x63\xa8\x11\xed\x37\x54\x4a\x7b\x94\x12\x53\x8b\x52\x12\x6a\xf7\xa5\xb4\xcd\x81\x39\x90\x58\x5d\x25\xa7\x3d\x46\xcc\xda\x32\x35\xc7\x13\xa3\x05\xa9\x13\x10\x4d\x29\x5e\xc1\xed\x31\x59\xc1\x99\xb0\xb7\x82\xe3\x63\x7f\x05\x7b\xc6\x81\xd5\xf5\x71\xd8\xe7\x92\x38\xea\x09\x86\xea\x10\x5c\x8f\x21\xee\x0b\x97\x38\xe9\xf3\x7b\x9c\xae\x10\x2d\x71\xd6\x17\xc8\x70\xbe\x42\xb0\xc4\x6c\x85\x50\x86\x8b\xb6\x86\xb4\xe6\xd2\x17\x2a\x30\xee\xf3\x50\x4c\x56\x70\x10\xec\xf5\x78\x19\xf6\x57\x09\x6c\xc1\x0a\x61\x07\x87\xd6\xe8\x86\xa3\x15\xc2\x12\xa6\x2b\xf8\x22\x8e\x57\xf0\x7a\x9c\xac\x10\x4d\x71\xda\x17\xc1\x70\x66\x0b\x61\x38\xef\x0b\x0b\x6c\x85\x30\x8a\x8b\x56\x84\xba\xcd\x50\x05\xbb\xbe\x21\x18\xe9\x59\x26\x0d\xa9\x60\xe3\x10\x45\xe0\xd6\x61\xf7\x95\x72\x57\x53\x1e\xb4\x94\xd3\x85\x08\x1b\x42\xd3\xd1\x88\x1a\x10\xfd\xdd\xb1\x79\x6c\x52\x53\x31\x8d\x4c\xca\x96\x9a\x46\x25\x35\x17\x5d\x3e\xb3\x96\x34\xbb\x10\x79\x43\x5a\xa6\xa1\x09\x60\x30\x0c\x4b\x64\x5d\xbd\x04\x6c\xcd\xc3\xb4\x8f\x7d\x42\xcd\x86\xe2\xd1\x3e\x43\xf1\x69\x9f\xa2\x03\x6a\x6f\x7c\x48\xed\xa6\x14\x29\xe5\xdd\x52\x4a\xcd\xa2\x8b\xa9\x4d\x74\x09\xed\x33\xaf\x94\xda\x9d\x20\xa3\x76\xd3\xc9\x69\x9f\x61\x30\xda\xe7\x04\x05\xed\x33\xf1\xc6\xb0\xc2\x60\x04\xb8\xc7\x5d\x31\xe9\xb1\x50\xec\xf5\x86\x0c\xec\x5b\x2d\x15\x07\xbd\x0e\x8f\xc3\xde\xa8\x81\x23\x5b\x24\xa6\xbd\x9e\x88\xe3\xde\x90\x81\x13\x8b\x37\xe2\xb4\x27\x5c\xe0\xac\x37\x6a\x61\x35\x1c\x68\x48\xb0\x9e\xd8\x8b\x8b\xde\x90\x24\x87\x16\xd6\x66\x62\xab\x5f\x61\xd2\x1f\x5a\x3c\x4b\xe4\xc0\x7e\x8f\x5b\xe3\xa0\x37\xb6\xe0\xd0\xea\xc0\x38\xea\x8d\x6d\x98\xf6\x04\x1f\x1c\xf7\x7a\x20\x4e\x7a\xc2\x00\x4e\x7b\x63\x20\xce\x7a\x43\x01\xce\x7b\xe3\x11\x66\x96\x60\x87\x8b\x66\x34\xba\xcd\xf8\x81\xba\x82\xa4\x3e\xb6\x94\xa3\x4f\xec\xfa\x86\xa1\x44\xc9\xb4\xa6\xdc\xab\x31\xf8\x7a\x43\xf4\xcd\x46\x14\x34\x25\xa2\x1f\x43\x54\x83\x63\x1d\xf9\xc8\x6d\x0c\xff\xcc\xfd\x67\xb9\xa3\xa2\x1f\x41\xd4\xba\xd5\x8f\x1f\x44\xb9\x7e\xec\x50\x8b\xcf\xb4\x83\x52\x8b\x47\x83\x23\x57\xbc\xd4\x30\x72\x28\xcd\x5b\x3f\x76\xa8\x15\x6c\x68\xbf\x55\xbf\x98\x9a\x9b\x47\x68\x1f\xf3\x1e\xed\x13\x80\x4f\xed\x2a\x0e\x68\x5f\x13\x42\x6a\xb4\x9f\x88\xf6\x19\x1f\xa5\x36\xf9\xc5\x4d\xe2\xa6\x41\x84\xc5\x3a\x52\x6a\xd3\x5e\x46\xfb\xac\x2f\xa7\x76\xfb\x65\xd4\xee\x7e\x05\xed\xf3\x10\xec\xf6\xb8\x08\xc6\x3d\x5e\x88\x49\xaf\x1b\x62\xcf\xd6\x53\x58\x2d\x1c\x07\xbd\x2e\x82\x43\xb7\x4f\x4f\x38\xea\x8d\x64\x98\xf6\x7a\x0b\x8e\x7b\xc3\x05\x4e\x7a\x03\x1e\x4e\x7b\x62\x26\xce\x7a\xe3\x06\xce\x7b\xc2\x12\x66\x96\xb8\x84\x0b\x6b\xd8\x10\xa3\x07\x7b\x1b\x70\xaf\x5f\x62\x62\x76\x4c\xec\xf5\xb8\x3d\xf6\x7b\x0c\x1f\x07\xbd\xbe\x83\xc3\xfe\xe8\x16\x59\xc2\x1b\xa6\xfd\xce\x13\x5b\xe3\x07\x4e\x7a\xe3\x1f\x4e\x7b\x83\x28\xce\xac\x41\x04\xe7\xbd\x51\x0a\xb3\x9e\x30\x85\x8b\x66\x1c\xb9\xdd\xe0\x41\x1b\x53\x4a\x7e\x4d\x3b\x24\x15\x37\xda\x21\xc3\x13\xe5\xb8\x86\x76\xc4\x20\x01\x60\x3d\x45\x3b\x6e\xa8\xc6\x7c\x9a\xf2\xb0\x44\x60\x02\x88\x6a\x06\x35\xa5\xaa\xce\x4d\x43\x86\x9a\x3f\xc3\x98\xa1\x6e\xa1\x86\x42\x5a\x33\xa8\x67\x21\x6b\x00\xe8\x3a\x0e\xa3\xef\x31\x55\x39\x1a\xd4\x45\x43\x38\xfa\x35\x07\x5b\x7d\x4c\x7b\x84\x4b\xa8\x6b\x32\x1c\x8f\xda\x0d\xc7\xa7\x36\xc3\x09\x68\x8f\x5d\x84\xb4\x47\x6a\x11\xed\x31\x3d\x4a\x7b\x54\x1b\x53\x93\xdc\x13\xda\xa3\xd3\x94\xda\xad\x36\xa3\x3d\x56\x93\xd3\x1e\xcd\x31\x6a\x37\xdc\x82\xda\xcc\x1e\xbb\x56\xb7\xc5\xd8\x35\xea\x15\x93\x3e\x9f\xc6\x5e\x9f\x4f\x62\xbf\xc7\xab\x71\xd0\xe7\x14\x38\xec\x8b\x1c\x38\xea\xf1\xed\xaa\xdf\x33\xaa\x11\xc7\x7d\x0e\x84\x93\x9e\xf8\x88\xd3\xbe\x08\x82\x33\x6b\x84\xc2\x79\x5f\x84\xc1\xcc\xdc\x39\x17\x3d\x11\x02\xc6\x07\x76\x5d\xe1\x1e\x4b\xc3\xa4\xc7\xd3\xb1\xd7\xe7\xcc\xd8\xef\x73\x56\x1c\xf4\x85\xaa\xd0\x1c\x8a\x70\xd4\x17\x2c\x30\xb5\xbb\x4b\xdc\xe7\xf0\x38\x31\x06\x0b\x9c\xf6\xf9\x32\xce\x7a\xc2\x05\xce\xad\xc1\x12\xb3\xbe\x50\x86\x8b\x56\xc0\xb9\xcd\xa8\x40\xb2\x4d\x75\x51\xa4\xc4\xa9\x1b\x17\x88\xba\x44\xdf\x66\xaf\x2e\x27\x3a\xdc\x7e\x2d\x11\x2d\xfe\x40\x6d\x8f\x6e\x54\x50\x95\x76\x71\x47\x0d\x83\x36\xf6\x8a\xda\xd1\x80\xc2\x54\x17\x71\x52\x92\xd5\xb2\x9c\x4a\x03\xd5\x8d\x00\x14\x59\x75\xcb\x73\x05\x6d\xb7\x94\x55\x6d\xed\x96\x15\x0d\x29\xeb\x5a\x6a\x55\x12\xa6\x76\x25\x11\x6a\x68\x91\x47\x6d\xda\xf1\xa9\xad\x3d\x01\xb5\x5b\x5d\x48\xed\x96\x11\x51\xb3\x3c\x28\xb5\xd9\x45\x4c\xcd\xf6\x9c\x50\xbb\xea\x53\x6a\xd7\x61\x46\x0d\x36\x95\x53\xbb\x8a\x18\xb5\xd9\x54\x41\xed\xa6\x8c\xdd\x1e\x3f\xc2\xb8\xc7\xf8\x30\xe9\xf1\x54\xec\x59\x0c\x10\xfb\x56\x3f\xc5\x41\x8f\x2b\xe2\xd0\xed\x89\x41\x91\xd5\xe7\xaa\x11\xac\x81\xf7\xd8\x18\xb5\x13\x93\xb7\xe2\xb4\x27\xb4\xe1\xcc\x12\x17\x71\xde\x13\x43\x30\xeb\xf1\x59\x5c\x58\x83\x1b\xef\xd1\x0d\x8c\x63\xab\x29\x61\x62\x75\x5a\xec\xf5\xf8\x25\xf6\x7b\x1c\x13\x07\x16\xcf\xc4\x61\x4f\xac\xc1\x51\x6f\xb0\xea\xf1\x24\x1c\xf7\xf8\x28\x4e\x2c\x01\x00\xa7\xd6\xa8\x85\x33\x6b\x68\xc1\xb9\xc9\xff\x31\xeb\x73\xe1\xa2\x19\x7a\x6e\xdf\x75\x6b\x6c\xa4\x64\xd5\x77\xb1\xa6\xeb\x96\x43\x0d\x4d\xa7\x2d\x91\xea\xaa\xf9\xd5\x20\x47\x57\x1a\x18\x9a\x1f\x0a\x94\x9a\x3e\xba\x1e\x32\x75\x4b\xa9\xd2\x00\x5d\x37\x5d\xb5\xbd\x5b\x35\x51\x8c\xbc\x5b\x9a\x2a\x8d\xd0\x4d\xd5\x95\x71\x9c\xa6\x9b\x16\x72\xeb\x62\x65\xb5\xdc\x74\x93\x74\x65\xe4\xdb\x6d\xa9\x4d\x0c\x98\xea\x85\x4a\xa8\x4d\xbf\x1e\xb5\xb5\xd1\xa7\x16\xc3\x09\xa8\x4d\x78\x21\xb5\xb5\x24\xa2\x26\xf1\x50\x6a\x31\xab\x98\xda\x54\x9d\x50\x9b\x46\x52\x6a\x31\x84\x8c\x9a\xcc\x3c\xa7\x36\x4b\x66\x54\x6f\xb1\x05\xb5\x28\x19\xbb\x56\x2d\x63\x6c\x75\x57\x62\xf5\x57\xec\x59\x7d\x05\xfb\x36\x77\xc0\x81\xd5\x95\x70\x68\x75\x08\x1c\xd9\x22\x82\xec\x6f\xb4\x45\xb1\x35\x5a\xe0\xc4\xe6\x31\x38\x35\x04\x0d\x9c\x99\x82\x6c\x6e\xf5\x5c\xcc\xac\x41\x01\x17\xc6\x88\x88\x5d\xab\xd6\xb1\xd5\x11\x31\xb1\x7b\xb7\x67\xb0\x34\xec\x5b\x1d\x0d\x07\x36\x17\xc6\xa1\xd1\x0f\x71\x64\x8d\x0c\x98\x5a\xbd\x1f\xc7\x56\x5f\xc4\x89\x21\x58\xe1\xd4\xea\x6e\x38\xb3\x45\x07\x9c\x1b\xbd\x18\x33\x6b\xe4\xc0\x85\x12\x1c\x6e\xd3\xa7\x52\xde\xc1\x13\x0d\xc2\x4a\x38\xdd\x78\xfc\xa4\xde\xdc\xe8\x86\x63\x51\xaf\x1b\x88\x25\x3e\x4d\x51\x20\xf0\x11\x2d\x1f\x61\x55\xa8\x0b\xc2\x92\x13\x7d\x3f\x43\x5d\x3d\xff\x71\xd5\x6e\x5d\x08\x16\x7c\xea\x8a\xd2\x0a\xa9\x86\xcf\xec\x89\xb8\xec\xd1\x0d\xbf\x7a\x3b\x61\x95\x10\x35\x75\x0a\xc9\x84\xa6\xa8\xdc\x54\x32\xb6\x5c\x14\x63\x9b\x4c\x25\x0c\xb1\xe9\x5f\xc2\x78\x36\x5d\xcb\xdf\x7d\x9b\xb0\x25\x4c\x60\x16\xab\x84\x08\x7b\xdb\x1c\x19\x4c\x4b\x16\x53\x9b\x44\x25\x4c\x6c\xd2\x92\x2c\x4f\xcc\x56\x2a\x21\x52\x9b\x3d\x4a\x98\x4c\xaf\x72\x59\x9a\xdb\xcc\x48\xc2\x30\x9b\x89\x4a\x98\xc2\xec\xa1\xe5\x88\x58\xeb\xd8\xd8\xd6\x02\x4c\x0c\x42\xc6\x9e\xc9\xe2\xb0\x6f\x63\x16\x07\x36\xb5\xe0\xd0\x26\x0c\x1c\x59\x9a\x68\x8a\xbf\xb1\x59\x85\x38\xb1\x59\x2a\x4e\xad\xf1\x30\xb3\x79\x14\xce\xcd\xf6\x8d\x99\xc9\xe8\x70\xd1\xef\x5d\xf5\xe4\xc6\x08\x81\xed\xb1\x00\x93\x7e\x83\xc3\x5e\x9f\xf7\x61\xdf\xea\x7d\x38\xe8\x0f\x02\xa5\xb2\xad\xcd\x8d\xfa\x83\x12\xa6\xfd\xc1\x0d\xc7\xfd\xd1\xa0\x34\x07\x9b\x97\x09\xa3\x30\x96\x66\x7d\x61\x4d\x18\x86\x85\x4f\xd6\x17\x71\x4a\x23\x01\x2a\x4a\xcf\x2e\x3e\xaa\x79\x0d\x5e\x24\x8b\x8f\x0b\xb4\x1c\x25\x4b\xb4\x60\x13\x96\x2d\x21\x1f\xd1\xc9\xf3\xa3\x9f\xd1\x78\x7a\x51\x3e\x13\x51\x65\x34\x78\xb1\x7d\xd2\x7a\xb8\xb8\xbe\x98\xe8\xa0\xfa\xe0\x3f\x3c\xa0\x28\xbf\xc0\x67\xf9\xc5\x51\x2b\xba\xf2\x57\x01\x20\xbe\x94\x9f\xf9\x17\x47\x69\x4f\x9b\x73\x25\xab\xd2\xee\xf0\x44\x24\xc6\x42\x22\xf1\x8b\xfd\x8d\x2a\x0e\x5d\x3d\x50\x25\xbe\x28\x59\x52\xee\xfa\x44\x95\x3d\xb5\xde\x47\x76\x53\xa5\x00\xfb\xc8\x6e\x34\xa9\xef\x3e\xb2\x9b\x32\xaf\xde\x47\x76\xa3\x4f\xab\xc7\x69\x08\x15\x05\x21\x4a\xc7\xcb\x05\x4a\xb2\x6c\x36\xcf\xc7\xd3\x33\xb4\x9c\xa1\x57\x3b\x58\x8b\xf7\xf9\x18\x52\x01\xbd\x6d\xe7\x40\xd6\xbd\x1d\x12\x84\xe6\xb7\x43\x6a\x74\xaf\x66\x1c\xe1\xab\x1d\xfc\x76\xfc\x0e\x3d\x46\x58\x93\xa3\x54\xd2\x15\xe9\xf9\x07\x65\xeb\xde\xd6\xf5\x65\x3a\x3e\xfe\x9f\x81\x87\xd1\x63\x05\x35\xe4\xe1\x5b\x43\x0f\x3b\x88\x35\x09\x4b\xb7\x17\x0b\x76\x9e\x4e\x18\xc2\x21\x5a\x5c\xa6\x1f\xd9\x8d\x46\xfc\x8b\xcb\xf4\x27\x76\xb3\xa8\x54\x50\x7f\x37\x0b\x65\x7a\x02\x40\x42\x34\xe5\x97\x67\x08\x87\xd5\x37\xf3\x13\x2b\x3b\x90\x71\x4a\xf2\xa3\x17\xe4\xa2\xc4\x2e\x79\x79\x2b\x91\xbe\x93\x4c\x69\xf1\xda\x9f\x6e\x49\xc7\xcb\x13\xc8\x8a\xb2\xa5\x24\x41\xa9\xf0\x9a\x50\x0a\x83\xf2\xa9\xd6\xa0\x48\xb7\x8e\xce\x6a\x88\x6f\xb6\x9a\x26\x9d\x62\x3e\x3b\x87\x00\x33\x61\xc5\x12\x11\x0a\x9e\xc1\x29\xeb\x2b\x0a\xe1\xbc\x1d\x8c\xd1\xa6\x78\x1b\xc2\x85\x04\x8e\xa5\x71\x0d\x06\xaf\x76\x88\xb4\xc1\x35\xb4\x5e\x49\x60\x0d\xfd\x0d\x11\xfa\x0e\x72\x3c\x82\x6d\x8d\xd1\xdf\xe0\x8d\x8b\x95\xd9\x9b\x8f\xcf\x46\xab\xf3\xe7\x43\xfa\xce\x9a\xc9\xb5\x06\x97\x84\x42\xb1\xe0\x15\xad\x23\xe2\x1b\x18\x5e\xd3\x70\xdc\x21\xab\xcb\xec\xcf\x1b\x30\x9e\x66\x0c\xb1\x24\x1b\x49\xb3\x43\xe3\x05\x4a\x2e\x2e\x26\x63\x96\x73\x5d\x26\x53\xc4\xae\x2f\x92\x69\xce\xf2\x32\x2f\x23\x84\x77\x47\x8b\x8d\x8b\x40\xa2\xc9\x92\x29\x4a\x19\x4a\xe7\xb3\x8f\x6c\x8a\xc6\xd3\xe5\x0c\x51\x91\x14\x78\x81\x16\x59\x32\x11\xe8\x05\xca\x85\x1e\xdb\xd5\x68\x9c\x8d\x50\x32\x99\xcc\xae\x16\x80\x9a\xe3\x5d\xce\x38\xda\xcb\x05\xcb\xd1\xd5\x78\x39\x9a\x5d\x2e\x05\x83\x8b\xf1\x6c\xda\xc5\x22\x05\x0d\xe9\x35\x07\xf5\x97\x67\xcf\xe4\xb3\x32\xf5\x4f\x3c\xa0\x78\x58\x27\xb9\x86\xe5\x62\x61\xb9\x91\xdd\x70\x25\x5a\x08\x62\xf5\x67\x88\x59\x83\xb1\x50\xe2\xf7\x88\x6b\xdf\xd3\xab\xca\xd4\x8e\x48\x6d\x47\xf4\x4e\x26\xf6\xfc\x5d\xfd\x09\x1e\x05\xe8\x3c\xb5\xa3\x89\x80\x3b\x22\xf1\x25\x1a\x4f\x3f\xb1\xf9\x82\x99\xa3\xe0\x78\xfa\xe9\xa4\x15\x08\x1b\x3f\xad\xd4\x41\x60\x4b\x07\x51\x63\x53\x25\xb6\x78\x8b\x03\x6e\xd0\x6d\xec\x9f\x1b\x0b\x0e\xf5\x17\x36\xcd\xe6\x37\x17\xcb\x5b\x3c\x05\x28\x33\xd6\xce\x76\xaa\x7a\x35\xb0\xd3\x0c\xf9\xc6\x14\xba\x39\xfb\x1a\x54\x6b\x89\xd8\x72\xf7\xee\xd8\x29\x3b\xa5\x20\x75\x83\x8e\x1f\xd9\x52\x1d\xa7\x35\x99\x9b\x00\x52\xe5\x69\xac\xb6\x0e\x04\xd8\xbc\x0d\x06\x2f\x67\x69\x46\x1f\x07\xd3\xf1\x72\x9c\x4c\xd4\xd4\x57\x4d\x18\x76\x9d\x8d\x92\xe9\x19\x3b\x3c\xae\xd3\xa2\x8a\xcc\x63\xee\xb5\x5b\x88\xff\xb5\x4d\x5a\x5f\x47\xbc\x4f\x0d\x33\xd6\xa2\x30\xd6\x39\x3e\x54\xeb\x10\xa0\xe3\xc9\xbf\xd5\xea\x50\xc1\x9b\x5b\x14\xfc\xff\x2b\xf2\x06\x75\x02\xf9\xa7\xcd\x4c\x6b\x7b\xaa\x4d\xa4\x0f\x03\x8f\x12\x1f\x85\x57\xc1\xe7\xfe\x67\xdb\x34\x3d\x91\x76\x3c\x01\xe8\x4c\xcf\x5e\x54\x86\xa1\xda\x89\x01\x76\xde\x84\x9d\x4b\x58\x2d\x93\x7b\x6c\xbc\x58\xb2\x49\x65\xc5\x7a\x8c\x05\x34\x7e\xb5\xa1\x05\xb5\x07\xe8\x82\x77\xb4\x22\xd5\xda\xdb\xf1\xbb\xb7\x83\x81\xe4\xf6\x7d\x1d\xae\xf9\x40\xb2\x9a\xba\xc0\x77\x48\xab\xad\x13\x8d\x26\x60\xb7\x1c\x69\x6e\x92\x54\xcb\x93\x26\x25\x1b\x45\x7f\x00\x7f\x3d\xcd\x67\x68\x71\x95\x5c\x88\xe1\xc7\x24\x59\x2c\x85\x31\x74\x43\xf8\xd2\xae\xb2\x16\xb3\x4d\x85\xd9\x1c\x7f\xa9\xb1\x61\xc8\x28\x7e\x5b\x57\xef\xb8\xc6\xbd\xb9\xe0\x5d\x5c\xfd\x2e\x21\xa5\x27\x74\x69\x66\x64\x4b\x34\xbb\x5c\x76\x22\x70\x15\x72\xed\x2a\x6b\x84\x5c\xb3\xce\x1a\x5d\xc6\x47\x76\x23\x52\x40\x87\xfe\xa6\x47\xd4\x92\xf1\x27\x43\x81\x92\x37\x3a\xd4\x66\x8d\xde\x44\x27\xdc\x02\xe5\x24\x60\x3e\x5b\x2c\xea\x61\x3a\xe4\x3c\x84\x01\x31\x4c\x4b\x45\x8d\xaa\xa3\xaa\x05\x37\x28\xfb\xab\xf3\x64\xf1\xb1\xe1\xb2\xa5\xed\x0e\x06\x0d\x13\xe5\x8e\x58\xf6\xae\xef\x1b\x4d\xe7\x4e\xcb\xb1\x28\x22\x68\x98\xec\x7b\xb0\xd9\xef\xb4\x86\xcf\xcb\xf8\x88\x4a\x60\x96\x50\xa5\xdf\x75\xd8\x3e\x3e\x5c\x9d\xed\xb9\x99\xed\x89\x9d\xed\x89\x85\xed\xf9\x0a\x6c\x5b\x93\x48\x2f\xca\x2c\xd2\x62\xf9\x63\xb5\x3c\xd2\x7d\x49\x98\x05\xae\x25\xbb\x5e\xaa\xa9\x98\x77\x87\x27\x1b\x72\x80\xd6\xc8\xc5\xec\xa0\xac\x38\xd3\x24\xd7\xbe\x98\x24\x9c\x89\xeb\x25\x6a\x63\x91\x03\xae\x41\x4d\x47\x87\xa8\xca\xec\xdc\x5d\xa8\x69\x26\xdd\xde\x1d\x9e\x68\x33\x6e\x9f\xce\xc7\x17\x13\xf6\xf8\x76\x4b\x44\xa2\x52\x63\xa1\x48\xfd\xe9\xcf\xb3\x5c\x24\x17\x22\x38\xdb\x63\xc8\x50\x9a\xb5\x9f\x07\x92\xa3\x58\xb6\xc0\x68\x8b\xc3\x6d\x08\xa9\x0e\x85\x8e\x67\xf3\x41\xfd\xce\xba\x7c\x38\xbe\x24\xbd\xb1\x98\x8c\x33\x36\x70\x1d\x44\xd6\x3a\x6f\x61\x54\x68\xc9\x1d\xd1\x12\x07\xf9\x16\xb4\xde\x1d\xd1\xfa\x0e\x0a\xd7\xcc\x0f\x69\xdc\x79\xee\xc1\x16\x78\x43\xad\xac\xd4\x30\x4a\x66\x43\x9d\x73\xac\x50\xc1\x5b\x81\xc2\xfd\xcc\x69\x38\xad\x5b\x32\x47\x6e\xdb\x7c\xbc\x02\x05\x7d\xaf\x87\x63\x72\x6f\xdd\xde\xbf\x49\x58\xad\xa2\xcb\x3d\x04\xd7\x1a\xd7\x2d\x43\xac\x29\xc4\x35\x03\x6d\x05\x65\xcd\x9f\x5f\x41\xb5\x52\xe8\x2b\x89\xd9\x9f\x04\xc4\x69\x65\xd5\x57\x92\xbb\x3f\x09\x7c\xa7\xce\xea\xfe\x24\x08\x1d\x99\xec\xfd\x49\x88\x3f\xbf\x73\xa8\xff\x45\x09\xf7\xff\xc8\x4c\xfb\x5f\x2d\x1f\xfe\x7f\x4f\x66\x7b\x78\xa9\x60\x3c\x65\xf9\xfd\xa6\xb8\x7f\x9e\x2c\x58\x9d\xb5\x3e\x59\x30\xa5\xec\x67\x8f\x58\x33\xe0\x77\x7d\xf9\x3a\xf4\xd1\x34\x39\x67\x8b\x0b\xd5\x4b\x37\x55\x36\x38\x08\x67\x43\xfc\xf7\x9f\x9f\x75\x68\xb6\x51\xe8\x57\x4f\xd8\xe8\xd0\xfc\x1c\xfa\x9c\x0f\x60\xea\x3a\xf4\x37\xe4\x17\xce\xbf\x66\x64\x50\xa3\x16\xe8\xe5\x72\xca\xf8\x37\xb6\x40\x09\x9a\xb2\xab\xc9\x0d\x12\xbe\x96\xeb\x08\xab\x01\x05\x35\x5e\xf3\x98\x5e\x9e\xa7\x6c\xfe\x19\xc1\xab\x52\xf0\xaa\x0a\xff\xe0\x11\x18\xce\x6f\x58\xab\x4c\x66\x57\x50\x83\xff\x57\x57\xa1\x59\xb9\x19\xdd\xba\x00\xa5\x5c\xae\x6b\xb9\x94\x11\xa1\x14\x4f\xd9\x31\x8b\xdd\x3f\x97\xb8\x1e\xcc\xca\x7c\x37\x70\x43\xb7\xb9\xde\x59\x4a\x1a\x42\xfc\x74\xdc\x18\x51\xf1\x16\x3a\x9c\x6b\x7d\x1f\x26\xdf\xd7\xd2\xbc\xea\x09\xc5\xbc\xb5\x5b\xa8\xf9\xfa\xb6\x3a\x33\x6f\x6b\xea\xf9\x78\x79\x35\x5e\x30\xf4\xf2\xe8\x74\x01\x18\xfa\x14\x53\x3e\x94\x22\x0d\xe4\x33\xda\xe6\xfa\xe5\x72\x79\x0c\x82\x91\x3d\x49\x52\x2c\xd9\x1c\x4d\xd9\x59\xb2\x1c\x4f\xcf\xee\x41\xf0\x80\x8a\x71\xc1\x4b\x15\x6c\x4c\x67\xcb\x81\x51\xaa\x9b\x9b\x68\x3a\xeb\x1d\xa9\xc2\x9b\x2c\x42\xa0\xff\xaa\xa4\xfb\x54\x0b\x26\x04\xfb\xaf\x52\xc8\x9a\x21\xa9\x94\x8c\x14\x4c\x69\x0d\xb5\x3a\x9f\x36\xb8\x6b\x8c\x00\x4c\x5a\xd9\x7e\xb9\xab\x68\x05\xb6\x13\xa0\xdf\xbe\x48\x16\xb0\xbd\xb0\x92\x0f\x55\x9a\x02\x1c\xdc\x25\x2a\x65\x2d\x67\x9c\x44\x89\xf7\x9e\x95\xbf\xfd\x72\xf7\x7e\x54\x2f\xf6\x76\x6a\xc5\x27\xd3\x7c\x90\x4c\x67\xcb\x11\x9b\x4b\x46\x6c\x66\x90\x4c\x73\xd5\x0c\x78\x0b\x7b\x4c\xa1\xf6\xb3\x87\x42\x20\x7d\x56\x51\x79\x9e\x84\xff\xc3\xec\xe3\xe8\xf8\x6b\x9b\xc7\xd1\xf1\x57\xb2\x8e\xa3\xe3\xfb\x31\x8e\xd9\xbc\x61\x1b\xb3\xf9\x2d\x4c\x63\x36\xbf\xb3\x65\xfc\x7e\x4b\xcb\xf8\xfd\x0f\xb6\x8c\x9f\xbf\xbe\x69\xfc\xfc\xd5\x6c\xe3\xe7\xfb\x32\x8e\xeb\x96\x75\x5c\xdf\xca\x3c\xae\xbf\xc0\x3e\xde\xdf\xd2\x3e\xde\xff\x41\xf6\x01\x9b\xf2\xaa\x65\x4c\xc5\xca\xa8\x9c\x10\x4e\x58\xb1\x5c\x7d\x54\x36\x05\x9b\x10\xdf\xd0\xac\xa8\x30\xc1\x13\x36\xf7\x65\x0c\x80\xec\x7e\xcc\x01\x50\x35\x0c\x02\x7e\x39\x1c\x90\xc0\x66\x07\x02\x48\x35\x85\xa9\xce\x0e\xf8\x14\x68\x8a\x9e\x21\x8f\x98\x76\xba\x14\x4b\x19\xd4\xa6\xf2\xec\x19\x9a\xc2\x16\x79\x65\x0c\xe2\xe8\x10\x41\x8f\xd1\x54\xfb\x58\xbd\xde\x84\x38\x9e\xae\xad\x7d\x46\xe5\xe4\xc9\xce\x90\x8a\x66\x30\x45\x8f\x35\x2f\x86\x76\x48\xb7\xb7\xba\x38\xb9\xff\x4e\xeb\x85\xa5\xfc\xff\x71\xe6\x7b\x3c\x30\x4f\x2e\x4a\xeb\x3d\xbe\x27\xeb\x15\x7a\x6f\x5a\xaa\x62\xbc\xa5\x3d\xaf\x60\xbc\x9d\x88\x09\xa8\xee\x60\xbf\x8a\x17\x54\x78\xfa\x0d\x58\x92\xff\xc3\x2d\xf8\x78\xb6\x4c\x96\xec\x6b\x07\xe0\x39\x50\xb9\x2f\x13\x06\x6c\xf7\x63\xc2\x82\x31\xd5\x84\xe7\xb3\xde\xf8\xcb\x41\x7a\xed\x57\xb6\x08\xec\x40\x46\xf5\xe9\x1a\x1f\x0e\xd6\xbf\x1c\x0f\x42\xbf\x63\x96\x5f\xaa\xb0\x7b\x8a\x39\x7f\x2e\x8d\xf5\x84\x1c\x0e\x71\x7b\x85\x1d\x77\x14\x76\x78\x17\x85\x6d\xe7\xf9\xd7\x1e\xf9\x26\x79\xfe\x95\x46\xbe\xe2\xc9\xef\xfb\x98\x33\xe7\xad\x39\x73\x7e\xab\x39\x73\xbe\xf2\x9c\xb9\xdd\x23\xac\x57\x03\x59\x38\x30\xaa\x1f\xfc\x66\xc9\x7c\x7e\xc3\xab\x95\x7d\x88\x78\x18\xbe\xd1\xad\xd4\xcf\xc3\xeb\x71\x74\x07\x52\xeb\xf5\x98\x1b\xad\x0b\x1a\x92\x87\x2f\x8d\xe8\xe2\x9b\x7e\x77\x65\x7b\x2a\x9f\x00\x9f\x15\xea\xda\xe6\x42\xf7\xc2\xf1\x7c\x76\xc1\xe6\xcb\x1b\xf4\x4f\xf9\xc4\x30\x00\x82\x79\x55\x28\x3a\xcb\x8a\xd2\x40\x16\x1b\x3a\x3c\x65\x58\xa9\xde\x44\x6f\x46\x97\xc5\xf8\x6c\x3a\x2e\xc6\x59\x32\x5d\xa2\x14\xca\xc7\x53\xc5\x37\x80\xa8\x65\xf5\xb7\x5e\x97\x2e\x99\x29\x7f\xb9\x87\x75\xe0\x2e\x07\x66\x77\x6c\x88\x6b\x70\x74\xc1\xcd\x32\x99\xac\x35\x64\xdf\x2b\x38\xa4\x0d\xc8\x95\xe4\x14\xb4\x2b\x09\x91\x35\xd5\xfc\x05\xbe\x7a\xa5\x8a\xba\xdd\x8a\xc6\x9e\x6f\xd3\x67\xbf\x10\xd9\xdb\x4e\x7d\xfe\x77\xdb\x65\x6d\xe7\xb6\x58\x30\xc5\x31\x4e\x70\x0a\x77\x6a\x32\x9c\x63\x86\x8b\xb5\x0e\x92\x77\xff\x83\x9a\xea\x20\xec\xae\xbc\x3d\x00\x46\xe7\x54\x66\xdb\x09\xcb\x57\xf2\xf0\x04\x84\xc5\xf2\x8b\xf8\xef\xef\xbf\x6b\x2e\x60\xf0\x71\x7f\xe5\x03\x7f\xd9\x42\xdd\x5d\x30\xf5\x4f\xf4\xcd\x25\xf8\x56\xc5\x46\xfb\x2c\xa0\x71\xd0\xde\x46\x20\x7c\x68\xc2\xa6\x67\xcb\x11\xfa\x1e\xd1\x15\x8f\x52\xb7\x03\xcd\xce\x6c\xfa\x89\xcd\xcb\xa9\xa1\x12\x86\x65\x7c\xe0\x9d\x76\x79\x3b\x60\xa5\xc0\x53\xf6\xda\x95\x76\x1b\x3b\x73\x9f\xd1\x69\x33\x88\x3e\x5a\xa0\x3c\x59\x26\x28\x59\xdc\x92\xce\xca\x2b\x59\xcd\x9d\xc2\x6b\x25\x40\x6f\x2c\x67\x3f\x7b\xc4\xbc\x15\x02\xc5\x5f\x70\x66\x47\xd2\x6a\x1a\x95\xe6\xe4\x4e\x09\x77\x28\x94\x59\x31\x59\xaa\x57\x77\x8a\x47\xa8\x4d\x83\x4b\x34\x77\xe5\xc3\xfb\x4d\xda\xf6\x9b\x5e\xf5\x16\x5e\x59\xeb\x6d\xe7\x08\x3f\xff\x2b\x79\xd8\xb8\xb8\x5c\x8c\x06\xe5\x40\x8a\x8f\x11\x74\xf3\x4a\x3d\x74\x6b\x2c\x81\x34\xe7\x64\xcb\xa1\x88\xa2\xe0\x32\x82\x94\x38\x9d\xa6\xdb\x18\x0f\x92\x74\xbc\x02\xd0\x70\x93\xcc\x66\x17\xd0\x49\x1a\xfa\x7e\xd4\x3b\x6c\xad\xcc\x9e\xa1\x6c\x32\x9b\xda\x66\x2a\xab\x9a\x34\xe0\x69\xdb\x32\xfc\x68\xb6\x65\x28\xb6\xda\xb2\x8a\x19\x46\x29\x82\xdd\xea\xe4\xab\xee\xa4\xeb\x0e\xc0\xff\x15\x0c\xfb\xaf\x42\x32\x5d\xa4\x65\x2c\x15\xf8\xba\x61\xb6\x3c\x35\x66\x26\x00\x77\x98\xca\x8d\x75\x31\x38\x31\x90\xa9\x5c\xe8\xaa\xe1\x3f\xbd\x6e\x70\xb5\x8a\x0f\x5c\x49\x93\x2f\xd1\xbf\x1d\xbf\xd3\x89\xdd\x6c\xaa\x00\xdc\xd8\x5f\xae\x86\xc7\xc6\x73\x33\xad\xd3\x32\xf2\x68\xcc\xe7\x77\x0e\x0d\x56\x39\xef\xb2\xf9\xfd\x5f\xd0\x68\xb9\xbc\x58\x3c\xd9\xdc\x3c\x5f\x8e\x16\x1b\x29\xdb\xbc\x5c\x16\xf4\xd7\x05\xfa\x44\x36\xf0\x06\x41\xe9\x0d\xfa\x7f\xce\x93\xe5\x68\x9c\x2c\xb8\xc5\xd4\x07\x64\xe0\x54\x88\x38\xec\xb1\xb9\x89\x76\xd9\x52\x5c\x87\x63\x8c\x8b\x7b\x9c\xa4\x13\xb6\x40\xff\x90\x94\xfe\xf1\xe0\x3b\x38\xc6\x3f\x67\x6c\x58\x9d\x7f\xe9\x9c\xa4\x41\x8f\x84\xf2\x1e\xa1\x87\x0f\xcb\x9f\x9f\x9a\xd1\xa3\x7f\x88\xe6\x28\xc8\x5f\xc0\x0f\x35\xee\x73\xf9\xbd\x89\x5a\xfe\xfa\xf0\xa1\xe6\x7c\xce\x56\x83\xc9\x0a\xd8\xca\xc6\x19\x9c\x9c\xf9\x87\x23\x4e\xe3\xbf\x9c\xe5\x6c\xe3\xd7\x05\x9a\xcd\xd1\x73\x71\x94\x66\x5c\x8c\x59\x8e\xb2\x59\xce\x1c\xc0\x92\x4c\x73\x74\xb9\x60\x68\xbc\xe4\xfd\xda\x3f\xb8\x1c\x95\x36\xc8\x73\x38\x55\x1b\xce\xe4\xf7\x66\x1b\xc4\xaf\x4f\xc5\x99\xa4\xba\xda\x46\x05\xbd\xa5\x22\xfb\xfd\x77\xe5\xdb\xc6\xd5\x78\x9a\xf3\xd9\x65\x03\x46\x1c\x1d\xe2\xbc\x20\xf5\x67\x38\xec\xf3\xe0\xbb\xcd\xef\x1f\xdf\xdb\xdf\xf7\x9b\x0f\x44\x6b\x17\xcb\xf9\x78\x7a\xb6\x37\x9f\x9d\xef\x8c\x92\xf9\xce\x2c\xe7\x9a\x3b\x81\x1f\x37\x0a\xe5\x57\x29\xfc\xd3\xe4\x23\x9b\x0a\x19\xb7\x4d\xf6\xe2\x72\x7a\xc3\xe5\xfb\xe0\xbb\x2a\x82\x5d\x66\x0b\x92\x33\xfe\xe3\x40\xd0\x11\x0d\x84\xad\x4d\x38\x7c\x5f\x76\x81\xf0\x53\x36\xbb\x9c\x2e\xd9\x5c\xae\x5c\xc2\x4f\x93\x32\x56\x88\xea\x75\xb0\x80\x52\xb8\xcf\x58\x7e\x61\xd7\xcb\x79\xc2\xbf\x5c\x8d\xc6\x13\x86\x06\x25\xb6\x67\x12\x89\x20\xfd\x1d\xd4\xa9\x11\x66\xb2\x79\xdb\xcb\xb2\xc2\xfa\x3a\x77\xf5\xef\x40\xa7\x02\xf8\x87\x2d\xe4\x5e\xef\x52\xd7\xe5\x3a\x17\x3f\x3d\x83\x9f\x9e\xef\xed\xf1\x9f\x0c\x94\xb8\xb8\x60\xba\xbe\xb8\x9c\xcf\x67\x67\xc9\x92\x39\x60\x75\xcb\x11\x9b\x33\xb8\xe7\x89\xa6\xec\x7a\x89\x38\x0b\x49\xb6\x64\x73\xa8\x04\xcd\x58\x85\x3f\x60\x70\x20\xc0\x1f\x22\xf7\x7a\x6f\xc7\x75\xd7\xb8\x85\xba\xd7\xbb\xf0\xf1\x9f\x3c\x38\x4f\x66\x57\x35\x7d\xa8\xf6\x9d\x90\xbc\xe8\xca\x07\xb2\x89\x1c\x81\xb7\xb7\xb7\x06\x57\x33\xdd\x35\xb4\x8e\x14\xcc\x50\xb0\x5e\x66\x1c\x92\xd4\xeb\x51\xb0\x6c\xea\xe5\xf4\x3c\x59\x66\x23\x96\xd7\xf4\x9e\xa2\xd9\x74\x72\x83\x92\x8b\x0b\x06\xed\x1e\x2f\xc0\x01\xd1\xe5\x74\xbc\x74\xf8\x44\x33\x4b\x16\x0c\x66\x9b\x5c\x10\x15\xa6\x0a\x86\x0b\x69\x59\x9e\x8b\xaa\xb0\xf2\xae\x3e\x51\xbe\x5e\x24\xe3\x79\xb7\x65\xd0\x2e\xc9\xeb\x77\x52\x74\x8f\x1f\x4b\xde\x1f\xb4\x1b\x60\xa8\xc9\x01\xf9\xff\x65\xbc\x17\x50\xa5\x37\xde\xc5\x19\xd8\x14\x9c\x01\x7a\xe1\xda\x17\x2a\x2b\x17\xe3\x96\xa6\x91\x8f\xa7\x39\xbb\x46\x5b\xe8\x31\xd6\x9a\x7d\xe5\x47\x8f\x1e\x29\xc6\xbf\xbe\x2e\xaa\x19\x8c\x1f\xe8\xbc\x05\x90\x77\x6d\x63\xe7\xa6\xb4\xc7\x35\x2e\x24\x23\x7e\x7d\xbc\x55\xaa\xff\xa9\x22\x2f\xb4\xbe\xa5\x89\x1f\x25\xa2\x1f\x7e\x40\xd8\x2d\x0d\x08\xfd\x2e\x7d\x48\xaa\xa4\xe4\x44\x18\x2b\xfa\x1d\x35\xec\xb0\x12\xfe\x0a\x84\x00\xa1\x49\x49\x95\xf0\xb3\x11\xcb\x3e\x9e\x64\xc9\x24\x99\xff\x9d\xd7\x1a\x70\x3d\xbc\x9a\x8d\xa7\xe2\x34\x35\x08\xa0\xfa\xa9\xe9\xf1\xf5\xcf\xc2\xeb\x6b\xe1\x2c\x47\xf3\xd9\x15\x1a\xce\xe7\xb3\xf9\x00\x5a\xf5\xe8\x90\x0f\x85\x6a\xd3\x7c\xbd\xfe\x08\xad\xd7\x08\x36\x96\x33\x11\x59\x07\x38\x5c\xdb\x58\xce\x5e\x5f\x5c\xb0\xf9\x4e\xb2\x60\x83\x35\xb4\x2e\x10\x70\x93\x9f\xce\x96\xdc\xc0\x81\x59\x21\x97\x47\xbc\xb0\x6c\xe8\xe7\xaf\xd0\x13\xd4\x72\x82\x51\x35\x1f\x89\xd7\xe2\x70\xc4\x36\x9b\xec\x9c\x84\x94\x35\xda\x18\xa8\x02\xfc\xa1\xac\x23\x34\x0a\x4b\x95\xd7\xd4\x5d\x6b\xeb\x45\x38\xc4\x4e\x59\x51\xa7\x16\x05\xed\x43\x69\x9c\x7b\x7b\x54\xc6\x3a\x19\xe6\xf0\xe3\xf4\x66\xc9\xd0\x82\xfd\xd7\x25\x9b\x66\x10\xe8\xcc\x8c\xd6\x34\x4a\xd3\x81\x8e\xf0\xe6\x3c\x9d\x4d\x2a\x47\x32\x51\xa6\x6e\x93\x32\xe9\x52\xae\x30\xf5\x0b\x29\x14\x02\xc2\x52\x40\x3b\x6e\xc5\x52\x75\xf0\x58\xc3\x04\x84\x61\x95\x09\xaf\xcb\x84\xc5\xe0\x9f\xde\x92\x49\x4c\x04\x97\xae\xe4\x72\xe8\x36\x50\xac\x6f\x19\xac\x26\x5c\xa1\x31\x43\xb7\xd3\x18\xff\x8b\x24\x8a\xa9\x64\x36\x12\xcc\xee\xad\xc8\x2c\x26\xb7\x6d\x54\x0d\xa9\xe3\xaa\xd9\xd0\xa6\x07\x54\xb6\x09\x18\xda\x2e\xc1\x87\xfe\xb2\x9f\x68\x0f\x9a\x2a\xa4\x7c\xe8\xde\x1d\x5c\x75\x46\x4d\x35\x7c\x6f\xa7\x52\x81\x96\x3f\x70\x25\x88\x68\xb5\x62\xe7\x52\xb7\x58\x25\xac\xf6\x32\x0a\xca\xf5\x2d\x8b\xeb\xb7\x22\x7a\x5d\xed\x6b\x0d\x84\x2b\xd9\xcf\x59\x92\xef\xcc\xa6\xcb\xf1\xf4\x12\x2e\xcf\x82\xf6\xeb\x50\xc4\x39\x39\x80\xb6\xff\xb0\x05\x6c\xed\xf0\x81\x85\xa6\x37\x78\x74\x30\xfd\x94\x4c\xc6\x39\x00\x09\x69\x3f\x92\xcd\xaa\xe4\xdd\xa4\x82\x04\x42\x58\x28\x78\x5b\xd1\x79\x27\xdd\x84\x57\xad\x7e\x5c\x5f\xe7\x83\xf1\x32\x42\xb5\xd0\x3c\x14\x61\x44\x0c\x04\x79\x94\xfc\xa7\x12\x0c\xb5\xd0\xde\x5e\xc5\xd8\xe6\x26\x3a\x28\xd0\x15\x43\x7c\xbc\x76\x79\x81\xf8\x48\xd5\x41\xe3\xe5\xff\xfe\xff\xff\x57\xd9\x2d\xa9\x28\x80\xe3\x07\x86\x96\x77\x00\x1f\x75\x82\xbf\xb0\xde\x13\xf0\x82\x41\x6d\xe5\x1c\x18\xab\x66\x48\xd4\x2f\x9e\xfa\xc5\xd7\x98\x6f\x57\x57\x5f\xa0\xaa\x26\xa6\xad\xae\xd6\xa5\x64\x8b\x64\x02\x97\x1f\x2a\x39\x1e\xb3\x24\x47\xc5\x78\xbe\x58\x96\x52\x82\x66\xdd\x5e\xcd\xdd\xde\x0d\x0d\xa6\xb3\xae\x78\x17\x6b\xa5\x4d\x08\x42\x0f\xa5\xfe\x65\x64\x55\x78\xad\xe4\x5b\xf2\xda\xed\xc3\x5a\x78\x86\xa5\x41\xed\x94\xa8\x40\x2d\x68\xcb\xe0\x30\x4f\xdb\xf1\x40\x45\x86\xc5\x34\x03\x72\xee\x54\xda\xd5\x0d\xc0\x2a\xeb\xad\xcd\x57\x89\x51\xcd\x01\xfc\x2d\x4c\xb0\x1c\xd6\x8b\xb6\x7b\x6d\xd9\x9e\x27\x37\x68\x3c\xcd\x26\x97\x30\x09\xe1\x93\x0b\x75\x4a\xa3\x93\xf2\x5e\x29\x9d\xe1\x2d\xa4\x03\xa6\x7c\x37\x01\xba\x72\x9e\x46\xe0\x6c\x92\xa0\xa5\x0a\xd4\x33\x09\xd4\x85\xc1\x8b\x10\x58\xdf\xf8\xe0\x6b\xca\xbc\xdb\xc3\xb7\x25\x4a\xa5\x44\xf7\xee\x57\xa2\x10\x32\xee\x28\xf4\x08\x84\xee\x5e\xb7\xc5\xee\x5e\xbb\x3b\x6b\xe8\x77\x90\xc8\x40\xf0\x20\x7e\xad\xf4\xe1\x1b\xf5\x01\x33\x2a\xcd\x1c\x03\xbb\xea\x14\x4c\xaf\x89\x52\x9e\x5a\x2d\xbc\x3e\xdd\x7b\x4c\x51\x0e\x2b\x65\x2c\xaf\x22\x6f\x19\x36\xe5\x0d\xac\xea\x3b\x04\x34\xe5\x3b\xc4\x9f\xa7\xad\x31\x89\x1c\x6b\xd4\xbd\xb1\xe0\xaf\xc2\xd7\x1c\x92\x28\x60\x65\x54\x03\x2a\x6a\x00\x54\x06\x25\x4a\x8c\xad\x57\x7f\x1a\xc3\x9d\x7a\x9d\x68\x79\x7e\xa1\x8c\x46\x06\xcb\xf3\x0b\xb4\xd5\xea\x4b\xd6\xd0\x5f\xb6\xb6\x44\x50\x6e\x8f\x4e\xe4\x26\xc6\xf2\xfc\xa2\x3d\xce\x50\x26\xe8\x35\xf4\xda\xd7\x5c\x7c\xe3\x62\x45\x5b\xc0\xe0\xa3\x4f\x6c\xbe\x18\xcf\xa6\x8f\x9e\xa0\x47\xb0\xe8\xfb\xc8\xe1\xbf\x0a\x7e\x1e\x3d\x51\x46\x85\xf0\xbb\x68\xae\xfc\x5d\x7c\x79\xf0\xdd\x67\xb9\x48\x77\x32\x3b\x67\x68\xfb\xc5\x2e\x4a\x2f\xc7\x93\x1c\xcd\x2e\x96\xe3\xf3\xf1\x6f\x6c\xbe\x70\xd0\x64\xfc\x91\xa1\xf9\xc6\xaf\x0b\x47\x4c\x89\x61\xa5\x7d\x71\xc1\xb2\x71\x31\xce\xb8\xf3\xe6\x63\x50\xf8\x45\xb2\x5c\xb2\xf9\x74\x01\xf8\xa0\xd2\x72\xc4\x50\x31\x9b\x4c\x66\x57\xe3\xe9\xd9\x13\xb1\xe6\xc9\xcd\xaf\x75\x2f\x12\x3d\x2a\x8d\xe6\x91\x58\xdc\x6d\x00\x6c\x24\xe7\x79\x6b\x15\xb5\xba\x22\xc9\xcb\x1e\x7c\x27\xd4\x25\x2f\x4d\x56\xcb\xdc\xcd\x0e\x8c\xb7\x19\x74\x07\xca\xa9\x67\x17\xad\x55\xe3\xbf\x28\xdf\x37\xa6\xb3\x9c\x9d\xde\x5c\xb0\x7a\x30\x57\xaf\x55\xcb\x89\xc7\x78\xaa\xae\x1b\x1f\x8f\xa7\x67\xb3\xff\xf7\x04\x7d\x72\x37\xe8\x86\x0b\xd3\xf3\xba\x86\x72\x97\xb4\x62\x46\x86\xc6\x12\x53\x32\xbf\x1a\x25\x93\x16\xa6\x68\xc3\x7d\x2c\x16\x62\xe6\xe5\xd9\x28\x71\x8b\x51\xfe\x36\x4a\x16\x47\x57\xd3\x57\xe5\x11\x98\x2d\x09\xb4\xd1\xfc\x1d\xc0\xab\x2d\x12\xc8\x1a\x27\x84\x52\x46\x8c\x26\xb8\xd8\x1f\xe2\xe5\x70\x91\x78\x8d\xcb\x46\x95\xd5\xdb\x8f\x22\x81\x21\x87\x80\xcf\x8d\xc5\xaf\x56\xbb\x8e\x47\xe3\xe9\x8c\xb7\x2a\x41\x57\x2c\x45\xf2\xa2\xaa\x5c\xb5\xde\x90\x06\x2d\x65\xf2\xf9\x81\xbc\xa2\x0a\xdb\x26\x9f\x9d\x7f\x7e\x7e\xe7\xd0\x70\x95\x2d\x91\xce\x8d\xdd\x9f\x5f\x1c\xee\x2f\x97\x17\xc7\xbc\xcb\x58\x2c\x2b\x6c\x7f\x4d\xc7\x67\xe2\x30\xcb\xc6\xaf\x8b\xbf\xae\x82\xf9\xd1\xe5\x82\xc1\x84\x2d\x5b\x3e\x7a\xfa\xa0\x4b\xe8\xf9\xf8\xec\x25\x20\x7c\xca\x1b\xfc\xeb\x62\xc4\x83\xf2\xf8\x6c\x3a\x9b\xb3\x27\x93\xf1\x94\x3d\xa8\x48\x5f\xb1\xd4\x5b\x89\x24\x57\xd2\x1b\x96\x8a\xbe\x49\x5c\x33\x7e\xb4\xb1\x39\x19\xa7\x9b\x1c\x05\x0f\xce\x0f\x36\x37\x51\x3e\x9b\x3e\x5a\xa2\xd9\x27\x36\x9f\x8f\x73\x56\xee\x38\x94\x1b\x1c\x0f\x94\x3b\xc8\x72\xeb\x80\x47\xb8\x47\xd5\x89\x06\xd8\x90\x68\x00\x6c\x08\x9a\x4d\x28\x6e\x21\xb0\x4f\xa6\x82\x00\x77\x4f\x1f\x7c\xd6\x88\x43\x94\xc8\x9d\xad\x92\xe5\xbf\x3e\x21\xe4\xf3\x3b\x2e\x06\xe7\xad\x10\xc3\xbb\xb5\x07\x9b\x9b\xff\x17\x5a\xcc\x2e\xe7\x19\x7b\x91\x5c\x5c\x8c\xa7\x67\xaf\x8f\x0f\xb7\x78\xe1\xe3\x09\x9c\x22\xfd\x75\xb1\x71\x9e\x5c\x3c\xd8\xdc\x7c\xf0\x7f\x02\x00\x00\xff\xff\x44\x0b\x36\xe7\xf4\x67\x06\x00") func web3JsBytes() ([]byte, error) { return bindataRead( @@ -106,7 +114,7 @@ func web3Js() (*asset, error) { } info := bindataFileInfo{name: "web3.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0x32, 0x6b, 0xa6, 0x48, 0xcf, 0x60, 0x55, 0x11, 0x99, 0x68, 0x24, 0xdb, 0x89, 0x36, 0xbe, 0xaa, 0xc, 0x77, 0xc9, 0x80, 0xa8, 0xd2, 0x72, 0x9d, 0x71, 0xa8, 0xc3, 0x9a, 0x61, 0x8f, 0xaa}} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -114,8 +122,8 @@ func web3Js() (*asset, error) { // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) @@ -125,12 +133,6 @@ func Asset(name string) ([]byte, error) { return nil, fmt.Errorf("Asset %s not found", name) } -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - // MustAsset is like Asset but panics when Asset would return an error. // It simplifies safe initialization of global variables. func MustAsset(name string) []byte { @@ -142,18 +144,12 @@ func MustAsset(name string) []byte { return a } -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - // AssetInfo loads and returns the asset info for the given name. // It returns an error if the asset could not be found or // could not be loaded. func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) @@ -163,33 +159,6 @@ func AssetInfo(name string) (os.FileInfo, error) { return nil, fmt.Errorf("AssetInfo %s not found", name) } -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - // AssetNames returns the names of the assets. func AssetNames() []string { names := make([]string, 0, len(_bindata)) @@ -202,8 +171,7 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ "bignumber.js": bignumberJs, - - "web3.js": web3Js, + "web3.js": web3Js, } // AssetDir returns the file names below a certain @@ -215,15 +183,15 @@ var _bindata = map[string]func() (*asset, error){ // img/ // a.png // b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { @@ -251,7 +219,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "web3.js": {web3Js, map[string]*bintree{}}, }} -// RestoreAsset restores an asset under the given directory. +// RestoreAsset restores an asset under the given directory func RestoreAsset(dir, name string) error { data, err := Asset(name) if err != nil { @@ -269,10 +237,14 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil } -// RestoreAssets restores an asset under the given directory recursively. +// RestoreAssets restores an asset under the given directory recursively func RestoreAssets(dir, name string) error { children, err := AssetDir(name) // File @@ -290,6 +262,6 @@ func RestoreAssets(dir, name string) error { } func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } From 1c0a15aa4e6a2d66c4230f951c736671a3b95b58 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Mon, 5 Oct 2020 16:38:41 +0700 Subject: [PATCH 041/147] less verbose peer stats --- p2p/dial.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p2p/dial.go b/p2p/dial.go index 83ced3cb3280..1fa255058a9b 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -40,8 +40,8 @@ const ( dialHistoryExpiration = inboundThrottleTime + 5*time.Second // Config for the "Looking for peers" message. - dialStatsLogInterval = 10 * time.Second // printed at most this often - dialStatsPeerLimit = 3 // but not if more than this many dialed peers + dialStatsLogInterval = 120 * time.Second // printed at most this often + dialStatsPeerLimit = 2 // but not if more than this many dialed peers // Endpoint resolution is throttled with bounded backoff. initialResolveDelay = 60 * time.Second From c65a8675e8816680b6f212b1e6587a3eb9857463 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Wed, 3 Feb 2021 18:20:15 +0700 Subject: [PATCH 042/147] evm: add precompiled state contracts --- core/vm/contracts.go | 4 ++++ core/vm/evm.go | 16 ++++++++++++++-- core/vm/interpreter.go | 2 ++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index 9210f5486c57..17777a763ed1 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -42,6 +42,10 @@ type PrecompiledContract interface { Run(input []byte) ([]byte, error) // Run runs the precompiled contract } +type PrecompiledStateContract interface { + Run(stateDB StateDB, blockCtx BlockContext, txCtx TxContext, caller common.Address, input []byte, suppliedGas uint64) ([]byte, uint64, error) // Run runs the precompiled contract +} + // PrecompiledContractsHomestead contains the default set of pre-compiled Ethereum // contracts used in the Frontier and Homestead releases. var PrecompiledContractsHomestead = map[common.Address]PrecompiledContract{ diff --git a/core/vm/evm.go b/core/vm/evm.go index 8964766736fb..cc75df5578f5 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -21,10 +21,11 @@ import ( "sync/atomic" "time" + "github.com/holiman/uint256" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/params" - "github.com/holiman/uint256" ) // emptyCodeHash is used by create to ensure deployment is disallowed to already @@ -57,6 +58,14 @@ func (evm *EVM) precompile(addr common.Address) (PrecompiledContract, bool) { return p, ok } +func (evm *EVM) statePrecompile(addr common.Address) (PrecompiledStateContract, bool) { + if evm.Config.StatePrecompiles == nil { + return nil, false + } + p, ok := evm.Config.StatePrecompiles[addr] + return p, ok +} + // BlockContext provides the EVM with auxiliary information. Once provided // it shouldn't be modified. type BlockContext struct { @@ -178,9 +187,10 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas } snapshot := evm.StateDB.Snapshot() p, isPrecompile := evm.precompile(addr) + sp, isStatePrecompile := evm.statePrecompile(addr) if !evm.StateDB.Exist(addr) { - if !isPrecompile && evm.chainRules.IsEIP158 && value.Sign() == 0 { + if !isPrecompile && !isStatePrecompile && evm.chainRules.IsEIP158 && value.Sign() == 0 { // Calling a non existing account, don't do anything, but ping the tracer if evm.Config.Debug && evm.depth == 0 { evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value) @@ -202,6 +212,8 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas if isPrecompile { ret, gas, err = RunPrecompiledContract(p, input, gas) + } else if isStatePrecompile { + ret, gas, err = sp.Run(evm.StateDB, evm.Context, evm.TxContext, caller.Address(), input, gas) } else { // Initialise a new contract and set the code that is to be used by the EVM. // The contract is a scoped environment for this execution context only. diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go index 9fb83799c98c..75d904d1e6a3 100644 --- a/core/vm/interpreter.go +++ b/core/vm/interpreter.go @@ -36,6 +36,8 @@ type Config struct { JumpTable [256]*operation // EVM instruction table, automatically populated if unset ExtraEips []int // Additional EIPS that are to be enabled + + StatePrecompiles map[common.Address]PrecompiledStateContract } // ScopeContext contains the things that are per-call, such as stack and memory, From 81019f7459e2daf3a3710bd322f53536f441e65b Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 30 Mar 2021 02:36:57 +1000 Subject: [PATCH 043/147] web3.js: abft --- internal/jsre/deps/web3.js | 91 +++++++++++++++++++++++++++++++++++++- 1 file changed, 89 insertions(+), 2 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index b70920f8a144..475c5481b21a 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2543,6 +2543,7 @@ var Iban = require('./web3/iban'); var Ftm = require('./web3/methods/ftm'); var Debug = require('./web3/methods/debug'); var Sfc = require('./web3/methods/sfc'); +var Abft = require('./web3/methods/abft'); var DB = require('./web3/methods/db'); var Shh = require('./web3/methods/shh'); var Net = require('./web3/methods/net'); @@ -2567,6 +2568,7 @@ function Web3 (provider) { this.ftm = new Ftm(this); this.debug = new Debug(this); this.sfc = new Sfc(this); + this.abft = new Abft(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -2663,7 +2665,7 @@ Web3.prototype.createBatch = function () { module.exports = Web3; -},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/sfc":381,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ +},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/sfc":381,"./web3/methods/abft":382,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ /* This file is part of web3.js. @@ -6156,7 +6158,92 @@ var properties = function () { module.exports = Sfc; -},{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],39:[function(require,module,exports){ +},{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],382:[function(require,module,exports){ + /* + This file is part of web3.js. + + web3.js is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + web3.js is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with web3.js. If not, see . + */ + /** + * @file abft.js + * @author alex + * @date 2021 + */ + + "use strict"; + + var formatters = require('../formatters'); + var utils = require('../../utils/utils'); + var Method = require('../method'); + + function Abft(web3) { + this._requestManager = web3._requestManager; + + var self = this; + + methods().forEach(function(method) { + method.attachToObject(self); + method.setRequestManager(self._requestManager); + }); + + properties().forEach(function(p) { + p.attachToObject(self); + p.setRequestManager(self._requestManager); + }); + + } + + var methods = function () { + + var getDowntime = new Method({ + name: 'getDowntime', + call: 'abft_getDowntime', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputDecimalProperties + }); + + var getEpochUptime = new Method({ + name: 'getEpochUptime', + call: 'abft_getEpochUptime', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + var getOriginatedEpochFee = new Method({ + name: 'getOriginatedEpochFee', + call: 'abft_getOriginatedEpochFee', + params: 1, + inputFormatter: [utils.toHex], + outputFormatter: formatters.outputBigNumberFormatter + }); + + return [ + getDowntime, + getEpochUptime, + getOriginatedEpochFee, + ]; + }; + + var properties = function () { + return []; + }; + + module.exports = Abft; + + },{"../../utils/utils":20,"../formatters":30,"../method":36}],39:[function(require,module,exports){ /* This file is part of web3.js. From 894c88153f83042687c1b8ee35aff6c2e4d0a473 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 30 Mar 2021 02:53:41 +1000 Subject: [PATCH 044/147] web3.js: rm unused imports --- internal/jsre/deps/web3.js | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 475c5481b21a..cd5aa64038bd 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5990,15 +5990,6 @@ module.exports = Debug; var formatters = require('../formatters'); var utils = require('../../utils/utils'); var Method = require('../method'); -var Property = require('../property'); -var c = require('../../utils/config'); -var Contract = require('../contract'); -var watches = require('./watches'); -var Filter = require('../filter'); -var IsSyncing = require('../syncing'); -var namereg = require('../namereg'); -var Iban = require('../iban'); -var transfer = require('../transfer'); function Sfc(web3) { this._requestManager = web3._requestManager; @@ -6014,10 +6005,6 @@ function Sfc(web3) { p.attachToObject(self); p.setRequestManager(self._requestManager); }); - - - this.iban = Iban; - this.sendIBANTransaction = transfer.bind(null, this); } var methods = function () { @@ -6158,7 +6145,7 @@ var properties = function () { module.exports = Sfc; -},{"../../utils/config":18,"../../utils/utils":20,"../contract":25,"../filter":29,"../formatters":30,"../iban":33,"../method":36,"../namereg":44,"../property":45,"../syncing":48,"../transfer":49,"./watches":43}],382:[function(require,module,exports){ +},{"../../utils/utils":20,"../formatters":30,"../method":36,}],382:[function(require,module,exports){ /* This file is part of web3.js. From 50fa4e3207faacf6ef301350acab70b91483f456 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 30 Mar 2021 11:10:16 +1000 Subject: [PATCH 045/147] web3.js: dag --- internal/jsre/deps/web3.js | 143 ++++++++++++++++++++++++++++++++++++- 1 file changed, 142 insertions(+), 1 deletion(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index cd5aa64038bd..bdb4ddf32ff9 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -2544,6 +2544,7 @@ var Ftm = require('./web3/methods/ftm'); var Debug = require('./web3/methods/debug'); var Sfc = require('./web3/methods/sfc'); var Abft = require('./web3/methods/abft'); +var Dag = require('./web3/methods/dag'); var DB = require('./web3/methods/db'); var Shh = require('./web3/methods/shh'); var Net = require('./web3/methods/net'); @@ -2569,6 +2570,7 @@ function Web3 (provider) { this.debug = new Debug(this); this.sfc = new Sfc(this); this.abft = new Abft(this); + this.dag = new Dag(this); this.db = new DB(this); this.shh = new Shh(this); this.net = new Net(this); @@ -2665,7 +2667,7 @@ Web3.prototype.createBatch = function () { module.exports = Web3; -},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/sfc":381,"./web3/methods/abft":382,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ +},{"./utils/sha3":19,"./utils/utils":20,"./version.json":21,"./web3/batch":24,"./web3/extend":28,"./web3/httpprovider":32,"./web3/iban":33,"./web3/ipcprovider":34,"./web3/methods/db":37,"./web3/methods/ftm":38,"./web3/methods/debug":380,"./web3/methods/sfc":381,"./web3/methods/abft":382,"./web3/methods/dag":383,"./web3/methods/net":39,"./web3/methods/personal":40,"./web3/methods/shh":41,"./web3/methods/swarm":42,"./web3/property":45,"./web3/requestmanager":46,"./web3/settings":47,"bignumber.js":"bignumber.js"}],23:[function(require,module,exports){ /* This file is part of web3.js. @@ -3903,6 +3905,58 @@ var outputEpochStatsFormatter = function(data) { return data; }; +/** + * @method outputDagEventFormatter + * @param {Object} DAG event data + * @returns {Object} + */ +var outputDagEventFormatter = function(data) { + //"id": hexutil.Bytes(header.ID().Bytes()), + //"prevEpochHash": header.PrevEpochHash(), + //"parents": eventIDsToHex(header.Parents()), + //"extraData": hexutil.Bytes(header.Extra()), + //"transactionsRoot": hexutil.Bytes(header.TxHash().Bytes()), + + // transform to number + data.epoch = utils.toDecimal(data.epoch); + data.seq = utils.toDecimal(data.seq); + data.frame = utils.toDecimal(data.frame); + data.creator = utils.toDecimal(data.creator); + data.lamport = utils.toDecimal(data.lamport); + data.creationTime = utils.toDecimal(data.creationTime); + data.medianTime = utils.toDecimal(data.medianTime); + data.gasPowerLeft.shortTerm = utils.toDecimal(data.gasPowerLeft.shortTerm); + data.gasPowerLeft.longTerm = utils.toDecimal(data.gasPowerLeft.longTerm); + data.gasPowerUsed = utils.toDecimal(data.gasPowerUsed); + if (data.hasOwnProperty('size')) { + data.size = utils.toDecimal(data.size); + } + if (data.hasOwnProperty('transactions') && utils.isArray(data.transactions)) { + data.transactions.forEach(function(item, i) { + if (!utils.isString(item)) { + data.transactions[i] = outputTransactionFormatter(item) + } + }) + } + + return data; +}; + +/** + * @method outputHeadsFormatter + * @param {Object} stakers data + * @returns {Object} + */ +var outputHeadsFormatter = function(data) { + if (utils.isArray(data)) { + data.forEach(function(item, i) { + data[i] = item // TODO: format + }) + }; + + return data; +}; + /** * @method outputStakerFormatter * @param {Object} staker data @@ -4228,6 +4282,8 @@ module.exports = { outputPostFormatter: outputPostFormatter, outputSyncingFormatter: outputSyncingFormatter, outputEpochStatsFormatter: outputEpochStatsFormatter, + outputDagEventFormatter: outputDagEventFormatter, + outputHeadsFormatter: outputHeadsFormatter, outputBlocksTTFFormatter: outputBlocksTTFFormatter, outputValidatorTimeDriftsFormatter: outputValidatorTimeDriftsFormatter, outputDecimalProperties: outputDecimalProperties, @@ -6230,6 +6286,91 @@ module.exports = Sfc; module.exports = Abft; +},{"../../utils/utils":20,"../formatters":30,"../method":36}],383:[function(require,module,exports){ + /* + This file is part of web3.js. + + web3.js is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + web3.js is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with web3.js. If not, see . + */ + /** + * @file dag.js + * @author alex + * @date 2021 + */ + + "use strict"; + + var formatters = require('../formatters'); + var utils = require('../../utils/utils'); + var Method = require('../method'); + + function Dag(web3) { + this._requestManager = web3._requestManager; + + var self = this; + + methods().forEach(function(method) { + method.attachToObject(self); + method.setRequestManager(self._requestManager); + }); + + properties().forEach(function(p) { + p.attachToObject(self); + p.setRequestManager(self._requestManager); + }); + + } + + var methods = function () { + + var getEvent = new Method({ + name: 'getEvent', + call: 'dag_getEvent', + params: 1, + inputFormatter: [null], + outputFormatter: formatters.outputDagEventFormatter + }); + + var getEventPayload = new Method({ + name: 'getEventPayload', + call: 'dag_getEventPayload', + params: 2, + inputFormatter: [null, function (val) { return !!val; }], + outputFormatter: formatters.outputDagEventFormatter + }); + + var getHeads = new Method({ + name: 'getHeads', + call: 'dag_getHeads', + params: 1, + inputFormatter: [formatters.inputBlockNumberFormatter], + outputFormatter: formatters.outputHeadsFormatter + }); + + return [ + getEvent, + getEventPayload, + getHeads, + ]; + }; + + var properties = function () { + return []; + }; + + module.exports = Dag; + },{"../../utils/utils":20,"../formatters":30,"../method":36}],39:[function(require,module,exports){ /* This file is part of web3.js. From ea8962f62b3a69dab670dc0b27ade007b7b60893 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 30 Mar 2021 11:25:18 +1000 Subject: [PATCH 046/147] web3.js: go generate --- internal/jsre/deps/bindata.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jsre/deps/bindata.go b/internal/jsre/deps/bindata.go index 37fca42abe8f..50aeb5600d5c 100644 --- a/internal/jsre/deps/bindata.go +++ b/internal/jsre/deps/bindata.go @@ -98,7 +98,7 @@ func bignumberJs() (*asset, error) { return a, nil } -var _web3Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x7b\xdb\x36\xd2\x38\x0e\xbf\xf7\xa7\x80\xf5\xdc\x4f\x24\xc5\x8a\xe4\x43\x9a\xb6\x74\xdd\xac\xe3\x24\x8d\x77\x9b\x38\x57\x62\x6f\x77\x6f\xaf\xef\x5c\xb4\x08\x49\x6c\x28\x52\x3f\x92\xf2\x61\x63\x7d\xf7\xff\x85\xc1\x69\x70\x20\x45\xd9\x4e\xdb\xed\xda\x2f\x12\x11\x18\x0c\x80\xc1\x60\x30\x00\x06\x33\x39\xfd\x7f\xf3\x38\xa7\x7b\x9d\xd1\x3c\x1d\x96\x71\x96\x12\xda\x29\x7b\x69\x2f\xef\x7e\x51\x29\x45\x27\xeb\xcd\xbb\x5f\xe2\x51\x67\x3d\x3d\xcd\xce\xf8\xaf\x12\x7e\x5d\x84\x39\x09\xf7\xca\xeb\x19\xcd\x46\x44\xe2\xda\x6b\xc9\xa2\xad\x47\x8f\x44\xe2\x2e\x2b\x33\x7f\xf4\x28\xec\xe6\xb4\x9c\xe7\x29\x09\x3b\x59\x6f\x7d\xb3\xcb\xd2\x63\x99\x16\x8b\x34\x86\x75\xb4\x97\xd2\x4b\xf2\x2a\xcf\xb3\xbc\xd3\x3a\x08\xd3\x34\x2b\xc9\x28\x4e\x23\x32\xcd\xa2\x79\x42\x49\xbb\xb5\x91\x6d\xb4\xda\xad\xee\x6e\x39\xc9\xb3\x4b\x32\xea\x0f\xb3\x88\xee\xb5\xde\x1e\xbd\x3c\xf9\xf9\xd5\xa7\x77\x47\xc7\x9f\x5e\x1f\x9d\xbc\x7b\xd9\xea\x8d\x16\x0c\x5f\xb2\xc7\xda\xbe\xf7\x85\x5e\xcd\xb2\xbc\x2c\x82\x2f\x8b\xc5\x2e\xeb\xc3\xe9\xe6\x59\x7f\x18\x26\x49\x27\xe9\x8b\xac\x9e\x6c\x7d\x87\xf2\x0e\xa6\x7b\x00\xb8\x75\x76\x4a\xcf\x76\x45\x53\x8b\x4e\xfa\x3c\x0d\x68\x77\xd1\x4b\x7a\xba\x24\xed\x71\xda\x2d\x04\x14\xab\x52\x66\x42\x2b\xe2\x46\xb4\x1a\x65\x79\x87\x41\x67\x7b\x9b\xbb\xd9\x0f\x79\x3f\xa1\xe9\xb8\x9c\xec\x66\x1b\x1b\xdd\xa2\x93\x33\xc2\xab\x66\x2c\xba\x9d\x2f\x5b\xc1\xa9\x6a\xb2\x40\xd1\xe3\x54\xea\x89\xba\xbb\x5f\xd6\x78\x82\x6c\xcc\xde\xe9\x1a\x21\x5f\xd6\x08\x21\xa4\x35\xcc\xd2\xa2\x0c\xd3\xb2\x15\x90\x32\x9f\xd3\x1e\x4f\x8d\xd3\xd9\xbc\x2c\x5a\x01\x39\x85\x6f\x09\x0d\x79\x69\x38\xa5\xad\x80\xb4\x3e\x65\x97\x29\xcd\x5b\x3d\x9d\xc3\x7a\xc7\x72\xc2\x28\xca\x69\x51\xb4\x44\xce\x02\xfe\x3f\x13\xa8\x65\x71\xf8\x5f\xa4\x65\xf3\x72\x79\x7d\xd9\x27\x54\xc4\xa8\xef\xfc\xba\xa4\xc5\xce\xb6\xbf\x3e\x09\xa4\x28\xbd\x46\xc8\xa2\x77\x2f\x04\xb8\x55\x7b\x54\x77\x10\xf5\x9a\x11\x60\x65\x52\xff\x51\xbb\x3e\xcc\xd2\x92\xa6\xe5\x9d\x3b\xff\x1f\x39\xee\x6c\xc4\xfe\x30\xc3\x3e\x0a\x93\xe2\xb7\xeb\x7a\x4e\x0b\x9a\x5f\xf8\x66\xfd\x1f\x7d\xd0\x8a\xf9\xf9\x07\x3a\x8e\x8b\x32\x0f\xff\x0b\x06\xaf\x57\x87\x83\x5e\x1e\xdd\x49\xee\x97\x79\x98\x16\x23\xaf\xe8\xfb\x4f\xa1\x41\x6e\xb1\xc2\xea\x44\x28\x68\xf9\xb1\x9e\xa5\xee\x8d\x16\x76\xd5\xbf\x49\xa5\x5f\x79\x00\xc2\x26\x84\xaf\x43\x30\xcb\xe3\x69\x98\x5f\x7b\xdb\x91\x65\xc9\xd2\xc1\xdb\x17\x75\xfd\xe7\x92\xd0\x5c\x83\x6b\xd1\x54\x11\xe1\xa0\x72\x19\xff\x23\x11\xc1\xdb\xfa\x28\x2e\xb2\xcb\xf4\x0e\x2d\x0f\xd3\x2c\xbd\x9e\x66\xf3\x62\x85\xa6\xc7\x69\x44\xaf\x68\x64\xac\x5d\xf7\x36\xb0\x1a\x39\x6a\x8e\x89\xfd\x32\x4e\xef\x22\xb8\xf7\xe7\x40\x89\x57\x69\x44\xa3\x96\x45\x26\x7a\xc1\x18\xe1\x4f\x40\xa3\xf3\x38\x8a\x9a\xd1\xe8\x76\xf8\x2f\xc2\x64\xee\x6d\xfe\x3c\x4e\xcb\xed\x6f\x9e\xd5\x0f\xc1\x3b\x7a\xf9\x22\xfe\x1d\x89\x7f\xa7\x39\x77\x30\x09\xd3\xf1\xef\xc9\x3a\xf7\xc2\x39\x15\xb8\x91\x56\x5f\xcb\x35\x5e\xca\xbc\xe7\xab\xd1\x52\x02\xad\x9d\xad\xad\x2d\x7a\x5f\x16\x67\xbd\xed\xdf\x6d\xd3\xff\x27\xda\xf3\xfe\x4e\xba\xe3\x68\x9e\x46\xb7\x66\x95\x3b\x2f\x5c\x0f\xdb\xde\xff\xec\x6d\xef\xc3\xa6\xef\x8f\xbc\xe7\xf0\x76\x5e\xec\x17\xfe\x68\xda\xe6\xd7\x5d\xcc\xf5\x5a\xb5\x73\x6f\x6b\xd5\xaa\xe3\x3e\xca\xb3\xe9\x1d\x87\xbd\xcc\xee\xb8\xd5\xbc\x9b\xc2\xf7\xfb\xce\x9b\x3f\x02\xfd\xe2\x34\x8a\x73\x3a\x2c\x0f\xbd\x6b\xe6\x0a\x2d\xb9\xdb\x40\xc4\xc3\x70\x76\xfc\xbb\x0e\x86\x9f\x92\xcd\x76\xbb\x74\x96\x15\x71\xdd\x46\x7d\x16\x5e\x87\xe7\x09\x35\x95\x82\xdf\x45\x2a\x55\xf1\xdc\xbd\x6c\xbf\xee\xc6\x03\xfb\xb2\xbf\x2f\x4d\x7a\xfe\xf6\x3b\x99\x7b\x21\x52\x05\xee\x66\x7c\xf6\x3b\x90\xff\x0f\x4b\xf5\xfb\xd8\x3f\xde\x5a\x4e\x7e\x6d\xaa\xdb\x42\xef\x81\xec\x0d\xc9\x7e\xe7\x85\xeb\x6b\x8f\xec\xa1\x67\x49\xab\xd3\xe3\x9e\x36\xd1\xe3\xc0\x78\x83\xec\x49\x0b\x87\x4e\xbb\x3f\x18\x65\xf9\x34\x2c\x4b\x9a\x17\xed\xee\x2e\x00\x7c\xcc\x92\x38\x8a\xcb\xeb\xe3\xeb\x19\x35\x61\x59\xfd\x0c\x6a\x6d\xf0\xf8\xf1\x1a\x79\x6c\x40\x8a\x33\x77\x12\x17\x24\x24\xb3\x3c\xcb\x18\x30\x29\x27\x61\x49\x72\x3a\x63\x9b\xac\xb4\x2c\x88\x18\x3b\xc2\x32\x19\x86\xc3\x92\x4c\xc3\x72\x38\xa1\x45\xc0\x3e\x45\x36\xfa\x79\x7a\x86\x3f\x9e\x1a\x5f\x67\x66\xe6\x8e\xf5\x7d\x76\xfa\xec\xec\xf4\xac\x47\xfa\xfd\xfe\x1a\x79\x3c\x70\xfa\x26\x5b\xbc\x47\x94\x35\x4d\xa7\x2b\x86\xb8\x9c\xc4\x45\xff\x13\x4c\x8c\xd7\x92\x40\x0c\xb0\xcf\xc9\x75\xc8\x32\x0e\xd3\x72\x17\x01\xf3\x75\xdb\x07\x7d\x04\x39\xa2\xba\xdd\xb5\xc5\xee\xda\x9a\xa7\x1d\xfd\x59\x9e\x95\x9c\x6a\x7b\x24\xa5\x97\x46\x5b\x3b\x5f\x16\xdd\xdd\xfa\x52\x7d\xd0\x5e\xf2\xf9\xb0\xcc\x58\xe5\x1e\xd8\x65\xf5\xf6\xe3\x42\x8c\xb9\x26\x08\x63\x47\x49\x14\x61\xd7\xb2\xbe\xce\x12\xfb\x30\x6e\x9d\x81\xa0\x76\xe7\x5f\xa7\x9d\xd3\xcd\x27\xdf\x9f\x3d\xee\xfe\xeb\xac\xfb\x7c\xd0\xe5\xfd\x34\x37\x0e\x95\xcd\x5a\xf4\xbe\xb4\x30\x2b\xb6\x82\xef\x7b\x2d\xce\x6f\xad\x60\xeb\xe9\xe2\xac\xf7\xcd\xef\xcc\xde\x2f\xb2\x2c\x59\xc2\xdb\xe7\x0c\xa4\x82\xb1\x59\x9e\xfc\x9f\x73\x29\xfc\x7a\xaa\x7f\x9e\xa1\xe4\x1d\xfc\xb1\x8c\x8d\xa1\x65\xb7\xe5\x61\x56\x78\x15\x26\xe6\xf0\x36\x07\xb3\xd4\x15\xd9\xd7\x2c\x52\xc3\xbb\xbc\xc6\xba\xb2\xb7\xe1\xda\xff\x63\xa4\x35\x79\xf6\xf1\xff\x34\x62\x5a\xd1\x9e\xe5\x1c\xfb\xec\xf7\xe6\x58\xb6\x86\x29\x96\x2d\xfd\x3c\x5b\x4e\x28\x81\xc5\x0e\x18\xb7\xef\xe3\x5c\x96\xab\x7e\x08\xbe\x84\x9f\x4f\xd1\xef\x33\x9c\xb1\x63\x7c\x99\xfc\x4b\xc4\xd2\xaa\x7e\x7e\x67\xe0\x11\x45\x3d\x5c\x0e\x8d\xbc\x35\x9b\xb3\xd2\x2b\xf1\x39\x2f\xe0\x30\x3a\x4b\x5e\x95\xd3\xcd\x32\x75\xac\xce\x2b\xad\x2d\x7d\x3b\x66\x67\x48\x38\xab\x7f\xd9\xea\x2d\xba\xb7\x63\x7c\xd1\xba\xe5\x9c\xff\x6d\x13\xce\x1f\x3c\x86\x06\x1f\x4f\xe2\x82\x8c\xe2\x84\x32\x4e\x9d\x85\x79\x49\xb2\x11\xb9\xa4\xe7\x3b\xfd\x5f\x8b\xfe\x1a\x80\x88\x2f\x06\x30\xca\x29\x25\x45\x36\x2a\x2f\xc3\x9c\x06\xe4\x3a\x9b\x93\x61\x98\x92\x9c\x46\x71\x51\xe6\xf1\xf9\xbc\xa4\x24\x2e\x49\x98\x46\x83\x2c\x27\xd3\x2c\x8a\x47\xd7\x80\x23\x2e\xc9\x3c\x8d\x68\x0e\x0c\x5f\xd2\x7c\x5a\xb0\x7a\xd8\xc7\x4f\xef\x4e\xc8\xcf\xb4\x28\x68\x4e\x7e\xa2\x29\xcd\xc3\x84\xbc\x9f\x9f\x27\xf1\x90\xfc\x1c\x0f\x69\x5a\x50\x12\x16\x64\xc6\x52\x8a\x09\x8d\xc8\xf9\xb5\xe0\x22\x4a\x5e\xb3\xc6\x7c\x14\x8d\x21\xaf\xb3\x79\x1a\x85\xac\xcf\x3d\x42\xe3\x72\x42\x73\x72\x41\xf3\x82\x8d\xd0\x8e\xac\x4b\x60\xec\x91\x2c\x07\x2c\x9d\xb0\x64\x7d\xc8\x49\x36\x63\x05\xbb\x24\x4c\xaf\x49\x12\x96\xba\xac\x4b\x02\xdd\xd3\x88\xc4\x29\xa0\x9d\x64\x72\x66\xc7\x25\xb9\x8c\x93\x84\x9c\x53\x32\x2f\xe8\x68\x9e\x70\xc5\xf1\x7c\x5e\x92\x5f\x0e\x8f\xdf\x1c\x9d\x1c\x93\xfd\x77\xff\x24\xbf\xec\x7f\xf8\xb0\xff\xee\xf8\x9f\xbb\xe4\x32\x2e\x27\xd9\xbc\x24\x4c\xa3\x04\x5c\xf1\x74\x96\xc4\x34\x22\x97\x61\x9e\x87\x69\x79\x4d\xb2\x11\xa0\x78\xfb\xea\xc3\xc1\x9b\xfd\x77\xc7\xfb\x2f\x0e\x7f\x3e\x3c\xfe\x27\xc9\x72\xf2\xfa\xf0\xf8\xdd\xab\x8f\x1f\xc9\xeb\xa3\x0f\x64\x9f\xbc\xdf\xff\x70\x7c\x78\x70\xf2\xf3\xfe\x07\xf2\xfe\xe4\xc3\xfb\xa3\x8f\xaf\xfa\x84\x7c\xa4\xac\x61\x14\x30\x2c\x27\xf4\x08\xc6\x2c\xa7\x24\xa2\x65\x18\x27\x72\xfc\xff\x99\xcd\x49\x31\xc9\xe6\x49\x44\x26\xe1\x05\x25\x39\x1d\xd2\xf8\x82\x46\x24\x24\xc3\x6c\x76\xdd\x78\x20\x01\x59\x98\x64\xe9\x18\xba\xad\xb8\x8c\x90\xc3\x11\x49\xb3\xb2\x47\x0a\x4a\xc9\x0f\x93\xb2\x9c\x05\x83\xc1\xe5\xe5\x65\x7f\x9c\xce\xfb\x59\x3e\x1e\x24\x1c\x41\x31\xf8\xb1\xbf\xf6\x78\x20\x85\xed\x5f\x80\x6d\x87\x59\x44\xf3\xfe\xaf\x20\x22\xff\x12\xce\xcb\x49\x96\x93\xb7\x61\x4e\x3f\x93\xbf\x65\x25\xbd\x8c\x87\xff\x26\x3f\x4c\xd9\xf7\x5f\x68\x39\x89\xe8\x45\x7f\x98\x4d\x7f\x04\xe0\x28\x2c\x29\xd9\xde\xdc\xfa\x06\x04\xde\xf2\xa5\xa0\x46\x81\x45\x65\x84\x3e\xe6\x5b\x3b\x84\xa6\x80\x80\xd9\x2a\xe8\x83\x3c\x4c\x4b\x13\x30\x4e\x4b\x1f\xdc\x89\x03\x38\xaf\x80\x7c\x79\x9d\x86\xd3\x78\x28\xc5\x38\x2a\x11\xf1\x1c\x90\x51\xbe\x92\x1f\xcb\x3c\x4e\xc7\x66\x99\x02\xd2\x7c\xd0\x1f\x68\x68\xf5\x31\xa7\xa1\xb7\x8f\x27\x2e\xe8\xbc\x0a\xd6\xd3\x6c\xd5\x5e\x00\x8e\x0b\xd1\x41\x43\x32\x17\x08\x45\x0f\x56\x58\x21\xa7\xa5\x85\x38\xca\xef\x2b\x14\xb0\x8c\x70\xe0\x9b\x1b\xb5\x7b\x24\x15\xd0\xfb\x79\x1e\x5e\x73\x70\x2e\xc4\x2d\x55\xe0\x80\xf1\x27\xd2\x00\xc4\x4c\xe2\x12\x22\x22\x65\x46\x68\xca\x78\x78\x10\x51\xf6\x9f\xaa\x85\x09\xe3\x90\x8b\x49\x26\x95\x84\x5e\x6b\x2e\xcc\x1c\x37\xee\x31\x03\x2b\xcc\x95\x19\x92\xc8\x1e\x60\x28\x8c\x26\x82\xec\x9f\xd2\x72\x92\x45\x9e\x66\xf1\xc3\xf5\x2c\x9f\x12\xae\xb9\x64\xc6\x88\xac\x11\x3e\x07\x45\xf1\x4f\x62\x64\x44\x16\xf9\x0b\xb4\x9e\x7c\xe1\xcc\xb3\x50\x6a\xf9\x5f\x38\xe5\x0b\xf2\x05\x23\x5b\x40\x16\xbc\x55\x28\xc8\x17\x78\xd7\xb0\x20\xe2\x33\x66\xb2\x81\x6b\x44\x8c\x0d\xa1\x2d\x6c\x25\x62\xe2\x1e\x08\x62\x10\x03\xad\xd4\xb8\x49\x0e\x8d\x24\x89\x18\x35\x0b\x53\xbd\x43\x54\xeb\x8f\xe2\xa4\xa4\x79\x07\x95\xed\xa2\x33\x08\xc1\x45\xa5\x50\x0a\x24\x13\xc0\x99\x42\xf7\x74\xf3\x6c\x97\xcb\xcf\x78\x44\x3a\xeb\xb8\x12\x8c\x83\x3f\xd0\xe0\x4f\x39\xda\x71\x7a\x11\x26\x71\xa4\x79\x80\x61\x5c\x0f\x48\x9b\x6c\x10\x8c\x7c\x0d\xeb\x1a\x18\xb3\xc9\x81\x15\x9c\x46\x66\x49\x18\xa7\x9c\xbf\xac\x61\xe4\x00\xef\x45\x4e\xf5\x28\x8a\xf4\xa3\xf3\x5f\xe9\xb0\x5c\x58\x08\xe5\x20\xeb\x72\x1c\x6d\x64\xc1\x55\x0f\x1d\x6a\x86\x33\x72\x3d\x5e\xde\x52\xb8\x60\xd0\x50\xb1\xa2\x73\xca\x80\xcf\x7a\xe4\x14\xc0\xcf\xba\xcd\x48\x93\xc4\x05\x68\x40\x7c\xf2\x55\x53\xa7\xc0\x64\x00\x11\xc0\xa9\xe3\x4b\x9f\xe9\x02\x55\x84\x71\xaa\x6d\x44\x9b\xc2\x9d\xfa\x82\x3a\x45\x15\x7f\x17\x92\xc1\xc7\xb4\xc4\x33\xb0\x10\x92\x43\xb0\x2c\x2b\x26\xda\xc6\x4a\x18\x18\xfa\xd3\x70\xd6\xa9\x92\xb1\x70\x2a\xe7\x99\x23\x86\xec\xe4\x98\x3b\xbc\xa5\xa7\x50\xe4\x8c\x8b\x67\xf9\xa5\x66\x11\x6a\x8f\x58\xa7\x8e\x46\xa3\x82\x96\x4e\xa3\x72\x1a\xcd\x87\x14\xb5\x2b\x1c\x0e\x7b\x64\x49\xe3\x80\x3a\x65\x58\xc6\xc3\xf7\x61\x5e\xfe\x0c\x2f\x89\x2c\xcc\x7d\x3b\xbf\xe3\x69\xa7\xc4\x95\x33\xa1\x44\xa3\x8f\x2e\xca\xb7\x61\x39\xe9\x8f\x92\x2c\xcb\x3b\x1d\xa7\xc6\x0d\xb2\xb3\xd5\x25\x03\xb2\xb3\xdd\x25\x8f\xc9\xce\xb6\xe8\x34\x22\x5f\x38\x1c\x92\x0d\xd2\x51\x8b\x8e\x41\xf5\x0a\x12\x92\xe7\x68\xed\x22\x64\x67\x9b\x04\x46\x42\x45\x63\x25\xe9\x7b\x64\x13\x53\x3f\xa7\xc5\x3c\x29\x25\xf7\xf0\x11\x7c\x3b\x4f\xca\xf8\x97\xb8\x9c\xf0\x31\x91\x1c\x68\xb4\xad\xa7\xf8\xa8\x67\x8e\xa0\x44\x2e\x7a\xc8\xf1\x9b\x3b\x3e\x3f\xeb\x5b\xb5\xfa\xe6\x40\xc3\x16\xa0\x39\xa2\xba\xd7\x6a\xed\xea\x89\x43\x93\x91\xe8\xb1\x68\xac\x58\x15\xb2\xfc\x55\x38\x9c\x74\x6c\xc1\x14\x63\xde\x62\x52\xbf\x72\xbc\xf4\x58\x9d\x75\x71\x21\x4e\x10\x68\xca\x86\x7b\xda\xd9\x31\x9b\x2f\xe7\x11\x62\x42\x35\x77\x19\x17\xd3\x64\x24\x40\xec\x31\x82\x06\xb8\x4d\x92\x74\x82\x0f\x7b\xb0\x70\x15\xe6\x54\xdc\xd8\x23\x54\x3c\xc3\x23\x03\xb2\xad\x41\x17\x84\x26\x05\xb5\xba\x37\x18\x90\x28\x4b\xdb\x25\x09\xa3\x88\x88\x52\x65\x66\xa2\xec\x93\xb8\x6c\x17\x24\x4c\x72\x1a\x46\xd7\x64\x98\xcd\xd3\x92\x46\x15\x54\xfa\x4a\xfd\x5c\xe8\x49\x38\x18\x90\xe3\xa3\x97\x47\x01\x19\xc5\xe3\x79\x4e\x09\xdb\xb0\xa5\xb4\x60\x3b\x40\xb6\x4b\xbb\x2e\x4c\x61\xf5\x5b\x30\xc9\x1f\x67\x90\xcd\xc1\xa0\x98\x80\x92\x2a\x15\xd3\x5c\x91\x35\xa7\xa3\x10\x8e\x63\x2e\x27\x59\x42\x79\x0b\xe3\x74\xbc\xbe\x44\x10\xd4\xc8\x00\x5b\xf2\x8b\x4e\xf7\x48\xe6\xcc\x7c\x63\x92\xcb\x31\x59\xaa\xea\x7b\x96\xb8\x8e\x7b\x34\x86\x18\x88\x57\x4c\x2e\x43\xcd\xd6\x05\x2d\x9d\x31\xe5\x6c\xf5\x2e\x9c\x52\x7b\x1d\xd2\x39\x58\xcf\x74\xcb\x7a\x16\x9f\xfa\xf5\x4c\x23\xf6\xe0\x54\x72\x51\x50\x50\x6b\xb5\xf2\xaf\xa6\xdb\x12\xc9\x2c\xa7\x17\x71\x36\x2f\x54\x83\xb6\x77\x19\x49\xe2\x94\xc4\x69\xe9\x94\x58\x46\x7f\xd4\x5e\x5f\x85\xec\x6f\x94\xe5\x04\x1e\x09\xc7\x64\x8f\x6c\xed\x92\x98\xfc\x20\x3b\x20\xdf\x0b\x93\x78\x63\xa3\xaa\x38\xfb\xb3\xda\xbc\xb1\x47\x36\x3a\x92\x06\x31\x79\x42\xb6\xce\x98\x86\x4f\x6e\x6e\xc8\xe6\x6e\x25\x92\x1a\x51\x2e\xf8\x61\x83\xc4\xe4\x71\xd5\xc8\x6d\xd8\xad\x60\xca\x41\x95\xd8\x97\x7f\x0b\x27\xd5\x4c\x59\x74\x3b\x5d\x6b\x08\x07\x03\x32\x8a\xf3\xa2\x24\x34\xa1\x53\x9a\x96\x6c\x7f\xc5\xc9\xd4\x23\xc5\xe7\x78\x46\xe2\x72\x95\x21\x37\xa8\xbf\xe9\xa3\x3e\xa3\x5f\xed\x08\xc0\xd3\xf9\x28\x8a\x59\x25\x61\xa2\x26\xb9\xa0\xa7\x23\x7f\x5c\x7a\xfb\xe5\xa2\x66\x9d\x0a\x01\x71\x1a\x93\x0d\xb2\x75\x26\xe5\x04\xd9\x20\x4e\x33\x3c\x64\x5f\x4a\x60\x4b\xf8\x79\x20\xc5\x52\xe9\xe1\x7d\xce\x15\xb7\x16\x3d\x7f\x68\xa1\xc2\x94\x2d\x93\x52\x77\x9c\xfc\x4b\x38\x93\x54\x09\xa4\xcd\x3a\x81\x44\x1a\xf1\xf4\x52\x89\x32\x18\x90\x61\x98\x0c\xe7\x49\x58\x52\xa9\xf8\xb0\x2d\x9f\x68\x0b\x89\x4b\x3a\xbd\x83\x38\x62\xa2\xe8\xf4\x3f\x48\x28\x75\x6d\xd8\xc5\x4a\xeb\xca\x1d\x07\xe4\xf7\x13\x30\x58\xb8\x7c\x75\xd9\x42\x9c\xd3\x22\xd1\x8e\x25\xa7\x21\xe2\x2c\x52\xdc\x4c\x66\x35\x27\x46\x1c\xb2\xf1\x89\x91\x4c\x57\xb7\x9a\xea\x48\xc4\x7f\x96\x54\x7d\x0e\x82\x2a\xf6\xa8\x7f\x80\xdf\x77\x46\x84\x8a\xe9\x33\x22\x0e\x0d\xba\x4d\x13\xb2\xd4\x1e\x12\x55\x10\xa4\xea\x8c\xa8\x9a\x20\xa2\x04\xec\x30\xa0\x36\x4d\x98\xfa\x13\x22\xdc\x45\xdf\xee\xd8\xa0\xcd\xea\x07\x44\xb2\x14\xe7\x62\x0c\xcf\x99\xb8\xf0\xee\xc2\xad\xed\xfe\x3d\x9f\x28\xf1\x2e\x77\xa0\x67\x72\x7e\xe9\x63\x11\xe3\x5c\x44\x62\xd4\x27\x4c\x75\x47\x0e\xba\x57\x4b\xcf\x19\x30\x45\xb9\x04\x62\x65\xee\xbb\xa7\x4d\x8e\xa3\xd4\x4e\xd4\xa7\x07\x8b\xa6\x55\x0a\xc9\xc1\x80\x14\xf3\x29\xbf\xa1\xf3\xac\x52\x42\x45\x54\xf0\x02\xdd\x69\x7c\xc6\xa4\xa2\xfa\x82\x25\xc9\x27\x7f\x64\xf5\x26\x21\xa4\xb6\xe9\x90\x60\x30\x20\x39\x9d\x66\x17\x70\x8d\x49\x86\xf3\x3c\x67\xfa\xa9\x52\x4e\x33\x48\x16\xcd\x8c\x0b\x68\xb9\xa7\xb5\xc5\x2a\x27\x7e\x92\x98\x8d\x4f\xfe\x8c\x9e\x91\x27\x0e\xfe\xc6\x9c\xf6\xd1\x9a\x87\x15\xd7\x3a\xde\x5d\xab\x94\x71\x1e\x2e\x2b\xad\x2b\x07\xc9\x56\x6c\x05\xc3\x97\x24\xe6\xfd\x05\x6f\x2d\xab\x6b\x28\x6e\x99\xb0\xa9\x05\xb4\xbe\xc3\xed\x55\x6d\x13\x0c\x71\x2d\xda\xe9\xf6\xbc\xd9\x2f\xb2\x2c\xa9\xca\x63\x4a\x48\x45\xd6\x49\x4d\x1e\xbe\xdc\xac\xac\xb6\x2e\x93\x4b\xe1\xaa\xdc\x0f\x34\xac\x6c\xf1\x09\xcf\x5c\x63\x0c\xe1\xda\x6f\x00\xe9\x94\xcd\x86\x34\x9c\x0d\x9e\xf6\x5a\xfc\xee\xb7\x15\x7c\x03\x3f\x59\xdb\x5a\xc1\x33\xf6\x1b\x5f\xc7\xb6\x82\xef\x7a\x3e\x5b\x8f\x38\x2d\x5b\xc1\xd6\x26\xfb\x99\xd3\x30\x69\x05\x5b\xdb\xec\x37\xbf\x95\x6d\x05\x5b\x3b\xec\x6b\xce\xa1\xa0\x82\xb9\x00\x7b\xb6\x38\xeb\x7d\xf7\x5b\xda\x45\x2d\xb9\x86\xbe\x9d\x35\x11\x46\xb2\x8a\x51\x91\x59\xce\xb6\x2d\xc2\xb9\x2b\x9a\x18\xf9\x8b\xd6\x58\x1a\x99\x2d\x69\x82\xeb\x0e\x76\x47\x15\xc6\x46\x8d\x2a\x45\x57\xe2\xde\xe1\x92\x62\x27\x9f\xd3\x06\x26\x4c\x56\xb7\x97\x5b\x32\x7d\xff\x60\xc9\xf4\x60\xc9\xf4\xdf\x62\xc9\xa4\x27\xc2\x7d\x99\x33\xbd\x88\xc7\xef\xe6\xd3\x73\x10\x85\x4a\x3a\x9f\xc7\xe3\x14\x12\xfb\xbf\x2a\x49\x3e\x2f\xe3\xc4\xb4\xaf\xe9\x0f\x20\x8d\xff\x2b\xc1\x86\x5e\x90\x61\x96\x8e\x62\xc7\x18\x48\xee\xcc\xd0\xaa\x00\x7b\x17\x58\x16\x64\xc7\xb9\xac\x2e\x08\xc8\x7b\x02\x0f\x36\xd8\x3e\x8b\xc9\x2d\x6d\x25\x0b\x53\x81\x8d\x0d\x1c\xce\x3c\x66\x34\xe6\x90\x71\x41\x52\x3a\x0e\xcb\xf8\x82\xf6\xa4\x24\x82\x8b\xa3\xf2\x32\x6b\x17\x64\x98\x4d\x67\x52\x5b\x85\x52\x6c\x6c\x55\xc9\x51\x92\x85\x65\x9c\x8e\xc9\x2c\x8b\xd3\xb2\xc7\xaf\x43\x19\xdb\x47\xd9\x65\x6a\xed\xe9\xcc\x63\x12\x77\xfb\x76\xc3\xa9\x7c\xa3\xe8\xbd\x90\x7d\x61\x53\x29\xa5\x34\x82\x5d\xf4\xb9\x1e\xe3\xc8\x6f\x0c\x03\x44\x5b\x28\x3b\x1f\xb3\x5e\x43\x00\x03\x7e\x29\x85\x55\xbd\x7d\x3e\x16\x9d\x61\xff\xf5\xf1\xdb\x4f\x2f\x0e\x7f\x7a\x77\xf2\xf6\xc5\xab\x0f\x9f\x3e\x1c\x9d\xbc\x7b\x79\xf8\xee\xa7\x4f\x6f\x8f\x5e\xbe\x42\x7b\x38\x75\x12\x07\x23\xd9\x9f\x85\xd1\xcf\x74\x54\x76\xf8\x57\x99\x1d\x5f\x66\xc5\x81\xa2\xa2\xa8\xb3\x5f\x66\x42\x5d\xda\x7a\xd6\xed\x91\x67\x4f\xcd\x1b\x1e\xbc\x5a\x42\x77\x3a\xbc\x12\xd3\x00\xc3\x1c\x78\xb9\xf9\xad\xa0\xf9\x0b\xb5\x37\x36\x37\xcd\xab\xd2\xd0\xd5\x3a\x0c\x2a\x7a\x08\x52\x66\x6f\xe8\x95\xec\x77\x31\x3f\x2f\xca\xbc\xb3\x8d\xe8\x97\x58\x57\xfb\xbc\xb8\x3c\xe5\xde\x20\xcf\x76\xba\x64\x80\x49\x64\x93\xfb\x43\x3c\x9e\x94\xa2\x58\x8f\x24\xe4\xf1\x57\xa6\xa7\x58\x81\xef\x95\xac\x95\x3a\xdd\x9d\xa9\x2b\xb7\x67\x26\x59\xd5\xe9\xdc\xef\x36\x02\xd6\xb1\x29\xaf\xac\xdb\xe7\x73\x7e\x83\x2c\x1f\xa0\x65\x92\x8e\x6b\xf2\xd5\x33\xe2\xa3\xcc\xbf\xeb\xd8\x29\xe3\xce\xe6\xa3\x36\xca\xb3\xe9\x49\x39\xfa\xee\x61\xe0\x3c\x03\x27\xde\x19\x55\x09\x32\xf1\x0a\x49\x0e\x1a\xfb\xa6\x61\xba\xba\x20\xb3\x9f\x1c\x55\x8f\x59\x7b\xf3\x6e\x7f\x6d\xb2\x21\xd0\x93\xe7\x84\xb4\xb7\xda\x24\x20\xed\xcd\xf6\xdd\x65\xd4\x32\x4a\xb2\x1d\x2b\x2b\xf5\x77\x06\x57\x10\xa6\x18\x4f\xe7\x49\x19\x73\xa5\xf2\xfc\x9a\x6c\xff\xdf\x94\xa9\xe7\xca\x86\x2e\x64\x98\x4b\x3a\xa6\x79\xcd\x52\xf2\x41\x60\x5d\xb6\x7e\xaf\x3a\x22\xc2\x96\xb9\x62\x44\x04\x99\x2c\xee\x63\x54\x53\x35\xaa\xc5\x35\x9e\xd2\xc2\xca\xda\xee\xf6\x67\xd9\x65\x67\x6b\xfb\xbb\x6e\xd7\x24\xe9\xc1\x84\x0e\x3f\x93\x78\x64\xd0\x14\xa9\x45\x16\x21\x8a\x78\x9c\xd2\xe8\xb0\x78\xa7\xb3\x9d\x83\x68\x85\x63\x42\xaf\x44\x8b\x4d\x62\x48\xa6\x85\x4d\x1f\xd4\x5d\x9a\x9a\x58\xc6\xb6\x2c\x97\x31\x53\xc3\xc3\xa4\xd0\x56\xcb\x76\xed\x4b\xe9\xe5\xa3\x90\x14\x37\x9b\x3d\xb2\xd5\xed\x91\xad\x67\x48\x1f\xd9\xee\x1a\xb9\x5d\xb2\xb7\xb7\xc7\x58\xd6\xcb\x85\x39\x13\x1f\x4f\xc2\x04\x1a\x45\xf8\xd1\x81\xbe\xf0\xe0\xaa\xa6\xcb\x44\xfc\x20\xc1\x56\x02\x0d\xf6\x70\xec\x60\x19\xcd\xb4\x62\x58\x53\xaf\x52\x0e\x61\x5a\xc4\x63\xc2\xf5\x74\x8b\xdf\x54\x13\x0c\xfa\x19\x46\xb1\x0c\x98\x8f\xe3\x1e\x6f\x0d\x3a\xcb\xec\x74\xc9\xcd\x0d\x69\x6d\xb6\xc4\x19\xf1\x60\x40\x86\x8a\x8b\x98\xf2\x2c\x07\x52\xd5\xce\x81\x60\x94\x95\x9a\xed\x6a\xd8\xf2\xf2\xd6\x1a\x64\x31\xb0\x9e\xf3\x47\xcf\xe0\xf2\xf1\x9c\xc6\xe9\xdc\x9e\x02\xed\xd1\x1d\xff\xda\x80\x5b\x22\xdf\x52\x77\x63\x0d\x1a\x74\x0b\xf6\x99\xd7\xf3\xcf\x49\x2d\x03\xf9\x58\x87\xae\xc4\x3b\xa2\x7a\x97\x6b\x4e\xee\x83\x6d\xbe\x0e\xc9\x84\xbc\xaf\x22\x99\x23\xb8\x97\x92\x0c\x28\x86\xf4\x61\x93\x44\xa2\x3a\x97\x44\x8e\x24\xf7\x99\x9b\x5b\x33\x51\xc0\xf4\xa3\xf8\x22\x8e\x68\xf4\xe2\xba\x46\x80\xdf\x86\x9b\x96\xd0\xe6\xe4\xbe\x89\x33\xaf\xa4\xce\xc9\xca\xe4\x39\xb9\x0b\x7d\xdc\x2b\x58\x8e\x5a\x91\xa8\x4a\xdd\xd2\xaf\xa5\x1b\xd3\x45\x2e\x6b\xe6\x58\x54\xd2\x48\x54\xed\x92\xc8\x51\xce\x7c\x14\xf2\x4c\x2f\x58\xac\xee\xa8\xad\x6d\xb5\xc9\x73\xbe\x2e\x0b\xb7\x18\xab\x51\xb3\x72\xdb\x88\x1e\xe5\xd6\x2c\x7c\x09\x1d\x69\xc2\x31\xf5\xa1\x66\x63\xe3\xe8\x1d\x69\x38\xa5\xfc\x75\x0f\xfb\x65\xe9\x5f\x02\x86\xe1\x54\x18\x3c\x94\x77\x76\xa0\x50\x47\x8f\xe0\x93\x72\x56\x48\xbc\xaf\x26\x7b\xa4\xea\x99\xee\xe3\xee\x00\xed\x67\x8a\xf8\xdf\x42\x26\x16\x70\x45\x25\xca\x9f\x6e\x9d\x99\x7a\x70\x7b\xf3\x8a\xe9\xcb\xee\xe0\xf6\x8b\x24\x1e\x52\xa6\x96\x6c\x93\xc7\x80\x6e\x45\x3e\x5f\x32\x32\x78\x0b\x7e\x6f\x03\xb4\x2a\xf9\x2b\xcf\x01\x9c\x45\x46\xed\x0f\x2d\x39\xc0\x09\x27\x6e\xc0\x6c\xca\x3d\x7b\xda\x15\x6b\x78\x99\x09\xf8\x2e\x79\x2c\xb7\x94\xbe\x11\xb0\x10\x71\xd5\xf0\xd9\xd3\x9e\xa8\x7f\xb5\x21\xa8\xd9\x92\xf3\xee\x7b\xf6\xe4\xf7\x4a\xfd\xb0\x18\xc6\x71\x1d\xfd\x3d\x7b\xf9\xdf\x90\xf2\xf2\x48\x07\x8e\x06\x9a\xd1\x7f\xb5\x01\xd0\xbe\x69\xaa\x46\x60\x5f\x7b\xaf\xa9\x18\x82\x4a\xd9\x5e\x41\x72\x85\xd0\xa5\xb6\xcf\x7b\xcd\x0a\xda\x94\x41\xbb\xd6\xe6\x55\x8b\x6c\x10\xb1\xc1\x01\xb2\xf3\xdf\xca\xa6\xe0\xe9\x66\x8f\xe0\xa4\x2a\x87\x01\x5f\xa4\xdd\x07\xda\x68\x06\xd6\x77\xcf\x86\x81\x19\x1b\x38\x29\x0e\x1c\x9e\xe0\x41\x55\x86\x53\x8a\x13\x33\x70\x93\xdc\x76\x64\x59\x12\xd8\x09\x0e\x14\xd3\x40\x02\x3b\x01\x43\x29\xb5\x2c\xb0\x13\x5c\xa8\x13\x07\xec\xc4\x0b\x87\x2b\xd5\x29\x1e\x7c\x2e\xe0\x89\x1f\x12\x77\x56\xa7\x78\xe0\x30\xb5\x51\x92\x0b\xe9\x1b\x1e\x37\xc7\x2d\x67\x0e\x10\x4e\x73\x61\x05\xd7\x07\xde\x79\xb7\x90\x77\xba\xe6\xcd\x50\x2b\xd8\xfa\xae\xd7\x32\x6f\x94\x5a\xc1\x36\x98\x2f\xc0\xc4\x68\x05\x5b\x5b\xbd\x16\xbe\x97\x6a\x05\xe6\xe7\xe2\xac\xb7\xb5\xf9\x3b\xfb\x73\x39\xe4\x86\xf1\x35\x0e\x88\xe2\xb4\xac\xf2\x3f\x24\xae\xae\xe2\xb4\xe4\xae\x59\xd8\x8f\xa7\xea\xd7\x99\x4e\xdc\x41\xbf\x2d\xcf\x2d\x71\x5a\x72\xbf\x2d\x71\x5a\x3e\x7b\xaa\xc0\xbe\xd3\x88\xb6\xbf\x79\x56\x81\x8b\xc1\x2f\xf1\x63\x64\x6f\x0d\xbf\xa2\x2b\x2e\x00\xb7\x6d\x10\x0e\xd3\x72\x45\xb3\x0b\xa3\x44\x8d\xb5\x05\x54\x57\x53\xf2\x56\xb6\x15\x71\x5a\x4a\x55\xf1\xf9\xad\xfc\xb9\xf0\x56\x2d\xb7\x81\xd8\x6a\x14\xc2\xee\xc1\x08\xe2\xc1\x08\xe2\xcf\x60\x04\xc1\x35\xa5\x7b\xb2\x7f\x68\x60\xd6\x60\x4b\x7a\x6e\xb6\x90\x81\x31\xba\xf6\xda\xd1\xf7\x28\xa8\x97\x13\x9a\xaa\xb7\x8a\x3d\x6e\xf7\xcd\xf4\x6f\xe5\xbc\x41\x2a\x96\x03\xaf\x5d\x84\x75\xf4\x6d\x3f\x4d\x04\x41\x2a\xd5\x47\xfe\xff\xcd\x0d\x69\xb7\x91\x98\xcd\xe4\xab\x05\xfe\x63\x17\x3d\x33\x8c\x53\x51\x7b\x63\x6f\x1f\x63\x5a\x62\x73\x5f\x30\x1e\x6f\x17\xf2\x11\x28\x88\x12\xdb\xd0\x5d\x6b\xf7\xdc\xce\xd5\xd4\xa1\xe5\x21\x93\x46\x8a\x71\x91\x8e\x6c\x62\xd7\xb0\x65\x07\xea\x60\x5b\x76\xbb\x92\x5a\x2b\x34\x30\xf0\x37\x36\x1d\xf8\xe6\xb1\x31\x2d\x86\x39\x65\xbc\x24\x67\x83\xe9\x91\x85\x33\x7b\x14\x8f\x46\x14\x6c\x91\x39\xc5\x2d\xda\x5c\xaa\x27\x21\x78\x33\x22\x49\x22\x06\x49\x9a\x2d\xa7\xde\x2d\x88\xb9\x71\x61\x8b\xa1\xaf\x1d\xe1\x8c\xcb\x17\xd5\x8a\x6a\x52\x5e\xfa\x9f\xcb\x9a\x6c\x57\x79\xa1\xa7\xf9\x51\x71\xea\x2a\x14\xcd\xa6\xe7\x71\xea\x3a\xb7\x29\xb3\x31\x65\xb2\x9d\x61\xa0\xe3\x3e\x9f\x53\xe1\x6c\x46\x53\x98\x4a\x61\xca\x9f\x3f\x58\xd4\x15\xd8\x96\x5d\xc1\x08\xb1\x34\x89\x87\x4c\x38\xc9\x56\x2d\x2f\x2c\xee\x4e\xb3\x91\x80\x85\x55\xa8\x96\xb4\xb2\x7b\xcb\x4e\xfd\xea\xc8\xaa\x4e\x2d\xf8\x85\x49\x03\xe2\x0e\xc3\x24\x11\xe4\x95\x17\x38\xbc\x43\x93\x50\x4f\xdc\x22\xfe\xb7\x70\x2b\x08\x17\x75\x93\xb0\xe8\xb1\xff\x25\x9f\x81\xe3\x5f\xcf\x8d\x1d\x26\xb7\xb2\x02\xf5\x1f\x98\xd6\x52\xc6\xef\x97\xc9\x37\x6f\xc5\xa4\x58\xdf\xdb\x03\xd5\x62\x14\xa7\xd6\x2b\xa5\x65\x44\xd0\xfe\x8a\x04\x2a\x71\xb7\x6c\x9f\x18\xf0\xdc\xfd\xe2\x45\xf5\xbe\x9f\x1f\xf7\xba\xc7\x33\x0d\x66\x99\x81\xbd\xae\xd3\xeb\xd0\x6b\xfd\xf8\xbf\x4b\x9e\x93\x76\x9b\x04\xcd\x4c\xb1\x10\xc9\xbc\x06\x59\x2b\xd0\x8d\x49\x7e\x7e\x32\xa1\x14\x46\xdf\x43\x2f\x7d\x78\xe1\xa7\x99\x5c\x79\xe4\x7d\x70\x88\xe5\x7d\x38\xc5\x4c\x06\x1c\x5e\x4b\x45\x5d\x99\x97\x84\xe0\x51\xc9\xa6\x9f\xcf\x33\x93\x9a\x5d\x9e\xeb\x3e\x44\x42\x31\x5c\x9d\xd5\x09\x67\xac\x69\x15\x94\x43\x2b\x92\x9f\x74\x32\x21\x94\x97\xef\x0d\x68\x48\xa7\xb3\xf2\x1a\x9f\x06\x36\x58\x41\x97\xce\x41\x93\x1b\x91\x6c\x0a\x40\xf3\x58\x81\x36\xd2\xd3\x54\xa5\x8f\x29\x2f\x25\x6a\x3b\x22\x50\x2e\xeb\x83\x71\xa7\xb2\xe1\xd1\x09\x6e\xd3\x0f\xfd\x08\xaf\xda\x2f\xd4\xcf\x71\x51\x3a\x2f\xfe\x4e\x8d\xde\x9c\x79\x9c\x41\xd5\xf6\x5e\x63\x76\xd7\x16\x78\x0f\x24\x6f\xe7\xe7\xb3\x88\x5b\xb3\x8a\xb7\x6f\xea\x04\xb2\xcc\x4a\xf4\xbe\x95\x17\x94\x5a\x11\xf7\x35\x44\x8c\xf7\x7c\xea\xd9\xa0\x00\x35\x9f\x12\x19\x8b\x9a\x9a\x89\x7c\xdd\xaa\x98\x8a\xf6\xa5\x97\xed\x20\xc4\xac\x9e\xec\xe1\x16\x6b\x58\xdc\x8d\x8d\x3d\xf7\x7c\x5f\xbc\xd0\x72\x5f\x65\x71\x48\xad\xfb\x74\x32\xfc\xd2\x56\xbd\x94\x1b\x0c\xe4\x50\xd3\x0b\x9a\x5f\x97\x13\xf0\x3f\x82\xf0\x60\xea\xb8\xce\xa6\xa4\x15\x9a\x43\x1f\xe3\x75\xae\xff\x62\x42\xf9\x5b\xba\xd7\x2a\xdc\xb3\xe6\x45\x8f\xb4\xdb\xf2\xcc\xbd\xe6\x6c\xe2\x3d\x1f\x25\xeb\x28\x4f\x9d\xda\x2d\xce\x7a\x5b\x8d\xe2\xeb\x7d\xc5\xa3\x38\xb8\x84\xae\x3f\x8b\xcb\x19\x48\xc5\x61\x9c\x34\x2d\x63\xff\xf3\x13\x32\xf8\xf5\x54\xff\x3c\x43\xc9\x3b\xf8\xc3\x3a\x92\x63\x69\xfc\x4c\x8e\xfd\x92\x87\x72\xec\xf7\x77\x08\x1d\x3a\x96\x73\x30\x36\x38\x98\x73\xae\xdc\x57\x39\x99\x63\x85\x57\x39\x9a\xe3\xf0\xf6\xd9\x1c\x4b\x5d\xf1\x70\xce\x2c\x52\x73\x3a\xc7\x6b\xac\x2b\x7b\x9b\xf3\x39\x46\xdb\x8a\xf3\xb9\x66\xce\xf1\x45\xb3\x1a\x9c\xcf\x35\x8a\xe0\xf5\xb5\x1e\xd4\x79\x2e\xfd\x56\x61\x0f\x5e\x7c\x15\x06\x91\x25\x6c\x16\xe1\xe9\x2b\x32\x89\x5d\xa8\x86\x4d\x64\xbd\xf5\xe5\x6f\x75\x94\xcb\xb5\xa8\x26\xef\xe4\x3c\xf5\xdd\xef\x0b\x39\xd5\xcb\x06\x7c\x77\xff\x11\x47\x6a\xdf\xec\x78\xe4\x30\x72\x6b\x1b\x17\xcd\xfd\xd9\x0e\x69\x5e\x86\x71\xea\xf7\x69\xeb\x10\x92\x5f\x22\x2d\x61\x6a\x0e\xd4\x37\xd3\xeb\xd9\x5a\x14\xb1\x32\x96\x7a\x80\x28\x69\x3e\x65\x7b\xfd\x78\x04\x98\xcd\x76\x47\xc2\x53\x2d\x19\xc7\x17\x34\x95\x96\x2c\xe6\x66\xba\xca\x45\xae\x65\xf6\xc2\x37\xd8\xda\xca\x16\xa8\xcc\x91\x3b\xf5\xfa\x6d\x6e\x31\x44\xf3\x29\xc2\x1d\xd2\xb6\x4a\xaf\x62\x9c\x5d\xd0\x3c\xbf\xcc\xe3\xb2\xa4\x60\xe5\xc5\x5b\xd5\x22\x1b\xd0\xfa\xc6\xb4\xbb\x84\xc3\xf5\x02\x3f\xde\x07\xe3\x07\xbd\x09\x8d\x53\x41\xc2\xd2\xf5\x35\x6c\xbf\xaf\x6f\x44\x4c\xf7\x38\xd2\xaa\x4e\x9f\xd6\x56\xd0\xcd\xe3\x36\xc0\x4f\xc1\xc1\x00\x4e\xc0\xc3\x29\x9b\x15\xe0\xe9\x50\x1c\x63\xb1\xfe\x32\x49\x40\xf9\xd5\x42\x12\x7f\xa6\x24\x24\x45\x9c\x8e\x13\xaa\x7c\x6f\x01\x64\xdf\x30\x83\x06\x0e\xe6\xae\x65\xb8\x2b\x0e\x5e\xdb\xcd\x0d\x39\x6d\x9f\x6e\x9d\xb5\xcf\xba\x4a\x19\x5c\xf2\xf4\x5f\x34\xcf\xa4\x3b\xfb\xc2\xee\x0c\x2b\x54\x77\x6e\xfa\xc4\x49\x01\x26\x0a\x5b\x3d\xf2\x04\x6c\xb0\x37\xa1\x2d\x5b\xd8\xf9\x8c\x6e\x90\xa3\xc8\x4a\xe7\x0c\x3d\xe9\xce\xa1\x6a\xb7\x20\x9d\x38\x3c\x96\x80\xba\x82\xc1\x80\x84\x49\x42\xce\xc3\x22\x1e\x72\x9f\x07\xf0\x40\x60\x67\x5b\x1c\xdd\x24\x19\xdb\x15\xcb\xd6\xf4\xc8\xce\xf6\x32\x5b\x13\x73\x62\x0b\x89\x26\x77\xdf\xf2\x10\x92\xd0\x31\x28\x90\x10\x08\xea\xf4\xac\x45\xf6\x7e\x84\xf9\xa9\xd3\x9e\xf2\xc4\xda\x63\xb4\x7d\x89\x6d\x55\x09\x30\xa1\x95\x2d\xab\x99\xed\xb8\xd6\x4a\x9e\xd5\xae\xbe\x0c\x27\x30\x0e\xd3\xed\x5a\xcb\x28\x2a\xf2\xe8\x11\xc1\xdf\xa7\xe8\x37\x72\xfb\x76\x26\x57\x5d\x15\x0d\x63\x30\xbe\xd5\xd8\x88\xe9\x5b\x37\x34\x72\x14\xcc\xb1\x11\x03\x66\x0e\x0d\xf2\xb2\x76\xc7\x91\xb1\xda\x55\x33\x30\xa8\xce\xaf\x3d\x2e\xf7\x39\x30\xa6\xbb\x13\x2d\x48\xd1\x48\xc0\xde\xa8\x05\x26\x08\xdb\x9c\xe8\x7c\x93\xd4\x12\x36\x0a\x5b\x62\x28\xb6\x9e\x2a\xc0\xed\xb3\xd3\x1d\x01\x2a\xd3\x38\x88\x82\xd8\x3a\xb3\x12\xf4\xb7\xbb\x3a\x00\x55\x6f\xb1\x3c\xe0\xbe\x88\x2e\x2e\x5f\x13\x50\x65\xf7\x34\x90\xf1\x88\x74\x50\x16\x92\x90\xb6\x3c\xbe\xe5\xc0\x82\xc0\xf6\x3d\x82\xd8\xaa\x19\x72\xb1\x48\xc8\x5d\xb5\x6f\x9c\x61\xdc\x7c\x43\xdd\x52\x31\xf7\x9c\x01\x17\x9f\x2d\x63\xdc\x0d\x44\xa7\x26\x72\x3c\xdc\xda\xe3\x5a\xa3\x71\x56\x19\xbc\x2b\x22\xbf\x72\x7c\x0d\xcf\x89\x95\xab\xbd\xf0\x50\x94\x84\x45\x49\x4e\xcf\x98\x32\xc1\xf1\xde\x6a\xd8\xd7\xfd\xe3\xae\xc6\x00\xf4\x2c\xe2\xf8\x55\x82\x0d\x8d\x7e\xfd\x04\x9f\x8a\x07\x9a\x30\x49\x8d\x4d\x2c\xda\xc2\x28\x09\x6c\xdf\x31\x91\xf3\x6b\x12\xd1\x51\x38\x4f\xe0\x10\xb4\x98\x33\x3d\x55\x2d\xcc\x2d\xe1\x9a\xa6\x27\x42\x3b\xda\xa3\x68\x6c\xa3\x6e\x21\x80\xf5\x8a\xb8\xa2\x2a\xdc\x70\xf7\x56\x69\x4b\x2f\xfd\xb3\xcb\xf3\x61\x34\x45\x0a\x7b\x8e\x00\xc7\x0b\x56\x3e\x6d\x31\x8e\xef\x91\x16\x9b\x04\xec\xbf\xb3\xd6\x99\xe6\x76\x01\x81\xd2\xa0\x50\x3a\x4f\xec\xd7\x0e\x68\x34\x1b\x91\xcd\x76\x2a\x67\xb5\x77\xc9\x44\x70\x1d\x53\x39\x33\x81\xaf\x0d\xc2\x41\x1e\x1f\xf5\x02\xae\x76\x59\x77\x8c\xfe\xb2\x7f\x61\xd6\x5b\x4c\x2c\xa4\x55\xe7\x5f\xa7\x7c\x37\xfe\xaf\xb3\xee\x72\x15\x41\x1c\xde\x2a\x0f\x0f\xd5\x77\x0e\x56\xe8\x0a\x09\xdd\x5c\x74\xc8\xf7\xa6\xee\x2d\x96\x45\x33\xcf\x85\x85\xb8\x40\xb7\x17\x06\xaf\x0f\x6a\xf3\x46\x46\xb8\x3f\x95\x8e\x4f\x6d\xb1\xb0\xc4\x03\xac\x32\xfb\xc6\x36\xc4\xbb\xa4\xf2\xcf\xef\x0c\xd5\xf5\x25\x4b\x93\x11\xf6\x21\x2b\x44\x99\x53\x48\xbd\x46\x3e\x3d\xf3\x39\x0e\xef\xcf\xe6\xc5\xa4\xe3\x78\x23\x95\xaf\xb3\xa5\x6b\x51\x17\x33\xeb\x8b\xeb\x67\xfd\xc2\xe7\xf4\x13\xd7\x84\x7c\x77\x76\x2e\x7a\x04\xfb\x94\xb5\x5c\x92\xde\xc9\x91\xaf\x18\x40\xec\xc0\xf7\xce\xe3\x07\x4d\x77\xb4\x0e\x41\xf8\xdf\x7e\xfc\x7c\x5e\x58\x97\x78\x5f\xad\x1c\x08\x36\x9a\xe0\x1e\xb5\x66\x3c\x56\x1e\x8d\x35\xe7\x7e\xd0\x3a\x3b\x32\xa6\x24\xf2\x62\xdb\xc4\x0f\x28\xbf\x1b\x1d\xe5\xd9\xd4\x6b\x68\xc0\xa1\x7c\xb2\xe5\xdc\x7e\xa7\x63\x59\x06\x19\x26\x41\x2b\xbc\x93\x92\x42\x8d\xd7\xdc\x40\x44\x89\x8e\x60\x11\x65\xf8\xd0\x5c\x22\xaa\xbe\x8a\xac\x82\xb5\x09\xdf\x58\x72\x45\x57\xbc\xec\x81\xe6\x49\x45\x47\x90\xeb\x31\xd9\x06\xb3\x87\xae\xf4\xe2\x2c\x88\x57\x35\x89\x6a\x71\xe2\xea\x1d\xc4\xbe\x19\x05\x05\x3e\x96\xfc\x7e\x1d\x97\xde\x20\x3b\xdc\xd1\x3d\x5f\x6d\x0b\x06\x52\x90\x70\x54\xd2\x5c\x4d\x12\xdc\xde\x5b\xcd\x55\x7f\x19\x9f\xbf\x6e\x2d\x39\x2a\xfc\x74\x93\x5a\xea\x89\x70\x31\xef\xaa\xf0\x63\x5f\x1e\x95\xae\xa3\xed\x38\x37\xb5\x82\xa6\xa1\xa4\x21\x8f\xeb\xdb\xc6\x60\x37\xf6\xea\x61\x1a\x09\x2a\xd3\xc9\x2c\x1a\xf6\x0d\x12\xdf\xaf\xd4\xfa\x43\xac\x21\xf8\xaf\x21\xf7\x4b\x43\xd4\x86\x7f\x7f\x28\xe6\x7f\xe0\x7d\xf4\xf7\xbb\xf0\x3e\xf1\xb2\x3e\x0e\xca\x78\x5b\xd6\xb7\x43\x87\xad\xb8\xa8\x38\xcc\x6a\xe3\x6f\xb6\xb2\x98\xad\x58\x05\xbf\x18\x3f\x2f\xbf\x25\x0e\x7f\xf9\xe7\x5f\xf5\x14\x9e\x89\x5b\x3f\xd7\x3a\x75\x59\xf3\x3b\x64\x8b\x6c\x98\xad\xeb\x72\x3f\x4c\x3c\x7a\x98\x67\xe8\xb9\xd7\x61\xeb\xd2\xcd\x78\xa7\x5d\xe3\xc3\xde\xa0\xb5\x65\xed\x65\x48\xb1\xb5\x15\xfb\x86\xc7\x5c\xcd\xac\xed\xae\x79\xac\xea\xbd\x48\xb4\x9a\xbe\xf4\x82\xb7\xfa\x6a\x57\x3d\x85\x5b\x9c\xf5\xb6\x7e\xef\x70\xfb\x27\xcb\x5f\xbb\xcd\x6b\x9e\xbb\x09\x07\x24\xf0\x3f\xb7\x75\x99\xeb\x17\x6f\x73\xf4\xe4\x6d\x8e\xdf\xa9\xcd\x3d\x8f\xde\xe6\xea\xd5\xdb\x1c\x3d\x7b\x9b\xa3\x77\x6f\x73\xf3\xe1\x9b\x83\xb1\x81\x85\x8d\xe3\x16\xe5\x2b\xbe\x7d\x3b\xf1\x3e\x7e\x3b\x59\xfd\xf5\xdb\x49\xd3\xe7\x6f\x27\xee\xfb\xb7\x93\x7b\x78\x00\x37\xbf\xf3\x0b\xb8\x93\xc6\x4f\xe0\x7e\xef\x58\xfe\x27\x0d\x2c\xce\xe6\x75\x26\x67\xd2\xa3\x0a\xff\x21\x98\x13\x59\x9d\xcd\xb1\xd9\xd9\xdc\xb0\x12\x9b\xfb\x0c\xcf\xe6\xda\xf2\x6c\x8e\x4d\xcf\xe6\xd8\xf6\x6c\x6e\x19\x9f\x79\xf0\x36\x99\x1c\xbf\xa9\xfd\xd9\x89\xdf\x00\xed\xe4\x16\x16\x68\x27\x8d\x4d\xd0\x4e\x3c\x36\x68\x76\xe9\xdb\xcd\x91\x1a\x33\xb4\xa6\x93\xa4\xb9\x21\x5a\xa3\xb8\xff\xed\x79\x41\xe1\x60\x76\x58\xb6\x79\x10\xbe\x71\x46\x68\x7a\x41\xa2\x8c\x82\xb5\x02\x3c\x0a\x0c\xd3\x08\xfc\xd6\x92\x7f\xbc\xfd\xf9\x4d\x59\xce\x3e\xd0\xff\x37\xa7\x45\xb9\x06\x8a\xd9\xf5\x8c\x66\x23\x2b\x87\xbb\xaf\x51\x2f\x37\xda\x92\x2e\xa2\xe2\xbe\x0d\x4d\xbe\x2c\x76\xd7\x8c\x00\x91\x95\x90\x66\x02\x68\xea\xbf\x16\x13\xb6\xfa\xc4\xe3\x34\xcb\x69\x90\xc4\x29\x5d\x5b\x70\x8b\x55\x46\x87\x46\x1e\xee\x1f\x1e\xcc\x3e\x3c\x98\xfd\xcf\x7d\x30\x2b\x5e\xcb\x0a\x1b\x36\xe3\xb9\x2c\x5f\x70\xc8\xed\x5e\xcd\x8a\xb5\xef\xa4\x8c\x13\x7d\x9c\x09\x53\x87\xbf\x4b\x72\xa0\xe2\xf2\x5a\x49\x44\x55\x62\x98\x84\x45\x41\x4e\xa1\xc4\x99\x68\x24\xcf\xd0\x22\x98\x63\x5a\x1b\xc0\xad\x11\xcc\x51\x71\xb4\xca\xe4\x07\xa9\x71\x5f\xdd\xdc\xb3\x39\x40\x32\x4c\x27\xef\x0e\x8f\x3f\xb2\x9d\x35\x0c\x41\xfb\x92\xc6\x6d\xce\x98\xed\xcf\xe8\xf7\x5b\xf4\xfb\x27\xf4\xbb\xf8\x77\x78\x9e\xc9\x8f\x51\x9c\xa6\xf4\x5a\x7d\xd1\x69\x99\xc1\x0b\x46\x99\x32\x8b\x87\x66\x42\x1a\xa6\x66\xc2\x34\x1e\xe6\x76\x4a\x92\xc4\x4e\x21\x03\xde\x00\x95\x1f\x46\x91\x71\x1e\xa6\x91\xea\x8a\x91\xf5\x93\xf1\x75\x6c\x7c\xbd\x37\xbe\x5e\x19\x5f\xff\x6b\x7c\xfd\xd3\xf8\x7a\x67\x7c\xbd\x34\xbe\xfe\x6e\x7c\x9d\xf0\xaf\xb5\xb3\x6a\x7f\x35\x6c\x8c\xde\xef\xbf\x64\x43\x1c\x90\x9d\xed\x9e\x4a\xfc\x78\xf8\xd3\xbb\xfd\xe3\x93\x0f\xaf\x3e\xfd\xfc\xea\xdd\x4f\xc7\x6f\x02\xf2\x54\x67\xc2\xa8\x06\xfa\xa7\xce\xa9\xe0\x9c\x80\x7c\x21\x56\x82\xf6\x9c\x0e\x19\x9f\x5e\x1e\xfd\xf2\x8e\x2c\x34\xa6\xf7\x47\x3f\xff\xcc\xa0\x8f\x0f\xdf\xbe\x3a\x3a\x39\x0e\xc8\xd6\xe6\xe6\xe6\x40\xb4\x50\xdc\x77\xbf\x48\xb2\xe1\xe7\x80\xb4\x99\xe0\x2c\xca\xb6\x91\xb7\x3f\x84\xe0\xc5\x81\x7e\xd3\xc8\x9f\x5f\xb0\xd5\x7c\x99\xc3\x93\x87\xe0\x17\x0f\xcb\xd8\x9f\x7c\x19\x5b\x53\x7e\x1f\x8a\x49\xb8\x73\x5f\x6e\x1f\x0e\xf2\xeb\x59\x99\xfd\xf5\x23\x5e\x1b\x86\x90\xf6\x44\x87\xbc\x60\x15\x7a\x01\x06\x2c\xa7\xed\x0d\xe7\xe4\xfa\x6c\x00\x86\x2b\xf0\xbb\x54\x91\x44\x1e\x3d\x92\xb9\x7d\xe9\x24\x82\xeb\xc8\x13\x7a\xd5\xb6\x9f\xd0\x19\xde\xbe\x7e\x24\xdb\xac\xb4\xed\xee\x78\x5b\xba\x88\x34\x8b\x13\x79\x13\xae\x6e\xf7\x2d\x87\xec\xc4\x7a\x6a\xc7\x41\x25\x8d\x58\xe3\xfa\x6f\xe8\x55\x1f\x8e\x2e\x3b\xf2\xf1\x39\x71\x2e\x4f\x19\x55\x64\xb7\x75\xed\x7c\x3b\xc7\xcf\xde\x02\xb2\xfd\xcd\x33\x5e\x12\xbd\x49\x96\x0f\xce\x98\xc4\x53\x34\x6e\x05\xdf\x7c\xdf\x6b\x99\x24\x6f\x05\xdf\x6d\x2e\xce\x7a\xdb\x8d\xfc\x3c\x3d\x88\xbd\x07\xb1\xf7\x67\x10\x7b\xfc\x79\xff\x3d\xc8\xbd\xaf\xa1\xb8\xcb\x82\x3e\xbd\x7d\xa5\xf0\x42\xb6\xac\xed\x0f\x84\xb8\xd7\xf1\x87\x46\xdf\x61\x00\xf6\xad\x34\xf8\x79\x1a\x97\x6f\xc3\x99\xd2\x16\xdb\x52\xa1\x0e\xb8\x0c\x6a\x6f\x4a\x55\x93\x29\xed\x81\x16\x8b\xed\x2d\x43\xcd\x0f\x50\xc6\xe6\xa6\x2a\xf4\xb7\x9a\xbc\xf3\xf0\xfc\x3c\x1c\x53\x55\x13\xce\x43\xba\x7f\x60\xe7\x4d\x3d\x38\x51\xf6\xdb\xfa\xec\x24\xbb\xa0\x49\x38\x94\xd5\xda\xd9\x7a\x8b\x11\xf8\xb2\xc7\x7e\xe4\x08\xe2\xa7\xa5\x10\xc5\x24\x4c\xd3\x2c\x35\xfa\x6d\x42\xe8\x6d\x4d\x50\x03\xb1\xa4\x16\xd8\x58\x05\x1e\x08\x4c\x4a\xbd\x5d\x0a\xea\x81\x96\x61\x12\x5b\xb7\xc0\x0b\x64\x20\x53\xdb\x31\xb7\x46\x1b\xae\xaa\x52\x04\x67\x30\xab\x07\x0e\x81\x7e\x36\x61\x7d\xa0\x78\xa4\x61\xcb\x57\x8b\x18\x37\xb7\x11\x6e\x8c\xbe\x69\x01\x54\xa6\x5c\xa1\x0c\x2f\x26\xa7\xf4\xa8\x9c\xba\x13\x1a\xe6\x98\xcc\x31\x66\x18\x9b\x04\xaa\x88\x3d\x05\x18\xeb\x39\x99\x36\xbb\x18\x68\x3d\x20\x49\x12\xfb\x41\x30\x4b\xe9\x46\x2f\x19\x58\x0c\xb9\x6c\xa0\x1a\xc0\xe2\x61\x6a\x06\x8e\x07\xa9\x71\x09\x56\xc8\x6f\x0a\xa7\x5d\x64\x5c\x84\x49\x1c\x85\x65\x96\x93\x88\x16\xc3\x3c\x16\xfa\x6f\x99\x91\x09\xbd\x7a\xc2\x4d\x80\xe1\xe1\x20\xf9\xeb\xc7\xa3\x77\x96\x8d\x5c\x99\xbd\xcd\xd2\xf8\x33\xf7\x00\xe5\x35\x75\x8b\x0b\x54\x03\x4f\x49\x61\xbd\xf0\x95\x40\x2d\x30\x0b\x1a\x19\xd5\xe5\x2f\xe9\xf9\xc7\xb8\xb4\x2a\xbd\xa4\xe7\xa4\x60\xa9\x27\x1f\x7e\x5e\x5b\xe2\x18\x9b\xeb\x06\xac\xa3\x24\x0a\xcb\x50\x5d\xa8\xa8\x7e\x3a\x17\x08\x3d\xdc\xb6\x9e\x6c\x01\xd7\xf0\x59\xc9\x5f\x8b\x97\x61\x19\xaa\xc5\xef\x5d\x38\xa5\x01\xd0\x81\x0f\xe6\x4b\x5d\x38\x30\x30\x41\xee\x2f\x1c\x5b\x20\xd1\xae\x11\xb2\x00\xe3\x12\x79\xa5\x0d\x11\xb8\x78\x15\xdd\x65\x03\x3d\x0b\x23\xd9\xcb\x32\x23\xf4\x6a\x46\x87\x4c\x8d\x54\xaf\x64\xf0\xb8\x0a\xf7\x45\x3e\x1a\x6b\x14\xe7\x94\xc1\x45\x22\x18\x9e\x65\x0a\x39\x9c\x84\x79\x38\x2c\x69\x5e\xc8\x9b\x36\x30\x8f\x11\xa5\x91\x46\xe7\xad\x23\x1e\xa7\x3d\xf4\x24\x81\x6c\xfa\x07\x0e\xfc\x41\x13\xe9\x0f\xda\xf2\xad\x2d\xfa\x60\x8c\x18\x07\xe9\x41\xeb\x8a\x1e\xd4\xe3\xf1\xf1\xc5\x0d\xb5\x00\x06\xe2\x41\xc3\xa3\x71\x65\xa8\xb1\xd5\xed\xff\x9a\xc5\x29\x84\x4a\x21\xcf\x01\x07\x09\x48\x6b\xb3\xd5\x25\x1b\x02\xb8\xc2\xfe\xf4\xd6\x63\x01\xb1\xb2\xfe\xd3\x07\x03\x3a\xb1\xe2\x68\x88\x16\x6e\x70\x7f\xe7\xb7\x1d\x97\x2a\x7b\x60\xd3\x17\x14\x28\xb1\x60\x0d\x0c\x71\x74\x5c\x0f\xef\x8e\xec\x3b\xa9\x10\x43\xa2\xd5\x71\xca\x90\xf8\x89\x85\xbd\xc1\x7b\x3c\x95\xb1\xca\xb5\xf5\x2f\x97\x40\x27\x5c\xc9\x56\x9b\xeb\x09\x0f\xb5\x3e\x18\x90\xd7\x71\x1a\x11\xfe\xc6\x52\x34\x54\x85\x4a\x67\x02\xab\xd5\xd2\x06\x35\x60\x82\xd6\x83\xe8\x6d\x13\x7a\x25\x5f\x12\xa8\xd3\x0f\x96\xc6\xcf\x1f\xd8\xde\xbf\xfa\xd4\x82\xa1\xd9\xc6\xcf\xcf\xc0\xc6\x4d\x98\xb6\xed\x92\x78\x63\x6f\x1b\x83\xcb\x30\xe4\xd8\xc4\x4a\x57\xd5\x89\x59\x3d\x22\xf0\x8c\xaa\x61\x44\x3a\xbc\xc8\xde\x1e\xd9\xec\x1a\xe7\x25\xe7\x39\x0d\x3f\x6b\x50\xd6\xcb\x8d\x3d\x22\x9c\x3b\xb0\x11\x3c\x98\x84\xf9\x41\x16\x51\xc0\xe0\x3d\x0e\x61\x83\x2d\xad\xe2\x8a\x32\x6f\xc6\x21\x7c\xd0\x56\x62\x91\x7d\x56\xe4\xb7\xe3\x11\xa8\xee\xbf\x87\x49\x6e\x33\xf2\x45\x59\xe5\x24\xc2\x1c\x6c\x4f\x84\x87\xce\x2c\xa7\xa3\xf8\x8a\xc7\xaf\xdb\xbc\xea\xb2\x51\x00\xa9\xe1\x0f\x2e\x21\x02\x2d\x56\x8f\xbe\xf7\x09\x01\x2c\xff\x61\x02\xd2\xbc\x36\x94\x87\x2f\xc0\xae\x11\xe9\x42\x04\x3d\x10\xcd\xc0\x5c\xc1\x38\x5e\x50\x9e\x8f\x3e\x4c\x07\xf1\x7a\x82\x4f\x07\x39\x22\xac\x26\xcd\x1d\xa3\x2c\xb7\x2d\x59\x8b\x32\xef\x57\xbc\x19\x41\x23\xca\xa0\x86\x62\x6c\xf6\xcb\x4e\x7c\xbb\x99\x0e\x46\xc2\x22\x2e\xbf\xe1\x36\x51\x83\xb0\xf6\x6e\xec\x91\x54\xae\x0b\x3f\x90\x6d\xf2\x9c\x6d\x49\xc8\x06\x61\xeb\x41\xea\xe3\x09\x11\xc0\x61\x42\xaf\xee\x93\x35\xac\x88\x1f\x36\x6f\x2c\x11\x0d\xbf\x19\x73\x38\x32\x03\x71\xc7\x6f\xc3\x01\xbf\xdb\xb0\x5a\x1e\x83\x47\xf3\x24\x51\x64\x18\xd0\x0b\x9a\x96\x7c\xcb\x02\x22\xff\xd7\x22\x4b\x49\x78\x1e\xdb\x32\x5e\xfa\x2d\x3d\xce\x5e\xcf\x93\xc4\x7e\xca\x2c\xdf\xf4\xb0\xd2\x4f\x78\x69\xf7\x4d\x22\xaf\xd8\xa9\x57\x0b\x76\xb7\x0e\x43\x91\x62\xc8\xf1\x25\x06\xfb\xee\x83\x25\x53\x9c\x46\xf4\xea\x68\xd4\x69\x77\xda\x5d\x70\xce\xfa\x64\xcb\xf3\x2a\x59\xc1\x3b\xe6\xba\xe5\xf5\x8c\x8a\xea\x00\x08\xb8\xc8\x74\x2b\xd8\x89\xbb\x5f\x64\xf4\xee\x3e\x83\xdf\x25\x0b\xa1\x8a\x99\x06\xb8\xaa\x16\xb2\x41\xda\x1d\x36\x72\x0a\xfb\x06\x69\x77\xdb\x8d\xe6\x5e\x14\x17\xb3\x24\xbc\xe6\xe3\x02\x3e\x7e\xd3\x92\xe9\xb6\x8a\x1a\xf6\xd3\xd1\x2b\xc8\x7e\xc9\x8b\xd5\x3d\x34\x67\xd8\xcc\xc1\xf7\x4f\x2f\xa3\x05\x6c\x49\xb3\x38\x86\x8e\xfb\x32\xd4\xe9\x75\x47\x58\xb7\x76\xc9\x93\x1f\x55\xa2\x1a\x56\xb7\x6d\xb5\xfe\x07\x94\xe9\xb4\x33\xb2\x06\x99\x05\x18\x1f\x6c\xf2\xdc\x7e\x5a\x2e\x9e\x65\x92\x00\xfb\xfc\x19\x0c\x74\x47\xd9\x5e\x3f\xc9\xc2\x88\x46\xea\x4a\xc6\x33\x27\x70\x07\x8e\x35\x93\x54\x3d\x2d\x1e\x90\xe3\xa3\x97\x47\x01\x99\x86\x9f\xe1\x92\x26\x4e\x2f\xe6\x49\x4a\xf3\xf0\x3c\xa1\xf7\xd9\x41\xbd\x1b\xb0\x1f\xd1\x6f\x91\x27\x04\x65\x77\xbb\xfd\x9c\xce\x92\x70\x48\x3b\x6d\xd2\x06\xdf\x8a\x6c\xb7\xd0\x32\xe3\xb3\x66\xe9\x05\xcd\xcb\x42\x47\xbb\x05\xbd\x2f\xa2\xc3\x78\x1a\x26\xb6\x90\x8d\x53\xbf\xb0\x2f\xb3\x97\xbc\x80\xcb\x79\xb5\x91\x6b\x4d\xcf\xa2\x5c\xc1\x13\x98\x96\xc6\x5e\x2d\x33\x37\x34\xad\x0a\xfe\xd4\xa4\x8f\x4b\x75\x5b\x26\x13\xef\xab\x5f\x08\x57\x7d\x5c\xe4\x54\xde\x57\xb8\xfd\xf3\x44\xc5\x17\x17\x19\xe6\x8a\x62\x6c\xf6\x39\x40\x42\x8b\xe2\x78\x12\xa6\x9d\x4d\xf0\xe2\xfc\x84\x3f\xfe\x10\x8f\x68\x04\x63\x6d\x75\x21\x72\x32\xca\x31\xa8\xb8\x3f\x07\x37\xe9\x82\x94\x61\x7a\x2d\xfc\x5f\x09\x8f\xc0\x69\x35\x59\xfb\x82\xae\xfb\x69\xc4\x2f\xe2\x38\x0f\xc5\xa3\xeb\x42\xc4\x31\x28\xc8\x39\x1d\x65\x39\xed\x3b\x7c\xf5\x46\x6c\x1d\xea\x69\x7f\x23\xd6\xa0\x25\xac\xf5\x06\xd6\x79\x83\xf8\x6a\xfe\x3e\x16\x16\x9b\xd3\xf0\x8a\x07\x8d\xbd\x8a\xcb\xeb\x80\x7c\x07\x97\x49\x72\xd5\x89\x0b\xe1\x53\x1c\x8a\x76\xed\x45\x06\x0d\x72\x67\x83\x41\xec\x1a\x45\xf1\x70\xd6\x17\xb6\xca\x0a\x7b\xd6\x0b\xc6\x3b\x6c\x17\xc2\x89\xd6\xf6\xa2\x80\xe8\x66\x7f\xfd\x78\xf4\xae\xaf\xa8\xcc\xeb\xd3\x7e\x64\xc1\x7b\x73\x41\x42\x3b\x90\x6e\x8f\xcc\xc2\xa2\x60\xb2\xab\x9c\xe4\xd9\x7c\x3c\x31\x67\x80\xea\x88\xe0\x35\xc0\xea\x9a\x09\x68\xa9\xf6\x04\x76\x4b\x1e\x9d\xb7\xb2\xc7\x12\x40\x3c\xb1\x32\xd1\x2d\xc1\x76\x21\xcd\xb8\x11\x02\xd2\x59\x8f\x8b\xd7\x71\x1a\x97\xd4\x22\xba\xd5\x0c\xd0\x10\x51\x23\x4c\x2d\xcb\x6d\x28\x9a\x17\x1f\xc4\xa2\xc2\xe7\x01\xdb\x2f\xa5\x20\xfd\xc9\x2f\xd4\x56\xa4\xc6\xb4\x84\x60\xe1\x47\xa3\x93\x34\xf6\x9e\x76\x41\xd9\x72\x42\xc5\x0f\x35\xe1\x48\x99\xf5\xd4\xe9\x94\x0a\x48\xe0\x8d\x99\xaa\xda\xa1\xd0\x74\x78\x63\xba\x50\x04\xbc\xe7\x15\x84\xe6\x79\x96\x4b\xcf\x50\xbc\xc5\x05\x49\xb3\x92\x0c\xb3\x3c\xa7\xc3\x32\xb8\x54\xf3\xc6\x6c\xb5\x31\x81\x58\x41\xc9\x02\x73\x9e\x09\xff\x3d\x87\xff\xfa\x65\xf6\x73\x76\x49\xf3\x83\xb0\xa0\x1d\x10\x2e\xfc\xee\x45\xcb\x31\x06\xf5\x77\x61\xef\x21\x2e\x51\x4f\xd9\xff\x67\x7a\x2b\x8e\x40\xb0\xe3\x7d\xcc\x78\xdc\x21\x60\x4a\x2f\xc9\x2b\xd6\xab\x4e\x1b\x8c\x2e\xa0\x21\x60\x32\xfe\xaf\x76\x49\xe8\x55\x5c\x94\x45\x8f\xcc\x12\x1a\x16\xa0\x16\x43\xcf\xb3\x54\x91\x6a\x94\x25\x49\x76\x19\xa7\x63\x28\x59\x30\x29\x68\x4d\x23\xd1\xc2\x1e\xb8\x39\xe9\xe9\xd7\x57\x35\x31\x9a\x55\xeb\xc1\x09\x9d\xe9\xd8\x3b\xfc\x4c\x61\x12\x72\x81\x0f\x66\x21\x31\x98\xb5\x2b\x21\xcb\x59\x80\x89\x5a\x70\x19\xc3\x07\x9e\x93\x56\x70\xd6\xfb\xac\x28\xe2\xf3\x84\x0f\x21\x78\xb2\x11\xb6\xb5\x1f\x0f\x99\x7e\x99\x97\xfc\x27\x53\xa9\x25\xb5\x5e\x8d\x46\xf1\xf8\x5a\x7c\x1c\x49\x56\x7a\x42\x3e\xb3\xea\xf9\x9f\xbe\x38\x86\x4f\x71\xc7\xcc\xc1\xa6\x1a\x4c\x5d\xf3\xf2\x4f\x79\x29\xcc\xe1\xc6\x1a\x4e\xdd\xc4\xf2\x4f\x71\x75\xab\xf3\x78\x81\x27\x4f\xd4\xc4\xd4\x37\xaa\xbc\xc0\xbf\xc3\xf3\xcc\xc8\xf3\x94\x90\x37\xa2\xbc\x03\x70\x91\x8a\xf3\x78\x09\xd4\x0a\x54\x98\x7f\x0a\x2a\x20\x10\x62\x41\xa0\x0f\xb8\xd8\x14\x04\xa1\x9a\x86\x63\xf4\xbb\x94\xbf\x6d\x95\x82\xcb\x05\x6b\xe7\x7b\xa3\xf4\x74\xce\x0e\xc3\x30\x65\x3b\x83\x50\x89\x66\x91\x2e\x6f\xab\x72\x12\x92\x37\xaf\xfe\x01\x9b\x70\xa9\xad\xdd\x9b\x40\x51\xeb\xac\xdc\xda\xfd\x32\xa1\xd2\xdd\x65\x88\x8c\x2a\x44\x10\x22\x14\xad\x83\xcd\xa7\xb0\x20\x97\x94\x4d\x10\xed\xe7\x48\x76\x63\x0d\x69\x43\xbf\x50\x63\x4b\x2e\xfb\x89\x45\x0a\x57\x75\x18\x66\x29\x24\xb0\x52\xc4\x4b\xe0\x98\xcd\xa6\xa4\xe2\xd2\xc9\xd2\x87\xf0\x32\x2c\x10\x90\xe7\x46\x25\x01\xfe\x42\x9a\xd5\xd2\xe9\x1b\x72\x1a\x7b\x66\xf0\x25\x8d\x1f\x26\xec\x7f\xcb\x14\x2f\xb3\xba\x09\x8e\xf6\x0b\xbf\xd9\x54\x67\xb3\xed\x77\x9c\xec\x40\x90\xfb\x99\xea\x65\x3c\xa5\xc5\xef\x31\xcd\x53\x71\xb8\xc8\x26\xb7\x3a\xaa\x2a\xf8\x36\x9f\x2d\xd1\x44\x19\x95\x39\xdc\xa0\x1a\xd2\x88\x27\x34\x17\xc8\xab\x43\x36\xf4\x9a\x15\x4c\x6c\xca\xd7\x9c\x46\xa0\x01\x14\xf9\xb1\x15\x9c\x35\x08\x4b\xb6\x3f\xdf\x30\x1d\x10\x66\xbd\x2c\x2f\x7e\xdc\xdc\x90\xcd\x5d\xef\xde\x46\xe0\x75\xf6\x26\x3c\xdd\xd8\x10\x09\x92\xcb\x96\x3c\x7a\x44\xc4\x6f\x9f\xce\xcf\xaa\xb4\x73\xf1\x06\xc3\xe7\x89\xd0\x50\xc5\x44\x61\x75\x24\xb2\x79\xd5\xee\xb5\xdb\xf8\xbe\xc5\xf2\x57\xe8\x2b\x8d\xf9\xa4\x52\xa5\x4b\x65\xe0\x66\x0f\xa7\x28\x3e\xe1\x60\x32\x8e\x8e\xda\x89\x09\xfb\x65\x80\x2d\x2f\xb3\x76\x41\x86\x2a\xa6\x92\xc3\x5a\x66\xc8\xa5\x26\xfc\x55\xc1\x35\x68\x8f\x6c\xe2\x34\xcf\xbb\x0c\x96\x61\xe0\xe7\x88\xb3\x7c\xf3\x15\x1c\x2f\x74\x90\xef\x48\x55\x00\x9f\x48\x2c\x1d\xba\xd6\xe8\x8e\x7f\x2d\x18\xe5\xfe\x2c\x99\x17\xba\x09\xe2\xdb\xeb\x64\x54\x01\x99\x07\x49\x13\x3a\xfc\x5c\xc8\x5d\x13\x17\x91\xf2\x96\xb3\x10\x4f\x56\x93\x6b\xf0\xa6\xed\x0d\x05\xce\x59\x7e\xe8\x0d\x03\x6e\x06\xf4\x46\x15\xb0\xf9\x1f\xa2\x02\xd8\xbf\x24\x44\x37\x13\x43\x67\x21\x37\x46\x4e\x94\xb7\x4e\xd0\x06\xff\xb7\x79\x75\xba\xf9\xe4\xfb\xf0\xc9\xe8\xec\xcb\xd3\xcd\xc5\xff\x0c\xe2\x7e\x49\x8b\x52\x81\xaf\xd0\xf9\x9a\x3e\x7f\xa5\xde\x36\xe8\x27\x1c\x00\x0c\xfe\xaf\xb3\x79\xd5\x7d\x5e\xdb\x51\xcc\x81\x83\x81\x8e\x56\xc7\xe3\xd1\x41\xf3\xb8\x27\x6f\x61\xff\x3b\x85\xf7\xf4\x6c\x41\x46\xdd\x36\x39\x58\x38\xe4\x24\xa6\xcb\x18\x6f\x63\xcc\xb6\x30\x41\x87\xc0\xf6\x9f\xbc\xf6\x82\x59\x4d\x86\xe0\x79\xed\x02\x9c\x8e\x17\x53\xf6\xef\x30\x9c\x15\xa0\x3c\x88\xdf\x3d\xec\x25\xd5\x6e\x2d\x0f\xfe\x80\x1a\x6b\x20\x3f\x52\x6b\x3b\xa7\x0c\x0d\x87\x13\x32\x0c\x0b\x07\x4d\x5c\x70\x2e\x99\x4f\xc5\xe8\x20\x56\xe2\x73\xac\x39\x43\xf1\xba\x8a\xf9\x74\x4a\xa3\x4a\xde\xb2\xaa\xbb\x6f\x1e\xb3\xd0\xd7\xf1\xda\x60\xc0\x3b\x64\x11\x27\x54\x25\xc5\x2f\x67\x01\xd2\xa7\x21\x02\xe2\x4d\x58\x80\x47\xa8\x49\xb8\x23\x2b\x31\x4f\x52\xa4\xae\xe3\xf3\xba\xf4\x74\x13\x6e\x28\x89\xc5\x1e\xe0\x41\xbf\x9c\x90\x84\x82\x4f\x03\x14\xff\x72\x36\xa3\x39\x6b\xad\x1c\x87\x14\x62\x87\x8e\x63\x1e\x5e\x32\x2c\xe8\x34\x9c\xb1\xf1\xd8\x32\xce\xf9\x3a\xca\x7e\x01\x35\x1a\x7c\x23\x6e\x3d\xeb\x92\x1f\xc9\xb7\x6c\x35\x17\x59\xa7\xf1\x59\xbf\xcc\x4e\x58\x45\xe2\x24\x68\x7d\x6f\x0f\x65\x02\xc7\xd7\x23\xfc\x61\xcf\x83\x11\x9f\x2d\x59\x18\x2b\x1c\xf6\xa3\x39\xa9\x25\xbe\x19\x72\x4f\x05\x41\x51\x6c\xfa\x56\x6c\xf4\x24\x3b\x56\xf0\x62\x99\xdd\x2b\x2f\xca\xc3\x6b\xb5\x2e\xaf\xc0\x8a\xe8\xc8\x58\xb1\x9f\xed\xfb\x40\xd4\xd3\x6e\x0b\x5e\x72\xf9\xd4\x20\xf0\xad\xb8\x16\x01\x0d\x9d\xd6\x33\x44\x35\x7c\x2c\x5b\x81\x6e\xdd\x6d\x9e\x06\x91\x37\xd1\x96\x7f\x8c\x4b\xbf\x67\xfb\x9e\x11\x0f\x63\x21\x2f\xe2\x14\x8b\x1b\x1c\xbc\x8c\x81\x4d\x16\xb2\xdb\xbf\xb1\x57\xc9\xdd\x88\xbf\x6c\x51\xba\x14\x53\x2d\x6f\x5a\x25\x4d\xcd\x53\x6b\x9a\x86\x20\x95\xd6\xcf\x64\x7b\x93\x7b\xee\x7a\x22\xee\x07\x79\x9d\xdc\x18\x78\xf3\x8a\x70\xdb\x0e\xd7\xb6\x6b\x29\x2b\xfb\x2f\xfb\x85\x0f\x10\x2c\xb7\x95\xfd\x56\x33\xfe\xb5\xb4\x19\xef\xb2\x27\x5d\x5b\x4b\x7a\x20\x1d\x9e\xaf\xb5\x75\xcb\xac\x07\x91\xb8\xfb\xf2\xe1\x33\x21\x64\xe8\x53\x6e\x9c\x2c\x31\xea\x67\x8d\x3d\xf2\x74\xd3\x7f\x49\x20\xdd\x81\xcb\xcd\x74\xa1\xb5\xdc\xe5\x41\x6e\xbd\x3b\x49\xdf\xcd\x97\x11\xf8\x96\xaf\x64\xbe\x3d\x20\xe9\xf0\x66\x58\x6a\xa1\x6c\x5b\x5a\x94\x61\x3a\x64\x52\x44\x17\xbe\xb9\x51\x44\x13\x85\xe1\x19\x29\xfc\x32\xdc\xd7\x78\x53\xb9\x69\x04\xc8\x22\x85\xb2\xdd\x94\x50\x72\x3f\xbc\x8c\x4a\x1f\x1d\xdb\xa2\x86\x24\xf2\x04\x2a\xf3\xd2\x47\x88\x56\xd1\x32\xe8\x0d\x6f\x5b\xfb\xfe\xc8\xc3\xdb\xd2\x98\x36\xb2\xc5\xcb\xa9\xf3\x5a\xdb\x90\xac\x4a\x1f\x59\xf4\x56\x14\x92\x25\xda\x0d\x7b\xc4\xda\x54\x2e\xef\x0e\x6f\xfa\x2d\x3a\x73\x24\xda\xd6\x70\x32\x30\xfd\x22\x9d\x27\x09\xc4\x2a\xe9\xb8\x33\x04\xec\xb6\xe1\x08\xc3\xd3\x77\x71\x5d\xdb\xb0\xe7\xe7\xbc\xb1\x0d\xc4\x01\x07\xbc\x8d\x30\xe0\x49\xb7\x1a\x48\xd1\xbc\xa6\xbd\x01\x47\x9c\xcb\xfb\xe2\xc4\xb5\x69\xd8\x13\x37\x36\x4d\x43\x91\x06\x05\x6b\xfb\x60\x6f\x48\xf8\x3a\x0a\x26\x72\x99\xe4\x3a\xb3\x13\x7f\x2d\xcc\x79\xa5\x0d\x10\x6a\xfb\xc0\x8a\xd9\x8f\x06\x94\x03\xb3\xfc\xda\x5d\xa7\xd6\xd7\xe1\x62\x92\xbf\x87\xd7\xb6\xac\x0b\x32\x84\xe0\x6b\x1d\xea\x59\xdb\xf0\x76\x74\x95\x5e\x87\xa2\xdf\xaf\xd8\x00\xd2\xf9\x94\x9c\x27\xd9\xf0\x33\x99\xd0\x30\xa2\x39\xfb\xc8\xa6\xb6\xd1\x46\x5c\xbc\x60\xc9\x3e\xa5\x61\x42\xaf\x54\x74\x02\x28\x4b\x46\x71\x52\xda\x87\x99\x1e\x86\x05\x58\xc3\x09\x38\x4b\xa9\xdd\xe7\x7f\xb3\xb5\xad\x37\xfa\x1c\x7c\x09\x5d\xaa\xb7\xe9\x1c\x17\x46\xe5\xdb\xa5\xbb\x50\xbe\x88\xdf\xb9\x37\xd6\xb7\x1b\xbf\xa3\xe9\xc8\x24\x19\x53\xf3\x66\xf1\xd0\x1d\x87\x63\x96\xbc\x6c\x1c\x4a\x05\x54\x33\x00\x80\xc9\x18\x00\x28\x56\x3b\x00\xcf\x9e\x6a\xfa\x73\xe8\x5b\xd3\x1f\x50\x61\x4c\x3e\xf2\x3b\x40\xb7\xa2\x7e\x85\x03\x20\xf5\x3c\x2e\xd0\x3f\xf9\x0b\x36\xa1\x0c\x06\xf2\x87\x4a\x85\xd7\x40\x81\xfa\xd5\x13\x78\xde\xd0\xab\x80\xff\x27\x53\x84\x69\x49\xa0\x7f\xf2\x1c\x64\x76\x12\xe0\x0f\x59\xee\xa4\x1c\x7d\x17\x88\xff\x65\x1a\x18\xb2\x04\xf2\x87\xc6\xc3\x61\xe5\x2f\x9d\x2e\xe0\xd5\x4f\x81\xc7\xb5\xc6\x0d\x7c\x89\x1c\xda\x35\xf2\x0c\x3c\x69\x06\xac\xb4\xa7\x0c\xec\x04\xd9\x8f\x5f\x28\xf4\xe2\x17\x8a\xfa\x00\x69\xe2\x87\x84\x53\x7a\x64\x80\x3f\x64\xae\x79\x98\x1d\x38\x29\x8a\x6a\x5c\x85\x0f\xf4\x4f\x9e\x83\xf4\xe6\x00\x7f\xc8\x5c\x63\x8f\x12\xd8\x09\x12\x0a\xe5\x5b\x39\xd6\xa6\x3e\x70\x93\x64\x0b\x1d\x48\x27\x49\xe2\x94\x6a\x5a\x80\x7e\xe3\xf6\xa6\xe3\x40\xfd\x92\xe9\x7c\xb5\x0d\xd4\x2f\xd5\x7b\x2e\x09\x02\xfd\x53\xf5\x89\xad\x9f\x81\xfc\x21\x53\xd9\x52\x16\x88\xff\x15\x0e\x26\x09\x03\xf9\x43\xa6\x82\x40\x09\xe4\x8f\x1e\x4c\x3d\xee\x40\x52\x38\x5e\x68\x05\x5b\xdf\xf7\x6a\x3d\x50\xf5\x5a\xf3\x72\xf4\x5d\x2b\xf8\xee\x9b\xc5\x59\x6f\x7b\xab\x89\x53\x16\x73\x72\xef\xf1\xa9\xdd\x12\xbe\x48\x5a\x01\x69\x6d\xf6\xb7\x37\xfb\x5b\xad\xb5\x85\x74\xd5\xb8\xdd\x28\x92\xf8\x83\xb3\x97\x07\x67\x2f\x7f\x06\x67\x2f\x02\xcb\x9a\xeb\xab\xf1\xaf\x74\x34\xca\xe9\x35\xf9\x25\x4e\x86\x9f\x29\xf9\xe1\x57\x3a\x1a\xd9\x1e\x5f\x1a\x7a\x74\x04\xb0\x38\x4c\xc9\x11\xd3\xc5\x43\x80\x8a\xc3\xd4\x05\x7b\x1d\x9e\x33\xb0\xbf\x67\x63\x9a\x14\x25\x4d\x12\x9a\x93\x1f\x46\x90\xe8\x02\xff\x14\x5e\x90\x5f\xb2\x2c\x22\x3f\x8c\x2b\x3d\xd1\x3c\xd5\x1e\xb8\x84\xaf\xd6\xb7\x61\x1a\x8e\x4d\xf7\x30\xfd\x01\xa3\xc2\x20\xe7\x00\x53\x0e\x20\xdd\xc0\x1c\x9e\xc3\xb6\xc9\x06\x8e\xcf\xc3\x54\x82\xbc\x2e\xa7\x1e\x08\xae\x93\x15\x83\x51\x39\x95\x80\x2f\xe9\xf9\x7c\x5c\x03\x1a\xb1\x7c\xe5\x15\x7a\x34\xac\x01\x2d\x46\x43\x85\xf5\x45\x1d\xca\x73\x85\x6f\x32\xa9\xc3\x37\x99\x48\xc0\x77\x10\x8f\xa0\x0a\x30\xa5\xa5\x04\x7c\x4f\xf3\x02\x5e\x6e\x55\x43\xcf\x04\x88\x6a\xc4\x65\x98\xd7\x11\xab\x60\xf9\x0a\x98\x96\x25\xc4\x6a\x73\xe1\x0b\x91\x25\x41\xa5\xac\x32\x20\xa5\x10\x62\x3b\x38\xed\xd5\x27\x4e\x2c\x84\x90\xc4\xff\xad\x76\x0e\xc4\x81\xa4\x1b\x36\xf1\x4e\x84\xa6\x91\xa7\x6d\x3c\x43\x82\xbd\x80\x1d\x9a\x0b\x75\xce\xd2\x15\x25\xf3\x6c\x46\xf3\xf2\xda\x03\x37\x13\x59\x12\xf4\x4d\x59\xce\xde\xe7\xd9\x45\x1c\x79\x99\x98\x4d\xff\x99\xc8\x56\x2c\x3c\x1b\xd6\x94\x88\x67\x43\xbb\x40\x33\x4f\xa6\x6b\x6b\x6a\x6f\xf0\x0b\x3d\xdf\x21\x1d\x89\xc6\xf4\xc5\x9d\xdb\xf3\x2e\xa5\x97\xd6\x64\xd4\x25\x91\x5b\x6e\x11\x60\x19\xb5\x5c\x42\x21\xa0\x51\x29\x23\x29\xbc\x2e\xa7\x10\x9e\x03\xa3\x88\xc4\x7c\x63\xf9\x30\xf7\x1c\x88\x02\x26\x19\xf8\xed\x1e\x0d\xdd\xf2\xe7\xb2\xf0\x0b\xb7\x24\x4c\x27\x28\x39\x99\x38\xb9\x29\xcc\x21\x96\xfb\x8e\x96\x4e\xee\x4c\x4f\x1c\x06\x22\xe7\x91\x03\x77\xfe\xef\x7f\xcb\x3a\xd8\xbc\x70\xdb\xa0\x27\x08\x00\x89\xcf\x0e\x86\xd1\x33\x43\x6f\x8d\xc2\x59\x1c\xa8\x25\x5a\xfc\xcf\xb7\x48\xb8\x91\x82\xda\x85\x51\x14\xb3\x5f\x60\x7c\xf5\x14\x0c\xe2\xb7\x00\x7f\x38\x55\x7c\x52\x73\x88\xff\x70\x3a\x28\x00\x3a\xba\x7e\x31\x1d\x62\x5a\x04\xe8\x77\x87\x1b\x1f\x2d\xba\xbb\x4c\x8f\x1b\x0c\xc0\x71\x77\x41\x89\xee\x43\xc6\xf5\x03\x70\x26\xb6\xc6\xd8\xd5\xd3\xbf\x65\x7d\xab\xec\x17\x53\x65\x25\x4e\x19\x85\x97\x62\xce\xc5\x91\xc6\x97\xcf\x11\x5c\x78\xe5\xa9\xe1\x69\x4b\x4e\x79\x88\x19\xdd\x8a\xcf\x94\xce\x0e\x8b\x8f\xd7\xe9\x30\x4e\xc7\xb5\x4d\x81\xb2\x16\x7c\x33\x0e\xf4\x34\x04\xcb\x95\x17\xda\xde\xc6\x82\x92\xaf\x76\xb8\x1f\x3a\xf8\xf2\xc0\xc8\x17\xbe\x12\x0a\xbe\x3d\x70\xe2\x99\xb8\x04\x63\x9f\x0e\x14\x7e\x31\xcc\x01\x55\x8a\x17\xd6\xc0\x29\x13\x3c\x75\xeb\xe7\x5f\xb2\x7a\x91\xe2\xc5\x6a\x43\xa3\x34\x0f\x6e\x4c\x4b\x89\xbd\x8e\xa6\xdc\x22\x53\x42\xfe\x42\xfd\x3d\xc3\x50\xe2\xdb\x81\xc3\x86\x38\x1c\x52\xa5\x78\x60\xdd\x5b\x6c\x59\xe6\xc0\xbe\xdd\x74\xda\x5c\x55\xd6\xc9\xf1\xd4\x7b\xf8\x62\xff\x1d\xaa\x8c\x7d\x3a\x50\xda\x9b\x0e\x07\x13\xdf\x3e\x38\xe9\xe8\x45\x01\x42\x82\xa7\xcd\xda\xa7\x92\x6c\xab\x48\xf1\xc8\x08\xae\x65\xe0\x37\xea\xfc\xbe\xcb\xf4\xe0\x6a\xde\x44\xc2\x75\xbb\x0d\x59\x75\x33\x1c\xc5\x39\x9c\x82\x0f\xc3\x19\xbc\x2b\x41\x77\xb3\x9e\xc1\x3f\x3c\xd8\x7f\x6f\x88\x09\x56\x0e\x1b\xff\xc5\x5c\x17\x66\x33\x9d\xa9\xc5\x3c\xdf\x78\xc6\xca\x20\xfa\xa2\x1a\x29\x04\xc0\x55\x8e\x12\xd5\x75\x21\x8d\x4f\x95\x98\x87\x65\x51\x68\x3e\x1d\xf3\x3a\x3d\x85\x43\xa4\xb6\x5c\xbe\xd2\x2c\xa2\xed\x9e\x01\x31\x06\x93\x97\x80\xb4\x99\x7e\xf3\x69\x98\xc4\x34\x2d\xff\xce\xc1\xdb\xfa\xba\xbd\xdb\xbb\x4d\x6d\xb4\xbc\xcc\xf2\xcf\x55\x15\xa6\xb4\xfc\x24\x40\x2d\x10\x33\x22\x49\x60\x0b\x84\x3b\x36\x2b\x09\x87\x13\x5a\xc4\x45\x55\xbb\x68\x39\xf9\x04\x63\x3d\xcc\x92\xbf\xdf\xb1\x7d\xf0\xf3\xcc\x2b\xdf\xe3\xe2\x20\x4b\x53\xee\xf6\x09\xf1\x75\xd7\x18\xe4\x8e\x77\x09\x7b\xf4\xc8\xbb\xb4\x61\x94\x9d\xae\x7f\x55\xe1\x8e\x0e\xa4\x9e\x5d\xc9\x5c\x60\x60\x0a\x31\x50\x84\x96\xe1\x3d\xfb\x65\xb8\xa5\x6b\x60\xac\xf5\xf3\xc3\x29\x63\xb3\xd0\x0a\xb6\x37\x59\x12\xde\x66\xb4\x82\xed\x2d\x96\xa6\x55\xfc\x56\xb0\xfd\x54\xa5\x70\x75\xa6\x15\x6c\x7f\xa7\x92\xb0\xc2\xde\x0a\x76\xb6\x55\x06\x9b\x4a\xad\x60\x67\x47\x27\x68\x45\xbd\x15\xec\x68\xa4\x7a\xab\xd7\x0a\x76\xbe\x75\x92\x47\xe5\xb4\x15\xec\x7c\xe7\x82\x33\x85\x98\xe5\x6c\x3a\x59\xc5\x68\xc8\x32\xb6\x9c\x8c\x94\x96\xad\x60\xe7\x7b\x27\x5d\x2a\xb4\xad\xe0\xa9\x07\xdb\x64\xd2\x0a\x9e\xba\xc8\x60\xaf\xd7\x0a\x9e\xea\x2e\xcb\xbd\x4e\x2b\x78\xfa\x8d\x4a\x34\xb7\xe5\xad\xe0\xe9\x33\x95\x25\xb5\x8f\x56\xf0\xf4\xdb\xfa\x93\xc3\xc5\x59\x6f\x7b\xe7\xe1\x5c\xef\xe1\x5c\xef\xbf\xe5\x5c\x2f\x4c\x12\xf0\x6b\x71\x37\x47\xce\xe8\xf8\xcc\x39\x12\xf1\x9d\x89\xc8\x20\x51\xaf\x2e\xf8\x4b\x02\x74\xd6\x00\xad\x91\x70\x3a\x64\xd4\xb2\xd8\x68\xee\x79\x8d\xf7\xc0\xe6\x35\x5c\x2a\x5b\xc8\x20\x4d\x42\x5c\xf2\xc8\x67\x26\x88\x14\x45\x22\x53\xb9\x77\xde\x4f\x12\xa3\x2b\xa6\xd6\x62\x6e\x91\x7a\x60\x21\xd0\x23\x96\x49\x5b\xc5\xe1\x87\x99\x80\xb7\xba\xbf\x72\xa3\x00\xf6\x1f\x4e\x76\xcc\x34\xf9\xc2\xe5\xb4\xb0\x3e\xc8\xbf\xa5\x52\xca\x80\x00\x7b\xea\xd7\xcd\x0d\x44\xbf\x22\xb6\xbb\x89\x2f\x0b\x61\xb2\x79\xda\x66\x2a\x22\xc4\x15\x69\xf7\x48\xbb\xcc\xf8\xcf\xb3\x3e\x27\x33\x8a\x76\x3a\xf2\xdc\xc2\x8a\x6a\x4e\x47\x67\x60\x58\xa3\xec\x52\xc5\xcd\x6c\xd7\x13\x32\xdf\x42\xc3\xda\xc3\x8a\xef\x21\xe6\xe1\x9e\x7b\xa0\x21\x7c\xdf\xa3\x43\x60\xea\x0a\xa5\xad\x84\x7e\x2f\x06\x2e\x30\x34\x5d\x0d\x3a\x9b\x8f\xca\xb0\x53\x8c\x3a\x8a\x7b\x62\x96\x47\x61\x19\xca\x1e\xb0\xdf\xfd\x88\xbb\x4c\xd5\xbf\x6f\x6e\xc0\x18\x57\x01\xc0\x15\x76\x21\x41\xc4\xd7\xcd\x8d\x8e\xbd\x0b\xa7\x8e\xac\x6a\x79\x37\x8f\x00\x4f\x37\xcf\xfa\x05\x13\x08\x2a\xc6\x02\x83\x9e\x0a\xa5\x48\x73\x98\x3b\x5c\xbf\x7a\x86\x0b\xd7\xb2\x27\x4c\x7c\x85\x46\xe8\x5e\x09\x77\x7e\x55\xcf\xe2\xbb\xa7\x9b\x67\xe8\xc1\xd7\x3a\xd4\xdf\x25\x5f\xe0\x89\x45\x98\xa6\x59\x49\x46\x71\x1a\xf1\x76\xc5\xe9\x98\x57\xf4\x5c\x55\x3f\xcc\xd2\x22\x4b\x68\xff\x32\xcc\xd3\x4e\x1b\x97\xe0\x4e\x7a\x98\x28\x4e\xb2\x71\x1b\x99\xdc\x8a\x16\x33\x52\x38\x8e\x9e\xa8\x10\x43\x38\x2e\x1f\x8c\x5d\xc7\x37\x3b\x7b\xbc\x59\x3d\x93\x21\xcc\xfd\x0d\x60\x94\x3e\x16\x61\x88\x1b\x4c\xc7\x2b\x3a\x64\x1a\x80\x67\x3e\xf6\xc0\x11\xd4\x79\x38\xfc\xac\x22\x08\x83\x07\x04\xb1\x69\x95\x97\xb9\x9d\x30\x1f\xcf\xe1\x05\xca\xa9\xfa\x85\x9c\x00\x99\xd6\xef\x12\x23\x44\x7e\xaf\x2d\x86\xdd\xd5\x75\x1c\x08\x36\xf0\x5b\xa6\xfb\x0c\x2d\x36\xd2\x79\x92\x38\xe4\xce\x24\xa7\x09\xa7\x7b\x7a\x77\x2a\x21\x46\x28\xc6\xa2\x38\xa1\x05\xff\x68\xe7\xb1\x79\xf8\x87\x54\x76\x2e\xd9\x3b\x59\x8f\x7b\xb6\xee\x79\x05\x6b\x4f\x8a\xf7\xfe\xa8\x9c\x76\xba\x3d\x5d\x11\xa2\xf0\xf2\x91\x0a\xcb\x32\x1c\x4e\x8e\xb3\x03\xe9\x7f\x0b\x0f\x99\x74\xca\x85\x37\xc4\x7a\x68\x79\xbf\xf9\xa7\xd3\x1d\x59\xb4\x1f\x26\x89\x5a\x4f\x04\x70\xc5\x3e\xc4\x69\xa6\xda\x94\x78\x76\x25\xde\x6d\x09\xb0\x6a\x2b\xd8\x86\x1d\x01\x9f\xf5\xad\x60\x1b\x74\x77\x1c\xb1\x71\x07\x80\xad\x85\xb0\x15\x3c\xdd\x61\x2a\xf3\xd3\x07\x95\xf9\x41\x65\xfe\x6f\x51\x99\x61\xbb\x7e\x5f\xf1\x9e\xfe\x5a\x64\x69\x3e\xb3\x6e\x70\x7f\xe5\x89\xea\x06\x31\xcf\x33\x5b\x03\xe6\x69\x4a\x11\x75\x4f\x35\x58\x5f\x0d\x1d\xd3\x51\x31\x81\x1a\x9f\x2a\x15\x4d\x91\x51\x88\xa8\xfe\x4b\xdc\x13\x86\x51\x24\x3d\x49\x32\x69\x2c\x0a\x83\x73\x6e\x68\x9a\x48\xb0\x0c\x11\xc3\x28\xf2\x98\xf6\x12\xd1\x7f\x5e\xa8\xd4\x46\xb5\x83\x35\xe8\x27\x96\xc4\x51\xe4\x53\xb9\x7d\x1d\x2f\xfa\xb3\x79\x31\x51\x10\x4b\x7b\x24\x65\x76\x5d\xfb\x05\x8c\xb7\x69\xbe\xe5\xdc\xf4\x69\xa0\xe8\x6b\x34\xd3\x1d\x02\x7d\xdd\x93\x46\xfc\x64\x4a\xc2\xf6\x10\x6e\x9a\xe7\x3d\xa1\x88\x16\xae\x4a\xcc\xd9\x87\xff\x12\xba\xa2\x06\x10\xf4\xc1\x8e\x2d\x15\x29\x7b\x04\x1e\xd5\x57\xbc\x9b\x13\x28\x4f\x01\xe6\x0c\xef\x0e\x2a\xf5\x75\x5e\xa4\x02\x2d\xd3\x6a\x64\x7b\x04\xd2\xbe\xa3\xfa\xd8\x05\xd6\xc5\x24\xea\xc7\xc5\xdf\xc3\x24\x8e\x3e\xd0\x62\x96\xa5\x05\x15\x55\x39\x6f\xfe\x9c\x3e\xf8\xeb\xeb\xf0\x39\xd6\x3f\x4c\x2f\xbc\x58\x77\x1d\xa4\x0b\xb7\x7d\x95\xc8\xb9\xa7\x28\xa7\xb3\x7c\xc9\x05\x8f\x14\xbe\x0c\x51\x79\x5f\xb4\x01\x7c\x55\xe0\x04\xab\x51\x0b\x34\x14\x7a\x7b\xe3\x55\x24\x80\xb1\xf4\x89\x26\xef\x7b\x2b\xd8\x86\x53\x34\x31\x21\x5b\xc1\x0e\x58\xd4\x35\x8a\xf0\xff\xb0\xdc\x3f\x2c\xf7\x7f\x86\xe5\x5e\x29\xe5\xf7\x74\x40\xd6\xf0\xa4\x8a\xed\x77\x72\x0b\xac\x10\x9a\xfe\x00\x32\x57\x3d\x4c\x93\x70\xe8\xb5\x16\x3e\x05\x93\xcf\xb0\x04\xf4\x3e\xda\x82\x20\x30\x75\x5e\x08\xaa\x47\xdd\xf2\xc9\x0f\x97\xf0\xd3\x36\x58\xe5\xed\xd7\xd1\x1c\xee\x40\x83\xbd\x97\x50\x4a\x2d\x00\x43\xe2\x05\x91\x0e\xa4\xcd\x54\x6f\x05\xc2\xc5\xb0\x1f\xb5\xf9\xc0\xf4\x3c\xee\x89\x72\xd6\x3d\x50\x78\x1e\x7b\x0e\x41\x90\xb3\x69\x62\x79\x77\xe6\xc1\xfd\xf7\xf6\x48\x1b\xb5\xa9\x4d\x1e\x3d\x32\xbc\x47\xa3\x5d\x33\xaf\xd6\x08\x31\xb0\xe8\x5a\xab\x70\x5d\x85\x1e\x7f\xd4\xa4\x03\x89\x15\xab\x35\xe4\x71\x37\xd5\x9e\x85\xc1\x42\xc4\xc0\x0a\x4f\xd5\xc0\x7b\x62\xeb\xce\x09\xca\x41\x15\x19\xd1\x19\x8f\x3c\xbb\x6a\xa0\x3c\xaa\x78\x7e\xc2\x3f\x15\xdf\x58\x7b\xdf\x53\x85\x51\x24\x79\xb8\xd0\x9b\x70\xcc\x1b\x32\x6d\xa1\x30\x55\xf2\x13\x67\x15\x3f\xca\xda\x7d\xbd\xde\xac\xdf\x9e\x51\xd0\xdb\xc7\x55\x46\x1f\x9f\x53\xa9\xb3\x1f\xd5\x9e\x4f\xa3\x72\x2a\x0f\x9b\x75\x23\x4d\x6f\x1b\x4b\x0f\x52\x47\xce\x21\x87\x26\x80\xa9\x49\x2c\x19\x57\x2e\x2d\x1a\x0d\x2a\x97\x37\xf7\x37\xa2\x36\xbe\xe5\xc7\x34\x52\xe0\xdd\xc7\xd8\x72\xd9\x6b\x1d\x2a\x0b\xc9\x2a\xce\x1a\x95\x8c\x35\x07\xcf\x3d\xb5\xe2\x0d\xab\x1c\xce\xfd\x24\xa9\x1d\x2e\x00\x12\xd7\x3c\x2b\x33\x18\x3f\x08\x5d\xd2\xc0\xd5\xb9\xcd\x78\x8a\xe8\x1e\xa9\x55\x71\x5b\x1d\xbb\x29\xe7\x3c\x60\xc1\x27\x07\x7d\x4c\xcb\x42\xd8\x95\x24\xd7\x24\xa2\xb3\x24\xbb\xa6\x91\x34\xf4\x83\x47\x8b\xc3\x49\x18\xa7\xf6\x23\x39\xc0\xf6\x3a\xcb\x65\x8b\x3c\x1e\x0f\xe4\x7e\xd5\xc7\x92\x72\x5e\x2e\xd4\xc1\xe2\x9a\xe1\x97\xf7\x44\x5e\x6d\xe8\xc7\x74\x15\x35\x62\x13\x09\x59\x13\x3a\xae\xd4\xec\x0b\xe1\xda\x21\x7c\x8d\x73\xc8\xfb\x3a\xce\xb9\xad\x05\x7f\xce\x06\xf9\x83\x01\xb9\x0c\x63\x7e\x58\x0e\x2a\xd7\xac\xd4\x07\xb0\xf2\x9e\xcc\x1c\x77\x31\x15\x54\xb8\x78\xdd\x30\xda\x35\xdd\x3d\xaf\x53\x78\x10\x6d\xd4\x6f\xaf\x4a\xd0\xde\x8d\x8d\x5d\x73\xd7\x34\x18\x90\xa2\xcc\x66\xfc\xa4\x36\x4e\xc7\x24\x1c\xb1\xa6\x7c\xb3\xc9\xc7\xaa\x20\x9d\x32\x9e\xd2\x6c\x5e\x76\x9d\x9d\x23\x27\xc0\x8f\xe4\x9b\x4d\xef\x5e\x91\xb7\xbe\xcf\xb0\xff\x22\x90\xeb\x40\x0e\x5d\xf2\x65\xe1\xd9\xd2\xd9\x04\xe4\xcf\x04\xbd\xdb\x50\x35\x22\xde\xcd\xa6\xde\xf8\x69\x6f\xc4\x4a\x30\xc1\x6d\x49\xc8\x67\xc6\x90\x31\x36\x78\x26\x3e\x67\x1a\xf3\x3c\x8d\x6c\x0a\xb4\x7d\x7b\x4f\x9a\x20\x37\x26\xf8\xcf\xf1\x81\x7c\xeb\x5a\xd9\xf4\xc3\x98\x95\x17\x13\x97\x6a\x06\xd7\x8c\x69\x79\xac\xab\xfa\xc0\x59\x4d\x4b\x14\xd4\x8c\x37\x61\x31\xc1\x4c\xd5\x93\x8c\xd9\xf5\xef\xe0\xe3\x51\x47\x00\xf8\xb9\xcd\x5b\xc8\xdb\x40\x88\x9b\x24\x70\xf5\x87\xe6\x04\x34\x5b\x04\xc1\x95\xfc\xcd\x91\x7f\x55\x2e\xe3\x9f\x29\x97\xf1\x55\x7f\xf1\xa8\x63\x72\xdc\xcd\x0d\x59\x87\x1a\x6b\x8b\x11\x25\xba\x3d\xbc\x89\xff\x6e\x33\x05\xf0\x5f\xc3\xe9\x60\x77\x29\x8b\x50\x84\xf8\x9d\xda\x91\x91\x7f\x83\x81\xba\xe5\x4b\xb2\x31\xe2\x5a\xd8\x56\x48\x31\xbe\xde\xee\x2e\xa9\x9e\x18\xaa\x9a\x92\xa8\x15\x43\xdd\x00\xd9\x60\x40\xf8\x62\x25\xd5\x85\x30\x8d\x88\xb8\x17\x21\xe1\x38\x8c\x53\x31\x73\x2e\xa9\x08\x2b\xb8\xe4\xcf\xaf\x7b\xda\x0b\xe0\x12\x0c\xb6\xae\xe3\x2c\xff\x4b\xba\x34\xe4\xce\xe0\xc4\x95\x20\x5b\x12\xd8\xea\x58\xd0\x61\x96\x46\x84\x09\xdc\xa5\x48\x10\xeb\x2e\x67\x56\x62\x48\x44\x38\x0a\x6b\xda\x60\xaf\xef\xa4\x7b\x6e\x10\x76\x18\x8f\x54\x09\xb1\xa3\x45\x92\xb2\x28\xb3\x9c\x46\xca\x79\x3c\xd7\x40\xe0\xc4\x67\x1c\x16\x24\x9c\xb2\x05\xa9\xef\x95\xd7\xf6\x5f\xa5\xfc\xb6\xff\x3c\x3e\xed\xef\xa3\x89\xf5\x2d\x5c\x54\xe6\x56\x49\x0c\xb7\x84\x0d\x89\x0e\x27\x9b\x6e\x28\xd0\x0d\x83\x64\xf4\xd7\x21\xdb\x66\x5f\x2b\x0f\x1e\x96\x16\x67\x81\x2d\xd9\x34\xd8\x48\xf1\x86\x01\x76\x55\xe1\x79\x6c\xdc\x2d\xf0\x77\x45\xa3\x72\x8a\x4e\xed\xc3\xf3\x98\xec\x31\x48\xa9\x67\x3d\xe6\x27\xa1\xcb\xfb\xa4\x77\x48\x29\x09\x91\x6a\x2a\x8a\x4b\x2c\xb2\x6f\x29\xbd\x54\x49\xb2\x4f\xe9\xf5\x02\x33\x83\x75\x36\xb2\x25\x2d\x0a\xc2\xa4\xbb\x62\xd1\xed\x9a\xa2\xb6\x1e\x6c\x68\x16\xc2\xc3\x8a\x3c\x28\x8e\x9c\xd2\x3e\x4d\x59\x40\x28\x6d\x59\x6f\xff\x64\x92\xaa\x4b\x0f\x3c\x14\x1a\xe8\x81\x60\x24\xf5\xdd\xbe\x90\x9a\x25\xfa\x5b\x63\x89\xe6\x5a\xb5\xda\x3d\x62\xbe\xeb\xc8\xf1\xef\xa9\x51\xc7\x92\x6b\x30\xe0\x81\x1c\xb5\x6d\x85\x81\x54\x5b\x48\x7c\x59\xec\x32\x60\x49\x9d\x75\xb3\x6e\x41\x90\x5d\xb3\x49\x61\x0e\x2f\x69\x80\x81\xf1\x3b\x81\x24\x1e\x52\xb8\x61\xd0\x56\x1a\x56\xac\x41\x9f\xc5\x08\x58\x7d\x54\xdb\x89\x10\xc7\x56\xa4\xe8\xcf\xb2\x99\xe1\xce\xce\x6c\x5e\x12\x16\xa5\x80\x74\x50\xfb\x9b\xc3\x19\xa8\xc3\x0a\x82\xab\xa4\x75\xf5\x5e\x04\xa2\xde\x42\xba\xdd\x26\x4d\xc2\x25\x4d\x62\x15\x09\xe0\x3e\x0f\x81\xf2\x23\xd9\xb4\xb1\x89\x91\x96\x3c\xbf\x2f\xe7\xf0\xf2\xdd\xbf\xfc\xbb\xd3\x51\x20\x22\x93\x25\x24\xe5\x31\x9a\x32\xb0\xc3\xdd\x5a\x37\x9b\xdc\x9f\x85\xd7\xe1\x79\x42\x7d\xcd\x73\xb7\x01\xdc\x6a\xaa\xa0\x69\xa4\xc3\x5f\xa5\x59\xfa\x44\x20\xc1\xe4\xb0\x97\x87\x45\xd5\xd0\x83\x27\x41\xb2\x57\x75\xf4\xda\x91\x53\xa5\x07\x3d\x46\x58\xe5\x00\x81\xc5\xdb\xc6\x1e\x47\xb4\x6b\x0e\x62\xe5\x45\x20\xde\xc9\x1a\x7b\x7f\xa9\xef\x41\xe4\x05\xf3\x74\x20\xa2\xe4\x32\x2c\x94\x22\xb9\x66\xd2\x8a\x4f\x6d\xb8\x71\x45\x5b\x17\x6d\x8e\x65\x5d\xbb\x4e\xc2\x62\xe2\x23\x3a\x6b\x35\xcd\xf3\xaa\x0b\x48\x7c\xd3\xe8\xbb\x4e\xac\xd3\x74\x98\x1a\x1a\x45\xfc\xba\x0b\x49\x5b\xd6\x12\x7f\x5d\x15\xdb\x2d\xb2\x07\x65\x2a\x94\xae\x4a\xcd\x70\x14\xe7\x45\x59\xad\x18\xae\xa8\xdb\x55\x9c\x7c\xf8\x8e\x3b\x7c\xb7\xae\xc6\xd7\x32\x37\x9b\x10\xd6\x93\x77\x7c\xd9\x38\x5b\x95\x35\x25\xf9\x52\x52\xaf\xd2\x75\xbf\x4c\x53\x67\xf1\x1c\x48\x9c\x91\x09\xea\xca\xc5\x8f\xed\x6b\x45\x00\x7e\x48\x12\x9f\x86\xd9\xd9\xad\x15\x2e\xfb\xb4\x6c\xd9\xa9\xac\x67\x31\x17\x98\x16\xa6\xee\x33\x52\xf8\x07\x6b\x83\x81\xb5\x02\x1b\x17\x37\xda\xc1\x32\x3a\xb6\xb4\x90\x77\xf8\xba\x3c\x18\x18\x9e\x7b\x2b\x83\x5c\x0f\x87\xe0\x84\x37\xe3\x51\xa1\xe2\x74\x5c\xa3\x93\x99\xc7\xd7\x66\xcf\xf9\x20\x2e\x5c\x49\x84\xd5\xa0\x3a\x15\x88\x7c\x41\xda\x56\x53\x4d\x68\x44\xd2\x4c\x63\x60\xe2\x6d\x16\x16\x05\x8d\x7a\x0c\x85\x76\xb4\xc7\x20\x0a\x34\xa5\x4d\x59\xa6\x18\x0f\x46\xc0\x22\xa7\x61\x04\xe9\xf3\xd4\x6a\x5a\xaa\x92\x95\x75\x28\x6d\x1f\xaf\x4f\x29\xcb\x09\x72\x64\x09\x91\x71\x20\x1e\x99\x34\x26\x50\x4d\xea\xc9\x02\xe7\x74\x18\xce\x0b\xca\x76\xe0\x51\x96\xb6\x4b\x72\x19\xa6\x60\x8b\x54\xcc\xb2\x38\xe1\xd7\xe0\x69\x49\xf3\x51\x38\x54\xbe\xb8\x1b\x6c\xc1\x9b\x6c\xb3\xed\x75\x6a\xb9\x40\x24\x8e\x37\x5f\x35\xa9\xd1\xe4\xfc\x89\x96\xdc\x39\x34\x5b\x20\x7b\xe4\x72\x12\x0f\x27\x60\x2d\xc0\xe6\x77\x99\x89\x75\x8c\xcc\x92\x79\xb1\xfc\xce\x55\x08\x82\x25\x03\xac\xa5\x87\xdf\x80\x69\x89\x0e\xbb\xba\xa2\xaa\x8a\x2d\x57\x20\xef\xa2\x3c\x56\x2b\x8e\xc8\x46\xf9\x56\x8a\x4c\x9d\x12\x63\x3e\x70\xe8\x73\x3b\xf4\xe6\xd2\xd7\xb3\xdd\xf1\xee\x73\x1b\xdc\x9b\x57\xc9\x26\x67\x17\xec\xdd\xfe\x56\x3c\x60\xf1\x6d\x84\xdd\xe5\x4f\x9b\x83\x73\xfa\xb9\x6f\x56\x88\x67\x17\xed\xb5\x57\xb2\xf8\x76\x57\x59\x3d\x9b\x46\x12\xad\xe0\xdb\x2a\xc3\x67\x65\xca\xd0\x0a\xb6\x77\x5c\x4b\x68\xd1\xf3\x56\xb0\xb3\xb5\x38\xeb\x6d\x3f\x7b\xb0\x79\x7a\xb0\x79\xfa\x6f\xb1\x79\x12\x96\x8f\xf7\x60\xe3\x5c\xe1\x34\x53\xd8\x54\xf2\xd7\x58\x47\x23\x79\xd7\xbc\x9f\x8f\x8b\xa0\xe2\xc4\x06\xe9\x78\x62\x07\x2b\x90\xe0\x40\x7b\x72\x35\x61\xd2\x53\x22\x25\xd8\xb4\x09\xc4\x7c\xcf\xd7\x86\x0f\xef\x0f\xb8\x6c\xbf\x4b\x03\x78\x74\x27\x90\xb4\x14\x9e\x2d\x96\x19\xf9\xf0\xfe\x40\xdc\x0f\xf8\x1b\x20\x1e\xae\x83\x63\x46\x5d\xf3\x24\x2b\xf0\xad\x97\x5b\xf9\xc1\xd1\xbb\x77\xaf\x0e\x8e\x0f\x8f\xde\x91\x57\x1f\x3e\x1c\x7d\x08\xc8\x81\x3a\xf6\x1d\x72\x94\x7c\x47\x1f\x51\xd2\xde\x20\x0c\x1f\xd9\x68\xf7\xfd\x6d\xd0\xfe\x6a\x9a\xf6\x5d\xbd\xc8\xe7\x87\x08\x25\x9b\x3c\x31\x47\xe6\xaf\x42\xda\xcf\x06\xc4\xb6\x05\x46\xdd\x84\xc7\x68\xb4\x28\xc2\x31\x25\x7b\x64\x7d\x5d\xbc\x2f\x64\xab\xba\xf8\xdd\xe7\xf1\x69\x9d\x94\xbe\x2c\xf6\x9c\x78\x93\x03\xa2\x86\xeb\xaf\x1f\x8f\xde\xc1\xa8\xe4\xaa\x49\x9e\x98\xae\xa2\x6d\xce\x0b\x32\x4d\x03\x81\xda\xec\xad\x1e\xcd\x63\x7e\x4d\x8d\xfb\x3b\x2d\x9a\x0e\xe9\xf1\xe1\xdb\x57\x47\x27\xc7\x01\x11\x97\xdd\x8c\xb9\x58\x23\xa7\x05\xd9\x20\x6d\xf6\x5f\x38\x9c\x30\x81\xd1\x36\x02\xe8\x08\xd7\x94\xdf\x3e\x2c\x56\x0f\x8b\xd5\x7f\xcd\x62\x05\x6f\x2d\xff\xa8\xd6\xb9\xcd\x9f\xb0\x37\x7a\x39\x7f\x8f\x0f\xd8\xa5\x1b\x20\x36\xff\xd5\xde\x0c\x07\x80\x2a\x8c\x5d\x88\x78\x59\x0b\x75\xe9\xbd\x82\x6d\x7c\xfc\xb5\x5f\xbf\xcf\xa4\x09\x2f\x3a\x48\xc7\xf9\x3c\x50\x06\xa9\x79\x84\x5c\x64\x69\x77\xc9\xc3\x79\x94\x99\x66\xe9\xf5\x34\x9b\xab\x1a\x55\x42\xc5\xe6\x4d\x12\x6d\x4c\x25\xad\x68\xc4\xf5\x01\x08\x99\xe0\xc4\x86\x12\x69\x6a\x77\xf6\x22\xcb\x92\x05\xc4\x72\x8d\xc0\xe1\x39\x5f\x24\x28\x87\x8c\xd0\xe8\xc0\xb3\x10\x1a\x19\xee\xd9\xe5\x86\x0f\x42\x1f\xb0\x49\x29\xb0\x0f\xd6\x8c\x61\xc2\x7e\xa8\x18\x84\xe9\xcb\x89\xe3\xb5\xc3\x3d\x20\xe2\xbb\x57\x22\xb1\x47\x55\x88\xfb\x02\x13\xdc\x6f\x88\xdf\x15\x66\xae\xfe\xf2\xda\x4e\xb9\xf2\x66\x18\x53\x9b\xf3\x67\xc4\xdd\x8a\x83\xe3\x23\x8b\xd6\x91\xf6\x38\xee\x8d\x4d\xe4\x45\x50\x4d\x3a\x84\xae\xce\x9d\x10\xe7\x44\xd7\xe9\x79\x47\xf3\x6b\xf3\xde\xc1\x0c\xf5\x74\xad\x14\x3e\xd2\x6b\xfa\x85\x8b\xd6\xf3\xc3\x4a\x3d\x92\xde\xd9\x6f\xd5\x9d\x22\x1e\xa7\x61\x39\xcf\xed\xee\xe0\xf4\xaa\xfe\x60\x98\xea\xfe\x28\xa8\xba\x0e\x81\xdb\x82\xe6\xed\x17\x2f\x1b\x24\x7b\x0b\x89\x14\xa6\x91\x3a\x59\x2a\x33\x88\x80\x3c\x8a\xd3\x30\xf1\x5b\x3b\x73\x1c\x3e\x5b\x52\x3c\xaf\xad\x2c\x81\xde\x20\x8a\xcc\xa3\x17\x34\xbf\x2e\x27\xfc\xc4\x7a\x7a\x1e\x83\xc8\xc8\x78\x48\x6a\x68\x9b\x08\xea\x50\x4b\x2d\x8f\x43\x10\xd1\x1c\xc7\xd9\x9c\x9a\xdc\xea\x17\x7a\xfb\xf7\xe0\x36\x44\x3b\xe9\x50\x5e\x39\x96\xf9\x13\x91\xc7\x9a\xeb\xd6\xca\xe3\xb6\x53\x20\xe7\xef\x59\x85\xbb\x3f\xee\x65\x53\x72\x7b\xa7\xeb\x9e\x68\x8a\x71\x3a\x96\x0d\xbb\xab\x48\x47\x01\x33\x6a\xe5\x39\xb8\x5d\x16\x91\xbb\x45\xf9\xd3\x18\x02\x5a\x59\xc6\x00\x02\x08\x8f\x1f\xe3\x1b\x9d\x9c\xce\x93\xa4\xe2\x65\x8b\x3e\x58\x24\xee\xe5\xbf\x79\x1e\x0c\xf8\xaa\xe2\x40\x42\xa6\xd5\x9b\x8b\x9a\xdb\x7e\x41\x7d\xe7\x4d\x4c\x87\x2f\x5f\x3d\x72\x61\xdf\x9c\x77\xed\x48\x7e\x2b\x61\x83\xb6\x2f\xe1\x38\x93\x49\x86\x59\x3a\x0c\xcb\x8e\x31\xfa\xdd\x6a\xef\x35\x95\x52\x4f\xb8\xae\xa9\x96\x7a\xf6\x6a\x4b\xab\x24\x5c\xc4\xaf\x1e\x5c\x19\x26\xa4\x82\x30\x18\x82\x1d\x02\xc7\x12\xa9\x6a\x1f\x3d\x82\xf3\x06\xb3\x15\xf5\xcb\x74\xb5\xcb\x1d\xa0\xc1\x3d\xfa\xdc\x09\xf3\xb1\x35\xbb\xb4\xfa\xf8\xdc\x28\x19\xe0\x2f\xe1\x8f\x67\x0b\xf9\x3f\x11\xfd\x13\xd7\x2f\x0a\xaf\xfd\x42\x8b\x0f\x26\xf9\xa2\xb4\x34\x8c\x6f\xbb\xbb\xcb\x66\xe6\xaf\x59\x9c\x76\x5a\x2d\x17\xb9\x7a\x0c\xc7\xd9\x8d\xd3\x09\xdf\x6e\x80\x6e\xd8\x61\xd3\xbc\xdb\xc3\x2d\xc2\x37\x35\x69\x56\x1e\x1a\x6d\x55\x24\xf4\x78\x19\xd2\xc0\x0d\xeb\x86\xd7\x0a\xdd\x9e\x55\x0b\xae\x5f\x2d\x24\x48\x6a\x67\xf3\x72\x36\x2f\x7f\xce\xc6\x5a\x5c\x0b\x0f\x3c\x68\xb6\x48\x97\x3f\xdc\xbb\x0c\x52\xcb\x4c\x30\x2d\xad\xa1\x4f\xb6\xf3\x27\x0e\xc3\x2f\xb9\x0c\x79\x9a\xd3\x68\x3e\xa4\x68\xac\xc2\xe1\xb0\x47\x84\xd3\x4a\x2c\x4f\xc2\xe1\xf0\x54\x24\x73\x99\xc8\x88\x22\xbe\x25\x97\x3f\x37\x87\xac\x5f\x4c\xe2\x51\xd9\xe9\x92\xc0\xa1\xa8\xcc\x72\x0e\xad\xc2\xe1\x50\x9e\x52\x71\x23\x6f\xce\xda\x34\xa1\x25\x95\xfd\xd0\xae\x91\xcc\x74\xce\x55\xb7\x10\x19\xe8\xfa\x4a\xbc\x27\x11\x53\x9b\x2d\xf5\x5c\x8d\xab\xf4\xa7\x70\x5f\x7a\x91\x51\x71\xbd\xf2\xe3\xf1\xd7\x60\x6b\x3f\x7f\x74\x3f\x4c\xdb\xcb\xfd\x30\xd5\x15\xdf\xaa\xb6\xb1\x33\x11\x10\x43\x03\x34\x5c\x3e\xd8\x6a\x87\xed\xec\xc9\x51\x28\xff\x50\x5e\x9f\x2a\x79\x19\x9b\xfc\x37\x78\xcc\x68\xbd\x66\xf3\xbe\x64\xac\xe5\xc6\xaf\xe5\x62\x8a\x81\x9a\x3b\xd7\x2a\x09\x28\xed\x0b\xa1\xa6\x53\x04\x70\x66\x70\xaf\x0f\x00\x7b\xad\xd2\x4c\xe1\x05\x3d\x55\xe2\x9e\xd7\x7d\x56\xd9\x01\xc3\x68\xc2\x7b\x25\x6c\xd0\x12\xf9\xc1\xaa\xbb\x11\x5e\xe6\x1d\xeb\x96\x0e\xb1\xbe\x6b\x72\x00\x7f\x57\x0f\x97\x03\xff\xd9\xe4\x5b\xce\x83\x9e\xf3\xbf\xfa\x30\x22\x38\x82\xc8\xda\x60\x40\x8e\x8f\x5e\x1e\x05\x24\xa7\xdc\x20\xab\x47\x8a\x4c\x58\xce\xa8\x2b\x2e\x6d\x8b\x13\xf2\x93\xae\x3e\x2b\x17\x97\xed\x82\xa4\x74\x48\x8b\x22\xcc\xaf\xd9\x64\x81\x78\xdb\x05\x63\xb7\x36\x78\x36\x06\xbf\xd2\xe4\x32\xcb\x3f\x73\x2d\x6f\x3a\x4f\xca\x78\x96\xa0\x38\x0c\x66\xe4\x14\xbf\x57\xa3\xc1\x63\xe2\xb5\xe1\xfe\x46\x1a\x81\x73\x1c\x46\x79\x55\xbd\x61\x43\xaa\x2b\xa3\x11\x5f\x38\xcc\x9d\x89\x2a\xd5\x97\x34\xf2\xf9\xad\x59\x67\x8d\x3b\x75\x61\xcf\x7c\xfb\x87\x2a\x58\x4b\x9c\x12\xc7\xbe\xd1\x6c\xa7\x70\xe3\xe4\xc3\xb4\xc4\x0c\xd2\x8b\xa7\x72\x0b\xa5\xf1\x0b\x86\xb7\xfb\xe4\x00\x78\xb6\xdc\x3c\xc7\x47\x0d\x9e\xa3\x84\x9e\xb0\xe8\x31\x9b\xe8\xb1\xfc\x14\xc5\x0a\x5a\x5a\x71\x62\x7c\xae\xad\x6a\x37\x62\xf5\xc3\x1d\xd3\x9a\xfe\x6a\x18\x4f\x97\xab\xf8\x85\xe8\x10\x25\xd7\x2b\x77\x5b\x15\xbc\x87\x8e\x13\x64\x37\x4a\xaf\xfa\x86\x38\xd2\x1f\xbb\x32\x5f\x0a\x21\xf8\x5f\xa5\x2a\x89\xc3\x7f\xa8\x74\x24\x67\xe4\x4f\x53\x8d\xa4\x57\xe2\x55\xb7\x2b\xcc\x39\x15\xb4\x43\xa2\x0a\xf1\x5c\x21\x90\x5b\xc1\x0e\x38\x2e\xc2\x9e\xc2\x99\x5c\xfe\xfe\xe1\x62\xf4\xe1\x62\xf4\xcf\x7d\x31\x2a\x6e\x45\xc5\x4b\xdf\xff\x8a\x90\x7d\xf7\xea\x26\x1c\xf6\x00\x8f\xc9\x41\x96\x5e\x50\x26\x8a\x42\x11\x5f\x19\xb6\xc1\xb0\x15\x80\x20\xc9\x32\xb4\x0a\x63\xe0\x30\x29\x32\x12\x26\x49\x76\x59\xf0\x58\xf0\x70\x4e\x57\xf4\xd7\x18\x22\xa9\xf7\xbf\x8d\xaf\x68\xb4\xe0\x59\x6b\xee\xb5\xc6\x9a\xb8\x50\x2d\x33\x3b\xa2\xb2\x38\xb1\x54\xfb\xcd\x8e\x79\x22\x4a\x6e\x6e\x64\x34\x76\x9d\xd1\x56\x47\xa8\xed\xae\x7d\x16\xc0\xb7\x72\x42\x43\xe2\xe7\xb2\xbc\x0d\x1d\x79\xbc\x68\x54\xc4\x8f\x21\x8e\x46\x70\xd2\xdc\x05\xec\x9b\x0e\x4e\x80\x14\x72\x1f\x3f\x64\x35\xae\x8c\x64\x04\x24\x55\x0f\xec\xb8\x98\xa6\xc9\x24\xad\xbc\xfb\xb1\xed\x60\x33\x75\xbc\x2f\xf6\x5a\x3d\x36\x08\x17\x34\x8f\x47\xe0\xce\x23\xa7\xc3\x90\x49\x1c\x14\x3a\xe6\xd1\x23\x92\x84\xff\xbe\x26\x49\x16\x46\x24\xba\x4e\xc3\x69\x3c\x24\x59\x4a\x0b\xa8\x4d\x0c\x88\xae\x48\x44\xce\xce\xd4\x31\x01\x40\x49\xf3\x7a\x59\xb9\x03\xc5\x46\x6b\x4c\xcb\x23\xb5\x47\xf6\xb8\x6d\x66\x03\xa3\xf5\xd5\x65\x5e\x01\xf0\x59\x82\x18\x12\xb9\x4b\xae\xbe\xf4\x30\x0e\xfa\x2b\x6f\x5e\x78\x76\x71\x19\x43\x60\x13\xd4\x2a\x02\x47\x10\x05\xe5\x1b\xe8\xc0\x79\x58\xc5\x75\xf7\x79\x4e\xc5\xe9\x62\x0f\xee\xef\x86\x7c\x76\xf0\xbd\xf1\x84\x5e\xf9\x4e\x0d\xf4\xa1\xa9\x95\x60\xf9\x9f\x6c\x50\xc4\x38\xf8\x14\x31\xbc\x2b\xcf\xe4\xad\xf3\x7e\x19\xf1\xfb\xb9\x88\x85\xce\x50\x89\x49\xd6\x25\x81\x9c\x6f\x02\xcc\x55\x95\x7c\xb7\x04\x9e\xd7\x75\xd0\xcc\xc0\x6a\x76\xcf\x81\x63\x53\x40\x43\xb1\x2f\x17\xa6\xcc\x30\x1e\x37\x3f\x94\x81\x9e\x25\x50\x88\xc3\x3c\xdb\xb5\xc1\xf5\x55\xb0\xd2\xad\x56\x5f\x95\xeb\xfa\x5a\x77\x1b\x8c\xa2\x94\x79\x3c\x85\xf6\x39\x9c\x03\x8b\xc9\xa4\x1d\xf8\x08\x6e\xb1\xba\x3c\xa9\xd9\x8f\x22\xfe\x28\x42\x9d\xa1\x85\x69\x44\x0a\x5a\x16\x64\x3e\x83\x0c\xb1\x19\x01\x91\x11\x97\x34\x67\x6b\x47\x76\x21\x94\x2d\xe1\xbc\xb4\xbf\xb6\x86\x1e\x46\xfc\x9c\x8d\x8b\xfd\xf2\x63\x19\xe6\xe5\x9a\x7d\xd0\x58\xd0\x64\xa4\x12\x47\xee\xb3\x65\x21\xc2\x4d\x2c\x46\xe4\x2e\x9a\x8c\x1c\xd7\x3d\xf2\x8d\xdd\x98\x96\xfc\x38\x8b\x15\xb6\x1e\xda\xc1\xf1\x82\xee\x66\x01\xcd\x23\x72\xe3\x69\xc9\x0c\x56\x4b\xdf\x27\x38\x20\x63\x4c\xcb\x8e\xf5\xe4\x47\x18\x32\x3a\x9b\x9c\xc1\x40\xbc\x9f\x81\x47\xa2\xac\x8d\x82\x6c\x60\x35\x09\xf7\xdc\x32\x51\x5a\x1d\x81\x03\x8c\x7e\xbf\x4f\x7e\x9d\x73\xf7\xbf\xac\x4e\x26\x7b\x9d\xed\x72\xc5\xbb\xc8\x9a\x37\x91\x0b\xfb\x01\xac\x35\xd3\x55\x37\xfc\x5b\x4c\x9e\xe9\xdd\x97\x72\x3b\xce\x65\xaf\x34\xf9\xd3\x1d\xd3\xea\xd3\x68\xdf\x72\xef\xab\x5f\x8f\x75\x67\x59\x92\x70\xf6\xf1\xb3\xad\xe0\x4d\x0d\x66\xf3\xa5\x3a\x11\x81\x53\xdb\xf4\xad\xb2\xc2\x35\x98\x25\xab\x60\x17\x31\xa2\x99\x33\xa6\xd2\xc6\x82\xb1\x9e\xec\xab\x6f\x10\x7c\x8f\xa6\x7c\x3c\x91\x35\xde\xc8\x37\xe5\x8e\xdb\x71\x86\xb6\x52\x86\xae\xe9\xb3\xeb\xe7\x56\x82\x46\x12\xc8\x42\x2e\xeb\xdc\x89\x3c\x77\x63\xd2\xca\xe3\x00\x68\x93\xed\x82\x9a\x09\x9e\xf7\x59\x92\x30\x39\xa3\x5b\xc2\x79\x30\xe0\x45\xd8\x3e\x8d\x4e\x69\x5a\xc2\x96\xb3\xcf\x38\x0e\xba\xa6\xd7\x92\x99\xb0\xb3\x3f\xe5\x94\x02\x76\x3c\x8c\xce\x7a\xf2\x86\xca\x48\xee\x69\x66\x14\x39\xd8\x7b\x11\x3f\x1f\x06\xfe\x65\x8b\xb5\x8c\x23\xe8\xb0\xb8\xa5\x93\xf5\x88\x13\xd3\x43\x4e\x37\xcf\xe5\x40\x4f\xec\xa6\x0e\x72\x0a\x7d\x02\x73\xed\x03\xcf\x3b\x47\x10\x76\xfc\x00\x1b\xdd\xb7\x1a\xf4\x40\x07\x7c\xab\x9c\x94\x55\x1e\x75\x55\x9e\xf5\xf8\xcf\xd4\xcc\xc6\x20\x53\x02\x52\xe9\x27\xbe\xd2\x18\x53\x2b\x9b\x5a\x0d\xb6\x54\x5f\x04\xed\x90\xc1\x4c\x40\x90\x72\xe4\xdd\x07\x63\x6a\x86\x08\xc3\x1a\x95\x21\x96\xdc\x83\xaa\x7c\x2d\xf6\x9c\x2c\x7c\xeb\xa4\x7e\x57\xb6\xbb\x9f\xd2\x4b\x71\xe9\x84\x69\x80\x5d\x84\x71\x21\x19\x47\x86\x47\x3c\xbf\x70\x5c\x32\xed\x3b\xc3\x73\x8f\x9a\x3b\x3c\x5f\x2a\x07\x89\x90\xc8\x62\x5f\x58\xc3\xbd\x96\x1f\x52\x57\xbc\xd4\x94\xf5\x37\xa3\xfe\xd8\xd9\x98\xda\x8c\x09\x22\xd7\xfd\x1f\xf6\xd4\x90\x53\xb8\x63\x60\x7b\x8e\x19\x4d\x23\xb0\x6f\x53\x83\x1c\x16\x70\xd0\x92\x16\x8c\x43\x95\x0b\x18\x8d\x28\x1b\x01\x30\x2b\xc4\xb4\x9e\x2e\x3f\x5c\x51\xb5\xcf\xd3\xb0\x28\xe2\x71\x4a\xa3\xbe\xdb\x46\x9b\xa3\x7c\x32\xd9\x37\x3a\x4a\xc7\x1a\x9e\x2f\x19\x20\x6f\x35\xd8\x62\x0c\xf5\x44\x9b\x13\x93\x04\x6b\x87\x61\x92\xd3\x30\xba\xd6\xcf\xd5\xb5\xa2\x58\xdc\x9d\xd3\x4c\x45\x56\x6a\xaf\xcb\xfa\x15\x8f\x3a\x56\x6d\xca\xf5\xdb\xa6\xeb\x88\x4b\xcf\x4c\x2e\xc5\x7d\xde\x20\x99\x16\x5d\x66\xa2\x6f\xf1\x74\x4a\xa3\x38\x2c\x69\x72\x6d\x57\x2b\xd8\x7d\xd8\x94\xb7\x4d\xed\x04\xd0\x77\x2a\x1c\x4d\xf8\x9c\x55\xe1\x93\x6c\x2e\xf2\xd9\xf2\xc3\x3b\x83\xae\x72\x2f\x9d\xd8\x1c\xf6\x62\x6e\xca\x36\x6e\xd7\x87\xda\x21\x8f\x63\x0c\xe1\x88\x7b\x63\x8d\x93\xb8\x2d\x75\x3b\x82\x68\x8d\xae\x84\x17\x4d\x3b\x82\xd7\xdd\xe5\xfd\x71\x34\x87\x6c\x26\x15\x07\xb3\x23\x4b\xe4\x3b\x3c\x2c\x9f\x66\x17\xf2\x48\x93\x84\xc5\x75\x3a\x54\x9b\x1f\x9f\x62\xe4\x93\xdb\xf3\x14\x5e\x4e\x1b\x04\x40\x3a\x86\x45\x2d\x47\x76\x61\x3b\xf8\x55\x30\x1b\x8a\xbf\x43\xd1\xb1\x15\x6f\xdd\xe7\x3b\xc1\xd1\x29\xbc\x16\x27\xaa\xa4\xad\x94\x5b\x2b\x6a\x85\x19\xe5\x60\x40\x0e\x47\x5a\x32\xc6\x85\x7a\xd6\x77\x4d\x85\xf7\x15\x12\x97\x44\x3b\xe7\xd2\xe5\x2e\x27\x14\x6c\x31\x44\xef\xbb\x84\x0b\xd5\x82\xc4\xa5\x29\x56\xbd\x0b\xb5\xc3\xec\x6a\x9a\xf9\x56\x0f\x1f\xf9\x05\x46\x7b\x40\xf1\x7a\x0c\x71\x51\x3c\xf2\xed\x2b\xba\xe7\xb1\xf4\xf1\x9c\xda\xc6\x7b\x49\x36\xae\xaa\x97\x58\x82\xa9\x66\x6f\x01\x58\x02\xb6\x26\x54\x78\xe1\xf3\x87\x29\x31\x41\x9c\x0d\x80\xdd\xb1\xe6\x7c\xe4\x78\x99\x12\x8a\xf8\xe1\x4b\x9e\x10\x08\x1e\xeb\x74\xfb\x7c\x45\x1e\x86\xd2\x4f\x21\x78\x55\xa1\x11\x61\xb3\x7b\x92\x67\x69\x36\x2f\x94\xd3\x42\x61\x17\xc0\x56\x7b\xdb\x11\x11\x47\x23\x94\xdd\xb6\xd7\xba\x16\x5c\x4a\x64\xda\x48\xaf\x09\x03\xb9\x26\x74\x0c\xc3\xf2\x31\xbc\xc3\xb8\x2d\x96\xc8\x63\xe7\x8a\x94\xd3\xd6\x09\xf8\x56\x73\x41\xba\x38\xeb\xed\x6c\x36\xb9\x02\x6d\xcf\x0b\x7e\x2e\x3e\x2c\xdb\x6b\x0f\x17\xa2\x0f\x17\xa2\xff\xc1\x17\xa2\xfa\xa5\x28\x3a\xb2\xbe\xcd\x73\x51\x01\xbc\xc2\x4d\xa6\x2f\xe2\x5b\xe3\x17\xa6\xe9\x28\x1e\x7b\xe1\x78\x96\x04\x3c\x3c\x0f\xad\x50\x2e\xf1\x79\x98\x7a\xc2\xb3\xc0\x69\x32\x0f\x2f\xc5\x4d\xa4\xf9\x65\xe6\x79\x3c\x16\x0e\x0c\x2c\x23\x46\x0e\xf4\x22\x1e\x5b\x87\xfa\xd8\x98\x91\x9f\x38\xdf\x70\x88\x1b\x05\xbb\x30\x7d\x56\xe9\x74\x6c\x88\x0b\xe7\x8c\x15\x75\x18\x5a\x11\x6f\x9d\xf7\x15\x5a\x99\xa9\xb2\x12\x6c\x57\x1d\x02\xc5\xc5\xfb\x9c\x8a\x6b\x50\x74\x3b\x61\xe0\x3e\xd7\xe9\x56\x05\xe7\xb8\x04\xdb\x48\x08\xa7\xf7\xe4\xe6\xc6\xcd\x13\x7b\x53\x7f\x26\x0d\xf3\x24\x66\x45\x51\xd3\xd2\xd9\xbc\x7c\x49\x47\xe1\x3c\xf1\x5e\x9c\x2c\x6b\x23\x5b\x91\xed\x7a\xd4\x95\xaf\x37\x68\x0b\x63\x99\x7e\x84\x6a\xf4\x78\x9e\xaa\xbe\xc7\xc1\x4d\xb0\x7a\xf1\x5b\x34\xdf\x7e\xd0\xc5\x15\x14\x86\xa5\x62\x8c\x8d\x4a\x3d\x08\x51\xb6\x87\x0e\x92\xb7\xde\xd0\x2b\x4f\xcf\xc5\xac\xe2\x9d\x2d\x90\x4d\x64\x36\x22\xa1\xe1\x19\x10\xdc\x4e\x2a\x3b\x02\x65\x17\xc0\xe6\xdd\x9b\x57\xff\xb0\xa6\x1b\xe0\x60\x7a\xb1\x77\xa2\xc9\xb3\x7c\xc3\xb3\xae\x63\xf7\x2e\xaf\xc8\xe5\x69\xbf\x8b\xd3\x1b\xed\xfb\x8b\x71\x79\x0c\xd7\x7f\xe8\x0a\x16\x3e\x6f\x6e\x2c\x1e\xda\x1f\x42\xb4\x05\xe4\xf6\x0c\xc3\x7b\xfc\x6d\x49\xb4\xd0\x26\xe1\x84\xca\x7f\xf5\x68\xea\x41\x18\x75\x99\x89\x20\xd1\x71\x49\xa6\xf1\x78\xc2\x15\x47\xe5\xb3\x58\x1c\x52\x39\x35\x97\xd9\xd2\x7a\xcb\xcc\xac\xf5\xb4\x3d\x0d\xaf\x5e\x53\xfa\x9e\xe6\x3f\x85\x45\xbb\x47\xd8\xf7\xfb\x3c\xce\xf2\xb8\xbc\x36\xd2\xc7\x61\xf1\x3e\x8f\x87\x54\xfc\x66\xff\xc1\x30\xb3\x1f\x69\x96\x0e\xa9\xef\x11\xe3\x67\x7a\x5d\xf3\x8c\xf1\x33\xbd\x6e\xfa\x90\x11\x30\x39\xb4\xe6\x18\xf6\x90\xdd\xc5\x4b\x3a\x8c\xa7\x61\xd2\xc1\x00\xee\x43\x32\xf3\xb2\xf5\x6b\x33\x3b\xf2\xb8\x79\xdf\x3c\xef\x43\x7d\xff\xac\x7f\x5b\xee\x7e\xe0\xeb\x3f\x22\x5f\x0b\xa5\xc8\x61\x6c\xb8\x7f\x95\x21\x84\x04\x57\x7b\x55\xa5\xc6\xfc\x7c\x65\xaa\x47\x22\x7d\xcd\xd0\x89\x96\x72\x70\x79\xd5\xfd\xa2\x4e\x06\xaf\xfa\x78\x39\x5d\x97\xbb\x73\x7d\x22\x66\x02\x28\x07\x19\x99\xa4\x9f\x09\xa0\x9e\x80\xb0\x74\x44\x0b\x78\x6c\xe6\x47\xef\x40\x79\xeb\xb0\xa1\xe4\xe1\xdf\x55\x1f\x58\xca\x5f\x08\xb2\x34\xe4\x38\x2c\xfc\x70\xe3\xb0\x30\xa0\x80\x7d\x11\xa8\x56\x15\x51\xbe\xd1\x55\x3c\x37\x4c\x46\xd5\x5c\x6d\x83\x55\xe0\xc7\x30\x86\x97\x4f\x55\x93\x33\xeb\xea\x6b\x74\xc1\xab\x6b\x76\x60\x8d\x16\x94\x57\x7d\x69\xf8\xe7\x45\x80\x5f\x19\xcb\x53\x88\xab\x95\xa7\x8d\x0c\xcc\x73\x9b\xe9\x23\x62\x04\xd5\xce\x22\x15\xb2\x6a\x95\xa9\x64\x23\xb6\x3c\xd6\xe0\x58\x43\x3a\xb6\xd0\x92\xb9\xe5\x83\x72\xf9\xd3\x03\xa5\x59\x4f\x66\x36\x98\x6a\x95\xa0\xd5\x55\x56\x4c\x3a\x15\x02\x67\x3e\x9d\x27\x61\x19\x5f\xd0\x9f\xc2\xe2\xa4\x80\x27\x7d\x55\xa8\x1c\x58\x0b\xd7\x78\x29\x86\xb1\x51\x0e\xf5\x9d\x8e\x46\x74\x28\x30\xf3\x99\x5b\x31\x1d\xaa\x0b\xf8\xf8\xb9\x12\xda\x9e\x94\xa6\xb5\x88\x2c\x96\x64\x63\xdb\xf8\x52\x67\xa0\x38\x42\xce\xe9\x20\x1c\xf1\x79\xcf\x06\x3d\xef\x93\x19\xec\xb2\x83\x40\x51\x53\xa3\x79\x08\x4c\xd6\x7c\xe6\xc1\xc6\xa9\x76\xb2\x01\xc2\x06\x53\xcd\xc4\x84\x4d\x8c\x00\x83\xf6\xd8\x4d\x94\x6f\x26\x70\x52\x28\xce\x1f\xf0\xd6\xb0\x7f\x1e\x16\x74\xa9\x6c\xf4\x81\xfa\xd8\xc0\x03\x67\x30\x00\xcf\x1f\x87\xc5\xcf\xf1\x34\x2e\x3d\xfc\x6b\x02\x88\xb2\x2a\xb1\x82\xe9\x8d\x7c\xa3\x4c\x11\xff\xdb\xb7\xda\xe9\x4c\x03\xba\x8c\xa7\xb4\x28\xc3\xe9\xac\xb2\x88\x82\xf0\x97\x7b\x17\xa6\xd9\xf2\xb2\x0c\x4a\x4f\x4c\x9e\x99\x56\x89\x3d\x23\xbb\x0a\xb5\x3a\x93\x41\x8d\x8a\xe2\xd1\x28\x1e\xce\x13\x78\x17\x54\x35\x52\x1a\xc8\xec\x50\x56\x86\xc9\xcb\x26\x08\x2c\x48\xac\x75\x9b\x33\x5d\x80\x6b\x19\x69\xce\x77\x37\xdb\xd5\x55\xe3\x92\x4e\xbb\xf6\x83\x40\xc7\x2c\x13\xa0\xdc\x0b\x70\x43\x2a\xf8\xb4\x3e\x5e\x70\x99\x78\x38\xe7\x67\x3a\x48\x38\x98\x73\xfc\xd5\x2c\x1b\x4e\x3e\x96\x61\x59\xd4\x4e\x74\xca\xc0\x48\xc1\xe0\x6c\x47\x1d\x68\xce\x9b\xc7\x77\x1e\xd4\x78\xe6\x23\x77\x1b\x95\xf3\x1e\xbc\x2b\xf0\xba\x5d\x56\xd2\x99\xd0\x73\xee\x5d\x42\x98\xd6\x7a\x61\x21\x53\xc3\xf2\x47\xa4\x7e\xac\x69\xa4\xe1\x80\x65\x5e\x84\x05\xfd\x40\x2f\xc3\x3c\xfa\x85\xc2\x4e\xcc\xc7\x62\xd5\xe0\x16\xb6\xd7\xd4\xbf\x2a\x19\x10\x56\x99\xe3\xab\x15\xea\x37\x81\x39\x97\x0b\x8e\x70\x5c\x8c\x9b\x0c\xf1\xb1\x0c\x3f\x57\x9c\xea\x2a\xc3\x51\x00\x69\xcc\x07\x16\x46\x1f\x0f\x10\xe9\x50\x25\xae\x1c\x92\x58\x0a\x4a\xf8\xe2\x3e\x24\xa2\x57\x75\xac\x81\x61\x3c\x65\x8f\xe3\x69\xcd\x20\x20\x20\x5c\x36\xa2\x6c\x16\x5e\x2c\xad\xdb\x86\xab\xc0\x51\xdf\x06\x0b\xd0\xc4\x91\xd0\x31\xcb\x78\xeb\x5b\x2e\x6c\x10\x5c\x12\x06\xaf\xba\x4e\xc8\xc6\xf0\xc0\x4e\x1f\xeb\x0b\x69\x18\x2c\x4f\x21\x6b\x12\x16\x47\x97\xa9\x7c\xe6\xd9\x69\x9f\x5b\x13\xa3\x6d\x48\x55\x28\x62\x83\x54\xd7\x6b\x43\x22\x69\xc8\x07\x31\x09\xe3\x29\x8d\x38\x88\x5f\x01\xf0\xc0\xd9\x58\x04\x21\x99\x8c\x3f\x68\x88\xb0\xb2\x88\x83\x3b\xbb\x4c\xcb\x7a\x26\x10\x10\x76\xc9\x69\x5c\x14\xe2\x6c\xbb\xa6\x21\x18\xca\xc6\x90\xe5\xf1\x38\x4e\xa1\x95\x1f\x87\x59\x5e\xd3\x06\x1b\xd2\xc6\x34\xcb\xe2\xea\xc2\xb3\x2c\xb6\xe1\xcb\xa6\xa2\xcc\x96\x62\x06\x16\xf0\xda\xdc\xa4\xf9\x16\xa0\x5c\x27\xcd\x63\xa0\x46\x62\xb1\x7e\x91\xe4\x72\xb1\xf9\x02\x69\xe3\xac\x92\x8c\xae\x72\x02\xb9\xce\xc4\xf1\x2a\x20\x3d\x12\x9b\xc6\x08\xda\x00\x94\x6b\x10\x64\x7d\x8f\xb4\xf9\x2b\x36\xc7\x16\x8e\xa1\x3d\x8d\xcf\xc8\x9e\x5f\x94\x73\x04\xa8\x84\xd7\xf6\x45\x23\xb1\xe5\x94\x53\x1c\x29\x33\xb7\x18\xa3\x97\x6a\xd6\xdd\xe7\xf2\xe5\xc1\x5a\xbb\x84\x95\x19\xa7\xd2\xe1\xcb\x2a\xc9\xac\x21\xb0\xa0\xe5\x21\x37\xab\xb9\x98\xe7\x3f\x2c\x82\x4b\x16\x18\x53\x96\x7b\x96\x97\x3b\x2d\x0a\x8b\xdb\xf1\x63\xbd\xdc\x40\xab\xc5\x2d\xb8\xf2\xb7\x96\x1f\xab\x49\x10\x57\x86\x78\xe6\x93\x23\x08\x7c\xa2\x60\x15\xca\xbf\x89\x8b\x32\x1b\xe7\xe1\xd4\x4b\x77\xe1\x0f\x79\x22\x81\x3c\x44\xe7\x20\x16\xcd\x5d\xac\xbf\x19\xc5\x4b\x3a\xed\x0f\x2d\xf9\x80\xa5\x28\xcf\xb4\x8c\xfa\x34\xe5\x19\xc8\x9d\x08\x2a\xea\x7a\xaf\x1e\x53\x37\xf0\xe0\x58\xc3\xbb\x16\xb2\x2a\x32\xf2\xe2\xfd\xcf\xf4\xba\xe0\xe9\x9e\xfb\xa0\xae\x49\xd2\xd3\xcf\xbe\x85\x46\xe4\x74\xbd\x17\x40\x4b\xba\xce\x95\xa7\xe3\xe3\xd7\xcb\x4f\xc2\x18\xd4\x8a\x9b\x64\x17\x7b\x15\x31\x6a\x0e\xc7\xa4\xe6\x5e\x16\xfd\x22\x9c\xce\x12\xea\xbb\x09\x71\x81\x50\x2c\x35\x35\x17\xea\x85\xab\x02\x6b\x43\x48\x2d\x97\xc5\xfb\x0a\xc2\x65\x76\x3d\xdf\xf6\x2a\x27\x94\x8d\x64\x75\x4e\xfd\x1b\xbd\x2e\x8e\x65\xa7\xef\xc2\xa5\x06\xa2\xaa\x41\x01\xff\x95\xf4\x52\x78\xb9\x4c\xe9\xa5\xe0\x59\xe9\x2d\x6d\x25\x0e\x16\x88\x4e\xed\x91\xfb\x0c\xee\xcf\x04\x0f\x7b\x59\x58\x94\xac\x27\xcb\xdf\xe1\xa4\xf7\xbe\x68\x63\x61\xfb\x03\x10\x68\xa5\x49\xbf\x9c\x62\x62\x66\xbe\xff\x58\xbf\x76\x3b\x14\x7b\x9d\x64\x61\xd5\x34\x47\xc8\xea\x08\x36\x8d\x53\xa1\x14\x6d\xea\xf7\x82\xd3\xf0\xca\x4d\x84\x9d\xf7\x81\x58\x18\x36\x6f\x41\x52\x40\x62\x2a\x60\x9a\xaa\xbb\x08\xa8\x6a\xf5\x91\x54\x96\xb0\x4c\x76\xa8\xf6\xef\x91\x4d\x72\x73\xa3\xfa\xf3\x23\x54\x65\xbc\x5f\x54\x3d\x65\x39\x12\xc7\x02\xe3\x92\xdd\x96\xb8\xc4\xf7\x0f\x2e\x2e\x45\x20\x14\x7f\x56\xa2\x42\x84\xda\xd8\x23\xc8\x50\x63\x81\xfc\x1a\x2a\xdc\x7b\xb2\x61\xf8\x7a\x09\xf8\x66\xb3\xbf\xe9\x35\xc7\xd6\xe8\x1f\x93\x2d\xfa\x3d\x19\x68\x6c\x4f\x14\xb2\x1a\x6e\xfb\x3b\xdf\xa3\x66\x39\x03\x7c\x99\xc7\xa3\x25\x07\xb2\x17\x2e\xfc\x8a\x2b\x4f\x5d\x8d\xf7\xbb\x20\x37\x5a\x9a\x1c\xb8\xae\x15\xe6\x59\x02\xad\xbc\x26\x41\x21\xef\xb2\x84\xdb\xd8\x78\x75\x32\xd1\x69\xad\xca\x2b\x66\x3c\x4b\x89\xf4\x3a\xdc\xe0\xbe\x2e\xc9\xc6\xde\x8b\x39\x7c\x49\xe8\x63\x8e\x24\x1b\x6b\x8b\x5a\x97\x11\x00\xaf\xc1\x0b\x18\x21\x1e\x7b\xf4\x92\x21\x1e\xb1\x2f\xe3\x9e\x5a\xf5\xdd\xca\xf0\x8c\xb0\x5d\x74\x17\xe3\x74\x2e\xa2\x0d\xc4\x0d\x6e\xb4\xbd\x48\x8c\x2a\x92\x6c\xec\x41\x2d\x53\x2b\x50\xaa\x42\xe6\x98\xc2\xeb\x8c\xe5\x46\x70\x97\x93\xb8\x98\xd1\x9c\xcc\xb2\xa2\xbc\x85\x15\xdc\xfb\xac\xa8\x37\x74\x30\xcc\xdf\xaa\x07\xdb\xb0\x7f\x33\x90\xe2\x81\x66\x8d\x54\x9e\x1e\x06\x03\x68\x74\x7f\x16\x5e\x83\xab\xa4\x3d\xc3\xf2\x15\x67\x09\x22\x43\x52\x59\x26\x5e\x13\x2c\x99\x89\x61\x2f\xb3\xfc\xf3\x71\xf6\x3e\xcf\x2e\x68\x75\x19\x04\x84\xcb\xce\x84\x11\x4b\x75\x41\x09\x81\xf4\xdb\x91\xf4\xc5\x42\x6c\xe7\x28\x5c\x4e\xf0\x46\x72\xc7\xe9\x58\x42\xa0\x74\xb2\x67\x7c\x3d\x27\xa7\xe8\xf3\x8c\x04\xea\x65\xe2\x42\xd7\xca\xcd\xea\xb9\x85\x7d\x92\x64\x97\xe0\x29\x4a\x9a\x2a\xd6\xa1\xaf\xf7\x6c\x34\x18\x48\x66\x22\x59\x9a\x5c\xf3\x08\xcf\xa5\xe1\x70\x49\x3a\x3d\xe2\xce\x8d\x7c\xbe\xba\xa4\xe7\x23\x12\xd8\x7e\xb8\xb0\xcf\x23\x5b\xa0\xb1\x36\x36\x92\x5d\xea\x89\x07\xf0\xbf\x70\x3c\xe1\x95\x66\xcb\x38\xbd\xc9\x62\x56\xcf\xd8\x82\xaf\x81\xbe\xf4\x6a\x16\xe7\xd7\x9e\x19\x8f\x72\x31\xbb\x15\xd4\xab\xf6\xa8\xbc\xaa\x29\x60\x81\x7a\x26\x00\x70\xb6\xef\xbe\xcb\x82\xe8\xee\xfa\x66\xe5\x87\xf0\x52\xb2\x8c\x48\xf1\x82\x21\xf4\xfb\xc5\x30\x8e\xed\xe9\x2b\xcb\xe0\x13\x8b\xbf\x16\x82\x70\x0a\x0e\xed\x41\xf5\x3c\x54\x15\x40\x84\xc4\x59\x98\x17\xd4\x27\x1c\x06\x83\x55\x66\x04\xcc\x4d\x3c\x1b\x2b\x27\xa3\x9e\x6e\x77\x98\x49\x96\x65\x3f\x27\x51\x33\xfe\x57\x42\xd5\x36\xb2\xf5\xc5\x3f\xc7\xda\x7d\xcc\x5f\xe6\xb0\xbd\xd0\xe1\x79\x98\x76\x74\x64\x73\x49\x00\x06\xd1\x8f\x0b\xd0\xd0\x3a\xa0\xd5\x88\x94\x97\x71\x0e\x7b\x27\x8f\x31\xad\x08\x12\x02\x80\x02\x63\xa7\xeb\xbc\x8b\xc0\xb6\x07\x43\xd9\x72\xd5\x02\x0f\x5a\x23\x0e\x8d\x07\x51\x03\x14\xa2\x65\x26\x26\xf8\xd7\x79\x16\x2a\x22\x85\x4a\xd8\xb6\x50\x93\xf0\x9d\xc9\x75\x3a\x8c\x53\xbf\xb6\x22\x42\x73\xa2\x33\xb8\x75\x33\x89\xb8\x91\x0a\x0c\x55\x1e\xe2\x1a\x80\x95\x40\x9c\x8e\x61\xcb\xe6\xb5\x58\x73\xc1\xcc\xe8\x10\x22\x50\xc3\x12\x04\x18\xca\x2c\x3f\x89\xc7\x13\x5a\x2c\x2b\x8f\xa1\x10\xef\x88\xdc\xcf\x69\x76\x99\x7e\x2c\xc3\x92\xfa\x22\x05\xa1\xdc\xea\x0a\x30\x8a\x5d\x1b\xc3\x6c\x9e\x24\x34\x5a\x86\x02\x43\x55\x58\xaf\xe9\x80\x11\x15\x31\x81\x97\xbd\x89\x0a\x96\x42\xf4\x34\x9e\x1a\x04\x4b\x4a\x1a\xcf\x65\x02\x4f\x1a\x82\xf5\x99\xeb\x04\xd5\x59\xa8\xa4\x2d\x4b\x02\x7f\x32\x2a\x61\xac\x7c\x81\x27\x8d\xc3\x56\xbd\xa8\x0b\x2a\x73\x70\x39\x7f\x87\xaa\xf3\x2a\xca\xda\x66\xb6\x1e\x14\x36\x88\xd1\x7a\xc3\x8a\x30\xf0\xa6\x62\x78\xbc\xab\x09\x3c\x69\x18\xd6\x22\xa3\x27\x11\x43\xdb\x52\x28\xa8\x48\xc7\x65\x3c\xe6\x50\x41\x75\x96\xd3\x6f\xe3\x8c\x38\xa8\xcc\xc1\xe5\xea\x76\xf8\x41\x03\x18\x8c\xcb\x39\xb3\x0f\xaa\x32\x0c\x3a\x99\xf7\xc5\x81\x3f\xd9\x2d\xe1\xb6\xd3\x4e\xc7\x65\x8c\xed\x75\xe0\x4b\xb4\xa0\xad\xb3\xcb\xa0\x32\xc7\x33\x0a\xe8\x08\x2f\xa8\xcc\x31\x29\xe7\xdc\x77\x05\xd5\x59\xfe\x92\x2e\x3d\xbc\x77\x8b\x0b\xe7\xd1\x3f\x7f\xa1\xd4\x0a\xb6\xbe\xab\x8a\x64\xc1\x14\x86\x56\xb0\xb3\xb3\x38\xeb\xed\x6c\x3d\xb8\x41\x7f\x78\xf5\xff\x5f\xf3\xea\x5f\x70\xfa\x9d\x42\x44\xa3\x07\xfc\xcd\x63\x3f\x37\x7c\xea\x0f\x6e\xd4\x2c\xd7\xe5\x3c\xed\x2b\x04\x91\x6e\x1e\xf6\x39\x4c\x92\x41\x41\xd3\xe8\xd8\x7c\x0b\x27\xbb\xaa\xe8\xea\x06\x83\x96\x5e\x89\x8c\x0d\xd2\xa8\x9c\xd6\x06\x81\x1e\x95\x53\x06\x5f\x4e\x91\x3f\xa8\x4f\x5c\x95\x12\x41\x8a\x51\xc8\xe7\x5b\x04\x10\xd6\x48\x85\x2e\x82\xb1\xf2\xa4\xbb\xa1\x1d\x66\x69\x51\x86\x70\x88\x00\x38\xe5\x37\x86\x99\x85\xd7\xe1\x79\x42\x25\x88\xf8\xc4\x10\xf7\x12\xc0\x9a\xad\x0f\xf6\x60\x18\xa1\xce\xe0\x61\xa9\xf6\x01\x88\xf7\xb1\xf9\xb8\xf0\x59\x37\xe0\xd8\x66\x10\x9f\xac\x3a\xa2\x99\xdc\x51\x32\x98\x59\x36\xeb\x74\x77\xc1\x91\x38\xc8\x7a\xee\xb5\x2e\x1f\x17\x3c\x4a\xf5\xba\xd8\x2a\x34\x6b\x30\x56\xfd\x6b\x1b\x8d\x9b\xf7\xa3\xc3\x4a\x32\xe7\xd1\x23\xa2\x4e\x07\xc5\x65\xa5\xdb\x39\x7f\xdf\x6c\xe7\xd7\x35\x9b\x92\x8e\xa6\x43\x43\x42\x38\x41\xc8\x84\x27\x7c\x36\x29\x91\x6b\x44\x61\x18\x00\xa7\x70\x32\x9a\x1b\x5b\x7f\x86\x59\x9e\xbb\x21\xc9\xc4\x3d\x12\xdd\xcf\xc7\x85\xc7\x46\x46\x61\x80\x3c\xd8\xaf\x17\xe4\x0b\xec\xd6\x17\xac\xbe\xb8\x14\x4e\xc1\x8c\xa8\x65\x9e\xa1\xc2\xf5\x54\x8e\x91\x3e\x52\xe1\x50\x40\x22\xe7\x31\x71\xa8\x09\x3f\x18\x48\xef\x6f\x70\xfc\x68\xc4\x03\x80\xc5\x13\x82\x50\x29\x2a\xc0\x52\x1b\x82\xef\xc8\x3c\xbc\x2e\xcc\x9b\xbd\xf5\x8e\xe6\x6a\x39\xec\x5d\x15\xd2\xb6\x4b\x1e\x3d\x32\xee\x8d\x40\x0d\x30\x0f\x91\x05\x38\x0f\x4f\x59\x0b\xaf\x4d\xcd\x8c\x32\x56\x81\xae\x7b\x43\xa9\xa8\x23\x19\x71\x7d\x6f\xaf\x8a\x91\x4d\xd7\x77\x79\x76\x29\x56\x94\xfe\x21\x3f\x65\xe1\x2d\x38\x1a\xc9\x51\x63\x68\x3b\x8e\x47\xea\xba\x10\x8e\xf2\x08\x10\x1e\xb9\x63\x56\x31\x82\x90\x67\xef\x39\x98\x87\xbd\x9c\x45\x43\x87\x6e\xad\x08\xe7\x18\x26\xaa\x56\xfd\xe6\xbf\x96\xf3\x54\xfd\xb5\x6c\xa7\x9d\xd6\x4a\x37\xbc\x2b\x09\x8c\x55\xe5\x85\xae\xce\x2b\x37\xcd\x43\xb2\xb8\x30\xa6\x0f\x6f\xbb\xe9\x66\xa0\xcc\xfc\x91\xa3\x65\x7e\xc4\xed\x2f\x2a\xa2\x42\xfb\x82\x0b\x0b\xc7\x67\xa8\xbb\x3d\x82\x2a\xae\x79\x3c\xef\x0f\xed\xae\x48\x7f\xbb\xe8\xee\xde\xe2\xb5\xe3\x7e\xab\x18\xef\x22\x3c\xed\x66\x8f\x7c\x27\xcf\x1e\x6b\xaa\x98\xa7\xb3\x70\xf8\xf9\x88\xdf\x7a\x18\x6e\x24\x20\xc9\x38\x89\x34\x93\x74\x13\x8c\x53\xb1\x4c\xa2\xe2\x3f\x14\xeb\xed\x91\x6d\xf2\x5c\x26\xca\x08\xba\x44\xee\x05\xb5\x39\x88\x8a\x7b\x5b\x15\x40\x17\x2b\x39\x3d\x51\xdc\x1c\x51\x71\x72\x87\xc3\x7f\x92\xe7\x32\x12\xfa\xe6\x19\x09\x7c\x41\x5e\x99\xca\x20\x9c\xee\x72\xdf\x14\x4a\xb9\xb6\x06\x99\x2d\x59\x78\x72\xf7\xfb\x7d\x39\xbf\x0f\xec\xb2\xd6\xe2\xe3\xc4\x57\x38\xe4\xcb\x5d\x12\x16\x5a\xc6\xb3\xd5\x28\x54\x18\x7a\xdc\x95\xbe\x8d\x98\x07\x13\x02\xe7\x95\x72\xd3\x15\x1a\xee\x05\xc3\x34\x32\x9d\xf0\x4b\xb0\x59\x58\x00\x4b\x4f\x28\xc7\x01\x02\x15\xc0\x05\xd9\xbc\xbc\x2b\x46\xf5\xfc\xba\xa4\x4b\xa5\x15\xb4\xca\xc7\xb0\x22\x92\x34\x13\x19\x20\x3c\x31\xa7\x33\x86\x80\x92\x3a\x7e\x6b\xd7\xbf\x6e\x4a\x1d\xcc\x72\xb7\xa1\xd6\x18\xd8\xc8\x68\xfd\x4f\x84\xdc\x34\xd4\x42\x2c\x7e\x20\x6c\xa8\xa9\x7d\xe1\x22\x58\xfd\xb1\x8b\xe9\xeb\x23\x1e\xea\x53\x4a\x69\x09\xa7\xcd\xbc\xd7\x7d\xbe\x5c\xf5\x8d\x80\x12\x7c\xa3\x72\xca\x89\x20\x50\xf7\x8c\xa6\xb9\x9e\x1b\xa1\x14\x9e\xc2\x1d\x63\x3e\xa0\x60\xb5\x8e\xaf\xd5\x26\x15\xf6\xdc\x08\x09\xae\x0c\x40\xf1\x11\xa4\x4b\x2e\xc3\x8b\x76\x8f\xbf\xae\xdd\x35\x83\x52\xf2\x46\xd3\xc8\x09\xc0\x5b\xe6\xd7\x96\x79\x0b\x02\x05\x5f\x93\xd5\xfd\x25\x86\xd5\xf5\x10\xbc\x13\x77\x9c\x18\x07\x9c\xe3\xf7\x08\xc5\x85\x50\x29\xb3\xf1\xb2\x76\xa4\xc9\xd4\x2e\x14\x4d\xf6\x95\xf6\xb2\x61\x16\x59\xba\x2a\x58\x35\xfc\x47\x4d\xb5\xa5\x73\x46\xb2\x94\x00\x14\xfe\x3c\x7e\x24\x9b\xb0\xa9\x31\xf6\x9a\xae\x76\x88\xee\xe1\x0e\xc2\x94\x3b\xfa\x4d\x23\x11\x0c\xac\xcc\x48\x9a\xa5\x4f\xe4\x46\x55\x7b\xcf\x76\x9c\x72\x79\xa7\x2b\x9e\x72\x30\x6f\xac\x71\xe8\x98\x77\xc6\x02\xdd\x52\xf0\xe6\x81\x9a\x69\x51\xc6\xd3\xb0\xa4\x3f\x85\x70\x80\xb8\x8c\xab\x10\xf8\x32\x8e\xc2\x98\xef\x83\x9b\xbe\x3e\x77\x34\x1b\x21\xd4\xaf\x65\xa3\xe3\x01\xad\x1a\x99\x0f\xb2\x1a\x4a\xb8\xb2\x19\x81\x05\x9e\x3c\x0b\x14\xfa\x01\x1e\x8a\x31\x2d\x5f\x9a\x26\x8d\x7a\x65\xb5\xd1\x2c\x1b\x2b\x81\xeb\x9e\xc7\xa9\x11\xe1\xa5\xfd\x80\x98\x99\x8e\x15\xfb\x12\xad\x59\x04\xc7\x26\x4c\x4b\xb5\x08\x84\xe2\x66\x7b\x89\x84\x8b\x4a\x3a\x23\xb6\xaf\x25\x98\x19\x13\xbc\x52\x8d\xe6\xdb\x1f\xb9\xea\xa3\xa0\xe1\x48\xb5\x5e\xa5\xb7\x70\xf6\xe8\xe9\xaa\x0c\x08\xee\x67\x06\x59\x68\xd5\x4e\x4a\xac\x8d\x7b\x78\x2c\xe3\x92\x2f\xef\x9e\x3e\xa3\x61\x1d\xcc\x67\x43\x19\x37\xa5\xe0\xbb\xe6\x65\x82\x48\x40\x57\xdb\x40\xd5\xf4\x4b\x94\xfd\x63\x4b\x25\x62\x44\xf9\x97\x60\x58\x4d\x31\x82\xd5\xe3\x31\x71\x03\x0d\x59\x27\xae\xcf\x49\x9b\x96\x93\x4f\xac\xc5\x6d\x12\xf0\x0f\x6b\x25\x69\xf7\x1c\xe5\x25\xd0\x01\x7e\x54\x9e\x0a\x4d\x24\xba\x73\xa6\xb3\x78\xc3\x65\xe0\x3b\x2e\x20\x97\x32\x83\x0c\xcb\x5f\xb5\xfc\xf0\xec\xa5\x4b\x8f\x0a\xee\xef\x1f\xe0\xd2\x50\x74\xd6\x4d\xea\x68\xdb\x2f\x58\xe6\x4b\xac\x43\xc9\x47\x7e\x3a\xad\x6a\xa9\xb0\xc8\xd9\x0f\x67\xb3\xe4\x5a\x84\x9a\x68\xc4\x58\x5d\xdb\x68\x92\x2f\x01\x56\x35\x2c\xf1\x56\xb8\x97\x8c\x03\x0f\x83\x84\x04\x4f\xa6\xb6\x8b\xd6\x90\xc8\x80\x49\x07\x3a\x5b\xed\x49\x65\xda\xd2\x19\x69\x23\x31\xa3\x3c\x88\x44\x3c\x82\x7a\x84\xc5\x5c\x83\x4f\x63\x46\x80\x56\x2e\xd2\xf5\x8c\xc7\xb1\x36\x2a\xc1\xc5\x66\x53\x53\xb8\x0a\xd0\xd5\x9a\xbd\x83\x5f\x55\xdc\x54\x91\x78\x4f\x74\x52\x65\x31\xbd\x5a\xcb\x18\x11\x2f\xc1\xeb\x83\x05\x0e\x9b\x50\x63\x9d\x02\x70\x94\xd4\x41\x27\xa8\xeb\x92\xcc\xa7\x08\xc0\x88\xc5\xef\x05\x80\xd0\xe3\xd0\x2c\x7c\x36\xe7\x05\x3d\xe5\x82\x4e\xae\x11\x5d\x5c\x16\x18\x3c\xce\x87\xf3\x24\xcc\xd7\xd7\xd7\xd7\xfd\x86\x4f\x36\x07\xed\xaa\x5b\x7d\xf3\x42\xb1\x15\x7c\x8b\xae\xf5\x8b\x49\xb8\xd3\x0a\xb6\xbe\xaf\xba\xe9\xe7\xa7\xbf\xad\x60\xfb\x99\x3f\x02\xc0\xf6\xc3\xed\xff\xc3\xed\xff\x9f\xfb\xf6\x5f\x5c\xfd\x33\x58\x11\x3b\xa4\x22\x14\xfa\xef\x16\xe4\xdc\x67\x59\x50\x6f\x08\xb0\x36\x18\x90\xcb\x2c\xff\x1c\xe6\x8c\x95\xd9\x0a\x36\x2f\xcc\x2e\x32\x86\x8b\xe2\xd1\x88\xe6\x34\x2d\x09\x4d\x2f\x0a\x28\x74\x9e\x67\x97\x05\xcd\xd7\x50\x44\xb8\xcb\x38\x8d\xb2\x4b\x38\xb1\x40\xa1\xc2\xc9\xa3\x47\x22\xa7\xff\x8f\xb7\x3f\xbf\x29\xcb\x99\x08\x36\xc8\xa5\xa6\x99\x46\xf6\xfc\xb0\x20\xfa\x44\xa4\xeb\x78\x9c\x66\x4c\x10\x24\x71\x4a\x59\x4b\xd2\x2c\xa2\x6b\xc8\x77\x88\x83\x51\x75\xfc\x6a\x9a\xb0\x9e\x89\x85\xad\xdd\x6d\x5a\xc9\x82\x53\xf2\x1f\x6f\x3e\x6c\x1b\xe8\x26\xf9\x76\xbb\x5b\x59\x4a\x6a\x0e\xac\x86\xf7\x92\x98\xae\x49\x04\xe8\x4f\x4c\xb5\x87\xf8\x6a\x3c\x1a\x2b\x6b\xa5\x32\x80\x30\xca\xe3\x25\x7f\x92\x15\x65\x0f\x9e\x2b\x66\xf3\xb2\xc7\x10\xe6\x3d\x38\x64\xbe\xcc\x72\xe1\xcd\x10\x16\x13\x06\x47\xf6\x08\xfc\x77\x73\x43\xda\x82\xd9\x93\x6c\x18\x26\x2c\x31\xf8\xee\x9b\xa7\xdf\xb4\x77\x25\xb8\x40\x28\x5e\x42\xb2\x5f\x37\x37\xfc\x75\x28\x57\xae\x0b\xfe\x46\xab\xe0\x5e\xee\x79\x24\x44\x51\x29\xd9\x53\xf5\x2f\x55\x9e\x66\x39\x9d\x31\x19\x9a\xd2\x4b\x6b\xc8\x2c\xdd\x49\x00\x7e\x40\x7b\x19\xa1\x39\xbd\xc8\xb2\x84\x86\xe9\x02\xee\x58\xd9\xfa\x2c\x35\x18\x4d\x65\x11\xd7\x0b\x6d\xf8\xcc\xba\x8c\xe0\x11\x98\xd2\x48\xef\x32\x1b\x60\x5e\x04\x32\xf4\x9c\xd4\xfc\x06\x85\x33\x12\x93\x61\x70\x03\xa8\xb3\x09\xd1\xea\x15\x74\xf9\xcd\x87\xed\x8e\xba\x3c\xe1\x9a\x16\xa2\x3c\x1a\x08\x06\x63\xb8\xc6\xb1\x10\x19\xfd\xe1\x28\x17\xdc\x63\x1b\xc7\x9a\xcd\x68\xda\x69\xbf\x3f\xfa\x78\xdc\xee\x69\x86\xe8\x71\xd2\x00\xb8\x0a\xc5\x04\x63\xfb\xe8\x91\x39\xa8\xc6\xa6\x6f\x5e\x4e\xc8\x1e\x69\xbf\x08\x8b\x78\x48\xda\x64\x03\x9a\xf0\x62\xce\xc4\x03\x42\xb1\x41\xda\x81\xba\x2a\x54\x78\xc0\x75\x0d\x78\x2d\x04\x47\x5e\xcf\x9e\xb6\xad\xfe\xeb\x40\xa4\x6f\x68\x18\xd1\xbc\xd3\xde\x07\xb9\x1a\xff\x3b\xe4\xbb\x2d\xa8\x9f\xf7\xb0\xa6\x10\xd3\x8f\x69\x5a\x3e\x61\x1b\xed\x76\x8f\xb4\x99\xe6\x1f\x0f\x01\xc5\xe0\xd7\x42\x1e\x3b\xaa\x1b\x2b\x31\x64\x4b\xd8\x95\x87\xac\xbf\x4e\x87\x68\x53\x6d\x9f\x24\xfb\x2e\x9e\x67\xe8\xfa\x5a\xb2\xa0\xf6\x36\x5c\xcc\x93\x5a\xd6\x2b\xb8\x9b\x41\xcd\x70\xf2\x2c\xcd\x66\x39\xc9\x33\x26\xaf\x76\xb8\x65\x00\xf0\xa3\x3e\xdd\xd7\x94\x4b\xa3\x0e\x3c\xbf\xe1\xee\x57\xe2\xd1\xb5\xc2\x2f\x88\x2c\x0f\xf2\x71\x9c\x51\x9f\x35\xc0\x41\x96\xa6\x54\x3c\x92\x91\x1c\xa6\x39\xd1\xb8\x5c\x94\xb5\xcb\x88\xdf\xc7\xf4\xaa\x74\x1a\x28\x60\xd1\xdb\x20\xf1\x16\xc3\x6c\x56\x5d\x93\x3e\x08\xfc\x1d\x5f\x85\x78\x96\x38\x4f\x09\x2a\x4f\x99\x80\x07\xc2\x25\x4c\xb0\xaf\x24\x4e\x0d\x27\x88\xac\xd7\xea\x3a\x52\x9d\x8b\x94\x79\x3c\x1e\xd3\x9c\x46\x24\x4b\x09\x1b\x7d\x50\x5b\x54\xc0\x39\x46\x83\x65\x0c\x03\x2d\xf0\x71\x0d\x3a\x56\x6d\xc8\x3f\x60\xbc\xb2\x6b\x48\x93\x14\x82\x83\x16\x65\x58\xd2\xe1\x24\x4c\xc7\xfe\x03\x04\xfe\x98\x44\x12\x3e\x8c\xae\xe1\x19\x07\xdc\x08\x3f\x65\x12\xc6\x16\x79\x4c\x69\xd8\xd2\xfb\xa8\x06\x1c\xa3\x01\xe5\xad\x12\xbf\xcd\x12\x19\xe6\x65\xd6\x12\x8e\x82\x3d\x99\xf7\xd6\x4a\xdd\x58\xad\xc8\x5b\x04\x5f\x6d\xd9\x17\x5b\x46\xcd\x6c\x2f\xb8\xb0\x48\xac\x17\x02\x97\xb2\x26\xb2\xa2\xaf\xa7\xde\x31\x2f\xd5\xc1\x8b\x87\x98\xc8\xf7\x2b\x01\xec\x26\xd4\x09\x01\x31\xd3\xf0\xbc\xd2\x97\xe5\xc9\x35\xe3\x77\xfe\x92\x19\x26\x17\xe3\xea\x8a\xb9\x15\x17\x02\x3f\x35\x85\xa9\x52\x02\xe4\x01\xa7\xad\x0c\xb0\xfd\x43\xda\x2e\xc9\x28\x8c\x13\x1a\xf5\xc9\x11\xdb\xa7\x5d\xc6\x6c\xef\xc1\xa4\x63\xdd\x6c\x42\x75\x7a\xc6\x42\xd3\x53\x9d\x67\xa8\xf0\xe5\x71\x14\x90\xef\xd5\x9f\x3c\xef\x63\xab\x4f\x3e\x1b\x06\xa4\xbd\xdd\xdf\x54\x87\x87\xf2\xfc\xb1\x9d\xd2\xf2\x53\x12\x17\x25\x4d\xe3\x74\xac\xb2\xd5\xe9\xe1\x99\x61\xd0\x25\x0f\xb8\xf2\x39\xf5\x0b\x45\x69\x55\xc8\x3a\xa9\x07\xc1\x39\x2e\xc0\x5d\x97\x47\x05\xc6\x6e\x9f\xa9\xb9\xad\xe0\x3b\xf6\xcb\xd0\x9f\x5b\xc1\xd6\xb7\x6c\xe7\xbf\xf3\xb0\xf3\x7f\xd8\xf9\xff\xb9\x77\xfe\xda\xee\x1f\x5e\xc8\xde\x93\xcd\xbf\xb2\xe3\xc4\x9b\xca\xf3\x78\xcc\x4d\x70\xfb\xbf\xf2\x0d\x3a\xbf\x06\x89\x7e\xa6\x23\x73\x3d\xe0\x12\xbb\xc7\x0d\x83\xb0\x8e\xae\xd6\x3a\x0e\xc1\xa5\xc5\xe5\x84\xb5\xbe\x63\xda\x67\xfd\xc0\x0b\x93\xc7\x64\xdb\x7d\xe6\x09\x06\x7f\x4c\x89\x37\x1f\xbb\x12\xff\xf3\x4b\x41\xa4\xf7\x62\x53\x17\xa6\xe4\xf0\xc5\xfe\x3b\x31\xc6\x11\xf9\xfe\x5b\x32\xcc\xa6\xb3\xb9\x88\xd3\x7f\x7e\x4d\xa6\xd9\x45\x9c\x8e\xf9\x4d\x5b\x9c\x17\x25\x79\x4a\x86\x93\x30\x87\xa5\x80\x5f\xcc\x46\xdc\x92\x4a\x5a\xab\x4b\xe8\x84\xf2\x37\x0b\x65\xc6\x2a\xe4\xb4\x2a\x48\x67\x9f\xec\x91\xad\xcd\x1e\x79\xc1\xfe\xdf\xea\x91\x7e\xbf\xdf\x23\xff\x4b\xf6\xc8\xce\x37\x5d\xb6\xd7\x21\xc5\x8c\x0e\xe3\x51\xcc\xe7\xd1\xe1\xc7\xa3\xad\x9d\x67\x5b\xcf\x6c\x0b\xb3\xb8\xc8\x20\x5d\xf4\x63\xcd\x89\x4a\xb8\xe0\x0f\xb0\x59\x43\x58\x07\xcd\x9b\x35\x7c\xb1\x2c\x14\xa9\x48\x82\x09\x3f\x1a\x26\x7e\x63\x40\x19\x62\x3c\x8e\xac\x47\xed\xfd\x76\x9f\x91\xe5\x20\x8b\xe8\x7e\xd9\xd9\x44\x87\xd6\xac\x6f\xed\xff\x75\xb2\xb9\xfc\xe3\x8f\xc4\x81\x59\xcb\xec\x64\x36\xa3\xf9\x41\x58\xe8\x93\x6c\x94\x5d\xcc\xcf\x8b\x32\xef\x3c\xed\xca\xe7\xdf\x22\x61\xb3\xf7\xd4\xba\x30\xe3\xb9\xb3\x24\x2e\x3b\xed\x76\xd7\x7c\x19\x9f\x76\x4d\xe3\xaa\x61\x16\xb1\xce\xa5\xbe\xc6\x4b\xf5\x10\x60\x7e\xdc\x23\xfb\x4c\x1f\x84\x8f\x1f\xf6\xc8\xff\x5a\x2e\xef\x07\x03\xe2\x19\x59\x31\xb0\x06\xa4\x0a\x4a\x18\x51\xf2\x84\xec\x93\x0d\xb2\xb5\x89\xcc\x8c\x7c\xbe\x65\xa5\x37\x2f\xdb\x84\x69\xd1\xed\xff\x9a\xc5\x29\xeb\xa6\x6d\xa8\x38\x9c\x43\xc4\x46\x18\xe2\xb7\x47\x2f\x19\x63\x6f\x6d\x4a\x99\x24\x0c\xfc\x80\xf3\x3d\x1c\xf7\xed\xe6\xb3\xa7\x36\xc3\x4d\xb3\xe8\xfb\x6f\xb7\x36\xab\x18\xcd\xe4\x2f\x1d\x07\x93\x73\x93\x28\x5c\xcb\x45\x39\x9d\x86\x71\xca\x8f\x8e\x58\x9e\xbe\x7a\x14\xce\xfd\x4d\xf1\x20\x80\xb5\xd9\xf2\x76\xd7\x0a\x5b\x00\xc2\x4a\x82\x29\x83\xd7\xef\x0d\x0b\x39\x5d\x25\xa8\xda\x87\x69\xc9\x23\x22\xf4\xc8\xd6\x66\x97\xfc\xff\x19\xd5\x36\x1c\x2c\x3c\x28\x82\xb0\x3e\xf7\x3d\xf7\x56\xb8\x54\x49\x8d\xcf\x18\xa7\xe5\xcf\x90\xb8\x05\x3a\xcc\x03\x61\xef\x0f\xf7\xe9\x90\x20\x9e\x3a\x08\xf1\x29\xc7\xcb\x3f\x38\x03\x1c\x2d\xd5\x3f\x08\xc2\x10\x5a\x4f\x39\xb7\xa9\x72\xf7\xd8\xb8\x9d\x94\x29\x1c\x74\x3e\x95\x8f\x73\x2c\xa6\x62\x30\xfb\x2a\xc7\x69\x7b\x88\xb2\xa4\x16\xcd\xba\xb0\x50\x62\x0d\x1f\x8a\xb1\x9c\x3e\xc2\xb8\xcc\x41\x45\x58\xbc\x90\x0e\x2a\xd0\x43\x05\x0e\xd7\x23\x5b\xcf\x90\x08\x3b\x0f\x0b\xba\xf3\x8c\xec\x41\x19\x7d\x3a\xb4\xf3\xcc\xb0\x00\x88\x22\xca\x0f\x16\x61\x0d\xec\xf0\x42\x3d\xb2\xf5\x8d\xa9\x08\xab\x76\xbe\x38\x0f\xd3\x0e\x2f\x66\x0a\x3f\x6b\x32\x0b\x1f\x38\x68\xe2\xbe\x60\x5d\x2f\x33\x63\xf5\x62\xc3\xc7\x3d\xbe\xe5\xd7\x72\x46\xf3\xb3\x24\x30\xd7\x7d\xcf\x63\x89\xa7\x59\x29\x74\xb2\x1f\xe2\x1f\x5b\x63\x50\x48\x80\x42\x42\x32\x00\xba\x62\x12\x72\x65\x0d\xd6\xb7\xab\x61\x32\x2f\x62\x50\x70\x60\xef\x18\x9f\xc7\x49\x5c\x2a\xfd\xe6\x3c\x4c\x3f\x0f\xce\xf3\x30\x1d\x4e\x48\x41\xf3\x8b\x78\x28\x17\xc0\x90\x47\x0a\x6c\xfd\x30\x88\x7f\xec\xdb\x3c\xa4\xc2\x90\x17\x72\x15\x1a\xd1\x9c\x2d\x43\x61\x32\xce\xf2\xb8\x9c\x4c\x49\x44\x8b\x61\x1e\x9f\x73\xb1\x24\xd4\x1f\x9a\xf6\x2f\xe3\xcf\xf1\x8c\x46\x71\x08\x3a\x10\xfb\x1a\x1c\xa6\x25\xcd\xb9\xe7\xf6\x30\xf9\xf4\x22\x4c\x3f\x7f\x12\x61\x0a\x3f\xf1\x71\xfd\xff\xfd\x24\x7a\x9a\x8e\x3f\xb1\x2e\x7e\x82\xa7\x44\x9f\xa2\x78\x1c\x3b\x2f\x39\xe4\xd0\xf8\x38\xf2\x5c\xae\xa9\x72\x04\xa4\x83\xa2\x32\xf3\x2c\xb3\x0d\x78\xf5\x85\x3d\x23\xcf\x2d\xb1\x28\x46\xf4\x80\xaf\x53\xed\x7f\xbc\x6a\xef\xae\x79\x65\xa6\x90\xb1\x1d\x6b\xe5\xee\x60\x04\x1b\xa4\xbd\x09\xaa\x12\xd4\x82\xad\x5d\x18\x39\x5e\x32\x6a\x90\x3d\xd2\xe1\xea\x54\xe7\xfb\xef\xc8\x13\x5d\x45\x57\xbe\x1a\x78\xb2\xed\x3a\x99\xe4\x2e\x5e\xcc\xaa\x10\x4e\x51\xe1\x92\x53\x2b\x21\x44\x10\xad\x80\xb1\xc7\x31\xdb\x04\xc4\x69\x51\xc6\xe5\xbc\x94\xc1\x36\xe3\x88\xa6\x25\x5b\xb4\xec\xc0\xcd\x1c\xcb\x61\x1a\xc5\x39\x35\xed\x17\xcc\x27\x36\x45\x4f\xea\xb2\xea\x8d\x0d\x3c\x9a\x6a\xa1\x9a\x5a\x50\x55\x4b\xd7\xd5\x5a\x45\x16\x99\x2d\xf1\x06\xe0\x34\x77\xc0\xa6\x64\x68\xbf\x3a\x7e\xc3\xc6\x41\x3e\x6e\xc1\x14\x40\xa9\xaa\x6d\x5d\x4b\x5e\x67\x75\xf2\x5a\xbe\xa4\xe3\xc4\xe5\x2b\x08\xdb\xc6\x71\xc7\x34\x48\x8e\x3b\x7a\x27\xb8\x52\xa8\xd4\x37\xd5\x5a\xe4\x39\xf7\x90\xe7\x1d\xfc\x35\x1d\xaf\x49\x29\x9d\x87\xc8\x19\x50\xad\x9e\x10\x63\xa7\x42\x31\x67\x2b\xac\xfc\x69\x8f\x42\x4b\x8f\xca\x15\x15\xa0\xe9\x95\x8f\x07\x71\x9f\x75\x54\x6f\x6f\xaf\x7a\x24\xf3\x1c\xda\x40\xdf\xf0\x61\x8d\xdb\x4b\x8b\x13\x06\xff\xf7\x8f\x57\xa7\x9b\x4f\xbe\x3f\xfb\xb2\xbd\xe8\xbc\x3a\x7e\xc3\x7e\xef\x3f\xf9\xdf\xb3\x2f\x5b\x3b\x8b\x1b\xf5\xb1\xb3\xd9\xdb\xd9\x5a\x74\xff\x67\xd0\x2f\xe1\x0c\x54\x2d\xe0\xc6\xb3\xbc\x2a\xc1\x80\xc0\xf9\xeb\xbc\xad\x15\x09\x26\x5e\x60\xc2\xe6\xdf\x4b\xb6\x97\x7a\x0a\xde\x0f\xdd\x5e\xba\x33\xc9\x22\x9c\xee\x14\x7e\xdb\xb3\xf3\x94\xdc\xdc\x54\xe5\x7d\x73\xcb\x6e\x8f\x48\x9c\x56\x74\xdc\x90\x3e\xf7\xd3\x75\xaf\x18\x69\xd4\xf9\xed\xcd\x46\x46\x9b\x5c\xa5\x64\x3d\x2d\xe6\x53\x06\x78\x52\x88\xed\xc3\x34\x8b\x9e\x7c\xff\xed\x93\xad\x4d\x95\x0d\x7b\x5c\x68\xdd\x30\x4b\x48\xe7\xf0\xe3\xd1\xe0\xf0\xd5\x01\x61\xfb\x86\x60\x7b\x73\x73\xa7\x6b\xcb\x64\x84\xd6\xdd\x85\xa2\x5c\xa7\xe3\x32\xaf\x61\xb7\xc5\x9e\x70\xbb\x47\xb6\x9b\x99\xaa\x62\xa1\x6a\x2c\x29\x84\x8e\xfb\xe4\x1f\x1f\x5e\xfd\xe4\x78\xad\x54\x05\xfc\xbd\xa9\xc4\xe8\x0e\x2a\x82\x5c\xd6\x3d\xcd\x00\x1d\x70\x69\xe8\x74\xf9\xdb\x1e\x79\xda\x25\x01\x69\xb7\x1b\xf5\x7b\x98\xc4\xf0\x8e\x4c\x35\x10\xce\x9e\xe2\xd4\xee\x1f\xa3\xc2\x4f\xfb\x7f\x3f\x7a\xfd\xcf\xa3\x0f\x7f\xb3\x47\x15\x70\x54\x8c\xa9\x8d\xdf\x3b\xb8\x1c\xe8\xce\x7d\xdf\xda\x5a\xbd\xe7\x62\x36\xf9\xf7\x25\xee\xc6\xc3\xed\x9a\x83\xc0\xe9\x5e\xe8\xd9\x87\xe0\x6b\x27\xd1\x39\x9f\xb7\x3b\x63\xd3\xe1\x76\xf8\x29\xda\xc4\x56\x6e\x65\xe4\xfe\x43\xed\x52\x8c\x1d\x2a\xdf\xa3\x98\xfb\x99\xad\x67\xdd\x1e\xd9\xde\xf4\xee\x69\x25\x75\xad\x3e\xca\xb2\xcd\xe6\x67\x85\x07\xb4\x43\xc8\xe2\x47\xfa\xf8\x58\xb1\x15\x98\x9f\x8b\xb3\xde\xce\xd3\x87\x43\xfc\x87\x43\xfc\x3f\xf7\x21\xbe\x3c\xc1\x9f\x0d\xeb\xad\xf7\xee\x60\x6f\xd7\x9a\x17\x14\x74\xf5\x61\xd9\x12\x47\xf7\xf7\xe2\xae\x87\xa3\x3a\x9c\x0d\xbd\x76\x60\xb3\xb0\x9c\xf4\x48\x4a\x0d\xdb\xef\x4f\x70\x70\xe1\x3c\x3b\x95\x17\xd5\xf2\xc1\x05\xf6\x59\x20\xac\x75\xc0\xc2\x87\xfd\xb7\x8b\x5e\x6a\x0d\xd5\xdd\x2e\x08\xc4\x52\x26\x74\xbe\x30\xc8\x40\x97\x55\x2e\x4f\xad\x62\xfd\x2c\xed\xb4\xa1\x47\x6d\xfd\xb6\xb5\x43\xbb\x86\xe5\x74\x91\x31\x01\xc6\x5f\x11\x1e\xbe\x3f\x20\xfa\x46\x99\xbf\x2d\x6c\xf7\x08\x0e\x1f\xf7\x89\x8b\x40\x71\xd5\xdd\xb1\x9d\xae\x7a\x5b\x90\x46\xb8\x7e\x54\x7d\x0d\xb2\x35\x71\x12\xfd\xf3\xe1\xc7\xe3\x57\xef\x60\xf2\x1c\x1c\xbd\x7b\xf7\xea\xe0\xf8\xf0\xe8\x1d\xf9\xf0\xea\xe3\xfb\xa3\x77\x1f\x5f\x7d\xac\xac\x34\x0a\xcb\x10\xd7\x8a\x9d\xe2\x03\xea\xc7\xc2\x7e\x70\x1a\x5e\x0d\xb3\xe9\x2c\xa1\x57\x71\x79\x1d\x90\x67\xc0\x54\x56\x03\xe1\x14\x54\x19\x20\xa8\x90\x60\xb0\xd2\x74\x3d\x2e\xf5\x85\xb1\xc1\x97\x35\xe3\xe8\x1b\xb6\x7c\x91\x6d\x34\x21\x9a\x33\x80\x15\x1d\x44\x4b\x44\x2e\x27\xf1\x70\x42\xa6\x61\x39\x9c\x08\xc5\x95\xaf\x3f\x4c\x96\x45\x46\x39\x4f\xbc\x6b\xa8\xda\x8d\xea\xa4\x1c\x81\x3a\xad\x05\xd3\x03\x17\x5c\xa0\xff\xe4\xe7\xe1\x53\x78\x14\x17\x47\x67\x6e\x20\x5c\x55\x98\xf5\x55\x80\xed\x3a\x50\x0b\x2b\xf6\x91\xf7\xb6\x40\xa1\x11\x6d\xb7\x11\x2d\x1c\x2a\x8e\xe2\x9c\x1a\xae\x00\x6c\x72\x55\xf5\x87\x75\xc5\x53\x7b\x0d\x78\x87\x8d\xa3\x65\x59\x82\xff\x22\x9a\xd0\x92\xd6\x61\xb0\x3b\x63\xd3\x06\x3f\xbf\xfe\x85\x2d\x58\xc0\x88\x82\x21\x38\x3e\x38\xd6\xe1\x46\x52\x29\xf7\x92\x43\x32\xee\xd1\x3b\x2e\xfb\x6b\x6b\x52\x0d\x34\x59\x78\xcd\x3e\xf0\x80\xa7\x98\x4c\xed\xd3\xe2\x0e\x69\x46\x66\xe1\xba\x38\x28\x58\x02\xf6\x2c\x4d\x8d\x7b\x6a\x14\x7e\xa0\xe5\xf4\x7e\xf9\xea\xc9\xc1\x9b\x93\x77\x7f\x7b\xf5\x41\xe1\x88\xe8\x70\x32\x4f\x3f\xd3\x48\x3c\x25\xe1\xcf\x44\xc5\x5f\x3f\xa7\xb3\x24\x1c\xd2\xce\xe0\x5f\x8b\xd3\x7f\xa5\xff\xca\xcf\x9e\xff\xeb\xcb\x60\xdc\x6b\x2f\x6e\x9e\x3c\xb9\xf9\xd2\xee\x82\xf7\xea\x2f\x5e\xf8\x7f\x9d\xc9\x12\xa7\xa2\xcc\x19\x2b\x74\x2a\x4b\x9d\x9d\xfa\xcb\xd9\xa5\x8c\x42\x15\x65\x74\x5d\xa8\x26\x55\x11\x2a\x23\x2e\xf7\x58\x76\x5b\x0a\x51\x83\x02\xee\x7c\x05\xa2\x23\xd9\x32\x18\xc0\xcd\x27\x15\x3e\x30\xc0\xbd\x06\x20\x58\x73\xd8\x9e\xe5\x1d\xb0\x2c\x73\xd6\x0a\x67\x33\x16\x0c\xd9\x10\xa1\x9b\x0c\x05\x5d\xdd\x54\x5b\x52\xcc\xf5\x64\xe0\x33\x00\x13\xa1\x34\xd0\x1d\x21\x98\xd0\x70\x0b\x9a\x35\x77\xe2\xe9\xc6\xec\xd9\x8d\x11\x5d\xe7\x01\xa4\xa5\xf5\x16\xf8\xbb\x4b\x87\x34\x81\x98\x0d\xf2\xe5\xa6\x51\x66\x98\xd0\x30\x97\x76\x5b\x56\x2d\x22\xd9\x9a\xcc\x7e\x20\x70\xd0\x50\x4a\x44\xbe\xe5\xcd\x2c\x6f\x2f\x73\xf8\xaf\xd6\x98\x52\xd0\x0c\xc3\x2f\x7a\x64\x6b\x73\x73\x93\x3c\xe6\x57\x32\x9e\x1b\x56\xaf\xb7\x07\x78\xac\x07\xd4\x91\xf4\x62\xd2\xa3\xa0\x82\x5f\x78\x90\x32\xf1\x98\x6f\x75\x52\xb9\x23\x66\xb1\x48\x3c\xea\x28\x73\x4a\xa7\xc1\x5c\x3c\xf4\x67\xf3\x62\x62\x9a\x09\xda\x0e\xdd\x31\xb8\xf0\xf8\xc3\xe4\xe3\x4f\x62\xf9\x0c\xa3\x08\x1c\xdb\x28\xe3\xce\xcc\x90\x97\x5a\x09\xe3\x87\xc2\xbd\x35\xbe\xd8\xca\xfd\x80\xd8\x61\xc7\x3c\x22\x82\x90\x78\xb0\x12\xcb\xbb\x20\x95\x7a\x18\xf1\x52\x61\x9e\xc7\x17\x14\x0b\xdb\x30\x52\xa3\x27\xeb\xab\x91\xae\x1e\x68\x23\x20\x82\xdf\x90\x14\xe9\x13\xf2\x89\x7a\x1c\x91\x9b\x1b\xf9\x75\xba\x79\xa6\x96\x4b\xb8\xb8\xe6\x6d\xd3\xd0\x22\xc1\x2c\xc1\x13\xb1\x32\xe7\x5d\xb8\xc8\x9e\x6a\x4d\x9d\xa2\xcb\x40\xfb\xaa\x62\x89\x5b\xae\x68\x72\x1e\xe1\x99\x4a\x2e\x27\x54\x3a\x1b\x88\xb8\x36\x0e\x9b\x2e\x38\x67\x67\x6b\x7b\x84\xc8\x2c\x98\xb8\x86\xb4\xae\x51\xa7\xda\xd1\x8f\xb2\xbc\xc3\xe8\xf2\x99\x5e\xf3\x0d\xa2\xaf\x03\xa6\xe7\x97\x8e\x1f\xc8\x0e\x70\xf4\x99\x5e\x77\x2d\x29\x50\x41\x9e\xcf\xf4\xfa\xac\xda\xa0\xb3\x9d\xa5\xe4\xf0\xfd\x41\xbb\x6b\x47\x89\xe4\x7a\x45\x0d\x4e\xc7\xb8\x42\x4f\x93\x03\xec\x78\x50\x78\xb4\x27\x68\xa7\x11\x17\xa4\x28\x63\x1e\xef\x26\x8e\x10\x53\x63\x5b\xd0\x4a\x82\xfb\x8d\x37\x3b\xd5\x9b\x24\xa9\x07\xb0\xd5\x23\xa7\xa2\x1d\x3d\xce\x05\x66\xab\xc6\x59\x4a\xc5\x79\x53\x67\xfd\x93\xad\xf2\x5f\xe6\x71\x09\x4e\x52\x2c\x69\x84\x40\xac\xdd\xd3\x27\x77\xfb\x24\xfd\x0a\xae\x57\x61\x17\xe7\x46\xde\xae\xd7\x3d\x1b\x58\xc3\xfc\x63\xe1\xa5\x1f\xd1\x7b\x15\x62\x2c\xb2\xbb\x86\xe4\x5e\x81\x44\x92\x4c\xcb\xa9\x44\x3c\xdb\xa7\xa5\xdb\x4c\xd9\xca\x08\xbd\xf5\xf5\xf5\xaa\xc6\xcc\xf9\x76\x6a\x83\xe2\x6a\xac\x35\x98\x5d\x69\xbe\x8e\xa2\x75\xd1\x32\xae\xe3\x73\xc6\xde\x8f\x38\x3e\x77\xfe\x99\xcd\xc1\x94\x5a\x3f\x29\x6b\xb5\x37\x6c\xf1\xba\xd1\x6e\x91\x02\x5b\x5f\xf7\xb1\x31\xb6\x96\x7b\xf0\x2c\x2b\x2b\x49\x31\x9f\xcd\xb2\xbc\x84\x23\x34\x7e\x1f\xfb\xfe\x80\xa8\xc3\x93\xb6\xe1\xed\xb1\x9a\x11\x1b\x3f\x47\xb8\xcd\xe4\x5b\xce\x55\x2b\x71\x94\x77\x0b\x0f\x3c\x54\x6b\x26\x8f\xbc\xe6\xda\xab\x67\xa5\x4b\x1b\xf7\xb8\x56\x53\xd0\xf1\xc4\x5e\xf1\x14\x7b\x71\xd6\xdb\xf9\xe6\xe1\xe4\xf6\xe1\xe4\xf6\xbf\xe2\xe4\x56\xbc\x9e\xb8\xd3\x9b\xeb\xfd\x30\xcf\x52\xf2\xb7\xf9\x34\xbc\x88\x0b\xf2\x43\xc8\x3e\xff\xf2\x99\x7f\xf6\xa7\xd4\x7b\xaa\x3b\x18\x90\xc3\x34\x2e\xe3\x30\x89\xff\x4d\xc9\x5f\x79\x2b\x18\xa3\x86\xa4\x00\x7b\x2b\x69\x56\x03\x1d\x65\x53\xd5\xf0\x64\xde\x87\xc3\x5b\x59\x4c\x06\xa6\x11\x31\xcd\x0e\xa3\x80\x6c\x2e\xbb\x5f\xe3\x36\x1d\xac\xfb\xb6\xef\x5c\xaf\x31\x89\xd7\x67\xae\x7e\x6a\x26\xc3\xa7\x8d\x24\x41\xa1\x26\x6d\xb6\xe3\xf1\xb4\xcb\x9f\xa0\xf4\xd0\xb1\xce\x48\xa2\x91\x59\xd2\xc1\xae\xd7\xd7\x10\xea\x01\xab\xcf\x69\xfd\x60\x4d\x90\xa7\xc2\xdf\x2e\xaf\xab\x27\x2a\x33\x3c\xa3\xf2\xac\x6e\xd5\x29\xb2\xac\xd2\x31\xd9\x51\xc6\xb9\xeb\x6d\x14\xc8\x2c\x8c\x2e\xd8\x9e\x54\x8e\x0e\x39\x7c\x09\x39\xb2\x75\x6a\xd0\x36\x36\xaa\x9c\x09\xf9\x9f\xf8\xf0\x07\x41\x0e\x1a\x9d\x2d\xdf\x00\x89\x9e\xaa\x74\xf9\xf8\x87\xff\xcf\x36\x48\xf2\x19\x50\x73\xf3\x0a\x49\x03\xb5\x59\x94\x66\x42\x7e\x83\x1c\x75\x30\xb7\x2c\x98\x9e\xe7\xf9\xb5\x55\x81\xdf\x08\x43\x92\xc1\xaa\xcf\x18\x71\x89\xca\xba\xf3\xe4\x8e\x7b\xd0\xf9\xb2\x00\x7a\xae\xea\xee\xd3\x0b\x9a\x5f\x77\xa4\xcb\xe3\x8f\x71\x3a\x4e\xe8\x5b\x4e\xf0\x2e\x09\x88\x37\x43\x63\x12\xc3\xaa\x1a\xe2\x07\x17\x03\xd8\xb5\xc2\xfb\xae\xaf\x4b\xbe\x41\x76\x42\x32\x8d\x73\xa4\x61\x41\x24\x32\xe4\xf8\xec\xed\xed\x71\xae\xc1\x40\xc2\xb7\x82\x84\x65\x7b\x6c\x06\xc6\x6f\x6f\xdb\x3e\x74\x42\x67\xb5\x1c\x47\x0e\x06\x3c\xda\xa3\x4a\x12\xae\xd7\xb1\x70\x91\xf3\xb1\x91\xd3\x78\x2e\x88\xce\xe1\xd1\xd9\x12\x71\xf4\x82\x01\x55\xfb\xf1\x16\x0d\xb7\xe4\x0b\xc7\x55\x70\xa1\x2a\x50\x49\x05\x27\xea\xc2\x61\x91\x98\x14\x1d\x29\x7b\xba\x64\x14\xd3\x24\xb2\x0c\x0c\x44\x2d\x46\x4b\x2d\x99\x83\x1b\x68\x09\x1e\xde\x34\x8b\x0d\x65\xb2\x15\xda\x41\xb2\x85\xeb\xed\xca\x11\x6f\x12\xb6\x2f\x45\x9b\xfc\x16\x22\xce\x3c\x73\x77\x74\x45\x81\x4f\xe8\x89\x4c\x0d\x7c\xf6\xa0\x06\x3e\xa8\x81\x7f\x6e\x35\x50\xbf\xc2\xe3\x93\xe6\xbe\xde\xe1\xdd\xcf\x15\x3d\x03\x79\x2b\x8f\x17\x2b\x4d\x92\x61\x9f\x28\xc2\xb1\x48\x5b\x63\xf6\x89\x76\x91\xc2\xaf\x9a\xcc\x65\x9f\xc6\xfd\x3c\xc8\x3c\x9d\xaf\x35\x83\x4d\x04\x06\x8e\xf7\x71\x9c\x4b\x6d\xee\x8c\x33\x50\x09\xee\xce\xd9\x57\xc4\xca\x31\x0e\x59\xe1\xc4\xe0\x6d\x98\x86\x63\xaa\x9f\xe0\x33\x91\xc5\x49\x61\x1c\x05\x48\x3f\x1d\x1a\x1c\xad\xf7\x53\x83\x42\x0e\xe2\x7c\xba\xc4\xca\x3d\xa2\x4c\xc2\xc4\xa9\xe9\xc4\xd3\x52\xff\xce\xc3\x82\x3b\x56\xa8\x0a\x37\x31\xa6\xe0\x8a\xd2\xb3\x48\x99\xee\xe4\x6d\xef\xa1\xb2\x4e\xb3\x3e\x60\x31\x87\x10\xa2\x8e\xca\x80\x12\x86\xcf\x50\x14\x23\x47\x31\x87\xb2\xd6\x93\x0e\x0b\x0b\xa6\xd8\xa8\x94\x65\xbe\x8c\xb9\xc7\x4d\x7d\x29\x21\xe2\x6f\x88\x65\x57\xf5\xb3\x4f\xde\x32\x51\x1e\xd3\x42\xc4\x25\x07\x7a\x38\xae\x26\x0d\xf7\x9d\x8d\xe9\x26\x3b\x75\xf3\x6e\x9e\x24\xda\xfb\x45\x8f\x69\x91\xf4\x2a\x86\x6b\x32\x1f\xed\xfe\x98\x41\x86\xfe\xf8\xb1\x75\x1c\x42\x36\x8a\xa8\x63\x07\x31\x51\xe1\x62\xcc\x7d\x18\x59\x12\x22\xe6\xc3\xfb\x03\x11\x45\xa2\x3e\x3e\x8c\xa6\x9a\x70\xe7\xca\xf9\x0e\x68\xae\x36\x9c\xf6\xab\x22\x80\x3c\x64\x80\x2e\x91\x0c\x96\x53\x49\x1e\x6a\x20\x2c\xb5\xc4\x58\xf7\xc8\xd6\x0a\xfe\xf1\x19\x7b\x7a\x4a\x5b\x1a\xa4\xf2\xab\xd8\x23\x10\x75\xbd\x2e\x4a\x14\x79\xae\x7f\x73\xde\x86\x22\x67\x4c\x18\xa0\xcf\x25\xce\xf3\x1d\xa2\x73\x69\xaf\xc2\x21\xd7\x13\x9e\xfb\xd8\xad\xdf\x29\x9a\x1e\x87\x2b\x68\xef\x09\x83\x62\x46\x5f\xc6\x24\xb4\x97\x2a\xf0\x27\x03\x9b\x9e\xe7\x5e\x00\x85\xca\x1b\x7e\x44\xd0\xc2\x17\x95\x48\xbe\x91\x92\x6c\xb8\x42\x70\xa2\x50\x4e\xdb\x46\x44\x68\x16\x66\x08\x7b\x5c\x15\xab\x88\xed\x08\x79\x65\xff\xca\x42\x9b\x00\x60\x34\x0d\x30\x20\xe4\x19\x31\x84\xd4\x26\xc5\x7f\x06\x22\x0f\x33\xe0\x5c\xa9\xe2\x28\xa3\xce\x73\x32\x3e\xe0\x70\x48\x25\xbd\xe0\x72\x7a\x9a\xba\xd6\xf9\xaf\x98\x5c\x2c\x43\x76\xed\x7c\x1e\x27\x11\x10\x4c\x74\x8a\x65\x3a\x2e\x6c\x41\xdc\x1f\x1f\xbd\x3c\x5a\x5f\x5f\x07\xe5\xbe\x5d\x90\xf9\x38\xb9\xee\x8b\x40\x61\x6c\x3b\x30\x2f\xd8\x8a\x58\xaa\x5a\x52\xe4\x35\x96\xfd\x96\x56\x34\xea\x7e\x84\x09\x0e\xc8\x50\x6f\xaa\xb7\x8c\x60\x4e\xe7\xbf\x9e\xb2\xec\xd3\xcd\xb3\x33\xa6\x74\xe1\xcf\x9b\x1b\x65\x9c\x69\x83\xf2\x1f\x5b\x50\x86\xf5\x65\xd7\x7f\x51\x64\x61\x47\x90\x7e\xea\x2a\x3a\x55\x5d\x99\xaa\x1b\x74\x6d\x58\xca\x83\x9c\xa4\xfe\x97\x57\xc4\xf1\xe4\x2d\x94\x77\xbd\x15\x5e\xc5\xd3\x33\xb1\x62\x54\xf8\x82\x11\x18\x1b\x75\xa8\xcb\x54\x27\xf5\xad\x94\xbe\x9c\x31\xa2\xad\x28\x3b\x3a\x8f\x0d\x9e\x5d\x31\x87\x17\xf5\x60\x59\xa6\xac\x1f\x2d\x6b\x19\x6f\xc0\x14\xb3\xb9\x06\x9a\xea\x2e\xd8\x77\x50\x82\x53\x58\x56\x53\x5f\xce\x32\x90\x15\x4d\x97\x3b\x6c\x94\x02\x72\x9e\x53\xb8\x0e\xfd\xf0\xfe\x40\xf9\x58\xe2\x76\x2b\xc3\x30\x55\x9a\x66\x9c\x8a\x13\x17\xbf\x37\xa7\xdc\xf5\xe6\xf8\xff\xb1\xf7\xae\xeb\x6d\xe3\xca\xa2\xe0\xef\xe4\x29\xd0\x39\xb3\xda\x52\x47\x96\x75\xb3\xec\x28\x71\xef\x9d\x38\x71\xc7\x2b\x49\x27\x13\xa7\x2f\x73\xfc\xb9\xf3\x51\x22\x64\x31\x91\x48\x6d\x92\xb2\xe5\xee\xf8\xbc\xcf\x3c\xc7\xbc\xd8\x7c\x28\xdc\x6f\x24\x25\xdb\xb9\x2d\x7b\xed\x9d\x16\xc9\x02\x50\x05\x14\x0a\x85\x42\xa1\xaa\xd9\x6c\x5e\xaa\x19\xdc\xcc\x68\x79\xd2\x8c\xc9\x8b\x3a\x04\x69\x59\xd4\x7a\x6f\x40\xf9\x55\x98\x90\xf3\x80\x1e\x75\x5e\x1d\x35\x5f\x47\xb3\x92\x1e\xab\xce\x2b\xee\xf0\x52\xf5\xec\x6f\xe7\xd6\xe8\x73\x6b\xf4\xf9\xbe\x8d\x3e\xcc\xe2\x13\x0e\xaf\x70\xec\xe7\x32\xfa\x08\x53\x8d\x6a\xf5\xa1\xc2\x49\x98\x73\x9e\x3e\xd1\xe4\x08\x21\x43\x8f\xea\x61\x99\x29\x80\x52\xe3\xf5\x43\x4f\x2a\xb0\xbb\x52\x55\xca\x6a\x0e\xc7\x7d\x76\xb2\x65\xe9\x55\x86\x06\x54\x23\x95\x2a\x8b\x0a\x03\xb2\xcc\x2d\x35\x17\x6e\x86\x9d\x59\x2e\xf0\xfe\x6c\x44\x90\x4e\x9f\xdd\x4d\x8b\xf1\x39\xeb\xc8\x9a\xc4\x92\xa8\x1b\x03\xb4\x21\xe0\x8c\x24\x19\x03\xb4\x11\x0e\xdf\xbb\xbe\x72\x05\xb1\x2b\x70\x12\x8d\x9e\xe2\x6a\x8d\x0a\x38\x67\xa3\xae\xaf\xbc\xd1\x8e\xdd\xe8\x7c\x91\x3f\xc7\xcb\x72\x32\x9f\xe3\xa5\x8f\x46\xfd\x53\x31\x81\xe5\x6d\x51\x20\x1f\x69\xee\xb6\x0c\xba\xd8\x3a\x74\x2c\xe1\xf8\x40\x34\x64\x27\x37\x18\xe9\x0d\x86\x16\x00\x9f\x78\x16\xad\xa7\x4f\xe4\x82\x45\x79\xe7\xde\xa0\x0b\xab\xd3\xee\xed\xea\x74\xbb\x3a\x7d\xdf\xab\x93\x3c\x92\xc0\xf9\x64\xad\xf3\x08\x06\x7c\xbd\x97\x0e\x3d\xa9\xfd\x5d\xb9\xfd\x5d\x87\x1f\xee\xf3\x8f\x92\x15\x93\x80\x70\xb7\x63\x03\x68\xce\x5e\x73\xb0\x91\xaf\xbd\x51\x12\x8f\xa3\x53\x0e\xa6\xe4\xb9\x51\xa1\x79\xda\x14\x0e\x76\xce\xae\xa6\x69\x07\x33\xec\x25\x87\x39\xa0\x79\xbe\x8d\xce\x80\x97\x1c\xe4\x30\x3b\xba\x88\x47\x74\x89\x51\xa1\x32\xfa\x96\x83\x11\x51\x9c\x62\x13\x88\xbd\x15\x75\xd1\xf0\x43\x2a\x44\x34\x0c\x62\xfe\x99\xc6\x34\xb4\xf0\xe1\xaf\x85\xfe\x01\x11\xd1\xaa\x9c\x15\x08\x5b\x37\xbb\x07\x08\xe6\xbf\xd6\x49\x1d\xfd\xf8\x23\x62\xbf\x9b\x60\x0d\x7c\x3d\xae\x6d\xb4\x96\x1b\x34\x30\x49\xab\x8e\xfe\x0b\xdd\xc3\xf9\x84\xac\x1e\x90\x75\xf4\xc9\xc5\xf3\x20\x9b\xdc\x43\x03\xf3\x35\x35\xe5\xde\x93\x5a\x82\x92\xdc\xe9\x20\x4d\x66\x4f\x3e\x03\xa6\x1b\x0c\x25\x25\x67\xd0\x93\x0b\x68\x98\x20\xfd\x38\x0e\x0f\x49\x39\x91\xaa\xcb\x09\x49\xe9\x10\xb0\x92\x9e\x45\x3c\x9a\xe2\xcf\x44\xc0\x6f\xa4\xad\x12\xd4\x55\x18\x2f\xd2\x7c\x7c\x14\x3a\xf7\x93\x45\x5c\xe9\x78\xe9\x1a\xe8\x70\xb6\x4d\x59\x48\x25\xc5\x03\x46\xa9\xb2\x86\xe0\x33\xe2\xff\x9b\x68\x50\x19\x0c\x6b\x10\x54\x00\x0d\x67\x81\xde\x41\x3e\xfb\xd6\xf7\x06\x90\xdd\xd7\xbf\x37\xa0\x56\x0f\x2a\xc5\x23\xec\xc4\x68\xae\x22\x33\x2f\xc1\x63\xbe\x06\x0a\xca\xd9\x36\x95\xae\x34\xbc\x05\x52\xc3\x6f\x1f\x3e\x79\xfc\xab\x91\x69\x8c\xc9\x54\x6a\x90\xa1\x97\x64\x99\x59\xe6\xf2\xee\x5d\x8a\x5d\x93\x7a\x44\x89\x3b\x33\x07\xf9\x4c\x1a\x82\x1a\x68\x43\xcd\xcb\xbc\xd1\x60\x64\x9e\xe2\x7c\xe0\x31\x77\xf2\x48\xa4\x4d\xb5\x20\xa3\xa4\xc1\x4c\x74\x5a\xe1\xb3\x60\xaa\xa5\x10\x6b\x1a\x59\xb1\xcf\x82\xa9\x15\x6a\x44\xbc\xbb\xbc\x0b\xdd\xb3\x12\x29\x2c\x8a\xdf\x3a\xc4\xb0\xa2\xeb\x90\xc3\x8a\x56\x24\xa8\xca\x5e\x94\x48\x97\x60\x0a\x1e\x9b\xa5\x3b\x27\x06\x68\xef\x9e\xb8\x98\xb2\xbe\x8b\x2d\x94\xe2\xc5\xa9\x1d\xde\x0d\xd0\xb1\x54\xa8\xe8\xc1\x1e\x0b\x92\x79\x20\xcf\xf1\x4c\x08\x35\xad\x39\x95\x27\x02\x58\xc9\x0b\x69\x9c\x60\x0d\xd4\x6a\xe8\x37\x11\x91\x46\x00\x79\xb6\xcd\x49\x1a\x9c\xe2\xc7\x79\x95\x9d\x33\x03\xf5\xf6\x91\x0b\x42\x6c\x6a\x0b\x7a\x89\xce\x3b\x2a\xb1\xf3\x04\x76\x96\xab\x74\x8b\x93\x30\x16\xba\xb1\x84\x26\x02\xe5\x25\xc7\xf8\xf8\xf9\xc7\xdb\x49\x18\x9f\xf5\x65\xfc\x4c\xc5\x91\x41\x9a\x50\x19\xaf\x46\x96\x0b\xdb\x86\x35\xc5\xa5\xdf\x2b\x99\xbc\xe8\x72\x35\xfe\x25\x4d\x14\xf3\x2e\xac\xbf\xe5\x3d\x01\x60\x56\x4f\x08\x8d\xee\x26\x7a\x42\x61\xe5\x2b\x10\xdd\xb8\xeb\xe1\xec\xd9\x3c\x9a\xd2\xcd\x5b\x29\x7b\x33\xd0\x02\x1e\xb7\x21\x78\x3f\xb4\xfc\xfc\x67\xea\x6b\x15\xf9\xd1\x2c\x66\xa1\x55\xa4\xb2\xda\x08\xb6\xaf\x38\x50\x45\x63\xc3\x87\xf0\x29\x1e\x45\xb3\x60\xea\xef\x0a\xa9\x05\x56\xec\x04\x59\xc0\xc3\x94\x5f\x2f\xc1\xba\xf2\x54\x42\xac\x3f\x11\xb2\x67\x0b\x06\xfa\x75\x21\xd1\xe5\x33\x48\xa9\xb0\x58\x78\xbc\x73\xec\x50\x57\xa2\x49\x94\xb2\x88\xf3\x6d\x7e\xbf\x26\x49\xb3\x4e\x3f\xbd\xc5\x23\x1c\xcd\x2b\xb0\xb9\x5d\xa6\x0a\x03\xd8\xa0\x57\xe5\x00\x56\x63\x65\x02\x2b\xce\xe2\x52\x29\xe6\x20\xce\x04\xac\xc2\x01\x54\x2d\xba\x26\x05\xb1\x74\x7a\x93\x0d\xd2\xdb\xe0\xbc\xfa\x14\xb7\x0b\xb8\x3b\xa2\x10\xae\x8a\x64\x23\xfd\xe0\xd0\x85\xec\xbc\xd1\x65\xd8\x56\x42\x75\x7d\x3c\xcd\x91\x72\xcd\x31\x17\x1d\xd1\x69\xbc\x02\x1d\x3a\xb4\x87\x0e\x2f\xd0\x0d\xd3\x51\x01\x79\x3f\xc6\xd7\xae\x6b\x7b\x18\x87\xb9\x75\x15\x21\x0a\x59\xfd\x9d\x88\x1a\x5f\xd6\x41\x94\xac\x05\xd7\xb6\x23\xd0\xd3\x9f\x17\xd1\xa4\x40\xba\x49\x73\x03\xac\xc3\x31\x1a\x85\x57\x92\x4a\x23\xaa\x9f\xf2\xa4\xe5\x65\xc3\x46\xa1\x9b\x3c\x93\xb9\x67\x08\xf5\x3a\x5d\xb4\x7a\x11\x79\xf9\xf2\x65\x45\x1c\xa6\x5e\x0e\x12\x35\xad\xd4\xf2\x11\x4e\xe7\xb8\x74\x79\x12\x3d\x40\xa1\x8b\x3b\xc0\x82\x29\xc0\x22\x5b\x0c\x67\x51\xfe\x47\x92\x96\x69\x49\x12\xd0\x33\xd3\x5d\xdf\x8b\x8f\xbe\x2b\xb4\xca\xa0\xbc\x4b\xb1\xa7\x3d\xf7\x16\xe7\xd9\x59\x79\x47\x73\x30\xbb\xc5\x71\x3e\x7b\xef\xf8\x5a\xe0\x49\xc0\xa1\x69\x86\xda\x8a\x0d\x53\xe0\xe2\xe6\x2d\x98\x82\x01\x86\xb3\xfc\x20\xac\xb0\xab\x04\x30\x6f\xc3\xe6\xd7\x6b\xdb\xbb\x78\x36\xc3\x71\x86\xe3\x6c\x91\xbd\x8b\x66\x95\xec\x3d\x0a\xb8\x97\x04\x1f\x54\x15\x7d\xb4\x5c\xa2\xd1\x40\x46\xcf\xe6\xc9\x68\x52\x36\x99\x15\x50\x37\xb2\x1e\x08\xc1\xde\x57\xdc\xef\x41\xbd\x47\x79\x90\x57\xe0\x0a\x09\xeb\xe7\x49\x17\xc8\xe7\xd8\xdb\x5a\x9b\x04\x89\x89\x67\x73\x60\x39\xc2\x48\x13\x70\x43\x7d\x27\x4c\x9e\xda\xdb\xfd\x24\xd4\xc1\x00\x61\xed\x0d\x58\x01\x8c\x42\xcc\x14\x63\x97\x34\x37\x12\x36\x84\x34\x2a\x68\xdf\x94\x82\xbe\xf7\x62\x8b\xea\x03\x60\xbb\x28\xdf\x67\xa3\x51\xdd\xa9\x5f\x51\x29\xe4\x4b\x7b\x43\xa0\x7c\xd3\x35\x57\xbd\x90\xb7\x84\xd2\xbc\xbe\xb6\x5b\x1f\x5e\xbe\x7c\x69\x03\xd3\x75\x50\xa9\x52\x2c\x51\x1a\xd1\xd6\x0b\x90\xb1\xf6\x1b\x2a\x75\xb5\xf7\x20\x14\x8d\xd1\x56\x64\x8c\x82\x92\x32\xa1\xf5\x9a\x05\xc7\xc2\x5b\xe6\x6e\x45\xd3\x3f\x8a\x93\xb7\xa2\x78\xf0\x92\x95\xc9\x44\x16\x47\x40\xba\x0b\xbb\xd0\x22\xa2\x78\x18\x64\xaa\xec\x63\x68\xc0\x74\x62\x4a\x04\x83\x11\x20\x97\xf5\xc6\x0a\x6d\x4c\x82\x6c\x92\x06\x79\x61\x1b\x1e\x98\x4a\xb2\x6c\x75\x8c\xb8\x2b\x47\x01\x42\x6e\x90\x72\x79\xc3\x7c\x47\x74\x61\xb3\x3a\x86\xa7\x41\xf6\x26\x8d\x46\x85\x7d\xe6\x81\x59\xfb\xc4\x68\x75\x2c\x59\x06\xb2\xac\x08\x4b\x01\xb3\x66\x1b\x43\xe5\xbc\xbd\xa0\x19\x3f\xd8\x0d\xf1\x10\x4f\xcf\xf2\x3b\x75\xcc\x2b\xc2\xcd\x04\x55\x5a\x54\xa7\xb8\x76\x46\xdb\x1c\x49\xa7\x27\xc5\xff\x61\x18\x69\x17\x9b\x82\x51\x9e\xa4\x7c\xaf\xc4\xdd\xa4\xe0\xba\x41\x03\x11\x58\xed\xce\x01\x83\x76\x35\x36\xe6\x6e\x51\xd6\x7d\xf5\x86\x72\x27\x97\x42\xed\xa7\x18\xdc\x1a\xe1\x8a\xe9\xbe\x71\xed\x46\x49\x59\x46\x5d\xad\x64\x3d\x44\x37\xd8\x68\x38\x9d\x22\x1a\xdc\x77\xab\x39\xce\x67\xb5\x7a\xc3\x66\xd9\x97\xc9\xa9\xb2\x91\xae\x86\x92\x8b\x50\xe9\xb5\x55\x9c\x4e\x83\xf7\x7e\x8d\x15\x68\x9e\x4e\x93\x61\x30\x6d\x92\x4e\x6d\x06\xf6\x6b\x96\xfe\xd0\xd5\x64\x34\x0a\xe6\xbf\xae\xdb\x2c\x29\x6c\x35\x4a\x5f\x16\x35\xa9\xb8\xb0\xc9\x06\xcd\x2b\x52\x6a\x7a\x39\x5e\xa0\xe6\x1e\x9e\xb2\x90\x75\x07\xf9\x4c\x3a\xff\x1a\x5e\x7c\xf7\x06\xed\xdd\xc6\x3d\xcb\x9b\x90\x5d\x64\x91\x6e\x7c\xf7\x06\x9d\x6d\x78\x41\xc7\xf4\xde\xa0\xf3\x80\x3e\x0a\x5e\xb8\x37\xe8\xd2\x22\xd1\x30\x88\xef\x0d\xba\xdd\x86\xee\x6b\x0c\x8f\xac\x93\xee\x0d\x7a\x3d\x78\xe6\x3e\x87\xf7\x06\x3d\x5a\x3d\x93\xec\xf7\x06\x3d\x8a\x16\xf7\x0c\xb9\x37\xe8\x91\x06\xb9\xc7\xe0\xbd\x41\xaf\x0b\xce\xcb\xad\x15\xbc\x97\x2b\xf9\x2f\x5f\x8f\x07\xf3\xf5\xfb\x30\x5f\x97\x17\xf3\x0a\x7e\xcc\x57\xf6\x64\xbe\x16\x5f\xe6\xeb\xf0\x66\xbe\x82\x3f\xf3\x35\x7b\x34\xdf\x80\x4f\x73\x88\x87\x8b\xd3\x5b\xaf\xe6\x5b\xaf\xe6\x6b\xf3\x6a\x16\xab\xd2\x53\xc2\x5a\x8a\xd7\xe4\xaa\x3e\x93\x2e\x8f\xc9\xca\xfe\x92\xa5\xbe\x92\xab\xfb\x49\x32\xbb\x42\x45\x1f\xc9\x22\xff\xc8\x95\x7c\x23\xb9\x67\xa4\xcb\x2f\x72\x6d\xaf\xc8\x62\xcf\xbb\xad\x2d\xc4\x82\x35\xd0\x69\x47\xa6\x23\x91\x70\x1b\x59\x30\x9b\x4f\x71\xb6\x01\xa1\xd9\x36\xa8\x83\xe1\x7f\xf1\xb1\x62\xe1\x03\x12\x88\xe0\xff\x34\x8d\xc6\x6e\x8b\x13\x53\xb2\x1d\xd0\x4c\xd1\xe6\x37\x9e\x08\xfb\xbc\xf7\x83\x19\x4e\x69\x57\x3f\x7b\x77\x1d\xc4\x97\xef\xb8\x7e\xb7\x11\x54\xf7\x5e\x8c\x69\xb4\xfe\x61\x9b\x85\x4a\xbd\xc3\x61\x0b\xfb\xc6\x00\x32\xce\xb3\xae\xcd\x2b\xa1\xbc\x33\x5e\xe0\x8b\xec\x9d\xb2\xfb\x52\xa8\x87\x5d\x5c\xa6\xf0\x28\xe9\xaf\xa2\x2e\x70\x17\x70\xf5\x43\x21\xe4\x17\xed\x0c\x9a\x35\xa2\xb8\x47\xde\x1d\x94\x77\xc2\xbb\x83\x02\xba\xc5\x47\x4e\x6a\xef\xfa\x66\x84\xe5\xd5\x89\x2a\x93\xff\x84\x63\xe7\x99\x0e\x0c\xfb\x37\x47\xe5\xe4\xbf\x39\xfa\x86\x86\xfd\x09\xc7\xd9\x41\xb7\x66\xc6\x73\x88\xb6\x86\xfe\x81\xcf\x6b\xfa\xda\x4d\xaf\xf6\xed\xdd\x81\xf6\xf8\xe6\xe8\xae\x30\x41\x94\x1a\x19\x39\x6e\xde\x4b\xa0\xa4\xd3\xbf\xdb\xad\x60\xfb\x76\x2b\x78\xbb\x15\xfc\xcf\xde\x0a\x66\xe3\xd1\xe7\xda\x08\xb2\x22\x21\x3e\x8b\xe2\x1c\x9f\xa6\xc1\xb4\x8b\x1e\xa9\x4f\xff\x9d\x8d\x97\xe1\xb2\x99\x2e\xb4\x8d\x63\xa7\x75\xbb\x71\xfc\x0f\xd8\x38\x1e\x8d\x47\x5f\xfa\xb2\x5d\x85\xab\x76\x9f\xe7\xa2\x5d\xf1\x35\xbb\xaf\xe5\x92\x5d\xd1\x76\x52\x0c\xc8\x29\xe6\x9b\xa5\x28\x89\x8f\x46\x44\x44\x3a\x1d\x12\xa4\x3b\x82\x01\x2e\x0e\x62\x98\x1a\x98\x8d\x47\xef\x0b\xa0\x2c\xa7\x04\x4b\x09\x74\x39\x5e\x5f\xdb\xad\xac\xd7\x69\x74\x1a\xc5\xd5\x89\x35\xe1\x3d\xd4\x7a\xc1\xbe\x30\xb9\x47\x79\xf0\x11\xa7\x6f\x92\xc3\x32\x3a\x05\xa0\x87\x40\xfb\xfb\x17\xa6\xec\x2d\x3e\x0f\xd2\xf0\x0f\x1c\x9d\x4e\x7c\x3e\x34\x92\x3a\x0d\xd8\x43\xa1\x1b\xe6\xa6\xa8\x64\x7b\xcf\x37\x42\xe2\x38\x89\x7c\x9a\x9c\xc7\xb9\xd7\xfd\x4a\xd2\xc7\xe1\x3c\xa4\x59\x9f\xbf\x2c\x55\x94\x97\xaa\x71\x64\x21\x3b\x5a\xf4\x74\xaa\xd0\xe3\xbe\xda\x51\xc1\xd3\x00\xda\xac\x32\xdf\x9e\x5c\x30\x8f\xe9\x6a\x34\x0a\xf0\x42\x62\x6d\xa8\xaf\x8c\xea\x8a\xd4\x16\x53\x79\xf3\x33\x8f\xb5\x53\x4c\xd1\x53\x3c\xc5\xa7\x20\xce\xb3\xd7\xe3\xd2\xd9\xa7\x02\xfb\xa6\xa0\x13\xe6\xb3\x8c\xa0\xd2\x74\x65\xa2\x2b\x73\xb0\xab\x4c\x79\x17\x7c\x21\x5e\x5e\xa3\x27\xaa\xd3\x5f\x4a\xb5\x45\x6b\x77\x65\x5a\xaf\x4e\x78\x55\xba\xf7\xa7\x41\x34\xc3\x21\x5d\x14\x57\xe0\x02\xbd\x5c\x69\x9f\x78\xc0\x3f\x0b\x37\xac\xa4\x42\xad\xd6\x1f\xae\x32\x85\x62\xaf\xa4\x1f\xbe\xa8\xf6\xa8\xcc\x9a\x75\x7a\xc1\x5b\xbc\xb0\x43\xca\x4b\x7d\xa9\xbe\x31\x9c\x3e\xed\xad\x4e\x43\x7e\x31\xb7\x05\xca\x27\xa1\x50\x2b\xef\x34\x15\x54\x79\xcf\xf5\x37\xab\xb8\xf5\x42\x08\x56\xeb\x8b\x56\x9f\xba\x18\xb9\xdf\xbb\x2a\x92\x9f\x9d\x2f\xf5\x71\xb2\x10\x28\xf9\xec\x1d\x70\x00\xac\x6a\x2e\x2f\x37\x98\x1f\x8d\x47\xdf\xab\xb9\xfc\xc1\x6d\xd8\xc7\xdb\xb0\x8f\xdf\x77\xd8\x47\x5f\xcc\xc7\x2b\x47\x25\xae\x6e\x7e\xae\x60\x5b\x06\xb8\x5f\x71\x7e\xe3\x41\x8c\x6f\x38\x32\x58\x85\xc0\xc5\x5b\x5b\x5b\x32\xe3\x9f\x2b\x8b\x60\x88\xb3\x51\x1a\x0d\x23\x32\xfa\xa4\x3a\x9c\x4f\x50\x30\x8f\x14\xd4\x6f\xe8\xa6\xc5\x34\xca\x72\x1c\x17\xdc\x3a\x88\x71\xfe\x5e\x02\x09\x98\x15\xbd\xd2\x31\x4e\xcd\x08\x04\x56\x2b\x3e\xa0\x15\x3c\xe5\xd5\x55\xd0\x5a\xd3\x7e\xc5\xb9\x63\x4d\xd3\xd7\x2e\x75\x71\xb9\x3c\x69\xf4\x56\xf1\xb2\xbd\x5d\x2c\x6e\x17\x8b\x6f\x70\xb1\xf8\x4a\x63\x04\x5f\xdf\xf9\x65\xc5\xe3\x55\x79\x86\xf7\x06\xa7\x59\x12\x07\xd3\x2f\x7d\x90\xf7\xfd\x47\xcd\x2c\xf5\xe6\x64\x39\x8c\xf0\xb9\x0c\xce\x58\x74\x0d\x58\x02\xda\x77\x80\xe7\x6c\x54\xdf\x3b\x81\xae\x10\x07\x26\x9a\x91\x85\xe0\x6d\x70\xfe\x02\x97\xc5\x87\x50\x41\x37\x1a\x77\xef\xdc\x31\x71\xb3\x00\x0a\x6e\xed\x57\x8f\x77\x62\xb7\x23\x3e\x28\x56\xb6\x3b\x77\x2a\x46\x00\xaa\x1c\xe8\x04\x8f\xde\xe2\x51\x72\x56\x1a\x52\x40\xc0\x39\x71\xd5\xbf\x16\x74\xc8\x22\x9e\x26\xa3\x8f\xd5\x38\x45\x83\x2d\x60\x16\x1f\x5c\x95\xb0\x92\xd5\xfa\xcd\xdb\x7b\xd7\x1c\x5f\x48\x8e\x7d\x69\x90\xa1\x55\x82\xc9\xb8\x82\xf3\x78\x49\xaa\x3e\x3e\xd5\x46\xa7\x78\x6c\x56\xb9\xd1\x6f\x8e\xcd\x49\xa1\x39\x0b\x29\x22\x49\x69\x44\x99\xbc\xf2\xad\xc6\x41\xf2\xb5\xe0\x6a\xf9\x4a\xbf\x49\xee\xbd\x70\xae\x54\xb7\xa6\xd5\x67\xc5\xfd\xc1\xe3\x92\xfb\xb4\x72\x38\x54\x60\x8f\x5a\x6e\xeb\xe5\x7c\xb9\x95\xca\xb9\xc3\x42\x64\x18\x85\x4c\x3d\x7d\x15\x17\xc8\x5b\x3d\xfd\x56\x4f\xff\x06\xf5\x74\xee\xe9\x38\xf1\x18\x75\x4a\xd4\x6f\x9c\xe2\xc5\x8c\x54\xfd\x73\x89\x0d\x68\x94\xa4\xb8\x19\x25\xba\x9e\xbe\x53\x39\x33\x55\x45\xff\xbd\x32\x37\x40\x00\x3a\x9a\x4c\xbe\xa7\x0c\x57\x65\xca\xf0\xc3\xbb\x77\x8f\x26\x13\xf5\x5a\x38\x3e\x7f\x85\xb3\x2c\x38\xc5\x07\x9f\xe3\x26\x7c\x36\x99\x94\xde\x84\xcf\x26\x93\x5a\x9d\x2b\x2e\xab\x5c\x78\x2f\x75\xb3\x73\x2e\x4e\x96\x7a\xa0\x2c\x4d\x67\xce\x10\x07\xfc\x98\x6c\x32\x79\xef\x06\xd0\x43\x6f\x21\x87\x2d\xab\xa8\xd1\x28\x1e\x27\xfe\x16\x1d\x5f\xaf\xd6\x5c\x86\xf3\x57\xc1\x92\x31\xc1\x51\xf4\xb7\x19\x55\x43\x69\xbb\x0c\x54\x0f\xbd\xb5\x0e\x22\x51\xfc\x26\xf9\xa3\x18\x01\x17\xc8\xd5\x1a\x9e\x05\xe9\xc7\x77\xe9\x22\xcb\x71\xf8\x06\x5b\x51\x34\x94\xe6\x8b\x01\xaf\x86\x44\x8c\x89\x4e\xf7\x26\x88\x0a\xda\xf7\xc2\x5c\x8d\x03\x82\x30\x7c\x93\x46\x67\x41\x8e\xe9\x96\xd0\xd3\x7a\x11\xd8\xd5\x68\x0f\xf1\x14\x43\xad\xc5\xe4\x17\x81\x5d\x0d\x81\x49\x90\x95\xb6\xee\x85\xb9\x5a\xd3\xa7\x38\xa7\x0b\x7a\x61\xdf\x17\x40\x5d\xbd\xf9\x0a\x63\x5f\x04\x76\x65\xbe\x3f\xba\x98\x15\x36\xee\x03\xb9\x32\xd7\x97\x35\xec\x03\xb9\x6a\x97\x13\x3d\x2e\xc7\xb4\xea\x83\x34\x99\xbd\x09\xb2\xec\x3c\x49\xc3\xa2\xfe\xaf\x58\xe6\xca\xf3\xa0\xac\x4f\x7c\x20\x57\x66\xc3\xb2\x86\x7d\x20\xd7\x21\x7a\xca\xda\x2e\x80\x72\x37\x2f\x1e\xb6\xb6\x50\xb6\x18\xc2\xc9\x1b\x86\x6b\xe1\x8b\x58\x3e\xcf\xa2\x2c\x8b\xe2\xd3\xbb\x95\xb1\x9d\x27\x99\x79\x74\xa5\x60\xe9\xf8\xea\xb0\x53\xa0\x62\xbb\x23\x2a\x3f\xe5\x3a\x9a\x4c\xc8\x2e\x9b\xef\xa4\x75\xd7\x0b\x6d\x17\x6d\x38\x46\xf4\x3a\xb7\x7b\xe8\xdb\x3d\xf4\xf7\xbd\x87\x96\x67\x5d\xc3\xbf\xff\x36\xce\xba\x1e\x4f\xf1\x12\x3d\xc1\x29\x3e\xcd\xfe\x0e\xb2\xbf\x23\xf4\x28\x98\xe2\xe5\x7f\xa7\xf9\x38\x6b\x4e\xf4\xbb\x7c\xed\x3e\x4b\x17\xff\x16\x8f\x71\x8a\xe3\x11\x1e\x20\xd2\x7e\x36\xd8\xda\x3a\x8d\xf2\xc9\x62\xd8\x1c\x25\xb3\x2d\xbe\xeb\xde\x3a\x4d\x36\xc5\xef\xe1\x34\x19\x6e\x65\xe7\x41\x3a\xdb\x8a\xe2\x1c\xa7\x71\x30\xdd\x22\x24\xe1\x65\xce\xff\xdb\x3c\x4d\xfe\xd7\xcb\x6e\x17\xb6\xdc\x37\x76\x32\xa6\x5c\x59\x23\xc8\x7c\xe7\x7b\x6b\xf8\xf1\x4d\x9c\x75\xd1\x88\x81\x38\x3f\x4f\xd2\x8f\x6f\x71\x10\x96\xd8\xc9\x4d\x70\xdb\x58\x3e\xfc\xfb\xef\xf7\x05\x50\x57\x49\x80\x70\x11\x8f\x9e\xc5\xc1\x70\x8a\xcb\xb0\x54\x20\xdd\x08\xba\x01\xae\x82\xdb\x79\x30\xaf\x88\x9b\x84\xf4\xe0\xe6\x04\xb8\x02\x6e\x61\x72\x1e\x4f\x93\xd2\xa1\xe5\x60\x6e\xac\x1c\x5f\xab\xe7\xf4\xf0\x20\xb6\x98\x57\x40\x8b\x02\xb9\x91\xb2\xbe\x5d\x19\xa5\x14\xe7\x69\x84\xcf\xca\x42\x6b\x73\x30\x37\x5a\x8e\xaf\x57\x61\xad\xdc\x7b\x23\x52\x32\x55\xae\x5e\x6f\xd4\xd9\xc9\xf8\x74\xe5\x2e\x3a\xc5\x15\x62\xc5\xbb\x71\xd1\x3f\x5c\xa1\x4f\xe6\x8b\x32\x1c\xe6\x0b\x0f\x0e\xfa\x87\x2b\xf7\x06\xd5\x1e\x4b\x90\xa1\x40\x6e\x7c\xac\x6f\x46\x68\x9a\x12\x94\x0a\x0e\x75\x2d\x0b\xa7\x29\x96\x95\xc3\x3f\x29\x0f\x95\x97\x52\x10\xc9\x97\x5c\x0e\x28\x07\x8e\x73\xfd\x99\x73\xbf\x52\x51\xae\x78\xd9\xc3\x41\x9e\x42\xed\x42\x79\x50\x54\xf1\xb5\x7d\xcb\x1d\x5b\x14\xa2\x70\xb8\xb2\xf2\x3b\x8f\xf6\xba\xb7\xdb\x92\xdb\x6d\xc9\xf7\xbd\x2d\x61\x7b\x12\x7e\xc6\x72\xbd\x3e\xdb\x25\xdb\x85\xb5\x7c\x93\x79\x64\xe6\x60\x1e\x71\x85\x96\xba\xda\xe5\xb3\x22\x27\x2e\x7a\xe2\x54\x98\x3e\x9b\x43\xe7\x17\x73\xb2\xc6\xb2\x54\xd9\x0f\xef\x2a\x42\x30\xca\x47\x93\x1a\xf9\xae\x96\xa1\x42\x3c\xc3\x68\x83\x70\x7c\x96\x6f\x0c\xb4\x4f\x30\x58\xe9\x69\xd6\xcc\x26\xd1\x38\xaf\x29\x9a\x3c\xff\x83\x3d\x0f\x15\xf5\x68\x0f\xb5\x6c\x00\x26\xd6\x20\x74\x76\x8c\xcf\x69\xaa\x4c\x7a\xa6\xf9\xd0\x81\xc6\x1c\xc7\x61\x14\x9f\xde\x38\x1e\x6f\x68\x3b\xaa\x1b\x8e\x0b\x29\x96\xe3\xd8\xc6\xc6\xa8\xce\x2a\x7c\x49\xd7\x30\x65\x85\x15\x50\xe5\xce\x78\xac\x36\x73\x9d\xd5\x58\xc1\xa1\x7f\x38\x34\xd3\x38\x8a\xb3\x3c\x98\x4e\x2b\xb5\x6c\x40\xdb\xeb\x3c\x21\xd6\x0f\x54\x9c\xa4\xe6\x65\x72\x5a\x21\x1b\x09\x81\x72\xb7\x7b\x8a\x73\xda\xa2\x01\x52\xd0\xea\x3c\x29\x4d\x18\x46\x40\x4a\xda\xdb\x9f\x04\xf1\x29\xae\xd0\xa4\xeb\x24\x96\x56\xa1\x7a\x35\x69\xbd\xa7\x29\x13\x84\x30\xa5\x91\x64\x3a\x55\x35\x88\x95\xe5\x4d\x36\x99\x34\x41\x34\x5a\xe2\x26\x33\xfc\x03\xd6\x3f\x4b\x76\xf1\x2a\xb2\x0e\x3a\xb4\xc3\xf8\x6b\xb5\x74\xfb\x99\x11\xb9\x8c\xdd\x37\x87\x88\xcd\xba\xc8\xb2\xf4\xd3\x66\x19\x0e\x26\xe8\xd5\x9a\x37\xd8\xf8\x1a\xda\x56\x59\xcf\xd2\x44\x29\x0e\xe3\x7c\x36\x20\xff\xd0\xca\xb2\xc9\x64\x40\xfe\xa1\xca\xab\xa5\xa3\x12\x95\xb4\x77\xab\x92\xde\xaa\xa4\xdf\xb7\x4a\x2a\x2d\xe5\x3c\xbd\xc3\x3a\x37\x43\x1c\xea\x28\x4d\x4d\xf1\x16\x9f\x92\x61\x0e\xd2\xc7\xc3\xc8\x13\x30\x2e\xdb\xfa\x45\x07\x6d\x7e\xc8\x12\x11\x94\x2d\x1a\x05\x73\xb5\x12\x5f\x1d\x87\xfb\x8f\xdf\xd8\x35\x28\x98\xb0\x1c\x18\x32\x90\xc7\x46\x6b\x39\xea\x87\x0f\xc2\xce\x28\xec\xf5\x1e\x04\x3b\xdb\xbd\x51\xef\x41\xaf\xd3\xef\xe1\xf6\x6e\xeb\xc1\x68\xbb\x85\xbb\xbd\xb0\xdf\xdb\xee\x77\x86\x1b\x12\x17\x57\x35\x41\x3b\x68\xb7\xdb\xc3\x51\x6b\xa7\x37\x7a\x30\x1a\x07\x3b\xbb\xed\x71\x6b\xd4\xdd\xc5\xfd\xee\x30\xdc\x6e\x8f\x1e\xb4\x87\xbb\xc1\xb8\xd5\xda\xf0\x8b\x26\x8a\xe3\x40\x51\x74\x83\x61\x34\x70\x74\xa2\x14\x84\x2c\x03\xc7\xc0\x49\x1f\x5d\xe8\x29\x30\x41\xdb\xaa\xd9\xec\x57\x47\xbd\x36\xb9\xb4\x56\x4d\x60\x16\x8f\xe2\xbd\x41\xbb\x71\xaf\x64\x9c\xee\x0d\x3a\x44\xd6\x6e\xdf\xca\xda\x5b\x59\xfb\x9f\x22\x6b\xb9\xed\xcb\x10\xb6\x45\xae\xbd\xe3\x34\xf9\x1b\xcf\x82\xb8\x19\xe2\x9f\xaf\x45\x40\xbb\xee\x78\x1b\x17\xbc\xcd\x33\x46\xcb\x29\x55\x3b\x48\x24\x0b\x08\xda\x63\x6c\x49\x1f\x95\x90\x8d\xf4\x16\x81\xf2\x9d\xbe\xd0\x82\x3a\x1a\x10\x99\x09\x61\xdc\x10\x56\x40\x8d\x2f\x4a\x19\xdd\x84\xab\x14\xd1\x3f\x28\x25\xac\xf3\xd0\x78\x31\x9d\x52\xc5\x92\xf7\x85\xe2\xbb\x6b\x9d\x0f\x6a\xfd\x94\xce\xb4\x2e\xb2\xaa\x4e\x67\x6c\xb3\x44\xb9\xe3\x88\x72\xec\x10\x83\x36\x8c\x43\x94\x27\xec\x56\x16\x35\x45\x83\x4d\x81\xf0\x2e\xd5\x53\xd9\xe9\xf4\x7f\xd3\x27\x06\x79\x48\x00\xe1\x35\xa8\xc9\xe8\x9f\xc7\x64\xe3\x75\x09\x6f\xd8\x7e\x49\xbe\xda\x72\x91\xa4\xd4\x63\xda\x6f\x5c\x59\xa3\x8c\x1e\xfe\x2f\xd7\x5b\x5a\x76\x40\xf0\xaf\x4a\x30\x1d\xd2\x5a\x8a\xb3\xc5\x34\xaf\x97\x10\x4d\x53\x41\xa8\x54\xd3\xf3\x5c\x9d\x6c\xf9\xae\x80\x6e\x96\x55\x42\x1b\x45\x86\x83\x4d\xbb\xc9\x91\x3f\xfe\x88\x28\x30\xfa\x61\x8f\x32\x8e\xf1\x8a\x2c\x28\xe3\x28\xc6\x21\xef\x27\xa3\x06\xd1\xd6\x80\x95\xf2\x74\xd7\x22\xa3\x9d\x85\x97\x34\x18\x2f\x77\xd1\x46\xe3\x34\x99\xc9\xbd\x76\x90\x9e\x2e\x66\x38\xce\xb3\x26\x7a\x45\x16\xb6\x08\x67\x8c\x93\xa0\x9b\x8c\xbe\x64\x95\x71\x8f\x6e\x9b\x89\x64\x7d\x5a\xbf\x1e\xb0\x9e\xfa\xf4\xeb\x62\x3a\xbd\x54\xdc\xc5\xa3\x31\xc2\xcb\x28\x03\x70\x67\x97\x1b\x2d\x7a\xcd\x85\xd1\x18\xd5\x68\x38\x80\x28\xe3\xad\x01\xc0\x31\x58\xd9\xa6\x38\x3e\xcd\x27\x68\x13\xb5\x4f\xea\xaa\xb5\x90\x21\x08\x30\xf3\x64\x5e\xab\x3f\x44\x5b\x5b\xfc\xe8\x88\xc8\x7f\x98\x4f\xd0\x5b\x3f\xa8\xca\x8d\xde\xdd\xd4\x45\x40\x62\x96\x27\x6e\x56\xd4\x5d\x09\x7c\xcc\xc8\x5e\x71\x2a\xbc\xdc\xa8\xd7\xa6\x4b\xdf\xe1\x07\xd5\xe2\x0a\x65\x84\x2a\x89\xa8\x71\x66\x40\xd9\x6b\xb8\x88\xa6\xe1\x2f\x38\xaf\x29\x9b\x73\x1c\x2f\x66\x38\x0d\x86\x53\x3c\x40\x79\xba\xc0\xb6\xe5\x2f\xa0\x69\x2f\x84\x58\x6f\x66\xf3\x69\x94\xd7\x36\x9a\x1b\xcc\x92\xc9\xa1\x88\x74\x24\xc0\x60\xbb\xe5\x03\x05\x6f\xf8\x98\xfc\x8c\xda\xea\x88\x24\xc3\x0f\xc7\xbc\xc4\x09\x91\xc6\xda\xf3\xa7\x4f\xe8\x9f\xcb\x87\x2a\xb0\x09\xf2\x50\x33\x88\x89\xe6\xdb\xec\xc3\x25\x25\x82\xf6\x59\x93\x4e\x35\x71\xf1\x2d\x19\x7e\x68\x00\x7c\x83\x76\x19\xa3\x85\xd4\x1f\x64\x17\xf1\xe8\x17\x58\x6f\x88\xca\x0b\x24\xd4\x4f\x78\x17\x40\x27\x3e\x66\x20\x35\xe5\xa2\x83\x51\x4c\x1b\x24\xa8\x42\x17\x19\x70\x40\x8b\xee\x03\x0e\xcd\xd1\x24\x48\x1f\xe7\xb5\x56\xbd\x99\x27\xbf\xcd\xe7\x38\xdd\x0f\x32\x5c\xab\xf3\xcf\x19\xd1\x1f\x6a\xed\xba\x77\xe1\xe1\x23\xeb\x35\xc4\xcf\xe5\xc2\x4d\x7d\x75\x14\x4c\x44\x89\x53\x42\x90\x3d\x63\x84\x82\xa2\xca\xc4\x9a\x78\xab\xaf\x63\x10\x8e\xd9\xb0\xf3\xd0\x29\x31\x90\x15\xd1\xe5\x5e\x31\xd8\x70\x97\x99\x62\x02\x79\xaf\xaf\x46\xa5\x3c\x2e\xf7\xe7\x1f\x44\xd2\x53\xc8\x49\x10\xb4\xbc\x2a\x55\x0d\xa5\x41\x9c\xa6\x0d\xa4\x2f\x1d\xfc\x8f\xe3\x42\x61\xdc\x9d\xcd\x4a\x2a\x47\x07\x97\xb2\xcb\xd8\x24\xe7\x78\x73\x46\x65\x8f\x34\x00\x36\x0b\x7d\xad\x8c\xea\x29\xf6\x2d\x27\x72\xf5\x1d\xa5\x98\xe8\x8a\xf3\x45\x8a\xd1\xbf\x8f\x5e\xff\xfa\xf6\xcd\x3e\xe2\xad\x9c\x4f\xa2\xd1\x04\x36\x4f\x7c\x05\x8a\x62\x34\x04\x93\x2d\x03\x31\x24\xa2\x7c\x2b\xe4\x5e\xb3\xd9\xbc\x64\x06\x3c\xd7\xda\x8c\xc8\x96\x30\x9d\x8f\x94\xa2\x4e\xe9\x28\x09\xf7\xb0\x45\x70\xc1\x7c\x5c\x4c\xcf\xb3\x81\xaa\x8f\xda\x36\xf2\xe3\x13\xdd\xba\x4e\x86\x89\x15\x31\x16\xab\x1a\xac\x89\xaa\x2a\x48\xa6\x6c\x93\x14\xaa\x89\x75\xb2\x5e\x57\x87\x8c\x61\xc5\x06\x9a\x8f\x9a\x3a\xec\xbe\xa1\x63\x25\x3d\xf6\x4d\xde\x41\xca\xc6\xdc\x88\x7a\x43\xb6\xd8\xfd\xdb\x2d\xf6\xed\x16\xfb\x3f\x65\x8b\xcd\x04\xc4\x8c\x49\x74\x7d\xa3\xfd\x6f\x3c\x1e\xa7\xf8\x02\xfd\x11\x4d\x47\x1f\x31\x7a\xf4\x01\x8f\xc7\xbe\x70\x37\x2b\xc5\xc6\x79\x15\xa4\x64\x07\xff\x3a\x88\x47\x38\x00\xd8\x82\xd4\x22\x6b\x64\x23\xf9\x25\x38\x43\x7f\x24\x49\x88\x1e\x9d\x7a\xf7\xf8\x3d\xb9\xc7\xff\x37\x13\xa6\xda\xed\x5b\x26\x61\x8b\x52\x8d\x38\x02\xbd\x99\xd9\x41\x5c\xa9\x41\x70\x9a\x26\x46\xf4\x9d\x2d\xfa\x8e\x7a\x20\xd0\xf1\x39\xcc\x37\x32\xb2\x2e\xce\x93\x38\x8b\x86\x53\xca\x5f\xf3\x00\x6e\x61\xa0\x19\x3b\xf1\x21\x4b\xd1\x3c\x4d\xce\xa2\x10\xa7\x99\x28\x15\x4c\xb3\xc4\x2e\x9a\x4c\xa7\xa4\x28\x61\x36\xee\x7e\x8d\xe2\x24\xa4\x5f\xa3\x78\x94\xcc\xd4\x9a\x49\x65\x4f\xe9\x29\x39\x3d\x70\xcd\xa3\x19\x26\x73\x2d\xca\x50\x1b\x65\x78\x94\xc4\x21\x2c\x8e\x51\x7c\x3a\xc5\x79\x12\x43\x77\x12\xf2\x0a\xf6\xf9\x1c\x55\x6d\xb7\xcf\x5f\xa2\x3d\x41\x8a\x62\x66\x20\x6d\x83\x01\xf8\x52\x79\xc9\x71\x51\x8d\x0e\xde\xbd\x1f\x51\x50\x26\x69\x12\x27\x8b\x6c\x7a\x01\x71\x24\x3c\xcb\x30\xf9\xe4\xd8\x8e\xa0\x30\xc8\x03\xef\x06\x59\xa7\x56\xb3\x78\xc4\xa1\x46\x3c\xa9\x46\xdd\xa8\xfd\xa0\x51\xaf\xea\x3e\xa3\x24\xce\x12\xb2\x72\x11\xa6\xa8\x51\xd6\x68\x1e\xc6\x90\x4c\xec\x0d\x83\xaf\xa9\x2a\x0f\xbf\xc6\x0c\x9d\xa1\x28\xf8\xfa\x12\xcf\xd8\xbc\x99\x27\x6f\xe8\x3b\x40\xa9\x49\xa9\x6f\x00\x99\xcc\xd5\x42\xd9\xbe\xb0\x4d\xf9\x9e\x3e\x56\x54\x97\x65\x55\xf3\x83\x72\x20\x8a\x37\x12\x65\x10\xe1\xf6\x2d\xe5\x42\x2c\xf4\x34\x85\xcc\x7c\x92\x26\xe7\x48\x27\xcf\x84\xd7\xc8\x61\x64\xd2\x4f\xcd\x4a\x1b\xff\x60\xa5\xd1\x07\x65\xb6\x90\x05\xcc\x6d\xa9\x50\x7e\xca\x99\x01\x2a\xb7\x38\x42\x49\xdb\x5d\x89\x37\x58\x1f\xa8\xaa\x71\x11\x77\x5c\x0f\x23\xd8\x63\x4f\xd5\x7e\x56\x65\x05\x75\x9e\x10\x85\xd3\xd4\xd4\xf0\x1d\xd4\xa8\x9a\xfc\x5d\xad\xfc\x2a\xbc\x55\xde\x55\x56\x69\x67\xbb\xa2\x30\x75\x63\xd5\x58\xcf\x8c\x6a\xe9\xdf\x2d\xb8\xb8\xb0\x68\x43\x40\x00\x9e\x90\xef\x0e\xdb\x12\x2d\x77\x1d\x0c\x09\x2d\x7c\x65\x0c\x09\x38\xa9\x5c\xc9\x85\xcb\x7a\x2c\x98\x5d\x3b\x0f\x72\xf3\x1a\x8c\x46\x8d\xb7\x72\x25\xd6\xcb\xca\x78\x4f\x23\xa8\x84\xe9\xc4\xaa\x87\x73\xb1\x9c\x12\x1d\x93\xef\x04\x99\xa6\x67\x31\x5c\xce\x47\xca\x6d\x90\x2b\x64\x25\x51\x56\x5f\xec\xbd\xab\x7c\x19\xea\x39\xd9\x48\x31\x7d\xc5\x44\x94\x7c\x7b\x23\x3e\x95\x0a\x6a\x1a\x95\xfd\x12\x6a\x3b\x0c\x4b\x67\x8c\xe3\xab\xf0\x45\xe2\x98\xe4\x49\x98\xa0\xd1\x14\x07\xf1\x62\x8e\x62\xa8\x9f\x74\xb0\xd8\xac\x17\x75\x95\x82\xbd\x63\xe2\x51\x24\xd5\x40\x22\xa2\x71\xbd\x2f\x89\x4e\x74\x4c\xa1\x4f\x88\x6e\x44\x8a\x0f\x10\xad\x24\x0a\x07\x56\x45\x03\x57\x95\x03\xf9\xf3\x92\x27\x13\xdb\xda\x32\x7b\x5f\x9b\xff\x4c\xef\xd2\x17\x71\x86\x50\x4d\x4c\xf0\x92\xc1\x4d\xe6\x42\x17\x25\x9a\x27\xf3\x9d\x85\x3d\xcd\x69\x44\x36\x72\x91\x69\x31\x26\x65\x1c\x63\x6e\x8d\x6d\x61\xcf\x8b\x2a\x74\x26\x85\xb2\x9c\x20\xea\x4e\xe6\xe8\xe4\x87\x4a\xf7\x48\xfc\x59\xef\xd4\x98\x1d\xf5\x23\xbe\xc8\x6a\xb2\x6c\x9d\xdb\x76\xf7\xf6\xf6\x50\x0b\xfd\xf8\x23\xf2\xf5\x21\x61\x26\x48\x1d\x9b\x2c\xf2\x9a\x06\xf4\x50\xef\x67\x53\xef\x2d\xe8\x6f\xb9\xf8\xa4\x98\xc8\x02\xa2\xf6\xf3\x6e\x9f\xe1\xd1\x24\x88\xa3\x6c\xc6\x37\x9f\xc5\xc2\x01\x2a\x28\xee\x5e\xda\x86\xda\xb1\x1f\x31\x9e\x8b\xac\x84\x9c\xd8\xad\x9f\x3e\x64\x93\x28\x26\x0d\x2d\x47\xc9\x6c\x3e\xc5\xcb\x28\xbf\x18\x6c\xc3\x4e\x8c\x00\x10\x86\xa8\x91\xb5\xe1\x23\xbe\xa0\xf6\x01\xd1\x9b\x4a\x7f\x6d\x6d\xa1\x14\xcf\x92\x33\x8c\x82\xe9\x14\xa8\xca\x1a\x08\x2f\x47\x78\x9e\x83\xb6\xcf\x5e\xa9\xf0\xf9\x04\x5f\xa0\x18\xd3\x1e\x19\x62\x56\x3e\x24\x14\x2f\x82\xe9\xf4\x02\x0d\x2f\xa0\xcb\x48\xf7\xb0\x08\xfa\xc0\x33\x7f\x90\xf5\x28\x8a\x4f\x6b\x75\x65\x19\xa8\xfd\xa0\x51\x87\x3e\x7d\x22\xf8\x36\xa3\x38\xc4\xcb\xd7\xe3\x1a\xdc\xef\x23\xcc\xf6\x7e\xa3\x0e\x83\xbf\xd9\x36\xd7\x07\x85\xc3\x3e\xe2\x8b\x93\xa6\x98\x89\xa6\x0f\xb4\xcd\x91\x04\xde\xf2\x47\xfe\x86\xd9\x13\x36\x97\x64\xdc\x47\xd4\x21\x17\x25\x71\x15\x99\x40\xfd\x68\x8b\x78\x92\xb9\x09\xdb\x86\x4f\x0f\x17\xa2\x3e\xa9\xce\x41\x4c\x86\x73\x8d\x7a\x52\xb1\x62\x80\x6c\xa0\x51\xf3\xe0\xdd\xab\xf7\x6f\x5e\xbf\x7c\x79\xf8\xeb\x2f\xef\xdf\x1d\xbe\x7a\xf6\xfa\xb7\x77\xea\xae\xa8\xca\x08\xd8\x3a\x95\xa6\x30\xdd\xc8\x8e\xd1\x56\xc9\x08\x5e\x4f\x83\x3c\x40\x7b\x70\x63\x49\x7b\x7f\x08\xf7\x74\xf9\xeb\x6a\x53\x55\x54\xd8\x9c\x2f\xb2\x49\xcd\xe4\x7b\xa6\xe1\x69\xd0\x87\x61\x46\x81\x3f\xe2\x8b\xba\xd5\x07\xb2\xc2\x15\x3a\xaf\x92\xb6\x29\x6a\xae\x4b\x69\x3f\x0b\xe6\x9a\x80\x8c\x80\x65\x41\x98\x00\x7b\x11\xb6\xd4\xbb\xe8\x55\x30\x57\xac\x15\x8a\x25\x5b\xbf\x5e\x4d\x75\x56\x90\x18\xf5\x7f\x4c\xfa\x5f\x05\xf3\x63\x28\x16\xc1\xf2\xce\x7b\xe5\x18\xc0\x4f\xcc\x04\xa0\xd6\x65\x73\xb4\xb2\xba\x9c\xe8\x0a\xb3\x16\x12\xe4\xdd\xeb\xa7\xaf\x07\x9c\xc1\xd0\x34\x39\xfd\x2f\x53\xa1\x4e\x3c\x2a\xf5\x55\x95\xe8\x0a\xf6\x81\xac\x6e\x8a\x42\xda\x3c\x7c\x6b\xce\x82\x79\xcd\xe7\x9e\xc0\xff\xc0\x63\x31\x94\xbd\x4c\xfa\x9e\xed\xf2\xa2\x50\xbd\x69\x23\x38\xe2\x23\x46\xd9\x22\x05\xcb\x30\x17\x54\x51\x86\xb2\x3c\x22\xfc\x40\xa5\x38\x0e\x51\x30\x86\x1b\x41\x69\x1a\x9d\x05\x53\x63\x9d\xd5\xea\x24\x1d\x02\x77\xe5\xe9\xb4\x88\xc2\x13\x13\x45\x49\x52\x73\x24\x3d\x00\xf4\x32\xe2\x8b\xf7\x86\x0c\x37\x97\xa8\x9f\x2e\x11\x9e\x8a\x2c\xd4\x56\x89\x71\x30\xcd\xb0\x7a\xae\xc6\xee\x39\x95\xf6\x29\x2b\xff\xc3\x0f\x66\x9b\xd5\xab\x20\xc3\x02\x03\xae\xcc\x57\xcf\xb6\xff\xa1\xd5\x9d\x3f\x40\xc9\x0a\xdd\x58\xdd\x24\x80\x34\x06\x53\x88\x84\x82\x3a\x85\xc6\x5c\xf7\xf7\x92\x8e\x8b\xdf\xc2\x80\xd4\x53\xcd\xba\xe7\x70\xeb\xad\x19\x88\x42\x3f\xe2\x32\x92\x15\xd9\xd9\x1e\x98\x09\xfa\xde\xa0\x03\xd1\x70\x98\xf9\xfb\xde\xa0\x0b\xd7\x4e\x77\xaa\x1c\x8a\xb1\x30\x95\x38\xcf\xa3\xf8\xd4\x7d\x1b\x16\xe4\x12\xbb\x7d\x05\x77\xc6\xd0\x9e\xb8\xa3\xf6\xd0\x82\x90\xc1\x91\x85\x43\x90\x2f\xce\x0f\x6b\x94\xd1\x4d\x50\xde\xbd\x3d\xc7\xbb\x3d\xc7\xfb\xbe\xcf\xf1\x78\x10\x5c\xb6\x61\x59\x27\x10\x6e\x99\xff\xab\x27\x5d\x44\xc5\x64\xfc\x2e\x4f\x59\x3e\xa5\xdb\x6c\x5f\xf0\x38\x0c\x33\xe8\x3a\xb1\xb8\x05\x31\x58\xa4\x32\xb4\xa0\xda\x17\xbb\xe4\xd6\x20\xba\x57\x94\x43\x70\x39\x04\x71\xf4\xe9\x9a\x4a\x17\xfb\xbb\x77\xd5\xad\x01\xdb\x9a\xdd\x35\xed\x43\x64\xd5\xbc\xcb\x0e\xaa\x14\x38\x45\x56\xd1\xd8\x36\x6a\xb6\xf3\x24\x66\x17\xac\x34\x89\xc6\xd4\x26\xd2\xf7\x0e\x23\xa3\x4f\x27\xa2\xcb\x36\xa7\x34\x73\x2c\x16\x2e\x07\x1c\xfe\xa7\xaf\x5b\xe6\xf2\xe4\xb3\x5a\x0a\x97\x40\x1e\xbc\x07\x50\xfe\xf1\x47\xc0\x9d\xda\xa4\xa2\xf8\x14\xa4\x71\x5d\xab\x91\x1f\x58\x58\xd9\x70\x69\xa7\x49\x6f\x4c\xa8\x51\xbd\x95\xbc\x2e\x91\x42\x19\x9a\x06\x19\x34\x73\x94\x93\xc1\xfe\x61\x6f\x4f\x74\xb4\xd5\x29\x5b\x5b\xd0\x2f\x3a\x0b\xc1\xd4\xca\xd3\x05\x51\xd1\xd2\x2c\x47\x59\x42\x1d\x19\xe7\x73\x10\xd5\xb0\x4d\x0e\xe2\x8b\x9c\xec\xed\x1b\x68\x88\xc7\x64\xc2\xd3\x29\xcd\x0f\x49\x81\x7a\x6a\x4f\x34\xfe\xa2\x71\xed\x07\x07\x96\x3f\xfe\x88\x5c\x3d\x5d\xb7\xca\x23\xfb\x60\x81\xa0\x5a\x7f\xe8\x27\x2e\xa1\x72\x31\xc6\xcb\x1c\xed\xbf\xf9\x0d\x8d\x2e\x46\x53\xdc\x10\x64\x41\xb7\x8a\xc5\x04\x30\x07\x12\x99\x13\xd2\x3c\x4d\x46\x44\x26\x65\xb4\x37\xac\x56\x94\x1d\xae\x98\x06\x2e\xfe\x73\x20\xce\x86\xde\x84\xba\x6c\xa0\x96\x8b\x1e\x47\xb7\xd1\xa1\xf5\xa9\x5a\x8a\x37\xd7\x5d\x51\x81\xe9\x87\xa6\x98\x55\x6b\xb6\x23\x13\xdc\xfb\x65\x32\xd2\x71\xdd\x97\xbb\x32\x5d\x36\xa4\x4e\x7d\x18\x36\xe4\xb4\x67\xef\x55\x73\x10\xdd\xfe\x83\xa4\x20\x54\x72\x47\x47\x69\x12\xd2\xfd\xa2\xf5\xe0\xd1\x26\xf3\x7b\x7c\xde\x0d\x7d\x0e\xa9\x66\xa3\x43\xa2\x17\x2b\x76\xa6\xfb\x54\xaa\xde\xbf\xaf\xc0\x89\xf9\xa7\x6c\xda\xe1\x43\x10\x86\xc2\x39\x6b\x24\xc3\x52\x8b\xef\xe6\xf0\x28\xfb\x00\x45\x64\x72\xef\x2b\x78\xaf\x38\x7b\x53\x05\x4d\xf4\x84\xea\xaa\x2b\xdb\x2d\x74\x39\x8c\xc6\xf2\x95\x6e\x60\x92\x22\x05\x0c\x04\x06\xf2\x95\x90\x50\x47\xd1\xaf\xa1\x5a\x0c\x26\xac\xc7\x35\x65\x0c\xea\x05\xbd\xed\xd4\x52\x05\x42\x7e\x0f\x34\xa2\x7b\xeb\x09\x1f\x88\x2e\x7b\x9b\xa5\xf3\x56\x97\xfd\xce\x75\x59\xe9\x93\xc6\x33\xd6\x5e\xd7\x1d\xdb\xc3\x61\x10\xeb\xca\x6b\x34\x0c\xc4\xd5\x59\xbc\xa4\x86\xe7\xa2\xab\xb7\x47\xb3\x20\xcd\x9f\x31\x40\x79\x6d\xd6\x7b\xc8\x05\x46\x22\x68\x96\xd3\x62\x58\xaf\x95\xd7\xe2\x38\xeb\x28\x4f\xa3\xf8\xf4\x12\xae\xa6\xb8\xde\x13\xe5\x77\x18\xc4\xea\xa7\xdf\x83\xe9\x02\x5f\xa2\x33\xf2\x1f\x76\xb0\x41\x6a\x1e\xe3\x14\x97\x9c\x75\x36\x74\x3f\x01\x88\x31\xc3\x70\xd2\xa4\xe2\x38\x9f\x35\x00\x23\xa2\x7c\x37\x68\x4b\xf6\x0a\x06\x46\x34\xda\xcb\x31\x3e\x07\xca\x6b\xe2\xe2\x00\x58\x64\xc8\x57\x6e\xc0\xa9\x39\xbc\x80\x48\x31\xc8\x93\x50\xdb\x88\xa8\x31\x86\x56\xc8\xae\xd9\x6e\xd8\x86\x60\x56\xe3\xd3\x28\x25\x9a\x96\xeb\x3e\x0b\x27\xe8\x5d\xc2\x2e\xe6\xaa\xd4\x40\x71\x56\x7b\xad\x6e\x53\x66\x1b\xdf\x5d\x3a\x2b\xdc\x6e\x10\x97\x9c\xc7\xf9\xac\xa9\x5c\x07\xae\xd5\xa1\x01\x86\x69\x9c\xe5\x51\xbe\xa0\xaa\x95\xed\xba\x15\xe2\x79\x92\x45\xb9\x8a\x21\xab\x57\xa0\x06\xd5\x8c\xa6\x11\x8e\x73\xd3\x9b\xa2\x72\xc3\x96\x9b\x04\x6b\xc4\xd1\x7b\xab\x62\x64\xf7\x1d\xd7\x8c\xbc\xd3\x44\x70\xdc\x78\x11\x87\xe0\xcb\x38\xc2\x69\x1e\x44\x62\xd8\x3d\xb3\x46\x0c\xe8\x6a\xd3\xe7\xc6\x67\x8e\xc0\x6b\x8d\x29\xc4\x6d\xae\xf9\xac\x69\xa4\xba\x52\x34\x5a\x71\xe9\x3c\x4f\xa4\x1e\x4b\xaa\x1e\xd0\x06\x14\xbe\x9c\x2e\xf0\x80\xfe\x87\x2b\xb7\x23\x3d\x03\x89\x77\x54\xd8\xc0\xcb\x41\x81\x80\xee\xd1\x08\x71\x01\x88\xb8\x60\x44\xb5\xd9\x22\xcb\x61\x81\xc3\x33\x1c\xe7\x82\x67\x86\x17\x39\xce\xba\x9d\x3a\x53\xc1\x7f\xa8\x1b\x03\xc9\xe0\xae\x7d\xf8\xc8\x20\x18\x03\xc8\xcb\x53\x36\x45\x8b\x38\xfa\x9f\x05\x46\x51\x88\xe3\x3c\x1a\x47\xba\x04\xae\x34\xd8\xbc\x7b\x2a\x0c\x31\x34\xe9\x96\x96\x01\xac\x36\xca\xda\xf3\xd0\xe4\x02\xde\xc9\xb5\x60\x18\xd5\x9b\x41\x4e\x04\x6a\x93\x77\x30\xaf\xfa\x9f\xab\x72\x81\xa5\xa2\xf2\x6e\x74\x06\x2f\xb0\xd7\xc1\x7b\x83\x2e\xd1\x58\x79\xc6\xfa\xcb\x93\xc6\x76\xa5\x24\xc1\xcc\x48\xbb\x5d\x29\x53\xd9\x43\xd5\x96\x9e\x10\xb5\x62\x1c\x8c\xf2\x24\xbd\x68\x50\xbb\x30\xe9\xd8\x3b\x44\x46\x13\x0d\x3f\x19\x23\x41\xcd\xde\x1e\xba\x47\xe3\x28\xdd\x03\x98\x3b\x5b\x5b\x68\x3f\x99\xcd\x92\xf8\xdf\x47\x77\xef\xdc\xb1\x88\x97\xbf\x58\x03\x1c\xa7\xda\x3d\xd2\x0d\x29\xbe\x57\x6f\x20\xe5\x15\x8e\x47\x9b\xc3\x20\xc3\xfd\x9e\xf1\x61\x16\x6e\x9b\xa0\x67\xf3\x8f\xe1\xd8\x78\x39\x8a\xe6\x13\x9c\x6e\xd2\x9a\xeb\x0f\xef\xde\xb9\xbc\x7b\x07\x4f\x33\x8c\x14\x62\xa8\xdd\x9b\xd2\xc2\xbb\xe1\x1e\xfa\xf1\x47\xf6\xa1\x19\xcc\x42\x41\xdb\xe3\x57\x4f\xef\xde\xb9\x43\x3f\xd4\x8e\x39\xce\x0d\xa4\xa3\x0a\xcf\x04\x43\xfa\x81\x22\x06\xbf\x55\x7c\x4e\x44\x2f\xab\x88\xb1\x86\x68\x14\x0b\x54\x1b\xa6\xc9\x79\x86\xd3\xfa\xdd\x3b\x77\x44\x8f\x25\x49\xde\xdc\x4f\x2f\xe6\x79\xf2\xef\x23\x5a\xf4\x12\x36\x4d\xea\xda\x23\xbe\xa3\x7f\xee\xde\xbd\x53\xd3\x77\x61\x77\x10\x35\x7c\x1c\x4d\x92\x34\x1f\x2d\xf2\x8c\xbe\x21\xd3\x66\x1f\xed\x21\x5e\xf6\xa1\xf2\xfa\xfd\x34\x1a\x92\x4f\xcd\x69\x34\x54\xde\x83\x4d\x6b\x1f\x88\x22\x5f\x09\x54\x53\x79\xa7\xd5\x10\x4c\x4f\x13\xa8\x82\xfc\x78\x78\x57\x60\xf1\x32\x49\x3e\x2e\xe6\x28\x0f\x86\x53\xac\x60\x72\xf4\xe4\xf5\x9f\x6c\xab\x27\xde\x1d\xfe\xfa\xfb\x7b\xd7\xfb\xa3\xdf\x9e\xbc\x7f\x75\xf8\xe7\xfb\x96\xef\x43\xdb\xf7\xa1\xe3\xfb\xd0\x75\xb6\xed\x6b\x47\xfd\x68\xb5\xa5\x7e\xb4\xda\x53\x3f\xf2\x36\x45\xd7\xec\x27\xb3\x39\xd9\x1f\x4e\xed\x2e\x72\x0d\xa9\x51\x2a\x4c\x16\x43\xa2\xed\x93\x52\x12\x00\x44\xac\x8a\x05\x52\x7d\x0d\x22\x08\x02\x88\x22\xf4\x08\x75\xb6\xfb\x0f\x51\x74\xff\xbe\x56\xbd\x50\x0e\xd1\x23\xd4\xee\xec\x5a\xdf\xc8\x5f\x78\x1c\x9d\xa0\x3d\x52\xc7\x23\xd4\x7e\xa8\x7f\xa7\x07\xa2\x05\xa5\x6a\xb4\x58\x1d\xfd\x85\x5a\xcb\x76\x7b\x68\x96\x97\x8f\x97\x77\x35\xaa\xff\x08\xa6\x1f\xd1\x2f\x07\xb5\xce\x5f\xbb\x75\x9d\xda\x25\x0d\x6c\xa8\xbf\x8b\x8c\x97\x2b\xf5\x80\xd2\xc9\xd9\x30\x59\xea\x1f\xc1\x5d\x80\xb4\xb9\x8c\xd0\x5f\xa8\xb6\x94\x04\xb1\xdf\x1d\xe5\x77\x57\xf9\xdd\xab\x1b\xc4\x42\x2d\xb5\x6c\x89\x7e\xfe\xf9\x67\xb4\x0b\x90\xd9\x12\xfd\x88\x5a\xcb\xf1\x98\x76\x50\xbf\x6b\x14\x21\xb3\xe3\x78\x49\x3a\x32\x5b\x1a\x9f\xf8\xe4\x39\xce\xe0\xfb\xf2\xe1\x5d\x2f\x51\xb3\xc5\x34\x8f\xe6\xd3\x68\x04\xc6\x01\x9b\xbc\x25\x61\xe3\xf0\x78\x79\xf2\xd0\xf1\xad\x47\xbf\x75\x9c\x1f\x77\xe9\xc7\xde\x49\x41\xeb\xd9\x62\x88\x40\xc1\x69\xa0\x59\xb4\x44\xa3\x64\xba\x98\xc5\x99\xc6\xfd\x6a\x9d\x44\x53\xa8\x85\x40\xd5\x4f\x84\x67\x5a\x6d\xde\x53\xec\xb1\xd5\x6e\xb5\xcc\xae\x15\x33\x99\x76\x56\x2d\x87\x81\xe9\xd5\xd1\x27\xf2\x9b\xf6\xb7\xa7\x48\x5b\x2d\xd2\xee\x2b\x45\xda\x7d\x5f\x99\x8e\x5a\x66\xb7\x8e\x64\x99\x8e\x35\xea\x42\x1a\xd0\x32\x79\x41\x4f\x45\xf1\x99\xda\x5b\xe4\xb1\x72\x8f\x2d\x77\x95\xfe\x61\xec\xd9\x63\xaf\x5a\xfc\x45\x47\xeb\xd2\xc2\x1e\xd5\xe4\x23\xe3\xb1\x2a\xdd\xaa\x89\x4e\xad\x5c\x49\xdf\x6a\x62\x55\x2b\x58\xd2\xc1\x9a\xc8\x65\x05\x8b\x7a\x19\xce\x04\xc0\xfc\x8b\x53\x5b\x12\xfe\xb0\x74\x0a\x41\x26\x00\xf6\x56\x90\x80\x50\xa4\x83\xfe\x42\xe1\x31\xf9\xdf\x72\x17\xfd\x85\x96\x9d\x93\x13\x73\x22\x01\x6c\x84\xfe\xda\x03\xc0\x65\x64\x01\x68\x42\x12\x7e\x5e\xc2\x86\x56\xac\x2b\x6f\x52\x3c\xa2\xc4\x85\xe8\xed\x28\x89\xd9\x02\x23\x57\xa5\xb7\xfb\xaf\x7f\x25\x6b\x44\x6b\xd9\x6a\x35\x50\x6b\xd9\x6a\xc3\xbf\x1d\xf8\xb7\x07\xff\xee\x36\x80\x17\xc8\xbf\x1d\xf8\xb7\x07\xff\xee\xc2\xbf\xed\x21\xf9\xb7\xdb\x97\x8b\xd9\x4f\x3f\x31\xa4\x7e\x42\x8f\x9f\x1d\xd1\x50\xe4\x88\xaa\x43\x88\x28\x04\x69\x94\x4f\x66\x4d\x0e\xb3\x25\x51\x21\xd0\x7b\x4c\x7d\x68\xd2\x07\x45\xc3\x68\xe2\x65\x4e\x6f\xfd\x0b\x92\xdf\x87\xc9\x5b\x9c\xe1\x7c\x80\x3c\x4b\x24\xeb\x84\xa3\x8f\xd1\x9c\xf9\xee\x26\x63\x14\xbf\x4d\x60\x3b\x36\x09\x32\x34\xc4\x38\x06\xff\x7e\x76\x6c\x15\xc4\x21\x38\xe1\x85\x51\x88\xe2\x24\x67\x8e\x94\x36\x2b\xd0\x3c\x26\xbc\x26\xee\xf0\xf9\xfe\x23\xbe\x78\x93\x46\x49\xfa\x96\xfa\xf0\xee\xed\xc9\xf7\x4e\xd6\xe1\xce\x5d\xc6\x98\xda\x04\xe8\xea\x1b\xff\xe3\x2e\x83\x7b\xee\xe6\xe5\x5b\x87\x7c\xfe\x88\x2f\xfe\x48\x52\x70\x43\xfc\x88\x2f\x9a\xe7\xe4\xb7\x1b\xec\x28\xfa\x1b\x33\xa8\x2c\x3a\x7d\x42\x04\x10\xda\x42\xbd\xa2\x69\x24\x3c\xf9\x53\xe8\x20\xbb\x5a\xde\x73\x1c\x47\xf9\xcc\x1b\xbc\x8f\xfa\x95\x5a\x20\xf4\x67\xa3\x09\x26\xdb\x0f\x44\x54\x68\x07\x0d\xd9\xdb\xe4\x9c\xd4\x5d\xe3\xcd\xdc\x27\xab\xf4\x4f\x85\x34\xa8\xf5\xba\xbb\x85\x37\xaa\xf4\xb3\xf2\xee\xd8\x9c\xaa\xd2\xc9\x93\xa0\x43\x55\x0f\xfa\xf3\x11\xc3\x90\x3d\x3b\xb4\x10\xc4\xd8\x4e\xc0\xd3\x4e\x72\xc2\x91\x3f\x05\x95\x63\x28\x73\x42\x7b\x16\x46\x9c\xbd\x71\x88\x1a\xbf\xc0\x42\xca\x7a\x62\x55\x0e\x51\x70\xcc\xae\x54\xd1\xfe\x81\x21\xfe\x2f\x81\xb8\x17\x73\x36\x0a\x6f\x93\x1c\x11\x96\xf4\x03\xe5\xea\x1a\xa0\x2f\x01\x85\x35\x1f\x2d\x86\x55\x6a\x06\xf5\x89\xd7\x79\xa2\xac\x6d\xf0\x41\xae\x54\x4c\x47\x3b\x51\x56\x31\x15\x62\x57\x03\x00\x4c\x59\xcd\xec\x75\x09\xb6\xaf\xa2\x25\x88\xed\x22\x6c\xff\xda\x03\x21\x7e\xcc\x3a\x79\x4b\x72\xc7\x27\xd4\x62\xa8\x3b\x06\x1b\xc9\x01\x07\xd6\x62\xf3\xee\x67\xd4\x27\xf2\xcc\x18\x30\xb4\xb7\x87\x7a\x65\x83\xf6\xd5\x75\xad\x9b\x66\x4f\x8f\xfb\xe6\x8c\xc5\xeb\xac\x4b\x4e\xd0\x5f\x44\x97\xb0\x27\x51\xa9\x34\x57\x75\xba\x62\x31\x13\xc5\x67\x2f\x1c\x92\xc6\x7a\xed\x17\x36\x04\x54\xca\x1b\xf1\x24\x45\x0e\x7f\xe5\x91\x3a\xaa\xc0\x62\x72\x74\x53\x94\x71\x31\x2f\x6c\x19\x79\x33\xff\x2a\x60\x1a\xaf\x38\xb9\x5e\xc9\xd4\x73\x56\x57\x86\xf8\x23\xd4\x83\xab\x28\xf4\xa1\x88\xf7\xf5\xb1\x38\xe6\x35\x30\x4d\x73\x45\x42\x0a\x2a\xd3\x95\x6e\x7d\x0e\x11\x56\xd4\x95\x6b\xcf\x54\x3a\x41\x7f\xf9\x27\xa7\xe7\x4f\x57\xbe\xdd\x33\xd0\x44\xa0\x7b\xac\x4f\x45\xf7\x18\x78\x35\xd9\x86\x32\x3c\x38\x1e\xa5\x17\x73\xea\xe0\xaa\xea\x79\xaf\x1a\x28\x19\x8f\x33\x9c\x5b\x23\x43\xe7\x48\x98\xec\x8b\x72\x12\xb8\x61\xaf\xd5\x0d\xb9\x43\x94\x3f\xdb\xf2\x67\x47\xfe\xec\x36\x40\xc4\xa8\xbb\x0c\x0d\xd7\x10\xaf\x8a\x2b\x91\x9a\xe7\xc1\x1c\x75\xe2\x10\x74\xcf\x5e\x3e\xf1\x28\x31\x84\xbf\x5f\x1d\xd3\x6a\x88\xfe\x62\x76\xa9\xf6\x4d\x87\xed\x16\xc0\x76\x9d\x5b\xa2\x2a\x5d\xa8\xf3\x6a\x43\x67\x50\xfd\xb1\xad\x3f\x76\xf4\xc7\x6e\x43\x18\x2c\xac\xc5\x7b\x6b\x0b\x1d\x92\x9d\xef\x57\xd1\x47\xee\x41\xd7\xba\xc9\x39\xea\x0d\x74\x35\x76\x73\x31\x0d\xdb\x10\x54\xd6\xac\x1d\x1d\xfb\x0b\x66\x31\x3e\xe1\x34\x92\xaa\xea\x04\x53\x87\x8d\xab\xa5\x74\xd6\x09\xbc\xfe\x4b\x13\xb6\x2d\x97\x05\x28\x6b\x9b\xc3\x61\x94\xb2\xc6\x07\x4a\x75\xf4\x52\x1d\xb3\x94\xd3\xda\x94\x75\xcd\xe1\x34\x4a\x75\x5d\x66\xa8\x17\xc6\xde\xc1\xbd\xf5\x57\x97\x40\xd7\x8e\xe1\xad\x63\x8f\x23\xd6\x5f\xda\xab\x7b\xa8\xfd\x90\xfd\x7c\xc4\x47\x88\xbd\xf0\xac\xbb\x30\xc6\xd1\x38\x07\x4e\x6f\x78\x0c\x65\x85\x03\xc7\x51\xcf\xc9\xe0\x29\xe6\x9a\x96\xd0\xbc\xfe\x52\x0c\x5d\xb5\xac\x6d\xe9\x5d\x7f\x29\x46\xad\x5a\xd6\x31\xb5\xae\xbf\x14\xfb\x55\xd6\x55\x5e\x5b\xcb\xf0\xfd\xfb\xae\x05\x00\x90\x6b\xeb\xc8\xb5\x3d\xc8\x75\x4a\x90\xeb\x16\x22\xd7\x5a\x13\xb9\x8e\x8e\x5c\xc7\x83\x5c\xb7\x04\xb9\x56\x21\x72\xed\x35\x91\xeb\xea\xc8\x75\x3d\xc8\xb5\x4a\x90\x6b\x17\x22\xd7\x29\x45\xce\xc9\xba\xbf\xcd\xc1\x77\x28\xcb\x83\x1c\xdb\x00\x20\x4e\xf2\x96\x83\x30\x10\x19\xb9\x69\x47\x83\x2f\x64\x2c\xf2\x8e\xeb\x0b\xe9\x88\xdc\xb4\x8e\x3b\x8d\x28\xce\xf9\x54\x22\xfb\x60\xfa\xd4\xe8\xce\x43\x99\x3b\xe6\xae\xc5\x31\x7d\xcc\x6d\x8b\x3d\x83\xb4\x7d\x8b\x9c\x42\xf5\x6a\x9c\x20\xe6\x0f\xc7\xae\xed\xc7\xce\x9e\x3f\x16\x76\xd6\x14\xd2\xb1\x6b\xad\x83\x5d\x47\xc1\xae\xe3\xc7\xce\x9e\x40\x16\x76\xd6\x1c\xd2\xb1\x6b\xaf\x83\x5d\x57\xc1\xae\xeb\xc7\xce\x9e\x41\x16\x76\xd6\x24\xd2\xb1\xeb\x94\x63\x67\x73\x2b\xe6\x01\xa9\xdd\x7a\x09\x5d\x86\x1d\xf3\xc8\x54\x72\xac\xe9\xa4\x2f\xae\x8e\x59\x65\xa9\x3e\x5d\x9f\xee\xc3\xb6\xc2\x03\xd4\xd9\xee\x6f\x75\x3b\xcc\x02\x5d\x77\x99\x82\xb9\xc6\x22\x14\xa4\x8c\x5d\xff\x65\xa6\xe1\x8d\x8c\xa5\x69\x42\x90\xbc\x7a\x1c\x8c\xb0\xb0\x11\x8b\x4a\xfe\x1b\x2f\x83\xd9\x5c\xec\x94\xe5\x07\x3e\xa6\xb4\xae\x1c\x2f\x73\xe5\x74\xbb\xf9\xf8\xd9\x51\x93\xed\x23\x6a\x33\xee\x88\xfe\x11\x5f\x34\xd0\x68\x7c\x2a\xb4\x79\x59\xcb\x7c\x1a\x10\x24\x96\x39\x32\x6b\x61\x1a\x7e\x4d\xb6\xe3\xaa\x88\xd9\xb4\xf7\x1d\x46\xec\xf7\x34\xda\xe9\x73\x3c\x9d\xe3\xb4\xf6\xf8\x19\x3d\xd6\xa7\x36\xfb\xbb\x77\x98\xcf\x8a\xda\xe4\xc3\xbb\x77\x21\x72\x2d\x38\x90\x68\x5e\x05\x83\xed\x4e\x83\xfb\x25\x0c\xb6\xc1\x77\x44\xf1\x4c\x18\x6c\xf7\x1a\xd2\x25\x61\xb0\x0d\x37\x11\x67\xe1\xf6\xbd\x41\xbf\x7d\x79\xd2\xd8\xae\x94\x93\xdf\xeb\x2d\xf2\x39\xdd\x44\x6e\xcc\x99\xe3\x33\xba\x65\xd0\x99\xf0\x13\x62\x0e\x14\xa4\x79\x34\x4a\x66\xf3\x24\x86\x50\xe9\xe4\xdb\xd6\xdd\x3b\x62\xdc\xa7\xd1\xb0\xc9\x40\x3f\x7d\x52\x1d\x00\xc4\xdd\xcd\x6b\x76\xee\x08\x32\x2c\xbd\x3a\x82\x0c\x2b\xdf\xfe\x48\xd2\x10\x2e\x97\x0b\x00\xf1\x46\xad\x61\x31\x06\x87\x3f\xe0\xf5\xc7\xfc\x94\x47\xd6\xe9\xfc\xac\x61\x86\xe1\x82\xd4\x3e\x99\xa8\xca\xfb\xdf\xf2\xf1\x2e\xd4\x82\xe3\x51\x93\x3c\x18\x58\xf7\x7b\xe2\x2b\x7d\x2c\x72\x44\x11\x5f\x9e\x9d\xcd\x5f\x3c\x3d\x90\x87\x4d\xf4\xd9\x79\x82\x35\xcc\xa8\x7f\x1e\x99\x56\xfc\x14\x2b\xc7\xb3\xf9\x34\xc8\x5d\x02\x4a\x04\x87\xfe\x27\x66\x21\x75\xb8\x05\x15\xee\x12\x08\x59\x07\x76\xbf\xe8\x6f\xdc\xe4\x91\x21\x07\xa8\x87\x6a\xed\xce\x2e\x1a\x46\x79\x56\x2f\xaa\x30\x3a\x73\xd4\x77\xf8\xfb\xba\xd5\xbd\x7f\xf6\xeb\xfe\xfb\x3f\x0f\x5e\xbf\x7d\xf5\xfe\xd5\xeb\xa7\xcf\xd0\x63\x08\x50\x90\x07\x71\x8e\x52\x3c\x4f\x71\x86\xe3\x3c\x8a\x4f\xb9\x21\x86\xb0\xe1\x2c\x09\x25\xed\xce\x3a\x9f\x3e\xab\x54\x27\x13\xa7\x56\x9d\xca\xa1\xa0\xe1\x72\x24\x1e\xdd\x1c\xe5\x38\x24\x94\xa3\x49\xd1\xdd\x87\xdb\xdb\x8b\x14\x1c\x1e\x44\x6e\x0e\x15\x44\x03\x57\xa8\x13\x7c\x4f\xc6\x00\xbd\x9b\x60\xd2\xeb\x79\x82\x16\xec\x76\x00\x11\x01\x88\x00\x43\xd5\x5a\x95\x5b\xf2\x61\x34\x3e\x1d\x00\xeb\x72\x5c\xeb\xea\x8a\x6a\x61\x0b\xcb\x45\x46\xeb\x66\xec\x17\xc5\xbe\xc1\x70\xa1\x4f\xfd\x31\x15\xdc\x09\xeb\x11\xe4\x3f\xe2\x8b\xa6\x13\x96\x5f\xf0\x1c\x8d\x4f\x51\xed\x35\xb4\x12\x4c\xeb\x50\x66\xe4\xea\xbc\x8a\x7d\xa0\xb7\xc5\x03\x80\xd2\x01\xbd\x24\x2c\xc2\xa9\x23\x8c\x32\x2a\xa2\x89\xec\x2b\xa2\x91\xff\xbb\xae\x25\xd8\x00\x48\xd3\x16\xd4\x35\x9e\x1f\x3d\x37\xe9\x32\xfd\x8c\x76\x73\x92\xd6\xd8\xe1\x19\x74\x61\x03\xfd\x83\xa2\xb3\x01\x8a\xce\xa4\x6c\xbc\xd4\x5c\x0f\xb4\xf1\xd6\x6b\x1a\x68\x81\x9d\x98\xe6\x60\x5a\x00\xd4\x84\x1f\xb4\x3c\x3b\x71\xd6\xe7\xaa\x43\xf7\x30\x35\xb4\x8a\xfc\xe4\x99\x88\xb7\xfc\x74\xbd\xfc\xf4\x14\x5f\x17\x3f\x89\x9a\xae\xc6\x4f\xba\x9c\x5e\x83\x9f\x0e\xe3\x28\x8f\x82\x69\xf4\x37\xce\x50\x80\x62\x7c\x3e\xbd\x60\x18\x86\xac\x3b\xca\x79\x89\xaf\x1a\xcb\x71\x92\xce\x5e\x25\x21\x46\xcf\xe8\x15\x35\x88\xaf\x2c\x25\x5d\x92\xaa\x7c\x0a\xde\xd5\x70\xbb\x8f\x73\xad\x58\x64\xdc\x6c\xf8\xd5\xb1\xec\xb5\xb1\x55\xcd\xfe\xe0\x92\x14\x6b\x32\x5c\x14\x47\x9a\x87\x8d\x18\x26\x85\x5d\x1c\x26\xea\xc7\xf3\x39\xe1\x05\xe8\x2d\x9e\x24\x3a\x73\x1c\x33\x90\x2e\xde\x13\x3f\xf9\xa2\x48\x79\xd0\xde\x15\xe7\x44\x73\xa6\x8e\xf5\x49\x3a\xa3\xc3\x1e\xb8\x6c\x37\x94\xbf\x25\x4b\xed\x49\xf6\x7a\xe8\x82\xa4\x7e\x34\xe0\x2b\xe3\xdc\x8b\x47\x94\xd1\xe9\x0d\x00\x17\x1d\xe0\x5f\x54\xab\x3c\x71\xc0\x47\x47\x97\xc3\x10\x92\x21\x13\x2d\x81\xf5\xec\x8a\xec\xc3\xa6\xa0\x8d\x9b\x36\xc2\x69\x15\x27\x2a\xea\x54\x14\x06\x79\x80\x86\xa0\x7b\xe9\x10\x1e\x7d\x0c\xaa\xa6\x19\x2a\xf8\x25\x67\xb3\xe2\x37\x38\x85\xb1\x1c\x25\xf1\x28\xc5\x39\xde\x64\xdd\x31\x4d\x4e\x35\xa1\xac\x9c\x4b\xbd\x5d\xad\xaf\x21\x2c\x06\x60\x4e\xef\xb7\x30\x99\x82\x43\x45\xa4\xe0\x70\x85\x45\xef\x53\xc6\xae\xc2\x90\x4a\x99\xb1\x93\xc8\x06\xde\x06\x6b\x40\xa9\xbe\xc2\xca\xa5\xc8\x27\x51\x17\x0d\x7d\xc5\x62\x0e\x44\xf1\xe9\x35\x48\x13\x49\xfc\x1e\x67\x0f\x56\x7f\x6d\x83\xb4\xb9\xa1\xb3\x49\x95\x72\xe7\x1c\x73\x2f\x87\x31\xc8\x81\x11\xa7\x95\x76\x9d\x47\x7a\xe0\x38\x74\x8d\x7e\x00\x5f\xd4\xe2\x2e\x9e\xa2\xed\xa1\xe0\x2c\x88\xa6\xc1\x70\x8a\xa9\x1b\x62\xe6\x5f\x16\xdf\x73\x62\x2a\x73\xd5\x41\x14\xb3\x85\xaf\x70\x9d\x62\xf5\xea\xeb\xcc\xaf\x49\xce\x2e\x45\xd3\xd0\x67\xb4\x26\xb9\x6a\xa0\x28\x43\x78\x3c\xc6\xa3\x3c\x3a\xc3\xd3\x0b\x14\xa0\x10\x67\x79\xba\x80\xe7\x06\x4a\x71\x10\x6e\x26\xf1\x08\x57\x5a\x67\xaa\x72\x2f\xa0\x71\x53\x3c\x4c\x2b\xbf\x69\x4e\xe6\x3d\x59\xab\xce\xc4\xa2\xc8\xaa\xdc\x2f\x0a\x96\xb3\x3f\x07\xad\xce\xff\x07\x72\x2c\x16\x00\xa4\x43\x44\xe3\xc2\x0a\x50\xe1\x6c\xd1\x40\x1d\x07\x25\x2b\x08\x64\x08\x6b\x44\x50\x65\x13\x0e\x87\x2c\xe2\x25\x97\xd4\x07\xca\x80\x38\x27\x9f\x5d\xba\xd4\xd8\xdc\xee\xec\x6e\x75\x3b\xea\x27\x6a\x12\x71\x7d\x31\xf4\xa0\x01\x6a\x6b\x5f\x75\xfd\x77\x80\x3a\x55\xf6\x4e\x99\xd3\x94\x1d\x94\x1b\xb2\x91\x77\x6e\xf2\x5d\x0b\xeb\xe9\x77\x13\xac\x28\x05\x2c\x41\x56\x80\x26\x60\x35\x26\x4a\x66\x85\xa9\xc8\x55\xd8\xc7\x31\xc7\x07\xe2\x0a\xf0\x69\x4d\x94\x26\x36\xaf\x1d\x04\x7d\x86\xcd\x12\xf3\xf6\xb6\x4d\x9e\x86\x8d\xdc\xd2\x6d\xbd\xb3\x4c\x2b\x37\xf0\xde\x9b\x22\x7f\xe2\x53\x86\xa7\x78\x94\xd3\x86\x8f\xf2\x34\xc8\xf1\xe9\x45\xcd\xe7\xae\xad\x58\x9f\x41\x5d\xdc\x43\x1b\x54\x94\x6e\x78\xdd\xc3\xd8\x68\xbc\x09\xb2\x8c\x88\x89\x27\x41\x86\x43\xed\xc6\x9c\xfa\x57\xec\x1c\xc6\xaa\x3a\xc2\x29\x6c\xb8\xc8\xaa\xe6\xaf\xa9\x78\x92\x9b\x39\xf9\xd8\x79\x46\x81\x8f\xba\x0f\x29\xc6\x4e\xaa\x60\xb3\x4f\x58\x8a\xfc\x46\x65\x2c\x2f\xf7\x38\x88\x83\x1b\x8a\x62\x03\xf9\x0f\x70\xcc\x3e\x68\x78\x3c\x3d\x19\xdb\x0f\x2c\xfa\x8d\xf3\x9c\x2b\xa1\xad\x9f\x14\x35\x50\xe1\x89\x91\x89\xb9\x63\x40\x4d\xb1\xad\x4a\xc9\x5a\x9d\x59\x78\xdd\x47\x6f\xba\x0d\x3b\xcb\x53\x1c\xcc\xd6\x32\x65\x83\x0e\xc5\x8c\xcf\xaa\x0f\x7e\xb7\xb3\x39\x8c\xa8\xc3\xb6\xbe\xa3\xa1\xda\x09\x04\xa2\x56\x2c\xd3\x6d\x54\xeb\x76\x74\xc3\xb4\x62\xf0\x3d\x02\xfc\x0c\xb3\xaf\xf9\xb2\xe0\x46\xc8\x81\x63\xad\x75\xad\xb0\x5c\x45\x9c\x07\x29\x6c\xb7\x5c\x0a\xa2\xbd\xbc\xc1\xf6\x46\x7a\x57\x71\xa5\xf1\x87\x1f\x36\xc6\xd3\x45\x36\xd9\xa8\xb6\xcc\xd1\x5a\x7c\x0b\x9d\xe8\xe6\x01\x6a\x17\x8d\x2b\xec\x6b\x21\x1b\xe9\x5c\x3d\x2d\x55\x8d\xe7\xef\x67\x74\xef\xbb\xdf\x64\x3f\xfe\xb9\x2c\xe7\x10\xed\xc6\x0e\x94\xb3\xb8\x44\x69\x43\x39\xdd\x64\x1b\x6d\xeb\x72\x30\x7b\xaf\x1a\xbd\x8b\x0c\xf4\xaa\x89\x72\xc6\xb3\x6a\x49\xfd\x7a\xe5\xd5\xf4\xb1\x4e\x91\xd3\x20\x68\xa6\x86\x91\x06\x7e\xe0\xea\xcf\xb0\x1e\xf2\x91\xe2\xcb\x1d\xd8\x61\xf7\x9f\xec\x5b\xa6\x68\x2e\x51\xa2\x33\x7a\x6b\x67\x1d\xcb\xb3\xac\xa3\xd0\x56\x28\xca\x72\x43\x93\x52\x6e\x2d\x8b\xb3\x18\x4e\xb9\x41\xfa\xcf\x1c\x4e\x69\x09\x5e\x71\x38\x9d\x86\xdf\x8a\xc3\x29\xca\x5e\x61\x38\x8b\x0c\xbe\xd5\x8e\x0e\x3e\xeb\x70\x5e\x79\xb8\x0a\xa6\x40\xc9\x78\x99\x76\xd3\x82\x41\xa2\x8b\x89\xb0\xf3\x8e\x5c\x6a\x1d\xf3\xba\x3e\x43\x7b\x28\x3a\x53\x47\xab\x68\x89\x60\x2b\x26\x0d\x0f\xbd\x3f\x09\xa2\x18\x92\x96\xf8\xce\x5a\x9f\x80\xdf\xc0\x7b\x4e\x3c\xda\xf3\x07\x1f\x30\x4d\x6c\xda\x0a\x42\xca\x5a\xcc\xa0\x74\x8d\x6c\xcc\x58\x25\xc4\x99\xe8\xc3\x22\x89\xf2\x64\x9f\x2f\x07\xc6\x4e\x48\x69\x42\x1b\x3b\x42\xd5\x93\x7d\xc7\xda\x63\x57\x4f\x9b\x78\x23\xa2\x7c\xe6\xdc\x8c\x41\xb9\x34\xc8\x99\x53\x77\xd3\x2c\x63\xd5\x61\xf0\x2c\xd5\x8e\x84\x55\x84\x29\x4b\x09\xd7\x91\x90\x2e\x09\x91\xf3\x84\x84\xf9\x65\x91\x4a\xd8\xcf\xf3\x09\x66\xf1\xf3\x29\x7e\x10\xbf\x33\xab\x80\x9c\x3d\x31\xdc\x80\xe4\x0f\x86\x92\xa9\x3a\xf4\x36\x00\xe4\xb5\x03\x12\xc4\xd5\x06\x53\x97\x55\x07\x03\x49\x13\xa0\xe5\x26\xaf\xd7\xe2\xf5\x85\x76\x5e\x80\x45\xe6\x09\x89\x3a\x91\x3c\x8e\xb3\x52\x89\x15\x96\x1c\xf1\xca\xe3\xce\xfa\xe7\xeb\xb7\xb0\x5f\x66\x4c\x67\xc3\x2c\x93\x14\xe8\x92\x86\xee\x06\xd2\xe8\x6a\xc8\x66\x5d\x4a\x3f\xc3\x43\xbd\xeb\x52\x33\x7b\xd7\x89\xd9\x5b\x3c\xc3\xa0\x85\xc3\xea\x4a\x59\x80\x1d\x45\xc1\x6e\x1f\x2e\xb4\xc3\x6b\xbb\x38\xd7\x60\xf1\x19\x8f\x1e\x4f\x85\x29\xcd\x03\xcf\xf1\x16\xae\x80\x5e\x02\xd4\x9b\x3b\xa5\xf3\x36\xc4\x15\xe6\xad\x58\xa7\x6e\xe7\xed\xed\xbc\x45\xeb\xcf\xdb\xab\xcc\x0e\xf0\x10\x9e\x44\xd9\xca\x73\xc3\x89\x09\xe3\x68\x90\x22\x7f\xbe\x7e\xeb\x95\x00\xea\x0d\x32\x4b\x02\x5c\x55\xec\x38\x31\x7b\x27\xbb\x66\x88\x47\xc9\x8c\x4d\x1d\x22\x16\xa2\x64\x91\x55\x17\x1e\xa2\xb3\xaa\x8a\x07\xc1\x4a\x9c\x8c\x9a\x17\xf7\x95\x6e\x40\x81\x8a\xc4\xb5\x25\xd7\x0d\xff\x49\x92\x64\x18\xcd\xa2\x25\xd1\x85\x1c\xf4\xc1\x4d\x50\x5b\x49\x43\x2a\x23\x32\x2d\xcc\xc7\x76\xc9\x19\x68\xa7\x64\xa7\x93\x2d\x86\x19\xfe\x9f\x05\x8e\x73\xa7\x89\x01\xe9\xaa\x9d\x92\x9c\x43\xef\x45\xaf\x69\x50\x45\xc9\x18\x95\x72\x53\x3f\x59\xd9\x5c\x58\xb9\x62\x24\xc9\xd9\xe6\x8c\x94\x44\xfe\x60\x00\xa5\xf7\x78\x74\x82\xfe\xda\xa3\xe5\x8e\xa3\xc2\xd0\x25\xf2\x37\x77\x81\x7e\xb2\xcf\xe0\xb5\x80\x26\x8a\x6a\xfb\x26\x08\x43\x32\x80\x25\x06\x90\x39\xe4\xa9\xda\x6f\xd2\xff\xba\xcd\x1f\x6f\x5e\xec\x1f\xa1\xff\xb5\xbd\xb5\x83\xe6\xac\xd2\x8c\xd9\xf2\x5c\x75\xbe\xf9\x38\xca\x76\x40\x4f\x9e\x07\x61\x93\x3f\x15\xe8\xc6\x6f\x02\x7e\xfc\xbc\xc8\x78\x44\x7c\x11\x08\x85\xb9\x2b\x43\xb8\x64\x81\xc7\x4a\xfe\x57\x50\xb3\x7a\xfa\x4c\xd0\x72\x16\x72\xdb\xf1\x58\x08\x28\xe5\x3c\x12\x2a\xca\x44\x34\x4b\xd2\x29\x10\xcf\xf2\x86\xb7\xcd\x62\xf3\x25\xfa\x95\xfc\x92\xc7\x6b\x0d\x23\x6e\x96\x76\xc0\x1c\x84\xe6\xe1\xda\xda\x02\x44\x14\xa3\xb1\x4e\xf6\x94\xfe\xf2\xc5\x0c\x59\xc4\xb9\xe0\x1d\xb8\x57\x64\xd7\x1a\x33\x86\xb5\x2a\xa5\x2f\x36\x69\xae\x68\x11\x61\xe5\x5f\x06\x80\xab\x59\x7a\x2e\xc4\xdb\xb5\x43\x2f\xd0\x5c\x6d\xf0\x95\xf0\x0b\x44\x40\xd1\xb0\x90\x77\x5d\xac\xf7\xec\x82\x8b\xf5\x1e\xae\xb5\x68\x6f\x4b\x31\x2b\x44\x2a\x2b\x0e\x5f\x20\xc5\x8f\xde\x26\x8a\xd0\x7d\xdf\xb5\x7c\xb5\x76\x1a\xdd\x5e\x79\x53\xa0\xbd\x1a\xd8\xa1\x3d\xe9\xfb\xce\x37\xff\x6a\xd5\x0d\x1d\x25\x97\x1b\xc2\xe3\x30\x74\x77\x02\x8c\xf5\x28\x89\x47\x41\xce\xeb\xac\x6c\x81\xf9\x2d\x9e\x0b\x81\x02\x53\x76\x12\x84\x34\x90\x11\x9b\xa8\x9f\x47\xca\x2c\x62\x53\xce\x7c\x16\x89\x00\xcd\x56\x38\x72\x07\x38\x53\x24\xb8\xe4\xc0\x2f\x38\xd7\x52\x0f\x2b\x93\x18\x62\xc0\xa2\x69\x90\xe5\xf0\x5c\x3e\xa7\xa5\x7a\x7d\x5c\xd3\xa7\xf3\x26\x6a\xd7\xe9\x15\xb3\x13\x76\x19\xcc\x75\x93\x98\x2a\x0e\x7e\x8e\x91\xd5\xed\x99\x73\x50\x59\x4c\xe9\xb2\xb9\xa2\x9d\xff\x4b\x1c\x04\xb9\xae\x28\xb8\x4f\x16\x5c\xa7\x0a\x45\xe7\x40\xd7\xe7\xf4\xff\x2a\x09\xf1\x25\x35\x0f\xbe\x13\xbb\x35\x7a\x28\x02\x3b\x09\x85\x9c\xfd\x27\xfb\xbe\x5a\xd8\x58\x5d\x0a\xfe\x22\x75\x99\xca\x86\x5d\x23\xb0\xbc\x87\xc1\xe1\x1e\x01\xeb\x00\xc5\x71\xd2\x60\x70\x82\x29\x60\xd6\x30\x76\x75\xb4\x6d\xab\x89\x4b\xed\x36\xc2\x0a\x8e\x81\x74\xa0\xf5\x8f\xfb\x8a\xf7\x61\xb1\x0f\x60\x41\x80\x33\xdd\x3f\xd4\x71\x8f\x13\xf4\x66\xd2\x03\x9a\x59\x14\xe9\x86\x5d\xf2\x7d\x06\xbe\x9f\x1e\xfc\xe5\xc0\xda\x9b\x01\xcb\x97\x94\x6b\xda\xba\x73\x89\x77\xc7\x40\x6a\x85\x25\x11\x2c\x1a\xb0\x2b\x37\xce\x66\xdc\xda\xfe\xd6\x4f\xc5\xcd\xeb\xde\x2b\x75\xf4\xd3\xd6\xca\x18\x08\x53\x8b\x67\x2f\xf3\x02\xe3\x39\x0a\x72\x34\xc5\x44\x0a\x26\x31\x9f\x01\x2c\xb9\x07\xf5\x04\x85\xf5\x1a\x04\xae\x2d\xb7\x90\xd8\xdf\xcc\xa2\x98\x3a\x89\xb2\x4d\xbc\x15\x2e\x51\x7f\x64\x85\xe8\xf0\x29\xf8\x53\x46\x9a\x81\xff\x31\xdd\xf2\x46\x67\xe8\xc7\x1f\x9d\xf6\x78\x33\x50\xc7\x9b\xb5\x6c\x19\x12\x13\xdd\x98\xe2\xdd\x9f\x9b\xcd\x56\x3d\x92\xf6\xab\xa4\x52\x25\x11\x8e\xd2\xec\x95\x83\xa1\x79\x73\xd7\xcb\xc8\x5b\x5b\x64\x23\x43\xb3\x78\xf9\x54\x2e\xd0\xd7\x99\xeb\x17\x68\xe0\xf0\xbb\xd4\x06\xc1\x8f\xe2\xa9\x8f\xa0\x6f\x97\xbc\xd6\x61\xfc\xcd\x4d\xab\x9b\xc5\xdb\xd9\x1e\x68\x7e\x25\x23\x40\xf5\x23\x57\x7b\x65\x9e\x7f\x57\xf4\x54\x00\xd7\x3b\xa6\x7b\xb8\xdd\x50\xd0\x28\x99\x4e\x31\xe5\xff\x64\xcc\x55\x03\x50\x35\x31\xa4\xc4\x2b\x52\x3d\x14\x55\x54\xb9\xe4\x4d\x96\xd1\x34\x38\x57\x5e\x39\xef\x25\xba\xaf\x7e\xd0\x0b\xe8\x42\x49\xa9\x52\x5a\x1e\x3c\x42\x8a\x07\x26\x05\x69\x79\x32\x3f\x2d\x77\x5c\x5f\x45\x59\x30\xa5\xd8\xc3\x0f\xa8\x0c\x4c\x92\x01\x0d\x3f\x8a\xd3\xe8\x8c\xea\x2a\x5c\x62\x38\x2b\xe4\x47\xa9\x52\xcf\x57\x3c\x07\xed\x58\xab\xd5\xf4\x9a\x75\x28\x2b\xd6\x6f\x46\x13\x3c\x5b\xaf\x5e\xb7\xc2\xc9\x4c\xe6\xe0\x31\x3d\x56\xea\x73\x56\x41\x53\x2b\x5e\xca\xd4\x8b\x74\x17\x43\x55\x2c\xfe\xd6\x54\xc3\x46\x49\x7c\x86\xd3\x5c\xd3\x61\x69\x92\x3b\xee\x4c\x09\x1e\x9f\xd4\xfb\xcf\x7f\x6d\xf5\x0d\x2d\xa2\x5f\x5e\x15\x2f\x2b\xfa\xc3\x94\x5f\xb1\xd2\x51\x2b\xdf\xd6\x89\xdb\x4d\x2a\x3e\x86\x9f\x68\x10\x8b\xdc\x55\xf3\x24\xcb\xa2\xe1\x14\xfb\x67\xac\xa3\xa9\xd5\x2e\x37\xc9\x8e\xb2\xfd\x41\xe9\x37\xbe\x03\xff\xc7\xaa\x05\x09\xf3\x39\x99\xc1\x03\xe5\xb7\xbc\xf0\xe4\x2c\xf4\x11\x5f\x0c\xf4\x7b\x51\x4e\x30\xe3\xa6\x94\x1b\x88\x4c\xe3\x01\xfc\x5b\x02\x28\x66\xe5\xc0\xbe\xce\xe5\x2e\xc1\x54\x78\xd3\x33\xc1\x0d\x2c\xf4\x7a\x7d\xeb\xfc\x62\xff\x68\xc7\x5d\x40\x11\xe1\x3d\x37\x84\x98\x38\x4a\xa5\xf4\x5d\xf3\xf5\x1c\xc7\x47\x47\x2f\xad\x62\xd5\x2f\x93\xa9\xc3\xef\x56\xbc\x66\xd1\xf2\x30\xd6\xe1\x2a\xbb\x1e\xd1\x59\x9c\xad\x36\x8d\x91\x77\xde\xd8\xa2\xc4\xb8\x1b\xe8\x91\x26\x64\x53\xe7\xaf\x9c\x3b\xd8\xf2\x5b\x19\xb0\x2a\xc0\xef\x68\x1c\x99\x73\xbc\xa0\x1e\xc8\xfe\x95\xd1\xd4\x5f\x90\x34\x0e\xcb\x5b\x94\x12\xe3\x38\xa1\x6f\x0c\x01\xc8\x32\xef\xe3\x22\xe9\x51\x75\x4a\x53\xe4\xc5\x31\x1d\x9b\xdb\xf7\xd1\xc6\x86\xfb\x6e\x85\x13\xbe\x99\x27\x34\xdf\x90\xef\x2a\x47\x49\x29\x0f\xab\x7a\x19\x93\x17\x54\x99\x53\xf4\x8d\xcf\xab\x4a\x42\xa0\x4f\x9f\x28\xbb\xca\x32\x4d\x3e\x88\x17\x7c\xdb\x6b\xd9\x68\x9c\x7a\x12\xe5\xb2\xb2\x73\x0d\xda\x0e\x1c\x6d\x88\x9f\xee\xd3\x0d\x46\xb9\x8b\x39\x5d\x55\x33\x70\x91\x91\x18\x56\x2f\xbd\x13\x8b\x8f\x3b\xc4\xac\x0b\xfc\x53\x2e\xe6\xcd\x6c\x8e\x92\xd9\x3c\xc8\x61\x79\xa9\x3a\x0d\xd5\x65\xc1\x58\xc4\x14\xf5\xa7\xea\x9a\xe8\x9a\x7e\xeb\x20\x77\x5d\x8e\x83\x09\x6d\xfb\x88\xb3\xb7\x87\x91\x15\xee\xf2\xc9\x46\x8d\xbf\x05\x78\x65\xe9\x5b\x62\x96\x51\x23\x2d\x69\x53\x50\x7e\x71\x05\x6a\x24\xea\xae\x51\x80\xbc\x73\x6d\x63\x81\x5e\x7b\x13\x4b\xc0\xbd\xa6\x96\x73\x25\x5a\x8d\x65\xbd\x3f\x6e\x2d\xb7\xbb\xfd\x76\x7f\xb4\x03\x89\x0d\xfa\xdb\xfd\xde\xf6\x78\x7b\x7c\x52\xe7\xa6\x78\xa8\x9a\x3f\x48\x3a\x3c\xfb\xc8\x0a\x28\x78\xfb\xc2\xb3\xf9\x12\x65\xa5\x20\xa3\x61\x6d\x56\x5f\xf3\x8a\xe6\x98\x7a\x5f\x69\x55\xe5\x91\xcf\x13\xc9\xa7\x6b\x4f\x19\x3d\x66\x03\x9f\xd0\x6b\xcc\xe1\xeb\x0d\xe0\x60\x2b\xa3\xc6\xd4\x9b\x07\x69\x86\x6b\xda\x44\x2d\x38\x98\x4c\x33\xcd\xf0\x23\x8b\x39\x6f\x25\x10\x70\x44\x63\x78\x95\x4c\x3a\xca\x18\x16\x32\x45\xe6\xd5\xa2\x1a\xf9\x61\x9c\xb2\x19\x66\x49\x21\xac\xea\xde\xe1\x2c\xa7\xbe\x0d\xc1\xd4\x31\x41\x8d\x3a\x8f\x5b\x27\x68\x6f\x0f\xc9\xb9\x87\x7e\xfc\xd1\x6c\xf7\xb8\xcd\x60\xf8\x9c\xf4\x99\xa0\x9e\x2d\xe9\x01\x86\xdd\x32\xd2\x25\x8c\x35\xf9\x8d\x16\x99\x2b\x4f\xa7\x81\x7a\xf5\x02\xef\xba\xe4\x8c\x6d\xd1\xe1\x28\x48\xd6\x61\xc3\x5b\xf5\xcf\xa1\x81\x96\x79\x6a\x6d\x81\x6b\xa7\x3a\xed\x7e\x35\x41\xe1\xdc\x1a\x79\xb6\x41\x0d\x65\x77\xa2\xab\xe6\x85\x67\x45\x7c\x12\x9e\xa7\xc1\x7c\x0e\x7a\x64\x90\xb3\xe6\x55\x93\x09\x0a\xc8\x4a\x9f\x29\xb7\xd2\x0a\x67\xaf\x76\xd5\xc7\xba\xca\x26\x2f\xfc\xb8\x3e\x55\xbd\x40\xb2\xf6\x61\x8f\x50\x7a\xb8\x8e\x5f\xa4\xd5\x73\x1b\x81\x4a\x2d\x23\x96\x5e\x08\x8d\x43\xca\x35\x62\x83\x21\x0f\x76\x1c\x1b\xa7\xa2\x10\x51\xe6\xed\x45\x40\x68\x60\xa9\x6a\xca\xc0\x16\x06\x95\x62\xc7\x0e\x64\xdc\xd8\x6d\xba\xab\xdc\x50\x95\xc6\x27\xc7\x56\xa7\xe0\xf6\x39\x6b\x9a\xfa\xa0\xb0\xdf\xf2\xde\xf9\x37\x12\xc3\xc5\xbd\x84\x3d\xfe\xb2\x0b\x18\x99\x96\x6e\x8b\x8a\x3d\xad\xc4\xfd\x4a\xdb\x1a\xa1\x5d\xb5\xf4\xec\xc2\x6e\xae\x41\x19\xa4\xc6\x34\x27\x7c\xd6\xc6\x1b\x62\xb6\x79\xb4\x81\x02\x63\x87\xe3\x72\xac\xff\x16\xeb\x7a\x21\x74\x56\x8a\x9e\xf3\xcc\xe5\xbf\xae\x44\x37\x48\xe4\xe5\x13\x57\x00\x34\xe7\x9d\x55\x4b\x2d\x91\x37\x33\x44\x80\x04\x46\xec\x3a\x9a\xc9\x3e\xd0\x27\xeb\x84\x23\x60\xab\x16\xe6\x6f\x44\x24\xae\xb8\x98\xeb\x5b\x8f\xaa\x2f\xa7\x45\x8b\xb6\xb6\xbe\xda\x80\xdc\xb4\xe8\xf8\x44\xd8\x4a\xd0\xd6\x8c\xce\x1c\x20\x8a\x8d\x90\xf1\x8b\x0d\x43\xad\x82\xb2\x22\x38\x10\xb5\xc1\x84\x3d\x50\x42\xb2\x57\x0e\x60\xc5\x16\x68\x7a\x58\x3b\xa0\x15\xbb\x20\x61\xbd\xb1\x63\xbb\x76\x59\x79\xdb\xc2\xce\xa1\x33\x31\x70\xc2\xf0\xa5\x1e\xcb\xa0\x1b\x5b\x9e\x54\x06\x10\x2b\x94\x71\xd0\xa4\x3c\x42\x6e\xef\x6f\x71\x9d\x32\x02\xb4\x88\x48\xc7\x9f\x61\x6d\x92\x51\x95\xcb\xc5\x34\xbf\x3d\xef\x10\xd3\x9c\xed\x58\x18\x05\xe5\x46\xfd\xda\x22\xfb\xba\x51\x34\xd7\xa5\x6b\x5c\x52\xbc\xb1\x0b\x3c\x11\x06\x3e\xc3\xaa\xc2\x2c\x0e\x8a\x69\x41\x9d\x4c\x46\xc5\xea\x4a\xc1\x4e\xbf\x61\xff\xaa\x22\x2f\xa5\x89\xab\x39\x26\x29\xec\x05\x43\x1d\x3c\x6d\x11\xd3\xa2\x2e\xd2\x6e\x91\x6b\x93\x22\x64\x34\x83\x8f\x73\x99\x10\x4d\xac\x6c\x8d\x71\x8a\x35\xb3\xaf\xf4\xf3\x17\xb0\x31\x05\x59\xb6\x98\xe1\x50\x3f\x4f\x0c\xa6\x29\x0e\xc2\x0b\x65\xbd\xd3\x36\x64\x8b\x98\xa6\xad\xac\x10\xd1\x6c\x35\xb1\xe7\x96\x5f\x2b\x6d\x9a\x88\xe0\x02\x17\xf5\x34\xc3\x2b\xcb\x7a\xbf\xbd\x68\x11\xaf\x5a\xd7\x17\xd4\xb8\x2d\x96\xa7\x26\xa4\xd7\x9c\x0b\x90\x60\x7e\xb7\x0c\x78\x6f\xd9\x94\xd4\xd9\xc3\x0a\xbb\x52\x79\xb3\xd8\x35\xea\x24\x2c\x09\x61\xc3\x7d\x42\xa8\x78\xb2\xa7\xaa\x79\xb0\x81\x0a\xad\xa3\xac\xb6\x02\xa3\xa8\x65\x99\x70\x9e\x90\xbc\x70\xbb\x48\x94\x1d\x99\x7c\x0c\xc7\x70\x5e\x42\xff\x5b\x7c\x58\x52\xe6\x85\x61\x1f\x98\xbc\xa0\xb5\x93\x56\xaa\x9d\x93\x3c\x25\xd5\xc3\x99\x3e\x69\x8c\xcc\xe5\xc3\xdf\xb9\xc1\x60\xce\xe2\x05\x55\x37\xc7\xf2\x12\xcc\xf3\x82\x3d\x80\x9e\x42\x9a\x81\x8a\x8b\x6f\x85\xc8\x40\xe5\x98\xfa\x56\x44\x31\xf3\xe4\x65\x7e\x00\xcc\x65\xe6\x14\xc7\xe0\xcc\x5b\x5c\x9b\x88\x52\xee\xa9\x8c\x86\xce\x2e\xae\xcb\xb6\x19\x80\x09\x4b\x51\x92\x1e\xa3\x7e\x0f\x5c\x8e\xe1\x03\xf7\x9f\x3d\x1c\xa3\x64\x16\x11\x1d\xa1\x81\x02\xfa\xe9\x3c\x9a\x4e\xd1\x10\x8b\x06\x43\x94\x06\x71\x98\xcc\xa6\x17\xd7\xb4\xb9\xa7\x5e\x13\xac\x9b\x1a\xe8\xf0\xf7\x06\x0c\x29\x69\xfc\x33\x48\x21\x3a\xc8\xa1\x2d\x82\x14\x6e\x6c\xe2\x25\x1e\x2d\x72\x5c\xdb\xe0\xd1\xa8\x36\x1a\x2c\x71\x47\x83\xb9\x6f\x79\xd4\xa2\x6b\xaa\xbd\x81\x36\x48\x77\x90\xff\xdf\xf0\xef\x99\x69\x35\xaa\x74\xe3\xdc\xdc\xe0\x2c\xda\x60\xdc\x45\x0d\x9b\x6e\xa7\x7e\x3a\xcc\x6c\x94\x3d\x86\xea\x1f\xbc\x47\x49\x96\x11\x99\xd6\x53\xeb\xf7\xb6\xac\xb4\xe6\x8e\x6b\x75\x74\x6a\x2b\xf3\xda\xd6\x56\x68\xbc\x59\x9a\x78\x40\x1a\x70\x45\x8c\x3b\x99\x06\x99\x4d\xa4\xcb\x7a\x93\x25\xf2\x56\xfa\x03\xf0\x77\x06\xac\x25\xbc\x99\x17\x63\x00\x7e\xd3\x96\x99\x5c\x24\x83\x66\x06\x72\x9e\x4c\x96\xf7\x39\xfa\xc9\xb6\x67\x6b\xa9\xa1\x65\x0a\x67\xf7\x65\xa9\xb7\x4c\x95\x5a\x71\x33\x2e\xb7\xd4\x42\x8b\x5e\xcf\xaa\xed\xb2\x0c\x68\x26\xee\x90\xc9\x65\x2e\xf2\x0c\x91\xdc\x10\x75\x79\xd4\xaf\xf5\xed\xe1\x8e\x28\x71\xc2\x20\xee\xfe\xe6\xb2\x70\xdd\xa0\x7d\xfc\xc5\xd3\x83\x4b\x44\x96\x4f\xee\x41\xe9\x5a\x85\xa5\x96\xc7\x85\x6d\xf1\x12\xb7\x92\x55\xdc\x41\xb0\xff\xf2\xc3\xc7\x70\x3c\x50\x96\x67\x85\x43\x56\x34\x8f\xb3\x2b\x55\xab\xac\xcb\x5f\x87\xbd\xbc\x50\x3b\xf8\x0a\xcc\x11\xdf\x88\xd9\xdc\x31\xf9\x2a\x59\x92\x37\x78\x57\xfb\xc2\xca\xde\x7c\xc3\x0d\xf4\xcf\x0d\x5b\xb0\xe5\x72\xf4\x99\x0c\x0e\xc6\xea\x9a\xe4\x3e\xe3\xae\x4b\x77\x21\xd5\x13\xb5\x85\xab\x2b\x0a\xf6\xb4\x7b\x85\x8e\xc1\x9e\xe9\xb2\xe7\xbb\xdd\x49\xd5\x58\x4a\x9b\x45\x52\x13\x96\x58\x0d\x83\xa6\x33\x24\x81\xd7\x30\xaf\xd9\x4b\xfc\xc7\x19\x6a\x00\x08\x6b\x7c\xf4\xf6\x15\x3b\xbe\x85\xc6\xab\x68\x49\x93\x81\x40\x01\x67\x97\x2a\x7b\x6b\xea\x98\xa9\xd5\xee\xb3\x9b\x38\x77\x7c\x57\xb0\x07\x7f\x01\x79\x7c\xcd\x06\xe2\xaf\x5d\x30\x7f\x8d\x76\x62\x97\x30\x5c\xd5\x50\x7c\x25\xc1\x78\xed\x28\xda\x86\xe2\xeb\x12\xdc\x15\xed\xc4\x9f\x5d\x76\x7f\x76\x63\xf1\xe7\x5f\x2a\x1a\x9a\x6f\x8f\x67\x87\x76\x7d\x6b\x47\x25\x7b\xb8\xff\xfc\xc2\xb5\x74\xa8\xfd\x5b\x71\xf5\x28\x32\x90\x4b\x53\x9e\xc8\x74\xa9\xa6\xb4\x64\xf9\x2b\x2f\x4f\x1a\xdb\xdd\xaf\x35\x29\xe5\xb5\xe7\xa0\x5c\x35\xf7\xa4\x96\x73\xd2\x42\xcc\x4e\x3f\x69\xa4\x9d\xe4\x05\x3d\x89\x27\xc1\x3e\x2a\x2b\x17\x3f\xf5\xe4\x93\xaf\x82\x7c\xd2\x40\x8e\x14\x94\x72\x7b\xfd\x32\x19\x05\x53\x34\x4f\xa6\x17\xe3\x68\x8a\x92\x31\xa2\x8b\x16\xdb\xc5\x3b\xb6\xbc\x2c\xb6\xfd\x9e\x0e\x68\x34\xac\x09\x26\xf1\xfa\x80\xbc\xbf\x7c\x68\xc7\x0e\x52\x7c\x2d\x87\x1f\x2c\xa1\x06\x3e\x82\x8b\x21\x19\x41\x93\x89\x0f\x9a\xf3\x34\xc9\x13\xf2\x09\xed\x91\xdd\x87\x09\xc0\xca\xa1\x3d\x14\xe3\x73\x82\x40\x71\x0d\xf1\x62\x3a\xf5\x4c\x14\x81\x81\x9c\x26\x4a\xbc\x23\x57\x24\x4f\x3e\x26\xc5\x46\x6e\xaf\x61\xfb\x65\x34\x4c\x83\xf4\xa2\xcc\x46\xae\xe4\x07\xf5\x56\x05\xd9\x42\x99\xd5\x93\x28\x17\x9c\xe4\x60\x8a\xa2\x78\x82\xd3\x48\x0b\xe0\xaa\x45\x74\x30\xf3\x8c\xda\x11\x46\xed\xe1\xac\x10\xf6\x8f\xc7\x18\x86\xeb\x71\xe2\x9e\xc1\x24\xc8\x39\x42\x2c\x94\x07\x55\x83\xac\x5d\x25\x42\x45\x71\x00\xb9\xde\x95\x9c\xe1\x34\x8d\x42\x9c\xa1\x37\xd4\x20\x12\xe1\x8c\x0a\xf0\xf9\x05\x8a\x62\x96\xcd\x58\x22\x50\xa1\x05\x33\x57\xc3\xbb\x55\x2b\xb0\x74\x2e\x0f\xdc\x2a\x51\x03\xc9\x40\xbd\xba\x78\x47\x59\x58\xd3\x6e\x0a\x5c\x12\xd5\xfb\x62\x11\x9e\x86\x03\xb4\x01\x99\xb2\x36\x4c\xc7\x11\x77\x9b\xe4\x6f\x86\xf3\x49\x12\x16\xde\x91\x57\xa0\xcd\x18\xf9\xae\x8b\x67\x08\xd9\xe1\x0c\x29\xfa\x9a\x43\x36\x1f\x57\x6f\x10\xc3\x79\x70\x1e\xdb\x5f\x14\x41\x42\x94\x05\x99\x56\xcf\xe7\x4e\xfc\x78\x71\x3a\xc3\xb1\xc3\x75\x98\xac\x28\xc5\x58\x20\x29\x7c\xd8\xbe\x4b\xc2\x3b\xd3\x3f\x38\x11\x60\x6e\x52\xfc\xea\x57\x24\x2e\x96\xa6\x6e\x9c\x7e\xe0\x4d\x4e\x82\xec\xf5\x79\xcc\xd8\xfe\xa2\xb6\x41\x4a\x6e\xd4\xc5\x9d\x27\xf2\x08\x8b\x20\x87\x27\x2f\x4a\xe9\xa0\xa5\x0a\x87\xdb\x51\xea\xff\xca\x16\x73\xa2\x6a\xc5\x51\xde\x0c\x88\x72\xca\x96\xbe\x20\x3d\x5d\x90\xde\x75\xf6\x07\x72\x64\x50\x28\xe8\x27\x79\xe3\x36\xdd\xc8\x90\x94\xe8\x11\x35\x0a\xf3\x41\xa7\xb3\xd4\xae\x41\x25\x50\x5b\x0f\x3c\xcb\x0e\xe2\x86\xf1\x31\x4e\x71\x3c\x22\x0d\x40\x3f\xcf\xcd\xf9\x6a\x75\x03\xd3\x8b\x5d\x15\x7a\xd7\x19\xe4\x4a\x8d\xe1\x12\xaa\xcf\x60\xa6\x64\xaa\xd0\xa4\x26\xef\x45\x4c\xfb\x01\x06\x90\xce\x5a\x3b\x04\xea\x63\x3e\x1e\x32\x83\x4d\xad\x2e\x8e\xe1\x88\x2a\x0d\x21\xe5\xa0\x92\x5a\xfd\x5b\x96\x95\x3c\x62\x39\xda\x63\x62\x93\x9f\x59\x94\xca\x22\x0a\x57\x2c\xf1\xec\x46\x60\xca\xc9\x38\xd9\xf6\xcc\xe5\x11\xd4\x95\x39\xc2\xdf\xe9\xf3\xc4\xcb\x35\x1c\x7c\x1d\xb6\x29\xba\xae\xee\x19\x2b\xf4\x9a\x09\x33\x96\x24\x00\x58\x0a\x5c\xe8\xc3\x10\x65\xc9\x0c\xd3\xd4\x53\xe8\x7c\x82\x63\x74\x91\x2c\x52\xe1\x66\x1f\x10\x75\x96\x56\x7e\xcd\xb1\x73\xaf\xba\x0a\x9a\x17\x9d\x8b\xd6\x32\x44\x05\x40\xb3\x69\xf7\x8c\xe8\xfa\x35\x97\xbb\x52\x34\x2a\x8d\xe9\x7e\x32\x27\xca\xce\x5c\xea\x3d\x4c\xdf\xb9\x82\x3a\xa5\x54\x06\x16\x26\x4d\xa7\x9a\x81\x25\xf2\x9a\x87\x94\xcd\x4e\xba\x7e\x56\xd5\x5f\xd6\xec\x77\x68\x44\x3b\xc4\x16\xf4\x39\xe7\xb8\x88\x78\xc8\x0f\xdb\x7e\x0d\x66\xe0\x34\x51\x52\x0e\xb1\xa5\x5a\x82\x99\x8b\xb5\x5a\x61\xbd\x70\x89\x25\xc3\x79\xac\x82\x9f\xa0\x3d\xa5\x7d\xfd\xd3\x0a\xa9\x8b\x3c\x8b\xec\x33\x74\x9e\xc4\x1b\x39\xd5\x9f\xf9\x75\x47\x25\x78\xe1\x34\x49\xe6\x28\x18\x26\x67\x8e\x65\xb0\x98\xe4\x0d\x5e\xdb\x86\x9f\x60\x90\xa2\xa2\x55\x95\x4e\xf1\xb6\x42\x5e\xad\x4a\x93\x47\x6c\x4e\x80\x52\xf0\x7f\x59\x65\xde\xb8\x16\xbe\xd1\x34\x89\xf1\x0d\x48\x3c\xa8\x17\xed\xc9\x35\x04\x5e\x54\x58\xc9\x08\x58\xe9\x42\xa6\xe6\x22\xd1\x95\x23\x2e\x4f\x9d\xfe\x64\xee\x3d\xb2\xf3\x74\x3f\x46\x01\xdc\xbc\x35\x62\x11\x16\x46\x16\xb2\xe2\xbc\x17\x57\xe1\x0a\x4f\x23\x9c\x1f\xf4\x70\x88\x59\x74\x1a\x47\xe3\x68\x14\xc4\x39\x0b\x28\x19\x51\xea\xa1\x4a\xda\x8e\x6b\x9b\xfc\x87\x72\x83\x98\xee\x95\xd5\x37\xd7\x10\x36\xc6\x6e\xde\x64\x0b\x4f\x18\x7c\xd5\xf5\xaa\xa4\xaf\x91\xd3\x2d\x4c\xf4\x94\x71\x82\x51\xda\x69\xf8\xda\x52\xbd\xa8\xf7\xb3\xb5\x85\xdd\xf2\x85\xf1\x58\xff\xab\x57\x70\xdc\x5a\xb6\x5a\xad\x76\xab\xd3\xea\x36\x50\x6b\xd9\xea\xb5\xb6\x5b\xfd\xd6\xce\xc9\x8d\x55\xdc\x40\xfd\xca\xa1\x57\x58\xf8\x3a\x3e\x22\xd6\x8c\x3d\x67\x17\x82\x61\xba\xf2\x07\xfa\xdf\x4f\x9f\x20\x66\xaf\xa1\x6a\x8c\x51\x4d\x0c\xef\x0f\x7b\x0e\x43\xa1\xfa\x07\xb5\x2a\x4e\x43\xfc\x67\x65\x67\x52\xb3\x02\xca\x1e\x53\x1c\x9f\xe6\x13\xea\x7a\xe4\x95\x22\xd5\x63\xc6\xc8\x89\xb2\x5a\xa4\x98\x67\xf1\x28\x09\x09\xbf\x63\xfa\xc3\x64\x77\x78\x5d\x1c\xfb\x53\x30\x00\x8e\x47\xcd\xe7\x78\xe9\x6f\xb3\x2c\x80\x4c\xa5\xd9\xbe\x72\x70\x17\xc9\xac\x15\x22\xbb\x38\xe2\x1a\x94\x85\x75\x71\x14\xd1\xba\xe4\xb7\x7c\xbc\xbb\x52\x34\x17\x36\x14\xde\x58\x2e\x7c\xa8\x3e\x7d\x42\xcf\xf1\xb2\x30\x7c\x4b\x09\x03\x8d\x82\x1c\xc7\x6c\xcd\xd7\x39\xc8\x23\xfc\xfd\x8c\xa4\x9c\xc3\xca\x0e\x7f\xc7\xa4\xa1\xc2\x99\x90\xe6\x77\xd5\x73\xdd\xaa\xb8\x54\xe1\x0d\x81\x5d\x9b\xc7\xcf\x10\x6f\x3a\xfe\x94\x66\x00\x69\x0a\x25\x1a\xd8\x79\xb5\x70\x24\xa4\x63\xff\xb0\x04\x96\xe3\xae\x62\x3e\x09\x44\xa8\x03\xc9\x62\x7e\xe8\x28\x3b\x92\x32\x46\x93\x39\x9e\xca\x8f\x74\x91\x44\xeb\x97\x65\x2c\xa2\xf6\xa7\xc1\x6c\x8e\xf0\x12\x22\x49\x0e\x23\x93\x38\x7a\xae\x4a\x60\xec\xd3\x06\x7a\x9e\x3a\x72\x05\x49\xd1\x10\xff\x97\x27\x50\x3a\x94\x27\x2a\x69\x8c\x61\xa9\x45\x41\x8e\x02\x94\x47\x33\x87\xc6\xed\x0a\xc9\xae\x92\xeb\x4f\x0a\xa1\x76\x0e\x01\x45\x7b\x04\x3d\x36\x0a\xc7\x11\x8f\x8a\x4d\xfe\x53\xeb\xf4\xd0\x26\xaa\x45\x14\xe3\x9f\xd0\x6e\xbd\x2e\xa2\x65\x7b\xb5\x78\x5a\x8f\x4e\xf1\x7d\x14\x89\x70\xdb\x9f\xf6\x64\xd3\x8f\x1e\xf1\x36\x1c\xf0\xa2\xd1\x0a\x8a\xbf\x77\x59\x52\xfb\x94\x4e\xae\x2b\xf5\xa9\x3f\xca\x7d\x55\xf2\xf7\x90\xdd\xd9\x55\x32\x06\xdb\x5c\x28\x16\xdb\xfb\x7b\x3a\x9a\xae\x1c\x2b\x41\x14\x07\x43\x73\xe7\xa1\x6c\x00\xaa\x8a\x53\x1a\x83\x83\x28\x81\x9a\x62\x18\xe5\x57\x55\x05\xe5\xe4\x14\xb3\xcb\x23\xa4\xc8\xe7\xaa\xa1\x7b\x1d\xa2\xc9\xd6\xa3\x5c\x71\x91\xbc\x42\xc6\x2d\x30\x1c\xaa\xda\xb1\xa8\x83\xc7\x99\xdf\x83\xa9\x43\xff\x80\xf5\xbb\x1d\xc2\xfa\x99\x26\x17\x1c\x0c\xaf\xa9\x52\x7b\xe8\x55\x90\x4f\x9a\x23\x1c\x4d\x65\xc9\x2d\xb4\x42\x44\x22\xf7\xfe\xb7\xd2\xca\xe3\x71\x47\xb2\xb6\xbf\xeb\xfa\x7d\xb2\xed\xae\xca\x0b\xd6\x7e\x57\xe7\x85\xb2\x7d\xae\x5a\x2d\xec\xd4\x28\xae\x6a\xf4\x73\x7b\xe7\xdc\xb4\x79\x84\xb9\xdf\xb7\xbc\x2e\x75\xa4\xdc\xea\x43\xa0\xa8\x0d\xe3\x68\x3a\xe5\x61\x67\xd9\x35\x09\xd8\x6f\x95\x2b\x25\x7c\x33\x17\xbb\x36\xbd\x6a\x55\xde\x2b\x3e\x95\x46\x99\xd5\x54\x89\x51\xae\xcb\xf9\xac\xc2\x16\x8c\x5d\x05\x69\xfb\x77\x5a\x14\x42\x65\x93\xd8\xbd\xc5\x52\xc5\x83\xbd\xa1\x22\x5f\x53\xfd\x84\x7c\xf6\xfe\xdc\x1f\x65\xfe\xfd\x39\xda\x23\xff\x7a\x12\xa8\xcd\xde\xff\x4d\x96\x99\x65\x37\x08\x71\x7f\x77\x68\x86\x5f\x17\x60\x41\xf6\x11\xa9\x92\xa3\xe0\x9c\xa0\xc2\xd9\x1d\x6d\xb5\xd6\x5a\x3e\x68\xf5\x1f\xa0\x9f\x08\x09\x7f\xc3\x9a\x7e\x70\x70\x70\x50\x47\xf7\xe9\x8b\x9f\x7f\x46\xad\x65\xbb\x05\xcb\x3d\x41\xc0\xb3\xdc\x53\x12\x6b\xad\x65\xaf\xbf\xdd\xa2\x95\x9d\x9b\x95\x9d\x57\xad\x0c\xba\x17\x67\x0b\xb8\xe9\x53\x03\x34\x1e\x3d\xa2\x25\xd1\x7d\x04\x3d\x5d\x58\x9e\x95\xdd\xda\x83\x32\xec\xaf\x18\xf6\xfe\x1e\x6a\x35\xb7\xbd\x30\xd0\xa7\x0c\xf4\x27\xea\x6f\xc3\xb9\xad\x8e\x7e\x46\xcd\x6d\xf4\x5f\xa8\x8d\x06\x68\xb3\x5d\x45\x45\xb1\x24\x87\xae\x6e\x34\x50\x3a\x0a\x46\x13\xcc\xb2\xeb\x94\x2b\x1c\xa4\xe4\x7b\xc2\x8f\x69\xad\x46\x8b\x92\xad\x92\x86\x24\x59\x4d\x94\xce\x70\x1f\x31\xd1\xa2\x7b\xe8\x7d\x5a\xa3\xf0\xc0\x90\x3b\xc3\x1d\x07\x4d\xe7\x32\x87\x4f\x4d\xc0\xcb\xfa\xd1\x27\xd4\xaa\x18\xd6\x3c\xc6\xe7\xca\x65\x27\x38\x75\x64\x06\x90\x98\xa7\xef\xb9\x63\xf4\xa4\xfb\xf2\x29\xdb\xda\x97\x39\xd2\xe0\x78\x04\x8e\x34\xf4\xbf\x6e\x47\x9a\xe7\x78\x69\x5b\x02\x5c\xd5\x11\xc0\x3d\x5a\x69\x93\xfe\xae\x16\x7f\xd3\x34\x5f\x4c\xf0\xb2\xb2\x09\xa3\xc2\xce\x73\xc5\xa8\x9a\x95\x5a\xbf\x2e\x41\x3e\xc1\x4b\x3b\x84\x26\xeb\x3f\x65\x6b\x5f\x9e\x48\xc8\x19\x38\x73\xdd\x6d\xea\x79\xe5\x9d\x67\xb6\xea\x36\x92\x8e\xba\x5d\xd1\x04\x2f\xf7\x27\x41\x5a\x39\xcf\x56\x56\xba\xa1\x83\x1c\x69\x11\xdd\xc8\x9d\x5f\x71\x13\xc7\xb1\x63\x73\x1c\xaa\x25\x95\xf4\xea\xd2\xec\xd3\xee\xd7\x5d\xf2\xce\x55\x94\xb4\xd3\x1a\x17\x97\xf5\x08\x08\x51\xdd\x87\x24\x8a\x6b\x1b\x1b\x6b\x44\xdc\x54\x38\x9c\xce\xb7\x55\x2c\x3d\x7c\xa6\x50\xc6\xad\x3e\x61\x3c\xca\xd3\x97\xd7\x9a\xf8\x64\xa3\x3e\xdb\x62\x3e\x56\x8f\x94\x49\x8b\xac\x96\x28\x85\x96\x79\xc9\xb7\x2e\xf4\x91\x6d\x65\x56\x99\x35\xe7\xab\xa4\xa6\x53\x1b\x65\x4b\x68\xa7\x20\x3f\x26\x9d\x2d\x5d\xb0\x4c\x00\xd1\x87\x71\xce\x88\x6d\x66\x8b\x61\x96\xa7\xb5\xa8\x81\x3a\xf5\x06\x24\xe1\x93\x26\x0b\x32\xa3\x76\xeb\xae\x0b\xb8\x2b\xaf\x79\x5a\x37\x6d\xa1\x4e\xd5\xeb\xb3\x2f\x83\x3c\x8a\xdb\xd5\x16\x2d\x06\xcb\xd7\x2d\xf1\xb8\xde\xd2\xc5\x8a\x7f\xb9\xd5\xab\x2a\x02\xd7\x35\xa7\xa6\xd0\x9e\x7b\x0d\xa3\xb8\xfc\x47\x2d\x63\xb4\x3b\xbe\xe2\x95\x4c\x41\x90\xae\x48\x74\xe8\x9a\xe3\x34\x99\x91\xb7\xfb\x49\x88\x61\x91\xaa\xba\x20\xa9\x15\x5e\x61\x4d\xd2\xf8\x76\xfd\x65\x49\xb0\xe3\x4a\x93\xe1\xab\x5e\x9c\xd8\x2c\xa2\xeb\x93\x3a\xdd\xaa\x2f\x51\xa2\xd4\x6a\xab\x94\x28\x26\x16\x2a\xf1\xe6\xa6\xd7\x2a\xa3\xe9\xb2\x5c\xce\x91\x62\x45\x97\xd4\x36\x47\x8c\xa1\x1f\xe7\xb5\x88\xcf\x09\x73\xa9\x72\xdb\x16\x57\x5e\xaa\x0c\x84\xab\xae\x54\xbf\xbd\x3b\xd8\xdc\xad\xb6\x50\xfd\x96\x8f\x77\xc5\x32\xc5\x1e\xd6\x5b\xa4\x68\xa3\x5f\x6e\x8d\xaa\xd8\xfe\x75\xcd\xac\x45\x3e\xde\x75\x2f\x50\xa4\x17\x6f\x72\x79\xca\xd3\x8b\x02\x07\xa3\x10\x93\x2d\xfa\x6f\x6f\x0f\xf7\xf9\x4d\xa7\x1a\xce\x46\xc1\x1c\xd7\x0a\x16\x4e\x5b\x2c\xa3\x51\x90\x8f\x26\xa8\x66\xa7\x8f\x06\x14\x26\x69\x72\x0e\x7c\x0b\x19\x57\x6a\x1b\xaf\x82\xe9\x38\x49\x67\x38\x64\xc3\x10\x06\x79\x60\xa7\xa0\x5b\x5d\x80\xab\x83\xba\xbe\xfc\x66\x63\xb5\x0a\x9b\x7c\xd5\xc2\x1b\x38\x8c\x8a\x6e\xc9\x86\xd5\x05\x37\x2b\xe3\x73\x06\xd0\x96\x86\x45\xcc\xb8\x87\x7a\x08\x68\x7c\xc5\xeb\xa9\x57\x0e\x40\x23\x52\xf0\x42\x2e\x4c\x1c\xb2\x6c\x66\xca\x2d\x74\x6f\x26\x5e\xc5\x4f\xf6\x42\x49\x89\x36\x5b\x64\x39\x1a\x62\x14\x91\x1e\x9d\xe1\x38\xa7\x79\xd6\x02\x38\x5e\x4f\x71\x2e\x6e\x2c\x54\xca\xed\x6b\xe4\xe9\xd4\x8d\xfb\x34\xc7\x21\xbd\x5a\x25\x13\xc4\x7f\xc4\xf3\x1c\x2d\xe2\x39\x4f\x1a\xa8\x67\x07\x55\x7c\x5a\x5a\x0e\xe9\xfb\x84\xf5\x03\x64\x1a\x7c\x2c\x7a\x41\xdc\x12\xf3\x7d\xae\xe8\x06\x07\xd9\x5d\x99\x37\x8f\xd1\xd3\x1b\x2c\x89\x36\x4b\x62\x9a\x27\x28\xca\x33\x7e\x2b\x06\x11\x0e\xbe\xea\x19\xd3\xd0\x89\x3c\x4d\x88\xeb\x3f\x64\xaa\x94\x75\x97\xb9\xf7\x21\xf0\x52\x76\xf9\x0c\x40\x06\x4e\x76\x53\xd1\x58\x59\x4d\xa1\x44\xe1\xe3\xa7\x41\x1e\x70\x65\xbd\x55\x55\xd3\x7c\x1c\x86\x19\xb4\xc1\xf3\x82\x7b\x7a\x9a\xf1\x42\xf5\x45\x51\x04\x59\xb0\x32\x8f\x33\x67\x17\x44\xe7\x3c\xbb\x04\x40\xe5\x25\xbd\x53\x12\x28\x1e\x94\xd4\x9f\x18\x24\xde\xcd\x0c\xe6\x7b\x8a\x4e\x6d\xc3\x96\xf7\x95\xca\x95\xaf\x8d\x0c\xb2\x4a\x32\x73\xfb\x7a\xbd\x4c\x47\xa7\x06\x14\x55\x3a\x88\x05\x13\xd5\xab\x52\xef\x38\x03\x1b\x95\xc4\x89\x64\xbc\xa6\x08\x65\xc0\xb0\x3c\x52\xda\x63\x20\xcd\xc7\xbe\xdc\x95\xc8\x55\x99\xc5\xb4\xf7\xf7\xf4\x24\xe9\x55\x39\x98\xe7\x3a\xcd\x50\x70\x16\x44\x53\x88\xd8\x45\xe5\x02\x08\x3b\x3f\xd7\xbc\x53\x2e\xab\x44\xf1\x59\xf2\x11\x67\x66\x92\xe1\x1a\x4b\x0e\xdc\x40\xe7\x93\x68\x34\x71\x8a\xea\xe1\x45\x81\xa8\xb6\x5b\xe5\x13\x65\x98\x24\x53\x1c\xc4\x97\x28\x4c\x0e\xa6\x8b\x6c\x82\xfe\x98\xe0\x9c\xc6\x33\xe1\xb9\x68\xe1\xba\xd6\x3c\x48\x41\x50\xb0\x57\x52\x6a\x0b\x71\xbd\x46\x38\x10\x21\xe9\xa1\xc7\xaf\xbe\xcc\x8b\x0a\x9f\x52\x46\xf2\xcd\x19\x9e\x2a\xd7\x17\x97\x63\xc5\x6a\xdc\x99\x82\xf5\x58\xab\x14\x54\x9b\x7c\xb4\xc3\x57\xb4\x99\xb0\x29\x22\x99\xdb\x61\x2d\x21\xaf\xb9\x73\x1a\xf4\xac\xcf\xac\x42\x3e\x2a\x8e\x66\x3e\xbe\xe7\xe0\x52\x57\xd8\x33\x52\x32\x17\x01\xf3\xda\x65\x69\x77\x44\xbf\xfd\x64\x11\xe7\x9c\xbf\x1c\xc2\x84\x54\x1a\xd3\x44\xc2\x6f\x21\x6e\xf1\x9e\x8e\xff\x96\xd1\xe4\x43\x5b\x16\xf9\xba\x9c\x61\xf0\x36\x59\xc4\x21\x5a\xcc\xe9\x85\xc2\xd1\x74\x11\x62\x83\xef\xed\x62\x06\x46\xd2\xc9\x45\xfd\x50\x3d\xb6\xad\xc0\x22\x4c\xce\x63\x15\x8f\x24\x9e\x5e\xa0\xf1\x42\x4c\x4a\x47\x24\xfd\xad\x2d\x34\xc5\x19\xbd\x54\xe9\xd6\xb5\x40\x6e\xa4\x78\x16\x44\xb1\xae\x5c\x55\xa3\x6b\x16\x2c\x6b\x1a\x5d\x70\x70\x8a\x36\x5d\x99\xd9\x1b\xe5\x47\xaa\x62\xcc\xa9\xe5\xc1\x37\xe4\xc0\xc9\x1c\x0f\xad\xf5\x9f\x90\xc2\x80\x3e\x7e\x02\xde\xf0\xb2\x13\xf9\xaa\xd3\x18\xc5\x35\xb5\xc9\x9f\x50\xaf\xa1\xf1\x99\xcb\x7d\x92\x67\xf0\x76\x31\x09\xe1\x3b\xa5\xc2\xe2\x6b\x5b\x54\xce\x53\x33\x0b\xfb\xfd\x48\xed\x01\xf1\xf6\xbe\x32\x9f\xbc\x4e\x13\x04\x33\x9c\x92\xdd\xa4\x58\x18\x36\xe5\x06\x01\x2e\x43\xba\x0b\x32\xe9\xa2\xaf\x41\x42\xaa\xb8\x72\xd5\xfb\xc6\x18\x69\x29\xb0\xa4\xc0\x87\x21\xb7\x41\x35\xe9\xab\x8a\x30\x33\x19\x96\xda\xa3\x0e\x34\x34\x49\x86\x36\xf7\xd4\x91\x2e\xe7\x4a\x1e\x5b\xb4\x08\x5b\xbf\xc1\x49\xc7\xbf\xa1\x36\x7d\x55\x67\xb7\xca\x59\x28\x0b\x2f\x79\x5d\xd1\xcb\xcd\xb3\x1a\x7e\x21\x97\xb7\xf7\xd6\x82\x28\x31\x71\x8e\x58\xa1\xc7\x9b\x2e\xc3\xc4\x4e\xd3\x93\x89\x9e\xef\xc1\x27\x41\x06\x19\x72\xbd\x3b\xee\xd2\x54\xe4\x52\x5c\xab\x77\xa0\xe8\xa0\xb3\xda\x69\xd8\x35\x9c\xa1\x24\x56\xb6\xc2\xed\x3e\xaa\x6d\xb7\x3b\xe0\xc9\x5a\x77\x6c\x8b\x9f\xd3\xc2\x7c\x1b\x2c\x1e\xdd\xfb\xe1\x6b\x89\xfa\x5a\x94\x81\xac\x30\x60\x6a\xd1\x55\x33\xda\x09\x2b\xe4\x24\x5f\x37\xba\x1d\x69\x08\xd1\x10\xc9\x65\x41\xee\x2a\xfb\x90\x88\x31\xd0\x42\xb7\x1d\x3d\x7f\xdc\xd9\xee\xbb\x2f\x89\x15\xa5\xba\x5e\x3b\xc2\x1a\x8f\xad\x56\x3d\xcc\xda\x11\x16\xe1\x3d\xfc\x16\x02\xdb\x0c\x51\xe2\x89\x2d\x2d\x29\x7c\xe2\x5c\xbf\xc9\x84\xf1\xcb\x75\x98\x48\x00\x61\xd5\xc4\xa3\x43\x78\x66\x12\x54\xad\x09\x2f\x5b\x6b\x30\xd7\x66\xd6\x1d\x8e\x85\x99\x2f\xc8\x6f\x57\xeb\xeb\xdf\xe6\x21\x88\x0c\xb5\xb3\x69\x5a\xfe\xea\x19\xfb\xbc\x11\x84\x69\xe5\x66\x1c\xe1\xca\x57\x88\xa8\x28\x62\xf7\x87\x4a\xa7\xf7\x0a\x63\xbe\x00\xbc\x6a\x1b\x0c\x29\x97\x2d\x45\x87\x2c\x37\x9d\x50\x40\x95\x51\xb4\x3e\xf0\xcc\x47\x8f\x45\x82\x19\x6c\xf4\x1a\x1c\xec\xc1\xfa\x97\x28\xe9\x04\x5f\x57\x55\xca\x3e\xd6\x56\x7f\xaf\xed\xee\xc4\x01\x4b\x72\x93\x09\x5c\xbc\x02\x12\xfd\x9a\x00\xca\x41\x4e\xf3\xc5\xb3\x92\x32\x66\x28\x8a\x32\x84\xc7\x63\x3c\xca\xa3\x33\x3c\xbd\x40\x01\x0a\x71\x96\xa7\x0b\x78\x6e\x80\x9e\xbe\x99\xc4\x23\x5c\x29\xca\x68\x45\x0e\xd5\x12\x3d\x00\x4a\x32\x20\x37\x40\xac\x6e\xb9\x20\x9d\x70\x4d\x2b\x03\xda\xe3\xec\x28\x92\x09\x79\xcc\x12\x1e\xe8\x22\x46\x2f\x28\x56\xce\xf5\x1c\x74\x25\xbe\x3f\x70\xf4\xaf\xbd\x21\x2a\xae\x06\x95\xcd\x95\x32\x05\x7e\x05\xc9\xaa\xf4\x10\x17\xb2\x07\xca\x38\x38\x27\x0f\x81\xf7\x4d\x1e\x25\xf9\xdd\x76\xbb\xb3\xd5\xed\x54\x53\xf3\x33\x66\xf1\xd1\xe2\xdf\x07\x6c\xd0\x36\x44\xe0\xa4\x28\xce\x71\x3a\x56\xbc\x85\x91\x77\x56\x70\xf9\xca\x48\xe7\x5c\x4b\x97\x5b\x16\x1f\x31\x40\x13\x3c\x9d\xe3\x94\xa8\x3f\x15\x26\xc1\x01\xc3\x8d\xdd\x0d\x36\x51\xfe\x0c\xe7\x78\x54\x67\x32\x2f\x55\x50\x52\x9b\xef\x29\x55\xcf\x81\xa4\x9a\x4b\xd9\xf2\xdb\xe7\xd4\xa2\x9a\xf3\x20\x54\xed\x3b\xdf\xb3\xe6\x85\x3b\x00\x2e\xd2\xf7\x8b\x6c\x26\xc2\x66\x51\xcf\x22\x26\x33\x5c\xea\x1c\xbe\xfa\xb6\xd1\xc9\x4f\x44\x24\x3f\x7f\xf5\x78\xff\xfa\xf9\x89\xa8\xd0\x3c\x28\x05\x69\x81\xf1\xd5\x37\xc1\x53\xcf\x67\xc1\xa8\x12\x5f\xcd\x82\xd1\x55\x78\x4b\x14\xbf\x12\x7f\x7d\xc4\x6e\x13\x92\xc2\x5f\xfb\xef\x01\x2d\x32\x0e\x94\xc9\x68\x23\xb4\xec\x6a\xcc\x56\xb8\xfd\x15\x96\xa4\x92\x3b\x0c\x04\x1b\xb8\xc4\xc0\x7e\xc8\x5b\x0c\x3c\x53\x0b\x84\xf4\x7d\x15\xe4\x13\x1a\xd6\xf7\x0e\x7f\xcf\xba\xf9\xa1\x8c\xf4\x7b\x79\xd2\xd8\xee\x7d\xad\xe1\x7d\x19\x32\x35\x1e\x8e\xb8\x7e\xed\xf1\x7e\x79\xcd\xab\xc6\xfd\x15\x18\xaa\xf1\x7f\x7d\x41\x7f\xc5\x77\x08\xfe\xeb\x0a\xa0\x6b\x1f\x51\xf0\xa8\xb1\x72\xc8\x14\x06\x50\xa2\xc1\x2a\xef\x0b\xc2\xd3\x68\xa5\x95\x2b\x30\xbe\x30\xb2\xfd\x5e\x35\x17\x2d\x06\xcb\x9d\xb4\xc4\xe3\x7a\x6e\x5a\xac\xf8\x97\xf3\xd3\xaa\x8a\xc0\x75\x49\xca\x21\xb4\xe7\x76\xd5\xa2\xb8\x7c\x07\xbe\xc4\x16\xfc\x2c\x98\x0b\xe5\x70\x16\xcc\x57\x8f\xbd\xe0\xb8\x22\x6e\x57\xe1\xf3\xca\xa4\x7d\xbe\xae\xc3\x32\xba\xbf\x87\xba\x7e\x9f\xe5\x8b\x1c\xb7\x1d\x4e\xcb\xf4\xcf\xe7\xba\x4c\xff\xbc\x0e\xcc\xbc\xe2\x8e\xac\xb8\x16\xa1\xfb\xa8\x5d\x77\xf8\x44\xf3\x2f\x55\x3c\xa3\x79\xc5\x5d\xa3\xe2\x8e\xb7\xe2\x8e\xb3\x62\x77\xcd\x79\x1a\xcd\xa7\x70\xf4\x52\xa3\xdd\xf2\xe8\x11\xdc\x9b\xf8\x44\x9f\x3b\xe4\x79\x97\x3c\x02\x0a\xae\x5a\xc4\x50\x7c\xa0\x43\x51\xfb\x80\x1e\x91\xd6\x7f\xfc\x11\x01\x36\x1f\xd0\x4f\xa8\xd5\xdc\xd9\x56\x46\xa8\xfe\x10\x7d\x28\x08\x77\xa1\x8c\x3d\xf5\x05\x9f\x05\x73\xf0\x99\x7d\x9c\xd7\x6a\x1c\x61\x20\xba\x8f\x7e\x42\xb5\x2e\xda\x44\x1f\xea\x8c\xd2\xee\xd8\x79\xdb\xc9\x8a\xcf\x60\x1b\x2e\xc2\x90\xa7\xfb\xb6\xb9\x91\x7d\x20\x28\xa1\x3d\xa4\xa0\xd3\xb7\x2e\x93\x40\x6c\x3d\x09\xee\x76\x0e\x9e\x44\x53\x8c\x6a\x2a\x9d\x2c\x5c\x80\x2f\xd6\x88\xb3\x5b\xd4\x66\x56\xa7\x99\x49\x56\xb5\xd6\x2b\xf8\xc9\x6b\x32\x79\x7d\x3f\x4b\x21\x6a\x57\x12\xf4\x5f\xb5\xab\x25\x5b\x21\xa8\x5f\x8f\xba\x94\x54\x77\xb7\x14\xa5\x56\x5c\x1c\x44\x39\xe1\x28\x2f\xde\x08\x47\xf9\x72\xb9\x6f\x41\xa4\xf8\x0c\xa7\x19\x7e\xa5\x00\xca\x57\xae\xb8\x66\x3f\xc8\xcf\x5e\xee\x2e\xac\xd4\xb5\x04\xf0\x3f\x53\xfe\x10\xf1\x43\x66\x28\x23\xb0\x50\xd2\xe8\x0d\x1f\xf3\x89\xcd\x7c\xf3\x3f\xd4\x4f\xd0\x1e\xfa\x50\x2d\x56\xa7\x43\xa4\x1c\x9e\xc6\x49\x8a\x3f\x9b\x54\x51\xaa\x3c\x8c\x43\xb8\xe7\x2c\x87\x3b\x22\x6f\x5e\x8f\xcb\x64\x86\xd2\x0e\xad\xe3\x87\xbd\x3d\xb4\xd9\x2e\x91\x49\x2a\x87\xa9\xa5\xd7\x12\xc4\x4e\x95\x20\x15\x69\x2f\x33\xfc\x32\x49\xe6\x72\x4a\x34\x4c\x1c\x1a\xca\x88\x6a\x2a\x87\x71\xe2\x19\xcc\x07\x68\xe3\xf1\x93\xfd\xa7\xcf\x0e\x7e\x79\x7e\xf8\xef\x17\x2f\x5f\xfd\xfa\xfa\xcd\xff\xfd\xf6\xe8\xdd\x6f\xbf\xff\xf1\xe7\xff\xf3\xbf\x83\xe1\x28\xc4\xe3\xd3\x49\xf4\xe1\xe3\x74\x16\x27\xf3\xff\x49\xb3\x7c\x71\x76\xbe\xbc\xf8\xbb\xd5\xee\x74\x7b\xdb\xfd\x9d\xdd\x07\xf7\xb7\xf6\x58\x84\x5b\xb1\xb5\x13\x93\x76\x65\x54\x65\x17\x7b\x6e\xa5\x48\xcf\x0d\xcd\xc3\xd4\xa5\x0a\x19\xed\xb8\xae\xa9\x90\x91\x8e\x3c\xeb\x0d\xbb\xd8\x95\x11\x25\x49\x99\x1e\x92\x9b\xd4\x0b\x2c\x68\x13\xb5\xeb\x27\x70\x7b\x45\x2a\x4c\x1d\x9b\xb9\x78\xa5\x9d\x2a\x95\xd6\x4f\xf8\x02\xaf\xaa\x61\x8e\x5a\xa9\x42\x14\x6b\x91\x7b\x3e\x11\x65\x06\xd0\xff\x44\x5b\x54\xef\xd6\xc4\xc5\xc1\x7b\x10\xeb\xe2\xfb\xf7\xb5\x0f\x82\x6d\xc5\x0f\xc6\x91\x56\x6c\x49\x67\x58\x84\x4b\x99\xbb\xc7\xdc\xe4\x2b\x6b\xc4\x43\x6f\x66\x9f\xed\xdb\xad\xff\xed\xd6\x5f\x6c\xfd\x7f\x7b\x77\xb0\xd9\xee\xa3\x27\xcf\x2a\x5f\xd0\x6a\xf7\x9f\x3c\x53\xef\x68\xb5\xfb\xfa\x13\x7c\x5d\xff\xd2\x16\x45\xe6\xcb\x5e\xdc\xaa\x88\xc3\x35\x5e\xde\x6a\xf7\xbd\xb7\xb7\xda\xfd\xef\xc0\x22\x50\x7d\xb3\x0e\x9d\x71\x95\xbd\xba\xfb\xbe\x3f\x78\x46\x25\x21\x7e\x93\x44\x71\xee\xbb\x64\xdc\xee\x7b\x2e\x19\x3b\x37\xd3\x12\x53\xff\x2d\x63\xd1\x64\xd5\xab\xc6\x4a\xa5\x57\xd8\x41\x99\x4c\x7c\xa5\xcb\x6a\xc0\x9b\xab\xce\x8d\xaf\x7a\x1b\x45\x67\x95\xb8\xb2\xc6\x27\xdf\x4a\x77\xd6\xa0\xd0\x6a\x77\x8d\x79\x29\xa1\xdf\xf2\x17\x37\x7d\xd3\x58\x6f\xb8\xda\x45\xe3\x36\xe8\x3e\x02\x43\xfd\x9a\x31\x51\x81\xe4\x64\xe9\x90\xc9\x62\x04\x61\xf3\x73\xb8\x4f\xcb\x31\x7a\xe7\xa7\xea\xa1\x30\x18\x5b\xbe\xac\xb0\x86\x29\xeb\xd4\xcb\x2b\xaf\x53\x2f\xbf\x82\x75\xaa\x0a\x0e\xd7\xbd\x4e\x39\xa7\xd3\xcb\x67\xb7\xcb\x94\xf8\xbb\xb6\x65\x2a\x3b\x0f\xe6\xcf\xe2\x30\x0a\xe2\xda\xaa\x2b\x96\x6b\x4b\xfe\xf5\x2f\x59\x2f\x6f\x66\xc9\xaa\x32\x4d\xbe\xfe\x25\xeb\xe5\x33\x63\xd1\xba\x5d\xb1\xac\x15\x4b\x99\x31\x2b\x2d\x5e\x9f\x75\xf5\x12\xe3\xa2\x60\x4b\x2a\xd2\x68\xe4\xd1\xf0\xe1\x0b\x3b\x3b\xa1\x93\xbb\xd5\x22\xff\x0f\x07\x2b\xf4\x23\x21\x9f\x7d\xa5\xdf\xe4\xf4\x2f\x33\x17\x00\x63\xf9\xad\x05\xfd\x2b\x59\x0b\x58\x8e\xda\xcf\x69\x34\x68\x20\xe5\x55\x36\x09\xda\xc6\xab\xc9\x2c\x18\xdd\xa0\x69\xa1\x81\x78\xb3\xf0\x0b\x5a\xfb\x1e\xcc\x0d\x56\xbe\xd8\x35\x4c\x11\x9a\x13\x8b\xf2\xe5\xd5\xd3\x6d\x28\x09\x2e\x37\xaf\x9e\x6e\xbb\x74\x3c\x70\x71\xfe\x88\x2f\x68\x16\x6c\xea\x07\x2b\x68\x85\xcb\xbf\x41\x9c\xf3\x24\xde\x49\x3a\xa3\x3e\xda\xcf\x7e\x7f\xf3\x1e\x16\xdd\x77\xc9\x0b\x2c\x95\x41\x74\x7e\x7e\xde\x4c\xe6\x38\xce\xb2\x69\x33\x49\x4f\xb7\xc2\x64\x94\x6d\x41\x12\xee\x64\xcb\x28\x33\xc9\x67\x53\x87\x21\xe4\xd9\xd9\xfc\xc5\xd3\x03\x89\xb6\x78\xae\x18\x0c\xa1\xfc\x0e\x88\xb1\xc6\x59\xb7\x5f\x58\xca\x73\x58\xa3\x48\xc7\x64\xe4\x21\x8a\xf9\xb5\x17\x25\xdc\xb3\xbc\xea\xd2\x43\xb5\x76\x67\x57\xbb\xe9\x62\xd5\xef\x71\x52\x53\xc3\x62\x98\x09\x52\x5e\x3d\xdd\x2e\xc3\x36\xca\x99\x2f\xb2\x19\xa4\x5a\xf9\x90\x27\x68\x4e\xbd\x4e\xd5\xdb\x39\x9e\x15\xce\xba\x17\x63\xac\x0e\xac\x7b\x06\xa8\xdd\xd9\x05\x17\x52\xed\x2b\x25\x0e\x30\x37\xbe\x48\x7c\xb4\xb6\x2f\xd7\xbe\x76\xe3\x61\xda\x9b\xbe\x87\x83\x95\x46\xaf\xc1\xcd\xfa\x63\x38\xb6\x6e\xdf\x50\x9e\x2f\x49\xd1\x54\x5e\xf0\x1f\x39\x56\xbb\x46\x3e\xbf\x75\xab\x69\xe8\xc3\xd8\x6a\xb5\xcc\x8a\x57\xbc\x1d\x54\x7a\xef\xa7\x9a\xbe\xfb\x14\x52\xf8\x13\x1e\x21\x5c\x01\x89\xb0\x03\xc8\xc0\x4a\x26\xed\x3a\x5e\xfa\xbc\x2c\x8d\x05\xe0\xaa\xa8\xa0\x70\x16\x4c\x73\xf4\x18\xfe\xb3\xba\x5a\x0c\xdc\x45\xd9\xfb\x3a\xd8\x0b\x93\xc5\xe3\x63\x38\x6e\xd2\x6b\x11\xb8\xc6\x89\x69\x00\x7e\x05\x79\x6b\x00\x5c\xcb\xef\xa8\x97\x5c\x49\xe1\xd5\x87\xd8\xa1\xde\x92\x99\xce\xa4\x87\x5d\x5a\xdc\x52\x23\xec\xc1\x5c\x94\xe5\xec\x70\xd6\xe5\xbb\x16\x06\xa1\x05\x68\x17\xbf\x80\xbe\x71\xa5\x44\x5b\x65\x8f\x2c\x2b\x13\x77\x82\xc5\x1b\xef\x76\x99\xaf\x31\x94\x22\xf6\xe4\x80\x53\x84\x38\x05\x95\x2f\x1c\x58\xfe\xc2\x16\x26\x52\xbd\xfe\x91\x39\xb3\x18\xb8\x72\x87\x96\x47\x1c\x1f\xe7\x56\x80\xa8\x71\x70\x73\xc0\x7b\xc0\xac\x5f\x59\xa2\xb0\xe5\xc7\xca\x48\x0d\xc6\x20\x2f\x81\xb0\x5a\x38\xb3\x29\x4e\xc1\x16\xbf\xea\xcd\x8b\xfb\x74\x36\x04\xe1\x09\xd1\x71\xf6\x67\x6d\xa3\xd4\xa6\x1b\x25\xa5\xa3\x0b\xd3\xfe\x18\xd8\x0b\x64\xbd\xbd\xe0\xc2\xd8\xd1\x55\xf6\x3b\x85\xad\x58\xcc\x18\x67\x1b\x46\x2f\x2b\xa5\x14\x1b\x0d\xe7\x3f\x47\xb4\x0b\x11\x60\x8e\x97\xab\xea\x73\x5d\x49\x06\xab\xf7\x8e\xd7\x92\xbd\x2b\xca\xdd\x6b\xbc\x7d\xeb\xb8\x57\xa6\x50\x53\x5d\x9a\x2b\x85\x34\xeb\x86\xf2\x5e\x97\xee\xf2\x03\xd2\xa4\xba\x58\xb4\xe9\x7a\xed\x93\xec\xab\x15\x6b\x20\x8f\xda\x70\x95\x6a\x0a\xd5\x06\x61\x42\x96\xba\xbe\x6f\xcd\xb1\xaf\xb0\xb0\x6e\xd7\x35\x16\xb8\xb8\x52\xbc\xde\x5d\x3e\x2c\xd8\xbe\xd3\xda\xdc\x7b\xf7\x06\xdf\x7c\x0e\xb6\x77\x1b\x7c\x4b\x3a\xd8\xd9\x21\x7b\xfa\x9d\x6f\x7a\x4f\x3f\x8a\xe6\x13\x9c\x6e\xde\xb0\x8b\x00\xec\xde\xd5\xa6\xbe\xcc\x26\xde\xce\xdc\x79\x2d\xbb\xf9\x7d\x20\xec\x0d\x91\x38\x99\xd8\xb4\xab\x2f\xfd\x2e\x04\xe2\xbd\x91\x09\x43\x2b\x41\xf6\x70\x41\x0e\x85\xe8\x4f\x2e\x88\x59\xc1\x03\x78\x99\xb3\xa8\x0a\x14\x64\x85\x74\x1a\x64\x77\x43\xc7\x26\xc7\xcb\x9c\xec\x22\x03\xf6\x8c\xe6\x94\x26\x76\x37\x8b\xa7\xda\x08\x42\x3c\x8a\x66\xc1\x74\x7a\xc1\xd2\x80\x86\x95\x4f\x6e\xd4\x5e\xb9\x64\xad\xb0\x8e\x7b\x27\xd0\xd0\x9b\x5d\x3d\x19\xc7\x3a\xf8\xdd\x68\x7a\x0e\x39\x24\xca\xa9\x8e\x4a\xfc\x6a\x07\x3b\x5a\x49\xcf\x45\x2d\x15\xa6\x29\x47\x57\x26\x90\x78\x8e\x97\x6b\x66\x82\x70\x74\xaf\xc2\x3e\xea\x79\xc3\x8a\xc3\x69\x9c\x3c\x44\xf1\x7c\x91\x5f\x65\x4c\x39\x7b\xe8\x4c\xb7\x06\x9f\x5d\x17\x73\x8c\x0c\x41\xe1\xe0\x8f\xb5\x93\x4a\x40\x6f\xb9\x43\xd8\xc8\xc1\xd9\x43\xb2\x0d\x5a\xe0\xa1\x93\x7b\xf6\x35\xee\xe1\x16\x01\x59\xd1\x40\xad\xf4\xd2\x6d\x9b\xf7\xaf\xb4\x92\x5c\x63\xb5\x55\x16\x88\xc1\x76\xa7\x61\x18\xcf\x77\x6f\x5d\xed\xbe\x77\xdb\xb7\x6f\x75\xb4\x22\x99\x17\x59\xc2\xed\x4d\x0a\x5c\x00\x16\x16\x57\x67\x22\x2a\x02\xb1\xa7\x5e\x54\xbd\x9e\x84\xf4\x70\xe5\xb5\x54\xe2\x55\x36\x12\x57\x34\x45\x11\x5d\x1d\x2e\x2f\xe3\x51\x8a\xf3\x6b\x32\x2a\x11\xfd\xf7\xb9\x3b\x70\x10\x50\xc9\xc4\x84\xeb\x26\x32\xbd\xe8\x5b\xd5\x62\xa8\x5e\x0e\xf6\x04\x08\x76\xda\x8c\x84\xbd\x88\xde\x51\x10\x8f\xe6\x0d\xf7\x82\xdb\x6e\xd7\x19\x5f\x16\x36\x4c\x25\xe1\x65\xe9\xa6\x4a\x89\x2e\x6b\xf6\x93\xdb\x11\xbf\xc0\x30\x45\x09\x7d\xa2\xc4\xc5\x64\xa4\x17\x45\xc6\x34\x0a\x71\x7b\x81\x59\x97\x3b\x4a\xe6\xe3\xe9\x34\x39\x47\x41\x3a\x8c\xf2\x34\x48\x2f\x10\x33\x2f\x7d\xc4\x17\x8e\xb8\x83\x1f\x55\x8b\xc4\xcf\xce\x86\x0b\x3a\xca\x34\xb7\x54\xeb\xad\x92\xcb\x90\x04\xa5\x82\x6b\x90\x10\xff\x0d\x6c\x1b\x49\x8a\xa2\x38\xc6\x29\x44\x9f\x4d\x16\x39\x28\x10\x66\x14\x3e\x88\x99\x48\x6d\x8c\x94\x0d\xd9\x03\x6d\xc5\x0a\x48\xc7\x2d\x7e\x6a\x89\xc8\x51\x62\x15\x16\x48\x14\xab\x64\x52\x64\x8f\x8c\x14\xc0\x48\x01\xb4\x1a\xfb\xf3\xf5\x5b\x18\x4f\x7a\x0c\x38\x0f\x42\x34\x4a\xe2\x2c\x0f\x62\xb3\x79\x67\x12\x29\x7d\x8c\xfd\x86\x35\x81\xf7\x71\x74\x82\xfe\xda\x43\xad\xe5\xf6\x88\xfe\xcf\x75\x1d\xc6\x02\xee\xf6\xe9\xff\x8a\x2d\x63\x89\x61\x13\x8b\x8c\x67\x17\x47\x7e\x81\x38\x64\xb0\x02\xdd\x44\x14\x32\x21\xc4\xaf\x25\x12\x59\x41\xbe\x32\x97\x30\x76\x74\x24\x10\xed\x92\xe3\x1e\x3b\xa9\x6e\x2f\x96\x13\x66\xbd\x08\x64\xd0\xcd\x5f\x4d\xfc\xb1\x57\x8f\xf7\x59\xf4\x31\xc0\x2b\x82\x29\x56\x18\x09\x65\xc5\x21\xaf\x12\x88\xcc\x82\xbe\xfe\x60\x64\x2a\x4b\xf0\x56\x4a\x83\x8f\xdd\x54\xf4\x30\xe8\xea\xff\xf4\xe8\x61\x25\x6a\xea\x2a\x2a\x22\x91\xa1\x92\x87\x4a\x23\x88\xf9\x4b\x94\x46\x11\xf3\x17\xbd\xa1\x48\x62\x57\x97\x76\xfb\xd4\x3c\x0d\xfd\xed\x58\x8f\x89\x76\xf1\xdc\x1d\x1c\xad\x30\xe0\x58\xa1\xc4\x54\xfb\xca\xa8\x54\x6a\x28\x5c\xd3\xe0\x87\x4c\x02\x95\xba\x37\xe4\xd8\x2c\x18\xb9\x0f\x89\xc4\xc6\xdf\xe3\x04\xf7\xe0\x9b\x36\x98\x2f\xfb\xbd\x4d\xc7\xeb\x69\x34\xdc\x24\xa8\x84\xe0\xdb\x9a\x19\x5f\x71\x3c\xda\x04\x9f\x46\xc7\x7b\x7a\xcd\xd2\xf8\x30\x0b\xb7\xcb\x9d\xef\xb2\x49\xd0\xd9\x36\xab\x24\x2f\x3b\x66\x75\xd9\x24\xd8\x6e\x77\xec\x97\xdd\x5d\x07\x64\xd7\x78\x95\x46\x73\x3c\x0b\xdb\xfd\x96\xd3\xf7\x4f\x7b\x35\x1f\x7e\x0c\xc7\x66\x3b\xf8\x6c\xfe\x31\x1c\x17\x9d\x3b\xe8\xa4\x27\x21\xde\x1c\x8d\x87\xce\xd7\x79\xea\x79\xbd\x79\x3a\x0d\xc2\x59\x10\xbb\x3e\x27\xee\xca\xf0\xc8\x7c\x3d\x0f\xc2\xcd\x20\xce\xa2\xe5\x83\x8e\xd9\x09\xe4\x53\x94\x25\xed\x56\xbb\x63\xf6\x38\xfb\xf4\x60\xe7\xc1\x8e\x39\x42\xe4\xd3\xdf\x38\x4d\xd8\xd5\x6b\xc7\xd7\xd8\xf3\x8d\xda\xc8\x36\x27\x78\x69\x7c\x08\xb0\xc9\x5c\x34\xee\x46\x68\xbd\x4f\x47\xe6\xe0\xa6\xc1\x70\x18\xe5\xce\x97\x9b\x53\x7c\x1a\x8c\x2e\x6e\xfa\x0c\x48\xcc\x1e\x78\x32\x27\x0d\xbc\x94\x73\x45\x3c\xb2\x29\x02\xcf\x64\x66\x18\x6e\xa1\x6c\x1e\x88\xdf\x9d\x9e\xf8\x4d\xb8\x9e\xff\x26\xcc\x2e\x7e\xd3\x5f\x92\xb5\xa5\x7f\x29\xfc\x62\x8c\x4c\x31\xa0\xfc\x6b\x9d\x61\x51\x74\x38\xb7\x2a\x4f\x79\xaa\x3f\x09\xde\x94\x6f\x13\xad\x04\xe1\x44\xda\xac\xca\x80\xe2\x8d\xe0\x3b\xf5\x0d\x65\x37\xf1\x46\xe5\x32\xf1\x32\xd6\x5f\x29\x3c\x05\xcf\x84\x95\xe0\x87\xe4\x20\xda\x2b\x23\xd6\x51\x8c\x5f\x94\xdf\x9c\x4d\x56\x35\x44\x6a\x06\x48\x55\xd6\xae\x6e\x98\xf4\x87\x62\x63\x24\x0d\xb6\xdb\x8d\x62\x6b\x72\x43\xe7\xab\xc1\x76\xaf\xa1\x31\xde\x60\x7b\xbb\x21\x07\x7e\xb0\xdd\x6f\xe8\xbd\x37\xd8\xde\x31\x4f\x84\x4d\x56\x1e\xf4\x5b\x0d\xc6\xad\x83\x3e\xe0\x23\x38\x65\xd0\xef\x34\x54\x5e\x19\xf4\x7b\x0d\x17\xb7\x0c\xfa\xdd\x86\xca\x21\x83\xfe\x76\x43\xe5\x9f\x41\x1f\xf0\xd2\x78\x66\xd0\xdf\x69\x98\x5c\x33\xe8\xef\x36\x4c\xbe\x19\xf4\x1f\x34\x2c\x26\x19\xec\xb4\x1a\x0e\x76\x1a\xec\x00\xfe\x6c\x4a\x0c\x76\x00\x7b\xc6\x1a\x83\x9d\x5e\xc3\x62\x8e\xc1\x0e\x20\x4e\xd8\x68\xb0\x03\x38\xcb\x79\x36\xd8\xe9\xab\x07\xe8\x0d\x39\x65\x07\x3b\xfc\x68\x9d\x4c\xe6\xc1\xce\x83\x06\x9f\xaa\x83\xdd\x56\x43\x4e\xe1\xc1\x6e\xbb\x21\x27\xf7\x60\x17\xd0\x91\x1c\x3c\xd8\x85\xc6\x85\xa0\x19\xec\xf6\x2e\x4f\x1a\xfd\xd6\xed\xe1\xc1\x97\x3f\x3c\xd8\x9f\xe0\xd1\x47\x42\x14\xcc\x14\x7a\x0d\x88\xa6\x39\xcb\x16\x73\xd2\x31\x98\xc5\xa7\x56\xe8\x06\x3d\x9e\x86\x34\x47\x3f\xec\xa1\x0d\x5e\xf3\x86\xc3\x23\x44\x5c\xd2\xb8\xc6\xe3\x8a\x42\x77\x7c\xd1\xce\x5b\x3c\xc6\x29\x86\x8d\x5e\x1a\x9d\xc2\x9e\x2c\x8a\xa3\x5c\x56\x93\x2d\xe6\x38\x05\xd3\xf5\x9e\x91\x9e\x43\xa9\xe5\xf1\xe2\x74\x86\xe3\xdc\x00\x40\x79\x82\x26\x41\x1c\x4e\xb1\xd6\x6f\x6a\xdd\x43\x67\xcd\x9a\x4f\x0d\x14\xb5\xaf\x03\x2a\xb6\x6f\x1a\x4b\x9e\xba\x40\x45\x71\xbe\xab\x58\xe8\xc7\x6a\x79\x61\x98\xd0\x47\xc7\xde\xe6\xcb\x12\xd4\x08\xff\x1b\xa9\x15\x5e\xa8\xd8\x68\x9b\x08\x27\x62\x09\x4d\xff\x05\x35\x9d\x45\xf8\xdc\x87\xa2\xb7\x79\x05\xe1\x43\x8e\x02\xfa\xf4\x49\x87\xe7\x0c\x07\x58\x82\xcd\x98\x17\xff\x81\xcc\x39\xe1\x3b\x02\x93\xce\x5d\xb9\x55\xb4\x6e\xb5\xe2\xc5\xaa\xdd\x77\xa3\xe5\x6f\x69\xb5\x12\x87\x71\xde\xed\xac\xda\xc4\x6a\x25\x0e\xa6\x49\xb0\x4e\x91\x7e\x0f\xde\x4b\xf8\x35\x59\xa9\x49\x39\xb8\x81\xd4\x57\x17\x39\x7e\x0d\xc9\x81\xac\xd7\xae\xbc\xcb\x1a\xff\x3d\xa7\x93\x4e\xb6\x55\x65\x46\x48\xe8\xd5\x4c\x08\xb2\xb6\x27\x02\x37\xb4\xe7\xc6\xd9\x61\x59\x78\xb6\x64\xd9\x57\x2f\x72\x97\xf3\xf3\x4a\xd7\x05\x5d\xa8\xac\x92\x4f\x5b\x96\x3f\x8e\x4e\xd6\x4a\x9e\x2d\xdd\xb9\xa3\xbf\x31\x35\xd5\xca\x8b\xa3\x3a\xa8\x10\xac\x32\xb5\x45\x03\xb1\x6b\x84\x2e\x42\xb4\xf1\x76\x66\x3d\x23\xbd\x49\x5e\x93\xfa\x50\x4c\xb4\x3e\x55\x98\xdb\xed\x06\xf3\xf9\xf4\x82\x35\x1c\xa4\xa7\x0b\x22\xc2\xb3\xa2\xfb\x8a\x4c\x5e\x37\xe7\x69\x92\x27\x04\x47\x55\x72\x17\x39\x4e\x98\xab\x8f\xdb\xc0\xd2\x6f\xdf\xea\x3a\x5f\x46\xd7\x81\x80\xd1\x5f\x20\x2e\x91\x33\xa7\x52\x05\x17\x09\x58\x62\xe9\x39\x1e\xca\xa5\x6d\x9d\x14\x79\xc7\x84\x85\x02\x49\x4d\x97\xc6\xc9\x9f\x4b\xd3\xf3\xc9\x95\x7e\xcf\x2d\x45\xde\x11\x31\xb1\x47\xbb\xaf\x19\x0c\x33\xfa\x23\x8b\x62\x16\x8c\x95\x88\x8c\xd6\xb2\xdd\x62\x7f\x75\xf4\x49\x4f\xe3\xcb\xa6\x57\xad\xee\xf4\x50\x7f\xf5\x74\xdb\xf0\xa6\x70\x39\x80\x98\xb7\x26\xd1\x1e\xeb\x55\x87\x03\x08\x4f\x7b\x53\x78\x3a\x26\x2d\xc1\xee\x5c\xc5\xc7\xb6\x24\x6d\x2d\xfb\x3b\xbd\xed\x4e\xb7\xd5\x6e\xa0\xd6\x12\x8f\x47\x61\x30\xdc\x7d\xe0\xc8\xab\xd8\x5a\x3e\xd8\x1d\x06\xe1\x68\x8c\x1b\xd0\x31\xdd\xce\x76\x6f\xa7\xaf\xc3\x9d\x78\x4f\xc4\x8c\x34\x7a\x2a\x15\xaf\x44\x26\x3d\xd7\xda\x75\x1e\xcc\x11\x86\xeb\xd5\xe5\x6b\x48\xbb\xef\x5f\x31\xfc\xc7\xd7\x7c\x34\x28\x12\xef\x49\x7d\x3c\xbd\x20\x8a\x3c\x11\x78\x5f\xbd\x57\xa0\x5f\x1d\xf3\x87\x13\xd7\x95\x10\xe5\x33\x61\x38\x1b\x80\xfc\xd5\x6a\x35\xa5\x4e\x7a\x53\x1c\x7d\x42\xea\x4b\x58\xeb\x7a\x75\xe3\x8e\x38\xfa\x54\xb1\xc2\x4e\xaf\xee\xa8\x10\x42\x19\x6b\x57\xd2\xed\xea\xae\xe6\x1c\xf2\x5c\x3b\xa1\x70\x1f\xf7\x6b\x5d\xda\x42\x4a\x9f\xa2\xfb\xa8\x65\xaa\x0f\x1a\x74\xdb\x80\x6e\x17\x42\x77\x0c\xe8\x4e\x21\x74\xd7\x80\xee\x16\x42\xf7\x0c\xe8\x5e\x21\xf4\xb6\x01\xbd\x5d\x08\xdd\x37\xa0\xfb\x85\xd0\x3b\x06\xf4\x4e\x21\xf4\xae\x01\xbd\x5b\x08\xfd\xc0\x80\x7e\x50\x3c\x3a\x2d\x63\x74\x4a\x06\xb3\x6d\x80\x17\x8f\x66\xbb\x63\x80\x17\x0f\x67\xbb\x6b\x80\x17\x8f\x67\xbb\x67\x80\x17\x0f\x68\x7b\xdb\x00\xdf\xb6\xa4\xc1\xd6\x16\x11\xc8\x1f\xa3\xf8\x94\x14\x8d\x82\xe9\xd0\xa5\x36\x07\x64\x19\x38\x76\x76\xd4\x10\x3e\x39\x3b\x65\x04\x9f\x9c\x1d\x10\xc2\xa7\xae\x0b\x9d\x7d\x79\x06\xad\x7f\x23\x48\x1c\x1c\xd4\x82\x06\x1a\x36\xd0\xa8\x81\xc2\x86\x32\x41\x1b\x08\xed\x34\xc8\x12\xda\x3a\x31\x65\x43\x48\xcb\x85\x0d\x24\x8a\xca\x1e\x6a\x20\xd4\xee\x34\xd0\xbb\xe3\xb6\x55\x6e\x44\xcb\xd1\x96\x68\x51\x39\x69\x49\xb9\x1d\x52\xae\x63\x95\x1b\xd2\x72\x02\xc9\x40\x29\xd7\x6d\x20\xd4\x81\xf6\xba\x56\xb9\x22\xfa\x7a\x82\xbe\xde\x4a\xf4\x6d\x0b\xfa\xb6\x57\xa2\xaf\x2f\xe8\xeb\xaf\x44\xdf\x8e\xa0\x6f\x67\x25\xfa\x76\x05\x7d\xbb\x2b\xd1\xf7\x40\xd0\xf7\x60\x25\xfa\xda\xad\x06\xa3\xaf\x6d\x33\x4c\x11\x81\xed\x76\x83\x11\xd8\xb6\x39\xa6\x88\x42\x82\x25\xa5\xb0\x6d\xb3\x4c\x21\x8b\x76\x1b\x9c\x45\x6d\x9e\x29\xa4\xb1\x27\x68\xb4\x99\xa6\x90\xc6\x6d\x41\x23\x70\x8d\x4d\xe4\x2f\xbf\x78\x88\x6c\x20\xb4\x4d\x89\xb4\xf9\x26\xa4\x05\x9d\x44\x12\x7e\x7b\x40\x0b\xda\x8c\x33\xa2\x05\xdd\x44\xb6\x1b\x88\x10\xfa\xee\xb8\x6d\x73\xce\x90\x16\x74\x12\x49\x24\x46\xa7\x05\x05\x6d\xd6\x29\xa2\x71\x5b\xd0\xd8\x71\xcb\x1a\x1f\x8d\x84\xe7\x28\x8d\x1d\xb7\xb0\xf1\xd2\xb8\xcd\x69\xec\xb8\xa5\x8d\x8f\xc6\x9e\xa0\xb1\xe3\x16\x37\x3e\x1a\x1f\x48\x1a\xdd\xf2\xc6\x4b\x63\x4f\xd0\xe8\x16\x38\x3e\x1a\x89\x60\x64\x34\xba\x25\x8e\x8f\xc6\x5d\x49\xa3\x5b\xe4\x78\x79\xb5\xdb\xe0\x34\xba\x65\x8e\x8f\xc6\x8e\xe0\xd5\x8e\x5b\xe8\xf8\x68\xdc\x11\x34\x76\xdd\x42\xc7\x47\x23\x99\xfe\x94\xc6\x6e\xdb\x3d\x21\x9f\x3f\xf7\x33\x6b\x0f\x70\xed\xba\xa5\xce\xf3\xe7\x6e\x22\x49\xb7\x92\xb9\xf5\xee\xb8\xeb\x96\x3a\xcf\x9f\x17\x4c\xc8\x3e\x14\x74\x4b\x9d\xe7\xcf\x3d\x44\xf6\x1a\xa8\xd3\x85\x82\x36\xeb\x14\xd1\xd8\x96\x34\xba\x85\x8e\x8f\xc6\x9e\xa4\xd1\x2d\x74\x7c\x34\xc2\x40\x52\x1a\xdd\x42\xc7\x4b\x63\x4b\xd0\xe8\x16\x3a\x5e\x1a\xbb\x0d\x46\x63\xcf\x2d\x74\x7c\x34\xb6\x04\x8d\x3d\xb7\xd0\xf1\xd1\xd8\x15\x34\xf6\xdc\x42\xc7\x47\x23\x11\xe5\x94\xc6\x9e\x5b\xe8\xf8\x68\x7c\x20\xc6\xb1\xe7\x16\x3a\x3e\x1a\xc9\xf4\x60\x34\xba\x85\x8e\x97\x57\xb7\x39\xaf\xf6\xdc\x42\xc7\x47\x63\x47\xd2\xb8\xe3\x9e\x90\x87\x87\x7e\x45\xb5\x4f\x89\x74\x4b\x9d\xc3\x43\x37\x91\xc0\x73\x20\x03\x7a\x6e\xa9\x73\x78\x58\xa0\x06\x6c\x83\x0a\xe8\x96\x3a\x87\x87\x6e\x22\x89\xec\xe8\x40\xb7\x6e\xbb\x55\x1d\x1f\x8d\x64\x3c\x28\x8d\xdb\x6e\xa1\xe3\xa3\xb1\x2b\x68\xdc\x76\x0b\x1d\x2f\x8d\x2d\x41\xa3\x5b\xe8\xf8\x68\x6c\x4b\x1a\xdd\x42\xc7\x47\xe3\xae\x18\xc7\x6d\xb7\xd0\xf1\xd1\x08\x3c\x47\x69\x74\x0b\x1d\x1f\x8d\xa0\x92\x53\x1a\xdd\x42\xc7\x4b\x63\xb7\xc1\x69\x74\x0b\x1d\x1f\x8d\x3d\x41\x63\xdf\x2d\x74\xbc\x34\xb6\x39\x8d\x7d\xb7\xd0\xf1\xd1\xd8\x11\x34\xf6\xdd\x42\xc7\x47\xe3\x03\x31\x8e\xfd\xae\x3d\x21\xe1\x18\x25\xc7\xe9\x0c\x87\x51\x90\xb3\x4b\x65\x70\x5d\x41\x87\x23\x5b\x5c\xb4\x87\x6a\xf0\xdf\xfb\x28\x30\x2d\xac\x14\xa6\xcd\x60\xda\x04\x66\xe8\x86\xe9\x30\x98\x0e\x81\x19\xb9\x61\xba\x0c\xa6\x4b\x60\x42\xcb\x9a\x6b\x98\x2a\x0f\x1c\x9e\xba\x2b\x06\xb4\x85\x4c\xe9\x22\x9b\x6e\x90\x07\xae\x8d\x79\x90\x07\x22\x94\x4f\x90\x07\x7e\xe3\x58\xfc\x24\xca\xb3\x77\x49\x1e\x4c\x45\x9d\xf1\xd3\x20\x0f\xe8\x0d\x92\x9f\xd0\xae\xa3\x76\x28\xf3\x12\x8f\x73\x5e\xbb\xb8\x71\x02\xf0\x16\x31\xde\x94\x57\x02\xcd\x63\x59\xe5\xcf\x3f\xff\x8c\xb6\xe1\xe0\xad\xb5\xdc\x6d\xc9\xf3\x36\x09\xf1\x2f\xd4\xed\x58\xcc\xa1\xd3\xf2\x1c\xed\x21\x30\xbb\x8f\xa7\x49\x92\xd6\x14\x22\xb7\x34\xdb\xbb\x8f\x38\x80\x7d\x89\xf6\x94\x27\x73\xe2\x08\xd4\x6b\xb5\x9a\xc4\xed\x3e\xea\xf7\x68\xbe\xb4\x07\x10\x4c\xb4\x57\xa7\x06\x1b\xb7\x7d\x96\x17\x65\x38\x4b\xe3\xac\xfa\xb6\xba\x75\xd6\xae\x8e\x99\x66\xcd\xea\xca\x6c\xb3\x96\x94\x58\x85\xd8\x5e\x15\x62\x5f\x3a\x89\x7d\xb9\x2e\xb1\x2f\x9d\xc4\xbe\xac\x4a\xac\x4d\xad\x7a\x89\xaa\x26\xc8\xe7\xc1\xa6\x20\xa7\x9e\xfb\xfe\x20\x38\xbc\xd3\x6b\x0c\x70\x47\xd1\x75\x93\xaa\x30\xaf\x7c\xc9\x6d\x48\xcd\xe6\xed\x60\xdf\xe7\xcc\x31\xde\x7b\xfb\x6d\xa5\x73\x0f\xcf\x11\x17\x2a\x3a\xfe\x17\x98\xc0\x11\xc6\xf3\x63\xf7\xd9\xc5\x73\x76\x4a\x56\xab\x3d\xd7\x8e\x25\x9e\xaf\x7c\x1e\x41\x79\xe1\xb9\x76\x16\xf1\xdc\x7b\x08\x51\x7e\xe2\xf0\x96\xe5\x06\x86\x31\x64\x11\x78\x42\xe8\x53\x1d\xb4\x42\xb2\x72\xb8\x86\x50\x28\xea\xc1\xc0\x0a\x97\x32\xc5\x09\x1d\x3c\xca\xe3\x7f\x6b\xe1\x85\xcf\xef\x2d\x5e\xf0\xdd\xae\xe4\x11\x34\xc8\x57\xf7\x0d\x07\xfa\x4b\x20\x69\x98\xbe\x96\x0d\x94\x35\x90\x7e\x84\x06\x72\x12\xed\xa1\x00\xdd\x47\xb5\xda\x10\xfd\x48\x17\xc7\xda\xff\x21\x3f\xc3\x3a\x11\x03\x4b\x74\x1f\xe5\x4a\x7b\x22\x60\x71\x4c\x86\x29\xa3\x33\x95\xc6\x29\xef\x76\xd0\x26\xca\xea\x50\x6c\x68\x38\xbd\x09\xac\x8c\xfd\x7f\x35\xac\x60\x39\xae\x8d\xd0\x8f\xe8\xff\xdc\x0c\x56\xc6\x26\xa8\x14\xab\x21\xfa\x0b\x8d\xd0\x5f\x04\xb1\xeb\x47\xc6\x50\x00\x4b\x91\x21\x88\xd4\x86\xe8\xd3\x35\x77\x8e\x7a\x5a\x7d\xe4\x4b\x93\x5e\x9a\x78\xbf\x4a\x90\x35\x7e\x4f\xcc\xb8\xa2\x08\xb3\xc1\xae\xc6\x73\x59\xcc\x03\xbd\x6e\x58\x33\x36\x2f\x85\x93\xcb\xab\xa7\xdb\x8e\xbb\x5f\xc5\xf0\xf6\x85\x2f\x19\x5f\x4c\x3b\xcc\xd7\x33\xf2\xbf\x7a\xba\xed\x74\x19\xf0\x0e\x42\x49\xae\xfa\xeb\x1a\x82\xb5\x42\x3b\x94\x0f\x9c\x7a\xcb\xef\x3a\x06\x8e\x5e\x2a\x13\x03\xf1\x7c\x16\x8c\xc8\x60\x68\x99\xe1\xed\xf1\x60\x60\xf6\x98\xc8\x6c\xf6\x74\x5c\x0a\x33\xb0\xb3\xc8\xd6\x1e\x0f\xa8\xce\x37\x7d\xc5\xec\xfb\x8f\xc9\x46\x27\xdb\x4f\x2c\xce\x10\x3a\xc0\x38\x1c\x06\xa3\x8f\x2c\xae\xe6\x2c\x09\x61\x4a\x11\x9e\x11\xe3\x0d\x2f\xf7\x0f\x9e\x10\x15\xc8\xa1\x1e\x80\x9b\x13\x7c\xd5\xbc\xe5\xc0\xc3\x85\xb6\xf2\x8a\x54\xc0\x9c\x79\xc4\xac\xdf\x3f\x78\xd2\x7c\x16\xd3\x58\xe5\xe0\x40\x75\xf0\xc4\xe1\xf0\x33\xf7\xb8\xcb\x30\x37\xc3\x02\x97\x19\xbf\x6a\xca\x42\x50\x71\x85\x84\x3e\xba\xce\x99\x95\x50\x1e\x14\x48\x0d\xe5\xa1\xc3\xf3\x18\xe5\x2f\xf0\x45\x96\xa7\x38\x98\x3d\x8e\x43\x46\x9d\xc3\x3b\x32\x61\x6e\xb1\xa2\xba\x06\x6b\xc0\xa5\x64\xbf\xc5\x33\x0c\x41\xc6\xc1\x19\x93\x8e\x13\x8b\x95\x09\xf7\xe7\x63\xbc\xcc\xe9\x6b\xb7\xfa\x8e\xcf\x9e\xb0\x98\xa9\xd0\x7a\x33\x9b\x46\x23\x5c\xe3\x28\x88\x93\x7a\x81\x8b\xcb\x7f\x52\x1b\xb5\xa7\xf8\x7b\x19\xb5\x2b\xf4\x2e\x38\x0e\x4f\xa2\x6c\xe5\xbe\xfd\x6c\x7c\xf3\x4e\x12\x34\xc4\xa3\x64\xc6\x6e\xdd\x13\x86\x88\x92\x45\x56\x8d\x65\x04\x89\x95\xd4\xf1\x02\x6a\x6a\xa5\x24\x18\x77\x23\xec\x0d\x1b\xec\xf7\xce\x64\xb0\x96\xb3\x87\xba\xd3\xb8\x1a\x8e\x99\x36\x2f\x3f\x43\x66\xd7\x33\xe7\x96\x46\x40\xa3\x3d\x14\x9d\xb1\x21\x6c\x79\x66\x62\x72\x86\xd1\xe1\xef\xb0\xff\xcc\x16\xc3\x0c\xff\xcf\x02\xc7\x79\xc1\xee\x19\xf0\x15\x17\x18\x4a\x1d\xa0\x4d\x7c\x8c\x01\xb1\x07\x81\xfc\x31\x2e\xc7\xb4\xa3\x01\xb0\x26\x2a\x69\x20\x9d\x94\xad\x2d\xc4\x46\x44\xbe\x73\x66\xcb\x2d\x8e\x1a\x43\x5d\xcf\xa5\x87\x20\x44\x82\x11\x8d\xc2\x3e\xda\xe2\x17\x86\x05\x57\x27\x0e\x9e\x14\x39\x5c\xf3\x45\x67\x95\x38\x75\xfd\xee\xad\xf2\xf1\xb5\x2b\x1f\xe8\xbf\xe7\x29\xce\x70\x7a\x86\xa9\x1a\x92\x2c\x88\x2a\xaf\xa8\x1f\x60\xc6\x08\xf2\x68\x38\x65\x12\x18\x3d\x4d\xd1\x93\x34\x0a\x62\xf4\x0b\xbd\x9e\x89\xc6\xd1\x14\xe3\x78\xd4\x1c\x41\x15\x3c\xe4\x33\x44\xc0\x36\xf8\xe7\xdd\x5b\x00\xf9\x77\x10\xa3\xe7\xe9\x62\x78\x81\x3e\x4c\xc8\x7f\x9a\xe7\x78\xf8\xdf\xa7\xb3\x20\x9a\x36\x47\xc9\xcc\xad\xef\xbc\x7b\xcb\x9b\x2b\x50\x7b\x54\xa0\xca\xda\xcf\x1d\x99\xef\x25\x1e\x91\x8d\x02\x4d\x99\x74\xf7\xce\x1d\xd2\xe9\xc0\x7a\x22\x1d\x12\x18\x89\xa8\x51\xa8\x0e\xa3\x4e\x7f\xfd\x83\xb6\xb6\x92\x33\x9c\x8e\xa7\xc9\x39\x29\x03\x0b\x5f\x9b\xa7\x03\x25\xe5\xda\xfd\xfa\x8f\x04\xf6\xa1\xf8\xdc\x51\x3f\xef\x9a\x5f\xbb\x6c\x0d\x63\x8d\x01\x9e\x80\x0a\xa9\x56\xb4\xbb\xb5\x85\x78\xb3\x68\xd8\x26\x20\x80\x32\x34\xdd\x7a\x28\x8a\x74\x64\x11\x01\x73\x07\x10\xa0\x40\x14\xaa\xab\x43\x31\xb0\x3b\x80\x0a\x83\xbb\x84\x7f\x09\x43\xaa\x10\xf7\xef\x0f\xbb\xca\x77\xf8\x87\xc3\x50\x90\xfb\xf7\x87\x9d\x87\x77\xfd\x00\xf7\xef\x0f\xdb\xec\x3b\xf9\x17\x08\xe7\x8d\xc2\xc3\xfd\x3d\xa0\xfc\xd1\x23\x96\x0f\x52\x7d\xdd\xa1\x26\x40\xed\x2d\x43\xc8\x6e\x49\x14\x6b\x2d\x5b\x6d\x66\xf5\x93\xa0\x4c\xea\x11\x20\xf2\xf2\xd2\xe4\x0e\x36\x3d\x6a\x23\xfa\x5f\x9d\x47\xd8\x4b\x7a\x82\xc4\x59\x49\xbe\xac\x33\x86\x51\x86\x60\x6b\x0b\x91\x55\x02\x4e\x62\x50\xa4\x4c\x24\x3a\x79\xac\x99\xb6\x91\x21\xa8\x2f\x43\x49\x3c\xbd\xa0\xd3\xf1\xe9\x1f\xaf\xdf\x3e\x45\x1f\xd0\x23\xb4\x0b\x75\xf2\x06\xdb\x2e\x2c\xe8\x59\x9c\x4e\x2c\xfb\xc6\xe9\xe5\x73\x49\xdb\x0b\x88\x79\xd5\xf4\xbc\xfe\x82\x3a\xe7\xaa\x2a\xa7\x05\x6e\xe8\x30\x76\xab\x4c\x26\x8a\x66\x79\x87\x59\xa8\x17\x69\x3c\xc8\xaf\xf5\x80\xd2\xe0\x6e\xa4\x58\x07\x42\x6b\xe8\x41\xa8\x5c\x17\xe2\xda\x01\x61\x6c\x9b\xe7\xa9\x28\xba\x63\xaa\x46\xec\xb3\x82\xab\x6e\x7a\x5e\x45\x29\x42\x1e\xc5\x08\xad\xa7\x1c\xa1\x15\x15\x24\xa4\xeb\x73\xf6\xa6\x4b\xf2\xbd\xba\xf7\x12\x53\xe3\xa1\xa1\x59\x09\x70\x45\xc1\xf2\xaa\x58\x0a\xf0\x0a\x9a\x56\xef\x56\xd3\xfa\xda\x35\x2d\x8f\x7e\xe5\x31\xef\xbc\x7b\x5b\xac\xe7\xac\x6a\xde\x71\x88\x74\x53\x96\xdf\x0a\xf1\xef\x4f\x88\x17\xee\x66\x6f\x40\x64\x1f\xc6\xa3\x14\x43\xe4\x06\x56\xb9\x51\x25\xd3\x43\xe4\xe0\x6e\x22\xea\x4c\xe3\xf9\x02\xa7\xe5\x9f\x50\xeb\x9b\x5a\x1c\xaa\xae\x0a\xe5\xfb\x6d\x02\xb3\xc2\x2a\xb0\x7d\xbb\x0a\x7c\x13\xab\xc0\xb3\x29\x1e\xe5\x69\x12\x47\x23\xb4\x9f\x84\x78\x98\x24\xe5\x06\xff\x67\xfb\x45\x06\x7f\xfa\x75\xa5\x15\xe1\xd9\xbe\x6e\xf0\x27\xcf\xd7\xb5\x02\xa8\xa2\x5d\x17\x20\x7a\xb9\x22\x2b\x26\xc1\x47\x9b\x48\x37\x85\x5f\x88\xd7\xc2\x8f\xa7\x5e\xda\x2f\xb7\x9b\x01\xcc\x0a\xf3\xf8\xdb\x4e\x8e\xfc\x9f\x33\x8f\x5f\x2f\xf2\xf9\x22\xaf\x7e\x68\xf7\xba\xf0\xd0\xee\xf5\xea\x87\x76\xa6\x56\xf7\xda\x38\xc4\x7b\xfd\x65\x8f\x83\x6e\x5c\xab\xb3\x6d\xf3\xe2\xcd\xf5\x6a\x76\x05\x0d\x7d\x2d\xda\xdd\xf7\xb4\xc3\x7e\x6d\x1c\x6b\xfa\x94\xa8\xd7\x15\x0e\x2d\x5e\xaf\x78\x68\x71\x9b\xc5\xee\xdb\x10\xbe\x8f\x7f\x3d\x3a\x44\x7f\x36\x1f\x74\xba\xdc\x41\x1c\x65\x39\x99\xde\xa7\x17\x96\xf4\x9d\x07\x61\xf3\x71\x9c\x45\x7f\x12\x68\x91\x0b\x6e\x1e\x84\xaa\xf8\x0b\x83\x3c\x50\x0e\x42\x7d\x07\xa0\x99\x7e\x02\x4a\x4a\x1d\x49\x87\x5f\xcd\x01\xf8\xa1\x0e\x3a\x34\xd3\x8a\x0c\x7d\x09\x45\x80\x29\x16\x71\x2e\x28\x33\x82\x59\x81\x2f\xde\x1b\xfa\xcd\xaa\x8c\xbe\xd8\xd4\x31\xfb\x97\xf1\xdd\x6a\x8d\xc6\xb4\x99\x06\x19\x8d\x9c\x85\xe6\x49\x16\xe9\x37\xf0\x49\xa3\xe4\x3b\x29\xff\x26\xe1\xc4\x8a\x16\xee\x1b\x18\x6d\xa2\xb6\xd1\xc8\x9b\x20\x94\xcf\xd0\x51\x22\xdb\x88\xfe\x9a\x8a\x12\xb5\x2d\x19\x52\x4b\x6f\x44\x86\xd4\x52\xa1\x5d\xc1\xb5\x74\xcf\xec\xfb\x46\x45\xdc\x0f\x91\x7b\xe0\x2e\x62\x07\x73\x98\x1c\xf1\x0b\xce\x95\x84\xf3\xda\x50\x51\x03\xbe\xe8\xcd\xe2\x91\x53\x68\xae\xe9\x68\x6e\x92\xed\x2f\xa3\x5d\x1e\x04\x29\x28\xb0\x75\xc5\xba\x21\x61\x54\xe3\xa1\xf6\xee\x9d\x4b\xa7\xdc\xe4\xd3\x65\xf9\xa0\xd3\x5d\x49\x76\x5e\x2d\x31\xd9\xad\xec\xfc\x5c\xb2\xf3\xf0\xe8\x35\x82\x90\xb8\xd5\x44\xe7\x21\x0b\xa0\x7b\x55\xd1\xf9\xc5\xc5\xa1\x9c\x12\x25\xf2\xd0\x21\xaa\x68\x3a\x00\x77\x04\xba\x66\x1a\xc4\x61\x32\xab\x59\x12\xb0\x5e\x6f\x1a\x9a\x52\x71\x3d\x2c\x75\xd8\xb1\x25\xe5\x3a\xbd\x93\x06\xa9\xee\x56\x50\x99\x82\x8a\x33\xe7\x4a\x82\xea\xdb\xce\xbc\xf0\x1f\x25\xa8\xb6\x0e\x9f\xed\xa3\x07\x3b\x0f\x76\x36\xdb\x88\xf1\x06\x7a\x85\xf3\x49\x12\xa2\x8e\x4f\x5a\x41\x68\xef\x75\xa5\xd5\xe3\x30\xa4\xf7\x07\xf5\x09\x51\x41\x0a\xf0\xd9\x4b\x4a\xd3\x3f\x3e\x69\xb5\x06\xfe\x37\x4e\x13\xc8\x1d\x96\x4f\x30\x4a\x71\xa6\xc8\x45\x8d\x10\x02\xc7\x28\x26\xcf\x16\xde\x6b\xc9\x02\x36\x11\xff\x66\x38\xe8\xb3\xd1\xdb\x3c\x54\x4d\xeb\x73\x4f\xec\x24\xc6\x68\x96\xa4\x98\x2a\x8f\x9b\x9b\x40\x9b\xaf\x17\xf9\x7c\xdf\xdc\xac\x38\xc1\x61\x3c\x57\x99\xe0\x3b\x57\x8b\x72\x7e\x3b\xc1\x3f\xdb\x2e\x0e\xc5\x49\x32\xaf\xa6\x86\xfc\xca\xd9\xd1\x3b\xb3\x05\xb3\xfb\xe7\x84\x04\x29\xe2\x39\xd1\xd4\x4a\x4c\x77\xb5\x70\xb3\xb7\x4c\xf7\xb9\x98\xee\x7f\x2b\xc2\xaf\x98\xe5\x14\x19\xf8\x05\x95\xdf\xca\x1b\x67\x75\x7f\x6b\x29\xc0\xb5\x5a\xb1\x0a\x5c\x47\x9f\x3e\x99\xaf\xd6\x5a\x62\xdc\x14\x97\xc7\x15\xd8\xda\x42\xbf\x91\xfa\xf5\x72\x91\x15\x29\x00\x2c\x0b\x02\xe6\x7c\x12\x4d\x31\xaa\xfd\x50\x93\x77\xad\x65\x0c\x6e\xb8\x71\x68\xc5\xdc\x16\x2e\x9c\x96\x21\x33\x12\x4b\x12\xd2\x4d\x94\xe6\xc5\x6e\x88\xc7\x5b\x65\xf5\x52\x38\x68\x25\x59\xf2\x6d\x5f\xdc\x72\xe4\xe8\xa2\x49\xb2\x6e\x56\xae\xc8\x4c\x48\xd0\xda\x97\xcf\xf3\x71\xb3\x49\xc2\xab\xc5\xc4\xb6\x62\x5e\x8b\x2f\x47\xcf\x1f\xb7\x65\xac\x67\xf2\xa4\x7c\xb4\x13\x81\xbb\x2e\x88\xbe\x09\xb2\x8c\x4c\xe4\x4d\x82\x5a\x88\x5e\xe0\x0b\xf4\x14\xa7\xd1\x19\xcd\x09\x79\xc0\x3b\xa5\x53\x1c\x73\xfa\xcd\x93\x17\x4f\x0f\x3a\xb2\x35\xf1\x5c\x31\xf1\xf8\x7e\x12\x8f\xa3\xd3\x05\xcb\x44\x99\x40\x56\xc8\xac\x28\xbf\x64\x9a\xcc\x71\x9a\x5f\xa0\x7f\xe8\xb6\x18\x6e\x93\x82\xf0\x7d\x37\xa1\x39\x8e\x33\xf2\x10\xc5\x2c\x5d\x40\x9e\x88\xbb\x34\x4d\xf4\x14\x8f\x83\xc5\x34\x1f\xa0\x1e\xaa\xb5\x3b\xbb\x90\x48\xb9\xee\xab\xdf\x93\xd0\x1c\xa7\x3c\x91\xb9\xac\x8e\xf4\x7f\x19\x9a\x51\xce\x92\x67\x66\x50\x95\xdc\xd4\x2b\x1f\xf2\x04\xcd\x71\x3a\x4e\xd2\x99\x52\xb9\x56\xb3\x92\xfe\x71\x34\x3e\x1d\xf8\x7a\x19\xd1\x83\xaf\x23\x88\x39\xd3\xee\xec\x6e\x75\x3b\x46\x08\x6e\x4a\x0a\x45\xdd\xf8\x24\x11\xd2\x1a\xbf\xac\x17\x25\x24\x2d\x4a\x20\x4f\x46\x25\x94\xac\xc5\xe7\x5b\x79\x16\xd1\xd7\x20\xe7\x2e\x09\xa9\x6a\xc6\x50\xd2\x7f\x23\x17\xdf\xf0\xfb\x66\xe3\x24\x85\x5d\x8c\x6c\xf4\x1a\x12\x83\x7e\x0c\xc7\x56\xd2\x78\xca\xed\x7c\xf7\xa8\xb9\x61\xad\x52\xf0\x1f\x39\x58\xbb\x34\xfd\xe4\x95\xab\x69\xe8\xc3\xd8\x6a\xb5\xcc\x8a\x0b\xb2\xd7\x8f\xc6\xa7\x6e\xc7\x0b\x32\x10\x7b\xe2\x27\x67\x3c\x02\xee\x0b\x86\x61\xcf\x77\x38\xae\xa0\x37\xe8\xaa\x8a\xa0\x75\xf2\xcd\xce\x59\xdd\xc0\x2d\xfc\xa1\x59\xb1\x70\x16\x4c\x73\xf4\x18\xfe\xb3\x7a\x22\x5a\x7e\x8d\x46\xb9\xd7\x7e\x15\xb6\xa3\x89\xd4\xc3\x71\x93\x45\x25\xa9\x71\x62\x1a\x80\x9f\x77\x50\x19\xb8\x3a\xae\x46\xc9\x95\x72\xbb\xe8\x43\xef\x74\x20\x8c\x72\x4f\x52\x58\x76\xcb\x1e\xee\xee\x33\x5e\x25\xec\x43\x65\x50\x43\x8c\x8e\xdb\x2d\xd1\x9f\xa0\x1c\x74\x53\xda\xd9\x34\xdd\xbc\x65\xcf\x71\x85\x7a\x02\x3d\xf9\x30\x0e\xf1\xd2\x55\xe2\xb8\xb5\x64\x06\x20\x47\xb4\xce\x92\x10\x5d\x02\x15\xa1\x2c\x8b\x37\xde\xfc\xf5\x12\x1b\x5e\x48\xbe\xf1\x16\xe2\x4b\xde\x1e\x19\x95\x26\x7b\x72\x39\x61\xc8\xa5\x85\x82\xca\x17\x25\x4e\x16\xfa\x47\xa6\xa8\x1b\x04\xf2\xb8\x48\x8f\x38\x3e\x4e\xe7\x02\x41\x24\xcb\x73\xcc\x93\x65\x03\x07\xca\x34\xbe\x92\x6a\x73\xcc\x10\xcb\xe8\x2d\x53\x03\xdb\xdf\xcb\xb3\x31\x40\xfd\x5a\x17\x3b\x7b\xd7\x06\x17\x59\x8c\xe4\x2b\x46\xb8\x07\x91\x43\xd1\xc7\xee\xaa\x23\x35\x9a\x1d\xab\xd6\x81\x85\xe6\xcb\xd1\xa6\xbe\x1c\xca\xf0\x79\x9d\x39\x10\xc8\x73\xad\x09\xe8\x3d\xd1\xd3\xea\x47\x57\x5f\x57\xe9\x6f\x54\x16\x0a\xca\x45\x2c\xef\x7d\xf5\x9d\x3b\x60\x95\xd2\xc4\x9f\xaf\xdf\xea\xe4\xc0\xd5\x29\xc7\x8d\x6b\xab\xdf\x3e\x50\x1f\x98\x0f\xdc\x07\x46\x19\xcd\x87\xe8\x43\x41\xef\x91\x3f\x59\xe2\xf8\x03\xb8\xc3\x58\x84\x1c\x7f\x30\xdd\x62\xf8\xdf\xa5\xfd\xda\x0c\x38\x45\xfe\x14\xe1\xc0\x6c\xd3\xd0\xa8\x6b\x48\x0c\x21\x71\xdc\x3a\xb9\x7f\xbf\xd8\xa5\x48\xa9\x5c\xd9\xfa\x72\xb9\xe1\x08\x62\xc6\xd6\x32\x59\xae\xc8\x81\x52\xdd\x46\x5c\x69\x41\xaf\x12\x6c\xa6\x70\x21\x5f\x71\x11\xbf\x2e\xd5\x32\xca\x5c\xe9\xf6\xcb\xa3\xd7\x38\x54\x83\x6b\x08\x62\x43\x55\x04\xa1\x19\x52\xa5\xd0\xa7\x26\xac\x56\xac\x81\x3c\xba\xe9\x55\xaa\x29\xd4\x4d\x65\x90\x1d\xb1\x95\xf4\x29\x30\x0d\x64\x2a\xaa\xac\xdb\x75\xb5\x98\x00\x95\x28\x4f\x97\x45\xbe\x68\xb4\x36\x77\xa0\x1e\x33\x85\x2e\xcf\x09\x7b\x79\xd2\xd8\xf9\xb6\xef\xd0\xaf\x90\xd6\xbd\x3c\x39\xfa\xcd\xda\x8e\xbc\xe9\xb5\x7d\x59\xaf\xbf\x07\xeb\xd2\x11\x38\x67\xee\x73\xe7\x5d\x6a\x44\x52\x5f\x16\xd9\x91\x04\x1e\x6f\xf1\x22\x0b\x86\x53\xcc\xc2\x81\x29\xe8\x1c\x21\x35\xd5\x22\xad\xc5\x7c\xf3\x0b\xd2\x33\xac\x29\xcb\xc2\x5b\xc8\xa6\x8c\x98\xa3\x2d\xf3\x31\xb6\x2d\x49\x02\x1e\x62\xac\x44\x19\x0a\x10\x4d\xc0\x8c\xce\x70\x9a\x41\xd4\xb2\x49\x90\xa3\x18\x9f\x4e\xf1\x28\xc7\x21\x11\xc3\x23\x96\x52\x35\x67\x06\x9f\x3c\x41\xd3\x28\xcf\xa7\x78\x93\x06\xb8\x6c\xea\x95\xe2\x34\x4d\x52\x14\x26\x38\x8b\x37\x72\x14\x8c\xc7\x78\x44\xcb\x52\xa4\x36\x32\x94\xe1\xd1\x22\x8d\xf2\x8b\x86\x28\x38\x5c\xe4\x28\xca\xa1\x10\x2f\x11\xe5\x99\x08\xa8\x10\x4d\xa3\x9c\x5d\xe2\xa6\x79\x5d\x23\x22\x9f\x67\x38\xa6\xeb\x41\xe6\x32\x94\xd1\x0e\x79\x49\x89\x13\xe6\x32\xe3\xad\x3a\x7e\xeb\x26\x6d\x2b\xde\xa4\xbc\x50\xdd\xa0\xbd\x1b\x0c\xe9\xbd\x0d\xbb\x86\xb3\xa2\xdd\x42\xc4\x76\x68\x64\xf5\xc2\xde\x7d\xda\x9f\xa2\x5d\xf2\xcb\x91\x38\xee\xc5\x71\xeb\xa4\x81\x6a\x2f\x8e\xbb\x27\x2c\x58\x00\xfa\x44\x1e\xd9\x51\x40\xbb\x5f\x77\x24\x91\x7b\x71\xdc\xa6\x85\x5a\x7a\xa1\x6e\x71\xa1\x0e\x2d\xd4\xd6\x0b\xb5\x8a\x0b\x75\x69\xa1\x8e\x5e\xa8\x2d\x0a\xe9\x65\x5c\xd9\x91\xac\x2e\xe3\xb7\x0c\x7d\x9d\xb6\x2f\x3a\x6d\xdf\xdd\x69\x36\x3e\x4a\x77\x31\x9a\xe8\x81\xc9\x78\xcc\xd3\x0e\x52\xa4\x69\x90\xd5\x56\x8b\x7c\x71\xd1\x6b\x0f\x44\x57\xaf\xb9\xed\xac\xb9\x53\xa9\xe6\x96\xb7\xe3\x95\x3a\x8c\x9a\xbb\x95\x6a\x6e\xfb\x46\xa7\xa1\xd4\x61\xd4\xdc\x32\x6a\x2e\x1f\xc8\xfd\x20\x4d\x2f\xd0\xd0\x4c\xa7\x4a\x87\x6a\x48\xe3\x5f\xd8\x96\x8c\x9c\x0e\x3e\x11\x3d\xd9\x45\x96\xe3\x19\x1a\x27\x8b\x14\xe5\xd1\xcc\x1c\xfb\x15\x83\xf2\xc6\x78\x99\x1f\x91\xd9\xe7\x8f\x1f\xeb\x88\x78\xfb\x2a\x09\xa3\xf1\x05\x95\x84\x94\x0f\x2b\x60\xb1\xeb\xc7\x62\xff\x98\x5e\x1c\xf8\xf3\x18\x52\x5e\x42\xb4\x15\x2b\x53\x9c\x2b\x49\xee\xef\x28\xc3\xf9\x62\xae\x7f\x28\xb8\xd1\x51\xbe\xd9\x3f\xfc\x9d\x5e\xed\x28\xda\xe1\x1f\xfe\xfe\xbe\x85\xf6\xd0\xe1\xef\x76\x6a\x34\x05\xa4\x4d\x41\xda\xce\x68\xc6\xea\x94\x86\xa1\xcc\x16\xc3\x33\x4c\x54\x05\xdf\xd6\xbf\x45\x83\x1f\x43\xdb\x34\xfa\xf1\x27\x44\x9f\x7c\xd1\x8f\x55\x70\x16\xe6\x58\xc0\xcb\xe3\x50\x77\x98\x63\xd1\x6c\x47\x34\xdb\xd6\x9a\x6d\x97\x35\xdb\xd6\x9b\x6d\xaf\xd6\x2c\x84\xd1\x89\x5a\x7c\x0a\x92\x4a\xa2\x8e\x3e\x03\x7d\x45\xbb\x50\xb4\xc3\x27\x33\x14\x6d\xe9\xd3\xd4\x33\x22\x8c\xad\x8b\x44\x2b\x02\x6e\x6d\xd1\x7d\xbd\x19\xdb\x9f\x7e\x6c\xd3\x8f\x6d\xe7\xc7\x0e\xfd\xd8\x71\x7e\xec\xd2\x8f\x5d\xe7\xc7\x5e\x51\x9b\xdb\x45\x6d\xf6\x8b\xda\xdc\x11\x6d\x16\x58\xa4\x2a\x49\x1e\xb4\xba\xf4\x41\xd5\x24\x10\xb2\x8d\x14\xea\x3d\xa2\x6b\x49\xee\xea\x35\x5e\x2b\xda\x47\x25\xc9\xac\x83\xb8\xa9\xf3\x2f\xef\xd0\xb9\xf2\x96\x19\x48\x21\x1d\xfa\x88\x86\x1a\xfa\x13\x98\x10\xd5\xfe\x24\x63\xcf\x67\x09\x3c\x8b\xb5\xf7\xa1\x59\xb0\x4d\x0b\x76\x58\xc1\x1d\xa3\xe0\xb6\xb7\x60\x87\x16\xec\xb1\x82\x6d\xa3\xe0\x8e\xb7\x60\x97\x16\xec\x9f\x08\xd4\xb4\x82\x6d\x59\xf0\x4a\xab\x58\x51\x94\x7a\x8a\x08\x8f\x1d\x7f\xc4\x52\xb2\xb3\xe0\xf1\xf0\xb8\x4e\xf4\x78\x5e\x0f\x13\x70\xa2\x1e\x57\xfc\x78\x27\xbe\xce\x4b\x78\x48\xc9\xd1\x2b\x6e\xd3\x1d\x15\xdf\xa2\x53\xb9\x5f\xf8\xf1\xc8\x93\x5b\xf9\x31\x3a\xa3\x5f\xfa\xbd\xad\x6e\xc7\x34\xcb\x89\x69\x22\x18\xb6\x56\xf1\x2a\x94\x36\x3f\xb4\x2f\x8a\x0a\x6a\x38\xfc\x1c\x05\x67\x18\x25\xd3\xd0\x2b\x6a\x57\xd0\x1f\xf6\xdf\xd3\xc1\xdd\x37\xe3\x1d\x6a\x2d\xee\x07\xd3\xd1\x62\x4a\x66\x58\x8c\xcf\xbd\xcd\xee\xb3\x44\x30\xfb\x34\x11\x4c\x6b\xd9\x0b\xbb\xf0\x7f\xe8\x3e\xd7\xd0\xcc\x7c\x2d\xfb\x2c\x2f\xcc\x3e\xcd\x0b\xd3\x5a\xb2\x12\x5d\x88\x29\xbf\xcf\x15\xd4\x56\x1d\x3d\x42\xb5\xfd\xf7\xca\xf3\x7f\xa1\x36\x1a\xa0\x56\xdd\xae\xb1\xc3\x6a\xec\xd0\x1a\x59\x85\x3d\x56\x63\xdb\xa8\xb1\x5d\xa1\xc6\x2e\xab\xb1\x6b\x91\x55\xa3\xed\x68\x35\x76\x2a\xd4\xd8\x63\x35\xf6\x9c\x54\x77\x8d\x1a\xbb\x15\x6a\xdc\x66\x35\x6e\x3b\xa9\xee\x19\x35\xf6\x2a\xd4\xd8\x67\x35\xf6\x9d\x54\x6f\x1b\x35\x6e\x57\xa8\x71\x87\xd5\xb8\xe3\xa4\xba\x6f\xd4\xd8\x2f\xad\x51\xaa\xfd\xb4\x52\xad\xf8\x8e\x59\xdc\xbc\x1d\x23\x78\x9a\xac\x3e\xa7\x9b\x57\x98\x44\x04\xea\x74\x09\xb2\x3a\x22\xa4\xed\x3b\x92\x70\xf0\x74\xf9\xe9\x62\x94\xa3\x49\x74\x3a\x41\x41\x1c\xa2\x69\x72\x8e\x82\xf4\x74\x01\xe1\x5f\xe0\x9a\xf3\xff\x2c\x82\xd4\x4a\xdc\x03\x0d\x04\x68\x8f\xb4\xc2\xb5\x38\x87\xf1\xe0\x74\x48\x41\xe8\x2a\xe1\xdc\x3e\x71\x9a\x35\x0c\x52\x9c\x2d\xa6\x39\x4a\xc6\x45\xcd\x4f\xe8\x12\x50\x3b\x0d\xd0\x4f\xe8\x34\xa0\x57\x57\xda\x3b\x75\x74\x1f\xd1\x57\x43\xf6\x6a\x1b\x5e\x0d\xe1\x95\x0b\xc9\x29\xad\x48\x21\x85\x6e\x09\x7f\x42\xa7\x4b\x18\xe1\x3a\x30\x04\x07\x10\x6a\xa7\x02\xe0\x4a\x04\x43\x08\xfa\xf3\xf5\x5b\x04\xe1\x24\xd5\x8f\xbf\x50\x09\x77\x3a\x41\x7f\xa1\xd3\x69\x55\x21\xe7\x36\xaa\xfc\xc9\x44\xdc\x2f\x54\xc4\xd5\x6a\xbf\xc8\xe5\x9b\xac\x64\xbf\x28\x6a\x41\x9d\x01\xf4\x75\x80\xbe\x04\x30\xf9\xf9\x4f\x26\x0d\x7f\xa1\xd2\xb0\x46\x9b\x91\xeb\xed\x2f\x5c\xfe\xc1\x7a\x7b\x1f\x91\xd6\xec\x3a\x3a\xac\x8e\x0e\xaf\xa3\xad\x23\xd0\xb6\x30\x6c\xe9\x00\xad\x22\x0c\xbb\xac\xf6\x2e\xaf\xbd\xa3\x63\xd8\x31\x30\x6c\x3b\x30\xec\xb1\x3a\x7a\xbc\x8e\xae\x8e\x40\xd7\xc2\xb0\xa3\x03\x74\x8a\x30\xdc\x66\xb5\x6f\xf3\xda\x7b\x3a\x86\x3d\x03\xc3\xae\x03\xc3\x3e\xab\xa3\xcf\xeb\xd8\xd6\x11\xd8\xb6\x30\xec\xe9\x00\xbd\x22\x0c\x77\x58\xed\x3b\x27\x1a\x8b\x08\x0c\xfb\x06\x86\xdb\x1a\x86\x95\x12\x7f\x64\x3c\xe9\x84\xb0\xb5\x56\x48\x3b\x51\x76\xdc\x45\xeb\xca\xf1\x32\x57\xcf\x9d\x54\x4b\x2a\x0f\xa5\xa0\xa5\x71\xa0\xa7\x45\xf6\xf9\xd5\x7c\x1a\x10\x6c\x96\x39\xf2\x56\xc7\xe2\xcc\xd4\x64\xcb\xae\x1a\xc5\xc1\x55\x91\x51\x57\x4f\xde\xa1\x42\xd6\x8b\xce\xa0\x54\xc0\xca\xce\xc8\x0d\xfd\x6c\x64\xb0\xdd\x6b\xc8\x43\x91\xc1\x76\xbf\xc1\xce\x4a\x06\xfd\xf6\xe5\x49\x63\xe7\xdb\x8e\x44\x78\x7b\x5e\x75\x7b\x5e\x75\x63\xe7\x55\xc6\x14\x97\xe7\x39\xe6\x49\xce\xb7\x75\x86\x73\x5d\x59\xe1\x5e\x88\xad\xf9\x0b\x7d\x6b\xfe\x62\xdd\xad\xf9\x0b\x7d\x6b\xfe\xa2\x68\x6b\x5e\x66\x60\xbe\x3d\xa9\xba\x3d\xa9\xba\x3d\xa9\xd2\xbe\xdc\x9e\x54\xdd\x9e\x54\xdd\x9e\x54\xc9\x66\x6f\x4f\xaa\xcc\x8f\xb7\x27\x55\x9e\xc7\xdb\x93\xaa\xdb\x93\xaa\xdb\x93\x2a\xf8\xbb\x3d\xa9\xaa\x66\xc4\xbd\x3d\xa9\xba\x3d\xa9\xba\x3d\xa9\x52\xfe\x6e\x4f\xaa\x6e\x4f\xaa\x6e\x4f\xaa\x6e\x4f\xaa\xfe\x93\x4f\xaa\xae\xed\x8c\x6a\xbd\xd3\xa9\x2a\xe7\x52\x15\x4e\xa4\x6e\xea\x2c\xea\xdb\xce\x87\x72\x7b\x16\xf5\xfd\x9f\x45\xa9\x67\x47\xfb\xbd\xd2\x8b\x4e\xea\xc9\xd1\x7e\x4f\x39\x36\x82\x87\x9b\x3f\x33\xa2\xb7\x34\xc5\xa9\x91\x3b\xa8\x00\xbf\xa1\x5d\x74\xac\x04\xd7\x38\xd5\x1b\xc5\x4a\xcc\x74\xdb\x5e\x11\x47\x39\xca\x86\xc9\xd2\xae\xe7\x48\xa0\x73\xa4\x1e\xd3\xf1\x3f\x97\x36\xd9\xd9\xee\xfb\x37\xe5\x6c\xd3\x1d\x95\x9b\x71\x5f\xe0\x0b\x97\x1d\x57\x6f\xb1\xc1\xef\x8f\x97\x36\xcc\x3a\x85\x74\x01\x8f\x2a\x11\xa1\x7f\xa9\xfd\xe4\x31\x1d\xb2\x42\x64\x69\xe3\x7d\x7f\xac\x55\x64\x47\x42\xd3\x3e\x5b\x41\xd1\x5c\x7b\x7f\x42\x45\xed\x03\xba\x4f\xfb\xe7\x3e\x6f\xb4\x8e\xfe\x05\x54\x79\x62\x29\x9c\x07\x73\x37\xce\xb0\x6e\xd8\x16\x02\x65\x00\x8e\xdc\x17\xe3\xc9\x6b\x32\xe2\xe5\xc3\xb3\xef\x34\xf1\xb3\xac\x1a\x82\x69\x3e\xb0\x2c\xb3\xa2\xa2\x2b\x9b\xe5\xb8\x25\x04\xac\x20\x56\xfe\x75\x32\x3c\x6e\x93\xa1\xd6\xb2\xb8\xe4\xdc\xd9\xee\x7b\x0c\x22\x2d\xaf\x31\xc4\xd9\x68\x55\xc3\x88\x32\x9f\x0c\xc3\x88\xec\xb4\xc8\xf8\xf2\x41\x76\x67\x69\x06\x78\x30\x0e\xea\xc5\x3f\xaa\x78\x1a\xe3\x21\x66\x53\x4c\xa7\x51\x4c\x4d\x6a\xb1\x63\x12\x45\x60\x41\xa7\x09\xe3\x18\x57\x6a\xdf\x35\x16\xf6\x30\xae\x93\x69\x0b\x18\xd6\xcf\xac\x92\x51\xf5\xf7\x3a\xb1\x9f\x48\xd9\x1a\x9b\x53\xa4\x08\xc3\xeb\x44\xe6\x35\x88\xcd\x3c\x06\xc6\xf6\xe9\x37\x88\x83\xe2\x38\xd1\x92\xac\x1e\x59\x7b\x77\xd2\x17\xda\x58\x31\xb5\x4c\xc3\xee\x6b\xd5\x7b\xf7\x7b\xd7\xa1\xf4\xee\xf7\x56\xd6\x78\xed\x35\xd6\x50\x77\xf7\x7b\xce\xd8\x16\x70\x42\x13\xe1\x70\x8d\x15\xfe\x69\x9a\xcc\xb5\x55\x9e\xbd\x80\x4e\xf8\x0c\x51\xf1\x42\xd2\x9c\x1e\x68\xce\xb0\xf3\x93\x81\x27\x50\x22\xd4\x1c\x6a\x3f\xe8\xa8\xd5\x9a\xb1\xe6\x08\xea\x4a\xd4\x2f\x63\x16\x93\xaa\x06\x7a\x15\x7a\xc4\xb8\x4a\x4a\x0c\x69\x83\x03\x16\x9f\x61\x90\xfe\x2c\x58\xc0\x85\xe3\x0b\xc1\x8b\xac\xe2\x3f\xc3\x62\xbe\xb9\xe9\x5c\xc3\x57\x10\xf7\xa8\x24\x01\xd2\x57\x34\xdb\x48\x17\x5d\xcf\x8c\x83\x9a\x56\x9f\x75\x8c\xe7\x8b\x67\x1e\x01\x2a\xde\x69\xee\xf7\x6e\x6a\x9b\x79\xb5\x74\x7d\x9f\x73\x7f\x79\x63\xbb\xc0\xcf\x1b\xc4\x99\x88\x2a\x9c\xe1\xf4\x0c\xdf\xbd\x53\x1b\xd5\x51\xa7\xd5\xee\xa0\xe1\x05\xda\xff\xff\xfe\xdf\x30\x8d\x46\xe8\x15\xce\xe2\x68\xda\x44\x8f\xa7\x53\x94\x46\xa7\x93\x3c\x43\x0c\x3e\x6c\xde\xbd\x7b\xe7\x2d\x0e\xa3\x2c\x4f\xa3\xe1\x02\xea\x0f\xe2\x10\x82\xf2\x44\x31\xca\x92\x45\x3a\xc2\xf0\x66\x18\xc5\x41\x7a\x41\xc4\xc1\x2c\x6b\xb0\x28\x0d\x29\xfc\x37\x59\xe4\x68\x06\x32\x7d\x04\x92\xb5\x81\x82\x14\xa3\x39\x4e\x67\x51\x9e\xe3\x10\xcd\xd3\xe4\x2c\x0a\x71\x48\x83\x4e\x90\x79\x3a\x4e\xa6\xd3\xe4\x3c\x8a\x4f\xd1\x28\x89\xc3\x88\xce\x61\x52\x68\x86\xf3\x01\x9b\xf1\x9b\x48\x47\x2b\x03\xc3\x30\xc5\x67\x94\xfc\xff\xec\xbd\xfb\x56\x1b\x39\xf6\x30\xfa\x77\xe7\x29\x34\x73\xd6\x24\xa6\xa9\x40\x49\x75\x53\x25\xa1\xcf\x21\x60\x1a\x4e\x93\x90\x03\x64\xd2\xbd\xb2\x92\x4c\x5d\x54\xd8\x1d\x63\xf3\xb3\x4d\x80\x9e\xce\xac\xf3\x1a\xdf\xeb\x7d\x4f\xf2\x2d\x6d\xa9\xaa\x54\x55\x92\xca\x10\xd2\xbf\xe9\xf9\x85\x59\x93\xb6\xad\xad\xbd\xb7\xf6\x4d\xf7\xad\x9c\xa1\xf3\xcb\xc5\x92\x77\xd4\xc9\x78\x0a\x48\x93\x74\xf6\x89\x17\x5d\xdc\x40\x13\xd1\x74\xb6\x1c\x67\xcc\x11\x79\x85\x26\xe3\x05\xac\x2c\xab\xf4\xa6\x79\x8b\x99\x7c\xbc\xc8\x26\xc9\xf8\x9c\xcd\x37\x4c\x3c\x8c\xa7\xaa\x20\x4a\x1e\x2e\xe6\xb3\xfc\x32\x63\xf7\xce\x06\x92\x4d\xcb\x67\xd9\x65\x95\x07\x83\xd7\xd8\x9c\xcd\x65\x8e\x8c\xf3\x64\xc9\xe6\xe3\x64\xb2\xa8\xc5\x0c\xba\x81\x6a\x0a\xeb\x5c\xcf\xa7\xfb\x07\x27\xe8\xe4\x68\xef\xf4\xcd\xf6\xf1\x10\x1d\x9c\xa0\x57\xc7\x47\x7f\x3f\xd8\x1d\xee\xa2\xe7\xbf\xa0\xd3\xfd\x21\xda\x39\x7a\xf5\xcb\xf1\xc1\x8f\xfb\xa7\x68\xff\xe8\x70\x77\x78\x7c\x82\xb6\x5f\xee\xa2\x9d\xa3\x97\xa7\xc7\x07\xcf\x5f\x9f\x1e\x1d\x9f\xa0\xbf\x6e\x9f\xa0\x83\x93\xbf\x42\xc1\xf6\xcb\x5f\xd0\xf0\xe7\x57\xc7\xc3\x93\x13\x74\x74\x8c\x0e\x5e\xbc\x3a\x3c\x18\xee\xa2\x37\xdb\xc7\xc7\xdb\x2f\x4f\x0f\x86\x27\x0e\x3a\x78\xb9\x73\xf8\x7a\xf7\xe0\xe5\x8f\x0e\x7a\xfe\xfa\x14\xbd\x3c\x3a\x45\x87\x07\x2f\x0e\x4e\x87\xbb\xe8\xf4\xc8\x01\xa2\xdd\x6a\xe8\x68\x0f\xbd\x18\x1e\xef\xec\x6f\xbf\x3c\xdd\x7e\x7e\x70\x78\x70\xfa\x0b\xd0\xdb\x3b\x38\x7d\xc9\x69\xed\x1d\x1d\xa3\x6d\xf4\x6a\xfb\xf8\xf4\x60\xe7\xf5\xe1\xf6\x31\x7a\xf5\xfa\xf8\xd5\xd1\xc9\x10\xf1\x66\xed\x1e\x9c\xec\x1c\x6e\x1f\xbc\x18\xee\x6e\xa0\x83\x97\xe8\xe5\x11\x1a\xfe\x7d\xf8\xf2\x14\x9d\xec\x6f\x1f\x1e\x6a\x5b\xc9\x79\x6f\xb4\xf1\xf9\x10\x1d\x1e\x6c\x3f\x3f\x1c\x0a\x4a\x2f\x7f\x41\xbb\x07\xc7\xc3\x9d\x53\xde\x9c\xfa\xd3\xce\xc1\xee\xf0\xe5\xe9\xf6\xa1\x83\x4e\x5e\x0d\x77\x0e\xf8\x87\xe1\xcf\xc3\x17\xaf\x0e\xb7\x8f\x7f\x71\x24\xce\x93\xe1\xff\xf7\x7a\xf8\xf2\xf4\x60\xfb\x10\xed\x6e\xbf\xd8\xfe\x71\x78\x82\x06\x3d\x22\x79\x75\x7c\xb4\xf3\xfa\x78\xf8\x82\xf3\x7c\xb4\x87\x4e\x5e\x3f\x3f\x39\x3d\x38\x7d\x7d\x3a\x44\x3f\x1e\x1d\xed\x82\xa0\x4f\x86\xc7\x7f\x3f\xd8\x19\x9e\x3c\x45\x87\x47\x27\x20\xad\xd7\x27\x43\x07\xed\x6e\x9f\x6e\x03\xe1\x57\xc7\x47\x7b\x07\xa7\x27\x4f\xf9\xe7\xe7\xaf\x4f\x0e\x40\x68\x07\x2f\x4f\x87\xc7\xc7\xaf\x5f\x9d\x1e\x1c\xbd\x5c\x43\xfb\x47\x6f\x86\x7f\x1f\x1e\xa3\x9d\xed\xd7\x27\xc3\x5d\x90\xee\xd1\x4b\x68\xea\xe9\xfe\xf0\xe8\xf8\x17\x8e\x94\xcb\x00\x84\xef\xa0\x37\xfb\xc3\xd3\xfd\xe1\x31\x17\x28\x48\x6a\x9b\x8b\xe0\xe4\xf4\xf8\x60\xe7\x54\x05\x3b\x3a\x46\xa7\x47\xc7\xa7\x4a\x1b\xd1\xcb\xe1\x8f\x87\x07\x3f\x0e\x5f\xee\x0c\x79\xe9\x11\xc7\xf2\xe6\xe0\x64\xb8\x86\xb6\x8f\x0f\x4e\x38\xc0\x81\x20\xfb\x66\xfb\x17\x74\xf4\x1a\x9a\xcc\x75\xf4\xfa\x64\x28\x3e\x2a\x16\xeb\x80\x26\xd1\xc1\x1e\xda\xde\xfd\xfb\x01\x67\x5b\x02\xbf\x3a\x3a\x39\x39\x90\x76\x02\x22\xdb\xd9\x97\xe2\xde\x78\xf0\xdd\xf7\x9b\xcd\x35\xaf\x17\xc9\x72\x74\xbf\xeb\x5e\xab\x65\x9d\x16\x89\x8f\x2b\x10\xf1\x75\xa5\xd3\xd9\xb0\x61\x97\x4c\x97\x0b\xb4\x4c\xd2\x72\xc4\xc2\xab\x7c\xf8\x6d\xa2\x4d\xb6\x59\x8f\xa3\x5c\x07\x21\xec\x20\x44\x1c\x84\x3c\x07\x21\xdf\x41\x28\x70\x10\x0a\x1d\x84\x22\x07\x21\xea\x20\x14\x3b\x08\xbb\x0e\xc2\xd8\x41\x98\x38\x08\x7b\x0e\xc2\xbe\x83\x70\xa0\x9c\xb0\x8c\x44\x5d\x5e\xc6\xf1\x71\x78\x8e\x03\x07\x02\x2f\xaf\x07\xb4\x62\x89\x9f\x48\x1c\x18\x68\xd4\x78\x3c\x49\xcb\x97\xbc\xc4\x12\x07\x55\xf8\x8c\x24\xae\x50\xf2\x82\x05\x4e\xac\xe6\x5a\xc6\xb2\x6e\xc9\x8b\x2b\x70\x00\x1f\x25\x9f\x9e\xc0\xc5\xf1\x63\xb5\xdd\x2a\x1e\x5f\xd6\x0d\x24\xef\x91\xc4\x41\x14\x3e\xb1\xc4\x45\x25\x2f\xb2\xdd\xd8\x7b\xb7\xf6\x54\xd5\xc5\xbc\x47\x17\x25\x1f\x91\x22\x2b\x22\x71\x96\x3c\x87\x4d\x79\x40\xdb\xbc\x56\xdb\x43\x59\xc7\xab\x71\x41\xdd\xa0\xe6\xb9\xc4\x51\xca\x03\x68\xe1\x56\xdb\x01\x28\x50\x1a\x18\x49\x06\xc3\x5a\xb8\x15\x12\xa2\x08\x5a\x30\x5b\x23\xa2\xb2\x8e\x22\x2c\x50\x4c\x50\x0b\xb7\xc2\xe1\x29\x82\x16\xcc\x2a\x0c\x11\x29\x59\x57\x41\x56\x4a\x23\xaa\xb4\x57\x59\x28\x92\xd2\x11\xcc\x36\xb5\xb1\xe8\xf3\x0c\xc1\xa2\x94\x15\xb0\xa7\x52\x2a\x6d\xcb\x53\xe4\x19\xd6\x65\x0d\x9b\x8e\x1c\x28\x02\x51\x95\xf6\x1a\xd7\xb6\x57\xda\x14\x0e\x14\xb1\x46\x12\xb6\xa1\x0f\x5c\x1b\x41\xa5\x8b\x58\x02\x96\xc6\x43\x15\x98\x92\xf1\x08\x3e\xab\x73\xa9\xca\x97\xfd\xba\x6a\x49\xbf\xf2\x79\xd5\x27\x68\x03\x65\x8d\xaa\xf4\xcf\xa0\xb6\xfd\xaa\x9d\xa4\x66\xa1\x92\x93\x34\x19\x81\x17\xb5\x54\xd2\xe7\x20\x92\xb1\x86\xf0\x83\x9a\x01\x68\x67\x54\x3b\x22\x10\xf4\x25\x23\x61\x8b\x69\xaf\x29\xfc\xaa\xd1\xb8\xc6\x53\xc9\xae\x72\x68\x28\x6f\xe0\xa9\x02\x08\x56\x84\x14\xd6\x74\x2b\xc7\x93\x0e\x8c\x3d\x8d\x3e\xaa\x06\xb4\x18\x2f\x11\x55\x0e\x47\x94\xff\x06\x95\x17\x37\x05\x14\x68\xe0\xfc\xa6\x66\x2a\x4d\xd6\x8d\x42\x18\xa3\x77\x8d\x57\xb2\x3f\x8c\xb8\x87\x68\xf4\x81\xaa\x54\xcd\xae\x83\xdc\xeb\x60\x9b\x92\x28\x8e\x63\xfe\x39\x1c\xee\xc6\xc3\xe7\xdb\x98\x7f\xa6\x7b\xf8\xf9\xf3\x9d\xdd\x1d\xfe\x79\x3b\x0e\xbc\xbd\x5d\x7f\xd8\xd4\xf7\x68\x6e\x24\x10\xb8\xdb\x84\x3e\x1f\x86\x40\x60\xc7\xdf\xdd\xc5\xc4\x07\x02\xbb\x91\xeb\x0d\xf7\x3c\xfe\x39\xda\x0e\x77\xa3\x70\x08\x84\x4b\x86\xde\x69\xd7\x03\x8e\x0f\x5e\x0d\x5f\xec\xe2\xd0\x85\xf4\xfb\x3d\x6b\x48\x15\x6c\xbd\x8a\xa4\xfc\x24\x7a\xe5\xbb\xee\x15\x89\xc5\x44\x60\xc2\x90\x04\x3b\x8c\xfc\x80\x78\x2e\x48\x70\xb8\xb7\xb3\xbb\xfd\x9c\x42\x03\x63\xfa\x7c\x7b\x77\x67\x6f\xc8\x3f\x63\xd7\x23\x81\x1f\x81\x70\x76\xbc\x5d\x32\xc4\x7b\xee\x3b\xe3\xd2\xf8\xaa\x8b\xf2\xda\x85\xdd\x95\x6f\x29\x61\xcb\x4e\x4d\xff\x71\x7c\xc1\x05\xac\xbd\xd6\xc7\x22\x0d\xdb\x37\x2f\x3e\x28\xd0\xe5\xe6\xc1\x87\xee\x41\x26\x64\xdb\x53\x51\xea\xa1\x2d\x34\xe8\x02\x20\x71\x00\x54\x21\x56\x1f\x7c\x50\x7e\xbc\xdd\xa1\xd2\x0e\x42\x79\xae\xb4\x85\xb0\x7b\xba\xb4\x8b\xce\xb2\x34\x86\xfa\xce\x3a\xef\xa3\x6a\xff\x81\x9b\xa2\x71\xcb\x11\x02\xc0\x87\xd1\xc4\x0c\x30\x07\x80\xb9\x11\x00\x86\x9f\x1f\x7e\x33\x63\x80\x31\xd1\x87\xdf\xcc\x18\xa0\x9b\xfe\xb0\x30\x63\x80\x4e\xe3\xc3\x62\xae\xcf\x68\xbd\xb9\xc9\xbd\xec\x23\x9f\x34\x7f\x4a\xe6\x63\x3e\x3a\xd6\x6c\xd2\x26\x13\x07\xa5\x13\x07\x65\x13\x07\xe5\x13\x07\xb1\x89\x86\x50\x32\x77\x50\x3a\x77\x50\x36\x77\x50\x3e\x77\x10\x9b\xb7\x89\x25\x9c\x95\x84\x33\xbc\xdf\xbd\x32\x92\xce\x21\xe9\x38\x14\xe2\x76\x61\xc6\x0b\x33\x51\x48\xda\x85\x39\x2f\xcc\x45\xa1\xd7\x2e\x84\x09\x03\x13\x85\x7e\xbb\xb0\x7a\xa6\x3a\x69\xbe\x4b\x5d\x36\xa9\xbd\x2b\xa8\x3d\x4a\x08\xff\x5d\xdf\x42\x58\xeb\xdb\x4b\xee\x3e\xc9\x04\xad\xd7\x3e\xb5\xfe\xdb\xe4\xed\xf8\xdd\xbb\xb5\xdf\x75\x97\x18\xe0\xd6\xce\x33\x1c\xae\xfd\xf3\xc1\x77\xcd\xd0\xc8\x69\xa0\x02\x0f\xd2\x89\x93\x4d\x9c\x7c\xb2\x86\xd6\xd1\x68\xa2\xbf\x7b\xf3\x19\x55\x0b\x72\xe3\x67\x1e\x11\x4b\x6d\x1a\x6c\xa4\x8d\xad\x23\xf9\x0e\x36\x9f\x1a\xb1\x79\x6d\x6c\x1d\x55\x75\xb0\x85\xbe\x11\x9b\xdf\xc6\xd6\xd1\xad\x82\xed\x9f\x9b\x9b\x12\x23\x75\x8d\x18\x83\x36\xc6\x8e\x41\x20\x7d\x9a\x74\xae\xc4\xa5\x56\x5d\xbc\x04\xcd\x67\xcb\xc9\x60\xe9\x2c\xb8\x5a\x75\x97\x36\xc0\x06\x96\xeb\x6c\xa2\x57\x39\x78\x44\xc7\xa5\xf8\x1f\xd8\x6d\xae\x2b\x01\x73\x07\xba\xdc\x27\xb1\xf6\x1a\x10\xf8\x4b\xaa\xab\x0d\x6e\xd6\xd9\x49\xac\x58\x4d\xe6\x68\x5d\xb1\xd6\xf9\xdd\xad\x35\x18\xa4\x73\x27\x9b\x3b\xf9\x1c\x24\x3e\xff\x32\x6b\xf5\xdb\xd8\xbe\xd4\x5a\x9b\xd8\xbe\xc8\x5a\x49\x1b\xdb\x17\x5b\x2b\x6e\x63\xbc\x67\x6b\x9d\xc3\xae\xb5\xc5\x5c\xe7\x06\x73\x85\x88\x3a\xd7\x99\x2b\x04\x62\x5d\x09\x84\x68\x61\xae\x73\xa3\xb9\x42\x07\xa0\xab\x0d\x5d\x43\xf7\x84\x46\x3b\x94\x1f\xa8\xcf\x31\xc0\x18\x12\x4e\xfd\xb6\x46\x98\xfc\x9f\x2d\x34\xd8\x17\x47\x73\x33\x1e\x99\x73\x4d\x4b\xf7\xe5\x11\xde\x7d\x71\xfc\x36\xe7\x70\x3a\x89\xec\xcb\x63\xba\xfb\xe2\x20\x2d\xe3\x70\x89\x16\xce\x93\x70\x70\x58\x16\x7a\x84\x54\x0b\xe7\x4b\x38\x38\x98\x9c\x72\xb8\x4c\x0b\x07\x07\x98\x1b\x62\x69\x0f\x6b\xf7\xe4\xd3\x1a\x5f\x70\x3c\x2b\x4f\x96\x49\x35\x18\xe2\x5f\x34\x1d\x7f\xff\x33\x8c\x25\xe4\xf4\xf9\x78\xb9\x38\x9d\x2d\x21\xe2\x09\x9c\xd3\xdd\x64\x99\x88\x53\x5b\xdf\x23\xaa\xc1\x0e\x75\x0e\x59\xb1\xec\x3c\xda\x08\xf0\x9d\xc6\x6c\xe7\x79\xf7\x15\x62\x24\xdf\x5b\x14\x87\x99\x6a\x94\x7c\x34\x19\xbc\x43\xbf\x6f\x89\x87\x85\xeb\x33\x12\x15\xc4\xdf\x90\x47\xda\xd6\x5a\x63\x1a\x0c\x06\x35\xe8\x3a\xe2\xf1\x81\xa3\x8c\xd7\x38\x2a\x9f\xfb\x2d\xf6\x0d\x03\xe8\xb2\xaa\x10\x47\x3d\x78\x56\x7e\x5c\x7d\xf0\xdc\x41\x26\x07\xce\x2d\x64\x7d\x03\x67\x5d\x43\xd5\x77\x3a\xea\xf7\x30\xcb\x37\x76\xe0\x70\x8c\xe6\xd9\x8e\xcd\x4d\x98\x09\x22\x78\xdd\x45\x5c\xc8\xd2\x1e\x9c\xba\x10\x33\xaf\xee\x6b\x2e\x76\xb3\x04\xef\x56\xc7\xe8\x1a\xc3\xd9\x47\x5b\x48\x1d\xbe\x7f\xd9\xfc\x2d\x58\x69\xfa\xa6\x9f\x91\xed\xc3\x54\x6c\x5f\x73\x99\x04\xd9\xe6\x60\xfb\xd5\x75\xbd\xfd\xc6\xf4\x6a\xff\xd6\xf3\x2a\x61\x21\xfb\x8d\x39\xd5\xbe\x71\x32\xd5\x7f\x14\xee\x58\xec\x84\x0b\xe5\xca\x17\x2c\x72\x10\x76\x13\x54\xee\x98\xb7\x14\xd4\x08\x53\xd9\x64\x36\xb5\x07\x28\x38\x4a\xc0\xa1\xea\xd5\x05\xf8\x6a\x3e\x06\x21\x8a\x3f\x74\x8c\x44\xd4\xeb\xda\x9a\x64\x13\x4a\x1b\xe7\xa2\xe0\xe3\x67\xb1\xfb\x8f\xd4\x13\x71\x05\x1e\x5c\x3b\xe8\xc6\x41\xbf\xe9\x9e\xf9\x18\x0c\xae\xe1\x66\xe7\x0d\xfc\xfb\x5b\xfd\x5a\xfb\xe7\x0e\x1e\x62\xc7\x33\xb8\x5e\x7b\x38\xb8\x59\x13\xd7\xc9\xff\xc5\xbf\xfc\xb6\xb6\xb6\xf6\xd4\x84\xcd\xeb\xc5\xc6\x11\xfd\x8b\x63\xac\x59\x33\xe0\xf2\xfb\x71\x3d\x04\x0c\xc0\xdb\xcd\xda\xc3\xc1\xbf\x80\x39\x33\xc6\x60\x15\x99\x71\xa1\xfd\x5e\xa3\x32\xe0\x82\xa1\xc4\xb5\x33\xd5\x62\xba\x7e\xf6\x6c\x0a\x5c\x5d\xff\xf0\xc3\x0f\x03\x8f\x3c\x9e\xaa\x4c\x89\x0f\xd6\xd3\x30\xe5\x61\x18\xf1\x0e\xdc\x6a\x87\x61\x8c\xaf\xfd\xc8\xf3\x2d\x70\xe6\xa9\xfc\xbc\x9c\x89\xc8\xd4\x45\x63\x78\x9f\xc7\x00\x7d\xd7\x87\x79\xa4\x67\xd4\x27\x59\xca\x05\xbc\xc1\x23\xc9\xe2\x23\xcd\x29\x1c\x73\xad\xab\x92\x5b\xdd\x71\x9b\xee\xe2\x60\xeb\xa8\x4d\x09\xb0\xda\x51\xa5\x52\x39\xfb\x2f\xb6\x77\xfe\x00\xd5\x58\xaa\x7f\x64\x37\x50\x75\xc1\xb2\x39\x5b\x1a\xde\x4e\x32\x28\x14\x9e\x1c\xbc\x47\x85\x8a\x87\x0c\x2b\xd5\xec\x9f\x27\x59\xad\x1e\xf5\x88\x95\x46\x43\x0d\xe0\xae\x96\xce\x93\x4c\xa3\xa9\xef\x3e\x8b\x7d\x60\xc3\xd1\xa8\x12\x52\xff\x3a\xd1\xe7\x77\x4e\x14\x7d\x3b\xe2\xf4\x9f\x70\x65\xe5\x6b\x6f\xdd\xb7\x12\xab\x29\x84\x8d\x29\xd3\x4e\xf6\xb7\x1f\xe3\x15\x76\x32\xba\x6f\x55\xdf\xe7\xfe\xc5\x16\xdc\x3e\xad\xb7\x30\xc6\xd3\xf1\x72\xa0\x49\x40\xd5\xdc\xd2\x60\x45\x96\x27\x29\x8d\x35\xb9\x99\xdc\xeb\x98\xa6\x49\x9e\x15\xac\xb1\xc7\xa1\x03\xcc\xbc\x9c\x30\x5c\xb8\xcd\xb2\x2f\xdf\x02\x31\x8d\xd0\xf5\x83\xef\xee\x0a\x7a\x07\xc1\x2a\x6b\xcf\xfa\xe5\x62\x5e\x94\xea\x17\x8b\x61\xc0\xa8\x5f\x2a\x86\xe9\xaa\x7e\xa1\x98\x17\xb1\x6a\x99\xb8\xc3\xa9\x71\x9d\xd8\xb8\x26\x6c\x98\x2d\xc0\xba\x0f\x12\x37\x4c\x0d\xb9\x60\xde\x88\x81\x7f\x33\x05\x46\xf3\xee\x69\xf9\x57\x2e\x28\xe9\x11\x95\xf7\x1c\xde\xbc\x1d\xa3\xc7\xc8\x7b\x87\xde\xcb\x8f\xb4\xfe\x88\x7d\xe5\x73\x68\x7a\x3b\x52\xb2\x34\x98\xc2\xe5\x58\x31\xb7\x84\xe9\x83\x87\xf5\x69\x6a\xf4\x33\x21\x58\x5a\x1a\x24\x1c\x49\x00\x48\x12\x31\x93\x89\xe0\x82\x2c\x43\xeb\x40\xc8\xb4\xd0\x88\x9e\x21\xe2\x1a\xa5\x06\xcb\x66\x83\x41\x8a\x1e\xa2\x4c\x8c\x73\xf9\xc7\x1c\x30\xbb\xd7\x41\x22\x76\x61\x7b\x96\xf8\xd0\x33\xe4\xf7\x91\x48\xd1\x7b\x94\xa1\xf7\x28\x17\x98\x43\x96\xc7\x2c\x4d\x74\x49\x87\x5a\x98\xc3\x5b\x30\x2f\x78\xe7\x9f\x32\xd9\x8a\xc7\xc8\xbd\x8e\x5c\xe6\xfb\x1e\xf1\xcd\xb4\x36\xbf\xaf\xc8\x51\x77\x0d\x7d\xbf\xb9\x72\x5b\x38\x7e\x2f\x88\x73\x8f\x91\xf6\x2a\x0f\x32\xa8\x94\xfb\x4b\xae\x5b\xee\x43\x5b\x28\xd3\x2d\xf1\x21\x20\xf9\xec\x19\xf2\x5c\xd9\x4a\x50\xbf\xf6\x6d\x51\xb4\x85\x74\x7c\x24\xab\xdd\xd6\x5a\x69\x31\x50\x2e\xa2\x95\x8b\x6d\x49\xfb\x86\x37\x6a\x2c\x04\xc2\x82\x61\x27\xf3\x09\x6a\x2c\x02\xc2\x62\x61\xa6\x87\xf1\xd4\x85\xc2\x5c\x0f\xe3\xab\x8b\x84\xac\x0d\xf3\x6d\x81\xef\xdf\x75\x81\x8f\x8f\x85\x37\x8a\xc9\x6c\x36\x57\xd7\xdc\x36\xa1\xa3\x96\x7f\x5f\x44\x04\x72\x21\xd4\x98\x7b\xd6\xe9\x3a\xcb\x74\x5f\x69\x85\xee\x96\xeb\x40\xda\xe5\xba\x3f\xe3\x6a\xd0\xb7\x25\x84\xce\x62\x00\x1f\x3e\xdf\x6a\xf5\x00\x2a\xd8\x16\x0e\x9a\x03\xf2\xe6\x9a\x01\x2f\xfb\xb6\x5c\x70\xaf\xcb\x05\xa0\x8f\x15\x56\x0a\xf4\x6a\xa9\x17\x09\xa4\x6a\xcc\xd7\xa6\x38\x80\x79\x59\x80\xfe\xa9\x13\x6c\x2c\x46\x09\x09\xc2\xaf\x9d\x1b\x43\x52\xf9\x9f\xb3\x7c\xd0\x59\x1e\x50\xe7\xf0\x24\x08\x1b\xb3\x78\xe5\x16\x76\x7b\x55\x80\x10\x7f\xb5\x75\x01\x0e\xd8\xc0\x09\xdf\x05\xf2\x3f\x74\x6d\x20\xc3\x6e\x10\xb3\x9c\xf2\x29\xbf\x17\x46\x59\x1e\xb8\x11\x7c\x76\x23\x37\xcf\x31\x7c\x2e\x22\x97\x05\xb1\xa7\x5f\x33\x28\x8a\xcc\x75\x53\x0f\x16\x17\x42\x1a\x50\x1c\x60\xf1\xd9\x2f\x62\x5a\x24\x80\x20\x65\x45\xe2\x17\x89\x7f\x8b\xe5\x82\x95\x46\x9e\x4a\xd8\x97\xa2\x53\x6a\x5a\x6e\xd1\x42\x44\xad\x86\x33\x8f\xb7\xba\x83\x17\xc3\xc6\xd2\xb7\x2e\xba\xa7\xc7\x25\xc4\xbf\x6d\x27\xcd\xab\xf4\x74\xd3\x0d\xef\xe8\x74\xd4\x84\xe8\x2f\xb1\x7f\xeb\xaa\xbf\xa0\xab\xe6\x5a\x59\xad\xb3\xd6\x2a\xa7\xd1\x5d\x0b\x05\x59\x3b\x6c\x42\xda\x57\x9d\x95\x7b\xcd\xb2\x3b\x7a\x12\xc5\xbc\x03\x8f\xbf\xad\xeb\xff\xf7\x74\xcc\x7f\xbe\x6b\x79\x07\xe2\x11\x87\xf1\x6f\xd5\xad\x5c\x34\x9f\x5d\x4e\x73\x94\x35\xef\xeb\x29\x2d\xd8\x6f\x3f\x9d\xf2\x53\x73\x1b\xa0\x5c\xa8\x65\x35\x0e\x51\xa2\x1b\xc1\x20\x75\x4b\x79\xbc\x78\x35\x1f\x9f\xb3\xc1\x54\xdb\x8d\x2d\xfe\x6b\xbe\x7c\x59\xce\xf3\xf9\x97\xc1\xb4\x3d\xcf\xac\x16\x82\x85\x3a\xd1\x16\x22\x4f\xcb\xcf\xcf\xb6\x04\x86\xf2\x07\xcb\xda\xf0\x5f\x06\x53\xf4\x37\x09\xb6\x66\x5c\x2f\x94\x3e\x5a\x24\x93\x05\xeb\x3f\x15\xd8\x5e\x1f\x2b\xe7\xe3\xf3\xcb\xe6\x0c\x57\x23\x96\x33\xb6\xdc\x9b\x27\xf0\x39\x99\x3c\x1f\x2f\x17\x1a\x01\x55\x5b\xf8\x53\xf4\x18\x0d\xa6\x90\xd9\x73\x0d\x7d\xdf\x58\xfc\x68\xaf\x64\x29\xb4\xca\x55\x6a\x35\x33\x3b\xfc\x06\x0a\x69\xe5\xef\xb9\x1a\x8d\x27\x0c\x0d\x64\xd9\x33\x24\x8f\x64\xb6\xa5\x58\x6b\xd3\x28\xe8\x0a\x05\x35\x4a\x79\xff\xad\x00\x82\xb4\xa3\x1d\x41\x80\x2d\x5c\xcc\xae\x06\x53\x07\x61\xb4\x89\xc8\xda\x0a\x19\xdb\x11\xbc\x84\x72\x1b\xb4\xde\x9a\x36\x79\xb6\x40\xb1\xbe\xde\xb3\x14\x3a\x6d\x40\x94\x23\xa4\x41\x8d\xf3\xee\x7b\x6c\x7c\xe0\xbd\xda\x68\xba\x3b\x42\xff\xea\x3b\x6d\xfb\x1b\x8b\xc9\x38\x63\x03\x77\xed\xdb\xae\xd7\xca\xbb\x5e\x9d\xa2\x02\x8a\x02\x5d\xd1\x19\x14\x75\x36\x8c\x60\xcc\x02\x45\xd1\x17\x6f\xa3\x85\x96\x5c\xf7\x7f\xf4\x36\xda\x59\x72\x7e\x9e\xb8\xd7\xd5\x66\x1a\xee\x08\xa5\x0b\x0d\x07\x8d\x07\x65\xcd\x67\xcf\x10\x11\x9b\x5e\xe5\x2f\x3f\xfc\xf0\x03\x8a\xd6\xd6\x10\x7a\xaf\xc7\xd4\xfc\x6b\x60\xc2\x7e\x07\x13\xa6\x6b\x6b\xab\x61\x6a\xd6\xf3\xb4\xe1\xa5\xd1\x12\x5c\xb7\x5b\x7b\x48\xbe\x09\xac\x34\x1b\x0b\x66\x95\x66\xe3\xeb\x32\xdf\xf4\x8a\xcc\x36\x31\x79\x5d\x4c\xf1\x2d\x9b\x5d\xd6\xd3\xbf\x49\x80\x6a\xc3\x91\x4a\x5c\x97\x2d\x87\x24\xbf\xb2\x85\xeb\xd6\x0d\x53\xd3\xee\x67\x06\xb7\x1a\x07\x0c\x3d\x44\x05\x1c\x76\xfb\x17\xff\x78\x66\x7a\xc2\xe5\x3c\x81\x0c\x73\x09\x7a\x88\x52\x00\x4f\xc4\xee\xe0\x7b\x24\xf7\x09\x75\xfc\xc3\x60\x65\x7c\xc6\x19\xaf\xb6\x5a\xe5\x66\x9b\xdc\x6b\x15\x47\xff\x44\x09\x8e\x95\x12\xec\x35\x8a\x1a\x95\xf4\x7d\x5b\x45\x0c\xde\xa9\x19\x30\xb0\x71\x91\x39\x99\x41\xbd\x50\x62\x14\x25\x58\x29\xc1\x58\x2d\x8a\xc4\xc9\x56\x51\x44\x02\x7d\x8f\x07\x1b\xc8\x9c\xd2\x08\xad\x97\x64\xd7\xb9\x50\xd7\xc5\x43\x6f\xc6\xcd\x63\xa8\x48\xd0\x56\x29\x98\x75\x2e\x5a\x1d\x05\x1e\xb8\xce\x34\x08\x78\xac\x6b\xe7\x69\xe7\x7f\x3c\x3c\xea\x86\x5f\x90\x3b\x13\x5e\x4b\xc0\xba\x6d\x3e\xd4\xb3\x45\xda\xce\xb6\x8e\x7a\xb6\x43\x07\x4b\x2e\x88\x25\xd1\xd1\xfa\x9f\xb2\x35\x2a\x60\x02\x09\x03\x29\xc3\x0b\x3d\x4c\x28\x61\x20\x25\xf8\x99\x1e\x26\x92\x30\xe0\xf3\xa3\x6f\xdb\xb0\xdf\xb6\x61\xbf\x6d\xc3\x76\x47\x9b\xdf\xb6\x61\xff\x2d\xd7\x78\x83\xf0\xd6\x6b\xbc\x41\xd8\xbb\xc6\xab\xce\xd9\xba\x6b\xbc\x41\xf8\x6d\x8d\xf7\xde\xd7\x78\x83\x70\xd5\x35\x5e\x9d\x72\x9a\x6b\xbc\xa0\x20\xfb\xa1\xed\x6a\xef\x4c\xbf\x35\x4b\xdd\x3f\xf5\xd6\xec\x75\xe8\xff\x21\x0f\x17\x54\x74\xbe\xad\x02\x37\x57\x81\xaf\x43\xd8\x53\xdd\xb8\x0e\x7d\xe5\xf7\x9f\x43\x5f\x66\xe9\x06\x88\x0d\x25\x4f\xf4\xad\x72\xba\x29\xed\x3b\xde\x3f\xfa\x70\xb4\xb7\x77\x32\x3c\x3d\x69\xaf\x16\xbf\x3a\xf8\x70\xf0\x72\x77\xf8\xf3\xb0\xfb\x2a\xf7\xf1\xd1\xeb\x97\xbb\x1f\x76\x8e\x5e\x9e\x9c\x6e\xbf\xac\x6a\x2a\xe4\xc4\xb2\xf2\xce\x6a\xcb\xca\x4a\x8d\xf9\x68\x56\x26\x6d\x69\xad\x49\x97\xa4\xf9\xec\x1a\x3b\xe8\xc6\x94\xaa\x7c\x29\x96\x44\x96\xe8\x19\x22\xfe\x53\xb4\xd4\x2c\x89\x28\x6d\x7e\x7b\x8d\xd6\x51\x80\xbe\x47\x37\xe2\xf6\xe0\xb2\xbc\xa4\x09\x9f\xc8\x1a\xac\x54\xa2\xbf\xa1\xb0\x33\x16\x81\x61\x20\xbb\xfa\x19\x6d\xa1\x1b\xf4\x37\x14\xe8\x46\x89\xec\xea\x17\x8e\x95\xa0\xef\x11\xa7\xe3\x71\x3a\x6b\x1a\xe0\x6b\xb1\x2c\xf7\x73\xeb\xe7\x1b\xf1\xf3\x2f\x86\xa5\x60\x45\x6c\x17\x63\x34\x86\xe7\x04\x34\x42\xab\x24\x73\x2d\x24\x73\x2d\x2e\x68\x5e\x6b\x04\x53\x81\x0a\xe9\xa2\x1b\x01\x7a\x63\x58\x56\xaa\x0d\xa4\x29\xc6\x1b\x78\xe0\xa7\xdb\x6a\x2e\xd7\x76\xd3\x3f\xf7\xb6\xad\xb5\xcb\xd1\xb4\x86\xc3\xbd\x93\x63\xce\xeb\xb5\x8b\x75\xc6\xa0\xbe\x3b\x61\x58\x1f\xe3\x60\x40\xa2\x34\xd6\x17\x8b\xab\x96\x6d\x69\xc1\x0e\x4b\x30\x83\x08\xe5\xcb\x13\xbf\xa2\x67\x28\x7a\x8a\x7e\xb5\xac\xcc\x41\x1b\xe0\x6a\xaa\x3e\x2b\x4a\x49\x3e\x1d\x2f\x5f\xcd\x16\x90\xc7\x95\x5b\x15\x3c\x96\xfb\xeb\x1a\x7a\x8c\x74\xa7\xa9\x4b\xe4\x6a\xa5\x67\x48\xe6\x8b\xd0\x01\xf3\xbf\x4e\x03\xdf\x6f\x21\x20\xa3\x60\x31\xd0\x6a\x9e\xa8\x56\xa9\xfe\xb0\x05\x64\xcd\x87\xab\x3b\x94\x5f\x28\x94\x1b\xa8\x1e\x6b\xe6\x3d\x15\x03\xab\x2d\x2d\x29\x86\x35\x65\xd7\x4b\x30\xa0\x1e\xb5\x50\xf3\x49\xf4\xcd\x4d\xf4\x6a\x3e\x3e\x1f\x2f\xc7\x9f\x18\xba\x98\x4d\x6e\xa6\xb3\xf3\x71\x32\x41\xb3\x4f\x6c\x8e\x7e\xdc\x1b\x90\xb5\x27\xe8\xfa\x3d\x45\xeb\xe8\xfa\x7d\x08\xff\x06\xf0\xaf\xcf\xc3\x8c\x1e\xa5\xb4\x68\x41\x5e\xdc\x1f\x78\x8f\xdc\xeb\xc8\x72\x64\xde\xc0\x9c\xc4\xb0\xa5\xb5\x8f\x9e\x4d\xaf\x56\x80\x17\x6b\x7c\xb2\xfb\x29\x13\x8c\xb5\x75\xe6\x74\xec\x67\xed\xb6\xbb\x29\x0b\xf0\x9f\x25\x3b\xbf\x98\xcd\x93\xf9\x4d\xe3\x25\x3a\xee\x02\xa7\x6a\x47\x64\xdc\xa5\xd4\xbe\x3a\xa3\xf7\xfe\x53\x6d\xcb\xfa\xf8\x6e\xed\xed\x78\xab\xed\xec\x78\x8d\x7d\x1d\xcf\xb6\xab\x73\xff\x4f\x09\xcc\x2e\x97\x17\x97\xcb\x43\x98\x5a\x37\x60\x11\x0c\xd2\x73\xb6\x18\xcf\x59\xae\x3c\x34\x90\x8e\x97\x8b\x32\x21\xb4\xa8\xdc\x98\x2d\x94\x95\x8f\xa6\x93\x52\x4d\x4a\x0e\xee\x64\xce\x9e\x20\x42\x7c\x07\x91\x20\x74\x90\x47\x7d\x07\x05\x98\xb4\x2b\xcb\x37\x0b\x9e\xf0\x32\xb5\xa8\xfd\x68\x41\x39\x69\x36\xbe\x5b\xa0\xb6\xae\x85\xed\x0e\xef\x17\xc0\x4a\x2d\xbc\x84\x58\xce\xbd\xcb\x6f\x6f\xdf\x19\xa2\xfd\x0a\xa6\xc6\xff\x00\x8f\x30\xb9\x29\xbb\xaa\xcc\x0e\x36\xe1\xfa\x52\x09\x00\x27\xd5\x6b\xbd\xd0\x03\x84\xae\x8b\x1e\x23\xde\xd1\x56\x2f\x25\xa8\x92\xe0\xa3\x17\x8f\x7c\xad\x1d\x3d\xcd\xc2\x9c\x46\x68\xda\xc5\xb3\xb2\x11\x87\xc9\x14\xd6\x7e\x5a\x4d\xdb\x44\x44\xb7\x86\x96\x2e\x66\xf3\xb4\x5f\xfe\x2d\xf4\x5f\x92\x49\xf0\x05\x19\xa3\xe6\xa6\x18\x97\xb5\x71\xd9\xfc\x05\x81\x37\xe8\xdb\xe0\x3c\xd6\xdb\x92\x59\x18\x9f\xa0\xe6\xe4\xad\xf9\x04\x49\x23\x91\x20\xb9\x4b\x06\x41\xd2\x48\x1d\x48\xee\x9e\x33\x50\x32\x8c\xfb\x38\xc6\x4d\x96\xf1\x9d\x78\xc6\x4d\xa6\xf1\x6d\xb8\xd6\xea\x41\x18\x57\xb5\x34\x32\x9e\x2e\x67\xc2\x9a\xf5\x9a\x9e\x24\xb0\x98\x57\xba\xb3\x46\x14\x1c\x62\x03\xde\x9b\x7d\xbf\x05\x72\x31\xc1\x4c\x66\x57\x48\xc2\xf4\xef\x46\x1c\xf3\x0e\x76\x61\xf0\x01\x31\x50\x06\x3f\x10\x1f\xc5\xa0\x17\x3e\x9b\x5d\xe0\x74\xc4\x96\x49\xb7\xe4\x16\xb3\x06\x05\xd9\x8b\x31\x9f\x82\x4c\x2e\xcf\xa7\xd0\x38\x8d\x5b\x95\x12\x2c\x87\xd9\x0e\xaa\x47\xd2\x5a\xe0\x5b\xce\x49\x54\x1a\x0d\x2d\xd5\x33\x14\x03\x21\xfe\x57\x0e\x3d\x2b\xed\xd9\x60\x0f\x15\xd8\xc9\xec\xca\x38\x2e\x35\x4a\xeb\x54\x3b\xce\xd1\xb5\xe4\x94\x6b\xe1\xf4\xed\xb5\x89\xf7\xd3\x6b\x61\x6b\x5b\xd0\x02\x33\x10\x18\xdb\x16\xb0\xbe\xda\xe9\x9b\xbb\x99\x81\x25\xac\xd6\x2d\xf2\xa1\x49\x03\xae\x17\x1f\xa6\x87\xb6\xcd\xf2\xd3\x6b\x5c\x83\xe3\x55\xc0\x85\x7d\x9d\x5e\x63\x9b\x1e\x25\xec\x61\x05\x0b\x7a\xb4\x9a\xf7\xe2\x72\x0e\x1e\x25\x9e\x13\xe1\xa6\xde\x6f\xe5\xa7\xd7\xbe\x8c\x05\x68\x30\x90\xbc\x55\x57\x83\x25\x7d\x79\x3f\xd8\x34\xbd\x01\x6c\x87\x15\x36\x11\x35\x04\xb6\xc3\x16\xb6\x17\xfd\xd8\xfe\x50\xa7\x6a\x84\x42\x8b\x7d\xa2\x76\x48\x34\x98\x29\xba\xd5\x6c\xef\x78\x34\x43\xaf\xc6\x16\xcb\xe6\x24\xcb\x37\x1f\xf1\x53\xe5\xab\x18\xca\x55\xdf\xbf\xd8\xe4\x1b\x92\xab\xd0\xda\xcc\x98\x03\x09\x0b\xea\x0b\x48\x25\xf4\x61\x0d\x6d\x0e\x49\xd0\x59\x8c\x66\x47\x62\x94\xb2\xd5\x58\x0f\x53\xf9\x32\x36\xf6\x78\x06\x03\x3d\x4b\x88\xe7\x13\xe8\x9a\x44\xef\xc2\x83\xe2\x2b\x83\xb2\xd1\xcf\x9e\xd5\x4c\x82\x69\x97\xed\x83\xa7\x34\x3d\x82\x1e\x2b\xe5\x26\x43\x47\x4d\xd7\xa9\x70\x68\x91\xbf\xb8\x25\xf2\xe6\x9a\x47\xdd\xdc\x95\x56\x3c\xda\x4d\x96\x5c\x29\x68\x60\xb5\xa3\xcb\x5c\xe8\xdf\xb9\xe5\x2f\x7a\x68\x1c\xde\x92\x86\xad\x6f\x9b\x27\xd3\xc5\xc5\x6c\x61\xb5\x12\x08\xbf\xaf\xc6\x87\xc2\x31\x4e\xdf\x2a\x0b\x8a\xb5\x1d\x1a\xfb\x3c\x51\x71\x95\x8e\x4f\x42\xf6\xf5\x7e\xc6\xf8\x71\x31\x46\xc9\x12\xba\x40\x88\x97\xfa\x31\xe1\xa9\x0b\x6d\xd0\x26\x6d\xad\x26\x47\x6e\x15\x00\xb4\x70\xa7\x6e\xd9\x1c\x01\x6d\x72\xf9\x53\xb7\x6c\x8c\x84\x33\xf4\x5b\x9b\x9b\x68\x67\x64\x0b\x7e\xab\x77\xeb\x77\xec\x32\xfa\x43\x23\x52\xc2\x57\x19\x87\xab\x7e\xa5\xc7\xb8\x6f\x17\x52\xcb\x5a\xa7\x95\xc1\xad\x5e\xe5\x1a\x57\x95\x06\xca\x20\x64\x6d\x95\x0e\x50\x20\x20\x2d\x04\xa4\x83\xc0\x2a\x45\x3e\xf6\x98\xcf\xae\x2c\x42\x9c\x28\xde\x70\x5a\xbb\xc6\x7b\x34\xf8\x97\x64\x5f\xfc\xf0\xb0\x64\x06\xbe\xda\xe2\xc7\x44\xf1\x9a\xd3\xda\x85\x54\x8c\xf0\x43\x8d\x71\x32\xbb\xfa\xf2\x05\xda\x83\x99\x6e\x46\xd2\xd1\xb7\xd1\xd3\x1a\xcb\x90\xbc\x7f\x6b\x2d\x66\x42\x79\xef\xa4\xad\x81\xc5\xe4\x88\x8d\xf1\x4a\xb3\x06\x77\x49\xcb\x66\xc7\xbf\xd7\xb1\x28\xcd\x22\xcd\xbd\x9f\x8a\xea\xc0\x57\x2b\x3e\xbc\x5e\x77\x19\xe8\x7b\x58\xbc\xea\xae\x03\xdd\xf5\x2c\x15\xbe\xcb\x51\x2a\x38\x24\x95\xb1\xf1\xa4\x79\xde\x09\xaf\xa1\xcd\x26\xff\x6b\xe8\xfb\xf6\x0f\x40\x1c\x36\x68\xaa\xd3\x5c\xff\x26\x87\xa0\xbe\x78\x0d\x4f\x5d\x66\x2c\x99\xd7\xae\x41\xa2\x4d\xad\xea\x55\x90\x72\x15\xb0\x8b\x73\x53\x7b\x98\xee\xe4\xbf\x2e\x19\xfb\x8d\x75\x91\x8e\x92\xc5\xa8\x34\xee\x95\xde\xa2\xef\x70\xf1\x25\x8b\x85\xfd\x6b\x42\xab\x0f\xe9\x4d\xc3\xf9\xdb\xaf\x21\xd6\xf4\xcc\xab\x72\xca\xd0\x50\x2e\xcc\xa9\x03\xce\x5b\xad\xcd\x29\xa8\xe4\xf2\x9c\x8a\xea\xae\xeb\x8a\xb5\x28\xec\x8d\x38\xec\x34\xe2\xf0\xae\x8d\x38\xec\x34\xe2\xf0\x76\x8d\xd0\xab\x4a\x98\xae\x74\xb2\xe5\x0c\xcd\xd9\x72\x3e\x66\x9f\x98\xe6\x00\x22\x92\x97\xbb\x45\x3c\xb8\xb8\x5c\x8c\x4a\x36\x74\x22\xd2\x40\xbe\xe8\x42\x7e\x79\x7a\x62\xcd\xed\xa1\x8a\xb4\xd3\x75\x61\xe3\x7d\xa2\x7b\x3a\x35\x69\x8e\x5f\xf2\x08\xa5\x26\x9c\x55\x97\x9d\x56\x88\x10\x2b\x6e\xe6\x94\x1f\xeb\xf3\x99\x56\xb1\x7f\x3b\xae\x79\xc7\xe3\x9a\xde\x6d\x0f\x6b\x7a\x7d\x47\x35\x3d\xcb\x41\x4d\xef\xdb\x31\xcd\xfb\x3e\xa6\xe9\xad\x78\x48\x53\xa3\x96\xc6\x11\x4d\x6f\x95\x03\x9a\x9e\xf9\x1a\x7e\x75\xf0\xf0\x09\xf5\x3f\xbf\x73\x28\xfe\x0f\x39\xae\xd9\x4e\xb0\x13\x60\xf2\x87\x9d\xe1\x2c\xd3\xed\x70\x9a\x7f\xae\x74\x3b\x77\x3a\x6d\x29\x8b\xeb\xd3\x9e\x25\xcc\xad\x12\xf2\x04\x98\x34\x8e\x85\x04\x98\x18\x8f\x99\xd0\x15\x13\xf2\x70\xc0\xc6\x51\x13\x2a\xb3\x5a\x04\x98\xdc\xdb\x15\x62\xb5\xf9\xc6\x9c\x3c\x9d\x43\x0e\xee\x75\x96\xa6\x69\x9c\x07\xb9\xa3\x24\xec\x59\x73\x74\x90\x21\x89\x13\x12\x93\x44\x4d\xe7\xb3\xa6\xc9\xdb\xa3\xa9\x1a\xe3\x20\x76\x71\x90\xa8\xd9\x7f\xf4\x44\x70\x40\x0a\x96\x89\x9c\x41\x65\x6e\xa0\x15\x89\x84\x91\xe7\x91\x30\x14\x69\x85\x64\xe6\x20\x3d\x11\xca\x52\xdf\x4f\x68\xa4\xe6\x15\x5a\x91\x48\x9e\xba\x19\x61\x6e\xae\xa6\x21\xd2\x13\xf1\xa3\x34\xf0\x29\xce\xd5\x24\x45\xad\xa1\xe9\x7d\x67\x29\xe2\xf6\x74\xc7\x2c\x45\x38\xfc\x96\xa6\xe8\x9e\xc6\x44\xf4\xd6\x69\x8a\x78\x95\xbe\x71\x91\x1a\x33\xba\x23\x23\xfa\x2d\x4d\xd1\xfd\x8f\x8d\xe8\xaa\x69\x8a\xb4\xca\x69\x8e\x8f\x68\x6f\x9a\x22\x8f\xda\xd3\x14\xf1\x6e\xfc\x09\x25\xba\xd1\x12\xf9\x0f\x19\x2d\xfd\x47\x5f\x6e\xb9\xdf\x8b\x2d\x5f\xe9\xca\xca\xdd\x07\x51\xa2\xa8\x6a\xae\x44\xf4\xa1\x3c\xc1\xab\x79\xeb\xa6\x79\xc8\x77\x23\xb9\xb8\x98\xdc\x0c\xe4\x8f\x0e\x4a\xe6\x67\x97\xe7\x6c\xba\x5c\xb4\xdf\xe4\x51\xaf\xcf\xd4\xfc\x40\x2a\xa5\x9a\x44\x8b\xbc\x7b\xed\x13\x9a\x90\x22\x86\x71\x45\x1e\x11\x9a\x30\x42\xd6\x9c\x2e\x5c\x84\xbd\xc8\xf7\x63\x48\x33\x48\x3c\x56\x84\x41\x96\xab\x43\x83\x4e\x85\x34\xc8\xdc\x22\xcd\x0a\x78\x00\x21\xf3\x73\x2f\x25\x85\x0e\x31\x8b\xd3\x20\x4f\x93\x00\x5e\xcf\xc6\x34\xce\xd3\x34\xb3\x22\xf6\xe2\x20\xcc\x48\x90\xc2\x70\xc6\xf3\x69\x1a\x78\x54\x87\x38\x88\x0b\x8c\x71\x01\x1c\xa7\xa1\x1b\xe4\x2e\x8e\xad\x88\x63\xe2\x15\x94\x24\xf0\xe4\x76\x52\xe0\xd8\x2f\xe2\x54\x87\x38\x49\x71\x16\xb0\x1c\x38\xce\x93\x30\xa7\x18\x53\x2b\xe2\x9c\xba\x51\x92\x08\x19\x27\x9e\xeb\xb9\xc4\xd7\xca\x18\x13\xea\x05\xa9\x78\x33\xc2\x0f\x22\x37\x2c\x52\x66\x45\x4c\x7c\x0f\xd3\x20\x85\xb7\x23\x7c\xc6\xfc\x94\xd0\x4c\x2b\x8a\xc0\xcd\xa2\x3c\x83\x07\xc4\xf3\xa0\x28\x52\x9f\x11\x2b\xe2\x88\xa4\x2c\xc8\x23\x10\x45\x41\xa2\x94\xc6\xa1\x56\x79\xd4\xcd\x59\x8a\xc5\xe3\x15\x5e\x8a\xc3\x38\x4c\xb1\x5d\xc6\x69\x9e\xb9\xa1\xc8\x50\x49\x82\x2c\xc2\xc4\x0b\x74\x88\x33\x1c\xa7\x05\x16\x0c\x64\x45\x18\x93\x30\xf6\xad\x88\x99\x1f\xa7\x61\x9c\x81\xec\x62\x56\x60\x3f\xc9\xb5\x32\x66\x45\xca\xfc\x88\xc2\x33\xe2\x1e\xf5\x0b\x12\x30\xcf\x8a\xd8\x2d\x32\x1c\xe7\x19\x54\xa0\x29\xcd\xf2\x20\xd5\x72\x4c\x7c\x37\x4b\x70\x96\xc1\x23\xed\x51\x92\xc5\x59\x18\xd8\x95\x97\xb3\x98\x64\x21\x38\x48\x10\x93\xd4\x25\x91\x16\xb1\x9f\x44\x3e\xf5\x13\x98\x23\x84\x2c\x09\x99\x4f\xed\x1c\x07\x59\xea\x26\x71\x0e\x9c\xa4\xb9\x8f\x8b\x34\xf7\xb5\x2e\x1d\x16\x31\xa5\x39\x20\xa6\x1e\xc6\x81\x97\xda\x39\x8e\xa9\xc7\x02\x1c\x10\x70\x69\x16\x86\x79\x91\xe8\x1d\x84\x7a\x38\x0b\x43\x18\xe1\x93\x3c\xf5\x3d\x82\x5d\x7b\xac\x70\x5d\x8f\x44\x19\x15\x6f\xbe\x17\x29\xc1\x9e\xd6\xdc\xd2\x22\x88\xa3\x22\x93\xf9\x4d\x59\xe1\x32\x66\xb7\x8a\x2c\x64\xae\x9b\x16\x60\xf8\x5e\x9e\x50\x5a\x64\x5a\xab\xc8\x83\x24\x8a\xb1\x0f\x88\x63\xcf\x4d\x92\x88\xd8\x45\xe1\x86\x59\x12\x7a\x81\x78\xde\xc5\x75\x3d\x4a\xf4\x0e\x82\x7d\x12\x93\x58\xcc\xbd\xdc\xc4\x65\x21\x8b\xec\xa2\x20\x51\x1a\xb9\x09\x85\xe0\xe2\x87\x39\x21\x45\xa1\x75\x69\xc2\x30\x17\x13\x88\x2c\xc8\x48\x98\xc5\x24\xb4\x22\xf6\x73\x92\x85\x79\x01\x56\x11\x24\x99\x4f\x12\x96\x6b\x63\x85\xe7\x51\x37\xc7\x20\xb2\x38\x8f\x83\xd4\xcb\x0b\x2b\xe2\x30\x70\x93\xc8\x0b\x7c\xe1\x20\x49\x11\x7a\x39\xd3\x9b\x5b\x98\xb8\x49\x0a\x71\xdb\xcb\xa2\x28\x25\x89\x3d\x6c\x52\x9c\x91\x2c\x26\x22\xba\x45\x2c\x4f\x18\x0b\x75\x88\x63\x12\x11\x92\x09\x91\x61\x9f\x12\x2f\xf0\x52\x2b\xe2\x84\xa4\x05\xa3\x89\x88\xb3\x59\x81\x5d\x2f\xd4\x3a\x48\x42\x71\x12\x86\x3e\x70\x9c\x66\x3e\xf1\x5c\xd7\x1e\xdd\x32\xe2\xa7\x34\x8d\x5c\x88\xb3\x6e\x41\xe3\x28\xc6\xda\xe8\x16\x85\x59\x80\x13\x90\xb1\x1b\x06\x7e\xca\x3c\xbb\x55\xe4\x38\x26\x8c\xe2\x18\x10\x87\xac\x08\x08\xd6\xf6\x79\x79\x18\xc7\x6e\x48\x40\x17\x41\x10\x06\x49\xdc\xe3\x79\x85\xef\x32\x2f\x10\xb2\x0b\xa2\x08\x13\x97\x24\x5a\x3b\x76\xc3\x24\x71\x45\xcb\x3c\x92\xa6\x39\x4e\xed\xca\xc3\x71\xe2\x67\x18\x43\xd8\x4c\x69\x4e\x72\x37\xd3\x72\x8c\x99\x17\x85\x99\x2b\xec\x18\xfb\x38\x49\x03\x7b\x74\x23\x91\x4f\xa3\xc8\x07\x3b\xce\x0b\xca\x58\x1a\xc7\x3a\xc4\x9e\x9f\xba\x69\x96\x42\xcb\x18\x8e\x53\x9f\xf6\x98\x9b\x17\xe3\xcc\xcd\x52\x50\x4a\x16\x64\x71\x90\x84\x9e\x36\x1e\xb3\x9c\x26\x89\x0f\x61\x93\x79\x3e\xa6\x49\x66\x37\xb7\x20\x8d\xb3\x2c\xf1\x0b\xd1\x33\x84\x1e\xf3\x22\x2d\xe2\x90\x12\x16\x16\x22\x58\xe5\x61\x4a\x52\x9a\xd8\x45\x11\xf9\xb4\xa0\x84\x81\x83\x04\x39\x2b\x52\xa2\x8f\x15\x11\x4d\x82\xd0\x13\x3d\x8d\xef\xe1\x88\x14\xa1\xdd\x2a\xa8\x9f\xd1\x88\x62\x31\x12\xc2\x85\x9b\xa4\x91\x36\x6c\xd2\x2c\x8b\x5c\x22\x94\x87\x93\xd0\xf7\x62\x66\x1f\xbb\xc5\x6e\xca\x8a\xa2\x48\xc4\x28\x32\xf4\x30\x23\x5a\xab\x48\xfc\xc0\x0d\x33\x06\x9e\x97\x33\x4a\xd2\x9c\xd9\xc7\x6e\x29\x2b\xe2\xc4\x2b\x44\xcf\x40\xb2\x30\x8a\xb1\x7e\x5c\x11\x46\x38\xa2\x85\xe8\xc2\xbc\x88\x04\x1e\xb1\x2b\x2f\x4b\x48\xe4\xb1\x0c\x64\xcc\x12\x12\x86\x38\xd6\xca\x38\xc7\x34\x4c\xa9\xe8\x9a\x08\x37\x24\xd2\x5c\x04\xec\x0e\x44\x92\x3c\x89\xf2\x1c\x1c\x24\xcb\x99\xcb\x52\xac\x0d\x9b\x45\x10\xe5\x7e\x11\x15\xb2\xd3\x65\x39\x8e\xec\x76\xec\x86\x85\x1b\x46\x62\xbc\x10\x11\x1c\x85\x45\xaa\x75\x69\x37\x09\xbd\x28\xcf\xc0\x41\x12\x92\xd1\x98\x26\xf6\x1e\x04\x63\xaf\x88\xa9\xeb\xcb\x85\xbb\xd8\xcd\x13\x2d\xc7\x38\x8d\xb0\x9b\x7a\x22\x1e\x7b\x38\xf3\x23\x6c\x97\x31\xa1\x79\x1a\x45\x45\x20\xac\xc2\xf5\xa3\x9c\x6a\xe3\xb1\x47\xb2\x24\x49\x23\xb0\x0a\xdf\xcd\x22\xe2\xc7\x76\x07\xf1\xb2\x98\xa5\xcc\x05\x51\xe0\x20\x8b\x53\x96\x6a\x95\xe7\x7b\x38\x0f\xa3\x0c\x5a\x16\x67\xd8\x75\x73\xdf\x6e\xc7\x7e\x96\x05\xb9\x2f\x06\xde\x59\xea\x31\x9f\xa4\xda\xae\x89\x0f\x57\x48\x1c\x43\xb0\x2a\xb2\x30\x88\x18\x0f\xaf\xb6\x58\x51\x64\x69\x58\x24\xa2\x93\x4c\xf2\xb0\x48\x98\x96\xe3\x30\xf3\x7d\x1c\x53\x40\xec\x27\x7e\x14\x50\x1c\xc9\x45\xd4\x77\x96\x6b\xab\xf5\xbc\xf0\xcd\x5d\x6f\xa8\x9a\x9e\x41\x7b\xd3\xb8\xa1\xfa\xe1\x6e\x37\x54\x03\x4c\x56\xdb\x3a\xd0\x6c\x47\xdc\x7f\xf6\xd1\xbb\x6e\x1d\x84\x89\x1b\xb3\x72\xc1\xdd\x4b\xb3\x2c\x76\x0d\x5b\x07\x69\x1a\x46\x09\x13\xdd\x2f\xf5\xb3\x24\x89\x9a\x43\x17\x0b\x11\x2f\x0b\x59\xe1\x45\x10\xc9\x0a\x16\xfb\x05\xe5\x91\x4c\x07\x99\x04\x7e\x51\x04\x1e\x78\x41\x50\xe0\xdc\x0b\x8b\x55\x57\xf5\x03\xec\xb2\x80\x88\xe0\x93\xe4\x2c\xa4\x24\x37\x6c\x1d\xc4\xa9\x1b\x84\x54\x18\x24\x49\x3d\x16\x66\xb8\x58\x91\x08\x2e\xa8\x97\xc7\xc2\xe6\x8b\xd4\xc7\x69\x1e\x1a\x5a\x12\xa4\xcc\xcd\x72\x31\x0c\xc2\x5e\xc4\x08\x8e\xe2\xdb\x6c\x1d\xdc\xf7\x3d\xd2\x55\x52\xc3\x02\x9c\x6b\xce\xfc\xba\x8f\xcd\xa9\x5f\xf7\x89\x39\xf7\xeb\xbe\x67\x4e\xfe\xba\xef\x9b\xb3\xbf\xee\x07\xe6\xf4\xaf\xfb\xa1\x39\xff\xeb\x7e\x64\x48\x00\x2b\x1a\x08\xe9\x61\xb5\xe7\xc0\x45\xf9\x44\x94\x77\x2f\x7b\x08\x19\x40\x75\xed\x15\x28\x51\x3e\x11\xe5\x86\xea\x04\xaa\x13\x63\x75\x32\x11\xe5\x86\xea\x1e\x54\xf7\x8c\xd5\xbd\x89\x28\x37\x54\xf7\xa1\xba\x6f\xac\xee\x4f\x44\xb9\xa1\x7a\x00\xd5\x03\x63\xf5\x60\x22\xca\x0d\xd5\x43\xa8\x1e\x1a\xab\x87\x13\x51\x6e\xa8\x1e\x41\xf5\xc8\x58\x3d\x9a\x88\x72\xcd\xb1\xbe\x15\x93\x1e\x0b\xcb\xd0\x21\x4f\x84\x51\xb4\x33\xee\xc1\x91\x5b\x61\x10\xba\x5a\xa9\xb0\x05\x5d\xad\x4c\xd8\x81\xae\x56\x26\x4c\x40\x57\x2b\x17\xea\xd7\xd5\xca\x85\xe6\x75\xb5\x98\xd0\xba\xae\x16\x13\x0a\xd7\xd5\x2a\x84\xb2\x75\xb5\x0a\xa1\x67\x5d\xad\x33\xa1\x63\x5d\xad\x33\xa1\x5e\x5d\xad\x91\x50\xad\xae\xd6\x48\x68\x75\xa2\xcb\x3b\x68\xbb\xba\xbb\xe2\x73\xa8\xc6\x7c\xda\x25\xfd\x37\x63\x91\x7b\xd8\x74\xdd\x7c\x08\x3d\x78\xb9\x7d\xd6\x05\x59\x21\x51\xb4\x20\xc3\x45\xf0\x66\x5c\xde\x36\x50\xb3\x46\xa3\xef\x11\x79\x07\x90\xfa\x5c\xae\x35\x8e\x89\xc0\x21\xef\x17\xb4\x71\xc0\xad\xf9\x3b\x65\xa0\xde\xdc\x44\x3f\x42\x36\x62\x33\xf1\x32\xa5\xf3\xad\x32\x54\x5f\x8f\xaa\x3c\xc7\xd7\x7d\x77\xf1\x24\xd8\x44\xa9\x61\xbf\x8f\x27\xa0\x46\x8d\x2c\xd8\x23\x91\xfc\x57\x4d\x5e\x3d\x81\x14\xc5\x65\x3a\xe0\x06\x1c\xed\xc0\xc1\xa1\xd7\xf7\xa8\x09\x16\xd9\x6e\x98\x0a\xc8\x49\x83\x8b\x49\x97\x8b\x91\x8e\x8b\x49\x97\x8b\x91\xca\x45\x13\x2e\xea\xc2\x19\x32\x19\xab\x2a\x35\xe4\xcc\xf9\xa4\xe4\xde\xbe\x4d\xf2\xed\x5a\xa3\x78\x35\x8d\xe2\x5a\xa3\x78\x25\x8d\xe2\x51\x23\xc1\xf7\xa8\xcc\xc2\xad\x24\xe6\x9e\xc8\x5c\xdd\x8a\x90\xb0\x94\x70\x13\x0c\xce\x31\xc7\x8a\x4a\x4b\x7c\x61\xaf\x4a\xf1\xa4\xc1\xc6\x44\xc3\xc6\x48\xc7\xc6\xa4\xc3\xc6\xa8\xc1\x46\x13\x61\xd8\xc1\x47\x42\xab\x4e\x6f\x95\x3b\xdc\x16\x4a\xa2\x5a\xed\x91\x4d\xed\x6f\xc6\x91\x88\x5c\xda\x8e\xb9\x05\x39\x91\x90\x96\x3b\xe1\x02\x12\x87\x4a\x20\x31\xbe\x0a\x5d\xc2\x0a\x06\xb0\x76\x64\xd1\x86\x9d\x94\xb0\xbd\x3c\xd4\x91\x66\xc2\x85\x36\x8e\xda\x3d\x57\x13\xbc\x0e\x65\x23\x01\x3e\x82\x9c\x6d\x1c\x0f\xd7\xa4\xbb\x86\x9e\x95\xde\x59\xfd\xf2\x7f\x23\x8c\x9e\xa0\xce\xb1\xe9\x2e\x1f\xfc\xdf\x52\x83\xfd\x6c\xf0\x7f\xd7\x2b\x6f\x31\x70\x81\xef\xca\x05\x48\x71\x45\x1e\x84\x76\xba\x1c\x08\x4d\x74\xe8\xeb\x91\xd6\xbd\xe2\x9b\xb1\x49\xbd\x75\xaf\xf7\x66\xac\x63\xce\x9c\x13\x5f\x26\xc5\x1f\xa1\x87\xa8\x18\xc9\xb4\xf8\xfc\x8b\xfe\x1e\x9f\xa8\x23\x7c\x9f\x4d\x78\x9d\x89\xac\xc3\xbf\x9c\x4d\x2c\xc9\xf4\x47\x90\x4d\x9f\xa3\x4e\x05\x1d\xf8\x9c\x89\xcf\xa9\xfc\x6c\xae\x3e\x81\xea\x9c\x4a\x2a\x48\xc2\xe7\x4c\x7c\x4e\xe5\x67\x7b\x4a\xfe\x91\xc8\xc9\x2f\x03\x8e\xe8\x57\x92\x89\x48\x2f\xbd\x26\x92\x1f\x24\xa3\x32\x63\xbf\x2c\x6c\xe4\xec\x1f\x29\xaf\x48\x24\x65\xaf\x63\xcd\xcc\x0f\xb3\xa9\x41\x85\x48\xd2\x1c\x35\x69\x4e\x1a\x34\x47\x4d\x9a\x13\x95\xe6\x68\x15\x9a\x58\xb4\x93\xc9\xae\x41\xdc\x37\x61\xa2\x53\xa0\x65\xda\xff\x51\xf9\x68\x85\x52\xe8\xd7\x85\x9c\xa6\x57\x96\x89\x34\xdc\x76\x9a\xa2\x9d\x12\xb8\xa4\x39\x6a\xd2\x9c\x34\x68\x8e\x9a\x34\x27\x2a\xcd\x51\x4d\x53\x3b\xea\xec\x7f\x87\x40\xcf\xeb\x4f\x90\x7d\xe9\x27\xf3\x65\xaa\x9f\xc0\x79\x7f\x1a\xdb\xae\x51\xfd\x04\xc1\xe0\xa7\xb1\x29\x84\x7e\x82\x87\x12\x38\xcc\x68\x52\xb1\xa8\x73\x4a\x01\xc8\x09\x8e\xea\xb6\x88\x70\xb1\xc4\x6a\xb8\x18\xad\x12\xab\x6a\xb2\xfc\x5f\x2e\x11\x3b\xcd\x25\x90\xca\x46\x3a\x82\xd9\x9d\x28\xfe\xa4\x0d\x3d\x6d\x8a\x3f\x8d\x75\x14\x7f\x1a\xdf\x85\xa2\x3e\xd8\xb5\x29\xbe\xd1\x52\x7c\xa3\xa3\xa8\xb7\xb6\xf6\xe3\x15\x06\x92\xb0\x78\x51\xba\x3d\x00\x1a\xb9\x83\x75\x90\x32\x2a\xad\x8b\xf0\x08\x2c\x12\x95\xc5\x12\xd7\x6a\x6c\xbe\xbe\xc8\x93\x25\x43\x57\xf6\x99\x3e\xff\x83\xf9\xa6\xd6\xbe\x61\xba\x79\xa6\x63\x1b\x3a\xa0\x42\x57\x07\x26\xb6\x85\xae\x0e\xcc\xa1\x99\xae\x0e\x4c\xa1\x99\xae\x0e\x4c\xc9\x07\xf9\x04\x9e\xef\x98\x98\xde\xef\x80\x39\xfd\x20\x1f\x01\x94\x10\x1d\x53\x25\x97\x77\x84\x66\x7c\x09\x84\x63\xca\x74\x3c\xc2\x92\x42\xa6\xe3\x11\x56\x2f\x52\x5d\x1d\x58\xbc\x48\x75\x75\x60\x9d\x24\xd1\xd5\x81\x65\x92\xce\x6b\x06\xfc\x0f\x96\x5d\x06\xc2\xd4\x97\xc4\x28\x0c\x58\xb8\x19\x08\x39\x70\xcb\x5a\xaf\x7b\x1c\x21\x8d\x65\x77\xb0\x73\xaf\x8f\x95\x28\x6b\x86\x30\x32\xd8\x07\xfb\x4f\x3a\xa3\x81\xfd\x2a\x19\xc5\x60\x1f\xec\x3e\x11\xcc\xee\xbb\x2a\xb7\x49\x97\xd9\x36\x1e\x65\x95\x51\x10\x04\x11\xa5\x5d\x82\xb8\x26\x08\xe2\x49\x25\xc1\x46\x24\x48\xfb\x09\x2a\xeb\x92\x82\x20\x81\x10\xdb\x25\x48\x6a\x82\x64\x54\xf6\x4b\x03\x80\x57\xc2\x6b\x3f\x41\x65\x25\x53\x10\xf4\x38\xc1\xbc\x4b\xd0\xab\x09\x7a\x9c\x56\x2e\x09\x7a\x3d\xee\xd0\xc6\xa3\xac\x7d\x0a\x82\x3e\x27\xc8\xba\x04\xfd\x9a\xa0\xcf\x69\x31\x49\xd0\x57\x09\xb2\x7e\x82\xca\x6a\xa9\x20\x18\x70\x82\x45\x97\x60\x50\x13\x0c\x38\xad\x42\x12\x0c\x54\x82\x45\x3f\x41\x65\x7d\x55\x10\x0c\x61\x52\xd1\x25\x18\xd6\x04\x61\xf4\x7e\x26\x09\x86\x8d\x49\x44\x3f\x41\x65\x45\x56\x10\x8c\x38\xc1\x51\x97\x60\x54\x13\x84\x69\x93\xec\x93\x39\xbc\x6d\x10\xf0\xc5\x77\x2f\xbe\x3d\x8a\x73\x7f\x8f\xe2\x60\x3e\xb8\x97\x2f\x9b\x71\x64\x90\x87\xc5\x73\xef\xfb\x59\x1c\x3d\x19\xfc\x6f\xf9\x30\xce\xce\x6c\xfa\x89\xcd\x45\x96\x5f\xb4\x9c\x21\x8f\x3c\x4e\xc7\x4b\x3e\x40\xc9\x51\x02\xe7\xb3\x53\x56\xcc\xe6\x4c\x1e\xa7\xee\x68\x4d\xb9\x6b\xa2\xec\xdd\x2d\x67\x3f\x7b\xe4\x3e\x1e\xe2\xf9\xb3\x3e\xc1\xa3\xf2\x59\xe5\x07\x79\x82\xb0\x4b\xfc\x4d\x4f\xe6\x29\xfe\x76\xbb\xc9\x78\x55\x29\xc0\xe4\xb6\xb7\x9b\x78\x95\x9e\xdb\x4d\x8d\x63\x0d\x9d\xdb\x4d\x01\x26\xdf\x6e\x37\xdd\xf7\xed\x26\xae\x95\xd5\x6e\x37\x69\x95\xd3\xb8\xdd\x24\x14\x64\xbd\xdd\x24\xee\xd1\xae\x78\xfb\xdb\xfb\x53\xdf\x67\x62\xd3\xec\x71\x9a\x2c\x58\xe8\xb7\x0a\xce\xf3\xa0\x0d\xfa\xe9\xe2\x63\x5e\xb4\x7e\xcc\xc6\x17\x23\x36\xff\x43\xae\x44\x29\xac\xc2\x77\xce\xa1\x28\x10\x8c\xc1\x67\x95\x9f\xff\x84\xab\x53\x6f\x56\x7a\x13\x08\x0e\xcf\xec\x40\xd3\x2b\x38\xe5\xb7\xfe\xab\x50\x9b\x9b\xe8\x15\x9b\x9f\x43\x2f\xba\x33\x9a\x8d\x33\x86\x70\xfb\xd9\x14\x5e\xfd\xd5\x0e\x6e\xde\x5d\x0a\x22\x07\xf9\xb1\x83\x7c\xec\x20\xcf\x73\x10\x09\x1c\x84\x23\x07\xc5\x0e\x42\x58\x39\x6a\x14\x50\x07\x05\xae\x83\x7c\xe2\x20\xcf\x77\x10\x09\x1d\x84\xa9\x83\xb0\xeb\x20\xa2\xc2\xc5\x0e\x0a\xb0\x83\x7c\xcf\x41\x5e\xe0\x20\x12\x39\x08\xc7\x0e\xc2\x1c\xbf\x02\x17\xba\x0e\x0a\x88\x83\x7c\xdf\x41\x5e\xe8\xa0\xd0\x73\x50\x10\x38\xc8\x8f\x1c\xe4\xc5\x0a\xa0\x87\x1d\x44\x3c\x07\xe1\xc0\x41\x91\x83\x50\x48\x1c\x14\xf8\x0e\xf2\xe1\x69\x01\x15\x90\x73\x42\x1c\x84\x7d\x07\x85\x1c\x10\x3b\x28\xf0\x1c\xe4\x07\x0e\xf2\x22\x05\x90\xc4\x0e\x22\xd8\x41\x98\x93\x74\x10\x22\xd4\x41\xc4\x75\x10\xe6\xec\x08\xb0\x77\x16\xb9\x12\xbd\x5c\x49\x53\xae\x9c\x0b\x2e\x47\xde\x6e\xc2\x3f\x3b\x08\x05\x2a\xb7\x92\x30\x6f\x16\xe7\x16\x18\x72\x55\x2e\x3d\x29\x38\xce\x15\x07\x08\x1d\xa4\x36\x17\x87\x42\x1e\x5c\xc0\xc0\xbd\xd7\x54\x04\x57\x28\x17\x30\x97\x9f\x17\x09\xc1\x06\x41\x4b\x5e\xbe\x2b\xb5\x15\x08\xed\xfb\x2a\x05\xae\x1a\x6e\x1a\x1e\x57\x69\x28\xd4\x1e\xa8\x3a\xe4\x2a\xe0\xf6\xc0\xed\x82\xeb\x90\x0b\xb6\x1c\xd5\x34\x5e\x84\xba\x3c\xbf\x9c\x24\xf0\x4c\x0a\x1f\x54\x2e\x46\xe3\xa2\xf3\xc2\x13\x78\xc1\xc1\xe9\x87\x93\xfd\x83\x3d\xf1\xa6\x14\x97\x18\x71\x10\x34\x9e\x4b\x88\x72\x8b\x94\x6a\x02\xe9\x4a\x4b\xc5\x52\x9d\x44\x5a\x2f\x08\x84\xaa\xf4\x4f\x9e\x1f\xfd\xcc\x16\x28\x99\xe6\x32\x37\xfa\x05\xa8\x54\xbc\xa7\xa1\xe1\x83\xc3\x7f\x78\xd5\xd4\x67\x6b\x48\xe9\x5e\xbb\x4f\x60\x32\x42\x89\xeb\x3a\xed\xb2\x72\xae\x20\x40\x34\x00\xa4\x01\x40\x5d\x97\x74\x40\x3c\x05\xa4\x5b\xea\xab\xa5\x1a\x02\x41\x93\x00\xd1\x10\x08\x9b\x4c\xea\x40\xa2\x56\x3b\x34\x84\x68\x83\x91\x2e\x8a\xb8\x4d\xa5\x8b\x22\x51\x41\x74\x00\x69\x5b\x5a\x5d\x90\xac\x45\xa6\x03\x90\xb7\x9b\xd2\x05\x61\x0a\x48\x97\x42\xd1\xe4\xb2\x5b\x9d\xda\x6a\x63\xda\xab\x0f\x42\x7b\x08\x78\xb4\xc7\xaa\xfc\x36\x11\x8d\x5d\x50\xbb\xdd\x84\xb4\xd7\x30\x23\x6a\x33\x4c\x4a\x7b\xf5\x1d\xd3\x1e\x7d\x27\x6d\x26\x34\x26\xd1\x26\xd3\xe5\x24\xa3\xbd\x1a\xcf\x69\x8f\xd5\x30\x6a\xb7\xee\xa2\x4d\x43\xa3\x79\xa3\xba\x64\x94\xc0\x7a\x41\x12\xa5\xd4\xa0\x4c\xaf\x01\xa2\xa5\xee\x37\xb1\xe8\xda\x18\xa8\x20\x5a\x9b\x50\xf9\xd4\x94\x47\x4d\x36\x2c\xbe\x81\x2d\xe6\x1f\xb7\x39\x35\x06\x0a\x6c\xd1\x68\xda\x6c\x8c\xc6\x2a\x1a\x8d\x31\xc6\x09\x6c\xb1\x5f\xd6\x02\x31\x85\x0a\xac\x0f\x05\xb4\x57\x14\x98\xf6\x8a\x82\xd0\x5e\xd5\x7b\xd4\xae\x36\xbf\x85\xc2\x14\x2b\x6c\xe2\x0e\xa9\xcd\x84\x23\xda\xa3\x0c\x4a\x7b\x24\x19\xd3\x5e\xd3\x4a\xa8\x5d\xa1\x69\x5b\xde\x9a\xce\xa3\x4d\xa5\x0b\x92\x53\x9b\x4a\x19\xed\x71\xa1\xa2\xad\x51\xf5\x8d\x2a\xa7\x6f\x94\xe1\xbb\x2e\xf5\x5d\x6c\x8c\x20\x12\xc6\x38\xcc\xa8\x14\x68\x8a\x20\x25\x11\x57\x47\xc4\x6f\x12\xd1\xc2\x04\x4d\x3c\x5a\x66\xc2\x26\x1e\x2d\x4c\x54\xc3\x68\xa8\xa8\xc1\x56\x5b\x3d\x6e\x93\xd0\x20\x49\xda\xcd\x31\x0f\x38\x24\x21\x0d\x92\xac\x21\x58\x0d\x40\x5e\x03\x18\x03\x88\x60\x41\x53\xb9\x68\x6b\xc5\x38\xee\xb2\x0a\x13\xd3\x9e\x56\x10\x6a\x93\xb6\xd7\x26\xa1\xb3\x0d\xda\xd2\xbb\xce\x36\x68\xbf\xc0\x43\xda\x63\xa8\x11\xed\x37\x54\x4a\x7b\x94\x12\x53\x8b\x52\x12\x6a\xf7\xa5\xb4\xcd\x81\x39\x90\x58\x5d\x25\xa7\x3d\x46\xcc\xda\x32\x35\xc7\x13\xa3\x05\xa9\x13\x10\x4d\x29\x5e\xc1\xed\x31\x59\xc1\x99\xb0\xb7\x82\xe3\x63\x7f\x05\x7b\xc6\x81\xd5\xf5\x71\xd8\xe7\x92\x38\xea\x09\x86\xea\x10\x5c\x8f\x21\xee\x0b\x97\x38\xe9\xf3\x7b\x9c\xae\x10\x2d\x71\xd6\x17\xc8\x70\xbe\x42\xb0\xc4\x6c\x85\x50\x86\x8b\xb6\x86\xb4\xe6\xd2\x17\x2a\x30\xee\xf3\x50\x4c\x56\x70\x10\xec\xf5\x78\x19\xf6\x57\x09\x6c\xc1\x0a\x61\x07\x87\xd6\xe8\x86\xa3\x15\xc2\x12\xa6\x2b\xf8\x22\x8e\x57\xf0\x7a\x9c\xac\x10\x4d\x71\xda\x17\xc1\x70\x66\x0b\x61\x38\xef\x0b\x0b\x6c\x85\x30\x8a\x8b\x56\x84\xba\xcd\x50\x05\xbb\xbe\x21\x18\xe9\x59\x26\x0d\xa9\x60\xe3\x10\x45\xe0\xd6\x61\xf7\x95\x72\x57\x53\x1e\xb4\x94\xd3\x85\x08\x1b\x42\xd3\xd1\x88\x1a\x10\xfd\xdd\xb1\x79\x6c\x52\x53\x31\x8d\x4c\xca\x96\x9a\x46\x25\x35\x17\x5d\x3e\xb3\x96\x34\xbb\x10\x79\x43\x5a\xa6\xa1\x09\x60\x30\x0c\x4b\x64\x5d\xbd\x04\x6c\xcd\xc3\xb4\x8f\x7d\x42\xcd\x86\xe2\xd1\x3e\x43\xf1\x69\x9f\xa2\x03\x6a\x6f\x7c\x48\xed\xa6\x14\x29\xe5\xdd\x52\x4a\xcd\xa2\x8b\xa9\x4d\x74\x09\xed\x33\xaf\x94\xda\x9d\x20\xa3\x76\xd3\xc9\x69\x9f\x61\x30\xda\xe7\x04\x05\xed\x33\xf1\xc6\xb0\xc2\x60\x04\xb8\xc7\x5d\x31\xe9\xb1\x50\xec\xf5\x86\x0c\xec\x5b\x2d\x15\x07\xbd\x0e\x8f\xc3\xde\xa8\x81\x23\x5b\x24\xa6\xbd\x9e\x88\xe3\xde\x90\x81\x13\x8b\x37\xe2\xb4\x27\x5c\xe0\xac\x37\x6a\x61\x35\x1c\x68\x48\xb0\x9e\xd8\x8b\x8b\xde\x90\x24\x87\x16\xd6\x66\x62\xab\x5f\x61\xd2\x1f\x5a\x3c\x4b\xe4\xc0\x7e\x8f\x5b\xe3\xa0\x37\xb6\xe0\xd0\xea\xc0\x38\xea\x8d\x6d\x98\xf6\x04\x1f\x1c\xf7\x7a\x20\x4e\x7a\xc2\x00\x4e\x7b\x63\x20\xce\x7a\x43\x01\xce\x7b\xe3\x11\x66\x96\x60\x87\x8b\x66\x34\xba\xcd\xf8\x81\xba\x82\xa4\x3e\xb6\x94\xa3\x4f\xec\xfa\x86\xa1\x44\xc9\xb4\xa6\xdc\xab\x31\xf8\x7a\x43\xf4\xcd\x46\x14\x34\x25\xa2\x1f\x43\x54\x83\x63\x1d\xf9\xc8\x6d\x0c\xff\xcc\xfd\x67\xb9\xa3\xa2\x1f\x41\xd4\xba\xd5\x8f\x1f\x44\xb9\x7e\xec\x50\x8b\xcf\xb4\x83\x52\x8b\x47\x83\x23\x57\xbc\xd4\x30\x72\x28\xcd\x5b\x3f\x76\xa8\x15\x6c\x68\xbf\x55\xbf\x98\x9a\x9b\x47\x68\x1f\xf3\x1e\xed\x13\x80\x4f\xed\x2a\x0e\x68\x5f\x13\x42\x6a\xb4\x9f\x88\xf6\x19\x1f\xa5\x36\xf9\xc5\x4d\xe2\xa6\x41\x84\xc5\x3a\x52\x6a\xd3\x5e\x46\xfb\xac\x2f\xa7\x76\xfb\x65\xd4\xee\x7e\x05\xed\xf3\x10\xec\xf6\xb8\x08\xc6\x3d\x5e\x88\x49\xaf\x1b\x62\xcf\xd6\x53\x58\x2d\x1c\x07\xbd\x2e\x82\x43\xb7\x4f\x4f\x38\xea\x8d\x64\x98\xf6\x7a\x0b\x8e\x7b\xc3\x05\x4e\x7a\x03\x1e\x4e\x7b\x62\x26\xce\x7a\xe3\x06\xce\x7b\xc2\x12\x66\x96\xb8\x84\x0b\x6b\xd8\x10\xa3\x07\x7b\x1b\x70\xaf\x5f\x62\x62\x76\x4c\xec\xf5\xb8\x3d\xf6\x7b\x0c\x1f\x07\xbd\xbe\x83\xc3\xfe\xe8\x16\x59\xc2\x1b\xa6\xfd\xce\x13\x5b\xe3\x07\x4e\x7a\xe3\x1f\x4e\x7b\x83\x28\xce\xac\x41\x04\xe7\xbd\x51\x0a\xb3\x9e\x30\x85\x8b\x66\x1c\xb9\xdd\xe0\x41\x1b\x53\x4a\x7e\x4d\x3b\x24\x15\x37\xda\x21\xc3\x13\xe5\xb8\x86\x76\xc4\x20\x01\x60\x3d\x45\x3b\x6e\xa8\xc6\x7c\x9a\xf2\xb0\x44\x60\x02\x88\x6a\x06\x35\xa5\xaa\xce\x4d\x43\x86\x9a\x3f\xc3\x98\xa1\x6e\xa1\x86\x42\x5a\x33\xa8\x67\x21\x6b\x00\xe8\x3a\x0e\xa3\xef\x31\x55\x39\x1a\xd4\x45\x43\x38\xfa\x35\x07\x5b\x7d\x4c\x7b\x84\x4b\xa8\x6b\x32\x1c\x8f\xda\x0d\xc7\xa7\x36\xc3\x09\x68\x8f\x5d\x84\xb4\x47\x6a\x11\xed\x31\x3d\x4a\x7b\x54\x1b\x53\x93\xdc\x13\xda\xa3\xd3\x94\xda\xad\x36\xa3\x3d\x56\x93\xd3\x1e\xcd\x31\x6a\x37\xdc\x82\xda\xcc\x1e\xbb\x56\xb7\xc5\xd8\x35\xea\x15\x93\x3e\x9f\xc6\x5e\x9f\x4f\x62\xbf\xc7\xab\x71\xd0\xe7\x14\x38\xec\x8b\x1c\x38\xea\xf1\xed\xaa\xdf\x33\xaa\x11\xc7\x7d\x0e\x84\x93\x9e\xf8\x88\xd3\xbe\x08\x82\x33\x6b\x84\xc2\x79\x5f\x84\xc1\xcc\xdc\x39\x17\x3d\x11\x02\xc6\x07\x76\x5d\xe1\x1e\x4b\xc3\xa4\xc7\xd3\xb1\xd7\xe7\xcc\xd8\xef\x73\x56\x1c\xf4\x85\xaa\xd0\x1c\x8a\x70\xd4\x17\x2c\x30\xb5\xbb\x4b\xdc\xe7\xf0\x38\x31\x06\x0b\x9c\xf6\xf9\x32\xce\x7a\xc2\x05\xce\xad\xc1\x12\xb3\xbe\x50\x86\x8b\x56\xc0\xb9\xcd\xa8\x40\xb2\x4d\x75\x51\xa4\xc4\xa9\x1b\x17\x88\xba\x44\xdf\x66\xaf\x2e\x27\x3a\xdc\x7e\x2d\x11\x2d\xfe\x40\x6d\x8f\x6e\x54\x50\x95\x76\x71\x47\x0d\x83\x36\xf6\x8a\xda\xd1\x80\xc2\x54\x17\x71\x52\x92\xd5\xb2\x9c\x4a\x03\xd5\x8d\x00\x14\x59\x75\xcb\x73\x05\x6d\xb7\x94\x55\x6d\xed\x96\x15\x0d\x29\xeb\x5a\x6a\x55\x12\xa6\x76\x25\x11\x6a\x68\x91\x47\x6d\xda\xf1\xa9\xad\x3d\x01\xb5\x5b\x5d\x48\xed\x96\x11\x51\xb3\x3c\x28\xb5\xd9\x45\x4c\xcd\xf6\x9c\x50\xbb\xea\x53\x6a\xd7\x61\x46\x0d\x36\x95\x53\xbb\x8a\x18\xb5\xd9\x54\x41\xed\xa6\x8c\xdd\x1e\x3f\xc2\xb8\xc7\xf8\x30\xe9\xf1\x54\xec\x59\x0c\x10\xfb\x56\x3f\xc5\x41\x8f\x2b\xe2\xd0\xed\x89\x41\x91\xd5\xe7\xaa\x11\xac\x81\xf7\xd8\x18\xb5\x13\x93\xb7\xe2\xb4\x27\xb4\xe1\xcc\x12\x17\x71\xde\x13\x43\x30\xeb\xf1\x59\x5c\x58\x83\x1b\xef\xd1\x0d\x8c\x63\xab\x29\x61\x62\x75\x5a\xec\xf5\xf8\x25\xf6\x7b\x1c\x13\x07\x16\xcf\xc4\x61\x4f\xac\xc1\x51\x6f\xb0\xea\xf1\x24\x1c\xf7\xf8\x28\x4e\x2c\x01\x00\xa7\xd6\xa8\x85\x33\x6b\x68\xc1\xb9\xc9\xff\x31\xeb\x73\xe1\xa2\x19\x7a\x6e\xdf\x75\x6b\x6c\xa4\x64\xd5\x77\xb1\xa6\xeb\x96\x43\x0d\x4d\xa7\x2d\x91\xea\xaa\xf9\xd5\x20\x47\x57\x1a\x18\x9a\x1f\x0a\x94\x9a\x3e\xba\x1e\x32\x75\x4b\xa9\xd2\x00\x5d\x37\x5d\xb5\xbd\x5b\x35\x51\x8c\xbc\x5b\x9a\x2a\x8d\xd0\x4d\xd5\x95\x71\x9c\xa6\x9b\x16\x72\xeb\x62\x65\xb5\xdc\x74\x93\x74\x65\xe4\xdb\x6d\xa9\x4d\x0c\x98\xea\x85\x4a\xa8\x4d\xbf\x1e\xb5\xb5\xd1\xa7\x16\xc3\x09\xa8\x4d\x78\x21\xb5\xb5\x24\xa2\x26\xf1\x50\x6a\x31\xab\x98\xda\x54\x9d\x50\x9b\x46\x52\x6a\x31\x84\x8c\x9a\xcc\x3c\xa7\x36\x4b\x66\x54\x6f\xb1\x05\xb5\x28\x19\xbb\x56\x2d\x63\x6c\x75\x57\x62\xf5\x57\xec\x59\x7d\x05\xfb\x36\x77\xc0\x81\xd5\x95\x70\x68\x75\x08\x1c\xd9\x22\x82\xec\x6f\xb4\x45\xb1\x35\x5a\xe0\xc4\xe6\x31\x38\x35\x04\x0d\x9c\x99\x82\x6c\x6e\xf5\x5c\xcc\xac\x41\x01\x17\xc6\x88\x88\x5d\xab\xd6\xb1\xd5\x11\x31\xb1\x7b\xb7\x67\xb0\x34\xec\x5b\x1d\x0d\x07\x36\x17\xc6\xa1\xd1\x0f\x71\x64\x8d\x0c\x98\x5a\xbd\x1f\xc7\x56\x5f\xc4\x89\x21\x58\xe1\xd4\xea\x6e\x38\xb3\x45\x07\x9c\x1b\xbd\x18\x33\x6b\xe4\xc0\x85\x12\x1c\x6e\xd3\xa7\x52\xde\xc1\x13\x0d\xc2\x4a\x38\xdd\x78\xfc\xa4\xde\xdc\xe8\x86\x63\x51\xaf\x1b\x88\x25\x3e\x4d\x51\x20\xf0\x11\x2d\x1f\x61\x55\xa8\x0b\xc2\x92\x13\x7d\x3f\x43\x5d\x3d\xff\x71\xd5\x6e\x5d\x08\x16\x7c\xea\x8a\xd2\x0a\xa9\x86\xcf\xec\x89\xb8\xec\xd1\x0d\xbf\x7a\x3b\x61\x95\x10\x35\x75\x0a\xc9\x84\xa6\xa8\xdc\x54\x32\xb6\x5c\x14\x63\x9b\x4c\x25\x0c\xb1\xe9\x5f\xc2\x78\x36\x5d\xcb\xdf\x7d\x9b\xb0\x25\x4c\x60\x16\xab\x84\x08\x7b\xdb\x1c\x19\x4c\x4b\x16\x53\x9b\x44\x25\x4c\x6c\xd2\x92\x2c\x4f\xcc\x56\x2a\x21\x52\x9b\x3d\x4a\x98\x4c\xaf\x72\x59\x9a\xdb\xcc\x48\xc2\x30\x9b\x89\x4a\x98\xc2\xec\xa1\xe5\x88\x58\xeb\xd8\xd8\xd6\x02\x4c\x0c\x42\xc6\x9e\xc9\xe2\xb0\x6f\x63\x16\x07\x36\xb5\xe0\xd0\x26\x0c\x1c\x59\x9a\x68\x8a\xbf\xb1\x59\x85\x38\xb1\x59\x2a\x4e\xad\xf1\x30\xb3\x79\x14\xce\xcd\xf6\x8d\x99\xc9\xe8\x70\xd1\xef\x5d\xf5\xe4\xc6\x08\x81\xed\xb1\x00\x93\x7e\x83\xc3\x5e\x9f\xf7\x61\xdf\xea\x7d\x38\xe8\x0f\x02\xa5\xb2\xad\xcd\x8d\xfa\x83\x12\xa6\xfd\xc1\x0d\xc7\xfd\xd1\xa0\x34\x07\x9b\x97\x09\xa3\x30\x96\x66\x7d\x61\x4d\x18\x86\x85\x4f\xd6\x17\x71\x4a\x23\x01\x2a\x4a\xcf\x2e\x3e\xaa\x79\x0d\x5e\x24\x8b\x8f\x0b\xb4\x1c\x25\x4b\xb4\x60\x13\x96\x2d\x21\x1f\xd1\xc9\xf3\xa3\x9f\xd1\x78\x7a\x51\x3e\x13\x51\x65\x34\x78\xb1\x7d\xd2\x7a\xb8\xb8\xbe\x98\xe8\xa0\xfa\xe0\x3f\x3c\xa0\x28\xbf\xc0\x67\xf9\xc5\x51\x2b\xba\xf2\x57\x01\x20\xbe\x94\x9f\xf9\x17\x47\x69\x4f\x9b\x73\x25\xab\xd2\xee\xf0\x44\x24\xc6\x42\x22\xf1\x8b\xfd\x8d\x2a\x0e\x5d\x3d\x50\x25\xbe\x28\x59\x52\xee\xfa\x44\x95\x3d\xb5\xde\x47\x76\x53\xa5\x00\xfb\xc8\x6e\x34\xa9\xef\x3e\xb2\x9b\x32\xaf\xde\x47\x76\xa3\x4f\xab\xc7\x69\x08\x15\x05\x21\x4a\xc7\xcb\x05\x4a\xb2\x6c\x36\xcf\xc7\xd3\x33\xb4\x9c\xa1\x57\x3b\x58\x8b\xf7\xf9\x18\x52\x01\xbd\x6d\xe7\x40\xd6\xbd\x1d\x12\x84\xe6\xb7\x43\x6a\x74\xaf\x66\x1c\xe1\xab\x1d\xfc\x76\xfc\x0e\x3d\x46\x58\x93\xa3\x54\xd2\x15\xe9\xf9\x07\x65\xeb\xde\xd6\xf5\x65\x3a\x3e\xfe\x9f\x81\x87\xd1\x63\x05\x35\xe4\xe1\x5b\x43\x0f\x3b\x88\x35\x09\x4b\xb7\x17\x0b\x76\x9e\x4e\x18\xc2\x21\x5a\x5c\xa6\x1f\xd9\x8d\x46\xfc\x8b\xcb\xf4\x27\x76\xb3\xa8\x54\x50\x7f\x37\x0b\x65\x7a\x02\x40\x42\x34\xe5\x97\x67\x08\x87\xd5\x37\xf3\x13\x2b\x3b\x90\x71\x4a\xf2\xa3\x17\xe4\xa2\xc4\x2e\x79\x79\x2b\x91\xbe\x93\x4c\x69\xf1\xda\x9f\x6e\x49\xc7\xcb\x13\xc8\x8a\xb2\xa5\x24\x41\xa9\xf0\x9a\x50\x0a\x83\xf2\xa9\xd6\xa0\x48\xb7\x8e\xce\x6a\x88\x6f\xb6\x9a\x26\x9d\x62\x3e\x3b\x87\x00\x33\x61\xc5\x12\x11\x0a\x9e\xc1\x29\xeb\x2b\x0a\xe1\xbc\x1d\x8c\xd1\xa6\x78\x1b\xc2\x85\x04\x8e\xa5\x71\x0d\x06\xaf\x76\x88\xb4\xc1\x35\xb4\x5e\x49\x60\x0d\xfd\x0d\x11\xfa\x0e\x72\x3c\x82\x6d\x8d\xd1\xdf\xe0\x8d\x8b\x95\xd9\x9b\x8f\xcf\x46\xab\xf3\xe7\x43\xfa\xce\x9a\xc9\xb5\x06\x97\x84\x42\xb1\xe0\x15\xad\x23\xe2\x1b\x18\x5e\xd3\x70\xdc\x21\xab\xcb\xec\xcf\x1b\x30\x9e\x66\x0c\xb1\x24\x1b\x49\xb3\x43\xe3\x05\x4a\x2e\x2e\x26\x63\x96\x73\x5d\x26\x53\xc4\xae\x2f\x92\x69\xce\xf2\x32\x2f\x23\x84\x77\x47\x8b\x8d\x8b\x40\xa2\xc9\x92\x29\x4a\x19\x4a\xe7\xb3\x8f\x6c\x8a\xc6\xd3\xe5\x0c\x51\x91\x14\x78\x81\x16\x59\x32\x11\xe8\x05\xca\x85\x1e\xdb\xd5\x68\x9c\x8d\x50\x32\x99\xcc\xae\x16\x80\x9a\xe3\x5d\xce\x38\xda\xcb\x05\xcb\xd1\xd5\x78\x39\x9a\x5d\x2e\x05\x83\x8b\xf1\x6c\xda\xc5\x22\x05\x0d\xe9\x35\x07\xf5\x97\x67\xcf\xe4\xb3\x32\xf5\x4f\x3c\xa0\x78\x58\x27\xb9\x86\xe5\x62\x61\xb9\x91\xdd\x70\x25\x5a\x08\x62\xf5\x67\x88\x59\x83\xb1\x50\xe2\xf7\x88\x6b\xdf\xd3\xab\xca\xd4\x8e\x48\x6d\x47\xf4\x4e\x26\xf6\xfc\x5d\xfd\x09\x1e\x05\xe8\x3c\xb5\xa3\x89\x80\x3b\x22\xf1\x25\x1a\x4f\x3f\xb1\xf9\x82\x99\xa3\xe0\x78\xfa\xe9\xa4\x15\x08\x1b\x3f\xad\xd4\x41\x60\x4b\x07\x51\x63\x53\x25\xb6\x78\x8b\x03\x6e\xd0\x6d\xec\x9f\x1b\x0b\x0e\xf5\x17\x36\xcd\xe6\x37\x17\xcb\x5b\x3c\x05\x28\x33\xd6\xce\x76\xaa\x7a\x35\xb0\xd3\x0c\xf9\xc6\x14\xba\x39\xfb\x1a\x54\x6b\x89\xd8\x72\xf7\xee\xd8\x29\x3b\xa5\x20\x75\x83\x8e\x1f\xd9\x52\x1d\xa7\x35\x99\x9b\x00\x52\xe5\x69\xac\xb6\x0e\x04\xd8\xbc\x0d\x06\x2f\x67\x69\x46\x1f\x07\xd3\xf1\x72\x9c\x4c\xd4\xd4\x57\x4d\x18\x76\x9d\x8d\x92\xe9\x19\x3b\x3c\xae\xd3\xa2\x8a\xcc\x63\xee\xb5\x5b\x88\xff\xb5\x4d\x5a\x5f\x47\xbc\x4f\x0d\x33\xd6\xa2\x30\xd6\x39\x3e\x54\xeb\x10\xa0\xe3\xc9\xbf\xd5\xea\x50\xc1\x9b\x5b\x14\xfc\xff\x2b\xf2\x06\x75\x02\xf9\xa7\xcd\x4c\x6b\x7b\xaa\x4d\xa4\x0f\x03\x8f\x12\x1f\x85\x57\xc1\xe7\xfe\x67\xdb\x34\x3d\x91\x76\x3c\x01\xe8\x4c\xcf\x5e\x54\x86\xa1\xda\x89\x01\x76\xde\x84\x9d\x4b\x58\x2d\x93\x7b\x6c\xbc\x58\xb2\x49\x65\xc5\x7a\x8c\x05\x34\x7e\xb5\xa1\x05\xb5\x07\xe8\x82\x77\xb4\x22\xd5\xda\xdb\xf1\xbb\xb7\x83\x81\xe4\xf6\x7d\x1d\xae\xf9\x40\xb2\x9a\xba\xc0\x77\x48\xab\xad\x13\x8d\x26\x60\xb7\x1c\x69\x6e\x92\x54\xcb\x93\x26\x25\x1b\x45\x7f\x00\x7f\x3d\xcd\x67\x68\x71\x95\x5c\x88\xe1\xc7\x24\x59\x2c\x85\x31\x74\x43\xf8\xd2\xae\xb2\x16\xb3\x4d\x85\xd9\x1c\x7f\xa9\xb1\x61\xc8\x28\x7e\x5b\x57\xef\xb8\xc6\xbd\xb9\xe0\x5d\x5c\xfd\x2e\x21\xa5\x27\x74\x69\x66\x64\x4b\x34\xbb\x5c\x76\x22\x70\x15\x72\xed\x2a\x6b\x84\x5c\xb3\xce\x1a\x5d\xc6\x47\x76\x23\x52\x40\x87\xfe\xa6\x47\xd4\x92\xf1\x27\x43\x81\x92\x37\x3a\xd4\x66\x8d\xde\x44\x27\xdc\x02\xe5\x24\x60\x3e\x5b\x2c\xea\x61\x3a\xe4\x3c\x84\x01\x31\x4c\x4b\x45\x8d\xaa\xa3\xaa\x05\x37\x28\xfb\xab\xf3\x64\xf1\xb1\xe1\xb2\xa5\xed\x0e\x06\x0d\x13\xe5\x8e\x58\xf6\xae\xef\x1b\x4d\xe7\x4e\xcb\xb1\x28\x22\x68\x98\xec\x7b\xb0\xd9\xef\xb4\x86\xcf\xcb\xf8\x88\x4a\x60\x96\x50\xa5\xdf\x75\xd8\x3e\x3e\x5c\x9d\xed\xb9\x99\xed\x89\x9d\xed\x89\x85\xed\xf9\x0a\x6c\x5b\x93\x48\x2f\xca\x2c\xd2\x62\xf9\x63\xb5\x3c\xd2\x7d\x49\x98\x05\xae\x25\xbb\x5e\xaa\xa9\x98\x77\x87\x27\x1b\x72\x80\xd6\xc8\xc5\xec\xa0\xac\x38\xd3\x24\xd7\xbe\x98\x24\x9c\x89\xeb\x25\x6a\x63\x91\x03\xae\x41\x4d\x47\x87\xa8\xca\xec\xdc\x5d\xa8\x69\x26\xdd\xde\x1d\x9e\x68\x33\x6e\x9f\xce\xc7\x17\x13\xf6\xf8\x76\x4b\x44\xa2\x52\x63\xa1\x48\xfd\xe9\xcf\xb3\x5c\x24\x17\x22\x38\xdb\x63\xc8\x50\x9a\xb5\x9f\x07\x92\xa3\x58\xb6\xc0\x68\x8b\xc3\x6d\x08\xa9\x0e\x85\x8e\x67\xf3\x41\xfd\xce\xba\x7c\x38\xbe\x24\xbd\xb1\x98\x8c\x33\x36\x70\x1d\x44\xd6\x3a\x6f\x61\x54\x68\xc9\x1d\xd1\x12\x07\xf9\x16\xb4\xde\x1d\xd1\xfa\x0e\x0a\xd7\xcc\x0f\x69\xdc\x79\xee\xc1\x16\x78\x43\xad\xac\xd4\x30\x4a\x66\x43\x9d\x73\xac\x50\xc1\x5b\x81\xc2\xfd\xcc\x69\x38\xad\x5b\x32\x47\x6e\xdb\x7c\xbc\x02\x05\x7d\xaf\x87\x63\x72\x6f\xdd\xde\xbf\x49\x58\xad\xa2\xcb\x3d\x04\xd7\x1a\xd7\x2d\x43\xac\x29\xc4\x35\x03\x6d\x05\x65\xcd\x9f\x5f\x41\xb5\x52\xe8\x2b\x89\xd9\x9f\x04\xc4\x69\x65\xd5\x57\x92\xbb\x3f\x09\x7c\xa7\xce\xea\xfe\x24\x08\x1d\x99\xec\xfd\x49\x88\x3f\xbf\x73\xa8\xff\x45\x09\xf7\xff\xc8\x4c\xfb\x5f\x2d\x1f\xfe\x7f\x4f\x66\x7b\x78\xa9\x60\x3c\x65\xf9\xfd\xa6\xb8\x7f\x9e\x2c\x58\x9d\xb5\x3e\x59\x30\xa5\xec\x67\x8f\x58\x33\xe0\x77\x7d\xf9\x3a\xf4\xd1\x34\x39\x67\x8b\x0b\xd5\x4b\x37\x55\x36\x38\x08\x67\x43\xfc\xf7\x9f\x9f\x75\x68\xb6\x51\xe8\x57\x4f\xd8\xe8\xd0\xfc\x1c\xfa\x9c\x0f\x60\xea\x3a\xf4\x37\xe4\x17\xce\xbf\x66\x64\x50\xa3\x16\xe8\xe5\x72\xca\xf8\x37\xb6\x40\x09\x9a\xb2\xab\xc9\x0d\x12\xbe\x96\xeb\x08\xab\x01\x05\x35\x5e\xf3\x98\x5e\x9e\xa7\x6c\xfe\x19\xc1\xab\x52\xf0\xaa\x0a\xff\xe0\x11\x18\xce\x6f\x58\xab\x4c\x66\x57\x50\x83\xff\x57\x57\xa1\x59\xb9\x19\xdd\xba\x00\xa5\x5c\xae\x6b\xb9\x94\x11\xa1\x14\x4f\xd9\x31\x8b\xdd\x3f\x97\xb8\x1e\xcc\xca\x7c\x37\x70\x43\xb7\xb9\xde\x59\x4a\x1a\x42\xfc\x74\xdc\x18\x51\xf1\x16\x3a\x9c\x6b\x7d\x1f\x26\xdf\xd7\xd2\xbc\xea\x09\xc5\xbc\xb5\x5b\xa8\xf9\xfa\xb6\x3a\x33\x6f\x6b\xea\xf9\x78\x79\x35\x5e\x30\xf4\xf2\xe8\x74\x01\x18\xfa\x14\x53\x3e\x94\x22\x0d\xe4\x33\xda\xe6\xfa\xe5\x72\x79\x0c\x82\x91\x3d\x49\x52\x2c\xd9\x1c\x4d\xd9\x59\xb2\x1c\x4f\xcf\xee\x41\xf0\x80\x8a\x71\xc1\x4b\x15\x6c\x4c\x67\xcb\x81\x51\xaa\x9b\x9b\x68\x3a\xeb\x1d\xa9\xc2\x9b\x2c\x42\xa0\xff\xaa\xa4\xfb\x54\x0b\x26\x04\xfb\xaf\x52\xc8\x9a\x21\xa9\x94\x8c\x14\x4c\x69\x0d\xb5\x3a\x9f\x36\xb8\x6b\x8c\x00\x4c\x5a\xd9\x7e\xb9\xab\x68\x05\xb6\x13\xa0\xdf\xbe\x48\x16\xb0\xbd\xb0\x92\x0f\x55\x9a\x02\x1c\xdc\x25\x2a\x65\x2d\x67\x9c\x44\x89\xf7\x9e\x95\xbf\xfd\x72\xf7\x7e\x54\x2f\xf6\x76\x6a\xc5\x27\xd3\x7c\x90\x4c\x67\xcb\x11\x9b\x4b\x46\x6c\x66\x90\x4c\x73\xd5\x0c\x78\x0b\x7b\x4c\xa1\xf6\xb3\x87\x42\x20\x7d\x56\x51\x79\x9e\x84\xff\xc3\xec\xe3\xe8\xf8\x6b\x9b\xc7\xd1\xf1\x57\xb2\x8e\xa3\xe3\xfb\x31\x8e\xd9\xbc\x61\x1b\xb3\xf9\x2d\x4c\x63\x36\xbf\xb3\x65\xfc\x7e\x4b\xcb\xf8\xfd\x0f\xb6\x8c\x9f\xbf\xbe\x69\xfc\xfc\xd5\x6c\xe3\xe7\xfb\x32\x8e\xeb\x96\x75\x5c\xdf\xca\x3c\xae\xbf\xc0\x3e\xde\xdf\xd2\x3e\xde\xff\x41\xf6\x01\x9b\xf2\xaa\x65\x4c\xc5\xca\xa8\x9c\x10\x4e\x58\xb1\x5c\x7d\x54\x36\x05\x9b\x10\xdf\xd0\xac\xa8\x30\xc1\x13\x36\xf7\x65\x0c\x80\xec\x7e\xcc\x01\x50\x35\x0c\x02\x7e\x39\x1c\x90\xc0\x66\x07\x02\x48\x35\x85\xa9\xce\x0e\xf8\x14\x68\x8a\x9e\x21\x8f\x98\x76\xba\x14\x4b\x19\xd4\xa6\xf2\xec\x19\x9a\xc2\x16\x79\x65\x0c\xe2\xe8\x10\x41\x8f\xd1\x54\xfb\x58\xbd\xde\x84\x38\x9e\xae\xad\x7d\x46\xe5\xe4\xc9\xce\x90\x8a\x66\x30\x45\x8f\x35\x2f\x86\x76\x48\xb7\xb7\xba\x38\xb9\xff\x4e\xeb\x85\xa5\xfc\xff\x71\xe6\x7b\x3c\x30\x4f\x2e\x4a\xeb\x3d\xbe\x27\xeb\x15\x7a\x6f\x5a\xaa\x62\xbc\xa5\x3d\xaf\x60\xbc\x9d\x88\x09\xa8\xee\x60\xbf\x8a\x17\x54\x78\xfa\x0d\x58\x92\xff\xc3\x2d\xf8\x78\xb6\x4c\x96\xec\x6b\x07\xe0\x39\x50\xb9\x2f\x13\x06\x6c\xf7\x63\xc2\x82\x31\xd5\x84\xe7\xb3\xde\xf8\xcb\x41\x7a\xed\x57\xb6\x08\xec\x40\x46\xf5\xe9\x1a\x1f\x0e\xd6\xbf\x1c\x0f\x42\xbf\x63\x96\x5f\xaa\xb0\x7b\x8a\x39\x7f\x2e\x8d\xf5\x84\x1c\x0e\x71\x7b\x85\x1d\x77\x14\x76\x78\x17\x85\x6d\xe7\xf9\xd7\x1e\xf9\x26\x79\xfe\x95\x46\xbe\xe2\xc9\xef\xfb\x98\x33\xe7\xad\x39\x73\x7e\xab\x39\x73\xbe\xf2\x9c\xb9\xdd\x23\xac\x57\x03\x59\x38\x30\xaa\x1f\xfc\x66\xc9\x7c\x7e\xc3\xab\x95\x7d\x88\x78\x18\xbe\xd1\xad\xd4\xcf\xc3\xeb\x71\x74\x07\x52\xeb\xf5\x98\x1b\xad\x0b\x1a\x92\x87\x2f\x8d\xe8\xe2\x9b\x7e\x77\x65\x7b\x2a\x9f\x00\x9f\x15\xea\xda\xe6\x42\xf7\xc2\xf1\x7c\x76\xc1\xe6\xcb\x1b\xf4\x4f\xf9\xc4\x30\x00\x82\x79\x55\x28\x3a\xcb\x8a\xd2\x40\x16\x1b\x3a\x3c\x65\x58\xa9\xde\x44\x6f\x46\x97\xc5\xf8\x6c\x3a\x2e\xc6\x59\x32\x5d\xa2\x14\xca\xc7\x53\xc5\x37\x80\xa8\x65\xf5\xb7\x5e\x97\x2e\x99\x29\x7f\xb9\x87\x75\xe0\x2e\x07\x66\x77\x6c\x88\x6b\x70\x74\xc1\xcd\x32\x99\xac\x35\x64\xdf\x2b\x38\xa4\x0d\xc8\x95\xe4\x14\xb4\x2b\x09\x91\x35\xd5\xfc\x05\xbe\x7a\xa5\x8a\xba\xdd\x8a\xc6\x9e\x6f\xd3\x67\xbf\x10\xd9\xdb\x4e\x7d\xfe\x77\xdb\x65\x6d\xe7\xb6\x58\x30\xc5\x31\x4e\x70\x0a\x77\x6a\x32\x9c\x63\x86\x8b\xb5\x0e\x92\x77\xff\x83\x9a\xea\x20\xec\xae\xbc\x3d\x00\x46\xe7\x54\x66\xdb\x09\xcb\x57\xf2\xf0\x04\x84\xc5\xf2\x8b\xf8\xef\xef\xbf\x6b\x2e\x60\xf0\x71\x7f\xe5\x03\x7f\xd9\x42\xdd\x5d\x30\xf5\x4f\xf4\xcd\x25\xf8\x56\xc5\x46\xfb\x2c\xa0\x71\xd0\xde\x46\x20\x7c\x68\xc2\xa6\x67\xcb\x11\xfa\x1e\xd1\x15\x8f\x52\xb7\x03\xcd\xce\x6c\xfa\x89\xcd\xcb\xa9\xa1\x12\x86\x65\x7c\xe0\x9d\x76\x79\x3b\x60\xa5\xc0\x53\xf6\xda\x95\x76\x1b\x3b\x73\x9f\xd1\x69\x33\x88\x3e\x5a\xa0\x3c\x59\x26\x28\x59\xdc\x92\xce\xca\x2b\x59\xcd\x9d\xc2\x6b\x25\x40\x6f\x2c\x67\x3f\x7b\xc4\xbc\x15\x02\xc5\x5f\x70\x66\x47\xd2\x6a\x1a\x95\xe6\xe4\x4e\x09\x77\x28\x94\x59\x31\x59\xaa\x57\x77\x8a\x47\xa8\x4d\x83\x4b\x34\x77\xe5\xc3\xfb\x4d\xda\xf6\x9b\x5e\xf5\x16\x5e\x59\xeb\x6d\xe7\x08\x3f\xff\x2b\x79\xd8\xb8\xb8\x5c\x8c\x06\xe5\x40\x8a\x8f\x11\x74\xf3\x4a\x3d\x74\x6b\x2c\x81\x34\xe7\x64\xcb\xa1\x88\xa2\xe0\x32\x82\x94\x38\x9d\xa6\xdb\x18\x0f\x92\x74\xbc\x02\xd0\x70\x93\xcc\x66\x17\xd0\x49\x1a\xfa\x7e\xd4\x3b\x6c\xad\xcc\x9e\xa1\x6c\x32\x9b\xda\x66\x2a\xab\x9a\x34\xe0\x69\xdb\x32\xfc\x68\xb6\x65\x28\xb6\xda\xb2\x8a\x19\x46\x29\x82\xdd\xea\xe4\xab\xee\xa4\xeb\x0e\xc0\xff\x15\x0c\xfb\xaf\x42\x32\x5d\xa4\x65\x2c\x15\xf8\xba\x61\xb6\x3c\x35\x66\x26\x00\x77\x98\xca\x8d\x75\x31\x38\x31\x90\xa9\x5c\xe8\xaa\xe1\x3f\xbd\x6e\x70\xb5\x8a\x0f\x5c\x49\x93\x2f\xd1\xbf\x1d\xbf\xd3\x89\xdd\x6c\xaa\x00\xdc\xd8\x5f\xae\x86\xc7\xc6\x73\x33\xad\xd3\x32\xf2\x68\xcc\xe7\x77\x0e\x0d\x56\x39\xef\xb2\xf9\xfd\x5f\xd0\x68\xb9\xbc\x58\x3c\xd9\xdc\x3c\x5f\x8e\x16\x1b\x29\xdb\xbc\x5c\x16\xf4\xd7\x05\xfa\x44\x36\xf0\x06\x41\xe9\x0d\xfa\x7f\xce\x93\xe5\x68\x9c\x2c\xb8\xc5\xd4\x07\x64\xe0\x54\x88\x38\xec\xb1\xb9\x89\x76\xd9\x52\x5c\x87\x63\x8c\x8b\x7b\x9c\xa4\x13\xb6\x40\xff\x90\x94\xfe\xf1\xe0\x3b\x38\xc6\x3f\x67\x6c\x58\x9d\x7f\xe9\x9c\xa4\x41\x8f\x84\xf2\x1e\xa1\x87\x0f\xcb\x9f\x9f\x9a\xd1\xa3\x7f\x88\xe6\x28\xc8\x5f\xc0\x0f\x35\xee\x73\xf9\xbd\x89\x5a\xfe\xfa\xf0\xa1\xe6\x7c\xce\x56\x83\xc9\x0a\xd8\xca\xc6\x19\x9c\x9c\xf9\x87\x23\x4e\xe3\xbf\x9c\xe5\x6c\xe3\xd7\x05\x9a\xcd\xd1\x73\x71\x94\x66\x5c\x8c\x59\x8e\xb2\x59\xce\x1c\xc0\x92\x4c\x73\x74\xb9\x60\x68\xbc\xe4\xfd\xda\x3f\xb8\x1c\x95\x36\xc8\x73\x38\x55\x1b\xce\xe4\xf7\x66\x1b\xc4\xaf\x4f\xc5\x99\xa4\xba\xda\x46\x05\xbd\xa5\x22\xfb\xfd\x77\xe5\xdb\xc6\xd5\x78\x9a\xf3\xd9\x65\x03\x46\x1c\x1d\xe2\xbc\x20\xf5\x67\x38\xec\xf3\xe0\xbb\xcd\xef\x1f\xdf\xdb\xdf\xf7\x9b\x0f\x44\x6b\x17\xcb\xf9\x78\x7a\xb6\x37\x9f\x9d\xef\x8c\x92\xf9\xce\x2c\xe7\x9a\x3b\x81\x1f\x37\x0a\xe5\x57\x29\xfc\xd3\xe4\x23\x9b\x0a\x19\xb7\x4d\xf6\xe2\x72\x7a\xc3\xe5\xfb\xe0\xbb\x2a\x82\x5d\x66\x0b\x92\x33\xfe\xe3\x40\xd0\x11\x0d\x84\xad\x4d\x38\x7c\x5f\x76\x81\xf0\x53\x36\xbb\x9c\x2e\xd9\x5c\xae\x5c\xc2\x4f\x93\x32\x56\x88\xea\x75\xb0\x80\x52\xb8\xcf\x58\x7e\x61\xd7\xcb\x79\xc2\xbf\x5c\x8d\xc6\x13\x86\x06\x25\xb6\x67\x12\x89\x20\xfd\x1d\xd4\xa9\x11\x66\xb2\x79\xdb\xcb\xb2\xc2\xfa\x3a\x77\xf5\xef\x40\xa7\x02\xf8\x87\x2d\xe4\x5e\xef\x52\xd7\xe5\x3a\x17\x3f\x3d\x83\x9f\x9e\xef\xed\xf1\x9f\x0c\x94\xb8\xb8\x60\xba\xbe\xb8\x9c\xcf\x67\x67\xc9\x92\x39\x60\x75\xcb\x11\x9b\x33\xb8\xe7\x89\xa6\xec\x7a\x89\x38\x0b\x49\xb6\x64\x73\xa8\x04\xcd\x58\x85\x3f\x60\x70\x20\xc0\x1f\x22\xf7\x7a\x6f\xc7\x75\xd7\xb8\x85\xba\xd7\xbb\xf0\xf1\x9f\x3c\x38\x4f\x66\x57\x35\x7d\xa8\xf6\x9d\x90\xbc\xe8\xca\x07\xb2\x89\x1c\x81\xb7\xb7\xb7\x06\x57\x33\xdd\x35\xb4\x8e\x14\xcc\x50\xb0\x5e\x66\x1c\x92\xd4\xeb\x51\xb0\x6c\xea\xe5\xf4\x3c\x59\x66\x23\x96\xd7\xf4\x9e\xa2\xd9\x74\x72\x83\x92\x8b\x0b\x06\xed\x1e\x2f\xc0\x01\xd1\xe5\x74\xbc\x74\xf8\x44\x33\x4b\x16\x0c\x66\x9b\x5c\x10\x15\xa6\x0a\x86\x0b\x69\x59\x9e\x8b\xaa\xb0\xf2\xae\x3e\x51\xbe\x5e\x24\xe3\x79\xb7\x65\xd0\x2e\xc9\xeb\x77\x52\x74\x8f\x1f\x4b\xde\x1f\xb4\x1b\x60\xa8\xc9\x01\xf9\xff\x65\xbc\x17\x50\xa5\x37\xde\xc5\x19\xd8\x14\x9c\x01\x7a\xe1\xda\x17\x2a\x2b\x17\xe3\x96\xa6\x91\x8f\xa7\x39\xbb\x46\x5b\xe8\x31\xd6\x9a\x7d\xe5\x47\x8f\x1e\x29\xc6\xbf\xbe\x2e\xaa\x19\x8c\x1f\xe8\xbc\x05\x90\x77\x6d\x63\xe7\xa6\xb4\xc7\x35\x2e\x24\x23\x7e\x7d\xbc\x55\xaa\xff\xa9\x22\x2f\xb4\xbe\xa5\x89\x1f\x25\xa2\x1f\x7e\x40\xd8\x2d\x0d\x08\xfd\x2e\x7d\x48\xaa\xa4\xe4\x44\x18\x2b\xfa\x1d\x35\xec\xb0\x12\xfe\x0a\x84\x00\xa1\x49\x49\x95\xf0\xb3\x11\xcb\x3e\x9e\x64\xc9\x24\x99\xff\x9d\xd7\x1a\x70\x3d\xbc\x9a\x8d\xa7\xe2\x34\x35\x08\xa0\xfa\xa9\xe9\xf1\xf5\xcf\xc2\xeb\x6b\xe1\x2c\x47\xf3\xd9\x15\x1a\xce\xe7\xb3\xf9\x00\x5a\xf5\xe8\x90\x0f\x85\x6a\xd3\x7c\xbd\xfe\x08\xad\xd7\x08\x36\x96\x33\x11\x59\x07\x38\x5c\xdb\x58\xce\x5e\x5f\x5c\xb0\xf9\x4e\xb2\x60\x83\x35\xb4\x2e\x10\x70\x93\x9f\xce\x96\xdc\xc0\x81\x59\x21\x97\x47\xbc\xb0\x6c\xe8\xe7\xaf\xd0\x13\xd4\x72\x82\x51\x35\x1f\x89\xd7\xe2\x70\xc4\x36\x9b\xec\x9c\x84\x94\x35\xda\x18\xa8\x02\xfc\xa1\xac\x23\x34\x0a\x4b\x95\xd7\xd4\x5d\x6b\xeb\x45\x38\xc4\x4e\x59\x51\xa7\x16\x05\xed\x43\x69\x9c\x7b\x7b\x54\xc6\x3a\x19\xe6\xf0\xe3\xf4\x66\xc9\xd0\x82\xfd\xd7\x25\x9b\x66\x10\xe8\xcc\x8c\xd6\x34\x4a\xd3\x81\x8e\xf0\xe6\x3c\x9d\x4d\x2a\x47\x32\x51\xa6\x6e\x93\x32\xe9\x52\xae\x30\xf5\x0b\x29\x14\x02\xc2\x52\x40\x3b\x6e\xc5\x52\x75\xf0\x58\xc3\x04\x84\x61\x95\x09\xaf\xcb\x84\xc5\xe0\x9f\xde\x92\x49\x4c\x04\x97\xae\xe4\x72\xe8\x36\x50\xac\x6f\x19\xac\x26\x5c\xa1\x31\x43\xb7\xd3\x18\xff\x8b\x24\x8a\xa9\x64\x36\x12\xcc\xee\xad\xc8\x2c\x26\xb7\x6d\x54\x0d\xa9\xe3\xaa\xd9\xd0\xa6\x07\x54\xb6\x09\x18\xda\x2e\xc1\x87\xfe\xb2\x9f\x68\x0f\x9a\x2a\xa4\x7c\xe8\xde\x1d\x5c\x75\x46\x4d\x35\x7c\x6f\xa7\x52\x81\x96\x3f\x70\x25\x88\x68\xb5\x62\xe7\x52\xb7\x58\x25\xac\xf6\x32\x0a\xca\xf5\x2d\x8b\xeb\xb7\x22\x7a\x5d\xed\x6b\x0d\x84\x2b\xd9\xcf\x59\x92\xef\xcc\xa6\xcb\xf1\xf4\x12\x2e\xcf\x82\xf6\xeb\x50\xc4\x39\x39\x80\xb6\xff\xb0\x05\x6c\xed\xf0\x81\x85\xa6\x37\x78\x74\x30\xfd\x94\x4c\xc6\x39\x00\x09\x69\x3f\x92\xcd\xaa\xe4\xdd\xa4\x82\x04\x42\x58\x28\x78\x5b\xd1\x79\x27\xdd\x84\x57\xad\x7e\x5c\x5f\xe7\x83\xf1\x32\x42\xb5\xd0\x3c\x14\x61\x44\x0c\x04\x79\x94\xfc\xa7\x12\x0c\xb5\xd0\xde\x5e\xc5\xd8\xe6\x26\x3a\x28\xd0\x15\x43\x7c\xbc\x76\x79\x81\xf8\x48\xd5\x41\xe3\xe5\xff\xfe\xff\xff\x57\xd9\x2d\xa9\x28\x80\xe3\x07\x86\x96\x77\x00\x1f\x75\x82\xbf\xb0\xde\x13\xf0\x82\x41\x6d\xe5\x1c\x18\xab\x66\x48\xd4\x2f\x9e\xfa\xc5\xd7\x98\x6f\x57\x57\x5f\xa0\xaa\x26\xa6\xad\xae\xd6\xa5\x64\x8b\x64\x02\x97\x1f\x2a\x39\x1e\xb3\x24\x47\xc5\x78\xbe\x58\x96\x52\x82\x66\xdd\x5e\xcd\xdd\xde\x0d\x0d\xa6\xb3\xae\x78\x17\x6b\xa5\x4d\x08\x42\x0f\xa5\xfe\x65\x64\x55\x78\xad\xe4\x5b\xf2\xda\xed\xc3\x5a\x78\x86\xa5\x41\xed\x94\xa8\x40\x2d\x68\xcb\xe0\x30\x4f\xdb\xf1\x40\x45\x86\xc5\x34\x03\x72\xee\x54\xda\xd5\x0d\xc0\x2a\xeb\xad\xcd\x57\x89\x51\xcd\x01\xfc\x2d\x4c\xb0\x1c\xd6\x8b\xb6\x7b\x6d\xd9\x9e\x27\x37\x68\x3c\xcd\x26\x97\x30\x09\xe1\x93\x0b\x75\x4a\xa3\x93\xf2\x5e\x29\x9d\xe1\x2d\xa4\x03\xa6\x7c\x37\x01\xba\x72\x9e\x46\xe0\x6c\x92\xa0\xa5\x0a\xd4\x33\x09\xd4\x85\xc1\x8b\x10\x58\xdf\xf8\xe0\x6b\xca\xbc\xdb\xc3\xb7\x25\x4a\xa5\x44\xf7\xee\x57\xa2\x10\x32\xee\x28\xf4\x08\x84\xee\x5e\xb7\xc5\xee\x5e\xbb\x3b\x6b\xe8\x77\x90\xc8\x40\xf0\x20\x7e\xad\xf4\xe1\x1b\xf5\x01\x33\x2a\xcd\x1c\x03\xbb\xea\x14\x4c\xaf\x89\x52\x9e\x5a\x2d\xbc\x3e\xdd\x7b\x4c\x51\x0e\x2b\x65\x2c\xaf\x22\x6f\x19\x36\xe5\x0d\xac\xea\x3b\x04\x34\xe5\x3b\xc4\x9f\xa7\xad\x31\x89\x1c\x6b\xd4\xbd\xb1\xe0\xaf\xc2\xd7\x1c\x92\x28\x60\x65\x54\x03\x2a\x6a\x00\x54\x06\x25\x4a\x8c\xad\x57\x7f\x1a\xc3\x9d\x7a\x9d\x68\x79\x7e\xa1\x8c\x46\x06\xcb\xf3\x0b\xb4\xd5\xea\x4b\xd6\xd0\x5f\xb6\xb6\x44\x50\x6e\x8f\x4e\xe4\x26\xc6\xf2\xfc\xa2\x3d\xce\x50\x26\xe8\x35\xf4\xda\xd7\x5c\x7c\xe3\x62\x45\x5b\xc0\xe0\xa3\x4f\x6c\xbe\x18\xcf\xa6\x8f\x9e\xa0\x47\xb0\xe8\xfb\xc8\xe1\xbf\x0a\x7e\x1e\x3d\x51\x46\x85\xf0\xbb\x68\xae\xfc\x5d\x7c\x79\xf0\xdd\x67\xb9\x48\x77\x32\x3b\x67\x68\xfb\xc5\x2e\x4a\x2f\xc7\x93\x1c\xcd\x2e\x96\xe3\xf3\xf1\x6f\x6c\xbe\x70\xd0\x64\xfc\x91\xa1\xf9\xc6\xaf\x0b\x47\x4c\x89\x61\xa5\x7d\x71\xc1\xb2\x71\x31\xce\xb8\xf3\xe6\x63\x50\xf8\x45\xb2\x5c\xb2\xf9\x74\x01\xf8\xa0\xd2\x72\xc4\x50\x31\x9b\x4c\x66\x57\xe3\xe9\xd9\x13\xb1\xe6\xc9\xcd\xaf\x75\x2f\x12\x3d\x2a\x8d\xe6\x91\x58\xdc\x6d\x00\x6c\x24\xe7\x79\x6b\x15\xb5\xba\x22\xc9\xcb\x1e\x7c\x27\xd4\x25\x2f\x4d\x56\xcb\xdc\xcd\x0e\x8c\xb7\x19\x74\x07\xca\xa9\x67\x17\xad\x55\xe3\xbf\x28\xdf\x37\xa6\xb3\x9c\x9d\xde\x5c\xb0\x7a\x30\x57\xaf\x55\xcb\x89\xc7\x78\xaa\xae\x1b\x1f\x8f\xa7\x67\xb3\xff\xf7\x04\x7d\x72\x37\xe8\x86\x0b\xd3\xf3\xba\x86\x72\x97\xb4\x62\x46\x86\xc6\x12\x53\x32\xbf\x1a\x25\x93\x16\xa6\x68\xc3\x7d\x2c\x16\x62\xe6\xe5\xd9\x28\x71\x8b\x51\xfe\x36\x4a\x16\x47\x57\xd3\x57\xe5\x11\x98\x2d\x09\xb4\xd1\xfc\x1d\xc0\xab\x2d\x12\xc8\x1a\x27\x84\x52\x46\x8c\x26\xb8\xd8\x1f\xe2\xe5\x70\x91\x78\x8d\xcb\x46\x95\xd5\xdb\x8f\x22\x81\x21\x87\x80\xcf\x8d\xc5\xaf\x56\xbb\x8e\x47\xe3\xe9\x8c\xb7\x2a\x41\x57\x2c\x45\xf2\xa2\xaa\x5c\xb5\xde\x90\x06\x2d\x65\xf2\xf9\x81\xbc\xa2\x0a\xdb\x26\x9f\x9d\x7f\x7e\x7e\xe7\xd0\x70\x95\x2d\x91\xce\x8d\xdd\x9f\x5f\x1c\xee\x2f\x97\x17\xc7\xbc\xcb\x58\x2c\x2b\x6c\x7f\x4d\xc7\x67\xe2\x30\xcb\xc6\xaf\x8b\xbf\xae\x82\xf9\xd1\xe5\x82\xc1\x84\x2d\x5b\x3e\x7a\xfa\xa0\x4b\xe8\xf9\xf8\xec\x25\x20\x7c\xca\x1b\xfc\xeb\x62\xc4\x83\xf2\xf8\x6c\x3a\x9b\xb3\x27\x93\xf1\x94\x3d\xa8\x48\x5f\xb1\xd4\x5b\x89\x24\x57\xd2\x1b\x96\x8a\xbe\x49\x5c\x33\x7e\xb4\xb1\x39\x19\xa7\x9b\x1c\x05\x0f\xce\x0f\x36\x37\x51\x3e\x9b\x3e\x5a\xa2\xd9\x27\x36\x9f\x8f\x73\x56\xee\x38\x94\x1b\x1c\x0f\x94\x3b\xc8\x72\xeb\x80\x47\xb8\x47\xd5\x89\x06\xd8\x90\x68\x00\x6c\x08\x9a\x4d\x28\x6e\x21\xb0\x4f\xa6\x82\x00\x77\x4f\x1f\x7c\xd6\x88\x43\x94\xc8\x9d\xad\x92\xe5\xbf\x3e\x21\xe4\xf3\x3b\x2e\x06\xe7\xad\x10\xc3\xbb\xb5\x07\x9b\x9b\xff\x17\x5a\xcc\x2e\xe7\x19\x7b\x91\x5c\x5c\x8c\xa7\x67\xaf\x8f\x0f\xb7\x78\xe1\xe3\x09\x9c\x22\xfd\x75\xb1\x71\x9e\x5c\x3c\xd8\xdc\x7c\xf0\x7f\x02\x00\x00\xff\xff\x44\x0b\x36\xe7\xf4\x67\x06\x00") +var _web3Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x6b\x7b\xdb\x36\xd2\x38\x0e\xbf\xf7\xa7\x80\xf5\xfc\x9e\x48\x8a\x15\xc9\x87\x34\x6d\xe9\xba\x59\xc7\x49\x1a\xef\x36\x71\xae\xc4\xde\xee\xde\x5e\xdf\xb9\x68\x11\x92\xd8\x50\xa4\x6e\x92\xf2\x61\x63\x7d\xf7\xff\x85\xc1\x69\x70\x20\x45\xd9\x4e\xdb\xdd\xda\x2f\x12\x11\x18\x0c\x80\xc1\x60\x30\x18\x0c\x06\x39\xfd\xbf\x79\x9c\xd3\xbd\xce\x68\x9e\x0e\xcb\x38\x4b\x09\xed\x94\xbd\xb4\x97\x77\xbf\xa8\x94\xa2\x93\xf5\xe6\xdd\x2f\xf1\xa8\xb3\x9e\x9e\x66\x67\xfc\x57\x09\xbf\x2e\xc2\x9c\x84\x7b\xe5\xf5\x8c\x66\x23\x22\x71\xed\xb5\x64\xd1\xd6\xa3\x47\x22\x71\x97\x95\x99\x3f\x7a\x14\x76\x73\x5a\xce\xf3\x94\x84\x9d\xac\xb7\xbe\xd9\x65\xe9\xb1\x4c\x8b\x45\x1a\xc3\x3a\xda\x4b\xe9\x25\x79\x95\xe7\x59\xde\x69\x1d\x84\x69\x9a\x95\x64\x14\xa7\x11\x99\x66\xd1\x3c\xa1\xa4\xdd\xda\xc8\x36\x5a\xed\x56\x77\xb7\x9c\xe4\xd9\x25\x19\xf5\x87\x59\x44\xf7\x5a\x6f\x8f\x5e\x9e\xfc\xfc\xea\xd3\xbb\xa3\xe3\x4f\xaf\x8f\x4e\xde\xbd\x6c\xf5\x46\x0b\x86\x2f\xd9\x63\x6d\xdf\xfb\x42\xaf\x66\x59\x5e\x16\xc1\x97\xc5\x62\x97\xf5\xe1\x74\xf3\xac\x3f\x0c\x93\xa4\x93\xf4\x45\x56\x4f\xb6\xbe\x43\x79\x07\xd3\x3d\x00\xdc\x3a\x3b\xa5\x67\xbb\xa2\xa9\x45\x27\x7d\x9e\x06\xb4\xbb\xe8\x25\x3d\x5d\x92\xf6\x38\xed\x16\x02\x8a\x55\x29\x33\xa1\x15\x71\x23\x5a\x8d\xb2\xbc\xc3\xa0\xb3\xbd\xcd\xdd\xec\x87\xbc\x9f\xd0\x74\x5c\x4e\x76\xb3\x8d\x8d\x6e\xd1\xc9\x19\xe1\x55\x33\x16\xdd\xce\x97\xad\xe0\x54\x35\x59\xa0\xe8\x71\x2a\xf5\x44\xdd\xdd\x2f\x6b\x3c\x41\x36\x66\xef\x74\x8d\x90\x2f\x6b\x84\x10\xd2\x1a\x66\x69\x51\x86\x69\xd9\x0a\x48\x99\xcf\x69\x8f\xa7\xc6\xe9\x6c\x5e\x16\xad\x80\x9c\xc2\xb7\x84\x86\xbc\x34\x9c\xd2\x56\x40\x5a\x9f\xb2\xcb\x94\xe6\xad\x9e\xce\x61\xbd\x63\x39\x61\x14\xe5\xb4\x28\x5a\x22\x67\x01\xff\x9f\x09\xd4\xb2\x38\xfc\x2f\xd2\xb2\x79\xb9\xbc\xbe\xec\x13\x2a\x62\xd4\x77\x7e\x5d\xd2\x62\x67\xdb\x5f\x9f\x04\x52\x94\x5e\x23\x64\xd1\xbb\x17\x02\xdc\xaa\x3d\xaa\x3b\x88\x7a\xcd\x08\xb0\x32\xa9\xff\xa8\x5d\x1f\x66\x69\x49\xd3\xf2\xce\x9d\xff\x8f\x1c\x77\x36\x62\x7f\x98\x61\x1f\x85\x49\xf1\xdb\x75\x3d\xa7\x05\xcd\x2f\x7c\xb3\xfe\x8f\x3e\x68\xc5\xfc\xfc\x03\x1d\xc7\x45\x99\x87\x7f\x82\xc1\xeb\xd5\xe1\xa0\x97\x47\x77\x92\xfb\x65\x1e\xa6\xc5\xc8\x2b\xfa\xfe\x53\x68\x90\x5b\xac\xb0\x3a\x11\x0a\x5a\x7e\xac\x67\xa9\x7b\xa3\x85\x5d\xf5\x6f\x52\xe9\x57\x1e\x80\xb0\x09\xe1\xeb\x10\xcc\xf2\x78\x1a\xe6\xd7\xde\x76\x64\x59\xb2\x74\xf0\xf6\x45\x5d\xff\xb9\x24\x34\xd7\xe0\x5a\x34\x55\x44\x38\xa8\x5c\xc6\xff\x48\x44\xf0\xb6\x3e\x8a\x8b\xec\x32\xbd\x43\xcb\xc3\x34\x4b\xaf\xa7\xd9\xbc\x58\xa1\xe9\x71\x1a\xd1\x2b\x1a\x19\x6b\xd7\xbd\x0d\xac\x46\x8e\x9a\x63\x62\xbf\x8c\xd3\xbb\x08\xee\xfd\x39\x50\xe2\x55\x1a\xd1\xa8\x65\x91\x89\x5e\x30\x46\xf8\x2f\xa0\xd1\x79\x1c\x45\xcd\x68\x74\x3b\xfc\x17\x61\x32\xf7\x36\x7f\x1e\xa7\xe5\xf6\x37\xcf\xea\x87\xe0\x1d\xbd\x7c\x11\xff\x8e\xc4\xbf\xd3\x9c\x3b\x98\x84\xe9\xf8\xf7\x64\x9d\x7b\xe1\x9c\x0a\xdc\x48\xab\xaf\xe5\x1a\x2f\x65\xde\xf3\xd5\x68\x29\x81\xd6\xce\xd6\xd6\x16\xbd\x2f\x8b\xb3\xde\xf6\xef\xb6\xe9\xff\x2f\xda\xf3\xfe\x4e\xba\xe3\x68\x9e\x46\xb7\x66\x95\x3b\x2f\x5c\x0f\xdb\xde\xff\xec\x6d\xef\xc3\xa6\xef\x8f\xbc\xe7\xf0\x76\x5e\xec\x17\xfe\x68\xda\xe6\xd7\x5d\xcc\xf5\x5a\xb5\x73\x6f\x6b\xd5\xaa\xe3\x3e\xca\xb3\xe9\x1d\x87\xbd\xcc\xee\xb8\xd5\xbc\x9b\xc2\xf7\xfb\xce\x9b\x3f\x02\xfd\xe2\x34\x8a\x73\x3a\x2c\x0f\xbd\x6b\xe6\x0a\x2d\xb9\xdb\x40\xc4\xc3\x70\x76\xfc\xbb\x0e\x86\x9f\x92\xcd\x76\xbb\x74\x96\x15\x71\xdd\x46\x7d\x16\x5e\x87\xe7\x09\x35\x95\x82\xdf\x45\x2a\x55\xf1\xdc\xbd\x6c\xbf\xee\xc6\x03\xfb\xb2\xbf\x2f\x4d\x7a\xfe\xf6\x3b\x99\x7b\x21\x52\x05\xee\x66\x7c\xf6\x3b\x90\xff\x0f\x4b\xf5\xfb\xd8\x3f\xde\x5a\x4e\x7e\x6d\xaa\xdb\x42\xef\x81\xec\x0d\xc9\x7e\xe7\x85\xeb\x6b\x8f\xec\xa1\x67\x49\xab\xd3\xe3\x9e\x36\xd1\xe3\xc0\x79\x83\xec\x49\x0f\x87\x4e\xbb\x3f\x18\x65\xf9\x34\x2c\x4b\x9a\x17\xed\xee\x2e\x00\x7c\xcc\x92\x38\x8a\xcb\xeb\xe3\xeb\x19\x35\x61\x59\xfd\x0c\x6a\x6d\xf0\xf8\xf1\x1a\x79\x6c\x40\x0a\x9b\x3b\x89\x0b\x12\x92\x59\x9e\x65\x0c\x98\x94\x93\xb0\x24\x39\x9d\xb1\x4d\x56\x5a\x16\x44\x8c\x1d\x61\x99\x0c\xc3\x61\x49\xa6\x61\x39\x9c\xd0\x22\x60\x9f\x22\x1b\xfd\x3c\x3d\xc3\x1f\x4f\x8d\xaf\x33\x33\x73\xc7\xfa\x3e\x3b\x7d\x76\x76\x7a\xd6\x23\xfd\x7e\x7f\x8d\x3c\x1e\x38\x7d\x93\x2d\xde\x23\xca\x9b\xa6\xd3\x15\x43\x5c\x4e\xe2\xa2\xff\x09\x26\xc6\x6b\x49\x20\x06\xd8\xe7\xe4\x3a\x64\x19\x87\x69\xb9\x8b\x80\xf9\xba\xed\x83\x3e\x82\x1c\x51\xdd\xee\xda\x62\x77\x6d\xcd\xd3\x8e\xfe\x2c\xcf\x4a\x4e\xb5\x3d\x92\xd2\x4b\xa3\xad\x9d\x2f\x8b\xee\x6e\x7d\xa9\x3e\x68\x2f\xf9\x7c\x58\x66\xac\x72\x0f\xec\xb2\x7a\xfb\x71\x21\xc6\x5c\x13\x84\xb1\xa3\x24\x8a\xf0\x6b\x59\x5f\x67\x89\x7d\x18\xb7\xce\x40\x50\xbb\xf3\xaf\xd3\xce\xe9\xe6\x93\xef\xcf\x1e\x77\xff\x75\xd6\x7d\x3e\xe8\xf2\x7e\x9a\x1b\x87\xca\x66\x2d\x7a\x5f\x5a\x98\x15\x5b\xc1\xf7\xbd\x16\xe7\xb7\x56\xb0\xf5\x74\x71\xd6\xfb\xe6\x77\x66\xef\x17\x59\x96\x2c\xe1\xed\x73\x06\x52\xc1\xd8\x2c\x4f\xfe\xcf\xb9\x14\x7e\x3d\xd5\x3f\xcf\x50\xf2\x0e\xfe\x58\xc6\xc6\xd0\xb2\xdb\xf2\x30\x2b\xbc\x0a\x13\x73\x78\x9b\x83\x59\xea\x8a\xec\x6b\x16\xa9\xe1\x5d\x5e\x63\x5d\xd9\xdb\x70\xed\xff\x32\xd2\x9a\x3c\xfb\xf8\xff\x35\x62\x5a\xd1\x9e\xe5\x1c\xfb\xec\xf7\xe6\x58\xb6\x86\x29\x96\x2d\xfd\x3c\x5b\x4e\x28\x81\xc5\x0e\x18\xb7\xef\xe3\x5c\x96\xab\x7e\x08\xbe\x84\x9f\x4f\xd1\xef\x33\x9c\xb1\x63\x7c\x99\xfc\x4b\xc4\xd2\xaa\x7e\x7e\x67\xe0\x11\x45\x3d\x5c\x0e\x8d\xbc\x35\x9b\xb3\xd2\x2b\xf1\x39\x2f\xe0\x30\x3a\x4b\x5e\x95\xd3\xcd\x32\x75\xac\xce\x2b\xad\x2d\x7d\x3b\x66\x67\x48\x38\xab\x7f\xd9\xea\x2d\xba\xb7\x63\x7c\xd1\xba\xe5\x9c\xff\x6d\x13\xce\x1f\x3c\x86\x06\x1f\x4f\xe2\x82\x8c\xe2\x84\x32\x4e\x9d\x85\x79\x49\xb2\x11\xb9\xa4\xe7\x3b\xfd\x5f\x8b\xfe\x1a\x80\x88\x2f\x06\x30\xca\x29\x25\x45\x36\x2a\x2f\xc3\x9c\x06\xe4\x3a\x9b\x93\x61\x98\x92\x9c\x46\x71\x51\xe6\xf1\xf9\xbc\xa4\x24\x2e\x49\x98\x46\x83\x2c\x27\xd3\x2c\x8a\x47\xd7\x80\x23\x2e\xc9\x3c\x8d\x68\x0e\x0c\x5f\xd2\x7c\x5a\xb0\x7a\xd8\xc7\x4f\xef\x4e\xc8\xcf\xb4\x28\x68\x4e\x7e\xa2\x29\xcd\xc3\x84\xbc\x9f\x9f\x27\xf1\x90\xfc\x1c\x0f\x69\x5a\x50\x12\x16\x64\xc6\x52\x8a\x09\x8d\xc8\xf9\xb5\xe0\x22\x4a\x5e\xb3\xc6\x7c\x14\x8d\x21\xaf\xb3\x79\x1a\x85\xac\xcf\x3d\x42\xe3\x72\x42\x73\x72\x41\xf3\x82\x8d\xd0\x8e\xac\x4b\x60\xec\x91\x2c\x07\x2c\x9d\xb0\x64\x7d\xc8\x49\x36\x63\x05\xbb\x24\x4c\xaf\x49\x12\x96\xba\xac\x4b\x02\xdd\xd3\x88\xc4\x29\xa0\x9d\x64\x72\x66\xc7\x25\xb9\x8c\x93\x84\x9c\x53\x32\x2f\xe8\x68\x9e\x70\xc5\xf1\x7c\x5e\x92\x5f\x0e\x8f\xdf\x1c\x9d\x1c\x93\xfd\x77\xff\x24\xbf\xec\x7f\xf8\xb0\xff\xee\xf8\x9f\xbb\xe4\x32\x2e\x27\xd9\xbc\x24\x4c\xa3\x04\x5c\xf1\x74\x96\xc4\x34\x22\x97\x61\x9e\x87\x69\x79\x4d\xb2\x11\xa0\x78\xfb\xea\xc3\xc1\x9b\xfd\x77\xc7\xfb\x2f\x0e\x7f\x3e\x3c\xfe\x27\xc9\x72\xf2\xfa\xf0\xf8\xdd\xab\x8f\x1f\xc9\xeb\xa3\x0f\x64\x9f\xbc\xdf\xff\x70\x7c\x78\x70\xf2\xf3\xfe\x07\xf2\xfe\xe4\xc3\xfb\xa3\x8f\xaf\xfa\x84\x7c\xa4\xac\x61\x14\x30\x2c\x27\xf4\x08\xc6\x2c\xa7\x24\xa2\x65\x18\x27\x72\xfc\xff\x99\xcd\x49\x31\xc9\xe6\x49\x44\x26\xe1\x05\x25\x39\x1d\xd2\xf8\x82\x46\x24\x24\xc3\x6c\x76\xdd\x78\x20\x01\x59\x98\x64\xe9\x18\xba\xad\xb8\x8c\x90\xc3\x11\x49\xb3\xb2\x47\x0a\x4a\xc9\x0f\x93\xb2\x9c\x05\x83\xc1\xe5\xe5\x65\x7f\x9c\xce\xfb\x59\x3e\x1e\x24\x1c\x41\x31\xf8\xb1\xbf\xf6\x78\x20\x85\xed\x5f\x80\x6d\x87\x59\x44\xf3\xfe\xaf\x20\x22\xff\x12\xce\xcb\x49\x96\x93\xb7\x61\x4e\x3f\x93\xbf\x65\x25\xbd\x8c\x87\xff\x26\x3f\x4c\xd9\xf7\x5f\x68\x39\x89\xe8\x45\x7f\x98\x4d\x7f\x04\xe0\x28\x2c\x29\xd9\xde\xdc\xfa\x06\x04\xde\xf2\xa5\xa0\x46\x81\x45\x65\x84\x3e\xe6\x5b\x3b\x84\xa6\x80\x80\xd9\x2a\xe8\x83\x3c\x4c\x4b\x13\x30\x4e\x4b\x1f\xdc\x89\x03\x38\xaf\x80\x7c\x79\x9d\x86\xd3\x78\x28\xc5\x38\x2a\x11\xf1\x1c\x90\x51\xbe\x92\x1f\xcb\x3c\x4e\xc7\x66\x99\x02\xd2\x7c\xd0\x1f\x68\x68\xf5\x31\xa7\xa1\xb7\x8f\x27\x2e\xe8\xbc\x0a\xd6\xd3\x6c\xd5\x5e\x00\x8e\x0b\xd1\x41\x43\x32\x17\x08\x45\x0f\x56\x58\x21\xa7\xa5\x87\x38\xca\xef\x2b\x14\xb0\x8c\x70\xe0\x9b\x1b\xb5\x7b\x24\x15\xd0\xfb\x79\x1e\x5e\x73\x70\x2e\xc4\x2d\x55\xe0\x80\xf1\x27\xd2\x00\xc4\x4c\xe2\x12\x22\x22\x65\x46\x68\xca\x78\x78\x10\x51\xf6\x9f\xaa\x85\x09\xe3\x90\x8b\x49\x26\x95\x84\x5e\x6b\x2e\xcc\x1c\x37\xee\x31\x03\x2b\xcc\x95\x19\x92\xc8\x1e\x60\x28\x8c\x26\x82\xec\x9f\xd2\x72\x92\x45\x9e\x66\x71\xe3\x7a\x96\x4f\x09\xd7\x5c\x32\x63\x44\xd6\x08\x9f\x83\xa2\xf8\x27\x31\x32\x22\x8b\xfc\x05\x5a\x4f\xbe\x70\xe6\x59\x28\xb5\xfc\x2f\x9c\xf2\x05\xf9\x82\x91\x2d\x20\x0b\xee\x2a\x14\xe4\x0b\xdc\x6b\x58\x10\xf1\x19\x33\xd9\xc0\x35\x22\xc6\x86\xd0\x16\xb6\x12\x31\x71\x0f\x04\x31\x88\x81\x56\x6a\xdc\x24\x87\x46\x92\x44\x8c\x9a\x85\xa9\xde\x21\xaa\xf5\x47\x71\x52\xd2\xbc\x83\xca\x76\x91\x0d\x42\x70\x51\x29\x94\x02\xc9\x04\x60\x53\xe8\x9e\x6e\x9e\xed\x72\xf9\x19\x8f\x48\x67\x1d\x57\x82\x71\xf0\x0b\x1a\xfc\x2a\x47\x3b\x4e\x2f\xc2\x24\x8e\x34\x0f\x30\x8c\xeb\x01\x69\x93\x0d\x82\x91\xaf\x61\x5d\x03\x63\x36\x39\xb0\x82\xd3\xc8\x2c\x09\xe3\x94\xf3\x97\x35\x8c\x1c\xe0\xbd\xc8\xa9\x1e\x45\x91\x7e\x74\xfe\x2b\x1d\x96\x0b\x0b\xa1\x1c\x64\x5d\x8e\xa3\x8d\x2c\xb8\xea\xa1\x43\xcd\x70\x46\xae\xc7\xcb\x5b\x0a\x17\x0c\x1a\x2a\x56\x74\x4e\x19\xf0\x59\x8f\x9c\x02\xf8\x59\xb7\x19\x69\x92\xb8\x00\x0d\x88\x4f\xbe\x6a\xea\x14\x98\x0c\x20\x02\x38\x75\x7c\xe9\x33\x5d\xa0\x8a\x30\x4e\xb5\x8d\x68\x53\xb8\x53\x5f\x50\xa7\xa8\xe2\xef\x42\x32\xf8\x98\x96\x78\x06\x16\x42\x72\x08\x96\x65\xc5\x44\xdb\x58\x09\x03\x43\x7f\x1a\xce\x3a\x55\x32\x16\xac\x72\x9e\x39\x62\xc8\x4e\x8e\xb9\xc3\x5b\x7a\x0a\x45\xce\xb8\x78\x96\x5f\x6a\x16\xa1\xf6\x88\x75\xea\x68\x34\x2a\x68\xe9\x34\x2a\xa7\xd1\x7c\x48\x51\xbb\xc2\xe1\xb0\x47\x96\x34\x0e\xa8\x53\x86\x65\x3c\x7c\x1f\xe6\xe5\xcf\x70\x93\xc8\xc2\xdc\xb7\xf3\x3b\x9e\x76\x4a\x5c\x39\x13\x4a\x34\xfa\xe8\xa2\x7c\x1b\x96\x93\xfe\x28\xc9\xb2\xbc\xd3\x71\x6a\xdc\x20\x3b\x5b\x5d\x32\x20\x3b\xdb\x5d\xf2\x98\xec\x6c\x8b\x4e\x23\xf2\x85\xc3\x21\xd9\x20\x1d\xb5\xe8\x18\x54\xaf\x20\x21\x79\x8e\xd6\x2e\x42\x76\xb6\x49\x60\x24\x54\x34\x56\x92\xbe\x47\x36\x31\xf5\x73\x5a\xcc\x93\x52\x72\x0f\x1f\xc1\xb7\xf3\xa4\x8c\x7f\x89\xcb\x09\x1f\x13\xc9\x81\x46\xdb\x7a\x8a\x8f\x7a\xe6\x08\x4a\xe4\xa2\x87\x1c\xbf\xb9\xe3\xf3\xb3\xbe\x55\xab\x6f\x0e\x34\x6c\x01\x9a\x23\xaa\x7b\xad\xd6\xae\x9e\x38\x34\x19\x89\x1e\x8b\xc6\x8a\x55\x21\xcb\x5f\x85\xc3\x49\xc7\x16\x4c\x31\xe6\x2d\x26\xf5\x2b\xc7\x4b\x8f\xd5\x59\x17\x17\xe2\x04\x81\xa6\x6c\xb8\xd6\xce\x8e\xd9\x7c\x39\x8f\x10\x13\xaa\xb9\xcb\xb8\x98\x26\x23\x01\x62\x8f\x11\x34\xc0\x6d\x92\xa4\x13\x7c\xd8\x83\x85\xab\x30\xa7\xe2\xc6\x1e\xa1\xe2\x1a\x1e\x19\x90\x6d\x0d\xba\x20\x34\x29\xa8\xd5\xbd\xc1\x80\x44\x59\xda\x2e\x49\x18\x45\x44\x94\x2a\x33\x13\x65\x9f\xc4\x65\xbb\x20\x61\x92\xd3\x30\xba\x26\xc3\x6c\x9e\x96\x34\xaa\xa0\xd2\x57\xea\xe7\x42\x4f\xc2\xc1\x80\x1c\x1f\xbd\x3c\x0a\xc8\x28\x1e\xcf\x73\x4a\xd8\x86\x2d\xa5\x05\xdb\x01\xb2\x5d\xda\x75\x61\x0a\xab\xdf\x82\x49\xfe\x38\x83\x6c\x0e\x06\xc5\x04\x94\x54\xa9\x98\xe6\x8a\xac\x39\x1d\x85\x60\x8e\xb9\x9c\x64\x09\xe5\x2d\x8c\xd3\xf1\xfa\x12\x41\x50\x23\x03\x6c\xc9\x2f\x3a\xdd\x23\x99\x33\xf3\x8d\x49\x2e\xc7\x64\xa9\xaa\xef\x59\xe2\x3a\xae\x69\x0c\x31\x10\xaf\x98\x5c\x86\x9a\xad\x0b\x5a\x3a\x63\xca\xd9\xea\x5d\x38\xa5\xf6\x3a\xa4\x73\xb0\x9e\xe9\x96\xf5\x2c\x3e\xf5\xeb\x99\x46\xec\xc1\xa9\xe4\xa2\xa0\xa0\xd6\x6a\xe5\x5f\x4d\xb7\x25\x92\x59\x4e\x2f\xe2\x6c\x5e\xa8\x06\x6d\xef\x32\x92\xc4\x29\x89\xd3\xd2\x29\xb1\x8c\xfe\xa8\xbd\xbe\x0a\xd9\xdf\x28\xcb\x09\x5c\x12\x8e\xc9\x1e\xd9\xda\x25\x31\xf9\x41\x76\x40\xde\x17\x26\xf1\xc6\x46\x55\x71\xf6\x67\xb5\x79\x63\x8f\x6c\x74\x24\x0d\x62\xf2\x84\x6c\x9d\x31\x0d\x9f\xdc\xdc\x90\xcd\xdd\x4a\x24\x35\xa2\x5c\xf0\xc3\x06\x89\xc9\xe3\xaa\x91\xdb\xb0\x5b\xc1\x94\x83\x2a\xb1\x2f\xff\x16\x4e\xaa\x99\xb2\xe8\x76\xba\xd6\x10\x0e\x06\x64\x14\xe7\x45\x49\x68\x42\xa7\x34\x2d\xd9\xfe\x8a\x93\xa9\x47\x8a\xcf\xf1\x8c\xc4\xe5\x2a\x43\x6e\x50\x7f\xd3\x47\x7d\x46\xbf\xda\x11\x80\xab\xf3\x51\x14\xb3\x4a\xc2\x44\x4d\x72\x41\x4f\x47\xfe\xb8\xf4\xf6\xcb\x45\xcd\x3a\x15\x02\xe2\x34\x26\x1b\x64\xeb\x4c\xca\x09\xb2\x41\x9c\x66\x78\xc8\xbe\x94\xc0\x96\xf0\xf3\x40\x8a\xa5\xd2\xc3\xfb\x9c\x2b\x6e\x2d\x7a\xfe\xd0\x42\x85\x29\x5b\x26\xa5\xee\x38\xf9\x97\x70\x26\xa9\x12\x48\x9b\x75\x02\x89\x34\xe2\xe9\xa5\x12\x65\x30\x20\xc3\x30\x19\xce\x93\xb0\xa4\x52\xf1\x61\x5b\x3e\xd1\x16\x12\x97\x74\x7a\x07\x71\xc4\x44\xd1\xe9\x7f\x90\x50\xea\xda\xb0\x8b\x95\xd6\x95\x3b\x0e\xc8\xef\x27\x60\xb0\x70\xf9\xea\xb2\x85\x38\xd6\x22\xd1\x8e\x25\xd6\x10\x61\x8b\x14\x27\x93\x59\x8d\xc5\x88\x43\x36\xb6\x18\xc9\x74\x75\xaa\xa9\x4c\x22\x7e\x5b\x52\xb5\x1d\x04\x55\xec\x51\xff\x00\xbf\xcf\x46\x84\x8a\x69\x1b\x11\x87\x06\xdd\xa6\x09\x59\x6a\x8d\x44\x15\x04\xa9\xb2\x11\x55\x13\x44\x94\x80\x1d\x06\xd4\xa6\x09\x53\x6f\x21\xc2\x5d\xf4\xed\x8e\x0d\xda\xac\x6e\x20\x92\xa5\x38\x17\x63\x78\xce\xc4\x85\x77\x17\x6e\x6d\xf7\xef\xd9\xa2\xc4\xbb\xdc\x81\x9e\xc9\xf9\xa5\xcd\x22\x86\x5d\x44\x62\xd4\x16\xa6\x3a\x93\x83\xee\xd5\x52\x3b\x03\xa6\x28\x97\x40\xac\xcc\x7d\xf7\xb4\x89\x39\x4a\xed\x44\x7d\x7a\xb0\x68\x5a\xa5\x90\x1c\x0c\x48\x31\x9f\xf2\x13\x3a\xcf\x2a\x25\x54\x44\x05\x2f\xd0\x9d\xc6\x67\x4c\x2a\xaa\x2f\x58\x92\x7c\xf2\x47\x56\x6f\x12\x42\x6a\x9b\x0e\x09\x06\x03\x92\xd3\x69\x76\x01\xc7\x98\x64\x38\xcf\x73\xa6\x9f\x2a\xe5\x34\x83\x64\xd1\xcc\xb8\x80\x96\x7b\x5a\x5b\xac\x62\xf1\x93\xc4\x6c\x6c\xf9\x33\x7a\x46\x9e\x38\xf8\x1b\x73\xda\x47\x6b\x1e\x56\x1c\xeb\x78\x77\xad\x52\xc6\x79\xb8\xac\xb4\x8e\x1c\x24\x5b\xb1\x15\x0c\x1f\x92\x98\xe7\x17\xbc\xb5\xac\xae\xa1\x38\x65\xc2\xae\x16\xd0\xfa\x0e\xf7\x57\xb5\x5d\x30\xc4\xb1\x68\xa7\xdb\xf3\x66\xbf\xc8\xb2\xa4\x2a\x8f\x29\x21\x15\x59\x27\x35\x79\xf8\x70\xb3\xb2\xda\xba\x4c\x2e\x85\xab\x72\x3f\xd0\xb0\xb2\xc5\x27\x3c\x73\x8d\x31\x84\xeb\xbf\x01\xa4\x53\x3e\x1b\xd2\x71\x36\x78\xda\x6b\xf1\xb3\xdf\x56\xf0\x0d\xfc\x64\x6d\x6b\x05\xcf\xd8\x6f\x7c\x1c\xdb\x0a\xbe\xeb\xf9\x7c\x3d\xe2\xb4\x6c\x05\x5b\x9b\xec\x67\x4e\xc3\xa4\x15\x6c\x6d\xb3\xdf\xfc\x54\xb6\x15\x6c\xed\xb0\xaf\x39\x87\x82\x0a\xe6\x02\xec\xd9\xe2\xac\xf7\xdd\x6f\xe9\x17\xb5\xe4\x18\xfa\x76\xde\x44\x18\xc9\x2a\x4e\x45\x66\x39\xdb\xb7\x08\xe7\xae\xe8\x62\xe4\x2f\x5a\xe3\x69\x64\xb6\xa4\x09\xae\x3b\xf8\x1d\x55\x38\x1b\x35\xaa\x14\x1d\x89\x7b\x87\x4b\x8a\x9d\x7c\x4e\x1b\xb8\x30\x59\xdd\x5e\xee\xc9\xf4\xfd\x83\x27\xd3\x83\x27\xd3\x9f\xc5\x93\x49\x4f\x84\xfb\x72\x67\x7a\x11\x8f\xdf\xcd\xa7\xe7\x20\x0a\x95\x74\x3e\x8f\xc7\x29\x24\xf6\x7f\x55\x92\x7c\x5e\xc6\x89\xe9\x5f\xd3\x1f\x40\x1a\xff\x57\x82\x0d\xbd\x20\xc3\x2c\x1d\xc5\x8e\x33\x90\xdc\x99\xa1\x55\x01\xf6\x2e\xb0\x2c\xc8\x8e\x73\x59\x5d\x10\x90\xf7\x04\x2e\x6c\xb0\x7d\x16\x93\x5b\xda\x4b\x16\xa6\x02\x1b\x1b\x30\xce\x3c\x66\x34\xe6\x90\x71\x41\x52\x3a\x0e\xcb\xf8\x82\xf6\xa4\x24\x82\x83\xa3\xf2\x32\x6b\x17\x64\x98\x4d\x67\x52\x5b\x85\x52\x6c\x6c\x55\xc9\x51\x92\x85\x65\x9c\x8e\xc9\x2c\x8b\xd3\xb2\xc7\x8f\x43\x19\xdb\x47\xd9\x65\x6a\xed\xe9\x4c\x33\x89\xbb\x7d\xbb\xe1\x54\xbe\x51\xf4\x5e\xc8\xbe\xb0\xa9\x94\x52\x1a\xc1\x2e\xfa\x5c\x8f\x71\xe4\x77\x86\x01\xa2\x2d\x94\x9f\x8f\x59\xaf\x21\x80\x01\xbf\x94\xc2\xaa\xde\x3e\x1f\x8b\xce\xb0\xff\xfa\xf8\xed\xa7\x17\x87\x3f\xbd\x3b\x79\xfb\xe2\xd5\x87\x4f\x1f\x8e\x4e\xde\xbd\x3c\x7c\xf7\xd3\xa7\xb7\x47\x2f\x5f\xa1\x3d\x9c\xb2\xc4\xc1\x48\xf6\x67\x61\xf4\x33\x1d\x95\x1d\xfe\x55\x66\xc7\x97\x59\x71\xa0\xa8\x28\xea\xec\x97\x99\x50\x97\xb6\x9e\x75\x7b\xe4\xd9\x53\xf3\x84\x07\xaf\x96\xd0\x9d\x0e\xaf\xc4\x74\xc0\x30\x07\x5e\x6e\x7e\x2b\x68\xfe\x42\xed\x8d\xcd\x4d\xf3\xaa\x34\x74\xb5\x0e\x83\x8a\x1e\x82\x94\xd9\x1b\x7a\x25\xfb\x5d\xcc\xcf\x8b\x32\xef\x6c\x23\xfa\x25\xd6\xd1\x3e\x2f\x2e\xad\xdc\x1b\xe4\xd9\x4e\x97\x0c\x30\x89\x6c\x72\x7f\x88\xc7\x93\x52\x14\xeb\x91\x84\x3c\xfe\xca\xf4\x14\x2b\xf0\xbd\x92\xb5\x52\xa7\xbb\x33\x75\xe5\xf6\xcc\x24\xab\xb2\xce\xfd\x6e\x23\x60\x99\x4d\x79\x65\xdd\x3e\x9f\xf3\x1b\x64\xf9\x00\x2d\x93\x74\x5c\x93\xaf\x9e\x11\x1f\x65\xfe\x5d\xc7\x4e\x39\x77\x36\x1f\xb5\x51\x9e\x4d\x4f\xca\xd1\x77\x0f\x03\xe7\x19\x38\x71\xcf\xa8\x4a\x90\x89\x5b\x48\x72\xd0\xd8\x37\x0d\xd3\xd5\x05\x99\x7d\xe5\xa8\x7a\xcc\xda\x9b\x77\xfb\x6b\x93\x0d\x81\x9e\x3c\x27\xa4\xbd\xd5\x26\x01\x69\x6f\xb6\xef\x2e\xa3\x96\x51\x92\xed\x58\x59\xa9\xbf\x33\xb8\x82\x30\xc5\x78\x3a\x4f\xca\x98\x2b\x95\xe7\xd7\x64\xfb\x7f\xa7\x4c\x3d\x57\x3e\x74\x21\xc3\x5c\xd2\x31\xcd\x6b\x96\x92\x0f\x02\xeb\xb2\xf5\x7b\xd5\x11\x11\xbe\xcc\x15\x23\x22\xc8\x64\x71\x1f\xa3\x9a\xaa\x51\x2d\xae\xf1\x94\x16\x56\xd6\x76\xb7\x3f\xcb\x2e\x3b\x5b\xdb\xdf\x75\xbb\x26\x49\x0f\x26\x74\xf8\x99\xc4\x23\x83\xa6\x48\x2d\xb2\x08\x51\xc4\xe3\x94\x46\x87\xc5\x3b\x9d\xed\x18\xa2\x15\x8e\x09\xbd\x12\x2d\x36\x89\x21\x99\x16\x36\x7d\x50\x77\x69\x6a\x62\x19\xdb\xb2\x5c\xc6\x4c\x0d\x0f\x93\x42\x7b\x2d\xdb\xb5\x2f\xa5\x97\x8f\x42\x52\xdc\x6c\xf6\xc8\x56\xb7\x47\xb6\x9e\x21\x7d\x64\xbb\x6b\xe4\x76\xc9\xde\xde\x1e\x63\x59\x2f\x17\xe6\x4c\x7c\x3c\x09\x13\x68\x14\xe1\xa6\x03\x7d\xe0\xc1\x55\x4d\x97\x89\xb8\x21\xc1\x56\x02\x0d\xf6\x70\xfc\x60\x19\xcd\xb4\x62\x58\x53\xaf\x52\x0e\x61\x5a\xc4\x63\xc2\xf5\x74\x8b\xdf\x54\x13\x0c\xfa\x19\x4e\xb1\x0c\x98\x8f\xe3\x1e\x6f\x0d\xb2\x65\x76\xba\xe4\xe6\x86\xb4\x36\x5b\xc2\x46\x3c\x18\x90\xa1\xe2\x22\xa6\x3c\xcb\x81\x54\xb5\x73\x20\x18\x65\xa5\x66\xbb\x1a\xb6\x3c\xbc\xb5\x06\x59\x0c\xac\xc7\xfe\xe8\x19\x5c\x3e\x9e\xd3\x38\x9d\xdb\x53\xa0\x3d\xba\xe3\x5f\x1b\x70\x4b\xe4\x5b\xea\x6c\xac\x41\x83\x6e\xc1\x3e\xf3\x7a\xfe\x39\xa9\x65\x20\x1f\xeb\xd0\x95\x78\x47\x54\xef\x72\xcd\xc9\x7d\xb0\xcd\xd7\x21\x99\x90\xf7\x55\x24\x73\x04\xf7\x52\x92\x01\xc5\x90\x3e\x6c\x92\x48\x54\xe7\x92\xc8\x91\xe4\x3e\x77\x73\x6b\x26\x0a\x98\x7e\x14\x5f\xc4\x11\x8d\x5e\x5c\xd7\x08\xf0\xdb\x70\xd3\x12\xda\x9c\xdc\x37\x71\xe6\x95\xd4\x39\x59\x99\x3c\x27\x77\xa1\x8f\x7b\x04\xcb\x51\x2b\x12\x55\xa9\x5b\xfa\xb6\x74\x63\xba\xc8\x65\xcd\x1c\x8b\x4a\x1a\x89\xaa\x5d\x12\x39\xca\x99\x8f\x42\x9e\xe9\x05\x8b\xd5\x1d\xb5\xb5\xad\x36\x79\xce\xd7\x65\x11\x16\x63\x35\x6a\x56\x6e\x1b\xd1\xa5\xdc\x9a\x85\x2f\xa1\x23\x4d\x38\xa6\x3e\xd4\x6c\x6c\x1c\xbd\x23\x0d\xa7\x94\xdf\xee\x61\xbf\x2c\xfd\x4b\xc0\x30\x9c\x0a\x83\x87\xf2\xce\x0e\x14\xea\xe8\x11\x6c\x29\x67\x85\xc4\xfd\x6a\xb2\x47\xaa\xae\xe9\x3e\xee\x0e\xd0\x7e\xa6\x88\xff\x2d\x64\x62\x01\x47\x54\xa2\xfc\xe9\xd6\x99\xa9\x07\xb7\x37\xaf\x98\xbe\xec\x0e\x6e\xbf\x48\xe2\x21\x65\x6a\xc9\x36\x79\x0c\xe8\x56\xe4\xf3\x25\x23\x83\xb7\xe0\xf7\x36\x40\xab\x92\xbf\xd2\x0e\xe0\x2c\x32\x6a\x7f\x68\xc9\x01\x4e\x38\x71\x02\x66\x53\xee\xd9\xd3\xae\x58\xc3\xcb\x4c\xc0\x77\xc9\x63\xb9\xa5\xf4\x8d\x80\x85\x88\xab\x86\xcf\x9e\xf6\x44\xfd\xab\x0d\x41\xcd\x96\x9c\x77\xdf\xb3\x27\xbf\x57\xea\x87\xc5\x30\x8e\xeb\xe8\xef\xd9\xcb\xff\x86\x94\x97\x26\x1d\x30\x0d\x34\xa3\xff\x6a\x03\xa0\x63\xd3\x54\x8d\xc0\xbe\x8e\x5e\x53\x31\x04\x95\xb2\xbd\x82\xe4\x0a\xa1\x4b\x6d\x5f\xf4\x9a\x15\xb4\x29\x83\x76\xad\xcd\xab\x16\xd9\x20\x62\x83\x03\x64\xe7\xbf\x95\x4f\xc1\xd3\xcd\x1e\xc1\x49\x55\x01\x03\xbe\x48\xbf\x0f\xb4\xd1\x0c\xac\xef\x9e\x0d\x03\x33\x36\x70\x52\x1c\x38\x3c\xc1\x83\xaa\x0c\xa7\x14\x27\x66\xe0\x26\xb9\xed\xc8\xb2\x24\xb0\x13\x1c\x28\xa6\x81\x04\x76\x02\x86\x52\x6a\x59\x60\x27\xb8\x50\x27\x0e\xd8\x89\x17\x0e\x57\xaa\x53\x3c\xf8\x5c\xc0\x13\x3f\x24\xee\xac\x4e\xf1\xc0\x61\x6a\xa3\x24\x17\xd2\x37\x3c\x6e\x8e\x5b\xce\x1c\x20\x9c\xe6\xc2\x0a\xae\x0f\xbc\xf3\x6e\x21\xcf\x74\xcd\x93\xa1\x56\xb0\xf5\x5d\xaf\x65\x9e\x28\xb5\x82\x6d\x70\x5f\x80\x89\xd1\x0a\xb6\xb6\x7a\x2d\x7c\x2e\xd5\x0a\xcc\xcf\xc5\x59\x6f\x6b\xf3\x77\x8e\xe7\x72\xc8\x1d\xe3\x6b\x02\x10\xc5\x69\x59\x15\x7f\x48\x1c\x5d\xc5\x69\xc9\x43\xb3\xb0\x1f\x4f\xd5\xaf\x33\x9d\xb8\x83\x7e\x5b\x91\x5b\xe2\xb4\xe4\x71\x5b\xe2\xb4\x7c\xf6\x54\x81\x7d\xa7\x11\x6d\x7f\xf3\xac\x02\x17\x83\x5f\x12\xc7\xc8\xde\x1a\x7e\xc5\x50\x5c\x00\x6e\xfb\x20\x1c\xa6\xe5\x8a\x6e\x17\x46\x89\x1a\x6f\x0b\xa8\xae\xa6\xe4\xad\x7c\x2b\xe2\xb4\x94\xaa\xe2\xf3\x5b\xc5\x73\xe1\xad\x5a\xee\x03\xb1\xd5\xe8\x09\xbb\x07\x27\x88\x07\x27\x88\xff\x06\x27\x08\xae\x29\xdd\x93\xff\x43\x03\xb7\x06\x5b\xd2\x73\xb7\x85\x0c\x9c\xd1\x75\xd4\x8e\xbe\x47\x41\xbd\x9c\xd0\x54\xdd\x55\xec\x71\xbf\x6f\xa6\x7f\xab\xe0\x0d\x52\xb1\x1c\x78\xfd\x22\x2c\xd3\xb7\x7d\x35\x11\x04\xa9\x54\x1f\xf9\xff\x37\x37\xa4\xdd\x46\x62\x36\x93\xb7\x16\xf8\x8f\x5d\x74\xcd\x30\x4e\x45\xed\x8d\xa3\x7d\x8c\x69\x89\xdd\x7d\xc1\x79\xbc\x5d\xc8\x4b\xa0\x20\x4a\x6c\x47\x77\xad\xdd\x73\x3f\x57\x53\x87\x96\x46\x26\x8d\x14\xe3\x22\x1d\xd9\xc4\xae\xe1\xcb\x0e\xd4\xc1\xbe\xec\x76\x25\xb5\x5e\x68\xe0\xe0\x6f\x6c\x3a\xf0\xc9\x63\x63\x5a\x0c\x73\xca\x78\x49\xce\x06\x33\x22\x0b\x67\xf6\x28\x1e\x8d\x28\xf8\x22\x73\x8a\x5b\xb4\xb9\x54\x57\x42\xf0\x66\x44\x92\x44\x0c\x92\x74\x5b\x4e\xbd\x5b\x10\x73\xe3\xc2\x16\x43\x5f\x3b\xc2\x19\x97\x2f\xaa\x15\xd5\xa4\xbc\xf4\x5f\x97\x35\xd9\xae\xf2\x40\x4f\xf3\xa3\xe2\xd4\x55\x28\x9a\x4d\xcf\xe3\xd4\x0d\x6e\x53\x66\x63\xca\x64\x3b\xc3\x40\xc7\x7d\x3e\xa7\xc2\xd9\x8c\xa6\x30\x95\xc2\x94\x5f\x7f\xb0\xa8\x2b\xb0\x2d\x3b\x82\x11\x62\x69\x12\x0f\x99\x70\x92\xad\x5a\x5e\x58\x9c\x9d\x66\x23\x01\x0b\xab\x50\x2d\x69\x65\xf7\x96\x59\xfd\xea\xc8\xaa\xac\x16\xfc\xc0\xa4\x01\x71\x87\x61\x92\x08\xf2\xca\x03\x1c\xde\xa1\x49\xa8\x27\x6e\x11\xff\x5b\x84\x15\x84\x83\xba\x49\x58\xf4\xd8\xff\x92\xcf\x20\xf0\xaf\xe7\xc4\x0e\x93\x5b\x79\x81\xfa\x0d\xa6\xb5\x94\xf1\xc7\x65\xf2\xcd\x5b\x31\x29\xd6\xf7\xf6\x40\xb5\x18\xc5\xa9\x75\x4b\x69\x19\x11\x74\xbc\x22\x81\x4a\x9c\x2d\xdb\x16\x03\x9e\xbb\x5f\xbc\xa8\xde\xf7\x73\x73\xaf\x6b\x9e\x69\x30\xcb\x0c\xec\x75\x9d\x5e\x87\x5e\xeb\xcb\xff\x5d\xf2\x9c\xb4\xdb\x24\x68\xe6\x8a\x85\x48\xe6\x75\xc8\x5a\x81\x6e\x4c\xf2\x73\xcb\x84\x52\x18\x7d\x17\xbd\xb4\xf1\xc2\x4f\x33\xb9\xf2\xc8\xf3\xe0\x10\xcb\xfb\x70\x8a\x99\x0c\x38\xbc\x96\x8a\xba\x32\x2f\x09\x21\xa2\x92\x4d\x3f\x5f\x64\x26\x35\xbb\x3c\xc7\x7d\x88\x84\x62\xb8\x3a\xab\x13\xce\x58\xd3\x2a\x28\x87\x56\x24\x3f\xe9\x64\x42\x28\x0f\xdf\x1b\xd0\x90\x4e\x67\xe5\x35\xb6\x06\x36\x58\x41\x97\xce\x41\x93\x1b\x91\x6c\x0a\x40\xf3\x58\x81\x36\x32\xd2\x54\x65\x8c\x29\x2f\x25\x6a\x3b\x22\x50\x2e\xeb\x83\x71\xa6\xb2\xe1\xd1\x09\x6e\xd3\x0f\x7d\x09\xaf\x3a\x2e\xd4\xcf\x71\x51\x3a\x37\xfe\x4e\x8d\xde\x9c\x79\x82\x41\xd5\xf6\x5e\x63\x76\xd7\x16\xb8\x0f\x24\x4f\xe7\xe7\xb3\x88\x7b\xb3\x8a\xbb\x6f\xca\x02\x59\x66\x25\xba\xdf\xca\x0b\x4a\xad\x88\xc7\x1a\x22\xc6\x7d\x3e\x75\x6d\x50\x80\x9a\x57\x89\x8c\x45\x4d\xcd\x44\xbe\x6e\x55\x4c\x45\xfb\xd0\xcb\x0e\x10\x62\x56\x4f\xf6\x70\x8b\x35\x2c\xee\xc6\xc6\x9e\x6b\xdf\x17\x37\xb4\xdc\x5b\x59\x1c\x52\xeb\x3e\x9d\x0c\xdf\xb4\x55\x37\xe5\x06\x03\x39\xd4\xf4\x82\xe6\xd7\xe5\x04\xe2\x8f\x20\x3c\x98\x3a\x6e\xb0\x29\xe9\x85\xe6\xd0\xc7\xb8\x9d\xeb\x3f\x98\x50\xf1\x96\xee\xb5\x0a\xd7\xd6\xbc\xe8\x91\x76\x5b\xda\xdc\x6b\x6c\x13\xef\xf9\x28\x59\xa6\x3c\x65\xb5\x5b\x9c\xf5\xb6\x1a\xbd\xaf\xf7\x15\x4d\x71\x70\x08\x5d\x6f\x8b\xcb\x19\x48\x85\x31\x4e\xba\x96\xb1\xff\xb9\x85\x0c\x7e\x3d\xd5\x3f\xcf\x50\xf2\x0e\xfe\xb0\x4c\x72\x2c\x8d\xdb\xe4\xd8\x2f\x69\x94\x63\xbf\xbf\x43\xe8\x90\x59\xce\xc1\xd8\xc0\x30\xe7\x1c\xb9\xaf\x62\x99\x63\x85\x57\x31\xcd\x71\x78\xdb\x36\xc7\x52\x57\x34\xce\x99\x45\x6a\xac\x73\xbc\xc6\xba\xb2\xb7\xb1\xcf\x31\xda\x56\xd8\xe7\x9a\x05\xc7\x17\xcd\x6a\x60\x9f\x6b\xf4\x82\xd7\xd7\xba\x50\xe7\x39\xf4\x5b\x85\x3d\x78\xf1\x55\x18\x44\x96\xb0\x59\x84\xa7\xaf\xc8\x24\x76\xa1\x1a\x36\x91\xf5\xd6\x97\xbf\x95\x29\x97\x6b\x51\x4d\xee\xc9\x79\xea\xbb\xdf\x1b\x72\xaa\x97\x0d\xf8\xee\xfe\x5f\x1c\xa9\xbd\xb3\xe3\x91\xc3\x28\xac\x6d\x5c\x34\x8f\x67\x3b\xa4\x79\x19\xc6\xa9\x3f\xa6\xad\x43\x48\x7e\x88\xb4\x84\xa9\x39\x50\xdf\x4c\xaf\x67\x6b\x51\xc4\xca\x58\x1a\x01\xa2\xa4\xf9\x94\xed\xf5\xe3\x11\x60\x36\xdb\x1d\x89\x48\xb5\x64\x1c\x5f\xd0\x54\x7a\xb2\x98\x9b\xe9\xaa\x10\xb9\x96\xdb\x0b\xdf\x60\x6b\x2f\x5b\xa0\x32\x47\xee\xd4\xeb\xf7\xb9\xc5\x10\xcd\xa7\x08\x0f\x48\xdb\x2a\xbd\x8a\x71\x76\x41\xf3\xfc\x32\x8f\xcb\x92\x82\x97\x17\x6f\x55\x8b\x6c\x40\xeb\x1b\xd3\xee\x12\x8c\xeb\x05\xbe\xbc\x0f\xce\x0f\x7a\x13\x1a\xa7\x82\x84\xa5\x1b\x6b\xd8\xbe\x5f\xdf\x88\x98\xae\x39\xd2\xaa\x4e\x5b\x6b\x2b\xe8\xe6\x09\x1b\xe0\xa7\xe0\x60\x00\x16\xf0\x70\xca\x66\x05\x44\x3a\x14\x66\x2c\xd6\x5f\x26\x09\x28\x3f\x5a\x48\xe2\xcf\x94\x84\xa4\x88\xd3\x71\x42\x55\xec\x2d\x80\xec\x1b\x6e\xd0\xc0\xc1\x3c\xb4\x0c\x0f\xc5\xc1\x6b\xbb\xb9\x21\xa7\xed\xd3\xad\xb3\xf6\x59\x57\x29\x83\x4b\xae\xfe\x8b\xe6\x99\x74\x67\x5f\x38\x9c\x61\x85\xea\xce\x5d\x9f\x38\x29\xc0\x45\x61\xab\x47\x9e\x80\x0f\xf6\x26\xb4\x65\x0b\x07\x9f\xd1\x0d\x72\x14\x59\x19\x9c\xa1\x27\xc3\x39\x54\xed\x16\x64\x10\x87\xc7\x12\x50\x57\x30\x18\x90\x30\x49\xc8\x79\x58\xc4\x43\x1e\xf3\x00\x2e\x08\xec\x6c\x0b\xd3\x4d\x92\xb1\x5d\xb1\x6c\x4d\x8f\xec\x6c\x2f\xf3\x35\x31\x27\xb6\x90\x68\x72\xf7\x2d\x8d\x90\x84\x8e\x41\x81\x84\x87\xa0\x4e\xcf\x5a\x64\xef\x47\x98\x9f\x3a\xed\x29\x4f\xac\x35\xa3\xed\x4b\x6c\xab\x4a\x80\x09\xad\x6c\x59\xcd\x6c\xc7\xb5\x56\xf2\xac\x0e\xf5\x65\x04\x81\x71\x98\x6e\xd7\x5a\x46\x51\x91\x47\x8f\x08\xfe\x3e\x45\xbf\x51\xd8\xb7\x33\xb9\xea\xaa\xd7\x30\x06\xe3\x5b\x8d\x8d\x98\xbe\x75\x43\x23\x47\xc1\x1c\x1b\x31\x60\xe6\xd0\xa0\x28\x6b\x77\x1c\x19\xab\x5d\x35\x03\x83\xea\xfc\xda\xe3\x72\x9f\x03\x63\x86\x3b\xd1\x82\x14\x8d\x04\xec\x8d\x5a\xe0\x82\xb0\xcd\x89\xce\x37\x49\x2d\xe1\xa3\xb0\x25\x86\x62\xeb\xa9\x02\xdc\x3e\x3b\xdd\x11\xa0\x32\x8d\x83\x28\x88\xad\x33\x2b\x41\x7f\xbb\xab\x03\x50\xf5\x16\xcb\x03\xee\x8b\xe8\xe2\xf2\x35\x01\x55\x76\x4f\x03\x19\x8f\x48\x07\x65\x21\x09\x69\xcb\xe3\x5b\x0e\x2c\x08\x6c\xdf\x25\x88\xad\x9a\x21\x17\x8b\x84\xdc\x55\xfb\xc6\x19\xc6\xcd\x37\xd4\x2d\xf5\xe6\x9e\x33\xe0\xe2\xb3\x65\x8c\xbb\x81\xe8\xd4\x44\x8e\x87\x5b\x47\x5c\x6b\x34\xce\x2a\x83\x77\x45\xe4\x57\x8e\xaf\x11\x39\xb1\x72\xb5\x17\x11\x8a\x92\xb0\x28\xc9\xe9\x19\x53\x26\x38\xde\x5b\x0d\xfb\xba\x7f\xdc\xd5\x18\x80\x9e\x45\x9c\xb8\x4a\xb0\xa1\xd1\xb7\x9f\xe0\x53\xf1\x40\x13\x26\xa9\xf1\x89\x45\x5b\x18\x25\x81\xed\x33\x26\x72\x7e\x4d\x22\x3a\x0a\xe7\x09\x18\x41\x8b\x39\xd3\x53\xd5\xc2\xdc\x12\xa1\x69\x7a\xe2\x69\x47\x7b\x14\x8d\x6d\xd4\x2d\x04\xb0\x5e\x11\x57\x54\x85\x1b\xee\xde\x2a\x7d\xe9\x65\x7c\x76\x69\x1f\x46\x53\xa4\xb0\xe7\x08\x70\xbc\x60\xe5\xd3\x16\xe3\xf8\x1e\x69\xb1\x49\xc0\xfe\x3b\x6b\x9d\x69\x6e\x17\x10\x28\x0d\x0a\xa5\xf3\xc4\xbe\xed\x80\x46\xb3\x11\xd9\xec\xa0\x72\x56\x7b\x97\x4c\x04\x37\x30\x95\x33\x13\xf8\xda\x20\x02\xe4\xf1\x51\x2f\xe0\x68\x97\x75\xc7\xe8\x2f\xfb\x17\x66\xbd\xc5\xc4\x42\x5a\x75\xfe\x75\xca\x77\xe3\xff\x3a\xeb\x2e\x57\x11\x84\xf1\x56\x45\x78\xa8\x3e\x73\xb0\x9e\xae\x90\xd0\xcd\x45\x87\xbc\x6f\xea\x9e\x62\x59\x34\xf3\x1c\x58\x88\x03\x74\x7b\x61\xf0\xc6\xa0\x36\x4f\x64\x44\xf8\x53\x19\xf8\xd4\x16\x0b\x4b\x22\xc0\x2a\xb7\x6f\xec\x43\xbc\x4b\x2a\xff\xfc\xc1\x50\xdd\x58\xb2\x34\x19\xe1\x18\xb2\x42\x94\x39\x85\xd4\x6d\xe4\xd3\x33\x5f\xe0\xf0\xfe\x6c\x5e\x4c\x3a\x4e\x34\x52\x79\x3b\x5b\x86\x16\x75\x31\xb3\xbe\xb8\x71\xd6\x2f\x7c\x41\x3f\x71\x4d\x28\x76\x67\xe7\xa2\x47\x70\x4c\x59\x2b\x24\xe9\x9d\x02\xf9\x8a\x01\xc4\x01\x7c\xef\x3c\x7e\xd0\x74\x47\xeb\x10\x84\xff\xed\xc7\xcf\x17\x85\x75\x49\xf4\xd5\xca\x81\x60\xa3\x09\xe1\x51\x6b\xc6\x63\xe5\xd1\x58\x73\xce\x07\x2d\xdb\x91\x31\x25\x51\x14\xdb\x26\x71\x40\xf9\xd9\xe8\x28\xcf\xa6\x5e\x47\x03\x0e\xe5\x93\x2d\xe7\xf6\x3d\x1d\xcb\x33\xc8\x70\x09\x5a\xe1\x9e\x94\x14\x6a\xbc\xe6\x06\x22\x4a\x74\x04\x8b\x28\x23\x86\xe6\x12\x51\xf5\x55\x64\x15\xac\x4d\xf8\xc4\x92\x2b\xba\xe2\x66\x0f\x34\x4f\x2a\x3a\x82\x5c\x8f\xc9\x36\xb8\x3d\x74\x65\x14\x67\x41\xbc\xaa\x49\x54\x8b\x13\x57\xef\x20\xf6\xcd\x28\x28\xf0\xb1\xe4\xe7\xeb\xb8\xf4\x06\xd9\xe1\x81\xee\xf9\x6a\x5b\x30\x90\x82\x84\xa3\x92\xe6\x6a\x92\xe0\xf6\xde\x6a\xae\xfa\xcb\xf8\xe2\x75\x6b\xc9\x51\x11\xa7\x9b\xd4\x52\x4f\x3c\x17\xf3\xae\x0a\x3f\x8e\xe5\x51\x19\x3a\xda\x7e\xe7\xa6\x56\xd0\x34\x94\x34\xe4\x71\x7d\xdb\x18\xec\xc6\x5e\x3d\x4c\x23\x41\x65\x06\x99\x45\xc3\xbe\x41\xe2\xfb\x95\x5a\x7f\x88\x35\x04\xff\x35\xe4\x7e\xe9\x88\xda\xf0\xef\x0f\xc5\xfc\x0f\xbc\x8f\xfe\x7e\x17\xde\x27\x5e\xd6\xc7\x8f\x32\xde\x96\xf5\xed\xa7\xc3\x56\x5c\x54\x1c\x66\xb5\xf1\x37\x5b\x59\xcc\x56\xac\x82\x5f\x8c\x9f\x97\xdf\x12\x87\xbf\xfc\xf3\xaf\x7a\x0a\xcf\xc4\xa9\x9f\xeb\x9d\xba\xac\xf9\x1d\xb2\x45\x36\xcc\xd6\x75\x79\x1c\x26\xfe\x7a\x98\x67\xe8\x79\xd4\x61\xeb\xd0\xcd\xb8\xa7\x5d\x13\xc3\xde\xa0\xb5\xe5\xed\x65\x48\xb1\xb5\x15\xfb\x86\xc7\x5c\xcd\xac\xed\xae\x69\x56\xf5\x1e\x24\x5a\x4d\x5f\x7a\xc0\x5b\x7d\xb4\xab\xae\xc2\x2d\xce\x7a\x5b\xbf\xf7\x73\xfb\x27\xcb\x6f\xbb\xcd\x6b\xae\xbb\x89\x00\x24\xf0\x3f\xf7\x75\x99\xeb\x1b\x6f\x73\x74\xe5\x6d\x8e\xef\xa9\xcd\x3d\x97\xde\xe6\xea\xd6\xdb\x1c\x5d\x7b\x9b\xa3\x7b\x6f\x73\xf3\xe2\x9b\x83\xb1\x81\x87\x8d\x13\x16\xe5\x2b\xde\x7d\x3b\xf1\x5e\x7e\x3b\x59\xfd\xf6\xdb\x49\xd3\xeb\x6f\x27\xee\xfd\xb7\x93\x7b\xb8\x00\x37\xbf\xf3\x0d\xb8\x93\xc6\x57\xe0\x7e\xef\xb7\xfc\x4f\x1a\x78\x9c\xcd\xeb\x5c\xce\x64\x44\x15\xfe\x43\x30\x27\xf2\x3a\x9b\x63\xb7\xb3\xb9\xe1\x25\x36\xf7\x39\x9e\xcd\xb5\xe7\xd9\x1c\xbb\x9e\xcd\xb1\xef\xd9\xdc\x72\x3e\xf3\xe0\x6d\x32\x39\x7e\x53\xff\xb3\x13\xbf\x03\xda\xc9\x2d\x3c\xd0\x4e\x1a\xbb\xa0\x9d\x78\x7c\xd0\xec\xd2\xb7\x9b\x23\x35\x6e\x68\x4d\x27\x49\x73\x47\xb4\x46\xef\xfe\xb7\xe7\x05\x05\xc3\xec\xb0\x6c\xf3\x47\xf8\xc6\x19\xa1\xe9\x05\x89\x32\x0a\xde\x0a\x70\x29\x30\x4c\x23\x88\x5b\x4b\xfe\xf1\xf6\xe7\x37\x65\x39\xfb\x40\xff\x6f\x4e\x8b\x72\x0d\x14\xb3\xeb\x19\xcd\x46\x56\x0e\x0f\x5f\xa3\x6e\x6e\xb4\x25\x5d\x44\xc5\x7d\x1b\x9a\x7c\x59\xec\xae\x19\x0f\x44\x56\x42\x9a\x09\xa0\xa9\xff\x5a\x4c\xd8\xea\x13\x8f\xd3\x2c\xa7\x41\x12\xa7\x74\x6d\xc1\x3d\x56\x19\x1d\x1a\x45\xb8\x7f\xb8\x30\xfb\x70\x61\xf6\x3f\xf7\xc2\xac\xb8\x2d\x2b\x7c\xd8\x8c\xeb\xb2\x7c\xc1\x21\xb7\xbb\x35\x2b\xd6\xbe\x93\x32\x4e\xb4\x39\x13\xa6\x0e\xbf\x97\xe4\x40\xc5\xe5\xb5\x92\x88\xaa\xc4\x30\x09\x8b\x82\x9c\x42\x89\x33\xd1\x48\x9e\xa1\x45\x30\xc7\xb4\x36\x80\x53\x23\x98\xa3\xc2\xb4\xca\xe4\x07\xa9\x09\x5f\xdd\x3c\xb2\x39\x40\x32\x4c\x27\xef\x0e\x8f\x3f\xb2\x9d\x35\x0c\x41\xfb\x92\xc6\x6d\xce\x98\xed\xcf\xe8\xf7\x5b\xf4\xfb\x27\xf4\xbb\xf8\x77\x78\x9e\xc9\x8f\x51\x9c\xa6\xf4\x5a\x7d\xd1\x69\x99\xc1\x0d\x46\x99\x32\x8b\x87\x66\x42\x1a\xa6\x66\xc2\x34\x1e\xe6\x76\x4a\x92\xc4\x4e\x21\x03\xde\x00\x95\x1f\x46\x91\x71\x1e\xa6\x91\xea\x8a\x91\xf5\x93\xf1\x75\x6c\x7c\xbd\x37\xbe\x5e\x19\x5f\xff\x63\x7c\xfd\xd3\xf8\x7a\x67\x7c\xbd\x34\xbe\xfe\x6e\x7c\x9d\xf0\xaf\xb5\xb3\xea\x78\x35\x6c\x8c\xde\xef\xbf\x64\x43\x1c\x90\x9d\xed\x9e\x4a\xfc\x78\xf8\xd3\xbb\xfd\xe3\x93\x0f\xaf\x3e\xfd\xfc\xea\xdd\x4f\xc7\x6f\x02\xf2\x54\x67\xc2\xa8\x06\xfa\xa7\xce\xa9\xe0\x9c\x80\x7c\x21\x56\x82\x8e\x9c\x0e\x19\x9f\x5e\x1e\xfd\xf2\x8e\x2c\x34\xa6\xf7\x47\x3f\xff\xcc\xa0\x8f\x0f\xdf\xbe\x3a\x3a\x39\x0e\xc8\xd6\xe6\xe6\xe6\x40\xb4\x50\x9c\x77\xbf\x48\xb2\xe1\xe7\x80\xb4\x99\xe0\x2c\xca\xb6\x91\xb7\x3f\x84\xc7\x8b\x03\x7d\xa7\x91\x5f\xbf\x60\xab\xf9\xb2\x80\x27\x0f\x8f\x5f\x3c\x2c\x63\xff\xe5\xcb\xd8\x9a\x8a\xfb\x50\x4c\xc2\x9d\xfb\x0a\xfb\x70\x90\x5f\xcf\xca\xec\xaf\x1f\xf1\xda\x30\x84\xb4\x27\xfa\xc9\x0b\x56\xa1\x17\x60\xc0\x72\xda\xde\xe7\x9c\xdc\x98\x0d\xc0\x70\x05\xbe\x97\x2a\x92\xc8\xa3\x47\x32\xb7\x2f\x83\x44\x70\x1d\x79\x42\xaf\xda\xf6\x15\x3a\x23\xda\xd7\x8f\x64\x9b\x95\xb6\xc3\x1d\x6f\xcb\x10\x91\x66\x71\x22\x4f\xc2\xd5\xe9\xbe\x15\x90\x9d\x58\x57\xed\x38\xa8\xa4\x11\x6b\x5c\xff\x0d\xbd\xea\x83\xe9\xb2\x23\x2f\x9f\x13\xe7\xf0\x94\x51\x45\x76\x5b\xd7\xce\xb7\x73\xdc\xf6\x16\x90\xed\x6f\x9e\xf1\x92\xe8\x4e\xb2\xbc\x70\xc6\x24\x9e\xa2\x71\x2b\xf8\xe6\xfb\x5e\xcb\x24\x79\x2b\xf8\x6e\x73\x71\xd6\xdb\x6e\x14\xe7\xe9\x41\xec\x3d\x88\xbd\xff\x06\xb1\xc7\xaf\xf7\xdf\x83\xdc\xfb\x1a\x8a\xbb\x2c\xe8\xd3\xdb\x57\x7a\x5e\xc8\x96\xb5\xfd\x81\x10\xf7\xfa\xfd\xa1\xd1\x77\x18\x80\x7d\x2b\x0d\x7e\x9e\xc6\xe5\xdb\x70\xa6\xb4\xc5\xb6\x54\xa8\x03\x2e\x83\xda\x9b\x52\xd5\x64\x4a\x7b\xa0\xc5\x62\x7b\xcb\x50\xf3\x03\x94\xb1\xb9\xa9\x0a\xfd\xad\x26\xef\x3c\x3c\x3f\x0f\xc7\x54\xd5\x84\xf3\x90\xee\x1f\xd8\x79\x53\x0f\x4e\x94\xfd\xb6\x3e\x3b\xc9\x2e\x68\x12\x0e\x65\xb5\x76\xb6\xde\x62\x04\xbe\xec\xb1\x1f\x39\x82\xf8\x69\x29\x44\x31\x09\xd3\x34\x4b\x8d\x7e\x9b\x10\x7a\x5b\x13\xd4\x40\x2c\xa9\x05\x36\x56\x81\x07\x02\x93\x52\x6f\x97\x82\x7a\xa0\x65\x98\xc4\xd6\x2d\xf0\x02\x19\xc8\xd4\x76\xcc\xad\xd1\x86\xab\xaa\x14\xc1\x19\xcc\xea\x81\x43\xa0\x9f\x4d\x58\x1f\x28\x1e\x69\xd8\xf2\xd5\x22\xc6\xcd\x6d\x84\x1b\xa3\x6f\x5a\x00\x95\x29\x57\x28\xc3\x8b\xc9\x29\x3d\x2a\xa7\xee\x84\x86\x39\x26\x73\x8c\x19\xc6\x26\x81\x2a\x62\x4f\x01\xc6\x7a\x4e\xa6\xcd\x2e\x06\x5a\x0f\x48\x92\xc4\x7e\x10\xcc\x52\xba\xd1\x4b\x06\x16\x43\x2e\x1b\xa8\x06\xb0\x78\x98\x9a\x81\xe3\x41\x6a\x5c\x82\x15\xf2\xbb\xc2\xe9\x10\x19\x17\x61\x12\x47\x61\x99\xe5\x24\xa2\xc5\x30\x8f\x85\xfe\x5b\x66\x64\x42\xaf\x9e\x70\x17\x60\xb8\x38\x48\xfe\xfa\xf1\xe8\x9d\xe5\x23\x57\x66\x6f\xb3\x34\xfe\xcc\x23\x40\x79\x5d\xdd\xe2\x02\xd5\xc0\x53\x52\x58\x2f\x7c\x25\x50\x0b\xcc\x82\x46\x46\x75\xf9\x4b\x7a\xfe\x31\x2e\xad\x4a\x2f\xe9\x39\x29\x58\xea\xc9\x87\x9f\xd7\x96\x04\xc6\xe6\xba\x01\xeb\x28\x89\xc2\x32\x54\x07\x2a\xaa\x9f\xce\x01\x42\x0f\xb7\xad\x27\x5b\xc0\x35\x7c\x56\xf2\xd7\xe2\x65\x58\x86\x6a\xf1\x7b\x17\x4e\x69\x00\x74\xe0\x83\xf9\x52\x17\x0e\x0c\x4c\x90\xfb\x0b\xc7\x16\x48\xb4\x6b\x84\x2c\xc0\xb9\x44\x1e\x69\xc3\x0b\x5c\xbc\x8a\xee\xb2\x81\x9e\x85\x91\xec\x65\x99\x11\x7a\x35\xa3\x43\xa6\x46\xaa\x5b\x32\x78\x5c\x45\xf8\x22\x1f\x8d\x35\x8a\x73\xca\xe0\x22\xf1\x18\x9e\xe5\x0a\x39\x9c\x84\x79\x38\x2c\x69\x5e\xc8\x93\x36\x70\x8f\x11\xa5\x91\x46\xe7\xad\x23\x1e\xa7\x3d\x74\x25\x81\x6c\xfa\x07\x0e\xe2\x41\x13\x19\x0f\xda\x8a\xad\x2d\xfa\x60\x8c\x18\x07\xe9\x41\xeb\x8a\x1e\xd4\xe3\x89\xf1\xc5\x1d\xb5\x00\x06\xde\x83\x86\x4b\xe3\xca\x51\x63\xab\xdb\xff\x35\x8b\x53\x78\x2a\x85\x3c\x07\x1c\x24\x20\xad\xcd\x56\x97\x6c\x08\xe0\x0a\xff\xd3\x5b\x8f\x05\xbc\x95\xf5\x9f\x3e\x18\xd0\x89\x15\x47\x43\xb4\x70\x83\xc7\x3b\xbf\xed\xb8\x54\xf9\x03\x9b\xb1\xa0\x40\x89\x05\x6f\x60\x78\x47\xc7\x8d\xf0\xee\xc8\xbe\x93\x0a\x31\x24\x5a\x1d\xa7\x0c\x89\x9f\x58\x38\x1a\xbc\x27\x52\x19\xab\x5c\x7b\xff\x72\x09\x74\xc2\x95\x6c\xb5\xb9\x9e\xf0\xa7\xd6\x07\x03\xf2\x3a\x4e\x23\xc2\xef\x58\x8a\x86\xaa\xa7\xd2\x99\xc0\x6a\xb5\xb4\x43\x0d\xb8\xa0\xf5\xe0\xf5\xb6\x09\xbd\x92\x37\x09\x94\xf5\x83\xa5\x71\xfb\x03\xdb\xfb\x57\x5b\x2d\x18\x9a\x6d\x7c\xfd\x0c\x7c\xdc\x84\x6b\xdb\x2e\x89\x37\xf6\xb6\x31\xb8\x7c\x86\x1c\xbb\x58\xe9\xaa\x3a\x31\xab\x47\x3c\x3c\xa3\x6a\x18\x91\x0e\x2f\xb2\xb7\x47\x36\xbb\x86\xbd\xe4\x3c\xa7\xe1\x67\x0d\xca\x7a\xb9\xb1\x47\x44\x70\x07\x36\x82\x07\x93\x30\x3f\xc8\x22\x0a\x18\xbc\xe6\x10\x36\xd8\xd2\x2b\xae\x28\xf3\x66\x1c\xc2\x07\x6d\x25\x16\xd9\x67\x45\x7e\x3b\x1e\x81\xea\xfe\x3c\x4c\x72\x9b\x91\x2f\xca\xaa\x20\x11\xe6\x60\x7b\x5e\x78\xe8\xcc\x72\x3a\x8a\xaf\xf8\xfb\x75\x9b\x57\x5d\x36\x0a\x20\x35\xfc\x8f\x4b\x88\x87\x16\xab\x47\xdf\x7b\x85\x00\x96\xff\x30\x01\x69\x5e\xfb\x94\x87\xef\x81\x5d\xe3\xa5\x0b\xf1\xe8\x81\x68\x06\xe6\x0a\xc6\xf1\x82\xf2\x7c\xf4\x61\x3a\x88\xdb\x13\x7c\x3a\xc8\x11\x61\x35\x69\xee\x18\x65\xb9\xed\xc9\x5a\x94\x79\xbf\xe2\xce\x08\x1a\x51\x06\x35\x14\x63\xb3\x5f\x76\xe2\xdb\xcd\x74\x70\x12\x16\xef\xf2\x1b\x61\x13\x35\x08\x6b\xef\xc6\x1e\x49\xe5\xba\xf0\x03\xd9\x26\xcf\xd9\x96\x84\x6c\x10\xb6\x1e\xa4\x3e\x9e\x10\x0f\x38\x4c\xe8\xd5\x7d\xb2\x86\xf5\xe2\x87\xcd\x1b\x4b\x44\xc3\x6f\xc6\x1c\x8e\xcc\x40\xdc\xf1\xdb\x70\xc0\xef\x36\xac\x56\xc4\xe0\xd1\x3c\x49\x14\x19\x06\xf4\x82\xa6\x25\xdf\xb2\x80\xc8\xff\xb5\xc8\x52\x12\x9e\xc7\xb6\x8c\x97\x71\x4b\x8f\xb3\xd7\xf3\x24\xb1\xaf\x32\xcb\x3b\x3d\xac\xf4\x13\x5e\xda\xbd\x93\xc8\x2b\x76\xea\xd5\x82\xdd\xad\xc3\x50\xa4\x18\x72\x7c\x88\xc1\xbe\xfb\xe0\xc9\x14\xa7\x11\xbd\x3a\x1a\x75\xda\x9d\x76\x17\x82\xb3\x3e\xd9\xf2\xdc\x4a\x56\xf0\x8e\xbb\x6e\x79\x3d\xa3\xa2\x3a\x00\x02\x2e\x32\xc3\x0a\x76\xe2\xee\x17\xf9\x7a\x77\x9f\xc1\xef\x92\x85\x50\xc5\x4c\x07\x5c\x55\x0b\xd9\x20\xed\x0e\x1b\x39\x85\x7d\x83\xb4\xbb\xed\x46\x73\x2f\x8a\x8b\x59\x12\x5e\xf3\x71\x81\x18\xbf\x69\xc9\x74\x5b\x45\x0d\xfb\xea\xe8\x15\x64\xbf\xe4\xc5\xea\x2e\x9a\x33\x6c\xe6\xe0\xfb\xa7\x97\xd1\x02\xb6\xa4\x59\x1c\x43\xc7\x7d\xf9\xd4\xe9\x75\x47\x78\xb7\x76\xc9\x93\x1f\x55\xa2\x1a\x56\xb7\x6d\xb5\xf1\x07\x94\xeb\xb4\x33\xb2\x06\x99\x05\x18\x1f\x6c\xf2\xdc\xbe\x5a\x2e\xae\x65\x92\x00\xc7\xfc\x19\x0c\x74\x47\xd9\x5e\x3f\xc9\xc2\x88\x46\xea\x48\xc6\x33\x27\x70\x07\x8e\x35\x93\x54\x5d\x2d\x1e\x90\xe3\xa3\x97\x47\x01\x99\x86\x9f\xe1\x90\x26\x4e\x2f\xe6\x49\x4a\xf3\xf0\x3c\xa1\xf7\xd9\x41\xbd\x1b\xb0\x2f\xd1\x6f\x91\x27\x04\x65\x77\xbb\xfd\x9c\xce\x92\x70\x48\x3b\x6d\xd2\x86\xd8\x8a\x6c\xb7\xd0\x32\xdf\x67\xcd\xd2\x0b\x9a\x97\x85\x7e\xed\x16\xf4\xbe\x88\x0e\xe3\x69\x98\xd8\x42\x36\x4e\xfd\xc2\xbe\xcc\x5e\xf2\x02\x2e\xe7\xd5\xbe\x5c\x6b\x46\x16\xe5\x0a\x9e\xc0\xb4\xf4\xed\xd5\x32\x73\x9f\xa6\x55\x8f\x3f\x35\xe9\xe3\x52\xdd\x96\xc9\xc4\xfb\xea\x17\xc2\x55\xff\x2e\x72\x2a\xcf\x2b\xdc\xfe\x79\x5e\xc5\x17\x07\x19\xe6\x8a\x62\x6c\xf6\x39\x40\x42\x8b\xe2\x78\x12\xa6\x9d\x4d\x88\xe2\xfc\x84\x5f\xfe\x10\x97\x68\x04\x63\x6d\x75\xe1\xe5\x64\x94\x63\x50\x71\x7f\x0e\x61\xd2\x05\x29\xc3\xf4\x5a\xc4\xbf\x12\x11\x81\xd3\x6a\xb2\xf6\x05\x5d\xf7\xd3\x88\x1f\xc4\x71\x1e\x8a\x47\xd7\x85\x78\xc7\xa0\x20\xe7\x74\x94\xe5\xb4\xef\xf0\xd5\x1b\xb1\x75\xa8\xa7\xfd\x8d\x58\x83\x96\xb0\xd6\x1b\x58\xe7\x0d\xe2\xab\xf9\xfb\x58\x78\x6c\x4e\xc3\x2b\xfe\x68\xec\x55\x5c\x5e\x07\xe4\x3b\x38\x4c\x92\xab\x4e\x5c\x88\x98\xe2\x50\xb4\x6b\x2f\x32\x68\x90\x3b\x1b\x0c\x62\xd7\x28\x8a\x87\xb3\xbe\xb0\x55\x56\xf8\xb3\x5e\x30\xde\x61\xbb\x10\x4e\xb4\xb6\x17\x05\xbc\x6e\xf6\xd7\x8f\x47\xef\xfa\x8a\xca\xbc\x3e\x1d\x47\x16\xa2\x37\x17\x24\xb4\x1f\xd2\xed\x91\x59\x58\x14\x4c\x76\x95\x93\x3c\x9b\x8f\x27\xe6\x0c\x50\x1d\x11\xbc\x06\x58\x5d\x37\x01\x2d\xd5\x9e\xc0\x6e\xc9\xa3\xf3\x56\xf6\x58\x02\x88\x2b\x56\x26\xba\x25\xd8\x2e\xa4\x1b\x37\x42\x40\x3a\xeb\x71\xf1\x3a\x4e\xe3\x92\x5a\x44\xb7\x9a\x01\x1a\x22\x6a\x84\xa9\x65\xb9\x0d\x45\xf3\xe2\x83\x58\x54\xf8\x3c\x60\xfb\xa5\x14\xa4\x3f\xf9\x85\xda\x8a\xd4\x98\x96\xf0\x58\xf8\xd1\xe8\x24\x8d\xbd\xd6\x2e\x28\x5b\x4e\xa8\xf8\xa1\x26\x1c\x29\xb3\x9e\xb2\x4e\xa9\x07\x09\xbc\x6f\xa6\xaa\x76\x28\x34\x1d\xde\x98\x2e\x14\x81\xe8\x79\x05\xa1\x79\x9e\xe5\x32\x32\x14\x6f\x71\x41\xd2\xac\x24\xc3\x2c\xcf\xe9\xb0\x0c\x2e\xd5\xbc\x31\x5b\x6d\x4c\x20\x56\x50\xb2\xc0\x9c\x67\xc2\x7f\xcf\xe1\xbf\x7e\x99\xfd\x9c\x5d\xd2\xfc\x20\x2c\x68\x07\x84\x0b\x3f\x7b\xd1\x72\x8c\x41\xfd\x5d\xf8\x7b\x88\x43\xd4\x53\xf6\xff\x99\xde\x8a\x23\x10\x1c\x78\x1f\x33\x1e\x0f\x08\x98\xd2\x4b\xf2\x8a\xf5\xaa\xd3\x06\xa7\x0b\x68\x08\xb8\x8c\xff\xab\x5d\x12\x7a\x15\x17\x65\xd1\x23\xb3\x84\x86\x05\xa8\xc5\xd0\xf3\x2c\x55\xa4\x1a\x65\x49\x92\x5d\xc6\xe9\x18\x4a\x16\x4c\x0a\x5a\xd3\x48\xb4\xb0\x07\x61\x4e\x7a\xfa\xf6\x55\xcd\x1b\xcd\xaa\xf5\x10\x84\xce\x0c\xec\x1d\x7e\xa6\x30\x09\xb9\xc0\x07\xb7\x90\x18\xdc\xda\x95\x90\xe5\x2c\xc0\x44\x2d\x84\x8c\xe1\x03\xcf\x49\x2b\x38\xeb\x7d\x56\x14\xf1\x79\xc2\x87\x10\x22\xd9\x08\xdf\xda\x8f\x87\x4c\xbf\xcc\x4b\xfe\x93\xa9\xd4\x92\x5a\xaf\x46\xa3\x78\x7c\x2d\x3e\x8e\x24\x2b\x3d\x21\x9f\x59\xf5\xfc\x4f\x1f\x1c\xc3\xa7\x38\x63\xe6\x60\x53\x0d\xa6\x8e\x79\xf9\xa7\x3c\x14\xe6\x70\x63\x0d\xa7\x4e\x62\xf9\xa7\x38\xba\xd5\x79\xbc\xc0\x93\x27\x6a\x62\xea\x13\x55\x5e\xe0\xdf\xe1\x79\x66\xe4\x79\x4a\xc8\x13\x51\xde\x01\x38\x48\xc5\x79\xbc\x04\x6a\x05\x2a\xcc\x3f\x05\x15\x10\x08\xb1\x20\xd0\x07\x1c\x6c\x0a\x82\x50\x4d\xc3\x31\xfa\x5d\xca\xdf\xb6\x4a\xc1\xe5\x82\xb5\xf3\xbd\x51\x7a\x3a\x67\x87\x61\x98\xb2\x9d\x41\xa8\x44\xb3\x48\x97\xa7\x55\x39\x09\xc9\x9b\x57\xff\x80\x4d\xb8\xd4\xd6\xee\x4d\xa0\xa8\x75\x56\x6e\xed\x7e\x99\x50\x19\xee\x32\x44\x4e\x15\xe2\x11\x22\xf4\x5a\x07\x9b\x4f\x61\x41\x2e\x29\x9b\x20\x3a\xce\x91\xec\xc6\x1a\xd2\x86\x7e\xa1\xc6\x96\x5c\xf6\x13\x8b\x14\xae\xea\x30\xcc\x52\x48\x60\xa5\x88\x97\xc0\x6f\x36\x9b\x92\x8a\x4b\x27\x4b\x1f\xc2\xcb\xb0\x40\x40\x9e\x1b\x95\x04\xf8\x0b\x69\x56\x4b\xa7\x6f\xc8\x69\xec\x99\xc1\x97\x34\x7e\x98\xb0\x7f\x96\x29\x5e\x66\x75\x13\x1c\xed\x17\x7e\xb3\xa9\xce\x66\xdb\xef\x38\xd9\x81\x20\xf7\x33\xd5\xcb\x78\x4a\x8b\xdf\x63\x9a\xa7\xc2\xb8\xc8\x26\xb7\x32\x55\x15\x7c\x9b\xcf\x96\x68\xa2\x9c\xca\x1c\x6e\x50\x0d\x69\xc4\x13\x9a\x0b\xe4\xd1\x21\x1b\x7a\xcd\x0a\x26\x36\x15\x6b\x4e\x23\xd0\x00\x8a\xfc\xd8\x0b\xce\x1a\x84\x25\xdb\x9f\x6f\x98\x0e\x08\xb3\x5e\x96\x17\x3f\x6e\x6e\xc8\xe6\xae\x77\x6f\x23\xf0\x3a\x7b\x13\x9e\x6e\x6c\x88\x04\xc9\x65\x4b\x1e\x3d\x22\xe2\xb7\x4f\xe7\x67\x55\xda\xb9\x78\x83\xe1\x8b\x44\x68\xa8\x62\xa2\xb0\x32\x89\x6c\x5e\xb5\x7b\xed\x36\x3e\x6f\xb1\xe2\x15\xfa\x4a\x63\x3e\xa9\x54\xe9\x52\xf9\x70\xb3\x87\x53\x14\x9f\x70\x30\xf9\x8e\x8e\xda\x89\x09\xff\x65\x80\x2d\x2f\xb3\x76\x41\x86\xea\x4d\x25\x87\xb5\xcc\x27\x97\x9a\xf0\x57\x05\xd7\xa0\x3d\xb2\x89\xd3\xb4\x77\x19\x2c\xc3\xc0\xcf\x11\x67\xf9\xe6\x2b\x04\x5e\xe8\xa0\xd8\x91\xaa\x00\xb6\x48\x2c\x1d\xba\xd6\xe8\x8e\x7f\x2d\x18\xe5\xfe\x2c\x99\x17\xba\x09\xe2\xdb\x1b\x64\x54\x01\x99\x86\xa4\x09\x1d\x7e\x2e\xe4\xae\x89\x8b\x48\x79\xca\x59\x88\x2b\xab\xc9\x35\x44\xd3\xf6\x3e\x05\xce\x59\x7e\xe8\x7d\x06\xdc\x7c\xd0\x1b\x55\xc0\xe6\x7f\x88\x0a\xe0\xf8\x92\xf0\xba\x99\x18\x3a\x0b\xb9\x31\x72\xa2\xbc\x65\x41\x1b\xfc\xef\xe6\xd5\xe9\xe6\x93\xef\xc3\x27\xa3\xb3\x2f\x4f\x37\x17\xff\x6f\x10\xf7\x4b\x5a\x94\x0a\x7c\x85\xce\xd7\xf4\xf9\x2b\xf5\xb6\x41\x3f\xc1\x00\x30\xf8\xdf\xce\xe6\x55\xf7\x79\x6d\x47\x31\x07\x0e\x06\xfa\xb5\x3a\xfe\x1e\x1d\x34\x8f\x47\xf2\x16\xfe\xbf\x53\xb8\x4f\xcf\x16\x64\xd4\x6d\x93\x83\x45\x40\x4e\x62\x86\x8c\xf1\x36\xc6\x6c\x0b\x13\x74\x08\x6c\xff\xc9\x6b\x2f\x98\xd5\x64\x78\x3c\xaf\x5d\x40\xd0\xf1\x62\xca\xfe\x1d\x86\xb3\x02\x94\x07\xf1\xbb\x87\xa3\xa4\xda\xad\xe5\x8f\x3f\xa0\xc6\x1a\xc8\x8f\xd4\xda\xce\x29\x43\xc3\xe1\x84\x0c\xc3\xc2\x41\x13\x17\x9c\x4b\xe6\x53\x31\x3a\x88\x95\xf8\x1c\x6b\xce\x50\xbc\xae\x62\x3e\x9d\xd2\xa8\x92\xb7\xac\xea\xee\x9b\xc7\x2c\xf4\x75\xbc\x36\x18\xf0\x0e\x59\xc4\x09\x55\x49\xf1\xcb\x59\x80\xb4\x35\x44\x40\xbc\x09\x0b\x88\x08\x35\x09\x77\x64\x25\xa6\x25\x45\xea\x3a\xbe\xa8\x4b\x4f\x37\xe1\x84\x92\x58\xec\x01\x11\xf4\xcb\x09\x49\x28\xc4\x34\x40\xef\x5f\xce\x66\x34\x67\xad\x95\xe3\x90\xc2\xdb\xa1\xe3\x98\x3f\x2f\x19\x16\x74\x1a\xce\xd8\x78\x6c\x19\x76\xbe\x8e\xf2\x5f\x40\x8d\x86\xd8\x88\x5b\xcf\xba\xe4\x47\xf2\x2d\x5b\xcd\x45\xd6\x69\x7c\xd6\x2f\xb3\x13\x56\x91\xb0\x04\xad\xef\xed\xa1\x4c\xe0\xf8\x7a\x84\x3f\xec\x79\x30\x62\xdb\x92\x85\xb1\x22\x60\x3f\x9a\x93\x5a\xe2\x9b\x4f\xee\xa9\x47\x50\x14\x9b\xbe\x15\x1b\x3d\xc9\x8e\x15\xbc\x58\x66\xf7\xca\x8b\xd2\x78\xad\xd6\xe5\x15\x58\x11\x99\x8c\x15\xfb\xd9\xb1\x0f\x44\x3d\xed\xb6\xe0\x25\x97\x4f\x0d\x02\xdf\x8a\x6b\x11\xd0\xd0\x69\x3d\x43\x54\xc3\xc7\xb2\x15\xe8\xd4\xdd\xe6\x69\x10\x79\x13\xed\xf9\xc7\xb8\xf4\x7b\xb6\xef\x19\xf1\x67\x2c\xe4\x41\x9c\x62\x71\x83\x83\x97\x31\xb0\xc9\x42\x76\xfb\x37\xf6\x2a\xb9\x1b\xf1\x97\x2d\x4a\x97\x62\xaa\xe5\x4d\xab\xa4\xa9\x79\x6a\x4d\xd3\x10\xa4\xd2\xfb\x99\x6c\x6f\xf2\xc8\x5d\x4f\xc4\xf9\x20\xaf\x93\x3b\x03\x6f\x5e\x11\xee\xdb\xe1\xfa\x76\x2d\x65\x65\xff\x61\xbf\x88\x01\x82\xe5\xb6\xf2\xdf\x6a\xc6\xbf\x96\x36\xe3\x5d\xf6\x64\x68\x6b\x49\x0f\xa4\xc3\xf3\xb5\xb6\x6e\x99\xf5\x20\x12\x67\x5f\x3e\x7c\x26\x84\x7c\xfa\x94\x3b\x27\x4b\x8c\xfa\x5a\x63\x8f\x3c\xdd\xf4\x1f\x12\xc8\x70\xe0\x72\x33\x5d\x68\x2d\x77\xf9\x23\xb7\xde\x9d\xa4\xef\xe4\xcb\x78\xf8\x96\xaf\x64\xbe\x3d\x20\xe9\xf0\x66\x58\x6a\xa1\x6c\x5b\x5a\x94\x61\x3a\x64\x52\x44\x17\xbe\xb9\x51\x44\x13\x85\xe1\x1a\x29\xfc\x32\xc2\xd7\x78\x53\xb9\x6b\x04\xc8\x22\x85\xb2\xdd\x94\x50\x72\x3f\xbc\x8c\x4a\x1f\x1d\xdf\xa2\x86\x24\xf2\x3c\x54\xe6\xa5\x8f\x10\xad\xa2\x65\xd0\x1b\xde\xb6\xf6\xfd\x91\x87\xb7\xa5\x31\x6d\x64\x8b\x97\x53\xe7\xb5\xf6\x21\x59\x95\x3e\xb2\xe8\xad\x28\x24\x4b\xb4\x1b\xf6\x88\xb5\xa9\x5c\xde\x1d\xde\xf4\x5b\x74\xe6\x48\xb4\xad\xe1\x64\x60\xfa\x45\x3a\x4f\x12\x78\xab\xa4\xe3\xce\x10\xf0\xdb\x06\x13\x86\xa7\xef\xe2\xb8\xb6\x61\xcf\xcf\x79\x63\x1b\x88\x03\x0e\x78\x1b\x61\xc0\x93\x6e\x35\x90\xa2\x79\x4d\x7b\x03\x81\x38\x97\xf7\xc5\x79\xd7\xa6\x61\x4f\xdc\xb7\x69\x1a\x8a\x34\x28\x58\xdb\x07\x7b\x43\xc2\xd7\x51\x70\x91\xcb\x24\xd7\x99\x9d\xf8\x6b\x61\xce\x2b\xed\x80\x50\xdb\x07\x56\xcc\xbe\x34\xa0\x02\x98\xe5\xd7\xee\x3a\xb5\xbe\x0e\x07\x93\xfc\x3e\xbc\xf6\x65\x5d\x90\x21\x3c\xbe\xd6\xa1\x9e\xb5\x0d\x6f\x47\x57\xe9\x75\x28\xfa\xfd\x8a\x0d\x20\x9d\x4f\xc9\x79\x92\x0d\x3f\x93\x09\x0d\x23\x9a\xb3\x8f\x6c\x6a\x3b\x6d\xc4\xc5\x0b\x96\xec\x53\x1a\x26\xf4\x4a\xbd\x4e\x00\x65\xc9\x28\x4e\x4a\xdb\x98\xe9\x61\x58\x80\x35\x82\x80\xb3\x94\xda\x7d\xfe\x37\x5b\xdb\x7a\xa3\xcf\xc1\x97\xd0\xa5\x7a\x9b\xce\x71\x61\x54\xbe\x5d\xba\x0b\xe5\x7b\xf1\x3b\xf7\xbe\xf5\xed\xbe\xdf\xd1\x74\x64\x92\x8c\xa9\x79\xb3\x78\xe8\x8e\xc3\x31\x4b\x5e\x36\x0e\xa5\x02\xaa\x19\x00\xc0\x64\x0c\x00\x14\xab\x1d\x80\x67\x4f\x35\xfd\x39\xf4\xad\xe9\x0f\xa8\x30\x26\x1f\xf9\x1d\xa0\x5b\x51\xbf\x22\x00\x90\xba\x1e\x17\xe8\x9f\xfc\x06\x9b\x50\x06\x03\xf9\x43\xa5\xc2\x6d\xa0\x40\xfd\xea\x09\x3c\x6f\xe8\x55\xc0\xff\x93\x29\xc2\xb5\x24\xd0\x3f\x79\x0e\x72\x3b\x09\xf0\x87\x2c\x77\x52\x8e\xbe\x0b\xc4\xff\x32\x0d\x1c\x59\x02\xf9\x43\xe3\xe1\xb0\xf2\x97\x4e\x17\xf0\xea\xa7\xc0\xe3\x7a\xe3\x06\xbe\x44\x0e\xed\x3a\x79\x06\x9e\x34\x03\x56\xfa\x53\x06\x76\x82\xec\xc7\x2f\x14\x7a\xf1\x0b\x45\x7d\x80\x34\xf1\x43\xc2\x29\x3d\x32\xc0\x1f\x32\xd7\x34\x66\x07\x4e\x8a\xa2\x1a\x57\xe1\x03\xfd\x93\xe7\x20\xbd\x39\xc0\x1f\x32\xd7\xd8\xa3\x04\x76\x82\x84\x42\xf9\x56\x8e\xb5\xa9\x0f\xdc\x24\xd9\x42\x07\xd2\x49\x92\x38\xa5\x9a\x16\xa0\xdf\xb8\xbd\xe9\x38\x50\xbf\x64\x3a\x5f\x6d\x03\xf5\x4b\xf5\x9e\x4b\x82\x40\xff\x54\x7d\x62\xeb\x67\x20\x7f\xc8\x54\xb6\x94\x05\xe2\x7f\x85\x83\x49\xc2\x40\xfe\x90\xa9\x20\x50\x02\xf9\xa3\x07\x53\x8f\x07\x90\x14\x81\x17\x5a\xc1\xd6\xf7\xbd\xda\x08\x54\xbd\xd6\xbc\x1c\x7d\xd7\x0a\xbe\xfb\x66\x71\xd6\xdb\xde\x6a\x12\x94\xc5\x9c\xdc\x7b\x7c\x6a\xb7\x44\x2c\x92\x56\x40\x5a\x9b\xfd\xed\xcd\xfe\x56\x6b\x6d\x21\x43\x35\x6e\x37\x7a\x49\xfc\x21\xd8\xcb\x43\xb0\x97\xff\x86\x60\x2f\x02\xcb\x9a\x1b\xab\xf1\xaf\x74\x34\xca\xe9\x35\xf9\x25\x4e\x86\x9f\x29\xf9\xe1\x57\x3a\x1a\xd9\x11\x5f\x1a\x46\x74\x04\xb0\x38\x4c\xc9\x11\xd3\xc5\x43\x80\x8a\xc3\xd4\x05\x7b\x1d\x9e\x33\xb0\xbf\x67\x63\x9a\x14\x25\x4d\x12\x9a\x93\x1f\x46\x90\xe8\x02\xff\x14\x5e\x90\x5f\xb2\x2c\x22\x3f\x8c\x2b\x23\xd1\x3c\xd5\x11\xb8\x44\xac\xd6\xb7\x61\x1a\x8e\xcd\xf0\x30\xfd\x01\xa3\xc2\x20\xe7\x00\x53\x0e\x20\xc3\xc0\x1c\x9e\xc3\xb6\xc9\x06\x8e\xcf\xc3\x54\x82\xbc\x2e\xa7\x1e\x08\xae\x93\x15\x83\x51\x39\x95\x80\x2f\xe9\xf9\x7c\x5c\x03\x1a\xb1\x7c\x15\x15\x7a\x34\xac\x01\x2d\x46\x43\x09\xb8\x7f\x0e\x17\xc2\xab\x20\xc3\xf3\x51\xa9\x1a\x10\xd6\x56\x1f\xaa\xca\x5f\xbe\xa8\x83\x3b\x57\x6d\x9c\x4c\xea\xda\x38\x99\x48\xc0\x77\xb4\xae\x89\x29\x55\x2d\x7c\x4f\xf3\x02\x6e\x83\x55\x43\xcf\x04\x88\x6a\xc4\x65\x98\xd7\x0d\x40\xc1\xf2\x15\x30\x2d\x4b\x78\xff\xcd\x85\x2f\x44\x96\x04\x95\xf2\xcf\x80\x94\x82\x8d\xed\x0a\x75\xa4\xa0\x38\xb1\x10\x42\x12\xff\xb7\x3a\xe0\x10\x07\x92\xa1\xdd\xc4\xdd\x13\x9a\x46\x9e\xb6\xf1\x0c\x09\xf6\x02\x76\x7d\x2e\xd4\x39\x4b\x57\x94\xcc\xb3\x19\xcd\xcb\x6b\x0f\xdc\x4c\x64\x49\xd0\x37\x65\x39\x7b\x9f\x67\x17\x71\xe4\x9d\x18\x4c\xa4\xcc\x44\xb6\x9a\x16\xb3\x61\x4d\x89\x78\x36\xb4\x0b\x34\x8b\x8e\xba\xb6\xa6\xf6\x1b\xbf\xd0\xf3\x1d\xd2\x91\x68\xcc\xf8\xde\xb9\x3d\x97\x53\x7a\x69\x4d\x70\x5d\x12\x85\xfa\x16\x8f\x36\xa3\x96\x4b\x28\x04\x34\x2a\xe5\xeb\x0c\xaf\xcb\x29\x3c\xf9\x81\x51\x44\x62\x0e\xb3\x7c\x98\xcf\x0e\x44\x01\x13\x17\x62\x81\x8f\x86\x4e\x6e\xc8\x67\x2b\x5c\xfd\x3f\x1f\x95\x2e\xfe\x50\x61\x0f\x5d\xdc\xd1\xb9\xcc\x7c\xe1\xd6\x0b\x93\x11\xea\x9d\x4c\x9c\xdc\x94\xca\x6a\xdf\x51\xb7\xd6\x99\x9e\x76\x0c\x44\xce\x42\x07\xee\xfc\xdf\xff\x96\x75\xb0\x59\xe5\xb6\x41\x4f\x2f\x00\x12\x9f\x1d\x0c\xa3\xe7\x95\xde\xac\x85\xb3\x38\x50\x4a\x83\xf8\x9f\x6f\xda\x70\x23\xc5\x58\x15\x46\x51\xcc\xbc\x81\xf1\xd5\x53\x30\x88\x5b\x03\xfc\xe1\x54\xf1\x49\xcd\x40\xfe\xc3\xe9\xa0\x00\xe8\xe8\xfa\xc5\x64\x8a\x69\x11\xa0\xdf\x1d\xee\x0e\xb5\xe8\xee\x32\xcd\x72\x30\x80\x50\xe2\x05\x25\xba\x0f\x19\xd7\x58\x20\xbc\xd9\x1a\x63\x76\x4f\xff\x96\xf5\xad\xb2\x5f\x4c\xb9\x96\x38\xe5\xbb\xc0\x14\xf3\x3d\x7e\xfb\x7c\xf9\x0c\xc3\x85\x57\x9e\x58\x9e\xb6\xe4\x94\x3f\x7a\xa3\x5b\xf1\x99\xd2\xd9\x61\xf1\xf1\x3a\x1d\xc6\xe9\xb8\xb6\x29\x50\xd6\x82\x6f\xc6\x81\x9e\x86\x60\xa9\xf4\x42\x7b\x00\x59\x50\xf2\x1e\x11\x8f\x8c\x07\x5f\x1e\x18\x79\xe7\x58\x42\xc1\xb7\x07\x4e\x5c\x5c\x97\x60\xec\xd3\x81\xc2\x77\x98\x39\xa0\x4a\xf1\xc2\x1a\x38\x65\x82\xa7\x6e\x7d\x21\x4d\x56\x2f\x52\xbc\x58\x6d\x68\x94\xe6\xc1\x8d\x69\x29\xb1\xd7\xd1\x94\xfb\x88\x4a\xc8\x5f\xa8\xbf\x67\x18\x4a\x7c\x3b\x70\xd8\x35\x88\x43\xaa\x14\x0f\xac\x7b\xae\x2e\xcb\x1c\xd8\xe7\xad\x4e\x9b\xab\xca\x3a\x39\x9e\x7a\x0f\x5f\xec\xbf\x43\x95\xb1\x4f\x07\x4a\xc7\xf7\xe1\x60\xe2\xdb\x07\x27\x43\xcf\x28\x40\x48\xf0\xb4\x59\x47\x79\x92\x6d\x15\x29\x1e\x19\xc1\x75\x14\x7c\x6b\x9e\x9f\xc0\x99\x31\x65\xcd\xb3\x51\x70\x00\xb0\x21\xab\xce\xaa\xa3\x38\x07\xbb\xfc\x30\x9c\xc1\x4d\x17\x74\x5a\xec\x19\xfc\xc3\x83\xfd\xf7\x86\x98\x60\xe5\xb0\x3b\x62\xcc\xb5\x73\x36\xd3\x99\xa2\xce\xf3\x8d\x8b\xb5\x0c\xa2\x2f\xaa\x91\x42\x00\x82\xf7\x28\x51\x5d\xf7\xc8\xf2\xa9\x12\xf3\xb0\x2c\x0a\xbd\xa9\x63\x1e\xf0\xa7\x60\xd6\x6a\xcb\xe5\x2b\xcd\x22\xda\xee\x19\x10\x63\x70\xc2\x09\x48\x9b\x69\x47\x9f\x86\x49\x4c\xd3\xf2\xef\x1c\xbc\xad\x1d\x00\xba\xbd\xdb\xd4\x46\xcb\xcb\x2c\xff\x5c\x55\x61\x4a\xcb\x4f\x02\xd4\x02\x31\xdf\x48\x09\x6c\x81\x70\xc7\x66\x25\xe1\x70\x42\x8b\xb8\xa8\x6a\x17\x2d\x27\x9f\x60\xac\x87\x59\xf2\xf7\x3b\xb6\x0f\x7e\x9e\x79\xe5\x7b\x5c\x1c\x64\x69\xca\x03\x51\x21\xbe\xee\x1a\x83\xdc\xf1\x2e\x61\x8f\x1e\x79\x97\x36\x8c\xb2\xd3\xf5\xaf\x2a\x3c\xf4\x82\xd4\xd2\x2b\x99\x0b\x5c\x5e\xe1\x55\x16\xa1\x65\x78\xad\xd1\x0c\xb7\x0c\x56\x8c\xf7\x0c\xdc\x5c\x66\x6c\x35\x5a\xc1\xf6\x26\x4b\xc2\x9b\x94\x56\xb0\xbd\xc5\xd2\xf4\x06\xa1\x15\x6c\x3f\x55\x29\x5c\x9d\x69\x05\xdb\xdf\xa9\x24\xac\xee\xb7\x82\x9d\x6d\x95\xc1\xa6\x52\x2b\xd8\xd9\xd1\x09\x5a\xcd\x6f\x05\x3b\x1a\xa9\xde\x28\xb6\x82\x9d\x6f\x9d\xe4\x51\x39\x6d\x05\x3b\xdf\xb9\xe0\x4c\x9d\x66\x39\x9b\x4e\x56\x31\x1a\xb2\x8c\x2d\x27\x83\xa9\xd3\x2c\x67\xdb\xc5\x16\x02\xae\x1d\x27\x23\xa5\xac\xc4\xf7\x4e\xba\xd4\x81\x5b\xc1\x53\x4f\x03\x26\x93\x56\xf0\xd4\xad\x1f\x36\x97\xad\xe0\xa9\xae\x5f\x6e\xae\x5a\xc1\xd3\x6f\x54\xa2\x69\x5b\x68\x05\x4f\x9f\xa9\x2c\xa9\xb0\xb4\x82\xa7\xdf\xd6\x9b\x3f\x17\x67\xbd\xed\x9d\x07\xe3\xe4\x83\x71\xf2\xcf\x62\x9c\x0c\x93\x04\x82\x73\xdc\x2d\x1a\x35\xb2\x01\x3a\x36\x18\x9f\x11\x46\xbe\x74\xf5\xea\x82\x5f\x87\x40\xc6\x0d\x68\x8d\x84\xd3\xef\x5e\x2d\x7b\xe0\xcd\x35\x10\x79\x2d\x44\xaf\xe1\x64\xdc\x42\x06\x69\x12\xe2\x92\x3f\xdf\x66\x82\x48\x51\x24\x32\x55\x8c\xea\xfd\x24\x31\xba\x62\x2a\x3a\xe6\xae\xaa\x07\x6e\x0e\x3d\x62\xf9\xe5\x55\x58\x5b\xcc\x04\xbc\x3b\xfe\x95\x7b\x36\xb0\xff\x70\xb2\xe3\x6b\xca\xd7\x3a\xa7\x85\x68\x0d\xe5\x87\xd5\xa6\xa3\x87\xa9\x85\xca\x57\x0d\xf6\xd4\xaf\x9b\x1b\x78\xc2\x8b\xd8\x31\x33\xbe\x2c\x84\xdf\xe9\x69\x9b\x69\x95\xf0\x38\x4a\xbb\x47\xda\x65\xc6\x7f\x9e\xf5\x39\x99\xd1\x93\xad\x23\xcf\x51\xb2\xa8\xe6\x74\x74\x06\xde\x41\xca\xb9\x56\x1c\x2f\x77\x3d\xef\xfe\x5b\x68\x58\x7b\x58\xf1\x3d\xc4\x3c\x3c\xfc\x10\x34\x84\x6f\x95\xf4\x3b\x9e\xba\x42\xe9\xf0\xa1\x2f\xbd\x41\x1c\x0f\x4d\x57\x83\xce\xe6\xcd\x38\x1c\xd9\xa3\x8e\xe2\x9e\x87\xd7\xa3\xb0\x0c\x65\x0f\xd8\xef\x7e\xc4\xe3\xbe\xea\xdf\x37\x37\xe0\x51\xac\x00\xe0\x1c\xbe\x90\x20\xe2\xeb\xe6\x46\x3f\x20\x0c\x66\x4e\x56\xb5\x74\x30\x40\x80\xa7\x9b\x67\xfd\x82\x09\x04\xf5\x50\x04\x83\x9e\x0a\x3d\x4a\x73\x98\x3b\x5c\xbf\x7a\x86\x0b\xd7\xb2\x27\xfc\x94\x85\x12\xe9\x9e\x6b\x77\x7e\x55\x77\xfb\xbb\xa7\x9b\x67\xe8\xd6\xda\x3a\xd4\xdf\x25\x5f\xe0\x9e\x48\x98\xa6\x59\x49\x46\x71\x1a\xf1\x76\xc5\xe9\x98\x57\xf4\x5c\x55\x3f\xcc\xd2\x22\x4b\x68\xff\x32\xcc\xd3\x4e\x1b\x97\xe0\x91\x86\x98\x28\x4e\xb2\x71\x1b\xf9\x0d\x8b\x16\x33\x52\x38\xd1\xaa\xa8\x10\x43\xf8\x71\x41\x18\xbb\x8e\x6f\x76\xf6\x78\xb3\x7a\x26\x43\x98\x5b\x22\xc0\x28\x03\x45\xc2\x10\x37\x98\x8e\x57\x74\xc8\x34\x00\xcf\x7c\xec\x41\x34\xab\xf3\x70\xf8\x59\x3d\x83\x0c\x61\x1c\xc4\x3e\x57\x9e\x48\x77\xc2\x7c\x3c\x87\x6b\x34\xa7\xea\x17\x8a\x64\x64\xba\xf0\x4b\x8c\xf0\x7c\x7d\x6d\x31\x1c\x73\xaf\xe3\x40\xb0\x81\xdf\x32\x63\x80\x68\xb1\x91\xce\x93\xc4\x21\x77\x26\x39\x4d\x44\x0e\xd4\x1b\x5a\x09\x31\x42\x0f\x45\x0a\x93\x30\x04\x79\x3b\x8f\x4d\x7b\x21\xd2\xf2\xb9\x64\xef\x64\x3d\x1e\x9e\xbb\xe7\x15\xac\x3d\x29\xde\xfb\xa3\x72\xda\xe9\xf6\x74\x45\x88\xc2\xcb\x47\x2a\x2c\xcb\x70\x38\x39\xce\x0e\x64\x10\x31\x3c\x64\x32\xb2\x18\xde\x43\xeb\xa1\xe5\xfd\xe6\x9f\x4e\x77\x64\xd1\x7e\x98\x24\x6a\x3d\x11\xc0\x15\x5b\x17\xa7\x99\x6a\x1f\xe3\xd9\xc8\x78\x77\x32\xc0\xaa\xad\x60\x1b\x36\x11\x7c\xd6\xb7\x82\x6d\xd0\xdd\xf1\xb3\x93\x3b\x00\x6c\x2d\x84\xad\xe0\xe9\x0e\x53\x99\x9f\x3e\xa8\xcc\x0f\x2a\xf3\x9f\x45\x65\x86\x1d\xfe\x7d\x3d\x5a\xf5\xd7\x22\x4b\xf3\x99\x75\x0c\xfd\x2b\x4f\x54\x47\x96\x79\x9e\xd9\x1a\x30\x4f\x53\x8a\xa8\x6b\x08\x61\x7d\x35\x74\x4c\x47\xc5\x04\x6a\x7c\xaa\x54\x34\x45\x06\xab\xf7\xf4\x6c\x69\x8c\xc5\x30\x8a\x64\x38\x4c\x26\x8d\x45\x61\x88\x30\x0e\x4d\x13\x09\x96\x37\x65\x18\x45\x1e\xff\x64\x22\xfa\xcf\x0b\x95\xda\x33\x78\xb0\x06\xfd\xc4\x92\x38\x8a\x7c\x2a\xb7\xaf\xe3\x45\x7f\x36\x2f\x26\x0a\x62\x69\x8f\xa4\xcc\xae\x6b\xbf\x80\xf1\x36\xcd\xb7\x9c\x9b\x81\x19\x14\x7d\x8d\x66\xba\x43\xa0\x4f\x88\xd2\x88\x1b\xb3\x24\x6c\x0f\xe1\xa6\x79\xde\x13\x8a\x68\xe1\xaa\xc4\x9c\x7d\xf8\x2f\xa1\x2b\x6a\x00\x41\x1f\x1c\x9d\x53\x91\xb2\x47\x20\x32\x40\xc5\xe5\x3f\x81\xf2\x14\x60\xce\xf0\xee\xa0\x52\x5f\xe7\x45\x2a\xd0\x32\xad\x46\xb6\x47\x20\xed\x3b\xaa\x8f\x5d\x60\x5d\x4c\xa2\x7e\x5c\xfc\x3d\x4c\xe2\xe8\x03\x2d\x66\x59\x5a\x50\x51\x95\x73\x71\xd1\xe9\x83\xbf\xbe\x0e\x9f\x63\xfd\xc3\xf4\xc2\x8b\x75\xd7\x41\xba\x70\xdb\x57\x89\x9c\x87\xbb\x72\x3a\xcb\x97\x5c\x08\xab\xe1\xcb\x10\x95\xf7\x45\x1b\x20\xe0\x06\x4e\xb0\x1a\xb5\x40\x43\xa1\xb7\x37\x5e\x45\x02\x18\x4b\x1b\x41\x79\xdf\x5b\xc1\x36\x58\xd1\xc4\x84\x6c\x05\x3b\xe0\x16\xf8\xcd\xc3\x72\xff\xb0\xdc\xff\x59\x96\x7b\xa5\x94\xdf\x93\x81\xac\xa1\xa5\x8a\xed\x77\x72\x0b\xac\x10\x9a\xfe\x00\x32\x57\x35\xa6\x49\x38\x74\xe5\x0c\x5b\xc1\xe4\x5d\x32\xe9\xf2\x86\xb6\x20\x08\x4c\xd9\x0b\x41\xf5\xa8\x5b\x3e\xb9\x71\x09\xdf\xcf\x83\x55\xde\xbe\xe2\xcd\xe1\x0e\x34\xd8\x7b\x09\xa5\xd4\x02\xf0\x86\x5e\x10\x19\x05\xdb\x4c\xf5\x56\x20\xe2\x24\xfb\x51\x9b\xb7\x64\xcf\xe3\x9e\x28\x67\x1d\x1d\x85\xe7\xb1\xc7\x08\x82\x22\x66\x13\x2b\x44\x35\x5b\xf5\xf9\x75\x2e\xd4\xa6\x36\x79\xf4\xc8\x08\x81\x8d\x76\xcd\xbc\x5a\xe3\x9d\x84\x45\xd7\x5a\x85\xeb\x2a\xf4\x04\xd5\x26\x1d\x48\xac\x58\xad\x21\x8f\xc7\xda\xf6\x2c\x0c\x16\x22\x06\x56\x78\xaa\x06\xde\x13\x5b\x77\x4e\x50\x0e\xaa\xc8\x88\x6c\x3c\xd2\x76\xd5\x40\x79\x54\x8f\x12\x8a\x20\x5b\x7c\x63\xed\xbd\x14\x16\x46\x91\xe4\xe1\x42\x6f\xc2\x31\x6f\xc8\xb4\x85\xc2\x54\xc9\x4f\x9c\x55\xfc\x28\x6b\xf7\xf5\x7a\xb3\x7e\x7b\x46\x41\x17\x38\x57\x19\x7d\x6c\xa7\x52\xb6\x1f\xd5\x9e\x4f\xa3\x72\x2a\x8d\xcd\xba\x91\x66\xc8\x90\xa5\x86\xd4\x91\x63\xe4\xd0\x04\x30\x35\x89\x25\xe3\xca\xa5\x45\xa3\x41\xe5\xf2\xe6\xfe\x46\xd4\xc6\xb7\xdc\x4c\x23\x05\xde\x7d\x8c\x2d\x97\xbd\x96\x51\x59\x48\x56\xe9\x9d\x28\x65\xac\x39\x78\xae\xd5\x8a\x37\xac\x72\x38\xf7\x93\xa4\x76\xb8\x00\x48\x1c\xf3\xac\xcc\x60\xdc\x10\xba\xa4\x81\xab\x73\x9b\x71\x9f\xd2\x35\xa9\x55\x71\x5b\x1d\xbb\xa9\x08\x43\xe0\xf4\x27\x07\x7d\x4c\xcb\x42\xb8\xa2\x24\xd7\x24\xa2\xb3\x24\xbb\xa6\x91\xf4\x0d\x84\x9b\x97\xc3\x49\x18\xa7\xf6\x4d\x3f\xc0\xf6\x3a\xcb\x65\x8b\x3c\x61\x1b\xe4\x7e\xd5\xc7\x92\x72\x5e\x2e\x94\x61\x71\xcd\x08\x2e\x7c\x22\x8f\x36\xf4\x8d\xc0\x8a\x1a\xb1\x57\x85\xac\x09\x99\x2b\x35\xfb\xc2\x9b\xf3\xf0\x06\x8f\x63\xe4\x7d\x1d\xe7\xdc\x3d\x83\xdf\xc9\x83\xfc\xc1\x80\x5c\x86\x31\x37\x96\x83\xca\x35\x2b\xb5\x01\x56\x9e\x93\x99\xe3\x2e\xa6\x82\x7a\xf3\x5e\x37\x8c\x76\xcd\x98\xd5\xeb\x14\x6e\x75\x1b\xf5\xdb\xab\x12\xb4\x77\x63\x63\xd7\xdc\x35\x0d\x06\xa4\x28\xb3\x19\xb7\xd4\xc6\xe9\x98\x84\x23\xd6\x94\x6f\x36\xf9\x58\x15\xa4\x53\xc6\x53\x9a\xcd\xcb\xae\xb3\x73\xe4\x04\xf8\x91\x7c\xb3\xe9\xdd\x2b\xf2\xd6\xf7\x19\xf6\x5f\x04\x72\xfd\x1a\x45\x97\x7c\x59\x78\xb6\x74\x36\x01\xf9\x5d\x47\xef\x36\x54\x8d\x88\x77\xb3\xa9\x37\x7e\x3a\xa4\xb2\x12\x4c\x70\x5a\x12\xf2\x99\x31\x64\x8c\x0d\xe1\x95\xcf\x99\xc6\x3c\x4f\x23\x9b\x02\x6d\xdf\xde\x93\x26\x28\x16\x0b\xfe\x73\x02\x39\xdf\xba\x56\x36\xfd\x30\x66\x15\x8a\xc5\xa5\x9a\xc1\x35\x63\x5a\x1e\xeb\xaa\x3e\x70\x56\xd3\x12\x05\x35\xe3\x4d\x58\x4c\x30\x53\xf5\x24\x63\x76\xfd\x3b\xf8\x78\xd4\x11\x00\x7e\x6e\xf3\x16\xf2\x36\x10\x1e\x7f\x12\xb8\xfa\x43\x73\x02\x9a\x2d\x82\x17\xa2\xfc\xcd\x91\x7f\x55\x71\xef\x9f\xa9\xb8\xf7\x55\x7f\xf1\xa8\x63\x72\xdc\xcd\x0d\x59\x87\x1a\x6b\x8b\x11\x25\xba\x3d\xbc\x89\xff\x6e\x33\x05\xf0\x5f\xc3\xe9\x60\x77\x29\x8b\xd0\x33\xf7\x3b\xb5\x23\x23\xff\x06\x03\x75\xca\x97\x64\x63\xc4\xb5\xb0\xad\x90\x62\x7c\xbd\xdd\x5d\x52\x3d\x31\x54\x35\x25\x51\x2b\x86\xba\x01\xb2\xc1\x80\xf0\xc5\x4a\xaa\x0b\x61\x1a\x11\x71\x2e\x42\xc2\x71\x18\xa7\x62\xe6\x5c\x52\xf1\x36\xe2\x92\x3f\xbf\xee\x69\x2f\x80\x4b\x30\xd8\xba\x8e\xb3\xfc\x2f\xe9\xd2\x90\x47\xb4\x13\x47\x82\x6c\x49\x60\xab\x63\x41\x87\x59\x1a\x11\x26\x70\x97\x22\x41\xac\xbb\x9c\x59\x89\x21\x11\xc1\x14\xd6\xb4\xc1\xde\x00\x50\xf7\xdc\x20\x1c\xf5\x1e\xa9\x12\x62\x47\x8b\x24\x65\x51\x66\x39\x8d\x54\x04\x7c\xae\x81\x80\xc5\x67\x1c\x16\x24\x9c\xb2\x05\xa9\xef\x95\xd7\xf6\x5f\xa5\xfc\xb6\xff\x3c\x81\xf9\xef\xa3\x89\xf5\x2d\x5c\x54\xe6\x56\x49\x0c\xb7\x84\x0d\x89\x8c\x93\x4d\x37\x14\xe8\x84\x41\x32\xfa\xeb\x90\x6d\xb3\xaf\x55\x18\x12\x4b\x8b\xb3\xc0\x96\x6c\x1a\x6c\xa4\x78\xc3\x00\xbb\xaa\xf0\x3c\x36\xce\x16\xf8\x45\xa6\x51\x39\x35\xae\x1f\xc5\x64\x8f\x41\x4a\x3d\xeb\x31\xb7\x84\x2e\xef\x93\xde\x21\xa5\x24\x44\xaa\xa9\x28\x2e\xb1\xc8\xbe\xa5\xf4\x52\x25\xc9\x3e\xa5\xd7\x0b\xcc\x0c\x96\x6d\x64\x4b\x7a\x14\x84\x49\x77\xc5\xa2\xdb\x35\x45\x6d\x3d\xd8\xd0\x2c\x44\x98\x18\x69\x28\x8e\x9c\xd2\x3e\x4d\x59\x40\x28\x6d\x59\x6f\xff\x64\x92\xaa\x4b\x0f\x3c\x14\x1a\xe8\x81\x60\x24\xf5\x9d\xbe\x90\x9a\x25\xfa\x5b\x63\x89\xe6\x5a\xb5\xda\x3d\x62\xbe\xeb\xc8\xf1\xef\xa9\x51\xc7\x92\x6b\x30\xe0\xaf\x51\x6a\xdf\x0a\x03\xa9\xf6\x90\xf8\xb2\xd8\x65\xc0\x92\x3a\xeb\x66\xdd\x82\x20\xbb\x66\x93\xc2\x1c\x2e\xdf\x00\x03\xe3\xab\x05\x49\x3c\xa4\x70\xc2\xa0\xbd\x34\xac\x07\x13\x7d\x1e\x23\xe0\xf5\x51\xed\x27\x42\x1c\x5f\x91\xa2\x3f\xcb\x66\x46\x4c\x3e\xb3\x79\x49\x58\x94\x02\xd2\x41\xed\x6f\x0e\x67\xa0\x0e\x2b\x08\xf1\x9e\xd6\xd5\x15\x13\x78\xba\x17\xd2\xed\x36\x69\x12\x2e\x69\x12\xab\x48\x00\xf7\xf9\x3b\x2e\x3f\x92\x4d\x1b\x9b\x18\x69\xc9\xf3\xfb\x72\x0e\x2f\xdf\xfd\xcb\xbf\x3b\x99\x02\x11\x99\x2c\x21\x29\xcd\x68\xca\xc1\x0e\x77\x6b\xdd\x6c\x72\x7f\x16\x5e\x87\xe7\x09\xf5\x35\xcf\xdd\x06\x70\xaf\xa9\x82\xa6\x91\x7e\xc3\x2b\xcd\xd2\x27\x02\x09\x26\x87\xbd\x3c\x2c\xaa\x86\x1e\xc2\x21\x92\xbd\x2a\xd3\x6b\x47\x4e\x95\x1e\xf4\x18\x61\x95\x03\x04\x1e\x6f\x1b\x7b\x1c\xd1\xae\x39\x88\x95\x07\x81\x78\x27\x6b\xec\xfd\xa5\xbe\x07\xcf\x47\x98\xd6\x81\x88\x92\xcb\xb0\x50\x8a\xe4\x9a\x49\x2b\x3e\xb5\xe1\xc4\x15\x6d\x5d\xb4\x3b\x96\x75\xec\x3a\x09\x8b\x89\x8f\xe8\xac\xd5\x34\xcf\xab\x0e\x20\xf1\x49\xa3\xef\x38\xb1\x4e\xd3\x61\x6a\x68\x14\xf1\xe3\x2e\x24\x6d\x59\x4b\xfc\x75\x55\x6c\xb7\xc8\x1e\x94\xa9\x50\xba\x2a\x35\xc3\x51\x9c\x17\x65\xb5\x62\xb8\xa2\x6e\x57\x61\xf9\xf0\x99\x3b\x7c\xa7\xae\xc6\xd7\xb2\x58\xa1\xf0\x36\x29\xef\xf8\xb2\x71\xb6\x2a\x6b\x4a\xf2\xa5\xa4\x5e\xa5\xeb\x7e\x99\xa6\x6c\xf1\x1c\x48\xd8\xc8\x04\x75\xe5\xe2\xc7\xf6\xb5\x2f\xb9\x37\x29\x24\x89\x4f\xc3\xed\xec\xd6\x0a\x97\x6d\x2d\x5b\x66\x95\xf5\x2c\xe6\x02\xd3\xc2\xd4\x7d\x46\x0a\xff\x60\x6d\x30\xb0\x56\x60\xe3\xe0\x46\x47\x89\x46\x66\x4b\x0b\x79\x87\xaf\xcb\x83\x81\x11\x7e\xb8\xf2\xa5\xee\xe1\x10\x22\x09\x67\xfc\x69\xab\x38\x1d\xd7\xe8\x64\xa6\xf9\xda\xec\x39\x1f\xc4\x85\x2b\x89\xb0\x1a\x54\xa7\x02\x91\x2f\x48\xdb\x6a\xaa\x09\x8d\x48\x9a\x69\x0c\x4c\xbc\xcd\xc2\xa2\xa0\x51\x8f\xa1\xd0\xd1\x02\x19\x44\x81\xa6\xb4\x29\xcb\x14\xe3\xc1\x08\x58\xe4\x34\x9c\x20\x7d\xe1\x66\x4d\x4f\x55\xb2\xb2\x0e\xa5\xfd\xe3\xb5\x95\xb2\x9c\xa0\x68\x9c\xf0\xbc\x0f\x3c\xaa\x26\x9d\x09\x54\x93\x7a\xb2\xc0\x39\x1d\x86\xf3\x82\xb2\x1d\x78\x94\xa5\xed\x92\x5c\x86\x29\xf8\x22\x15\xb3\x2c\x4e\xf8\x31\x78\x5a\xd2\x7c\x14\x0e\x55\x40\xf1\x06\x5b\xf0\x26\xdb\x6c\x7b\x9d\x5a\x2e\x10\x89\x13\x92\x58\x4d\x6a\x34\x39\x7f\xa2\x25\x8f\x70\xcd\x16\xc8\x1e\xb9\x9c\xc4\xc3\x09\x78\x0b\xb0\xf9\x5d\x66\x62\x1d\x23\xb3\x64\x5e\x2c\x3f\x73\x15\x82\x60\xc9\x00\x6b\xe9\xe1\x77\x60\x5a\xa2\xc3\xae\xae\xa8\xaa\x62\xcb\x15\xc8\xbb\x28\x8f\xd5\x8a\x23\xf2\x51\xbe\x95\x22\x53\xa7\xc4\x98\x17\x1c\xfa\xdc\x0f\xbd\xb9\xf4\xf5\x6c\x77\xbc\xfb\xdc\x06\xe7\xe6\x55\xb2\xc9\xd9\x05\x7b\xb7\xbf\x15\x17\x58\x7c\x1b\x61\x77\xf9\xd3\xee\xe0\x9c\x7e\xee\x9d\x15\xe2\xd9\x45\x7b\xfd\x95\x2c\xbe\xdd\x55\x5e\xcf\xa6\x93\x44\x2b\xf8\xb6\xca\xf1\x59\xb9\x32\xb4\x82\xed\x1d\xd7\x13\x5a\xf4\xbc\x15\xec\x6c\x2d\xce\x7a\xdb\xcf\x1e\x7c\x9e\x1e\x7c\x9e\xfe\x2c\x3e\x4f\xc2\xf3\xf1\x1e\x7c\x9c\x2b\x22\x7f\x0a\x9f\x4a\x7e\x1b\xeb\x68\x24\xcf\x9a\xf7\xf3\x71\x11\x54\x58\x6c\x90\x8e\x27\x76\xb0\x02\x09\x7e\x2d\x50\xae\x26\x4c\x7a\x4a\xa4\x04\xbb\x36\x81\x98\xef\xf9\xda\xf0\xe1\xfd\x01\x97\xed\x77\x69\x00\x7f\xa2\x0a\x24\x2d\x85\x6b\x8b\x65\x46\x3e\xbc\x3f\x10\xe7\x03\xfe\x06\x88\xbb\xee\x10\x5d\x52\xd7\x3c\xc9\x0a\x7c\xea\xe5\x56\x7e\x70\xf4\xee\xdd\xab\x83\xe3\xc3\xa3\x77\xe4\xd5\x87\x0f\x47\x1f\x02\x72\xa0\xcc\xbe\x43\x8e\x92\xef\xe8\x23\x4a\xda\x1b\x84\xe1\x23\x1b\xed\xbe\xbf\x0d\x3a\xc4\x4d\xd3\xbe\xab\x4b\xfc\xdc\x88\x50\xb2\xc9\x13\x73\x64\xfe\x2a\xa4\xff\x6c\x40\x6c\x5f\x60\xd4\x4d\xb8\x8c\x46\x8b\x22\x1c\x53\xb2\x47\xd6\xd7\xc5\xfd\x42\xb6\xaa\x8b\xdf\x7d\xfe\xc8\xae\x93\xd2\x97\xc5\x9e\x13\x6f\x72\x40\xd4\x70\xfd\xf5\xe3\xd1\x3b\x18\x95\x5c\x35\xc9\xf3\x30\xad\x68\x9b\x73\x83\x4c\xd3\x40\xa0\x36\x7b\xab\x47\xf3\x98\x1f\x53\xe3\xfe\x4e\x8b\xa6\x43\x7a\x7c\xf8\xf6\xd5\xd1\xc9\x71\x40\xc4\x61\x37\x63\x2e\xd6\xc8\x69\x41\x36\x48\x9b\xfd\x17\x0e\x27\x4c\x60\xb4\x8d\x57\x80\x44\x7c\xcd\x6f\x1f\x16\xab\x87\xc5\xea\x4f\xb3\x58\xc1\x5d\xcb\x3f\xaa\x77\x6e\xf3\x2b\xec\x8d\x6e\xce\xdf\xe3\x05\x76\x19\x39\x88\xcd\x7f\xb5\x37\xc3\xaf\x58\x15\xc6\x2e\x44\xdc\xac\x85\xba\xf4\x5e\xc1\x76\x3e\xfe\xda\xb7\xdf\x67\xd2\x85\x17\x19\xd2\x71\x3e\x7f\xed\x83\xd4\x5c\x42\x2e\xb2\xb4\xbb\xe4\xe2\x3c\xca\x4c\xb3\xf4\x7a\x9a\xcd\x55\x8d\x2a\xa1\x62\xf3\x26\x89\x36\xa6\x92\x56\x34\xe2\xfa\x00\xbc\xfb\xe0\x3c\x70\x25\xd2\xd4\xee\xec\x45\x96\x25\x0b\x78\x90\x36\x82\xa8\xed\x7c\x91\xa0\x1c\x32\x42\xa3\x03\xd7\x42\x68\x64\xc4\x98\x97\x1b\x3e\x78\xbf\x81\x4d\x4a\x81\x7d\xb0\x66\x0c\x13\x0e\x5d\xc5\x20\xcc\xf0\x4f\x1c\xaf\xfd\x66\x05\x22\xbe\x7b\x24\x12\x7b\x54\x85\xb8\x2f\x30\xc1\xf9\x86\xf8\x5d\xe1\xe6\xea\x2f\xaf\xfd\x94\x2b\x4f\x86\x31\xb5\x39\x7f\x46\x3c\x36\x3a\xc4\x4a\xb2\x68\x1d\xe9\xb0\xe9\xde\x07\x96\xbc\x08\xaa\x49\x87\xd0\xd5\x45\x20\xe2\x9c\xe8\x46\x6e\xef\x68\x7e\x6d\xde\x3b\x98\xa1\x9e\xae\x95\x22\xd0\x7b\x4d\xbf\x70\xd1\x7a\x7e\x58\xa9\x47\x32\xc4\xfc\xad\xba\x53\xc4\xe3\x34\x2c\xe7\xb9\xdd\x1d\x9c\x5e\xd5\x1f\x0c\x53\xdd\x1f\x05\x55\xd7\x21\x08\x5b\xd0\xbc\xfd\xe2\x66\x83\x64\x6f\x21\x91\xc2\x34\x52\x96\xa5\x32\x83\x67\x9c\x47\x71\x1a\x26\x7e\x6f\x67\x8e\xc3\xe7\x4b\x8a\xe7\xb5\x95\x25\xd0\x1b\x44\x91\x79\xf4\x82\xe6\xd7\xe5\x84\x5b\xac\xa7\xe7\x31\x88\x8c\x8c\xbf\xab\x0d\x6d\x13\x2f\x53\xd4\x52\xcb\x13\x10\x44\x34\xc7\x89\x4f\xa7\x26\xb7\xfa\x85\xee\xfe\x3d\x84\x0d\xd1\x41\x3a\x54\x54\x8e\x65\xf1\x44\xa4\x59\x73\xdd\x5a\x79\xdc\x76\x0a\xe4\xfc\x3e\xab\x88\x10\xc8\x03\x73\x4a\x6e\xef\x74\x5d\x8b\xa6\x18\xa7\x63\xd9\xb0\xbb\x8a\x74\xf4\xea\x47\xad\x3c\x87\x38\xcf\xe2\xf9\x71\x51\xfe\x34\x86\x57\xb9\x2c\x67\x00\x01\x84\xc7\x8f\xf1\x8d\x4e\x4e\xe7\x49\x52\x71\xb3\x45\x1b\x16\x89\x7b\xf8\x6f\xda\x83\x01\x5f\xd5\x63\x96\x90\x69\xf5\xe6\xa2\xe6\xb4\x5f\x50\xdf\xb9\x13\xd3\xe1\xcb\x57\x8f\x5c\xd8\x27\xe7\x5d\xfb\x39\xc2\x95\xb0\x41\xdb\x97\x70\x9c\xc9\x24\xc3\x2c\x1d\x86\x65\xc7\x18\xfd\x6e\x75\xf4\x9a\x4a\xa9\x27\x42\xd7\x54\x4b\x3d\x7b\xb5\xa5\x55\x12\x2e\xe2\x47\x0f\xae\x0c\x13\x52\x41\x38\x0c\xc1\x0e\x81\x63\x89\x54\xb5\x8f\x1e\x81\xbd\xc1\x6c\x45\xfd\x32\x5d\x1d\x72\x07\x68\x70\x8f\x31\x77\xc2\x7c\x6c\xcd\x2e\xad\x3e\x3e\x37\x4a\x06\xf8\x4b\xc4\xe3\xd9\x42\xf1\x4f\x44\xff\xc4\xf1\x8b\xc2\x6b\xdf\xd0\xe2\x83\x49\xbe\x28\x2d\x0d\xe3\xdb\xee\xee\xb2\x99\xf9\x6b\x16\xa7\x9d\x56\xcb\x45\xae\x2e\xc3\x71\x76\xe3\x74\xc2\xa7\x1b\xa0\x1b\x76\xd8\x34\xef\xf6\x70\x8b\xf0\x49\x4d\x9a\x95\x87\x46\x5b\x15\x09\x3d\x51\x86\x34\x70\xc3\xba\xe1\xb6\x42\xb7\x67\xd5\x82\xeb\x57\x0b\x09\x92\xda\xd9\xbc\x9c\xcd\xcb\x9f\xb3\xb1\x16\xd7\x22\x02\x0f\x9a\x2d\x32\xe4\x0f\x8f\x2e\x83\xd4\x32\x13\x4c\x4b\x6b\xe8\x93\x1d\xfc\x89\xc3\xf0\x43\x2e\x43\x9e\xe6\x34\x9a\x0f\x29\x1a\xab\x70\x38\xec\x11\x11\xe7\x12\xcb\x93\x70\x38\x3c\x15\xc9\x5c\x26\x32\xa2\x88\x6f\xc9\xe5\xcf\xcd\x21\xeb\x17\x93\x78\x54\x76\xba\x24\x70\x28\x2a\xb3\x1c\xa3\x55\x38\x1c\x4a\x2b\x15\x77\xf2\xe6\xac\x4d\x13\x5a\x52\xd9\x0f\x1d\x1a\xc9\x4c\xe7\x5c\x75\x0b\x91\x81\x8e\xaf\xc4\x7d\x12\x31\xb5\xd9\x52\xcf\xd5\xb8\xca\x78\x0a\xf7\xa5\x17\x19\x15\xd7\x2b\x3f\x9e\x78\x0d\xb6\xf6\xf3\x47\x8f\xc3\xb4\xbd\x3c\x0e\x53\x5d\xf1\xad\x6a\x1f\x3b\x13\x01\x31\x34\x40\x23\xe4\x83\xad\x76\xd8\xc1\x9e\x1c\x85\xf2\x0f\x15\xf5\xa9\x92\x97\xb1\xcb\x7f\x83\xcb\x8c\xd6\x6d\x36\xef\x4d\xc6\x5a\x6e\xfc\x5a\x21\xa6\x18\xa8\xb9\x73\xad\x92\x80\xd2\xbf\x10\x6a\x3a\x45\x00\x67\x06\xf7\xfa\x00\x70\xd4\x2a\xcd\x14\x5e\xd0\x53\x25\xee\x79\xdd\x67\x95\x1d\x30\x9c\x26\xbc\x47\xc2\x06\x2d\x51\x1c\xac\xba\x13\xe1\x65\xd1\xb1\x6e\x19\x10\xeb\xbb\x26\x06\xf8\xbb\x46\xb8\x1c\xf8\x6d\x93\x6f\x39\x0f\x7a\xec\x7f\xf5\xef\x96\xe0\x27\x4b\xd6\x06\x03\x72\x7c\xf4\xf2\x28\x20\x39\xe5\x0e\x59\x3d\x52\x64\xc2\x73\x46\x1d\x71\x69\x5f\x9c\x90\x5b\xba\xfa\xac\x5c\x5c\xb6\x0b\x92\xd2\x21\x2d\x8a\x30\xbf\x66\x93\x05\x1e\x0d\x2f\x18\xbb\xb5\x21\x18\x32\x84\xa2\x26\x97\x59\xfe\x99\x6b\x79\xd3\x79\x52\xc6\xb3\x04\x3d\xdd\x60\x3e\xd5\xe2\x8f\x6a\x34\x78\x4c\xbc\x3e\xdc\xdf\x48\x27\x70\x8e\xc3\x28\xaf\xaa\x37\x7c\x48\x75\x65\x34\xe2\x0b\x87\xb9\x33\x51\xa5\xfa\x92\x46\xbe\xb8\x35\xeb\xac\x71\xa7\x2e\xec\x99\x6f\xff\x50\x05\x6b\x89\x53\xe2\xf8\x37\x9a\xed\x14\x61\x9c\x7c\x98\x96\xb8\x41\x7a\xf1\x54\x6e\xa1\x34\x7e\xc1\xf0\x76\x9f\x1c\x00\xcf\x96\x9b\xe7\xf8\xa8\xc1\x73\x94\xd0\x13\x1e\x3d\x66\x13\x3d\x9e\x9f\xa2\x58\x41\x4b\xeb\x61\x1a\x5f\x68\xab\xda\x8d\x58\xfd\x70\xc7\xb4\xa6\xbf\x1a\xc6\xd3\xe5\x2a\x7e\x21\xfa\x55\x93\xeb\x95\xbb\xad\x0a\xde\x43\xc7\x09\xf2\x1b\xa5\x57\x7d\x43\x1c\xe9\x8f\x5d\x99\x2f\x85\x10\xfc\xaf\x52\x95\xc4\xe1\x3f\x54\x3a\x92\x33\xf2\xa7\xa9\x46\xd2\x2b\x71\xab\xdb\x15\xe6\x9c\x0a\x3a\x20\x51\x85\x78\xae\x10\xc8\xad\x60\x07\x02\x17\xe1\x48\xe1\x4c\x2e\x7f\xff\x70\x30\xfa\x70\x30\xfa\xdf\x7d\x30\x2a\x4e\x45\xc5\x4d\xdf\x3f\xc5\xbb\x83\xf7\x1a\x26\x1c\xf6\x00\x8f\xc9\x41\x96\x5e\x50\x26\x8a\x42\xf1\x48\x34\x6c\x83\x61\x2b\x00\x2f\x3d\xcb\xd7\x58\x18\x03\x87\x49\x91\x91\x30\x49\xb2\xcb\x82\x3f\x68\x0f\x76\xba\xa2\xbf\xc6\x10\x49\xbd\xff\x6d\x7c\x45\xa3\x05\xcf\x5a\x73\x8f\x35\xd6\xc4\x81\x6a\x99\xd9\xcf\x42\x0b\x8b\xa5\xda\x6f\x76\x4c\x8b\x28\xb9\xb9\x91\x4f\xca\xeb\x8c\xb6\x32\xa1\xb6\xbb\xb6\x2d\x80\x6f\xe5\x84\x86\xc4\xed\xb2\xbc\x0d\x1d\x69\x5e\x34\x2a\xe2\x66\x88\xa3\x11\x58\x9a\xbb\x80\x7d\xd3\xc1\x09\x90\x42\xee\xe3\x8b\xac\xc6\x91\x91\x7c\x34\x49\xd5\x03\x3b\x2e\xa6\x69\x32\x49\x2b\xcf\x7e\x6c\x3f\xd8\x4c\x99\xf7\xc5\x5e\xab\xc7\x06\xe1\x82\xe6\xf1\x08\xc2\x79\xe4\x74\x18\x32\x89\x83\x5e\x9b\x79\xf4\x88\x24\xe1\xbf\xaf\x49\x92\x85\x11\x89\xae\xd3\x70\x1a\x0f\x49\x96\xd2\x02\x6a\x13\x03\xa2\x2b\x12\xcf\x7f\x67\xca\x4c\x00\x50\xd2\xbd\x5e\x56\xee\x40\xb1\xd1\x1a\xd3\xf2\x48\xed\x91\x3d\x61\x9b\xd9\xc0\x68\x7d\x75\x59\x54\x00\x6c\x4b\x10\x43\x22\x77\xc9\xd5\x87\x1e\x86\xa1\xbf\xf2\xe4\x85\x67\x17\x97\x31\xbc\x85\x82\x5a\x45\xc0\x04\x51\x50\xbe\x81\x0e\x9c\x8b\x55\x5c\x77\x9f\xe7\x54\x58\x17\x7b\x70\x7e\x37\xe4\xb3\x83\xef\x8d\x27\xf4\xca\x67\x35\xd0\x46\x53\x2b\xc1\x8a\x3f\xd9\xa0\x88\x61\xf8\x14\x0f\x91\x57\xda\xe4\x2d\x7b\xbf\x7c\xb6\xfc\xb9\x78\xd0\x9d\xa1\x12\x93\xac\x4b\x02\x39\xdf\x04\x98\xab\x2a\xf9\x4e\x09\x3c\xb7\xeb\xa0\x99\x81\xd5\xec\x9e\x03\xc7\xa6\x80\x86\x62\x5f\x2e\x4c\x99\x61\x3c\x6e\x7e\x28\x5f\xab\x96\x40\x21\x7e\xab\xda\xae\x0d\x8e\xaf\x82\x95\x4e\xb5\xfa\xaa\x5c\xd7\xd7\xba\xdb\x60\x14\xa5\x4c\xf3\x14\xda\xe7\x70\x0e\x2c\x26\x93\x76\xe0\x23\xb8\xc5\xea\xd2\x52\xb3\x1f\x45\xfc\x52\x84\xb2\xa1\x85\x69\x44\x0a\x5a\x16\x64\x3e\x83\x0c\xb1\x19\x01\x91\x11\x97\x34\x67\x6b\x47\x76\x21\x94\x2d\x11\xbc\xb4\xbf\xb6\x86\x2e\x46\xfc\x9c\x8d\x8b\xfd\xf2\x63\x19\xe6\xe5\x9a\x6d\x68\x2c\x68\x32\x52\x89\x23\xf7\xda\xb2\x10\xe1\x26\x16\xe3\xb1\x2f\x9a\x8c\x9c\xd0\x3d\xf2\x8e\xdd\x98\x96\xdc\x9c\xc5\x0a\x5b\x17\xed\xc0\xbc\xa0\xbb\x59\x40\xf3\x88\xdc\x78\x5a\x32\x83\xd5\xd2\xf7\x09\x0e\xc8\x18\xd3\xb2\x63\x5d\xf9\x11\x8e\x8c\xce\x26\x67\x30\x10\xf7\x67\xe0\x92\x28\x6b\xa3\x20\x1b\x78\x4d\xc2\x39\xb7\x4c\x94\x5e\x47\x10\x00\xa3\xdf\xef\x93\x5f\xe7\x3c\xfc\x2f\xab\x93\xc9\x5e\x67\xbb\x5c\x71\x2f\xb2\xe6\x4e\xe4\xc2\xbe\x00\x6b\xcd\x74\xd5\x0d\xff\x16\x93\x67\x7a\xf7\xa5\xdc\x8f\x73\xd9\x2d\x4d\x7e\x75\xc7\xf4\xfa\x34\xda\xb7\x3c\xfa\xea\xd7\x63\xdd\x59\x96\x24\x9c\x7d\xfc\x6c\x2b\x78\x53\x83\xd9\x7c\xa9\x2c\x22\x60\xb5\x4d\xdf\x2a\x2f\x5c\x83\x59\xb2\x0a\x76\x11\x23\x9a\x39\x63\x2a\x7d\x2c\x18\xeb\xc9\xbe\xfa\x06\xc1\x77\x69\xca\xc7\x13\x59\xe3\x8d\x7c\x53\xee\xb8\x1d\x67\x68\x2f\x65\xe8\x9a\xb6\x5d\x3f\xb7\x12\x34\x92\x40\x16\x72\x59\xe7\x4e\xe4\xb9\x1b\x93\x56\x9a\x03\xa0\x4d\x76\x08\x6a\x26\x78\xde\x67\x49\xc2\xe4\x8c\x6e\x09\xe7\xc1\x80\x17\x61\xfb\x34\x3a\xa5\x69\x09\x5b\xce\x3e\xe3\x38\xe8\x9a\x5e\x4b\x66\xc2\xcf\xfe\x94\x53\x0a\xd8\xf1\x30\x3a\xeb\xc9\x13\x2a\x23\xb9\xa7\x99\x51\xe4\xe0\xe8\x45\xdc\x3e\x0c\xfc\xcb\x16\x6b\xf9\xf4\xa0\xc3\xe2\x96\x4e\xd6\x23\xce\x9b\x1e\x72\xba\x79\x0e\x07\x7a\x62\x37\x75\x90\x53\xe8\x13\xb8\x6b\x1f\x78\xee\x39\x82\xb0\xe3\x06\x6c\x74\xde\x6a\xd0\x03\x19\xf8\x56\xb1\x94\x55\x9a\xba\x2a\x6d\x3d\x7e\x9b\x9a\xd9\x18\xe4\x4a\x40\x2a\xe3\xc4\x57\x3a\x63\x6a\x65\x53\xab\xc1\x96\xea\x8b\xa0\x1d\x32\x98\x09\x08\x52\x8e\xbc\x7b\x61\x4c\xcd\x10\xe1\x58\xa3\x32\xc4\x92\x7b\x50\x95\xaf\xc5\x9e\x93\x85\x4f\x9d\xd4\xef\xca\x76\xf7\x53\x7a\x29\x0e\x9d\x30\x0d\x70\x88\x30\x2e\x24\xe3\xc8\x88\x88\xe7\x17\x8e\x4b\xa6\x7d\x67\x78\xee\x51\x73\x87\xe7\x4b\xe5\x20\x11\x12\x59\xec\x0b\x6b\xb8\xd7\x8a\x43\xea\x8a\x97\x9a\xb2\xfe\x66\xd4\x9b\x9d\x8d\xa9\xcd\x98\x20\x72\xc3\xff\xe1\x48\x0d\x39\x85\x33\x06\xb6\xe7\x98\xd1\x34\x02\xff\x36\x35\xc8\x61\x01\x86\x96\xb4\x60\x1c\xaa\x42\xc0\x68\x44\xd9\x08\x80\x59\x21\xa6\xf5\x74\xb9\x71\x45\xd5\x3e\x4f\xc3\xa2\x88\xc7\x29\x8d\xfa\x6e\x1b\x6d\x8e\xf2\xc9\x64\xdf\xe8\x28\x1d\x6b\x78\xbe\x64\x80\xbc\xd5\x60\x8f\x31\xd4\x13\xed\x4e\x4c\x12\xac\x1d\x86\x49\x4e\xc3\xe8\x5a\x5f\x57\xd7\x8a\x62\x71\x77\x4e\x33\x15\x59\xa9\xbd\x2e\xeb\x57\x3c\xea\x58\xb5\xa9\xd0\x6f\x9b\x6e\x20\x2e\x3d\x33\xb9\x14\xf7\x45\x83\x64\x5a\x74\x99\x89\xbe\xc5\xd3\x29\x8d\xe2\xb0\xa4\xc9\xb5\x5d\xad\x60\xf7\x61\x53\xde\x36\xb5\x13\x40\xdf\xa9\x08\x34\xe1\x0b\x56\x85\x2d\xd9\x5c\xe4\xb3\xe5\x87\x77\x06\x1d\xe5\x5e\x3a\x6f\x73\xd8\x8b\xb9\x29\xdb\xb8\x5f\x1f\x6a\x87\x34\xc7\x18\xc2\x11\xf7\xc6\x1a\x27\x71\x5a\xea\x76\x04\xd1\x1a\x1d\x09\x2f\x9a\x76\x04\xaf\xbb\xcb\xfb\xe3\x68\x0e\xd9\x4c\x2a\x0e\x66\x47\x96\xc8\x77\xb8\x58\x3e\xcd\x2e\xa4\x49\x93\x84\xc5\x75\x3a\x54\x9b\x1f\x9f\x62\xe4\x93\xdb\xf3\x14\x6e\x4e\x1b\x04\x40\x3a\x86\x45\x2d\x47\x76\x61\x3f\xf8\x55\x30\x1b\x8a\xbf\x43\xd1\xb1\xf5\x44\xbb\x2f\x76\x82\xa3\x53\x78\x3d\x4e\x54\x49\x5b\x29\xb7\x56\xd4\x0a\x37\xca\xc1\x80\x1c\x8e\xb4\x64\x8c\x0b\x75\xad\xef\x9a\x8a\xe8\x2b\x24\x2e\x89\x0e\xce\xa5\xcb\x5d\x4e\x28\xf8\x62\x88\xde\x77\x09\x17\xaa\x05\x89\x4b\x53\xac\x7a\x17\x6a\x87\xd9\xd5\x34\xf3\xad\x1e\x3e\xf2\x0b\x8c\xf6\x80\xe2\xf5\x18\xde\x45\xf1\xc8\xb7\xaf\x18\x9e\xc7\xd2\xc7\x73\x6a\x3b\xef\x25\xd9\xb8\xaa\x5e\x62\x09\xa6\x9a\xbd\x05\x60\x09\xd8\x9a\x50\x11\x85\xcf\xff\x4c\x89\x09\xe2\x6c\x00\xec\x8e\x35\xe7\x23\x27\xca\x94\x50\xc4\x0f\x5f\xf2\x84\x40\xf0\x58\xa7\xdb\xe7\x2b\xf2\x30\x94\x71\x0a\x21\xaa\x0a\x8d\x08\x9b\xdd\x93\x3c\x4b\xb3\x79\xa1\x82\x16\x0a\xbf\x00\xb6\xda\xdb\x81\x88\x38\x1a\xa1\xec\xb6\xbd\xde\xb5\x10\x52\x22\xd3\x4e\x7a\x4d\x18\xc8\x75\xa1\x63\x18\x96\x8f\xe1\x1d\xc6\x6d\xb1\x44\x1e\x3b\x47\xa4\x9c\xb6\xce\x83\x6f\x35\x07\xa4\x8b\xb3\xde\xce\x66\x93\x23\xd0\xf6\xbc\xe0\x76\xf1\x61\xd9\x5e\x7b\x38\x10\x7d\x38\x10\xfd\x0f\x3e\x10\xd5\x37\x45\x91\xc9\xfa\x36\xd7\x45\x05\xf0\x0a\x27\x99\xbe\x17\xdf\x1a\xdf\x30\x4d\x47\xf1\xd8\x0b\xc7\xb3\x24\xe0\xe1\x79\x68\x3d\xe5\x12\x9f\x87\xa9\xe7\x79\x16\xb0\x26\xf3\xe7\xa5\xb8\x8b\x34\x3f\xcc\x3c\x8f\xc7\x22\x80\x81\xe5\xc4\xc8\x81\x5e\xc4\x63\xcb\xa8\x8f\x9d\x19\xb9\xc5\xf9\x86\x43\xdc\x28\xd8\x85\x19\xb3\x4a\xa7\x63\x47\x5c\xb0\x33\x56\xd4\x61\x68\x45\xbc\x75\xde\x5b\x68\x65\xa6\xca\x4a\xb0\x5d\x65\x04\x8a\x8b\xf7\x39\x15\xc7\xa0\xe8\x74\xc2\xc0\x7d\xae\xd3\xad\x0a\xce\x71\x09\xb6\x91\x10\x41\xef\xc9\xcd\x8d\x9b\x27\xf6\xa6\xfe\x4c\x1a\xe6\x49\xcc\x8a\xa2\xa6\xa5\xb3\x79\xf9\x92\x8e\xc2\x79\xe2\x3d\x38\x59\xd6\x46\xb6\x22\xdb\xf5\xa8\x23\x5f\xef\xa3\x2d\x8c\x65\xfa\x11\xaa\xd1\x13\x79\xaa\xfa\x1c\x07\x37\xc1\xea\xc5\x6f\xd1\x7c\xfb\x42\x17\x57\x50\x18\x96\x8a\x31\x36\x2a\xf5\x20\x44\xd9\x1e\x3a\x48\xde\x7a\x43\xaf\x3c\x3d\x17\xb3\x8a\x77\xb6\x40\x3e\x91\xd9\x88\x84\x46\x64\x40\x08\x3b\xa9\xfc\x08\x94\x5f\x00\x9b\x77\x6f\x5e\xfd\xc3\x9a\x6e\x80\x83\xe9\xc5\xde\x89\x26\x6d\xf9\x46\x64\x5d\xc7\xef\x5d\x1e\x91\x4b\x6b\xbf\x8b\xd3\xfb\xda\xf7\x17\xe3\xf0\x18\x8e\xff\xd0\x11\x2c\x7c\xde\xdc\x58\x3c\xb4\x3f\x84\xd7\x16\x50\xd8\x33\x0c\xef\x89\xb7\x25\xd1\x42\x9b\x44\x10\x2a\xff\xd1\xa3\xa9\x07\x61\xd4\x65\x26\x1e\x89\x8e\x4b\x32\x8d\xc7\x13\xae\x38\xaa\x98\xc5\xc2\x48\xe5\xd4\x5c\x66\x4b\xeb\x2d\x33\xb3\xd6\xd3\xf6\x34\xbc\x7a\x4d\xe9\x7b\x9a\xff\x14\x16\xed\x1e\x61\xdf\xef\xf3\x38\xcb\xe3\xf2\xda\x48\x1f\x87\xc5\xfb\x3c\x1e\x52\xf1\x9b\xfd\x07\xc3\xcc\x7e\xa4\x59\x3a\xa4\xbe\x4b\x8c\x9f\xe9\x75\xcd\x35\xc6\xcf\xf4\xba\xe9\x45\x46\xc0\xe4\xd0\x9a\x63\xd8\x43\x7e\x17\x2f\xe9\x30\x9e\x86\x49\x07\x03\xb8\x17\xc9\xcc\xc3\xd6\xaf\xcd\xec\x28\xe2\xe6\x7d\xf3\xbc\x0f\xf5\xfd\xb3\xfe\x6d\xb9\xfb\x81\xaf\xff\x88\x7c\x2d\x94\x22\x87\xb1\xe1\xfc\x55\x3e\x21\x24\xb8\xda\xab\x2a\x35\xe6\xe7\x2b\x53\x3d\x12\xe9\x6b\x86\x4e\xb4\x94\x83\xcb\xab\xee\x17\x65\x19\xbc\xea\xe3\xe5\x74\x5d\xee\xce\xb5\x45\xcc\x04\x50\x01\x32\x32\x49\x3f\x13\x40\x5d\x01\x61\xe9\x88\x16\x70\xd9\xcc\x8f\xde\x81\xf2\xd6\x61\x43\x49\xe3\xdf\x55\x1f\x58\xca\x5f\x08\xb2\x34\xe4\x38\x2c\xfc\x70\xe3\xb0\x30\xa0\x80\x7d\x11\xa8\x56\x15\x51\xbe\xd1\x55\x3c\x37\x4c\x46\xd5\x5c\x6d\x83\x55\xe0\xc7\x30\x46\x94\x4f\x55\x93\x33\xeb\xea\x6b\x74\xc1\xab\x6b\x76\x60\x8d\x16\x94\x57\x7d\xe9\xf8\xe7\x45\x80\x6f\x19\x4b\x2b\xc4\xd5\xca\xd3\x46\x3e\xcc\x73\x9b\xe9\x23\xde\x08\xaa\x9d\x45\xea\xc9\xaa\x55\xa6\x92\x8d\xd8\x8a\x58\x83\xdf\x1a\xd2\x6f\x0b\x2d\x99\x5b\x3e\x28\x97\x3f\x3d\x50\x9a\xf5\x64\x66\x83\xa9\x56\x09\x5a\x5d\x65\xc5\xa4\x53\x4f\xe0\xcc\xa7\xf3\x24\x2c\xe3\x0b\xfa\x53\x58\x9c\x14\x70\xa5\xaf\x0a\x95\x03\x6b\xe1\x1a\x2f\xc5\x30\x36\xca\xa1\xbe\xd3\xd1\x88\x0e\x05\x66\x3e\x73\x2b\xa6\x43\x75\x01\x1f\x3f\x57\x42\xdb\x93\xd2\xf4\x16\x91\xc5\x92\x6c\x6c\x3b\x5f\xea\x0c\xf4\x8e\x90\x63\x1d\x04\x13\x9f\xd7\x36\xe8\xb9\x9f\xcc\x60\x97\x19\x02\x45\x4d\x8d\xe6\x21\x30\x59\xf3\x99\x07\x1b\xa7\xda\xc9\x06\x08\x1b\x4c\x35\x13\x13\x76\x31\x02\x0c\x3a\x62\x37\x51\xb1\x99\x20\x48\xa1\xb0\x3f\xe0\xad\x61\xff\x3c\x2c\xe8\x52\xd9\xe8\x03\xf5\xb1\x81\x07\xce\x60\x00\x9e\x3f\x0e\x8b\x9f\xe3\x69\x5c\x7a\xf8\xd7\x04\x10\x65\x55\x62\x05\xd3\x1b\xf9\x46\x99\x22\xfe\xb7\x6f\xb5\xd3\x99\x06\x74\x19\x4f\x69\x51\x86\xd3\x59\x65\x11\x05\xe1\x2f\xf7\x2e\x4c\xb3\xe5\x65\x19\x94\x9e\x98\x3c\x33\xad\x12\x7b\x46\x76\x15\x6a\x65\x93\x41\x8d\x8a\xe2\xd1\x28\x1e\xce\x13\xb8\x17\x54\x35\x52\x1a\xc8\xec\x50\x56\x86\xc9\xcb\x26\x08\x2c\x48\xac\x75\x9b\x33\x5d\x80\x6b\x19\x69\xce\x77\x37\xdb\xd5\x55\xe3\x92\x4e\xbb\xf6\x85\x40\xc7\x2d\x13\xa0\xdc\x03\x70\x43\x2a\xf8\xb4\x3e\x5e\x70\x99\x78\x38\xe7\x36\x1d\x24\x1c\xcc\x39\xfe\x6a\x96\x0d\x27\x1f\xcb\xb0\x2c\x6a\x27\x3a\x65\x60\xa4\x60\x70\x76\xa0\x0e\x34\xe7\x4d\xf3\x9d\x07\x35\x9e\xf9\x28\xdc\x46\xe5\xbc\x87\xe8\x0a\xbc\x6e\x97\x95\x74\x26\xf4\x9c\x47\x97\x10\xae\xb5\x5e\x58\xc8\xd4\xb0\xfc\x12\xa9\x1f\x6b\x1a\x69\x38\x60\x99\x17\x61\x41\x3f\xd0\xcb\x30\x8f\x7e\xa1\xb0\x13\xf3\xb1\x58\x35\xb8\x85\xed\x35\xf5\xaf\x4a\x06\x84\x55\xe6\xf8\x6a\x85\xfa\x4d\x60\xce\xe5\x82\x23\x9c\x10\xe3\x26\x43\xbc\x0c\xc7\x70\x51\xba\x96\x1d\x5e\xee\xff\x24\xe3\xa2\x35\x64\x06\x07\xad\x8f\x15\xf8\x1a\xd0\x8a\xa3\x56\x60\xcd\x86\x09\xbd\x62\xdd\xed\xbf\xb8\x2e\x69\xd1\x99\xd0\x30\xa2\x79\xff\xf0\x65\xa7\x2b\x52\xba\x5d\x19\xe5\xbf\x35\xcb\xe9\x05\xb0\xde\x9b\xb0\x98\x70\x44\x02\xfe\x3d\xce\xe9\xa0\x12\x61\xce\xe3\x7d\xeb\xfa\xa0\x73\x87\x2f\x8b\x63\x30\xf6\xc9\xf2\x1c\x0e\x57\x06\xe1\xce\x5e\x86\x65\xa8\x0b\x7b\x9b\xfa\x8a\xc1\xe1\x82\x58\x72\x7c\xc8\xb2\xb2\x15\xf8\x0b\x1e\x5f\xf1\xc6\xa2\x7e\x2e\x5b\x2a\x57\x99\x34\x72\xda\xd0\xff\xab\x9c\x34\xf4\xff\x30\xe4\x28\x37\x22\x29\x9a\xb0\x90\x89\xa1\xc1\x44\x91\xf9\xd6\x01\x9c\x8d\x4b\x24\xe1\x74\x96\x55\x4f\x61\x91\xed\xd4\x21\xe2\xea\xd6\x56\x24\x60\x70\x59\x70\x19\xaa\x2d\xa9\x21\x70\x39\xb6\x4b\xcc\x2e\x69\xfe\x33\x1d\x95\xfd\x62\x92\xe5\xe5\x31\xcd\xa7\x55\x38\xfc\xd0\x95\xf8\x92\x2c\x1d\x37\x46\x27\x81\x7d\xd8\x2a\xb4\x0f\x07\x06\x45\x76\x80\xbc\x49\x58\x1c\x5d\xa6\xf2\x6a\x6e\xa7\xcd\xf4\x8e\xb6\xb1\xfa\x71\xce\xf0\xeb\x2a\x2a\xcf\xd2\xa4\x2b\x90\xe3\x89\xd0\x86\x87\x1a\xcc\x75\x98\xcb\xb4\xaa\x65\xd8\xc9\xf5\xaf\xc2\x3d\x12\x7b\xaf\xe6\x7b\x97\x62\x8f\xfb\x85\x53\xcd\x69\x7c\x46\xf6\x96\x2e\xce\x06\x1e\xec\xf6\xef\x59\xa8\x97\x88\xe5\x37\x34\x8c\xea\x97\xe8\xa2\x0c\x3f\xd3\xbc\xf9\xf2\x6c\x62\xac\x12\xc7\xae\x62\x04\xb9\xce\x18\x34\x25\x3b\x03\xe6\xc4\x63\x00\x44\xc5\x93\xe0\x27\x90\x0e\x89\x76\x57\xa1\xd1\x47\xa0\x40\x03\x22\x35\xa6\x91\x85\xb1\x8a\x48\x40\x81\xb8\x72\xae\xc5\x91\x23\xaf\x68\xf4\xaa\x4e\x40\x63\x18\x4f\x59\x4b\x60\x59\x0a\x00\x02\xc2\x65\x23\xca\x78\xf4\x62\x69\xdd\x36\x5c\x05\x8e\xfa\x36\x58\x80\x26\x8e\x84\x8e\x59\xc6\xdb\x4a\xe9\x81\x40\x8c\x55\x8a\x8d\x46\x75\x9d\x90\x8d\xe1\x41\x13\xfa\x58\x5f\x48\xc3\xe0\xad\x80\x57\x52\x9d\x5b\x3a\x9d\x47\x24\xda\x20\xd5\xf5\xda\x90\x48\x91\xe7\x83\x98\x84\xf1\x94\x46\x1c\xc4\xbf\x77\xf5\xc0\xd9\x58\x04\x21\x99\xc4\x3a\x68\x88\xb0\xb2\x88\x83\x3b\xbb\x4c\xcb\x7a\x26\x10\x10\x76\xc9\x69\x5c\x14\xe2\x58\xb6\xa6\x21\x18\xca\xc6\x90\xe5\xf1\x38\x4e\xa1\x95\x1f\x87\x59\x5e\xd3\x06\x1b\xd2\xc6\x34\xcb\xe2\xea\xc2\xb3\x2c\xb6\xe1\xcb\xa6\x5a\xb8\xad\x80\x1b\x58\xe0\xc1\x81\x26\xcd\xb7\x00\xe5\x92\x7a\x0b\xb1\x78\xbf\x8b\x87\x8d\xf3\xb7\x59\x3e\xf4\xdd\x05\xbe\xbe\x92\xf5\x3d\xd2\xe6\x17\xb0\x1d\x37\x6e\xbd\xd0\x78\x45\xb9\xb3\x40\x7b\xdd\x36\x35\x12\x5b\x4e\x39\xc5\xef\xb6\x74\xbd\x54\xb3\xee\x3e\x97\x2f\x0f\xd6\xda\x25\xac\xcc\x38\x95\x0e\x5f\x56\x49\x66\x0d\x81\x05\x2d\x7f\x2d\xba\x9a\x8b\x79\xfe\xc3\x22\xb8\x64\x81\x31\x65\xb9\x67\x79\xb9\xd3\xa2\xb0\x92\xba\xa9\x39\xa7\x5e\x6e\xa0\xd5\xe2\x16\x5c\xf9\xdb\xab\x9f\xab\x48\x10\x57\x86\x78\xe6\xd3\xfd\x2b\xfa\x71\x51\x66\xe3\x3c\x9c\x7a\xe9\x2e\x42\xf9\x4f\x24\x90\x87\xe8\x1c\xc4\x56\xf6\x1d\xac\xbf\x19\xc5\x4b\x3a\xed\x0f\x2d\xf9\x80\xa5\x28\xcf\xb4\xfc\xd1\xcd\x6d\xc2\x9d\x08\x2a\xea\x7a\xaf\xe2\x80\x34\x08\x3e\x5c\xc3\xbb\x16\xb2\x2a\x32\xf2\xe2\xfd\xcf\xf4\xba\xe0\xe9\x1e\x57\x86\xae\x49\xd2\xd3\xcf\xbe\x85\x46\xe4\x88\x8e\x77\x57\x5a\x55\xb8\xf2\x74\x7c\xfc\x7a\xf9\x21\x0e\x83\x5a\xd1\xbe\xeb\x62\xaf\xb6\xe9\xd5\x1b\xab\xa0\xde\x7e\x11\x4e\x67\x09\xf5\x1d\xe2\xbb\x40\xe8\x19\x50\x35\x17\xea\x85\xab\x02\xab\x34\x32\x28\x08\x97\xd9\xf5\x7c\xdb\xab\x9c\x50\x36\x92\xd5\x39\xf5\x6f\xf4\xba\x38\x96\x9d\xbe\x0b\x97\x1a\x88\xaa\x06\x05\x42\x2f\xd3\x4b\x11\xa0\x39\xa5\x97\x82\x67\x65\xa0\xcf\x95\x38\x58\x20\x3a\xb5\x47\xee\x33\x44\xee\x14\x3c\xec\x65\x61\x51\xb2\x9e\x2c\x7f\x87\x43\xca\xfb\xa2\x8d\x85\xed\x0f\x40\xa0\x95\x26\xfd\x72\x8a\x89\x99\xf9\xfe\x63\xfd\xda\xed\x50\xec\x75\x92\x85\x55\xd3\x1c\x21\xab\x23\xd8\x34\x96\xe6\xd4\x4d\x7d\xd5\x7d\x1a\x5e\xb9\x89\xb0\xf3\x3e\x10\x0b\xc3\xe6\x2d\x48\x0a\x48\xfc\xa6\x5b\x7d\x63\x8c\xfb\xcc\xfb\x57\x1f\x49\x65\x09\xcb\x64\x87\x6a\xff\x1e\xd9\x24\x37\x37\xaa\x3f\x3f\x42\x55\xc6\xd5\x7b\xd5\x53\x96\x23\x71\x2c\x30\x2e\xd9\x6d\x89\x4b\x7c\xff\xe0\xe2\x52\x04\x42\x4f\xa7\x4b\x54\x88\x50\x1b\x7b\x04\xf9\x18\x2e\x90\xe1\x56\xe1\xde\x93\x0d\xc3\x9e\x11\xc0\x37\x9b\xfd\x4d\xef\x4d\x22\x8d\xfe\x31\xd9\xa2\xdf\x93\x81\xc6\xf6\x44\x21\xab\xe1\xb6\xbf\xf3\x3d\x6a\x96\x33\xc0\x97\x79\x3c\x5a\x72\x96\x78\xe1\xc2\xaf\xb8\xf2\xd4\xd5\x78\xbf\x0b\x72\xa3\xa5\xc9\x81\xc3\xb7\x95\xe5\x82\xc4\x80\x56\x5e\x93\xa0\x90\x77\x59\xc2\x6d\x6c\xbc\x3a\x99\xe8\xb4\x56\xe5\x15\x33\x9e\xa5\x44\x06\xcc\x6f\xe0\x6a\x92\x64\x63\xaf\x4f\x09\xf6\x6f\xf1\x31\x47\x92\x8d\xf5\x65\x10\x97\x11\x00\xaf\xc1\x0b\x18\x21\x1e\x7b\x74\x09\x2f\x1e\xb1\x2f\xc3\xc5\x4a\xf5\xdd\xca\xf0\x8c\xb0\x5d\x74\x17\xe3\x74\x7c\xa8\x0c\xc4\x0d\x9c\xb1\xbc\x48\x8c\x2a\x92\x6c\xec\x41\x2d\x53\x2b\x50\xaa\x42\xe6\x98\xc2\xc5\xc2\xe5\xfe\xdb\x97\x93\xb8\x98\xd1\x9c\xcc\xb2\xa2\xbc\x85\x03\xf7\xfb\xac\xa8\x3f\x3e\x36\x3c\xb7\xab\x07\xdb\x70\xdd\x36\x90\xe2\x81\x66\x8d\x54\x41\x8a\x06\x03\x68\x74\x7f\x16\x5e\x43\x94\xbf\x3d\xe3\xd2\x06\xce\x12\x44\x86\xa4\xb2\x4c\xbc\xde\xc3\x32\x13\xc3\x5e\x66\xf9\xe7\xe3\xec\x7d\x9e\x5d\xd0\xea\x32\x08\x08\x97\x9d\x09\xff\xcb\xea\x82\x12\x02\xe9\xb7\x23\x19\x46\x8c\xd8\xa7\x56\x5c\x4e\xf0\x46\xf2\x37\x3f\xb0\x84\x40\xe9\x64\xcf\xf8\x7a\x4e\x4e\xd1\xe7\x19\x09\xd4\xa5\xfa\x85\xae\x95\xdf\x08\xe3\x97\xc3\x92\x24\xbb\x84\x20\x87\xd2\xcb\xbe\x0e\x7d\x7d\x50\xbe\xc1\x40\x32\x13\xc9\xd2\xe4\x9a\x75\x28\xcd\x4a\x23\x56\xa0\x8c\xd7\xc7\xe3\xf2\xf9\xc2\x4c\xca\xa0\x7d\x24\xb0\x43\x48\xe2\x70\x7d\xb6\x40\x63\x6d\x6c\x24\xbb\xd4\xed\x44\xe0\x7f\x11\x33\xc9\x2b\xcd\x96\x71\x7a\x93\xc5\xac\x9e\xb1\x05\x5f\x03\x7d\xe9\xd5\x2c\xce\xaf\x3d\x33\x1e\xe5\x62\x76\x2b\xa8\x57\xed\x51\x79\x55\x53\xc0\x02\xf5\x4c\x00\xe0\x6c\xdf\x79\x97\x05\xd1\xdd\xf5\xcd\xca\x0f\xe1\xa5\x64\x19\x91\xe2\x05\x43\xe8\xf7\x8b\x61\x1c\xdb\xd3\x57\x96\xc1\x16\x8b\xbf\x16\x82\x70\x0a\x0e\xed\x41\xf5\x3c\x54\x15\xc0\xe3\xbe\xb3\x30\x2f\xa8\x4f\x38\x0c\x06\xab\xcc\x08\x98\x9b\x78\x36\x56\x4e\x46\x3d\xdd\xee\x30\x93\xac\x4b\x69\x9c\x44\xcd\xf8\x5f\x09\x55\xfb\x7e\x88\xe1\xf7\x6c\xbd\xc9\x09\x85\xf8\xa5\x52\xb6\x17\x3a\x3c\x0f\x53\x05\xa2\xf5\x50\x06\xd1\x8f\x0b\xd0\xd0\x3a\xa0\xd5\x88\x94\x97\x71\x0e\x7b\x27\xcf\x3d\x10\xf1\xbe\x15\x00\x0a\x8c\x9d\xae\x73\xa5\x0f\x9f\xd5\x0f\x65\xcb\x55\x0b\x3c\x68\x8d\x27\xd4\x3c\x88\x1a\xa0\x10\x2d\x33\x31\xc1\xbf\x4e\x44\x03\xf1\xc8\xb5\x84\x6d\x0b\x35\x09\x9f\x99\x5c\xa7\xc3\x38\xf5\x6b\x2b\xe2\x55\x69\x64\x83\x5b\x37\x93\x88\xfb\xc8\x8e\xa1\xca\xc3\x93\x3c\xe0\xe0\x16\xa7\x63\xd8\xb2\x79\x9d\xad\x5d\x30\xe5\xa9\x0d\x59\xe2\x8d\xa1\x25\x08\x30\x94\x59\x7e\x12\x8f\x27\xb4\x58\x56\x1e\x43\x21\xde\x11\xb9\x9f\xd3\xec\x32\xfd\x58\x86\x25\xf5\x3d\x72\x87\x72\xab\x2b\xc0\x28\x76\x6d\x0c\xb3\x79\x92\xd0\x68\x19\x0a\x0c\x55\xe1\x78\xad\xdf\x3a\xaa\x78\xce\x7e\xd9\x75\xde\x60\x29\x44\x4f\xe3\xa9\x41\xb0\xa4\xa4\x71\xd3\x33\xf0\xa4\x21\x58\x9f\x33\x4b\x50\x9d\x85\x4a\xda\xb2\x24\xf0\x27\xa3\x12\xc6\xca\x17\x78\xd2\x38\x6c\xd5\x65\xf0\xa0\x32\x07\x97\xf3\x77\xa8\x3a\xaf\xa2\xac\x7d\x43\xc4\x83\xc2\x06\x31\x5a\x6f\x38\xc0\x07\xde\x54\x0c\x8f\x77\x35\x81\x27\x0d\xc3\x5a\x64\xf4\x24\x62\x68\x5b\x0a\x05\x15\xe9\xb8\x8c\xc7\x93\x37\xa8\xce\xc2\x25\x1d\xb7\xcf\xa0\x2a\x03\x97\x32\x5d\x93\x02\x6f\xaa\x43\x5d\xc3\x12\x1d\x54\xe6\xe0\x72\x75\x76\x84\xa0\x01\x8c\xd1\x53\xfb\x64\x20\xa8\xca\x30\x46\xc3\x3c\x95\x0e\xfc\xc9\x6e\x09\xb7\x9d\x76\x3a\x2e\x63\x6c\xe2\x03\x5f\xa2\x05\x6d\x59\x48\x83\xca\x1c\xcf\x28\x20\x43\x61\x50\x99\x63\x52\xce\x39\x55\x0b\xaa\xb3\xfc\x25\x5d\x7a\x78\x4f\x30\x17\x4e\x54\x1c\x7e\x85\xb7\x15\x6c\x7d\x57\xf5\xd4\x13\x53\x4b\x5a\xc1\xce\xce\xe2\xac\xb7\xb3\xf5\xf0\x4e\xc8\x43\x58\x9c\x3f\x4d\x58\x1c\xc1\xe9\xb7\x0a\x8a\xe3\x89\x70\x03\xcf\xac\x59\x91\x6b\xcc\x37\xd8\x56\x78\x8e\x03\xde\xe6\x62\x9a\xb7\xf5\xb6\x07\x4f\x93\x10\xcd\x5f\x00\x29\x26\xe1\x8e\xb7\x46\x96\x81\xa3\xe6\xc0\xb4\x56\xa1\xfa\xd0\x73\x11\xea\x79\xcb\x30\x49\x06\x05\x4d\xa3\x63\xf3\xb2\xb8\xec\xaa\xa2\x6b\xa1\x0c\x01\xf2\x85\x3a\x19\xb6\xcf\xd8\x86\x8d\xca\x69\x8f\xfc\x5a\xb0\xd9\x67\xed\xc8\xf8\xa3\x86\xa3\x72\xca\xe0\xcb\x29\x0a\x98\xf8\x89\x2b\x6c\xe2\x15\x7f\x56\x98\x07\xe3\xb7\x23\x95\x35\x79\x61\x5f\x23\x15\x1a\x0f\xc6\xca\x93\xee\x86\x76\x98\xa5\x45\x19\x82\xa9\x02\x70\xca\x6f\x0c\x33\x0b\xaf\xc3\xf3\x84\x4a\x10\xf1\x89\x21\x52\xe3\x5e\x82\x3c\x6d\x3e\xce\x5e\xcf\x93\x04\xde\x10\x64\x05\x8d\x7a\xf5\x23\xae\x6a\x7f\xc7\xd6\x07\x7b\x30\x8c\xb7\x40\x21\xf2\x82\x0e\x92\x8b\x77\xcb\xf9\xb8\xf0\xf9\x50\xe0\xc7\x3f\xe1\x01\xcf\xea\x27\x3f\xe5\xbe\x95\xc1\xcc\xb2\x59\xa7\xbb\x0b\x2f\x6d\x80\xac\xe7\x61\x5d\xf3\x71\x41\x98\xf8\xba\x5e\x17\x1b\x92\x66\x0d\xc6\x1b\x8c\xda\x46\xe3\xe6\xfd\xe8\xb0\x92\xcc\x79\xf4\x88\x28\x1b\xa4\x38\x12\x75\x3b\xe7\xef\x9b\xfd\x3a\x44\xcd\xd6\xa7\xa3\xe9\xd0\x90\x10\xce\x2b\x9d\xe2\xa9\x18\x36\x29\x51\xec\x60\xe1\x7e\x00\xb6\x3e\xf9\xdc\x29\x5b\x7f\x86\x59\x9e\xbb\x6f\x76\x8a\xd3\x2a\xba\x9f\x8f\x0b\x8f\x27\x8e\xc2\x00\x79\x60\x15\x28\xc8\x17\xb0\x09\x2c\x58\x7d\x71\x29\xa2\x66\x1a\xcf\x7a\x7a\x86\x0a\xd7\x53\x39\x46\xda\x70\xc3\xa1\x80\x44\x4e\xb4\x8d\x50\x13\x7e\x30\x90\xe1\x51\xc1\xc8\x69\x3c\x98\x03\x8b\x27\xbc\xd2\xa8\xa8\x00\x4b\x6d\x08\xc1\x95\xf3\xf0\xba\x30\xcf\x0f\xd7\x3b\x9a\xab\xe5\xb0\x77\xd5\x9b\xef\x5d\xf2\xe8\x91\x71\x3a\x05\x6a\x80\x69\xaa\x16\xe0\xfc\xfd\xe6\x5a\x78\xed\xd0\x66\x94\xb1\x0a\x74\xdd\x73\x50\x45\x1d\xc9\x88\xeb\x7b\x7b\x55\x8c\x6c\xc6\x86\xcd\xb3\x4b\xb1\xa2\xf4\x0f\xb9\x2d\x87\xb7\xe0\x68\x24\x47\x8d\xa1\xed\x38\x4f\x36\xd4\xbd\x71\x2c\x0d\x8d\x10\x05\x06\xb3\x0a\xe6\xb0\x32\x7b\xcf\xc1\x3c\xec\xe5\x2c\x1a\xfa\x6d\xf3\x8a\xf7\x8e\xc3\x44\xd5\xaa\x83\xe2\xd4\x72\x9e\xaa\xbf\x96\xed\x74\x54\x77\x19\xa7\x7e\x25\x81\xb1\xaa\xbc\xd0\xd5\x79\xe5\xa6\x69\x8a\x8b\x0b\x63\xfa\xf0\xb6\x9b\x71\x78\xca\x4c\xbf\xbe\x8e\xad\x79\x32\x3f\xe2\x5e\x1e\xc2\xe0\x07\x80\x45\x3c\x4e\xc3\x72\x9e\xd3\x4e\xd7\xf7\xfa\xbe\x88\x0c\x8a\xba\xdb\x23\xa8\xe2\x9a\xe8\x32\x2e\xbb\x40\x1c\x6f\x49\x7a\x55\xaf\xc5\x27\x38\xdd\x79\x27\xcc\x5f\xbc\x76\xdc\x15\xa0\x31\xee\x56\xb8\x3b\xa6\xfe\x74\xf4\x0a\xdb\x15\xef\xb7\x6f\xf6\xc8\x77\xd2\xc2\x59\x53\xc5\x3c\x9d\x85\xc3\xcf\x47\xfc\x6c\xc5\x88\xb3\x04\x49\x86\xbd\xd3\x4c\xd2\x4d\x30\x6c\x6f\x99\x44\xc5\x7f\x28\xd6\xdb\x23\xdb\xe4\xb9\x4c\x94\x4f\xcc\x13\xb9\x17\xd4\x4e\x27\xea\x61\xf8\xaa\x17\xe6\xb1\x92\xd3\x13\xc5\xcd\x11\x15\xf6\x41\xfc\x3e\x36\x79\x2e\x52\x4f\x37\xcf\x48\xe0\x7b\x05\x9d\xa9\x0c\x22\x2a\x3d\x0f\xde\xa4\x94\x6b\x6b\x90\xd9\x92\x85\x27\x77\xbf\xdf\x97\xf3\xfb\xc0\x2e\x6b\x2d\x3e\xce\x03\x44\x87\x7c\xb9\x4b\xc2\x42\xcb\x78\xb6\x1a\x85\x0a\x43\x8f\xbf\x35\x63\x23\xe6\xaf\xed\x41\x74\x67\xb9\xe9\x0a\x8d\xf8\xbb\x61\x1a\x99\xaf\xd4\x48\xb0\x59\x58\x00\x4b\x4f\x28\xc7\x01\x02\x15\xc0\x05\xd9\xbc\xbc\x2b\x46\xf5\xfc\xba\xa4\x4b\xa5\x15\xb4\xca\xc7\xb0\x6c\x78\xc5\x9b\xfb\x20\x3c\x31\xa7\x33\x86\x80\x92\xfa\x81\xf3\xae\x7f\xdd\x94\x3a\x98\x15\x8f\x4a\xad\x31\xb0\x91\xd1\xfa\x9f\x78\x93\xda\x50\x0b\xb1\xf8\x81\x77\xb5\x4d\xed\x0b\x17\xc1\xea\x8f\x5d\x4c\x1f\x52\xf1\xb7\xb0\xa5\x94\x96\x70\xda\x99\x7c\xdd\x17\xec\x5c\x9f\x3b\x28\xc1\x37\x2a\xa7\x9c\x08\x02\x75\xcf\x68\x9a\x1b\xda\x18\x4a\xe1\x29\xdc\x31\xe6\x03\x7a\xcd\xdd\x09\x46\xde\xa4\xc2\x9e\xfb\x84\x90\x2b\x03\xd0\x03\x42\x32\x66\xa5\xf1\xcc\x44\x8f\x87\x9f\xd8\x35\x5f\x6d\xe6\x8d\xa6\x91\xf3\x42\x7d\x99\x5f\x5b\x4e\x34\x08\x14\x82\x31\x57\xf7\x97\x18\xbe\xdd\x43\x08\xdf\xdf\x71\x1e\x01\xe2\x1c\xbf\x47\x28\x2e\x84\x4a\x99\x8d\x97\xb5\x23\x4d\xa6\x76\xa1\x68\xb2\xaf\xb4\x97\x0d\xb3\xc8\xd2\x55\xc1\xaa\xe1\x3f\x6a\xaa\x2d\x9d\x33\x92\xa5\x04\xa0\x08\x78\xf5\x23\xd9\x84\x4d\x8d\xb1\xd7\x74\xb5\x43\x74\xda\x77\x10\xa6\x3c\x12\x7e\x1a\x89\xd7\x32\xcb\x8c\xa4\x59\xfa\x44\x6e\x54\xf5\xf3\x12\xc6\x64\xa9\x9c\xae\x78\xca\xc1\xbc\xb1\xc6\xa1\x63\x9e\x4c\x0b\x74\x4b\xc1\x8d\x17\x0c\x6a\x39\x8b\x16\x65\x3c\x0d\x4b\xfa\x53\x08\x06\xc4\x65\x5c\x85\xc0\x97\x71\x14\xc6\x7c\x1f\xdc\xf4\xf5\xb9\xa3\xd9\x08\xa1\x7e\x2d\x1b\x1d\x0f\x68\xd5\xc8\x7c\x90\xd5\x50\xc2\x95\xcd\x08\xfc\xfc\xa4\x2d\x50\xe8\x07\x78\x28\xc6\xb4\x7c\x69\x3a\x4e\xea\x95\xd5\x46\xb3\x6c\xac\x04\xae\x7b\x1e\xa7\x46\x84\x97\x5e\x0a\x62\x66\x3a\xbe\xf2\x4b\xb4\xe6\x28\x2e\x66\x49\x78\x4d\x98\x96\x6a\x11\x48\x64\xbd\xe3\x39\x2e\x91\x70\x51\x49\x67\xc4\xf6\xb5\x04\x43\xb8\xeb\xd4\x68\xbe\xfd\x91\xab\xbe\x2e\x83\x55\xeb\x55\x7a\x0b\xb6\x47\x4f\x57\x59\x7a\x65\x3f\x55\xa1\x55\x3b\x29\xb1\x36\xee\xe1\xb1\x28\xd0\xa0\x7b\xda\x46\xc3\x3a\x98\xcf\x86\xf2\x61\xb1\x82\xef\x9a\x97\x09\x22\x01\x5d\xed\x69\x55\xd3\x2f\x51\xf6\x8f\x2d\x95\x24\x9c\xf0\x3f\xda\x73\xd5\x32\xfe\xd8\x9d\x78\xba\x07\x8f\x09\x72\x30\x17\x2f\xf1\x59\x16\xd7\xe7\xa4\x4d\xcb\xc9\x27\xd6\xe2\x36\x09\xf8\x87\xb5\x92\xb4\x7b\x8e\xf2\x12\xe8\x17\xf0\x54\x9e\x7a\xbb\x4f\x74\xe7\x4c\x67\xf1\x86\x1b\x21\x1e\x16\x4b\x99\x81\x5e\xd1\xe1\xbc\xa4\x95\xcb\x0f\xcf\x5e\xba\xf4\x08\x2c\x55\x03\x5c\x1a\x8a\xce\xba\x49\x1d\xed\x61\x06\xcb\x7c\x89\x75\x28\x79\x95\x50\xa7\x55\x2d\x15\x16\x39\xfb\xe1\x6c\x96\x5c\x8b\xb7\x98\x1a\x31\x56\xd7\x76\xcd\xe4\x4b\x80\x55\x0d\x4b\xbc\x15\xee\x25\xe3\xc0\xdf\x09\x44\x82\x27\x53\xdb\x45\x6b\x48\xe4\x8b\x82\x07\x3a\x5b\xed\x49\x65\xda\xd2\x19\x69\x23\x31\x9f\x41\x12\x89\x78\x04\xf5\x08\x8b\xb9\x06\x9f\xc6\x8c\x00\xad\x5c\xa4\xeb\x19\x8f\x1f\xa3\xaa\x04\x17\x9b\x4d\x4d\xe1\x2a\x40\x57\x6b\xf6\x0e\x7e\x55\x71\x53\x45\xe2\x3d\xd1\x49\x95\xc5\xf4\x6a\x2d\x1f\x51\x7a\x09\xb1\x25\x2c\x70\xd8\x84\x1a\xeb\x14\x80\xa3\xa4\x0e\xb2\xa0\xae\x4b\x32\x9f\x22\x80\x33\xe3\x5d\x70\x1f\x00\xdb\xf2\xf0\x66\x61\xdb\x9c\x17\xf4\x94\x0b\x3a\xb9\x46\x74\x71\x59\x60\xf0\x38\x1f\xce\x93\x30\x5f\x5f\x5f\x5f\xf7\xbb\x57\xd9\x1c\xb4\xab\x4e\xf5\xcd\x03\xc5\x56\xf0\x2d\x3a\xd6\x2f\x26\xe1\x4e\x2b\xd8\xfa\xbe\xea\xa4\x9f\x5b\x7f\x5b\xc1\xf6\x33\xff\x13\x39\xdb\x0f\xa7\xff\x0f\xa7\xff\xff\xdd\xa7\xff\xe2\xe8\x9f\xc1\x8a\xc7\xb5\x72\xf3\xf8\xbf\x08\xb8\x61\xaf\x91\x17\x00\x80\xc5\x61\x4a\x8e\xc2\x74\x48\x43\x80\xf2\x3c\x87\x43\xee\xfa\x76\x4e\xbd\x23\xc0\xda\x60\x40\x2e\xb3\xfc\x73\x98\x33\x56\x66\x2b\xd8\xbc\x30\xbb\xc8\x18\x2e\x8a\x47\x23\x9a\xd3\xb4\x24\x34\xbd\x28\xa0\xd0\x79\x9e\x5d\x16\x34\x5f\x43\x4f\xa6\x5e\xc6\x69\x94\x5d\x82\xc5\xa2\xad\x4c\x16\x6d\xf2\xe8\x91\xc8\xe9\xff\xe3\xed\xcf\x6f\xca\x72\x26\x5e\xe3\xe5\x52\xd3\x4c\x23\x7b\x7e\x58\x10\x7d\xbf\x16\x93\x38\x2d\x49\x3c\x4e\x33\x26\x08\x92\x38\xa5\xac\x25\x69\x16\xd1\x35\x14\xa1\xc4\xc1\xa8\x3a\x7e\x35\x4d\x58\xcf\xc4\xc2\xd6\xee\x36\xad\x64\xc1\x29\xf9\x8f\x37\x1f\xb6\x0d\x74\x93\x7c\xbb\xdd\xad\x2c\x25\x35\x07\x56\xc3\x7b\x49\x4c\xd7\x25\x02\xf4\x27\xa6\xda\xc3\x03\xa4\xfc\xb9\x72\xd6\x4a\xe5\x00\x61\x94\xc7\x4b\xfe\x24\x2b\xca\x1e\x5c\x8a\xcc\xe6\x65\x8f\x21\xcc\x7b\x60\x64\xbe\xcc\x72\x11\xee\x17\x16\x13\x06\x47\xf6\x08\xfc\x77\x73\x43\xda\x82\xd9\x93\x6c\x18\x26\x2c\x31\xf8\xee\x9b\xa7\xdf\xb4\x77\x25\xb8\x40\x28\xee\x5b\xb2\x5f\x37\x37\xfc\x0e\x2a\x57\xae\x0b\x7e\x13\xac\xe0\xcf\xc0\xf0\xa7\x82\x45\xa5\x64\x4f\xd5\xbf\x54\x79\x9a\xe5\x74\xc6\x64\x68\x4a\x2f\xad\x21\xb3\x74\x27\x01\xf8\x01\xed\x65\x84\xe6\xf4\x22\xcb\x12\x1a\xa6\x0b\x38\x63\x65\xeb\xb3\xd4\x60\x34\x95\xc5\xc3\x97\x68\xc3\x67\xd6\x65\xbc\xae\x84\x29\x8d\xf4\x2e\xb3\x01\xe6\x41\x20\x43\xcf\x49\xcd\x4f\x50\x38\x23\x31\x19\x06\x27\x80\x3a\x9b\x10\xad\x5e\x41\x97\xdf\x7c\xd8\xee\xa8\xc3\x13\xae\x69\x21\xca\xa3\x81\x60\x30\x46\x00\x1e\x0b\x91\xd1\x1f\x8e\x72\xc1\x43\x9a\x72\xac\xd9\x8c\xa6\x9d\xf6\xfb\xa3\x8f\xc7\xed\x9e\x66\x88\x1e\x27\x0d\x80\xab\xb7\x0a\x61\x6c\x1f\x3d\x32\x07\xd5\xd8\xf4\xcd\xcb\x09\xd9\x23\xed\x17\x61\x11\x0f\x49\x9b\x6c\x40\x13\x5e\xcc\x99\x78\x40\x28\x36\x48\x3b\x50\x47\x85\x0a\x0f\x04\xc8\x81\x58\x82\x10\x2e\xec\xd9\xd3\xb6\xd5\x7f\xfd\x52\xf7\x1b\x08\xf0\xd9\x69\xef\x83\x5c\x8d\xff\x1d\xf2\xdd\x16\xd4\xcf\x7b\x58\x53\x88\xe9\xc7\x34\x2d\x9f\xb0\x8d\x76\xbb\x47\xda\x4c\xf3\x8f\x87\x80\x62\xf0\x6b\x21\xcd\x8e\xea\xc4\x4a\x0c\xd9\x12\x76\x9d\x86\x9f\x29\xbc\xb3\x88\x36\xd5\xb6\x25\xd9\x77\xf0\x3c\x43\xc7\xd7\x92\x05\x75\x38\xfe\x62\x9e\xd4\xb2\x5e\xc1\xe3\xf0\x6a\x86\x93\xb6\x34\x9b\xe5\x24\xcf\x98\xbc\xda\xe1\x9e\x01\xc0\x8f\xda\xba\xaf\x29\x97\x46\x1d\xb8\xe4\xc3\x83\xbc\xc4\xa3\x6b\x85\x5f\x10\x59\x1a\xf2\xf1\x43\xdc\x3e\x6f\x80\x83\x2c\x4d\xa9\xb8\x8a\x23\x39\x4c\x73\xa2\x71\xb8\x28\x6b\xcf\x69\x31\xcb\xd2\x82\x1e\xd3\xab\xd2\x69\xa0\x80\x45\x37\x90\xc4\x8d\x0f\xb3\x59\x75\x4d\xfa\x20\xf0\x77\x7c\x15\xe2\x59\xe2\x5c\x58\xa8\xb4\x32\x01\x0f\x84\x4b\x98\x60\x5f\x49\x9c\x1a\x4e\x10\x59\xaf\xd5\x71\xa4\xb2\x8b\x94\x79\x3c\x1e\xd3\x9c\x46\x24\x4b\x09\x1b\x7d\x50\x5b\xd4\x8b\xac\x8c\x06\xcb\x18\x06\x5a\xe0\xe3\x1a\x64\x56\x6d\xc8\x3f\xe0\xbc\xb2\x6b\x48\x93\x14\x5e\xcf\x2e\xca\xb0\xa4\xc3\x49\x98\x8e\xfd\x06\x04\x7e\x65\x45\x12\x3e\x8c\xae\xe1\xb2\x08\x9c\x08\x3f\x65\x12\xc6\x16\x79\x4c\x69\xd8\xd2\xfb\xa8\x06\x1c\xa3\x01\xe5\xa9\x12\x3f\xcd\x12\x19\xe6\x61\xd6\x12\x8e\x82\x3d\x99\xf7\xd4\x4a\x9d\x58\xad\xc8\x5b\x04\x1f\x6d\xd9\x07\x5b\x46\xcd\x6c\x2f\xb8\xb0\x48\xac\x17\x02\x97\xb2\x26\xb2\xa2\xaf\xa7\xde\x31\x2f\xd5\xc1\x8b\x87\x98\xc8\xf7\x2b\x01\xec\x26\xd4\x09\x01\x31\xd3\xf0\xbc\xd2\x87\xe5\xc9\x35\xe3\x77\x7e\x5f\x1a\x26\x17\xe3\xea\x8a\xb9\x15\x17\x02\x3f\x35\x85\xa9\x52\x02\xa4\x81\xd3\x56\x06\xd8\xfe\x21\x6d\x97\x64\x14\xc6\x09\x8d\xfa\xe4\x88\xed\xd3\x2e\x63\xb6\xf7\x60\xd2\xb1\x6e\x36\xa1\x3a\x3d\x63\xa1\xe9\xa9\xec\x19\x1d\xc9\x39\x71\x14\x90\xef\xd5\x9f\xb4\xf7\xb1\xd5\x27\x9f\x0d\x03\xd2\xde\xee\x6f\x2a\xe3\xa1\xb4\x3f\xb6\x53\x5a\x7e\x4a\xe2\xa2\xa4\x69\x9c\x8e\x55\xb6\xb2\x1e\x9e\x19\x0e\x5d\xd2\xc0\x95\xcf\xa9\x5f\x28\x4a\xaf\x42\xd6\x49\x3d\x08\x8e\xb9\x00\x77\x5d\x9a\x0a\x8c\xdd\x3e\x53\x73\x5b\xc1\x77\xec\x97\xa1\x3f\xb7\x82\xad\x6f\xd9\xce\x7f\xe7\x61\xe7\xff\xb0\xf3\xff\xef\xde\xf9\x6b\xbf\x7f\xb8\x87\x7b\x4f\x3e\xff\xca\x8f\x13\x6f\x2a\xcf\xe3\x31\x77\xc1\xed\xff\xca\x37\xe8\xfc\x18\x24\xfa\x99\x8e\xcc\xf5\x80\x4b\xec\x1e\x77\x0c\xc2\x3a\xba\x5a\xeb\x38\x04\x97\x16\x97\x13\xd6\xfa\x8e\xe9\x9f\xf5\x03\x2f\x4c\x1e\x93\x6d\xf7\x32\x29\x38\xfc\x31\x25\xde\xbc\x52\x4b\xfc\x97\x3c\x05\x91\xde\x8b\x4d\x5d\x98\x92\xc3\x17\xfb\xef\xc4\x18\x47\xe4\xfb\x6f\xc9\x30\x9b\xce\xe6\xfc\xf9\x70\x72\x7e\x4d\xa6\xd9\x45\x9c\x8e\xf9\x49\x5b\x9c\x17\x25\x79\x4a\x86\x93\x30\x87\xa5\x80\x1f\xcc\x46\xdc\x93\x4a\x7a\xab\x4b\xe8\x84\xf2\x3b\x0b\x65\xc6\x2a\xe4\xb4\x2a\x48\x67\x9f\xec\x91\xad\xcd\x1e\x79\xc1\xfe\xdf\xea\x91\x7e\xbf\xdf\x23\xff\x43\xf6\xc8\xce\x37\x5d\xb6\xd7\x21\xc5\x8c\x0e\xe3\x51\xcc\xe7\xd1\xe1\xc7\xa3\xad\x9d\x67\x5b\xcf\x6c\x0f\xb3\xb8\xc8\x20\x5d\xf4\x63\xcd\x79\xb6\x77\xc1\xaf\x79\xb3\x86\xb0\x0e\x9a\x27\x6b\xf8\x60\x59\x28\x52\x91\x04\x13\xd1\x3a\x4c\xfc\xc6\x80\x32\xc4\x78\x1c\x59\x8f\xda\xfb\xed\x3e\x23\xcb\x41\x16\xd1\xfd\xb2\xb3\x89\x8c\xd6\xac\x6f\xed\xff\x71\xb2\xb9\xfc\xe3\x57\xd1\x81\x59\xcb\xec\x64\x36\xa3\xf9\x41\x58\x68\x4b\x36\xca\x2e\xe6\xe7\x45\x99\x77\x9e\x76\xe5\x25\x73\x91\xb0\xd9\x7b\x6a\x1d\x98\xf1\xdc\x59\x12\x97\x9d\x76\xbb\x6b\xde\xbf\x4f\xbb\xa6\x73\xd5\x30\x8b\x58\xe7\x52\x5f\xe3\xa5\x7a\x08\x30\x3f\xee\x91\x7d\xa6\x0f\xc2\xc7\x0f\x7b\xe4\x7f\xac\x37\x61\x06\x03\xe2\x19\x59\x31\xb0\x06\xa4\x7a\xb5\x37\xa2\xe4\x09\xd9\x27\x1b\x64\x6b\x13\xb9\x19\xf9\x22\xd8\xca\x98\x61\xb6\x0b\xd3\xa2\xdb\xff\x35\x8b\x53\xd6\x4d\xdb\x51\x71\x38\x87\x27\x8d\x61\x88\xdf\x1e\xbd\x64\x8c\xbd\xb5\x29\x65\x92\x70\xf0\x03\xce\xf7\x70\xdc\xb7\x9b\xcf\x9e\xda\x0c\x37\xcd\xa2\xef\xbf\xdd\xda\xac\x62\x34\x93\xbf\xf4\x43\xd1\x9c\x9b\x44\xe1\x5a\x2e\xca\xe9\x34\x8c\x53\x6e\x3a\x62\x79\xfa\xe8\x51\xbc\x7e\x63\x8a\x07\x01\xac\xdd\x96\xb7\xbb\xd6\xbb\x3e\x20\xac\x24\x98\x72\x78\xfd\xde\xf0\x90\xd3\x55\x82\xaa\x7d\x98\x96\xfc\xc9\xa0\x1e\xd9\xda\xec\x92\xff\x3f\xa3\xda\x86\x83\x85\xbf\x1a\x24\xbc\xcf\x7d\x97\xca\x15\x2e\x55\x52\xe3\x33\xc6\x69\xf9\x35\x24\xee\x81\x0e\xf3\x40\xf8\xfb\xc3\x79\x3a\x24\x88\xab\x0e\x42\x7c\xca\xf1\xf2\x0f\xce\x00\x3f\x27\xee\x1f\x04\xe1\x08\xad\xa7\x9c\xdb\x54\xb9\x7b\x6c\xdc\x4e\xca\x14\x0e\x3a\x9f\xca\xcb\x39\x16\x53\x31\x98\x7d\x95\xe3\xb4\x3d\x44\x59\x52\x8b\x66\x5d\x58\x28\xb1\x86\x8d\x62\x2c\xa7\x8f\x30\x2e\x0b\x83\x11\x16\x2f\x64\x18\x0c\x74\x51\x81\xc3\xf5\xc8\xd6\x33\x24\xc2\xce\xc3\x82\xee\x3c\x23\x7b\x50\x46\x5b\x87\x76\x9e\x19\x1e\x00\x51\x44\xb9\x61\x11\xd6\xc0\x0e\x2f\xd4\x23\x5b\xdf\x98\x8a\xb0\x6a\xe7\x8b\xf3\x30\xed\xf0\x62\xa6\xf0\xb3\x26\xb3\x88\xb4\x83\x26\xee\x0b\xd6\xf5\x32\x33\x56\x2f\x36\x7c\x3c\xae\x5c\x7e\x2d\x67\x34\xb7\x25\x81\xbb\xee\xfb\x84\x86\x05\x65\xfa\x84\xd0\xc9\x7e\x88\x7f\x6c\x8d\x41\x21\x01\x0a\x09\xc9\x00\xe8\x8a\x49\xc8\x95\x35\x58\xdf\xae\x86\xc9\xbc\x88\x41\xc1\x81\xbd\x63\x7c\x1e\x27\x71\xa9\xf4\x9b\xf3\x30\xfd\x3c\x38\xcf\xc3\x74\x38\x21\x05\xcd\x2f\xe2\xa1\x5c\x00\x43\xfe\x94\x6e\xeb\x87\x41\xfc\x63\xdf\xe6\x21\xa6\xd0\x51\x79\x5f\x05\x56\xa1\x11\xcd\xd9\x32\x14\x26\xe3\x2c\x8f\xcb\xc9\x94\x44\xb4\x18\xe6\xf1\x39\x17\x4b\x42\xfd\xa1\x69\xff\x32\xfe\x1c\xcf\x68\x14\x87\xa0\x03\xb1\xaf\xc1\x61\x5a\xd2\x9c\xc7\x87\x0f\x93\x4f\x2f\xc2\xf4\xf3\x27\xf1\x8e\xef\x27\x3e\xae\xff\xbf\x9f\x44\x4f\xd3\xf1\x27\xd6\xc5\x4f\x70\x95\xe8\x53\x14\x8f\x63\xe7\x26\x87\x1c\x1a\x1f\x47\x9e\xcb\x35\x55\x8e\x80\x0c\x83\x54\x66\x9e\x65\xb6\x01\xaf\xbe\xb0\x67\xe4\xb9\x25\x16\xc5\x88\x1e\xf0\x75\xaa\xfd\x8f\x57\xed\xdd\x35\xaf\xcc\x14\x32\xb6\x63\xad\xdc\x1d\x8c\x60\x83\xb4\x37\x41\x55\x82\x5a\xb0\xb7\x0b\x23\xc7\x4b\x46\x0d\xb2\x47\x3a\x5c\x9d\xea\x7c\xff\x1d\x79\xa2\xab\xe8\xca\x5b\x03\x4f\xb6\xdd\x50\x96\x3c\x90\x8c\x59\x15\xc2\x29\x2a\x5c\x62\xb5\x12\x42\x04\xd1\x0a\x18\x7b\x1c\xb3\x4d\x40\x9c\x16\x65\x5c\xce\x4b\xf9\x1a\x75\x1c\xd1\xb4\x64\x8b\x56\x6e\xfb\xde\x03\x96\xc3\x34\x8a\x73\x6a\xfa\x2f\x98\x57\x6c\x8a\x9e\xd4\x65\xd5\x1d\x1b\xb8\x34\xd5\x42\x35\xb5\xa0\xaa\x96\xae\xab\xb5\x8a\x2c\x32\x5b\xe2\x7d\xa1\xda\xdc\x01\x9b\x92\xa1\xfd\xea\xf8\x0d\x1b\x07\x79\xb9\x05\x53\x00\xa5\xaa\xb6\x75\x2d\x79\x9d\xd5\xc9\x6b\x79\x93\x8e\x13\x97\xaf\x20\x6c\x1b\xc7\xc3\xdf\x20\x39\xee\xe8\x9d\x10\x4a\xa1\x52\xdf\x54\x6b\x91\xc7\xee\x21\xed\x1d\xfc\x36\x1d\xaf\x49\x29\x9d\x87\x28\xe4\x50\xad\x9e\x10\xe3\xd0\x45\x31\x67\x2b\xac\xfc\xe9\xb8\x45\x4b\x4d\xe5\x8a\x0a\xd0\xf4\xca\xcb\x83\xb8\xcf\x6a\x6e\xfb\x7b\xd5\x23\x99\xc7\x68\x03\x7d\xc3\xc6\x1a\xb7\x97\x16\x27\x0c\xfe\xf7\x1f\xaf\x4e\x37\x9f\x7c\x7f\xf6\x65\x7b\xd1\x79\x75\xfc\x86\xfd\xde\x7f\xf2\x3f\x67\x5f\xb6\x76\x16\x37\xea\x63\x67\xb3\xb7\xb3\xb5\xe8\xfe\xbf\x41\xbf\x04\x1b\xa8\x5a\xc0\x8d\x6b\x79\x55\x82\x01\x81\xf3\xdb\x79\x5b\x2b\x12\x4c\xdc\xc0\x84\xcd\xbf\x97\x6c\x2f\xf5\x14\xbc\x1f\xba\xbd\x74\x67\x92\x45\x38\xdd\x29\x7c\xb7\x67\xe7\x29\xb9\xb9\xa9\xca\xfb\xe6\x96\xdd\x1e\x91\x38\xad\xe8\xb8\x21\x7d\xee\xa7\xeb\x5e\x31\xd2\xa8\xf3\xdb\x9b\x8d\x9c\x36\xb9\x4a\xc9\x7a\x5a\xcc\xa7\x0c\xf0\xa4\x10\xdb\x87\x69\x16\x3d\xf9\xfe\xdb\x27\x5b\x9b\x2a\x1b\xf6\xb8\xd0\xba\x61\x96\x90\xce\xe1\xc7\xa3\xc1\xe1\xab\x03\xc2\xf6\x0d\xc1\xf6\xe6\xe6\x4e\xd7\x96\xc9\x08\xad\xbb\x0b\x45\xb9\x4e\xc7\x65\x5e\xc3\x6e\x8b\x3d\xe1\x76\x8f\x6c\x37\x73\x55\xc5\x42\xd5\x58\x52\x08\x1d\xf7\xc9\x3f\x3e\xbc\xfa\xc9\x89\x8d\xa9\x0a\xf8\x7b\x53\x89\xd1\x1d\x54\x04\xb9\xac\x7b\x9a\x01\x3a\x10\x38\xd1\xe9\xf2\xb7\x3d\xf2\xb4\x4b\x02\xd2\x6e\x37\xea\xf7\x30\x89\xe1\x1e\x99\x6a\x20\xd8\x9e\xe2\xd4\xee\x1f\xa3\xc2\x4f\xfb\x7f\x3f\x7a\xfd\xcf\xa3\x0f\x7f\xb3\x47\x15\x70\x54\x8c\xa9\x8d\xdf\x3b\xb8\x1c\xe8\xce\x7d\xdf\xda\x5a\xbd\xe7\x62\x36\xf9\xf7\x25\xee\xc6\xc3\xed\x9a\x83\xc0\xe9\x5e\xe8\xd9\x87\xe0\x63\x27\xd1\x39\x5f\x4c\x3d\x63\xd3\xe1\x76\xf8\x29\xda\xc4\x56\x6e\x65\xe4\xfe\x43\xed\x52\x8c\x1d\x2a\xdf\xa3\x98\xfb\x99\xad\x67\xdd\x1e\xd9\xde\xf4\xee\x69\x25\x75\xad\x3e\xca\xb2\xcd\xe6\x67\x45\x9c\xb5\x43\xc8\xe2\x26\x7d\x6c\x56\x6c\x05\xe6\xe7\xe2\xac\xb7\xf3\xf4\xc1\x88\xff\x60\xc4\xff\xef\x36\xe2\x4b\x0b\xfe\x6c\x58\xef\xbd\x77\x07\x7f\xbb\xd6\xbc\xa0\xa0\xab\x0f\xcb\x96\x30\xdd\xdf\x4b\xb8\x1e\x8e\xea\x70\x36\xf4\xfa\x81\xcd\xc2\x72\xd2\x23\x29\x35\x7c\xbf\x3f\x81\xe1\xc2\xb9\x76\x2a\x0f\xaa\xe5\x85\x0b\x1c\xb3\x40\x78\xeb\x80\x87\x0f\xfb\x6f\x17\xdd\xd4\x1a\xaa\xb3\x5d\x10\x88\xa5\x4c\xe8\x7c\x61\x90\x81\x2e\xab\x02\xab\x5a\xc5\xfa\x59\xda\x69\x43\x8f\xda\xfa\x6e\x6b\x87\x76\x0d\xcf\xe9\x22\x63\x02\x8c\xdf\x22\x3c\x7c\x7f\x40\xf4\x89\x32\xbf\x5b\xd8\xee\x11\xfc\x48\xdd\x27\x2e\x02\xc5\x51\x77\xc7\x0e\xed\xea\x6d\x41\x1a\xe1\xfa\x51\xf5\x35\xc8\xd6\x84\x25\xfa\xe7\xc3\x8f\xc7\xaf\xde\xc1\xe4\x39\x38\x7a\xf7\xee\xd5\xc1\xf1\xe1\xd1\x3b\xf2\xe1\xd5\xc7\xf7\x47\xef\x3e\xbe\xfa\x58\x59\x69\x14\x96\x21\xae\x15\x87\xde\x07\xd4\x8f\x85\xff\xe0\x34\xbc\x1a\x66\xd3\x59\x42\xaf\xe2\xf2\x3a\x20\xcf\x80\xa9\xac\x06\x82\x15\x54\x39\x20\xa8\x87\xc7\x60\xa5\xe9\x7a\x02\xf7\x0b\x67\x83\x2f\x6b\x86\xe9\x1b\xb6\x7c\x91\xed\x34\x21\x9a\x33\x80\x15\x1d\x44\x4b\x44\x2e\x27\xf1\x70\x42\xa6\x61\x39\x9c\x08\xc5\x95\xaf\x3f\x4c\x96\x45\x46\xb9\x78\x64\x85\x34\x11\x55\xfb\x1e\x8d\x15\x07\x51\x4e\x6b\xc1\xf5\xc0\x05\x17\xe8\x3f\xf9\x79\xf8\x14\x2e\xc5\xc5\xd1\x99\xfb\x52\xbc\x2a\xcc\xfa\x2a\xc0\x76\x1d\xa8\x85\xf5\xc2\x92\xf7\xb4\x40\xa1\x11\x6d\xb7\x11\x2d\x1c\x2a\x8e\xe2\x9c\x1a\xa1\x00\x6c\x72\x55\xf5\x87\x75\xc5\x53\x7b\x0d\x78\x87\x8d\xa3\xe5\x59\x82\xff\x22\x9a\xd0\x92\xd6\x61\xb0\x3b\x63\xd3\x06\x5f\xbf\xfe\x85\x2d\x58\xc0\x88\x82\x21\x38\x3e\x30\xeb\x70\x27\xa9\x94\x47\xc9\x21\x19\x8f\x1b\x1e\x97\xfd\xb5\x35\xa9\x06\x9a\x2c\xbc\x66\x1b\x3c\xe0\x2a\x26\x53\xfb\xb4\xb8\x43\x9a\x91\x59\xb8\xee\xb5\x15\x2c\x01\x7b\x96\xa6\xc6\x23\x35\x8a\x68\xd3\x72\x7a\xbf\x7c\xf5\xe4\xe0\xcd\xc9\xbb\xbf\xbd\xfa\xa0\x70\x44\x74\x38\x99\xa7\x9f\x69\x24\xae\x92\xf0\x6b\xa2\xe2\xaf\x9f\xd3\x59\x12\x0e\x69\x67\xf0\xaf\xc5\xe9\xbf\xd2\x7f\xe5\x67\xcf\xff\xf5\x65\x30\xee\xb5\x17\x37\x4f\x9e\xdc\x7c\x69\x77\x21\x46\xf6\x17\x2f\xfc\xbf\xce\x64\x89\x53\x51\xe6\x8c\x15\x3a\x95\xa5\xce\x4e\xfd\xe5\xec\x52\x46\xa1\x8a\x32\xba\x2e\x54\x93\xaa\x08\x95\x11\x87\x7b\x2c\xbb\x2d\x85\xa8\x41\x01\x77\xbe\x02\xd1\x91\x6c\x19\x0c\xe0\xe4\x93\x8a\x18\x18\x10\x5e\x03\x10\xac\x39\x6c\xcf\xf2\x0e\x58\x96\x39\x6b\x45\xb0\x19\x0b\x86\x6c\x88\x07\xa2\x0c\x05\x5d\x9d\x54\x5b\x52\xcc\x8d\x64\xe0\x73\x00\x13\x0f\x76\xa0\x33\x42\x70\xa1\xe1\x1e\x34\x6b\xee\xc4\xd3\x8d\xd9\xb3\x1b\x23\xba\x0e\xc1\xa3\x95\xdb\x34\xc4\xbb\x4b\x87\x34\x81\x97\x21\xe4\xcd\x4d\xa3\xcc\x30\xa1\x61\x2e\xfd\xb6\xac\x5a\x44\xb2\x35\x99\xfd\x40\x10\xa0\xa1\x94\x88\x7c\xcb\x9b\x59\xde\x5e\xe6\xf0\x5f\xad\x33\xa5\xa0\x19\x86\x5f\xf4\xc8\xd6\xe6\xe6\x26\x79\xcc\x8f\x64\x3c\x27\xac\xde\x68\x0f\x70\x59\x0f\xa8\x23\xe9\xc5\xa4\x47\x41\x05\xbf\xf0\xa7\xd0\xc4\x65\xbe\xd5\x49\xe5\x8e\x98\xc5\x22\xf1\xa8\xa3\xdc\x29\x9d\x06\x73\xf1\xd0\x9f\xcd\x8b\x89\xe9\x26\x68\x87\x8d\xc7\xe0\x22\xe2\x0f\x93\x8f\x3f\x89\xe5\x33\x8c\x22\x08\x6c\xa3\x9c\x3b\x33\x43\x5e\x6a\x25\x8c\x1b\x85\x7b\x6b\x7c\xb1\x95\xfb\x01\xb1\xc3\x8e\xf9\xbb\x0b\x42\xe2\xc1\x4a\x2c\xcf\x82\x54\xea\x61\xc4\x4b\x85\x79\x1e\x5f\x50\x2c\x6c\xc3\x48\x8d\x9e\xac\xaf\x46\xba\x7a\xa0\x8d\x67\x17\xfc\x8e\xa4\x48\x9f\x90\x57\xd4\xe3\x88\xdc\xdc\xc8\xaf\xd3\xcd\x33\xb5\x5c\xc2\xc1\x35\x6f\x9b\x86\x16\x09\x66\x09\x9e\x88\x95\x39\xef\xc2\x45\xf6\x54\x6b\xea\x14\x5d\x06\xda\x57\x15\x4b\xdc\x72\x45\x93\xf3\x08\xcf\x54\x72\x39\xa1\x32\xd8\x40\xc4\xb5\x71\xd8\x74\x81\x9d\x9d\xad\xed\x11\x22\xb3\x60\xe2\x1a\xd2\xba\x4e\x9d\x6a\x47\x3f\xca\xf2\x0e\xa3\xcb\x67\x7a\xcd\x37\x88\xbe\x0e\x98\x91\x5f\x3a\x7e\x20\xfb\x19\xa5\xcf\xf4\xba\x6b\x49\x81\x0a\xf2\x7c\xa6\xd7\x67\xd5\x0e\x9d\xed\x2c\x25\x87\xef\x0f\xda\x5d\xfb\x2d\x4a\xae\x57\xd4\xe0\x74\x9c\x2b\xf4\x34\x39\xc0\x81\x07\x45\xdc\x7c\x82\x76\x1a\x71\x41\x8a\x32\xe6\xaf\xea\xc4\x11\x62\x6a\xec\x0b\x5a\x49\x70\xbf\xf3\x66\xa7\x7a\x93\x24\xf5\x00\xb6\x7a\xe4\x54\xb4\xa3\xc7\xb9\xc0\x6c\xd5\x38\x4b\xa9\xb0\x37\x75\xd6\x3f\xd9\x2a\xff\x65\x1e\x97\x10\x24\xc5\x92\x46\x08\xc4\xda\x3d\x7d\x72\xb7\x4f\x32\xae\xe0\x7a\x15\x76\x61\x37\xf2\x76\xbd\xee\xda\xc0\x1a\xe6\x1f\x0b\x2f\xfd\x88\xee\xab\x10\x63\x91\xdd\x35\x24\xf7\x0a\x24\x92\x64\x5a\x4e\x25\xe2\xd9\x3e\x2d\xdd\x66\xca\x56\x46\xe8\xae\xaf\xaf\x57\x35\x6e\xce\xb7\x53\x1b\x14\x57\x63\xad\xc1\xec\x4a\xf3\x75\x14\xad\x8b\x96\x73\x1d\x9f\x33\xf6\x7e\xc4\x89\xb9\xf3\xcf\x6c\x0e\xae\xd4\xfa\x4a\x59\xab\xbd\x61\x8b\xd7\x8d\x76\x8b\x14\xd8\xfb\xba\x8f\x9d\xb1\xb5\xdc\x83\x6b\x59\x59\x49\x8a\xf9\x6c\x96\xe5\x25\x98\xd0\xf8\x79\xec\xfb\x03\xa2\x8c\x27\x6d\x23\xda\x63\x35\x23\x36\xbe\x8e\x70\x9b\xc9\xb7\x9c\xab\x56\xe2\x28\xef\x16\x1e\x78\xa8\xd6\x4d\x1e\x45\xcd\xb5\x57\xcf\xca\x90\x36\xae\xb9\x56\x53\xd0\x89\xc4\x5e\x71\x15\x7b\x71\xd6\xdb\xf9\xe6\xc1\x72\xfb\x60\xb9\xfd\x53\x58\x6e\xc5\xed\x89\x3b\xdd\xb9\xde\x0f\xf3\x2c\x25\x7f\x9b\x4f\xc3\x8b\xb8\x20\x3f\x84\xec\xf3\x2f\x9f\xf9\x67\x7f\x4a\xbd\x56\xdd\xc1\x80\x1c\xa6\x71\x19\x87\x49\xfc\x6f\x4a\xfe\xca\x5b\xc1\x18\x35\x24\x05\xf8\x5b\x49\xb7\x1a\xe8\x28\x9b\xaa\x46\x24\xf3\x3e\x18\x6f\x65\x31\xf9\xfc\x8d\x78\x39\xed\x30\x0a\xc8\xe6\xb2\xf3\x35\xee\xd3\xc1\xba\x6f\xc7\xce\xf5\x3a\x93\x78\x63\xe6\xea\xab\x66\xf2\x91\xb6\x91\x24\x28\xd4\xa4\xdd\x76\x3c\x91\x76\xf9\x15\x94\x1e\x32\xeb\x8c\x24\x1a\x99\x25\x03\xec\x7a\x63\x0d\xa1\x1e\xb0\xfa\x9c\xd6\x0f\xd6\x04\x79\x2a\xe2\xed\xf2\xba\x7a\xa2\x32\x23\x32\x2a\xcf\xea\x56\x59\x91\x65\x95\x8e\xcb\x8e\x72\xce\x5d\x6f\xa3\xe7\xd2\xc2\xe8\x82\xed\x49\xe5\xe8\x90\xc3\x97\x90\x23\x5b\xa7\x06\x6d\x63\xa3\x2a\x98\x90\xff\x8a\x0f\xbf\x10\xe4\xa0\xd1\xd9\xf2\x0e\x90\xe8\xa9\x4a\x97\x97\x7f\xf8\xff\x6c\x83\x24\xaf\x01\x35\x77\xaf\x90\x34\x50\x9b\x45\xe9\x26\xe4\x77\xc8\x51\x86\xb9\x65\x4f\xf6\x79\xae\x5f\x5b\x15\xf8\x9d\x30\x24\x19\xac\xfa\x8c\x11\x97\xa8\xac\x33\x4f\x1e\xb8\x07\xd9\x97\x05\xd0\x73\x55\x77\x9f\x5e\xd0\xfc\xba\x23\x43\x1e\x7f\x8c\xd3\x71\x42\xdf\x72\x82\x77\x49\x40\xbc\x19\x1a\x93\x18\x56\xd5\x10\x3f\xb8\x18\xc0\xae\xf5\x88\xf0\xfa\xba\xe4\x1b\xe4\x27\x24\xd3\x38\x47\x1a\x1e\x44\x22\x43\x8e\xcf\xde\xde\x1e\xe7\x1a\x0c\x24\x62\x2b\x48\x58\xb6\xc7\x66\x60\xfc\xf4\xb6\xed\x43\x27\x74\x56\x2b\x70\xe4\x60\xc0\xdf\x94\x54\x49\x22\xf4\x3a\x16\x2e\x72\x3e\x36\x0a\x1a\xcf\x05\xd1\x39\x5c\x3a\x5b\x22\x8e\x5e\x30\xa0\xea\x38\xde\xa2\xe1\x96\x7c\xe1\xb8\x0a\x2e\x54\x05\x2a\xa9\xe0\x44\x5d\x30\x16\x89\x49\xd1\x91\xb2\xa7\x4b\x46\x31\x4d\x22\xcb\xc1\x40\xd4\x62\xb4\xd4\x92\x39\xb8\x81\x96\xe0\xe1\x4d\xb3\xd8\x50\x26\x5b\x4f\x3b\x48\xb6\x70\xa3\x5d\x39\xe2\x4d\xc2\xf6\xa5\x68\x93\xdf\x42\xc4\x99\x36\x77\x47\x57\x14\xf8\x84\x9e\xc8\xd4\xc0\x67\x0f\x6a\xe0\x83\x1a\xf8\xdf\xad\x06\xfe\x7f\xec\xbd\x79\x7b\x13\x39\xb3\x38\xfa\x37\x7c\x0a\xc1\xef\x9e\x89\x0d\xc6\xf1\x96\x05\x43\xe6\x3d\x21\x90\x21\xef\xc0\xc0\x25\xcc\x72\x4f\x9e\x0c\x4f\xdb\x96\xe3\x06\xbb\xdb\xa7\xbb\x9d\x38\x33\xe4\xf7\xd9\xef\xa3\xd2\xbe\xf5\xe2\x38\x2c\xf3\x26\xef\x39\x8c\xbb\xbb\x24\x55\x49\xa5\x52\xa9\x54\xaa\x92\xb7\xf0\xe8\xa4\x59\xd7\x3d\xbc\xf5\x1c\xd1\x13\x90\xd7\xdc\xbc\xe8\x75\x49\x86\x7d\x22\x4b\xc7\xc2\x7d\x8d\xc9\xa3\xb2\x8b\x64\x71\xd5\xf8\x57\xf2\xa8\x9d\xcf\x83\xcc\x93\xdf\xa5\x66\xd0\x52\xc0\x20\xf0\xbe\x9a\x4d\x53\xba\x3b\xab\x1f\x94\x12\x34\x9c\xb3\xab\x88\xf1\x45\x33\xb2\x82\xc5\xe0\x75\x10\x05\x67\x58\x5e\xc1\x27\x22\x8b\x76\x85\x66\x0a\xe0\x71\x3a\x24\xb8\xb2\xde\xcf\xb4\x1e\xb2\x2a\x4e\x66\x05\x5e\xee\x23\x4c\x24\x4c\x18\xe9\x41\x3c\x0d\xf5\x6f\x10\xa4\x34\xb0\x82\x2f\xdd\xc4\x19\x86\x50\x94\x8e\x45\x4a\x0f\x27\x6f\x46\x0f\xe5\x6d\xea\xed\x01\x8b\x59\x1d\xc1\xda\xf0\x26\x94\xd0\x62\x86\x2a\x39\x72\x04\x73\x08\x6f\x3d\x1e\xb0\x30\x25\x8a\x8d\x78\x53\x14\xcb\x98\x46\xdc\x94\x87\x12\x2c\xff\x06\x5b\x76\x05\x9d\x4d\xf4\x9a\x88\xf2\x10\xa7\x2c\xfb\x39\xf4\x87\x15\x6a\x52\x0b\xdf\x59\xba\xdf\x38\x51\x9f\x7f\x59\x4c\xa7\x32\xfa\x45\x83\x68\x91\x78\x19\xc2\x31\x99\xab\xef\xbe\xcd\x24\x43\xdf\x7e\x6e\x1d\xab\x23\x4b\x65\xd4\x31\x93\x98\x88\x74\x31\xfa\x3e\x0c\x15\xa4\x88\x79\xf7\xf6\x80\x65\x91\xc8\xcf\x0f\x23\x7b\x8d\x85\x73\xa5\x7c\x07\x7d\x2e\x36\x9c\xe6\xad\x22\x80\x3c\x22\x80\x76\x27\x69\x2c\x27\x5e\x39\x7a\x43\xa9\x25\xb7\x33\xee\x39\x64\xab\x87\x7f\x5c\xce\x9e\x8e\xd2\x86\x06\x29\xe2\x2a\x36\x10\xe4\x76\xcf\xcb\x12\x85\xfe\x25\x7f\x53\xde\x86\x22\xa7\x44\x18\x28\x8f\x05\xc1\xf3\xad\x4e\xa7\xd2\x5e\x24\x5d\xce\xef\x78\x1a\x63\x37\x7f\xa7\xa8\x47\x1c\xf6\xf4\xbd\x23\x0d\x8a\x9e\xe3\x59\xed\x42\x73\xa9\x82\x78\x32\xb0\xe9\xf9\x97\x13\x40\x54\xe5\x4c\x3f\xc2\xfa\xc2\x95\x95\x88\xdf\x91\xe2\x6c\x58\x21\x39\x51\xc0\xa7\x6d\xa9\x4e\x28\x97\x66\x48\x8d\xb8\xca\x56\x11\x33\x10\x72\xe5\xf8\xca\x4c\x9b\x00\x60\x65\x1a\xa8\x80\xf0\x4d\xcb\x21\x24\x36\x29\x6e\x1b\x08\x37\x66\x80\x5d\xc9\x63\xca\xc8\x8b\x9c\xac\x1a\x38\xac\xae\xe2\x51\x70\x69\x7f\xea\xba\xd6\xe0\xa3\xda\x5d\xe4\x03\x27\x6d\xb0\x08\xa7\x23\xe8\x30\x46\x14\xf9\x68\x85\xb0\x05\x71\xff\xfe\xcd\xf3\x37\xf7\xee\xdd\x03\xe5\x7e\x23\x45\x8b\xb3\xe9\x65\x93\x25\x0a\x23\xdb\x81\x45\x4a\x56\xc4\x4c\xb4\x12\x29\x51\x63\xc9\x6f\xee\x45\x23\xce\x47\x88\xe0\x80\x0f\xe2\x4e\x75\x5b\x4b\xe6\x34\xf8\x78\x42\x3e\x9f\xb4\x4e\x4f\x89\xd2\xa5\x3e\x7e\xfe\x2c\x9c\x33\x4d\x50\xfa\xa3\x0d\x65\x08\x2d\x4f\xdc\x07\x45\x46\xed\x0a\xa4\xbb\x77\x45\x3f\xf9\x8e\x4c\xc5\x09\xba\x74\x2c\xa5\x49\x4e\x22\xf7\xcd\x2b\x64\x45\xf2\x66\xca\xbb\xdc\x0a\x57\x89\xf4\x8c\x8c\x1c\x15\xae\x64\x04\xda\x46\x1d\xda\xd2\xd5\x49\x79\x2a\x25\x0f\x67\xb4\x6c\x2b\xc2\x8f\xce\xe1\x83\x67\x36\x4c\xe1\x59\x3b\xaa\x2c\x13\xde\x8f\x86\xb7\x8c\x33\x61\x8a\x8e\xae\x56\x8d\x9f\x04\xf3\x0c\x8a\x71\x0a\xf9\x54\x36\x96\x33\x4f\x64\x85\xa3\xe2\x80\x8d\x5c\x40\x2e\x12\x0c\xc7\xa1\xef\xde\x1e\x88\x18\x4b\xd4\x6f\x65\x18\x44\x42\xd3\x0c\x23\x66\x71\x71\x47\x73\x4a\xec\x68\x8e\xcd\x66\xf3\x4a\xcd\xe0\x66\x46\xcb\x93\x66\x4c\x5e\xd4\x21\x48\x8b\xa2\xd6\x7b\x03\xca\x57\x61\x42\xce\x03\x7a\xd4\x79\x75\xd4\x7c\x1d\xcd\x4a\x7a\xac\x3a\xaf\xb9\xc3\x4b\xd9\xb3\xbf\x9d\x5b\xa3\xcf\xad\xd1\xe7\x9f\x6d\xf4\x61\x16\x9f\xd1\xe0\x1a\xc7\x7e\x2e\xa3\x8f\x30\xd5\xa8\x56\x1f\x2a\x9c\x84\x39\xe7\xf9\x33\x4d\x8e\x10\x32\xf4\xa8\x1e\x96\x99\x02\x28\x35\x5e\x3f\xf1\xa4\x02\xbb\x2b\x55\xa5\xb4\xe6\x70\xdc\x67\x27\x5b\x96\x5e\x65\x68\x40\x35\x52\xa9\xb2\xa8\x30\x20\xcb\xdc\x52\x73\xe1\x66\xd8\x99\xe5\x02\xef\xcf\x46\x04\xe9\xf4\xd9\xdd\xb4\x08\x5f\xb0\x8e\xac\x49\x2c\x89\xba\xd1\x47\x1b\x02\xce\x48\x92\xd1\x47\x1b\xa3\xc1\x07\xd7\x57\xae\x20\x76\x05\x4e\xa2\xd1\x33\x5c\xae\x51\x01\xe7\x6c\xd4\xf5\x95\x37\xda\xb1\x1b\x9d\x2f\xb2\x97\x78\x59\x4c\xe6\x4b\xbc\xf4\xd1\xa8\x7f\xca\x27\xb0\xb8\x2d\x0a\xe4\x23\xcd\xdd\x96\x41\x17\x5b\x87\x4e\x24\x1c\x1f\x88\x86\xec\xe4\x06\x23\xbd\xc1\xd0\x02\xe0\x53\xcf\xa2\xf5\xfc\x99\x5c\xb0\x28\xef\xdc\xef\x77\x61\x75\xda\xbd\x5d\x9d\x6e\x57\xa7\x7f\xf6\xea\x24\x8f\x24\x70\x36\x59\xe9\x3c\x82\x01\xaf\xf7\xd2\xa1\x27\xb5\xbf\x2b\xb7\xbf\xeb\xf0\xc3\x7d\xfe\x51\xb0\x62\x12\x10\xee\x76\x6c\x00\xcd\xd9\x6b\x0e\x36\xf4\xb5\x37\x8c\xa3\x71\x78\xc6\xc1\x94\x3c\x37\x2a\x34\x4f\x9b\xc2\xc1\x2e\xd8\xd5\x34\xed\x60\x86\xbd\xe4\x30\x87\x34\xcf\xb7\xd1\x19\xf0\x92\x83\x1c\xa5\xc7\x97\xd1\x90\x2e\x31\x2a\x54\x4a\xdf\x72\x30\x22\x8a\x13\x6c\x02\xb1\xb7\xa2\x2e\x1a\x7e\x48\x85\x08\x07\x41\xc4\x3f\xd3\x98\x86\x16\x3e\xfc\xb5\xd0\x3f\x20\x22\x5a\x99\xb3\x02\x61\xeb\x66\xf7\x00\xc1\xfc\xd7\x3a\xad\xa3\x1f\x7e\x40\xec\x77\x13\xac\x81\x6f\xc6\xb5\x8d\xd6\x72\x83\x06\x26\x69\xd5\xd1\xbf\xd0\x7d\x9c\x4d\xc8\xea\x01\x59\x47\x9f\x5d\xbe\x0c\xd2\xc9\x7d\xd4\x37\x5f\x53\x53\xee\x7d\xa9\x25\x28\xc9\x9d\x0e\x93\x78\xf6\xec\x0b\x60\xba\xc1\x50\x52\x72\x06\x3d\xbb\x84\x86\x09\xd2\xfb\xd1\xe8\x88\x94\x13\xa9\xba\x9c\x90\x94\x0e\x01\x2b\xe9\x59\x44\xc3\x29\xfe\x42\x04\xfc\x4a\xda\x2a\x40\x5d\x85\xf1\x22\xcd\xc7\x47\xa1\xf3\x20\x5e\x44\xa5\x8e\x97\xd6\x40\x87\xb3\x6d\xca\x42\x2a\x29\x1e\x30\x4a\x95\x35\x04\x5f\x10\xff\x5f\x45\x83\xca\x60\x58\x83\xa0\x02\x68\x38\x0b\xf4\x0e\xb3\xd9\xf7\xbe\x37\x80\xec\xbe\xfe\xbd\x01\xb5\x7a\x50\x29\x1e\x62\x27\x46\x73\x15\x99\x79\x01\x1e\xf3\x15\x50\x50\xce\xb6\xa9\x74\xa5\xe1\x2d\x90\x1a\x7e\xfb\xe8\xd9\xfe\x2f\x46\xa6\x31\x26\x53\xa9\x41\x86\x5e\x92\x65\x66\x99\xab\xbb\x77\x29\x76\x4d\xea\x11\x25\xee\xcc\x1c\x66\x33\x69\x08\x6a\xa0\x0d\x35\x2f\xf3\x46\x83\x91\x79\x86\xb3\xbe\xc7\xdc\xc9\x23\x91\x36\xd5\x82\x8c\x92\x06\x33\xd1\x69\x85\xcf\x83\xa9\x96\x42\xac\x69\x64\xc5\x3e\x0f\xa6\x56\xa8\x11\xf1\xee\xea\x2e\x74\x4f\x25\x52\x58\x14\xbf\x55\x88\x61\x45\x57\x21\x87\x15\x2d\x49\x50\x99\xbd\x28\x91\x2e\xc1\x14\x3c\x36\x0b\x77\x4e\x0c\xd0\xde\x3d\x71\x31\x65\x7d\x17\x5b\x28\xc5\x8b\x53\x3b\xbc\xeb\xa3\x13\xa9\x50\xd1\x83\x3d\x16\x24\xf3\x50\x9e\xe3\x99\x10\x6a\x5a\x73\x2a\x4f\x04\xb0\x92\x17\xd2\x38\xc1\xea\xab\xd5\xd0\x6f\x22\x22\x8d\x00\xf2\x6c\x9b\xe3\x24\x38\xc3\xfb\x59\x99\x9d\x33\x03\xf5\xf6\x91\x0b\x42\x6c\x6a\x73\x7a\x89\xce\x3b\x2a\xb1\xb3\x18\x76\x96\x55\xba\xc5\x49\x18\x0b\xdd\x58\x40\x13\x81\xf2\x92\x63\x7c\xfc\xf2\xe3\xed\x24\x8c\xcf\xfa\x22\x7e\xa6\xe2\xc8\x20\x4d\xa8\x8c\xd7\x23\xcb\x85\x6d\xc3\x9a\xe2\xd2\xef\x95\x4c\x5e\x74\x55\x8d\x7f\x49\x13\xf9\xbc\x0b\xeb\x6f\x71\x4f\x00\x98\xd5\x13\x42\xa3\xbb\x89\x9e\x50\x58\xf9\x1a\x44\x37\xee\x7a\x38\x7b\x36\x0f\xa7\x74\xf3\x56\xc8\xde\x0c\x34\x87\xc7\x6d\x08\xde\x0f\x2d\x3f\xff\x99\xfa\x5a\x49\x7e\x34\x8b\x59\x68\xe5\xa9\xac\x36\x82\xed\x6b\x0e\x54\xde\xd8\xf0\x21\x7c\x8e\x87\xe1\x2c\x98\xfa\xbb\x42\x6a\x81\x25\x3b\x41\x16\xf0\x30\xe5\xb7\x4b\xb0\xae\x3c\x15\x10\xeb\x4f\x84\xec\xd9\x82\x81\x7e\x9d\x4b\x74\xf1\x0c\x52\x2a\xcc\x17\x1e\xef\x1d\x3b\xd4\x4a\x34\x89\x52\x16\x71\xbe\xcd\xef\xb7\x24\x69\x56\xe9\xa7\x77\x78\x88\xc3\x79\x09\x36\xb7\xcb\x94\x61\x00\x1b\xf4\xba\x1c\xc0\x6a\x2c\x4d\x60\xc9\x59\x5c\x28\xc5\x1c\xc4\x99\x80\x65\x38\x80\xaa\x45\x6b\x52\x10\x0b\xa7\x37\xd9\x20\xbd\x0b\x2e\xca\x4f\x71\xbb\x80\xbb\x23\x72\xe1\xca\x48\x36\xd2\x0f\x0e\x5d\xc8\xce\x1b\x5d\x84\x6d\x29\x54\x57\xc7\xd3\x1c\x29\xd7\x1c\x73\xd1\x11\x9e\x45\x15\xe8\xd0\xa1\x3d\x74\x78\x81\x6e\x98\x8e\x12\xc8\xfb\x31\x5e\xbb\xae\xed\x61\x1c\xe6\xd6\x95\x87\x28\x64\xf5\x77\x22\x6a\x7c\x59\x05\x51\xb2\x16\xac\x6d\x47\xa0\xa7\x3f\xcf\xa3\x49\x81\x74\x93\xe6\x06\x58\x85\x63\x34\x0a\xaf\x25\x95\x86\x54\x3f\xe5\x49\xcb\x8b\x86\x8d\x42\x37\x79\x26\x73\xcf\x10\xea\x75\xba\x68\xf5\x22\xf2\xea\xd5\xab\x92\x38\x4c\xbd\x1c\x24\x6a\xaa\xd4\xf2\x31\x4e\xe6\xb8\x70\x79\x12\x3d\x40\xa1\xf3\x3b\xc0\x82\xc9\xc1\x22\x5d\x0c\x66\x61\xf6\x7b\x9c\x14\x69\x49\x12\xd0\x33\xd3\x5d\xdf\xf3\x8f\xbe\x4b\xb4\xca\xa0\xbc\x4b\xb1\xa7\x3d\xf7\x16\xe7\xc5\x79\x71\x47\x73\x30\xbb\xc5\x71\x36\xfb\xe0\xf8\x9a\xe3\x49\xc0\xa1\x69\x86\xda\x92\x0d\x53\xe0\xfc\xe6\x2d\x98\x9c\x01\x86\xb3\xfc\x60\x54\x62\x57\x09\x60\xde\x86\xcd\xaf\x6b\xdb\xbb\x78\x36\xc3\x51\x8a\xa3\x74\x91\xbe\x0f\x67\xa5\xec\x3d\x0a\xb8\x97\x04\x1f\x54\x19\x7d\xb4\x58\xa2\xd1\x40\x46\x2f\xe6\xf1\x70\x52\x34\x99\x15\x50\x37\xb2\x1e\x08\xc1\xde\xd7\xdc\xef\x41\xbd\xc7\x59\x90\x95\xe0\x0a\x09\xeb\xe7\x49\x17\xc8\x97\xd8\xdb\x5a\x9b\x04\x89\x89\x67\x73\x60\x39\xc2\x48\x13\x70\x43\x7d\x27\x4c\x9e\xda\xdb\x83\x78\xa4\x83\x01\xc2\xda\x1b\xb0\x02\x18\x85\x98\x29\xc6\x2e\x69\x6e\x24\x6c\x08\x69\x54\xd0\xbe\x29\x05\x7d\xef\xc5\x16\xd5\x07\xc0\x76\x51\xbe\xcf\x46\xa3\xba\x53\xbf\xa2\x52\xc8\x97\xf6\x86\x40\xf9\xa6\x6b\xae\x7a\x21\x6f\x09\xa5\x79\x7d\x6d\xb7\x3e\xbc\x7a\xf5\xca\x06\xa6\xeb\xa0\x52\xa5\x58\xa2\x34\xa2\xad\x17\x20\x63\xed\x37\x54\xea\x6a\xef\x41\x28\x1a\xa3\xad\xc8\x18\x05\x25\x65\x42\xeb\x35\x0b\x8e\x85\xb7\xcc\xdd\x8a\xa6\x7f\x14\x27\x6f\x79\xf1\xe0\x25\x2b\x93\x89\x2c\x8e\x80\x74\x17\x76\xa1\x45\x84\xd1\x20\x48\x55\xd9\xc7\xd0\x80\xe9\xc4\x94\x08\x06\x23\x40\xae\xea\x8d\x0a\x6d\x4c\x82\x74\x92\x04\x59\x6e\x1b\x1e\x98\x52\xb2\xac\x3a\x46\xdc\x95\x23\x07\x21\x37\x48\xb1\xbc\x61\xbe\x23\xba\xb0\xa9\x8e\xe1\x59\x90\xbe\x4d\xc2\x61\x6e\x9f\x79\x60\x56\x3e\x31\xaa\x8e\x25\xcb\x40\x96\xe6\x61\x29\x60\x56\x6c\x63\xa0\x9c\xb7\xe7\x34\xe3\x07\xbb\x21\x1e\xe2\xe9\x59\x7e\xa3\x8e\x79\x79\xb8\x99\xa0\x4a\x8b\xea\x14\xd7\xce\x68\x9b\x43\xe9\xf4\xa4\xf8\x3f\x0c\x42\xed\x62\x53\x30\xcc\xe2\x84\xef\x95\xb8\x9b\x14\x5c\x37\x68\x20\x02\xab\xdd\x39\x60\xd0\xae\xc6\xc6\xdc\x2d\xca\xba\xaf\xde\x50\xee\xe4\x52\xa8\x83\x04\x83\x5b\x23\x5c\x31\x3d\x30\xae\xdd\x28\x29\xcb\xa8\xab\x95\xac\x87\xe8\x06\x1b\x0d\xa7\x53\x44\x83\xfb\x6e\x35\xc7\xd9\xac\x56\x6f\xd8\x2c\xfb\x2a\x3e\x53\x36\xd2\xe5\x50\x72\x11\x2a\xbd\xb6\xf2\xd3\x69\xf0\xde\xaf\xb1\x02\xcd\xb3\x69\x3c\x08\xa6\x4d\xd2\xa9\xcd\xc0\x7e\xcd\xd2\x1f\xba\x9a\x0c\x87\xc1\xfc\x97\x55\x9b\x25\x85\xad\x46\xe9\xcb\xbc\x26\x15\x17\x36\xd9\xa0\x79\x45\x4a\x4d\x2f\xc7\x0b\xd4\xdc\xc3\x53\x14\xb2\xee\x30\x9b\x49\xe7\x5f\xc3\x8b\xef\x7e\xbf\xbd\xdb\xb8\x6f\x79\x13\xb2\x8b\x2c\xd2\x8d\xef\x7e\xbf\xb3\x05\x2f\xe8\x98\xde\xef\x77\x1e\xd3\x47\xc1\x0b\xf7\xfb\x5d\x5a\x24\x1c\x04\xd1\xfd\x7e\xb7\xdb\xd0\x7d\x8d\xe1\x91\x75\xd2\xfd\x7e\xaf\x07\xcf\xdc\xe7\xf0\x7e\xbf\x47\xab\x67\x92\xfd\x7e\xbf\x47\xd1\xe2\x9e\x21\xf7\xfb\x3d\xd2\x20\xf7\x18\xbc\xdf\xef\x75\xc1\x79\xb9\x55\xc1\x7b\xb9\x94\xff\xf2\x7a\x3c\x98\xd7\xef\xc3\xbc\x2e\x2f\xe6\x0a\x7e\xcc\xd7\xf6\x64\x5e\x8b\x2f\xf3\x3a\xbc\x99\xaf\xe1\xcf\xbc\x66\x8f\xe6\x1b\xf0\x69\x1e\xe1\xc1\xe2\xec\xd6\xab\xf9\xd6\xab\x79\x6d\x5e\xcd\x62\x55\x7a\x4e\x58\x4b\xf1\x9a\xac\xea\x33\xe9\xf2\x98\x2c\xed\x2f\x59\xe8\x2b\x59\xdd\x4f\x92\xd9\x15\x4a\xfa\x48\xe6\xf9\x47\x56\xf2\x8d\xe4\x9e\x91\x2e\xbf\xc8\x95\xbd\x22\xf3\x3d\xef\x36\x37\x11\x0b\xd6\x40\xa7\x1d\x99\x8e\x44\xc2\x6d\xa4\xc1\x6c\x3e\xc5\xe9\x06\x84\x66\xdb\xa0\x0e\x86\xff\xe2\x63\xc5\xc2\x07\xc4\x10\xc1\xff\x79\x12\x8e\xdd\x16\x27\xa6\x64\x3b\xa0\x99\xa2\xcd\x6f\x3c\x11\xf6\xf9\xe0\x07\x33\x9c\xd2\xae\x7f\xf6\xee\x3a\x88\x2f\xde\x71\xfd\x66\x23\xa8\xee\xbd\x18\xd3\x68\xfd\xc3\x36\x0b\xa5\x7a\x87\xc3\xe6\xf6\x8d\x01\x64\x9c\x67\xad\xcd\x2b\xa1\xb8\x33\x7e\xc6\x97\xe9\x7b\x65\xf7\xa5\x50\x0f\xbb\xb8\x54\xe1\x51\xd2\x5f\x79\x5d\xe0\x2e\xe0\xea\x87\x5c\xc8\xaf\xda\x19\x34\x6b\x44\x7e\x8f\xbc\x3f\x2c\xee\x84\xf7\x87\x39\x74\x8b\x8f\x9c\xd4\xde\xfa\x66\x84\xe5\xd5\x89\x4a\x93\xff\x8c\x63\xe7\x99\x0e\x0c\xfb\xb7\xc7\xc5\xe4\xbf\x3d\xfe\x8e\x86\xfd\x19\xc7\xd9\x41\xb7\x66\xc6\x73\x88\xb6\x86\xfe\x81\xcf\x6b\xfa\xda\x4d\xaf\xf6\xed\xfd\xa1\xf6\xf8\xf6\xf8\xae\x30\x41\x14\x1a\x19\x39\x6e\xde\x4b\xa0\xa4\xd3\xff\xb1\x5b\xc1\xf6\xed\x56\xf0\x76\x2b\xf8\x9f\xbd\x15\x4c\xc7\xc3\x2f\xb5\x11\x64\x45\x46\xf8\x3c\x8c\x32\x7c\x96\x04\xd3\x2e\x7a\xaa\x3e\xfd\x77\x3a\x5e\x8e\x96\xcd\x64\xa1\x6d\x1c\x3b\xad\x6f\x6a\xe3\x28\xb7\x3a\xc7\xe3\xe1\xd7\xbe\x1e\x56\xe2\x72\xd8\x97\xb9\x1a\x96\x7f\x31\x6c\x85\x6b\x61\x05\xdb\x15\xd1\x7d\x67\x98\x2b\xe3\x61\x1c\x1d\x0f\xc9\x14\x74\x1e\x78\xcb\xe3\x6e\x03\x5c\x18\xfa\x99\x9a\x91\x8e\x87\x1f\x72\xa0\xac\x43\x6f\x4b\xc9\x70\x39\xf6\xae\xed\xd6\xcf\x9b\x24\x3c\x0b\xa3\xf2\xc4\x9a\xf0\x1e\x6a\xbd\x60\x5f\x99\xdc\xe3\x2c\xf8\x84\x93\xb7\xf1\x51\x11\x9d\x02\xd0\x43\xa0\xfd\xfd\x2b\x53\xf6\x0e\x5f\x04\xc9\xe8\x77\x1c\x9e\x4d\x7c\x3e\x1a\x92\x3a\x0d\xd8\x43\xa1\x1b\xe6\xa6\xa8\x64\x7b\x9b\xb7\x42\x3e\x38\x89\x7c\x1e\x5f\x44\x99\xd7\xbd\x47\xd2\xc7\xe1\x3c\xa4\x59\x9f\xbf\x2e\x55\x94\x97\xca\x71\x64\x2e\x3b\x5a\xf4\x74\xca\xd0\xe3\xbe\x3a\x50\xe2\x24\x1b\xda\x2c\x33\xdf\x9e\x5d\xee\x8b\x54\xfc\x25\x68\x14\xe0\xb9\xc4\xda\x50\xdf\x18\xd5\x25\xa9\xcd\xa7\xf2\xe6\x67\x1e\x6b\x27\x9f\xa2\xe7\x78\x8a\xcf\x40\x9c\xa7\x6f\xc6\x85\xb3\x4f\x05\xf6\x4d\x41\x27\xcc\x17\x19\x41\xa5\xe9\xd2\x44\x97\xe6\x60\x57\x99\xe2\x2e\xf8\x4a\xbc\xbc\x42\x4f\x94\xa7\xbf\x90\x6a\x8b\xd6\x6e\x65\x5a\xaf\x4f\x78\x59\xba\x0f\xa6\x41\x38\xc3\x23\xba\x28\x56\xe0\x02\xbd\x5c\x61\x9f\x78\xc0\xbf\x08\x37\x54\x52\xa1\xaa\xf5\x87\xab\x4c\xae\xd8\x2b\xe8\x87\xaf\xaa\x3d\x2a\xb3\x66\x95\x5e\xf0\x16\xcf\xed\x90\xe2\x52\x5f\xab\x6f\x0c\xa7\x42\x7b\xab\xd3\x90\x5f\xcc\x6d\x81\xf2\x49\x28\xd4\xca\x3b\x4d\x05\x55\xde\x73\xfd\xcd\x2a\x6e\xbd\x10\x82\xd5\xfa\xa2\xd5\xa7\x2e\x46\xee\xf7\xae\x8a\xe4\x67\xe7\x4b\x7d\x9c\x2c\x04\x0a\x3e\x7b\x07\x1c\x00\xcb\x9a\x63\x8b\x0d\xb2\xc7\xe3\xa1\xc3\x1c\xab\x9b\x5d\x1d\x66\x55\xc5\x92\x0a\x96\xcf\x4e\x19\xcb\x27\xc1\x47\x58\x3f\x51\x59\x0b\x28\x5a\x9b\x15\x14\xdd\x88\x25\x14\xad\xd1\x1a\x8a\xaa\x59\x44\xd1\x3a\xac\xa2\x68\x5d\x96\x51\xb4\x26\xeb\x28\xba\x9e\x85\x14\xad\xdf\x4a\x8a\xd6\x61\x29\x25\x95\x3c\xd8\x64\x93\x80\xcd\x02\x6e\x35\x0d\x06\xe3\x0c\xcc\xa6\xec\x25\x33\x6d\x06\x53\xbc\x44\x4f\x93\x45\x3a\xc2\xe7\x4d\xf2\xf0\xdf\x67\xb3\x20\x9c\x32\x13\x28\x83\xe5\x66\xcd\x36\x7b\xb3\x49\x3b\xc2\x30\x6f\x22\xee\x12\x5a\xce\xc4\xc9\xc1\xcb\x99\x39\x39\x74\x91\xa9\x13\xa9\x19\xf3\xf6\x07\xe3\x4c\xb3\x77\xa2\x95\x6c\x9e\xc8\x6b\xf7\x44\x55\x43\x63\x95\x0c\x8e\xb5\x9a\x0d\x14\xa9\x8b\x26\xaa\x16\x26\xab\x38\x50\x56\x65\x9b\xa8\x86\xce\x95\xe4\x8f\x5c\x03\x29\x2a\x6b\x8a\x41\xf9\xe6\x18\x24\xb5\x1c\xc2\xf9\x4e\x9b\x0c\x72\xdf\x08\x2a\xa9\xd7\xa0\x6b\xd8\x67\xac\x91\x52\xef\x40\xfd\x3a\x2f\x4b\xb5\x02\x9e\x47\xb8\x0f\xec\xa6\x69\xcf\x75\xf2\xb7\x89\xe7\xaa\x1b\x1e\x01\xc2\x87\xb8\x54\x1f\xd8\xa5\xf2\xba\xa2\x00\xfa\x5b\xe9\x11\xeb\x1a\x8d\x53\x29\x45\xca\x6d\x1d\x3a\xbc\xc6\x17\x9b\x5a\x09\x70\x2a\x12\x35\x88\x89\x59\xa0\xe7\x21\x5d\xd7\x53\x4b\x5b\x3a\x1f\x91\xbc\xd7\x53\xfa\x40\xe7\xeb\xae\xa4\xf3\x55\xd0\xfa\xd6\xa9\xf7\xdd\x94\xe6\xb7\x5e\xdd\xaf\xb2\xf6\xb7\x26\xfd\x6f\x8d\x1a\xe0\xfa\x74\xc0\x6b\x6b\x81\x37\xa2\x07\xde\xb0\x26\x38\x0a\xce\xfe\xd3\x14\xc1\xe7\xc1\xd9\xb7\xa6\x07\x96\xd6\x04\xbf\x86\x2e\x58\x46\x1b\xfc\xe2\xfa\x60\x6e\xa4\x04\x94\x1b\x2d\x01\x29\x3e\x79\xc1\x99\x2b\x62\x02\xf2\xad\xfe\xbe\x18\x41\x55\x6f\x3c\x3e\x0f\xce\xa0\xcd\x72\xba\x10\x80\xca\x3c\x6c\x65\x49\x66\x25\x8a\x29\x77\x03\x3a\x02\xcc\x78\x3b\xa0\x52\x08\xc6\x9b\xe8\xa2\xdc\x00\x12\x28\x37\x88\x84\xdd\x29\x2e\x88\xb2\xec\x50\x31\x60\x40\xb9\xbe\x00\x84\xaa\x6b\x89\xae\xab\xe2\xea\x5b\x36\xee\xd6\x47\xe3\xce\xf8\xcd\x2a\x87\xcf\x83\x33\x2e\x05\xae\xa7\x1f\x3e\xbe\xcd\xea\x71\x9b\xd5\xe3\x9f\x9d\xd5\xc3\x97\xd2\xe3\xda\x49\xa7\xca\x7b\x17\x96\xb8\x73\x06\x70\xbf\xe0\xec\xc6\x73\x54\xdd\x70\xe0\xf7\x12\x79\xa9\x36\x37\x37\x79\x3e\xc0\x14\x05\x91\xcc\x56\x1d\x43\x2b\x29\x1a\xe1\x74\x98\x84\x83\x90\x8c\x3e\xa9\x0e\x67\x13\x14\xcc\x43\x05\xf5\x1b\x0a\xa4\x31\x0d\xd3\x0c\x47\x39\x41\x25\x22\x9c\x7d\x90\x40\xca\x9a\xd2\xa8\xd0\xca\x1c\xe3\xc4\x0c\x30\x69\xb5\xe2\x03\xaa\x10\x08\xe1\x2e\xca\x49\xf4\xf4\x0b\x2e\xb6\x2e\xa8\xae\xf6\x57\xa7\x8d\x5e\x95\x4b\xd4\xb7\x8b\xc5\xed\x62\xf1\x1d\x2e\x16\xdf\x68\x0a\xa8\xf5\xdd\x6b\x2e\x69\x51\x90\x0e\xef\x6f\x71\x92\xc6\x51\x30\xfd\xda\x5e\xef\xff\xfc\xa4\x28\x85\x97\x75\x59\x8a\x6a\x7c\x21\x73\x6f\xe4\x45\x79\x93\x80\x76\x88\xb7\x39\x1b\xd5\x0f\x4e\xa0\x6b\x84\xf9\x0d\x67\x64\x21\x78\x17\x5c\xfc\x8c\x8b\xc2\x7f\xaa\xa0\x1b\x8d\xbb\x77\xee\x98\xb8\x59\x00\x39\x41\x19\xcb\x87\xb3\xb5\xdb\x11\x1f\x14\x27\xb7\x3b\x77\x4a\x06\x78\x2e\x1d\xc7\x16\x0f\xdf\xe1\x61\x7c\x5e\x18\x31\x52\xc0\x39\x71\xd5\xbf\xe6\x74\xc8\x22\x22\x9b\xe8\x72\x9c\xa2\xc1\xe6\x30\x8b\x0f\xae\x4c\xd6\x90\x72\xfd\xe6\xed\xbd\x35\x87\x8f\x96\x63\x5f\x18\x43\xba\x4a\xac\x60\x57\xec\x65\x2f\x49\xe5\xc7\xa7\xdc\xe8\xe4\x8f\x4d\x95\x80\x8d\xe6\xd8\x18\xc8\xbb\x34\x6b\xd6\xb0\xd2\x88\x32\x79\xe5\x5b\x8d\x83\xe4\x6b\xc1\xd5\xf2\x95\x1e\x28\xd0\x1b\x4f\x50\xa9\x4e\xd5\x77\x6f\x6e\x7f\xb0\x5f\x10\x2e\x4d\x0e\x87\x0a\xec\x51\xcb\x6d\xbd\x9c\x2f\xb7\x52\x39\xcf\x77\xec\x72\xe9\xe9\x55\x6e\xb8\xde\xea\xe9\xb7\x7a\xfa\x77\xa8\xa7\xf3\x8b\xac\x13\x8f\x51\xa7\x40\xfd\xc6\x09\x5e\xcc\x48\xd5\x3f\x16\xd8\x80\x86\x71\x82\x9b\x61\xac\xeb\xe9\x3b\xa5\x13\x8f\x97\x8c\xeb\x53\x14\x1e\x08\x80\x8e\x27\x93\x7f\x52\x02\xf3\x22\x65\xf8\xc9\xdd\xbb\xc7\x93\x89\x1a\xf5\x0f\x5f\xbc\xc6\x69\x1a\x9c\xe1\xc3\x2f\x11\xe8\x30\x9d\x4c\x0a\x03\x1d\xa6\x93\x49\xad\xce\x15\x97\x2a\xf1\x0c\x0b\x0f\xed\x9c\x8b\x53\xde\x19\xcd\xb9\x33\x82\x25\xf7\x52\x9f\x4c\x3e\xb8\x01\xf4\xc8\xea\xc8\x61\xcb\xca\x6b\x34\x8c\xc6\xb1\xbf\x45\xc7\xd7\xeb\x35\x97\xe2\xec\x75\xb0\x64\x4c\x70\x1c\xfe\x65\x06\x4d\x55\xda\x2e\x02\xd5\x23\xab\xaf\x82\x48\x18\xbd\x8d\x7f\xcf\x47\xc0\x05\x72\xbd\x86\x67\x41\xf2\xe9\x7d\xb2\x48\x33\x3c\x7a\x8b\xad\x20\xa9\x4a\xf3\xf9\x80\xd7\x43\x22\xc2\x44\xa7\x7b\x1b\x84\x39\xed\x7b\x61\xae\xc7\x01\xc1\x68\xf4\x36\x09\xcf\x83\x0c\xd3\x2d\xa1\xa7\xf5\x3c\xb0\xeb\xd1\x3e\xc2\x53\x0c\xb5\xe6\x93\x9f\x07\x76\x3d\x04\x26\x41\x5a\xd8\xba\x17\xe6\x7a\x4d\x9f\xe1\x8c\x2e\xe8\xb9\x7d\x9f\x03\x75\xfd\xe6\x4b\x8c\x7d\x1e\xd8\xb5\xf9\xfe\xf8\x72\x96\xdb\xb8\x0f\xe4\xda\x5c\x5f\xd4\xb0\x0f\xe4\xba\x5d\x4e\xf4\xb8\x0c\xd3\xaa\x0f\x93\x78\xf6\x36\x48\xd3\x8b\x38\xf1\xf8\x47\xd0\xfe\x2f\x59\xe6\xda\xf3\xa0\xa8\x4f\x7c\x20\xd7\x66\xc3\xa2\x86\x7d\x20\xeb\x10\x3d\x45\x6d\xe7\x40\xb9\x9b\x17\x0f\x9b\x9b\x28\x5d\x0c\xe0\xe4\x0d\x43\xd4\xbf\x45\x24\x9f\x67\x61\x9a\x86\xd1\xd9\xdd\xd2\xd8\xce\xe3\xd4\xe3\x3e\x44\xb0\x74\x7c\xad\xe4\x3a\xe4\xd9\x4e\xdb\x17\xa7\x26\x13\xb2\xcb\xe6\x3b\x69\x3d\x10\x95\xb6\x8b\x36\xc2\x44\xf5\x4a\xdd\x95\xba\xdd\x43\xdf\xee\xa1\xbf\xdf\x3d\xb4\x3c\xeb\x1a\xfc\xf5\x97\x71\xd6\xb5\x3f\xc5\x4b\xf4\x0c\x27\xf8\x2c\xfd\x2b\x48\xff\x0a\xd1\x53\x70\x68\x4d\xb2\x71\xda\x9c\xe8\xa1\x9a\xda\xdb\x77\x11\xd4\xf5\x0e\x8f\x71\x82\xa3\x21\xee\x23\xd2\x7e\xda\xdf\xdc\x3c\x0b\xb3\xc9\x62\xd0\x1c\xc6\xb3\x4d\xbe\xeb\xde\x3c\x8b\x1f\x89\xdf\x83\x69\x3c\xd8\x4c\x2f\x82\x64\xb6\x19\x46\x19\x4e\xa2\x60\xba\x49\x48\xc2\xcb\x8c\xff\xb7\x79\x16\xff\x9f\x57\xdd\x2e\x6c\xb9\x6f\xec\x64\x4c\x89\xef\x44\x90\xf9\x87\xef\xad\xe1\xc7\x77\x71\xd6\x45\x13\x42\xe0\xec\x22\x4e\x3e\xbd\xc3\x7e\x47\x4e\x2d\xcd\x84\x04\xb7\x8d\xe5\x83\xbf\xfe\xfa\x90\x03\x75\x9d\xfc\x96\x97\xd1\xf0\x45\x14\x0c\xa6\xb8\x08\x4b\x05\xd2\x8d\xa0\x1b\xe0\x3a\xb8\x5d\x04\xf3\x92\xb8\x49\x48\x0f\x6e\x4e\x80\x6b\xe0\x36\x8a\x2f\xa2\x3c\x1f\x5d\xae\xfd\x30\x30\x37\x56\x8e\xaf\xe5\x53\xb6\x7a\x10\x5b\xcc\x4b\xa0\x45\x81\xdc\x48\x59\xdf\xae\x8d\x52\x82\xb3\x24\xc4\xe7\x45\x99\xd3\x38\x98\x1b\x2d\xc7\xd7\xeb\xb0\x56\xe6\x0d\x48\x26\x99\x2a\x53\xa3\x8b\xe9\xec\x64\x7c\xba\x76\x17\x9d\xe1\x12\xa9\x00\xdd\xb8\xe8\x1f\xae\xd1\x27\xf3\x45\x11\x0e\xf3\x85\x07\x07\xfd\xc3\xb5\x7b\x83\x6a\x8f\x05\xc8\x50\x20\x37\x3e\xd6\x37\x23\xf2\x70\x01\x4a\x39\x87\xba\x96\x85\xd3\x14\xcb\xca\xe1\x9f\x94\x87\xca\x4b\x29\x88\xe4\x4b\x2e\x07\x94\x03\xc7\xb9\xfe\xcc\xb9\x5f\xa9\x28\x53\x82\x5c\xc0\x41\x9e\x42\xed\x42\x79\x50\x54\xf1\x95\x43\x3b\x38\xb6\x28\x44\xe1\x90\xa7\x7d\x05\x47\x7b\xa5\xae\xf3\xdd\x6e\x4b\x6e\xb7\x25\xdf\xef\xb6\x84\xed\x49\xf8\x19\xcb\x7a\x7d\xb6\x8b\xee\xbc\xad\xe2\x9b\xcc\x13\x6f\x05\xf3\x90\x2b\xb4\xd4\xd5\x2e\x9b\xe5\x39\x71\xd1\x13\xa7\x03\x9a\xdd\x5a\xc9\x0e\x96\x9c\xa5\xaa\xf2\x0d\xc9\x38\x2e\xe7\x64\x8d\x25\x9f\x4e\x5a\xa7\xca\xfd\x95\xf4\x22\xcc\x86\x93\x1a\xf9\x6e\x5e\x3f\x1b\x06\x29\x46\x1b\x84\xe3\xd3\x6c\xa3\xaf\x7d\x82\xc1\x4a\xce\xd2\x66\x3a\x09\xc7\x59\xcd\xb8\x93\x86\xf8\x9e\x87\x8a\x7a\xb4\x87\x5a\x36\x00\x13\x6b\x90\x19\x2d\xc2\x17\x70\x61\x87\x12\xb4\xf1\xc4\x81\xc6\x1c\x47\xa3\x30\x3a\xbb\x71\x3c\xde\xd2\x76\x54\x37\x1c\x17\x52\x23\x9a\xb3\xdb\xc6\xc6\xa8\xce\x2a\x7c\x45\xd7\x30\x65\x85\x15\x50\xc5\xce\x78\xac\x36\x73\x9d\xd5\x58\xc1\xa1\x7f\x38\x34\xd3\x28\x8c\xd2\x2c\x98\x4e\x4b\xb5\x6c\x40\xdb\xeb\x3c\x21\xd6\x0f\x94\x9f\x83\xf8\x55\x7c\x56\x22\xd9\x2c\x81\x72\xb7\x7b\x86\x33\xda\xa2\x01\x92\xd3\xea\x3c\x2e\xcc\x07\x4f\x40\x0a\xda\x3b\x98\x04\xd1\x19\x2e\xd1\xa4\xeb\x24\x96\x56\xa1\x7a\x35\x69\xbd\xa7\x29\x13\x84\x30\xa5\x91\x78\x3a\x55\x35\x88\xca\xf2\x26\x9d\x4c\x9a\x20\x1a\x2d\x71\x93\x1a\xfe\x01\xab\x9f\x25\xbb\x78\x15\x59\x07\x1d\xda\x61\xfc\x5a\x2d\xdd\x7e\x66\x44\x2e\x63\xf7\xcd\x21\x62\xb3\x2e\xb2\x2c\xfd\xb4\x59\x86\x83\xf7\x02\xe4\x4a\xcd\x1b\x6c\xbc\x86\xb6\x55\xd6\xb3\x34\x51\x8a\xc3\x38\x9b\xf5\xc9\x3f\xb4\xb2\x74\x32\xe9\x93\x7f\xa8\xf2\x6a\xe9\xa8\x44\x25\xed\xdd\xaa\xa4\xb7\x2a\xe9\x3f\x5b\x25\x95\x96\x72\x9e\xbd\x73\x95\x9b\x21\x0e\x75\x94\x66\x1e\x7d\x87\xcf\xc8\x30\x07\xc9\xfe\x20\xf4\x24\x92\x4b\x37\x7f\xd2\x41\x9b\x1f\xd3\x58\x24\x6b\x0b\x87\xc1\x5c\xad\xc4\x57\xc7\xd1\xc1\xfe\x5b\xbb\x06\x05\x13\x96\xe2\x54\xc6\xd1\xdd\x68\x2d\x87\xdb\xa3\xc7\xa3\xce\x70\xd4\xeb\x3d\x0e\x76\xb6\x7a\xc3\xde\xe3\x5e\x67\xbb\x87\xdb\xbb\xad\xc7\xc3\xad\x16\xee\xf6\x46\xdb\xbd\xad\xed\xce\x60\x43\xe2\xe2\xaa\x26\x68\x07\xed\x76\x7b\x30\x6c\xed\xf4\x86\x8f\x87\xe3\x60\x67\xb7\x3d\x6e\x0d\xbb\xbb\x78\xbb\x3b\x18\x6d\xb5\x87\x8f\xdb\x83\xdd\x60\xdc\x6a\x6d\xf8\x45\x13\xc5\xb1\xaf\x28\xba\xc1\x20\xec\x3b\x3a\x51\x0a\x42\x96\x60\xb5\xef\xa4\x8f\x2e\xf4\x14\x98\xa0\x6d\xd5\x6c\xf6\xab\xa3\x5e\x9b\x5c\x5a\xab\x26\x30\xf3\x47\xf1\x7e\xbf\xdd\xb8\x5f\x30\x4e\xf7\xfb\x1d\x22\x6b\xb7\x6e\x65\xed\xad\xac\xfd\x4f\x91\xb5\xdc\xf6\x65\x08\xdb\x3c\xd7\xde\x71\x12\xff\x85\x67\x41\xd4\x1c\xe1\x1f\xd7\x22\xa0\x5d\x77\xbc\x8d\x0b\xde\xe6\x19\xa3\xe5\x94\xaa\x1d\x24\x92\x05\x04\xed\x31\xb6\xa4\x8f\x4f\xe4\x57\x7a\x8b\x40\xf9\x4e\x5f\x28\x10\xa9\x09\x91\x9a\x10\xc6\x0d\x61\x05\xd4\xf8\xa2\x94\xd1\x4d\xb8\x4a\x11\xfd\x83\x52\xc2\x3a\x0f\x8d\x16\xd3\x29\x55\x2c\x79\x5f\x28\xbe\xbb\xd6\xf9\xa0\xd6\x4f\xc9\x4c\xeb\x22\xab\xea\x64\xc6\x36\x4b\x94\x3b\x8e\x29\xc7\x0e\x30\x68\xc3\x78\x84\xb2\x98\xdd\xca\xa2\xa6\x68\xb0\x29\x10\xde\xa5\x7a\x2a\x3b\x9d\xfe\x6f\xfa\xc4\x20\x8f\x08\x20\xbc\x06\x35\x19\xfd\xbd\x4f\x36\x5e\x57\xf0\x86\xed\x97\xe4\xab\x4d\x17\x49\x4a\x3d\xa6\xfd\xc6\x95\x14\xdc\xe8\xe1\x7f\xb9\xde\xd2\xb2\x7d\x82\x7f\x59\x82\xe9\x90\xd6\x12\x9c\x2e\xa6\x59\xbd\x80\x68\x9a\xe9\x53\xa5\x9a\x9e\xe7\xea\x64\xcb\x77\x39\x74\xb3\xa4\xa1\xda\x28\x32\x1c\x6c\xda\x4d\x8e\xfc\xe1\x07\x44\x81\xd1\xbd\x3d\xca\x38\xc6\x2b\xb2\xa0\x8c\xc3\x08\x8f\x78\x3f\x19\x35\x88\xb6\xfa\xac\x94\xa7\xbb\x16\x29\xed\x2c\xbc\xa4\x49\x7a\xb9\x8b\x36\x1a\x27\xf1\x4c\xee\xb5\x83\xe4\x6c\x31\xc3\x51\x96\x36\xd1\x6b\xb2\xb0\x85\x38\x65\x9c\x04\xdd\x64\xf4\x25\xab\x8c\x7b\x74\xdb\x4c\x24\xeb\xd3\xfa\xf5\x90\xf5\xd4\xe7\x5f\x16\xd3\xe9\x95\xe2\x2e\x1e\x8e\x11\x5e\x86\x29\x80\x3b\xbb\xdc\x68\xd1\x6b\x2e\x0c\xc7\xa8\x46\xc3\x01\x84\x29\x6f\x0d\x00\x4e\xc0\xca\x36\xc5\xd1\x59\x36\x41\x8f\x50\xfb\xb4\xee\x08\x3a\x03\x30\xf3\x78\x5e\xab\x3f\x41\x9b\x9b\xfc\xe8\x88\xc8\x7f\x98\x4f\xd0\x5b\xf7\x54\xe5\x46\xef\x6e\xea\x22\x20\x31\xcb\x62\x37\x2b\xea\xae\x04\x3e\x66\x64\xaf\x38\x15\x5e\x6e\xd4\x6b\xd3\xa5\xef\xe0\xa3\x6a\x71\x85\x32\x42\x95\x44\xd4\x38\xd3\xa7\xec\x35\x58\x84\xd3\xd1\x4f\x38\xab\x29\x9b\x73\x1c\x2d\x66\x38\x09\x06\x53\xdc\x47\x59\xb2\xc0\xb6\xe5\x2f\xa0\x59\x4d\x85\x58\x6f\xa6\xf3\x69\x98\xd5\x36\x9a\x6a\x90\x35\x26\xef\x01\x18\x6c\xb7\x7c\xa0\xe0\x0d\x1f\x93\x1f\x51\x5b\x1d\x91\x78\xf0\xf1\x84\x97\x38\x25\xd2\x58\x7b\xfe\xfc\x19\xfd\x7d\xf5\x44\x05\x36\x41\x9e\x68\x06\x31\xd1\x7c\x9b\x87\x15\xa2\x44\xd0\x3e\x6b\xd2\xa9\x26\x2e\xbe\xc5\x83\x8f\x0d\x80\x6f\xd0\x2e\x63\xb4\x90\xfa\x83\xf4\x32\x1a\xfe\x04\xeb\x0d\x51\x79\x81\x84\xfa\x29\xef\x02\xe8\xc4\x7d\x06\x52\x53\x2e\x3a\x18\xc5\xb4\x41\x82\x2a\x74\x91\x01\x07\xb4\xe8\x21\xe0\xd0\x1c\x4e\x82\x64\x3f\xab\xb5\xea\xcd\x2c\xfe\x75\x3e\xc7\xc9\x41\x90\xe2\x5a\x9d\x7f\x4e\x89\xfe\x50\x6b\xd7\xbd\x0b\x0f\x1f\x59\xaf\x21\x7e\x2e\x17\x6e\xea\xab\xa3\x60\x22\x4a\x9c\x11\x82\xec\x19\x23\x14\x14\x55\x26\xd6\xc4\x5b\x7d\x1d\x83\xe4\xcd\x35\x57\xfc\xba\xbe\xac\x88\x2e\xf7\x8a\xc1\xa6\x2e\x02\x41\xe5\x11\xc8\x7b\xbd\x1a\x95\xf2\xb8\x5c\x16\x1a\x1a\x37\x64\x90\xf4\x14\x72\x12\x04\x2d\x57\xa5\x4a\x0d\x7c\x86\x93\xa4\x81\xf4\xa5\x83\xff\x71\x5c\x28\x8c\xbb\xb3\x59\x49\x23\x3e\x1e\xeb\x32\x36\xc9\x39\xde\x9c\x51\xd9\x23\x4d\x97\xcd\x12\x65\x2b\xa3\x7a\x86\x7d\xcb\x89\x5c\x7d\x87\x09\x26\xba\xe2\x7c\x91\x60\xf4\xef\xe3\x37\xbf\xbc\x7b\x7b\x80\x78\x2b\x17\x93\x70\x38\x81\xcd\x13\x5f\x81\xc2\x08\x0d\xc0\x64\xcb\x40\x0c\x89\x28\xdf\x0a\xb9\xd7\x6c\x36\xaf\x98\x01\xcf\xb5\x36\x23\xb2\x25\x4c\xe6\x43\xa5\xa8\x53\x3a\x4a\xc2\x3d\x6c\x21\xc2\xe3\x99\x9e\x67\x7d\x55\x1f\xb5\x6d\xe4\x27\xa7\xba\x75\x9d\x0c\x13\x2b\x62\x2c\x56\x35\x58\x13\x55\x55\x90\x4c\xd9\x26\x29\x54\x13\xeb\x64\xbd\xae\x0e\x19\xc3\x8a\x0d\x34\x1f\x35\x75\xd8\x7d\x43\xc7\x4a\x7a\xec\x9b\xbc\x83\x94\x8d\xb9\x11\xf5\x86\x6c\xb1\xb7\x6f\xb7\xd8\xb7\x5b\xec\xff\x94\x2d\x36\x13\x10\x33\x26\xd1\xf5\x8d\xf6\xbf\xf1\x78\x9c\xe0\x4b\xf4\x7b\x38\x1d\x7e\xc2\xe8\xe9\x47\x3c\x1e\xfb\xc2\xdd\x54\x8a\x8d\xf3\x3a\x48\xc8\x0e\xfe\x4d\x10\x0d\x71\x00\xb0\x39\x99\x63\x57\x48\x36\xfb\x53\x70\x8e\x7e\x8f\xe3\x11\x7a\x7a\xe6\xdd\xe3\xf7\xe4\x1e\xff\xdf\x4c\x98\x6a\xb7\x6f\x99\x84\xcd\xcb\x24\xeb\x08\xf4\x36\x74\x82\xd0\xbc\xd9\x1c\x06\x27\x49\x6c\x44\xdf\xd9\xa4\xef\xa8\x07\x02\x1d\x9f\xa3\x6c\x23\x25\xeb\xe2\x3c\x8e\xd2\x70\x30\xa5\xfc\x35\x0f\xe0\x16\x06\x9a\xb1\x13\x1f\xb2\x14\xcd\x93\xf8\x3c\x1c\xe1\x24\x15\xa5\x82\x69\x1a\xdb\x45\xe3\xe9\x94\x14\x25\xcc\xc6\xdd\xaf\x51\x14\x8f\xe8\xd7\x30\x1a\xc6\x33\xb5\x66\x52\xd9\x73\x7a\x4a\x4e\x0f\x5c\xb3\x70\x86\xc9\x5c\x0b\x53\xd4\x46\x29\x1e\xc6\xd1\x08\x16\xc7\x30\x3a\x9b\xe2\x2c\x8e\xa0\x3b\x09\x79\x39\xfb\x7c\x8e\xaa\xb6\xdb\xe7\x2f\xd1\x9e\x20\x45\x31\x33\x90\xb6\xc1\x00\x7c\xa5\xbc\xe4\xb8\xa8\x46\x07\xef\xde\x8f\x28\x28\x93\x24\x8e\xe2\x45\x3a\xbd\x84\x38\x12\x9e\x65\x98\x7c\x72\x6c\x47\xd0\x28\xc8\x02\xef\x06\x59\xa7\x56\xb3\x78\x44\x23\x8d\x78\x52\x8d\xba\x51\xbb\xa7\x51\xaf\xea\x3e\xc3\x38\x4a\x63\xb2\x72\x11\xa6\xa8\x51\xd6\x68\x1e\x45\x90\x2b\xfe\x2d\x83\xaf\xa9\x2a\x0f\xbf\xc6\x0c\x9d\x81\xf4\xd0\xc0\x72\x89\x67\x6c\xde\xcc\x62\x16\xc2\x14\x50\x6a\x52\xea\x1b\x40\x26\x73\xb5\x50\xb6\x2f\x6c\x53\xbe\xa7\x8f\x15\xd5\x65\x59\xd5\xfc\xa0\x1c\x88\xe2\x8d\x84\x29\x24\x98\x7a\x47\xb9\x10\x0b\x3d\x4d\x8b\x1e\x9d\xc4\x17\x48\x27\xcf\x84\xd7\xc8\x61\x64\xd2\x4f\xcd\x52\x1b\xff\xa0\xd2\xe8\x83\x32\x9b\xcb\x02\xe6\xb6\x54\x28\x3f\xc5\xcc\x00\x95\x5b\x1c\x21\xaf\x8d\x97\xe3\x0d\xd6\x07\xaa\x6a\x9c\xc7\x1d\xeb\x61\x04\x7b\xec\xa9\xda\xcf\xaa\x2c\xa1\xce\x13\xa2\x70\x92\x98\x1a\xbe\x83\x1a\x55\x93\xbf\xab\x95\xaf\xc2\x5b\xc5\x5d\x65\x95\x76\xb6\x2b\x0a\x53\x37\x56\x8d\xf5\xcc\xa8\x96\xfe\xdd\x82\x8b\x0b\xf3\x36\x04\x04\xe0\x19\xf9\xee\xb0\x2d\xd1\x72\xeb\x60\x48\x68\xe1\x1b\x63\x48\xc0\x49\xe5\x4a\x2e\x5c\x56\x63\xc1\x74\xed\x3c\xc8\xcd\x6b\x30\x1a\x35\xde\xca\xb5\x58\x2f\x2d\xe2\x3d\x8d\xa0\x02\xa6\x13\xab\x1e\xce\xc4\x72\x4a\x74\x4c\xbe\x13\x64\x9a\x9e\xc5\x70\x19\x1f\x29\xb7\x41\x2e\x97\x95\x44\x59\x7d\xb1\xf7\xae\xf2\x45\xa8\x67\x64\x23\xc5\xf4\x15\x13\x51\xf2\xed\xad\xf8\x54\x28\xa8\x69\x0c\xf1\x2b\xa8\xed\x68\x54\x38\x63\x1c\x5f\x85\x2f\x12\xc7\x24\x8b\x47\x31\x1a\x4e\x71\x10\x2d\xe6\x28\x82\xfa\x49\x07\x8b\xcd\x7a\x5e\x57\x29\xd8\x3b\x26\x1e\x45\x52\x0d\x24\x22\x1a\xd7\xfb\x92\xe8\x44\x27\x14\xfa\x94\xe8\x46\xa4\x78\x1f\xd1\x4a\xc2\x51\xdf\xaa\xa8\xef\xaa\xb2\x2f\x7f\x82\x35\x17\xb1\x2b\xc0\x7a\xef\x6b\xf3\x9f\xe9\x5d\x56\x0a\x08\x02\x5d\x13\x13\xbc\x60\x70\xe3\xb9\xd0\x45\x89\xe6\xc9\x7c\x67\x61\x4f\x73\x16\x92\x8d\x5c\x68\x5a\x8c\x49\x19\xc7\x98\x5b\x63\x9b\xdb\xf3\xa2\x0a\x9d\x49\xa1\x2c\x27\x88\xba\x93\x39\x3a\xf9\x89\xd2\x3d\x12\x7f\xd6\x3b\x35\x66\x47\xfd\x84\x2f\xd3\x9a\x2c\x5b\xe7\xb6\xdd\xbd\xbd\x3d\xd4\x42\x3f\xfc\x80\x7c\x7d\x48\x98\x29\x79\x4f\xdf\xd7\x34\xa0\x27\x7a\x3f\x9b\x7a\x6f\x4e\x7f\xcb\xc5\x27\xc1\x44\x16\x10\xb5\x9f\x77\xfb\x0c\x0f\x27\x41\x14\xa6\x33\xbe\xf9\xcc\x17\x0e\x50\x41\x7e\xf7\xd2\x36\xd4\x8e\xfd\x84\xf1\xfc\x28\x3d\xbe\x8c\x86\x61\x24\xce\xc3\x36\x1f\x7c\x4c\x27\x61\x44\x1a\x5a\x0e\xe3\xd9\x7c\x8a\x97\x61\x76\xd9\xdf\x12\x59\x50\x08\x43\xd4\xc8\xda\xf0\x09\x5f\x52\xfb\x80\xe8\x4d\xa5\xbf\x36\x37\x51\x82\x67\xf1\x39\x46\xc1\x74\x0a\x54\xa5\x0d\x84\x97\x43\x3c\xcf\x40\xdb\x67\xaf\x54\xf8\x6c\x82\x2f\x51\x84\x69\x8f\x0c\x30\x2b\x3f\x22\x14\x2f\x82\xe9\xf4\x12\x0d\x2e\xa1\xcb\x48\xf7\xa4\x14\x69\xe0\x99\xdf\xc9\x7a\x14\x46\x67\xb5\xba\xb2\x0c\xd4\xee\x69\xd4\xa1\xcf\x9f\x09\xbe\xcd\x30\x1a\xe1\xe5\x9b\x71\x0d\xee\xf7\x11\x66\xfb\xb0\x51\x87\xc1\x7f\xd4\x36\xd7\x07\x85\xc3\x3e\xe1\xcb\xd3\xa6\x98\x89\xa6\x0f\xb4\xcd\x91\x04\xde\xf2\x47\xfe\x8e\xd9\x13\x36\x97\x64\xdc\x87\xd4\x21\x17\xc5\x51\x19\x99\x40\xfd\x68\xf3\x78\x92\xb9\x09\xdb\x86\x4f\x0f\x17\xa2\x6d\x9e\xee\xc7\x20\x26\xc5\x99\x46\x3d\xa9\x58\x31\x40\x36\xd0\xb0\x79\xf8\xfe\xf5\x87\xb7\x6f\x5e\xbd\x3a\xfa\xe5\xa7\x0f\xef\x8f\x5e\xbf\x78\xf3\xeb\x7b\x75\x57\x54\x66\x04\x6c\x9d\x4a\x53\x98\x6e\x64\xc7\x68\xab\x64\x04\xaf\xe7\x41\x16\xa0\x3d\x91\x83\x42\xbc\x3f\x82\x7b\xba\xfc\x75\xb9\xa9\x2a\x2a\x6c\xce\x17\xe9\xa4\x66\xf2\x3d\xd3\xf0\x34\xe8\xa3\x51\x4a\x81\x3f\xe1\xcb\xba\xd5\x07\xb2\xc2\x0a\x9d\x57\x4a\xdb\x14\x35\xd7\xa5\xb4\x9f\x05\x73\x4d\x40\x86\xc0\xb2\x20\x4c\x80\xbd\x08\x5b\xea\x5d\xf4\x3a\x98\x2b\xd6\x0a\xc5\x92\xad\x5f\xaf\xa6\x3a\x2b\x48\x8c\xfa\xdf\x26\xfd\xaf\x83\xf9\x09\x14\x0b\x61\x79\xe7\xbd\x72\x02\xe0\xa7\xca\x35\x6e\xd1\xb8\x76\xd9\x1c\x55\x56\x97\x63\x5d\x61\xd6\x42\x82\xbc\x7f\xf3\xfc\x4d\x9f\x33\x18\x9a\xc6\x67\xff\x32\x15\xea\xd8\xa3\x52\x5f\x57\x89\x2e\x61\x1f\x48\xeb\xa6\x28\xa4\xcd\xc3\xb7\xe6\x2c\x98\xd7\x7c\xee\x09\xfc\x0f\x3c\x16\x47\xb2\x97\x49\xdf\xb3\x5d\x5e\x38\x52\x6f\xda\x08\x8e\xf8\x84\x51\xba\x48\xc0\x32\xcc\x05\x55\x98\xa2\x34\x0b\x09\x3f\x50\x29\x8e\x47\x28\x18\xc3\x8d\xa0\x24\x09\xcf\x83\xa9\xb1\xce\x6a\x75\x92\x0e\x81\xbb\xf2\x74\x5a\x84\xa3\x53\x13\x45\x49\x52\x73\x28\x3d\x00\xf4\x32\xe2\x8b\xf7\x86\x0c\x37\x97\xa8\x9f\xae\x10\x9e\x1a\x69\xd3\x94\x12\xe3\x60\x9a\x62\xf5\x5c\x8d\xdd\x73\x2a\xec\x53\x91\xc4\xc8\x6c\xb3\x7c\x15\x64\x58\x60\xc0\x95\xf9\xea\xd9\xf6\x3f\xb1\xba\xf3\x1e\x94\x2c\xd1\x8d\xe5\x4d\x02\x48\x63\x30\x85\x48\x28\xa8\x53\x68\xcc\x75\x7f\x2f\xe9\xb8\xf8\x2d\x0c\x48\x3d\xd5\xac\x7b\x0e\xb7\xde\x99\x81\x28\xf4\x23\x2e\x6a\x82\xbe\xdf\x6f\xef\x36\x1c\xe7\x5e\x8d\xfb\xdc\x04\x7d\xbf\xdf\x81\x68\x38\xcc\xfc\x7d\xbf\xdf\x85\x6b\xa7\x3b\x65\x0e\xc5\x58\x98\x4a\x9c\x65\x61\x74\xe6\xbe\x0d\x0b\x72\x89\xdd\xbe\x82\x3b\x63\x68\x4f\xdc\x51\x7b\x62\x41\xc8\xe0\xc8\xc2\x21\xc8\x17\xe7\x87\x35\xca\xe8\x26\x28\xef\xde\x9e\xe3\xdd\x9e\xe3\xfd\xb3\xcf\xf1\x78\x10\x5c\xb6\x61\x59\x25\x10\x6e\x91\xff\xab\x27\x5d\x84\x91\x2d\xa2\x8a\xa7\x2c\x9f\xd2\x6d\xb6\x2f\xd8\x1f\x8d\x52\xe8\x3a\xb1\xb8\x05\x11\x58\xa4\x52\xb4\xa0\xda\x17\xbb\xe4\xd6\x20\xba\x57\x98\x41\x70\x39\x04\x71\xf4\xe9\x9a\x4a\x17\xfb\xbb\x77\xd5\xad\x01\xdb\x9a\xdd\x35\xed\x43\x64\xd5\xbc\xcb\x0e\xaa\x14\x38\x45\x56\xd1\xd8\x36\xfc\xea\x1c\x81\x8b\x23\x76\xc1\x4a\x93\x68\x4c\x6d\x22\x7d\xef\x30\x32\xfa\x74\x22\xba\x6c\x73\x4a\x53\xc7\x62\xe1\x72\xc0\xe1\x7f\xfa\xba\x65\x2e\x4f\x3e\xab\xa5\x70\x09\xe4\xc1\x7b\x00\xe5\x1f\x7e\x00\xdc\xa9\x4d\x2a\x8c\xce\x40\x1a\xd7\xb5\x1a\xf9\x81\x85\x99\x58\x8f\x75\x9a\xf4\xc6\x84\x1a\xd5\x5b\xc9\xab\x12\x29\x94\xa1\x69\x90\x42\x33\xc7\x19\x19\xec\x7b\x7b\x7b\xa2\xa3\xad\x4e\xd9\xdc\x84\x7e\xd1\x59\x08\xa6\x56\x96\x2c\x88\x8a\x96\xa4\x19\x4a\x63\xea\xc8\x38\x9f\x83\xa8\x86\x6d\x72\x10\x5d\x66\x64\x6f\xdf\x40\x03\x3c\x26\x13\x9e\x4e\x69\x7e\x48\x0a\xd4\x53\x7b\xa2\xf1\x17\x8e\x6b\xf7\x1c\x58\xfe\xf0\x03\x72\xf5\x74\xdd\x2a\x8f\xec\x83\x05\x82\x6a\xfd\x89\x9f\xb8\x98\xca\xc5\x08\x2f\x33\x74\xf0\xf6\x57\x34\xbc\x1c\x4e\x71\x43\x90\x05\xdd\x2a\x16\x13\xc0\x1c\x48\x64\x4e\x48\xf3\x24\x1e\x12\x99\x94\xd2\xde\xb0\x5a\x51\x76\xb8\x62\x1a\xb8\xf8\xcf\x81\x38\x1b\x7a\x13\xea\xaa\x81\x5a\x2e\x7a\x1c\xdd\x46\x87\xd6\xa7\x6a\x29\xde\x5c\x77\x45\x05\xa6\x1f\x9a\x62\x56\xad\xd9\x8e\x4c\x70\xef\x97\xc9\x48\xc7\x75\x5f\xee\xca\x74\xd5\x90\x3a\xf5\xd1\xa8\x21\xa7\x3d\x7b\xaf\x9a\x83\xe8\xf6\x1f\x24\x05\xa1\x92\x3b\x3a\x4a\x93\x90\xee\x17\xad\x07\x8f\x36\x99\xdf\xe3\xf3\x6e\xe8\x73\x48\x35\x1b\x1d\x11\xbd\x58\xb1\x33\x3d\xa4\x52\xf5\xe1\x43\x05\x4e\xcc\x3f\x65\xd3\x0e\x1f\x82\xd1\x48\x38\x67\x0d\x65\x58\x6a\xf1\xdd\x1c\x1e\x65\x1f\xa0\x88\x4c\xee\x7d\x05\xef\x15\x67\x6f\xaa\xa0\x89\x9e\x50\x5d\x75\x65\xbb\xb9\x2e\x87\xe1\x58\xbe\xd2\x0d\x4c\x52\xa4\x80\x81\xc0\x40\xbe\x14\x12\xea\x28\xfa\x35\x54\x8b\xc1\x84\xf5\xb8\xa6\x8c\x41\x3d\xa7\xb7\x9d\x5a\xaa\x40\xc8\xef\x81\x46\x74\x6f\x3d\xe1\x03\xd1\x65\x6f\xb3\x74\xde\xea\xb2\xff\x70\x5d\x56\xfa\xa4\x65\x49\x10\xa5\x63\xcb\x1b\x6d\xe5\x2b\x5c\x47\x83\x20\xd2\x95\xd7\x70\x10\x88\xab\xb3\x78\x49\x0d\xcf\x79\x57\x6f\x8f\x67\x41\x92\xbd\x60\x80\xf2\xda\xac\xf7\x90\x0b\x8c\x44\xd0\x2c\xa7\xc5\xb0\x5e\x2b\xaf\xc5\x71\xd6\x71\x96\x84\xd1\xd9\x15\x5c\x4d\x71\xbd\x27\xca\xef\x20\x88\xd4\x4f\xbf\x05\xd3\x05\xbe\x42\xe7\xe4\x3f\xec\x60\x83\xd4\x3c\xc6\x09\x2e\x38\xeb\x6c\xe8\x7e\x02\x10\x63\x86\xe1\xa4\x49\xc5\x71\x36\x6b\x00\x46\x44\xf9\x6e\xd0\x96\xec\x15\x0c\x8c\x68\xb4\x97\x23\x7c\x01\x94\xd7\xc4\xc5\x01\xb0\xc8\x90\xaf\xdc\x80\x53\x73\x78\x01\x91\x62\x90\x27\xa1\xb6\x11\x52\x63\x0c\xad\x90\x5d\xb3\xdd\xb0\x0d\xc1\xac\xc6\xe7\x61\x42\x34\x2d\xd7\x7d\x16\x4e\xd0\xfb\x98\x5d\xcc\x55\xa9\x81\xe2\xac\xf6\x5a\xdd\xa6\xcc\x36\xbe\xbb\x74\x56\xb8\xdd\x20\x2e\x39\x8f\xb3\x59\x53\xb9\x0e\x5c\xab\x43\x03\x0c\xd3\x28\xcd\xc2\x6c\x41\x55\x2b\xdb\x75\x6b\x84\xe7\x71\x1a\x66\x2a\x86\xac\x5e\x81\x1a\x54\x33\x9c\x86\x38\xca\x4c\x6f\x8a\xd2\x0d\x5b\x6e\x12\xac\x11\x47\xef\x55\xc5\xc8\xee\x3b\xae\x19\x79\xa7\x89\xe0\xb8\xf1\x22\x1a\x81\x2f\xe3\x10\x27\x59\x10\x8a\x61\xf7\xcc\x1a\x31\xa0\xd5\xa6\xcf\x8d\xcf\x1c\x81\xd7\x0a\x53\x88\xdb\x5c\xb3\x59\xd3\x48\x75\xa5\x68\xb4\xe2\xd2\x79\x16\x4b\x3d\x96\x54\xdd\xa7\x0d\x28\x7c\x39\x5d\xe0\x3e\xfd\x0f\x57\x6e\x87\x7a\x06\x12\xef\xa8\xb0\x81\x97\x83\x02\x01\xdd\xc3\x21\xe2\x02\x10\x71\xc1\x88\x6a\xb3\x45\x9a\xc1\x02\x87\x67\x38\xca\x04\xcf\x0c\x2e\x33\x9c\x76\x3b\x75\xa6\x82\xdf\xab\x1b\x03\xc9\xe0\xd6\x3e\x7c\x64\x10\x8c\x01\xe4\xe5\x29\x9b\xa2\x45\x14\xfe\xef\x02\xa3\x70\x84\xa3\x2c\x1c\x87\xba\x04\x2e\x35\xd8\xbc\x7b\x4a\x0c\x31\x34\xe9\x96\x96\x01\xac\x36\xca\xda\xf3\xc4\xe4\x02\xde\xc9\xb5\x60\x10\xd6\x9b\x41\x46\x04\x6a\x93\x77\x30\xaf\xfa\xef\xeb\x72\x81\xa5\xa2\xf2\x6e\x74\x06\x2f\xb0\xd7\xc1\xfb\xfd\x2e\xd1\x58\x89\x24\xb8\xdf\xef\x76\xaf\x4e\x1b\x5b\xa5\x92\x04\x33\x23\xed\x56\xa9\x4c\x65\x4f\x54\x5b\x7a\x4c\xd4\x8a\x71\x30\xcc\xe2\xe4\xb2\x41\xed\xc2\xa4\x63\xef\x10\x19\x4d\x34\xfc\x78\x8c\x04\x35\x7b\x7b\xe8\x3e\x8d\xa3\x74\x1f\x60\xee\x6c\x6e\xa2\x83\x78\x36\x8b\xa3\x7f\x1f\xdf\xbd\x73\xc7\x22\x5e\xfe\x62\x0d\x70\x9c\x6a\xf7\x49\x37\x24\xf8\x7e\xbd\x81\x94\x57\x38\x1a\x3e\x1a\x04\x29\xde\xee\x19\x1f\x66\xa3\x2d\x13\xf4\x7c\xfe\x69\x34\x36\x5e\x0e\xc3\xf9\x04\x27\x8f\x68\xcd\xf5\x27\x77\xef\x5c\xdd\xbd\x83\xa7\x29\x46\x0a\x31\xd4\xee\x4d\x69\xe1\xdd\x70\x1f\xfd\xf0\x03\xfb\xd0\x0c\x66\x23\x41\xdb\xfe\xeb\xe7\x77\xef\xdc\xa1\x1f\x6a\x27\x1c\xe7\x06\xd2\x51\x85\x67\x82\x21\xfd\x40\x11\x83\xdf\x2a\x3e\xa7\xa2\x97\x55\xc4\x58\x43\x34\x8a\x05\xaa\x0d\x92\xf8\x22\xc5\x49\xfd\xee\x9d\x3b\xa2\xc7\xe2\x38\x6b\x1e\x24\x97\xf3\x2c\xfe\xf7\x31\x2d\x7a\x05\x9b\x26\x75\xed\x11\xdf\xd1\xdf\x77\xef\xde\xa9\xe9\xbb\xb0\x3b\x88\x1a\x3e\x8e\x27\x71\x92\x0d\x17\x59\x4a\xdf\x90\x69\x73\x80\xf6\x10\x2f\xfb\x44\x79\xfd\x61\x1a\x0e\xc8\xa7\xe6\x34\x1c\x28\xef\xc1\xa6\x75\x00\x44\x91\xaf\x04\xaa\xa9\xbc\xd3\x6a\x08\xa6\x67\x31\x54\x41\x7e\x3c\xb9\x2b\xb0\x78\x15\xc7\x9f\x16\x73\x94\x05\x83\x29\x56\x30\x39\x7e\xf6\xe6\x0f\xb6\xd5\x13\xef\x8e\x7e\xf9\xed\x83\xeb\xfd\xf1\xaf\xcf\x3e\xbc\x3e\xfa\xe3\x43\xcb\xf7\xa1\xed\xfb\xd0\xf1\x7d\xe8\x3a\xdb\xf6\xb5\xa3\x7e\xb4\xda\x52\x3f\x5a\xed\xa9\x1f\x79\x9b\xa2\x6b\x0e\xe2\xd9\x9c\xec\x0f\xa7\x76\x17\xb9\x86\xd4\x28\x35\x8a\x17\x03\xa2\xed\x93\x52\x12\x00\x44\xac\x8a\x05\x52\x7d\x0d\x42\x08\x02\x88\x42\xf4\x14\x75\xb6\xb6\x9f\xa0\xf0\xe1\x43\xad\x7a\xa1\x1c\xa2\xa7\xa8\xdd\xd9\xb5\xbe\x91\xbf\xd1\x49\x78\x8a\xf6\x48\x1d\x4f\x51\xfb\x89\xfe\x9d\x1e\x88\xe6\x94\xaa\xd1\x62\x75\xf4\x27\x6a\x2d\xdb\xed\x81\x59\x5e\x3e\x5e\xdd\xd5\xa8\xfe\x3d\x98\x7e\x42\x3f\x1d\xd6\x3a\x7f\xee\xd6\x75\x6a\x97\x34\xb0\xa1\xfe\x2e\x34\x5e\x56\xea\x01\xa5\x93\xd3\x41\xbc\xd4\x3f\x82\xbb\x00\x69\x73\x19\xa2\x3f\x51\x6d\x29\x09\x62\xbf\x3b\xca\xef\xae\xf2\xbb\x57\x37\x88\x85\x5a\x6a\xe9\x12\xfd\xf8\xe3\x8f\x68\x17\x20\xd3\x25\xfa\x01\xb5\x96\xe3\x31\xed\xa0\xed\xae\x51\x84\xcc\x8e\x93\x25\xe9\xc8\x74\x69\x7c\xe2\x93\xe7\x24\x85\xef\xcb\x27\x77\xbd\x44\xcd\x16\xd3\x2c\x9c\x4f\xc3\x21\x18\x07\x6c\xf2\x96\x84\x8d\x47\x27\xcb\xd3\x27\x8e\x6f\x3d\xfa\xad\xe3\xfc\xb8\x4b\x3f\xf6\x4e\x73\x5a\x4f\x17\x03\x04\x0a\x4e\x03\xcd\xc2\x25\x1a\xc6\xd3\xc5\x2c\x4a\x35\xee\x57\xeb\x24\x9a\x42\x6d\x04\x54\x3d\x20\x3c\xd3\x6a\xf3\x9e\x62\x8f\xad\x76\xab\x65\x76\xad\x98\xc9\xb4\xb3\x6a\x19\x0c\x4c\xaf\x8e\x3e\x93\xdf\xb4\xbf\x3d\x45\xda\x6a\x91\xf6\xb6\x52\xa4\xbd\xed\x2b\xd3\x51\xcb\xec\xd6\x91\x2c\xd3\xb1\x46\x5d\x48\x03\x5a\x26\xcb\xe9\xa9\x30\x3a\x57\x7b\x8b\x3c\x96\xee\xb1\xe5\xae\xd2\x3f\x8c\x3d\x7b\xec\x55\x8b\xbf\xe8\x68\x5d\x9a\xdb\xa3\x9a\x7c\x64\x3c\x56\xa6\x5b\x35\xd1\xa9\x95\x2b\xe8\x5b\x4d\xac\x6a\x05\x0b\x3a\x58\x13\xb9\xac\x60\x5e\x2f\xc3\x99\x00\x98\x7f\x71\x62\x4b\xc2\x7b\x4b\xa7\x10\x64\x02\x60\xaf\x82\x04\x84\x22\x1d\xf4\x27\x1a\x9d\x90\xff\x2d\x77\xd1\x9f\x68\xd9\x39\x3d\x35\x27\x12\xc0\x86\xe8\xcf\x3d\x00\x5c\x86\x16\x80\x26\x24\xe1\xe7\x15\x6c\x68\xc5\xba\xf2\x36\xc1\x43\x4a\xdc\x08\xbd\x1b\xc6\x11\x5b\x60\xe4\xaa\xf4\xee\xe0\xcd\x2f\x64\x8d\x68\x2d\x5b\xad\x06\x6a\x2d\x5b\x6d\xf8\xb7\x03\xff\xf6\xe0\xdf\xdd\x06\xf0\x02\xf9\xb7\x03\xff\xf6\xe0\xdf\x5d\xf8\xb7\x3d\x20\xff\x76\xb7\xe5\x62\xf6\xe0\x01\x43\xea\x01\xda\x7f\x71\x4c\x43\x91\x23\xaa\x0e\x21\xa2\x10\x24\x61\x36\x99\x35\x39\xcc\xa6\x44\x85\x40\xef\x31\xf5\xa1\x49\x1f\x14\x0d\xa3\x89\x97\x19\xbd\xf5\x2f\x48\xfe\x30\x8a\xdf\xe1\x14\x67\x7d\xe4\x59\x22\x59\x27\x1c\x7f\x0a\xe7\xcc\x77\x37\x1e\xa3\xe8\x5d\x0c\xdb\xb1\x49\x90\xa2\x01\xc6\x11\xf8\xf7\xb3\x63\xab\x20\x1a\x81\x13\xde\x28\x1c\xa1\x28\xce\x98\x23\xa5\xcd\x0a\x34\x8f\x09\xaf\x89\x3b\x7c\x7e\xf8\x84\x2f\xdf\x26\x61\x9c\xbc\xa3\x3e\xbc\x7b\x7b\xf2\xbd\x93\x75\xb8\x73\x97\x31\xa6\x36\x01\xba\xfa\xc6\xff\xb8\xcb\xe0\x9e\xbb\x79\xf9\xd6\x21\x9f\x3f\xe1\xcb\xdf\xe3\x04\xdc\x10\x3f\xe1\xcb\xe6\x05\xf9\xed\x06\x3b\x0e\xff\xc2\x0c\x2a\x0d\xcf\x9e\x11\x01\x84\x36\x51\x2f\x6f\x1a\x09\x4f\xfe\x04\x3a\xc8\xae\x96\xf7\x1c\xc7\x51\x3e\xf3\x06\x1f\xa2\xed\x52\x2d\x10\xfa\xd3\xe1\x04\x93\xed\x07\x22\x2a\xb4\x83\x86\xf4\x5d\x7c\x41\xea\xae\xf1\x66\x1e\x92\x55\xfa\x41\x2e\x0d\x6a\xbd\xee\x6e\xe1\x8d\x2a\xfd\xac\xbc\x3b\x31\xa7\xaa\x74\xf2\x24\xe8\x50\xd5\x83\xfe\x7c\xca\x30\x64\xcf\x0e\x2d\x04\x31\xb6\x13\xf0\xb4\x93\x9c\x70\xe4\x4f\x41\xe5\x04\xca\x9c\xd2\x9e\x85\x11\x67\x6f\x1c\xa2\xc6\x2f\xb0\x90\xb2\x9e\x58\x95\x43\x14\x1c\xb3\x2b\x55\xb4\xef\x31\xc4\xff\x4b\x20\xee\xc5\x9c\x8d\xc2\xbb\x38\x43\x84\x25\xfd\x40\x99\xba\x06\xe8\x4b\x40\x6e\xcd\xc7\x8b\x41\x99\x9a\x41\x7d\xe2\x75\x9e\x2a\x6b\x1b\x7c\x90\x2b\x15\xd3\xd1\x4e\x95\x55\x4c\x85\xd8\xd5\x00\x00\x53\x56\x33\x7b\x5d\x80\xed\xeb\x70\x09\x62\x3b\x0f\xdb\x3f\xf7\x40\x88\x9f\xb0\x4e\xde\x94\xdc\xf1\x19\xb5\x18\xea\x8e\xc1\x46\x72\xc0\x81\xb5\xd8\xbc\xfb\x11\x6d\x13\x79\x66\x0c\x18\xda\xdb\x43\xbd\xa2\x41\xfb\xe6\xba\xd6\x4d\xb3\xa7\xc7\x7d\x73\xc6\xe2\x75\xd6\x25\xa7\xe8\x4f\xa2\x4b\xd8\x93\xa8\x50\x9a\xab\x3a\x5d\xbe\x98\x09\xa3\xf3\x9f\x1d\x92\xc6\x7a\xed\x17\x36\x04\x54\xca\x1b\xf1\x24\x45\x0e\x7f\xe5\x91\x3a\xaa\xc0\x62\x72\xf4\x91\x28\xe3\x62\x5e\xd8\x32\xf2\x66\xfe\x2b\x87\x69\xbc\xe2\x64\xbd\x92\xa9\xe7\xac\xae\x08\xf1\xa7\xa8\x07\x57\x51\xe8\x43\x1e\xef\xeb\x63\x71\xc2\x6b\x60\x9a\x66\x45\x42\x72\x2a\xd3\x95\x6e\x7d\x0e\x11\x56\xd4\x95\x6b\xcf\x54\x3a\x45\x7f\xfa\x27\xa7\xe7\x4f\x57\xbe\xdd\x33\xd0\x44\xa0\x7b\xa2\x4f\x45\xf7\x18\x78\x35\xd9\x86\x32\x3c\x38\x1a\x26\x97\x73\xea\xe0\xaa\xea\x79\xaf\x1b\x28\x1e\x8f\x53\x9c\x59\x23\x43\xe7\xc8\x28\x3e\x10\xe5\x24\x70\xc3\x5e\xab\x1b\x72\x87\x28\x7f\xb6\xe5\xcf\x8e\xfc\xd9\x6d\x80\x88\x51\x77\x19\x1a\xae\x23\x5c\x15\x57\x22\x35\x2f\x82\x39\xea\x44\x23\xd0\x3d\x7b\xd9\xc4\xa3\xc4\x10\xfe\x7e\x7d\x42\xab\x21\xfa\x8b\xd9\xa5\xda\x37\x1d\xb6\x9b\x03\xdb\x75\x6e\x89\xca\x74\xa1\xce\xab\x0d\x9d\x41\xf5\xc7\xb6\xfe\xd8\xd1\x1f\xbb\x0d\x61\xb0\xb0\x16\xef\xcd\x4d\x74\x44\x76\xbe\xdf\x44\x1f\xb9\x07\x5d\xeb\x26\xe7\xa8\x37\xd0\xf5\xd8\xcd\xc5\x34\x6c\x43\x50\x5a\xb3\x76\x74\xec\x4f\x98\xc5\xf8\x84\xd3\x48\xaa\xaa\x13\x4c\x1d\x36\xae\x96\xd2\x59\xa7\xf0\xfa\x4f\x4d\xd8\xb6\x5c\x16\xa0\xb4\x6d\x0e\x87\x51\xca\x1a\x1f\x28\xd5\xd1\x4b\x75\xcc\x52\x4e\x6b\x53\xda\x35\x87\xd3\x28\xd5\x75\x99\xa1\x7e\x36\xf6\x0e\xee\xad\xbf\xba\x04\xba\x76\x0c\xef\x1c\x7b\x1c\xb1\xfe\xd2\x5e\xdd\x43\xed\x27\xec\xe7\x53\x3e\x42\xec\x85\x67\xdd\x85\x31\x0e\xc7\x19\x70\x7a\xc3\x63\x28\xcb\x1d\x38\x8e\x7a\x46\x06\x4f\x31\xd7\xb4\x84\xe6\xf5\xa7\x62\xe8\xaa\xa5\x6d\x4b\xef\xfa\x53\x31\x6a\xd5\xd2\x8e\xa9\x75\xfd\xa9\xd8\xaf\xd2\xae\xf2\xda\x5a\x86\x1f\x3e\x74\x2d\x00\x80\x5c\x5b\x47\xae\xed\x41\xae\x53\x80\x5c\x37\x17\xb9\xd6\x8a\xc8\x75\x74\xe4\x3a\x1e\xe4\xba\x05\xc8\xb5\x72\x91\x6b\xaf\x88\x5c\x57\x47\xae\xeb\x41\xae\x55\x80\x5c\x3b\x17\xb9\x4e\x21\x72\x4e\xd6\xfd\x75\x0e\xbe\x43\x69\x16\x64\xd8\x06\x00\x71\x92\xb5\x1c\x84\x81\xc8\xc8\x4c\x3b\x1a\x7c\x21\x63\x91\x75\x5c\x5f\x48\x47\x64\xa6\x75\xdc\x69\x44\x71\xce\xa7\x02\xd9\x07\xd3\xa7\x46\x77\x1e\xca\xdc\x31\x77\x2d\x8e\xe9\x63\x6e\x5b\xec\x19\xa4\xed\x5b\xe4\x14\xaa\x97\xe3\x04\x31\x7f\x38\x76\x6d\x3f\x76\xf6\xfc\xb1\xb0\xb3\xa6\x90\x8e\x5d\x6b\x15\xec\x3a\x0a\x76\x1d\x3f\x76\xf6\x04\xb2\xb0\xb3\xe6\x90\x8e\x5d\x7b\x15\xec\xba\x0a\x76\x5d\x3f\x76\xf6\x0c\xb2\xb0\xb3\x26\x91\x8e\x5d\xa7\x18\x3b\x9b\x5b\x31\x0f\x48\xed\xd6\x4b\xe8\x32\xec\x98\x47\xa6\x92\x63\x4d\x27\x7d\x71\x75\xcc\x2a\x4b\xf5\xe9\xfa\x74\x1f\xb6\x15\xee\xa3\xce\xd6\xf6\x66\xb7\xc3\x2c\xd0\x75\x97\x29\x98\x6b\x2c\x42\x41\x4a\xd9\xf5\x5f\x66\x1a\xde\x48\x59\x9a\x26\x04\xc9\xab\xc7\xc1\x10\x0b\x1b\xb1\xa8\xe4\xbf\xf1\x32\x98\xcd\xc5\x4e\x59\x7e\xe0\x63\x4a\xeb\xca\xf0\x32\x53\x4e\xb7\x9b\xfb\x2f\x8e\x9b\x6c\x1f\x51\x9b\x71\x47\xf4\x4f\xf8\xb2\x81\x86\xe3\x33\xa1\xcd\xcb\x5a\xe6\xd3\x80\x20\xb1\xcc\x90\x59\x0b\xd3\xf0\x6b\xb2\x1d\x57\x45\xcc\xa6\x7d\xe0\x30\x62\x7f\xa0\xd1\x4e\x5f\xe2\xe9\x1c\x27\xb5\xfd\x17\xf4\x58\x9f\xda\xec\xef\xde\x61\x3e\x2b\x6a\x93\x4f\xee\xde\x85\xc8\xb5\xe0\x40\xa2\x79\x15\xf4\xb7\x3a\x0d\xee\x97\xd0\xdf\x02\xdf\x11\xc5\x33\xa1\xbf\xd5\x6b\x48\x97\x84\xfe\x16\xdc\x44\x9c\x8d\xb6\xee\xf7\xb7\xdb\x57\xa7\x8d\xad\x52\x39\xf9\xbd\xde\x22\x5f\xd2\x4d\xe4\xc6\x9c\x39\xbe\xa0\x5b\x06\x9d\x09\x0f\x10\x73\xa0\x20\xcd\xa3\x61\x3c\x9b\xc7\x11\x84\x4a\x27\xdf\x36\xef\xde\x11\xe3\x3e\x0d\x07\x4d\x06\xfa\xf9\xb3\xea\x00\x20\xee\x6e\xae\xd9\xb9\x23\x48\xb1\xf4\xea\x08\x52\xac\x7c\xfb\x3d\x4e\x46\x70\xb9\x5c\x00\x88\x37\x6a\x0d\x8b\x31\x38\xfc\x01\xaf\xef\xf3\x53\x1e\x59\xa7\xf3\xb3\x86\x19\x86\x0b\x52\x07\x64\xa2\x2a\xef\x7f\xcd\xc6\xbb\x50\x0b\x8e\x86\x4d\xf2\x60\x60\xbd\xdd\x13\x5f\xe9\x63\x9e\x23\x8a\xf8\xf2\xe2\x7c\xfe\xf3\xf3\x43\x79\xd8\x44\x9f\x9d\x27\x58\x83\x94\xfa\xe7\x91\x69\xc5\x4f\xb1\x32\x3c\x9b\x4f\x83\xcc\x25\xa0\x44\x70\xe8\xbf\x23\x16\x52\x87\x5b\x50\xe1\x2e\x81\x90\x75\x60\xf7\x0b\xff\xc2\x4d\x1e\x19\xb2\x8f\x7a\xa8\xd6\xee\xec\xa2\x41\x98\xa5\xf5\xbc\x0a\xc3\x73\x47\x7d\x47\xbf\xad\x5a\xdd\x87\x17\xbf\x1c\x7c\xf8\xe3\xf0\xcd\xbb\xd7\x1f\x5e\xbf\x79\xfe\x02\xed\x43\x80\x82\x2c\x88\x32\x94\xe0\x79\x82\x53\x1c\x65\x61\x74\xc6\x0d\x31\x84\x0d\x67\xf1\x48\xd2\xee\xac\xf3\xf9\x8b\x52\x75\x32\x71\x6a\xd5\xa9\x1c\x0a\x1a\x2e\x47\xe2\xd1\xcd\x51\x8e\x43\x42\x39\x9a\x14\xdd\x03\xb8\xbd\xbd\x48\xc0\xe1\x41\xe4\xe6\x50\x41\x34\x70\x85\x3a\xc1\xf7\x64\x0c\xd0\xfb\x09\x26\xbd\x9e\xc5\x68\xc1\x6e\x07\x10\x11\x80\x08\x30\x54\xad\x55\xb9\x29\x1f\x86\xe3\xb3\x3e\xb0\x2e\xc7\xb5\xae\xae\xa8\x16\xb6\xb0\x5c\xa4\xb4\x6e\xc6\x7e\x61\xe4\x1b\x0c\x17\xfa\xd4\x1f\x53\xc1\x9d\xb0\x1e\x41\xfe\x13\xbe\x6c\x3a\x61\xf9\x05\xcf\xe1\xf8\x0c\xd5\xde\x40\x2b\xc1\xb4\x0e\x65\x86\xae\xce\x2b\xd9\x07\x7a\x5b\x3c\x00\x28\x1d\xd0\x2b\xc2\x22\x9c\x3a\xc2\x28\xc3\x3c\x9a\xc8\xbe\x22\x1c\xfa\xbf\xeb\x5a\x82\x0d\x80\x34\x6d\x41\x5d\xe3\xf9\xd1\x73\x93\x2e\xd3\x2f\x68\x37\xc7\x49\x8d\x1d\x9e\x41\x17\x36\xd0\xdf\x28\x3c\xef\xa3\xf0\x5c\xca\xc6\x2b\xcd\xf5\x40\x1b\x6f\xbd\xa6\xbe\x16\xd8\x89\x69\x0e\xa6\x05\x40\x4d\xf8\x41\xcb\xb3\x13\x67\x7d\xae\x3a\x74\x0f\x53\x43\x2b\xc9\x4f\x9e\x89\x78\xcb\x4f\xeb\xe5\xa7\xe7\x78\x5d\xfc\x24\x6a\xba\x1e\x3f\xe9\x72\x7a\x05\x7e\x3a\x8a\xc2\x2c\x0c\xa6\xe1\x5f\x38\x45\x01\x8a\xf0\xc5\xf4\x92\x61\x38\x62\xdd\x51\xcc\x4b\x7c\xd5\x58\x8e\xe3\x64\xf6\x3a\x1e\x61\xf4\x82\x5e\x51\x83\xf8\xca\x52\xd2\xc5\x89\xca\xa7\xe0\x5d\x0d\xb7\xfb\x38\xd7\x8a\x45\xc6\xcd\x86\xdf\x1c\xcb\xae\x8d\xad\x6a\xf6\x07\x97\xa4\x58\x91\xe1\xc2\x28\xd4\x3c\x6c\xc4\x30\x29\xec\xe2\x30\x51\xef\xcf\xe7\x84\x17\xa0\xb7\x78\x92\xe8\xd4\x71\xcc\x40\xba\x78\x4f\xfc\xe4\x8b\x22\xe5\x41\x7b\x57\x9c\x11\xcd\x99\x3a\xd6\xc7\xc9\x8c\x0e\x7b\xe0\xb2\xdd\x50\xfe\x96\x2c\xb5\x27\xd9\xeb\x89\x0b\x92\xfa\xd1\x80\xaf\x8c\x73\x2f\x1e\x52\x46\xa7\x37\x00\x5c\x74\x80\x7f\x51\xad\xf4\xc4\x01\x1f\x1d\x5d\x0e\x43\x48\x86\x54\xb4\x04\xd6\xb3\x6b\xb2\x0f\x9b\x82\x36\x6e\xda\x08\x27\x65\x9c\xa8\xa8\x53\xd1\x28\xc8\x02\x34\x00\xdd\x4b\x87\xf0\xe8\x63\x50\x35\xcd\x50\xc1\x2f\x39\x9b\x15\xbf\xc5\x09\x8c\xe5\x30\x8e\x86\x09\xce\xf0\x23\xd6\x1d\xd3\xf8\x4c\x13\xca\xca\xb9\xd4\xbb\x6a\x7d\x0d\x61\x31\x00\x73\x7a\xbf\x85\xc9\x14\x3c\x52\x44\x0a\x1e\x55\x58\xf4\x3e\xa7\xec\x2a\x0c\xa9\x94\x19\x3b\x89\x6c\xe0\x6d\xb0\x06\x94\xea\x4b\xac\x5c\x8a\x7c\x12\x75\xd1\xd0\x57\x2c\xe6\x40\x18\x9d\xad\x41\x9a\x48\xe2\xf7\x38\x7b\xb0\xfa\x6b\x1b\xa4\xcd\x0d\x9d\x4d\xca\x94\xbb\xe0\x98\x7b\x39\x8c\x41\xf6\x8d\x38\xad\xb4\xeb\x3c\xd2\x03\x47\x23\xd7\xe8\x07\xf0\x45\x2d\xee\xe2\x29\xda\x1e\x0a\xce\x83\x70\x1a\x0c\xa6\x98\xba\x21\xa6\xfe\x65\xf1\x03\x27\xa6\x34\x57\x1d\x86\x11\x5b\xf8\x72\xd7\x29\x56\xaf\xbe\xce\xfc\x12\x67\xec\x52\x34\x0d\x7d\x46\x6b\x92\xab\x06\x0a\x53\x84\xc7\x63\x3c\xcc\xc2\x73\x3c\xbd\x44\x01\x1a\xe1\x34\x4b\x16\xf0\xdc\x40\x09\x0e\x46\x8f\xe2\x68\x88\x4b\xad\x33\x65\xb9\x17\xd0\xb8\x29\x1e\xa6\x95\xdf\x34\x27\xf3\x9e\xac\x95\x67\x62\x51\xa4\x2a\xf7\x8b\x82\xc5\xec\xcf\x41\xcb\xf3\xff\xa1\x1c\x8b\x05\x00\xe9\x10\xe1\x38\xb7\x02\x94\x3b\x5b\x34\x50\xc7\x41\x49\x05\x81\x0c\x61\x8d\x08\xaa\x6c\xc2\xe1\x11\x8b\x78\xc9\x25\xf5\xa1\x32\x20\xce\xc9\x67\x97\x2e\x34\x36\xb7\x3b\xbb\x9b\xdd\x8e\xfa\x89\x9a\x44\x5c\x5f\x0c\x3d\xa8\x8f\xda\xda\x57\x5d\xff\xed\xa3\x4e\x99\xbd\x53\xea\x34\x65\x07\xc5\x86\x6c\xe4\x9d\x9b\x7c\xd7\xc2\x7a\xfa\xfd\x04\x2b\x4a\x01\x4b\x90\x15\xa0\x09\x58\x8d\x89\x92\x59\x62\x2a\x72\x15\x76\x3f\xe2\xf8\x40\x5c\x01\x3e\xad\x89\xd2\xc4\xe6\xb5\x83\xa0\x2f\xb0\x59\x62\xde\xde\xb6\xc9\xd3\xb0\x91\x5b\xba\xad\x77\x96\x69\xe5\xfa\xde\x7b\x53\xe4\x4f\x7c\x4a\xf1\x14\x0f\x33\xda\xf0\x71\x96\x04\x19\x3e\xbb\xac\xf9\xdc\xb5\x15\xeb\x33\xa8\x8b\x7b\x68\x83\x8a\xd2\x0d\xaf\x7b\x18\x1b\x8d\xb7\x41\x9a\x12\x31\xf1\x2c\x48\xf1\x48\xbb\x31\xa7\xfe\xe5\x3b\x87\xb1\xaa\x8e\x71\x02\x1b\x2e\xb2\xaa\xf9\x6b\xca\x9f\xe4\x66\x4e\x3e\x76\x9e\x91\xe3\xa3\xee\x43\x8a\xb1\x93\x2a\xd8\xec\x13\x96\x3c\xbf\x51\x19\xcb\xcb\x3d\x0e\xe2\xe0\x86\xa2\xd8\x40\xfe\x03\x1c\xb3\x0f\x1a\x1e\x4f\x4f\xc6\xf6\x7d\x8b\x7e\xe3\x3c\xe7\x5a\x68\xeb\x27\x45\x0d\x94\x7b\x62\x64\x62\xee\x18\x50\x53\x6c\xab\x52\xb2\x56\x67\x16\x5e\xf7\xd1\x9b\x6e\xc3\x4e\xb3\x04\x07\xb3\x95\x4c\xd9\xa0\x43\x31\xe3\xb3\xea\x83\xdf\xed\x3c\x1a\x84\xd4\x61\x5b\xdf\xd1\x50\xed\x04\x02\x51\x2b\x96\xe9\x36\xaa\x75\x3b\xba\x61\x5a\x31\xf8\x1e\x03\x7e\x86\xd9\xd7\x7c\x99\x73\x23\xe4\xd0\xb1\xd6\xba\x56\x58\xae\x22\xce\x83\x04\xb6\x5b\x2e\x05\xd1\x5e\xde\x60\x7b\x23\xbd\xab\xb8\xd2\x78\xef\xde\xc6\x78\xba\x48\x27\x1b\xe5\x96\x39\x5a\x8b\x6f\xa1\x13\xdd\xdc\x47\xed\xbc\x71\x85\x7d\x2d\x64\x23\x9d\xab\xa7\xa5\xaa\xf1\xfc\xc3\x8c\xee\x7d\x0f\x9a\xec\xc7\xdf\x57\xc5\x1c\xa2\xdd\xd8\x81\x72\x16\x97\x28\x6d\x28\xa7\x9b\x6c\xa3\x6d\x5d\x0e\x66\xef\x55\xa3\x77\x9e\x81\x5e\x35\x51\xce\x78\x56\x2d\xa9\x5f\x57\x5e\x4d\xf7\x75\x8a\x9c\x06\x41\x33\x35\x8c\x34\xf0\x03\x57\x7f\x81\xf5\x90\x8f\x14\x5f\xee\xc0\x0e\x7b\xf0\xec\xc0\x32\x45\x73\x89\x12\x9e\xd3\x5b\x3b\xab\x58\x9e\x65\x1d\xb9\xb6\x42\x51\x96\x1b\x9a\x94\x72\x2b\x59\x9c\xc5\x70\xca\x0d\xd2\x7f\xe6\x70\x4a\x4b\x70\xc5\xe1\x74\x1a\x7e\x4b\x0e\xa7\x28\x7b\x8d\xe1\xcc\x33\xf8\x96\x3b\x3a\xf8\xa2\xc3\x79\xed\xe1\xca\x99\x02\x05\xe3\x65\xda\x4d\x73\x06\x89\x2e\x26\xc2\xce\x3b\x74\xa9\x75\xcc\xeb\xfa\x1c\xed\xa1\xf0\x5c\x1d\xad\xbc\x25\x82\xad\x98\x34\x3c\xf4\xc1\x24\x08\x23\x48\x5a\xe2\x3b\x6b\x7d\x06\x7e\x03\x1f\x38\xf1\x68\xcf\x1f\x7c\xc0\x34\xb1\x69\x2b\x08\x29\x6b\x31\x83\xd2\x35\xb2\x31\x63\x95\x10\x67\xa2\x4f\xf2\x24\xca\xb3\x03\xbe\x1c\x18\x3b\x21\xa5\x09\x6d\xec\x08\x55\xcf\x0e\x1c\x6b\x8f\x5d\x3d\x6d\xe2\xad\x88\xf2\x99\x71\x33\x06\xe5\xd2\x20\x63\x4e\xdd\x4d\xb3\x8c\x55\x87\xc1\xb3\x54\x3b\x12\x56\x11\xa6\x2c\xc5\x5c\x47\x42\xba\x24\x44\xce\x13\x12\xe6\x97\x45\x2a\x61\x3f\x2f\x26\x98\xc5\xcf\xa7\xf8\x41\xfc\xce\xb4\x04\x72\xf6\xc4\x70\x03\x92\x3f\x18\x4a\xa6\xea\xd0\xdb\x00\x90\xd7\x0e\x48\x10\x57\x1b\x4c\x5d\x56\x1d\x0c\x24\x4d\x80\x96\x9b\xbc\x5e\x8b\xd7\x17\xda\x79\x01\x16\x99\x27\x24\xea\x44\xf2\x38\xce\x4a\x25\x56\x58\x72\xc4\x2b\x8f\x3b\xeb\x1f\x6f\xde\xc1\x7e\x99\x31\x9d\x0d\xb3\x8c\x13\xa0\x4b\x1a\xba\x1b\x48\xa3\xab\x21\x9b\x75\x29\xfd\x0c\x0f\xf5\xae\x4b\xcd\xec\x5d\x27\x66\xef\xf0\x0c\x83\x16\x0e\xab\x2b\x65\x01\x76\x14\x05\xbb\x7d\xb8\xd0\x0e\xaf\xed\xe2\x5c\x83\xc5\xe7\x3c\x7a\x3c\x15\xa6\x34\x0f\x3c\xc7\x5b\xb8\x02\x7a\x09\x50\x6f\xee\x14\xce\xdb\x11\x2e\x31\x6f\xc5\x3a\x75\x3b\x6f\x6f\xe7\x2d\x5a\x7d\xde\x5e\x67\x76\x80\x87\xf0\x24\x4c\x2b\xcf\x0d\x27\x26\x8c\xa3\x41\x8a\xfc\xf1\xe6\x9d\x57\x02\xa8\x37\xc8\x2c\x09\x70\x5d\xb1\xe3\xc4\xec\xbd\xec\x9a\x01\x1e\xc6\x33\x36\x75\x88\x58\x08\xe3\x45\x5a\x5e\x78\x88\xce\x2a\x2b\x1e\x04\x2b\x71\x32\x6a\x5e\xdc\x2b\xdd\x80\x02\x15\x89\x6b\x4b\xae\x1b\xfe\x93\x38\x4e\x31\x9a\x85\x4b\xa2\x0b\x39\xe8\x83\x9b\xa0\xb6\x92\x86\x54\x46\x64\x5a\x98\x8f\xed\xe2\x73\xd0\x4e\xc9\x4e\x27\x5d\x0c\x52\xfc\xbf\x0b\x1c\x65\x4e\x13\x03\xd2\x55\x3b\x25\x39\x87\xde\x8b\x5e\xd3\xa0\x8a\x92\x31\x2a\xc5\xa6\x7e\xb2\xb2\xb9\xb0\x72\xc5\x48\x92\xb3\xcd\x19\x29\x89\xfc\xc1\x00\x4a\xef\xf1\xf0\x14\xfd\xb9\x47\xcb\x9d\x84\xb9\xa1\x4b\xe4\x6f\xee\x02\xfd\xec\x80\xc1\x6b\x01\x4d\x14\xd5\xf6\x6d\x30\x1a\x91\x01\x2c\x30\x80\xcc\x21\x4f\xd5\x41\x93\xfe\xd7\x6d\xfe\x78\xfb\xf3\xc1\x31\xfa\x3f\x5b\x9b\x3b\x68\xce\x2a\x4d\x99\x2d\xcf\x55\xe7\xdb\x4f\xc3\x74\x07\xf4\xe4\x79\x30\x6a\xf2\xa7\x1c\xdd\xf8\x6d\xc0\x8f\x9f\x17\x29\x8f\x88\x2f\x02\xa1\x30\x77\x65\x08\x97\x2c\xf0\xa8\xe4\x7f\x05\x35\xab\xa7\xcf\x04\x2d\x67\x21\xb7\x1d\x8f\x85\x80\x52\xce\x23\xa1\xa2\x54\x44\xb3\x24\x9d\x02\xf1\x2c\x6f\x78\xdb\x2c\x36\x5f\xa2\x5f\xc9\x2f\x79\xbc\xd6\x30\xe2\x66\x69\x07\xcc\xc1\xc8\x3c\x5c\x5b\x59\x80\x88\x62\x34\xd6\xc9\x9e\xd2\x5f\xbe\x98\x21\x8b\x28\x13\xbc\x03\xf7\x8a\xec\x5a\x23\xc6\xb0\x56\xa5\xf4\xc5\x23\x9a\x2b\x5a\x44\x58\xf9\x2f\x03\xc0\xd5\x2c\x3d\x17\xe2\xed\xda\xa1\x17\x68\xae\x36\xf8\x4a\xf8\x05\x22\xa0\x68\x58\xc8\xbb\x2e\xd6\x7b\x76\xc1\xc5\x7a\x0f\xd7\x5a\xb4\xb7\x85\x98\xe5\x22\x95\xe6\x87\x2f\x90\xe2\x47\x6f\x13\x85\xe8\xa1\xef\x5a\xbe\x5a\x3b\x8d\x6e\xaf\xbc\xc9\xd1\x5e\x0d\xec\xd0\x9e\xf4\x7d\xe7\x9b\x7f\xb5\xea\x86\x8e\x92\xcb\x0d\x61\x7f\x34\x72\x77\x02\x8c\xf5\x30\x8e\x86\x41\xc6\xeb\x2c\x6d\x81\xf9\x35\x9a\x0b\x81\x02\x53\x76\x12\x8c\x68\x20\x23\x36\x51\xbf\x8c\x94\x59\x44\xa6\x9c\xf9\x22\x12\x01\x9a\x2d\x71\xe4\x0e\x70\xa6\x48\x70\xc9\x81\x9f\x70\xa6\xa5\x1e\x56\x26\x31\xc4\x80\x45\xd3\x20\xcd\xe0\xb9\x78\x4e\x4b\xf5\xfa\xa4\xa6\x4f\xe7\x47\xa8\x5d\xa7\x57\xcc\x4e\xd9\x65\x30\xd7\x4d\x62\xaa\x38\xf8\x39\x46\x56\xb7\x67\xce\x41\x65\x31\xa5\xcb\x66\x45\x3b\xff\xd7\x38\x08\x72\x5d\x51\x70\x9f\x2c\xb8\x4e\x15\xf2\xce\x81\xd6\xe7\xf4\xff\x3a\x1e\xe1\x2b\x6a\x1e\x7c\x2f\x76\x6b\xf4\x50\x04\x76\x12\x0a\x39\x07\xcf\x0e\x7c\xb5\xb0\xb1\xba\x12\xfc\x45\xea\x32\x95\x0d\xbb\x46\x60\x79\x0f\x83\xc3\x3d\x02\xd6\x01\x8a\xe3\xa4\xc1\xe0\x04\x53\xc0\xac\x61\xec\xea\x68\xdb\x56\x13\x57\xda\x6d\x84\x0a\x8e\x81\x74\xa0\xf5\x8f\x07\x8a\xf7\x61\xbe\x0f\x60\x4e\x80\x33\xdd\x3f\xd4\x71\x8f\x13\xf4\x66\xd2\x03\x9a\x59\x14\xe9\x86\x5d\xf2\x7d\x06\xbe\x9f\x1e\xfc\xe5\xc0\xda\x9b\x01\xcb\x97\x94\x6b\xda\xba\x73\x89\x77\xc7\x40\x6a\x85\x25\x11\x2c\x1a\xb0\x2b\x37\xce\x66\xdc\xda\xfe\xe6\x83\xfc\xe6\x75\xef\x95\x3a\x7a\xb0\x59\x19\x03\x61\x6a\xf1\xec\x65\x7e\xc6\x78\x8e\x82\x0c\x4d\x31\x91\x82\x71\xc4\x67\x00\x4b\xee\x41\x3d\x41\x61\xbd\x06\x81\x6b\xcb\x2d\x24\xf6\x37\xb3\x30\xa2\x4e\xa2\x6c\x13\x6f\x85\x4b\xd4\x1f\x59\x21\x3a\x7c\x0a\xfe\x94\x91\x66\xe0\x7f\x4c\xb7\xbc\xe1\x39\xfa\xe1\x07\xa7\x3d\xde\x0c\xd4\xf1\x76\x25\x5b\x86\xc4\x44\x37\xa6\x78\xf7\xe7\x66\xb3\x65\x8f\xa4\xfd\x2a\xa9\x54\x49\x84\xa3\x34\x7b\xe5\x60\x68\xde\xdc\x7a\x19\x79\x73\x93\x6c\x64\x68\x16\x2f\x9f\xca\x05\xfa\x3a\x73\xfd\x02\x0d\x1c\x7e\x17\xda\x20\xf8\x51\x3c\xf5\x11\xf4\xed\x92\x57\x3a\x8c\xbf\xb9\x69\x75\xb3\x78\x3b\xdb\x03\xcd\xaf\x60\x04\xa8\x7e\xe4\x6a\xaf\xc8\xf3\xef\x9a\x9e\x0a\xe0\x7a\xc7\x74\x0f\xb7\x1b\x0a\x1a\xc6\xd3\x29\xa6\xfc\x1f\x8f\xb9\x6a\x00\xaa\x26\x86\x94\x78\x79\xaa\x87\xa2\x8a\x2a\x97\xbc\xc9\x32\x9a\x04\x17\xca\x2b\xe7\xbd\x44\xf7\xd5\x0f\x7a\x01\x5d\x28\x29\x65\x4a\xcb\x83\x47\x48\xf1\xc0\xa4\x20\x2d\x4f\xe6\xa7\xe5\x8e\xeb\xab\x28\x0d\xa6\x14\x7b\xf8\x01\x95\x81\x49\x32\xa0\xe1\x47\x71\x12\x9e\x53\x5d\x85\x4b\x0c\x67\x85\xfc\x28\x55\xea\xf9\x8a\xe7\xa0\x1d\x6b\xb5\x9c\x5e\xb3\x0a\x65\xf9\xfa\xcd\x70\x82\x67\xab\xd5\xeb\x56\x38\x99\xc9\x1c\x3c\xa6\xc7\x4a\x7d\xce\x2a\x68\x6a\xc5\x2b\x99\x7a\x91\xee\x62\xa8\x8a\xc5\xdf\x9a\x6a\xd8\x30\x8e\xce\x71\x92\x69\x3a\x2c\x4d\x72\xc7\x9d\x29\xc1\xe3\x93\x7a\xff\xf9\xaf\xad\xbe\xa5\x45\xf4\xcb\xab\xe2\x65\x49\x7f\x98\xe2\x2b\x56\x3a\x6a\xc5\xdb\x3a\x71\xbb\x49\xc5\xc7\xf0\x13\x0d\x22\x91\xbb\x6a\x1e\xa7\x69\x38\x98\x62\xff\x8c\x75\x34\x55\xed\x72\x93\xec\x28\xdb\x1f\x94\x7e\xe3\x3b\xf0\xbf\xad\x5a\x90\x30\x9f\x93\x19\xdc\x57\x7e\xcb\x0b\x4f\xce\x42\x9f\xf0\x65\x5f\xbf\x17\xe5\x04\x33\x6e\x4a\xb9\x81\xc8\x34\xee\xc3\xbf\x05\x80\x62\x56\xf6\xed\xeb\x5c\xee\x12\x4c\x85\x37\x3d\x13\xdc\xc0\x42\xaf\xd7\xb7\xce\x3f\x1f\x1c\xef\xb8\x0b\x28\x22\xbc\xe7\x86\x10\x13\x47\xa9\x94\xbe\x6b\xbe\x99\xe3\xe8\xf8\xf8\x95\x55\xac\xfc\x65\x32\x75\xf8\xdd\x8a\xd7\x2c\x5c\x1e\x45\x3a\x5c\x69\xd7\x23\x3a\x8b\xd3\x6a\xd3\x18\x79\xe7\x8d\x2d\x4a\x8c\xbb\x81\x1e\x69\x42\x36\x75\xfe\xca\xb9\x83\x2d\xbf\x95\x01\xab\x02\xfc\x0e\xc7\xa1\x39\xc7\x73\xea\x81\xec\x5f\x29\x4d\xfd\x05\x49\xe3\xb0\xbc\x45\x29\x31\x8e\x62\xfa\xc6\x10\x80\x2c\xf3\x3e\xce\x93\x1e\x65\xa7\x34\x45\x5e\x1c\xd3\xb1\xb9\xfd\x10\x6d\x6c\xb8\xef\x56\x38\xe1\x9b\x59\x4c\xf3\x0d\xf9\xae\x72\x14\x94\xf2\xb0\xaa\x97\x31\x79\x41\x95\x39\x45\xdf\xf8\xbc\xaa\x24\x04\xfa\xfc\x99\xb2\xab\x2c\xd3\xe4\x83\x78\xc9\xb7\xbd\x96\x8d\xc6\xa9\x27\x51\x2e\x2b\x3a\xd7\xa0\xed\xc0\xd1\x86\xf8\xe9\x3e\xdd\x60\x94\xbb\x98\xd3\x55\x35\x03\x17\x19\x89\x61\xf5\xd2\x3b\x31\xff\xb8\x43\xcc\xba\xc0\x3f\xe5\x22\xde\xcc\xa3\x61\x3c\x9b\x07\x19\x2c\x2f\x65\xa7\xa1\xba\x2c\x18\x8b\x98\xa2\xfe\x94\x5d\x13\x5d\xd3\x6f\x15\xe4\xd6\xe5\x38\x18\xd3\xb6\x8f\x39\x7b\x7b\x18\x59\xe1\x2e\x9f\x6c\xd4\xf8\x5b\x80\x97\x96\xbe\x05\x66\x19\x35\xd2\x92\x36\x05\xe5\x17\x57\xa0\x46\xa2\xee\x1a\x05\xc8\x3b\xd7\x36\x16\xe8\xb5\x37\xb1\x04\xdc\x6b\x6a\xb9\x50\xa2\xd5\x58\xd6\xfb\x93\xd6\x72\xab\xbb\xdd\xde\x1e\xee\x40\x62\x83\xed\xad\xed\xde\xd6\x78\x6b\x7c\x5a\xe7\xa6\x78\xa8\x9a\x3f\x48\x3a\x3c\xfb\xc8\x12\x28\x78\xfb\xc2\xb3\xf9\x12\x65\xa5\x20\xa3\x61\x6d\xaa\xaf\x79\x79\x73\x4c\xbd\xaf\x54\x55\x79\xe4\xf3\x44\xf2\xe9\xca\x53\x46\x8f\xd9\xc0\x27\xf4\x0a\x73\x78\xbd\x01\x1c\x6c\x65\xd4\x98\x7a\xf3\x20\x49\x71\x4d\x9b\xa8\x39\x07\x93\x49\xaa\x19\x7e\x64\x31\xe7\xad\x04\x02\x8e\x68\x0c\xaf\x82\x49\x47\x19\xc3\x42\x26\xcf\xbc\x9a\x57\x23\x3f\x8c\x53\x36\xc3\x2c\x29\x84\x55\xdd\x7b\x9c\x66\xd4\xb7\x21\x98\x3a\x26\xa8\x51\xe7\x49\xeb\x14\xed\xed\x21\x39\xf7\xd0\x0f\x3f\x98\xed\x9e\xb4\x19\x0c\x9f\x93\x3e\x13\xd4\x8b\x25\x3d\xc0\xb0\x5b\x46\xba\x84\xb1\x26\xbf\xd1\x22\x73\xe5\xe9\x34\x50\xaf\x9e\xe3\x5d\x17\x9f\xb3\x2d\x3a\x1c\x05\xc9\x3a\x6c\x78\xab\xfe\x39\x34\xd0\x32\x4f\xad\x2d\x70\xed\x54\xa7\xbd\x5d\x4e\x50\x38\xb7\x46\x9e\x6d\x50\x43\xd9\x9d\xe8\xaa\x79\xee\x59\x11\x9f\x84\x17\x49\x30\x9f\x83\x1e\x19\x64\xac\x79\xd5\x64\x82\x02\xb2\xd2\xa7\xca\xad\xb4\xdc\xd9\xab\x5d\xf5\xb1\xae\xb2\xc9\x0b\x3f\xae\x4f\x65\x2f\x90\xac\x7c\xd8\x23\x94\x1e\xae\xe3\xe7\x69\xf5\xdc\x46\xa0\x52\xcb\x88\xa5\x17\x42\xa3\x11\xe5\x1a\xb1\xc1\x90\x07\x3b\x8e\x8d\x53\x5e\x88\x28\xf3\xf6\x22\x20\xd4\xb7\x54\x35\x65\x60\x73\x83\x4a\xb1\x63\x07\x32\x6e\xec\x36\xdd\x75\x6e\xa8\x4a\xe3\x93\x63\xab\x93\x73\xfb\x9c\x35\x4d\x7d\x50\xd8\x6f\x79\xef\xfc\x3b\x89\xe1\xe2\x5e\xc2\xf6\xbf\xee\x02\x46\xa6\xa5\xdb\xa2\x62\x4f\x2b\x71\xbf\xd2\xb6\x46\x68\x57\x2d\x3d\xbb\xb0\x9b\x6b\x50\x06\xa9\x31\xcd\x09\x5f\xb4\xf1\x86\x98\x6d\x1e\x6d\x20\xc7\xd8\xe1\xb8\x1c\xeb\xbf\xc5\xba\x5a\x08\x9d\x4a\xd1\x73\x5e\xb8\xfc\xd7\x95\xe8\x06\xb1\xbc\x7c\xe2\x0a\x80\xe6\xbc\xb3\x6a\xa9\x25\xf2\x66\x86\x08\x90\xc0\x88\x5d\x45\x33\x39\x00\xfa\x64\x9d\x70\x04\x6c\xd5\xc2\xfc\x8d\x88\xc4\x15\x17\x73\x7d\xeb\x51\xf9\xe5\x34\x6f\xd1\xd6\xd6\x57\x1b\x90\x9b\x16\x1d\x9f\x08\x5b\x09\xda\x9a\xe1\xb9\x03\x44\xb1\x11\x32\x7e\xb1\x61\xa8\x55\x50\x56\x04\x07\xa2\x36\x98\xb0\x07\x4a\x48\xf6\xca\x01\xac\xd8\x02\x4d\x0f\x6b\x07\xb4\x62\x17\x24\xac\x37\x76\x6c\xd7\xae\x4a\x6f\x5b\xd8\x39\x74\x2a\x06\x4e\x18\xbe\xd4\x63\x19\x74\x63\xcb\x93\xca\x00\x62\x85\x32\x0e\x9a\x94\x47\xc8\xed\xfd\x3d\xae\x53\x46\x80\x16\x11\xe9\xf8\x0b\xac\x4d\x32\xaa\x72\xb1\x98\xe6\xb7\xe7\x1d\x62\x9a\xb3\x1d\x0b\xa3\xa0\xdc\xa8\x5f\x59\x64\xaf\x1b\x45\x73\x5d\x5a\xe3\x92\xe2\x8d\x5d\xe0\x89\x30\xf0\x05\x56\x15\x66\x71\x50\x4c\x0b\xea\x64\x32\x2a\x56\x57\x0a\x76\xfa\x0d\xfb\x57\x15\x79\x29\x4d\x5c\xcd\x31\x49\x61\x2f\x18\xea\xe0\x69\x8b\x98\x16\x75\x91\x76\x8b\x5c\x9b\x14\x21\xa3\x19\x7c\x9c\xcb\x84\x68\xa2\xb2\x35\xc6\x29\xd6\xcc\xbe\xd2\xcf\x5f\xc0\xc6\x14\xa4\xe9\x62\x86\x47\xfa\x79\x62\x30\x4d\x70\x30\xba\x54\xd6\x3b\x6d\x43\xb6\x88\x68\xda\xca\x12\x11\xcd\xaa\x89\x3d\xb7\xfc\xaa\xb4\x69\x22\x82\x0b\x5c\xd4\x93\x14\x57\x96\xf5\x7e\x7b\xd1\x22\xaa\x5a\xd7\x57\xd4\xb8\x2d\x96\xa7\x26\xa4\x37\x9c\x0b\x90\x60\x7e\xb7\x0c\xf8\x60\xd9\x94\xd4\xd9\xc3\x0a\xbb\x52\x79\xb3\xd8\x35\xea\x24\x2c\x08\x61\xc3\x7d\x42\xa8\x78\xb2\xa7\xaa\x79\xb0\x81\x72\xad\xa3\xac\xb6\x1c\xa3\xa8\x65\x99\x70\x9e\x90\xfc\xec\x76\x91\x28\x3a\x32\xf9\x34\x1a\xc3\x79\x09\xfd\x6f\xfe\x61\x49\x91\x17\x86\x7d\x60\xf2\x33\xad\x9d\xb4\x52\xee\x9c\xe4\x39\xa9\x1e\xce\xf4\x49\x63\x64\x2e\x1f\xfd\xc6\x0d\x06\x73\x16\x2f\xa8\xbc\x39\x96\x97\x60\x9e\x17\xec\x01\xf4\x14\xd2\x0c\x54\x9c\x7f\x2b\x44\x06\x2a\xc7\xd4\xb7\x22\x8c\x98\x27\x2f\xf3\x03\x60\x2e\x33\x67\x38\x02\x67\xde\xfc\xda\x44\x94\x72\x4f\x65\x34\x74\x76\x7e\x5d\xb6\xcd\x00\x4c\x58\x8a\x92\xb4\x8f\xb6\x7b\xe0\x72\x0c\x1f\xb8\xff\xec\xd1\x18\xc5\xb3\x90\xe8\x08\x0d\x14\xd0\x4f\x17\xe1\x74\x8a\x06\x58\x34\x38\x42\x49\x10\x8d\xe2\xd9\xf4\x72\x4d\x9b\x7b\xea\x35\xc1\xba\xa9\x81\x8e\x7e\x6b\xc0\x90\x92\xc6\xbf\x80\x14\xa2\x83\x3c\xb2\x45\x90\xc2\x8d\x4d\xbc\xc4\xc3\x45\x86\x6b\x1b\x3c\x1a\xd5\x46\x83\x25\xee\x68\x30\xf7\x2d\x8f\x5a\xb4\xa6\xda\x1b\x68\x83\x74\x07\xf9\xff\x0d\xff\x9e\x99\x56\xa3\x4a\x37\xce\xcd\x0d\xce\xa2\x0d\xc6\x5d\xd4\xb0\xe9\x76\xea\xa7\xc3\xcc\x46\xd9\x63\xa8\xbe\xe7\x3d\x4a\xb2\x8c\xc8\xb4\x9e\xda\x76\x6f\xd3\x4a\x6b\xee\xb8\x56\x47\xa7\xb6\x32\xaf\x6d\x6d\x85\xc6\x9b\xa5\x89\x07\xa4\x01\x57\xc4\xb8\x93\x69\x90\xd9\x44\xba\xaa\x37\x59\x22\x6f\xa5\x3f\x00\x7f\x67\xc0\x5a\xc2\x9b\x59\x3e\x06\xe0\x37\x6d\x99\xc9\x45\x32\x68\x66\x20\xe7\xc9\x64\x79\x9f\xa3\x07\xb6\x3d\x5b\x4b\x0d\x2d\x53\x38\xbb\x2f\x4b\xbd\x63\xaa\x54\xc5\xcd\xb8\xdc\x52\x0b\x2d\x7a\x35\xab\xb6\xcb\x32\xa0\x99\xb8\x47\x4c\x2e\x73\x91\x67\x88\xe4\x86\xa8\xcb\xa3\x7e\xad\x6e\x0f\x77\x44\x89\x13\x06\x71\xf7\x37\x97\x85\xeb\x06\xed\xe3\x3f\x3f\x3f\xbc\x42\x64\xf9\xe4\x1e\x94\xae\x55\x58\x6a\x79\x5c\xd8\xe6\x2f\x71\x95\xac\xe2\x0e\x82\xfd\x97\x1f\x3e\x8d\xc6\x7d\x65\x79\x56\x38\xa4\xa2\x79\x9c\x5d\xa9\xaa\xb2\x2e\x7f\x1b\xf6\xf2\x5c\xed\xe0\x1b\x30\x47\x7c\x27\x66\x73\xc7\xe4\x2b\x65\x49\xde\xe0\x5d\xed\x0b\x2b\x7b\xf3\x0d\x37\xd0\xdf\x37\x6c\xc1\x96\xcb\xd1\x17\x32\x38\x18\xab\x6b\x9c\xf9\x8c\xbb\x2e\xdd\x85\x54\x4f\xd4\x16\xae\xae\x28\xd8\xd3\xee\x15\x3a\x06\x7b\xa6\xcb\x9e\xef\x76\x27\x55\x63\x29\x6d\x16\x49\x4d\x58\x62\x35\x0c\x9a\xce\x90\x04\x5e\xc3\xbc\x66\x2f\xf1\x1f\x67\xa8\x01\x20\xac\xf1\xd1\xdb\x57\xec\xf8\x16\x1a\xaf\xc3\x25\x4d\x06\x02\x05\x9c\x5d\xaa\xec\xad\xa9\x63\xa6\x56\xbb\xcf\x6e\xe2\xdc\xf1\x5d\xc3\x1e\xfc\x15\xe4\xf1\x9a\x0d\xc4\xdf\xba\x60\xfe\x16\xed\xc4\x2e\x61\x58\xd5\x50\x7c\x2d\xc1\xb8\x76\x14\x6d\x43\xf1\xba\x04\x77\x49\x3b\xf1\x17\x97\xdd\x5f\xdc\x58\xfc\xe5\x97\x8a\x86\xe6\xdb\xe3\xd9\xa1\xad\x6f\xed\x28\x65\x0f\xf7\x9f\x5f\xb8\x96\x0e\xb5\x7f\x4b\xae\x1e\x79\x06\x72\x69\xca\x13\x99\x2e\xd5\x94\x96\x2c\x7f\xe5\xd5\x69\x63\xab\xfb\xad\x26\xa5\x5c\x7b\x0e\xca\xaa\xb9\x27\xb5\x9c\x93\x16\x62\x76\xfa\x49\x23\xed\x24\x2f\xe8\x49\x3c\x09\xf6\x51\x59\xb9\xf8\xa9\x27\x9f\x7c\x1d\x64\x93\x06\x72\xa4\xa0\x94\xdb\xeb\x57\xf1\x30\x98\xa2\x79\x3c\xbd\x1c\x87\x53\x14\x8f\x11\x5d\xb4\xd8\x2e\xde\xb1\xe5\x65\xb1\xed\xf7\x74\x40\xa3\x61\x4d\x30\x89\xd7\x87\xe4\xfd\xd5\x13\x3b\x76\x90\xe2\x6b\x39\xf8\x68\x09\x35\xf0\x11\x5c\x0c\xc8\x08\x9a\x4c\x7c\xd8\x9c\x27\x71\x16\x93\x4f\x68\x8f\xec\x3e\x4c\x00\x56\x0e\xed\xa1\x08\x5f\x10\x04\xf2\x6b\x88\x16\xd3\xa9\x67\xa2\x08\x0c\xe4\x34\x51\xe2\x1d\xb9\x22\x79\xf2\x31\xc9\x37\x72\x7b\x0d\xdb\xaf\xc2\x41\x12\x24\x97\x45\x36\x72\x25\x3f\xa8\xb7\x2a\xc8\x16\xca\xac\x9e\x44\xb9\xe0\x24\x07\x53\x14\x46\x13\x9c\x84\x5a\x00\x57\x2d\xa2\x83\x99\x67\xd4\x8e\x30\x6a\x0f\x67\x89\xb0\x7f\x3c\xc6\x30\x5c\x8f\x13\xf7\x0c\x26\x41\xc6\x11\x62\xa1\x3c\xa8\x1a\x64\xed\x2a\x11\xca\x8b\x03\xc8\xf5\xae\xf8\x1c\x27\x49\x38\xc2\x29\x7a\x4b\x0d\x22\x21\x4e\xa9\x00\x9f\x5f\xa2\x30\x62\xd9\x8c\x25\x02\x25\x5a\x30\x73\x35\xbc\xaf\x5a\x81\xa5\x73\x79\xe0\xaa\x44\x0d\x24\x03\xf5\xfa\xf2\x3d\x65\x61\x4d\xbb\xc9\x71\x49\x54\xef\x8b\x85\x78\x3a\xea\xa3\x0d\xc8\x94\xb5\x61\x3a\x8e\xb8\xdb\x24\x7f\x33\x9c\x4d\xe2\x51\xee\x1d\x79\x05\xda\x8c\x91\xef\xba\x78\x86\x90\x1d\xce\x90\xa2\xaf\x39\x64\xf3\x71\xf5\x06\x31\x9c\x07\x17\x91\xfd\x45\x11\x24\x44\x59\x90\x69\xf5\x7c\xee\xc4\xfb\x8b\xb3\x19\x8e\x1c\xae\xc3\x64\x45\xc9\xc7\x02\x49\xe1\xc3\xf6\x5d\x12\xde\x99\xfe\xc1\x89\x00\x73\x93\xe2\x57\xbf\x42\x71\xb1\x34\x71\xe3\x74\x8f\x37\x39\x09\xd2\x37\x17\x11\x63\xfb\xcb\xda\x06\x29\xb9\x51\x17\x77\x9e\xc8\x23\x2c\x82\x1c\x9e\xbc\x28\xa4\x83\x96\xca\x1d\x6e\x47\xa9\xff\x27\x5d\xcc\x89\xaa\x15\x85\x59\x33\x20\xca\x29\x5b\xfa\x82\xe4\x6c\x41\x7a\xd7\xd9\x1f\xc8\x91\x41\x21\xa7\x9f\xe4\x8d\xdb\x64\x23\x45\x52\xa2\x87\xd4\x28\xcc\x07\x9d\xce\x52\xbb\x06\x95\x40\x6d\x3d\xf0\x2c\x3b\x88\x1b\xc6\xc7\x38\xc1\xd1\x90\x34\x00\xfd\x3c\x37\xe7\xab\xd5\x0d\x4c\x2f\x76\x55\xe8\x5d\x67\x90\x2b\x35\x86\x4b\xa8\xbe\x80\x99\x92\xaa\x42\x93\x9a\xbc\x17\x11\xed\x07\x18\x40\x3a\x6b\xed\x10\xa8\xfb\x7c\x3c\x64\x06\x9b\x5a\x5d\x1c\xc3\x11\x55\x1a\x42\xca\x41\x25\xb5\xfa\xf7\x2c\x2b\x79\xc4\x72\xb4\xc7\xc4\x26\x3f\xb3\x28\x94\x45\x14\x2e\x5f\xe2\xd9\x8d\xc0\x94\x93\x71\xb2\xed\x99\xcb\x23\xa8\x2b\x73\x84\xbf\xd3\xe7\x89\x97\x6b\x38\xf8\x2a\x6c\x93\x77\x5d\xdd\x33\x56\xe8\x0d\x13\x66\x2c\x49\x00\xb0\x14\xb8\xd0\x8f\x46\x28\x8d\x67\x98\xa6\x9e\x42\x17\x13\x1c\xa1\xcb\x78\x91\x08\x37\xfb\x80\xa8\xb3\xb4\xf2\x35\xc7\xce\xbd\xee\x2a\x68\x5e\x74\xce\x5b\xcb\x10\x15\x00\xcd\xa6\xdd\x33\xa2\xeb\x57\x5c\xee\x0a\xd1\x28\x35\xa6\x07\xf1\x9c\x28\x3b\x73\xa9\xf7\x30\x7d\xe7\x1a\xea\x94\x52\x19\x58\x98\x34\x9d\x6a\x06\x96\xc8\x35\x0f\x29\x9b\x9d\x74\xfd\x2c\xab\xbf\xac\xd8\xef\xd0\x88\x76\x88\x2d\xe8\x73\xce\x71\x11\xf1\x90\x1f\xb6\xfd\x12\xcc\xc0\x69\xa2\xa0\x1c\x62\x4b\xb5\x04\x33\x17\x6b\xb5\xc2\x7a\xee\x12\x4b\x86\xf3\x44\x05\x3f\x45\x7b\x4a\xfb\xfa\xa7\x0a\xa9\x8b\x3c\x8b\xec\x0b\x74\x11\x47\x1b\x19\xd5\x9f\xf9\x75\x47\x25\x78\xe1\x34\x8e\xe7\x28\x18\xc4\xe7\x8e\x65\x30\x9f\xe4\x0d\x5e\xdb\x86\x9f\x60\x90\xa2\xa2\x55\x95\x4e\xf1\xb6\x44\x5e\xad\x52\x93\x47\x6c\x4e\x80\x52\xf0\x7f\xa9\x32\x6f\x5c\x0b\xdf\x70\x1a\x47\xf8\x06\x24\x1e\xd4\x8b\xf6\xe4\x1a\x02\x2f\x4a\xac\x64\x04\xac\x70\x21\x53\x73\x91\xe8\xca\x11\x97\xa7\x4e\x7f\x32\xf7\x1e\xd9\x79\xba\x1f\xa1\x00\x6e\xde\x1a\xb1\x08\x73\x23\x0b\x59\x71\xde\xf3\xab\x70\x85\xa7\x11\xce\x0f\x7a\x38\xc4\x34\x3c\x8b\xc2\x71\x38\x0c\xa2\x8c\x05\x94\x0c\x29\xf5\x50\x25\x6d\xc7\xb5\x4d\xfe\x5d\xb9\x41\x4c\xf7\xca\xea\x9b\x35\x84\x8d\xb1\x9b\x37\xd9\xc2\x13\x06\x5f\x75\xbd\x2a\xe8\x6b\xe4\x74\x0b\x13\x3d\x65\x9c\x60\x14\x76\x1a\x5e\x5b\xaa\x17\xf5\x7e\xb6\xb6\xb0\x5b\xbe\x30\x1e\xeb\x7f\xf9\x0a\x4e\x5a\xcb\x56\xab\xd5\x6e\x75\x5a\xdd\x06\x6a\x2d\x5b\xbd\xd6\x56\x6b\xbb\xb5\x73\x7a\x63\x15\x37\xd0\x76\xe9\xd0\x2b\x2c\x7c\x1d\x1f\x11\x6b\xc6\x5e\xb0\x0b\xc1\x30\x5d\xf9\x03\xfd\xef\xe7\xcf\x10\xb3\xd7\x50\x35\xc6\xa8\x26\x86\xf7\xde\x9e\xc3\x50\xa8\xfe\x41\xad\x8a\xd3\x10\xff\x59\xda\x99\xd4\xac\x80\xb2\xc7\x14\x47\x67\xd9\x84\xba\x1e\x79\xa5\x48\xf9\x98\x31\x72\xa2\x54\x8b\x14\xf3\x22\x1a\xc6\x23\xc2\xef\x98\xfe\x30\xd9\x1d\x5e\xe7\xc7\xfe\x14\x0c\x80\xa3\x61\xf3\x25\x5e\xfa\xdb\x2c\x0a\x20\x53\x6a\xb6\x57\x0e\xee\x22\x99\xb5\x44\x64\x17\x47\x5c\x83\xa2\xb0\x2e\x8e\x22\x5a\x97\xfc\x9a\x8d\x77\x2b\x45\x73\x61\x43\xe1\x8d\xe5\xc2\x87\xea\xf3\x67\xf4\x12\x2f\x73\xc3\xb7\x14\x30\xd0\x30\xc8\x70\xc4\xd6\x7c\x9d\x83\x3c\xc2\xdf\xcf\x48\xca\x39\xac\xec\xf0\xf7\x4c\x1a\x2a\x9c\x09\x69\x7e\xab\x9e\xeb\x96\xc5\xa5\x0c\x6f\x08\xec\xda\x3c\x7e\x86\x78\xd3\xf1\xa7\x34\x03\x48\x53\x28\xd1\xc0\xce\xd5\xc2\x91\x90\x8e\xfd\xdd\x12\x58\x8e\xbb\x8a\xd9\x24\x10\xa1\x0e\x24\x8b\xf9\xa1\xc3\xf4\x58\xca\x18\x4d\xe6\x78\x2a\x3f\xd6\x45\x12\xad\x5f\x96\xb1\x88\x3a\x98\x06\xb3\x39\xc2\x4b\x88\x24\x39\x08\x4d\xe2\xe8\xb9\x2a\x81\xb1\x4f\x1b\xe8\x79\xea\xd0\x15\x24\x45\x43\xfc\xbf\x3c\x81\xd2\xa1\x3c\x51\x49\x23\x0c\x4b\x2d\x0a\x32\x14\xa0\x2c\x9c\x39\x34\x6e\x57\x48\x76\x95\x5c\x7f\x52\x08\xb5\x73\x08\x28\xda\x23\xe8\xb1\x51\x38\x09\x79\x54\x6c\xf2\x9f\x5a\xa7\x87\x1e\xa1\x5a\x48\x31\x7e\x80\x76\xeb\x75\x11\x2d\xdb\xab\xc5\xd3\x7a\x74\x8a\x1f\xa2\x50\x84\xdb\xfe\xbc\x27\x9b\x7e\xfa\x94\xb7\xe1\x80\x17\x8d\x96\x50\xfc\xbd\xcb\x92\xda\xa7\x74\x72\x5d\xab\x4f\xfd\x51\xee\xcb\x92\xbf\x87\xec\xce\x2e\x93\x31\xd8\xe6\x42\xb1\xd8\x3e\xdc\xd3\xd1\x74\xe5\x58\x09\xc2\x28\x18\x98\x3b\x0f\x65\x03\x50\x56\x9c\xd2\x18\x1c\x44\x09\xd4\x14\xc3\x30\xbb\xae\x2a\x28\x27\xa7\x98\x5d\x1e\x21\x45\x3e\x97\x0d\xdd\xeb\x10\x4d\xb6\x1e\xe5\x8a\x8b\xe4\x15\x32\x6e\x81\xe1\x50\xd5\x4e\x44\x1d\x3c\xce\xfc\x1e\x4c\x1d\xfa\x07\xac\xdf\xed\x10\xd6\x4f\x35\xb9\xe0\x60\x78\x4d\x95\xda\x43\xaf\x83\x6c\xd2\x1c\xe2\x70\x2a\x4b\x6e\xa2\x0a\x11\x89\xdc\xfb\xdf\x52\x2b\x8f\xc7\x1d\xc9\xda\xfe\xae\xea\xf7\xc9\xb6\xbb\x2a\x2f\x58\xfb\x5d\x9d\x17\x8a\xf6\xb9\x6a\xb5\xb0\x53\xa3\xb8\xaa\xd1\xcf\xed\x9d\x73\xd3\xe6\x11\xe6\x7e\xdf\xf2\xba\xd4\x91\x72\xd5\x87\x40\x51\x1b\xc6\xe1\x74\xca\xc3\xce\xb2\x6b\x12\xb0\xdf\x2a\x56\x4a\xf8\x66\x2e\x72\x6d\x7a\xd5\xaa\xbc\x57\x7c\x4a\x8d\x32\xab\xa9\x14\xa3\xac\xcb\xf9\xac\xc4\x16\x8c\x5d\x05\x69\xfb\x77\x5a\x14\x42\x65\x93\xc8\xbd\xc5\x52\xc5\x83\xbd\xa1\x22\x5f\x13\xfd\x84\x7c\xf6\xe1\xc2\x1f\x65\xfe\xc3\x05\xda\x23\xff\x7a\x12\xa8\xcd\x3e\xfc\x45\x96\x99\x65\x37\x18\xe1\xed\xdd\x81\x19\x7e\x5d\x80\x05\xe9\x27\xa4\x4a\x8e\x9c\x73\x82\x12\x67\x77\xb4\xd5\x5a\x6b\xf9\xb8\xb5\xfd\x18\x3d\x20\x24\xfc\x05\x6b\xfa\xe1\xe1\xe1\x61\x1d\x3d\xa4\x2f\x7e\xfc\x11\xb5\x96\xed\x16\x2c\xf7\x04\x01\xcf\x72\x4f\x49\xac\xb5\x96\xbd\xed\xad\x16\xad\xec\xc2\xac\xec\xa2\x6c\x65\xd0\xbd\x38\x5d\xc0\x4d\x9f\x1a\xa0\xf1\xf4\x29\x2d\x89\x1e\x22\xe8\xe9\xdc\xf2\xac\xec\xe6\x1e\x94\x61\x7f\xf9\xb0\x0f\xf7\x50\xab\xb9\xe5\x85\x81\x3e\x65\xa0\x0f\xa8\xbf\x0d\xe7\xb6\x3a\xfa\x11\x35\xb7\xd0\xbf\x50\x1b\xf5\xd1\xa3\x76\x19\x15\xc5\x92\x1c\xba\xba\xd1\x40\xc9\x30\x18\x4e\x30\xcb\xae\x53\xac\x70\x90\x92\x1f\x08\x3f\x26\xb5\x1a\x2d\x4a\xb6\x4a\x1a\x92\x64\x35\x51\x3a\xc3\x7d\xc4\x44\x8b\xee\xa1\x0f\x49\x8d\xc2\x03\x43\xee\x0c\x76\x1c\x34\x5d\xc8\x1c\x3e\x35\x01\x2f\xeb\x47\x9f\x51\xab\x64\x58\xf3\x08\x5f\x28\x97\x9d\xe0\xd4\x91\x19\x40\x22\x9e\xbe\xe7\x8e\xd1\x93\xee\xcb\xa7\x6c\x6b\x5f\xe4\x48\x83\xa3\x21\x38\xd2\xd0\xff\xba\x1d\x69\x5e\xe2\xa5\x6d\x09\x70\x55\x47\x00\xf7\x68\xa5\x4d\xfa\xbb\x5c\xfc\x4d\xd3\x7c\x31\xc1\xcb\xd2\x26\x8c\x12\x3b\xcf\x8a\x51\x35\x4b\xb5\xbe\x2e\x41\x3e\xc1\x4b\x3b\x84\x26\xeb\x3f\x65\x6b\x5f\x9c\x48\xc8\x19\x38\x73\xd5\x6d\xea\x45\xe9\x9d\x67\x5a\x75\x1b\x49\x47\xdd\xae\x68\x82\x97\x07\x93\x20\x29\x9d\x67\x2b\x2d\xdc\xd0\x41\x8e\xb4\x90\x6e\xe4\x2e\xae\xb9\x89\xe3\xd8\xb1\x39\x0e\xd5\x92\x4a\x7a\x75\x69\xf6\x69\x6f\xd7\x5d\xf2\xce\x55\x94\xb4\xd3\x1a\xe7\x97\xf5\x08\x08\x51\xdd\xc7\x38\x8c\x6a\x1b\x1b\x2b\x44\xdc\x54\x38\x9c\xce\xb7\x2a\x96\x1e\x3e\x53\x28\xe3\x96\x9f\x30\x1e\xe5\xe9\xeb\x6b\x4d\x7c\xb2\x51\x9f\x6d\x31\x1f\xcb\x47\xca\xa4\x45\xaa\x25\x4a\xa1\x65\x5e\xf1\xad\x0b\x7d\x64\x5b\x99\x2a\xb3\xe6\xa2\x4a\x6a\x3a\xb5\x51\xb6\x84\x76\x72\xf2\x63\xd2\xd9\xd2\x05\xcb\x04\x10\x7d\x14\x65\x8c\xd8\x66\xba\x18\xa4\x59\x52\x0b\x1b\xa8\x53\x6f\x40\x12\x3e\x69\xb2\x20\x33\x6a\xb7\xee\xba\x80\x5b\x79\xcd\xd3\xba\x69\x13\x75\xca\x5e\x9f\x7d\x15\x64\x61\xd4\x2e\xb7\x68\x31\x58\xbe\x6e\x89\xc7\xd5\x96\x2e\x56\xfc\xeb\xad\x5e\x65\x11\x58\xd7\x9c\x9a\x42\x7b\xee\x35\x8c\xe2\xf2\x1f\xb5\x8c\xd1\xee\xf8\x86\x57\x32\x05\x41\xba\x22\xd1\xa1\x6b\x8e\x93\x78\x46\xde\x1e\xc4\x23\x0c\x8b\x54\xd9\x05\x49\xad\xf0\x1a\x6b\x92\xc6\xb7\xab\x2f\x4b\x82\x1d\x2b\x4d\x86\x6f\x7a\x71\x62\xb3\x88\xae\x4f\xea\x74\x2b\xbf\x44\x89\x52\xd5\x56\x29\x51\x4c\x2c\x54\xe2\xcd\x4d\xaf\x55\x46\xd3\x45\xb9\x9c\x43\xc5\x8a\x2e\xa9\x6d\x0e\x19\x43\xef\x67\xb5\x90\xcf\x09\x73\xa9\x72\xdb\x16\x2b\x2f\x55\x06\xc2\x65\x57\xaa\x5f\xdf\x1f\x3e\xda\x2d\xb7\x50\xfd\x9a\x8d\x77\xc5\x32\xc5\x1e\x56\x5b\xa4\x68\xa3\x5f\x6f\x8d\x2a\xd9\xfe\xba\x66\xd6\x22\x1b\xef\xba\x17\x28\xd2\x8b\x37\xb9\x3c\x65\xc9\x65\x8e\x83\xd1\x08\x93\x2d\xfa\xaf\xef\x8e\x0e\xf8\x4d\xa7\x1a\x4e\x87\xc1\x1c\xd7\x72\x16\x4e\x5b\x2c\xa3\x61\x90\x0d\x27\xa8\x66\xa7\x8f\x06\x14\x26\x49\x7c\x01\x7c\x0b\x19\x57\x6a\x1b\xaf\x83\xe9\x38\x4e\x66\x78\xc4\x86\x61\x14\x64\x81\x9d\x82\xae\xba\x00\x57\x07\x75\x75\xf9\xcd\xc6\xaa\x0a\x9b\x7c\xd3\xc2\x1b\x38\x8c\x8a\x6e\xc9\x86\xe5\x05\x37\x2b\xe3\x73\x06\xd0\x96\x86\x45\xc4\xb8\x87\x7a\x08\x68\x7c\xc5\xeb\xa9\x97\x0e\x40\x23\x52\xf0\x42\x2e\x4c\x3c\x62\xd9\xcc\x94\x5b\xe8\xde\x4c\xbc\x8a\x9f\xec\xa5\x92\x12\x6d\xb6\x48\x33\x34\xc0\x28\x24\x3d\x3a\xc3\x51\x46\xf3\xac\x05\x70\xbc\x9e\xe0\x4c\xdc\x58\x28\x95\xdb\xd7\xc8\xd3\xa9\x1b\xf7\x69\x8e\x43\x7a\xb5\x4a\x26\x88\xff\x84\xe7\x19\x5a\x44\x73\x9e\x34\x50\xcf\x0e\xaa\xf8\xb4\xb4\x1c\xd2\xf7\x19\xeb\x07\xc8\x34\xb8\x2f\x7a\x41\xdc\x12\xf3\x7d\x2e\xe9\x06\x07\xd9\x5d\x99\x37\x8f\xd1\xd3\x1b\x2c\x89\x36\x4b\x62\x9a\xc5\x28\xcc\x52\x7e\x2b\x06\x11\x0e\xbe\xee\x19\xd3\xc0\x89\x3c\x4d\x88\xeb\x3f\x64\x2a\x95\x75\x97\xb9\xf7\x21\xf0\x52\x76\xf9\x0c\x40\x06\x4e\x76\x53\xd1\x58\x59\x4d\xa1\x44\xe1\xa3\xe7\x41\x16\x70\x65\xbd\x55\x56\xd3\xdc\x1f\x8d\x52\x68\x83\xe7\x05\xf7\xf4\x34\xe3\x85\xf2\x8b\xa2\x08\xb2\x60\x65\x1e\x67\xce\x2e\x88\xce\x79\x76\x09\x80\xca\x4b\x7a\xa7\x24\x50\x3c\x28\xa9\x3f\x31\x48\xbc\x9b\x19\xcc\x0f\x14\x9d\xda\x86\x2d\xef\x4b\x95\x2b\x5e\x1b\x19\x64\x99\x64\xe6\xf6\xf5\x7a\x99\x8e\x4e\x0d\x28\xaa\x74\x10\x0b\x26\xaa\x57\xa5\xde\x71\x06\x36\x2a\x88\x13\xc9\x78\x4d\x11\xca\x80\x61\x71\xa4\xb4\x7d\x20\xcd\xc7\xbe\xdc\x95\xc8\x55\x99\xc5\xb4\x0f\xf7\xf4\x24\xe9\x65\x39\x98\xe7\x3a\x4d\x51\x70\x1e\x84\x53\x88\xd8\x45\xe5\x02\x08\x3b\x3f\xd7\xbc\x57\x2e\xab\x84\xd1\x79\xfc\x09\xa7\x66\x92\xe1\x1a\x4b\x0e\xdc\x40\x17\x93\x70\x38\x71\x8a\xea\xc1\x65\x8e\xa8\xb6\x5b\xe5\x13\x65\x10\xc7\x53\x1c\x44\x57\x68\x14\x1f\x4e\x17\xe9\x04\xfd\x3e\xc1\x19\x8d\x67\xc2\x73\xd1\xc2\x75\xad\x79\x90\x80\xa0\x60\xaf\xa4\xd4\x16\xe2\x7a\x85\x70\x20\x42\xd2\x43\x8f\x5f\x7f\x99\x17\x15\x3e\xa7\x8c\xe4\x9b\x33\x3c\x55\xae\x2f\x2e\x47\xc5\x6a\xdc\x99\x82\xf5\x58\xab\x14\x54\x9b\x7c\xb4\xc3\x2b\xda\x4c\xd8\x14\x91\xcc\xed\xb0\x96\x90\xd7\xdc\x39\x0d\x7a\xd6\x67\x56\x21\x1f\x15\x47\x33\x1f\xdf\x73\x70\xa9\x2b\xec\x19\x29\x99\xf3\x80\x79\xed\xb2\xb4\x3b\xa2\xdf\x41\xbc\x88\x32\xce\x5f\x0e\x61\x42\x2a\x8d\x68\x22\xe1\x77\x10\xb7\x78\x4f\xc7\x7f\xd3\x68\xf2\x89\x2d\x8b\x7c\x5d\xce\x30\x78\x17\x2f\xa2\x11\x5a\xcc\xe9\x85\xc2\xe1\x74\x31\xc2\x06\xdf\xdb\xc5\x0c\x8c\xa4\x93\x8b\xfa\xa1\x7c\x6c\x5b\x81\xc5\x28\xbe\x88\x54\x3c\xe2\x68\x7a\x89\xc6\x0b\x31\x29\x1d\x91\xf4\x37\x37\xd1\x14\xa7\xf4\x52\xa5\x5b\xd7\x02\xb9\x91\xe0\x59\x10\x46\xba\x72\x55\x8e\xae\x59\xb0\xac\x69\x74\xc1\xc1\x29\x7a\xe4\xca\xcc\xde\x28\x3e\x52\x15\x63\x4e\x2d\x0f\xbe\x21\x07\x4e\xe6\x78\x68\xad\x3f\x40\x0a\x03\xfa\xf8\x09\x78\xc3\xcb\x4e\xe4\xab\x4e\x63\x18\xd5\xd4\x26\x1f\xa0\x5e\x43\xe3\x33\x97\xfb\x24\xcf\xe0\xed\x62\x12\xc2\x77\x4a\x85\xf9\xd7\xb6\xa8\x9c\xa7\x66\x16\xf6\xfb\xa9\xda\x03\xe2\xed\x43\x65\x3e\x79\x9d\x26\x08\x66\x38\x21\xbb\x49\xb1\x30\x3c\x92\x1b\x04\xb8\x0c\xe9\x2e\xc8\xa4\x8b\xbe\x06\x09\xa9\xe2\xca\x55\xef\x1b\x63\xa4\xa5\xc0\x92\x02\x1f\x86\xdc\x06\xd5\xa4\xaf\x2a\xc2\xcc\x64\x58\x6a\x8f\x3a\xd0\xd0\x24\x19\x7a\xb4\xa7\x8e\x74\x31\x57\xf2\xd8\xa2\x79\xd8\xfa\x0d\x4e\x3a\xfe\x0d\xb5\xe9\xeb\x3a\xbb\x95\xce\x42\x99\x7b\xc9\xeb\x9a\x5e\x6e\x9e\xd5\xf0\x2b\xb9\xbc\x7d\xb0\x16\x44\x89\x89\x73\xc4\x72\x3d\xde\x74\x19\x26\x76\x9a\x9e\x4c\xf4\x7c\x0f\x3e\x09\x52\xc8\x90\xeb\xdd\x71\x17\xa6\x22\x97\xe2\x5a\xbd\x03\x45\x07\x9d\xd5\x4e\xc3\xae\xe1\x14\xc5\x91\xb2\x15\x6e\x6f\xa3\xda\x56\xbb\x03\x9e\xac\x75\xc7\xb6\xf8\x25\x2d\xcc\xb7\xc1\xe2\xd1\xbd\x1f\x5e\x4b\xd4\xd7\xbc\x0c\x64\xb9\x01\x53\xf3\xae\x9a\xd1\x4e\xa8\x90\x93\x7c\xd5\xe8\x76\xa4\x21\x44\x43\x24\x17\x05\xb9\x2b\xed\x43\x22\xc6\x40\x0b\xdd\x76\xfc\x72\xbf\xb3\xb5\xed\xbe\x24\x96\x97\xea\x7a\xe5\x08\x6b\x3c\xb6\x5a\xf9\x30\x6b\xc7\x58\x84\xf7\xf0\x5b\x08\x6c\x33\x44\x81\x27\xb6\xb4\xa4\xf0\x89\xb3\x7e\x93\x09\xe3\x97\x75\x98\x48\x00\x61\xd5\xc4\xa3\x43\x78\x66\x12\x54\xad\x09\x2f\x5b\x6b\x30\xd7\x66\xd6\x1d\x8e\x85\x99\x2f\xc8\xef\xaa\xf5\xf5\xaf\xf3\x11\x88\x0c\xb5\xb3\x69\x5a\xfe\xf2\x19\xfb\xbc\x11\x84\x69\xe5\x66\x1c\xe1\xd2\x57\x88\xa8\x28\x62\xf7\x87\x0a\xa7\x77\x85\x31\x5f\x00\x5e\xb5\x0d\x86\x94\xcb\x96\xa2\x43\x16\x9b\x4e\x28\xa0\xca\x28\x5a\x1f\x78\xe6\xa3\xc7\x22\xc1\x0c\x36\x7a\x0d\x0e\xf6\x60\xfd\x4b\x94\x74\x82\xaf\xab\x2a\x65\x1f\x6b\xab\xbf\x6b\xbb\x3b\x71\xc8\x92\xdc\xa4\x02\x17\xaf\x80\x44\xbf\xc4\x80\x72\x90\xd1\x7c\xf1\xac\xa4\x8c\x19\x8a\xc2\x14\xe1\xf1\x18\x0f\xb3\xf0\x1c\x4f\x2f\x51\x80\x46\x38\xcd\x92\x05\x3c\x37\x40\x4f\x7f\x14\x47\x43\x5c\x2a\xca\x68\x49\x0e\xd5\x12\x3d\x00\x4a\x32\x20\x37\x40\x54\xb7\x5c\x90\x4e\x58\xd3\xca\x80\xf6\x38\x3b\x8a\x64\x42\x1e\xb3\x84\x07\x3a\x8f\xd1\x73\x8a\x15\x73\x3d\x07\xad\xc4\xf7\x87\x8e\xfe\xb5\x37\x44\xf9\xd5\xa0\xa2\xb9\x52\xa4\xc0\x57\x90\xac\x4a\x0f\x71\x21\x7b\xa8\x8c\x83\x73\xf2\x10\x78\xdf\xe4\x51\x92\xdf\x6d\xb5\x3b\x9b\xdd\x4e\x39\x35\x3f\x65\x16\x1f\x2d\xfe\x7d\xc0\x06\x6d\x43\x04\x4e\x0a\xa3\x0c\x27\x63\xc5\x5b\x18\x79\x67\x05\x97\xaf\x8c\x74\xce\xb5\x74\xb9\x65\xf1\x11\x03\x34\xc1\xd3\x39\x4e\x88\xfa\x53\x62\x12\x1c\x32\xdc\xd8\xdd\x60\x13\xe5\x2f\x70\x8e\x47\x75\x26\xf3\x52\x05\x25\xb5\xf9\x81\x52\xf5\x12\x48\xaa\xb9\x94\x2d\xbf\x7d\x4e\x2d\xaa\x39\x0f\x42\xd5\xbe\xf3\x3d\x6b\x5e\xb8\x03\xe0\x22\x7d\xbf\xc8\x66\x22\x6c\x16\xf5\x2c\x62\x32\xc3\xa5\xce\xe1\xd5\xb7\x8d\x4e\x7e\x22\x22\xf9\xe5\xeb\xfd\x83\xf5\xf3\x13\x51\xa1\x79\x50\x0a\xd2\x02\xe3\xab\xef\x82\xa7\x5e\xce\x82\x61\x29\xbe\x9a\x05\xc3\xeb\xf0\x96\x28\x7e\x2d\xfe\xfa\x84\xdd\x26\x24\x85\xbf\x0e\x3e\x00\x5a\x64\x1c\x28\x93\xd1\x46\x68\xd9\x6a\xcc\x96\xbb\xfd\x15\x96\xa4\x82\x3b\x0c\x04\x1b\xb8\xc4\xc0\x7e\xc8\x5b\x0c\x3c\x53\x0b\x84\xf4\x7d\x1d\x64\x13\x1a\xd6\xf7\x0e\x7f\xcf\xba\xf9\x89\x8c\xf4\x7b\x75\xda\xd8\xea\x7d\xab\xe1\x7d\x19\x32\x35\x1e\x8e\xb8\xbe\xf6\x78\xbf\xbc\xe6\xaa\x71\x7f\x05\x86\x6a\xfc\x5f\x5f\xd0\x5f\xf1\x1d\x82\xff\xba\x02\xe8\xda\x47\x14\x3c\x6a\xac\x1c\x32\x85\x01\x94\x68\xb0\xca\xfb\x9c\xf0\x34\x5a\x69\xe5\x0a\x8c\x2f\x8c\xec\x76\xaf\x9c\x8b\x16\x83\xe5\x4e\x5a\xe2\x71\x35\x37\x2d\x56\xfc\xeb\xf9\x69\x95\x45\x60\x5d\x92\x72\x00\xed\xb9\x5d\xb5\x28\x2e\xff\x00\x5f\x62\x0b\x7e\x16\xcc\x85\x72\x38\x0b\xe6\xd5\x63\x2f\x38\xae\x88\xdb\x55\xf8\xbc\x32\x69\x9f\xaf\xea\xb0\x8c\x1e\xee\xa1\xae\xdf\x67\xf9\x32\xc3\x6d\x87\xd3\x32\xfd\xf3\xb9\x2e\xd3\x3f\xaf\x03\x33\xaf\xb8\x23\x2b\xae\x85\xe8\x21\x6a\xd7\x1d\x3e\xd1\xfc\x4b\x19\xcf\x68\x5e\x71\xd7\xa8\xb8\xe3\xad\xb8\xe3\xac\xd8\x5d\x73\x96\x84\xf3\x29\x1c\xbd\xd4\x68\xb7\x3c\x7d\x0a\xf7\x26\x3e\xd3\xe7\x0e\x79\xde\x25\x8f\x80\x82\xab\x16\x31\x14\x1f\xe9\x50\xd4\x3e\xa2\xa7\xa4\xf5\x1f\x7e\x40\x80\xcd\x47\xf4\x00\xb5\x9a\x3b\x5b\xca\x08\xd5\x9f\xa0\x8f\x39\xe1\x2e\x94\xb1\xa7\xbe\xe0\xb3\x60\x0e\x3e\xb3\xfb\x59\xad\xc6\x11\x06\xa2\xb7\xd1\x03\x54\xeb\xa2\x47\xe8\x63\x9d\x51\xda\x1d\x3b\x6f\x3b\x59\xf1\x19\x6c\xc3\xc5\x68\xc4\xd3\x7d\xdb\xdc\xc8\x3e\x10\x94\xd0\x1e\x52\xd0\xd9\xb6\x2e\x93\x40\x6c\x3d\x09\xee\x76\x0e\x9e\x84\x53\x8c\x6a\x2a\x9d\x2c\x5c\x80\x2f\xd6\x88\xb3\x5b\xd4\x66\xaa\xd3\xcc\x24\xab\x5a\xeb\x35\xfc\xe4\x35\x99\xbc\xba\x9f\xa5\x10\xb5\x95\x04\xfd\x37\xed\x6a\xc9\x56\x08\xea\xd7\xa3\x2e\x25\xe5\xdd\x2d\x45\xa9\x8a\x8b\x83\x28\x27\x1c\xe5\xc5\x1b\xe1\x28\x5f\x2c\xf7\x2d\x88\x04\x9f\xe3\x24\xc5\xaf\x15\x40\xf9\xca\x15\xd7\xec\x9e\xfc\xec\xe5\xee\xdc\x4a\x5d\x4b\x00\xff\x33\xe5\x0f\x11\x3f\x64\x86\x32\x02\x73\x25\x8d\xde\xf0\x09\x9f\xd8\xcc\x37\xff\x63\xfd\x14\xed\xa1\x8f\xe5\x62\x75\x3a\x44\xca\xd1\x59\x14\x27\xf8\x8b\x49\x15\xa5\xca\xa3\x68\x04\xf7\x9c\xe5\x70\x87\xe4\xcd\x9b\x71\x91\xcc\x50\xda\xa1\x75\xdc\xdb\xdb\x43\x8f\xda\x05\x32\x49\xe5\x30\xb5\xf4\x4a\x82\xd8\xa9\x12\x24\x22\xed\x65\x8a\x5f\xc5\xf1\x5c\x4e\x89\x86\x89\x43\x43\x19\x51\x4d\xe5\x30\x4e\x3c\x83\x79\x1f\x6d\xec\x3f\x3b\x78\xfe\xe2\xf0\xa7\x97\x47\xff\xfe\xf9\xd5\xeb\x5f\xde\xbc\xfd\x7f\xdf\x1d\xbf\xff\xf5\xb7\xdf\xff\xf8\xff\xfe\x27\x18\x0c\x47\x78\x7c\x36\x09\x3f\x7e\x9a\xce\xa2\x78\xfe\xbf\x49\x9a\x2d\xce\x2f\x96\x97\x7f\xb5\xda\x9d\x6e\x6f\x6b\x7b\x67\xf7\xf1\xc3\xcd\x3d\x16\xe1\x56\x6c\xed\xc4\xa4\xad\x8c\xaa\xec\x62\xcf\xad\x14\xe9\xb9\xa1\x79\x98\xba\x54\x21\xa3\x1d\xd7\x35\x15\x32\xd2\xa1\x67\xbd\x61\x17\xbb\x52\xa2\x24\x29\xd3\x43\x72\x93\x7a\x81\x05\x3d\x42\xed\xfa\x29\xdc\x5e\x91\x0a\x53\xc7\x66\x2e\x5e\x69\xa7\x4c\xa5\xf5\x53\xbe\xc0\xab\x6a\x98\xa3\x56\xaa\x10\x45\x5a\xe4\x9e\xcf\x44\x99\x01\xf4\x3f\xd3\x16\xd5\xbb\x35\x51\x7e\xf0\x1e\xc4\xba\xf8\xe1\x43\xed\x83\x60\x5b\xf1\x83\x71\xa4\x15\x5b\xd2\x19\x16\xe1\x4a\xe6\xee\x31\x37\xf9\xca\x1a\xf1\xc4\x9b\xd9\x67\xeb\x76\xeb\x7f\xbb\xf5\x17\x5b\xff\x5f\xdf\x1f\x3e\x6a\x6f\xa3\x67\x2f\x4a\x5f\xd0\x6a\x6f\x3f\x7b\xa1\xde\xd1\x6a\x6f\xeb\x4f\xf0\x75\xf5\x4b\x5b\x14\x99\xaf\x7b\x71\xab\x24\x0e\x6b\xbc\xbc\xd5\xde\xf6\xde\xde\x6a\x6f\xff\x03\x2c\x02\xe5\x37\xeb\xd0\x19\xd7\xd9\xab\xbb\xef\xfb\x83\x67\x54\x3c\xc2\x6f\xe3\x30\xca\x7c\x97\x8c\xdb\xdb\x9e\x4b\xc6\xce\xcd\xb4\xc4\xd4\x7f\xcb\x58\x34\x59\xf6\xaa\xb1\x52\xe9\x35\x76\x50\x26\x13\x5f\xeb\xb2\x1a\xf0\x66\xd5\xb9\xf1\x4d\x6f\xa3\xe8\xac\x12\x57\xd6\xf8\xe4\xab\x74\x67\x0d\x0a\x55\xbb\x6b\xcc\x4b\x09\xfd\x96\xbf\xb8\xe9\x9b\xc6\x7a\xc3\xe5\x2e\x1a\xb7\x41\xf7\x11\x18\xea\xd7\x8c\x89\x0a\x24\x27\x4b\x87\x4c\x16\x23\x08\x9b\x9f\xc3\x7d\x5a\x8e\xd1\x3b\x0f\xca\x87\xc2\x60\x6c\xf9\xaa\xc4\x1a\xa6\xac\x53\xaf\xae\xbd\x4e\xbd\xfa\x06\xd6\xa9\x32\x38\xac\x7b\x9d\x72\x4e\xa7\x57\x2f\x6e\x97\x29\xf1\xb7\xb6\x65\x2a\xbd\x08\xe6\x2f\xa2\x51\x18\x44\xb5\xaa\x2b\x96\x6b\x4b\xfe\xed\x2f\x59\xaf\x6e\x66\xc9\x2a\x33\x4d\xbe\xfd\x25\xeb\xd5\x0b\x63\xd1\xba\x5d\xb1\xac\x15\x4b\x99\x31\x95\x16\xaf\x2f\xba\x7a\x89\x71\x51\xb0\x25\x15\x69\x34\xf2\x68\xf8\xf0\x85\x9d\x9d\xd0\xc9\xdd\x6a\x91\xff\x87\x83\x15\xfa\x91\x90\xcf\xbe\xd2\x6f\x72\xfa\x17\x99\x0b\x80\xb1\xfc\xd6\x82\xed\x6b\x59\x0b\x58\x8e\xda\x2f\x69\x34\x68\x20\xe5\x55\x3a\x09\xda\xc6\xab\xc9\x2c\x18\xde\xa0\x69\xa1\x81\x78\xb3\xf0\x0b\x5a\xfb\x27\x98\x1b\xac\x7c\xb1\x2b\x98\x22\x34\x27\x16\xe5\xcb\xeb\xe7\x5b\x50\x12\x5c\x6e\x5e\x3f\xdf\x72\xe9\x78\xe0\xe2\xfc\x09\x5f\xd2\x2c\xd8\xd4\x0f\x56\xd0\x0a\x97\x7f\x83\x28\xe3\x49\xbc\xe3\x64\x46\x7d\xb4\x5f\xfc\xf6\xf6\x03\x2c\xba\xef\xe3\x9f\xb1\x54\x06\xd1\xc5\xc5\x45\x33\x9e\xe3\x28\x4d\xa7\xcd\x38\x39\xdb\x1c\xc5\xc3\x74\x13\x92\x70\xc7\x9b\x46\x99\x49\x36\x9b\x3a\x0c\x21\x2f\xce\xe7\x3f\x3f\x3f\x94\x68\x8b\xe7\x92\xc1\x10\x8a\xef\x80\x18\x6b\x9c\x75\xfb\x85\xa5\x3c\x87\x35\x8a\x74\x4c\x4a\x1e\xc2\x88\x5f\x7b\x51\xc2\x3d\xcb\xab\x2e\x3d\x54\x6b\x77\x76\xb5\x9b\x2e\x56\xfd\x1e\x27\x35\x35\x2c\x86\x99\x20\xe5\xf5\xf3\xad\x22\x6c\xc3\x8c\xf9\x22\x9b\x41\xaa\x95\x0f\x59\x8c\xe6\xd4\xeb\x54\xbd\x9d\xe3\x59\xe1\xac\x7b\x31\xc6\xea\xc0\xba\xa7\x8f\xda\x9d\x5d\x70\x21\xd5\xbe\x52\xe2\x00\x73\xe3\x8b\xc4\x47\x6b\xfb\x6a\xe5\x6b\x37\x1e\xa6\xbd\xe9\x7b\x38\x58\x69\x74\x0d\x6e\xd6\x9f\x46\x63\xeb\xf6\x0d\xe5\xf9\x82\x14\x4d\xc5\x05\xff\x96\x63\xb5\x6b\xe4\xf3\x5b\xb5\x9a\x86\x3e\x8c\xad\x56\xcb\xac\xb8\xe2\xed\xa0\xc2\x7b\x3f\xe5\xf4\xdd\xe7\x90\xc2\x9f\xf0\x08\xe1\x0a\x48\x84\x1d\x40\x06\x56\x32\x69\x57\xf1\xd2\xe7\x65\x69\x2c\x00\x57\x45\x39\x85\xd3\x60\x9a\xa1\x7d\xf8\x4f\x75\xb5\x18\xb8\x8b\xb2\xf7\x3a\xd8\x0b\x93\xc5\xe3\xd3\x68\xdc\xa4\xd7\x22\x70\x8d\x13\xd3\x00\xfc\x72\xf2\xd6\x00\xb8\x96\xdf\x51\x2f\x59\x49\xe1\xd5\x87\xd8\xa1\xde\x92\x99\xce\xa4\x87\x5d\x5a\xdc\x52\x23\xec\xc1\x5c\x94\xe5\xec\x70\xd6\xe5\xbb\x16\x06\xa1\x05\x68\x17\xff\x0c\x7d\xe3\x4a\x89\x56\x65\x8f\x2c\x2b\x13\x77\x82\xc5\x1b\xef\x76\x99\xaf\x31\x94\x22\xf6\xe4\x80\x53\x84\x38\x05\x95\x2f\x1c\x58\xfe\xc4\x16\x26\x52\xbd\xfe\x91\x39\xb3\x18\xb8\x72\x87\x96\xa7\x1c\x1f\xe7\x56\x80\xa8\x71\x70\x73\xc0\x7b\xc0\xac\x5f\x59\xa2\xb0\xc5\xc7\xca\x48\x0d\xc6\x20\x2f\x81\xb0\x5a\x38\xb3\x29\x4e\xc1\x16\xbf\xea\xcd\x8b\xfb\x74\x36\x04\xe1\x09\xd1\x71\xf6\x67\x6d\xa3\xd4\xa6\x1b\x25\xa5\xa3\x73\xd3\xfe\x18\xd8\x0b\x64\xbd\xbd\xe0\xc2\xd8\xd1\x55\xf6\x3b\x85\xad\x58\xcc\x18\x67\x1b\x46\x2f\x2b\xa5\x14\x1b\x0d\xe7\x3f\x47\xb4\x0b\x11\x60\x8e\x97\x2b\xeb\x73\x5d\x4a\x06\xab\xf7\x8e\x57\x92\xbd\x15\xe5\xee\x1a\x6f\xdf\x3a\xee\x95\x29\xd4\x94\x97\xe6\x4a\x21\xcd\xba\xa1\xbc\xd7\xa5\xbb\xfc\x80\x34\xa9\x2e\x16\x6d\xba\x5e\xfb\x24\x7b\xb5\x62\x0d\xe4\x51\x1b\xae\x53\x4d\xae\xda\x20\x4c\xc8\x52\xd7\xf7\xad\x39\xf6\x15\x16\xd6\xed\xba\xc6\x02\x17\x57\xf2\xd7\xbb\xab\x27\x39\xdb\x77\x5a\x9b\x7b\xef\xde\xe0\x9b\xcf\xfe\xd6\x6e\x83\x6f\x49\xfb\x3b\x3b\x64\x4f\xbf\xf3\x5d\xef\xe9\x87\xe1\x7c\x82\x93\x47\x37\xec\x22\x00\xbb\x77\xb5\xa9\xaf\xb3\x89\xb7\x33\x77\xae\x65\x37\x7f\x00\x84\xbd\x25\x12\x27\x15\x9b\x76\xf5\xa5\xdf\x85\x40\xbc\x37\x32\x61\x68\x25\xc8\x1e\x2e\xc8\xa0\x10\xfd\xc9\x05\x31\x2b\x78\x08\x2f\x33\x16\x55\x81\x82\x54\x48\xa7\x41\x76\x37\x74\x6c\x32\xbc\xcc\xc8\x2e\x32\x60\xcf\x68\x4e\x69\x62\x77\xb3\x78\xaa\x8d\x60\x84\x87\xe1\x2c\x98\x4e\x2f\x59\x1a\xd0\x51\xe9\x93\x1b\xb5\x57\xae\x58\x2b\xac\xe3\xde\x0b\x34\xf4\x66\xab\x27\xe3\x58\x05\xbf\x1b\x4d\xcf\x21\x87\x44\x39\xd5\x51\x89\xaf\x76\xb0\xa3\x95\xf4\x5c\xd4\x52\x61\x9a\x72\x74\x65\x02\x89\x97\x78\xb9\x62\x26\x08\x47\xf7\x2a\xec\xa3\x9e\x37\x54\x1c\x4e\xe3\xe4\x21\x8c\xe6\x8b\xec\x3a\x63\xca\xd9\x43\x67\xba\x15\xf8\x6c\x5d\xcc\x31\x34\x04\x85\x83\x3f\x56\x4e\x2a\x01\xbd\xe5\x0e\x61\x23\x07\x67\x0f\xc9\x36\x68\x81\x27\x4e\xee\x39\xd0\xb8\x87\x5b\x04\x64\x45\x7d\xb5\xd2\x2b\xb7\x6d\xde\xbf\xd2\x4a\x72\x8d\xd5\x56\x59\x20\xfa\x5b\x9d\x86\x61\x3c\xdf\xbd\x75\xb5\xfb\xa7\xdb\xbe\x7d\xab\xa3\x15\xc9\x3c\xcf\x12\x6e\x6f\x52\xe0\x02\xb0\xb0\xb8\x3a\x13\x51\x11\x88\x3d\xf5\xa2\xea\x7a\x12\xd2\xc3\x95\xd7\x42\x89\x57\xda\x48\x5c\xd2\x14\x45\x74\x75\xb8\xbc\x8c\x87\x09\xce\xd6\x64\x54\x22\xfa\xef\x4b\x77\xe0\x20\xa0\x92\x89\x09\xd7\x4d\x64\x7a\xd1\xb7\xac\xc5\x50\xbd\x1c\xec\x09\x10\xec\xb4\x19\x09\x7b\x11\xbd\xa3\x20\x1e\xcd\x1b\xee\x39\xb7\xdd\xd6\x19\x5f\x16\x36\x4c\x05\xe1\x65\xe9\xa6\x4a\x89\x2e\x6b\xf6\x93\xdb\x11\x3f\xc7\x30\x45\x09\x7d\xa6\xc4\xc5\x64\xa4\xe7\x45\xc6\x34\x0a\x71\x7b\x81\x59\x97\x3b\x4a\xe6\xfe\x74\x1a\x5f\xa0\x20\x19\x84\x59\x12\x24\x97\x88\x99\x97\x3e\xe1\x4b\x47\xdc\xc1\x4f\xaa\x45\xe2\x47\x67\xc3\x39\x1d\x65\x9a\x5b\xca\xf5\x56\xc1\x65\x48\x82\x52\xce\x35\x48\x88\xff\x06\xb6\x8d\x38\x41\x61\x14\xe1\x04\xa2\xcf\xc6\x8b\x0c\x14\x08\x33\x0a\x1f\xc4\x4c\xa4\x36\x46\xca\x86\xec\x81\xb6\x62\x05\xa4\xe3\x16\x3f\xb5\x44\xe8\x28\x51\x85\x05\x62\xc5\x2a\x19\xe7\xd9\x23\x43\x05\x30\x54\x00\xad\xc6\xfe\x78\xf3\x0e\xc6\x93\x1e\x03\xce\x83\x11\x1a\xc6\x51\x9a\x05\x91\xd9\xbc\x33\x89\x94\x3e\xc6\x7e\xc3\x9a\xc0\xfb\x24\x3c\x45\x7f\xee\xa1\xd6\x72\x6b\x48\xff\xe7\xba\x0e\x63\x01\x77\xb7\xe9\xff\xf2\x2d\x63\xb1\x61\x13\x0b\x8d\x67\x17\x47\x7e\x85\x38\x64\xb0\x02\xdd\x44\x14\x32\x21\xc4\xd7\x12\x89\x2c\x27\x5f\x99\x4b\x18\x3b\x3a\x12\x88\x76\xc9\x71\x8f\x9d\x54\xb7\x17\xcb\x09\xb3\x5a\x04\x32\xe8\xe6\x6f\x26\xfe\xd8\xeb\xfd\x03\x16\x7d\x0c\xf0\x0a\x61\x8a\xe5\x46\x42\xa9\x38\xe4\x65\x02\x91\x59\xd0\xeb\x0f\x46\xa6\xb2\x04\x6f\xa5\x30\xf8\xd8\x4d\x45\x0f\x83\xae\xfe\x4f\x8f\x1e\x56\xa0\xa6\x56\x51\x11\x89\x0c\x95\x3c\x54\x18\x41\xcc\x5f\xa2\x30\x8a\x98\xbf\xe8\x0d\x45\x12\xbb\xbe\xb4\x3b\xa0\xe6\x69\xe8\x6f\xc7\x7a\x4c\xb4\x8b\x97\xee\xe0\x68\xb9\x01\xc7\x72\x25\xa6\xda\x57\x46\xa5\x52\x43\xe1\x9a\x06\x3f\x64\x12\xa8\xd4\xbd\x21\xc7\x66\xc1\xd0\x7d\x48\x24\x36\xfe\x1e\x27\xb8\xc7\xdf\xb5\xc1\x7c\xb9\xdd\x7b\xe4\x78\x3d\x0d\x07\x8f\x08\x2a\x23\xf0\x6d\x4d\x8d\xaf\x38\x1a\x3e\x02\x9f\x46\xc7\x7b\x7a\xcd\xd2\xf8\x30\x1b\x6d\x15\x3b\xdf\xa5\x93\xa0\xb3\x65\x56\x49\x5e\x76\xcc\xea\xd2\x49\xb0\xd5\xee\xd8\x2f\xbb\xbb\x0e\xc8\xae\xf1\x2a\x09\xe7\x78\x36\x6a\x6f\xb7\x9c\xbe\x7f\xda\xab\xf9\xe0\xd3\x68\x6c\xb6\x83\xcf\xe7\x9f\x46\xe3\xbc\x73\x07\x9d\xf4\x78\x84\x1f\x0d\xc7\x03\xe7\xeb\x2c\xf1\xbc\x7e\x74\x36\x0d\x46\xb3\x20\x72\x7d\x8e\xdd\x95\xe1\xa1\xf9\x7a\x1e\x8c\x1e\x05\x51\x1a\x2e\x1f\x77\xcc\x4e\x20\x9f\xc2\x34\x6e\xb7\xda\x1d\xb3\xc7\xd9\xa7\xc7\x3b\x8f\x77\xcc\x11\x22\x9f\xfe\xc2\x49\xcc\xae\x5e\x3b\xbe\x46\x9e\x6f\xd4\x46\xf6\x68\x82\x97\xc6\x87\x00\x9b\xcc\x45\xe3\x6e\x8c\xac\xf7\xc9\xd0\x1c\xdc\x24\x18\x0c\xc2\xcc\xf9\xf2\xd1\x14\x9f\x05\xc3\xcb\x9b\x3e\x03\x12\xb3\x07\x9e\xcc\x49\x03\x2f\xe5\x5c\x11\x8f\x6c\x8a\xc0\x33\x99\x19\x86\x5b\x28\x9b\x07\xe2\x77\xa7\x27\x7e\x13\xae\xe7\xbf\x09\xb3\x8b\xdf\xf4\x97\x64\x6d\xe9\x5f\x0a\xbf\x18\x23\x53\x0c\x28\xff\x5a\x67\x58\x14\x1d\xce\xad\xca\x53\x96\xe8\x4f\x82\x37\xe5\xdb\x58\x2b\x41\x38\x91\x36\xab\x32\xa0\x78\x23\xf8\x4e\x7d\x43\xd9\x4d\xbc\x51\xb9\x4c\xbc\x8c\xf4\x57\x0a\x4f\xc1\x33\x61\x25\xf8\x21\x39\x88\xf6\xca\x90\x75\x14\xe3\x17\xe5\x37\x67\x93\xaa\x86\x48\xcd\x00\xa9\xca\xda\xea\x86\x49\x7f\x28\x36\x46\x52\x7f\xab\xdd\xc8\xb7\x26\x37\x74\xbe\xea\x6f\xf5\x1a\x1a\xe3\xf5\xb7\xb6\x1a\x72\xe0\xfb\x5b\xdb\x0d\xbd\xf7\xfa\x5b\x3b\xe6\x89\xb0\xc9\xca\xfd\xed\x56\x83\x71\x6b\x7f\x1b\xf0\x11\x9c\xd2\xdf\xee\x34\x54\x5e\xe9\x6f\xf7\x1a\x2e\x6e\xe9\x6f\x77\x1b\x2a\x87\xf4\xb7\xb7\x1a\x2a\xff\xf4\xb7\x01\x2f\x8d\x67\xfa\xdb\x3b\x0d\x93\x6b\xfa\xdb\xbb\x0d\x93\x6f\xfa\xdb\x8f\x1b\x16\x93\xf4\x77\x5a\x0d\x07\x3b\xf5\x77\x00\x7f\x36\x25\xfa\x3b\x80\x3d\x63\x8d\xfe\x4e\xaf\x61\x31\x47\x7f\x07\x10\x27\x6c\xd4\xdf\x01\x9c\xe5\x3c\xeb\xef\x6c\xab\x07\xe8\x0d\x39\x65\xfb\x3b\xfc\x68\x9d\x4c\xe6\xfe\xce\xe3\x06\x9f\xaa\xfd\xdd\x56\x43\x4e\xe1\xfe\x6e\xbb\x21\x27\x77\x7f\x17\xd0\x91\x1c\xdc\xdf\x85\xc6\x85\xa0\xe9\xef\xf6\xae\x4e\x1b\xdb\xad\xdb\xc3\x83\xaf\x7f\x78\x70\x30\xc1\xc3\x4f\x84\x28\x98\x29\xf4\x1a\x10\x4d\x73\x96\x2e\xe6\xa4\x63\x30\x8b\x4f\xad\xd0\x0d\x7a\x3c\x0d\x69\x8e\xee\xed\xa1\x0d\x5e\xf3\x86\xc3\x23\x44\x5c\xd2\x58\xe3\x71\x45\xae\x3b\xbe\x68\xe7\x1d\x1e\xe3\x04\xc3\x46\x2f\x09\xcf\x60\x4f\x16\x46\x61\x26\xab\x49\x17\x73\x9c\x80\xe9\x7a\xcf\x48\xcf\xa1\xd4\xb2\xbf\x38\x9b\xe1\x28\x33\x00\x50\x16\xa3\x49\x10\x8d\xa6\x58\xeb\x37\xb5\xee\x81\xb3\x66\xcd\xa7\x06\x8a\xda\xd7\x01\x15\xdb\x37\x8d\x25\x4f\x5d\xa0\xc2\x28\xdb\x55\x2c\xf4\x63\xb5\xbc\x30\x4c\xe8\xa3\x63\x6f\xf3\x65\x09\x6a\x84\xff\x95\xd4\x0a\x2f\x54\x6c\xb4\x4d\x84\x13\xb1\x98\xa6\xff\x82\x9a\xce\x43\x7c\xe1\x43\xd1\xdb\xbc\x82\xf0\x11\x47\x01\x7d\xfe\xac\xc3\x73\x86\x03\x2c\xc1\x66\xcc\x8b\xdf\x23\x73\x4e\xf8\x8e\xc0\xa4\x73\x57\x6e\x15\xad\x5b\xad\x78\xb1\x6a\x6f\xbb\xd1\xf2\xb7\x54\xad\xc4\x51\x94\x75\x3b\x55\x9b\xa8\x56\xe2\x70\x1a\x07\xab\x14\xd9\xee\xc1\x7b\x09\xbf\x22\x2b\x35\x29\x07\x37\x90\xfa\xea\x32\xc3\x6f\x20\x39\x90\xf5\xda\x95\x77\x59\xe3\xbf\x97\x74\xd2\xc9\xb6\xca\xcc\x08\x09\x5d\xcd\x84\x20\x6b\x7b\x26\x70\x43\x7b\x6e\x9c\x1d\x96\x85\x17\x4b\x96\x7d\xf5\x32\x73\x39\x3f\x57\xba\x2e\xe8\x42\xa5\x4a\x3e\x6d\x59\xfe\x24\x3c\x5d\x29\x79\xb6\x74\xe7\x0e\xff\xc2\xd4\x54\x2b\x2f\x8e\xea\xa0\x42\xb0\xca\xd4\x16\x0d\xc4\xae\x11\xba\x08\xd1\xc6\xdb\x99\xf5\x8c\xf4\x26\x79\x4d\xea\x43\x11\xd1\xfa\x54\x61\x6e\xb7\x1b\xcc\xe7\xd3\x4b\xd6\x70\x90\x9c\x2d\x88\x08\x4f\xf3\xee\x2b\x32\x79\xdd\x9c\x27\x71\x16\x13\x1c\x55\xc9\x9d\xe7\x38\x61\xae\x3e\x6e\x03\xcb\x76\xfb\x56\xd7\xf9\x3a\xba\x0e\x04\x8c\xfe\x0a\x71\x89\x9c\x39\x95\x4a\xb8\x48\xc0\x12\x4b\xcf\xf1\x50\x26\x6d\xeb\xa4\xc8\x7b\x26\x2c\x14\x48\x6a\xba\x34\x4e\xfe\x5c\x9a\x9e\x4f\xae\x6c\xf7\xdc\x52\xe4\x3d\x11\x13\x7b\xb4\xfb\x9a\xc1\x20\xa5\x3f\xd2\x30\x62\xc1\x58\x89\xc8\x68\x2d\xdb\x2d\xf6\x57\x47\x9f\xf5\x34\xbe\x6c\x7a\xd5\xea\x4e\x0f\xf5\xd7\xcf\xb7\x0c\x6f\x0a\x97\x03\x88\x79\x6b\x12\xed\xb1\x5e\x75\x38\x80\xf0\xb4\x37\xb9\xa7\x63\xd2\x12\xec\xce\x55\x7c\x62\x4b\xd2\xd6\x72\x7b\xa7\xb7\xd5\xe9\xb6\xda\x0d\xd4\x5a\xe2\xf1\x70\x14\x0c\x76\x1f\x3b\xf2\x2a\xb6\x96\x8f\x77\x07\xc1\x68\x38\xc6\x0d\xe8\x98\x6e\x67\xab\xb7\xb3\xad\xc3\x9d\x7a\x4f\xc4\x8c\x34\x7a\x2a\x15\xaf\x45\x26\x3d\xd7\xda\x75\x11\xcc\x11\x86\xeb\xd5\xc5\x6b\x48\x7b\xdb\xbf\x62\xf8\x8f\xaf\xf9\x68\x50\x24\x3e\x90\xfa\x78\x7a\x41\x14\x7a\x22\xf0\xbe\xfe\xa0\x40\xbf\x3e\xe1\x0f\xa7\xae\x2b\x21\xca\x67\xc2\x70\x36\x00\xf9\xab\xd5\x6a\x4a\x9d\xf4\xa6\x38\xfa\x8c\xd4\x97\xb0\xd6\xf5\xea\xc6\x1d\x71\xf4\xb9\x64\x85\x9d\x5e\xdd\x51\x21\x84\x32\xd6\xae\xa4\xdb\xd5\x5d\xcf\x39\xe4\xa5\x76\x42\xe1\x3e\xee\xd7\xba\xb4\x85\x94\x3e\x45\x0f\x51\xcb\x54\x1f\x34\xe8\xb6\x01\xdd\xce\x85\xee\x18\xd0\x9d\x5c\xe8\xae\x01\xdd\xcd\x85\xee\x19\xd0\xbd\x5c\xe8\x2d\x03\x7a\x2b\x17\x7a\xdb\x80\xde\xce\x85\xde\x31\xa0\x77\x72\xa1\x77\x0d\xe8\xdd\x5c\xe8\xc7\x06\xf4\xe3\xfc\xd1\x69\x19\xa3\x53\x30\x98\x6d\x03\x3c\x7f\x34\xdb\x1d\x03\x3c\x7f\x38\xdb\x5d\x03\x3c\x7f\x3c\xdb\x3d\x03\x3c\x7f\x40\xdb\x5b\x06\xf8\x96\x25\x0d\x36\x37\x89\x40\xfe\x14\x46\x67\xa4\x68\x18\x4c\x07\x2e\xb5\x39\x20\xcb\xc0\x89\xb3\xa3\x06\xf0\xc9\xd9\x29\x43\xf8\xe4\xec\x80\x11\x7c\xea\xba\xd0\x39\x90\x67\xd0\xfa\x37\x82\xc4\xe1\x61\x2d\x68\xa0\x41\x03\x0d\x1b\x68\xd4\x50\x26\x68\x03\xa1\x9d\x06\x59\x42\x5b\xa7\xa6\x6c\x18\xd1\x72\xa3\x06\x12\x45\x65\x0f\x35\x10\x6a\x77\x1a\xe8\xfd\x49\xdb\x2a\x37\xa4\xe5\x68\x4b\xb4\xa8\x9c\xb4\xa4\xdc\x0e\x29\xd7\xb1\xca\x0d\x68\x39\x81\x64\xa0\x94\xeb\x36\x10\xea\x40\x7b\x5d\xab\x5c\x1e\x7d\x3d\x41\x5f\xaf\x12\x7d\x5b\x82\xbe\xad\x4a\xf4\x6d\x0b\xfa\xb6\x2b\xd1\xb7\x23\xe8\xdb\xa9\x44\xdf\xae\xa0\x6f\xb7\x12\x7d\x8f\x05\x7d\x8f\x2b\xd1\xd7\x6e\x35\x18\x7d\x6d\x9b\x61\xf2\x08\x6c\xb7\x1b\x8c\xc0\xb6\xcd\x31\x79\x14\x12\x2c\x29\x85\x6d\x9b\x65\x72\x59\xb4\xdb\xe0\x2c\x6a\xf3\x4c\x2e\x8d\x3d\x41\xa3\xcd\x34\xb9\x34\x6e\x09\x1a\x81\x6b\x6c\x22\x7f\xfa\xc9\x43\x64\x03\xa1\x2d\x4a\xa4\xcd\x37\x23\x5a\xd0\x49\x24\xe1\xb7\xc7\xb4\xa0\xcd\x38\x43\x5a\xd0\x4d\x64\xbb\x81\x08\xa1\xef\x4f\xda\x36\xe7\x0c\x68\x41\x27\x91\x44\x62\x74\x5a\x50\xd0\x66\x9d\x3c\x1a\xb7\x04\x8d\x1d\xb7\xac\xf1\xd1\x48\x78\x8e\xd2\xd8\x71\x0b\x1b\x2f\x8d\x5b\x9c\xc6\x8e\x5b\xda\xf8\x68\xec\x09\x1a\x3b\x6e\x71\xe3\xa3\xf1\xb1\xa4\xd1\x2d\x6f\xbc\x34\xf6\x04\x8d\x6e\x81\xe3\xa3\x91\x08\x46\x46\xa3\x5b\xe2\xf8\x68\xdc\x95\x34\xba\x45\x8e\x97\x57\xbb\x0d\x4e\xa3\x5b\xe6\xf8\x68\xec\x08\x5e\xed\xb8\x85\x8e\x8f\xc6\x1d\x41\x63\xd7\x2d\x74\x7c\x34\x92\xe9\x4f\x69\xec\xb6\xdd\x13\xf2\xe5\x4b\x3f\xb3\xf6\x00\xd7\xae\x5b\xea\xbc\x7c\xe9\x26\x92\x74\x2b\x99\x5b\xef\x4f\xba\x6e\xa9\xf3\xf2\x65\xce\x84\xdc\x86\x82\x6e\xa9\xf3\xf2\xa5\x87\xc8\x5e\x03\x75\xba\x50\xd0\x66\x9d\x3c\x1a\xdb\x92\x46\xb7\xd0\xf1\xd1\xd8\x93\x34\xba\x85\x8e\x8f\x46\x18\x48\x4a\xa3\x5b\xe8\x78\x69\x6c\x09\x1a\xdd\x42\xc7\x4b\x63\xb7\xc1\x68\xec\xb9\x85\x8e\x8f\xc6\x96\xa0\xb1\xe7\x16\x3a\x3e\x1a\xbb\x82\xc6\x9e\x5b\xe8\xf8\x68\x24\xa2\x9c\xd2\xd8\x73\x0b\x1d\x1f\x8d\x8f\xc5\x38\xf6\xdc\x42\xc7\x47\x23\x99\x1e\x8c\x46\xb7\xd0\xf1\xf2\xea\x16\xe7\xd5\x9e\x5b\xe8\xf8\x68\xec\x48\x1a\x77\xdc\x13\xf2\xe8\xc8\xaf\xa8\x6e\x53\x22\xdd\x52\xe7\xe8\xc8\x4d\x24\xf0\x1c\xc8\x80\x9e\x5b\xea\x1c\x1d\xe5\xa8\x01\x5b\xa0\x02\xba\xa5\xce\xd1\x91\x9b\x48\x22\x3b\x3a\xd0\xad\x5b\x6e\x55\xc7\x47\x23\x19\x0f\x4a\xe3\x96\x5b\xe8\xf8\x68\xec\x0a\x1a\xb7\xdc\x42\xc7\x4b\x63\x4b\xd0\xe8\x16\x3a\x3e\x1a\xdb\x92\x46\xb7\xd0\xf1\xd1\xb8\x2b\xc6\x71\xcb\x2d\x74\x7c\x34\x02\xcf\x51\x1a\xdd\x42\xc7\x47\x23\xa8\xe4\x94\x46\xb7\xd0\xf1\xd2\xd8\x6d\x70\x1a\xdd\x42\xc7\x47\x63\x4f\xd0\xb8\xed\x16\x3a\x5e\x1a\xdb\x9c\xc6\x6d\xb7\xd0\xf1\xd1\xd8\x11\x34\x6e\xbb\x85\x8e\x8f\xc6\xc7\x62\x1c\xb7\xbb\xf6\x84\x84\x63\x94\x0c\x27\x33\x3c\x0a\x83\x8c\x5d\x2a\x83\xeb\x0a\x3a\x1c\xd9\xe2\xa2\x3d\x54\x83\xff\x3e\x44\x81\x69\x61\xa5\x30\x6d\x06\xd3\x26\x30\x03\x37\x4c\x87\xc1\x74\x08\xcc\xd0\x0d\xd3\x65\x30\x5d\x02\x33\xb2\xac\xb9\x86\xa9\xf2\xd0\xe1\xa9\x5b\x31\xa0\x2d\x64\x4a\x17\xd9\x74\x83\x2c\x70\x6d\xcc\x83\x2c\x10\xa1\x7c\x82\x2c\xf0\x1b\xc7\xa2\x67\x61\x96\xbe\x8f\xb3\x60\x2a\xea\x8c\x9e\x07\x59\x40\x6f\x90\x3c\x40\xbb\x8e\xda\xa1\xcc\x2b\x3c\xce\x78\xed\xe2\xc6\x09\xc0\x5b\xc4\x78\x53\x5e\x09\x34\x4f\x64\x95\x3f\xfe\xf8\x23\xda\x82\x83\xb7\xd6\x72\xb7\x25\xcf\xdb\x24\xc4\x7f\xa1\x6e\xc7\x62\x0e\x9d\x96\x97\x68\x0f\x81\xd9\x7d\x3c\x8d\xe3\xa4\xa6\x10\xb9\xa9\xd9\xde\x7d\xc4\x01\xec\x2b\xb4\xa7\x3c\x99\x13\x47\xa0\x5e\xab\xd5\x24\x6e\x0f\xd1\x76\x8f\xe6\x4b\x7b\x0c\xc1\x44\x7b\x75\x6a\xb0\x71\xdb\x67\x79\x51\x86\xb3\x34\xce\xaa\x6f\xcb\x5b\x67\xed\xea\x98\x69\xd6\xac\xae\xc8\x36\x6b\x49\x89\x2a\xc4\xf6\xca\x10\xfb\xca\x49\xec\xab\x55\x89\x7d\xe5\x24\xf6\x55\x59\x62\x6d\x6a\xd5\x4b\x54\x35\x41\x3e\x0f\x36\x05\x39\xf5\xdc\xf7\x07\xc1\xe1\x9d\x5e\x63\x80\x3b\x8a\xae\x9b\x54\xb9\x79\xe5\x0b\x6e\x43\x6a\x36\x6f\x07\xfb\xbe\x64\x8e\xf1\xde\xdb\x6f\x95\xce\x3d\x3c\x47\x5c\x28\xef\xf8\x5f\x60\x02\x47\x18\x2f\x4f\xdc\x67\x17\x2f\xd9\x29\x59\xad\xf6\x52\x3b\x96\x78\x59\xf9\x3c\x82\xf2\xc2\x4b\xed\x2c\xe2\xa5\xf7\x10\xa2\xf8\xc4\xe1\x1d\xcb\x0d\x0c\x63\xc8\x22\xf0\x8c\xa0\x4f\x75\xd0\x12\xc9\xca\xe1\x1a\x42\xae\xa8\x07\x03\x2b\x5c\xca\x14\x27\x74\xf0\x28\x8f\xff\xad\x85\x17\x3e\x7f\xb0\x78\xc1\x77\xbb\x92\x47\xd0\x20\x5f\xdd\x37\x1c\xe8\x2f\x81\xa4\x61\xfa\x5a\x36\x50\xda\x40\xfa\x11\x1a\xc8\x49\xb4\x87\x02\xf4\x10\xd5\x6a\x03\xf4\x03\x5d\x1c\x6b\xff\x97\xfc\x1c\xd5\x89\x18\x58\xa2\x87\x28\x53\xda\x13\x01\x8b\x23\x32\x4c\x29\x9d\xa9\x34\x4e\x79\xb7\x83\x1e\xa1\xb4\x0e\xc5\x06\x86\xd3\x9b\xc0\xca\xd8\xff\x97\xc3\x0a\x96\xe3\xda\x10\xfd\x80\xfe\xef\xcd\x60\x65\x6c\x82\x0a\xb1\x1a\xa0\x3f\xd1\x10\xfd\x49\x10\x5b\x3f\x32\x86\x02\x58\x88\x0c\x41\xa4\x36\x40\x9f\xd7\xdc\x39\xea\x69\xf5\xb1\x2f\x4d\x7a\x61\xe2\xfd\x32\x41\xd6\xf8\x3d\x31\xe3\x8a\x22\xcc\x06\xbb\x1a\xcf\x65\x31\x0f\xf4\xaa\x61\xcd\xd8\xbc\x14\x4e\x2e\xaf\x9f\x6f\x39\xee\x7e\xe5\xc3\xdb\x17\xbe\x64\x7c\x31\xed\x30\x5f\xcf\xc8\xff\xfa\xf9\x96\xd3\x65\xc0\x3b\x08\x05\xb9\xea\xd7\x35\x04\x2b\x85\x76\x28\x1e\x38\xf5\x96\xdf\x3a\x06\x8e\x5e\x2a\x13\x03\xf1\x72\x16\x0c\xc9\x60\x68\x99\xe1\xed\xf1\x60\x60\xf6\x98\xc8\x6c\xf6\x74\x5c\x72\x33\xb0\xb3\xc8\xd6\x1e\x0f\xa8\xce\x77\x7d\xc5\xec\x9f\x1f\x93\x8d\x4e\xb6\x07\x2c\xce\x10\x3a\xc4\x78\x34\x08\x86\x9f\x58\x5c\xcd\x59\x3c\x82\x29\x45\x78\x46\x8c\x37\xbc\x3c\x38\x7c\x46\x54\x20\x87\x7a\x00\x6e\x4e\xf0\x55\xf3\x96\x03\x0f\x17\xda\xca\x6b\x52\x01\x73\xe6\x11\xb3\xfe\xe0\xf0\x59\xf3\x45\x44\x63\x95\x83\x03\xd5\xe1\x33\x87\xc3\xcf\xdc\xe3\x2e\xc3\xdc\x0c\x73\x5c\x66\xfc\xaa\x29\x0b\x41\xc5\x15\x12\xfa\xe8\x3a\x67\x56\x42\x79\x50\x20\x35\x94\x87\x0e\xcf\x63\x94\xff\x8c\x2f\xd3\x2c\xc1\xc1\x6c\x3f\x1a\x31\xea\x1c\xde\x91\x31\x73\x8b\x15\xd5\x35\x58\x03\x2e\x25\xfb\x1d\x9e\x61\x08\x32\x0e\xce\x98\x74\x9c\x58\xac\x4c\xb8\x3f\x1f\xe1\x65\x46\x5f\xbb\xd5\x77\x7c\xfe\x8c\xc5\x4c\x85\xd6\x9b\xe9\x34\x1c\xe2\x1a\x47\x41\x9c\xd4\x0b\x5c\x5c\xfe\x93\xda\xa8\x3d\xc7\xff\x94\x51\xbb\x46\xef\x82\xe3\xf0\x24\x4c\x2b\xf7\xed\x17\xe3\x9b\xf7\x92\xa0\x01\x1e\xc6\x33\x76\xeb\x9e\x30\x44\x18\x2f\xd2\x72\x2c\x23\x48\x2c\xa5\x8e\xe7\x50\x53\x2b\x24\xc1\xb8\x1b\x61\x6f\xd8\x60\xbf\x77\x2e\x83\xb5\x9c\x3f\xd1\x9d\xc6\xd5\x70\xcc\xb4\x79\xf9\x19\x32\xbb\x9e\x3b\xb7\x34\x02\x1a\xed\xa1\xf0\x9c\x0d\x61\xcb\x33\x13\xe3\x73\x8c\x8e\x7e\x83\xfd\x67\xba\x18\xa4\xf8\x7f\x17\x38\xca\x72\x76\xcf\x80\xaf\xb8\xc0\x50\xe8\x00\x6d\xe2\x63\x0c\x88\x3d\x08\xe4\x8f\x71\x39\xa6\x1d\x0d\x80\x35\x51\x49\x03\xe9\xa4\x6c\x6e\x22\x36\x22\xf2\x9d\x33\x5b\x6e\x7e\xd4\x18\xea\x7a\x2e\x3d\x04\x21\x12\x8c\x68\x14\xf6\xd1\x16\xbf\x30\x2c\xb8\x3a\x71\xf8\x2c\xcf\xe1\x9a\x2f\x3a\x55\xe2\xd4\x6d\x77\x6f\x95\x8f\x6f\x5d\xf9\x40\xff\x3d\x4f\x70\x8a\x93\x73\x4c\xd5\x90\x78\x41\x54\x79\x45\xfd\x00\x33\x46\x90\x85\x83\x29\x93\xc0\xe8\x79\x82\x9e\x25\x61\x10\xa1\x9f\xe8\xf5\x4c\x34\x0e\xa7\x18\x47\xc3\xe6\x10\xaa\xe0\x21\x9f\x21\x02\xb6\xc1\x3f\xef\xdf\x01\xc8\xbf\x83\x08\xbd\x4c\x16\x83\x4b\xf4\x71\x42\xfe\xd3\xbc\xc0\x83\xff\x3e\x9b\x05\xe1\xb4\x39\x8c\x67\x6e\x7d\xe7\xfd\x3b\xde\x5c\x8e\xda\xa3\x02\x95\xd6\x7e\xee\xc8\x7c\x2f\xd1\x90\x6c\x14\x68\xca\xa4\xbb\x77\xee\x90\x4e\x07\xd6\x13\xe9\x90\xc0\x48\x44\x8d\x42\x75\x18\x75\xfa\xeb\x6f\xb4\xb9\x19\x9f\xe3\x64\x3c\x8d\x2f\x48\x19\x58\xf8\xda\x3c\x1d\x28\x29\xd7\xde\xae\xff\x40\x60\x9f\x88\xcf\x1d\xf5\xf3\xae\xf9\xb5\xcb\xd6\x30\xd6\x18\xe0\x09\xa8\x90\x6a\x45\xbb\x9b\x9b\x88\x37\x8b\x06\x6d\x02\x02\x28\x43\xd3\xad\x27\xa2\x48\x47\x16\x11\x30\x77\x00\x01\x0a\x44\xa1\xba\x3a\x14\x03\xbb\x03\xa8\x30\xb8\x2b\xf8\x97\x30\xa4\x0a\xf1\xf0\xe1\xa0\xab\x7c\x87\x7f\x38\x0c\x05\x79\xf8\x70\xd0\x79\x72\xd7\x0f\xf0\xf0\xe1\xa0\xcd\xbe\x93\x7f\x81\x70\xde\x28\x3c\x3c\xdc\x03\xca\x9f\x3e\x65\xf9\x20\xd5\xd7\x1d\x6a\x02\xd4\xde\x32\x84\xec\x96\x44\xb1\xd6\xb2\xd5\x66\x56\x3f\x09\xca\xa4\x1e\x01\x22\x2f\xaf\x4c\xee\x60\xd3\xa3\x36\xa4\xff\xd5\x79\x84\xbd\xa4\x27\x48\x9c\x95\xe4\xcb\x3a\x63\x18\x65\x08\x36\x37\x11\x59\x25\xe0\x24\x06\x85\xca\x44\xa2\x93\xc7\x9a\x69\x1b\x29\x82\xfa\x52\x14\x47\xd3\x4b\x3a\x1d\x9f\xff\xfe\xe6\xdd\x73\xf4\x11\x3d\x45\xbb\x50\x27\x6f\xb0\xed\xc2\x82\x9e\xc5\xe9\xc4\xb2\x6f\x9c\x5e\x3e\x97\xb4\xbd\x80\x98\x57\x4d\xcf\xeb\xaf\xa8\x73\x56\x55\x39\x2d\x70\x43\x87\xb1\x5b\x65\x32\x51\x34\xcb\x3b\xcc\x42\x3d\x4f\xe3\x41\x7e\xad\x07\x94\x06\x77\x23\xf9\x3a\x10\x5a\x41\x0f\x42\xc5\xba\x10\xd7\x0e\x08\x63\xdb\x3c\x4f\x45\xd1\x1d\x53\x35\x62\x9f\x15\x5c\x75\xd3\x73\x15\xa5\x08\x79\x14\x23\xb4\x9a\x72\x84\x2a\x2a\x48\x48\xd7\xe7\xec\x4d\x97\xe4\x7b\x75\xef\x25\xa6\xc6\x13\x43\xb3\x12\xe0\x8a\x82\xe5\x55\xb1\x14\xe0\x0a\x9a\x56\xef\x56\xd3\xfa\xd6\x35\x2d\x8f\x7e\xe5\x31\xef\xbc\x7f\x97\xaf\xe7\x54\x35\xef\x38\x44\xba\x29\xcb\x6f\x85\xf8\x3f\x4f\x88\xe7\xee\x66\x6f\x40\x64\x1f\x45\xc3\x04\x43\xe4\x06\x56\xb9\x51\x25\xd3\x43\xe4\xe0\x3e\x42\xd4\x99\xc6\xf3\x05\x4e\xcb\x3f\xa3\xd6\x77\xb5\x38\x94\x5d\x15\x8a\xf7\xdb\x04\xa6\xc2\x2a\xb0\x75\xbb\x0a\x7c\x17\xab\xc0\x8b\x29\x1e\x66\x49\x1c\x85\x43\x74\x10\x8f\xf0\x20\x8e\x8b\x0d\xfe\x2f\x0e\xf2\x0c\xfe\xf4\x6b\xa5\x15\xe1\xc5\x81\x6e\xf0\x27\xcf\xeb\x5a\x01\x54\xd1\xae\x0b\x10\xbd\x5c\x9e\x15\x93\xe0\xa3\x4d\xa4\x9b\xc2\x6f\x84\x57\xc2\x8f\xa7\x5e\x3a\x28\xb6\x9b\x01\x4c\x85\x79\xfc\x7d\x27\x47\xfe\xcf\x99\xc7\x6f\x16\xd9\x7c\x91\x95\x3f\xb4\x7b\x93\x7b\x68\xf7\xa6\xfa\xa1\x9d\xa9\xd5\xbd\x31\x0e\xf1\xde\x7c\xdd\xe3\xa0\x1b\xd7\xea\x6c\xdb\xbc\x78\xb3\x5e\xcd\x2e\xa7\xa1\x6f\x45\xbb\xfb\x27\xed\xb0\xdf\x18\xc7\x9a\x3e\x25\xea\x4d\x89\x43\x8b\x37\x15\x0f\x2d\x6e\xb3\xd8\x7d\x1f\xc2\x77\xff\x97\xe3\x23\xf4\x47\xf3\x71\xa7\xcb\x1d\xc4\x51\x9a\x91\xe9\x7d\x76\x69\x49\xdf\x79\x30\x6a\xee\x47\x69\xf8\x07\x81\x16\xb9\xe0\xe6\xc1\x48\x15\x7f\xa3\x20\x0b\x94\x83\x50\xdf\x01\x68\xaa\x9f\x80\x92\x52\xc7\xd2\xe1\x57\x73\x00\x7e\xa2\x83\x0e\xcc\xb4\x22\x03\x5f\x42\x11\x60\x8a\x45\x94\x09\xca\x8c\x60\x56\xe0\x8b\xf7\x96\x7e\xb3\x2a\xa3\x2f\x1e\xe9\x98\xfd\x97\xf1\xdd\x6a\x8d\xc6\xb4\x99\x06\x29\x8d\x9c\x85\xe6\x71\x1a\xea\x37\xf0\x49\xa3\xe4\x3b\x29\xff\x36\xe6\xc4\x8a\x16\x1e\x1a\x18\x3d\x42\x6d\xa3\x91\xb7\xc1\x48\x3e\x43\x47\x89\x6c\x23\xfa\x6b\x2a\x4a\xd4\xb6\x64\x48\x2d\xbd\x11\x19\x52\x4b\x85\x76\x05\xd7\xd2\x3d\xb3\x1f\x1a\x15\x71\x3f\x44\xee\x81\xbb\x88\x1c\xcc\x61\x72\xc4\x4f\x38\x53\x12\xce\x6b\x43\x45\x0d\xf8\xa2\x37\xf3\x47\x4e\xa1\xb9\xa6\xa3\xf9\x88\x6c\x7f\x19\xed\xf2\x20\x48\x41\x81\xad\x2b\xd6\x0d\x09\xa3\x1a\x0f\xb5\x77\xef\x5c\x39\xe5\x26\x9f\x2e\xcb\xc7\x9d\x6e\x25\xd9\x79\xbd\xc4\x64\xb7\xb2\xf3\x4b\xc9\xce\xa3\xe3\x37\x08\x42\xe2\x96\x13\x9d\x47\x2c\x80\xee\x75\x45\xe7\x57\x17\x87\x72\x4a\x14\xc8\x43\x87\xa8\xa2\xe9\x00\xdc\x11\xe8\x9a\x49\x10\x8d\xe2\x59\xcd\x92\x80\xf5\x7a\xd3\xd0\x94\xf2\xeb\x61\xa9\xc3\x4e\x2c\x29\xd7\xe9\x9d\x36\x48\x75\xb7\x82\xca\x14\x54\x9c\x39\x2b\x09\xaa\xef\x3b\xf3\xc2\x7f\x94\xa0\xda\x3c\x7a\x71\x80\x1e\xef\x3c\xde\x79\xd4\x46\x8c\x37\xd0\x6b\x9c\x4d\xe2\x11\xea\xf8\xa4\x15\x84\xf6\x5e\x55\x5a\xed\x8f\x46\xf4\xfe\xa0\x3e\x21\x4a\x48\x01\x3e\x7b\x49\x69\xfa\xc7\x27\xad\xd6\xc0\xff\xe0\x24\x86\xdc\x61\xd9\x04\xa3\x04\xa7\x8a\x5c\xd4\x08\x21\x70\x8c\x62\xf2\x6c\xe1\xbd\x92\x2c\x60\x13\xf1\x2f\x86\x83\x3e\x1b\xbd\xcd\x43\xd5\xb4\x3e\xf7\xc4\x8e\x23\x8c\x66\x71\x82\xa9\xf2\xf8\xe8\x11\xd0\xe6\xeb\x45\x3e\xdf\x1f\x3d\x2a\x39\xc1\x61\x3c\xab\x4c\xf0\x9d\xeb\x45\x39\xbf\x9d\xe0\x5f\x6c\x17\x87\xa2\x38\x9e\x97\x53\x43\x7e\xe1\xec\xe8\x9d\xd9\x82\xd9\xfd\x73\x42\x82\xe4\xf1\x9c\x68\xaa\x12\xd3\x5d\x2f\xdc\xec\x2d\xd3\x7d\x29\xa6\xfb\x1f\x45\xf8\xe5\xb3\x9c\x22\x03\xbf\xa2\xf2\x5b\x7a\xe3\xac\xee\x6f\x2d\x05\xb8\x56\xcb\x57\x81\xeb\xe8\xf3\x67\xf3\xd5\x4a\x4b\x8c\x9b\xe2\xe2\xb8\x02\x9b\x9b\xe8\x57\x52\xbf\x5e\x2e\xb4\x22\x05\x80\x65\x41\xc0\x5c\x4c\xc2\x29\x46\xb5\x7b\x35\x79\xd7\x5a\xc6\xe0\x86\x1b\x87\x56\xcc\x6d\xe1\xc2\x69\x19\x32\x43\xb1\x24\x21\xdd\x44\x69\x5e\xec\x86\x78\xbc\x65\x56\x2f\x85\x83\x2a\xc9\x92\xef\xfb\xe2\x96\x23\x47\x17\x4d\x92\x75\xb3\x72\x45\x66\x42\x82\xd6\xbe\x7e\x9e\x8f\x9b\x4d\x12\x5e\x2e\x26\xb6\x15\xf3\x5a\x7c\x39\x7e\xb9\xdf\x96\xb1\x9e\xc9\x93\xf2\xd1\x4e\x04\xee\xba\x20\xfa\x36\x48\x53\x32\x91\x1f\x11\xd4\x46\xe8\x67\x7c\x89\x9e\xe3\x24\x3c\xa7\x39\x21\x0f\x79\xa7\x74\xf2\x63\x4e\xbf\x7d\xf6\xf3\xf3\xc3\x8e\x6c\x4d\x3c\x97\x4c\x3c\x7e\x10\x47\xe3\xf0\x6c\xc1\x32\x51\xc6\x90\x15\x32\xcd\xcb\x2f\x99\xc4\x73\x9c\x64\x97\xe8\x6f\xba\x2d\x86\xdb\xa4\x20\x7c\xdf\x4f\x68\x8e\xe3\x94\x3c\x84\x11\x4b\x17\x90\xc5\xe2\x2e\x4d\x13\x3d\xc7\xe3\x60\x31\xcd\xfa\xa8\x87\x6a\xed\xce\x2e\x24\x52\xae\xfb\xea\xf7\x24\x34\xc7\x09\x4f\x64\x2e\xab\x23\xfd\x5f\x84\x66\x98\xb1\xe4\x99\x29\x54\x25\x37\xf5\xca\x87\x2c\x46\x73\x9c\x8c\xe3\x64\xa6\x54\xae\xd5\xac\xa4\x7f\x1c\x8e\xcf\xfa\xbe\x5e\x46\xf4\xe0\xeb\x18\x62\xce\xb4\x3b\xbb\x9b\xdd\x8e\x11\x82\x9b\x92\x42\x51\x37\x3e\x49\x84\xb4\xc6\xaf\xea\x79\x09\x49\xf3\x12\xc8\x93\x51\x19\x49\xd6\xe2\xf3\xad\x38\x8b\xe8\x1b\x90\x73\x57\x84\x54\x35\x63\x28\xe9\xbf\xa1\x8b\x6f\xf8\x7d\xb3\x71\x9c\xc0\x2e\x46\x36\xba\x86\xc4\xa0\x9f\x46\x63\x2b\x69\x3c\xe5\x76\xbe\x7b\xd4\xdc\xb0\xaa\x14\xfc\x5b\x0e\xd6\x2e\x4d\x3f\x79\xed\x6a\x1a\xfa\x30\xb6\x5a\x2d\xb3\xe2\x9c\xec\xf5\xc3\xf1\x99\xdb\xf1\x82\x0c\xc4\x9e\xf8\xc9\x19\x8f\x80\xfb\x82\x61\xd8\xf3\x1d\x8e\x2b\xe8\x0d\xba\xb2\x22\x68\x95\x7c\xb3\x73\x56\x37\x70\x0b\x7f\x68\x96\x2c\x9c\x06\xd3\x0c\xed\xc3\x7f\xaa\x27\xa2\xe5\xd7\x68\x94\x7b\xed\xd7\x61\x3b\x9a\x48\x7d\x34\x6e\xb2\xa8\x24\x35\x4e\x4c\x03\xf0\xf3\x0e\x2a\x03\x57\xc7\xd5\x28\x59\x29\xb7\x8b\x3e\xf4\x4e\x07\xc2\x30\xf3\x24\x85\x65\xb7\xec\xe1\xee\x3e\xe3\x55\xc2\x3e\x54\x06\x35\xc4\xe8\xb8\xdd\x12\xfd\x09\xca\x41\x37\xa5\x9d\x4d\xd3\xcd\x5b\xf6\x1c\x57\xa8\x27\xd0\x93\x8f\xa2\x11\x5e\xba\x4a\x9c\xb4\x96\xcc\x00\xe4\x88\xd6\x59\x10\xa2\x4b\xa0\x22\x94\x65\xf1\xc6\x9b\xbf\x5e\x62\xc3\x0b\xc9\x37\xde\x42\x7c\xc9\xdb\x23\xa3\xd2\x64\x4f\x2e\x27\x0c\xb9\xb4\x50\x50\xf9\xa2\xc0\xc9\x42\xff\xc8\x14\x75\x83\x40\x1e\x17\xe9\x29\xc7\xc7\xe9\x5c\x20\x88\x64\x79\x8e\x79\xb2\x6c\xe0\x40\x99\xc6\x57\x52\x6d\x8e\x19\x62\x19\xbd\x65\x6a\x60\xfb\x7b\x71\x36\x06\xa8\x5f\xeb\x62\x67\xef\xda\xe0\x22\x8b\x91\x7c\xc5\x08\xf7\x20\x72\x24\xfa\xd8\x5d\x75\xa8\x46\xb3\x63\xd5\x3a\xb0\xd0\x7c\x39\xda\xd4\x97\x43\x19\x3e\xaf\x33\x07\x02\x79\xae\x35\x01\xbd\x27\x7a\x5a\xfd\xe8\xea\xeb\x32\xfd\x8d\x8a\x42\x41\xb9\x88\xe5\xbd\xaf\xbe\x73\x07\xac\x52\x9a\xf8\xe3\xcd\x3b\x9d\x1c\xb8\x3a\xe5\xb8\x71\x6d\xf5\xdb\x47\xea\x03\xf3\x91\xfb\xc0\x28\xa3\xf9\x04\x7d\xcc\xe9\x3d\xf2\x27\x4b\x9c\x7c\x04\x77\x18\x8b\x90\x93\x8f\xa6\x5b\x0c\xff\xbb\xb2\x5f\x9b\x01\xa7\xc8\x9f\x22\x1c\x98\x6d\x1a\x1a\x75\x0d\x89\x21\x24\x4e\x5a\xa7\x0f\x1f\xe6\xbb\x14\x29\x95\x2b\x5b\x5f\x2e\x37\x1c\x41\xcc\xd8\x5a\x26\xcb\xe5\x39\x50\xaa\xdb\x88\x6b\x2d\xe8\x65\x82\xcd\xe4\x2e\xe4\x15\x17\xf1\x75\xa9\x96\x61\xea\x4a\xb7\x5f\x1c\xbd\xc6\xa1\x1a\xac\x21\x88\x0d\x55\x11\x84\x66\x48\x95\x42\x9f\x9a\x50\xad\x58\x03\x79\x74\xd3\xeb\x54\x93\xab\x9b\xca\x20\x3b\x62\x2b\xe9\x53\x60\x1a\xc8\x54\x54\x59\xb7\xeb\x6a\x31\x01\x2a\x50\x9e\xae\xf2\x7c\xd1\x68\x6d\xee\x40\x3d\x66\x0a\x5d\x9e\x13\xf6\xea\xb4\xb1\xf3\x7d\xdf\xa1\xaf\x90\xd6\xbd\x38\x39\xfa\xcd\xda\x8e\xbc\xe9\xb5\x7d\x59\xaf\xff\x09\xd6\xa5\x63\x70\xce\x3c\xe0\xce\xbb\xd4\x88\xa4\xbe\xcc\xb3\x23\x09\x3c\xde\xe1\x45\x1a\x0c\xa6\x98\x85\x03\x53\xd0\x39\x46\x6a\xaa\x45\x5a\x8b\xf9\xe6\x27\xa4\x67\x58\x53\x96\x85\x77\x90\x4d\x19\x31\x47\x5b\xe6\x63\x6c\x5b\x92\x04\x3c\xc4\x58\x09\x53\x14\x20\x9a\x80\x19\x9d\xe3\x24\x85\xa8\x65\x93\x20\x43\x11\x3e\x9b\xe2\x61\x86\x47\x44\x0c\x0f\x59\x4a\xd5\x8c\x19\x7c\xb2\x18\x4d\xc3\x2c\x9b\xe2\x47\x34\xc0\x65\x53\xaf\x14\x27\x49\x9c\xa0\x51\x8c\xd3\x68\x23\x43\xc1\x78\x8c\x87\xb4\x2c\x45\x6a\x23\x45\x29\x1e\x2e\x92\x30\xbb\x6c\x88\x82\x83\x45\x86\xc2\x0c\x0a\xf1\x12\x61\x96\x8a\x80\x0a\xe1\x34\xcc\xd8\x25\x6e\x9a\xd7\x35\x24\xf2\x79\x86\x23\xba\x1e\xa4\x2e\x43\x19\xed\x90\x57\x94\x38\x61\x2e\x33\xde\xaa\xe3\xb7\x6a\xd2\xb6\xfc\x4d\xca\xcf\xaa\x1b\xb4\x77\x83\x21\xbd\xb7\x61\xd7\x70\x9e\xb7\x5b\x08\xd9\x0e\x8d\xac\x5e\xd8\xbb\x4f\xfb\x43\xb4\x4b\x7e\x39\x12\xc7\xfd\x7c\xd2\x3a\x6d\xa0\xda\xcf\x27\xdd\x53\x16\x2c\x00\x7d\x26\x8f\xec\x28\xa0\xbd\x5d\x77\x24\x91\xfb\xf9\xa4\x4d\x0b\xb5\xf4\x42\xdd\xfc\x42\x1d\x5a\xa8\xad\x17\x6a\xe5\x17\xea\xd2\x42\x1d\xbd\x50\x5b\x14\xd2\xcb\xb8\xb2\x23\x59\x5d\xc6\x6f\x19\xfa\x3a\xed\x40\x74\xda\x81\xbb\xd3\x6c\x7c\x94\xee\x62\x34\xd1\x03\x93\xf1\x98\xa7\x1d\xa4\x48\xd3\x20\xab\xad\x16\xf9\xe2\xa2\xd7\x1e\x88\xae\x5e\x73\xdb\x59\x73\xa7\x54\xcd\x2d\x6f\xc7\x2b\x75\x18\x35\x77\x4b\xd5\xdc\xf6\x8d\x4e\x43\xa9\xc3\xa8\xb9\x65\xd4\x5c\x3c\x90\x07\x41\x92\x5c\xa2\x81\x99\x4e\x95\x0e\xd5\x80\xc6\xbf\xb0\x2d\x19\x19\x1d\x7c\x22\x7a\xd2\xcb\x34\xc3\x33\x34\x8e\x17\x09\xca\xc2\x99\x39\xf6\x15\x83\xf2\x46\x78\x99\x1d\x93\xd9\xe7\x8f\x1f\xeb\x88\x78\xfb\x3a\x1e\x85\xe3\x4b\x2a\x09\x29\x1f\x96\xc0\x62\xd7\x8f\xc5\xc1\x09\xbd\x38\xf0\xc7\x09\xa4\xbc\x84\x68\x2b\x56\xa6\x38\x57\x92\xdc\xdf\x50\x8a\xb3\xc5\x5c\xff\x90\x73\xa3\xa3\x78\xb3\x7f\xf4\x1b\xbd\xda\x91\xb7\xc3\x3f\xfa\xed\x43\x0b\xed\xa1\xa3\xdf\xec\xd4\x68\x0a\x48\x9b\x82\xb4\x9d\xd1\x8c\xd5\x29\x0d\x43\x99\x2e\x06\xe7\x98\xa8\x0a\xbe\xad\x7f\x8b\x06\x3f\x86\xb6\x69\xf4\xe3\xcf\x88\x3e\xf9\xa2\x1f\xab\xe0\x2c\xcc\xb1\x80\x97\xc7\xa1\xee\x30\xc7\xa2\xd9\x8e\x68\xb6\xad\x35\xdb\x2e\x6a\xb6\xad\x37\xdb\xae\xd6\x2c\x84\xd1\x09\x5b\x7c\x0a\x92\x4a\xc2\x8e\x3e\x03\x7d\x45\xbb\x50\xb4\xc3\x27\x33\x14\x6d\xe9\xd3\xd4\x33\x22\x8c\xad\xf3\x44\x2b\x02\x6e\x6d\xd1\x7d\xbd\x19\xdb\x9f\x7e\x6c\xd3\x8f\x6d\xe7\xc7\x0e\xfd\xd8\x71\x7e\xec\xd2\x8f\x5d\xe7\xc7\x5e\x5e\x9b\x5b\x79\x6d\x6e\xe7\xb5\xb9\x23\xda\xcc\xb1\x48\x95\x92\x3c\xa8\xba\xf4\x41\xe5\x24\x10\xb2\x8d\x14\xea\x3d\xa2\xb5\x24\x77\xf5\x1a\xaf\x15\xed\xa3\x94\x64\xd6\x41\xdc\xd4\xf9\x97\x77\xe8\x5c\x79\xcb\x0c\xa4\x90\x0e\x7d\x4c\x43\x0d\xfd\x01\x4c\x88\x6a\x7f\x90\xb1\xe7\xb3\x04\x9e\xc5\xda\xfb\xc4\x2c\xd8\xa6\x05\x3b\xac\xe0\x8e\x51\x70\xcb\x5b\xb0\x43\x0b\xf6\x58\xc1\xb6\x51\x70\xc7\x5b\xb0\x4b\x0b\x6e\x9f\x0a\xd4\xb4\x82\x6d\x59\xf0\x5a\xab\x58\x5e\x94\x7a\x8a\x08\x8f\x1d\x7f\xcc\x52\xb2\xb3\xe0\xf1\xf0\xb8\x4a\xf4\x78\x5e\x0f\x13\x70\xa2\x1e\x57\xfc\x78\x27\xbe\xce\x4b\x78\x48\xc9\xd1\x2b\x6e\xd3\x1d\xe7\xdf\xa2\x53\xb9\x5f\xf8\xf1\xc8\x93\x5b\xf9\x31\x3c\xa7\x5f\xb6\x7b\x9b\xdd\x8e\x69\x96\x13\xd3\x44\x30\x6c\xad\xe4\x55\x28\x6d\x7e\x68\x5f\x14\x15\xd4\x70\xf8\x39\x0e\xce\x31\x8a\xa7\x23\xaf\xa8\xad\xa0\x3f\x1c\x7c\xa0\x83\x7b\x60\xc6\x3b\xd4\x5a\x3c\x08\xa6\xc3\xc5\x94\xcc\xb0\x08\x5f\x78\x9b\x3d\x60\x89\x60\x0e\x68\x22\x98\xd6\xb2\x37\xea\xc2\xff\xa1\x87\x5c\x43\x33\xf3\xb5\x1c\xb0\xbc\x30\x07\x34\x2f\x4c\x6b\xc9\x4a\x74\x21\xa6\xfc\x01\x57\x50\x5b\x75\xf4\x14\xd5\x0e\x3e\x28\xcf\xff\x42\x6d\xd4\x47\xad\xba\x5d\x63\x87\xd5\xd8\xa1\x35\xb2\x0a\x7b\xac\xc6\xb6\x51\x63\xbb\x44\x8d\x5d\x56\x63\xd7\x22\xab\x46\xdb\xd1\x6a\xec\x94\xa8\xb1\xc7\x6a\xec\x39\xa9\xee\x1a\x35\x76\x4b\xd4\xb8\xc5\x6a\xdc\x72\x52\xdd\x33\x6a\xec\x95\xa8\x71\x9b\xd5\xb8\xed\xa4\x7a\xcb\xa8\x71\xab\x44\x8d\x3b\xac\xc6\x1d\x27\xd5\xdb\x46\x8d\xdb\x85\x35\x4a\xb5\x9f\x56\xaa\x15\xdf\x31\x8b\x9b\xb7\x63\x04\x4f\x93\xd5\xe7\xec\xd1\x35\x26\x11\x81\x3a\x5b\x82\xac\x0e\x09\x69\x07\x8e\x24\x1c\x3c\x5d\x7e\xb2\x18\x66\x68\x12\x9e\x4d\x50\x10\x8d\xd0\x34\xbe\x40\x41\x72\xb6\x80\xf0\x2f\x70\xcd\xf9\x7f\x17\x41\x62\x25\xee\x81\x06\x02\xb4\x47\x5a\xe1\x5a\x9c\xc3\x78\x70\x36\xa0\x20\x74\x95\x70\x6e\x9f\x38\xcd\x1a\x06\x09\x4e\x17\xd3\x0c\xc5\xe3\xbc\xe6\x27\x74\x09\xa8\x9d\x05\xe8\x01\x3a\x0b\xe8\xd5\x95\xf6\x4e\x1d\x3d\x44\xf4\xd5\x80\xbd\xda\x82\x57\x03\x78\xe5\x42\x72\x4a\x2b\x52\x48\xa1\x5b\xc2\x07\xe8\x6c\x09\x23\x5c\x07\x86\xe0\x00\x42\xed\x54\x00\x5c\x89\x60\x08\x41\x7f\xbc\x79\x87\x20\x9c\xa4\xfa\xf1\x27\x2a\xe1\xce\x26\xe8\x4f\x74\x36\x2d\x2b\xe4\xdc\x46\x95\x3f\x98\x88\xfb\x89\x8a\xb8\x5a\xed\x27\xb9\x7c\x93\x95\xec\xa7\xff\x9f\xbd\x77\x4f\x8e\x1b\x47\x1a\x07\xff\x6e\x9f\x02\xdf\x6c\x8c\x5d\x6a\xd1\x12\x01\xbe\x40\xdb\xea\x5d\x59\x8f\x96\xd6\xb2\xe5\x95\xe4\xb1\x3b\x1c\xb6\x87\x0f\x50\xc5\x76\xa9\x4a\x5f\x15\x65\x49\x3d\xed\x89\xbd\xc6\x1e\x61\xcf\xb1\x37\xd9\x93\xfc\x02\x09\x90\x04\x49\x10\x2c\xc9\x72\x7f\xd3\x33\xd2\xc4\xb4\xab\x0a\x89\xcc\x44\xbe\xf0\x4e\x28\xc3\x82\x15\x09\xe0\x37\x01\xfc\x1a\xa0\x6d\xcf\xef\x64\x34\xfc\x59\x44\xc3\x91\x20\x53\xf7\xb7\x3f\x97\xf1\x0f\xfa\xdb\x55\xc4\xa9\x75\x71\x10\x89\x83\x94\x38\x70\x93\x01\xdc\xe1\xd0\x6e\x02\xd8\x26\x0e\x1d\x89\xdd\x29\xb1\x93\x26\x87\xa4\xc5\x21\xd6\x70\xe8\x4a\x1c\x6e\x89\xc3\x69\x32\xe0\x74\x38\x24\x4d\x00\x62\xe2\xd0\x93\xd8\xbd\x12\xbb\xdb\xe4\xd0\x6d\x71\xe8\x68\x38\xf4\x25\x0e\xbf\xc4\xe1\x35\x19\xf0\x3a\x1c\xba\x4d\x00\xd7\xc4\x61\x20\xb1\x07\x1f\x1a\x26\x52\x71\xe8\xb7\x38\xf4\x1a\x1c\x2e\xf5\xf0\xc7\xa2\x7c\x74\xa2\x5a\x6b\x5d\xe2\xd9\x89\xa1\xed\x2e\x81\xab\x60\x57\x85\xba\xef\xa4\xae\xa4\x96\xa9\x14\x1a\xcf\x38\x88\xdd\xa2\xee\xfe\xd5\xf9\x24\xe2\xdc\x5c\x15\xa8\x17\x9d\xcc\x33\x33\xaa\x29\xeb\x30\x56\x1b\x57\xa6\x45\xdd\xe6\xe3\x1d\x2a\xe4\x8a\x69\x0f\x4a\x05\x5c\xfa\x30\xb2\xd5\xdc\x1b\x79\xe2\xb9\x56\xbd\x29\xf2\xc4\xf3\x2d\xb9\x57\xf2\xc4\xc7\x5f\x3f\x58\xc1\x9f\x3b\x13\xe1\xfd\x7e\xd5\xfd\x7e\xd5\x77\xdb\xaf\x6a\xb9\x78\xbd\x9f\xd3\xde\xc9\xf9\x73\xed\xe1\xdc\xd5\xab\x70\x2f\xaa\xa9\xf9\x8b\xe6\xd4\xfc\xc5\x6d\xa7\xe6\x2f\x9a\x53\xf3\x17\xa6\xa9\xf9\xd0\x02\xf3\xfd\x4e\xd5\xfd\x4e\xd5\xfd\x4e\x55\xa3\xe4\x7e\xa7\xea\x7e\xa7\xea\x7e\xa7\xaa\x26\x7b\xbf\x53\xd5\x2e\xbc\xdf\xa9\xea\xf9\x7a\xbf\x53\x75\xbf\x53\x75\xbf\x53\x05\x7f\xf7\x3b\x55\xcb\x2d\xe2\xde\xef\x54\xdd\xef\x54\xdd\xef\x54\x29\x7f\xf7\x3b\x55\xf7\x3b\x55\xf7\x3b\x55\xf7\x3b\x55\xff\xc9\x3b\x55\x77\xb6\x47\x75\xbb\xdd\xa9\x65\xf6\xa5\x96\xd8\x91\xfa\x5e\x7b\x51\x7f\xee\xf7\x50\xee\xf7\xa2\xfe\xfd\xf7\xa2\xd4\xbd\xa3\x2d\x77\xf0\xa2\x93\xba\x73\xb4\xe5\x2a\xdb\x46\xf0\xe5\xfb\xef\x19\x89\x5b\x9a\xd5\xae\x91\x3e\xa9\x40\x79\x43\xdb\xb4\xad\x04\xd7\x38\xd5\x1b\xc5\x4a\xce\xf4\xee\x7a\xc5\x34\x2f\xd0\x22\x9e\x5d\x75\xf1\x1c\x57\xec\x1c\xab\xdb\x74\xe5\x9f\x6e\x34\x49\x3c\xbf\x7f\x52\x2e\x27\xdd\xf9\xf0\x32\xee\x0b\x76\xad\x5b\xc7\x6d\x52\xb4\xca\xfb\xe3\x83\x84\xa5\x50\xb8\x08\xca\xac\x12\x39\xfa\xab\x2a\xa7\x9e\xa5\x43\x59\x89\x77\x6d\xa5\xec\xdf\x37\x10\x75\x33\xa1\x35\x8a\x3b\x49\xd1\x74\x73\x7f\xde\x8a\xd1\xaf\x68\x55\xc8\x67\xb5\x24\xba\x82\xfe\x0a\xad\xea\xc9\xa5\x70\x19\x9d\xeb\x79\x86\x7e\xa3\xbb\x42\xa0\x28\xe0\x58\x7f\x31\x9e\xff\xcc\x35\x3e\xac\x9e\x2d\xed\x12\xbf\x7c\x55\xa3\x32\x9a\x5f\xe5\x2b\xb3\x15\xa2\x6f\x5e\x96\x2b\x57\x42\x60\x15\xa4\xf3\xfe\x3a\x57\x8f\x7e\xc9\xb0\x41\xb9\xba\xe4\x4c\x3c\xbf\x67\x41\xc4\xee\x5d\x0c\xd1\x12\x5d\x76\x61\x44\xf1\xa7\xd6\xc2\x48\x2d\xb4\xbc\x55\xf2\x6b\x2d\xce\xc1\x17\xe0\x61\x71\xb0\x59\xfd\xb3\xca\x67\x4b\x1f\x95\x37\x4d\x85\x1b\x4d\xc5\x92\xda\x54\xe3\x44\x39\xac\xa0\x8b\x07\xe3\xa4\x55\x36\xca\x1b\x26\xdc\x63\xb8\x5a\xa3\x35\x18\x6c\xbf\xb1\xd6\x86\xda\xfc\xbd\xd9\xd8\xdf\x79\xdd\x91\xf4\x29\x5e\x45\xf2\xf5\xa1\x7e\xd7\x60\xda\x7e\xc7\xa0\x35\x7d\x7a\x03\x79\x50\x34\x3b\x5a\xb5\xa9\xe7\x9d\xb9\x3b\x97\x45\x43\x57\x72\x58\xd6\xe0\xee\x5f\x75\xdc\xbb\xe5\xde\xc5\xa0\x77\xcb\xbd\xf1\x88\xb7\xdb\xc7\xb6\x86\xbb\x5b\xae\x36\xb7\x05\xec\xd0\xe4\x2c\xbd\x45\x0f\xbf\x3d\x9f\x9d\x37\x7a\x79\xf9\x03\x08\xe1\x0f\xc8\x8a\x97\x72\x72\xcd\x44\x73\xad\x75\x7e\xae\x78\x0e\x55\xa5\x9a\x43\x38\x24\x2a\xda\x76\xae\x39\xce\xba\x92\xf5\xab\xe5\xc5\x1c\xd5\x93\x26\x8a\x66\xc6\xb8\xa5\x06\x31\x9c\x46\x09\x68\xde\xc3\xe0\xf2\x34\x74\xe0\xd5\xc1\x17\xce\x17\xef\xc5\x7f\x82\xce\xfc\xf1\x63\x6d\x1f\x7e\x83\x70\x8f\x06\x1e\x40\xfa\x17\xf2\x36\x2e\xa2\xbb\xf1\x38\xc0\x74\x73\xaf\x93\x36\x6f\xf6\x3c\x0e\x64\x9e\x69\x6e\xb9\xdf\x6b\x9a\xf9\x6d\xcf\xf5\xfd\x91\xf3\xcb\xef\x36\x0b\xfc\x63\x93\x38\xf3\x50\xc5\x16\x6c\xfe\x85\x3d\xf8\x61\x94\xac\x20\x62\x63\x82\xe2\x6b\xb4\xf5\xff\xfd\xbf\xe9\x3c\x4f\xd0\x4b\xb6\x98\xe6\x93\x35\xb4\x39\x99\xa0\x79\x7e\x3a\x2e\x16\x48\xc2\xa7\x6b\x0f\x1e\xfc\x70\xc4\xd2\x7c\x51\xcc\xf3\xf8\x02\xf0\x47\xd3\x14\x92\xf2\xe4\x53\xb4\x98\x5d\xcc\x13\x06\xbf\xc4\xf9\x34\x9a\x5f\xf3\x70\x70\xb6\xb0\x64\x96\x86\x39\xfc\x3b\xbb\x28\xd0\x19\xc4\xf4\x04\x22\xab\x85\xa2\x39\x43\xe7\x6c\x7e\x96\x17\x05\x4b\xd1\xf9\x7c\xf6\x25\x4f\x59\x2a\x92\x4e\x70\x3f\xcd\x66\x93\xc9\xec\x32\x9f\x9e\xa2\x64\x36\x4d\x73\xe1\xc3\xbc\xd2\x19\x2b\x9e\x48\x8f\x7f\x8c\x9a\x6c\x2d\x60\x61\x58\xf0\x93\xcc\x52\x86\xce\x2e\x16\x05\xef\xa8\xa3\x7c\x0a\x48\xa3\x78\xf6\x85\x17\x9d\x5f\x43\x13\xd1\x74\x56\xe4\x09\xb3\x44\x5e\xa1\x49\xbe\x80\x95\x65\x95\xde\x34\x6d\x31\x93\xe6\x8b\x64\x12\xe5\x67\x6c\xbe\xd6\xc7\x43\x3e\x55\x05\x51\xf2\x70\x3e\x9f\xa5\x17\x09\xbb\x73\x36\x90\x6c\x5a\x3a\x4b\x2e\xaa\x3c\x18\xbc\xc6\xfa\x6c\x2e\x73\x64\x9c\x45\x05\x9b\xe7\xd1\x64\x51\x8b\x19\x74\x03\xd5\x14\xd6\xb9\x9e\x4f\xf6\xf6\x8f\xd1\xf1\xe1\xee\xc9\xdb\xcd\xa3\x1d\xb4\x7f\x8c\x5e\x1f\x1d\xfe\x6d\x7f\x7b\x67\x1b\x3d\xff\x05\x9d\xec\xed\xa0\xad\xc3\xd7\xbf\x1c\xed\xff\xbc\x77\x82\xf6\x0e\x0f\xb6\x77\x8e\x8e\xd1\xe6\xab\x6d\xb4\x75\xf8\xea\xe4\x68\xff\xf9\x9b\x93\xc3\xa3\x63\xf4\x97\xcd\x63\xb4\x7f\xfc\x17\x28\xd8\x7c\xf5\x0b\xda\x79\xf7\xfa\x68\xe7\xf8\x18\x1d\x1e\xa1\xfd\x97\xaf\x0f\xf6\x77\xb6\xd1\xdb\xcd\xa3\xa3\xcd\x57\x27\xfb\x3b\xc7\x16\xda\x7f\xb5\x75\xf0\x66\x7b\xff\xd5\xcf\x16\x7a\xfe\xe6\x04\xbd\x3a\x3c\x41\x07\xfb\x2f\xf7\x4f\x76\xb6\xd1\xc9\xa1\x05\x44\xbb\xd5\xd0\xe1\x2e\x7a\xb9\x73\xb4\xb5\xb7\xf9\xea\x64\xf3\xf9\xfe\xc1\xfe\xc9\x2f\x40\x6f\x77\xff\xe4\x15\xa7\xb5\x7b\x78\x84\x36\xd1\xeb\xcd\xa3\x93\xfd\xad\x37\x07\x9b\x47\xe8\xf5\x9b\xa3\xd7\x87\xc7\x3b\x88\x37\x6b\x7b\xff\x78\xeb\x60\x73\xff\xe5\xce\xf6\x1a\xda\x7f\x85\x5e\x1d\xa2\x9d\xbf\xed\xbc\x3a\x41\xc7\x7b\x9b\x07\x07\xda\x56\x72\xde\x1b\x6d\x7c\xbe\x83\x0e\xf6\x37\x9f\x1f\xec\x08\x4a\xaf\x7e\x41\xdb\xfb\x47\x3b\x5b\x27\xbc\x39\xf5\xa7\xad\xfd\xed\x9d\x57\x27\x9b\x07\x16\x3a\x7e\xbd\xb3\xb5\xcf\x3f\xec\xbc\xdb\x79\xf9\xfa\x60\xf3\xe8\x17\x4b\xe2\x3c\xde\xf9\xbf\xde\xec\xbc\x3a\xd9\xdf\x3c\x40\xdb\x9b\x2f\x37\x7f\xde\x39\x46\xa3\x01\x91\xbc\x3e\x3a\xdc\x7a\x73\xb4\xf3\x92\xf3\x7c\xb8\x8b\x8e\xdf\x3c\x3f\x3e\xd9\x3f\x79\x73\xb2\x83\x7e\x3e\x3c\xdc\x06\x41\x1f\xef\x1c\xfd\x6d\x7f\x6b\xe7\xf8\x29\x3a\x38\x3c\x06\x69\xbd\x39\xde\xb1\xd0\xf6\xe6\xc9\x26\x10\x7e\x7d\x74\xb8\xbb\x7f\x72\xfc\x94\x7f\x7e\xfe\xe6\x78\x1f\x84\xb6\xff\xea\x64\xe7\xe8\xe8\xcd\xeb\x93\xfd\xc3\x57\x2b\x68\xef\xf0\xed\xce\xdf\x76\x8e\xd0\xd6\xe6\x9b\xe3\x9d\x6d\x90\xee\xe1\x2b\x68\xea\xc9\xde\xce\xe1\xd1\x2f\x1c\x29\x97\x01\x08\xdf\x42\x6f\xf7\x76\x4e\xf6\x76\x8e\xb8\x40\x41\x52\x9b\x5c\x04\xc7\x27\x47\xfb\x5b\x27\x2a\xd8\xe1\x11\x3a\x39\x3c\x3a\x51\xda\x88\x5e\xed\xfc\x7c\xb0\xff\xf3\xce\xab\xad\x1d\x5e\x7a\xc8\xb1\xbc\xdd\x3f\xde\x59\x41\x9b\x47\xfb\xc7\x1c\x60\x5f\x90\x7d\xbb\xf9\x0b\x3a\x7c\x03\x4d\xe6\x3a\x7a\x73\xbc\x23\x3e\x2a\x16\x6b\x81\x26\xd1\xfe\x2e\xda\xdc\xfe\xdb\x3e\x67\x5b\x02\xbf\x3e\x3c\x3e\xde\x97\x76\x02\x22\xdb\xda\x93\xe2\x5e\x7b\xf0\xc3\x8f\xeb\xcd\x35\xaf\x97\x51\x31\xbe\xdb\x75\xaf\xe5\xb2\x4e\x8b\xc4\xc7\x15\x88\xf8\xba\xd4\xe9\x6c\xd8\xb0\x8b\xa6\xc5\x02\x15\x51\x5c\x8e\x58\x78\x95\x4f\xbf\x4d\xb4\xc9\x36\xeb\x71\x94\x6d\x21\x84\x2d\x84\x88\x85\x90\x63\x21\xe4\x5a\x08\x79\x16\x42\xbe\x85\x50\x60\x21\x44\x2d\x84\x42\x0b\x61\xdb\x42\x18\x5b\x08\x13\x0b\x61\xc7\x42\xd8\xb5\x10\xf6\x94\x13\x96\x81\xa8\xcb\xcb\x38\x3e\x0e\xcf\x71\x60\x4f\xe0\xe5\xf5\x80\x56\x28\xf1\x13\x89\x03\x03\x8d\x1a\x8f\x23\x69\xb9\x92\x97\x50\xe2\xa0\x0a\x9f\x81\xc4\xe5\x4b\x5e\xb0\xc0\x89\xd5\x5c\xcb\x58\xd6\x2d\x79\xb1\x05\x0e\xe0\xa3\xe4\xd3\x11\xb8\x38\x7e\xac\xb6\x5b\xc5\xe3\xca\xba\x9e\xe4\x3d\x90\x38\x88\xc2\x27\x96\xb8\xa8\xe4\x45\xb6\x1b\x3b\x1f\x56\x9e\xaa\xba\x98\x0f\xe8\xa2\xe4\x23\x50\x64\x45\x24\xce\x92\x67\xbf\x29\x0f\x68\x9b\xd3\x6a\xbb\x2f\xeb\x38\x35\x2e\xa8\xeb\xd5\x3c\x97\x38\x4a\x79\x00\x2d\xdc\x6a\x3b\x00\x79\x4a\x03\x03\xc9\xa0\x5f\x0b\xb7\x42\x42\x14\x41\x0b\x66\x6b\x44\x54\xd6\x51\x84\x05\x8a\xf1\x6a\xe1\x56\x38\x1c\x45\xd0\x82\x59\x85\x21\x22\x25\x6b\x2b\xc8\x4a\x69\x04\x95\xf6\x2a\x0b\x45\x52\x3a\x82\xd9\xa6\x36\x16\x43\x9e\x21\x58\x94\xb2\x02\xf6\x54\x4a\xa5\x6d\x39\x8a\x3c\xfd\xba\xac\x61\xd3\x81\x05\x45\x20\xaa\xd2\x5e\xc3\xda\xf6\x4a\x9b\xc2\x9e\x22\xd6\x40\xc2\x36\xf4\x81\x6b\x23\xa8\x74\x11\x4a\xc0\xd2\x78\xa8\x02\x53\x32\x1e\xc0\x67\x75\x2e\x55\xf9\xb2\x5b\x57\x2d\xe9\x57\x3e\xaf\xfa\x04\x6d\xa0\xac\x51\x95\xfe\xe9\xd5\xb6\x5f\xb5\x93\xd4\x2c\x54\x72\x92\x26\x23\xf0\xa2\x96\x4a\x86\x1c\x44\x32\xd6\x10\xbe\x57\x33\x00\xed\x0c\x6a\x47\x04\x82\xae\x64\xc4\x6f\x31\xed\x34\x85\x5f\x35\x1a\xd7\x78\x2a\xd9\x55\x0e\x0d\xe5\x0d\x3c\x55\x00\xc1\x8a\x90\xfc\x9a\x6e\xe5\x78\xd2\x81\xb1\xa3\xd1\x47\xd5\x80\x16\xe3\x25\xa2\xca\xe1\x88\xf2\xaf\x57\x79\x71\x53\x40\x9e\x06\xce\x6d\x6a\xa6\xd2\x64\xdd\x28\x84\x31\xfa\xd0\x78\x25\xfb\xd3\x98\x7b\x88\x46\x1f\xa8\x4a\xd5\x6c\x5b\xc8\xbe\xf2\x36\x29\x09\xc2\x30\xe4\x9f\xfd\x9d\xed\x70\xe7\xf9\x26\xe6\x9f\xe9\x2e\x7e\xfe\x7c\x6b\x7b\x8b\x7f\xde\x0c\x3d\x67\x77\xdb\xdd\x69\xea\x7b\x3c\xef\x25\xe0\xd9\x9b\x84\x3e\xdf\xf1\x81\xc0\x96\xbb\xbd\x8d\x89\x0b\x04\xb6\x03\xdb\xd9\xd9\x75\xf8\xe7\x60\xd3\xdf\x0e\xfc\x1d\x20\x5c\x32\xf4\x41\xbb\x1e\x70\xb4\xff\x7a\xe7\xe5\x36\xf6\x6d\x48\xbf\x3f\xb0\x86\x54\xc1\xd6\xab\x48\xca\x4f\xa2\x57\xbe\xed\x5e\x91\x58\x4c\x04\x26\x7a\x92\x60\xfb\x81\xeb\x11\xc7\x06\x09\xee\xec\x6e\x6d\x6f\x3e\xa7\xd0\xc0\x90\x3e\xdf\xdc\xde\xda\xdd\xe1\x9f\xb1\xed\x10\xcf\x0d\x40\x38\x5b\xce\x36\xd9\xc1\xbb\xf6\x87\xde\xa5\xf1\x65\x17\xe5\xb5\x0b\xbb\x4b\xdf\x52\xc2\x86\x9d\x9a\xe1\xe3\xf8\x82\x0b\x58\x7b\xad\x8f\x45\xf6\x6c\xdf\xbc\xfc\xa4\x40\x97\x9b\x07\x9f\xba\x07\x99\x90\x69\x4f\x45\xa9\x87\x36\xd0\xa8\x0b\x80\xc4\x01\x50\x85\x58\x7d\xf0\x41\xf9\xf1\x66\x87\x4a\x3b\x08\xe5\xb9\xd2\x16\xc2\xee\xe9\xd2\x2e\x3a\xc3\xd2\x18\x1a\x3a\xeb\xbc\x87\xaa\xfd\x07\x6e\x8a\xbd\x5b\x8e\x10\x00\x3e\x8d\x27\xfd\x00\x73\x00\x98\xf7\x02\xc0\xf0\xf3\xd3\x6f\xfd\x18\x60\x4c\xf4\xe9\xb7\x7e\x0c\xd0\x4d\x7f\x5a\xf4\x63\x80\x4e\xe3\xd3\x62\xae\xcf\x68\xbd\xbe\xce\xbd\xec\x33\x9f\x34\x7f\x89\xe6\x39\x1f\x1d\x6b\x36\x69\xa3\x89\x85\xe2\x89\x85\x92\x89\x85\xd2\x89\x85\xd8\x44\x43\x28\x9a\x5b\x28\x9e\x5b\x28\x99\x5b\x28\x9d\x5b\x88\xcd\xdb\xc4\x22\xce\x4a\xc4\x19\xde\xeb\x5e\x19\x89\xe7\x90\x74\x1c\x0a\x71\xbb\x30\xe1\x85\x89\x28\x24\xed\xc2\x94\x17\xa6\xa2\xd0\x69\x17\xc2\x84\x81\x89\x42\xb7\x5d\x58\x3d\x53\x1d\x35\xdf\xa5\x2e\x9b\xd4\xde\x15\xd4\x1e\x25\x84\x7f\x57\x37\x10\xd6\xfa\x76\xc1\xdd\x27\x9a\xa0\xd5\xda\xa7\x56\x7f\x9b\xbc\xcf\x3f\x7c\x58\xf9\x5d\x77\x89\x01\x6e\xed\x3c\xc3\xfe\xca\x3f\x1e\xfc\xd0\x0c\x8d\x9c\x06\xca\xf0\x28\x9e\x58\xc9\xc4\x4a\x27\x2b\x68\x15\x8d\x27\xfa\xbb\x37\x5f\x51\xb5\x20\x97\x3f\x73\x88\x58\x6a\xd3\x60\x23\x6d\x6c\x1d\xc9\x77\xb0\xb9\xb4\x17\x9b\xd3\xc6\xd6\x51\x55\x07\x9b\xef\xf6\x62\x73\xdb\xd8\x3a\xba\x55\xb0\xfd\x63\x7d\x5d\x62\xa4\x76\x2f\x46\xaf\x8d\xb1\x63\x10\x48\x9f\x26\x9d\x2b\xb1\xd0\xaa\x8b\x97\xa0\xf9\xac\x98\x8c\x0a\x6b\xc1\xd5\xaa\xbb\xb4\x01\x36\x50\xac\xb2\x89\x5e\xe5\xe0\x11\x1d\x97\xe2\x7f\x60\xb7\xa9\xae\x04\xcc\x1d\xe8\x72\x9f\xc4\xda\x6b\x40\xe0\x2f\xb1\xae\x36\xb8\x59\x67\x27\xb1\x62\x35\x9a\xa3\x55\xc5\x5a\xe7\xb7\xb7\x56\x6f\x14\xcf\xad\x64\x6e\xa5\x73\x90\xf8\xfc\xdb\xac\xd5\x6d\x63\xfb\x56\x6b\x6d\x62\xfb\x26\x6b\x25\x6d\x6c\xdf\x6c\xad\xb8\x8d\xf1\x8e\xad\x75\x0e\xbb\xd6\x06\x73\x9d\xf7\x98\x2b\x44\xd4\xb9\xce\x5c\x21\x10\xeb\x4a\x20\x44\x0b\x73\x9d\xf7\x9a\x2b\x74\x00\xba\xda\xd0\x35\x74\x4f\x68\xb4\x43\xf9\xbe\xfa\x1c\x03\x8c\x21\xe1\xd4\x6f\x6b\x84\xc9\xff\xb3\x81\x46\x7b\xe2\x68\x6e\xc2\x23\x73\xaa\x69\xe9\x9e\x3c\xc2\xbb\x27\x8e\xdf\xa6\x1c\x4e\x27\x91\x3d\x79\x4c\x77\x4f\x1c\xa4\x65\x1c\x2e\xd2\xc2\x39\x12\x0e\x0e\xcb\x42\x8f\x10\x6b\xe1\x5c\x09\x07\x07\x93\x63\x0e\x97\x68\xe1\xe0\x00\x73\x43\x2c\xed\x61\xed\xae\x7c\x5a\xe3\x1b\x8e\x67\xa5\x51\x11\x55\x83\x21\xfe\x45\xd3\xf1\x0f\x3f\xc3\x58\x42\x4e\x9f\xe7\xc5\xe2\x64\x56\x40\xc4\x13\x38\xa7\xdb\x51\x11\x89\x53\x5b\x3f\x22\xaa\xc1\x0e\x75\x0e\x58\x56\x74\x1e\x6d\x04\xf8\x4e\x63\x36\xd3\xb4\xfb\x0a\x31\x92\xef\x2d\x8a\xc3\x4c\x35\x4a\x3e\x9a\xf4\x3e\xa0\xdf\x37\xc4\xc3\xc2\xf5\x19\x89\x0a\xe2\xaf\xc8\x21\x6d\x6b\xad\x31\x8d\x46\xa3\x1a\x74\x15\xf1\xf8\xc0\x51\x86\x2b\x1c\x95\xcb\xfd\x16\xbb\x3d\x03\xe8\xb2\xaa\x10\x47\x3d\x78\x56\x7e\x5c\x7e\xf0\xdc\x41\x26\x07\xce\x2d\x64\x43\x03\x67\x5d\x43\xd5\x77\x3a\xea\xf7\x30\xcb\x37\x76\xe0\x70\x8c\xe6\xd9\x8e\xf5\x75\x98\x09\x22\x78\xdd\x45\x5c\xc8\xd2\x1e\x9c\x3a\x17\x33\xaf\xee\x6b\x2e\x66\xb3\x04\xef\x56\xc7\xe8\x1a\xc3\xd9\x43\x1b\x48\x1d\xbe\x7f\xdb\xfc\xcd\x5b\x6a\xfa\xa6\x9f\x91\xed\xc1\x54\x6c\x4f\x73\x99\x04\x99\xe6\x60\x7b\xd5\x75\xbd\xbd\xc6\xf4\x6a\xef\xc6\xf3\x2a\x61\x21\x7b\x8d\x39\xd5\x5e\xef\x64\x6a\xf8\x28\xdc\x91\xd8\x09\x17\xca\x95\x2f\x58\xa4\x20\xec\x26\xa8\xdc\x31\x6f\x29\xa8\x11\xa6\x92\xc9\x6c\x6a\x0e\x50\x70\x94\x80\x43\xd5\xab\x0b\xf0\xb5\xff\x18\x84\x28\xfe\xd4\x31\x12\x51\xaf\x6b\x6b\x92\x4d\x28\x6d\x9c\x8b\x82\x8f\x5f\xc5\xee\x3f\x52\x4f\xc4\x65\x78\x74\x65\xa1\x6b\x0b\xfd\xa6\x7b\xe6\x63\x34\xba\x82\x9b\x9d\xd7\xf0\xdf\xdf\xea\xd7\xda\xbf\x76\xf0\x10\x33\x9e\xd1\xd5\xca\xc3\xd1\xf5\x8a\xb8\x4e\xfe\x4f\xfe\xe5\xb7\x95\x95\x95\xa7\x7d\xd8\x9c\x41\x6c\x1c\xd1\x3f\x39\xc6\x9a\xb5\x1e\x5c\xee\x30\xae\x87\x80\x01\x78\xbb\x5e\x79\x38\xfa\x27\x30\xd7\x8f\xd1\x5b\x46\x66\x5c\x68\xbf\xd7\xa8\x7a\x70\xc1\x50\xe2\xca\x9a\x6a\x31\x5d\x3d\x7b\x36\x05\xae\xae\x7e\xfa\xe9\xa7\x91\x43\x1e\x4f\x55\xa6\xc4\x07\xe3\x69\x98\xf2\x30\x8c\x78\x07\x6e\xb9\xc3\x30\xbd\xaf\xfd\xc8\xf3\x2d\x70\xe6\xa9\xfc\x5c\xcc\x44\x64\xea\xa2\xe9\x79\x9f\xa7\x07\xfa\xb6\x0f\xf3\x48\xcf\xa8\x4f\xb2\x94\x0b\x78\xa3\x47\x92\xc5\x47\x9a\x53\x38\xfd\xb5\x2e\x4b\x6e\x75\xc7\x6d\xba\x8b\x83\xad\xa3\x36\x25\xc0\x72\x47\x95\x4a\xe5\xec\xbd\xdc\xdc\xfa\x03\x54\x63\xa8\xfe\x99\x5d\x43\xd5\x05\x4b\xe6\xac\xe8\x79\x3b\xa9\x47\xa1\xf0\xe4\xe0\x1d\x2a\x54\x3c\x64\x58\xa9\x66\xef\x2c\x4a\x6a\xf5\xa8\x47\xac\x34\x1a\x6a\x00\x77\xb5\x74\x16\x25\x1a\x4d\xfd\xf0\x55\xec\x03\xf7\x1c\x8d\x2a\x21\xf5\xaf\x13\x7d\xfd\x60\x05\xc1\xfd\x11\xa7\x7f\x87\x2b\x2b\xdf\x7b\xeb\xbe\x95\x58\x4d\x21\xdc\x9b\x32\xed\x78\x6f\xf3\x31\x5e\x62\x27\xa3\xfb\x56\xf5\x5d\xee\x5f\x6c\xc0\xed\xd3\x7a\x0b\x23\x9f\xe6\xc5\x48\x93\x80\xaa\xb9\xa5\xc1\xb2\x24\x8d\x62\x1a\x6a\x72\x33\xd9\x57\x21\x8d\xa3\x34\xc9\x58\x63\x8f\x43\x07\x98\x38\x29\x61\x38\xb3\x9b\x65\xdf\xbe\x05\xd2\x37\x42\xd7\x0f\xbe\xbb\x2b\xe8\x1d\x04\xcb\xac\x3d\xeb\x97\x8b\x79\x51\xac\x5f\x2c\x86\x01\xa3\x7e\xa9\x18\xa6\xab\xfa\x85\x62\x5e\xc4\xaa\x65\xe2\x0e\xa7\xbd\xeb\xc4\xbd\x6b\xc2\x3d\xb3\x05\x58\xf7\x41\xe2\x86\x69\x4f\x2e\x98\xb7\x62\xe0\xdf\x4c\x81\xd1\xbc\x7b\x5a\xfe\x95\x0b\x4a\x7a\x44\xe5\x3d\x87\xb7\xef\x73\xf4\x18\x39\x1f\xd0\x47\xf9\x91\xd6\x1f\xb1\xab\x7c\xf6\xfb\xde\x8e\x94\x2c\x8d\xa6\x70\x39\x56\xcc\x2d\x61\xfa\xe0\x60\x7d\x9a\x1a\xfd\x4c\x08\x96\x96\x46\x11\x47\xe2\x01\x92\x48\xcc\x64\x02\xb8\x20\xcb\xd0\x2a\x10\xea\x5b\x68\x44\xcf\x10\xb1\x7b\xa5\x06\xcb\x66\xa3\x51\x8c\x1e\xa2\x44\x8c\x73\xf9\xc7\x14\x30\xdb\x57\x5e\x24\x76\x61\x07\x96\xf8\xd0\x33\xe4\x0e\x91\x88\xd1\x47\x94\xa0\x8f\x28\x15\x98\x7d\x96\x86\x2c\x8e\x74\x49\x87\x5a\x98\xfd\x1b\x30\x2f\x78\xe7\x9f\x12\xd9\x8a\xc7\xc8\xbe\x0a\x6c\xe6\xba\x0e\x71\xfb\x69\xad\xff\x58\x91\xa3\xf6\x0a\xfa\x71\x7d\xe9\xb6\x70\xfc\x8e\x17\xa6\x0e\x23\xed\x55\x1e\xd4\xa3\x52\xee\x2f\xa9\x6e\xb9\x0f\x6d\xa0\x44\xb7\xc4\x87\x80\xe4\xb3\x67\xc8\xb1\x65\x2b\x41\xfd\xda\xb7\x45\xd1\x06\xd2\xf1\x11\x2d\x77\x5b\x6b\xa9\xc5\x40\xb9\x88\x56\x2e\xb6\x45\xed\x1b\xde\xa8\xb1\x10\x08\x0b\x86\x9d\xcc\x27\xa8\xb1\x08\x08\x8b\x85\x89\x1e\xc6\x51\x17\x0a\x53\x3d\x8c\xab\x2e\x12\xb2\x36\xcc\xfd\x02\xdf\xbf\xea\x02\x1f\x1f\x0b\xaf\x65\x93\xd9\x6c\xae\xae\xb9\xad\x43\x47\x2d\xff\xbe\x89\x08\xe4\x42\xa8\x31\x0f\xac\xd3\x75\x96\xe9\xbe\xd3\x0a\xdd\x0d\xd7\x81\xb4\xcb\x75\x7f\xc6\xd5\xa0\xfb\x25\x84\xce\x62\x00\x1f\x3e\xdf\x68\xf5\x00\x2a\x98\x16\x0e\x9a\x03\xf2\xe6\x9a\x01\x2f\xbb\x5f\x2e\xb8\xd3\xe5\x02\xd0\xc7\x12\x2b\x05\x7a\xb5\xd4\x8b\x04\x52\x35\xfd\xd7\xa6\x38\x40\xff\xb2\x00\xfd\x53\x27\xd8\x58\x8c\x23\xe2\xf9\xdf\x3b\x37\x86\xa4\xf2\x9f\xb3\x7c\xd0\x59\x1e\x50\xe7\xf0\xc4\xf3\x1b\xb3\x78\xe5\x16\x76\x7b\x55\x80\x10\x77\xb9\x75\x01\x0e\xd8\xc0\x09\xdf\x05\xf2\x3f\x74\x6d\x20\xc1\xb6\x17\xb2\x94\xf2\x29\xbf\xe3\x07\x49\xea\xd9\x01\x7c\xb6\x03\x3b\x4d\x31\x7c\xce\x02\x9b\x79\xa1\xa3\x5f\x33\xc8\xb2\xc4\xb6\x63\x07\x16\x17\x7c\xea\x51\xec\x61\xf1\xd9\xcd\x42\x9a\x45\x80\x20\x66\x59\xe4\x66\x91\x7b\x83\xe5\x82\xa5\x46\x9e\x4a\xd8\x97\xa2\x53\x6a\x1a\x6e\xd1\x42\x44\xad\x86\x33\x8f\x37\xba\x83\x97\x9e\x8d\xa5\xfb\x2e\x7a\xa0\xc7\x25\xc4\xbd\x69\x27\xcd\xab\x0c\x74\xd3\x0d\xef\xe8\x74\xd4\x84\xe8\x2f\xb1\xdf\x77\xd5\xdf\xd0\x55\x73\xad\x2c\xd7\x59\x6b\x95\xd3\xe8\xae\x85\x82\x8c\x1d\x36\x21\xed\xab\xce\xca\xbd\x66\xd9\x1d\x3d\x09\x42\xde\x81\x87\xf7\xeb\xfa\xff\x33\x1d\xf3\x9f\xef\x5a\xde\xbe\x78\xc4\x21\xff\xad\xba\x95\x8b\xe6\xb3\x8b\x69\x8a\x92\xe6\x7d\x3d\xa5\x05\x7b\xed\xa7\x53\x5e\x34\xb7\x01\xca\x85\x5a\x56\xe3\x10\x25\xba\x11\x0c\x52\xb7\x94\xf3\xc5\xeb\x79\x7e\xc6\x46\x53\x6d\x37\xb6\xf8\xef\x79\xf1\xaa\x9c\xe7\xf3\x2f\xa3\x69\x7b\x9e\x59\x2d\x04\x0b\x75\xa2\x0d\x44\x9e\x96\x9f\x9f\x6d\x08\x0c\xe5\x0f\x86\xb5\xe1\xff\x1a\x4d\xd1\x5f\x25\xd8\x4a\xef\x7a\xa1\xf4\xd1\x2c\x9a\x2c\xd8\xf0\xa9\xc0\xf6\xfa\x58\x39\x1f\x9f\x5f\x34\x67\xb8\x1a\xb1\x9c\xb2\x62\x77\x1e\xc1\xe7\x68\xf2\x3c\x2f\x16\x1a\x01\x55\x5b\xf8\x53\xf4\x18\x8d\xa6\x90\xd9\x73\x05\xfd\xd8\x58\xfc\x68\xaf\x64\x29\xb4\xca\x55\x6a\x35\x33\x3b\xfc\x06\x0a\x69\xe5\xef\xb9\x1c\xe7\x13\x86\x46\xb2\xec\x19\x92\x47\x32\xdb\x52\xac\xb5\xd9\x2b\xe8\x0a\x05\xed\x95\xf2\xde\x7b\x01\x04\x69\x47\x3b\x82\x00\x5b\x38\x9f\x5d\x8e\xa6\x16\xc2\x68\x1d\x91\x95\x25\x32\xb6\x23\x78\x09\xe5\x26\x68\x9d\x15\x6d\xf2\x6c\x81\x62\x75\x75\x60\x29\x74\xda\x80\x28\x47\x48\xa3\x1a\xe7\xed\xf7\xd8\xf8\xc0\x7b\xb9\xd1\x74\x77\x84\xfe\xdd\x77\xda\xf6\xd6\x16\x93\x3c\x61\x23\x7b\xe5\x7e\xd7\x6b\xe9\x5d\xaf\x4e\x51\x06\x45\x9e\xae\xe8\x14\x8a\x3a\x1b\x46\x30\x66\x81\xa2\xe0\x9b\xb7\xd1\x7c\x43\xae\xfb\x3f\x7a\x1b\xed\x34\x3a\x3b\x8b\xec\xab\x6a\x33\x0d\x77\x84\xd2\x85\x86\x83\xc6\xa3\xb2\xe6\xb3\x67\x88\x88\x4d\xaf\xf2\x97\x9f\x7e\xfa\x09\x05\x2b\x2b\x08\x7d\xd4\x63\x6a\xfe\x35\x30\x61\xb7\x83\x09\xd3\x95\x95\xe5\x30\x35\xeb\x39\xda\xf0\xd2\x68\x09\xae\xdb\xad\x3d\x24\xdf\x04\x56\x9a\x8d\x05\xb3\x4a\xb3\xf1\x55\x99\x6f\x7a\x49\x66\x9b\x98\x9c\x2e\xa6\xf0\x86\xcd\x2e\xeb\xe9\xdf\x24\x40\xb5\xe1\x48\x25\xae\xca\x96\x43\x92\x5f\xd9\xc2\x55\xe3\x86\x69\xdf\xee\x67\x02\xb7\x1a\x47\x0c\x3d\x44\x19\x1c\x76\xfb\x27\xff\x78\xda\xf7\x84\xcb\x59\x04\x19\xe6\x22\xf4\x10\xc5\x00\x1e\x89\xdd\xc1\x8f\x48\xee\x13\xea\xf8\x87\xc1\x4a\x7e\xca\x19\xaf\xb6\x5a\xe5\x66\x9b\xdc\x6b\x15\x47\xff\x44\x09\x0e\x95\x12\xec\x34\x8a\x1a\x95\xf4\x7d\x5b\x45\x0c\xde\xa9\x19\x31\xb0\x71\x91\x39\x99\x41\x3d\x5f\x62\x14\x25\x58\x29\xc1\x58\x2d\x0a\xc4\xc9\x56\x51\x44\x3c\x7d\x8f\x07\x1b\xc8\x9c\xd2\x18\xad\x96\x64\x57\xb9\x50\x57\xc5\x43\x6f\xbd\x9b\xc7\x50\x91\xa0\x8d\x52\x30\xab\x5c\xb4\x3a\x0a\x3c\x70\x9d\x6a\x10\xf0\x58\xd7\xce\xd3\xce\xff\x78\x78\xd4\x0d\xbf\x20\x77\x26\xbc\x96\x80\x75\xdb\x7c\x68\x60\x8b\xb4\x9d\x6d\x1d\x0d\x6c\x87\x8e\x0a\x2e\x88\x82\xe8\x68\xfd\xa7\x6c\x8d\x0a\x18\x4f\xc2\x40\xca\xf0\x4c\x0f\xe3\x4b\x18\x48\x09\x7e\xaa\x87\x09\x24\x0c\xf8\xfc\xf8\x7e\x1b\xf6\x7e\x1b\xf6\x7e\x1b\xb6\x3b\xda\xbc\xdf\x86\xfd\x97\x5c\xe3\xf5\xfc\x1b\xaf\xf1\x7a\xfe\xe0\x1a\xaf\x3a\x67\xeb\xae\xf1\x7a\xfe\xfd\x1a\xef\x9d\xaf\xf1\x7a\xfe\xb2\x6b\xbc\x3a\xe5\x34\xd7\x78\x41\x41\xe6\x43\xdb\xd5\xde\x99\x7e\x6b\x96\xda\x7f\xea\xad\xd9\x2b\xdf\xfd\x43\x1e\x2e\xa8\xe8\xdc\xaf\x02\x37\x57\x81\xaf\x7c\xd8\x53\x5d\xbb\xf2\x5d\xe5\xf7\x77\xbe\x2b\xb3\x74\x03\xc4\x9a\x92\x27\xfa\x46\x39\xdd\x94\xf6\x1d\xed\x1d\x7e\x3a\xdc\xdd\x3d\xde\x39\x39\x6e\xaf\x16\xbf\xde\xff\xb4\xff\x6a\x7b\xe7\xdd\x4e\xf7\x55\xee\xa3\xc3\x37\xaf\xb6\x3f\x6d\x1d\xbe\x3a\x3e\xd9\x7c\x55\xd5\x54\xc8\x89\x65\xe5\xad\xe5\x96\x95\x95\x1a\xf3\xf1\xac\x4c\xda\xd2\x5a\x93\x2e\x49\xf3\xd9\x35\xb6\xd0\x75\x5f\xaa\xf2\x42\x2c\x89\x14\xe8\x19\x22\xee\x53\x54\x68\x96\x44\x94\x36\xbf\xbf\x42\xab\xc8\x43\x3f\xa2\x6b\x71\x7b\xb0\x28\x2f\x69\xc2\x27\xb2\x02\x2b\x95\xe8\xaf\xc8\xef\x8c\x45\x60\x18\xc8\x2e\xdf\xa1\x0d\x74\x8d\xfe\x8a\x3c\xdd\x28\x91\x5d\xfe\xc2\xb1\x12\xf4\x23\xe2\x74\x1c\x4e\x67\x45\x03\x7c\x25\x96\xe5\xde\xb5\x7e\xbe\x16\x3f\xff\xd2\xb3\x14\xac\x88\xed\x3c\x47\x39\x3c\x27\xa0\x11\x5a\x25\x99\x2b\x21\x99\x2b\x71\x41\xf3\x4a\x23\x98\x0a\x54\x48\x17\x5d\x0b\xd0\xeb\x9e\x65\xa5\xda\x40\x9a\x62\xbc\x86\x07\x7e\xba\xad\xe6\x72\x6d\x37\xfd\xeb\x60\xdb\x5a\xbb\x1c\x4d\x6b\x38\xd8\x3d\x3e\xe2\xbc\x5e\xd9\x58\x67\x0c\xea\xbb\x13\x3d\xeb\x63\x1c\x0c\x48\x94\xc6\xfa\x72\x71\xd9\xb2\x2d\x2d\xd8\x41\x09\xd6\x23\x42\xf9\xf2\xc4\xaf\xe8\x19\x0a\x9e\xa2\x5f\x0d\x2b\x73\xd0\x06\xb8\x9a\xaa\xcf\x8a\x52\x92\x8f\xf3\xe2\xf5\x6c\x01\x79\x5c\xb9\x55\xc1\x63\xb9\xbf\xae\xa0\xc7\x48\x77\x9a\xba\x44\xae\x56\x7a\x86\x64\xbe\x08\x1d\x30\xff\xeb\x34\xf0\xe3\x06\x02\x32\x0a\x96\x1e\x5a\xcd\x13\xd5\x2a\xd5\x9f\x36\x80\x6c\xff\xe1\xea\x0e\xe5\x97\x0a\xe5\x06\xaa\xc7\x9a\x79\x4f\xc5\xc0\x72\x4b\x4b\x8a\x61\x4d\xd9\x55\x01\x06\x34\xa0\x16\xda\x7f\x12\x7d\x7d\x1d\xbd\x9e\xe7\x67\x79\x91\x7f\x61\xe8\x7c\x36\xb9\x9e\xce\xce\xf2\x68\x82\x66\x5f\xd8\x1c\xfd\xbc\x3b\x22\x2b\x4f\xd0\xd5\x47\x8a\x56\xd1\xd5\x47\x1f\xfe\xeb\xc1\x7f\x5d\x1e\x66\xf4\x28\xa5\x45\x0b\xf2\xe2\xfe\xc0\x47\x64\x5f\x05\x86\x23\xf3\x3d\xcc\x49\x0c\x1b\x5a\xfb\x18\xd8\xf4\x6a\x05\x78\xb1\xc6\x27\xbb\x9f\x32\xc1\x58\x5b\x67\x56\xc7\x7e\x56\x6e\xba\x9b\xb2\x00\xff\x29\xd8\xd9\xf9\x6c\x1e\xcd\xaf\x1b\x2f\xd1\x71\x17\x38\x51\x3b\xa2\xde\x5d\x4a\xed\xab\x33\x7a\xef\x3f\xd1\xb6\x6c\x88\xef\xd6\xde\x8e\xb3\xdc\xce\x8e\xd3\xd8\xd7\x71\x4c\xbb\x3a\x77\xff\x94\xc0\xec\xa2\x38\xbf\x28\x0e\x60\x6a\xdd\x80\x45\x30\x48\x4f\xd9\x22\x9f\xb3\x54\x79\x68\x20\xce\x8b\x45\x99\x10\x5a\x54\x6e\xcc\x16\xca\xca\x87\xd3\x49\xa9\x26\x25\x07\x77\x34\x67\x4f\x10\x21\xae\x85\x88\xe7\x5b\xc8\xa1\xae\x85\x3c\x4c\xda\x95\xe5\x9b\x05\x4f\x78\x99\x5a\xd4\x7e\xb4\xa0\x9c\x34\xf7\xbe\x5b\xa0\xb6\xae\x85\xed\x16\xef\x17\xc0\x4a\x2d\xbc\x84\x58\xce\xbd\xcb\x6f\xef\x3f\xf4\x44\xfb\x25\x4c\x8d\xff\x01\x1e\x61\x72\x53\x76\x59\x99\x1d\x6c\xc2\x0d\xa5\x12\x00\x4e\xaa\xd7\x7a\xa1\x07\xf0\x6d\x1b\x3d\x46\xbc\xa3\xad\x5e\x4a\x50\x25\xc1\x47\x2f\x0e\xf9\x5e\x3b\x7a\x9a\x85\x39\x8d\xd0\xb4\x8b\x67\x65\x23\x0e\xa2\x29\xac\xfd\xb4\x9a\xb6\x8e\x88\x6e\x0d\x2d\x5e\xcc\xe6\xf1\xb0\xfc\x5b\xe8\xbf\x25\x93\xe0\x4b\x92\xa3\xe6\xa6\x18\x97\x75\xef\xb2\xf9\x4b\x02\x6f\xd0\xb7\xc1\x79\xac\x37\x25\xb3\xe8\x7d\x82\x9a\x93\x37\xe6\x13\x24\x8d\x44\x82\xe4\x36\x19\x04\x49\x23\x75\x20\xb9\x7d\xce\x40\xc9\x30\x1e\xe2\x18\x37\x59\xc6\xb7\xe2\x19\x37\x99\xc6\x37\xe1\x5a\xab\x07\x61\x5c\xd5\xd2\x48\x3e\x2d\x66\xc2\x9a\xf5\x9a\x9e\x44\xb0\x98\x57\xba\xb3\x46\x14\x1c\x62\x0d\xde\x9b\xfd\xb8\x01\x72\xe9\x83\x99\xcc\x2e\x91\x84\x19\xde\x8d\x38\xe2\x1d\xec\xa2\xc7\x07\xc4\x40\x19\xfc\x40\x7c\x14\x83\x5e\xf8\xdc\xef\x02\x27\x63\x56\x44\xdd\x92\x1b\xcc\x1a\x14\x64\x2f\x73\x3e\x05\x99\x5c\x9c\x4d\xa1\x71\x1a\xb7\x2a\x25\x58\x0e\xb3\x2d\x54\x8f\xa4\xb5\xc0\x37\x9c\x93\xa8\x34\x1a\x5a\xaa\x67\x28\x3d\x84\xf8\x5f\x39\xf4\xac\xb4\x67\x82\x3d\x50\x60\x27\xb3\xcb\xde\x71\x69\xaf\xb4\x4e\xb4\xe3\x1c\x5d\x4b\x4e\xb8\x16\x4e\xde\x5f\xf5\xf1\x7e\x72\x25\x6c\x6d\x03\x5a\xd0\x0f\x04\xc6\xb6\x01\xac\x2f\x77\xfa\xe6\x76\x66\x60\x08\xab\x75\x8b\x5c\x68\xd2\x88\xeb\xc5\x85\xe9\xa1\x69\xb3\xfc\xe4\x0a\xd7\xe0\x78\x19\x70\x61\x5f\x27\x57\xd8\xa4\x47\x09\x7b\x50\xc1\x82\x1e\x8d\xe6\xbd\xb8\x98\x83\x47\x89\xe7\x44\xb8\xa9\x0f\x5b\xf9\xc9\x95\x2b\x63\x01\x1a\x8d\x24\x6f\xd5\xd5\x60\x49\x5f\xde\x0f\xee\x9b\xde\x00\xb6\x83\x0a\x9b\x88\x1a\x02\xdb\x41\x0b\xdb\xcb\x61\x6c\x7f\xa8\x53\x35\x42\xa1\xc1\x3e\x51\x3b\x24\xf6\x98\x29\xba\xd1\x6c\xef\x68\x3c\x43\xaf\x73\x83\x65\x73\x92\xe5\x9b\x8f\xf8\xa9\xf2\x55\x0c\xe5\xaa\xef\xdf\x6c\xf2\x0d\xc9\x55\x68\x4d\x66\xcc\x81\x84\x05\x0d\x05\xa4\x12\xfa\xa0\x86\xee\x0f\x49\xd0\x59\x8c\x67\x87\x62\x94\xb2\xd1\x58\x0f\x53\xf9\xea\x6d\xec\xd1\x0c\x06\x7a\x86\x10\xcf\x27\xd0\x35\x89\xc1\x85\x07\xc5\x57\x46\x65\xa3\x9f\x3d\xab\x99\x04\xd3\x2e\xdb\x07\x4f\x69\x3a\x04\x3d\x56\xca\xfb\x0c\x1d\x35\x5d\xa7\xc2\xa1\x45\xfe\xf2\x86\xc8\x9b\x6b\x1e\x75\x73\x97\x5a\xf1\x68\x37\x59\x72\xa5\xa0\x81\xd5\x8e\x2e\x73\xbe\x7b\xeb\x96\xbf\x1c\xa0\x71\x70\x43\x1a\xa6\xbe\x6d\x1e\x4d\x17\xe7\xb3\x85\xd1\x4a\x20\xfc\xbe\xce\x0f\x84\x63\x9c\xbc\x57\x16\x14\x6b\x3b\xec\xed\xf3\x44\xc5\x65\x3a\x3e\x09\x39\xd4\xfb\xf5\xc6\x8f\xf3\x1c\x45\x05\x74\x81\x10\x2f\xf5\x63\xc2\x13\x1b\xda\xa0\x4d\xda\x5a\x4d\x8e\xec\x2a\x00\x68\xe1\x4e\xec\xb2\x39\x02\xba\xcf\xe5\x4f\xec\xb2\x31\x12\xae\xa7\xdf\x5a\x5f\x47\x5b\x63\x53\xf0\x5b\xbe\x5b\xbf\x65\x97\x31\x1c\x1a\x91\x12\xbe\xca\x38\x5c\xf5\x2b\x03\xc6\x7d\xb3\x90\x5a\xd6\x3a\xa9\x0c\x6e\xf9\x2a\x57\xb8\xaa\x34\x52\x06\x21\x2b\xcb\x74\x80\x02\x01\x69\x21\x20\x1d\x04\x46\x29\xf2\xb1\xc7\x7c\x76\x69\x10\xe2\x44\xf1\x86\x93\xda\x35\x3e\xa2\xd1\x3f\x25\xfb\xe2\x87\x87\x25\x33\xf0\xd5\x14\x3f\x26\x8a\xd7\x9c\xd4\x2e\xa4\x62\x84\x1f\x6a\x8c\x93\xd9\xe5\xb7\x2f\xd0\xee\xcf\x74\x33\x92\x8e\xbe\x7b\x3d\xad\xb1\x0c\xc9\xfb\xb7\xd6\x62\x26\x94\x0f\x4e\xda\x1a\x58\xfa\x1c\xb1\x31\x5e\x69\xd6\xe0\x2e\x69\xd8\xec\xf8\xd7\x3a\x16\xa5\x59\xa4\xb9\xf3\x53\x51\x1d\xf8\x6a\xc5\x87\xd7\xeb\x2e\x03\xfd\x08\x8b\x57\xdd\x75\xa0\xdb\x9e\xa5\xc2\xb7\x39\x4a\x05\x87\xa4\x12\x96\x4f\x9a\xe7\x9d\xf0\x0a\x5a\x6f\xf2\xbf\x82\x7e\x6c\xff\x00\xc4\x61\x83\xa6\x3a\xcd\xf5\x2f\x72\x08\xea\x9b\xd7\xf0\xd4\x65\xc6\x92\x79\xed\x1a\x24\x5a\xd7\xaa\x5e\x05\x29\x57\x01\xbb\x38\xd7\xb5\x87\xe9\x8e\xff\xfb\x82\xb1\xdf\x58\x17\xe9\x38\x5a\x8c\x4b\xe3\x5e\xea\x2d\xfa\x0e\x17\xdf\xb2\x58\x38\xbc\x26\xb4\xfc\x90\xbe\x6f\x38\x7f\xf3\x35\xc4\x9a\x5e\xff\xaa\x9c\x32\x34\x94\x0b\x73\xea\x80\xf3\x46\x6b\x73\x0a\x2a\xb9\x3c\xa7\xa2\xba\xed\xba\x62\x2d\x0a\x73\x23\x0e\x3a\x8d\x38\xb8\x6d\x23\x0e\x3a\x8d\x38\xb8\x59\x23\xf4\xaa\x12\xa6\x2b\x9d\xac\x98\xa1\x39\x2b\xe6\x39\xfb\xc2\x34\x07\x10\x91\xbc\xdc\x2d\xe2\xc1\xf9\xc5\x62\x5c\xb2\xa1\x13\x91\x06\xf2\x65\x17\xf2\xdb\xd3\x13\x6b\x6e\x0f\x55\xa4\xad\xae\x0b\xf7\xde\x27\xba\xa3\x53\x93\xfd\xf1\x4b\x1e\xa1\xd4\x84\xb3\xea\xb2\xd3\x12\x11\x62\xc9\xcd\x9c\xf2\x63\x7d\x3e\xd3\x28\xf6\xfb\xe3\x9a\xb7\x3c\xae\xe9\xdc\xf4\xb0\xa6\x33\x74\x54\xd3\x31\x1c\xd4\x74\xee\x8f\x69\xde\xf5\x31\x4d\x67\xc9\x43\x9a\x1a\xb5\x34\x8e\x68\x3a\xcb\x1c\xd0\x74\xfa\xaf\xe1\x57\x07\x0f\x9f\x50\xf7\xeb\x07\x8b\xe2\x7f\x93\xe3\x9a\xed\x04\x3b\x1e\x26\x7f\xd8\x19\xce\x32\xdd\x0e\xa7\xf9\xe7\x4a\xb7\x73\xab\xd3\x96\xb2\xb8\x3e\xed\x59\xc2\xdc\x28\x21\x8f\x87\x49\xe3\x58\x88\x87\x49\xef\x31\x13\xba\x64\x42\x1e\x0e\xd8\x38\x6a\x42\x65\x56\x0b\x0f\x93\x3b\xbb\x42\xac\x36\xbf\x37\x27\x4f\xe7\x90\x83\x7d\x95\xc4\x71\x1c\xa6\x5e\x6a\x29\x09\x7b\x56\x2c\x1d\xa4\x4f\xc2\x88\x84\x24\x52\xd3\xf9\xac\x68\xf2\xf6\x68\xaa\x86\xd8\x0b\x6d\xec\x45\x6a\xf6\x1f\x3d\x11\xec\x91\x8c\x25\x22\x67\x50\x99\x1b\x68\x49\x22\x7e\xe0\x38\xc4\xf7\x45\x5a\x21\x99\x39\x48\x4f\x84\xb2\xd8\x75\x23\x1a\xa8\x79\x85\x96\x24\x92\xc6\x76\x42\x98\x9d\xaa\x69\x88\xf4\x44\xdc\x20\xf6\x5c\x8a\x53\x35\x49\x51\x6b\x68\x7a\xd7\x59\x8a\xb8\x3d\xdd\x32\x4b\x11\xf6\xef\xd3\x14\xdd\xd1\x98\x88\xde\x38\x4d\x11\xaf\x32\x34\x2e\x52\x63\x46\x77\x64\x44\xef\xd3\x14\xdd\xfd\xd8\x88\x2e\x9b\xa6\x48\xab\x9c\xe6\xf8\x88\x0e\xa6\x29\x72\xa8\x39\x4d\x11\xef\xc6\x9f\x50\xa2\x1b\x2d\x91\x7f\x93\xd1\xd2\xbf\xf5\xe5\x96\xbb\xbd\xd8\xf2\x9d\xae\xac\xdc\x7e\x10\x25\x8a\xaa\xe6\x4a\x44\x9f\xca\x13\xbc\x9a\xb7\x6e\x9a\x87\x7c\xd7\xa2\xf3\xf3\xc9\xf5\x48\xfe\x68\xa1\x68\x7e\x7a\x71\xc6\xa6\xc5\xa2\xfd\x26\x8f\x7a\x7d\xa6\xe6\x07\x52\x29\xd5\x24\x5a\xe4\xed\x2b\x97\xd0\x88\x64\x21\x8c\x2b\xd2\x80\xd0\x88\x11\xb2\x62\x75\xe1\x02\xec\x04\xae\x1b\x42\x9a\x41\xe2\xb0\xcc\xf7\x92\x54\x1d\x1a\x74\x2a\xc4\x5e\x62\x67\x71\x92\xc1\x03\x08\x89\x9b\x3a\x31\xc9\x74\x88\x59\x18\x7b\x69\x1c\x79\xf0\x7a\x36\xa6\x61\x1a\xc7\x89\x11\xb1\x13\x7a\x7e\x42\xbc\x18\x86\x33\x8e\x4b\x63\xcf\xa1\x3a\xc4\x5e\x98\x61\x8c\x33\xe0\x38\xf6\x6d\x2f\xb5\x71\x68\x44\x1c\x12\x27\xa3\x24\x82\x27\xb7\xa3\x0c\x87\x6e\x16\xc6\x3a\xc4\x51\x8c\x13\x8f\xa5\xc0\x71\x1a\xf9\x29\xc5\x98\x1a\x11\xa7\xd4\x0e\xa2\x48\xc8\x38\x72\x6c\xc7\x26\xae\x56\xc6\x98\x50\xc7\x8b\xc5\x9b\x11\xae\x17\xd8\x7e\x16\x33\x23\x62\xe2\x3a\x98\x7a\x31\xbc\x1d\xe1\x32\xe6\xc6\x84\x26\x5a\x51\x78\x76\x12\xa4\x09\x3c\x20\x9e\x7a\x59\x16\xbb\x8c\x18\x11\x07\x24\x66\x5e\x1a\x80\x28\x32\x12\xc4\x34\xf4\xb5\xca\xa3\x76\xca\x62\x2c\x1e\xaf\x70\x62\xec\x87\x7e\x8c\xcd\x32\x8e\xd3\xc4\xf6\x45\x86\x4a\xe2\x25\x01\x26\x8e\xa7\x43\x9c\xe0\x30\xce\xb0\x60\x20\xc9\xfc\x90\xf8\xa1\x6b\x44\xcc\xdc\x30\xf6\xc3\x04\x64\x17\xb2\x0c\xbb\x51\xaa\x95\x31\xcb\x62\xe6\x06\x14\x9e\x11\x77\xa8\x9b\x11\x8f\x39\x46\xc4\x76\x96\xe0\x30\x4d\xa0\x02\x8d\x69\x92\x7a\xb1\x96\x63\xe2\xda\x49\x84\x93\x04\x1e\x69\x0f\xa2\x24\x4c\x7c\xcf\xac\xbc\x94\x85\x24\xf1\xc1\x41\xbc\x90\xc4\x36\x09\xb4\x88\xdd\x28\x70\xa9\x1b\xc1\x1c\xc1\x67\x91\xcf\x5c\x6a\xe6\xd8\x4b\x62\x3b\x0a\x53\xe0\x24\x4e\x5d\x9c\xc5\xa9\xab\x75\x69\x3f\x0b\x29\x4d\x01\x31\x75\x30\xf6\x9c\xd8\xcc\x71\x48\x1d\xe6\x61\x8f\x80\x4b\x33\xdf\x4f\xb3\x48\xef\x20\xd4\xc1\x89\xef\xc3\x08\x9f\xa4\xb1\xeb\x10\x6c\x9b\x63\x85\x6d\x3b\x24\x48\xa8\x78\xf3\x3d\x8b\x09\x76\xb4\xe6\x16\x67\x5e\x18\x64\x89\xcc\x6f\xca\x32\x9b\x31\xb3\x55\x24\x3e\xb3\xed\x38\x03\xc3\x77\xd2\x88\xd2\x2c\xd1\x5a\x45\xea\x45\x41\x88\x5d\x40\x1c\x3a\x76\x14\x05\xc4\x2c\x0a\xdb\x4f\x22\xdf\xf1\xc4\xf3\x2e\xb6\xed\x50\xa2\x77\x10\xec\x92\x90\x84\x62\xee\x65\x47\x36\xf3\x59\x60\x16\x05\x09\xe2\xc0\x8e\x28\x04\x17\xd7\x4f\x09\xc9\x32\xad\x4b\x13\x86\xb9\x98\x40\x64\x5e\x42\xfc\x24\x24\xbe\x11\xb1\x9b\x92\xc4\x4f\x33\xb0\x0a\x2f\x4a\x5c\x12\xb1\x54\x1b\x2b\x1c\x87\xda\x29\x06\x91\x85\x69\xe8\xc5\x4e\x9a\x19\x11\xfb\x9e\x1d\x05\x8e\xe7\x0a\x07\x89\x32\xdf\x49\x99\xde\xdc\xfc\xc8\x8e\x62\x88\xdb\x4e\x12\x04\x31\x89\xcc\x61\x93\xe2\x84\x24\x21\x11\xd1\x2d\x60\x69\xc4\x98\xaf\x43\x1c\x92\x80\x90\x44\x88\x0c\xbb\x94\x38\x9e\x13\x1b\x11\x47\x24\xce\x18\x8d\x44\x9c\x4d\x32\x6c\x3b\xbe\xd6\x41\x22\x8a\x23\xdf\x77\x81\xe3\x38\x71\x89\x63\xdb\xe6\xe8\x96\x10\x37\xa6\x71\x60\x43\x9c\xb5\x33\x1a\x06\x21\xd6\x46\xb7\xc0\x4f\x3c\x1c\x81\x8c\x6d\xdf\x73\x63\xe6\x98\xad\x22\xc5\x21\x61\x14\x87\x80\xd8\x67\x99\x47\xb0\xb6\xcf\x4b\xfd\x30\xb4\x7d\x02\xba\xf0\x3c\xdf\x8b\xc2\x01\xcf\xcb\x5c\x9b\x39\x9e\x90\x9d\x17\x04\x98\xd8\x24\xd2\xda\xb1\xed\x47\x91\x2d\x5a\xe6\x90\x38\x4e\x71\x6c\x56\x1e\x0e\x23\x37\xc1\x18\xc2\x66\x4c\x53\x92\xda\x89\x96\x63\xcc\x9c\xc0\x4f\x6c\x61\xc7\xd8\xc5\x51\xec\x99\xa3\x1b\x09\x5c\x1a\x04\x2e\xd8\x71\x9a\x51\xc6\xe2\x30\xd4\x21\x76\xdc\xd8\x8e\x93\x18\x5a\xc6\x70\x18\xbb\x74\xc0\xdc\x9c\x10\x27\x76\x12\x83\x52\x12\x2f\x09\xbd\xc8\x77\xb4\xf1\x98\xa5\x34\x8a\x5c\x08\x9b\xcc\x71\x31\x8d\x12\xb3\xb9\x79\x71\x98\x24\x91\x9b\x89\x9e\xc1\x77\x98\x13\x68\x11\xfb\x94\x30\x3f\x13\xc1\x2a\xf5\x63\x12\xd3\xc8\x2c\x8a\xc0\xa5\x19\x25\x0c\x1c\xc4\x4b\x59\x16\x13\x7d\xac\x08\x68\xe4\xf9\x8e\xe8\x69\x5c\x07\x07\x24\xf3\xcd\x56\x41\xdd\x84\x06\x14\x8b\x91\x10\xce\xec\x28\x0e\xb4\x61\x93\x26\x49\x60\x13\xa1\x3c\x1c\xf9\xae\x13\x32\xf3\xd8\x2d\xb4\x63\x96\x65\x59\x24\x46\x91\xbe\x83\x19\xd1\x5a\x45\xe4\x7a\xb6\x9f\x30\xf0\xbc\x94\x51\x12\xa7\xcc\x3c\x76\x8b\x59\x16\x46\x4e\x26\x7a\x06\x92\xf8\x41\x88\xf5\xe3\x0a\x3f\xc0\x01\xcd\x44\x17\xe6\x04\xc4\x73\x88\x59\x79\x49\x44\x02\x87\x25\x20\x63\x16\x11\xdf\xc7\xa1\x56\xc6\x29\xa6\x7e\x4c\x45\xd7\x44\xb8\x21\x91\xe6\x22\x60\x77\x20\x12\xa5\x51\x90\xa6\xe0\x20\x49\xca\x6c\x16\x63\x6d\xd8\xcc\xbc\x20\x75\xb3\x20\x93\x9d\x2e\x4b\x71\x60\xb6\x63\xdb\xcf\x6c\x3f\x10\xe3\x85\x80\xe0\xc0\xcf\x62\xad\x4b\xdb\x91\xef\x04\x69\x02\x0e\x12\x91\x84\x86\x34\x32\xf7\x20\x18\x3b\x59\x48\x6d\x57\x2e\xdc\x85\x76\x1a\x69\x39\xc6\x71\x80\xed\xd8\x11\xf1\xd8\xc1\x89\x1b\x60\xb3\x8c\x09\x4d\xe3\x20\xc8\x3c\x61\x15\xb6\x1b\xa4\x54\x1b\x8f\x1d\x92\x44\x51\x1c\x80\x55\xb8\x76\x12\x10\x37\x34\x3b\x88\x93\x84\x2c\x66\x36\x88\x02\x7b\x49\x18\xb3\x58\xab\x3c\xd7\xc1\xa9\x1f\x24\xd0\xb2\x30\xc1\xb6\x9d\xba\x66\x3b\x76\x93\xc4\x4b\x5d\x31\xf0\x4e\x62\x87\xb9\x24\xd6\x76\x4d\x7c\xb8\x42\xc2\x10\x82\x55\x96\xf8\x5e\xc0\x78\x78\x35\xc5\x8a\x2c\x89\xfd\x2c\x12\x9d\x64\x94\xfa\x59\xc4\xb4\x1c\xfb\x89\xeb\xe2\x90\x02\x62\x37\x72\x03\x8f\xe2\x40\x2e\xa2\x7e\x30\x5c\x5b\xad\xe7\x85\x6f\x6f\x7b\x43\xb5\xef\x19\xb4\xb7\x8d\x1b\xaa\x9f\x6e\x77\x43\xd5\xc3\x64\xb9\xad\x03\xcd\x76\xc4\xdd\x67\x1f\xbd\xed\xd6\x81\x1f\xd9\x21\x2b\x17\xdc\x9d\x38\x49\x42\xbb\x67\xeb\x20\x8e\xfd\x20\x62\xa2\xfb\xa5\x6e\x12\x45\x41\x73\xe8\x62\x20\xe2\x24\x3e\xcb\x9c\x00\x22\x59\xc6\x42\x37\xa3\x3c\x92\xe9\x20\x23\xcf\xcd\x32\xcf\x01\x2f\xf0\x32\x9c\x3a\x7e\xb6\xec\xaa\xbe\x87\x6d\xe6\x11\x11\x7c\xa2\x94\xf9\x94\xa4\x3d\x5b\x07\x61\x6c\x7b\x3e\x15\x06\x49\x62\x87\xf9\x09\xce\x96\x24\x82\x33\xea\xa4\xa1\xb0\xf9\x2c\x76\x71\x9c\xfa\x3d\x2d\xf1\x62\x66\x27\xa9\x18\x06\x61\x27\x60\x04\x07\xe1\x4d\xb6\x0e\xee\xfa\x1e\xe9\x32\xa9\x61\x01\xce\xee\xcf\xfc\xba\x87\xfb\x53\xbf\xee\x91\xfe\xdc\xaf\x7b\x4e\x7f\xf2\xd7\x3d\xb7\x3f\xfb\xeb\x9e\xd7\x9f\xfe\x75\xcf\xef\xcf\xff\xba\x17\xf4\x24\x80\x15\x0d\x84\xf4\xb0\xda\x73\xe0\xa2\x7c\x22\xca\xbb\x97\x3d\x84\x0c\xa0\xba\xf6\x0a\x94\x28\x9f\x88\xf2\x9e\xea\x04\xaa\x93\xde\xea\x64\x22\xca\x7b\xaa\x3b\x50\xdd\xe9\xad\xee\x4c\x44\x79\x4f\x75\x17\xaa\xbb\xbd\xd5\xdd\x89\x28\xef\xa9\xee\x41\x75\xaf\xb7\xba\x37\x11\xe5\x3d\xd5\x7d\xa8\xee\xf7\x56\xf7\x27\xa2\xbc\xa7\x7a\x00\xd5\x83\xde\xea\xc1\x44\x94\x6b\x8e\xf5\x2d\x99\xf4\x58\x58\x86\x0e\x79\x24\x8c\xa2\x9d\x71\x0f\x8e\xdc\x0a\x83\xd0\xd5\x8a\x85\x2d\xe8\x6a\x25\xc2\x0e\x74\xb5\x12\x61\x02\xba\x5a\xa9\x50\xbf\xae\x56\x2a\x34\xaf\xab\xc5\x84\xd6\x75\xb5\x98\x50\xb8\xae\x56\x26\x94\xad\xab\x95\x09\x3d\xeb\x6a\x9d\x0a\x1d\xeb\x6a\x9d\x0a\xf5\xea\x6a\x8d\x85\x6a\x75\xb5\xc6\x42\xab\x13\x5d\xde\x41\xd3\xd5\xdd\x25\x9f\x43\xed\xcd\xa7\x5d\xd2\x7f\x9b\x8b\xdc\xc3\x7d\xd7\xcd\x77\xa0\x07\x2f\xb7\xcf\xba\x20\x4b\x24\x8a\x16\x64\xb8\x08\xde\xe6\xe5\x6d\x03\x35\x6b\x34\xfa\x11\x91\x0f\x00\xa9\xcf\xe5\x5a\xe3\x98\x08\x1c\xf2\x7e\x41\x1b\x07\xdc\x9a\xbf\x55\x06\xea\xf5\x75\xf4\x33\x64\x23\xee\x27\x5e\xa6\x74\xbe\x51\x86\xea\xab\x71\x95\xe7\xf8\x6a\xe8\x2e\x9e\x04\x9b\x28\x35\xcc\xf7\xf1\x04\xd4\xb8\x91\x05\x7b\x2c\x92\xff\xaa\xc9\xab\x27\x90\xa2\xb8\x4c\x07\xdc\x80\xa3\x1d\x38\x38\xf4\xfa\x11\x35\xc1\x02\xd3\x0d\x53\x01\x39\x69\x70\x31\xe9\x72\x31\xd6\x71\x31\xe9\x72\x31\x56\xb9\x68\xc2\x05\x5d\xb8\x9e\x4c\xc6\xaa\x4a\x7b\x72\xe6\x7c\x51\x72\x6f\xdf\x24\xf9\x76\xad\x51\xbc\x9c\x46\x71\xad\x51\xbc\x94\x46\xf1\xb8\x91\xe0\x7b\x5c\x66\xe1\x56\x12\x73\x4f\x64\xae\x6e\x45\x48\x58\x4a\xb8\x09\x06\xe7\x98\x43\x45\xa5\x25\x3e\x7f\x50\xa5\x78\xd2\x60\x63\xa2\x61\x63\xac\x63\x63\xd2\x61\x63\xdc\x60\xa3\x89\xd0\xef\xe0\x23\xbe\x51\xa7\x37\xca\x1d\x6e\x0a\x25\x41\xad\xf6\xc0\xa4\xf6\xb7\x79\x20\x22\x97\xb6\x63\x6e\x41\x4e\x24\xa4\xe1\x4e\xb8\x80\xc4\xbe\x12\x48\x7a\x5f\x85\x2e\x61\x05\x03\x58\x3b\xb2\x68\xc3\x4e\x4a\xd8\x41\x1e\xea\x48\x33\xe1\x42\xcb\x83\x76\xcf\xd5\x04\xaf\x43\xd9\x58\x80\x8f\x21\x67\x1b\xc7\xc3\x35\x69\xaf\xa0\x67\xa5\x77\x56\xbf\xfc\xef\x08\xa3\x27\xa8\x73\x6c\xba\xcb\x07\xff\x6f\xa9\xc1\x61\x36\xf8\x7f\x57\x2b\x6f\xe9\xe1\x02\xdf\x96\x0b\x90\xe2\x92\x3c\x08\xed\x74\x39\x10\x9a\xe8\xd0\xd7\x23\xad\x7b\xc5\xb7\x79\x9f\x7a\xeb\x5e\xef\x6d\xae\x63\xae\x3f\x27\xbe\x4c\x8a\x3f\x46\x0f\x51\x36\x96\x69\xf1\xf9\x17\xfd\x3d\x3e\x51\x47\xf8\x3e\x9b\xf0\x3a\x13\x59\x87\x7f\x39\x9d\x18\x92\xe9\x8f\x21\x9b\x3e\x47\x1d\x0b\x3a\xf0\x39\x11\x9f\x63\xf9\xb9\xbf\xfa\x04\xaa\x73\x2a\xb1\x20\x09\x9f\x13\xf1\x39\x96\x9f\xcd\x29\xf9\xc7\x22\x27\xbf\x0c\x38\xa2\x5f\x89\x26\x22\xbd\xf4\x8a\x48\x7e\x10\x8d\xcb\x8c\xfd\xb2\xb0\x91\xb3\x7f\xac\xbc\x22\x11\x95\xbd\x8e\x31\x33\x3f\xcc\xa6\x46\x15\x22\x49\x73\xdc\xa4\x39\x69\xd0\x1c\x37\x69\x4e\x54\x9a\xe3\x65\x68\x62\xd1\x4e\x26\xbb\x06\x71\xdf\x84\x89\x4e\x81\x96\x69\xff\xc7\xe5\xa3\x15\x4a\xa1\x5b\x17\x72\x9a\x4e\x59\x26\xd2\x70\x9b\x69\x8a\x76\x4a\xe0\x92\xe6\xb8\x49\x73\xd2\xa0\x39\x6e\xd2\x9c\xa8\x34\xc7\x35\x4d\xed\xa8\x73\xf8\x1d\x02\x3d\xaf\x2f\x20\xfb\xd2\x8b\xfe\xcb\x54\x2f\xc0\x79\x5f\xe4\xa6\x6b\x54\x2f\x20\x18\xbc\xc8\xfb\x42\xe8\x17\x78\x28\x81\xc3\x8c\x27\x15\x8b\x3a\xa7\x14\x80\x9c\xe0\xb8\x6e\x8b\x08\x17\x05\x56\xc3\xc5\x78\x99\x58\x55\x93\xe5\xff\xe5\x12\x31\xd3\x2c\x80\x54\x32\xd6\x11\x4c\x6e\x45\xf1\x85\x36\xf4\xb4\x29\xbe\xc8\x75\x14\x5f\xe4\xb7\xa1\xa8\x0f\x76\x6d\x8a\x6f\xb5\x14\xdf\xea\x28\xea\xad\xad\xfd\x78\x45\x0f\x49\x58\xbc\x28\xdd\x1e\x00\x7b\xb9\x83\x75\x90\x32\x2a\xad\x8a\xf0\x08\x2c\x12\x95\xc5\x12\xd7\x72\x6c\xbe\x39\x4f\xa3\x82\xa1\x4b\xf3\x4c\x9f\xff\xc1\x7c\x53\x6b\xdf\x30\xdd\x3c\xd5\xb1\x0d\x1d\x50\xa6\xab\x03\x13\xdb\x4c\x57\x07\xe6\xd0\x4c\x57\x07\xa6\xd0\x4c\x57\x07\xa6\xe4\xa3\x74\x02\xcf\x77\x4c\xfa\xde\xef\x80\x39\xfd\x28\x1d\x03\x94\x10\x1d\x53\x25\x97\x76\x84\xd6\xfb\x12\x08\xc7\x94\xe8\x78\x84\x25\x85\x44\xc7\x23\xac\x5e\xc4\xba\x3a\xb0\x78\x11\xeb\xea\xc0\x3a\x49\xa4\xab\x03\xcb\x24\x9d\xd7\x0c\xf8\x1f\x2c\xbb\x8c\x84\xa9\x17\xa4\x57\x18\xb0\x70\x33\x12\x72\xe0\x96\xb5\x5a\xf7\x38\x42\x1a\x45\x77\xb0\x73\xa7\x8f\x95\x28\x6b\x86\x30\x32\xd8\x03\xfb\x8f\x3a\xa3\x81\xbd\x2a\x19\xc5\x68\x0f\xec\x3e\x12\xcc\xee\xd9\x2a\xb7\x51\x97\xd9\x36\x1e\x65\x95\x51\x10\x04\x11\xc5\x5d\x82\xb8\x26\x08\xe2\x89\x25\xc1\x46\x24\x88\x87\x09\x2a\xeb\x92\x82\x20\x81\x10\xdb\x25\x48\x6a\x82\x64\x5c\xf6\x4b\x23\x80\x57\xc2\xeb\x30\x41\x65\x25\x53\x10\x74\x38\xc1\xb4\x4b\xd0\xa9\x09\x3a\x9c\x56\x2a\x09\x3a\x03\xee\xd0\xc6\xa3\xac\x7d\x0a\x82\x2e\x27\xc8\xba\x04\xdd\x9a\xa0\xcb\x69\x31\x49\xd0\x55\x09\xb2\x61\x82\xca\x6a\xa9\x20\xe8\x71\x82\x59\x97\xa0\x57\x13\xf4\x38\xad\x4c\x12\xf4\x54\x82\xd9\x30\x41\x65\x7d\x55\x10\xf4\x61\x52\xd1\x25\xe8\xd7\x04\x61\xf4\x7e\x2a\x09\xfa\x8d\x49\xc4\x30\x41\x65\x45\x56\x10\x0c\x38\xc1\x71\x97\x60\x50\x13\x84\x69\x93\xec\x93\x39\xbc\x69\x10\xf0\xcd\x77\x2f\xee\x1f\xc5\xb9\xbb\x47\x71\x30\x1f\xdc\xcb\x97\xcd\x38\x32\xc8\xc3\xe2\xd8\x77\xfd\x2c\x8e\x9e\x0c\xfe\x97\x7c\x18\x67\x6b\x36\xfd\xc2\xe6\x22\xcb\x2f\x2a\x66\xc8\x21\x8f\xe3\xbc\xe0\x03\x94\x14\x45\x70\x3e\x3b\x66\xd9\x6c\xce\xe4\x71\xea\x8e\xd6\x94\xbb\x26\xca\xde\x5d\x31\x7b\xe7\x90\xbb\x78\x88\xe7\xcf\xfa\x04\x8f\xca\x67\x95\x1f\xe4\x09\xc2\x36\x71\xd7\x1d\x99\xa7\xf8\xfe\x76\x53\xef\x55\x25\x0f\x93\x9b\xde\x6e\xe2\x55\x06\x6e\x37\x35\x8e\x35\x74\x6e\x37\x79\x98\xdc\xdf\x6e\xba\xeb\xdb\x4d\x5c\x2b\xcb\xdd\x6e\xd2\x2a\xa7\x71\xbb\x49\x28\xc8\x78\xbb\x49\xdc\xa3\x5d\xf2\xf6\xb7\xf3\xa7\xbe\xcf\xc4\xa6\xc9\xe3\x38\x5a\x30\xdf\x6d\x15\x9c\xa5\x5e\x1b\xf4\xcb\xf9\xe7\x34\x6b\xfd\x98\xe4\xe7\x63\x36\xff\x43\xae\x44\x29\xac\xc2\x77\xce\xa1\x28\x10\x8c\xc1\x67\x95\x9f\x7f\x87\xab\x53\x6f\x97\x7a\x13\x08\x0e\xcf\x6c\x41\xd3\x2b\x38\xe5\xb7\xe1\xab\x50\xeb\xeb\xe8\x35\x9b\x9f\x41\x2f\xba\x35\x9e\xe5\x09\x43\xb8\xfd\x6c\x0a\xaf\xfe\x7a\x0b\x37\xef\x2e\x79\x81\x85\xdc\xd0\x42\x2e\xb6\x90\xe3\x58\x88\x78\x16\xc2\x81\x85\x42\x0b\x21\xac\x1c\x35\xf2\xa8\x85\x3c\xdb\x42\x2e\xb1\x90\xe3\x5a\x88\xf8\x16\xc2\xd4\x42\xd8\xb6\x10\x51\xe1\x42\x0b\x79\xd8\x42\xae\x63\x21\xc7\xb3\x10\x09\x2c\x84\x43\x0b\x61\x8e\x5f\x81\xf3\x6d\x0b\x79\xc4\x42\xae\x6b\x21\xc7\xb7\x90\xef\x58\xc8\xf3\x2c\xe4\x06\x16\x72\x42\x05\xd0\xc1\x16\x22\x8e\x85\xb0\x67\xa1\xc0\x42\xc8\x27\x16\xf2\x5c\x0b\xb9\xf0\xb4\x80\x0a\xc8\x39\x21\x16\xc2\xae\x85\x7c\x0e\x88\x2d\xe4\x39\x16\x72\x3d\x0b\x39\x81\x02\x48\x42\x0b\x11\x6c\x21\xcc\x49\x5a\x08\x11\x6a\x21\x62\x5b\x08\x73\x76\x04\xd8\x07\x83\x5c\x89\x5e\xae\xa4\x29\x57\xce\x05\x97\x23\x6f\x37\xe1\x9f\x2d\x84\x3c\x95\x5b\x49\x98\x37\x8b\x73\x0b\x0c\xd9\x2a\x97\x8e\x14\x1c\xe7\x8a\x03\xf8\x16\x52\x9b\x8b\x7d\x21\x0f\x2e\x60\xe0\xde\x69\x2a\x82\x2b\x94\x0b\x98\xcb\xcf\x09\x84\x60\x3d\xaf\x25\x2f\xd7\x96\xda\xf2\x84\xf6\x5d\x95\x02\x57\x0d\x37\x0d\x87\xab\xd4\x17\x6a\xf7\x54\x1d\x72\x15\x70\x7b\xe0\x76\xc1\x75\xc8\x05\x5b\x8e\x6a\x1a\x2f\x42\x5d\x9c\x5d\x4c\x22\x78\x26\x85\x0f\x2a\x17\xe3\x3c\xeb\xbc\xf0\x04\x5e\xb0\x7f\xf2\xe9\x78\x6f\x7f\x57\xbc\x29\xc5\x25\x46\x2c\x04\x8d\xe7\x12\xa2\xdc\x22\xa5\x9a\x40\xba\xd2\x52\xb1\x54\x27\x91\xd6\x0b\x02\xa1\x2a\xfd\xe3\xe7\x87\xef\xd8\x02\x45\xd3\x54\xe6\x46\x3f\x07\x95\x8a\xf7\x34\x34\x7c\x70\xf8\x4f\xaf\x9b\xfa\x6c\x0d\x29\xed\x2b\xfb\x09\x4c\x46\x28\xb1\x6d\xab\x5d\x56\xce\x15\x04\x88\x06\x80\x34\x00\xa8\x6d\x93\x0e\x88\xa3\x80\x74\x4b\x5d\xb5\x54\x43\xc0\x6b\x12\x20\x1a\x02\x7e\x93\x49\x1d\x48\xd0\x6a\x87\x86\x10\x6d\x30\xd2\x45\x11\xb6\xa9\x74\x51\x44\x2a\x88\x0e\x20\x6e\x4b\xab\x0b\x92\xb4\xc8\x74\x00\xd2\x76\x53\xba\x20\x4c\x01\xe9\x52\xc8\x9a\x5c\x76\xab\x53\x53\x6d\x4c\x07\xf5\x41\xe8\x00\x01\x87\x0e\x58\x95\xdb\x26\xa2\xb1\x0b\x6a\xb6\x1b\x9f\x0e\x1a\x66\x40\x4d\x86\x49\xe9\xa0\xbe\x43\x3a\xa0\xef\xa8\xcd\x84\xc6\x24\xda\x64\xba\x9c\x24\x74\x50\xe3\x29\x1d\xb0\x1a\x46\xcd\xd6\x9d\xb5\x69\x68\x34\xdf\xab\x2e\x19\x25\xb0\x5e\x90\x44\x29\xed\x51\xa6\xd3\x00\xd1\x52\x77\x9b\x58\x74\x6d\xf4\x54\x10\xad\x4d\xa8\x7c\x6a\xca\x83\x26\x1b\x06\xdf\xc0\x06\xf3\x0f\xdb\x9c\xf6\x06\x0a\x6c\xd0\x68\xdc\x6c\x8c\xc6\x2a\x1a\x8d\xe9\x8d\x13\xd8\x60\xbf\xac\x05\xd2\x17\x2a\xb0\x3e\x14\xd0\x41\x51\x60\x3a\x28\x0a\x42\x07\x55\xef\x50\xb3\xda\xdc\x16\x8a\xbe\x58\x61\x12\xb7\x4f\x4d\x26\x1c\xd0\x01\x65\x50\x3a\x20\xc9\x90\x0e\x9a\x56\x44\xcd\x0a\x8d\xdb\xf2\xd6\x74\x1e\x6d\x2a\x5d\x90\x94\x9a\x54\xca\xe8\x80\x0b\x65\x6d\x8d\xaa\x6f\x54\x59\x43\xa3\x0c\xd7\xb6\xa9\x6b\xe3\xde\x08\x22\x61\x7a\x87\x19\x95\x02\xfb\x22\x48\x49\xc4\xd6\x11\x71\x9b\x44\xb4\x30\x5e\x13\x8f\x96\x19\xbf\x89\x47\x0b\x13\xd4\x30\x1a\x2a\x6a\xb0\xd5\x56\x0f\xdb\x24\x34\x48\xa2\x76\x73\xfa\x07\x1c\x92\x90\x06\x49\xd2\x10\xac\x06\x20\xad\x01\x7a\x03\x88\x60\x41\x53\x39\x6b\x6b\xa5\x77\xdc\x65\x14\x26\xa6\x03\xad\x20\xd4\x24\x6d\xa7\x4d\x42\x67\x1b\xb4\xa5\x77\x9d\x6d\xd0\x61\x81\xfb\x74\xc0\x50\x03\x3a\x6c\xa8\x94\x0e\x28\x25\xa4\x06\xa5\x44\xd4\xec\x4b\x71\x9b\x83\xfe\x40\x62\x74\x95\x94\x0e\x18\x31\x6b\xcb\xb4\x3f\x9e\xf4\x5a\x90\x3a\x01\xd1\x94\xe2\x25\xdc\x1e\x93\x25\x9c\x09\x3b\x4b\x38\x3e\x76\x97\xb0\x67\xec\x19\x5d\x1f\xfb\x43\x2e\x89\x83\x81\x60\xa8\x0e\xc1\xf5\x18\xc2\xa1\x70\x89\xa3\x21\xbf\xc7\xf1\x12\xd1\x12\x27\x43\x81\x0c\xa7\x4b\x04\x4b\xcc\x96\x08\x65\x38\x6b\x6b\x48\x6b\x2e\x43\xa1\x02\xe3\x21\x0f\xc5\x64\x09\x07\xc1\xce\x80\x97\x61\x77\x99\xc0\xe6\x2d\x11\x76\xb0\x6f\x8c\x6e\x38\x58\x22\x2c\x61\xba\x84\x2f\xe2\x70\x09\xaf\xc7\xd1\x12\xd1\x14\xc7\x43\x11\x0c\x27\xa6\x10\x86\xd3\xa1\xb0\xc0\x96\x08\xa3\x38\x6b\x45\xa8\x9b\x0c\x55\xb0\xed\xf6\x04\x23\x3d\xcb\xa4\x21\x15\xdc\x3b\x44\x11\xb8\x75\xd8\x5d\xa5\xdc\xd6\x94\x7b\x2d\xe5\x74\x21\xfc\x86\xd0\x74\x34\x82\x06\xc4\x70\x77\xdc\x3f\x36\xa9\xa9\xf4\x8d\x4c\xca\x96\xf6\x8d\x4a\x6a\x2e\xba\x7c\x26\x2d\x69\x76\x21\xd2\x86\xb4\xfa\x86\x26\x80\xa1\x67\x58\x22\xeb\xea\x25\x60\x6a\x1e\xa6\x43\xec\x13\xda\x6f\x28\x0e\x1d\x32\x14\x97\x0e\x29\xda\xa3\xe6\xc6\xfb\xd4\x6c\x4a\x81\x52\xde\x2d\xa5\xb4\x5f\x74\x21\x35\x89\x2e\xa2\x43\xe6\x15\x53\xb3\x13\x24\xd4\x6c\x3a\x29\x1d\x32\x0c\x46\x87\x9c\x20\xa3\x43\x26\xde\x18\x56\xf4\x18\x01\x1e\x70\x57\x4c\x06\x2c\x14\x3b\x83\x21\x03\xbb\x46\x4b\xc5\xde\xa0\xc3\x63\x7f\x30\x6a\xe0\xc0\x14\x89\xe9\xa0\x27\xe2\x70\x30\x64\xe0\xc8\xe0\x8d\x38\x1e\x08\x17\x38\x19\x8c\x5a\x58\x0d\x07\x1a\x12\x6c\x20\xf6\xe2\x6c\x30\x24\xc9\xa1\x85\xb1\x99\xd8\xe8\x57\x98\x0c\x87\x16\xc7\x10\x39\xb0\x3b\xe0\xd6\xd8\x1b\x8c\x2d\xd8\x37\x3a\x30\x0e\x06\x63\x1b\xa6\x03\xc1\x07\x87\x83\x1e\x88\xa3\x81\x30\x80\xe3\xc1\x18\x88\x93\xc1\x50\x80\xd3\xc1\x78\x84\x99\x21\xd8\xe1\xac\x19\x8d\x6e\x32\x7e\xa0\xb6\x20\xa9\x8f\x2d\xe5\xe8\x13\xdb\x6e\xcf\x50\xa2\x64\x5a\x53\xee\xd4\x18\x5c\xbd\x21\xba\xfd\x46\xe4\x35\x25\xa2\x1f\x43\x54\x83\x63\x1d\xf9\xc0\x6e\x0c\xff\xfa\xfb\xcf\x72\x47\x45\x3f\x82\xa8\x75\xab\x1f\x3f\x88\x72\xfd\xd8\xa1\x16\x5f\xdf\x0e\x4a\x2d\x1e\x0d\x8e\x54\xf1\xd2\x9e\x91\x43\x69\xde\xfa\xb1\x43\xad\xe0\x9e\xf6\x1b\xf5\x8b\x69\x7f\xf3\x08\x1d\x62\xde\xa1\x43\x02\x70\xa9\x59\xc5\x1e\x1d\x6a\x82\x4f\x7b\xed\x27\xa0\x43\xc6\x47\xa9\x49\x7e\x61\x93\x78\xdf\x20\xc2\x60\x1d\x31\x35\x69\x2f\xa1\x43\xd6\x97\x52\xb3\xfd\x32\x6a\x76\xbf\x8c\x0e\x79\x08\xb6\x07\x5c\x04\xe3\x01\x2f\xc4\x64\xd0\x0d\xb1\x63\xea\x29\x8c\x16\x8e\xbd\x41\x17\xc1\xbe\x3d\xa4\x27\x1c\x0c\x46\x32\x4c\x07\xbd\x05\x87\x83\xe1\x02\x47\x83\x01\x0f\xc7\x03\x31\x13\x27\x83\x71\x03\xa7\x03\x61\x09\x33\x43\x5c\xc2\x99\x31\x6c\x88\xd1\x83\xb9\x0d\x78\xd0\x2f\x31\xe9\x77\x4c\xec\x0c\xb8\x3d\x76\x07\x0c\x1f\x7b\x83\xbe\x83\xfd\xe1\xe8\x16\x18\xc2\x1b\xa6\xc3\xce\x13\x1a\xe3\x07\x8e\x06\xe3\x1f\x8e\x07\x83\x28\x4e\x8c\x41\x04\xa7\x83\x51\x0a\xb3\x81\x30\x85\xb3\x66\x1c\xb9\xd9\xe0\x41\x1b\x53\x4a\x7e\xfb\x76\x48\x2a\x6e\xb4\x43\x86\x27\xca\x71\x0d\xed\x88\x41\x02\xc0\x7a\x8a\x76\xdc\x50\x8d\xf9\x34\xe5\x7e\x89\xa0\x0f\x20\xa8\x19\xd4\x94\xaa\x3a\xef\x1b\x32\xd4\xfc\xf5\x8c\x19\xea\x16\x6a\x28\xc4\x35\x83\x7a\x16\x92\x06\x80\xae\xe3\xe8\xf5\x3d\xa6\x2a\x47\x83\x3a\x6b\x08\x47\xbf\xe6\x60\xaa\x8f\xe9\x80\x70\x09\xb5\xfb\x0c\xc7\xa1\x66\xc3\x71\xa9\xc9\x70\x3c\x3a\x60\x17\x3e\x1d\x90\x5a\x40\x07\x4c\x8f\xd2\x01\xd5\x86\xb4\x4f\xee\x11\x1d\xd0\x69\x4c\xcd\x56\x9b\xd0\x01\xab\x49\xe9\x80\xe6\x18\x35\x1b\x6e\x46\x4d\x66\x8f\x6d\xa3\xdb\x62\x6c\xf7\xea\x15\x93\x21\x9f\xc6\xce\x90\x4f\x62\x77\xc0\xab\xb1\x37\xe4\x14\xd8\x1f\x8a\x1c\x38\x18\xf0\xed\xaa\xdf\xeb\x55\x23\x0e\x87\x1c\x08\x47\x03\xf1\x11\xc7\x43\x11\x04\x27\xc6\x08\x85\xd3\xa1\x08\x83\x59\x7f\xe7\x9c\x0d\x44\x08\x18\x1f\x98\x75\x85\x07\x2c\x0d\x93\x01\x4f\xc7\xce\x90\x33\x63\x77\xc8\x59\xb1\x37\x14\xaa\xfc\xfe\x50\x84\x83\xa1\x60\x81\xa9\xd9\x5d\xc2\x21\x87\xc7\x51\x6f\xb0\xc0\xf1\x90\x2f\xe3\x64\x20\x5c\xe0\xd4\x18\x2c\x31\x1b\x0a\x65\x38\x6b\x05\x9c\x9b\x8c\x0a\x24\xdb\x54\x17\x45\x4a\x9c\xba\x71\x81\xa8\x4b\xf4\x6d\x76\xea\x72\xa2\xc3\xed\xd6\x12\xd1\xe2\xf7\xd4\xf6\xe8\x46\x05\x55\x69\x17\x77\xd0\x30\xe8\xde\x5e\x51\x3b\x1a\x50\x98\xea\x22\x8e\x4a\xb2\x5a\x96\x63\x69\xa0\xba\x11\x80\x22\xab\x6e\x79\xaa\xa0\xed\x96\xb2\xaa\xad\xdd\xb2\xac\x21\x65\x5d\x4b\x8d\x4a\xc2\xd4\xac\x24\x42\x7b\x5a\xe4\x50\x93\x76\x5c\x6a\x6a\x8f\x47\xcd\x56\xe7\x53\xb3\x65\x04\xb4\x5f\x1e\x94\x9a\xec\x22\xa4\xfd\xf6\x1c\x51\xb3\xea\x63\x6a\xd6\x61\x42\x7b\x6c\x2a\xa5\x66\x15\x31\x6a\xb2\xa9\x8c\x9a\x4d\x19\xdb\x03\x7e\x84\xf1\x80\xf1\x61\x32\xe0\xa9\xd8\x31\x18\x20\x76\x8d\x7e\x8a\xbd\x01\x57\xc4\xbe\x3d\x10\x83\x02\xa3\xcf\x55\x23\xd8\x1e\xde\xc3\xde\xa8\x1d\xf5\x79\x2b\x8e\x07\x42\x1b\x4e\x0c\x71\x11\xa7\x03\x31\x04\xb3\x01\x9f\xc5\x99\x31\xb8\xf1\x1e\xbd\x87\x71\x6c\x34\x25\x4c\x8c\x4e\x8b\x9d\x01\xbf\xc4\xee\x80\x63\x62\xcf\xe0\x99\xd8\x1f\x88\x35\x38\x18\x0c\x56\x03\x9e\x84\xc3\x01\x1f\xc5\x91\x21\x00\xe0\xd8\x18\xb5\x70\x62\x0c\x2d\x38\xed\xf3\x7f\xcc\x86\x5c\x38\x6b\x86\x9e\x9b\x77\xdd\x1a\x1b\x29\x59\x75\x6d\xac\xe9\xba\xe5\x50\x43\xd3\x69\x4b\xa4\xba\x6a\x6e\x35\xc8\xd1\x95\x7a\x3d\xcd\xf7\x05\x4a\x4d\x1f\x5d\x0f\x99\xba\xa5\x54\x69\x80\xae\x9b\xae\xda\xde\xad\x1a\x29\x46\xde\x2d\x8d\x95\x46\xe8\xa6\xea\xca\x38\x4e\xd3\x4d\x0b\xb9\x75\xb1\xb2\x5a\x6e\xba\x49\xba\x32\xf2\xed\xb6\xd4\x24\x06\x4c\xf5\x42\x25\xd4\xa4\x5f\x87\x9a\xda\xe8\x52\x83\xe1\x78\xd4\x24\x3c\x9f\x9a\x5a\x12\xd0\x3e\xf1\x50\x6a\x30\xab\x90\x9a\x54\x1d\x51\x93\x46\x62\x6a\x30\x84\x84\xf6\x99\x79\x4a\x4d\x96\xcc\xa8\xde\x62\x33\x6a\x50\x32\xb6\x8d\x5a\xc6\xd8\xe8\xae\xc4\xe8\xaf\xd8\x31\xfa\x0a\x76\x4d\xee\x80\x3d\xa3\x2b\x61\xdf\xe8\x10\x38\x30\x45\x04\xd9\xdf\x68\x8b\x42\x63\xb4\xc0\x91\xc9\x63\x70\xdc\x13\x34\x70\xd2\x17\x64\x53\xa3\xe7\x62\x66\x0c\x0a\x38\xeb\x8d\x88\xd8\x36\x6a\x1d\x1b\x1d\x11\x13\xb3\x77\x3b\x3d\x96\x86\x5d\xa3\xa3\x61\xcf\xe4\xc2\xd8\xef\xf5\x43\x1c\x18\x23\x03\xa6\x46\xef\xc7\xa1\xd1\x17\x71\xd4\x13\xac\x70\x6c\x74\x37\x9c\x98\xa2\x03\x4e\x7b\xbd\x18\x33\x63\xe4\xc0\x99\x12\x1c\x6e\xd2\xa7\x52\xde\xc1\x13\x0d\xc2\x4a\x38\xdd\x78\xfc\xa4\xde\xdc\xe8\x86\x63\x51\xaf\x1b\x88\x25\x3e\x4d\x91\x27\xf0\x11\x2d\x1f\x7e\x55\xa8\x0b\xc2\x92\x13\x7d\x3f\x43\x6d\x3d\xff\x61\xd5\x6e\x5d\x08\x16\x7c\xea\x8a\xe2\x0a\xa9\x86\xcf\xe4\x89\xb8\xec\xd1\x0d\xbf\x7a\x3b\x61\x95\x10\x35\x75\x32\xc9\x84\xa6\xa8\xdc\x54\xea\x6d\xb9\x28\xc6\x26\x99\x4a\x18\x62\xd2\xbf\x84\x71\x4c\xba\x96\xbf\xbb\x26\x61\x4b\x18\xaf\x5f\xac\x12\xc2\x1f\x6c\x73\xd0\x63\x5a\xb2\x98\x9a\x24\x2a\x61\xc2\x3e\x2d\xc9\xf2\xa8\xdf\x4a\x25\x44\x6c\xb2\x47\x09\x93\xe8\x55\x2e\x4b\x53\x93\x19\x49\x18\x66\x32\x51\x09\x93\xf5\x7b\x68\x39\x22\xd6\x3a\x36\x36\xb5\x00\x93\x1e\x21\x63\xa7\xcf\xe2\xb0\x6b\x62\x16\x7b\x26\xb5\x60\xdf\x24\x0c\x1c\x18\x9a\xd8\x17\x7f\xc3\x7e\x15\xe2\xc8\x64\xa9\x38\x36\xc6\xc3\xc4\xe4\x51\x38\xed\xb7\x6f\xcc\xfa\x8c\x0e\x67\xc3\xde\x55\x4f\x6e\x7a\x21\xb0\x39\x16\x60\x32\x6c\x70\xd8\x19\xf2\x3e\xec\x1a\xbd\x0f\x7b\xc3\x41\xa0\x54\xb6\xb1\xb9\xc1\x70\x50\xc2\x74\x38\xb8\xe1\x70\x38\x1a\x94\xe6\x60\xf2\x32\x61\x14\xbd\xa5\xc9\x50\x58\x13\x86\x61\xe0\x93\x0d\x45\x9c\xd2\x48\x80\x8a\xd2\xb3\x8b\x8f\x6a\x5e\x83\x97\xd1\xe2\xf3\x02\x15\xe3\xa8\x40\x0b\x36\x61\x49\x01\xf9\x88\x8e\x9f\x1f\xbe\x43\xf9\xf4\xbc\x7c\x26\xa2\xca\x68\xf0\x72\xf3\xb8\xf5\x70\x71\x7d\x31\xd1\x42\xf5\xc1\x7f\x78\x40\x51\x7e\x81\xcf\xf2\x8b\xa5\x56\xb4\xe5\xaf\x02\x40\x7c\x29\x3f\xf3\x2f\x96\xd2\x9e\x36\xe7\x4a\x56\xa5\xed\x9d\x63\x91\x18\x0b\x89\xc4\x2f\xe6\x37\xaa\x38\x74\xf5\x40\x95\xf8\xa2\x64\x49\xb9\xed\x13\x55\xe6\xd4\x7a\x9f\xd9\x75\x95\x02\xec\x33\xbb\xd6\xa4\xbe\xfb\xcc\xae\xcb\xbc\x7a\x9f\xd9\xb5\x3e\xad\x1e\xa7\x21\x54\xe4\xf9\x28\xce\x8b\x05\x8a\x92\x64\x36\x4f\xf3\xe9\x29\x2a\x66\xe8\xf5\x16\xd6\xe2\x7d\x9e\x43\x2a\xa0\xf7\xed\x1c\xc8\xba\xb7\x43\x3c\xbf\xff\xed\x90\x1a\xdd\xeb\x19\x47\xf8\x7a\x0b\xbf\xcf\x3f\xa0\xc7\x08\x6b\x72\x94\x4a\xba\x22\x3d\xff\xa8\x6c\xdd\xfb\xba\xbe\x4c\xc7\xc7\xff\x19\x39\x18\x3d\x56\x50\x43\x1e\xbe\x15\xf4\xb0\x83\x58\x93\xb0\x74\x73\xb1\x60\x67\xf1\x84\x21\xec\xa3\xc5\x45\xfc\x99\x5d\x6b\xc4\xbf\xb8\x88\x5f\xb0\xeb\x45\xa5\x82\xfa\x7b\xbf\x50\xa6\xc7\x00\x24\x44\x53\x7e\x79\x86\xb0\x5f\x7d\xeb\x7f\x62\x65\x0b\x32\x4e\x49\x7e\xf4\x82\x5c\x94\xd8\x25\x2f\xef\x25\xd2\x0f\x92\x29\x2d\x5e\xf3\xd3\x2d\x71\x5e\x1c\x43\x56\x94\x0d\x25\x09\x4a\x85\xb7\x0f\xa5\x30\x28\x97\x6a\x0d\x8a\x74\xeb\xe8\xac\x86\xb8\xfd\x56\xd3\xa4\x93\xcd\x67\x67\x10\x60\x26\x2c\x2b\x10\xa1\xe0\x19\x9c\xb2\xbe\xa2\x10\xce\xfb\x51\x8e\xd6\xc5\xdb\x10\x36\x24\x70\x2c\x8d\x6b\x34\x7a\xbd\x45\xa4\x0d\xae\xa0\xd5\x4a\x02\x2b\xe8\xaf\x88\xd0\x0f\x90\xe3\x11\x6c\x2b\x47\x7f\x85\x37\x2e\x96\x66\x6f\x9e\x9f\x8e\x97\xe7\xcf\x85\xf4\x9d\x35\x93\x2b\x0d\x2e\x09\x85\x62\xc1\x2b\x5a\x45\xc4\xed\x61\x78\x45\xc3\x71\x87\xac\x2e\xb3\x3f\x6f\x40\x3e\x4d\x18\x62\x51\x32\x96\x66\x87\xf2\x05\x8a\xce\xcf\x27\x39\x4b\xb9\x2e\xa3\x29\x62\x57\xe7\xd1\x34\x65\x69\x99\x97\x11\xc2\xbb\xa5\xc5\xc6\x45\x20\xd1\x24\xd1\x14\xc5\x0c\xc5\xf3\xd9\x67\x36\x45\xf9\xb4\x98\x21\x2a\x92\x02\x2f\xd0\x22\x89\x26\x02\xbd\x40\xb9\xd0\x63\xbb\x1c\xe7\xc9\x18\x45\x93\xc9\xec\x72\x01\xa8\x39\xde\x62\xc6\xd1\x5e\x2c\x58\x8a\x2e\xf3\x62\x3c\xbb\x28\x04\x83\x8b\x7c\x36\xed\x62\x91\x82\x86\xf4\x9a\xa3\xfa\xcb\xb3\x67\xf2\x59\x99\xfa\x27\x1e\x50\x1c\xac\x93\x5c\xc3\x72\xb1\xb0\xdc\xc0\x6c\xb8\x12\x2d\x04\xb1\xfa\x33\xc4\xac\x51\x2e\x94\xf8\x23\xe2\xda\x77\xf4\xaa\xea\x6b\x47\xa0\xb6\x23\xf8\x20\x13\x7b\xfe\xae\xfe\x04\x8f\x02\x74\x9e\xda\xd1\x44\xc0\x2d\x91\xf8\x12\xe5\xd3\x2f\x6c\xbe\x60\xfd\x51\x30\x9f\x7e\x39\x6e\x05\xc2\xc6\x4f\x4b\x75\x10\xd8\xd0\x41\xd4\xd8\x54\x89\x2d\xde\x63\x8f\x1b\x74\x1b\xfb\xd7\xc6\x82\x43\xfd\x85\x4d\x93\xf9\xf5\x79\x71\x83\xa7\x00\x65\xc6\xda\xd9\x56\x55\xaf\x06\xb6\x9a\x21\xbf\x37\x85\x6e\xca\xbe\x07\xd5\x5a\x22\xa6\xdc\xbd\x5b\x66\xca\x56\x29\x48\xdd\xa0\xe3\x67\x56\xa8\xe3\xb4\x26\x73\x13\x40\xaa\x3c\x8d\xd5\xd6\x81\x00\x9b\xb7\xc1\xe0\xe5\x2c\xcd\xe8\x63\x7f\x9a\x17\x79\x34\x51\x53\x5f\x35\x61\xd8\x55\x32\x8e\xa6\xa7\xec\xe0\xa8\x4e\x8b\x2a\x32\x8f\xd9\x57\x76\x26\xfe\xd7\x36\x69\x7d\x1d\xf1\x3e\x35\xcc\x58\xb3\xac\xb7\xce\xd1\x81\x5a\x87\x00\x1d\x47\xfe\x2d\x57\x87\x0a\xde\xec\x2c\xe3\xff\x5f\x92\x37\xa8\xe3\xc9\x3f\x6d\x66\x5a\xd3\x53\x6d\x22\x7d\x18\x78\x94\xf8\x28\xbc\x0a\x3e\x0f\x3f\xdb\xa6\xe9\x89\xb4\xe3\x09\x40\xd7\xf7\xec\x45\x65\x18\xaa\x9d\xf4\xc0\xce\x9b\xb0\x73\x09\xab\x65\x72\x97\xe5\x8b\x82\x4d\x2a\x2b\xd6\x63\xcc\xa0\xf1\xcb\x0d\x2d\xa8\x39\x40\x67\xbc\xa3\x15\xa9\xd6\xde\xe7\x1f\xde\x8f\x46\x92\xdb\x8f\x75\xb8\xe6\x03\xc9\x6a\xea\x02\xdf\x21\xad\xb6\x4e\x34\x9a\x80\xdd\x72\xa4\x79\x9f\xa4\x5a\x9e\x34\x29\xd9\xc8\x86\x03\xf8\x9b\x69\x3a\x43\x8b\xcb\xe8\x5c\x0c\x3f\x26\xd1\xa2\x10\xc6\xd0\x0d\xe1\x85\x59\x65\x2d\x66\x9b\x0a\x33\x39\x7e\xa1\xb1\x61\xc8\x28\x7e\x53\x57\xef\xb8\xc6\x9d\xb9\xe0\x6d\x5c\xfd\x36\x21\x65\x20\x74\x69\x66\x64\x05\x9a\x5d\x14\x9d\x08\x5c\x85\x5c\xb3\xca\x1a\x21\xb7\x5f\x67\x8d\x2e\xe3\x33\xbb\x16\x29\xa0\x7d\x77\xdd\x21\x6a\x49\xfe\xa5\xa7\x40\xc9\x1b\xed\x6b\xb3\x46\xaf\xa3\x63\x6e\x81\x72\x12\x30\x9f\x2d\x16\xf5\x30\x1d\x72\x1e\xc2\x80\x18\xa6\xa5\xa2\x46\xd5\x51\xd5\x82\x1b\x95\xfd\xd5\x59\xb4\xf8\xdc\x70\xd9\xd2\x76\x47\xa3\x86\x89\x72\x47\x2c\x7b\xd7\x8f\x8d\xa6\x73\xa7\xe5\x58\x14\x11\x34\x4c\xf6\x23\xd8\xec\x0f\x5a\xc3\xe7\x65\x7c\x44\x25\x30\x4b\xa8\xd2\xef\x3a\x6c\x1f\x1d\x2c\xcf\xf6\xbc\x9f\xed\x89\x99\xed\x89\x81\xed\xf9\x12\x6c\x1b\x93\x48\x2f\xca\x2c\xd2\x62\xf9\x63\xb9\x3c\xd2\x43\x49\x98\x05\xae\x82\x5d\x15\x6a\x2a\xe6\xed\x9d\xe3\x35\x39\x40\x6b\xe4\x62\xb6\x50\x92\x9d\x6a\x92\x6b\x9f\x4f\x22\xce\xc4\x55\x81\xda\x58\xe4\x80\x6b\x54\xd3\xd1\x21\xaa\x32\x3b\x77\x17\x6a\x9a\x49\xb7\xb7\x77\x8e\xb5\x19\xb7\x4f\xe6\xf9\xf9\x84\x3d\xbe\xd9\x12\x91\xa8\xd4\x58\x28\x52\x7f\xfa\xf3\x2c\x17\xc9\x85\x08\xce\x76\x0e\x19\x4a\x93\xf6\xf3\x40\x72\x14\xcb\x16\x18\x6d\x70\xb8\x35\x21\xd5\x1d\xa1\xe3\xd9\x7c\x54\xbf\xb3\x2e\x1f\x8e\x2f\x49\xaf\x2d\x26\x79\xc2\x46\xb6\x85\xc8\x4a\xe7\x2d\x8c\x0a\x2d\xb9\x25\x5a\x62\x21\xd7\x80\xd6\xb9\x25\x5a\xd7\x42\xfe\x4a\xff\x43\x1a\xb7\x9e\x7b\xb0\x05\x5e\x53\x2b\x2b\x35\x7a\x25\xb3\xa6\xce\x39\x96\xa8\xe0\x2c\x41\xe1\x6e\xe6\x34\x9c\xd6\x0d\x99\x23\x37\x6d\x3e\x5e\x82\x82\xbe\xd7\xc3\x21\xb9\xb3\x6e\xef\x5f\x24\xac\x56\xd1\xe5\x0e\x82\x6b\x8d\xeb\x86\x21\xb6\x2f\xc4\x35\x03\x6d\x05\x65\xcc\x9f\x5f\x41\xb5\x52\xe8\x2b\x89\xd9\x9f\x78\xc4\x6a\x65\xd5\x57\x92\xbb\x3f\xf1\x5c\xab\xce\xea\xfe\xc4\xf3\x2d\x99\xec\xfd\x89\x8f\xbf\x7e\xb0\xa8\xfb\x4d\x09\xf7\xff\xc8\x4c\xfb\xdf\x2d\x1f\xfe\xff\x4c\x66\x7b\x78\xa9\x20\x9f\xb2\xf4\x6e\x53\xdc\x3f\x8f\x16\xac\xce\x5a\x1f\x2d\x98\x52\xf6\xce\x21\xc6\x0c\xf8\x5d\x5f\xbe\xf2\x5d\x34\x8d\xce\xd8\xe2\x5c\xf5\xd2\x75\x95\x0d\x0e\xc2\xd9\x10\xff\xfe\xe3\xab\x0e\xcd\x26\xf2\xdd\xea\x09\x1b\x1d\x9a\x77\xbe\xcb\xf9\x00\xa6\xae\x7c\x77\x4d\x7e\xe1\xfc\x6b\x46\x06\x35\x6a\x81\x5e\x2e\xa7\xe4\xbf\xb1\x05\x8a\xd0\x94\x5d\x4e\xae\x91\xf0\xb5\x54\x47\x58\x0d\x28\xa8\xf1\x9a\xc7\xf4\xe2\x2c\x66\xf3\xaf\x08\x5e\x95\x82\x57\x55\xf8\x07\x87\xc0\x70\x7e\xcd\x58\x65\x32\xbb\x84\x1a\xfc\x5f\x5d\x85\x66\xe5\x66\x74\xeb\x02\x94\x72\xb9\xaa\xe5\x52\x46\x84\x52\x3c\x65\xc7\x2c\x76\xff\x6c\x62\x3b\x30\x2b\x73\x6d\xcf\xf6\xed\xe6\x7a\x67\x29\x69\x08\xf1\xd3\xbc\x31\xa2\xe2\x2d\xb4\x38\xd7\xfa\x3e\x4c\xbe\xaf\xa5\x79\xd5\x13\x8a\x79\x6b\x37\x50\xf3\xf5\x6d\x75\x66\xde\xd6\xd4\xf3\xbc\xb8\xcc\x17\x0c\xbd\x3a\x3c\x59\x00\x86\x21\xc5\x94\x0f\xa5\x48\x03\xf9\x8a\x36\xb9\x7e\xb9\x5c\x1e\x83\x60\x64\x4f\x12\x65\x05\x9b\xa3\x29\x3b\x8d\x8a\x7c\x7a\x7a\x07\x82\x07\x54\x8c\x0b\x5e\xaa\x60\x6d\x3a\x2b\x46\xbd\x52\x5d\x5f\x47\xd3\xd9\xe0\x48\x15\xde\x64\x11\x02\xfd\x67\x25\xdd\xa7\x5a\x30\x21\xd8\x7f\x96\x42\xd6\x0c\x49\xa5\x64\xa4\x60\x4a\x6b\xa8\xd5\xf9\xb4\xc1\x5d\x63\x04\xd0\xa7\x95\xcd\x57\xdb\x8a\x56\x60\x3b\x01\xfa\xed\xf3\x68\x01\xdb\x0b\x4b\xf9\x50\xa5\x29\xc0\xc1\x5d\xa2\x52\x56\x31\xe3\x24\x4a\xbc\x77\xac\xfc\xcd\x57\xdb\x77\xa3\x7a\xb1\xb7\x53\x2b\x3e\x9a\xa6\xa3\x68\x3a\x2b\xc6\x6c\x2e\x19\x31\x99\x41\x34\x4d\x55\x33\xe0\x2d\x1c\x30\x85\xda\xcf\x1e\x0a\x81\x0c\x59\x45\xe5\x79\x12\xfe\x0f\xb3\x8f\xc3\xa3\xef\x6d\x1e\x87\x47\xdf\xc9\x3a\x0e\x8f\xee\xc6\x38\x66\xf3\x86\x6d\xcc\xe6\x37\x30\x8d\xd9\xfc\xd6\x96\xf1\xfb\x0d\x2d\xe3\xf7\x3f\xd8\x32\xde\x7d\x7f\xd3\x78\xf7\xdd\x6c\xe3\xdd\x5d\x19\xc7\x55\xcb\x3a\xae\x6e\x64\x1e\x57\xdf\x60\x1f\x1f\x6f\x68\x1f\x1f\xff\x20\xfb\x80\x4d\x79\xd5\x32\xa6\x62\x65\x54\x4e\x08\x27\x2c\x2b\x96\x1f\x95\x4d\xc1\x26\xc4\x37\x34\xcb\x2a\x4c\xf0\x84\xcd\x5d\x19\x03\x20\xbb\x1b\x73\x00\x54\x0d\x83\x80\x5f\x0e\x46\xc4\x33\xd9\x81\x00\x52\x4d\x61\xaa\xb3\x03\x3e\x05\x9a\xa2\x67\xc8\x21\x7d\x3b\x5d\x8a\xa5\x8c\x6a\x53\x79\xf6\x0c\x4d\x61\x8b\xbc\x32\x06\x71\x74\x88\xa0\xc7\x68\xaa\x7d\xac\x5e\x6f\x42\x1c\x4f\xd7\xd6\xbe\xa2\x72\xf2\x64\x66\x48\x45\x33\x9a\xa2\xc7\x9a\x17\x43\x3b\xa4\xdb\x5b\x5d\x9c\xdc\xff\xa4\xf5\xc2\x52\xfe\x7f\x9c\xf9\x1e\x8d\xfa\x27\x17\xa5\xf5\x1e\xdd\x91\xf5\x0a\xbd\x37\x2d\x55\x31\xde\xd2\x9e\x97\x30\xde\x4e\xc4\x04\x54\xb7\xb0\x5f\xc5\x0b\x2a\x3c\xc3\x06\x2c\xc9\xff\xe1\x16\x7c\x34\x2b\xa2\x82\x7d\xef\x00\x3c\x07\x2a\x77\x65\xc2\x80\xed\x6e\x4c\x58\x30\xa6\x9a\xf0\x7c\x36\x18\x7f\x39\xc8\xa0\xfd\xca\x16\x81\x1d\xc8\xa8\x3e\x5d\xe1\xc3\xc1\xfa\x97\xa3\x91\xef\x76\xcc\xf2\x5b\x15\x76\x47\x31\xe7\xcf\xa5\xb1\x81\x90\xc3\x21\x6e\xae\xb0\xa3\x8e\xc2\x0e\x6e\xa3\xb0\xcd\x34\xfd\xde\x23\xdf\x28\x4d\xbf\xd3\xc8\x57\x3c\xf9\x7d\x17\x73\xe6\xb4\x35\x67\x4e\x6f\x34\x67\x4e\x97\x9e\x33\xb7\x7b\x84\xd5\x6a\x20\x0b\x07\x46\xf5\x83\xdf\x24\x9a\xcf\xaf\x79\xb5\xb2\x0f\x11\x0f\xc3\x37\xba\x95\xfa\x79\x78\x3d\x8e\xee\x40\x6a\xb5\x1e\x73\xa3\x55\x41\x43\xf2\xf0\xad\x11\x5d\x7c\xd3\xef\xae\x6c\x4e\xe5\x13\xe0\xb3\x4c\x5d\xdb\x5c\xe8\x5e\x38\x9e\xcf\xce\xd9\xbc\xb8\x46\xff\x90\x4f\x0c\x03\x20\x98\x57\x85\xa2\xb3\xac\x28\x0d\x64\xb1\xa6\xc3\x53\x86\x95\xea\x4d\xf4\x66\x74\x59\xe4\xa7\xd3\x3c\xcb\x93\x68\x5a\xa0\x18\xca\xf3\xa9\xe2\x1b\x40\xd4\xb0\xfa\x5b\xaf\x4b\x97\xcc\x94\xbf\xdc\xc1\x3a\x70\x97\x83\x7e\x77\x6c\x88\x6b\x74\x78\xce\xcd\x32\x9a\xac\x34\x64\x3f\x28\x38\xa4\x0d\xc8\x95\xe4\x14\xb4\x4b\x09\x91\x35\xd5\xfc\x0d\xbe\x7a\xa9\x8a\xba\xdd\x8a\xc6\x9e\x6f\xd3\x67\xbf\x11\xd9\xfb\x4e\x7d\xfe\x77\xd3\x65\x6d\xeb\xa6\x58\x30\xc5\x21\x8e\x70\x0c\x77\x6a\x12\x9c\x62\x86\xb3\x95\x0e\x92\x0f\xff\x41\x4d\xb5\x10\xb6\x97\xde\x1e\x00\xa3\xb3\x2a\xb3\xed\x84\xe5\x4b\x79\x78\x02\xc2\x62\xf9\x45\xfc\xfb\xfb\xef\x9a\x0b\x18\x7c\xdc\x5f\xf9\xc0\x7f\x6d\xa0\xee\x2e\x98\xfa\x27\xfa\xe6\x12\x7c\xa3\x62\xa3\x7d\x16\xb0\x77\xd0\xde\x46\x20\x7c\x68\xc2\xa6\xa7\xc5\x18\xfd\x88\xe8\x92\x47\xa9\xdb\x81\x66\x6b\x36\xfd\xc2\xe6\xe5\xd4\x50\x09\xc3\x32\x3e\xf0\x4e\xbb\xbc\x1d\xb0\x54\xe0\x29\x7b\xed\x4a\xbb\x8d\x9d\xb9\xaf\xe8\xa4\x19\x44\x1f\x2d\x50\x1a\x15\x11\x8a\x16\x37\xa4\xb3\xf4\x4a\x56\x73\xa7\xf0\x4a\x09\xd0\x6b\xc5\xec\x9d\x43\xfa\xb7\x42\xa0\xf8\x1b\xce\xec\x48\x5a\x4d\xa3\xd2\x9c\xdc\x29\xe1\x0e\x84\x32\x2b\x26\x4b\xf5\xea\x4e\xf1\x08\xb5\x69\x70\x89\xe6\x2e\x7d\x78\xbf\x49\xdb\x7c\xd3\xab\xde\xc2\x2b\x6b\xbd\xef\x1c\xe1\xe7\x7f\x25\x0f\x6b\xe7\x17\x8b\xf1\xa8\x1c\x48\xf1\x31\x82\x6e\x5e\xa9\x87\x6e\x8d\x25\x90\xe6\x9c\x6c\x39\x14\x51\x14\x5c\x46\x90\x12\xa7\xd5\x74\x9b\xde\x83\x24\x1d\xaf\x00\x34\xdc\x24\x93\xd9\x39\x74\x92\x3d\x7d\x3f\x1a\x1c\xb6\x56\x66\xcf\x50\x32\x99\x4d\x4d\x33\x95\x65\x4d\x1a\xf0\xb4\x6d\x19\x7e\xec\xb7\x65\x28\x36\xda\xb2\x8a\x19\x46\x29\x82\xdd\xea\xe4\xab\xee\xa4\xeb\x16\xc0\xff\x05\x0c\xfb\x2f\x42\x32\x5d\xa4\x65\x2c\x15\xf8\xba\x61\xb6\x3c\x35\xd6\x4f\x00\xee\x30\x95\x1b\xeb\x62\x70\xd2\x43\xa6\x72\xa1\xcb\x86\xff\x0c\xba\xc1\xe5\x32\x3e\x70\x29\x4d\xbe\x44\xff\x3e\xff\xa0\x13\x7b\xbf\xa9\x02\x70\x63\x7f\xb9\x1a\x1e\xf7\x9e\x9b\x69\x9d\x96\x91\x47\x63\xbe\x7e\xb0\xa8\xb7\xcc\x79\x97\xf5\x1f\xff\x0b\x8d\x8b\xe2\x7c\xf1\x64\x7d\xfd\xac\x18\x2f\xd6\x62\xb6\x7e\x51\x64\xf4\xd7\x05\xfa\x42\xd6\xf0\x1a\x41\xf1\x35\xfa\x3f\xce\xa2\x62\x9c\x47\x0b\x6e\x31\xf5\x01\x19\x38\x15\x22\x0e\x7b\xac\xaf\xa3\x6d\x56\x88\xeb\x70\x8c\x71\x71\xe7\x51\x3c\x61\x0b\xf4\x77\x49\xe9\xef\x0f\x7e\x80\x63\xfc\x73\xc6\x76\xaa\xf3\x2f\x9d\x93\x34\xe8\x91\x50\xde\x23\xf4\xf0\x61\xf9\xf3\xd3\x7e\xf4\xe8\xef\xa2\x39\x0a\xf2\x97\xf0\x43\x8d\xfb\x4c\x7e\x6f\xa2\x96\xbf\x3e\x7c\xa8\x39\x9f\xb3\xd1\x60\xb2\x02\x36\xb2\x71\x0a\x27\x67\xfe\x6e\x89\xd3\xf8\xaf\x66\x29\x5b\xfb\x75\x81\x66\x73\xf4\x5c\x1c\xa5\xc9\xb3\x9c\xa5\x28\x99\xa5\xcc\x02\x2c\xd1\x34\x45\x17\x0b\x86\xf2\x82\xf7\x6b\x7f\xe7\x72\x54\xda\x20\xcf\xe1\x54\x6d\x38\x95\xdf\x9b\x6d\x10\xbf\x3e\x15\x67\x92\xea\x6a\x6b\x15\xf4\x86\x8a\xec\xf7\xdf\x95\x6f\x6b\x97\xf9\x34\xe5\xb3\xcb\x06\x8c\x38\x3a\xc4\x79\x41\xea\xcf\x70\xd8\xe7\xc1\x0f\xeb\x3f\x3e\xbe\xb3\xbf\x1f\xd7\x1f\x88\xd6\x2e\x8a\x79\x3e\x3d\xdd\x9d\xcf\xce\xb6\xc6\xd1\x7c\x6b\x96\x72\xcd\x1d\xc3\x8f\x6b\x99\xf2\xab\x14\xfe\x49\xf4\x99\x4d\x85\x8c\xdb\x26\x7b\x7e\x31\xbd\xe6\xf2\x7d\xf0\x43\x15\xc1\x2e\x92\x05\x49\x19\xff\x71\x24\xe8\x88\x06\xc2\xd6\x26\x1c\xbe\x2f\xbb\x40\xf8\x29\x99\x5d\x4c\x0b\x36\x97\x2b\x97\xf0\xd3\xa4\x8c\x15\xa2\x7a\x1d\x2c\xa0\x14\xee\x33\x96\x5f\xd8\x55\x31\x8f\xf8\x97\xcb\x71\x3e\x61\x68\x54\x62\x7b\x26\x91\x08\xd2\x3f\x40\x9d\x1a\x61\x22\x9b\xb7\x59\x94\x15\x56\x57\xb9\xab\xff\x00\x3a\x15\xc0\x3f\x6d\x20\xfb\x6a\x9b\xda\x36\xd7\xb9\xf8\xe9\x19\xfc\xf4\x7c\x77\x97\xff\xd4\x43\x89\x8b\x0b\xa6\xeb\x8b\x8b\xf9\x7c\x76\x1a\x15\xcc\x02\xab\x2b\xc6\x6c\xce\xe0\x9e\x27\x9a\xb2\xab\x02\x71\x16\xa2\xa4\x60\x73\xa8\x04\xcd\x58\x86\x3f\x60\x70\x24\xc0\x1f\x22\xfb\x6a\x77\xcb\xb6\x57\xb8\x85\xda\x57\xdb\xf0\xf1\x1f\x3c\x38\x4f\x66\x97\x35\x7d\xa8\xf6\x83\x90\xbc\xe8\xca\x47\xb2\x89\x1c\x81\xb3\xbb\xbb\x02\x57\x33\xed\x15\xb4\x8a\x14\xcc\x50\xb0\x5a\x66\x1c\x92\xd4\xeb\x51\xb0\x6c\xea\xc5\xf4\x2c\x2a\x92\x31\x4b\x6b\x7a\x4f\xd1\x6c\x3a\xb9\x46\xd1\xf9\x39\x83\x76\xe7\x0b\x70\x40\x74\x31\xcd\x0b\x8b\x4f\x34\x93\x68\xc1\x60\xb6\xc9\x05\x51\x61\xaa\x60\xb8\x90\x8a\xf2\x5c\x54\x85\x95\x77\xf5\x91\xf2\xf5\x3c\xca\xe7\xdd\x96\x41\xbb\x24\xaf\x3f\x48\xd1\x3d\x7e\x2c\x79\x7f\xd0\x6e\x40\x4f\x4d\x0e\xc8\xff\x2f\xe3\xbd\x80\x2a\xbd\xf1\x36\xce\xc0\xa6\xe0\x0c\xd0\x0b\xd7\xbe\x50\x59\xb9\x18\xb7\x34\x8d\x3c\x9f\xa6\xec\x0a\x6d\xa0\xc7\x58\x6b\xf6\x95\x1f\x3d\x7a\xa4\x18\xff\xea\xaa\xa8\xd6\x63\xfc\x40\xe7\x3d\x80\x7c\x68\x1b\x3b\x37\xa5\x5d\xae\x71\x21\x19\xf1\xeb\xe3\x8d\x52\xfd\x4f\x15\x79\xa1\xd5\x0d\x4d\xfc\x28\x11\xfd\xf4\x13\xc2\x76\x69\x40\xe8\x77\xe9\x43\x52\x25\x25\x27\xc2\x58\xd1\xef\xa8\x61\x87\x95\xf0\x97\x20\x04\x08\xfb\x94\x54\x09\x3f\x19\xb3\xe4\xf3\x71\x12\x4d\xa2\xf9\xdf\x78\xad\x11\xd7\xc3\xeb\x59\x3e\x15\xa7\xa9\x41\x00\xd5\x4f\x4d\x8f\xaf\x7f\x16\x5e\x5f\x0b\xa7\x18\xcf\x67\x97\x68\x67\x3e\x9f\xcd\x47\xd0\xaa\x47\x07\x7c\x28\x54\x9b\xe6\x9b\xd5\x47\x68\xb5\x46\xb0\x56\xcc\x44\x64\x1d\x61\x7f\x65\xad\x98\xbd\x39\x3f\x67\xf3\xad\x68\xc1\x46\x2b\x68\x55\x20\xe0\x26\x3f\x9d\x15\xdc\xc0\x81\x59\x21\x97\x47\xbc\xb0\x6c\xe8\xd7\xef\xd0\x13\xd4\x72\x82\x51\x35\x1f\x89\xd7\xe2\xb0\xc4\x36\x9b\xec\x9c\x84\x94\x35\xda\x18\xa9\x02\xfc\xa9\xac\x23\x34\x0a\x4b\x95\x57\xd4\x5e\x69\xeb\x45\x38\xc4\x56\x59\x51\xa7\x16\x05\xed\x43\x69\x9c\xbb\xbb\x54\xc6\x3a\x19\xe6\xf0\xe3\xf8\xba\x60\x68\xc1\xfe\xfb\x82\x4d\x13\x08\x74\xfd\x8c\xd6\x34\x4a\xd3\x81\x8e\xf0\xfa\x2c\x9e\x4d\x2a\x47\xea\xa3\x4c\xed\x26\x65\xd2\xa5\x5c\x61\x1a\x16\x92\x2f\x04\x84\xa5\x80\xb6\xec\x8a\xa5\xea\xe0\xb1\x86\x09\x08\xc3\x2a\x13\x4e\x97\x09\x83\xc1\x3f\xbd\x21\x93\x98\x08\x2e\x6d\xc9\xe5\x8e\xdd\x40\xb1\xba\xd1\x63\x35\xfe\x12\x8d\xd9\xb1\x3b\x8d\x71\xbf\x49\xa2\x98\x4a\x66\x03\xc1\xec\xee\x92\xcc\x62\x72\xd3\x46\xd5\x90\x3a\xae\x9a\x0d\x6d\x7a\x40\x65\x9b\x80\xa1\xed\x12\x7c\xe8\x2f\xfb\x89\xf6\xa0\xa9\x42\xca\x87\xee\xdd\xc1\x55\x67\xd4\x54\xc3\x0f\x76\x2a\x15\x68\xf9\x03\x57\x82\x88\x56\x4b\x76\x2e\x75\x8b\x55\xc2\x6a\x2f\xa3\xa0\x5c\xdd\x30\xb8\x7e\x2b\xa2\xd7\xd5\xbe\xd7\x40\xb8\x92\xfd\x9c\x45\xe9\xd6\x6c\x5a\xe4\xd3\x0b\xb8\x3c\x0b\xda\xaf\x43\x11\xe7\x64\x1f\xda\xfe\xd3\x06\xb0\xb5\xc5\x07\x16\x9a\xde\xe0\xd1\xfe\xf4\x4b\x34\xc9\x53\x00\x12\xd2\x7e\x24\x9b\x55\xc9\xbb\x49\x05\x09\x84\xb0\x50\xf0\xbe\xa2\xf3\x41\xba\x09\xaf\x5a\xfd\xb8\xba\xca\x07\xe3\x65\x84\x6a\xa1\x79\x28\xc2\x88\x18\x08\xf2\x28\xf9\x0f\x25\x18\x6a\xa1\x9d\xdd\x8a\xb1\xf5\x75\xb4\x9f\xa1\x4b\x86\xf8\x78\xed\xe2\x1c\xf1\x91\xaa\x85\xf2\xe2\xff\xff\xbf\xff\x9f\xb2\x5b\x52\x51\x00\xc7\x0f\x7a\x5a\xde\x01\x7c\xd4\x09\xfe\xc2\x7a\x8f\xc1\x0b\x46\xb5\x95\x73\x60\xac\x9a\x21\x51\xbf\x38\xea\x17\x57\x63\xbe\x5d\x5d\x7d\x83\xaa\x9a\x98\x36\xba\x5a\x97\x92\xcd\xa2\x09\x5c\x7e\xa8\xe4\x78\xc4\xa2\x14\x65\xf9\x7c\x51\x94\x52\x82\x66\xdd\x5c\xcd\xdd\xde\x0d\x8d\xa6\xb3\xae\x78\x17\x2b\xa5\x4d\x08\x42\x0f\xa5\xfe\x65\x64\x55\x78\xad\xe4\x5b\xf2\xda\xed\xc3\x5a\x78\x76\x4a\x83\xda\x2a\x51\x81\x5a\xd0\x46\x8f\xc3\x3c\x6d\xc7\x03\x15\x19\x16\xd3\x0c\xc8\xb9\x53\x69\x57\x37\x00\xab\xac\xb7\x36\x5f\x25\x46\x35\x07\xf0\x37\x30\xc1\x72\x58\x2f\xda\xee\xb4\x65\x7b\x16\x5d\xa3\x7c\x9a\x4c\x2e\x60\x12\xc2\x27\x17\xea\x94\x46\x27\xe5\xdd\x52\x3a\x3b\x37\x90\x0e\x98\xf2\xed\x04\x68\xcb\x79\x1a\x81\xb3\x49\x82\x96\x2a\x50\xa7\x4f\xa0\x36\x0c\x5e\x84\xc0\x86\xc6\x07\xdf\x53\xe6\xdd\x1e\xbe\x2d\x51\x2a\x25\xba\x7b\xb7\x12\x85\x90\x71\x4b\xa1\x07\x20\x74\xfb\xaa\x2d\x76\xfb\xca\xde\x5a\x41\xbf\x83\x44\x46\x82\x07\xf1\x6b\xa5\x0f\xb7\x57\x1f\x30\xa3\xd2\xcc\x31\xb0\xad\x4e\xc1\xf4\x9a\x28\xe5\xa9\xd5\xc2\x9b\x93\xdd\xc7\x14\xa5\xb0\x52\xc6\xd2\x2a\xf2\x96\x61\x53\xde\xc0\xaa\xbe\x43\x40\x53\xbe\x43\xfc\x79\xda\x1a\x93\xc8\xb1\x46\xdd\x1b\x0b\xfe\x2a\x7c\xcd\x21\x89\x02\x56\x46\x35\xa0\xa2\x06\x40\x65\x50\xa2\xc4\xd8\x7a\xf5\xa7\x31\xdc\xa9\xd7\x89\x8a\xb3\x73\x65\x34\x32\x2a\xce\xce\xd1\x46\xab\x2f\x59\x41\xff\xb5\xb1\x21\x82\x72\x7b\x74\x22\x37\x31\x8a\xb3\xf3\xf6\x38\x43\x99\xa0\xd7\xd0\x2b\xdf\x73\xf1\x8d\x8b\x15\x6d\x00\x83\x8f\xbe\xb0\xf9\x22\x9f\x4d\x1f\x3d\x41\x8f\x60\xd1\xf7\x91\xc5\x7f\x15\xfc\x3c\x7a\xa2\x8c\x0a\xe1\x77\xd1\x5c\xf9\xbb\xf8\xf2\xe0\x87\xaf\x72\x91\xee\x78\x76\xc6\xd0\xe6\xcb\x6d\x14\x5f\xe4\x93\x14\xcd\xce\x8b\xfc\x2c\xff\x8d\xcd\x17\x16\x9a\xe4\x9f\x19\x9a\xaf\xfd\xba\xb0\xc4\x94\x18\x56\xda\x17\xe7\x2c\xc9\xb3\x3c\xe1\xce\x9b\xe6\xa0\xf0\xf3\xa8\x28\xd8\x7c\xba\x00\x7c\x50\xa9\x18\x33\x94\xcd\x26\x93\xd9\x65\x3e\x3d\x7d\x22\xd6\x3c\xb9\xf9\xb5\xee\x45\xa2\x47\xa5\xd1\x3c\x12\x8b\xbb\x0d\x80\xb5\xe8\x2c\x6d\xad\xa2\x56\x57\x24\x79\xd9\x83\x1f\x84\xba\xe4\xa5\xc9\x6a\x99\xbb\xd9\x81\xf1\x36\x83\xee\x40\x39\xf5\xec\xa2\xb5\x6a\xfc\x5f\xca\xf7\xb5\xe9\x2c\x65\x27\xd7\xe7\xac\x1e\xcc\xd5\x6b\xd5\x72\xe2\x91\x4f\xd5\x75\xe3\xa3\x7c\x7a\x3a\xfb\x3f\x8f\xd1\x17\x7b\x8d\xae\xd9\x30\x3d\xaf\x6b\x28\x77\x49\x2b\x66\x64\x68\x2c\x31\x45\xf3\xcb\x71\x34\x69\x61\x0a\xd6\xec\xc7\x62\x21\x66\x5e\x9e\x8d\x12\xb7\x18\xe5\x6f\xe3\x68\x71\x78\x39\x7d\x5d\x1e\x81\xd9\x90\x40\x6b\xcd\xdf\x01\xbc\xda\x22\x81\xac\x71\x42\x28\x65\xc4\x68\x82\x8b\xfd\x21\x5e\x0e\x17\x89\x57\xb8\x6c\x54\x59\xbd\xff\x2c\x12\x18\x72\x08\xf8\xdc\x58\xfc\x6a\xb5\xeb\x68\x9c\x4f\x67\xbc\x55\x11\xba\x64\x31\x92\x17\x55\xe5\xaa\xf5\x9a\x34\x68\x29\x93\xaf\x0f\xe4\x15\x55\xd8\x36\xf9\x6a\xfd\xe3\xeb\x07\x8b\xfa\xcb\x6c\x89\x74\x6e\xec\xbe\x7b\x79\xb0\x57\x14\xe7\x47\xbc\xcb\x58\x14\x15\xb6\xbf\xc4\xf9\xa9\x38\xcc\xb2\xf6\xeb\xe2\x2f\xcb\x60\x7e\x74\xb1\x60\x30\x61\x4b\x8a\x47\x4f\x1f\x74\x09\x3d\xcf\x4f\x5f\x01\xc2\xa7\xbc\xc1\xbf\x2e\xc6\x3c\x28\xe7\xa7\xd3\xd9\x9c\x3d\x99\xe4\x53\xf6\xa0\x22\x7d\xc9\x62\x67\x29\x92\x5c\x49\x6f\x59\x2c\xfa\x26\x71\xcd\xf8\xd1\xda\xfa\x24\x8f\xd7\x39\x0a\x1e\x9c\x1f\xac\xaf\xa3\x74\x36\x7d\x54\xa0\xd9\x17\x36\x9f\xe7\x29\x2b\x77\x1c\xca\x0d\x8e\x07\xca\x1d\x64\xb9\x75\xc0\x23\xdc\xa3\xea\x44\x03\x6c\x48\x34\x00\xd6\x04\xcd\x26\x14\xb7\x10\xd8\x27\x53\x41\x80\xbb\xa7\x0f\xbe\x6a\xc4\x21\x4a\xe4\xce\x56\xc9\xf2\x5f\x9e\x10\xf2\xf5\x03\x17\x83\xf5\x5e\x88\xe1\xc3\xca\x83\xf5\xf5\xff\x0d\x2d\x66\x17\xf3\x84\xbd\x8c\xce\xcf\xf3\xe9\xe9\x9b\xa3\x83\x0d\x5e\xf8\x78\x02\xa7\x48\x7f\x5d\xac\x9d\x45\xe7\x0f\xd6\xd7\x1f\xfc\xaf\x00\x00\x00\xff\xff\x1f\x7d\x34\x03\xb9\x81\x06\x00") func web3JsBytes() ([]byte, error) { return bindataRead( From fa32fc18156efedf66dffb8230ab0c3298ba0cb7 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 26 Apr 2021 13:11:30 +1000 Subject: [PATCH 047/147] netutil.PortListeners() --- p2p/netutil/netstat.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 p2p/netutil/netstat.go diff --git a/p2p/netutil/netstat.go b/p2p/netutil/netstat.go new file mode 100644 index 000000000000..c1487b0f7fc5 --- /dev/null +++ b/p2p/netutil/netstat.go @@ -0,0 +1,29 @@ +package netutil + +import ( + "github.com/cakturk/go-netstat/netstat" +) + +func PortListeners(port int) (processes map[int]string, err error) { + var binds []netstat.SockTabEntry + processes = make(map[int]string) + + for _, socks := range []func(netstat.AcceptFn) ([]netstat.SockTabEntry, error){ + netstat.UDPSocks, + netstat.UDP6Socks, + netstat.TCPSocks, + netstat.TCP6Socks, + } { + binds, err = socks(func(se *netstat.SockTabEntry) bool { + return int(se.LocalAddr.Port) == port + }) + if err != nil { + return + } + + for _, listener := range binds { + processes[listener.Process.Pid] = listener.Process.Name + } + } + return +} From f2ccaba2a1182301d90878421e7b4ccecce5b773 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 26 Apr 2021 13:12:57 +1000 Subject: [PATCH 048/147] p2p/server checks if port is already in use --- p2p/dial.go | 1 + p2p/server.go | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/p2p/dial.go b/p2p/dial.go index 1fa255058a9b..5cca5ad8c692 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -76,6 +76,7 @@ var ( errSelf = errors.New("is self") errAlreadyDialing = errors.New("already dialing") errAlreadyConnected = errors.New("already connected") + errAlreadyListened = errors.New("already listened") errRecentlyDialed = errors.New("recently dialed") errNetRestrict = errors.New("not contained in netrestrict list") errNoPort = errors.New("node does not provide TCP port") diff --git a/p2p/server.go b/p2p/server.go index bcfc1bd10bd7..d8959f15183f 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -553,6 +553,17 @@ func (srv *Server) setupDiscovery() error { if err != nil { return err } + + listeners, err := netutil.PortListeners(addr.Port) + if err != nil { + return err + } + if len(listeners) > 0 { + err = errAlreadyListened + srv.log.Error("Port", "addr", addr, "err", err, "listeners", listeners) + return err + } + conn, err := net.ListenUDP("udp", addr) if err != nil { return err From b2cd54e9a41ac31fd5d99dbe738e3fb66f228385 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 26 Apr 2021 13:33:58 +1000 Subject: [PATCH 049/147] netutil.PortListeners() -> netutil.UdpPortListeners() --- p2p/netutil/netstat.go | 4 +--- p2p/server.go | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/p2p/netutil/netstat.go b/p2p/netutil/netstat.go index c1487b0f7fc5..40cdc5e59d7a 100644 --- a/p2p/netutil/netstat.go +++ b/p2p/netutil/netstat.go @@ -4,15 +4,13 @@ import ( "github.com/cakturk/go-netstat/netstat" ) -func PortListeners(port int) (processes map[int]string, err error) { +func UdpPortListeners(port int) (processes map[int]string, err error) { var binds []netstat.SockTabEntry processes = make(map[int]string) for _, socks := range []func(netstat.AcceptFn) ([]netstat.SockTabEntry, error){ netstat.UDPSocks, netstat.UDP6Socks, - netstat.TCPSocks, - netstat.TCP6Socks, } { binds, err = socks(func(se *netstat.SockTabEntry) bool { return int(se.LocalAddr.Port) == port diff --git a/p2p/server.go b/p2p/server.go index d8959f15183f..6a5a7b42e71b 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -554,13 +554,13 @@ func (srv *Server) setupDiscovery() error { return err } - listeners, err := netutil.PortListeners(addr.Port) + listeners, err := netutil.UdpPortListeners(addr.Port) if err != nil { return err } if len(listeners) > 0 { err = errAlreadyListened - srv.log.Error("Port", "addr", addr, "err", err, "listeners", listeners) + srv.log.Error("UDP port", "addr", addr, "err", err, "listeners", listeners) return err } From bba39c7f0b2dca1751c1914ddc8bd903b15de97e Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Wed, 21 Apr 2021 22:49:56 +0700 Subject: [PATCH 050/147] add TransactionsByPriceAndNonce.Copy() method --- core/types/transaction.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/core/types/transaction.go b/core/types/transaction.go index e21cf2bda826..2bc6fd509af9 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -565,6 +565,19 @@ func (t *TransactionsByPriceAndNonce) Pop() { heap.Pop(&t.heads) } +func (t *TransactionsByPriceAndNonce) Copy() *TransactionsByPriceAndNonce { + txsCopy := make(map[common.Address]Transactions, len(t.txs)) + for k, v := range t.txs { + txsCopy[k] = v + } + return &TransactionsByPriceAndNonce{ + txs: txsCopy, + heads: append(make(TxByPriceAndTime, 0, t.heads.Len()), t.heads...), + signer: t.signer, + baseFee: new(big.Int).Set(t.baseFee), + } +} + // Message is a fully derived transaction and implements core.Message // // NOTE: In a future PR this will be removed. From b37c80301050e78cc91793db584fb7bad0c07f9e Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Tue, 25 May 2021 11:16:33 +0700 Subject: [PATCH 051/147] go mod tidy --- go.mod | 1 + go.sum | 2 ++ 2 files changed, 3 insertions(+) diff --git a/go.mod b/go.mod index ee9ffa0454e2..df1910bc682a 100644 --- a/go.mod +++ b/go.mod @@ -13,6 +13,7 @@ require ( github.com/aws/aws-sdk-go-v2/credentials v1.1.1 github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1 github.com/btcsuite/btcd v0.20.1-beta + github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 github.com/cespare/cp v0.1.0 github.com/cloudflare/cloudflare-go v0.14.0 github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f diff --git a/go.sum b/go.sum index d6e9639d2ef6..27553ab5de2d 100644 --- a/go.sum +++ b/go.sum @@ -87,6 +87,8 @@ github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= +github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 h1:BjkPE3785EwPhhyuFkbINB+2a1xATwk8SNDWnJiD41g= +github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5/go.mod h1:jtAfVaU/2cu1+wdSRPWE2c1N2qeAA3K4RH9pYgqwets= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/cp v0.1.0 h1:SE+dxFebS7Iik5LK0tsi1k9ZCxEaFX4AjQmoyA+1dJk= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= From 8d39e9df90e4485d33e6c95f0678c9bfbf228254 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Wed, 26 May 2021 18:05:41 +0700 Subject: [PATCH 052/147] rename Geth->Opera in disk space logs --- cmd/utils/cmd.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index d4051e59ef9c..7dbc8b105aac 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -107,11 +107,11 @@ func monitorFreeDiskSpace(sigc chan os.Signal, path string, freeDiskSpaceCritica break } if freeSpace < freeDiskSpaceCritical { - log.Error("Low disk space. Gracefully shutting down Geth to prevent database corruption.", "available", common.StorageSize(freeSpace)) + log.Error("Low disk space. Gracefully shutting down Opera to prevent database corruption.", "available", common.StorageSize(freeSpace)) sigc <- syscall.SIGTERM break } else if freeSpace < 2*freeDiskSpaceCritical { - log.Warn("Disk space is running low. Geth will shutdown if disk space runs below critical level.", "available", common.StorageSize(freeSpace), "critical_level", common.StorageSize(freeDiskSpaceCritical)) + log.Warn("Disk space is running low. Opera will shutdown if disk space runs below critical level.", "available", common.StorageSize(freeSpace), "critical_level", common.StorageSize(freeDiskSpaceCritical)) } time.Sleep(60 * time.Second) } From dc9dcb8ab839b19ca8e795b45e5e6665c11481f5 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Mon, 31 May 2021 16:44:57 +0700 Subject: [PATCH 053/147] configurable maximum number of snap layers --- core/state/statedb.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 61f0f5b9f6eb..de23d8c4c2ce 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -73,6 +73,7 @@ type StateDB struct { snapDestructs map[common.Hash]struct{} snapAccounts map[common.Hash][]byte snapStorage map[common.Hash]map[common.Hash][]byte + snapMaxLayers int // This map holds 'live' objects, which will get modified while processing a state transition. stateObjects map[common.Address]*stateObject @@ -121,6 +122,10 @@ type StateDB struct { // New creates a new state from a given trie. func New(root common.Hash, db Database, snaps *snapshot.Tree) (*StateDB, error) { + return NewWithSnapLayers(root, db, snaps, 128) +} + +func NewWithSnapLayers(root common.Hash, db Database, snaps *snapshot.Tree, layers int) (*StateDB, error) { tr, err := db.OpenTrie(root) if err != nil { return nil, err @@ -138,6 +143,7 @@ func New(root common.Hash, db Database, snaps *snapshot.Tree) (*StateDB, error) journal: newJournal(), accessList: newAccessList(), hasher: crypto.NewKeccakState(), + snapMaxLayers: layers, } if sdb.snaps != nil { if sdb.snap = sdb.snaps.Snapshot(root); sdb.snap != nil { @@ -959,8 +965,8 @@ func (s *StateDB) Commit(deleteEmptyObjects bool) (common.Hash, error) { // - head layer is paired with HEAD state // - head-1 layer is paired with HEAD-1 state // - head-127 layer(bottom-most diff layer) is paired with HEAD-127 state - if err := s.snaps.Cap(root, 128); err != nil { - log.Warn("Failed to cap snapshot tree", "root", root, "layers", 128, "err", err) + if err := s.snaps.Cap(root, s.snapMaxLayers); err != nil { + log.Warn("Failed to cap snapshot tree", "root", root, "layers", s.snapMaxLayers, "err", err) } } s.snap, s.snapDestructs, s.snapAccounts, s.snapStorage = nil, nil, nil, nil From 8b2bbacf573365a57fc086892f8425c0adaaa34c Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Tue, 22 Jun 2021 17:02:04 +0700 Subject: [PATCH 054/147] add tx.SetHash method --- core/types/transaction.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/types/transaction.go b/core/types/transaction.go index 2bc6fd509af9..793d58857a46 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -380,6 +380,10 @@ func (tx *Transaction) Hash() common.Hash { return h } +func (tx *Transaction) SetHash(h common.Hash) { + tx.hash.Store(h) +} + // Size returns the true RLP encoded storage size of the transaction, either by // encoding and returning it, or returning a previously cached value. func (tx *Transaction) Size() common.StorageSize { From e01f22b4f44d28053d52eb7d9f34bd5b27faf6c7 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Sun, 2 May 2021 04:18:03 +0700 Subject: [PATCH 055/147] add cached signer --- core/types/transaction_signing.go | 41 +++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/core/types/transaction_signing.go b/core/types/transaction_signing.go index 1d0d2a4c75e7..33522c873f95 100644 --- a/core/types/transaction_signing.go +++ b/core/types/transaction_signing.go @@ -518,3 +518,44 @@ func deriveChainId(v *big.Int) *big.Int { v = new(big.Int).Sub(v, big.NewInt(35)) return v.Div(v, big.NewInt(2)) } + +type CachedSender struct { + From common.Address + Signer Signer +} + +type SenderCache interface { + Add(txid common.Hash, c CachedSender) + Get(txid common.Hash) *CachedSender +} + +type CachedSigner struct { + Signer + cache SenderCache +} + +func WrapWithCachedSigner(signer Signer, cache SenderCache) *CachedSigner { + return &CachedSigner{ + Signer: signer, + cache: cache, + } +} + +func (cs CachedSigner) Sender(tx *Transaction) (common.Address, error) { + if tx.from.Load() == nil { + // try to load the sender from the global cache + cached := cs.cache.Get(tx.Hash()) + if cached != nil && cached.Signer.Equal(cs.Signer) { + return cached.From, nil + } + } + from, err := cs.Signer.Sender(tx) + if err != nil { + return common.Address{}, err + } + cs.cache.Add(tx.Hash(), CachedSender{ + From: from, + Signer: cs.Signer, + }) + return from, nil +} From 260884eb2de296faddd52342b57e7595cb462ca1 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 31 Jul 2021 20:40:15 +1000 Subject: [PATCH 056/147] netstat nop for others --- p2p/netutil/netstat.go | 2 ++ p2p/netutil/netstat_nop.go | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 p2p/netutil/netstat_nop.go diff --git a/p2p/netutil/netstat.go b/p2p/netutil/netstat.go index 40cdc5e59d7a..c0680b721dd2 100644 --- a/p2p/netutil/netstat.go +++ b/p2p/netutil/netstat.go @@ -1,3 +1,5 @@ +// +build linux windows + package netutil import ( diff --git a/p2p/netutil/netstat_nop.go b/p2p/netutil/netstat_nop.go new file mode 100644 index 000000000000..cec3c7dbb351 --- /dev/null +++ b/p2p/netutil/netstat_nop.go @@ -0,0 +1,9 @@ +// +build !linux,!windows + +package netutil + +func UdpPortListeners(port int) (processes map[int]string, err error) { + processes = make(map[int]string) + + return +} From 96ea9e97159046b8597630dd991c8c8811a1ffde Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 6 Aug 2021 16:47:28 +1000 Subject: [PATCH 057/147] API fix: block hash --- core/types/block.go | 16 ++++++++++++++++ ethclient/ethclient.go | 6 +++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/core/types/block.go b/core/types/block.go index 360f1eb47c2b..6ba287cb29b6 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -371,6 +371,22 @@ func (b *Block) WithBody(transactions []*Transaction, uncles []*Header) *Block { return block } +// WithHash returns a new block with the custom hash. +func (b *Block) WithHash(h common.Hash) *Block { + block := &Block{ + header: CopyHeader(b.header), + transactions: make([]*Transaction, len(b.transactions)), + uncles: make([]*Header, len(b.uncles)), + } + copy(block.transactions, b.transactions) + for i, uncle := range b.uncles { + block.uncles[i] = CopyHeader(uncle) + } + + block.hash.Store(h) + return block +} + // Hash returns the keccak256 hash of b's header. // The hash is computed on the first call and cached thereafter. func (b *Block) Hash() common.Hash { diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index 9f68323134f7..1b9050a44e87 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -162,7 +162,11 @@ func (ec *Client) getBlock(ctx context.Context, method string, args ...interface } txs[i] = tx.tx } - return types.NewBlockWithHeader(head).WithBody(txs, uncles), nil + + block := types.NewBlockWithHeader(head). + WithBody(txs, uncles). + WithHash(body.Hash) + return block, nil } // HeaderByHash returns the block header with the given hash. From e95a5838b4d8b2a63b0606bdc63fd011ae8dcb2d Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 6 Aug 2021 19:31:09 +1000 Subject: [PATCH 058/147] ethclient wraps dag API --- ethclient/fantom.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ethclient/fantom.go diff --git a/ethclient/fantom.go b/ethclient/fantom.go new file mode 100644 index 000000000000..5fabb2383ce6 --- /dev/null +++ b/ethclient/fantom.go @@ -0,0 +1,22 @@ +// Package ethclient provides a client for the Fantom RPC API. +package ethclient + +import ( + "context" + "encoding/json" + + "github.com/ethereum/go-ethereum" +) + +// GetEventPayload returns Lachesis event by hash or short ID. +func (ec *Client) GetEventPayload(ctx context.Context, shortEventID string, inclTx bool) (raw json.RawMessage, err error) { + // var raw json.RawMessage + err = ec.c.CallContext(ctx, &raw, "dag_getEventPayload", shortEventID, inclTx) + if err != nil { + return nil, err + } else if len(raw) == 0 { + return nil, ethereum.NotFound + } + + return +} From 7c523464cac40adb40d0ab5e5481cac641a5f47b Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 10 Aug 2021 16:21:31 +1000 Subject: [PATCH 059/147] DAG API should be wrapped by go-opera/ethclient This reverts commit 12af453ed95a4b8982022feb327b9ac84c51dcb4. --- ethclient/fantom.go | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 ethclient/fantom.go diff --git a/ethclient/fantom.go b/ethclient/fantom.go deleted file mode 100644 index 5fabb2383ce6..000000000000 --- a/ethclient/fantom.go +++ /dev/null @@ -1,22 +0,0 @@ -// Package ethclient provides a client for the Fantom RPC API. -package ethclient - -import ( - "context" - "encoding/json" - - "github.com/ethereum/go-ethereum" -) - -// GetEventPayload returns Lachesis event by hash or short ID. -func (ec *Client) GetEventPayload(ctx context.Context, shortEventID string, inclTx bool) (raw json.RawMessage, err error) { - // var raw json.RawMessage - err = ec.c.CallContext(ctx, &raw, "dag_getEventPayload", shortEventID, inclTx) - if err != nil { - return nil, err - } else if len(raw) == 0 { - return nil, ethereum.NotFound - } - - return -} From 4491e2a01efeb043c1771cbe59ebb3c9e6157e06 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 2 Sep 2021 18:27:32 +0700 Subject: [PATCH 060/147] MinFreeDiskSpaceFlag is 8192 by default --- cmd/utils/cmd.go | 4 ++-- cmd/utils/flags.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go index 7dbc8b105aac..4d07ec5cd6df 100644 --- a/cmd/utils/cmd.go +++ b/cmd/utils/cmd.go @@ -78,8 +78,8 @@ func StartNode(ctx *cli.Context, stack *node.Node) { minFreeDiskSpace := ethconfig.Defaults.TrieDirtyCache if ctx.GlobalIsSet(MinFreeDiskSpaceFlag.Name) { minFreeDiskSpace = ctx.GlobalInt(MinFreeDiskSpaceFlag.Name) - } else if ctx.GlobalIsSet(CacheFlag.Name) || ctx.GlobalIsSet(CacheGCFlag.Name) { - minFreeDiskSpace = ctx.GlobalInt(CacheFlag.Name) * ctx.GlobalInt(CacheGCFlag.Name) / 100 + } else { + minFreeDiskSpace = 8192 } if minFreeDiskSpace > 0 { go monitorFreeDiskSpace(sigc, stack.InstanceDir(), uint64(minFreeDiskSpace)*1024*1024) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 4b519395e744..61c33ad8a262 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -119,7 +119,7 @@ var ( } MinFreeDiskSpaceFlag = DirectoryFlag{ Name: "datadir.minfreedisk", - Usage: "Minimum free disk space in MB, once reached triggers auto shut down (default = --cache.gc converted to MB, 0 = disabled)", + Usage: "Minimum free disk space in MB, once reached triggers auto shut down (default = 8192 MB, 0 = disabled)", } KeyStoreDirFlag = DirectoryFlag{ Name: "keystore", From ff1bac7379bdb7a05abbd89960901f4b13f11d2e Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Mon, 11 Oct 2021 13:58:38 +0100 Subject: [PATCH 061/147] allow manual block hash caching --- core/types/block.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/core/types/block.go b/core/types/block.go index 6ba287cb29b6..8dd3efabceb4 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -85,6 +85,9 @@ type Header struct { // BaseFee was added by EIP-1559 and is ignored in legacy headers. BaseFee *big.Int `json:"baseFeePerGas" rlp:"optional"` + + // caches + hash atomic.Value `rlp:"-"` } // field type overrides for gencodec @@ -102,9 +105,17 @@ type headerMarshaling struct { // Hash returns the block hash of the header, which is simply the keccak256 hash of its // RLP encoding. func (h *Header) Hash() common.Hash { + cached := h.hash.Load() + if cached != nil { + return cached.(common.Hash) + } return rlpHash(h) } +func (h *Header) SetHashCache(hash common.Hash) { + h.hash.Store(hash) +} + var headerSize = common.StorageSize(reflect.TypeOf(Header{}).Size()) // Size returns the approximate memory used by all internal contents. It is used From 89b7927cd4a052591f4382f4382721809bd15d52 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 12 Oct 2021 00:21:37 +1000 Subject: [PATCH 062/147] more clear block hash --- core/types/block.go | 40 ++++++++++------------------------------ ethclient/ethclient.go | 5 +++-- 2 files changed, 13 insertions(+), 32 deletions(-) diff --git a/core/types/block.go b/core/types/block.go index 8dd3efabceb4..7dd3f6757bbf 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -87,7 +87,7 @@ type Header struct { BaseFee *big.Int `json:"baseFeePerGas" rlp:"optional"` // caches - hash atomic.Value `rlp:"-"` + externalHash atomic.Value `rlp:"-"` } // field type overrides for gencodec @@ -104,16 +104,19 @@ type headerMarshaling struct { // Hash returns the block hash of the header, which is simply the keccak256 hash of its // RLP encoding. +// Also hash of the header could be overridden with external value. func (h *Header) Hash() common.Hash { - cached := h.hash.Load() - if cached != nil { - return cached.(common.Hash) + external := h.externalHash.Load() + if external != nil { + return external.(common.Hash) } + return rlpHash(h) } -func (h *Header) SetHashCache(hash common.Hash) { - h.hash.Store(hash) +// SetExternalHash overrides hash with external value. +func (h *Header) SetExternalHash(hash common.Hash) { + h.externalHash.Store(hash) } var headerSize = common.StorageSize(reflect.TypeOf(Header{}).Size()) @@ -173,7 +176,6 @@ type Block struct { transactions Transactions // caches - hash atomic.Value size atomic.Value // Td is used by package core to store the total difficulty @@ -382,31 +384,9 @@ func (b *Block) WithBody(transactions []*Transaction, uncles []*Header) *Block { return block } -// WithHash returns a new block with the custom hash. -func (b *Block) WithHash(h common.Hash) *Block { - block := &Block{ - header: CopyHeader(b.header), - transactions: make([]*Transaction, len(b.transactions)), - uncles: make([]*Header, len(b.uncles)), - } - copy(block.transactions, b.transactions) - for i, uncle := range b.uncles { - block.uncles[i] = CopyHeader(uncle) - } - - block.hash.Store(h) - return block -} - // Hash returns the keccak256 hash of b's header. -// The hash is computed on the first call and cached thereafter. func (b *Block) Hash() common.Hash { - if hash := b.hash.Load(); hash != nil { - return hash.(common.Hash) - } - v := b.header.Hash() - b.hash.Store(v) - return v + return b.header.Hash() } type Blocks []*Block diff --git a/ethclient/ethclient.go b/ethclient/ethclient.go index 1b9050a44e87..754e00fcc330 100644 --- a/ethclient/ethclient.go +++ b/ethclient/ethclient.go @@ -163,9 +163,10 @@ func (ec *Client) getBlock(ctx context.Context, method string, args ...interface txs[i] = tx.tx } + head.SetExternalHash(body.Hash) block := types.NewBlockWithHeader(head). - WithBody(txs, uncles). - WithHash(body.Hash) + WithBody(txs, uncles) + return block, nil } From a65cf949c192af4a911a0949e0f90225c3109a79 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 12 Oct 2021 00:36:18 +1000 Subject: [PATCH 063/147] CopyHeader() update --- core/types/block.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/types/block.go b/core/types/block.go index 7dd3f6757bbf..aa8f521f62d3 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -258,6 +258,13 @@ func CopyHeader(h *Header) *Header { cpy.Extra = make([]byte, len(h.Extra)) copy(cpy.Extra, h.Extra) } + + external := h.externalHash.Load() + if external != nil { + hash := external.(common.Hash) + cpy.SetExternalHash(hash) + } + return &cpy } From fba01dfbfd69c97b3eb358bad9cd401f550482d0 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Tue, 16 Nov 2021 11:15:46 +0700 Subject: [PATCH 064/147] Receipts.DeriveFields accepts Signer instead of ChainConfig --- core/rawdb/accessors_chain.go | 2 +- core/types/receipt.go | 7 ++----- core/types/receipt_test.go | 2 +- light/odr_util.go | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/core/rawdb/accessors_chain.go b/core/rawdb/accessors_chain.go index 76132bf37e68..862c2974fff9 100644 --- a/core/rawdb/accessors_chain.go +++ b/core/rawdb/accessors_chain.go @@ -600,7 +600,7 @@ func ReadReceipts(db ethdb.Reader, hash common.Hash, number uint64, config *para log.Error("Missing body but have receipt", "hash", hash, "number", number) return nil } - if err := receipts.DeriveFields(config, hash, number, body.Transactions); err != nil { + if err := receipts.DeriveFields(types.MakeSigner(config, new(big.Int).SetUint64(number)), hash, number, body.Transactions); err != nil { log.Error("Failed to derive block receipts fields", "hash", hash, "number", number, "err", err) return nil } diff --git a/core/types/receipt.go b/core/types/receipt.go index 6141740f2f13..d856f026fa95 100644 --- a/core/types/receipt.go +++ b/core/types/receipt.go @@ -27,7 +27,6 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/crypto" - "github.com/ethereum/go-ethereum/params" "github.com/ethereum/go-ethereum/rlp" ) @@ -354,9 +353,7 @@ func (rs Receipts) EncodeIndex(i int, w *bytes.Buffer) { // DeriveFields fills the receipts with their computed fields based on consensus // data and contextual infos like containing block and transactions. -func (r Receipts) DeriveFields(config *params.ChainConfig, hash common.Hash, number uint64, txs Transactions) error { - signer := MakeSigner(config, new(big.Int).SetUint64(number)) - +func (r Receipts) DeriveFields(signer Signer, hash common.Hash, number uint64, txs Transactions) error { logIndex := uint(0) if len(txs) != len(r) { return errors.New("transaction and receipt count mismatch") @@ -372,7 +369,7 @@ func (r Receipts) DeriveFields(config *params.ChainConfig, hash common.Hash, num r[i].TransactionIndex = uint(i) // The contract address can be derived from the transaction itself - if txs[i].To() == nil { + if signer != nil && txs[i].To() == nil { // Deriving the signer is expensive, only do if it's actually needed from, _ := Sender(signer, txs[i]) r[i].ContractAddress = crypto.CreateAddress(from, txs[i].Nonce()) diff --git a/core/types/receipt_test.go b/core/types/receipt_test.go index 22a316c2374b..b2e0e0c56ef8 100644 --- a/core/types/receipt_test.go +++ b/core/types/receipt_test.go @@ -229,7 +229,7 @@ func TestDeriveFields(t *testing.T) { hash := common.BytesToHash([]byte{0x03, 0x14}) clearComputedFieldsOnReceipts(t, receipts) - if err := receipts.DeriveFields(params.TestChainConfig, hash, number.Uint64(), txs); err != nil { + if err := receipts.DeriveFields(MakeSigner(params.TestChainConfig, number), hash, number.Uint64(), txs); err != nil { t.Fatalf("DeriveFields(...) = %v, want ", err) } // Iterate over all the computed fields and check that they're correct diff --git a/light/odr_util.go b/light/odr_util.go index bbbcdbce2135..6bca5c695ad8 100644 --- a/light/odr_util.go +++ b/light/odr_util.go @@ -175,7 +175,7 @@ func GetBlockReceipts(ctx context.Context, odr OdrBackend, hash common.Hash, num genesis := rawdb.ReadCanonicalHash(odr.Database(), 0) config := rawdb.ReadChainConfig(odr.Database(), genesis) - if err := receipts.DeriveFields(config, block.Hash(), block.NumberU64(), block.Transactions()); err != nil { + if err := receipts.DeriveFields(types.MakeSigner(config, new(big.Int).SetUint64(number)), block.Hash(), block.NumberU64(), block.Transactions()); err != nil { return nil, err } rawdb.WriteReceipts(odr.Database(), hash, number, receipts) From 63ba82e6c1200ced0fe2aa2687db3cf9a94bd3df Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 9 Nov 2021 13:39:12 +1000 Subject: [PATCH 065/147] snap.BlockChain interface instead of *core.BlockChain --- eth/handler_snap.go | 3 +-- eth/protocols/snap/handler.go | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/eth/handler_snap.go b/eth/handler_snap.go index 767416ffd650..81fd7102a5d1 100644 --- a/eth/handler_snap.go +++ b/eth/handler_snap.go @@ -17,7 +17,6 @@ package eth import ( - "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/eth/protocols/snap" "github.com/ethereum/go-ethereum/p2p/enode" ) @@ -26,7 +25,7 @@ import ( // packets that are sent as replies or broadcasts. type snapHandler handler -func (h *snapHandler) Chain() *core.BlockChain { return h.chain } +func (h *snapHandler) Chain() snap.BlockChain { return h.chain } // RunPeer is invoked when a peer joins on the `snap` protocol. func (h *snapHandler) RunPeer(peer *snap.Peer, hand snap.Handler) error { diff --git a/eth/protocols/snap/handler.go b/eth/protocols/snap/handler.go index 3d668a2ebb6f..7578cca4afda 100644 --- a/eth/protocols/snap/handler.go +++ b/eth/protocols/snap/handler.go @@ -22,8 +22,8 @@ import ( "time" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/state" + "github.com/ethereum/go-ethereum/core/state/snapshot" "github.com/ethereum/go-ethereum/light" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/metrics" @@ -61,11 +61,21 @@ const ( // exchanges have passed. type Handler func(peer *Peer) error +type BlockChain interface { + // StateCache returns the caching database underpinning the blockchain instance. + StateCache() state.Database + // ContractCode retrieves a blob of data associated with a contract hash + // either from ephemeral in-memory cache, or from persistent storage. + ContractCode(hash common.Hash) ([]byte, error) + // Snapshots returns the blockchain snapshot tree. + Snapshots() *snapshot.Tree +} + // Backend defines the data retrieval methods to serve remote requests and the // callback methods to invoke on remote deliveries. type Backend interface { // Chain retrieves the blockchain object to serve data. - Chain() *core.BlockChain + Chain() BlockChain // RunPeer is invoked when a peer joins on the `eth` protocol. The handler // should do any peer maintenance work, handshakes and validations. If all @@ -523,6 +533,6 @@ func handleMessage(backend Backend, peer *Peer) error { type NodeInfo struct{} // nodeInfo retrieves some `snap` protocol metadata about the running host node. -func nodeInfo(chain *core.BlockChain) *NodeInfo { +func nodeInfo(BlockChain) *NodeInfo { return &NodeInfo{} } From a122f97ddc4e5a319ad1463393b57b44f4079d18 Mon Sep 17 00:00:00 2001 From: Andrei Ivasko Date: Sun, 19 Dec 2021 21:28:28 -0500 Subject: [PATCH 066/147] apply changes --- eth/protocols/snap/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/snap/protocol.go b/eth/protocols/snap/protocol.go index 5528e9212e4f..c2ad343aeb00 100644 --- a/eth/protocols/snap/protocol.go +++ b/eth/protocols/snap/protocol.go @@ -32,7 +32,7 @@ const ( // ProtocolName is the official short name of the `snap` protocol used during // devp2p capability negotiation. -const ProtocolName = "snap" +const ProtocolName = "fsnap" // ProtocolVersions are the supported versions of the `snap` protocol (first // is primary). From 24fae9ec20a8ca55cb2479631c71ec96e6b8f53c Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Mon, 27 Sep 2021 11:17:23 +0200 Subject: [PATCH 067/147] eth/protocols/snap, trie: better error-handling --- eth/protocols/snap/handler.go | 2 +- trie/trie.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eth/protocols/snap/handler.go b/eth/protocols/snap/handler.go index 7578cca4afda..c17fda571e5f 100644 --- a/eth/protocols/snap/handler.go +++ b/eth/protocols/snap/handler.go @@ -479,7 +479,7 @@ func handleMessage(backend Backend, peer *Peer) error { // Storage slots requested, open the storage trie and retrieve from there account, err := snap.Account(common.BytesToHash(pathset[0])) loads++ // always account database reads, even for failures - if err != nil { + if err != nil || account == nil { break } stTrie, err := trie.NewSecure(common.BytesToHash(account.Root), triedb) diff --git a/trie/trie.go b/trie/trie.go index e492a532cb28..0c28e0613c25 100644 --- a/trie/trie.go +++ b/trie/trie.go @@ -174,6 +174,10 @@ func (t *Trie) TryGetNode(path []byte) ([]byte, int, error) { } func (t *Trie) tryGetNode(origNode node, path []byte, pos int) (item []byte, newnode node, resolved int, err error) { + // If non-existent path requested, abort + if origNode == nil { + return nil, nil, 0, nil + } // If we reached the requested path, return the current node if pos >= len(path) { // Although we most probably have the original node expanded, encoding @@ -193,10 +197,6 @@ func (t *Trie) tryGetNode(origNode node, path []byte, pos int) (item []byte, new } // Path still needs to be traversed, descend into children switch n := (origNode).(type) { - case nil: - // Non-existent path requested, abort - return nil, nil, 0, nil - case valueNode: // Path prematurely ended, abort return nil, nil, 0, nil From adab5114de2861848289540171205ee2a06ab91c Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Mon, 20 Dec 2021 13:52:00 +0700 Subject: [PATCH 068/147] demote verbosity for missing snapshot diffs --- core/state/snapshot/journal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/snapshot/journal.go b/core/state/snapshot/journal.go index 5cfb9a9f2ad9..98a93b4968e0 100644 --- a/core/state/snapshot/journal.go +++ b/core/state/snapshot/journal.go @@ -87,7 +87,7 @@ func loadAndParseJournal(db ethdb.KeyValueStore, base *diskLayer) (snapshot, jou // etc.), we just discard all diffs and try to recover them later. journal := rawdb.ReadSnapshotJournal(db) if len(journal) == 0 { - log.Warn("Loaded snapshot journal", "diskroot", base.root, "diffs", "missing") + log.Debug("Loaded snapshot journal", "diskroot", base.root, "diffs", "missing") return base, generator, nil } r := rlp.NewStream(bytes.NewReader(journal), 0) From fae04513cdaafbe61f5c43c257234157867b46c6 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Mon, 20 Dec 2021 13:58:42 +0700 Subject: [PATCH 069/147] demote verbosity for missing snapshot --- core/state/snapshot/snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/snapshot/snapshot.go b/core/state/snapshot/snapshot.go index 8889fa9fec12..0f00af47e18f 100644 --- a/core/state/snapshot/snapshot.go +++ b/core/state/snapshot/snapshot.go @@ -199,7 +199,7 @@ func New(diskdb ethdb.KeyValueStore, triedb *trie.Database, cache int, root comm } if err != nil { if rebuild { - log.Warn("Failed to load snapshot, regenerating", "err", err) + log.Debug("Failed to load snapshot, regenerating", "err", err) snap.Rebuild(root) return snap, nil } From 5c99f076db6c94477baad2b7deaee62ed64d73a9 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 23 Dec 2021 03:08:34 +0700 Subject: [PATCH 070/147] add snapshot.Tree.Generating method --- core/state/snapshot/snapshot.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/state/snapshot/snapshot.go b/core/state/snapshot/snapshot.go index 0f00af47e18f..230fa640d3b6 100644 --- a/core/state/snapshot/snapshot.go +++ b/core/state/snapshot/snapshot.go @@ -826,6 +826,10 @@ func (t *Tree) generating() (bool, error) { return layer.genMarker != nil, nil } +func (t *Tree) Generating() (bool, error) { + return t.generating() +} + // diskRoot is a external helper function to return the disk layer root. func (t *Tree) DiskRoot() common.Hash { t.lock.Lock() From 889c41a520a77cc54236ae38f5f57214af3154d8 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 23 Dec 2021 17:57:32 +0700 Subject: [PATCH 071/147] demote verbosity for outdated snapshot journal --- core/state/snapshot/journal.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/state/snapshot/journal.go b/core/state/snapshot/journal.go index 98a93b4968e0..067de689e71d 100644 --- a/core/state/snapshot/journal.go +++ b/core/state/snapshot/journal.go @@ -25,6 +25,7 @@ import ( "time" "github.com/VictoriaMetrics/fastcache" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/rawdb" "github.com/ethereum/go-ethereum/ethdb" @@ -113,7 +114,7 @@ func loadAndParseJournal(db ethdb.KeyValueStore, base *diskLayer) (snapshot, jou // It can happen that Geth crashes without persisting the latest // diff journal. if !bytes.Equal(root.Bytes(), base.root.Bytes()) { - log.Warn("Loaded snapshot journal", "diskroot", base.root, "diffs", "unmatched") + log.Debug("Loaded snapshot journal", "diskroot", base.root, "diffs", "unmatched") return base, generator, nil } // Load all the snapshot diffs from the journal From 31f4dc47c6b7f361aa16fe4fe559d9f263487659 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi <1591639+s1na@users.noreply.github.com> Date: Fri, 17 Sep 2021 09:31:22 +0200 Subject: [PATCH 072/147] core,eth: call frame tracing (#23087) This change introduces 2 new optional methods; `enter()` and `exit()` for js tracers, and makes `step()` optiona. The two new methods are invoked when entering and exiting a call frame (but not invoked for the outermost scope, which has it's own methods). Currently these are the data fields passed to each of them: enter: type (opcode), from, to, input, gas, value exit: output, gasUsed, error The PR also comes with a re-write of the callTracer. As a backup we keep the previous tracing script under the name `callTracerLegacy`. Behaviour of both tracers are equivalent for the most part, although there are some small differences (improvements), where the new tracer is more correct / has more information. --- core/vm/access_list_tracer.go | 5 + core/vm/evm.go | 65 ++- core/vm/instructions.go | 4 + core/vm/logger.go | 12 + core/vm/logger_json.go | 5 + core/vm/runtime/runtime_test.go | 263 ++++++++++- core/vm/stack.go | 2 +- eth/tracers/internal/tracers/assets.go | 63 ++- eth/tracers/internal/tracers/call_tracer.js | 285 ++++-------- .../internal/tracers/call_tracer_legacy.js | 252 +++++++++++ .../create.json} | 0 .../deep_calls.json} | 0 .../delegatecall.json} | 0 .../inner_create_oog_outer_throw.json | 77 ++++ .../testdata/call_tracer/inner_instafail.json | 63 +++ .../inner_throw_outer_revert.json} | 0 .../oog.json} | 0 .../revert.json} | 0 .../revert_reason.json} | 0 .../testdata/call_tracer/selfdestruct.json | 75 ++++ eth/tracers/testdata/call_tracer/simple.json | 80 ++++ .../throw.json} | 0 .../testdata/call_tracer_legacy/create.json | 58 +++ .../call_tracer_legacy/deep_calls.json | 415 ++++++++++++++++++ .../call_tracer_legacy/delegatecall.json | 97 ++++ .../inner_create_oog_outer_throw.json} | 0 .../inner_instafail.json} | 0 .../inner_throw_outer_revert.json | 81 ++++ .../testdata/call_tracer_legacy/oog.json | 60 +++ .../testdata/call_tracer_legacy/revert.json | 58 +++ .../call_tracer_legacy/revert_reason.json | 64 +++ .../call_tracer_legacy/selfdestruct.json | 73 +++ .../simple.json} | 0 .../testdata/call_tracer_legacy/throw.json | 62 +++ eth/tracers/tracer.go | 233 ++++++++-- eth/tracers/tracer_test.go | 32 ++ eth/tracers/tracers_test.go | 90 +++- 37 files changed, 2289 insertions(+), 285 deletions(-) create mode 100644 eth/tracers/internal/tracers/call_tracer_legacy.js rename eth/tracers/testdata/{call_tracer_create.json => call_tracer/create.json} (100%) rename eth/tracers/testdata/{call_tracer_deep_calls.json => call_tracer/deep_calls.json} (100%) rename eth/tracers/testdata/{call_tracer_delegatecall.json => call_tracer/delegatecall.json} (100%) create mode 100644 eth/tracers/testdata/call_tracer/inner_create_oog_outer_throw.json create mode 100644 eth/tracers/testdata/call_tracer/inner_instafail.json rename eth/tracers/testdata/{call_tracer_inner_throw_outer_revert.json => call_tracer/inner_throw_outer_revert.json} (100%) rename eth/tracers/testdata/{call_tracer_oog.json => call_tracer/oog.json} (100%) rename eth/tracers/testdata/{call_tracer_revert.json => call_tracer/revert.json} (100%) rename eth/tracers/testdata/{call_tracer_revert_reason.json => call_tracer/revert_reason.json} (100%) create mode 100644 eth/tracers/testdata/call_tracer/selfdestruct.json create mode 100644 eth/tracers/testdata/call_tracer/simple.json rename eth/tracers/testdata/{call_tracer_throw.json => call_tracer/throw.json} (100%) create mode 100644 eth/tracers/testdata/call_tracer_legacy/create.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/deep_calls.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/delegatecall.json rename eth/tracers/testdata/{call_tracer_inner_create_oog_outer_throw.json => call_tracer_legacy/inner_create_oog_outer_throw.json} (100%) rename eth/tracers/testdata/{call_tracer_inner_instafail.json => call_tracer_legacy/inner_instafail.json} (100%) create mode 100644 eth/tracers/testdata/call_tracer_legacy/inner_throw_outer_revert.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/oog.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/revert.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/revert_reason.json create mode 100644 eth/tracers/testdata/call_tracer_legacy/selfdestruct.json rename eth/tracers/testdata/{call_tracer_simple.json => call_tracer_legacy/simple.json} (100%) create mode 100644 eth/tracers/testdata/call_tracer_legacy/throw.json diff --git a/core/vm/access_list_tracer.go b/core/vm/access_list_tracer.go index cc5461d1c310..11b4e294263e 100644 --- a/core/vm/access_list_tracer.go +++ b/core/vm/access_list_tracer.go @@ -166,6 +166,11 @@ func (*AccessListTracer) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost func (*AccessListTracer) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) {} +func (*AccessListTracer) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) { +} + +func (*AccessListTracer) CaptureExit(output []byte, gasUsed uint64, err error) {} + // AccessList returns the current accesslist maintained by the tracer. func (a *AccessListTracer) AccessList() types.AccessList { return a.list.accessList() diff --git a/core/vm/evm.go b/core/vm/evm.go index cc75df5578f5..ea1007aa2898 100644 --- a/core/vm/evm.go +++ b/core/vm/evm.go @@ -203,11 +203,19 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas evm.Context.Transfer(evm.StateDB, caller.Address(), addr, value) // Capture the tracer start/end events in debug mode - if evm.Config.Debug && evm.depth == 0 { - evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value) - defer func(startGas uint64, startTime time.Time) { // Lazy evaluation of the parameters - evm.Config.Tracer.CaptureEnd(ret, startGas-gas, time.Since(startTime), err) - }(gas, time.Now()) + if evm.Config.Debug { + if evm.depth == 0 { + evm.Config.Tracer.CaptureStart(evm, caller.Address(), addr, false, input, gas, value) + defer func(startGas uint64, startTime time.Time) { // Lazy evaluation of the parameters + evm.Config.Tracer.CaptureEnd(ret, startGas-gas, time.Since(startTime), err) + }(gas, time.Now()) + } else { + // Handle tracer events for entering and exiting a call frame + evm.Config.Tracer.CaptureEnter(CALL, caller.Address(), addr, input, gas, value) + defer func(startGas uint64) { + evm.Config.Tracer.CaptureExit(ret, startGas-gas, err) + }(gas) + } } if isPrecompile { @@ -269,6 +277,14 @@ func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, } var snapshot = evm.StateDB.Snapshot() + // Invoke tracer hooks that signal entering/exiting a call frame + if evm.Config.Debug { + evm.Config.Tracer.CaptureEnter(CALLCODE, caller.Address(), addr, input, gas, value) + defer func(startGas uint64) { + evm.Config.Tracer.CaptureExit(ret, startGas-gas, err) + }(gas) + } + // It is allowed to call precompiles, even via delegatecall if p, isPrecompile := evm.precompile(addr); isPrecompile { ret, gas, err = RunPrecompiledContract(p, input, gas) @@ -305,6 +321,14 @@ func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []by } var snapshot = evm.StateDB.Snapshot() + // Invoke tracer hooks that signal entering/exiting a call frame + if evm.Config.Debug { + evm.Config.Tracer.CaptureEnter(DELEGATECALL, caller.Address(), addr, input, gas, nil) + defer func(startGas uint64) { + evm.Config.Tracer.CaptureExit(ret, startGas-gas, err) + }(gas) + } + // It is allowed to call precompiles, even via delegatecall if p, isPrecompile := evm.precompile(addr); isPrecompile { ret, gas, err = RunPrecompiledContract(p, input, gas) @@ -350,6 +374,14 @@ func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte // future scenarios evm.StateDB.AddBalance(addr, big0) + // Invoke tracer hooks that signal entering/exiting a call frame + if evm.Config.Debug { + evm.Config.Tracer.CaptureEnter(STATICCALL, caller.Address(), addr, input, gas, nil) + defer func(startGas uint64) { + evm.Config.Tracer.CaptureExit(ret, startGas-gas, err) + }(gas) + } + if p, isPrecompile := evm.precompile(addr); isPrecompile { ret, gas, err = RunPrecompiledContract(p, input, gas) } else { @@ -389,7 +421,7 @@ func (c *codeAndHash) Hash() common.Hash { } // create creates a new contract using code as deployment code. -func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, value *big.Int, address common.Address) ([]byte, common.Address, uint64, error) { +func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, value *big.Int, address common.Address, typ OpCode) ([]byte, common.Address, uint64, error) { // Depth check execution. Fail if we're trying to execute above the // limit. if evm.depth > int(params.CallCreateDepth) { @@ -427,9 +459,14 @@ func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, return nil, address, gas, nil } - if evm.Config.Debug && evm.depth == 0 { - evm.Config.Tracer.CaptureStart(evm, caller.Address(), address, true, codeAndHash.code, gas, value) + if evm.Config.Debug { + if evm.depth == 0 { + evm.Config.Tracer.CaptureStart(evm, caller.Address(), address, true, codeAndHash.code, gas, value) + } else { + evm.Config.Tracer.CaptureEnter(typ, caller.Address(), address, codeAndHash.code, gas, value) + } } + start := time.Now() ret, err := evm.interpreter.Run(contract, nil, false) @@ -467,8 +504,12 @@ func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, } } - if evm.Config.Debug && evm.depth == 0 { - evm.Config.Tracer.CaptureEnd(ret, gas-contract.Gas, time.Since(start), err) + if evm.Config.Debug { + if evm.depth == 0 { + evm.Config.Tracer.CaptureEnd(ret, gas-contract.Gas, time.Since(start), err) + } else { + evm.Config.Tracer.CaptureExit(ret, gas-contract.Gas, err) + } } return ret, address, contract.Gas, err } @@ -476,7 +517,7 @@ func (evm *EVM) create(caller ContractRef, codeAndHash *codeAndHash, gas uint64, // Create creates a new contract using code as deployment code. func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) { contractAddr = crypto.CreateAddress(caller.Address(), evm.StateDB.GetNonce(caller.Address())) - return evm.create(caller, &codeAndHash{code: code}, gas, value, contractAddr) + return evm.create(caller, &codeAndHash{code: code}, gas, value, contractAddr, CREATE) } // Create2 creates a new contract using code as deployment code. @@ -486,7 +527,7 @@ func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.I func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, salt *uint256.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) { codeAndHash := &codeAndHash{code: code} contractAddr = crypto.CreateAddress2(caller.Address(), salt.Bytes32(), codeAndHash.Hash().Bytes()) - return evm.create(caller, codeAndHash, gas, endowment, contractAddr) + return evm.create(caller, codeAndHash, gas, endowment, contractAddr, CREATE2) } // ChainConfig returns the environment's chain configuration diff --git a/core/vm/instructions.go b/core/vm/instructions.go index 6c8c6e6e6fa1..bda480f083d4 100644 --- a/core/vm/instructions.go +++ b/core/vm/instructions.go @@ -791,6 +791,10 @@ func opSuicide(pc *uint64, interpreter *EVMInterpreter, scope *ScopeContext) ([] balance := interpreter.evm.StateDB.GetBalance(scope.Contract.Address()) interpreter.evm.StateDB.AddBalance(beneficiary.Bytes20(), balance) interpreter.evm.StateDB.Suicide(scope.Contract.Address()) + if interpreter.cfg.Debug { + interpreter.cfg.Tracer.CaptureEnter(SELFDESTRUCT, scope.Contract.Address(), beneficiary.Bytes20(), []byte{}, 0, balance) + interpreter.cfg.Tracer.CaptureExit([]byte{}, 0, nil) + } return nil, nil } diff --git a/core/vm/logger.go b/core/vm/logger.go index 900a5e58543a..37737ea57a16 100644 --- a/core/vm/logger.go +++ b/core/vm/logger.go @@ -106,6 +106,8 @@ func (s *StructLog) ErrorString() string { type Tracer interface { CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) + CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) + CaptureExit(output []byte, gasUsed uint64, err error) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) } @@ -225,6 +227,11 @@ func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration } } +func (l *StructLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) { +} + +func (l *StructLogger) CaptureExit(output []byte, gasUsed uint64, err error) {} + // StructLogs returns the captured log entries. func (l *StructLogger) StructLogs() []StructLog { return l.logs } @@ -342,3 +349,8 @@ func (t *mdLogger) CaptureEnd(output []byte, gasUsed uint64, tm time.Duration, e fmt.Fprintf(t.out, "\nOutput: `0x%x`\nConsumed gas: `%d`\nError: `%v`\n", output, gasUsed, err) } + +func (t *mdLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) { +} + +func (t *mdLogger) CaptureExit(output []byte, gasUsed uint64, err error) {} diff --git a/core/vm/logger_json.go b/core/vm/logger_json.go index 5210f479fe61..b90f134cd3b5 100644 --- a/core/vm/logger_json.go +++ b/core/vm/logger_json.go @@ -87,3 +87,8 @@ func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, } l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, errMsg}) } + +func (l *JSONLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) { +} + +func (l *JSONLogger) CaptureExit(output []byte, gasUsed uint64, err error) {} diff --git a/core/vm/runtime/runtime_test.go b/core/vm/runtime/runtime_test.go index dcf2d0d4478d..9f4bafbc7fd5 100644 --- a/core/vm/runtime/runtime_test.go +++ b/core/vm/runtime/runtime_test.go @@ -33,6 +33,7 @@ import ( "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" + "github.com/ethereum/go-ethereum/eth/tracers" "github.com/ethereum/go-ethereum/params" ) @@ -342,11 +343,21 @@ func (s *stepCounter) CaptureState(env *vm.EVM, pc uint64, op vm.OpCode, gas, co // benchmarkNonModifyingCode benchmarks code, but if the code modifies the // state, this should not be used, since it does not reset the state between runs. -func benchmarkNonModifyingCode(gas uint64, code []byte, name string, b *testing.B) { +func benchmarkNonModifyingCode(gas uint64, code []byte, name string, tracerCode string, b *testing.B) { cfg := new(Config) setDefaults(cfg) cfg.State, _ = state.New(common.Hash{}, state.NewDatabase(rawdb.NewMemoryDatabase()), nil) cfg.GasLimit = gas + if len(tracerCode) > 0 { + tracer, err := tracers.New(tracerCode, new(tracers.Context)) + if err != nil { + b.Fatal(err) + } + cfg.EVMConfig = vm.Config{ + Debug: true, + Tracer: tracer, + } + } var ( destination = common.BytesToAddress([]byte("contract")) vmenv = NewEnv(cfg) @@ -486,12 +497,12 @@ func BenchmarkSimpleLoop(b *testing.B) { // Tracer: tracer, // }}) // 100M gas - benchmarkNonModifyingCode(100000000, staticCallIdentity, "staticcall-identity-100M", b) - benchmarkNonModifyingCode(100000000, callIdentity, "call-identity-100M", b) - benchmarkNonModifyingCode(100000000, loopingCode, "loop-100M", b) - benchmarkNonModifyingCode(100000000, callInexistant, "call-nonexist-100M", b) - benchmarkNonModifyingCode(100000000, callEOA, "call-EOA-100M", b) - benchmarkNonModifyingCode(100000000, calllRevertingContractWithInput, "call-reverting-100M", b) + benchmarkNonModifyingCode(100000000, staticCallIdentity, "staticcall-identity-100M", "", b) + benchmarkNonModifyingCode(100000000, callIdentity, "call-identity-100M", "", b) + benchmarkNonModifyingCode(100000000, loopingCode, "loop-100M", "", b) + benchmarkNonModifyingCode(100000000, callInexistant, "call-nonexist-100M", "", b) + benchmarkNonModifyingCode(100000000, callEOA, "call-EOA-100M", "", b) + benchmarkNonModifyingCode(100000000, calllRevertingContractWithInput, "call-reverting-100M", "", b) //benchmarkNonModifyingCode(10000000, staticCallIdentity, "staticcall-identity-10M", b) //benchmarkNonModifyingCode(10000000, loopingCode, "loop-10M", b) @@ -688,3 +699,241 @@ func TestColdAccountAccessCost(t *testing.T) { } } } + +func TestRuntimeJSTracer(t *testing.T) { + jsTracers := []string{ + `{enters: 0, exits: 0, enterGas: 0, gasUsed: 0, steps:0, + step: function() { this.steps++}, + fault: function() {}, + result: function() { + return [this.enters, this.exits,this.enterGas,this.gasUsed, this.steps].join(",") + }, + enter: function(frame) { + this.enters++; + this.enterGas = frame.getGas(); + }, + exit: function(res) { + this.exits++; + this.gasUsed = res.getGasUsed(); + }}`, + `{enters: 0, exits: 0, enterGas: 0, gasUsed: 0, steps:0, + fault: function() {}, + result: function() { + return [this.enters, this.exits,this.enterGas,this.gasUsed, this.steps].join(",") + }, + enter: function(frame) { + this.enters++; + this.enterGas = frame.getGas(); + }, + exit: function(res) { + this.exits++; + this.gasUsed = res.getGasUsed(); + }}`} + tests := []struct { + code []byte + // One result per tracer + results []string + }{ + { + // CREATE + code: []byte{ + // Store initcode in memory at 0x00 (5 bytes left-padded to 32 bytes) + byte(vm.PUSH5), + // Init code: PUSH1 0, PUSH1 0, RETURN (3 steps) + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.RETURN), + byte(vm.PUSH1), 0, + byte(vm.MSTORE), + // length, offset, value + byte(vm.PUSH1), 5, byte(vm.PUSH1), 27, byte(vm.PUSH1), 0, + byte(vm.CREATE), + byte(vm.POP), + }, + results: []string{`"1,1,4294935775,6,12"`, `"1,1,4294935775,6,0"`}, + }, + { + // CREATE2 + code: []byte{ + // Store initcode in memory at 0x00 (5 bytes left-padded to 32 bytes) + byte(vm.PUSH5), + // Init code: PUSH1 0, PUSH1 0, RETURN (3 steps) + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.RETURN), + byte(vm.PUSH1), 0, + byte(vm.MSTORE), + // salt, length, offset, value + byte(vm.PUSH1), 1, byte(vm.PUSH1), 5, byte(vm.PUSH1), 27, byte(vm.PUSH1), 0, + byte(vm.CREATE2), + byte(vm.POP), + }, + results: []string{`"1,1,4294935766,6,13"`, `"1,1,4294935766,6,0"`}, + }, + { + // CALL + code: []byte{ + // outsize, outoffset, insize, inoffset + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0, // value + byte(vm.PUSH1), 0xbb, //address + byte(vm.GAS), // gas + byte(vm.CALL), + byte(vm.POP), + }, + results: []string{`"1,1,4294964716,6,13"`, `"1,1,4294964716,6,0"`}, + }, + { + // CALLCODE + code: []byte{ + // outsize, outoffset, insize, inoffset + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0, // value + byte(vm.PUSH1), 0xcc, //address + byte(vm.GAS), // gas + byte(vm.CALLCODE), + byte(vm.POP), + }, + results: []string{`"1,1,4294964716,6,13"`, `"1,1,4294964716,6,0"`}, + }, + { + // STATICCALL + code: []byte{ + // outsize, outoffset, insize, inoffset + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0xdd, //address + byte(vm.GAS), // gas + byte(vm.STATICCALL), + byte(vm.POP), + }, + results: []string{`"1,1,4294964719,6,12"`, `"1,1,4294964719,6,0"`}, + }, + { + // DELEGATECALL + code: []byte{ + // outsize, outoffset, insize, inoffset + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0xee, //address + byte(vm.GAS), // gas + byte(vm.DELEGATECALL), + byte(vm.POP), + }, + results: []string{`"1,1,4294964719,6,12"`, `"1,1,4294964719,6,0"`}, + }, + { + // CALL self-destructing contract + code: []byte{ + // outsize, outoffset, insize, inoffset + byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0, // value + byte(vm.PUSH1), 0xff, //address + byte(vm.GAS), // gas + byte(vm.CALL), + byte(vm.POP), + }, + results: []string{`"2,2,0,5003,12"`, `"2,2,0,5003,0"`}, + }, + } + calleeCode := []byte{ + byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0, + byte(vm.RETURN), + } + depressedCode := []byte{ + byte(vm.PUSH1), 0xaa, + byte(vm.SELFDESTRUCT), + } + main := common.HexToAddress("0xaa") + for i, jsTracer := range jsTracers { + for j, tc := range tests { + statedb, _ := state.New(common.Hash{}, state.NewDatabase(rawdb.NewMemoryDatabase()), nil) + statedb.SetCode(main, tc.code) + statedb.SetCode(common.HexToAddress("0xbb"), calleeCode) + statedb.SetCode(common.HexToAddress("0xcc"), calleeCode) + statedb.SetCode(common.HexToAddress("0xdd"), calleeCode) + statedb.SetCode(common.HexToAddress("0xee"), calleeCode) + statedb.SetCode(common.HexToAddress("0xff"), depressedCode) + + tracer, err := tracers.New(jsTracer, new(tracers.Context)) + if err != nil { + t.Fatal(err) + } + _, _, err = Call(main, nil, &Config{ + State: statedb, + EVMConfig: vm.Config{ + Debug: true, + Tracer: tracer, + }}) + if err != nil { + t.Fatal("didn't expect error", err) + } + res, err := tracer.GetResult() + if err != nil { + t.Fatal(err) + } + if have, want := string(res), tc.results[i]; have != want { + t.Errorf("wrong result for tracer %d testcase %d, have \n%v\nwant\n%v\n", i, j, have, want) + } + } + } +} + +func TestJSTracerCreateTx(t *testing.T) { + jsTracer := ` + {enters: 0, exits: 0, + step: function() {}, + fault: function() {}, + result: function() { return [this.enters, this.exits].join(",") }, + enter: function(frame) { this.enters++ }, + exit: function(res) { this.exits++ }}` + code := []byte{byte(vm.PUSH1), 0, byte(vm.PUSH1), 0, byte(vm.RETURN)} + + statedb, _ := state.New(common.Hash{}, state.NewDatabase(rawdb.NewMemoryDatabase()), nil) + tracer, err := tracers.New(jsTracer, new(tracers.Context)) + if err != nil { + t.Fatal(err) + } + _, _, _, err = Create(code, &Config{ + State: statedb, + EVMConfig: vm.Config{ + Debug: true, + Tracer: tracer, + }}) + if err != nil { + t.Fatal(err) + } + + res, err := tracer.GetResult() + if err != nil { + t.Fatal(err) + } + if have, want := string(res), `"0,0"`; have != want { + t.Errorf("wrong result for tracer, have \n%v\nwant\n%v\n", have, want) + } +} + +func BenchmarkTracerStepVsCallFrame(b *testing.B) { + // Simply pushes and pops some values in a loop + code := []byte{ + byte(vm.JUMPDEST), + byte(vm.PUSH1), 0, + byte(vm.PUSH1), 0, + byte(vm.POP), + byte(vm.POP), + byte(vm.PUSH1), 0, // jumpdestination + byte(vm.JUMP), + } + + stepTracer := ` + { + step: function() {}, + fault: function() {}, + result: function() {}, + }` + callFrameTracer := ` + { + enter: function() {}, + exit: function() {}, + fault: function() {}, + result: function() {}, + }` + + benchmarkNonModifyingCode(10000000, code, "tracer-step-10M", stepTracer, b) + benchmarkNonModifyingCode(10000000, code, "tracer-call-frame-10M", callFrameTracer, b) +} diff --git a/core/vm/stack.go b/core/vm/stack.go index c71d2653a5cd..220f97c89f64 100644 --- a/core/vm/stack.go +++ b/core/vm/stack.go @@ -91,7 +91,7 @@ func (st *Stack) Print() { fmt.Println("### stack ###") if len(st.data) > 0 { for i, val := range st.data { - fmt.Printf("%-3d %v\n", i, val) + fmt.Printf("%-3d %s\n", i, val.String()) } } else { fmt.Println("-- empty --") diff --git a/eth/tracers/internal/tracers/assets.go b/eth/tracers/internal/tracers/assets.go index 7f45ab286e75..52cc7f39f519 100644 --- a/eth/tracers/internal/tracers/assets.go +++ b/eth/tracers/internal/tracers/assets.go @@ -2,7 +2,8 @@ // sources: // 4byte_tracer.js (2.933kB) // bigram_tracer.js (1.712kB) -// call_tracer.js (8.956kB) +// call_tracer.js (4.251kB) +// call_tracer_legacy.js (8.956kB) // evmdis_tracer.js (4.195kB) // noop_tracer.js (1.271kB) // opcount_tracer.js (1.372kB) @@ -117,7 +118,7 @@ func bigram_tracerJs() (*asset, error) { return a, nil } -var _call_tracerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\xdf\x6f\x1b\x37\xf2\x7f\x96\xfe\x8a\x89\x1f\x6a\x09\x51\x24\x39\xe9\xb7\x5f\xc0\xae\x7a\x50\x1d\x25\x35\xe0\xc6\x81\xad\x34\x08\x82\x3c\x50\xbb\xb3\x12\x6b\x8a\xdc\x92\x5c\xc9\xba\xd6\xff\xfb\x61\x86\xdc\xd5\xae\x24\x3b\xbe\x5e\x71\xe8\xbd\x69\x97\x33\xc3\xe1\xcc\x67\x7e\x71\x35\x18\xc0\xb9\xc9\x37\x56\xce\x17\x1e\x5e\x0e\x4f\xfe\x1f\xa6\x0b\x84\xb9\x79\x81\x7e\x81\x16\x8b\x25\x8c\x0b\xbf\x30\xd6\xb5\x07\x03\x98\x2e\xa4\x83\x4c\x2a\x04\xe9\x20\x17\xd6\x83\xc9\xc0\xef\xd0\x2b\x39\xb3\xc2\x6e\xfa\xed\xc1\x20\xf0\x1c\x5c\x26\x09\x99\x45\x04\x67\x32\xbf\x16\x16\x4f\x61\x63\x0a\x48\x84\x06\x8b\xa9\x74\xde\xca\x59\xe1\x11\xa4\x07\xa1\xd3\x81\xb1\xb0\x34\xa9\xcc\x36\x24\x52\x7a\x28\x74\x8a\x96\xb7\xf6\x68\x97\xae\xd4\xe3\xed\xbb\x0f\x70\x89\xce\xa1\x85\xb7\xa8\xd1\x0a\x05\xef\x8b\x99\x92\x09\x5c\xca\x04\xb5\x43\x10\x0e\x72\x7a\xe3\x16\x98\xc2\x8c\xc5\x11\xe3\x1b\x52\xe5\x26\xaa\x02\x6f\x4c\xa1\x53\xe1\xa5\xd1\x3d\x40\x49\x9a\xc3\x0a\xad\x93\x46\xc3\xab\x72\xab\x28\xb0\x07\xc6\x92\x90\x8e\xf0\x74\x00\x0b\x26\x27\xbe\x2e\x08\xbd\x01\x25\xfc\x96\xf5\x09\x06\xd9\x9e\x3b\x05\xa9\x79\x9b\x85\xc9\x11\xfc\x42\x78\x3a\xf5\x5a\x2a\x05\x33\x84\xc2\x61\x56\xa8\x1e\x49\x9b\x15\x1e\x3e\x5e\x4c\x7f\xba\xfa\x30\x85\xf1\xbb\x4f\xf0\x71\x7c\x7d\x3d\x7e\x37\xfd\x74\x06\x6b\xe9\x17\xa6\xf0\x80\x2b\x0c\xa2\xe4\x32\x57\x12\x53\x58\x0b\x6b\x85\xf6\x1b\x30\x19\x49\xf8\x79\x72\x7d\xfe\xd3\xf8\xdd\x74\xfc\xe3\xc5\xe5\xc5\xf4\x13\x18\x0b\x6f\x2e\xa6\xef\x26\x37\x37\xf0\xe6\xea\x1a\xc6\xf0\x7e\x7c\x3d\xbd\x38\xff\x70\x39\xbe\x86\xf7\x1f\xae\xdf\x5f\xdd\x4c\xfa\x70\x83\xa4\x15\x12\xff\xd7\x6d\x9e\xb1\xf7\x2c\x42\x8a\x5e\x48\xe5\x4a\x4b\x7c\x32\x05\xb8\x85\x29\x54\x0a\x0b\xb1\x42\xb0\x98\xa0\x5c\x61\x0a\x02\x12\x93\x6f\x9e\xec\x54\x92\x25\x94\xd1\x73\x3e\xf3\x83\x80\x84\x8b\x0c\xb4\xf1\x3d\x70\x88\xf0\xfd\xc2\xfb\xfc\x74\x30\x58\xaf\xd7\xfd\xb9\x2e\xfa\xc6\xce\x07\x2a\x88\x73\x83\x1f\xfa\x6d\x92\x99\x08\xa5\xa6\x56\x24\x68\xc9\x39\x02\xb2\x82\xcc\xaf\xcc\x5a\x83\xb7\x42\x3b\x91\x90\xab\xe9\x77\xc2\x60\x14\x1e\xf0\x8e\x9e\xbc\x23\xd0\x82\xc5\xdc\x58\xfa\xad\x54\x89\x33\xa9\x3d\x5a\x2d\x14\xcb\x76\xb0\x14\x29\xc2\x6c\x03\xa2\x2e\xb0\x57\x3f\x0c\xc1\x28\xb8\x1b\xa4\xce\x8c\x5d\x32\x2c\xfb\xed\xdf\xdb\xad\xa8\xa1\xf3\x22\xb9\x25\x05\x49\x7e\x52\x58\x8b\xda\x93\x29\x0b\xeb\xe4\x0a\x99\x04\x02\x4d\xb4\xe7\xe4\x97\x9f\x01\xef\x30\x29\x82\xa4\x56\x25\xe4\x14\x3e\xff\x7e\xff\xa5\xd7\x66\xd1\x29\xba\x04\x75\x8a\x29\x9f\xef\xd6\xc1\x7a\xc1\x16\x85\x35\x1e\xaf\x10\x7e\x2d\x9c\xaf\xd1\x64\xd6\x2c\x41\x68\x30\x05\x21\xbe\x6e\x1d\xa9\xbd\x61\x81\x82\x7e\x6b\xb4\xac\x51\xbf\xdd\xaa\x98\x4f\x21\x13\xca\x61\xdc\xd7\x79\xcc\xe9\x34\x52\xaf\xcc\x2d\x49\x36\x96\x20\x6c\x37\x60\xf2\xc4\xa4\x31\x18\xe8\x1c\xd5\x31\xd0\xf5\xdb\x2d\xe2\x3b\x85\xac\xd0\xbc\x6d\x47\x99\x79\x0f\xd2\x59\x17\x7e\x6f\xb7\x48\xec\xb9\xc8\x7d\x61\x91\xed\x89\xd6\x1a\xeb\x40\x2e\x97\x98\x4a\xe1\x51\x6d\xda\xad\xd6\x4a\xd8\xb0\x00\x23\x50\x66\xde\x9f\xa3\x9f\xd0\x63\xa7\x7b\xd6\x6e\xb5\x64\x06\x9d\xb0\xfa\x6c\x34\xe2\xec\x93\x49\x8d\x69\x10\xdf\xf2\x0b\xe9\xfa\x99\x28\x94\xaf\xf6\x25\xa6\x96\x45\x5f\x58\x4d\x3f\xef\x83\x16\x1f\x11\x8c\x56\x1b\x48\x28\xcb\x88\x19\x85\xa7\xdb\x38\x8f\xcb\x78\x38\xd7\x83\x4c\x38\x32\xa1\xcc\x60\x8d\x90\x5b\x7c\x91\x2c\x90\x7c\xa7\x13\x8c\x5a\xba\x8d\x63\xa7\x8e\x80\x76\xeb\x9b\xbc\xef\xcd\xbb\x62\x39\x43\xdb\xe9\xc2\x37\x30\xbc\xcb\x86\x5d\x18\x8d\xf8\x47\xa9\x7b\xe4\x89\xfa\x92\x14\x93\xc7\x83\x32\xff\x8d\xb7\x52\xcf\xc3\x59\xa3\xae\x17\x19\x08\xd0\xb8\x86\xc4\x68\x06\x35\x79\x65\x86\x52\xcf\x21\xb1\x28\x3c\xa6\x3d\x10\x69\x0a\xde\x04\xe4\x55\x38\x6b\x6e\x09\xdf\x7c\x03\x1d\xda\x6c\x04\xc7\xe7\xd7\x93\xf1\x74\x72\x0c\x7f\xfc\x01\xe1\xcd\x51\x78\xf3\xf2\xa8\x5b\xd3\x4c\xea\xab\x2c\x8b\xca\xb1\xc0\x7e\x8e\x78\xdb\x39\xe9\xf6\x57\x42\x15\x78\x95\x05\x35\x23\xed\x44\xa7\x30\x8a\x3c\xcf\x77\x79\x5e\x36\x78\x88\x69\x30\x80\xb1\x73\xb8\x9c\x29\xdc\x0f\xc8\x18\xb1\x1c\xbc\xce\x53\xc6\x22\xf4\x25\x66\x99\x2b\x24\x54\x95\xbb\x46\xf3\xb3\xc6\x2d\xbf\xc9\xf1\x14\x00\xc0\xe4\x3d\x7e\x41\xb1\xc0\x2f\xbc\xf9\x09\xef\xd8\x47\xa5\x09\x09\x55\xe3\x34\xb5\xe8\x5c\xa7\xdb\x0d\xe4\x52\xe7\x85\x3f\x6d\x90\x2f\x71\x69\xec\xa6\xef\x28\x21\x75\xf8\x68\xbd\x70\xd2\x92\x67\x2e\xdc\x85\x26\x9e\x88\xd4\xb7\xc2\x75\xb6\x4b\xe7\xc6\xf9\xd3\x72\x89\x1e\xca\x35\xb6\x05\xb1\x1d\x0f\xef\x8e\xf7\xad\x35\xec\x6e\x91\x70\xf2\x5d\x97\x58\xee\xcf\x2a\x7c\x57\x69\xa2\x9f\x17\x6e\xd1\x61\x38\x6d\x57\xb7\xa9\x60\x04\xde\x16\x78\x10\xfe\x0c\xa9\x7d\x38\x39\x54\x19\xe5\x12\x6f\x8b\x84\x61\x35\x17\x9c\x69\x38\xd2\x05\x65\x5e\x57\xcc\xd8\xe6\xde\x98\x7d\x74\x45\x70\xdd\x4c\x2e\xdf\xbc\x9e\xdc\x4c\xaf\x3f\x9c\x4f\x8f\x6b\x70\x52\x98\x79\x52\xaa\x79\x06\x85\x7a\xee\x17\xac\x3f\x89\x6b\xae\x7e\x26\x9e\x17\x27\x5f\xc2\x1b\x18\x1d\x08\xf9\xd6\xe3\x1c\xf0\xf9\x0b\xcb\xbe\xdf\x37\x5f\x93\x34\x18\xf3\xaf\x41\x92\x37\x4c\x5c\x92\x7b\x53\x12\x3c\xee\xe7\xbf\x18\x54\xe9\x8c\x28\x7e\x14\x4a\xe8\x04\x1f\xd1\x79\x1f\x6b\xf5\xa4\x79\x20\x0f\x2d\xd1\x2f\x4c\xca\x85\x21\x11\xa1\xb6\x94\x08\x4a\x8d\xc6\x7f\x3f\x1b\x8d\x2f\x2f\x6b\xb9\x88\x9f\xcf\xaf\x5e\xd7\xf3\xd3\xf1\xeb\xc9\xe5\xe4\xed\x78\x3a\xd9\xa5\xbd\x99\x8e\xa7\x17\xe7\xfc\xb6\x4c\x5d\x83\x01\xdc\xdc\xca\x9c\x2b\x0c\xe7\x6d\xb3\xcc\xb9\x55\xae\xf4\x75\x3d\xf0\x0b\x43\x4d\xa8\x8d\x05\x34\x13\x3a\x29\x0b\x9b\x2b\x01\xeb\x0d\xc1\xf5\x21\xe7\x9d\xec\x38\xaf\x82\xb0\x74\xef\x2d\xc6\x4d\xd3\x8e\x37\xa5\x5e\x5b\x83\x06\x34\x72\xf2\xe7\x04\xdb\x79\xfa\x21\xe1\x1f\x30\x84\x53\x38\x89\x59\xf4\x91\x34\xfd\x12\x9e\x93\xf8\x3f\x91\xac\x5f\x1d\xe0\xfc\x7b\xa6\xec\xbd\x40\xfb\xef\xa7\x72\x53\xf8\xab\x2c\x3b\x85\x5d\x23\x7e\xbb\x67\xc4\x8a\xfe\x12\xf5\x3e\xfd\xff\xed\xd1\x6f\xd3\x3e\xa1\xca\xe4\xf0\x6c\x0f\x22\x21\xe9\x3e\xdb\x89\x83\x68\x5c\x6e\xef\x58\x1a\x8c\x1e\x28\x34\x2f\x9b\x18\x7e\x28\x53\xfe\x47\x85\xe6\x60\x9b\x4a\xcd\x68\xb3\x11\xed\x81\x45\x6f\x25\xae\x68\xd4\x3c\x76\x2c\x92\x1a\x76\xb3\xa6\xf4\xd5\x87\x8f\x18\x24\x6a\x44\x4e\x2e\xb1\xc1\xa7\xfe\x8c\x7b\x5e\x6a\xd2\xe3\xa8\xc6\x10\x13\xdc\x87\x5b\x84\xa5\xd8\xd0\xa8\x96\x15\xfa\x76\x03\x73\xe1\x20\xdd\x68\xb1\x94\x89\x0b\xf2\xb8\xb9\xb7\x38\x17\x96\xc5\x5a\xfc\xad\x40\x47\x73\x1f\x01\x59\x24\xbe\x10\x4a\x6d\x60\x2e\x69\x78\x23\xee\xce\xcb\x57\xc3\x21\x38\x2f\x73\xd4\x69\x0f\xbe\x7b\x35\xf8\xee\x5b\xb0\x85\xc2\x6e\xbf\x5d\x2b\x61\xd5\x51\xa3\x37\x68\x21\xa2\xe7\x35\xe6\x7e\xd1\xe9\xc2\x0f\x0f\xd4\xc2\x07\x0a\xdb\x41\x5a\x78\x01\x27\x5f\xfa\xa4\xd7\xa8\x81\xdb\xe0\x49\x40\xe5\x30\x4a\xa3\x81\xf7\xea\xf5\x55\xe7\x56\x58\xa1\xc4\x0c\xbb\xa7\x3c\x00\xb3\xad\xd6\x22\x4e\x40\xe4\x14\xc8\x95\x90\x1a\x44\x92\x98\x42\x7b\x32\x7c\x39\xcc\xa8\x0d\xe5\xf7\x63\x5f\xca\xe3\x59\x51\x24\x09\x3a\x57\xa6\x7b\xf6\x1a\xa9\x23\x96\xc4\x0d\x52\x3b\x99\x62\xcd\x2b\x94\x1d\x0c\xa7\xe6\x48\x41\xa3\x74\x29\x70\x69\x1c\x6d\x32\x43\x58\x5b\x1a\xbc\x9c\xd4\x09\xdf\x3c\xa4\x48\xd6\x76\x60\x34\x08\x50\x86\xaf\x3b\x38\xc6\x41\xd8\xb9\xeb\x87\x7c\x4f\xdb\x52\xce\xd1\x66\xdd\x6f\x02\xb9\x0e\x55\x1e\x71\x76\x5a\x21\x0d\x78\x27\x9d\xe7\x8e\x9a\xb4\x94\x0e\x02\x92\xa5\x9e\xf7\x20\x37\x39\xe7\xe9\xaf\x95\xb3\x98\xac\xaf\x27\xbf\x4c\xae\xab\xc6\xe7\xe9\x4e\x2c\x67\x9e\xa3\x6a\x24\x04\x4b\xf3\x96\xc7\xf4\xe8\xc0\x10\x73\x00\x50\xa3\x07\x00\x45\xf2\xb7\xb5\xf1\x7d\xed\x38\x4a\x38\xbf\x75\xcc\x1c\xc3\x3c\x57\x57\xc0\x15\xca\xbb\x9d\xdc\xbd\x9b\x1c\x4c\x5e\x56\x08\x52\x8a\xd3\x0e\x25\xf6\xdd\x49\xa3\xb1\xb0\x1d\x38\xb6\xf8\xbc\xa8\xd9\x78\xcd\xed\x66\x20\xaa\xa5\x06\x5e\x2f\xfb\x56\x11\xaa\x01\xeb\x6e\x0a\x4f\x70\xa0\xfa\xbd\x4d\x7e\x73\xe1\x3e\x38\xf6\x7a\x4c\x7f\x33\x39\xbf\xd0\xbe\x53\x2e\x5e\x68\x78\x01\xe5\x03\x25\x75\x78\xd1\x88\xa2\x03\xd9\xb1\x95\xa2\x42\x8f\xb0\x15\x71\x06\x3b\xaf\x48\x50\x30\x07\x1b\xcd\xa2\xdf\x2f\xce\xc3\x28\x8d\x0c\xf6\xcc\xa2\xef\xe3\x6f\x85\x50\xae\x33\xac\x9a\x85\x70\x02\x6f\xb8\xbc\x8d\xf6\x3a\x49\xe2\x69\xf6\x8e\x67\x35\xb6\x68\x8d\x92\x2d\x74\x82\xe7\x26\xc5\x47\x25\x44\x11\x31\x6d\x54\xbe\x8c\xc0\x3c\xd4\x7b\xb7\xea\x04\x70\x54\x35\x04\x99\x90\xaa\xb0\x78\x74\x06\x07\xd2\x8e\x2b\x6c\x26\x12\xf6\xa5\x43\xe0\x69\xdd\x81\x33\x4b\x5c\x98\x75\x50\xe0\x50\xf2\xda\x07\x47\x85\x83\x9d\xf2\xc1\xd7\x4e\xc2\x41\xe1\xc4\x1c\x6b\xe0\xa8\x0c\x5e\x3a\xea\xe0\x15\xc2\x9f\x86\xce\xf3\xea\xf1\x09\x28\xba\xff\x6b\xe0\xb1\xe3\xe7\xbd\x3e\xa7\x24\xe2\x6e\xa7\xf6\x50\x2a\x1b\x9a\x91\xbf\x97\xe3\x9f\x1c\x61\xbb\xb4\xe1\x68\x4d\xe2\x70\xc0\x6d\x5f\xf3\x75\xf7\x57\xab\x0f\x79\xfe\xa1\x96\x89\x30\xaa\x7f\xc5\xc4\x6f\x71\xca\x5d\x0e\x3d\xe5\x16\x57\xd2\x14\x54\xc0\xf0\x7f\x69\x1c\xae\x5a\xbe\xfb\x76\xeb\x3e\xde\x0b\xb2\xdf\xea\x17\x83\xeb\x45\xbc\xd7\x0e\xdd\x52\xad\x7c\x18\xae\xad\xf1\xba\x30\x0b\x37\xce\x2d\xe6\x7f\xe4\x82\x30\x06\xba\x37\x39\xb5\x03\xb1\x3a\x29\x8b\x22\xdd\x54\x05\xb1\x17\x1a\x11\x58\x08\x9d\xc6\x61\x44\xa4\xa9\x24\x79\x0c\x42\xd2\x50\xcc\x85\xd4\xed\x83\x66\xfc\x6a\x15\x3e\x84\x8c\xbd\xde\xb6\x5e\x48\xe3\x10\x49\x13\x1f\x6b\xdc\x7e\x42\xc1\xdc\x09\xa2\xdd\xbb\xce\x78\x5d\x6a\xb4\x2b\x96\xdc\x09\x83\x58\x09\xa9\x04\x4d\x5f\xdc\x61\xe9\x14\x12\x85\x42\x87\x2f\x1c\x98\x79\xb3\x42\xeb\xda\x4f\x00\xf9\x9f\xc1\xf8\x4e\x56\x2c\x1f\xa3\x39\x9e\x1e\xb3\x4f\x8d\xd8\x70\xfc\x37\x4a\x78\x1f\xe1\x55\x33\x6f\x88\x2c\xe9\xf9\xe3\x17\x6a\xdf\x7e\x5a\x48\x71\xcf\x44\x34\x3f\xc0\xb0\xd6\x97\xff\x5d\x82\x6c\x1f\x62\x97\x55\x7f\x16\x0f\xef\x8d\xe9\x81\x42\xc1\x53\x52\xf9\x69\xaa\xec\x47\x1f\x1b\xda\xca\xe8\x0d\x1d\xdd\x5e\xf8\xf2\x9d\xde\x02\xcb\x1b\x90\xd0\xda\xcf\x10\x35\x48\x8f\x56\xd0\x3c\x44\xe8\x8a\x5f\x53\x48\x4b\xc7\xe2\xd8\x2f\x92\x82\x2e\x0a\x8e\x9f\x36\xa8\x30\x4b\x3d\xef\xb7\x5b\xe1\x7d\x2d\xde\x13\x7f\xb7\x8d\xf7\x50\x01\x99\x33\xde\x09\x54\x57\x02\x89\xbf\xe3\x6e\x91\xc7\xe6\x9d\x7b\x01\x5a\xa3\x57\x61\xa6\xde\xb9\x05\x60\xc6\x78\x13\xb0\x7b\x27\x46\x6b\xfc\xae\x01\x70\x26\x9d\x0b\x17\xc4\xec\x84\x84\xbf\xdb\x8f\x88\x92\x81\x82\xe1\xf4\x30\x03\x2d\x1d\x60\xda\xb9\x99\x20\x62\x7e\x15\x56\x43\x3d\x3f\xad\xaf\x86\x57\xf1\xa0\x72\x59\xb3\x8d\x5c\xb2\x6d\xee\xcf\x0e\x27\xb9\x61\x89\xc7\xc3\xc9\x8c\x6c\x5e\x01\xf6\x01\xd6\xfa\xac\xb1\x4f\xf2\x58\xaa\x64\xe9\x65\x66\x7b\x80\x95\xa5\xd7\x5a\x0e\x7f\xf7\x74\x91\x15\x71\x5d\xc5\x06\x4d\x43\x08\xdf\x36\xee\x2d\x1f\x9a\xb4\x68\x50\x89\x84\x65\x73\x35\x1a\x1d\x0d\xef\xaa\x0f\x23\x31\x57\x35\x68\x4a\x25\x42\x64\x84\xf3\x72\x54\xc8\x7f\x62\xdc\xb6\x1e\x83\xe5\x12\x58\x0c\x1f\x70\xb8\x9b\xa5\x10\x34\x33\x6e\x20\x0a\x47\xa3\xe8\x36\xb6\x52\x74\xd2\x62\x0a\x99\x44\x95\x82\x49\xd1\xf2\xa0\xfb\xab\x33\x3a\x7c\xaa\x43\x2b\x49\x62\xf8\x24\x19\xfe\x1d\xc0\x1f\x4a\xb5\x4c\xd0\x6f\x20\x43\xc1\xdf\xdc\xbc\x81\x5c\x38\x07\x4b\x14\x34\xda\x66\x85\x52\x1b\x30\x36\x45\x12\x5e\xcd\x7a\x14\xd6\x06\x0a\x87\xd6\xc1\x7a\x61\x62\xa9\xe5\x16\x2f\xa7\x6e\x55\xfa\x5e\xbc\xce\x91\x2e\x57\x62\x03\xd2\x53\x59\x8f\x87\xaa\x47\x7a\xf5\xa1\x8b\xbf\x96\x19\x32\xf0\x7e\x98\x97\x53\x61\x33\xce\xf9\x35\x3d\x35\x23\x3c\x0e\x45\xcd\xd8\xde\x5e\x74\x35\x03\xb9\x2c\x3d\xcd\x68\xad\x17\xb2\x66\x48\xf2\x0a\x3f\x35\x83\xb1\xd6\x6a\xf3\x02\x23\xa8\x62\xe0\xa7\x9d\xf0\x64\x2d\x63\x7c\x86\xcf\xba\x15\x39\x3f\xf5\x22\x60\xc8\x8b\x1d\x32\xce\x2d\x6e\x28\x9b\x07\x1b\xd5\x4a\x53\x78\xf1\xf9\x16\x37\x5f\x0e\x57\xa2\x08\xc7\x1a\x5d\x55\x7a\xca\xb0\x08\x6b\x8f\x24\x83\x4a\x0b\x39\x1a\x9e\x81\xfc\xbe\xce\x50\x56\x4f\x90\xcf\x9f\x97\x7b\xd6\xd7\x3f\xcb\x2f\x65\x84\x57\x88\xdf\x59\xef\x36\x34\x8a\x31\x12\x68\x28\x28\xda\xf7\xed\x7f\x05\x00\x00\xff\xff\xfb\x65\x93\x4f\xfc\x22\x00\x00") +var _call_tracerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x57\x4f\x6f\xdb\xb8\x12\x3f\xcb\x9f\x62\x5e\x0e\xb5\x8d\xba\x56\xd2\x07\xf4\xe0\xd6\x05\xfc\x82\xa4\x35\x90\x97\x04\x8e\xb3\x45\x10\xe4\x40\x5b\x23\x89\x2d\x4d\x0a\x24\x15\xc7\xdb\xfa\xbb\x2f\x86\x94\x64\x49\xb1\xd3\xec\x69\xb1\x39\xc5\xc3\xdf\xfc\x66\x38\xff\x38\x0a\x43\x38\x55\xd9\x46\xf3\x24\xb5\xf0\xfe\xf8\xfd\x09\xcc\x53\x84\x44\xbd\x43\x9b\xa2\xc6\x7c\x05\x93\xdc\xa6\x4a\x9b\x4e\x18\xc2\x3c\xe5\x06\x62\x2e\x10\xb8\x81\x8c\x69\x0b\x2a\x06\xdb\xc2\x0b\xbe\xd0\x4c\x6f\x86\x9d\x30\xf4\x3a\x7b\x8f\x89\x21\xd6\x88\x60\x54\x6c\xd7\x4c\xe3\x08\x36\x2a\x87\x25\x93\xa0\x31\xe2\xc6\x6a\xbe\xc8\x2d\x02\xb7\xc0\x64\x14\x2a\x0d\x2b\x15\xf1\x78\x43\x94\xdc\x42\x2e\x23\xd4\xce\xb4\x45\xbd\x32\xa5\x1f\x5f\x2e\x6f\xe1\x02\x8d\x41\x0d\x5f\x50\xa2\x66\x02\xae\xf3\x85\xe0\x4b\xb8\xe0\x4b\x94\x06\x81\x19\xc8\x48\x62\x52\x8c\x60\xe1\xe8\x48\xf1\x9c\x5c\xb9\x29\x5c\x81\x73\x95\xcb\x88\x59\xae\xe4\x00\x90\x93\xe7\xf0\x88\xda\x70\x25\xe1\xbf\xa5\xa9\x82\x70\x00\x4a\x13\x49\x8f\x59\xba\x80\x06\x95\x91\x5e\x1f\x98\xdc\x80\x60\x76\xa7\xfa\x8a\x80\xec\xee\x1d\x01\x97\xce\x4c\xaa\x32\x04\x9b\x32\x4b\xb7\x5e\x73\x21\x60\x81\x90\x1b\x8c\x73\x31\x20\xb6\x45\x6e\xe1\xdb\x74\xfe\xf5\xea\x76\x0e\x93\xcb\x3b\xf8\x36\x99\xcd\x26\x97\xf3\xbb\x8f\xb0\xe6\x36\x55\xb9\x05\x7c\x44\x4f\xc5\x57\x99\xe0\x18\xc1\x9a\x69\xcd\xa4\xdd\x80\x8a\x89\xe1\xff\x67\xb3\xd3\xaf\x93\xcb\xf9\xe4\x7f\xd3\x8b\xe9\xfc\x0e\x94\x86\xf3\xe9\xfc\xf2\xec\xe6\x06\xce\xaf\x66\x30\x81\xeb\xc9\x6c\x3e\x3d\xbd\xbd\x98\xcc\xe0\xfa\x76\x76\x7d\x75\x73\x36\x84\x1b\x24\xaf\x90\xf4\x7f\x1f\xf3\xd8\x65\x4f\x23\x44\x68\x19\x17\xa6\x8c\xc4\x9d\xca\xc1\xa4\x2a\x17\x11\xa4\xec\x11\x41\xe3\x12\xf9\x23\x46\xc0\x60\xa9\xb2\xcd\xab\x93\x4a\x5c\x4c\x28\x99\xb8\x3b\x1f\x2c\x48\x98\xc6\x20\x95\x1d\x80\x41\x84\x4f\xa9\xb5\xd9\x28\x0c\xd7\xeb\xf5\x30\x91\xf9\x50\xe9\x24\x14\x9e\xce\x84\x9f\x87\x9d\x0e\x91\x2e\x99\x10\xe7\x9a\xad\x70\xae\xd9\x12\x35\xc5\xdd\x38\x7a\x89\x6b\x77\x08\x31\x9d\x82\xd5\x6c\xc9\x65\x02\x2b\xb4\xa9\x8a\x0c\x58\x05\x1a\x33\xa5\x6d\x91\x29\xe0\x32\x56\x7a\xe5\x2a\xca\x39\xbb\xa0\xc4\x70\x69\x51\x4b\x26\x60\x85\xc6\xb0\x04\x5d\x15\x33\x22\x93\x86\x2d\xad\x2b\x99\x9f\x1d\x00\x70\xa6\x8c\x65\xcb\x1f\x23\xb8\xff\xb9\x7d\x18\x38\x61\xcc\x72\x61\x47\x10\xe7\xd2\x61\x7b\x42\x25\x03\x88\x16\x7d\xf0\x3a\xf4\xf7\xc8\x34\x08\x94\x30\x06\x9b\x72\x33\xac\x68\x86\x02\x65\x62\xd3\x0a\xc7\x63\xe8\x11\xee\x33\x9c\xd4\xd5\x4b\x0a\x77\xd3\x67\x1c\x99\xca\x7a\xfd\x06\x96\x68\x9a\xa0\x7b\x81\xf2\xdd\xc9\x83\x17\xc0\x78\x3c\x76\x8d\x1b\x73\x89\x51\xdb\x10\xfd\xbd\xa8\x0c\xf7\x0f\x0d\x85\x6d\xe7\x95\xaa\xc3\x2c\x37\x69\x8f\xfe\xdd\xb9\xeb\x95\xb7\x3e\x92\x1a\x4d\x33\x94\x4b\xfb\xd4\x0e\x65\x18\xc2\xb5\xc6\x8c\xa6\x83\xca\xa9\xab\x8b\xa4\xb9\xd4\x36\x02\xee\xd9\x60\xdc\xba\x9f\xdd\x64\x38\x72\xc9\xb4\x4f\x43\xfa\x31\x68\x1c\xc7\x5a\xad\xdc\xb1\x55\x5f\xf1\x89\x3c\x18\x92\xa8\xdf\x44\x59\x35\x2a\xff\x29\x51\x56\xb5\x30\x8f\x4c\xe4\xce\x52\xf7\xf8\xa9\x0b\x6f\x9d\x3d\x27\x1b\x5a\x75\x63\x35\x97\x49\xef\xe4\x43\x4b\x27\x61\xc6\x13\x17\x3a\x0b\x9e\x4c\xa5\x75\xfc\x09\x33\xfd\x97\x35\x6f\x0d\x46\xa3\xfd\x9a\x74\xf4\x92\x36\x97\x59\x6e\x47\x8d\xfb\x38\x51\x0b\xa6\x72\xeb\x71\x3b\x98\x17\xd5\x70\xdb\x46\x35\xb7\xca\xe1\xb8\xac\xa2\xff\x1c\x2e\x41\x9f\xb7\xaa\xda\x0e\x30\xbc\xda\x1e\x6a\xad\xf4\x2b\xec\x79\xdc\x3e\x7b\xee\x64\x67\x0f\x50\x18\x74\xc6\xe8\xfe\x7f\x97\xbe\xd2\x39\x70\x81\x06\xbc\x41\x0b\x6f\xde\xec\x39\x3e\xc2\x27\x5c\xe6\xd4\x2d\xa0\xf1\x11\xb5\xc5\xe8\x08\x7e\xfd\x2a\xcd\xfa\xf4\x50\xc7\x1f\x1d\x3f\x1d\xf5\x9b\xae\x45\x28\xd0\x62\x13\x5a\x73\xab\xb3\xbb\x82\xcd\xb5\xf4\x91\x89\xb9\x64\x82\xff\x89\x85\x27\xfd\x7a\xff\x22\x0d\xd2\x5a\xfb\xba\xa1\xdc\x9e\x83\xc5\x10\xdb\xd7\x94\x0e\x3f\x4c\xd0\xce\x37\x19\xf6\xfa\xfb\x1a\xd3\x17\x5e\x05\x3c\xd7\x6a\xd5\xeb\xef\x69\xce\x16\x6e\xae\x9e\xa1\x8a\x92\x6f\x01\xa7\x24\x7d\x86\x75\x6d\xd9\x6c\xac\x4a\xe3\x0b\x33\xbd\x7e\xad\xb7\xba\x27\x1f\xba\x07\xdb\xa1\xd2\xfa\x83\x06\x41\xaf\xdf\x2a\x9c\x66\x50\x28\x52\x7e\x62\x8c\x0f\xd8\x2e\x58\x9a\x9d\xbd\xc7\x74\xfb\xc5\x68\xce\xe1\x32\x7b\x4f\xdc\xb6\x93\x37\xf3\x49\xfe\xe7\x9e\x32\x17\x83\x62\x80\xc1\x78\x5f\x0e\xbc\x8b\x45\x26\x08\xf6\x3c\x1b\xcf\xac\x97\xcd\xd8\x22\x38\x23\xf1\x9e\xb7\xb4\x80\xff\xee\xd5\x74\xbe\x96\x0d\x57\x2f\xac\x9d\x85\x2b\x77\xda\xeb\x37\x6d\x14\x23\xe5\x00\x63\xe9\x6c\x73\x6a\xd4\xfd\x73\x30\x6a\x21\xe7\x63\xf7\x74\x76\x36\x99\x9f\x75\x69\x0a\xec\x3d\x79\xdf\xdd\xe7\x3d\xec\x06\x82\xd7\x52\xcf\x20\xdb\x17\xde\x7d\xca\xf5\xbb\x31\x9c\xfc\xeb\x17\x91\x20\x0c\xa1\x1c\x72\xb4\x09\x6b\x64\x16\x0d\xad\xc2\x54\xb2\x6a\xf1\x1d\x97\xb4\x4e\xd2\x9a\x49\x1b\xa8\x83\x42\x84\x86\x6b\x8c\x20\xe6\x28\x22\x50\xf4\x4d\x44\xcb\xf6\x77\xa3\xa4\x23\x34\xa8\x39\x31\xba\xcd\x73\xe8\xbf\xdf\x38\x91\x4a\xbe\x44\xbb\x81\x18\x99\xcd\x35\xd2\xc2\x9a\x31\x63\x60\x85\x4c\x72\x99\xc4\xb9\x10\x1b\x50\x3a\x42\x22\xf7\x13\xd7\x38\x42\xab\x68\xa5\xd5\x06\xd6\xa9\x82\x48\xc9\x6e\xb1\xc6\x66\x1a\xe9\x0b\x65\x00\xdf\x73\x63\xe9\x3b\x26\x13\x6c\x03\xdc\x0e\x3b\x41\x79\xa9\xfa\x7e\x45\x21\x80\x9f\x9d\x20\xa0\xae\x30\x8a\x5e\x0f\x37\x9b\x83\x20\xd8\xed\x49\x65\x0d\x0d\x48\x5c\xed\x47\x4e\x4c\xbf\x9c\xb8\x5a\x88\x8a\xda\x71\xc2\x6a\x03\xda\x4d\x32\x27\xaf\xb6\x9c\xb2\xbb\x4b\xa9\xdf\x60\xea\x3d\xef\x4e\xaa\xed\xc4\x9d\xb8\x5f\x4e\x5e\xad\x23\xb5\xce\x73\x07\xae\x55\x46\x8d\x06\xf2\x5e\xf2\x55\xfd\x4e\x7c\xe5\xfd\x71\x45\x51\xc1\xdd\x2f\x92\x6f\x3b\x41\x40\x59\xec\x51\x70\x7e\xe0\x86\x3e\x05\x7d\x8c\x7c\xcc\x02\x2a\x6f\x2f\xb8\xff\x81\x9b\x87\xe7\xe5\x1c\x04\x41\x50\xf4\x54\x0d\x47\xe2\x6d\xc1\xbf\xa3\x38\xb4\x18\x05\x35\x27\xf8\xf8\xf8\x23\xf0\x4f\x75\x85\x62\xee\x7e\x04\xfe\xf6\x6d\x69\xb2\x7e\x7e\xcf\x1f\xca\x39\x5b\x3d\xdd\xad\xf3\x7e\xdd\xa1\xe2\xad\xf7\x90\x4e\xb0\xed\x6c\x3b\x7f\x05\x00\x00\xff\xff\x71\x10\x40\x55\x9b\x10\x00\x00") func call_tracerJsBytes() ([]byte, error) { return bindataRead( @@ -133,6 +134,26 @@ func call_tracerJs() (*asset, error) { } info := bindataFileInfo{name: "call_tracer.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x54, 0x29, 0x1, 0x3b, 0x86, 0xea, 0xb2, 0x35, 0xbd, 0x97, 0xb1, 0x17, 0x8c, 0x17, 0x79, 0x1c, 0x4c, 0x8e, 0x7b, 0xe2, 0x5f, 0x11, 0x59, 0xa0, 0x94, 0x35, 0x43, 0xec, 0x18, 0x2a, 0xd9}} + return a, nil +} + +var _call_tracer_legacyJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\xdf\x6f\x1b\x37\xf2\x7f\x96\xfe\x8a\x89\x1f\x6a\x09\x51\x24\x39\xe9\xb7\x5f\xc0\xae\x7a\x50\x1d\x25\x35\xe0\xc6\x81\xad\x34\x08\x82\x3c\x50\xbb\xb3\x12\x6b\x8a\xdc\x92\x5c\xc9\xba\xd6\xff\xfb\x61\x86\xdc\xd5\xae\x24\x3b\xbe\x5e\x71\xe8\xbd\x69\x97\x33\xc3\xe1\xcc\x67\x7e\x71\x35\x18\xc0\xb9\xc9\x37\x56\xce\x17\x1e\x5e\x0e\x4f\xfe\x1f\xa6\x0b\x84\xb9\x79\x81\x7e\x81\x16\x8b\x25\x8c\x0b\xbf\x30\xd6\xb5\x07\x03\x98\x2e\xa4\x83\x4c\x2a\x04\xe9\x20\x17\xd6\x83\xc9\xc0\xef\xd0\x2b\x39\xb3\xc2\x6e\xfa\xed\xc1\x20\xf0\x1c\x5c\x26\x09\x99\x45\x04\x67\x32\xbf\x16\x16\x4f\x61\x63\x0a\x48\x84\x06\x8b\xa9\x74\xde\xca\x59\xe1\x11\xa4\x07\xa1\xd3\x81\xb1\xb0\x34\xa9\xcc\x36\x24\x52\x7a\x28\x74\x8a\x96\xb7\xf6\x68\x97\xae\xd4\xe3\xed\xbb\x0f\x70\x89\xce\xa1\x85\xb7\xa8\xd1\x0a\x05\xef\x8b\x99\x92\x09\x5c\xca\x04\xb5\x43\x10\x0e\x72\x7a\xe3\x16\x98\xc2\x8c\xc5\x11\xe3\x1b\x52\xe5\x26\xaa\x02\x6f\x4c\xa1\x53\xe1\xa5\xd1\x3d\x40\x49\x9a\xc3\x0a\xad\x93\x46\xc3\xab\x72\xab\x28\xb0\x07\xc6\x92\x90\x8e\xf0\x74\x00\x0b\x26\x27\xbe\x2e\x08\xbd\x01\x25\xfc\x96\xf5\x09\x06\xd9\x9e\x3b\x05\xa9\x79\x9b\x85\xc9\x11\xfc\x42\x78\x3a\xf5\x5a\x2a\x05\x33\x84\xc2\x61\x56\xa8\x1e\x49\x9b\x15\x1e\x3e\x5e\x4c\x7f\xba\xfa\x30\x85\xf1\xbb\x4f\xf0\x71\x7c\x7d\x3d\x7e\x37\xfd\x74\x06\x6b\xe9\x17\xa6\xf0\x80\x2b\x0c\xa2\xe4\x32\x57\x12\x53\x58\x0b\x6b\x85\xf6\x1b\x30\x19\x49\xf8\x79\x72\x7d\xfe\xd3\xf8\xdd\x74\xfc\xe3\xc5\xe5\xc5\xf4\x13\x18\x0b\x6f\x2e\xa6\xef\x26\x37\x37\xf0\xe6\xea\x1a\xc6\xf0\x7e\x7c\x3d\xbd\x38\xff\x70\x39\xbe\x86\xf7\x1f\xae\xdf\x5f\xdd\x4c\xfa\x70\x83\xa4\x15\x12\xff\xd7\x6d\x9e\xb1\xf7\x2c\x42\x8a\x5e\x48\xe5\x4a\x4b\x7c\x32\x05\xb8\x85\x29\x54\x0a\x0b\xb1\x42\xb0\x98\xa0\x5c\x61\x0a\x02\x12\x93\x6f\x9e\xec\x54\x92\x25\x94\xd1\x73\x3e\xf3\x83\x80\x84\x8b\x0c\xb4\xf1\x3d\x70\x88\xf0\xfd\xc2\xfb\xfc\x74\x30\x58\xaf\xd7\xfd\xb9\x2e\xfa\xc6\xce\x07\x2a\x88\x73\x83\x1f\xfa\x6d\x92\x99\x08\xa5\xa6\x56\x24\x68\xc9\x39\x02\xb2\x82\xcc\xaf\xcc\x5a\x83\xb7\x42\x3b\x91\x90\xab\xe9\x77\xc2\x60\x14\x1e\xf0\x8e\x9e\xbc\x23\xd0\x82\xc5\xdc\x58\xfa\xad\x54\x89\x33\xa9\x3d\x5a\x2d\x14\xcb\x76\xb0\x14\x29\xc2\x6c\x03\xa2\x2e\xb0\x57\x3f\x0c\xc1\x28\xb8\x1b\xa4\xce\x8c\x5d\x32\x2c\xfb\xed\xdf\xdb\xad\xa8\xa1\xf3\x22\xb9\x25\x05\x49\x7e\x52\x58\x8b\xda\x93\x29\x0b\xeb\xe4\x0a\x99\x04\x02\x4d\xb4\xe7\xe4\x97\x9f\x01\xef\x30\x29\x82\xa4\x56\x25\xe4\x14\x3e\xff\x7e\xff\xa5\xd7\x66\xd1\x29\xba\x04\x75\x8a\x29\x9f\xef\xd6\xc1\x7a\xc1\x16\x85\x35\x1e\xaf\x10\x7e\x2d\x9c\xaf\xd1\x64\xd6\x2c\x41\x68\x30\x05\x21\xbe\x6e\x1d\xa9\xbd\x61\x81\x82\x7e\x6b\xb4\xac\x51\xbf\xdd\xaa\x98\x4f\x21\x13\xca\x61\xdc\xd7\x79\xcc\xe9\x34\x52\xaf\xcc\x2d\x49\x36\x96\x20\x6c\x37\x60\xf2\xc4\xa4\x31\x18\xe8\x1c\xd5\x31\xd0\xf5\xdb\x2d\xe2\x3b\x85\xac\xd0\xbc\x6d\x47\x99\x79\x0f\xd2\x59\x17\x7e\x6f\xb7\x48\xec\xb9\xc8\x7d\x61\x91\xed\x89\xd6\x1a\xeb\x40\x2e\x97\x98\x4a\xe1\x51\x6d\xda\xad\xd6\x4a\xd8\xb0\x00\x23\x50\x66\xde\x9f\xa3\x9f\xd0\x63\xa7\x7b\xd6\x6e\xb5\x64\x06\x9d\xb0\xfa\x6c\x34\xe2\xec\x93\x49\x8d\x69\x10\xdf\xf2\x0b\xe9\xfa\x99\x28\x94\xaf\xf6\x25\xa6\x96\x45\x5f\x58\x4d\x3f\xef\x83\x16\x1f\x11\x8c\x56\x1b\x48\x28\xcb\x88\x19\x85\xa7\xdb\x38\x8f\xcb\x78\x38\xd7\x83\x4c\x38\x32\xa1\xcc\x60\x8d\x90\x5b\x7c\x91\x2c\x90\x7c\xa7\x13\x8c\x5a\xba\x8d\x63\xa7\x8e\x80\x76\xeb\x9b\xbc\xef\xcd\xbb\x62\x39\x43\xdb\xe9\xc2\x37\x30\xbc\xcb\x86\x5d\x18\x8d\xf8\x47\xa9\x7b\xe4\x89\xfa\x92\x14\x93\xc7\x83\x32\xff\x8d\xb7\x52\xcf\xc3\x59\xa3\xae\x17\x19\x08\xd0\xb8\x86\xc4\x68\x06\x35\x79\x65\x86\x52\xcf\x21\xb1\x28\x3c\xa6\x3d\x10\x69\x0a\xde\x04\xe4\x55\x38\x6b\x6e\x09\xdf\x7c\x03\x1d\xda\x6c\x04\xc7\xe7\xd7\x93\xf1\x74\x72\x0c\x7f\xfc\x01\xe1\xcd\x51\x78\xf3\xf2\xa8\x5b\xd3\x4c\xea\xab\x2c\x8b\xca\xb1\xc0\x7e\x8e\x78\xdb\x39\xe9\xf6\x57\x42\x15\x78\x95\x05\x35\x23\xed\x44\xa7\x30\x8a\x3c\xcf\x77\x79\x5e\x36\x78\x88\x69\x30\x80\xb1\x73\xb8\x9c\x29\xdc\x0f\xc8\x18\xb1\x1c\xbc\xce\x53\xc6\x22\xf4\x25\x66\x99\x2b\x24\x54\x95\xbb\x46\xf3\xb3\xc6\x2d\xbf\xc9\xf1\x14\x00\xc0\xe4\x3d\x7e\x41\xb1\xc0\x2f\xbc\xf9\x09\xef\xd8\x47\xa5\x09\x09\x55\xe3\x34\xb5\xe8\x5c\xa7\xdb\x0d\xe4\x52\xe7\x85\x3f\x6d\x90\x2f\x71\x69\xec\xa6\xef\x28\x21\x75\xf8\x68\xbd\x70\xd2\x92\x67\x2e\xdc\x85\x26\x9e\x88\xd4\xb7\xc2\x75\xb6\x4b\xe7\xc6\xf9\xd3\x72\x89\x1e\xca\x35\xb6\x05\xb1\x1d\x0f\xef\x8e\xf7\xad\x35\xec\x6e\x91\x70\xf2\x5d\x97\x58\xee\xcf\x2a\x7c\x57\x69\xa2\x9f\x17\x6e\xd1\x61\x38\x6d\x57\xb7\xa9\x60\x04\xde\x16\x78\x10\xfe\x0c\xa9\x7d\x38\x39\x54\x19\xe5\x12\x6f\x8b\x84\x61\x35\x17\x9c\x69\x38\xd2\x05\x65\x5e\x57\xcc\xd8\xe6\xde\x98\x7d\x74\x45\x70\xdd\x4c\x2e\xdf\xbc\x9e\xdc\x4c\xaf\x3f\x9c\x4f\x8f\x6b\x70\x52\x98\x79\x52\xaa\x79\x06\x85\x7a\xee\x17\xac\x3f\x89\x6b\xae\x7e\x26\x9e\x17\x27\x5f\xc2\x1b\x18\x1d\x08\xf9\xd6\xe3\x1c\xf0\xf9\x0b\xcb\xbe\xdf\x37\x5f\x93\x34\x18\xf3\xaf\x41\x92\x37\x4c\x5c\x92\x7b\x53\x12\x3c\xee\xe7\xbf\x18\x54\xe9\x8c\x28\x7e\x14\x4a\xe8\x04\x1f\xd1\x79\x1f\x6b\xf5\xa4\x79\x20\x0f\x2d\xd1\x2f\x4c\xca\x85\x21\x11\xa1\xb6\x94\x08\x4a\x8d\xc6\x7f\x3f\x1b\x8d\x2f\x2f\x6b\xb9\x88\x9f\xcf\xaf\x5e\xd7\xf3\xd3\xf1\xeb\xc9\xe5\xe4\xed\x78\x3a\xd9\xa5\xbd\x99\x8e\xa7\x17\xe7\xfc\xb6\x4c\x5d\x83\x01\xdc\xdc\xca\x9c\x2b\x0c\xe7\x6d\xb3\xcc\xb9\x55\xae\xf4\x75\x3d\xf0\x0b\x43\x4d\xa8\x8d\x05\x34\x13\x3a\x29\x0b\x9b\x2b\x01\xeb\x0d\xc1\xf5\x21\xe7\x9d\xec\x38\xaf\x82\xb0\x74\xef\x2d\xc6\x4d\xd3\x8e\x37\xa5\x5e\x5b\x83\x06\x34\x72\xf2\xe7\x04\xdb\x79\xfa\x21\xe1\x1f\x30\x84\x53\x38\x89\x59\xf4\x91\x34\xfd\x12\x9e\x93\xf8\x3f\x91\xac\x5f\x1d\xe0\xfc\x7b\xa6\xec\xbd\x40\xfb\xef\xa7\x72\x53\xf8\xab\x2c\x3b\x85\x5d\x23\x7e\xbb\x67\xc4\x8a\xfe\x12\xf5\x3e\xfd\xff\xed\xd1\x6f\xd3\x3e\xa1\xca\xe4\xf0\x6c\x0f\x22\x21\xe9\x3e\xdb\x89\x83\x68\x5c\x6e\xef\x58\x1a\x8c\x1e\x28\x34\x2f\x9b\x18\x7e\x28\x53\xfe\x47\x85\xe6\x60\x9b\x4a\xcd\x68\xb3\x11\xed\x81\x45\x6f\x25\xae\x68\xd4\x3c\x76\x2c\x92\x1a\x76\xb3\xa6\xf4\xd5\x87\x8f\x18\x24\x6a\x44\x4e\x2e\xb1\xc1\xa7\xfe\x8c\x7b\x5e\x6a\xd2\xe3\xa8\xc6\x10\x13\xdc\x87\x5b\x84\xa5\xd8\xd0\xa8\x96\x15\xfa\x76\x03\x73\xe1\x20\xdd\x68\xb1\x94\x89\x0b\xf2\xb8\xb9\xb7\x38\x17\x96\xc5\x5a\xfc\xad\x40\x47\x73\x1f\x01\x59\x24\xbe\x10\x4a\x6d\x60\x2e\x69\x78\x23\xee\xce\xcb\x57\xc3\x21\x38\x2f\x73\xd4\x69\x0f\xbe\x7b\x35\xf8\xee\x5b\xb0\x85\xc2\x6e\xbf\x5d\x2b\x61\xd5\x51\xa3\x37\x68\x21\xa2\xe7\x35\xe6\x7e\xd1\xe9\xc2\x0f\x0f\xd4\xc2\x07\x0a\xdb\x41\x5a\x78\x01\x27\x5f\xfa\xa4\xd7\xa8\x81\xdb\xe0\x49\x40\xe5\x30\x4a\xa3\x81\xf7\xea\xf5\x55\xe7\x56\x58\xa1\xc4\x0c\xbb\xa7\x3c\x00\xb3\xad\xd6\x22\x4e\x40\xe4\x14\xc8\x95\x90\x1a\x44\x92\x98\x42\x7b\x32\x7c\x39\xcc\xa8\x0d\xe5\xf7\x63\x5f\xca\xe3\x59\x51\x24\x09\x3a\x57\xa6\x7b\xf6\x1a\xa9\x23\x96\xc4\x0d\x52\x3b\x99\x62\xcd\x2b\x94\x1d\x0c\xa7\xe6\x48\x41\xa3\x74\x29\x70\x69\x1c\x6d\x32\x43\x58\x5b\x1a\xbc\x9c\xd4\x09\xdf\x3c\xa4\x48\xd6\x76\x60\x34\x08\x50\x86\xaf\x3b\x38\xc6\x41\xd8\xb9\xeb\x87\x7c\x4f\xdb\x52\xce\xd1\x66\xdd\x6f\x02\xb9\x0e\x55\x1e\x71\x76\x5a\x21\x0d\x78\x27\x9d\xe7\x8e\x9a\xb4\x94\x0e\x02\x92\xa5\x9e\xf7\x20\x37\x39\xe7\xe9\xaf\x95\xb3\x98\xac\xaf\x27\xbf\x4c\xae\xab\xc6\xe7\xe9\x4e\x2c\x67\x9e\xa3\x6a\x24\x04\x4b\xf3\x96\xc7\xf4\xe8\xc0\x10\x73\x00\x50\xa3\x07\x00\x45\xf2\xb7\xb5\xf1\x7d\xed\x38\x4a\x38\xbf\x75\xcc\x1c\xc3\x3c\x57\x57\xc0\x15\xca\xbb\x9d\xdc\xbd\x9b\x1c\x4c\x5e\x56\x08\x52\x8a\xd3\x0e\x25\xf6\xdd\x49\xa3\xb1\xb0\x1d\x38\xb6\xf8\xbc\xa8\xd9\x78\xcd\xed\x66\x20\xaa\xa5\x06\x5e\x2f\xfb\x56\x11\xaa\x01\xeb\x6e\x0a\x4f\x70\xa0\xfa\xbd\x4d\x7e\x73\xe1\x3e\x38\xf6\x7a\x4c\x7f\x33\x39\xbf\xd0\xbe\x53\x2e\x5e\x68\x78\x01\xe5\x03\x25\x75\x78\xd1\x88\xa2\x03\xd9\xb1\x95\xa2\x42\x8f\xb0\x15\x71\x06\x3b\xaf\x48\x50\x30\x07\x1b\xcd\xa2\xdf\x2f\xce\xc3\x28\x8d\x0c\xf6\xcc\xa2\xef\xe3\x6f\x85\x50\xae\x33\xac\x9a\x85\x70\x02\x6f\xb8\xbc\x8d\xf6\x3a\x49\xe2\x69\xf6\x8e\x67\x35\xb6\x68\x8d\x92\x2d\x74\x82\xe7\x26\xc5\x47\x25\x44\x11\x31\x6d\x54\xbe\x8c\xc0\x3c\xd4\x7b\xb7\xea\x04\x70\x54\x35\x04\x99\x90\xaa\xb0\x78\x74\x06\x07\xd2\x8e\x2b\x6c\x26\x12\xf6\xa5\x43\xe0\x69\xdd\x81\x33\x4b\x5c\x98\x75\x50\xe0\x50\xf2\xda\x07\x47\x85\x83\x9d\xf2\xc1\xd7\x4e\xc2\x41\xe1\xc4\x1c\x6b\xe0\xa8\x0c\x5e\x3a\xea\xe0\x15\xc2\x9f\x86\xce\xf3\xea\xf1\x09\x28\xba\xff\x6b\xe0\xb1\xe3\xe7\xbd\x3e\xa7\x24\xe2\x6e\xa7\xf6\x50\x2a\x1b\x9a\x91\xbf\x97\xe3\x9f\x1c\x61\xbb\xb4\xe1\x68\x4d\xe2\x70\xc0\x6d\x5f\xf3\x75\xf7\x57\xab\x0f\x79\xfe\xa1\x96\x89\x30\xaa\x7f\xc5\xc4\x6f\x71\xca\x5d\x0e\x3d\xe5\x16\x57\xd2\x14\x54\xc0\xf0\x7f\x69\x1c\xae\x5a\xbe\xfb\x76\xeb\x3e\xde\x0b\xb2\xdf\xea\x17\x83\xeb\x45\xbc\xd7\x0e\xdd\x52\xad\x7c\x18\xae\xad\xf1\xba\x30\x0b\x37\xce\x2d\xe6\x7f\xe4\x82\x30\x06\xba\x37\x39\xb5\x03\xb1\x3a\x29\x8b\x22\xdd\x54\x05\xb1\x17\x1a\x11\x58\x08\x9d\xc6\x61\x44\xa4\xa9\x24\x79\x0c\x42\xd2\x50\xcc\x85\xd4\xed\x83\x66\xfc\x6a\x15\x3e\x84\x8c\xbd\xde\xb6\x5e\x48\xe3\x10\x49\x13\x1f\x6b\xdc\x7e\x42\xc1\xdc\x09\xa2\xdd\xbb\xce\x78\x5d\x6a\xb4\x2b\x96\xdc\x09\x83\x58\x09\xa9\x04\x4d\x5f\xdc\x61\xe9\x14\x12\x85\x42\x87\x2f\x1c\x98\x79\xb3\x42\xeb\xda\x4f\x00\xf9\x9f\xc1\xf8\x4e\x56\x2c\x1f\xa3\x39\x9e\x1e\xb3\x4f\x8d\xd8\x70\xfc\x37\x4a\x78\x1f\xe1\x55\x33\x6f\x88\x2c\xe9\xf9\xe3\x17\x6a\xdf\x7e\x5a\x48\x71\xcf\x44\x34\x3f\xc0\xb0\xd6\x97\xff\x5d\x82\x6c\x1f\x62\x97\x55\x7f\x16\x0f\xef\x8d\xe9\x81\x42\xc1\x53\x52\xf9\x69\xaa\xec\x47\x1f\x1b\xda\xca\xe8\x0d\x1d\xdd\x5e\xf8\xf2\x9d\xde\x02\xcb\x1b\x90\xd0\xda\xcf\x10\x35\x48\x8f\x56\xd0\x3c\x44\xe8\x8a\x5f\x53\x48\x4b\xc7\xe2\xd8\x2f\x92\x82\x2e\x0a\x8e\x9f\x36\xa8\x30\x4b\x3d\xef\xb7\x5b\xe1\x7d\x2d\xde\x13\x7f\xb7\x8d\xf7\x50\x01\x99\x33\xde\x09\x54\x57\x02\x89\xbf\xe3\x6e\x91\xc7\xe6\x9d\x7b\x01\x5a\xa3\x57\x61\xa6\xde\xb9\x05\x60\xc6\x78\x13\xb0\x7b\x27\x46\x6b\xfc\xae\x01\x70\x26\x9d\x0b\x17\xc4\xec\x84\x84\xbf\xdb\x8f\x88\x92\x81\x82\xe1\xf4\x30\x03\x2d\x1d\x60\xda\xb9\x99\x20\x62\x7e\x15\x56\x43\x3d\x3f\xad\xaf\x86\x57\xf1\xa0\x72\x59\xb3\x8d\x5c\xb2\x6d\xee\xcf\x0e\x27\xb9\x61\x89\xc7\xc3\xc9\x8c\x6c\x5e\x01\xf6\x01\xd6\xfa\xac\xb1\x4f\xf2\x58\xaa\x64\xe9\x65\x66\x7b\x80\x95\xa5\xd7\x5a\x0e\x7f\xf7\x74\x91\x15\x71\x5d\xc5\x06\x4d\x43\x08\xdf\x36\xee\x2d\x1f\x9a\xb4\x68\x50\x89\x84\x65\x73\x35\x1a\x1d\x0d\xef\xaa\x0f\x23\x31\x57\x35\x68\x4a\x25\x42\x64\x84\xf3\x72\x54\xc8\x7f\x62\xdc\xb6\x1e\x83\xe5\x12\x58\x0c\x1f\x70\xb8\x9b\xa5\x10\x34\x33\x6e\x20\x0a\x47\xa3\xe8\x36\xb6\x52\x74\xd2\x62\x0a\x99\x44\x95\x82\x49\xd1\xf2\xa0\xfb\xab\x33\x3a\x7c\xaa\x43\x2b\x49\x62\xf8\x24\x19\xfe\x1d\xc0\x1f\x4a\xb5\x4c\xd0\x6f\x20\x43\xc1\xdf\xdc\xbc\x81\x5c\x38\x07\x4b\x14\x34\xda\x66\x85\x52\x1b\x30\x36\x45\x12\x5e\xcd\x7a\x14\xd6\x06\x0a\x87\xd6\xc1\x7a\x61\x62\xa9\xe5\x16\x2f\xa7\x6e\x55\xfa\x5e\xbc\xce\x91\x2e\x57\x62\x03\xd2\x53\x59\x8f\x87\xaa\x47\x7a\xf5\xa1\x8b\xbf\x96\x19\x32\xf0\x7e\x98\x97\x53\x61\x33\xce\xf9\x35\x3d\x35\x23\x3c\x0e\x45\xcd\xd8\xde\x5e\x74\x35\x03\xb9\x2c\x3d\xcd\x68\xad\x17\xb2\x66\x48\xf2\x0a\x3f\x35\x83\xb1\xd6\x6a\xf3\x02\x23\xa8\x62\xe0\xa7\x9d\xf0\x64\x2d\x63\x7c\x86\xcf\xba\x15\x39\x3f\xf5\x22\x60\xc8\x8b\x1d\x32\xce\x2d\x6e\x28\x9b\x07\x1b\xd5\x4a\x53\x78\xf1\xf9\x16\x37\x5f\x0e\x57\xa2\x08\xc7\x1a\x5d\x55\x7a\xca\xb0\x08\x6b\x8f\x24\x83\x4a\x0b\x39\x1a\x9e\x81\xfc\xbe\xce\x50\x56\x4f\x90\xcf\x9f\x97\x7b\xd6\xd7\x3f\xcb\x2f\x65\x84\x57\x88\xdf\x59\xef\x36\x34\x8a\x31\x12\x68\x28\x28\xda\xf7\xed\x7f\x05\x00\x00\xff\xff\xfb\x65\x93\x4f\xfc\x22\x00\x00") + +func call_tracer_legacyJsBytes() ([]byte, error) { + return bindataRead( + _call_tracer_legacyJs, + "call_tracer_legacy.js", + ) +} + +func call_tracer_legacyJs() (*asset, error) { + bytes, err := call_tracer_legacyJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "call_tracer_legacy.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x79, 0xb6, 0xbc, 0xd2, 0xc, 0x25, 0xb1, 0x22, 0x56, 0xef, 0x77, 0xb9, 0x5e, 0x2e, 0xf4, 0xda, 0xb2, 0x2f, 0x53, 0xa4, 0xff, 0xc8, 0xac, 0xbb, 0x75, 0x22, 0x46, 0x59, 0xe3, 0x1d, 0x7d}} return a, nil } @@ -348,15 +369,16 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "4byte_tracer.js": _4byte_tracerJs, - "bigram_tracer.js": bigram_tracerJs, - "call_tracer.js": call_tracerJs, - "evmdis_tracer.js": evmdis_tracerJs, - "noop_tracer.js": noop_tracerJs, - "opcount_tracer.js": opcount_tracerJs, - "prestate_tracer.js": prestate_tracerJs, - "trigram_tracer.js": trigram_tracerJs, - "unigram_tracer.js": unigram_tracerJs, + "4byte_tracer.js": _4byte_tracerJs, + "bigram_tracer.js": bigram_tracerJs, + "call_tracer.js": call_tracerJs, + "call_tracer_legacy.js": call_tracer_legacyJs, + "evmdis_tracer.js": evmdis_tracerJs, + "noop_tracer.js": noop_tracerJs, + "opcount_tracer.js": opcount_tracerJs, + "prestate_tracer.js": prestate_tracerJs, + "trigram_tracer.js": trigram_tracerJs, + "unigram_tracer.js": unigram_tracerJs, } // AssetDebug is true if the assets were built with the debug flag enabled. @@ -403,15 +425,16 @@ type bintree struct { } var _bintree = &bintree{nil, map[string]*bintree{ - "4byte_tracer.js": {_4byte_tracerJs, map[string]*bintree{}}, - "bigram_tracer.js": {bigram_tracerJs, map[string]*bintree{}}, - "call_tracer.js": {call_tracerJs, map[string]*bintree{}}, - "evmdis_tracer.js": {evmdis_tracerJs, map[string]*bintree{}}, - "noop_tracer.js": {noop_tracerJs, map[string]*bintree{}}, - "opcount_tracer.js": {opcount_tracerJs, map[string]*bintree{}}, - "prestate_tracer.js": {prestate_tracerJs, map[string]*bintree{}}, - "trigram_tracer.js": {trigram_tracerJs, map[string]*bintree{}}, - "unigram_tracer.js": {unigram_tracerJs, map[string]*bintree{}}, + "4byte_tracer.js": {_4byte_tracerJs, map[string]*bintree{}}, + "bigram_tracer.js": {bigram_tracerJs, map[string]*bintree{}}, + "call_tracer.js": {call_tracerJs, map[string]*bintree{}}, + "call_tracer_legacy.js": {call_tracer_legacyJs, map[string]*bintree{}}, + "evmdis_tracer.js": {evmdis_tracerJs, map[string]*bintree{}}, + "noop_tracer.js": {noop_tracerJs, map[string]*bintree{}}, + "opcount_tracer.js": {opcount_tracerJs, map[string]*bintree{}}, + "prestate_tracer.js": {prestate_tracerJs, map[string]*bintree{}}, + "trigram_tracer.js": {trigram_tracerJs, map[string]*bintree{}}, + "unigram_tracer.js": {unigram_tracerJs, map[string]*bintree{}}, }} // RestoreAsset restores an asset under the given directory. diff --git a/eth/tracers/internal/tracers/call_tracer.js b/eth/tracers/internal/tracers/call_tracer.js index 3ca7377738b7..98cfa0e6d455 100644 --- a/eth/tracers/internal/tracers/call_tracer.js +++ b/eth/tracers/internal/tracers/call_tracer.js @@ -1,4 +1,4 @@ -// Copyright 2017 The go-ethereum Authors +// Copyright 2021 The go-ethereum Authors // This file is part of the go-ethereum library. // // The go-ethereum library is free software: you can redistribute it and/or modify @@ -14,212 +14,81 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . -// callTracer is a full blown transaction tracer that extracts and reports all -// the internal calls made by a transaction, along with any useful information. -{ - // callstack is the current recursive call stack of the EVM execution. - callstack: [{}], - - // descended tracks whether we've just descended from an outer transaction into - // an inner call. - descended: false, - - // step is invoked for every opcode that the VM executes. - step: function(log, db) { - // Capture any errors immediately - var error = log.getError(); - if (error !== undefined) { - this.fault(log, db); - return; - } - // We only care about system opcodes, faster if we pre-check once - var syscall = (log.op.toNumber() & 0xf0) == 0xf0; - if (syscall) { - var op = log.op.toString(); - } - // If a new contract is being created, add to the call stack - if (syscall && (op == 'CREATE' || op == "CREATE2")) { - var inOff = log.stack.peek(1).valueOf(); - var inEnd = inOff + log.stack.peek(2).valueOf(); - - // Assemble the internal call report and store for completion - var call = { - type: op, - from: toHex(log.contract.getAddress()), - input: toHex(log.memory.slice(inOff, inEnd)), - gasIn: log.getGas(), - gasCost: log.getCost(), - value: '0x' + log.stack.peek(0).toString(16) - }; - this.callstack.push(call); - this.descended = true - return; - } - // If a contract is being self destructed, gather that as a subcall too - if (syscall && op == 'SELFDESTRUCT') { - var left = this.callstack.length; - if (this.callstack[left-1].calls === undefined) { - this.callstack[left-1].calls = []; - } - this.callstack[left-1].calls.push({ - type: op, - from: toHex(log.contract.getAddress()), - to: toHex(toAddress(log.stack.peek(0).toString(16))), - gasIn: log.getGas(), - gasCost: log.getCost(), - value: '0x' + db.getBalance(log.contract.getAddress()).toString(16) - }); - return - } - // If a new method invocation is being done, add to the call stack - if (syscall && (op == 'CALL' || op == 'CALLCODE' || op == 'DELEGATECALL' || op == 'STATICCALL')) { - // Skip any pre-compile invocations, those are just fancy opcodes - var to = toAddress(log.stack.peek(1).toString(16)); - if (isPrecompiled(to)) { - return - } - var off = (op == 'DELEGATECALL' || op == 'STATICCALL' ? 0 : 1); - - var inOff = log.stack.peek(2 + off).valueOf(); - var inEnd = inOff + log.stack.peek(3 + off).valueOf(); - - // Assemble the internal call report and store for completion - var call = { - type: op, - from: toHex(log.contract.getAddress()), - to: toHex(to), - input: toHex(log.memory.slice(inOff, inEnd)), - gasIn: log.getGas(), - gasCost: log.getCost(), - outOff: log.stack.peek(4 + off).valueOf(), - outLen: log.stack.peek(5 + off).valueOf() - }; - if (op != 'DELEGATECALL' && op != 'STATICCALL') { - call.value = '0x' + log.stack.peek(2).toString(16); - } - this.callstack.push(call); - this.descended = true - return; - } - // If we've just descended into an inner call, retrieve it's true allowance. We - // need to extract if from within the call as there may be funky gas dynamics - // with regard to requested and actually given gas (2300 stipend, 63/64 rule). - if (this.descended) { - if (log.getDepth() >= this.callstack.length) { - this.callstack[this.callstack.length - 1].gas = log.getGas(); - } else { - // TODO(karalabe): The call was made to a plain account. We currently don't - // have access to the true gas amount inside the call and so any amount will - // mostly be wrong since it depends on a lot of input args. Skip gas for now. - } - this.descended = false; - } - // If an existing call is returning, pop off the call stack - if (syscall && op == 'REVERT') { - this.callstack[this.callstack.length - 1].error = "execution reverted"; - return; - } - if (log.getDepth() == this.callstack.length - 1) { - // Pop off the last call and get the execution results - var call = this.callstack.pop(); - if (call.type == 'CREATE' || call.type == "CREATE2") { - // If the call was a CREATE, retrieve the contract address and output code - call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost - log.getGas()).toString(16); - delete call.gasIn; delete call.gasCost; - - var ret = log.stack.peek(0); - if (!ret.equals(0)) { - call.to = toHex(toAddress(ret.toString(16))); - call.output = toHex(db.getCode(toAddress(ret.toString(16)))); - } else if (call.error === undefined) { - call.error = "internal failure"; // TODO(karalabe): surface these faults somehow - } - } else { - // If the call was a contract call, retrieve the gas usage and output - if (call.gas !== undefined) { - call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost + call.gas - log.getGas()).toString(16); - } - var ret = log.stack.peek(0); - if (!ret.equals(0)) { - call.output = toHex(log.memory.slice(call.outOff, call.outOff + call.outLen)); - } else if (call.error === undefined) { - call.error = "internal failure"; // TODO(karalabe): surface these faults somehow - } - delete call.gasIn; delete call.gasCost; - delete call.outOff; delete call.outLen; - } - if (call.gas !== undefined) { - call.gas = '0x' + bigInt(call.gas).toString(16); - } - // Inject the call into the previous one - var left = this.callstack.length; - if (this.callstack[left-1].calls === undefined) { - this.callstack[left-1].calls = []; - } - this.callstack[left-1].calls.push(call); - } - }, - - // fault is invoked when the actual execution of an opcode fails. - fault: function(log, db) { - // If the topmost call already reverted, don't handle the additional fault again - if (this.callstack[this.callstack.length - 1].error !== undefined) { - return; - } - // Pop off the just failed call - var call = this.callstack.pop(); - call.error = log.getError(); - - // Consume all available gas and clean any leftovers - if (call.gas !== undefined) { - call.gas = '0x' + bigInt(call.gas).toString(16); - call.gasUsed = call.gas - } - delete call.gasIn; delete call.gasCost; - delete call.outOff; delete call.outLen; - - // Flatten the failed call into its parent - var left = this.callstack.length; - if (left > 0) { - if (this.callstack[left-1].calls === undefined) { - this.callstack[left-1].calls = []; - } - this.callstack[left-1].calls.push(call); - return; - } - // Last call failed too, leave it in the stack - this.callstack.push(call); - }, - - // result is invoked when all the opcodes have been iterated over and returns - // the final result of the tracing. - result: function(ctx, db) { - var result = { - type: ctx.type, - from: toHex(ctx.from), - to: toHex(ctx.to), - value: '0x' + ctx.value.toString(16), - gas: '0x' + bigInt(ctx.gas).toString(16), - gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), - input: toHex(ctx.input), - output: toHex(ctx.output), - time: ctx.time, - }; - if (this.callstack[0].calls !== undefined) { - result.calls = this.callstack[0].calls; - } - if (this.callstack[0].error !== undefined) { - result.error = this.callstack[0].error; - } else if (ctx.error !== undefined) { - result.error = ctx.error; - } - if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { - delete result.output; - } - return this.finalize(result); - }, +// callFrameTracer uses the new call frame tracing methods to report useful information +// about internal messages of a transaction. +{ + callstack: [{}], + fault: function(log, db) { + var len = this.callstack.length + if (len > 1) { + var call = this.callstack.pop() + if (this.callstack[len-1].calls === undefined) { + this.callstack[len-1].calls = [] + } + this.callstack[len-1].calls.push(call) + } + }, + result: function(ctx, db) { + // Prepare outer message info + var result = { + type: ctx.type, + from: toHex(ctx.from), + to: toHex(ctx.to), + value: '0x' + ctx.value.toString(16), + gas: '0x' + bigInt(ctx.gas).toString(16), + gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), + input: toHex(ctx.input), + output: toHex(ctx.output), + } + if (this.callstack[0].calls !== undefined) { + result.calls = this.callstack[0].calls + } + if (this.callstack[0].error !== undefined) { + result.error = this.callstack[0].error + } else if (ctx.error !== undefined) { + result.error = ctx.error + } + if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { + delete result.output + } + return this.finalize(result) + }, + enter: function(frame) { + var call = { + type: frame.getType(), + from: toHex(frame.getFrom()), + to: toHex(frame.getTo()), + input: toHex(frame.getInput()), + gas: '0x' + bigInt(frame.getGas()).toString('16'), + } + if (frame.getValue() !== undefined){ + call.value='0x' + bigInt(frame.getValue()).toString(16) + } + this.callstack.push(call) + }, + exit: function(frameResult) { + var len = this.callstack.length + if (len > 1) { + var call = this.callstack.pop() + call.gasUsed = '0x' + bigInt(frameResult.getGasUsed()).toString('16') + var error = frameResult.getError() + if (error === undefined) { + call.output = toHex(frameResult.getOutput()) + } else { + call.error = error + if (call.type === 'CREATE' || call.type === 'CREATE2') { + delete call.to + } + } + len -= 1 + if (this.callstack[len-1].calls === undefined) { + this.callstack[len-1].calls = [] + } + this.callstack[len-1].calls.push(call) + } + }, // finalize recreates a call object using the final desired field oder for json // serialization. This is a nicety feature to pass meaningfully ordered results // to users who don't interpret it, just display it. @@ -239,14 +108,14 @@ } for (var key in sorted) { if (sorted[key] === undefined) { - delete sorted[key]; + delete sorted[key] } } if (sorted.calls !== undefined) { for (var i=0; i. + +// callTracer is a full blown transaction tracer that extracts and reports all +// the internal calls made by a transaction, along with any useful information. +{ + // callstack is the current recursive call stack of the EVM execution. + callstack: [{}], + + // descended tracks whether we've just descended from an outer transaction into + // an inner call. + descended: false, + + // step is invoked for every opcode that the VM executes. + step: function(log, db) { + // Capture any errors immediately + var error = log.getError(); + if (error !== undefined) { + this.fault(log, db); + return; + } + // We only care about system opcodes, faster if we pre-check once + var syscall = (log.op.toNumber() & 0xf0) == 0xf0; + if (syscall) { + var op = log.op.toString(); + } + // If a new contract is being created, add to the call stack + if (syscall && (op == 'CREATE' || op == "CREATE2")) { + var inOff = log.stack.peek(1).valueOf(); + var inEnd = inOff + log.stack.peek(2).valueOf(); + + // Assemble the internal call report and store for completion + var call = { + type: op, + from: toHex(log.contract.getAddress()), + input: toHex(log.memory.slice(inOff, inEnd)), + gasIn: log.getGas(), + gasCost: log.getCost(), + value: '0x' + log.stack.peek(0).toString(16) + }; + this.callstack.push(call); + this.descended = true + return; + } + // If a contract is being self destructed, gather that as a subcall too + if (syscall && op == 'SELFDESTRUCT') { + var left = this.callstack.length; + if (this.callstack[left-1].calls === undefined) { + this.callstack[left-1].calls = []; + } + this.callstack[left-1].calls.push({ + type: op, + from: toHex(log.contract.getAddress()), + to: toHex(toAddress(log.stack.peek(0).toString(16))), + gasIn: log.getGas(), + gasCost: log.getCost(), + value: '0x' + db.getBalance(log.contract.getAddress()).toString(16) + }); + return + } + // If a new method invocation is being done, add to the call stack + if (syscall && (op == 'CALL' || op == 'CALLCODE' || op == 'DELEGATECALL' || op == 'STATICCALL')) { + // Skip any pre-compile invocations, those are just fancy opcodes + var to = toAddress(log.stack.peek(1).toString(16)); + if (isPrecompiled(to)) { + return + } + var off = (op == 'DELEGATECALL' || op == 'STATICCALL' ? 0 : 1); + + var inOff = log.stack.peek(2 + off).valueOf(); + var inEnd = inOff + log.stack.peek(3 + off).valueOf(); + + // Assemble the internal call report and store for completion + var call = { + type: op, + from: toHex(log.contract.getAddress()), + to: toHex(to), + input: toHex(log.memory.slice(inOff, inEnd)), + gasIn: log.getGas(), + gasCost: log.getCost(), + outOff: log.stack.peek(4 + off).valueOf(), + outLen: log.stack.peek(5 + off).valueOf() + }; + if (op != 'DELEGATECALL' && op != 'STATICCALL') { + call.value = '0x' + log.stack.peek(2).toString(16); + } + this.callstack.push(call); + this.descended = true + return; + } + // If we've just descended into an inner call, retrieve it's true allowance. We + // need to extract if from within the call as there may be funky gas dynamics + // with regard to requested and actually given gas (2300 stipend, 63/64 rule). + if (this.descended) { + if (log.getDepth() >= this.callstack.length) { + this.callstack[this.callstack.length - 1].gas = log.getGas(); + } else { + // TODO(karalabe): The call was made to a plain account. We currently don't + // have access to the true gas amount inside the call and so any amount will + // mostly be wrong since it depends on a lot of input args. Skip gas for now. + } + this.descended = false; + } + // If an existing call is returning, pop off the call stack + if (syscall && op == 'REVERT') { + this.callstack[this.callstack.length - 1].error = "execution reverted"; + return; + } + if (log.getDepth() == this.callstack.length - 1) { + // Pop off the last call and get the execution results + var call = this.callstack.pop(); + + if (call.type == 'CREATE' || call.type == "CREATE2") { + // If the call was a CREATE, retrieve the contract address and output code + call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost - log.getGas()).toString(16); + delete call.gasIn; delete call.gasCost; + + var ret = log.stack.peek(0); + if (!ret.equals(0)) { + call.to = toHex(toAddress(ret.toString(16))); + call.output = toHex(db.getCode(toAddress(ret.toString(16)))); + } else if (call.error === undefined) { + call.error = "internal failure"; // TODO(karalabe): surface these faults somehow + } + } else { + // If the call was a contract call, retrieve the gas usage and output + if (call.gas !== undefined) { + call.gasUsed = '0x' + bigInt(call.gasIn - call.gasCost + call.gas - log.getGas()).toString(16); + } + var ret = log.stack.peek(0); + if (!ret.equals(0)) { + call.output = toHex(log.memory.slice(call.outOff, call.outOff + call.outLen)); + } else if (call.error === undefined) { + call.error = "internal failure"; // TODO(karalabe): surface these faults somehow + } + delete call.gasIn; delete call.gasCost; + delete call.outOff; delete call.outLen; + } + if (call.gas !== undefined) { + call.gas = '0x' + bigInt(call.gas).toString(16); + } + // Inject the call into the previous one + var left = this.callstack.length; + if (this.callstack[left-1].calls === undefined) { + this.callstack[left-1].calls = []; + } + this.callstack[left-1].calls.push(call); + } + }, + + // fault is invoked when the actual execution of an opcode fails. + fault: function(log, db) { + // If the topmost call already reverted, don't handle the additional fault again + if (this.callstack[this.callstack.length - 1].error !== undefined) { + return; + } + // Pop off the just failed call + var call = this.callstack.pop(); + call.error = log.getError(); + + // Consume all available gas and clean any leftovers + if (call.gas !== undefined) { + call.gas = '0x' + bigInt(call.gas).toString(16); + call.gasUsed = call.gas + } + delete call.gasIn; delete call.gasCost; + delete call.outOff; delete call.outLen; + + // Flatten the failed call into its parent + var left = this.callstack.length; + if (left > 0) { + if (this.callstack[left-1].calls === undefined) { + this.callstack[left-1].calls = []; + } + this.callstack[left-1].calls.push(call); + return; + } + // Last call failed too, leave it in the stack + this.callstack.push(call); + }, + + // result is invoked when all the opcodes have been iterated over and returns + // the final result of the tracing. + result: function(ctx, db) { + var result = { + type: ctx.type, + from: toHex(ctx.from), + to: toHex(ctx.to), + value: '0x' + ctx.value.toString(16), + gas: '0x' + bigInt(ctx.gas).toString(16), + gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), + input: toHex(ctx.input), + output: toHex(ctx.output), + time: ctx.time, + }; + if (this.callstack[0].calls !== undefined) { + result.calls = this.callstack[0].calls; + } + if (this.callstack[0].error !== undefined) { + result.error = this.callstack[0].error; + } else if (ctx.error !== undefined) { + result.error = ctx.error; + } + if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { + delete result.output; + } + return this.finalize(result); + }, + + // finalize recreates a call object using the final desired field oder for json + // serialization. This is a nicety feature to pass meaningfully ordered results + // to users who don't interpret it, just display it. + finalize: function(call) { + var sorted = { + type: call.type, + from: call.from, + to: call.to, + value: call.value, + gas: call.gas, + gasUsed: call.gasUsed, + input: call.input, + output: call.output, + error: call.error, + time: call.time, + calls: call.calls, + } + for (var key in sorted) { + if (sorted[key] === undefined) { + delete sorted[key]; + } + } + if (sorted.calls !== undefined) { + for (var i=0; i 0 { + jst.err = jst.reason + return + } - case string: - jst.vm.PushString(val) + *jst.frame.typ = typ.String() + *jst.frame.from = from + *jst.frame.to = to + jst.frame.input = common.CopyBytes(input) + *jst.frame.gas = uint(gas) + jst.frame.value = nil + if value != nil { + jst.frame.value = new(big.Int).SetBytes(value.Bytes()) + } - case []byte: - ptr := jst.vm.PushFixedBuffer(len(val)) - copy(makeSlice(ptr, uint(len(val))), val) + if _, err := jst.call(true, "enter", "frame"); err != nil { + jst.err = wrapError("enter", err) + } +} - case common.Address: - ptr := jst.vm.PushFixedBuffer(20) - copy(makeSlice(ptr, 20), val[:]) +// CaptureExit is called when EVM exits a scope, even if the scope didn't +// execute any code. +func (jst *Tracer) CaptureExit(output []byte, gasUsed uint64, err error) { + if !jst.traceCallFrames { + return + } + if jst.err != nil { + return + } + // If tracing was interrupted, set the error and stop + if atomic.LoadUint32(&jst.interrupt) > 0 { + jst.err = jst.reason + return + } - case *big.Int: - pushBigInt(val, jst.vm) + jst.frameResult.output = common.CopyBytes(output) + *jst.frameResult.gasUsed = uint(gasUsed) + jst.frameResult.errorValue = nil + if err != nil { + jst.frameResult.errorValue = new(string) + *jst.frameResult.errorValue = err.Error() + } - case int: - jst.vm.PushInt(val) + if _, err := jst.call(true, "exit", "frameResult"); err != nil { + jst.err = wrapError("exit", err) + } +} - case common.Hash: - ptr := jst.vm.PushFixedBuffer(32) - copy(makeSlice(ptr, 32), val[:]) +// GetResult calls the Javascript 'result' function and returns its value, or any accumulated error +func (jst *Tracer) GetResult() (json.RawMessage, error) { + // Transform the context into a JavaScript object and inject into the state + obj := jst.vm.PushObject() - default: - panic(fmt.Sprintf("unsupported type: %T", val)) - } - jst.vm.PutPropString(obj, key) + for key, val := range jst.ctx { + jst.addToObj(obj, key, val) } jst.vm.PutPropString(jst.stateObject, "ctx") @@ -698,3 +837,35 @@ func (jst *Tracer) GetResult() (json.RawMessage, error) { return result, jst.err } + +// addToObj pushes a field to a JS object. +func (jst *Tracer) addToObj(obj int, key string, val interface{}) { + pushValue(jst.vm, val) + jst.vm.PutPropString(obj, key) +} + +func pushValue(ctx *duktape.Context, val interface{}) { + switch val := val.(type) { + case uint64: + ctx.PushUint(uint(val)) + case string: + ctx.PushString(val) + case []byte: + ptr := ctx.PushFixedBuffer(len(val)) + copy(makeSlice(ptr, uint(len(val))), val) + case common.Address: + ptr := ctx.PushFixedBuffer(20) + copy(makeSlice(ptr, 20), val[:]) + case *big.Int: + pushBigInt(val, ctx) + case int: + ctx.PushInt(val) + case uint: + ctx.PushUint(val) + case common.Hash: + ptr := ctx.PushFixedBuffer(32) + copy(makeSlice(ptr, 32), val[:]) + default: + panic(fmt.Sprintf("unsupported type: %T", val)) + } +} diff --git a/eth/tracers/tracer_test.go b/eth/tracers/tracer_test.go index d2d3e57c4a57..3decca225d7a 100644 --- a/eth/tracers/tracer_test.go +++ b/eth/tracers/tracer_test.go @@ -236,3 +236,35 @@ func TestIsPrecompile(t *testing.T) { t.Errorf("Tracer should consider blake2f as precompile in istanbul") } } + +func TestEnterExit(t *testing.T) { + // test that either both or none of enter() and exit() are defined + if _, err := New("{step: function() {}, fault: function() {}, result: function() { return null; }, enter: function() {}}", new(Context)); err == nil { + t.Fatal("tracer creation should've failed without exit() definition") + } + if _, err := New("{step: function() {}, fault: function() {}, result: function() { return null; }, enter: function() {}, exit: function() {}}", new(Context)); err != nil { + t.Fatal(err) + } + + // test that the enter and exit method are correctly invoked and the values passed + tracer, err := New("{enters: 0, exits: 0, enterGas: 0, gasUsed: 0, step: function() {}, fault: function() {}, result: function() { return {enters: this.enters, exits: this.exits, enterGas: this.enterGas, gasUsed: this.gasUsed} }, enter: function(frame) { this.enters++; this.enterGas = frame.getGas(); }, exit: function(res) { this.exits++; this.gasUsed = res.getGasUsed(); }}", new(Context)) + if err != nil { + t.Fatal(err) + } + + scope := &vm.ScopeContext{ + Contract: vm.NewContract(&account{}, &account{}, big.NewInt(0), 0), + } + + tracer.CaptureEnter(vm.CALL, scope.Contract.Caller(), scope.Contract.Address(), []byte{}, 1000, new(big.Int)) + tracer.CaptureExit([]byte{}, 400, nil) + + have, err := tracer.GetResult() + if err != nil { + t.Fatal(err) + } + want := `{"enters":1,"exits":1,"enterGas":1000,"gasUsed":400}` + if string(have) != want { + t.Errorf("Number of invocations of enter() and exit() is wrong. Have %s, want %s\n", have, want) + } +} diff --git a/eth/tracers/tracers_test.go b/eth/tracers/tracers_test.go index 8fbbf154b431..ae0eb16a3852 100644 --- a/eth/tracers/tracers_test.go +++ b/eth/tracers/tracers_test.go @@ -203,21 +203,25 @@ func TestPrestateTracerCreate2(t *testing.T) { // Iterates over all the input-output datasets in the tracer test harness and // runs the JavaScript tracers against them. -func TestCallTracer(t *testing.T) { - files, err := ioutil.ReadDir("testdata") +func TestCallTracerLegacy(t *testing.T) { + testCallTracer("callTracerLegacy", "call_tracer_legacy", t) +} + +func testCallTracer(tracer string, dirPath string, t *testing.T) { + files, err := ioutil.ReadDir(filepath.Join("testdata", dirPath)) if err != nil { t.Fatalf("failed to retrieve tracer test suite: %v", err) } for _, file := range files { - if !strings.HasPrefix(file.Name(), "call_tracer_") { + if !strings.HasSuffix(file.Name(), ".json") { continue } file := file // capture range variable - t.Run(camel(strings.TrimSuffix(strings.TrimPrefix(file.Name(), "call_tracer_"), ".json")), func(t *testing.T) { + t.Run(camel(strings.TrimSuffix(file.Name(), ".json")), func(t *testing.T) { t.Parallel() // Call tracer test found, read if from disk - blob, err := ioutil.ReadFile(filepath.Join("testdata", file.Name())) + blob, err := ioutil.ReadFile(filepath.Join("testdata", dirPath, file.Name())) if err != nil { t.Fatalf("failed to read testcase: %v", err) } @@ -248,7 +252,7 @@ func TestCallTracer(t *testing.T) { _, statedb := tests.MakePreState(rawdb.NewMemoryDatabase(), test.Genesis.Alloc, false) // Create the tracer, the EVM environment and run it - tracer, err := New("callTracer", new(Context)) + tracer, err := New(tracer, new(Context)) if err != nil { t.Fatalf("failed to create call tracer: %v", err) } @@ -283,6 +287,10 @@ func TestCallTracer(t *testing.T) { } } +func TestCallTracer(t *testing.T) { + testCallTracer("callTracer", "call_tracer", t) +} + // jsonEqual is similar to reflect.DeepEqual, but does a 'bounce' via json prior to // comparison func jsonEqual(x, y interface{}) bool { @@ -378,3 +386,73 @@ func BenchmarkTransactionTrace(b *testing.B) { tracer.Reset() } } + +func BenchmarkTracers(b *testing.B) { + files, err := ioutil.ReadDir(filepath.Join("testdata", "call_tracer")) + if err != nil { + b.Fatalf("failed to retrieve tracer test suite: %v", err) + } + for _, file := range files { + if !strings.HasSuffix(file.Name(), ".json") { + continue + } + file := file // capture range variable + b.Run(camel(strings.TrimSuffix(file.Name(), ".json")), func(b *testing.B) { + blob, err := ioutil.ReadFile(filepath.Join("testdata", "call_tracer", file.Name())) + if err != nil { + b.Fatalf("failed to read testcase: %v", err) + } + test := new(callTracerTest) + if err := json.Unmarshal(blob, test); err != nil { + b.Fatalf("failed to parse testcase: %v", err) + } + benchTracer("callTracer", test, b) + }) + } +} + +func benchTracer(tracerName string, test *callTracerTest, b *testing.B) { + // Configure a blockchain with the given prestate + tx := new(types.Transaction) + if err := rlp.DecodeBytes(common.FromHex(test.Input), tx); err != nil { + b.Fatalf("failed to parse testcase input: %v", err) + } + signer := types.MakeSigner(test.Genesis.Config, new(big.Int).SetUint64(uint64(test.Context.Number))) + msg, err := tx.AsMessage(signer, nil) + if err != nil { + b.Fatalf("failed to prepare transaction for tracing: %v", err) + } + origin, _ := signer.Sender(tx) + txContext := vm.TxContext{ + Origin: origin, + GasPrice: tx.GasPrice(), + } + context := vm.BlockContext{ + CanTransfer: core.CanTransfer, + Transfer: core.Transfer, + Coinbase: test.Context.Miner, + BlockNumber: new(big.Int).SetUint64(uint64(test.Context.Number)), + Time: new(big.Int).SetUint64(uint64(test.Context.Time)), + Difficulty: (*big.Int)(test.Context.Difficulty), + GasLimit: uint64(test.Context.GasLimit), + } + _, statedb := tests.MakePreState(rawdb.NewMemoryDatabase(), test.Genesis.Alloc, false) + + // Create the tracer, the EVM environment and run it + tracer, err := New(tracerName, new(Context)) + if err != nil { + b.Fatalf("failed to create call tracer: %v", err) + } + evm := vm.NewEVM(context, txContext, statedb, test.Genesis.Config, vm.Config{Debug: true, Tracer: tracer}) + + b.ReportAllocs() + b.ResetTimer() + for i := 0; i < b.N; i++ { + snap := statedb.Snapshot() + st := core.NewStateTransition(evm, msg, new(core.GasPool).AddGas(tx.Gas())) + if _, err = st.TransitionDb(); err != nil { + b.Fatalf("failed to execute transaction: %v", err) + } + statedb.RevertToSnapshot(snap) + } +} From e2be1ac79188a7384ae3f26cb42f11e536340efd Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 20 Feb 2022 00:37:54 +1000 Subject: [PATCH 073/147] UdpPortListeners() err is not fatal --- p2p/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/server.go b/p2p/server.go index 6a5a7b42e71b..bc77ea146dfe 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -556,7 +556,7 @@ func (srv *Server) setupDiscovery() error { listeners, err := netutil.UdpPortListeners(addr.Port) if err != nil { - return err + srv.log.Warn("UDP port netstat", "addr", addr, "err", err) } if len(listeners) > 0 { err = errAlreadyListened From 8dec1a21189cb170132ea2c74fada8e65aee309a Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 20 Feb 2022 00:42:16 +1000 Subject: [PATCH 074/147] UdpPortListeners() skips disabled sockets --- p2p/netutil/netstat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/netutil/netstat.go b/p2p/netutil/netstat.go index c0680b721dd2..b4412c55f53a 100644 --- a/p2p/netutil/netstat.go +++ b/p2p/netutil/netstat.go @@ -18,7 +18,7 @@ func UdpPortListeners(port int) (processes map[int]string, err error) { return int(se.LocalAddr.Port) == port }) if err != nil { - return + continue } for _, listener := range binds { From e57afb794817b18fb496bfef179782dd38de1ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 22 Feb 2022 17:21:33 +0700 Subject: [PATCH 075/147] trie: prunning state trie node on disk --- trie/database.go | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/trie/database.go b/trie/database.go index f140a56642f5..6aa157bdbd37 100644 --- a/trie/database.go +++ b/trie/database.go @@ -147,6 +147,8 @@ type cachedNode struct { flushPrev common.Hash // Previous node in the flush-list flushNext common.Hash // Next node in the flush-list + + committed bool // Flag to mark node is commited to the disk } // cachedNodeSize is the raw size of a cachedNode data structure without any @@ -332,6 +334,7 @@ func (db *Database) insert(hash common.Hash, size int, node node) { node: simplifyNode(node), size: uint16(size), flushPrev: db.newest, + committed: false, } entry.forChilds(func(child common.Hash) { if c := db.dirties[child]; c != nil { @@ -519,8 +522,14 @@ func (db *Database) Dereference(root common.Hash) { db.lock.Lock() defer db.lock.Unlock() + batch := db.diskdb.NewBatch() nodes, storage, start := len(db.dirties), db.dirtiesSize, time.Now() - db.dereference(root, common.Hash{}) + db.dereference(batch, root, common.Hash{}) + + // Flush out all accumulated data from the batch to disk + if err := batch.Write(); err != nil { + log.Warn("Failed to write flush list to disk", "err", err) + } db.gcnodes += uint64(nodes - len(db.dirties)) db.gcsize += storage - db.dirtiesSize @@ -535,7 +544,7 @@ func (db *Database) Dereference(root common.Hash) { } // dereference is the private locked version of Dereference. -func (db *Database) dereference(child common.Hash, parent common.Hash) { +func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { // Dereference the parent-child node := db.dirties[parent] @@ -574,8 +583,12 @@ func (db *Database) dereference(child common.Hash, parent common.Hash) { } // Dereference all children and delete the node node.forChilds(func(hash common.Hash) { - db.dereference(hash, child) + db.dereference(batch, hash, child) }) + if db.dirties[child].committed { + // node is commited to the disk already, need to delete it on disk also + rawdb.DeleteTrieNode(batch, child) + } delete(db.dirties, child) db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { @@ -661,7 +674,10 @@ func (db *Database) Cap(limit common.StorageSize) error { } for db.oldest != oldest { node := db.dirties[db.oldest] - delete(db.dirties, db.oldest) + // delete(db.dirties, db.oldest) + // TODO: if we don't delete the dirty nodes here then it will break the cap limit size rule + // temporarily to mark the dirty node is commited only + db.dirties[db.oldest].committed = true db.oldest = node.flushNext db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) @@ -782,6 +798,7 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane batch.Reset() db.lock.Unlock() } + db.dirties[hash].committed = true return nil } From 97d9b81d7168a35331e58e4decd5a614dd7d512f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 23 Feb 2022 07:08:01 +0700 Subject: [PATCH 076/147] fix nil pointer reference --- trie/database.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index 6aa157bdbd37..61165fc38db8 100644 --- a/trie/database.go +++ b/trie/database.go @@ -677,7 +677,9 @@ func (db *Database) Cap(limit common.StorageSize) error { // delete(db.dirties, db.oldest) // TODO: if we don't delete the dirty nodes here then it will break the cap limit size rule // temporarily to mark the dirty node is commited only - db.dirties[db.oldest].committed = true + if db.dirties[db.oldest] != nil { + db.dirties[db.oldest].committed = true + } db.oldest = node.flushNext db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) @@ -798,7 +800,9 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane batch.Reset() db.lock.Unlock() } - db.dirties[hash].committed = true + if db.dirties[hash] != nil { + db.dirties[hash].committed = true + } return nil } From 4586c4c6ec3d41ab2205986dbc1e2b9c7f86a978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 23 Feb 2022 11:14:23 +0700 Subject: [PATCH 077/147] still delete the ditry node when calling cap --- trie/database.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/trie/database.go b/trie/database.go index 61165fc38db8..0a2d4dbe3a73 100644 --- a/trie/database.go +++ b/trie/database.go @@ -674,12 +674,7 @@ func (db *Database) Cap(limit common.StorageSize) error { } for db.oldest != oldest { node := db.dirties[db.oldest] - // delete(db.dirties, db.oldest) - // TODO: if we don't delete the dirty nodes here then it will break the cap limit size rule - // temporarily to mark the dirty node is commited only - if db.dirties[db.oldest] != nil { - db.dirties[db.oldest].committed = true - } + delete(db.dirties, db.oldest) db.oldest = node.flushNext db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) From fcbc4ebff193c54c06ac5ed2b8af2b975adc97f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 25 Feb 2022 23:10:22 +0700 Subject: [PATCH 078/147] using callback to tracking the commited node --- trie/database.go | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/trie/database.go b/trie/database.go index 0a2d4dbe3a73..f65f664e9789 100644 --- a/trie/database.go +++ b/trie/database.go @@ -71,6 +71,7 @@ type Database struct { cleans *fastcache.Cache // GC friendly memory cache of clean node RLPs dirties map[common.Hash]*cachedNode // Data and references relationships of dirty trie nodes + commits map[common.Hash]bool // Tracking the disk commited trie nodes to delete later oldest common.Hash // Oldest tracked node, flush-list head newest common.Hash // Newest tracked node, flush-list tail @@ -147,8 +148,6 @@ type cachedNode struct { flushPrev common.Hash // Previous node in the flush-list flushNext common.Hash // Next node in the flush-list - - committed bool // Flag to mark node is commited to the disk } // cachedNodeSize is the raw size of a cachedNode data structure without any @@ -306,6 +305,7 @@ func NewDatabaseWithConfig(diskdb ethdb.KeyValueStore, config *Config) *Database dirties: map[common.Hash]*cachedNode{{}: { children: make(map[common.Hash]uint16), }}, + commits: make(map[common.Hash]bool), } if config == nil || config.Preimages { // TODO(karalabe): Flip to default off in the future db.preimages = make(map[common.Hash][]byte) @@ -334,7 +334,6 @@ func (db *Database) insert(hash common.Hash, size int, node node) { node: simplifyNode(node), size: uint16(size), flushPrev: db.newest, - committed: false, } entry.forChilds(func(child common.Hash) { if c := db.dirties[child]; c != nil { @@ -585,10 +584,12 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p node.forChilds(func(hash common.Hash) { db.dereference(batch, hash, child) }) - if db.dirties[child].committed { + committed, ok := db.commits[child] + if ok && committed { // node is commited to the disk already, need to delete it on disk also rawdb.DeleteTrieNode(batch, child) } + delete(db.commits, child) delete(db.dirties, child) db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { @@ -795,12 +796,13 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane batch.Reset() db.lock.Unlock() } - if db.dirties[hash] != nil { - db.dirties[hash].committed = true - } return nil } +func (db *Database) MarkCommit(hash common.Hash) { + db.commits[hash] = true +} + // cleaner is a database batch replayer that takes a batch of write operations // and cleans up the trie database from anything written to disk. type cleaner struct { @@ -810,7 +812,7 @@ type cleaner struct { // Put reacts to database writes and implements dirty data uncaching. This is the // post-processing step of a commit operation where the already persisted trie is // removed from the dirty cache and moved into the clean cache. The reason behind -// the two-phase commit is to ensure ensure data availability while moving from +// the two-phase commit is to ensure data availability while moving from // memory to disk. func (c *cleaner) Put(key []byte, rlp []byte) error { hash := common.BytesToHash(key) From 32e9ee507acf4f633d6a69783fe446ec87274f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Sat, 26 Feb 2022 00:54:12 +0700 Subject: [PATCH 079/147] delete the previously committed node as well --- trie/database.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/trie/database.go b/trie/database.go index f65f664e9789..460df3d72623 100644 --- a/trie/database.go +++ b/trie/database.go @@ -555,8 +555,15 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } } // If the child does not exist, it's a previously committed node. + // Delete the node on disk if it be marked as well node, ok := db.dirties[child] if !ok { + committed, ok := db.commits[child] + if ok && committed { + // node is commited to the disk already, need to delete it on disk also + rawdb.DeleteTrieNode(batch, child) + } + delete(db.commits, child) return } // If there are no more references to the child, delete it and cascade From ee6af93c6c086b43479ee02c4699bbd5220d2e72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Sat, 26 Feb 2022 01:31:31 +0700 Subject: [PATCH 080/147] use map to tracking the commited node --- trie/database.go | 45 +++++++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/trie/database.go b/trie/database.go index 460df3d72623..a13474760c05 100644 --- a/trie/database.go +++ b/trie/database.go @@ -71,7 +71,7 @@ type Database struct { cleans *fastcache.Cache // GC friendly memory cache of clean node RLPs dirties map[common.Hash]*cachedNode // Data and references relationships of dirty trie nodes - commits map[common.Hash]bool // Tracking the disk commited trie nodes to delete later + commits map[common.Hash]*cachedNode // Tracking the disk commited trie nodes to delete later oldest common.Hash // Oldest tracked node, flush-list head newest common.Hash // Newest tracked node, flush-list tail @@ -305,7 +305,9 @@ func NewDatabaseWithConfig(diskdb ethdb.KeyValueStore, config *Config) *Database dirties: map[common.Hash]*cachedNode{{}: { children: make(map[common.Hash]uint16), }}, - commits: make(map[common.Hash]bool), + commits: map[common.Hash]*cachedNode{{}: { + children: make(map[common.Hash]uint16), + }}, } if config == nil || config.Preimages { // TODO(karalabe): Flip to default off in the future db.preimages = make(map[common.Hash][]byte) @@ -521,9 +523,10 @@ func (db *Database) Dereference(root common.Hash) { db.lock.Lock() defer db.lock.Unlock() - batch := db.diskdb.NewBatch() nodes, storage, start := len(db.dirties), db.dirtiesSize, time.Now() - db.dereference(batch, root, common.Hash{}) + db.dereference(root, common.Hash{}) + batch := db.diskdb.NewBatch() + db.delete(batch, root) // Flush out all accumulated data from the batch to disk if err := batch.Write(); err != nil { @@ -543,7 +546,7 @@ func (db *Database) Dereference(root common.Hash) { } // dereference is the private locked version of Dereference. -func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { +func (db *Database) dereference(child common.Hash, parent common.Hash) { // Dereference the parent-child node := db.dirties[parent] @@ -555,15 +558,8 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } } // If the child does not exist, it's a previously committed node. - // Delete the node on disk if it be marked as well node, ok := db.dirties[child] if !ok { - committed, ok := db.commits[child] - if ok && committed { - // node is commited to the disk already, need to delete it on disk also - rawdb.DeleteTrieNode(batch, child) - } - delete(db.commits, child) return } // If there are no more references to the child, delete it and cascade @@ -589,14 +585,8 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } // Dereference all children and delete the node node.forChilds(func(hash common.Hash) { - db.dereference(batch, hash, child) + db.dereference(hash, child) }) - committed, ok := db.commits[child] - if ok && committed { - // node is commited to the disk already, need to delete it on disk also - rawdb.DeleteTrieNode(batch, child) - } - delete(db.commits, child) delete(db.dirties, child) db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { @@ -605,6 +595,21 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } } +// delete delete trie node on disk by hash +func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash) { + // If the child does not exist, it's a previously committed node. + node, ok := db.commits[child] + if !ok { + return + } + // Delete all children and delete the node + node.forChilds(func(hash common.Hash) { + db.delete(batch, hash) + }) + rawdb.DeleteTrieNode(batch, child) + delete(db.commits, child) +} + // Cap iteratively flushes old but still referenced trie nodes until the total // memory usage goes below the given threshold. // @@ -807,7 +812,7 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane } func (db *Database) MarkCommit(hash common.Hash) { - db.commits[hash] = true + db.commits[hash] = db.dirties[hash] } // cleaner is a database batch replayer that takes a batch of write operations From 19f050c81345ecca5fefc4686a778cb1e9f87631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Sat, 26 Feb 2022 08:53:58 +0700 Subject: [PATCH 081/147] adding log --- trie/database.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trie/database.go b/trie/database.go index a13474760c05..b8c0609f79af 100644 --- a/trie/database.go +++ b/trie/database.go @@ -608,6 +608,7 @@ func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash) { }) rawdb.DeleteTrieNode(batch, child) delete(db.commits, child) + log.Info("delete trie node on disk by hash", "hash", child) } // Cap iteratively flushes old but still referenced trie nodes until the total @@ -812,6 +813,7 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane } func (db *Database) MarkCommit(hash common.Hash) { + log.Info("mark node as commited node", "hash", hash) db.commits[hash] = db.dirties[hash] } From 56a354ca459844092516c085d02669044e70f18e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Sun, 27 Feb 2022 23:15:18 +0700 Subject: [PATCH 082/147] check delete like dereference --- trie/database.go | 37 ++++++++++++++++++++++++++++--------- 1 file changed, 28 insertions(+), 9 deletions(-) diff --git a/trie/database.go b/trie/database.go index b8c0609f79af..a8f229ce341f 100644 --- a/trie/database.go +++ b/trie/database.go @@ -526,7 +526,7 @@ func (db *Database) Dereference(root common.Hash) { nodes, storage, start := len(db.dirties), db.dirtiesSize, time.Now() db.dereference(root, common.Hash{}) batch := db.diskdb.NewBatch() - db.delete(batch, root) + db.delete(batch, root, common.Hash{}) // Flush out all accumulated data from the batch to disk if err := batch.Write(); err != nil { @@ -596,19 +596,38 @@ func (db *Database) dereference(child common.Hash, parent common.Hash) { } // delete delete trie node on disk by hash -func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash) { +func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { + // Dereference the parent-child + node := db.commits[parent] + + if node.children != nil && node.children[child] > 0 { + node.children[child]-- + if node.children[child] == 0 { + delete(node.children, child) + } + } // If the child does not exist, it's a previously committed node. node, ok := db.commits[child] if !ok { return } - // Delete all children and delete the node - node.forChilds(func(hash common.Hash) { - db.delete(batch, hash) - }) - rawdb.DeleteTrieNode(batch, child) - delete(db.commits, child) - log.Info("delete trie node on disk by hash", "hash", child) + // If there are no more references to the child, delete it and cascade + if node.parents > 0 { + // This is a special cornercase where a node loaded from disk (i.e. not in the + // memcache any more) gets reinjected as a new node (short node split into full, + // then reverted into short), causing a cached node to have no parents. That is + // no problem in itself, but don't make maxint parents out of it. + node.parents-- + } + if node.parents == 0 { + // Delete all children and delete the node + node.forChilds(func(hash common.Hash) { + db.delete(batch, hash, child) + }) + rawdb.DeleteTrieNode(batch, child) + delete(db.commits, child) + log.Info("delete trie node on disk by hash", "hash", child) + } } // Cap iteratively flushes old but still referenced trie nodes until the total From 2af123eaeb5830023d0a5253fc32e251ec2fa020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 28 Feb 2022 10:09:43 +0700 Subject: [PATCH 083/147] lower the commited node log level to debug --- trie/database.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index a8f229ce341f..f02e7e0656d4 100644 --- a/trie/database.go +++ b/trie/database.go @@ -626,7 +626,7 @@ func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash, parent }) rawdb.DeleteTrieNode(batch, child) delete(db.commits, child) - log.Info("delete trie node on disk by hash", "hash", child) + log.Debug("delete trie node on disk by hash", "hash", child) } } @@ -832,7 +832,7 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane } func (db *Database) MarkCommit(hash common.Hash) { - log.Info("mark node as commited node", "hash", hash) + log.Debug("mark node as commited node", "hash", hash) db.commits[hash] = db.dirties[hash] } From 804d28858aa6f40b93256bc2b378b342ac68a5bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 28 Feb 2022 10:56:31 +0700 Subject: [PATCH 084/147] double check nil for cached node --- trie/database.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/trie/database.go b/trie/database.go index f02e7e0656d4..33b27512e638 100644 --- a/trie/database.go +++ b/trie/database.go @@ -185,6 +185,9 @@ func (n *cachedNode) obj(hash common.Hash) node { // both the implicit ones from inside the node as well as the explicit ones // from outside the node. func (n *cachedNode) forChilds(onChild func(hash common.Hash)) { + if n == nil { + return + } for child := range n.children { onChild(child) } From d334666f1e0e6ecca1c63cf149c98a5d567f8ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 28 Feb 2022 14:51:23 +0700 Subject: [PATCH 085/147] use commited flag instead of map --- trie/database.go | 57 +++++++----------------------------------------- 1 file changed, 8 insertions(+), 49 deletions(-) diff --git a/trie/database.go b/trie/database.go index 33b27512e638..945dae37dd6e 100644 --- a/trie/database.go +++ b/trie/database.go @@ -71,7 +71,6 @@ type Database struct { cleans *fastcache.Cache // GC friendly memory cache of clean node RLPs dirties map[common.Hash]*cachedNode // Data and references relationships of dirty trie nodes - commits map[common.Hash]*cachedNode // Tracking the disk commited trie nodes to delete later oldest common.Hash // Oldest tracked node, flush-list head newest common.Hash // Newest tracked node, flush-list tail @@ -148,6 +147,8 @@ type cachedNode struct { flushPrev common.Hash // Previous node in the flush-list flushNext common.Hash // Next node in the flush-list + + commited bool } // cachedNodeSize is the raw size of a cachedNode data structure without any @@ -308,9 +309,6 @@ func NewDatabaseWithConfig(diskdb ethdb.KeyValueStore, config *Config) *Database dirties: map[common.Hash]*cachedNode{{}: { children: make(map[common.Hash]uint16), }}, - commits: map[common.Hash]*cachedNode{{}: { - children: make(map[common.Hash]uint16), - }}, } if config == nil || config.Preimages { // TODO(karalabe): Flip to default off in the future db.preimages = make(map[common.Hash][]byte) @@ -527,9 +525,8 @@ func (db *Database) Dereference(root common.Hash) { defer db.lock.Unlock() nodes, storage, start := len(db.dirties), db.dirtiesSize, time.Now() - db.dereference(root, common.Hash{}) batch := db.diskdb.NewBatch() - db.delete(batch, root, common.Hash{}) + db.dereference(batch, root, common.Hash{}) // Flush out all accumulated data from the batch to disk if err := batch.Write(); err != nil { @@ -549,7 +546,7 @@ func (db *Database) Dereference(root common.Hash) { } // dereference is the private locked version of Dereference. -func (db *Database) dereference(child common.Hash, parent common.Hash) { +func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { // Dereference the parent-child node := db.dirties[parent] @@ -588,9 +585,10 @@ func (db *Database) dereference(child common.Hash, parent common.Hash) { } // Dereference all children and delete the node node.forChilds(func(hash common.Hash) { - db.dereference(hash, child) + db.dereference(batch, hash, child) }) delete(db.dirties, child) + rawdb.DeleteTrieNode(batch, child) db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { db.childrenSize -= cachedNodeChildrenSize @@ -598,41 +596,6 @@ func (db *Database) dereference(child common.Hash, parent common.Hash) { } } -// delete delete trie node on disk by hash -func (db *Database) delete(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { - // Dereference the parent-child - node := db.commits[parent] - - if node.children != nil && node.children[child] > 0 { - node.children[child]-- - if node.children[child] == 0 { - delete(node.children, child) - } - } - // If the child does not exist, it's a previously committed node. - node, ok := db.commits[child] - if !ok { - return - } - // If there are no more references to the child, delete it and cascade - if node.parents > 0 { - // This is a special cornercase where a node loaded from disk (i.e. not in the - // memcache any more) gets reinjected as a new node (short node split into full, - // then reverted into short), causing a cached node to have no parents. That is - // no problem in itself, but don't make maxint parents out of it. - node.parents-- - } - if node.parents == 0 { - // Delete all children and delete the node - node.forChilds(func(hash common.Hash) { - db.delete(batch, hash, child) - }) - rawdb.DeleteTrieNode(batch, child) - delete(db.commits, child) - log.Debug("delete trie node on disk by hash", "hash", child) - } -} - // Cap iteratively flushes old but still referenced trie nodes until the total // memory usage goes below the given threshold. // @@ -834,11 +797,6 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleane return nil } -func (db *Database) MarkCommit(hash common.Hash) { - log.Debug("mark node as commited node", "hash", hash) - db.commits[hash] = db.dirties[hash] -} - // cleaner is a database batch replayer that takes a batch of write operations // and cleans up the trie database from anything written to disk. type cleaner struct { @@ -871,7 +829,8 @@ func (c *cleaner) Put(key []byte, rlp []byte) error { c.db.dirties[node.flushNext].flushPrev = node.flushPrev } // Remove the node from the dirty cache - delete(c.db.dirties, hash) + // delete(c.db.dirties, hash) + c.db.dirties[hash].commited = true c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { c.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) From c63577ffb26cd6a235cccb3cc6b14ca36e06834c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 1 Mar 2022 00:45:05 +0700 Subject: [PATCH 086/147] delete trie node if already committed --- trie/database.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/trie/database.go b/trie/database.go index 945dae37dd6e..bc46b63df21e 100644 --- a/trie/database.go +++ b/trie/database.go @@ -587,8 +587,10 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p node.forChilds(func(hash common.Hash) { db.dereference(batch, hash, child) }) + if db.dirties[child].commited { + rawdb.DeleteTrieNode(batch, child) + } delete(db.dirties, child) - rawdb.DeleteTrieNode(batch, child) db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { db.childrenSize -= cachedNodeChildrenSize From 09209f4221dbbfabc8d22f3470c2a1f774e331f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 1 Mar 2022 10:29:16 +0700 Subject: [PATCH 087/147] only update flush-list for uncommitted node --- trie/database.go | 51 ++++++++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/trie/database.go b/trie/database.go index bc46b63df21e..6f9629794188 100644 --- a/trie/database.go +++ b/trie/database.go @@ -337,6 +337,7 @@ func (db *Database) insert(hash common.Hash, size int, node node) { node: simplifyNode(node), size: uint16(size), flushPrev: db.newest, + commited: false, } entry.forChilds(func(child common.Hash) { if c := db.dirties[child]; c != nil { @@ -572,17 +573,20 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } if node.parents == 0 { // Remove the node from the flush-list - switch child { - case db.oldest: - db.oldest = node.flushNext - db.dirties[node.flushNext].flushPrev = common.Hash{} - case db.newest: - db.newest = node.flushPrev - db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - db.dirties[node.flushPrev].flushNext = node.flushNext - db.dirties[node.flushNext].flushPrev = node.flushPrev + if !node.commited { + switch child { + case db.oldest: + db.oldest = node.flushNext + db.dirties[node.flushNext].flushPrev = common.Hash{} + case db.newest: + db.newest = node.flushPrev + db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + db.dirties[node.flushPrev].flushNext = node.flushNext + db.dirties[node.flushNext].flushPrev = node.flushPrev + } } + // Dereference all children and delete the node node.forChilds(func(hash common.Hash) { db.dereference(batch, hash, child) @@ -818,20 +822,21 @@ func (c *cleaner) Put(key []byte, rlp []byte) error { if !ok { return nil } - // Node still exists, remove it from the flush-list - switch hash { - case c.db.oldest: - c.db.oldest = node.flushNext - c.db.dirties[node.flushNext].flushPrev = common.Hash{} - case c.db.newest: - c.db.newest = node.flushPrev - c.db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - c.db.dirties[node.flushPrev].flushNext = node.flushNext - c.db.dirties[node.flushNext].flushPrev = node.flushPrev + // Node still exists and uncommitted, remove it from the flush-list + if !node.commited { + switch hash { + case c.db.oldest: + c.db.oldest = node.flushNext + c.db.dirties[node.flushNext].flushPrev = common.Hash{} + case c.db.newest: + c.db.newest = node.flushPrev + c.db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + c.db.dirties[node.flushPrev].flushNext = node.flushNext + c.db.dirties[node.flushNext].flushPrev = node.flushPrev + } } - // Remove the node from the dirty cache - // delete(c.db.dirties, hash) + // Mark the node from in the dirty cache as committed c.db.dirties[hash].commited = true c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { From 8937214135d505e36e3c3c213cae3bc42c44a43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 2 Mar 2022 18:26:49 +0700 Subject: [PATCH 088/147] fix typo --- trie/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/database.go b/trie/database.go index 6f9629794188..877d25ab5ba6 100644 --- a/trie/database.go +++ b/trie/database.go @@ -836,7 +836,7 @@ func (c *cleaner) Put(key []byte, rlp []byte) error { c.db.dirties[node.flushNext].flushPrev = node.flushPrev } } - // Mark the node from in the dirty cache as committed + // Mark the node in the dirty cache as committed c.db.dirties[hash].commited = true c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { From f208069333d5d5846599d0552430d1dc4b80d066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 3 Mar 2022 23:45:44 +0700 Subject: [PATCH 089/147] adding more error logs --- trie/trie.go | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/trie/trie.go b/trie/trie.go index 0c28e0613c25..1b87ab14bbe5 100644 --- a/trie/trie.go +++ b/trie/trie.go @@ -105,7 +105,7 @@ func (t *Trie) NodeIterator(start []byte) NodeIterator { func (t *Trie) Get(key []byte) []byte { res, err := t.TryGet(key) if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Get Unhandled trie error: %v", err)) } return res } @@ -118,6 +118,9 @@ func (t *Trie) TryGet(key []byte) ([]byte, error) { if err == nil && didResolve { t.root = newroot } + if err != nil { + log.Error(fmt.Sprintf("TryGet Unhandled trie error: %v", err)) + } return value, err } @@ -162,6 +165,7 @@ func (t *Trie) tryGet(origNode node, key []byte, pos int) (value []byte, newnode func (t *Trie) TryGetNode(path []byte) ([]byte, int, error) { item, newroot, resolved, err := t.tryGetNode(t.root, compactToHex(path), 0) if err != nil { + log.Error(fmt.Sprintf("TryGetNode Unhandled trie error: %v", err)) return nil, resolved, err } if resolved > 0 { @@ -242,7 +246,7 @@ func (t *Trie) tryGetNode(origNode node, path []byte, pos int) (item []byte, new // stored in the trie. func (t *Trie) Update(key, value []byte) { if err := t.TryUpdate(key, value); err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Update Unhandled trie error: %v", err)) } } @@ -260,12 +264,14 @@ func (t *Trie) TryUpdate(key, value []byte) error { if len(value) != 0 { _, n, err := t.insert(t.root, nil, k, valueNode(value)) if err != nil { + log.Error(fmt.Sprintf("TryUpdate (insert) Unhandled trie error: %v", err)) return err } t.root = n } else { _, n, err := t.delete(t.root, nil, k) if err != nil { + log.Error(fmt.Sprintf("TryUpdate (delete) Unhandled trie error: %v", err)) return err } t.root = n @@ -345,7 +351,7 @@ func (t *Trie) insert(n node, prefix, key []byte, value node) (bool, node, error // Delete removes any existing value for key from the trie. func (t *Trie) Delete(key []byte) { if err := t.TryDelete(key); err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Delete Unhandled trie error: %v", err)) } } @@ -356,6 +362,7 @@ func (t *Trie) TryDelete(key []byte) error { k := keybytesToHex(key) _, n, err := t.delete(t.root, nil, k) if err != nil { + log.Error(fmt.Sprintf("TryDelete Unhandled trie error: %v", err)) return err } t.root = n From 9df86be1e0e2b2c00df52a6606176e67b426dd55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 7 Mar 2022 09:49:42 +0700 Subject: [PATCH 090/147] add trie node deletion log --- trie/database.go | 1 + 1 file changed, 1 insertion(+) diff --git a/trie/database.go b/trie/database.go index 877d25ab5ba6..694ed14545d4 100644 --- a/trie/database.go +++ b/trie/database.go @@ -592,6 +592,7 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p db.dereference(batch, hash, child) }) if db.dirties[child].commited { + log.Info("delete trie node", "hash", child) rawdb.DeleteTrieNode(batch, child) } delete(db.dirties, child) From 137185196fa8801517d3cbd2cd940ce5bcecf45d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 8 Mar 2022 00:02:54 +0700 Subject: [PATCH 091/147] use separate db wrapper to tracking commited node --- trie/database.go | 99 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 76 insertions(+), 23 deletions(-) diff --git a/trie/database.go b/trie/database.go index 694ed14545d4..a976a2f25a69 100644 --- a/trie/database.go +++ b/trie/database.go @@ -69,10 +69,11 @@ var ( type Database struct { diskdb ethdb.KeyValueStore // Persistent storage for matured trie nodes - cleans *fastcache.Cache // GC friendly memory cache of clean node RLPs - dirties map[common.Hash]*cachedNode // Data and references relationships of dirty trie nodes - oldest common.Hash // Oldest tracked node, flush-list head - newest common.Hash // Newest tracked node, flush-list tail + greedyGC bool // run gc greedy or not + cleans *fastcache.Cache // GC friendly memory cache of clean node RLPs + dirties map[common.Hash]*cachedNode // Data and references relationships of dirty trie nodes + oldest common.Hash // Oldest tracked node, flush-list head + newest common.Hash // Newest tracked node, flush-list tail preimages map[common.Hash][]byte // Preimages of nodes from the secure trie @@ -282,6 +283,7 @@ type Config struct { Cache int // Memory allowance (MB) to use for caching trie nodes in memory Journal string // Journal of clean cache to survive node restarts Preimages bool // Flag whether the preimage of trie key is recorded + GreedyGC bool // "light" or "greedy" GC } // NewDatabase creates a new trie database to store ephemeral trie content before @@ -304,12 +306,16 @@ func NewDatabaseWithConfig(diskdb ethdb.KeyValueStore, config *Config) *Database } } db := &Database{ - diskdb: diskdb, - cleans: cleans, + diskdb: diskdb, + greedyGC: false, + cleans: cleans, dirties: map[common.Hash]*cachedNode{{}: { children: make(map[common.Hash]uint16), }}, } + if config != nil { + db.greedyGC = config.GreedyGC + } if config == nil || config.Preimages { // TODO(karalabe): Flip to default off in the future db.preimages = make(map[common.Hash][]byte) } @@ -732,7 +738,12 @@ func (db *Database) Commit(node common.Hash, report bool, callback func(common.H // Move the trie itself into the batch, flushing if enough data is accumulated nodes, storage := len(db.dirties), db.dirtiesSize - uncacher := &cleaner{db} + var uncacher ethdb.KeyValueWriter + if db.greedyGC { + uncacher = &greedy{db} + } else { + uncacher = &cleaner{db} + } if err := db.commit(node, batch, uncacher, callback); err != nil { log.Error("Failed to commit trie from trie database", "err", err) return err @@ -772,7 +783,7 @@ func (db *Database) Commit(node common.Hash, report bool, callback func(common.H } // commit is the private locked version of Commit. -func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher *cleaner, callback func(common.Hash)) error { +func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher ethdb.KeyValueWriter, callback func(common.Hash)) error { // If the node does not exist, it's a previously committed node node, ok := db.dirties[hash] if !ok { @@ -823,22 +834,20 @@ func (c *cleaner) Put(key []byte, rlp []byte) error { if !ok { return nil } - // Node still exists and uncommitted, remove it from the flush-list - if !node.commited { - switch hash { - case c.db.oldest: - c.db.oldest = node.flushNext - c.db.dirties[node.flushNext].flushPrev = common.Hash{} - case c.db.newest: - c.db.newest = node.flushPrev - c.db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - c.db.dirties[node.flushPrev].flushNext = node.flushNext - c.db.dirties[node.flushNext].flushPrev = node.flushPrev - } + // Node still exists, remove it from the flush-list + switch hash { + case c.db.oldest: + c.db.oldest = node.flushNext + c.db.dirties[node.flushNext].flushPrev = common.Hash{} + case c.db.newest: + c.db.newest = node.flushPrev + c.db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + c.db.dirties[node.flushPrev].flushNext = node.flushNext + c.db.dirties[node.flushNext].flushPrev = node.flushPrev } - // Mark the node in the dirty cache as committed - c.db.dirties[hash].commited = true + // Remove the node from the dirty cache + delete(c.db.dirties, hash) c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) if node.children != nil { c.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) @@ -855,6 +864,50 @@ func (c *cleaner) Delete(key []byte) error { panic("not implemented") } +type greedy struct { + db *Database +} + +func (g *greedy) Put(key []byte, rlp []byte) error { + hash := common.BytesToHash(key) + + // If the node does not exist, we're done on this path + node, ok := g.db.dirties[hash] + if !ok { + return nil + } + // Node still exists and uncommitted, remove it from the flush-list + if !node.commited { + switch hash { + case g.db.oldest: + g.db.oldest = node.flushNext + g.db.dirties[node.flushNext].flushPrev = common.Hash{} + case g.db.newest: + g.db.newest = node.flushPrev + g.db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + g.db.dirties[node.flushPrev].flushNext = node.flushNext + g.db.dirties[node.flushNext].flushPrev = node.flushPrev + } + } + // Remove the node from the dirty cache + g.db.dirties[hash].commited = true + g.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) + if node.children != nil { + g.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) + } + // Move the flushed node into the clean cache to prevent insta-reloads + if g.db.cleans != nil { + g.db.cleans.Set(hash[:], rlp) + memcacheCleanWriteMeter.Mark(int64(len(rlp))) + } + return nil +} + +func (g *greedy) Delete(key []byte) error { + panic("not implemented") +} + // Size returns the current storage size of the memory cache in front of the // persistent database layer. func (db *Database) Size() (common.StorageSize, common.StorageSize) { From 544d31f8ace27a4ac7664cf642a3c40219f3eb70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 8 Mar 2022 21:55:55 +0700 Subject: [PATCH 092/147] simplify the greedy put --- trie/database.go | 47 +++++++++++------------------------------------ 1 file changed, 11 insertions(+), 36 deletions(-) diff --git a/trie/database.go b/trie/database.go index a976a2f25a69..51cc7c4e3e69 100644 --- a/trie/database.go +++ b/trie/database.go @@ -579,18 +579,16 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p } if node.parents == 0 { // Remove the node from the flush-list - if !node.commited { - switch child { - case db.oldest: - db.oldest = node.flushNext - db.dirties[node.flushNext].flushPrev = common.Hash{} - case db.newest: - db.newest = node.flushPrev - db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - db.dirties[node.flushPrev].flushNext = node.flushNext - db.dirties[node.flushNext].flushPrev = node.flushPrev - } + switch child { + case db.oldest: + db.oldest = node.flushNext + db.dirties[node.flushNext].flushPrev = common.Hash{} + case db.newest: + db.newest = node.flushPrev + db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + db.dirties[node.flushPrev].flushNext = node.flushNext + db.dirties[node.flushNext].flushPrev = node.flushPrev } // Dereference all children and delete the node @@ -872,35 +870,12 @@ func (g *greedy) Put(key []byte, rlp []byte) error { hash := common.BytesToHash(key) // If the node does not exist, we're done on this path - node, ok := g.db.dirties[hash] + _, ok := g.db.dirties[hash] if !ok { return nil } - // Node still exists and uncommitted, remove it from the flush-list - if !node.commited { - switch hash { - case g.db.oldest: - g.db.oldest = node.flushNext - g.db.dirties[node.flushNext].flushPrev = common.Hash{} - case g.db.newest: - g.db.newest = node.flushPrev - g.db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - g.db.dirties[node.flushPrev].flushNext = node.flushNext - g.db.dirties[node.flushNext].flushPrev = node.flushPrev - } - } // Remove the node from the dirty cache g.db.dirties[hash].commited = true - g.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) - if node.children != nil { - g.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) - } - // Move the flushed node into the clean cache to prevent insta-reloads - if g.db.cleans != nil { - g.db.cleans.Set(hash[:], rlp) - memcacheCleanWriteMeter.Mark(int64(len(rlp))) - } return nil } From a8287868ff78d8111138e97c649931fd3ef11555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 9 Mar 2022 11:28:31 +0700 Subject: [PATCH 093/147] add insert trie node log --- trie/database.go | 1 + 1 file changed, 1 insertion(+) diff --git a/trie/database.go b/trie/database.go index 51cc7c4e3e69..29eef056f939 100644 --- a/trie/database.go +++ b/trie/database.go @@ -350,6 +350,7 @@ func (db *Database) insert(hash common.Hash, size int, node node) { c.parents++ } }) + log.Info("insert new trie node into db.dirties", "hash", hash) db.dirties[hash] = entry // Update the flush-list endpoints From 0c7710b8dddb4cbad31d9786268e45c4f30ea158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 9 Mar 2022 16:39:22 +0700 Subject: [PATCH 094/147] mark node as commited if node does not existing on db --- trie/database.go | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/trie/database.go b/trie/database.go index 29eef056f939..61ee452ac6a0 100644 --- a/trie/database.go +++ b/trie/database.go @@ -747,16 +747,17 @@ func (db *Database) Commit(node common.Hash, report bool, callback func(common.H log.Error("Failed to commit trie from trie database", "err", err) return err } - // Trie mostly committed to disk, flush any batch leftovers - if err := batch.Write(); err != nil { - log.Error("Failed to write trie to disk", "err", err) - return err - } // Uncache any leftovers in the last batch db.lock.Lock() defer db.lock.Unlock() batch.Replay(uncacher) + + // Trie mostly committed to disk, flush any batch leftovers + if err := batch.Write(); err != nil { + log.Error("Failed to write trie to disk", "err", err) + return err + } batch.Reset() // Reset the storage counters and bumped metrics @@ -875,8 +876,11 @@ func (g *greedy) Put(key []byte, rlp []byte) error { if !ok { return nil } - // Remove the node from the dirty cache - g.db.dirties[hash].commited = true + // Mark node as commited if node does not existing on db + blob := rawdb.ReadTrieNode(g.db.diskdb, hash) + if len(blob) == 0 { + g.db.dirties[hash].commited = true + } return nil } From b0d4d7330f054bd9bea934fd85b50f664f8f77ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 10 Mar 2022 22:41:32 +0700 Subject: [PATCH 095/147] eth/protocols/snap: avoid estimating infinite percentage --- eth/protocols/snap/sync.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eth/protocols/snap/sync.go b/eth/protocols/snap/sync.go index 646df03887f1..6b2637a50a76 100644 --- a/eth/protocols/snap/sync.go +++ b/eth/protocols/snap/sync.go @@ -2798,6 +2798,11 @@ func (s *Syncer) reportSyncProgress(force bool) { accountFills, ).Uint64()) + // Don't report anything until we have a meaningful progress + if estBytes < 1.0 { + return + } + elapsed := time.Since(s.startTime) estTime := elapsed / time.Duration(synced) * time.Duration(estBytes) From 10a25425bfd63e38e293de46a3b2e2fc212a0e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 14 Mar 2022 10:54:36 +0700 Subject: [PATCH 096/147] use persistent store directly --- trie/database.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index 61ee452ac6a0..7427eb7472af 100644 --- a/trie/database.go +++ b/trie/database.go @@ -877,8 +877,7 @@ func (g *greedy) Put(key []byte, rlp []byte) error { return nil } // Mark node as commited if node does not existing on db - blob := rawdb.ReadTrieNode(g.db.diskdb, hash) - if len(blob) == 0 { + if exist, _ := g.db.diskdb.Has(hash[:]); !exist { g.db.dirties[hash].commited = true } return nil From c46b49e0b432e7dc0a692ae636cf69542ee5c116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 14 Mar 2022 10:56:48 +0700 Subject: [PATCH 097/147] prevent possible duplicate write on the same dirty node --- trie/database.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index 7427eb7472af..c92be6e2875e 100644 --- a/trie/database.go +++ b/trie/database.go @@ -648,7 +648,9 @@ func (db *Database) Cap(limit common.StorageSize) error { for size > limit && oldest != (common.Hash{}) { // Fetch the oldest referenced node and push into the batch node := db.dirties[oldest] - rawdb.WriteTrieNode(batch, oldest, node.rlp()) + if !node.commited { + rawdb.WriteTrieNode(batch, oldest, node.rlp()) + } // If we exceeded the ideal batch size, commit and reset if batch.ValueSize() >= ethdb.IdealBatchSize { @@ -799,7 +801,9 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher ethdb.K return err } // If we've reached an optimal batch size, commit and start over - rawdb.WriteTrieNode(batch, hash, node.rlp()) + if !node.commited { + rawdb.WriteTrieNode(batch, hash, node.rlp()) + } if callback != nil { callback(hash) } From b470c2f13581ccd654713f657b54e24491e04774 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 15 Mar 2022 00:08:02 +0700 Subject: [PATCH 098/147] change some log level to easy monitor the log --- trie/database.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index c92be6e2875e..65ee17662a7b 100644 --- a/trie/database.go +++ b/trie/database.go @@ -350,7 +350,7 @@ func (db *Database) insert(hash common.Hash, size int, node node) { c.parents++ } }) - log.Info("insert new trie node into db.dirties", "hash", hash) + log.Trace("insert new trie node into db.dirties", "hash", hash) db.dirties[hash] = entry // Update the flush-list endpoints @@ -597,7 +597,7 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p db.dereference(batch, hash, child) }) if db.dirties[child].commited { - log.Info("delete trie node", "hash", child) + log.Warn("delete trie node", "hash", child) rawdb.DeleteTrieNode(batch, child) } delete(db.dirties, child) From 3d85b82a42d56542ba5be41f121c5d4e297a3d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 15 Mar 2022 07:38:45 +0700 Subject: [PATCH 099/147] remove logs --- trie/database.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/trie/database.go b/trie/database.go index 65ee17662a7b..253f905d2a96 100644 --- a/trie/database.go +++ b/trie/database.go @@ -350,7 +350,6 @@ func (db *Database) insert(hash common.Hash, size int, node node) { c.parents++ } }) - log.Trace("insert new trie node into db.dirties", "hash", hash) db.dirties[hash] = entry // Update the flush-list endpoints @@ -597,7 +596,6 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p db.dereference(batch, hash, child) }) if db.dirties[child].commited { - log.Warn("delete trie node", "hash", child) rawdb.DeleteTrieNode(batch, child) } delete(db.dirties, child) From 16503195132636bee3457bdc83a35b46dcd44d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 15 Mar 2022 07:57:08 +0700 Subject: [PATCH 100/147] trie: move node into the clean cache to prevent insta-reloads --- trie/database.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/trie/database.go b/trie/database.go index 253f905d2a96..b31bb0bd154d 100644 --- a/trie/database.go +++ b/trie/database.go @@ -882,6 +882,11 @@ func (g *greedy) Put(key []byte, rlp []byte) error { if exist, _ := g.db.diskdb.Has(hash[:]); !exist { g.db.dirties[hash].commited = true } + // Move the flushed node into the clean cache to prevent insta-reloads + if g.db.cleans != nil { + g.db.cleans.Set(hash[:], rlp) + memcacheCleanWriteMeter.Mark(int64(len(rlp))) + } return nil } From d722ca2757941c7fbf84d50a804e53747232f2c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 15 Mar 2022 22:40:54 +0700 Subject: [PATCH 101/147] don't re-commit previously committed node --- trie/database.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/trie/database.go b/trie/database.go index b31bb0bd154d..969529cdc1bb 100644 --- a/trie/database.go +++ b/trie/database.go @@ -784,9 +784,9 @@ func (db *Database) Commit(node common.Hash, report bool, callback func(common.H // commit is the private locked version of Commit. func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher ethdb.KeyValueWriter, callback func(common.Hash)) error { - // If the node does not exist, it's a previously committed node + // If the node does not exist or marked as committed, then it's a previously committed node node, ok := db.dirties[hash] - if !ok { + if !ok || node.commited { return nil } var err error @@ -799,9 +799,7 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher ethdb.K return err } // If we've reached an optimal batch size, commit and start over - if !node.commited { - rawdb.WriteTrieNode(batch, hash, node.rlp()) - } + rawdb.WriteTrieNode(batch, hash, node.rlp()) if callback != nil { callback(hash) } From 0d77fc16e2556a7fb1c23e2f328d6ae8464f5d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 15 Mar 2022 22:44:43 +0700 Subject: [PATCH 102/147] evict dirty node in the greedy gc as well if node is db existing --- trie/database.go | 45 ++++++++++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 19 deletions(-) diff --git a/trie/database.go b/trie/database.go index 969529cdc1bb..1c2baf395d39 100644 --- a/trie/database.go +++ b/trie/database.go @@ -821,6 +821,28 @@ type cleaner struct { db *Database } +// evictDirty update the flush-list and remove node from dirty cache +func evictDirty(db *Database, hash common.Hash, node *cachedNode) { + // Node still exists, remove it from the flush-list + switch hash { + case db.oldest: + db.oldest = node.flushNext + db.dirties[node.flushNext].flushPrev = common.Hash{} + case db.newest: + db.newest = node.flushPrev + db.dirties[node.flushPrev].flushNext = common.Hash{} + default: + db.dirties[node.flushPrev].flushNext = node.flushNext + db.dirties[node.flushNext].flushPrev = node.flushPrev + } + // Remove the node from the dirty cache + delete(db.dirties, hash) + db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) + if node.children != nil { + db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) + } +} + // Put reacts to database writes and implements dirty data uncaching. This is the // post-processing step of a commit operation where the already persisted trie is // removed from the dirty cache and moved into the clean cache. The reason behind @@ -834,24 +856,7 @@ func (c *cleaner) Put(key []byte, rlp []byte) error { if !ok { return nil } - // Node still exists, remove it from the flush-list - switch hash { - case c.db.oldest: - c.db.oldest = node.flushNext - c.db.dirties[node.flushNext].flushPrev = common.Hash{} - case c.db.newest: - c.db.newest = node.flushPrev - c.db.dirties[node.flushPrev].flushNext = common.Hash{} - default: - c.db.dirties[node.flushPrev].flushNext = node.flushNext - c.db.dirties[node.flushNext].flushPrev = node.flushPrev - } - // Remove the node from the dirty cache - delete(c.db.dirties, hash) - c.db.dirtiesSize -= common.StorageSize(common.HashLength + int(node.size)) - if node.children != nil { - c.db.dirtiesSize -= common.StorageSize(cachedNodeChildrenSize + len(node.children)*(common.HashLength+2)) - } + evictDirty(c.db, hash, node) // Move the flushed node into the clean cache to prevent insta-reloads if c.db.cleans != nil { c.db.cleans.Set(hash[:], rlp) @@ -872,13 +877,15 @@ func (g *greedy) Put(key []byte, rlp []byte) error { hash := common.BytesToHash(key) // If the node does not exist, we're done on this path - _, ok := g.db.dirties[hash] + node, ok := g.db.dirties[hash] if !ok { return nil } // Mark node as commited if node does not existing on db if exist, _ := g.db.diskdb.Has(hash[:]); !exist { g.db.dirties[hash].commited = true + } else { + evictDirty(g.db, hash, node) } // Move the flushed node into the clean cache to prevent insta-reloads if g.db.cleans != nil { From 79c861b5f18d4f1e6b9b17e87f678e2798310744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 16 Mar 2022 09:39:14 +0700 Subject: [PATCH 103/147] remove unnecessary code --- trie/database.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/trie/database.go b/trie/database.go index 1c2baf395d39..e795de951536 100644 --- a/trie/database.go +++ b/trie/database.go @@ -187,9 +187,6 @@ func (n *cachedNode) obj(hash common.Hash) node { // both the implicit ones from inside the node as well as the explicit ones // from outside the node. func (n *cachedNode) forChilds(onChild func(hash common.Hash)) { - if n == nil { - return - } for child := range n.children { onChild(child) } @@ -306,9 +303,8 @@ func NewDatabaseWithConfig(diskdb ethdb.KeyValueStore, config *Config) *Database } } db := &Database{ - diskdb: diskdb, - greedyGC: false, - cleans: cleans, + diskdb: diskdb, + cleans: cleans, dirties: map[common.Hash]*cachedNode{{}: { children: make(map[common.Hash]uint16), }}, @@ -343,7 +339,6 @@ func (db *Database) insert(hash common.Hash, size int, node node) { node: simplifyNode(node), size: uint16(size), flushPrev: db.newest, - commited: false, } entry.forChilds(func(child common.Hash) { if c := db.dirties[child]; c != nil { From 4263abfb4f133b3d6269d1789e1da903546fa3af Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 25 Mar 2022 02:29:09 +1000 Subject: [PATCH 104/147] rpc handler timeout --- rpc/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/handler.go b/rpc/handler.go index 85f774a1b7f9..ed77d43d1a44 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -72,7 +72,7 @@ type callProc struct { } func newHandler(connCtx context.Context, conn jsonWriter, idgen func() ID, reg *serviceRegistry) *handler { - rootCtx, cancelRoot := context.WithCancel(connCtx) + rootCtx, cancelRoot := context.WithTimeout(connCtx, 10*time.Second) h := &handler{ reg: reg, idgen: idgen, From 8c951d465d11b3f02fea279cb4f4341cd5be0c5a Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 31 Mar 2022 01:03:13 +1000 Subject: [PATCH 105/147] Revert "rpc handler timeout" This reverts commit 4263abfb4f133b3d6269d1789e1da903546fa3af. --- rpc/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/handler.go b/rpc/handler.go index ed77d43d1a44..85f774a1b7f9 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -72,7 +72,7 @@ type callProc struct { } func newHandler(connCtx context.Context, conn jsonWriter, idgen func() ID, reg *serviceRegistry) *handler { - rootCtx, cancelRoot := context.WithTimeout(connCtx, 10*time.Second) + rootCtx, cancelRoot := context.WithCancel(connCtx) h := &handler{ reg: reg, idgen: idgen, From 23df62c7b188358f320ff5bb6c2b5df369240d86 Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 4 Apr 2022 18:59:53 +1000 Subject: [PATCH 106/147] rpc/callbackc.call() timeout --- rpc/service.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpc/service.go b/rpc/service.go index bef891ea1125..d7ba98686301 100644 --- a/rpc/service.go +++ b/rpc/service.go @@ -24,6 +24,7 @@ import ( "runtime" "strings" "sync" + "time" "unicode" "github.com/ethereum/go-ethereum/log" @@ -182,6 +183,9 @@ func (c *callback) makeArgTypes() { // call invokes the callback. func (c *callback) call(ctx context.Context, method string, args []reflect.Value) (res interface{}, errRes error) { + ctx, cancel := context.WithTimeout(ctx, 10*time.Second) + defer cancel() + // Create the argument slice. fullargs := make([]reflect.Value, 0, 2+len(args)) if c.rcvr.IsValid() { From f33b70b6efa38fec2b1cf7c8687ba3fb9fc8244d Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 11 Apr 2022 17:53:50 +1000 Subject: [PATCH 107/147] 5 sec timeout --- rpc/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/service.go b/rpc/service.go index d7ba98686301..e2b26c5b74dc 100644 --- a/rpc/service.go +++ b/rpc/service.go @@ -183,7 +183,7 @@ func (c *callback) makeArgTypes() { // call invokes the callback. func (c *callback) call(ctx context.Context, method string, args []reflect.Value) (res interface{}, errRes error) { - ctx, cancel := context.WithTimeout(ctx, 10*time.Second) + ctx, cancel := context.WithTimeout(ctx, 5*time.Second) defer cancel() // Create the argument slice. From 402969fdec6839fe90e37d170582da6a85ec9e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 3 May 2022 10:06:10 +0700 Subject: [PATCH 108/147] greedy gc: reverse order of batch writing and replaying --- trie/database.go | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/trie/database.go b/trie/database.go index e795de951536..534d018237f3 100644 --- a/trie/database.go +++ b/trie/database.go @@ -534,6 +534,7 @@ func (db *Database) Dereference(root common.Hash) { if err := batch.Write(); err != nil { log.Warn("Failed to write flush list to disk", "err", err) } + batch.Reset() db.gcnodes += uint64(nodes - len(db.dirties)) db.gcsize += storage - db.dirtiesSize @@ -548,7 +549,7 @@ func (db *Database) Dereference(root common.Hash) { } // dereference is the private locked version of Dereference. -func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, parent common.Hash) { +func (db *Database) dereference(batch ethdb.Batch, child common.Hash, parent common.Hash) { // Dereference the parent-child node := db.dirties[parent] @@ -586,6 +587,13 @@ func (db *Database) dereference(batch ethdb.KeyValueWriter, child common.Hash, p db.dirties[node.flushNext].flushPrev = node.flushPrev } + if batch.ValueSize() >= ethdb.IdealBatchSize { + if err := batch.Write(); err != nil { + log.Warn("Error on batch flushing out on disk", "err", err) + } + batch.Reset() + } + // Dereference all children and delete the node node.forChilds(func(hash common.Hash) { db.dereference(batch, hash, child) @@ -799,13 +807,13 @@ func (db *Database) commit(hash common.Hash, batch ethdb.Batch, uncacher ethdb.K callback(hash) } if batch.ValueSize() >= ethdb.IdealBatchSize { + db.lock.Lock() + batch.Replay(uncacher) + db.lock.Unlock() if err := batch.Write(); err != nil { return err } - db.lock.Lock() - batch.Replay(uncacher) batch.Reset() - db.lock.Unlock() } return nil } From dc868c7dcadf85ad16ba1b81501bf0107a82f47f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 8 Jun 2022 14:17:53 +0700 Subject: [PATCH 109/147] get back original ethereum error log messages --- trie/trie.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/trie/trie.go b/trie/trie.go index 1b87ab14bbe5..144259e548df 100644 --- a/trie/trie.go +++ b/trie/trie.go @@ -105,7 +105,7 @@ func (t *Trie) NodeIterator(start []byte) NodeIterator { func (t *Trie) Get(key []byte) []byte { res, err := t.TryGet(key) if err != nil { - log.Error(fmt.Sprintf("Get Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) } return res } @@ -119,7 +119,7 @@ func (t *Trie) TryGet(key []byte) ([]byte, error) { t.root = newroot } if err != nil { - log.Error(fmt.Sprintf("TryGet Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) } return value, err } @@ -165,7 +165,7 @@ func (t *Trie) tryGet(origNode node, key []byte, pos int) (value []byte, newnode func (t *Trie) TryGetNode(path []byte) ([]byte, int, error) { item, newroot, resolved, err := t.tryGetNode(t.root, compactToHex(path), 0) if err != nil { - log.Error(fmt.Sprintf("TryGetNode Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return nil, resolved, err } if resolved > 0 { @@ -246,7 +246,7 @@ func (t *Trie) tryGetNode(origNode node, path []byte, pos int) (item []byte, new // stored in the trie. func (t *Trie) Update(key, value []byte) { if err := t.TryUpdate(key, value); err != nil { - log.Error(fmt.Sprintf("Update Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) } } @@ -264,14 +264,14 @@ func (t *Trie) TryUpdate(key, value []byte) error { if len(value) != 0 { _, n, err := t.insert(t.root, nil, k, valueNode(value)) if err != nil { - log.Error(fmt.Sprintf("TryUpdate (insert) Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n } else { _, n, err := t.delete(t.root, nil, k) if err != nil { - log.Error(fmt.Sprintf("TryUpdate (delete) Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n @@ -351,7 +351,7 @@ func (t *Trie) insert(n node, prefix, key []byte, value node) (bool, node, error // Delete removes any existing value for key from the trie. func (t *Trie) Delete(key []byte) { if err := t.TryDelete(key); err != nil { - log.Error(fmt.Sprintf("Delete Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) } } @@ -362,7 +362,7 @@ func (t *Trie) TryDelete(key []byte) error { k := keybytesToHex(key) _, n, err := t.delete(t.root, nil, k) if err != nil { - log.Error(fmt.Sprintf("TryDelete Unhandled trie error: %v", err)) + log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n From 25a683ccef3432b9588c596c849b1a8c6523f8d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 8 Jun 2022 14:22:47 +0700 Subject: [PATCH 110/147] remove adding error logs --- trie/trie.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/trie/trie.go b/trie/trie.go index 144259e548df..0c28e0613c25 100644 --- a/trie/trie.go +++ b/trie/trie.go @@ -118,9 +118,6 @@ func (t *Trie) TryGet(key []byte) ([]byte, error) { if err == nil && didResolve { t.root = newroot } - if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) - } return value, err } @@ -165,7 +162,6 @@ func (t *Trie) tryGet(origNode node, key []byte, pos int) (value []byte, newnode func (t *Trie) TryGetNode(path []byte) ([]byte, int, error) { item, newroot, resolved, err := t.tryGetNode(t.root, compactToHex(path), 0) if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return nil, resolved, err } if resolved > 0 { @@ -264,14 +260,12 @@ func (t *Trie) TryUpdate(key, value []byte) error { if len(value) != 0 { _, n, err := t.insert(t.root, nil, k, valueNode(value)) if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n } else { _, n, err := t.delete(t.root, nil, k) if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n @@ -362,7 +356,6 @@ func (t *Trie) TryDelete(key []byte) error { k := keybytesToHex(key) _, n, err := t.delete(t.root, nil, k) if err != nil { - log.Error(fmt.Sprintf("Unhandled trie error: %v", err)) return err } t.root = n From 0651a401e09a70e367a558a48ec752968127a067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 14 Jul 2022 18:24:27 +0700 Subject: [PATCH 111/147] cmd, p2p: implement sentry node --- cmd/geth/main.go | 2 ++ cmd/geth/usage.go | 2 ++ cmd/utils/flags.go | 16 ++++++++++++++++ p2p/dial.go | 5 +++++ p2p/discover/common.go | 25 +++++++++++++++++++------ p2p/discover/v4_udp.go | 29 ++++++++++++++++++++--------- p2p/discover/v5_udp.go | 31 ++++++++++++++++++++++--------- p2p/netutil/net.go | 15 +++++++++++++++ p2p/server.go | 17 +++++++++++++++++ p2p/util.go | 11 +++++++++++ 10 files changed, 129 insertions(+), 24 deletions(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index da62b8d4d4d2..78e953a34755 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -129,6 +129,8 @@ var ( utils.NoDiscoverFlag, utils.DiscoveryV5Flag, utils.NetrestrictFlag, + utils.SentryNodeFlag, + utils.ValidatorNodeFlag, utils.NodeKeyFileFlag, utils.NodeKeyHexFlag, utils.DNSDiscoveryFlag, diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index 708edcc79325..f022aa6e7f75 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -169,6 +169,8 @@ var AppHelpFlagGroups = []flags.FlagGroup{ utils.NoDiscoverFlag, utils.DiscoveryV5Flag, utils.NetrestrictFlag, + utils.SentryNodeFlag, + utils.ValidatorNodeFlag, utils.NodeKeyFileFlag, utils.NodeKeyHexFlag, }, diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 61c33ad8a262..3a064f874a7d 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -656,6 +656,14 @@ var ( Name: "netrestrict", Usage: "Restricts network communication to the given IP networks (CIDR masks)", } + SentryNodeFlag = cli.StringFlag{ + Name: "sentrynodes", + Usage: "Restricts network communication to the given IP addresses", + } + ValidatorNodeFlag = cli.StringFlag{ + Name: "validatornodes", + Usage: "Validator node list for sentry node", + } DNSDiscoveryFlag = cli.StringFlag{ Name: "discovery.dns", Usage: "Sets DNS discovery entry points (use \"\" to disable DNS)", @@ -1197,6 +1205,14 @@ func SetP2PConfig(ctx *cli.Context, cfg *p2p.Config) { cfg.NetRestrict = list } + if sentrynodes := ctx.GlobalString(SentryNodeFlag.Name); sentrynodes != "" { + cfg.SentryNodes = netutil.ParseIPs(sentrynodes) + } + + if validatornodes := ctx.GlobalString(ValidatorNodeFlag.Name); validatornodes != "" { + cfg.ValidatorNodes = netutil.ParseIPs(validatornodes) + } + if ctx.GlobalBool(DeveloperFlag.Name) || ctx.GlobalBool(CatalystFlag.Name) { // --dev mode can't use p2p networking. cfg.MaxPeers = 0 diff --git a/p2p/dial.go b/p2p/dial.go index 5cca5ad8c692..463cb9596267 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -79,6 +79,7 @@ var ( errAlreadyListened = errors.New("already listened") errRecentlyDialed = errors.New("recently dialed") errNetRestrict = errors.New("not contained in netrestrict list") + errSentryNode = errors.New("not contained in sentry nodes") errNoPort = errors.New("node does not provide TCP port") ) @@ -135,6 +136,7 @@ type dialConfig struct { maxDialPeers int // maximum number of dialed peers maxActiveDials int // maximum number of active dials netRestrict *netutil.Netlist // IP netrestrict list, disabled if nil + sentryNodes []string // IP address restrict list, disabled if nil resolver nodeResolver dialer NodeDialer log log.Logger @@ -405,6 +407,9 @@ func (d *dialScheduler) checkDial(n *enode.Node) error { if d.netRestrict != nil && !d.netRestrict.Contains(n.IP()) { return errNetRestrict } + if len(d.sentryNodes) > 0 && !contains(d.sentryNodes, n.IP().String()) { + return errSentryNode + } if d.history.contains(string(n.ID().Bytes())) { return errRecentlyDialed } diff --git a/p2p/discover/common.go b/p2p/discover/common.go index e389821fda8b..2caba04c5ec3 100644 --- a/p2p/discover/common.go +++ b/p2p/discover/common.go @@ -41,12 +41,14 @@ type Config struct { PrivateKey *ecdsa.PrivateKey // These settings are optional: - NetRestrict *netutil.Netlist // list of allowed IP networks - Bootnodes []*enode.Node // list of bootstrap nodes - Unhandled chan<- ReadPacket // unhandled packets are sent on this channel - Log log.Logger // if set, log messages go here - ValidSchemes enr.IdentityScheme // allowed identity schemes - Clock mclock.Clock + NetRestrict *netutil.Netlist // list of allowed IP networks + SentryNodes []string // list of allowed IPs + ValidatorNodes []string // list of validator IPs + Bootnodes []*enode.Node // list of bootstrap nodes + Unhandled chan<- ReadPacket // unhandled packets are sent on this channel + Log log.Logger // if set, log messages go here + ValidSchemes enr.IdentityScheme // allowed identity schemes + Clock mclock.Clock } func (cfg Config) withDefaults() Config { @@ -80,3 +82,14 @@ func min(x, y int) int { } return x } + +// contains checks if a string is present in a slice +func has(s []string, str string) bool { + for _, v := range s { + if v == str { + return true + } + } + + return false +} diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 334716aebed0..a953cb2406ae 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -65,15 +65,17 @@ const ( // UDPv4 implements the v4 wire protocol. type UDPv4 struct { - conn UDPConn - log log.Logger - netrestrict *netutil.Netlist - priv *ecdsa.PrivateKey - localNode *enode.LocalNode - db *enode.DB - tab *Table - closeOnce sync.Once - wg sync.WaitGroup + conn UDPConn + log log.Logger + netrestrict *netutil.Netlist + sentryNodes []string + validatorNodes []string + priv *ecdsa.PrivateKey + localNode *enode.LocalNode + db *enode.DB + tab *Table + closeOnce sync.Once + wg sync.WaitGroup addReplyMatcher chan *replyMatcher gotreply chan reply @@ -133,6 +135,8 @@ func ListenV4(c UDPConn, ln *enode.LocalNode, cfg Config) (*UDPv4, error) { conn: c, priv: cfg.PrivateKey, netrestrict: cfg.NetRestrict, + sentryNodes: cfg.SentryNodes, + validatorNodes: cfg.ValidatorNodes, localNode: ln, db: ln.Database(), gotreply: make(chan reply), @@ -585,6 +589,9 @@ func (t *UDPv4) nodeFromRPC(sender *net.UDPAddr, rn v4wire.Node) (*node, error) if t.netrestrict != nil && !t.netrestrict.Contains(rn.IP) { return nil, errors.New("not contained in netrestrict list") } + if len(t.sentryNodes) > 0 && !has(t.sentryNodes, rn.IP.String()) { + return nil, errors.New("not contained in sentry nodes") + } key, err := v4wire.DecodePubkey(crypto.S256(), rn.ID) if err != nil { return nil, err @@ -728,6 +735,10 @@ func (t *UDPv4) handleFindnode(h *packetHandlerV4, from *net.UDPAddr, fromID eno p := v4wire.Neighbors{Expiration: uint64(time.Now().Add(expiration).Unix())} var sent bool for _, n := range closest { + // Get rid of validator node out of the found node + if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { + continue + } if netutil.CheckRelayIP(from.IP, n.IP()) == nil { p.Nodes = append(p.Nodes, nodeToRPC(n)) } diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index 71a39ea5a5f9..4bb6b53ff1a9 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -62,15 +62,17 @@ type codecV5 interface { // UDPv5 is the implementation of protocol version 5. type UDPv5 struct { // static fields - conn UDPConn - tab *Table - netrestrict *netutil.Netlist - priv *ecdsa.PrivateKey - localNode *enode.LocalNode - db *enode.DB - log log.Logger - clock mclock.Clock - validSchemes enr.IdentityScheme + conn UDPConn + tab *Table + netrestrict *netutil.Netlist + sentryNodes []string + validatorNodes []string + priv *ecdsa.PrivateKey + localNode *enode.LocalNode + db *enode.DB + log log.Logger + clock mclock.Clock + validSchemes enr.IdentityScheme // talkreq handler registry trlock sync.Mutex @@ -144,6 +146,7 @@ func newUDPv5(conn UDPConn, ln *enode.LocalNode, cfg Config) (*UDPv5, error) { localNode: ln, db: ln.Database(), netrestrict: cfg.NetRestrict, + sentryNodes: cfg.SentryNodes, priv: cfg.PrivateKey, log: cfg.Log, validSchemes: cfg.ValidSchemes, @@ -309,6 +312,12 @@ func (t *UDPv5) lookupWorker(destNode *node, target enode.ID) ([]*node, error) { return nil, err } for _, n := range r { + if t.netrestrict != nil && !t.netrestrict.Contains(n.IP()) { + continue + } + if len(t.sentryNodes) > 0 && !has(t.sentryNodes, n.IP().String()) { + continue + } if n.ID() != t.Self().ID() { nodes.push(wrapNode(n), findnodeResultLimit) } @@ -810,6 +819,10 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en // Apply some pre-checks to avoid sending invalid nodes. for _, n := range bn { + // Get rid of validator node out of the found node + if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { + continue + } // TODO livenessChecks > 1 if netutil.CheckRelayIP(rip, n.IP()) != nil { continue diff --git a/p2p/netutil/net.go b/p2p/netutil/net.go index d5da3c694f8e..09fda549162b 100644 --- a/p2p/netutil/net.go +++ b/p2p/netutil/net.go @@ -87,6 +87,21 @@ func ParseNetlist(s string) (*Netlist, error) { return &l, nil } +func ParseIPs(s string) []string { + ws := strings.NewReplacer(" ", "", "\n", "", "\t", "") + ips := strings.Split(ws.Replace(s), ",") + l := make([]string, 0) + for _, ip := range ips { + if ip == "" { + continue + } + if n := net.ParseIP(ip); n != nil { + l = append(l, n.String()) + } + } + return l +} + // MarshalTOML implements toml.MarshalerRec. func (l Netlist) MarshalTOML() interface{} { list := make([]string, 0, len(l)) diff --git a/p2p/server.go b/p2p/server.go index bc77ea146dfe..2b056389f30d 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -114,6 +114,16 @@ type Config struct { // allowed to connect, even above the peer limit. TrustedNodes []*enode.Node + // Broadcasting peers' info in the discovery mode can be ignored + // If this option is set to non-nil, the nodes which match one the the + // IPs contained in the list are not broadcasted. + ValidatorNodes []string `toml:",omitempty"` + + // Connectivity can be restricted to certain sentry nodes + // If this option is set to a non-nil, only nodes which match one of the + // IPs contained in the list are considered. + SentryNodes []string `toml:",omitempty"` + // Connectivity can be restricted to certain IP networks. // If this option is set to a non-nil value, only hosts which match one of the // IP networks contained in the list are considered. @@ -592,6 +602,7 @@ func (srv *Server) setupDiscovery() error { cfg := discover.Config{ PrivateKey: srv.PrivateKey, NetRestrict: srv.NetRestrict, + SentryNodes: srv.SentryNodes, Bootnodes: srv.BootstrapNodes, Unhandled: unhandled, Log: srv.log, @@ -609,6 +620,7 @@ func (srv *Server) setupDiscovery() error { cfg := discover.Config{ PrivateKey: srv.PrivateKey, NetRestrict: srv.NetRestrict, + SentryNodes: srv.SentryNodes, Bootnodes: srv.BootstrapNodesV5, Log: srv.log, } @@ -632,6 +644,7 @@ func (srv *Server) setupDialScheduler() { maxActiveDials: srv.MaxPendingPeers, log: srv.Logger, netRestrict: srv.NetRestrict, + sentryNodes: srv.SentryNodes, dialer: srv.Dialer, clock: srv.clock, } @@ -916,6 +929,10 @@ func (srv *Server) checkInboundConn(remoteIP net.IP) error { if srv.NetRestrict != nil && !srv.NetRestrict.Contains(remoteIP) { return fmt.Errorf("not in netrestrict list") } + // Reject connections that do not match sentry nodes. + if len(srv.SentryNodes) > 0 && !contains(srv.SentryNodes, remoteIP.String()) { + return fmt.Errorf("not in sentry nodes") + } // Reject Internet peers that try too often. now := srv.clock.Now() srv.inboundHistory.expire(now, nil) diff --git a/p2p/util.go b/p2p/util.go index 3c5f6b8508d5..034314ed1ecb 100644 --- a/p2p/util.go +++ b/p2p/util.go @@ -73,3 +73,14 @@ func (h *expHeap) Pop() interface{} { *h = old[0 : n-1] return x } + +// contains checks if a string is present in a slice +func contains(s []string, str string) bool { + for _, v := range s { + if v == str { + return true + } + } + + return false +} From a70c38672a6173caf8bfe94fee77e51d3af65857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 15 Jul 2022 22:03:32 +0700 Subject: [PATCH 112/147] p2p/discover: correct the netrestrict checking in UDPv5 --- p2p/discover/v5_udp.go | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index 4bb6b53ff1a9..b0a750cf6f0b 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -312,12 +312,6 @@ func (t *UDPv5) lookupWorker(destNode *node, target enode.ID) ([]*node, error) { return nil, err } for _, n := range r { - if t.netrestrict != nil && !t.netrestrict.Contains(n.IP()) { - continue - } - if len(t.sentryNodes) > 0 && !has(t.sentryNodes, n.IP().String()) { - continue - } if n.ID() != t.Self().ID() { nodes.push(wrapNode(n), findnodeResultLimit) } @@ -416,6 +410,12 @@ func (t *UDPv5) verifyResponseNode(c *callV5, r *enr.Record, distances []uint, s if err := netutil.CheckRelayIP(c.node.IP(), node.IP()); err != nil { return nil, err } + if t.netrestrict != nil && !t.netrestrict.Contains(node.IP()) { + return nil, errors.New("not contained in netrestrict list") + } + if len(t.sentryNodes) > 0 && !has(t.sentryNodes, node.IP().String()) { + return nil, errors.New("not contained in sentry nodes") + } if c.node.UDP() <= 1024 { return nil, errLowPort } @@ -819,10 +819,6 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en // Apply some pre-checks to avoid sending invalid nodes. for _, n := range bn { - // Get rid of validator node out of the found node - if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { - continue - } // TODO livenessChecks > 1 if netutil.CheckRelayIP(rip, n.IP()) != nil { continue From 7fabf0bf3a09553c1c4ddccc8034749a410be7d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 15 Jul 2022 22:18:44 +0700 Subject: [PATCH 113/147] get rid of validator node out of the found node in UDPv5 --- p2p/discover/v5_udp.go | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index b0a750cf6f0b..f2963c8b5e73 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -142,16 +142,17 @@ func newUDPv5(conn UDPConn, ln *enode.LocalNode, cfg Config) (*UDPv5, error) { cfg = cfg.withDefaults() t := &UDPv5{ // static fields - conn: conn, - localNode: ln, - db: ln.Database(), - netrestrict: cfg.NetRestrict, - sentryNodes: cfg.SentryNodes, - priv: cfg.PrivateKey, - log: cfg.Log, - validSchemes: cfg.ValidSchemes, - clock: cfg.Clock, - trhandlers: make(map[string]TalkRequestHandler), + conn: conn, + localNode: ln, + db: ln.Database(), + netrestrict: cfg.NetRestrict, + sentryNodes: cfg.SentryNodes, + validatorNodes: cfg.ValidatorNodes, + priv: cfg.PrivateKey, + log: cfg.Log, + validSchemes: cfg.ValidSchemes, + clock: cfg.Clock, + trhandlers: make(map[string]TalkRequestHandler), // channels into dispatch packetInCh: make(chan ReadPacket, 1), readNextCh: make(chan struct{}, 1), @@ -819,6 +820,10 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en // Apply some pre-checks to avoid sending invalid nodes. for _, n := range bn { + // Get rid of validator node out of the found node + if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { + continue + } // TODO livenessChecks > 1 if netutil.CheckRelayIP(rip, n.IP()) != nil { continue From a8ffe544c8f8dc24cb0033ec27d4b791059b4833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 21 Jul 2022 19:11:27 +0700 Subject: [PATCH 114/147] refactor code and add ip restrict test for dial --- cmd/geth/main.go | 4 ++-- cmd/geth/usage.go | 4 ++-- cmd/utils/flags.go | 18 +++++++-------- p2p/dial.go | 8 +++---- p2p/dial_test.go | 35 ++++++++++++++++++++++++++++ p2p/discover/common.go | 16 ++++++------- p2p/discover/v4_udp.go | 34 +++++++++++++-------------- p2p/discover/v5_udp.go | 52 +++++++++++++++++++++--------------------- p2p/server.go | 18 +++++++-------- 9 files changed, 112 insertions(+), 77 deletions(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 78e953a34755..b7fb79021355 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -129,8 +129,8 @@ var ( utils.NoDiscoverFlag, utils.DiscoveryV5Flag, utils.NetrestrictFlag, - utils.SentryNodeFlag, - utils.ValidatorNodeFlag, + utils.IPrestrictFlag, + utils.PrivateNodeFlag, utils.NodeKeyFileFlag, utils.NodeKeyHexFlag, utils.DNSDiscoveryFlag, diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go index f022aa6e7f75..74cf62a12fd7 100644 --- a/cmd/geth/usage.go +++ b/cmd/geth/usage.go @@ -169,8 +169,8 @@ var AppHelpFlagGroups = []flags.FlagGroup{ utils.NoDiscoverFlag, utils.DiscoveryV5Flag, utils.NetrestrictFlag, - utils.SentryNodeFlag, - utils.ValidatorNodeFlag, + utils.IPrestrictFlag, + utils.PrivateNodeFlag, utils.NodeKeyFileFlag, utils.NodeKeyHexFlag, }, diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 3a064f874a7d..877369c1f7b2 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -656,13 +656,13 @@ var ( Name: "netrestrict", Usage: "Restricts network communication to the given IP networks (CIDR masks)", } - SentryNodeFlag = cli.StringFlag{ - Name: "sentrynodes", + IPrestrictFlag = cli.StringFlag{ + Name: "iprestrict", Usage: "Restricts network communication to the given IP addresses", } - ValidatorNodeFlag = cli.StringFlag{ - Name: "validatornodes", - Usage: "Validator node list for sentry node", + PrivateNodeFlag = cli.StringFlag{ + Name: "privatenodes", + Usage: "Set list of private nodes IP that not be advertise to public network", } DNSDiscoveryFlag = cli.StringFlag{ Name: "discovery.dns", @@ -1205,12 +1205,12 @@ func SetP2PConfig(ctx *cli.Context, cfg *p2p.Config) { cfg.NetRestrict = list } - if sentrynodes := ctx.GlobalString(SentryNodeFlag.Name); sentrynodes != "" { - cfg.SentryNodes = netutil.ParseIPs(sentrynodes) + if iprestrict := ctx.GlobalString(IPrestrictFlag.Name); iprestrict != "" { + cfg.IPRestrict = netutil.ParseIPs(iprestrict) } - if validatornodes := ctx.GlobalString(ValidatorNodeFlag.Name); validatornodes != "" { - cfg.ValidatorNodes = netutil.ParseIPs(validatornodes) + if privatenodes := ctx.GlobalString(PrivateNodeFlag.Name); privatenodes != "" { + cfg.PrivateNodes = netutil.ParseIPs(privatenodes) } if ctx.GlobalBool(DeveloperFlag.Name) || ctx.GlobalBool(CatalystFlag.Name) { diff --git a/p2p/dial.go b/p2p/dial.go index 463cb9596267..2b50afe4efcd 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -79,7 +79,7 @@ var ( errAlreadyListened = errors.New("already listened") errRecentlyDialed = errors.New("recently dialed") errNetRestrict = errors.New("not contained in netrestrict list") - errSentryNode = errors.New("not contained in sentry nodes") + errIPRestrict = errors.New("not contained in iprestrict list") errNoPort = errors.New("node does not provide TCP port") ) @@ -136,7 +136,7 @@ type dialConfig struct { maxDialPeers int // maximum number of dialed peers maxActiveDials int // maximum number of active dials netRestrict *netutil.Netlist // IP netrestrict list, disabled if nil - sentryNodes []string // IP address restrict list, disabled if nil + ipRestrict []string // IP address restrict list, disabled if nil resolver nodeResolver dialer NodeDialer log log.Logger @@ -407,8 +407,8 @@ func (d *dialScheduler) checkDial(n *enode.Node) error { if d.netRestrict != nil && !d.netRestrict.Contains(n.IP()) { return errNetRestrict } - if len(d.sentryNodes) > 0 && !contains(d.sentryNodes, n.IP().String()) { - return errSentryNode + if len(d.ipRestrict) > 0 && !contains(d.ipRestrict, n.IP().String()) { + return errIPRestrict } if d.history.contains(string(n.ID().Bytes())) { return errRecentlyDialed diff --git a/p2p/dial_test.go b/p2p/dial_test.go index cd8dedff1c6e..39954746c868 100644 --- a/p2p/dial_test.go +++ b/p2p/dial_test.go @@ -152,6 +152,41 @@ func TestDialSchedNetRestrict(t *testing.T) { }) } +func TestDialSchedIPRestrict(t *testing.T) { + t.Parallel() + + nodes := []*enode.Node{ + newNode(uintID(0x01), "127.0.0.1:30303"), + newNode(uintID(0x02), "127.0.0.2:30303"), + newNode(uintID(0x03), "127.0.0.3:30303"), + newNode(uintID(0x04), "127.0.0.4:30303"), + newNode(uintID(0x05), "127.0.2.5:30303"), + newNode(uintID(0x06), "127.0.2.6:30303"), + newNode(uintID(0x07), "127.0.2.7:30303"), + newNode(uintID(0x08), "127.0.2.8:30303"), + } + config := dialConfig{ + maxActiveDials: 10, + maxDialPeers: 10, + } + config.ipRestrict = []string{"127.0.0.1", "127.0.2.8"} + runDialTest(t, config, []dialTestRound{ + { + discovered: nodes, + wantNewDials: []*enode.Node{ + newNode(uintID(0x01), "127.0.0.1:30303"), + newNode(uintID(0x08), "127.0.2.8:30303"), + }, + }, + { + succeeded: []enode.ID{ + nodes[0].ID(), + nodes[7].ID(), + }, + }, + }) +} + // This test checks that static dials work and obey the limits. func TestDialSchedStaticDial(t *testing.T) { t.Parallel() diff --git a/p2p/discover/common.go b/p2p/discover/common.go index 2caba04c5ec3..cf5ca9713ebc 100644 --- a/p2p/discover/common.go +++ b/p2p/discover/common.go @@ -41,14 +41,14 @@ type Config struct { PrivateKey *ecdsa.PrivateKey // These settings are optional: - NetRestrict *netutil.Netlist // list of allowed IP networks - SentryNodes []string // list of allowed IPs - ValidatorNodes []string // list of validator IPs - Bootnodes []*enode.Node // list of bootstrap nodes - Unhandled chan<- ReadPacket // unhandled packets are sent on this channel - Log log.Logger // if set, log messages go here - ValidSchemes enr.IdentityScheme // allowed identity schemes - Clock mclock.Clock + NetRestrict *netutil.Netlist // list of allowed IP networks + IPRestrict []string // list of allowed IP addresses + PrivateNodes []string // list of private IPs + Bootnodes []*enode.Node // list of bootstrap nodes + Unhandled chan<- ReadPacket // unhandled packets are sent on this channel + Log log.Logger // if set, log messages go here + ValidSchemes enr.IdentityScheme // allowed identity schemes + Clock mclock.Clock } func (cfg Config) withDefaults() Config { diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index a953cb2406ae..60d45139e3f5 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -65,17 +65,17 @@ const ( // UDPv4 implements the v4 wire protocol. type UDPv4 struct { - conn UDPConn - log log.Logger - netrestrict *netutil.Netlist - sentryNodes []string - validatorNodes []string - priv *ecdsa.PrivateKey - localNode *enode.LocalNode - db *enode.DB - tab *Table - closeOnce sync.Once - wg sync.WaitGroup + conn UDPConn + log log.Logger + netrestrict *netutil.Netlist + iprestrict []string + privateNodes []string + priv *ecdsa.PrivateKey + localNode *enode.LocalNode + db *enode.DB + tab *Table + closeOnce sync.Once + wg sync.WaitGroup addReplyMatcher chan *replyMatcher gotreply chan reply @@ -135,8 +135,8 @@ func ListenV4(c UDPConn, ln *enode.LocalNode, cfg Config) (*UDPv4, error) { conn: c, priv: cfg.PrivateKey, netrestrict: cfg.NetRestrict, - sentryNodes: cfg.SentryNodes, - validatorNodes: cfg.ValidatorNodes, + iprestrict: cfg.IPRestrict, + privateNodes: cfg.PrivateNodes, localNode: ln, db: ln.Database(), gotreply: make(chan reply), @@ -589,8 +589,8 @@ func (t *UDPv4) nodeFromRPC(sender *net.UDPAddr, rn v4wire.Node) (*node, error) if t.netrestrict != nil && !t.netrestrict.Contains(rn.IP) { return nil, errors.New("not contained in netrestrict list") } - if len(t.sentryNodes) > 0 && !has(t.sentryNodes, rn.IP.String()) { - return nil, errors.New("not contained in sentry nodes") + if len(t.iprestrict) > 0 && !has(t.iprestrict, rn.IP.String()) { + return nil, errors.New("not contained in iprestrict list") } key, err := v4wire.DecodePubkey(crypto.S256(), rn.ID) if err != nil { @@ -735,8 +735,8 @@ func (t *UDPv4) handleFindnode(h *packetHandlerV4, from *net.UDPAddr, fromID eno p := v4wire.Neighbors{Expiration: uint64(time.Now().Add(expiration).Unix())} var sent bool for _, n := range closest { - // Get rid of validator node out of the found node - if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { + // Don't advertise the private nodes + if len(t.privateNodes) > 0 && has(t.privateNodes, n.IP().String()) { continue } if netutil.CheckRelayIP(from.IP, n.IP()) == nil { diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index f2963c8b5e73..adce0f8c7be4 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -62,17 +62,17 @@ type codecV5 interface { // UDPv5 is the implementation of protocol version 5. type UDPv5 struct { // static fields - conn UDPConn - tab *Table - netrestrict *netutil.Netlist - sentryNodes []string - validatorNodes []string - priv *ecdsa.PrivateKey - localNode *enode.LocalNode - db *enode.DB - log log.Logger - clock mclock.Clock - validSchemes enr.IdentityScheme + conn UDPConn + tab *Table + netrestrict *netutil.Netlist + iprestrict []string + privateNodes []string + priv *ecdsa.PrivateKey + localNode *enode.LocalNode + db *enode.DB + log log.Logger + clock mclock.Clock + validSchemes enr.IdentityScheme // talkreq handler registry trlock sync.Mutex @@ -142,17 +142,17 @@ func newUDPv5(conn UDPConn, ln *enode.LocalNode, cfg Config) (*UDPv5, error) { cfg = cfg.withDefaults() t := &UDPv5{ // static fields - conn: conn, - localNode: ln, - db: ln.Database(), - netrestrict: cfg.NetRestrict, - sentryNodes: cfg.SentryNodes, - validatorNodes: cfg.ValidatorNodes, - priv: cfg.PrivateKey, - log: cfg.Log, - validSchemes: cfg.ValidSchemes, - clock: cfg.Clock, - trhandlers: make(map[string]TalkRequestHandler), + conn: conn, + localNode: ln, + db: ln.Database(), + netrestrict: cfg.NetRestrict, + iprestrict: cfg.IPRestrict, + privateNodes: cfg.PrivateNodes, + priv: cfg.PrivateKey, + log: cfg.Log, + validSchemes: cfg.ValidSchemes, + clock: cfg.Clock, + trhandlers: make(map[string]TalkRequestHandler), // channels into dispatch packetInCh: make(chan ReadPacket, 1), readNextCh: make(chan struct{}, 1), @@ -414,8 +414,8 @@ func (t *UDPv5) verifyResponseNode(c *callV5, r *enr.Record, distances []uint, s if t.netrestrict != nil && !t.netrestrict.Contains(node.IP()) { return nil, errors.New("not contained in netrestrict list") } - if len(t.sentryNodes) > 0 && !has(t.sentryNodes, node.IP().String()) { - return nil, errors.New("not contained in sentry nodes") + if len(t.iprestrict) > 0 && !has(t.iprestrict, node.IP().String()) { + return nil, errors.New("not contained in iprestrict list") } if c.node.UDP() <= 1024 { return nil, errLowPort @@ -820,8 +820,8 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en // Apply some pre-checks to avoid sending invalid nodes. for _, n := range bn { - // Get rid of validator node out of the found node - if len(t.validatorNodes) > 0 && has(t.validatorNodes, n.IP().String()) { + // Don't advertise the private nodes + if len(t.privateNodes) > 0 && has(t.privateNodes, n.IP().String()) { continue } // TODO livenessChecks > 1 diff --git a/p2p/server.go b/p2p/server.go index 2b056389f30d..6ffe5ff0a590 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -117,12 +117,12 @@ type Config struct { // Broadcasting peers' info in the discovery mode can be ignored // If this option is set to non-nil, the nodes which match one the the // IPs contained in the list are not broadcasted. - ValidatorNodes []string `toml:",omitempty"` + PrivateNodes []string `toml:",omitempty"` - // Connectivity can be restricted to certain sentry nodes + // Connectivity can be restricted to certain IP addresses // If this option is set to a non-nil, only nodes which match one of the // IPs contained in the list are considered. - SentryNodes []string `toml:",omitempty"` + IPRestrict []string `toml:",omitempty"` // Connectivity can be restricted to certain IP networks. // If this option is set to a non-nil value, only hosts which match one of the @@ -602,7 +602,7 @@ func (srv *Server) setupDiscovery() error { cfg := discover.Config{ PrivateKey: srv.PrivateKey, NetRestrict: srv.NetRestrict, - SentryNodes: srv.SentryNodes, + IPRestrict: srv.IPRestrict, Bootnodes: srv.BootstrapNodes, Unhandled: unhandled, Log: srv.log, @@ -620,7 +620,7 @@ func (srv *Server) setupDiscovery() error { cfg := discover.Config{ PrivateKey: srv.PrivateKey, NetRestrict: srv.NetRestrict, - SentryNodes: srv.SentryNodes, + IPRestrict: srv.IPRestrict, Bootnodes: srv.BootstrapNodesV5, Log: srv.log, } @@ -644,7 +644,7 @@ func (srv *Server) setupDialScheduler() { maxActiveDials: srv.MaxPendingPeers, log: srv.Logger, netRestrict: srv.NetRestrict, - sentryNodes: srv.SentryNodes, + ipRestrict: srv.IPRestrict, dialer: srv.Dialer, clock: srv.clock, } @@ -929,9 +929,9 @@ func (srv *Server) checkInboundConn(remoteIP net.IP) error { if srv.NetRestrict != nil && !srv.NetRestrict.Contains(remoteIP) { return fmt.Errorf("not in netrestrict list") } - // Reject connections that do not match sentry nodes. - if len(srv.SentryNodes) > 0 && !contains(srv.SentryNodes, remoteIP.String()) { - return fmt.Errorf("not in sentry nodes") + // Reject connections that do not match IPRestrict. + if len(srv.IPRestrict) > 0 && !contains(srv.IPRestrict, remoteIP.String()) { + return fmt.Errorf("not in iprestrict list") } // Reject Internet peers that try too often. now := srv.clock.Now() From 210582fd57980857e1e638e38f33f91b479e6189 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 11:32:00 +0700 Subject: [PATCH 115/147] allow update iprestrict/private ip via admin console --- internal/web3ext/web3ext.go | 20 ++++++++++++ node/api.go | 55 +++++++++++++++++++++++++++++++ p2p/discover/v4_udp.go | 16 ++++++++++ p2p/server.go | 64 +++++++++++++++++++++++++++++++++++++ 4 files changed, 155 insertions(+) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 62cc7dbfe79d..0a2f6d6f1c34 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -141,6 +141,26 @@ web3._extend({ call: 'admin_removeTrustedPeer', params: 1 }), + new web3._extend.Method({ + name: 'addPrivateNode', + call: 'admin_addPrivateNode', + params: 1 + }), + new web3._extend.Method({ + name: 'removePrivateNode', + call: 'admin_removePrivateNode', + params: 1 + }), + new web3._extend.Method({ + name: 'addIPRestrict', + call: 'admin_addIPRestrict', + params: 1 + }), + new web3._extend.Method({ + name: 'removeIPRestrict', + call: 'admin_removeIPRestrict', + params: 1 + }), new web3._extend.Method({ name: 'exportChain', call: 'admin_exportChain', diff --git a/node/api.go b/node/api.go index be20b89d95c0..9e488a8af6cc 100644 --- a/node/api.go +++ b/node/api.go @@ -19,6 +19,7 @@ package node import ( "context" "fmt" + "net" "strings" "github.com/ethereum/go-ethereum/common/hexutil" @@ -125,6 +126,60 @@ func (api *privateAdminAPI) RemoveTrustedPeer(url string) (bool, error) { return true, nil } +// AddIPRestrict allow an ip to connect +func (api *privateAdminAPI) AddIPRestrict(ip string) (bool, error) { + // Make sure the server is running, fail otherwise + server := api.node.Server() + if server == nil { + return false, ErrNodeStopped + } + if node := net.ParseIP(ip); node == nil { + return false, fmt.Errorf("invalid ip address: %v", ip) + } + server.AddIPRestrict(ip) + return true, nil +} + +// RemoveIPRestrict remove ip from the restrict allow ip list +func (api *privateAdminAPI) RemoveIPRestrict(ip string) (bool, error) { + // Make sure the server is running, fail otherwise + server := api.node.Server() + if server == nil { + return false, ErrNodeStopped + } + if node := net.ParseIP(ip); node == nil { + return false, fmt.Errorf("invalid ip address: %v", ip) + } + server.RemoveIPRestrict(ip) + return true, nil +} + +func (api *privateAdminAPI) AddPrivateNode(ip string) (bool, error) { + // Make sure the server is running, fail otherwise + server := api.node.Server() + if server == nil { + return false, ErrNodeStopped + } + if node := net.ParseIP(ip); node == nil { + return false, fmt.Errorf("invalid node address: %v", ip) + } + server.AddPrivateNode(ip) + return true, nil +} + +func (api *privateAdminAPI) RemovePrivateNode(ip string) (bool, error) { + // Make sure the server is running, fail otherwise + server := api.node.Server() + if server == nil { + return false, ErrNodeStopped + } + if node := net.ParseIP(ip); node == nil { + return false, fmt.Errorf("invalid node address: %v", ip) + } + server.RemovePrivateNode(ip) + return true, nil +} + // PeerEvents creates an RPC subscription which receives peer events from the // node's p2p.Server func (api *privateAdminAPI) PeerEvents(ctx context.Context) (*rpc.Subscription, error) { diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 60d45139e3f5..0643b9ada511 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -204,6 +204,22 @@ func (t *UDPv4) Resolve(n *enode.Node) *enode.Node { return n } +func (t *UDPv4) UpdateIPRestrict(restricts map[string]bool) { + ips := []string{} + for ip, _ := range restricts { + ips = append(ips, ip) + } + t.iprestrict = ips +} + +func (t *UDPv4) UpdatePrivateNodes(privates map[string]bool) { + ips := []string{} + for ip, _ := range privates { + ips = append(ips, ip) + } + t.iprestrict = ips +} + func (t *UDPv4) ourEndpoint() v4wire.Endpoint { n := t.Self() a := &net.UDPAddr{IP: n.IP(), Port: n.UDP()} diff --git a/p2p/server.go b/p2p/server.go index 6ffe5ff0a590..ca2f01378333 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -199,6 +199,10 @@ type Server struct { quit chan struct{} addtrusted chan *enode.Node removetrusted chan *enode.Node + addiprestrict chan string + removeiprestrict chan string + addprivatenode chan string + removeprivatenode chan string peerOp chan peerOpFunc peerOpDone chan struct{} delpeer chan peerDrop @@ -380,6 +384,34 @@ func (srv *Server) RemoveTrustedPeer(node *enode.Node) { } } +func (srv *Server) AddIPRestrict(ip string) { + select { + case srv.addiprestrict <- ip: + case <-srv.quit: + } +} + +func (srv *Server) RemoveIPRestrict(ip string) { + select { + case srv.removeiprestrict <- ip: + case <-srv.quit: + } +} + +func (srv *Server) AddPrivateNode(node string) { + select { + case srv.addprivatenode <- node: + case <-srv.quit: + } +} + +func (srv *Server) RemovePrivateNode(node string) { + select { + case srv.removeprivatenode <- node: + case <-srv.quit: + } +} + // SubscribeEvents subscribes the given channel to peer events func (srv *Server) SubscribeEvents(ch chan *PeerEvent) event.Subscription { return srv.peerFeed.Subscribe(ch) @@ -477,6 +509,10 @@ func (srv *Server) Start() (err error) { srv.checkpointAddPeer = make(chan *conn) srv.addtrusted = make(chan *enode.Node) srv.removetrusted = make(chan *enode.Node) + srv.addiprestrict = make(chan string) + srv.removeiprestrict = make(chan string) + srv.addprivatenode = make(chan string) + srv.removeprivatenode = make(chan string) srv.peerOp = make(chan peerOpFunc) srv.peerOpDone = make(chan struct{}) @@ -726,12 +762,20 @@ func (srv *Server) run() { peers = make(map[enode.ID]*Peer) inboundCount = 0 trusted = make(map[enode.ID]bool, len(srv.TrustedNodes)) + privates = make(map[string]bool, len(srv.PrivateNodes)) + restricts = make(map[string]bool, len(srv.IPRestrict)) ) // Put trusted nodes into a map to speed up checks. // Trusted peers are loaded on startup or added via AddTrustedPeer RPC. for _, n := range srv.TrustedNodes { trusted[n.ID()] = true } + for _, n := range srv.PrivateNodes { + privates[n] = true + } + for _, ip := range srv.IPRestrict { + restricts[ip] = true + } running: for { @@ -758,6 +802,26 @@ running: p.rw.set(trustedConn, false) } + case ip := <-srv.addiprestrict: + srv.log.Warn("Adding ip restrict", "ip", ip) + restricts[ip] = true + srv.ntab.UpdateIPRestrict(restricts) + + case ip := <-srv.removeiprestrict: + srv.log.Warn("Removing ip restrict", "ip", ip) + delete(restricts, ip) + srv.ntab.UpdateIPRestrict(restricts) + + case p := <-srv.addprivatenode: + srv.log.Warn("Adding private node", "node", p) + privates[p] = true + srv.ntab.UpdatePrivateNodes(privates) + + case p := <-srv.removeprivatenode: + srv.log.Warn("Removing private node", "node", p) + delete(privates, p) + srv.ntab.UpdatePrivateNodes(privates) + case op := <-srv.peerOp: // This channel is used by Peers and PeerCount. op(peers) From e4a94df59774bc98a33e2433baec7834aaf46385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 12:07:42 +0700 Subject: [PATCH 116/147] also remove the peer if it's not in the updated ip restrict --- node/api.go | 2 ++ p2p/server.go | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/node/api.go b/node/api.go index 9e488a8af6cc..de9f22cc25e4 100644 --- a/node/api.go +++ b/node/api.go @@ -154,6 +154,7 @@ func (api *privateAdminAPI) RemoveIPRestrict(ip string) (bool, error) { return true, nil } +// AddPrivateNode add an ip not to be advertise to the other peers func (api *privateAdminAPI) AddPrivateNode(ip string) (bool, error) { // Make sure the server is running, fail otherwise server := api.node.Server() @@ -167,6 +168,7 @@ func (api *privateAdminAPI) AddPrivateNode(ip string) (bool, error) { return true, nil } +// RemovePrivateNode remove ip out of non-advertise ip list func (api *privateAdminAPI) RemovePrivateNode(ip string) (bool, error) { // Make sure the server is running, fail otherwise server := api.node.Server() diff --git a/p2p/server.go b/p2p/server.go index ca2f01378333..a71b2dc539e1 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -812,6 +812,13 @@ running: delete(restricts, ip) srv.ntab.UpdateIPRestrict(restricts) + for _, n := range srv.StaticNodes { + if n.IP().String() == ip { + srv.dialsched.removeStatic(n) + srv.RemoveTrustedPeer(n) + } + } + case p := <-srv.addprivatenode: srv.log.Warn("Adding private node", "node", p) privates[p] = true From bdf7ed4ce0da30a5162f0db4685f8ad25631b92e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 14:49:34 +0700 Subject: [PATCH 117/147] update peer set when setting ip restrict from nil --- p2p/discover/v4_udp.go | 6 +----- p2p/server.go | 26 ++++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 0643b9ada511..7dc72811ecd5 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -204,11 +204,7 @@ func (t *UDPv4) Resolve(n *enode.Node) *enode.Node { return n } -func (t *UDPv4) UpdateIPRestrict(restricts map[string]bool) { - ips := []string{} - for ip, _ := range restricts { - ips = append(ips, ip) - } +func (t *UDPv4) UpdateIPRestrict(ips []string) { t.iprestrict = ips } diff --git a/p2p/server.go b/p2p/server.go index a71b2dc539e1..86ed36b3cfff 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -804,13 +804,35 @@ running: case ip := <-srv.addiprestrict: srv.log.Warn("Adding ip restrict", "ip", ip) + + // If it's the first time to activate the ip restrict, + // then remove all the current peers that not in the ip restrict list + if len(restricts) == 0 { + for _, n := range srv.StaticNodes { + if n.IP().String() != ip { + srv.dialsched.removeStatic(n) + srv.RemoveTrustedPeer(n) + } + } + } + restricts[ip] = true - srv.ntab.UpdateIPRestrict(restricts) + ips := []string{} + for ip, _ := range restricts { + ips = append(ips, ip) + } + srv.IPRestrict = ips + srv.ntab.UpdateIPRestrict(ips) case ip := <-srv.removeiprestrict: srv.log.Warn("Removing ip restrict", "ip", ip) delete(restricts, ip) - srv.ntab.UpdateIPRestrict(restricts) + ips := []string{} + for ip, _ := range restricts { + ips = append(ips, ip) + } + srv.IPRestrict = ips + srv.ntab.UpdateIPRestrict(ips) for _, n := range srv.StaticNodes { if n.IP().String() == ip { From 3ceffaa02e3306855b50619e186f76ded2b66a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 15:23:53 +0700 Subject: [PATCH 118/147] add admin property to tracking iprestrict and private nodes on console --- internal/web3ext/web3ext.go | 8 ++++++++ node/api.go | 16 ++++++++++++++++ p2p/discover/v4_udp.go | 8 ++------ p2p/server.go | 22 ++++++++++++++++------ 4 files changed, 42 insertions(+), 12 deletions(-) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 0a2f6d6f1c34..29c0c549f340 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -219,6 +219,14 @@ web3._extend({ name: 'peers', getter: 'admin_peers' }), + new web3._extend.Property({ + name: 'privateNodes', + getter: 'admin_privateNodes' + }), + new web3._extend.Property({ + name: 'iprestrict', + getter: 'admin_iprestrict' + }), new web3._extend.Property({ name: 'datadir', getter: 'admin_datadir' diff --git a/node/api.go b/node/api.go index de9f22cc25e4..7c566f601668 100644 --- a/node/api.go +++ b/node/api.go @@ -383,6 +383,22 @@ func (api *publicAdminAPI) Datadir() string { return api.node.DataDir() } +func (api *publicAdminAPI) PrivateNodes() ([]string, error) { + server := api.node.Server() + if server == nil { + return nil, ErrNodeStopped + } + return server.PrivateNodes, nil +} + +func (api *publicAdminAPI) Iprestrict() ([]string, error) { + server := api.node.Server() + if server == nil { + return nil, ErrNodeStopped + } + return server.IPRestrict, nil +} + // publicWeb3API offers helper utils type publicWeb3API struct { stack *Node diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 7dc72811ecd5..9e8b3823ac36 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -208,12 +208,8 @@ func (t *UDPv4) UpdateIPRestrict(ips []string) { t.iprestrict = ips } -func (t *UDPv4) UpdatePrivateNodes(privates map[string]bool) { - ips := []string{} - for ip, _ := range privates { - ips = append(ips, ip) - } - t.iprestrict = ips +func (t *UDPv4) UpdatePrivateNodes(ips []string) { + t.privateNodes = ips } func (t *UDPv4) ourEndpoint() v4wire.Endpoint { diff --git a/p2p/server.go b/p2p/server.go index 86ed36b3cfff..5ccdc0cc69f2 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -803,7 +803,7 @@ running: } case ip := <-srv.addiprestrict: - srv.log.Warn("Adding ip restrict", "ip", ip) + srv.log.Trace("Adding ip restrict", "ip", ip) // If it's the first time to activate the ip restrict, // then remove all the current peers that not in the ip restrict list @@ -825,7 +825,7 @@ running: srv.ntab.UpdateIPRestrict(ips) case ip := <-srv.removeiprestrict: - srv.log.Warn("Removing ip restrict", "ip", ip) + srv.log.Trace("Removing ip restrict", "ip", ip) delete(restricts, ip) ips := []string{} for ip, _ := range restricts { @@ -842,14 +842,24 @@ running: } case p := <-srv.addprivatenode: - srv.log.Warn("Adding private node", "node", p) + srv.log.Trace("Adding private node", "node", p) privates[p] = true - srv.ntab.UpdatePrivateNodes(privates) + ips := []string{} + for ip, _ := range privates { + ips = append(ips, ip) + } + srv.PrivateNodes = ips + srv.ntab.UpdatePrivateNodes(ips) case p := <-srv.removeprivatenode: - srv.log.Warn("Removing private node", "node", p) + srv.log.Trace("Removing private node", "node", p) delete(privates, p) - srv.ntab.UpdatePrivateNodes(privates) + ips := []string{} + for ip, _ := range privates { + ips = append(ips, ip) + } + srv.PrivateNodes = ips + srv.ntab.UpdatePrivateNodes(ips) case op := <-srv.peerOp: // This channel is used by Peers and PeerCount. From e578c33af27925151f9147410d95ad4a84dee772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 16:40:47 +0700 Subject: [PATCH 119/147] should remove node from peers, not from static nodes --- p2p/dial.go | 6 +++--- p2p/server.go | 14 ++++++-------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/p2p/dial.go b/p2p/dial.go index 2b50afe4efcd..d20b7f5e35ce 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -109,7 +109,7 @@ type dialScheduler struct { // Everything below here belongs to loop and // should only be accessed by code on the loop goroutine. dialing map[enode.ID]*dialTask // active tasks - peers map[enode.ID]connFlag // all connected peers + peers map[enode.ID]*conn // all connected peers dialPeers int // current number of dialed peers // The static map tracks all static dial tasks. The subset of usable static dial tasks @@ -169,7 +169,7 @@ func newDialScheduler(config dialConfig, it enode.Iterator, setupFunc dialSetupF setupFunc: setupFunc, dialing: make(map[enode.ID]*dialTask), static: make(map[enode.ID]*dialTask), - peers: make(map[enode.ID]connFlag), + peers: make(map[enode.ID]*conn), doneCh: make(chan *dialTask), nodesIn: make(chan *enode.Node), addStaticCh: make(chan *enode.Node), @@ -262,7 +262,7 @@ loop: d.dialPeers++ } id := c.node.ID() - d.peers[id] = c.flags + d.peers[id] = c // Remove from static pool because the node is now connected. task := d.static[id] if task != nil && task.staticPoolIndex >= 0 { diff --git a/p2p/server.go b/p2p/server.go index 5ccdc0cc69f2..a10f1709d74d 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -808,10 +808,9 @@ running: // If it's the first time to activate the ip restrict, // then remove all the current peers that not in the ip restrict list if len(restricts) == 0 { - for _, n := range srv.StaticNodes { - if n.IP().String() != ip { - srv.dialsched.removeStatic(n) - srv.RemoveTrustedPeer(n) + for _, c := range srv.dialsched.peers { + if c.node.IP().String() != ip { + srv.RemovePeer(c.node) } } } @@ -834,10 +833,9 @@ running: srv.IPRestrict = ips srv.ntab.UpdateIPRestrict(ips) - for _, n := range srv.StaticNodes { - if n.IP().String() == ip { - srv.dialsched.removeStatic(n) - srv.RemoveTrustedPeer(n) + for _, c := range srv.dialsched.peers { + if c.node.IP().String() == ip { + srv.RemovePeer(c.node) } } From 9c1f89952911dab7bf426467fd4c26a3b83e66a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 17:25:05 +0700 Subject: [PATCH 120/147] p2p hanlde will manage the peers itself --- p2p/server.go | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/p2p/server.go b/p2p/server.go index a10f1709d74d..7eb4d27203c7 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -805,16 +805,6 @@ running: case ip := <-srv.addiprestrict: srv.log.Trace("Adding ip restrict", "ip", ip) - // If it's the first time to activate the ip restrict, - // then remove all the current peers that not in the ip restrict list - if len(restricts) == 0 { - for _, c := range srv.dialsched.peers { - if c.node.IP().String() != ip { - srv.RemovePeer(c.node) - } - } - } - restricts[ip] = true ips := []string{} for ip, _ := range restricts { @@ -833,12 +823,6 @@ running: srv.IPRestrict = ips srv.ntab.UpdateIPRestrict(ips) - for _, c := range srv.dialsched.peers { - if c.node.IP().String() == ip { - srv.RemovePeer(c.node) - } - } - case p := <-srv.addprivatenode: srv.log.Trace("Adding private node", "node", p) privates[p] = true From e9709111b8fd2d7c62bac68352bddc167c0c806c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 17:45:32 +0700 Subject: [PATCH 121/147] allow node to handle peers via dial config --- p2p/dial.go | 55 +++++++++++++++++++++++++++++++-------------------- p2p/server.go | 2 ++ 2 files changed, 36 insertions(+), 21 deletions(-) diff --git a/p2p/dial.go b/p2p/dial.go index d20b7f5e35ce..fab641356b11 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -95,16 +95,17 @@ var ( // type dialScheduler struct { dialConfig - setupFunc dialSetupFunc - wg sync.WaitGroup - cancel context.CancelFunc - ctx context.Context - nodesIn chan *enode.Node - doneCh chan *dialTask - addStaticCh chan *enode.Node - remStaticCh chan *enode.Node - addPeerCh chan *conn - remPeerCh chan *conn + setupFunc dialSetupFunc + wg sync.WaitGroup + cancel context.CancelFunc + ctx context.Context + nodesIn chan *enode.Node + doneCh chan *dialTask + addStaticCh chan *enode.Node + remStaticCh chan *enode.Node + addPeerCh chan *conn + remPeerCh chan *conn + updateIPRestrictCh chan []string // Everything below here belongs to loop and // should only be accessed by code on the loop goroutine. @@ -165,17 +166,18 @@ func (cfg dialConfig) withDefaults() dialConfig { func newDialScheduler(config dialConfig, it enode.Iterator, setupFunc dialSetupFunc) *dialScheduler { d := &dialScheduler{ - dialConfig: config.withDefaults(), - setupFunc: setupFunc, - dialing: make(map[enode.ID]*dialTask), - static: make(map[enode.ID]*dialTask), - peers: make(map[enode.ID]*conn), - doneCh: make(chan *dialTask), - nodesIn: make(chan *enode.Node), - addStaticCh: make(chan *enode.Node), - remStaticCh: make(chan *enode.Node), - addPeerCh: make(chan *conn), - remPeerCh: make(chan *conn), + dialConfig: config.withDefaults(), + setupFunc: setupFunc, + dialing: make(map[enode.ID]*dialTask), + static: make(map[enode.ID]*dialTask), + peers: make(map[enode.ID]*conn), + doneCh: make(chan *dialTask), + nodesIn: make(chan *enode.Node), + addStaticCh: make(chan *enode.Node), + remStaticCh: make(chan *enode.Node), + addPeerCh: make(chan *conn), + remPeerCh: make(chan *conn), + updateIPRestrictCh: make(chan []string), } d.lastStatsLog = d.clock.Now() d.ctx, d.cancel = context.WithCancel(context.Background()) @@ -191,6 +193,13 @@ func (d *dialScheduler) stop() { d.wg.Wait() } +func (d *dialScheduler) updateIPRestrict(s []string) { + select { + case d.updateIPRestrictCh <- s: + case <-d.ctx.Done(): + } +} + // addStatic adds a static dial candidate. func (d *dialScheduler) addStatic(n *enode.Node) { select { @@ -277,6 +286,10 @@ loop: delete(d.peers, c.node.ID()) d.updateStaticPool(c.node.ID()) + case ips := <-d.updateIPRestrictCh: + d.log.Trace("Update ip restrict", "ips", ips) + d.ipRestrict = ips + case node := <-d.addStaticCh: id := node.ID() _, exists := d.static[id] diff --git a/p2p/server.go b/p2p/server.go index 7eb4d27203c7..da9a0efbad94 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -811,6 +811,7 @@ running: ips = append(ips, ip) } srv.IPRestrict = ips + srv.dialsched.updateIPRestrict(ips) srv.ntab.UpdateIPRestrict(ips) case ip := <-srv.removeiprestrict: @@ -821,6 +822,7 @@ running: ips = append(ips, ip) } srv.IPRestrict = ips + srv.dialsched.updateIPRestrict(ips) srv.ntab.UpdateIPRestrict(ips) case p := <-srv.addprivatenode: From 8141e1d7fe12cbcf4e8243be5e058d3135fffb42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 20:55:11 +0700 Subject: [PATCH 122/147] try to call dialsched peer removed after ip restrict be updated --- p2p/server.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/p2p/server.go b/p2p/server.go index da9a0efbad94..ddfa92efa6f7 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -805,6 +805,20 @@ running: case ip := <-srv.addiprestrict: srv.log.Trace("Adding ip restrict", "ip", ip) + if len(restricts) == 0 { + for _, c := range srv.dialsched.peers { + if c.node.IP().String() != ip { + if p, ok := peers[c.node.ID()]; ok { + delete(peers, c.node.ID()) + srv.dialsched.peerRemoved(c) + if p.Inbound() { + inboundCount-- + } + } + } + } + } + restricts[ip] = true ips := []string{} for ip, _ := range restricts { @@ -824,6 +838,17 @@ running: srv.IPRestrict = ips srv.dialsched.updateIPRestrict(ips) srv.ntab.UpdateIPRestrict(ips) + for _, c := range srv.dialsched.peers { + if c.node.IP().String() == ip { + if p, ok := peers[c.node.ID()]; ok { + delete(peers, c.node.ID()) + srv.dialsched.peerRemoved(c) + if p.Inbound() { + inboundCount-- + } + } + } + } case p := <-srv.addprivatenode: srv.log.Trace("Adding private node", "node", p) From fb92b6c1d3a045d1c19dfb1b4b15dd0b3aa10f46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 22 Jul 2022 21:47:37 +0700 Subject: [PATCH 123/147] only remove the peers when ip restrict is not-nil --- p2p/server.go | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/p2p/server.go b/p2p/server.go index ddfa92efa6f7..92a3efb0d00b 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -838,13 +838,15 @@ running: srv.IPRestrict = ips srv.dialsched.updateIPRestrict(ips) srv.ntab.UpdateIPRestrict(ips) - for _, c := range srv.dialsched.peers { - if c.node.IP().String() == ip { - if p, ok := peers[c.node.ID()]; ok { - delete(peers, c.node.ID()) - srv.dialsched.peerRemoved(c) - if p.Inbound() { - inboundCount-- + if len(restricts) > 0 { + for _, c := range srv.dialsched.peers { + if c.node.IP().String() == ip { + if p, ok := peers[c.node.ID()]; ok { + delete(peers, c.node.ID()) + srv.dialsched.peerRemoved(c) + if p.Inbound() { + inboundCount-- + } } } } From 08324f096dbb442ad4f8e29b1945cc9f2642276c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 26 Jul 2022 17:09:55 +0700 Subject: [PATCH 124/147] remove all new admin console methods --- internal/web3ext/web3ext.go | 20 ------- node/api.go | 57 ------------------- p2p/dial.go | 59 ++++++++------------ p2p/discover/v4_udp.go | 8 --- p2p/server.go | 106 ------------------------------------ 5 files changed, 23 insertions(+), 227 deletions(-) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 29c0c549f340..09eb0b97ddb6 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -141,26 +141,6 @@ web3._extend({ call: 'admin_removeTrustedPeer', params: 1 }), - new web3._extend.Method({ - name: 'addPrivateNode', - call: 'admin_addPrivateNode', - params: 1 - }), - new web3._extend.Method({ - name: 'removePrivateNode', - call: 'admin_removePrivateNode', - params: 1 - }), - new web3._extend.Method({ - name: 'addIPRestrict', - call: 'admin_addIPRestrict', - params: 1 - }), - new web3._extend.Method({ - name: 'removeIPRestrict', - call: 'admin_removeIPRestrict', - params: 1 - }), new web3._extend.Method({ name: 'exportChain', call: 'admin_exportChain', diff --git a/node/api.go b/node/api.go index 7c566f601668..3f90cb4b6e0b 100644 --- a/node/api.go +++ b/node/api.go @@ -19,7 +19,6 @@ package node import ( "context" "fmt" - "net" "strings" "github.com/ethereum/go-ethereum/common/hexutil" @@ -126,62 +125,6 @@ func (api *privateAdminAPI) RemoveTrustedPeer(url string) (bool, error) { return true, nil } -// AddIPRestrict allow an ip to connect -func (api *privateAdminAPI) AddIPRestrict(ip string) (bool, error) { - // Make sure the server is running, fail otherwise - server := api.node.Server() - if server == nil { - return false, ErrNodeStopped - } - if node := net.ParseIP(ip); node == nil { - return false, fmt.Errorf("invalid ip address: %v", ip) - } - server.AddIPRestrict(ip) - return true, nil -} - -// RemoveIPRestrict remove ip from the restrict allow ip list -func (api *privateAdminAPI) RemoveIPRestrict(ip string) (bool, error) { - // Make sure the server is running, fail otherwise - server := api.node.Server() - if server == nil { - return false, ErrNodeStopped - } - if node := net.ParseIP(ip); node == nil { - return false, fmt.Errorf("invalid ip address: %v", ip) - } - server.RemoveIPRestrict(ip) - return true, nil -} - -// AddPrivateNode add an ip not to be advertise to the other peers -func (api *privateAdminAPI) AddPrivateNode(ip string) (bool, error) { - // Make sure the server is running, fail otherwise - server := api.node.Server() - if server == nil { - return false, ErrNodeStopped - } - if node := net.ParseIP(ip); node == nil { - return false, fmt.Errorf("invalid node address: %v", ip) - } - server.AddPrivateNode(ip) - return true, nil -} - -// RemovePrivateNode remove ip out of non-advertise ip list -func (api *privateAdminAPI) RemovePrivateNode(ip string) (bool, error) { - // Make sure the server is running, fail otherwise - server := api.node.Server() - if server == nil { - return false, ErrNodeStopped - } - if node := net.ParseIP(ip); node == nil { - return false, fmt.Errorf("invalid node address: %v", ip) - } - server.RemovePrivateNode(ip) - return true, nil -} - // PeerEvents creates an RPC subscription which receives peer events from the // node's p2p.Server func (api *privateAdminAPI) PeerEvents(ctx context.Context) (*rpc.Subscription, error) { diff --git a/p2p/dial.go b/p2p/dial.go index fab641356b11..2b50afe4efcd 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -95,22 +95,21 @@ var ( // type dialScheduler struct { dialConfig - setupFunc dialSetupFunc - wg sync.WaitGroup - cancel context.CancelFunc - ctx context.Context - nodesIn chan *enode.Node - doneCh chan *dialTask - addStaticCh chan *enode.Node - remStaticCh chan *enode.Node - addPeerCh chan *conn - remPeerCh chan *conn - updateIPRestrictCh chan []string + setupFunc dialSetupFunc + wg sync.WaitGroup + cancel context.CancelFunc + ctx context.Context + nodesIn chan *enode.Node + doneCh chan *dialTask + addStaticCh chan *enode.Node + remStaticCh chan *enode.Node + addPeerCh chan *conn + remPeerCh chan *conn // Everything below here belongs to loop and // should only be accessed by code on the loop goroutine. dialing map[enode.ID]*dialTask // active tasks - peers map[enode.ID]*conn // all connected peers + peers map[enode.ID]connFlag // all connected peers dialPeers int // current number of dialed peers // The static map tracks all static dial tasks. The subset of usable static dial tasks @@ -166,18 +165,17 @@ func (cfg dialConfig) withDefaults() dialConfig { func newDialScheduler(config dialConfig, it enode.Iterator, setupFunc dialSetupFunc) *dialScheduler { d := &dialScheduler{ - dialConfig: config.withDefaults(), - setupFunc: setupFunc, - dialing: make(map[enode.ID]*dialTask), - static: make(map[enode.ID]*dialTask), - peers: make(map[enode.ID]*conn), - doneCh: make(chan *dialTask), - nodesIn: make(chan *enode.Node), - addStaticCh: make(chan *enode.Node), - remStaticCh: make(chan *enode.Node), - addPeerCh: make(chan *conn), - remPeerCh: make(chan *conn), - updateIPRestrictCh: make(chan []string), + dialConfig: config.withDefaults(), + setupFunc: setupFunc, + dialing: make(map[enode.ID]*dialTask), + static: make(map[enode.ID]*dialTask), + peers: make(map[enode.ID]connFlag), + doneCh: make(chan *dialTask), + nodesIn: make(chan *enode.Node), + addStaticCh: make(chan *enode.Node), + remStaticCh: make(chan *enode.Node), + addPeerCh: make(chan *conn), + remPeerCh: make(chan *conn), } d.lastStatsLog = d.clock.Now() d.ctx, d.cancel = context.WithCancel(context.Background()) @@ -193,13 +191,6 @@ func (d *dialScheduler) stop() { d.wg.Wait() } -func (d *dialScheduler) updateIPRestrict(s []string) { - select { - case d.updateIPRestrictCh <- s: - case <-d.ctx.Done(): - } -} - // addStatic adds a static dial candidate. func (d *dialScheduler) addStatic(n *enode.Node) { select { @@ -271,7 +262,7 @@ loop: d.dialPeers++ } id := c.node.ID() - d.peers[id] = c + d.peers[id] = c.flags // Remove from static pool because the node is now connected. task := d.static[id] if task != nil && task.staticPoolIndex >= 0 { @@ -286,10 +277,6 @@ loop: delete(d.peers, c.node.ID()) d.updateStaticPool(c.node.ID()) - case ips := <-d.updateIPRestrictCh: - d.log.Trace("Update ip restrict", "ips", ips) - d.ipRestrict = ips - case node := <-d.addStaticCh: id := node.ID() _, exists := d.static[id] diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 9e8b3823ac36..60d45139e3f5 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -204,14 +204,6 @@ func (t *UDPv4) Resolve(n *enode.Node) *enode.Node { return n } -func (t *UDPv4) UpdateIPRestrict(ips []string) { - t.iprestrict = ips -} - -func (t *UDPv4) UpdatePrivateNodes(ips []string) { - t.privateNodes = ips -} - func (t *UDPv4) ourEndpoint() v4wire.Endpoint { n := t.Self() a := &net.UDPAddr{IP: n.IP(), Port: n.UDP()} diff --git a/p2p/server.go b/p2p/server.go index 92a3efb0d00b..65cec11facb3 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -199,10 +199,6 @@ type Server struct { quit chan struct{} addtrusted chan *enode.Node removetrusted chan *enode.Node - addiprestrict chan string - removeiprestrict chan string - addprivatenode chan string - removeprivatenode chan string peerOp chan peerOpFunc peerOpDone chan struct{} delpeer chan peerDrop @@ -384,34 +380,6 @@ func (srv *Server) RemoveTrustedPeer(node *enode.Node) { } } -func (srv *Server) AddIPRestrict(ip string) { - select { - case srv.addiprestrict <- ip: - case <-srv.quit: - } -} - -func (srv *Server) RemoveIPRestrict(ip string) { - select { - case srv.removeiprestrict <- ip: - case <-srv.quit: - } -} - -func (srv *Server) AddPrivateNode(node string) { - select { - case srv.addprivatenode <- node: - case <-srv.quit: - } -} - -func (srv *Server) RemovePrivateNode(node string) { - select { - case srv.removeprivatenode <- node: - case <-srv.quit: - } -} - // SubscribeEvents subscribes the given channel to peer events func (srv *Server) SubscribeEvents(ch chan *PeerEvent) event.Subscription { return srv.peerFeed.Subscribe(ch) @@ -509,10 +477,6 @@ func (srv *Server) Start() (err error) { srv.checkpointAddPeer = make(chan *conn) srv.addtrusted = make(chan *enode.Node) srv.removetrusted = make(chan *enode.Node) - srv.addiprestrict = make(chan string) - srv.removeiprestrict = make(chan string) - srv.addprivatenode = make(chan string) - srv.removeprivatenode = make(chan string) srv.peerOp = make(chan peerOpFunc) srv.peerOpDone = make(chan struct{}) @@ -802,76 +766,6 @@ running: p.rw.set(trustedConn, false) } - case ip := <-srv.addiprestrict: - srv.log.Trace("Adding ip restrict", "ip", ip) - - if len(restricts) == 0 { - for _, c := range srv.dialsched.peers { - if c.node.IP().String() != ip { - if p, ok := peers[c.node.ID()]; ok { - delete(peers, c.node.ID()) - srv.dialsched.peerRemoved(c) - if p.Inbound() { - inboundCount-- - } - } - } - } - } - - restricts[ip] = true - ips := []string{} - for ip, _ := range restricts { - ips = append(ips, ip) - } - srv.IPRestrict = ips - srv.dialsched.updateIPRestrict(ips) - srv.ntab.UpdateIPRestrict(ips) - - case ip := <-srv.removeiprestrict: - srv.log.Trace("Removing ip restrict", "ip", ip) - delete(restricts, ip) - ips := []string{} - for ip, _ := range restricts { - ips = append(ips, ip) - } - srv.IPRestrict = ips - srv.dialsched.updateIPRestrict(ips) - srv.ntab.UpdateIPRestrict(ips) - if len(restricts) > 0 { - for _, c := range srv.dialsched.peers { - if c.node.IP().String() == ip { - if p, ok := peers[c.node.ID()]; ok { - delete(peers, c.node.ID()) - srv.dialsched.peerRemoved(c) - if p.Inbound() { - inboundCount-- - } - } - } - } - } - - case p := <-srv.addprivatenode: - srv.log.Trace("Adding private node", "node", p) - privates[p] = true - ips := []string{} - for ip, _ := range privates { - ips = append(ips, ip) - } - srv.PrivateNodes = ips - srv.ntab.UpdatePrivateNodes(ips) - - case p := <-srv.removeprivatenode: - srv.log.Trace("Removing private node", "node", p) - delete(privates, p) - ips := []string{} - for ip, _ := range privates { - ips = append(ips, ip) - } - srv.PrivateNodes = ips - srv.ntab.UpdatePrivateNodes(ips) - case op := <-srv.peerOp: // This channel is used by Peers and PeerCount. op(peers) From 2b6434a5e9c822fc0a727a3e40c228a14db0cc0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 26 Jul 2022 18:45:52 +0700 Subject: [PATCH 125/147] config private node list by enode --- cmd/utils/flags.go | 2 +- node/api.go | 2 +- p2p/discover/common.go | 12 +++++++++++- p2p/discover/v4_udp.go | 4 ++-- p2p/discover/v5_udp.go | 4 ++-- p2p/enode/node.go | 15 +++++++++++++++ p2p/server.go | 38 ++++++++++++++++---------------------- 7 files changed, 48 insertions(+), 29 deletions(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 877369c1f7b2..4d1256af5b89 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1210,7 +1210,7 @@ func SetP2PConfig(ctx *cli.Context, cfg *p2p.Config) { } if privatenodes := ctx.GlobalString(PrivateNodeFlag.Name); privatenodes != "" { - cfg.PrivateNodes = netutil.ParseIPs(privatenodes) + cfg.PrivateNodes = enode.ParseNodes(privatenodes) } if ctx.GlobalBool(DeveloperFlag.Name) || ctx.GlobalBool(CatalystFlag.Name) { diff --git a/node/api.go b/node/api.go index 3f90cb4b6e0b..7e9ed6de9160 100644 --- a/node/api.go +++ b/node/api.go @@ -326,7 +326,7 @@ func (api *publicAdminAPI) Datadir() string { return api.node.DataDir() } -func (api *publicAdminAPI) PrivateNodes() ([]string, error) { +func (api *publicAdminAPI) PrivateNodes() ([]*enode.Node, error) { server := api.node.Server() if server == nil { return nil, ErrNodeStopped diff --git a/p2p/discover/common.go b/p2p/discover/common.go index cf5ca9713ebc..f8e61529881a 100644 --- a/p2p/discover/common.go +++ b/p2p/discover/common.go @@ -43,7 +43,7 @@ type Config struct { // These settings are optional: NetRestrict *netutil.Netlist // list of allowed IP networks IPRestrict []string // list of allowed IP addresses - PrivateNodes []string // list of private IPs + PrivateNodes []*enode.Node // list of private enodes Bootnodes []*enode.Node // list of bootstrap nodes Unhandled chan<- ReadPacket // unhandled packets are sent on this channel Log log.Logger // if set, log messages go here @@ -93,3 +93,13 @@ func has(s []string, str string) bool { return false } + +func containsEnode(nodes []*enode.Node, node *enode.Node) bool { + for _, n := range nodes { + if n.IP().Equal(node.IP()) || n.ID() == node.ID() { + return true + } + } + + return false +} diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index 60d45139e3f5..e219aebc5d52 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -69,7 +69,7 @@ type UDPv4 struct { log log.Logger netrestrict *netutil.Netlist iprestrict []string - privateNodes []string + privateNodes []*enode.Node priv *ecdsa.PrivateKey localNode *enode.LocalNode db *enode.DB @@ -736,7 +736,7 @@ func (t *UDPv4) handleFindnode(h *packetHandlerV4, from *net.UDPAddr, fromID eno var sent bool for _, n := range closest { // Don't advertise the private nodes - if len(t.privateNodes) > 0 && has(t.privateNodes, n.IP().String()) { + if len(t.privateNodes) > 0 && containsEnode(t.privateNodes, &n.Node) { continue } if netutil.CheckRelayIP(from.IP, n.IP()) == nil { diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index adce0f8c7be4..0e10998b88c8 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -66,7 +66,7 @@ type UDPv5 struct { tab *Table netrestrict *netutil.Netlist iprestrict []string - privateNodes []string + privateNodes []*enode.Node priv *ecdsa.PrivateKey localNode *enode.LocalNode db *enode.DB @@ -821,7 +821,7 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en // Apply some pre-checks to avoid sending invalid nodes. for _, n := range bn { // Don't advertise the private nodes - if len(t.privateNodes) > 0 && has(t.privateNodes, n.IP().String()) { + if len(t.privateNodes) > 0 && containsEnode(t.privateNodes, n) { continue } // TODO livenessChecks > 1 diff --git a/p2p/enode/node.go b/p2p/enode/node.go index d747ca331377..78bdf8960794 100644 --- a/p2p/enode/node.go +++ b/p2p/enode/node.go @@ -79,6 +79,21 @@ func Parse(validSchemes enr.IdentityScheme, input string) (*Node, error) { return New(validSchemes, &r) } +func ParseNodes(s string) []*Node { + ws := strings.NewReplacer(" ", "", "\n", "", "\t", "") + urls := strings.Split(ws.Replace(s), ",") + nodes := make([]*Node, 0) + for _, url := range urls { + if url == "" { + continue + } + if node, err := Parse(ValidSchemes, url); err == nil { + nodes = append(nodes, node) + } + } + return nodes +} + // ID returns the node identifier. func (n *Node) ID() ID { return n.id diff --git a/p2p/server.go b/p2p/server.go index 65cec11facb3..57ff3b1a48c5 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -115,9 +115,9 @@ type Config struct { TrustedNodes []*enode.Node // Broadcasting peers' info in the discovery mode can be ignored - // If this option is set to non-nil, the nodes which match one the the - // IPs contained in the list are not broadcasted. - PrivateNodes []string `toml:",omitempty"` + // If this option is set to non-nil, the nodes which match one the + // IPs/enodes contained in the list are not broadcasted. + PrivateNodes []*enode.Node `toml:",omitempty"` // Connectivity can be restricted to certain IP addresses // If this option is set to a non-nil, only nodes which match one of the @@ -600,12 +600,13 @@ func (srv *Server) setupDiscovery() error { sconn = &sharedUDPConn{conn, unhandled} } cfg := discover.Config{ - PrivateKey: srv.PrivateKey, - NetRestrict: srv.NetRestrict, - IPRestrict: srv.IPRestrict, - Bootnodes: srv.BootstrapNodes, - Unhandled: unhandled, - Log: srv.log, + PrivateKey: srv.PrivateKey, + NetRestrict: srv.NetRestrict, + IPRestrict: srv.IPRestrict, + PrivateNodes: srv.PrivateNodes, + Bootnodes: srv.BootstrapNodes, + Unhandled: unhandled, + Log: srv.log, } ntab, err := discover.ListenV4(conn, srv.localnode, cfg) if err != nil { @@ -618,11 +619,12 @@ func (srv *Server) setupDiscovery() error { // Discovery V5 if srv.DiscoveryV5 { cfg := discover.Config{ - PrivateKey: srv.PrivateKey, - NetRestrict: srv.NetRestrict, - IPRestrict: srv.IPRestrict, - Bootnodes: srv.BootstrapNodesV5, - Log: srv.log, + PrivateKey: srv.PrivateKey, + NetRestrict: srv.NetRestrict, + IPRestrict: srv.IPRestrict, + PrivateNodes: srv.PrivateNodes, + Bootnodes: srv.BootstrapNodesV5, + Log: srv.log, } var err error if sconn != nil { @@ -726,20 +728,12 @@ func (srv *Server) run() { peers = make(map[enode.ID]*Peer) inboundCount = 0 trusted = make(map[enode.ID]bool, len(srv.TrustedNodes)) - privates = make(map[string]bool, len(srv.PrivateNodes)) - restricts = make(map[string]bool, len(srv.IPRestrict)) ) // Put trusted nodes into a map to speed up checks. // Trusted peers are loaded on startup or added via AddTrustedPeer RPC. for _, n := range srv.TrustedNodes { trusted[n.ID()] = true } - for _, n := range srv.PrivateNodes { - privates[n] = true - } - for _, ip := range srv.IPRestrict { - restricts[ip] = true - } running: for { From d47eb05d37739f7d6487aee7634d8efaedbee83b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 27 Jul 2022 15:39:37 +0700 Subject: [PATCH 126/147] show more info for private node list --- node/api.go | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/node/api.go b/node/api.go index 7e9ed6de9160..5321aecf8285 100644 --- a/node/api.go +++ b/node/api.go @@ -326,12 +326,20 @@ func (api *publicAdminAPI) Datadir() string { return api.node.DataDir() } -func (api *publicAdminAPI) PrivateNodes() ([]*enode.Node, error) { +func (api *publicAdminAPI) PrivateNodes() ([]*p2p.NodeInfo, error) { server := api.node.Server() if server == nil { return nil, ErrNodeStopped } - return server.PrivateNodes, nil + infos := make([]*p2p.NodeInfo, 0, len(server.PrivateNodes)) + for _, node := range server.PrivateNodes { + infos = append(infos, &p2p.NodeInfo{ + ID: node.ID().String(), + Enode: node.URLv4(), + IP: node.IP().String(), + }) + } + return infos, nil } func (api *publicAdminAPI) Iprestrict() ([]string, error) { From 50cc96cf59e35e4782d30f845d62478b8c629ac7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 2 Aug 2022 09:08:17 +0700 Subject: [PATCH 127/147] correct private notes flag usage description --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 4d1256af5b89..d1e9222f6fec 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -662,7 +662,7 @@ var ( } PrivateNodeFlag = cli.StringFlag{ Name: "privatenodes", - Usage: "Set list of private nodes IP that not be advertise to public network", + Usage: "Comma separated enode URLs for not be advertise as peers to public network", } DNSDiscoveryFlag = cli.StringFlag{ Name: "discovery.dns", From 61d2a2acd87c0cc9e7780114815955c3a621f5d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 3 Aug 2022 06:51:21 +0700 Subject: [PATCH 128/147] polish the usage description for private nodes flag --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index d1e9222f6fec..fdded6c6250b 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -662,7 +662,7 @@ var ( } PrivateNodeFlag = cli.StringFlag{ Name: "privatenodes", - Usage: "Comma separated enode URLs for not be advertise as peers to public network", + Usage: "Comma separated enode URLs which must not be advertised as peers to public network", } DNSDiscoveryFlag = cli.StringFlag{ Name: "discovery.dns", From a8619dcb124afa6269dce581c74ab20b83912a4c Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Fri, 12 Aug 2022 16:14:23 +0300 Subject: [PATCH 129/147] add error handling for parsing of IPrestrictFlag/PrivateNodeFlag flags --- cmd/utils/flags.go | 18 +++++++++++++----- p2p/enode/node.go | 10 ++++++---- p2p/netutil/net.go | 10 ++++++---- 3 files changed, 25 insertions(+), 13 deletions(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index fdded6c6250b..96b17685d588 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -33,6 +33,10 @@ import ( "text/template" "time" + pcsclite "github.com/gballet/go-libpcsclite" + gopsutil "github.com/shirou/gopsutil/mem" + "gopkg.in/urfave/cli.v1" + "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/accounts/keystore" "github.com/ethereum/go-ethereum/common" @@ -66,9 +70,6 @@ import ( "github.com/ethereum/go-ethereum/p2p/nat" "github.com/ethereum/go-ethereum/p2p/netutil" "github.com/ethereum/go-ethereum/params" - pcsclite "github.com/gballet/go-libpcsclite" - gopsutil "github.com/shirou/gopsutil/mem" - "gopkg.in/urfave/cli.v1" ) func init() { @@ -1205,12 +1206,19 @@ func SetP2PConfig(ctx *cli.Context, cfg *p2p.Config) { cfg.NetRestrict = list } + var err error if iprestrict := ctx.GlobalString(IPrestrictFlag.Name); iprestrict != "" { - cfg.IPRestrict = netutil.ParseIPs(iprestrict) + cfg.IPRestrict, err = netutil.ParseIPs(iprestrict) + if err != nil { + Fatalf("Option %q: %v", IPrestrictFlag.Name, err) + } } if privatenodes := ctx.GlobalString(PrivateNodeFlag.Name); privatenodes != "" { - cfg.PrivateNodes = enode.ParseNodes(privatenodes) + cfg.PrivateNodes, err = enode.ParseNodes(privatenodes) + if err != nil { + Fatalf("Option %q: %v", PrivateNodeFlag.Name, err) + } } if ctx.GlobalBool(DeveloperFlag.Name) || ctx.GlobalBool(CatalystFlag.Name) { diff --git a/p2p/enode/node.go b/p2p/enode/node.go index 78bdf8960794..0ce4d82c52f7 100644 --- a/p2p/enode/node.go +++ b/p2p/enode/node.go @@ -79,7 +79,7 @@ func Parse(validSchemes enr.IdentityScheme, input string) (*Node, error) { return New(validSchemes, &r) } -func ParseNodes(s string) []*Node { +func ParseNodes(s string) ([]*Node, error) { ws := strings.NewReplacer(" ", "", "\n", "", "\t", "") urls := strings.Split(ws.Replace(s), ",") nodes := make([]*Node, 0) @@ -87,11 +87,13 @@ func ParseNodes(s string) []*Node { if url == "" { continue } - if node, err := Parse(ValidSchemes, url); err == nil { - nodes = append(nodes, node) + node, err := Parse(ValidSchemes, url) + if err != nil { + return nil, fmt.Errorf("couldn't parse enode %v: %v", url, err) } + nodes = append(nodes, node) } - return nodes + return nodes, nil } // ID returns the node identifier. diff --git a/p2p/netutil/net.go b/p2p/netutil/net.go index 09fda549162b..4e83d57d911c 100644 --- a/p2p/netutil/net.go +++ b/p2p/netutil/net.go @@ -87,7 +87,7 @@ func ParseNetlist(s string) (*Netlist, error) { return &l, nil } -func ParseIPs(s string) []string { +func ParseIPs(s string) ([]string, error) { ws := strings.NewReplacer(" ", "", "\n", "", "\t", "") ips := strings.Split(ws.Replace(s), ",") l := make([]string, 0) @@ -95,11 +95,13 @@ func ParseIPs(s string) []string { if ip == "" { continue } - if n := net.ParseIP(ip); n != nil { - l = append(l, n.String()) + n := net.ParseIP(ip) + if n == nil { + return nil, fmt.Errorf("couldn't parse IP address %v", ip) } + l = append(l, n.String()) } - return l + return l, nil } // MarshalTOML implements toml.MarshalerRec. From b59b8dfe0e1a6cbf2b915d7ec1ed34774e85ffb1 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi <1591639+s1na@users.noreply.github.com> Date: Fri, 1 Oct 2021 13:03:24 +0200 Subject: [PATCH 130/147] eth/tracers: fix callTracer fault handling (#23667) * eth/tracers: fix calltracer fault handling * eth/tracers: fix calltracer indentation --- eth/tracers/internal/tracers/assets.go | 6 +- eth/tracers/internal/tracers/call_tracer.js | 131 +++++++++----------- eth/tracers/tracer.go | 3 - 3 files changed, 64 insertions(+), 76 deletions(-) diff --git a/eth/tracers/internal/tracers/assets.go b/eth/tracers/internal/tracers/assets.go index 52cc7f39f519..0d13fa232500 100644 --- a/eth/tracers/internal/tracers/assets.go +++ b/eth/tracers/internal/tracers/assets.go @@ -2,7 +2,7 @@ // sources: // 4byte_tracer.js (2.933kB) // bigram_tracer.js (1.712kB) -// call_tracer.js (4.251kB) +// call_tracer.js (3.497kB) // call_tracer_legacy.js (8.956kB) // evmdis_tracer.js (4.195kB) // noop_tracer.js (1.271kB) @@ -118,7 +118,7 @@ func bigram_tracerJs() (*asset, error) { return a, nil } -var _call_tracerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x57\x4f\x6f\xdb\xb8\x12\x3f\xcb\x9f\x62\x5e\x0e\xb5\x8d\xba\x56\xd2\x07\xf4\xe0\xd6\x05\xfc\x82\xa4\x35\x90\x97\x04\x8e\xb3\x45\x10\xe4\x40\x5b\x23\x89\x2d\x4d\x0a\x24\x15\xc7\xdb\xfa\xbb\x2f\x86\x94\x64\x49\xb1\xd3\xec\x69\xb1\x39\xc5\xc3\xdf\xfc\x66\x38\xff\x38\x0a\x43\x38\x55\xd9\x46\xf3\x24\xb5\xf0\xfe\xf8\xfd\x09\xcc\x53\x84\x44\xbd\x43\x9b\xa2\xc6\x7c\x05\x93\xdc\xa6\x4a\x9b\x4e\x18\xc2\x3c\xe5\x06\x62\x2e\x10\xb8\x81\x8c\x69\x0b\x2a\x06\xdb\xc2\x0b\xbe\xd0\x4c\x6f\x86\x9d\x30\xf4\x3a\x7b\x8f\x89\x21\xd6\x88\x60\x54\x6c\xd7\x4c\xe3\x08\x36\x2a\x87\x25\x93\xa0\x31\xe2\xc6\x6a\xbe\xc8\x2d\x02\xb7\xc0\x64\x14\x2a\x0d\x2b\x15\xf1\x78\x43\x94\xdc\x42\x2e\x23\xd4\xce\xb4\x45\xbd\x32\xa5\x1f\x5f\x2e\x6f\xe1\x02\x8d\x41\x0d\x5f\x50\xa2\x66\x02\xae\xf3\x85\xe0\x4b\xb8\xe0\x4b\x94\x06\x81\x19\xc8\x48\x62\x52\x8c\x60\xe1\xe8\x48\xf1\x9c\x5c\xb9\x29\x5c\x81\x73\x95\xcb\x88\x59\xae\xe4\x00\x90\x93\xe7\xf0\x88\xda\x70\x25\xe1\xbf\xa5\xa9\x82\x70\x00\x4a\x13\x49\x8f\x59\xba\x80\x06\x95\x91\x5e\x1f\x98\xdc\x80\x60\x76\xa7\xfa\x8a\x80\xec\xee\x1d\x01\x97\xce\x4c\xaa\x32\x04\x9b\x32\x4b\xb7\x5e\x73\x21\x60\x81\x90\x1b\x8c\x73\x31\x20\xb6\x45\x6e\xe1\xdb\x74\xfe\xf5\xea\x76\x0e\x93\xcb\x3b\xf8\x36\x99\xcd\x26\x97\xf3\xbb\x8f\xb0\xe6\x36\x55\xb9\x05\x7c\x44\x4f\xc5\x57\x99\xe0\x18\xc1\x9a\x69\xcd\xa4\xdd\x80\x8a\x89\xe1\xff\x67\xb3\xd3\xaf\x93\xcb\xf9\xe4\x7f\xd3\x8b\xe9\xfc\x0e\x94\x86\xf3\xe9\xfc\xf2\xec\xe6\x06\xce\xaf\x66\x30\x81\xeb\xc9\x6c\x3e\x3d\xbd\xbd\x98\xcc\xe0\xfa\x76\x76\x7d\x75\x73\x36\x84\x1b\x24\xaf\x90\xf4\x7f\x1f\xf3\xd8\x65\x4f\x23\x44\x68\x19\x17\xa6\x8c\xc4\x9d\xca\xc1\xa4\x2a\x17\x11\xa4\xec\x11\x41\xe3\x12\xf9\x23\x46\xc0\x60\xa9\xb2\xcd\xab\x93\x4a\x5c\x4c\x28\x99\xb8\x3b\x1f\x2c\x48\x98\xc6\x20\x95\x1d\x80\x41\x84\x4f\xa9\xb5\xd9\x28\x0c\xd7\xeb\xf5\x30\x91\xf9\x50\xe9\x24\x14\x9e\xce\x84\x9f\x87\x9d\x0e\x91\x2e\x99\x10\xe7\x9a\xad\x70\xae\xd9\x12\x35\xc5\xdd\x38\x7a\x89\x6b\x77\x08\x31\x9d\x82\xd5\x6c\xc9\x65\x02\x2b\xb4\xa9\x8a\x0c\x58\x05\x1a\x33\xa5\x6d\x91\x29\xe0\x32\x56\x7a\xe5\x2a\xca\x39\xbb\xa0\xc4\x70\x69\x51\x4b\x26\x60\x85\xc6\xb0\x04\x5d\x15\x33\x22\x93\x86\x2d\xad\x2b\x99\x9f\x1d\x00\x70\xa6\x8c\x65\xcb\x1f\x23\xb8\xff\xb9\x7d\x18\x38\x61\xcc\x72\x61\x47\x10\xe7\xd2\x61\x7b\x42\x25\x03\x88\x16\x7d\xf0\x3a\xf4\xf7\xc8\x34\x08\x94\x30\x06\x9b\x72\x33\xac\x68\x86\x02\x65\x62\xd3\x0a\xc7\x63\xe8\x11\xee\x33\x9c\xd4\xd5\x4b\x0a\x77\xd3\x67\x1c\x99\xca\x7a\xfd\x06\x96\x68\x9a\xa0\x7b\x81\xf2\xdd\xc9\x83\x17\xc0\x78\x3c\x76\x8d\x1b\x73\x89\x51\xdb\x10\xfd\xbd\xa8\x0c\xf7\x0f\x0d\x85\x6d\xe7\x95\xaa\xc3\x2c\x37\x69\x8f\xfe\xdd\xb9\xeb\x95\xb7\x3e\x92\x1a\x4d\x33\x94\x4b\xfb\xd4\x0e\x65\x18\xc2\xb5\xc6\x8c\xa6\x83\xca\xa9\xab\x8b\xa4\xb9\xd4\x36\x02\xee\xd9\x60\xdc\xba\x9f\xdd\x64\x38\x72\xc9\xb4\x4f\x43\xfa\x31\x68\x1c\xc7\x5a\xad\xdc\xb1\x55\x5f\xf1\x89\x3c\x18\x92\xa8\xdf\x44\x59\x35\x2a\xff\x29\x51\x56\xb5\x30\x8f\x4c\xe4\xce\x52\xf7\xf8\xa9\x0b\x6f\x9d\x3d\x27\x1b\x5a\x75\x63\x35\x97\x49\xef\xe4\x43\x4b\x27\x61\xc6\x13\x17\x3a\x0b\x9e\x4c\xa5\x75\xfc\x09\x33\xfd\x97\x35\x6f\x0d\x46\xa3\xfd\x9a\x74\xf4\x92\x36\x97\x59\x6e\x47\x8d\xfb\x38\x51\x0b\xa6\x72\xeb\x71\x3b\x98\x17\xd5\x70\xdb\x46\x35\xb7\xca\xe1\xb8\xac\xa2\xff\x1c\x2e\x41\x9f\xb7\xaa\xda\x0e\x30\xbc\xda\x1e\x6a\xad\xf4\x2b\xec\x79\xdc\x3e\x7b\xee\x64\x67\x0f\x50\x18\x74\xc6\xe8\xfe\x7f\x97\xbe\xd2\x39\x70\x81\x06\xbc\x41\x0b\x6f\xde\xec\x39\x3e\xc2\x27\x5c\xe6\xd4\x2d\xa0\xf1\x11\xb5\xc5\xe8\x08\x7e\xfd\x2a\xcd\xfa\xf4\x50\xc7\x1f\x1d\x3f\x1d\xf5\x9b\xae\x45\x28\xd0\x62\x13\x5a\x73\xab\xb3\xbb\x82\xcd\xb5\xf4\x91\x89\xb9\x64\x82\xff\x89\x85\x27\xfd\x7a\xff\x22\x0d\xd2\x5a\xfb\xba\xa1\xdc\x9e\x83\xc5\x10\xdb\xd7\x94\x0e\x3f\x4c\xd0\xce\x37\x19\xf6\xfa\xfb\x1a\xd3\x17\x5e\x05\x3c\xd7\x6a\xd5\xeb\xef\x69\xce\x16\x6e\xae\x9e\xa1\x8a\x92\x6f\x01\xa7\x24\x7d\x86\x75\x6d\xd9\x6c\xac\x4a\xe3\x0b\x33\xbd\x7e\xad\xb7\xba\x27\x1f\xba\x07\xdb\xa1\xd2\xfa\x83\x06\x41\xaf\xdf\x2a\x9c\x66\x50\x28\x52\x7e\x62\x8c\x0f\xd8\x2e\x58\x9a\x9d\xbd\xc7\x74\xfb\xc5\x68\xce\xe1\x32\x7b\x4f\xdc\xb6\x93\x37\xf3\x49\xfe\xe7\x9e\x32\x17\x83\x62\x80\xc1\x78\x5f\x0e\xbc\x8b\x45\x26\x08\xf6\x3c\x1b\xcf\xac\x97\xcd\xd8\x22\x38\x23\xf1\x9e\xb7\xb4\x80\xff\xee\xd5\x74\xbe\x96\x0d\x57\x2f\xac\x9d\x85\x2b\x77\xda\xeb\x37\x6d\x14\x23\xe5\x00\x63\xe9\x6c\x73\x6a\xd4\xfd\x73\x30\x6a\x21\xe7\x63\xf7\x74\x76\x36\x99\x9f\x75\x69\x0a\xec\x3d\x79\xdf\xdd\xe7\x3d\xec\x06\x82\xd7\x52\xcf\x20\xdb\x17\xde\x7d\xca\xf5\xbb\x31\x9c\xfc\xeb\x17\x91\x20\x0c\xa1\x1c\x72\xb4\x09\x6b\x64\x16\x0d\xad\xc2\x54\xb2\x6a\xf1\x1d\x97\xb4\x4e\xd2\x9a\x49\x1b\xa8\x83\x42\x84\x86\x6b\x8c\x20\xe6\x28\x22\x50\xf4\x4d\x44\xcb\xf6\x77\xa3\xa4\x23\x34\xa8\x39\x31\xba\xcd\x73\xe8\xbf\xdf\x38\x91\x4a\xbe\x44\xbb\x81\x18\x99\xcd\x35\xd2\xc2\x9a\x31\x63\x60\x85\x4c\x72\x99\xc4\xb9\x10\x1b\x50\x3a\x42\x22\xf7\x13\xd7\x38\x42\xab\x68\xa5\xd5\x06\xd6\xa9\x82\x48\xc9\x6e\xb1\xc6\x66\x1a\xe9\x0b\x65\x00\xdf\x73\x63\xe9\x3b\x26\x13\x6c\x03\xdc\x0e\x3b\x41\x79\xa9\xfa\x7e\x45\x21\x80\x9f\x9d\x20\xa0\xae\x30\x8a\x5e\x0f\x37\x9b\x83\x20\xd8\xed\x49\x65\x0d\x0d\x48\x5c\xed\x47\x4e\x4c\xbf\x9c\xb8\x5a\x88\x8a\xda\x71\xc2\x6a\x03\xda\x4d\x32\x27\xaf\xb6\x9c\xb2\xbb\x4b\xa9\xdf\x60\xea\x3d\xef\x4e\xaa\xed\xc4\x9d\xb8\x5f\x4e\x5e\xad\x23\xb5\xce\x73\x07\xae\x55\x46\x8d\x06\xf2\x5e\xf2\x55\xfd\x4e\x7c\xe5\xfd\x71\x45\x51\xc1\xdd\x2f\x92\x6f\x3b\x41\x40\x59\xec\x51\x70\x7e\xe0\x86\x3e\x05\x7d\x8c\x7c\xcc\x02\x2a\x6f\x2f\xb8\xff\x81\x9b\x87\xe7\xe5\x1c\x04\x41\x50\xf4\x54\x0d\x47\xe2\x6d\xc1\xbf\xa3\x38\xb4\x18\x05\x35\x27\xf8\xf8\xf8\x23\xf0\x4f\x75\x85\x62\xee\x7e\x04\xfe\xf6\x6d\x69\xb2\x7e\x7e\xcf\x1f\xca\x39\x5b\x3d\xdd\xad\xf3\x7e\xdd\xa1\xe2\xad\xf7\x90\x4e\xb0\xed\x6c\x3b\x7f\x05\x00\x00\xff\xff\x71\x10\x40\x55\x9b\x10\x00\x00") +var _call_tracerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5f\x6f\xdb\x38\x0c\x7f\x8e\x3f\x05\xaf\x0f\x4b\x82\x65\x71\xbb\x03\xf6\xd0\x2d\x03\x72\x45\xbb\x05\xe8\xb5\x45\x9a\xde\x50\x14\x7d\x50\x6c\xda\xd6\xa6\x48\x86\x44\x37\xcd\x6d\xfd\xee\x07\x4a\x76\x6a\x67\x59\x6f\x2f\x06\x2c\x92\x3f\xfe\xfb\x51\x54\x1c\xc3\x89\x29\x37\x56\xe6\x05\xc1\xdb\xc3\xb7\x47\xb0\x28\x10\x72\xf3\x06\xa9\x40\x8b\xd5\x0a\xa6\x15\x15\xc6\xba\x28\x8e\x61\x51\x48\x07\x99\x54\x08\xd2\x41\x29\x2c\x81\xc9\x80\x76\xf4\x95\x5c\x5a\x61\x37\xe3\x28\x8e\x83\xcd\x5e\x31\x23\x64\x16\x11\x9c\xc9\x68\x2d\x2c\x1e\xc3\xc6\x54\x90\x08\x0d\x16\x53\xe9\xc8\xca\x65\x45\x08\x92\x40\xe8\x34\x36\x16\x56\x26\x95\xd9\x86\x21\x25\x41\xa5\x53\xb4\xde\x35\xa1\x5d\xb9\x26\x8e\x4f\x17\x37\x70\x8e\xce\xa1\x85\x4f\xa8\xd1\x0a\x05\x57\xd5\x52\xc9\x04\xce\x65\x82\xda\x21\x08\x07\x25\x9f\xb8\x02\x53\x58\x7a\x38\x36\x3c\xe3\x50\xae\xeb\x50\xe0\xcc\x54\x3a\x15\x24\x8d\x1e\x01\x4a\x8e\x1c\x1e\xd0\x3a\x69\x34\xfc\xd9\xb8\xaa\x01\x47\x60\x2c\x83\x0c\x04\x71\x02\x16\x4c\xc9\x76\x43\x10\x7a\x03\x4a\xd0\xb3\xe9\x6f\x14\xe4\x39\xef\x14\xa4\xf6\x6e\x0a\x53\x22\x50\x21\x88\xb3\x5e\x4b\xa5\x60\x89\x50\x39\xcc\x2a\x35\x62\xb4\x65\x45\xf0\x65\xb6\xf8\x7c\x79\xb3\x80\xe9\xc5\x2d\x7c\x99\xce\xe7\xd3\x8b\xc5\xed\x7b\x58\x4b\x2a\x4c\x45\x80\x0f\x18\xa0\xe4\xaa\x54\x12\x53\x58\x0b\x6b\x85\xa6\x0d\x98\x8c\x11\xfe\x3e\x9d\x9f\x7c\x9e\x5e\x2c\xa6\x7f\xcd\xce\x67\x8b\x5b\x30\x16\xce\x66\x8b\x8b\xd3\xeb\x6b\x38\xbb\x9c\xc3\x14\xae\xa6\xf3\xc5\xec\xe4\xe6\x7c\x3a\x87\xab\x9b\xf9\xd5\xe5\xf5\xe9\x18\xae\x91\xa3\x42\xb6\xff\xff\x9a\x67\xbe\x7b\x16\x21\x45\x12\x52\xb9\xa6\x12\xb7\xa6\x02\x57\x98\x4a\xa5\x50\x88\x07\x04\x8b\x09\xca\x07\x4c\x41\x40\x62\xca\xcd\x6f\x37\x95\xb1\x84\x32\x3a\xf7\x39\xff\x92\x90\x30\xcb\x40\x1b\x1a\x81\x43\x84\x0f\x05\x51\x79\x1c\xc7\xeb\xf5\x7a\x9c\xeb\x6a\x6c\x6c\x1e\xab\x00\xe7\xe2\x8f\xe3\x28\x62\xd0\x44\x28\x75\x66\xc5\x0a\x17\x56\x24\x68\xb9\xee\xce\xc3\x6b\x5c\x7b\x21\x64\x2c\x05\xb2\x22\x91\x3a\x87\x15\x52\x61\x52\x07\x64\xc0\x62\x69\x2c\xd5\x9d\x02\xa9\x33\x63\x57\x9e\x51\x3e\xd8\x25\x37\x46\x6a\x42\xab\x85\x82\x15\x3a\x27\x72\xf4\x2c\x16\x0c\xa6\x9d\x48\xc8\x53\xe6\x7b\xd4\x63\x3f\x8e\x44\xf2\xed\x18\xee\xbe\x3f\xdd\x8f\xa2\x5e\x26\x2a\x45\xc7\x90\x55\xda\x6b\x0d\x94\xc9\x47\x90\x2e\x87\xf0\xfd\x69\x14\xf5\x2c\xba\xae\x38\xa1\xc7\x5a\x1c\xf5\x7a\x71\x0c\x57\x16\x4b\x66\xb9\xa9\x98\x9d\xb5\x73\x1f\x62\xd4\xeb\x3d\x08\x0b\x01\x01\x26\xde\xa0\x47\x9b\x12\x8f\x01\x00\x12\x7a\x1c\xf3\xcf\x88\x4f\x33\x6b\x56\xfe\x94\xcc\x67\x7c\x64\x1f\x63\x3e\x1a\x7a\x21\x19\x2f\x6a\x0b\xc9\x04\xd1\x83\x50\x95\x87\xeb\x1f\x3e\xf6\xe1\xb5\x07\xf5\x67\x63\x32\xd7\x64\xa5\xce\x07\x47\xef\x82\x6a\x2e\x5c\x80\xa9\x55\x97\x32\x9f\x69\xf2\x68\xb9\x70\xc3\xbd\x06\x37\x0e\xd3\xe3\xfd\x06\x2c\xda\x63\x24\x75\x59\xd1\x71\x27\x56\x7f\x14\xa4\xa6\xa2\x20\x7e\x96\x86\x23\x2f\x7e\x8a\x7a\x3d\x99\xc1\x80\x0a\xe9\xc6\xdb\x3e\xdd\x1d\xde\x87\x1f\xf8\x63\x32\xf1\x37\x55\x26\x35\xa6\xa1\xfe\x75\x7b\x6a\x85\x09\xfc\xc2\xf4\x45\x70\xb4\xd6\xd8\x97\xc0\x83\xc2\x3e\x70\x2f\x61\x70\x40\xe5\x10\x18\x9f\x73\xfa\x6d\xc4\xad\x72\x2b\xc0\x8e\x4a\x07\x03\x5e\xbd\xda\x23\x3e\xc0\x47\x4c\x2a\xa6\x26\x58\x7c\x40\x4b\x98\x1e\xc0\x8f\x1f\x35\xed\xea\xfa\xc2\x64\x32\x39\x38\x7c\x3c\x18\xd6\x71\xa4\xa8\x90\xb0\xab\xe3\x63\x88\x38\x46\xaa\xac\x0e\xd9\x66\x52\x0b\x25\xff\xc5\xda\xed\x30\xea\xf1\x4c\x20\x8f\x5a\x6b\x24\xfc\xd8\x06\x64\x26\xbc\x1f\xe5\x0e\xdd\xbd\xc2\x38\x47\x5a\x6c\x4a\x1c\x0c\x5b\x94\x0f\x44\xd8\xca\xcf\xac\x59\x0d\x86\xcf\xb4\xdf\x11\x2f\x4c\x23\xac\x79\xb6\x23\x9f\xf1\x69\xa3\xe2\x09\xdf\xe5\xee\x56\xf1\x93\x70\x83\x61\x8b\xbe\xfd\xa3\x77\xfd\x0e\x07\xb7\x9a\xff\xf0\x34\x0d\x86\x3b\xdd\xf4\xb9\x71\x9e\x61\xda\x26\xbf\x70\x53\x1b\x77\xe7\xa4\xf6\xd2\x65\xd3\xb8\xac\x5c\x31\xe0\xdf\xa6\xc6\x8f\x92\x76\x4b\x3c\x0f\x4d\xd8\x16\x5a\xa1\xfe\x89\x96\x63\x85\x3a\xa7\xa2\x4e\x83\x35\x3e\xc2\x51\xdd\xf5\x56\x73\x76\xbd\x9b\x72\x30\xdc\xe6\x54\x8f\x37\x4c\xf6\x95\x2f\x04\x51\x17\x91\xd5\x7e\x2e\x64\xe3\xab\xa1\xf9\x8e\xdd\x29\x1f\x07\x77\x1c\x63\xad\xb5\x67\x5a\x42\x34\x0d\x83\xdb\xcd\x7e\x06\xbb\xf4\xd2\xc1\xd0\xc3\xd5\x73\xd8\x32\x6e\x42\x68\xa6\x2c\xb8\xf4\x22\xa6\xa6\x77\xdb\x3f\x99\x9f\x4e\x17\xa7\x7d\x9e\x9a\xbd\x92\xb7\xfd\x26\xa0\x66\x70\x82\x9a\xf1\x67\x4f\x51\xf3\xe1\x6a\xbf\x99\xc0\x51\x93\xd9\xce\x85\xa1\x50\xbf\x39\x6a\x2e\xb3\xbd\xf9\xbe\x68\x00\x77\xf7\x5b\x4f\x2f\x28\x76\x98\xc4\xda\xcc\xa6\x38\x86\x66\x94\xf9\x5d\x60\x51\x10\x3a\x7e\x18\x30\x1b\xcc\xf2\x2b\x26\xbc\x5c\x79\xe9\xf2\x3e\xf6\xaa\x90\xa2\x93\x16\x53\xc8\x24\xaa\x14\x0c\xbf\x10\xf9\xe9\xf1\xd5\x19\xed\x01\x1d\x5a\xc9\x88\x7e\x0f\x8f\xc3\x6b\x56\x32\xa8\x96\x09\xd2\x06\x32\x14\x54\x59\xe4\xf5\x5d\x0a\xe7\x60\x85\x42\x4b\x9d\x67\x95\x52\x1b\x30\x36\x45\x06\x0f\xf7\x8a\xf3\x80\x64\x78\xc1\x5b\x07\xeb\xc2\x40\x6a\x74\xbf\x5e\xea\xa5\x45\x7e\xaf\x8d\xe0\x6b\xe5\x88\x5f\x75\xa5\x12\x1b\x90\x34\x8e\x7a\x4d\x52\xed\xfd\xcc\x99\x6f\x47\xc4\x19\xbe\x10\x7f\x5e\xbe\x4d\x9b\xbb\xdb\xd7\x1f\xf3\x5f\x77\xef\xd6\xdd\xee\x6e\xdc\xe7\xe9\xef\xae\xd7\x66\x82\xba\x3b\xb4\x3d\x57\xdd\x45\xe9\x25\xfe\xaf\xbb\x22\x5b\xdc\xf7\x02\xcf\xe0\xad\x81\xff\x0b\x51\xca\x55\x3b\x27\xb9\x0a\xf1\x78\x2e\x6c\xd5\xfd\x5f\x73\xbf\x71\x17\x07\x5c\x9c\x6f\xb8\xe1\x87\x71\xa8\x51\xcd\x41\xe6\x6d\x38\xb8\xfb\x86\x9b\xfb\xfd\x3c\xad\xa7\xa0\xa5\xd7\x30\xb3\xb9\x3f\x83\xe8\x85\xc5\xbd\x0d\x42\x4e\x0e\xdf\x83\xfc\xd0\x36\xa8\xef\xb0\xf7\x20\x5f\xbf\x6e\x5c\xb6\xe5\x77\xf2\xbe\xb9\xc2\xb6\x0b\x6a\x47\x3e\x6c\x07\x54\x6f\xb4\xa0\x12\xf5\x9e\xa2\xa7\xe8\xbf\x00\x00\x00\xff\xff\x2a\xac\x9f\xff\xa9\x0d\x00\x00") func call_tracerJsBytes() ([]byte, error) { return bindataRead( @@ -134,7 +134,7 @@ func call_tracerJs() (*asset, error) { } info := bindataFileInfo{name: "call_tracer.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x54, 0x29, 0x1, 0x3b, 0x86, 0xea, 0xb2, 0x35, 0xbd, 0x97, 0xb1, 0x17, 0x8c, 0x17, 0x79, 0x1c, 0x4c, 0x8e, 0x7b, 0xe2, 0x5f, 0x11, 0x59, 0xa0, 0x94, 0x35, 0x43, 0xec, 0x18, 0x2a, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0x13, 0x7a, 0x14, 0xbf, 0xa7, 0x49, 0x4f, 0xb4, 0x4f, 0x45, 0x1, 0xbc, 0x9e, 0xd1, 0x8e, 0xc7, 0xee, 0x61, 0xfa, 0x82, 0x52, 0xa4, 0x78, 0xfe, 0xff, 0xb1, 0x68, 0x1d, 0xcc, 0x1d, 0x8e}} return a, nil } diff --git a/eth/tracers/internal/tracers/call_tracer.js b/eth/tracers/internal/tracers/call_tracer.js index 98cfa0e6d455..7da7bf216a25 100644 --- a/eth/tracers/internal/tracers/call_tracer.js +++ b/eth/tracers/internal/tracers/call_tracer.js @@ -18,77 +18,68 @@ // callFrameTracer uses the new call frame tracing methods to report useful information // about internal messages of a transaction. { - callstack: [{}], - fault: function(log, db) { - var len = this.callstack.length - if (len > 1) { - var call = this.callstack.pop() - if (this.callstack[len-1].calls === undefined) { - this.callstack[len-1].calls = [] - } - this.callstack[len-1].calls.push(call) - } - }, - result: function(ctx, db) { - // Prepare outer message info - var result = { - type: ctx.type, - from: toHex(ctx.from), - to: toHex(ctx.to), - value: '0x' + ctx.value.toString(16), - gas: '0x' + bigInt(ctx.gas).toString(16), - gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), - input: toHex(ctx.input), - output: toHex(ctx.output), - } - if (this.callstack[0].calls !== undefined) { - result.calls = this.callstack[0].calls - } - if (this.callstack[0].error !== undefined) { - result.error = this.callstack[0].error - } else if (ctx.error !== undefined) { - result.error = ctx.error - } - if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { - delete result.output - } + callstack: [{}], + fault: function(log, db) {}, + result: function(ctx, db) { + // Prepare outer message info + var result = { + type: ctx.type, + from: toHex(ctx.from), + to: toHex(ctx.to), + value: '0x' + ctx.value.toString(16), + gas: '0x' + bigInt(ctx.gas).toString(16), + gasUsed: '0x' + bigInt(ctx.gasUsed).toString(16), + input: toHex(ctx.input), + output: toHex(ctx.output), + } + if (this.callstack[0].calls !== undefined) { + result.calls = this.callstack[0].calls + } + if (this.callstack[0].error !== undefined) { + result.error = this.callstack[0].error + } else if (ctx.error !== undefined) { + result.error = ctx.error + } + if (result.error !== undefined && (result.error !== "execution reverted" || result.output ==="0x")) { + delete result.output + } - return this.finalize(result) - }, - enter: function(frame) { - var call = { - type: frame.getType(), - from: toHex(frame.getFrom()), - to: toHex(frame.getTo()), - input: toHex(frame.getInput()), - gas: '0x' + bigInt(frame.getGas()).toString('16'), - } - if (frame.getValue() !== undefined){ - call.value='0x' + bigInt(frame.getValue()).toString(16) - } - this.callstack.push(call) - }, - exit: function(frameResult) { - var len = this.callstack.length - if (len > 1) { - var call = this.callstack.pop() - call.gasUsed = '0x' + bigInt(frameResult.getGasUsed()).toString('16') - var error = frameResult.getError() - if (error === undefined) { - call.output = toHex(frameResult.getOutput()) - } else { - call.error = error - if (call.type === 'CREATE' || call.type === 'CREATE2') { - delete call.to - } - } - len -= 1 - if (this.callstack[len-1].calls === undefined) { - this.callstack[len-1].calls = [] - } - this.callstack[len-1].calls.push(call) - } - }, + return this.finalize(result) + }, + enter: function(frame) { + var call = { + type: frame.getType(), + from: toHex(frame.getFrom()), + to: toHex(frame.getTo()), + input: toHex(frame.getInput()), + gas: '0x' + bigInt(frame.getGas()).toString('16'), + } + if (frame.getValue() !== undefined){ + call.value='0x' + bigInt(frame.getValue()).toString(16) + } + this.callstack.push(call) + }, + exit: function(frameResult) { + var len = this.callstack.length + if (len > 1) { + var call = this.callstack.pop() + call.gasUsed = '0x' + bigInt(frameResult.getGasUsed()).toString('16') + var error = frameResult.getError() + if (error === undefined) { + call.output = toHex(frameResult.getOutput()) + } else { + call.error = error + if (call.type === 'CREATE' || call.type === 'CREATE2') { + delete call.to + } + } + len -= 1 + if (this.callstack[len-1].calls === undefined) { + this.callstack[len-1].calls = [] + } + this.callstack[len-1].calls.push(call) + } + }, // finalize recreates a call object using the final desired field oder for json // serialization. This is a nicety feature to pass meaningfully ordered results // to users who don't interpret it, just display it. diff --git a/eth/tracers/tracer.go b/eth/tracers/tracer.go index 88990eb5d362..e0513e2e3e25 100644 --- a/eth/tracers/tracer.go +++ b/eth/tracers/tracer.go @@ -794,9 +794,6 @@ func (jst *Tracer) CaptureExit(output []byte, gasUsed uint64, err error) { if !jst.traceCallFrames { return } - if jst.err != nil { - return - } // If tracing was interrupted, set the error and stop if atomic.LoadUint32(&jst.interrupt) > 0 { jst.err = jst.reason From 66dace009c936fdcd4ed57310629b568cc0c31fd Mon Sep 17 00:00:00 2001 From: Jan Kalina Date: Mon, 19 Sep 2022 20:42:26 +0200 Subject: [PATCH 131/147] Block non-opera nodes from discovery --- p2p/enode/idscheme.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/p2p/enode/idscheme.go b/p2p/enode/idscheme.go index c1834f06995c..d608a89c1fbc 100644 --- a/p2p/enode/idscheme.go +++ b/p2p/enode/idscheme.go @@ -19,6 +19,7 @@ package enode import ( "crypto/ecdsa" "fmt" + "github.com/ethereum/go-ethereum/core/forkid" "io" "github.com/ethereum/go-ethereum/common/math" @@ -62,6 +63,12 @@ func SignV4(r *enr.Record, privkey *ecdsa.PrivateKey) error { } func (V4ID) Verify(r *enr.Record, sig []byte) error { + var opera operaNodeEnrEntry + err := r.Load(&opera) + if err != nil { + return fmt.Errorf("invalid opera node; %s", err.Error()) + } + var entry s256raw if err := r.Load(&entry); err != nil { return err @@ -158,3 +165,16 @@ func SignNull(r *enr.Record, id ID) *Node { } return &Node{r: *r, id: id} } + +// operaNodeEnrEntry is the ENR entry which advertises `eth` protocol on the discovery. +type operaNodeEnrEntry struct { + ForkID forkid.ID // Fork identifier per EIP-2124 + + // Ignore additional fields (for forward compatibility). + Rest []rlp.RawValue `rlp:"tail"` +} + +// ENRKey implements enr.Entry. +func (e operaNodeEnrEntry) ENRKey() string { + return "opera" +} From 03acb9189ba453312d2faf52f21b9015777e54ea Mon Sep 17 00:00:00 2001 From: Jan Kalina Date: Thu, 15 Sep 2022 20:27:18 +0200 Subject: [PATCH 132/147] Add possibility to configure RPC execution time limit --- rpc/handler.go | 15 ++++++++++++++- rpc/service.go | 4 ---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/rpc/handler.go b/rpc/handler.go index 85f774a1b7f9..b1497cd458e3 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -28,6 +28,15 @@ import ( "github.com/ethereum/go-ethereum/log" ) +var ( + executionTimeLimit = 5 * time.Second +) + +// SetExecutionTimeLimit sets execution limit for RPC method calls +func SetExecutionTimeLimit(limit time.Duration) { + executionTimeLimit = limit +} + // handler handles JSON-RPC messages. There is one handler per connection. Note that // handler is not safe for concurrent use. Message handling never blocks indefinitely // because RPCs are processed on background goroutines launched by handler. @@ -334,7 +343,11 @@ func (h *handler) handleCall(cp *callProc, msg *jsonrpcMessage) *jsonrpcMessage return msg.errorResponse(&invalidParamsError{err.Error()}) } start := time.Now() - answer := h.runMethod(cp.ctx, msg, callb, args) + + ctx, cancel := context.WithTimeout(cp.ctx, executionTimeLimit) + defer cancel() + + answer := h.runMethod(ctx, msg, callb, args) // Collect the statistics for RPC calls if metrics is enabled. // We only care about pure rpc call. Filter out subscription. diff --git a/rpc/service.go b/rpc/service.go index e2b26c5b74dc..bef891ea1125 100644 --- a/rpc/service.go +++ b/rpc/service.go @@ -24,7 +24,6 @@ import ( "runtime" "strings" "sync" - "time" "unicode" "github.com/ethereum/go-ethereum/log" @@ -183,9 +182,6 @@ func (c *callback) makeArgTypes() { // call invokes the callback. func (c *callback) call(ctx context.Context, method string, args []reflect.Value) (res interface{}, errRes error) { - ctx, cancel := context.WithTimeout(ctx, 5*time.Second) - defer cancel() - // Create the argument slice. fullargs := make([]reflect.Value, 0, 2+len(args)) if c.rcvr.IsValid() { From a8badd28898b723e2fd784d6b211f613aa19fa11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 29 Sep 2022 22:21:26 +0700 Subject: [PATCH 133/147] p2p: add private nodes as static node as well --- p2p/server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/p2p/server.go b/p2p/server.go index 57ff3b1a48c5..4b07b216ed8b 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -657,6 +657,9 @@ func (srv *Server) setupDialScheduler() { config.dialer = tcpDialer{&net.Dialer{Timeout: defaultDialTimeout}} } srv.dialsched = newDialScheduler(config, srv.discmix, srv.SetupConn) + for _, n := range srv.PrivateNodes { + srv.dialsched.addStatic(n) + } for _, n := range srv.StaticNodes { srv.dialsched.addStatic(n) } From 40179b9d895f01757136e793bba3a2610d136841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 23 Jun 2022 16:50:55 +0700 Subject: [PATCH 134/147] ethdb: use leveldb stats struct instead of parsing the stats in string format --- ethdb/leveldb/leveldb.go | 149 +++++++-------------------------------- 1 file changed, 27 insertions(+), 122 deletions(-) diff --git a/ethdb/leveldb/leveldb.go b/ethdb/leveldb/leveldb.go index 5d19cc3577de..3852214ac559 100644 --- a/ethdb/leveldb/leveldb.go +++ b/ethdb/leveldb/leveldb.go @@ -20,9 +20,6 @@ package leveldb import ( - "fmt" - "strconv" - "strings" "sync" "time" @@ -242,29 +239,14 @@ func (db *Database) Path() string { // meter periodically retrieves internal leveldb counters and reports them to // the metrics subsystem. -// -// This is how a LevelDB stats table looks like (currently): -// Compactions -// Level | Tables | Size(MB) | Time(sec) | Read(MB) | Write(MB) -// -------+------------+---------------+---------------+---------------+--------------- -// 0 | 0 | 0.00000 | 1.27969 | 0.00000 | 12.31098 -// 1 | 85 | 109.27913 | 28.09293 | 213.92493 | 214.26294 -// 2 | 523 | 1000.37159 | 7.26059 | 66.86342 | 66.77884 -// 3 | 570 | 1113.18458 | 0.00000 | 0.00000 | 0.00000 -// -// This is how the write delay look like (currently): -// DelayN:5 Delay:406.604657ms Paused: false -// -// This is how the iostats look like (currently): -// Read(MB):3895.04860 Write(MB):3654.64712 func (db *Database) meter(refresh time.Duration) { // Create the counters to store current and previous compaction values - compactions := make([][]float64, 2) + compactions := make([][]int64, 2) for i := 0; i < 2; i++ { - compactions[i] = make([]float64, 4) + compactions[i] = make([]int64, 4) } // Create storage for iostats. - var iostats [2]float64 + var iostats [2]uint64 // Create storage and warning log tracer for write delay. var ( @@ -283,80 +265,42 @@ func (db *Database) meter(refresh time.Duration) { // Iterate ad infinitum and collect the stats for i := 1; errc == nil && merr == nil; i++ { // Retrieve the database stats - stats, err := db.db.GetProperty("leveldb.stats") + var stats = &leveldb.DBStats{} + err := db.db.Stats(stats) if err != nil { db.log.Error("Failed to read database stats", "err", err) merr = err continue } - // Find the compaction table, skip the header - lines := strings.Split(stats, "\n") - for len(lines) > 0 && strings.TrimSpace(lines[0]) != "Compactions" { - lines = lines[1:] - } - if len(lines) <= 3 { - db.log.Error("Compaction leveldbTable not found") - merr = errors.New("compaction leveldbTable not found") - continue - } - lines = lines[3:] + compactions[i%2][0] = stats.LevelSizes.Sum() + compactions[i%2][2] = stats.LevelRead.Sum() + compactions[i%2][3] = stats.LevelWrite.Sum() - // Iterate over all the leveldbTable rows, and accumulate the entries - for j := 0; j < len(compactions[i%2]); j++ { - compactions[i%2][j] = 0 - } - for _, line := range lines { - parts := strings.Split(line, "|") - if len(parts) != 6 { - break - } - for idx, counter := range parts[2:] { - value, err := strconv.ParseFloat(strings.TrimSpace(counter), 64) - if err != nil { - db.log.Error("Compaction entry parsing failed", "err", err) - merr = err - continue - } - compactions[i%2][idx] += value - } + compactions[i%2][1] = 0 + for _, s := range stats.LevelDurations { + compactions[i%2][1] += int64(s.Seconds()) } + // Update all the requested meters if db.diskSizeGauge != nil { - db.diskSizeGauge.Update(int64(compactions[i%2][0] * 1024 * 1024)) + db.diskSizeGauge.Update(compactions[i%2][0] * 1024 * 1024) } if db.compTimeMeter != nil { - db.compTimeMeter.Mark(int64((compactions[i%2][1] - compactions[(i-1)%2][1]) * 1000 * 1000 * 1000)) + db.compTimeMeter.Mark((compactions[i%2][1] - compactions[(i-1)%2][1]) * 1000 * 1000 * 1000) } if db.compReadMeter != nil { - db.compReadMeter.Mark(int64((compactions[i%2][2] - compactions[(i-1)%2][2]) * 1024 * 1024)) + db.compReadMeter.Mark((compactions[i%2][2] - compactions[(i-1)%2][2]) * 1024 * 1024) } if db.compWriteMeter != nil { - db.compWriteMeter.Mark(int64((compactions[i%2][3] - compactions[(i-1)%2][3]) * 1024 * 1024)) + db.compWriteMeter.Mark((compactions[i%2][3] - compactions[(i-1)%2][3]) * 1024 * 1024) } // Retrieve the write delay statistic - writedelay, err := db.db.GetProperty("leveldb.writedelay") - if err != nil { - db.log.Error("Failed to read database write delay statistic", "err", err) - merr = err - continue - } var ( - delayN int64 - delayDuration string - duration time.Duration - paused bool + delayN int64 + duration time.Duration ) - if n, err := fmt.Sscanf(writedelay, "DelayN:%d Delay:%s Paused:%t", &delayN, &delayDuration, &paused); n != 3 || err != nil { - db.log.Error("Write delay statistic not found") - merr = err - continue - } - duration, err = time.ParseDuration(delayDuration) - if err != nil { - db.log.Error("Failed to parse delay duration", "err", err) - merr = err - continue - } + delayN = int64(stats.WriteDelayCount) + duration = stats.WriteDelayDuration if db.writeDelayNMeter != nil { db.writeDelayNMeter.Mark(delayN - delaystats[0]) } @@ -365,7 +309,7 @@ func (db *Database) meter(refresh time.Duration) { } // If a warning that db is performing compaction has been displayed, any subsequent // warnings will be withheld for one minute not to overwhelm the user. - if paused && delayN-delaystats[0] == 0 && duration.Nanoseconds()-delaystats[1] == 0 && + if stats.WritePaused && delayN-delaystats[0] == 0 && duration.Nanoseconds()-delaystats[1] == 0 && time.Now().After(lastWritePaused.Add(degradationWarnInterval)) { db.log.Warn("Database compacting, degraded performance") lastWritePaused = time.Now() @@ -373,29 +317,8 @@ func (db *Database) meter(refresh time.Duration) { delaystats[0], delaystats[1] = delayN, duration.Nanoseconds() // Retrieve the database iostats. - ioStats, err := db.db.GetProperty("leveldb.iostats") - if err != nil { - db.log.Error("Failed to read database iostats", "err", err) - merr = err - continue - } - var nRead, nWrite float64 - parts := strings.Split(ioStats, " ") - if len(parts) < 2 { - db.log.Error("Bad syntax of ioStats", "ioStats", ioStats) - merr = fmt.Errorf("bad syntax of ioStats %s", ioStats) - continue - } - if n, err := fmt.Sscanf(parts[0], "Read(MB):%f", &nRead); n != 1 || err != nil { - db.log.Error("Bad syntax of read entry", "entry", parts[0]) - merr = err - continue - } - if n, err := fmt.Sscanf(parts[1], "Write(MB):%f", &nWrite); n != 1 || err != nil { - db.log.Error("Bad syntax of write entry", "entry", parts[1]) - merr = err - continue - } + nRead := stats.IORead + nWrite := stats.IOWrite if db.diskReadMeter != nil { db.diskReadMeter.Mark(int64((nRead - iostats[0]) * 1024 * 1024)) } @@ -404,28 +327,10 @@ func (db *Database) meter(refresh time.Duration) { } iostats[0], iostats[1] = nRead, nWrite - compCount, err := db.db.GetProperty("leveldb.compcount") - if err != nil { - db.log.Error("Failed to read database iostats", "err", err) - merr = err - continue - } - - var ( - memComp uint32 - level0Comp uint32 - nonLevel0Comp uint32 - seekComp uint32 - ) - if n, err := fmt.Sscanf(compCount, "MemComp:%d Level0Comp:%d NonLevel0Comp:%d SeekComp:%d", &memComp, &level0Comp, &nonLevel0Comp, &seekComp); n != 4 || err != nil { - db.log.Error("Compaction count statistic not found") - merr = err - continue - } - db.memCompGauge.Update(int64(memComp)) - db.level0CompGauge.Update(int64(level0Comp)) - db.nonlevel0CompGauge.Update(int64(nonLevel0Comp)) - db.seekCompGauge.Update(int64(seekComp)) + db.memCompGauge.Update(int64(stats.MemComp)) + db.level0CompGauge.Update(int64(stats.Level0Comp)) + db.nonlevel0CompGauge.Update(int64(stats.NonLevel0Comp)) + db.seekCompGauge.Update(int64(stats.SeekComp)) // Sleep a bit, then repeat the stats collection select { From 208c28f0c96fc9a1f3d113f794511e0f676795ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 25 Oct 2022 11:28:20 +0700 Subject: [PATCH 135/147] node: add private node as trusted node as well --- node/config.go | 4 ++++ node/node.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/node/config.go b/node/config.go index ef1da15d7076..48f2d56b2fb4 100644 --- a/node/config.go +++ b/node/config.go @@ -395,6 +395,10 @@ func (c *Config) TrustedNodes() []*enode.Node { return c.parsePersistentNodes(&c.trustedNodesWarning, c.ResolvePath(datadirTrustedNodes)) } +func (c *Config) PrivateNodes() []*enode.Node { + return c.P2P.PrivateNodes +} + // parsePersistentNodes parses a list of discovery node URLs loaded from a .json // file from within the data directory. func (c *Config) parsePersistentNodes(w *bool, path string) []*enode.Node { diff --git a/node/node.go b/node/node.go index 1e65fff1c271..afd221a14c4b 100644 --- a/node/node.go +++ b/node/node.go @@ -129,7 +129,7 @@ func New(conf *Config) (*Node, error) { node.server.Config.StaticNodes = node.config.StaticNodes() } if node.server.Config.TrustedNodes == nil { - node.server.Config.TrustedNodes = node.config.TrustedNodes() + node.server.Config.TrustedNodes = append(node.config.TrustedNodes(), node.config.PrivateNodes()...) } if node.server.Config.NodeDatabase == "" { node.server.Config.NodeDatabase = node.config.NodeDB() From 08e00ba5f8ac92bfe51e8af134aab764ae2a3dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Wed, 26 Oct 2022 14:17:37 +0700 Subject: [PATCH 136/147] update code and add some test cases --- node/node.go | 2 +- p2p/server.go | 3 +++ p2p/server_test.go | 55 +++++++++++++++++++++++++++++++++++++++++----- 3 files changed, 53 insertions(+), 7 deletions(-) diff --git a/node/node.go b/node/node.go index afd221a14c4b..1e65fff1c271 100644 --- a/node/node.go +++ b/node/node.go @@ -129,7 +129,7 @@ func New(conf *Config) (*Node, error) { node.server.Config.StaticNodes = node.config.StaticNodes() } if node.server.Config.TrustedNodes == nil { - node.server.Config.TrustedNodes = append(node.config.TrustedNodes(), node.config.PrivateNodes()...) + node.server.Config.TrustedNodes = node.config.TrustedNodes() } if node.server.Config.NodeDatabase == "" { node.server.Config.NodeDatabase = node.config.NodeDB() diff --git a/p2p/server.go b/p2p/server.go index 4b07b216ed8b..3e5c12af7d64 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -737,6 +737,9 @@ func (srv *Server) run() { for _, n := range srv.TrustedNodes { trusted[n.ID()] = true } + for _, n := range srv.PrivateNodes { + trusted[n.ID()] = true + } running: for { diff --git a/p2p/server_test.go b/p2p/server_test.go index a5b3190aede2..ff8bba7c48c5 100644 --- a/p2p/server_test.go +++ b/p2p/server_test.go @@ -237,7 +237,9 @@ func TestServerRemovePeerDisconnect(t *testing.T) { // when the server is at capacity. Trusted connections should still be accepted. func TestServerAtCap(t *testing.T) { trustedNode := newkey() + privateNode := newkey() trustedID := enode.PubkeyToIDV4(&trustedNode.PublicKey) + privateID := enode.PubkeyToIDV4(&privateNode.PublicKey) srv := &Server{ Config: Config{ PrivateKey: newkey(), @@ -245,6 +247,7 @@ func TestServerAtCap(t *testing.T) { NoDial: true, NoDiscovery: true, TrustedNodes: []*enode.Node{newNode(trustedID, "")}, + PrivateNodes: []*enode.Node{newNode(privateID, "")}, Logger: testlog.Logger(t, log.LvlTrace), }, } @@ -260,6 +263,9 @@ func TestServerAtCap(t *testing.T) { return &conn{fd: fd, transport: tx, flags: inboundConn, node: node, cont: make(chan error)} } + // remove private node (it was added a static node at the beginning) + srv.RemovePeer(newNode(privateID, "")) + // Inject a few connections to fill up the peer set. for i := 0; i < 10; i++ { c := newconn(randomID()) @@ -282,6 +288,21 @@ func TestServerAtCap(t *testing.T) { t.Error("Server did not set trusted flag") } + // Try inserting a non-trusted connection. + anotherID = randomID() + c = newconn(anotherID) + if err := srv.checkpoint(c, srv.checkpointPostHandshake); err != DiscTooManyPeers { + t.Error("wrong error for insert:", err) + } + // Try inserting the private node as trusted connection as well + c = newconn(privateID) + if err := srv.checkpoint(c, srv.checkpointPostHandshake); err != nil { + t.Error("unexpected error for trusted conn @posthandshake:", err) + } + if !c.is(trustedConn) { + t.Error("Server did not set trusted flag") + } + // Remove from trusted set and try again srv.RemoveTrustedPeer(newNode(trustedID, "")) c = newconn(trustedID) @@ -304,6 +325,8 @@ func TestServerPeerLimits(t *testing.T) { srvkey := newkey() clientkey := newkey() clientnode := enode.NewV4(&clientkey.PublicKey, nil, 0, 0) + privatekey := newkey() + privatenode := enode.NewV4(&privatekey.PublicKey, nil, 0, 0) var tp = &setupTransport{ pubkey: &clientkey.PublicKey, @@ -316,12 +339,13 @@ func TestServerPeerLimits(t *testing.T) { srv := &Server{ Config: Config{ - PrivateKey: srvkey, - MaxPeers: 0, - NoDial: true, - NoDiscovery: true, - Protocols: []Protocol{discard}, - Logger: testlog.Logger(t, log.LvlTrace), + PrivateKey: srvkey, + MaxPeers: 0, + NoDial: true, + NoDiscovery: true, + Protocols: []Protocol{discard}, + PrivateNodes: []*enode.Node{privatenode}, + Logger: testlog.Logger(t, log.LvlTrace), }, newTransport: func(fd net.Conn, dialDest *ecdsa.PublicKey) transport { return tp }, } @@ -363,6 +387,25 @@ func TestServerPeerLimits(t *testing.T) { t.Errorf("unexpected close error: %q", tp.closeErr) } conn.Close() + + srv.RemovePeer(privatenode) + + // Check that server is full again. + conn, _ = net.Pipe() + srv.SetupConn(conn, flags, dialDest) + if tp.closeErr != DiscTooManyPeers { + t.Errorf("unexpected close error: %q", tp.closeErr) + } + conn.Close() + + // Check that server allows a private peer despite being full. + dialDest = privatenode + conn, _ = net.Pipe() + srv.SetupConn(conn, flags, dialDest) + if tp.closeErr == DiscTooManyPeers { + t.Errorf("failed to bypass MaxPeers with private node: %q", tp.closeErr) + } + conn.Close() } func TestServerSetupConn(t *testing.T) { From 139e4570d1ea051a0dad372abbaf9f953928f969 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Wed, 16 Nov 2022 16:15:32 +0400 Subject: [PATCH 137/147] supress useless peers in discovery --- p2p/discover/discfilter/discfilter.go | 44 +++++++++++++++++++++++++++ p2p/discover/v4_udp.go | 5 +++ p2p/discover/v5_udp.go | 5 +++ p2p/enode/idscheme.go | 23 ++------------ p2p/enr/enr.go | 13 ++++++++ p2p/server.go | 6 ++++ 6 files changed, 75 insertions(+), 21 deletions(-) create mode 100644 p2p/discover/discfilter/discfilter.go diff --git a/p2p/discover/discfilter/discfilter.go b/p2p/discover/discfilter/discfilter.go new file mode 100644 index 000000000000..a712d521c8ce --- /dev/null +++ b/p2p/discover/discfilter/discfilter.go @@ -0,0 +1,44 @@ +package discfilter + +import ( + lru "github.com/hashicorp/golang-lru" + + "github.com/ethereum/go-ethereum/p2p/enode" + "github.com/ethereum/go-ethereum/p2p/enr" +) + +var ( + enabled = false + dynamic, _ = lru.New(50000) +) + +func Enable() { + enabled = true +} + +func Ban(id enode.ID) { + if enabled { + dynamic.Add(id, struct{}{}) + } +} + +func BannedDynamic(id enode.ID) bool { + if !enabled { + return false + } + return dynamic.Contains(id) +} + +func BannedStatic(rec *enr.Record) bool { + if !enabled { + return false + } + return rec.Has("eth") || rec.Has("eth2") +} + +func Banned(id enode.ID, rec *enr.Record) bool { + if !enabled { + return false + } + return BannedStatic(rec) || BannedDynamic(id) +} diff --git a/p2p/discover/v4_udp.go b/p2p/discover/v4_udp.go index e219aebc5d52..07d44ecd4b4a 100644 --- a/p2p/discover/v4_udp.go +++ b/p2p/discover/v4_udp.go @@ -31,6 +31,7 @@ import ( "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/log" + "github.com/ethereum/go-ethereum/p2p/discover/discfilter" "github.com/ethereum/go-ethereum/p2p/discover/v4wire" "github.com/ethereum/go-ethereum/p2p/enode" "github.com/ethereum/go-ethereum/p2p/netutil" @@ -739,6 +740,10 @@ func (t *UDPv4) handleFindnode(h *packetHandlerV4, from *net.UDPAddr, fromID eno if len(t.privateNodes) > 0 && containsEnode(t.privateNodes, &n.Node) { continue } + // Don't advertise the bots + if discfilter.Banned(n.ID(), n.Record()) { + continue + } if netutil.CheckRelayIP(from.IP, n.IP()) == nil { p.Nodes = append(p.Nodes, nodeToRPC(n)) } diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index 0e10998b88c8..44477481ab2e 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -31,6 +31,7 @@ import ( "github.com/ethereum/go-ethereum/common/mclock" "github.com/ethereum/go-ethereum/log" + "github.com/ethereum/go-ethereum/p2p/discover/discfilter" "github.com/ethereum/go-ethereum/p2p/discover/v5wire" "github.com/ethereum/go-ethereum/p2p/enode" "github.com/ethereum/go-ethereum/p2p/enr" @@ -824,6 +825,10 @@ func (t *UDPv5) collectTableNodes(rip net.IP, distances []uint, limit int) []*en if len(t.privateNodes) > 0 && containsEnode(t.privateNodes, n) { continue } + // Don't advertise the bots + if discfilter.Banned(n.ID(), n.Record()) { + continue + } // TODO livenessChecks > 1 if netutil.CheckRelayIP(rip, n.IP()) != nil { continue diff --git a/p2p/enode/idscheme.go b/p2p/enode/idscheme.go index d608a89c1fbc..61a3a584f5c9 100644 --- a/p2p/enode/idscheme.go +++ b/p2p/enode/idscheme.go @@ -19,14 +19,14 @@ package enode import ( "crypto/ecdsa" "fmt" - "github.com/ethereum/go-ethereum/core/forkid" "io" + "golang.org/x/crypto/sha3" + "github.com/ethereum/go-ethereum/common/math" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/p2p/enr" "github.com/ethereum/go-ethereum/rlp" - "golang.org/x/crypto/sha3" ) // List of known secure identity schemes. @@ -63,12 +63,6 @@ func SignV4(r *enr.Record, privkey *ecdsa.PrivateKey) error { } func (V4ID) Verify(r *enr.Record, sig []byte) error { - var opera operaNodeEnrEntry - err := r.Load(&opera) - if err != nil { - return fmt.Errorf("invalid opera node; %s", err.Error()) - } - var entry s256raw if err := r.Load(&entry); err != nil { return err @@ -165,16 +159,3 @@ func SignNull(r *enr.Record, id ID) *Node { } return &Node{r: *r, id: id} } - -// operaNodeEnrEntry is the ENR entry which advertises `eth` protocol on the discovery. -type operaNodeEnrEntry struct { - ForkID forkid.ID // Fork identifier per EIP-2124 - - // Ignore additional fields (for forward compatibility). - Rest []rlp.RawValue `rlp:"tail"` -} - -// ENRKey implements enr.Entry. -func (e operaNodeEnrEntry) ENRKey() string { - return "opera" -} diff --git a/p2p/enr/enr.go b/p2p/enr/enr.go index 05e43fd805c6..b3aea0a72b7f 100644 --- a/p2p/enr/enr.go +++ b/p2p/enr/enr.go @@ -126,6 +126,19 @@ func (r *Record) Load(e Entry) error { return &KeyError{Key: e.ENRKey(), Err: errNotFound} } +func (r *Record) Has(key string) bool { + i := sort.Search(len(r.pairs), func(i int) bool { return r.pairs[i].k >= key }) + return i < len(r.pairs) && r.pairs[i].k == key +} + +func (r *Record) String() string { + str := "" + for _, p := range r.pairs { + str += p.k + " " + } + return str +} + // Set adds or updates the given entry in the record. It panics if the value can't be // encoded. If the record is signed, Set increments the sequence number and invalidates // the sequence number. diff --git a/p2p/server.go b/p2p/server.go index 3e5c12af7d64..1575358e2939 100644 --- a/p2p/server.go +++ b/p2p/server.go @@ -23,6 +23,7 @@ import ( "encoding/hex" "errors" "fmt" + "math/rand" "net" "sort" "sync" @@ -35,6 +36,7 @@ import ( "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/p2p/discover" + "github.com/ethereum/go-ethereum/p2p/discover/discfilter" "github.com/ethereum/go-ethereum/p2p/enode" "github.com/ethereum/go-ethereum/p2p/enr" "github.com/ethereum/go-ethereum/p2p/nat" @@ -843,6 +845,10 @@ func (srv *Server) postHandshakeChecks(peers map[enode.ID]*Peer, inboundCount in case c.node.ID() == srv.localnode.ID(): return DiscSelf default: + if !c.is(trustedConn) && discfilter.Banned(c.node.ID(), c.node.Record()) && rand.Intn(5) != 0 { + // rarely accept useless peers + return DiscTooManyPeers + } return nil } } From 3cf614f777702940759406dbb5e719312d654205 Mon Sep 17 00:00:00 2001 From: Egor Lysenko Date: Thu, 8 Dec 2022 16:53:32 +0400 Subject: [PATCH 138/147] suppress verbosity of snapsync warnings --- eth/protocols/snap/sync.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/eth/protocols/snap/sync.go b/eth/protocols/snap/sync.go index 6b2637a50a76..097653323655 100644 --- a/eth/protocols/snap/sync.go +++ b/eth/protocols/snap/sync.go @@ -27,6 +27,8 @@ import ( "sync" "time" + "golang.org/x/crypto/sha3" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/math" "github.com/ethereum/go-ethereum/core/rawdb" @@ -40,7 +42,6 @@ import ( "github.com/ethereum/go-ethereum/p2p/msgrate" "github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/trie" - "golang.org/x/crypto/sha3" ) var ( @@ -2222,7 +2223,7 @@ func (s *Syncer) OnAccounts(peer SyncPeer, id uint64, hashes []common.Hash, acco req, ok := s.accountReqs[id] if !ok { // Request stale, perhaps the peer timed out but came through in the end - logger.Warn("Unexpected account range packet") + logger.Debug("Unexpected account range packet") s.lock.Unlock() return nil } @@ -2334,7 +2335,7 @@ func (s *Syncer) onByteCodes(peer SyncPeer, id uint64, bytecodes [][]byte) error req, ok := s.bytecodeReqs[id] if !ok { // Request stale, perhaps the peer timed out but came through in the end - logger.Warn("Unexpected bytecode packet") + logger.Debug("Unexpected bytecode packet") s.lock.Unlock() return nil } @@ -2443,7 +2444,7 @@ func (s *Syncer) OnStorage(peer SyncPeer, id uint64, hashes [][]common.Hash, slo req, ok := s.storageReqs[id] if !ok { // Request stale, perhaps the peer timed out but came through in the end - logger.Warn("Unexpected storage ranges packet") + logger.Debug("Unexpected storage ranges packet") s.lock.Unlock() return nil } @@ -2570,7 +2571,7 @@ func (s *Syncer) OnTrieNodes(peer SyncPeer, id uint64, trienodes [][]byte) error req, ok := s.trienodeHealReqs[id] if !ok { // Request stale, perhaps the peer timed out but came through in the end - logger.Warn("Unexpected trienode heal packet") + logger.Debug("Unexpected trienode heal packet") s.lock.Unlock() return nil } From 0a1113ea69dbc3bb0467360ac4cf624145a64085 Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 27 Jan 2023 22:45:46 +1000 Subject: [PATCH 139/147] wait for calls finish on rpc.Server.Stop() --- rpc/handler.go | 5 ++++- rpc/server.go | 14 ++++++++------ rpc/service.go | 1 + 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/rpc/handler.go b/rpc/handler.go index b1497cd458e3..65180ef055ea 100644 --- a/rpc/handler.go +++ b/rpc/handler.go @@ -228,9 +228,12 @@ func (h *handler) cancelServerSubscriptions(err error) { // startCallProc runs fn in a new goroutine and starts tracking it in the h.calls wait group. func (h *handler) startCallProc(fn func(*callProc)) { h.callWG.Add(1) + h.reg.callWG.Add(1) go func() { - ctx, cancel := context.WithCancel(h.rootCtx) defer h.callWG.Done() + defer h.reg.callWG.Done() + + ctx, cancel := context.WithCancel(h.rootCtx) defer cancel() fn(&callProc{ctx: ctx}) }() diff --git a/rpc/server.go b/rpc/server.go index 64e078a7fd1b..f9cee0b9c486 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -119,13 +119,15 @@ func (s *Server) serveSingleRequest(ctx context.Context, codec ServerCodec) { // requests to finish, then closes all codecs which will cancel pending requests and // subscriptions. func (s *Server) Stop() { - if atomic.CompareAndSwapInt32(&s.run, 1, 0) { - log.Debug("RPC server shutting down") - s.codecs.Each(func(c interface{}) bool { - c.(ServerCodec).close() - return true - }) + if !atomic.CompareAndSwapInt32(&s.run, 1, 0) { + return } + log.Debug("RPC server shutting down") + s.codecs.Each(func(c interface{}) bool { + c.(ServerCodec).close() + return true + }) + s.services.callWG.Wait() } // RPCService gives meta information about the server. diff --git a/rpc/service.go b/rpc/service.go index bef891ea1125..45545a136c52 100644 --- a/rpc/service.go +++ b/rpc/service.go @@ -38,6 +38,7 @@ var ( type serviceRegistry struct { mu sync.Mutex + callWG sync.WaitGroup services map[string]service } From c8c2aed8747fc90d38b7620c6a3b43f0b3fcb997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 7 Apr 2023 21:27:01 +0700 Subject: [PATCH 140/147] make tnx message for some specific purposes --- core/state_transition.go | 19 +++++++++++++ core/types/transaction.go | 56 --------------------------------------- go.mod | 2 +- go.sum | 3 +-- 4 files changed, 21 insertions(+), 59 deletions(-) diff --git a/core/state_transition.go b/core/state_transition.go index 1802f1daf70a..f47724508727 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -135,6 +135,7 @@ type Message struct { GasTipCap *big.Int Data []byte AccessList types.AccessList + IsFake bool // When SkipAccountCheckss is true, the message nonce is not checked against the // account nonce in state. It also disables checking that the sender is an EOA. @@ -154,6 +155,7 @@ func TransactionToMessage(tx *types.Transaction, s types.Signer, baseFee *big.In Value: tx.Value(), Data: tx.Data(), AccessList: tx.AccessList(), + IsFake: false, SkipAccountChecks: false, } // If baseFee provided, set gasPrice to effectiveGasPrice. @@ -165,6 +167,23 @@ func TransactionToMessage(tx *types.Transaction, s types.Signer, baseFee *big.In return msg, err } +func NewMessage(from common.Address, to *common.Address, nonce uint64, value *big.Int, gasLimit uint64, gasPrice, gasFeeCap, gasTipCap *big.Int, data []byte, accessList types.AccessList, isFake bool) *Message { + return &Message{ + From: from, + To: to, + Nonce: nonce, + Value: value, + GasLimit: gasLimit, + GasPrice: gasPrice, + GasFeeCap: gasFeeCap, + GasTipCap: gasTipCap, + Data: data, + AccessList: accessList, + IsFake: isFake, + SkipAccountChecks: false, + } +} + // ApplyMessage computes the new state by applying the given message // against the old state within the environment. // diff --git a/core/types/transaction.go b/core/types/transaction.go index 5bc64e019f2a..a08d33640c8d 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -614,59 +614,3 @@ func (t *TransactionsByPriceAndNonce) Copy() *TransactionsByPriceAndNonce { baseFee: new(big.Int).Set(t.baseFee), } } - -// Message is a fully derived transaction and implements core.Message -// -// NOTE: In a future PR this will be removed. -type Message struct { - to *common.Address - from common.Address - nonce uint64 - amount *big.Int - gasLimit uint64 - gasPrice *big.Int - gasFeeCap *big.Int - gasTipCap *big.Int - data []byte - accessList AccessList - isFake bool -} - -func NewMessage(from common.Address, to *common.Address, nonce uint64, amount *big.Int, gasLimit uint64, gasPrice, gasFeeCap, gasTipCap *big.Int, data []byte, accessList AccessList, isFake bool) Message { - return Message{ - from: from, - to: to, - nonce: nonce, - amount: amount, - gasLimit: gasLimit, - gasPrice: gasPrice, - gasFeeCap: gasFeeCap, - gasTipCap: gasTipCap, - data: data, - accessList: accessList, - isFake: isFake, - } -} - -// AsMessage returns the transaction as a core.Message. -func (tx *Transaction) AsMessage(s Signer, baseFee *big.Int) (Message, error) { - msg := Message{ - nonce: tx.Nonce(), - gasLimit: tx.Gas(), - gasPrice: new(big.Int).Set(tx.GasPrice()), - gasFeeCap: new(big.Int).Set(tx.GasFeeCap()), - gasTipCap: new(big.Int).Set(tx.GasTipCap()), - to: tx.To(), - amount: tx.Value(), - data: tx.Data(), - accessList: tx.AccessList(), - isFake: false, - } - // If baseFee provided, set gasPrice to effectiveGasPrice. - if baseFee != nil { - msg.gasPrice = math.BigMin(msg.gasPrice.Add(msg.gasTipCap, baseFee), msg.gasFeeCap) - } - var err error - msg.from, err = Sender(s, tx) - return msg, err -} diff --git a/go.mod b/go.mod index 21325d5669e1..fd0e3f6d7df7 100644 --- a/go.mod +++ b/go.mod @@ -10,6 +10,7 @@ require ( github.com/aws/aws-sdk-go-v2/credentials v1.1.1 github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1 github.com/btcsuite/btcd/btcec/v2 v2.2.0 + github.com/cakturk/go-netstat v0.0.0-20200220111822-e5b49efee7a5 github.com/cespare/cp v0.1.0 github.com/cloudflare/cloudflare-go v0.14.0 github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811 @@ -118,7 +119,6 @@ require ( github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect golang.org/x/mod v0.6.0 // indirect golang.org/x/net v0.4.0 // indirect - golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect google.golang.org/protobuf v1.28.1 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect diff --git a/go.sum b/go.sum index d78452f23246..acbe49c14ac7 100644 --- a/go.sum +++ b/go.sum @@ -778,9 +778,8 @@ golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df h1:5Pf6pFKu98ODmgnpvkJ3kFUOQGGLIzLIkbzUHp47618= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= From 2e6f0ed8a63c3c0f4ee94d12c3aed6d7f80bace1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Fri, 21 Apr 2023 19:09:30 +0700 Subject: [PATCH 141/147] cmd, miner, node: make node to compability with opera --- cmd/geth/config.go | 68 --------------------- miner/stress/clique/main.go | 7 +-- node/config.go | 116 ++++++++++++++++++++++++++++++++++++ node/node.go | 23 +++---- 4 files changed, 127 insertions(+), 87 deletions(-) diff --git a/cmd/geth/config.go b/cmd/geth/config.go index 0b856d1c1b7a..f110e7941696 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -26,10 +26,6 @@ import ( "github.com/urfave/cli/v2" - "github.com/ethereum/go-ethereum/accounts/external" - "github.com/ethereum/go-ethereum/accounts/keystore" - "github.com/ethereum/go-ethereum/accounts/scwallet" - "github.com/ethereum/go-ethereum/accounts/usbwallet" "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/eth/downloader" "github.com/ethereum/go-ethereum/eth/ethconfig" @@ -141,11 +137,6 @@ func makeConfigNode(ctx *cli.Context) (*node.Node, gethConfig) { if err != nil { utils.Fatalf("Failed to create the protocol stack: %v", err) } - // Node doesn't by default populate account manager backends - if err := setAccountManagerBackends(stack); err != nil { - utils.Fatalf("Failed to set account manager backends: %v", err) - } - utils.SetEthConfig(ctx, stack, &cfg.Eth) if ctx.IsSet(utils.EthStatsURLFlag.Name) { cfg.Ethstats.URL = ctx.String(utils.EthStatsURLFlag.Name) @@ -268,62 +259,3 @@ func deprecated(field string) bool { return false } } - -func setAccountManagerBackends(stack *node.Node) error { - conf := stack.Config() - am := stack.AccountManager() - keydir := stack.KeyStoreDir() - scryptN := keystore.StandardScryptN - scryptP := keystore.StandardScryptP - if conf.UseLightweightKDF { - scryptN = keystore.LightScryptN - scryptP = keystore.LightScryptP - } - - // Assemble the supported backends - if len(conf.ExternalSigner) > 0 { - log.Info("Using external signer", "url", conf.ExternalSigner) - if extapi, err := external.NewExternalBackend(conf.ExternalSigner); err == nil { - am.AddBackend(extapi) - return nil - } else { - return fmt.Errorf("error connecting to external signer: %v", err) - } - } - - // For now, we're using EITHER external signer OR local signers. - // If/when we implement some form of lockfile for USB and keystore wallets, - // we can have both, but it's very confusing for the user to see the same - // accounts in both externally and locally, plus very racey. - am.AddBackend(keystore.NewKeyStore(keydir, scryptN, scryptP)) - if conf.USB { - // Start a USB hub for Ledger hardware wallets - if ledgerhub, err := usbwallet.NewLedgerHub(); err != nil { - log.Warn(fmt.Sprintf("Failed to start Ledger hub, disabling: %v", err)) - } else { - am.AddBackend(ledgerhub) - } - // Start a USB hub for Trezor hardware wallets (HID version) - if trezorhub, err := usbwallet.NewTrezorHubWithHID(); err != nil { - log.Warn(fmt.Sprintf("Failed to start HID Trezor hub, disabling: %v", err)) - } else { - am.AddBackend(trezorhub) - } - // Start a USB hub for Trezor hardware wallets (WebUSB version) - if trezorhub, err := usbwallet.NewTrezorHubWithWebUSB(); err != nil { - log.Warn(fmt.Sprintf("Failed to start WebUSB Trezor hub, disabling: %v", err)) - } else { - am.AddBackend(trezorhub) - } - } - if len(conf.SmartCardDaemonPath) > 0 { - // Start a smart card hub - if schub, err := scwallet.NewHub(conf.SmartCardDaemonPath, scwallet.Scheme, keydir); err != nil { - log.Warn(fmt.Sprintf("Failed to start smart card hub, disabling: %v", err)) - } else { - am.AddBackend(schub) - } - } - - return nil -} diff --git a/miner/stress/clique/main.go b/miner/stress/clique/main.go index b287c2666098..548f23dbbec0 100644 --- a/miner/stress/clique/main.go +++ b/miner/stress/clique/main.go @@ -90,15 +90,14 @@ func main() { enodes = append(enodes, stack.Server().Self()) // Inject the signer key and start sealing with it - ks := keystore.NewKeyStore(stack.KeyStoreDir(), keystore.LightScryptN, keystore.LightScryptP) - signer, err := ks.ImportECDSA(sealer, "") + store := stack.AccountManager().Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore) + signer, err := store.ImportECDSA(sealer, "") if err != nil { panic(err) } - if err := ks.Unlock(signer, ""); err != nil { + if err := store.Unlock(signer, ""); err != nil { panic(err) } - stack.AccountManager().AddBackend(ks) } // Iterate over all the nodes and start signing on them diff --git a/node/config.go b/node/config.go index 04f1087f2970..4732f1a480b1 100644 --- a/node/config.go +++ b/node/config.go @@ -19,11 +19,18 @@ package node import ( "crypto/ecdsa" "fmt" + "io/ioutil" "os" "path/filepath" "runtime" "strings" + "sync" + "github.com/ethereum/go-ethereum/accounts" + "github.com/ethereum/go-ethereum/accounts/external" + "github.com/ethereum/go-ethereum/accounts/keystore" + "github.com/ethereum/go-ethereum/accounts/scwallet" + "github.com/ethereum/go-ethereum/accounts/usbwallet" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/log" @@ -514,3 +521,112 @@ func getKeyStoreDir(conf *Config) (string, bool, error) { return keydir, isEphemeral, nil } + +// AccountConfig determines the settings for scrypt and keydirectory +func (c *Config) AccountConfig() (int, int, string, error) { + scryptN := keystore.StandardScryptN + scryptP := keystore.StandardScryptP + if c.UseLightweightKDF { + scryptN = keystore.LightScryptN + scryptP = keystore.LightScryptP + } + + var ( + keydir string + err error + ) + switch { + case filepath.IsAbs(c.KeyStoreDir): + keydir = c.KeyStoreDir + case c.DataDir != "": + if c.KeyStoreDir == "" { + keydir = filepath.Join(c.DataDir, datadirDefaultKeyStore) + } else { + keydir, err = filepath.Abs(c.KeyStoreDir) + } + case c.KeyStoreDir != "": + keydir, err = filepath.Abs(c.KeyStoreDir) + } + return scryptN, scryptP, keydir, err +} + +func makeAccountManager(conf *Config) (*accounts.Manager, string, error) { + scryptN, scryptP, keydir, err := conf.AccountConfig() + var ephemeral string + if keydir == "" { + // There is no datadir. + keydir, err = ioutil.TempDir("", "go-ethereum-keystore") + ephemeral = keydir + } + + if err != nil { + return nil, "", err + } + if err := os.MkdirAll(keydir, 0700); err != nil { + return nil, "", err + } + // Assemble the account manager and supported backends + var backends []accounts.Backend + if len(conf.ExternalSigner) > 0 { + log.Info("Using external signer", "url", conf.ExternalSigner) + if extapi, err := external.NewExternalBackend(conf.ExternalSigner); err == nil { + backends = append(backends, extapi) + } else { + return nil, "", fmt.Errorf("error connecting to external signer: %v", err) + } + } + if len(backends) == 0 { + // For now, we're using EITHER external signer OR local signers. + // If/when we implement some form of lockfile for USB and keystore wallets, + // we can have both, but it's very confusing for the user to see the same + // accounts in both externally and locally, plus very racey. + backends = append(backends, keystore.NewKeyStore(keydir, scryptN, scryptP)) + if conf.USB { + // Start a USB hub for Ledger hardware wallets + if ledgerhub, err := usbwallet.NewLedgerHub(); err != nil { + log.Warn(fmt.Sprintf("Failed to start Ledger hub, disabling: %v", err)) + } else { + backends = append(backends, ledgerhub) + } + // Start a USB hub for Trezor hardware wallets (HID version) + if trezorhub, err := usbwallet.NewTrezorHubWithHID(); err != nil { + log.Warn(fmt.Sprintf("Failed to start HID Trezor hub, disabling: %v", err)) + } else { + backends = append(backends, trezorhub) + } + // Start a USB hub for Trezor hardware wallets (WebUSB version) + if trezorhub, err := usbwallet.NewTrezorHubWithWebUSB(); err != nil { + log.Warn(fmt.Sprintf("Failed to start WebUSB Trezor hub, disabling: %v", err)) + } else { + backends = append(backends, trezorhub) + } + } + if len(conf.SmartCardDaemonPath) > 0 { + // Start a smart card hub + if schub, err := scwallet.NewHub(conf.SmartCardDaemonPath, scwallet.Scheme, keydir); err != nil { + log.Warn(fmt.Sprintf("Failed to start smart card hub, disabling: %v", err)) + } else { + backends = append(backends, schub) + } + } + } + + return accounts.NewManager(&accounts.Config{InsecureUnlockAllowed: conf.InsecureUnlockAllowed}, backends...), ephemeral, nil +} + +var warnLock sync.Mutex + +func (c *Config) warnOnce(w *bool, format string, args ...interface{}) { + warnLock.Lock() + defer warnLock.Unlock() + + if *w { + return + } + l := c.Logger + if l == nil { + l = log.Root() + } + l.Warn(fmt.Sprintf(format, args...)) + *w = true +} diff --git a/node/node.go b/node/node.go index 2f89bc1ad274..46926ea3ec0e 100644 --- a/node/node.go +++ b/node/node.go @@ -46,8 +46,7 @@ type Node struct { config *Config accman *accounts.Manager log log.Logger - keyDir string // key store directory - keyDirTemp bool // If true, key directory will be removed by Stop + ephemKeystore string // if non-empty, the key directory that will be removed by Stop dirLock *flock.Flock // prevents concurrent use of instance directory stop chan struct{} // Channel to wait for termination notifications server *p2p.Server // Currently running P2P networking layer @@ -119,15 +118,14 @@ func New(conf *Config) (*Node, error) { if err := node.openDataDir(); err != nil { return nil, err } - keyDir, isEphem, err := getKeyStoreDir(conf) + // Ensure that the AccountManager method works before the node has started. We rely on + // this in cmd/geth. + am, ephemeralKeystore, err := makeAccountManager(conf) if err != nil { return nil, err } - node.keyDir = keyDir - node.keyDirTemp = isEphem - // Creates an empty AccountManager with no backends. Callers (e.g. cmd/geth) - // are required to add the backends later on. - node.accman = accounts.NewManager(&accounts.Config{InsecureUnlockAllowed: conf.InsecureUnlockAllowed}) + node.accman = am + node.ephemKeystore = ephemeralKeystore // Initialize the p2p server. This creates the node key and discovery databases. node.server.Config.PrivateKey = node.config.NodeKey() @@ -238,8 +236,8 @@ func (n *Node) doClose(errs []error) error { if err := n.accman.Close(); err != nil { errs = append(errs, err) } - if n.keyDirTemp { - if err := os.RemoveAll(n.keyDir); err != nil { + if n.ephemKeystore != "" { + if err := os.RemoveAll(n.ephemKeystore); err != nil { errs = append(errs, err) } } @@ -646,11 +644,6 @@ func (n *Node) InstanceDir() string { return n.config.instanceDir() } -// KeyStoreDir retrieves the key directory -func (n *Node) KeyStoreDir() string { - return n.keyDir -} - // AccountManager retrieves the account manager used by the protocol stack. func (n *Node) AccountManager() *accounts.Manager { return n.accman From 4573c1406eacc34c5f72e4bd5d2a855514ecc198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 4 May 2023 17:03:18 +0700 Subject: [PATCH 142/147] core/state: add debug log when updating state object --- core/state/statedb.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/state/statedb.go b/core/state/statedb.go index a221d639b429..034f7ea0389d 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -525,6 +525,7 @@ func (s *StateDB) updateStateObject(obj *stateObject) { // enough to track account updates at commit time, deletions need tracking // at transaction boundary level to ensure we capture state clearing. if s.snap != nil { + log.Info("updateStateObject", "addr", obj.address, "balance", obj.data.Balance, "nonce", obj.data.Nonce, "root", obj.data.Root, "code", obj.data.CodeHash) s.snapAccounts[obj.addrHash] = snapshot.SlimAccountRLP(obj.data.Nonce, obj.data.Balance, obj.data.Root, obj.data.CodeHash) } } From 3d0baff93c49bcb2ec7ff70fd19d2defa8928dc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Thu, 4 May 2023 17:37:28 +0700 Subject: [PATCH 143/147] core/state: don't update state for 0x0 address --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 034f7ea0389d..c0b7500590c3 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -524,7 +524,7 @@ func (s *StateDB) updateStateObject(obj *stateObject) { // update mechanism is not symmetric to the deletion, because whereas it is // enough to track account updates at commit time, deletions need tracking // at transaction boundary level to ensure we capture state clearing. - if s.snap != nil { + if s.snap != nil && obj.address.Hex() != "0x0000000000000000000000000000000000000000" { log.Info("updateStateObject", "addr", obj.address, "balance", obj.data.Balance, "nonce", obj.data.Nonce, "root", obj.data.Root, "code", obj.data.CodeHash) s.snapAccounts[obj.addrHash] = snapshot.SlimAccountRLP(obj.data.Nonce, obj.data.Balance, obj.data.Root, obj.data.CodeHash) } From e10b1965895b1bac9c4879a9c200dd25063ae266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 15 May 2023 18:47:28 +0700 Subject: [PATCH 144/147] Revert "core/state: don't update state for 0x0 address" This reverts commit 3d0baff93c49bcb2ec7ff70fd19d2defa8928dc4. --- core/state/statedb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index c0b7500590c3..034f7ea0389d 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -524,7 +524,7 @@ func (s *StateDB) updateStateObject(obj *stateObject) { // update mechanism is not symmetric to the deletion, because whereas it is // enough to track account updates at commit time, deletions need tracking // at transaction boundary level to ensure we capture state clearing. - if s.snap != nil && obj.address.Hex() != "0x0000000000000000000000000000000000000000" { + if s.snap != nil { log.Info("updateStateObject", "addr", obj.address, "balance", obj.data.Balance, "nonce", obj.data.Nonce, "root", obj.data.Root, "code", obj.data.CodeHash) s.snapAccounts[obj.addrHash] = snapshot.SlimAccountRLP(obj.data.Nonce, obj.data.Balance, obj.data.Root, obj.data.CodeHash) } From 114fe6c0677f05a4b61103702ff3d1f527bd2d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 15 May 2023 20:07:40 +0700 Subject: [PATCH 145/147] core/state: add log for state object --- core/state/statedb.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/state/statedb.go b/core/state/statedb.go index 034f7ea0389d..5f6b7a149a0e 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -560,6 +560,7 @@ func (s *StateDB) getStateObject(addr common.Address) *stateObject { func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { // Prefer live objects if any is available if obj := s.stateObjects[addr]; obj != nil { + log.Warn("stateObjects", "address", obj.Address(), "balance", obj.Balance(), "code", obj.CodeHash(), "nonce", obj.Nonce()) return obj } // If no live objects are available, attempt to use snapshots @@ -567,6 +568,7 @@ func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { if s.snap != nil { start := time.Now() acc, err := s.snap.Account(crypto.HashData(s.hasher, addr.Bytes())) + log.Warn("getDeletedStateObject", "address", addr, "balance", acc.Balance, "code", acc.CodeHash, "nonce", acc.Nonce) if metrics.EnabledExpensive { s.SnapshotAccountReads += time.Since(start) } From df0ff085b2422f806c5fb408b6fe2621f2755b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 16 May 2023 11:23:29 +0700 Subject: [PATCH 146/147] core/state: remove debug logs --- core/state/statedb.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 5f6b7a149a0e..a221d639b429 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -525,7 +525,6 @@ func (s *StateDB) updateStateObject(obj *stateObject) { // enough to track account updates at commit time, deletions need tracking // at transaction boundary level to ensure we capture state clearing. if s.snap != nil { - log.Info("updateStateObject", "addr", obj.address, "balance", obj.data.Balance, "nonce", obj.data.Nonce, "root", obj.data.Root, "code", obj.data.CodeHash) s.snapAccounts[obj.addrHash] = snapshot.SlimAccountRLP(obj.data.Nonce, obj.data.Balance, obj.data.Root, obj.data.CodeHash) } } @@ -560,7 +559,6 @@ func (s *StateDB) getStateObject(addr common.Address) *stateObject { func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { // Prefer live objects if any is available if obj := s.stateObjects[addr]; obj != nil { - log.Warn("stateObjects", "address", obj.Address(), "balance", obj.Balance(), "code", obj.CodeHash(), "nonce", obj.Nonce()) return obj } // If no live objects are available, attempt to use snapshots @@ -568,7 +566,6 @@ func (s *StateDB) getDeletedStateObject(addr common.Address) *stateObject { if s.snap != nil { start := time.Now() acc, err := s.snap.Account(crypto.HashData(s.hasher, addr.Bytes())) - log.Warn("getDeletedStateObject", "address", addr, "balance", acc.Balance, "code", acc.CodeHash, "nonce", acc.Nonce) if metrics.EnabledExpensive { s.SnapshotAccountReads += time.Since(start) } From 5b894acd035b60276c6581bfb128c67a0316e093 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Tue, 30 May 2023 23:27:07 +0700 Subject: [PATCH 147/147] add snapMaxLayers setting --- core/state/statedb.go | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index a221d639b429..8380808a3cc8 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -67,10 +67,11 @@ type StateDB struct { // It will be updated when the Commit is called. originalRoot common.Hash - snaps *snapshot.Tree - snap snapshot.Snapshot - snapAccounts map[common.Hash][]byte - snapStorage map[common.Hash]map[common.Hash][]byte + snaps *snapshot.Tree + snap snapshot.Snapshot + snapAccounts map[common.Hash][]byte + snapStorage map[common.Hash]map[common.Hash][]byte + snapMaxLayers int // This map holds 'live' objects, which will get modified while processing a state transition. stateObjects map[common.Address]*stateObject @@ -154,6 +155,7 @@ func NewWithSnapLayers(root common.Hash, db Database, snaps *snapshot.Tree, laye accessList: newAccessList(), transientStorage: newTransientStorage(), hasher: crypto.NewKeccakState(), + snapMaxLayers: layers, } if sdb.snaps != nil { if sdb.snap = sdb.snaps.Snapshot(root); sdb.snap != nil { @@ -1054,8 +1056,8 @@ func (s *StateDB) Commit(deleteEmptyObjects bool) (common.Hash, error) { // - head layer is paired with HEAD state // - head-1 layer is paired with HEAD-1 state // - head-127 layer(bottom-most diff layer) is paired with HEAD-127 state - if err := s.snaps.Cap(root, 128); err != nil { - log.Warn("Failed to cap snapshot tree", "root", root, "layers", 128, "err", err) + if err := s.snaps.Cap(root, s.snapMaxLayers); err != nil { + log.Warn("Failed to cap snapshot tree", "root", root, "layers", s.snapMaxLayers, "err", err) } } if metrics.EnabledExpensive {