Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 143,121 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Turn Out | 14409661 | 1025 days ago | IN | 0 ETH | 0.00462495 | ||||
Change Block Lim... | 14409641 | 1025 days ago | IN | 0 ETH | 0.00099286 | ||||
Send Erc Buy Eth | 14409626 | 1025 days ago | IN | 10 ETH | 0.01584598 | ||||
Change Block Lim... | 14409623 | 1025 days ago | IN | 0 ETH | 0.00170859 | ||||
Change Block Lim... | 14409620 | 1025 days ago | IN | 0 ETH | 0.00147391 | ||||
Change Block Lim... | 14409599 | 1025 days ago | IN | 0 ETH | 0.0013161 | ||||
Turn Out | 14409584 | 1025 days ago | IN | 0 ETH | 0.00152364 | ||||
Change Block Lim... | 14409574 | 1025 days ago | IN | 0 ETH | 0.00093695 | ||||
Send Erc Buy Eth | 14409562 | 1025 days ago | IN | 10 ETH | 0.01158151 | ||||
Change Mapping | 14409400 | 1025 days ago | IN | 0 ETH | 0.00218203 | ||||
Change Block Lim... | 14409388 | 1025 days ago | IN | 0 ETH | 0.00129581 | ||||
Change Deviation... | 14409299 | 1025 days ago | IN | 0 ETH | 0.00116247 | ||||
Offer | 11684762 | 1448 days ago | IN | 10.1 ETH | 0.02335156 | ||||
Turn Out | 11684497 | 1448 days ago | IN | 0 ETH | 0.00671649 | ||||
Offer | 11684450 | 1448 days ago | IN | 10.1 ETH | 0.04057546 | ||||
Turn Out | 11684421 | 1448 days ago | IN | 0 ETH | 0.0034254 | ||||
Offer | 11684392 | 1448 days ago | IN | 10.1 ETH | 0.02771289 | ||||
Turn Out | 11684369 | 1448 days ago | IN | 0 ETH | 0.0034254 | ||||
Offer | 11684341 | 1448 days ago | IN | 10.1 ETH | 0.03048494 | ||||
Turn Out | 11684319 | 1448 days ago | IN | 0 ETH | 0.00336312 | ||||
Offer | 11684288 | 1448 days ago | IN | 10.1 ETH | 0.02872135 | ||||
Turn Out | 11684266 | 1448 days ago | IN | 0 ETH | 0.00404198 | ||||
Offer | 11684234 | 1448 days ago | IN | 10.1 ETH | 0.0293764 | ||||
Turn Out | 11684207 | 1448 days ago | IN | 0 ETH | 0.00348769 | ||||
Offer | 11684179 | 1448 days ago | IN | 10.1 ETH | 0.03292374 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
14409661 | 1025 days ago | 0 ETH | |||||
14409661 | 1025 days ago | 20 ETH | |||||
14409641 | 1025 days ago | 0 ETH | |||||
14409626 | 1025 days ago | 0 ETH | |||||
14409626 | 1025 days ago | 0 ETH | |||||
14409626 | 1025 days ago | 0 ETH | |||||
14409626 | 1025 days ago | 0 ETH | |||||
14409623 | 1025 days ago | 0 ETH | |||||
14409620 | 1025 days ago | 0 ETH | |||||
14409599 | 1025 days ago | 0 ETH | |||||
14409584 | 1025 days ago | 0 ETH | |||||
14409584 | 1025 days ago | 20 ETH | |||||
14409574 | 1025 days ago | 0 ETH | |||||
14409562 | 1025 days ago | 0 ETH | |||||
14409562 | 1025 days ago | 0 ETH | |||||
14409562 | 1025 days ago | 0 ETH | |||||
14409562 | 1025 days ago | 0 ETH | |||||
14409400 | 1025 days ago | 0 ETH | |||||
14409400 | 1025 days ago | 0 ETH | |||||
14409400 | 1025 days ago | 0 ETH | |||||
14409400 | 1025 days ago | 0 ETH | |||||
14409400 | 1025 days ago | 0 ETH | |||||
14409388 | 1025 days ago | 0 ETH | |||||
14409299 | 1025 days ago | 0 ETH | |||||
11684762 | 1448 days ago | 0 ETH |
Loading...
Loading
Contract Name:
Nest_NToken_OfferMain
Compiler Version
v0.6.0+commit.26b70077
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-31 */ /** *Submitted for verification at Etherscan.io on 2020-08-11 */ pragma solidity 0.6.0; /** * @title Offering contract * @dev Offering logic and mining logic */ contract Nest_NToken_OfferMain { using SafeMath for uint256; using address_make_payable for address; using SafeERC20 for ERC20; // Offering data structure struct Nest_NToken_OfferPriceData { // The unique identifier is determined by the position of the offer in the array, and is converted to each other through a fixed algorithm (toindex(), toaddress()) address owner; // Offering owner bool deviate; // Whether it deviates address tokenAddress; // The erc20 contract address of the target offer token uint256 ethAmount; // The ETH amount in the offer list uint256 tokenAmount; // The token amount in the offer list uint256 dealEthAmount; // The remaining number of tradable ETH uint256 dealTokenAmount; // The remaining number of tradable tokens uint256 blockNum; // The block number where the offer is located uint256 serviceCharge; // The fee for mining // Determine whether the asset has been collected by judging that ethamount, tokenamount, and servicecharge are all 0 } Nest_NToken_OfferPriceData [] _prices; // Array used to save offers Nest_3_VoteFactory _voteFactory; // Voting contract Nest_3_OfferPrice _offerPrice; // Price contract Nest_NToken_TokenMapping _tokenMapping; // NToken mapping contract ERC20 _nestToken; // nestToken Nest_3_Abonus _abonus; // Bonus pool uint256 _miningETH = 10; // Offering mining fee ratio uint256 _tranEth = 1; // Taker fee ratio uint256 _tranAddition = 2; // Additional transaction multiple uint256 _leastEth = 10 ether; // Minimum offer of ETH uint256 _offerSpan = 10 ether; // ETH Offering span uint256 _deviate = 10; // Price deviation - 10% uint256 _deviationFromScale = 10; // Deviation from asset scale uint256 _ownerMining = 5; // Creator ratio uint256 _afterMiningAmount = 0.4 ether; // Stable period mining amount uint32 _blockLimit = 25; // Block interval upper limit uint256 _blockAttenuation = 2400000; // Block decay interval mapping(uint256 => mapping(address => uint256)) _blockOfferAmount; // Block offer times - block number=>token address=>offer fee mapping(uint256 => mapping(address => uint256)) _blockMining; // Offering block mining amount - block number=>token address=>mining amount uint256[10] _attenuationAmount; // Mining decay list // Log token contract address event OfferTokenContractAddress(address contractAddress); // Log offering contract, token address, amount of ETH, amount of ERC20, delayed block, mining fee event OfferContractAddress(address contractAddress, address tokenAddress, uint256 ethAmount, uint256 erc20Amount, uint256 continued,uint256 mining); // Log transaction sender, transaction token, transaction amount, purchase token address, purchase token amount, transaction offering contract address, transaction user address event OfferTran(address tranSender, address tranToken, uint256 tranAmount,address otherToken, uint256 otherAmount, address tradedContract, address tradedOwner); // Log current block, current block mined amount, token address event OreDrawingLog(uint256 nowBlock, uint256 blockAmount, address tokenAddress); // Log offering block, token address, token offered times event MiningLog(uint256 blockNum, address tokenAddress, uint256 offerTimes); /** * Initialization method * @param voteFactory Voting contract address **/ constructor (address voteFactory) public { Nest_3_VoteFactory voteFactoryMap = Nest_3_VoteFactory(address(voteFactory)); _voteFactory = voteFactoryMap; _offerPrice = Nest_3_OfferPrice(address(voteFactoryMap.checkAddress("nest.v3.offerPrice"))); _nestToken = ERC20(voteFactoryMap.checkAddress("nest")); _abonus = Nest_3_Abonus(voteFactoryMap.checkAddress("nest.v3.abonus")); _tokenMapping = Nest_NToken_TokenMapping(address(voteFactoryMap.checkAddress("nest.nToken.tokenMapping"))); uint256 blockAmount = 4 ether; for (uint256 i = 0; i < 10; i ++) { _attenuationAmount[i] = blockAmount; blockAmount = blockAmount.mul(8).div(10); } } /** * Reset voting contract method * @param voteFactory Voting contract address **/ function changeMapping(address voteFactory) public onlyOwner { Nest_3_VoteFactory voteFactoryMap = Nest_3_VoteFactory(address(voteFactory)); _voteFactory = voteFactoryMap; _offerPrice = Nest_3_OfferPrice(address(voteFactoryMap.checkAddress("nest.v3.offerPrice"))); _nestToken = ERC20(voteFactoryMap.checkAddress("nest")); _abonus = Nest_3_Abonus(voteFactoryMap.checkAddress("nest.v3.abonus")); _tokenMapping = Nest_NToken_TokenMapping(address(voteFactoryMap.checkAddress("nest.nToken.tokenMapping"))); } /** * Offering method * @param ethAmount ETH amount * @param erc20Amount Erc20 token amount * @param erc20Address Erc20 token address **/ function offer(uint256 ethAmount, uint256 erc20Amount, address erc20Address) public payable { require(address(msg.sender) == address(tx.origin), "It can't be a contract"); address nTokenAddress = _tokenMapping.checkTokenMapping(erc20Address); require(nTokenAddress != address(0x0)); // Judge whether the price deviates uint256 ethMining; bool isDeviate = comparativePrice(ethAmount,erc20Amount,erc20Address); if (isDeviate) { require(ethAmount >= _leastEth.mul(_deviationFromScale), "EthAmount needs to be no less than 10 times of the minimum scale"); ethMining = _leastEth.mul(_miningETH).div(1000); } else { ethMining = ethAmount.mul(_miningETH).div(1000); } require(msg.value >= ethAmount.add(ethMining), "msg.value needs to be equal to the quoted eth quantity plus Mining handling fee"); uint256 subValue = msg.value.sub(ethAmount.add(ethMining)); if (subValue > 0) { repayEth(address(msg.sender), subValue); } // Create an offer createOffer(ethAmount, erc20Amount, erc20Address,isDeviate, ethMining); // Transfer in offer asset - erc20 to this contract ERC20(erc20Address).safeTransferFrom(address(msg.sender), address(this), erc20Amount); _abonus.switchToEthForNTokenOffer.value(ethMining)(nTokenAddress); // Mining if (_blockOfferAmount[block.number][erc20Address] == 0) { uint256 miningAmount = oreDrawing(nTokenAddress); Nest_NToken nToken = Nest_NToken(nTokenAddress); nToken.transfer(nToken.checkBidder(), miningAmount.mul(_ownerMining).div(100)); _blockMining[block.number][erc20Address] = miningAmount.sub(miningAmount.mul(_ownerMining).div(100)); } _blockOfferAmount[block.number][erc20Address] = _blockOfferAmount[block.number][erc20Address].add(ethMining); } /** * @dev Create offer * @param ethAmount Offering ETH amount * @param erc20Amount Offering erc20 amount * @param erc20Address Offering erc20 address **/ function createOffer(uint256 ethAmount, uint256 erc20Amount, address erc20Address, bool isDeviate, uint256 mining) private { // Check offer conditions require(ethAmount >= _leastEth, "Eth scale is smaller than the minimum scale"); require(ethAmount % _offerSpan == 0, "Non compliant asset span"); require(erc20Amount % (ethAmount.div(_offerSpan)) == 0, "Asset quantity is not divided"); require(erc20Amount > 0); // Create offering contract emit OfferContractAddress(toAddress(_prices.length), address(erc20Address), ethAmount, erc20Amount,_blockLimit,mining); _prices.push(Nest_NToken_OfferPriceData( msg.sender, isDeviate, erc20Address, ethAmount, erc20Amount, ethAmount, erc20Amount, block.number, mining )); // Record price _offerPrice.addPrice(ethAmount, erc20Amount, block.number.add(_blockLimit), erc20Address, address(msg.sender)); } // Convert offer address into index in offer array function toIndex(address contractAddress) public pure returns(uint256) { return uint256(contractAddress); } // Convert index in offer array into offer address function toAddress(uint256 index) public pure returns(address) { return address(index); } /** * Withdraw offer assets * @param contractAddress Offer address **/ function turnOut(address contractAddress) public { require(address(msg.sender) == address(tx.origin), "It can't be a contract"); uint256 index = toIndex(contractAddress); Nest_NToken_OfferPriceData storage offerPriceData = _prices[index]; require(checkContractState(offerPriceData.blockNum) == 1, "Offer status error"); // Withdraw ETH if (offerPriceData.ethAmount > 0) { uint256 payEth = offerPriceData.ethAmount; offerPriceData.ethAmount = 0; repayEth(offerPriceData.owner, payEth); } // Withdraw erc20 if (offerPriceData.tokenAmount > 0) { uint256 payErc = offerPriceData.tokenAmount; offerPriceData.tokenAmount = 0; ERC20(address(offerPriceData.tokenAddress)).safeTransfer(address(offerPriceData.owner), payErc); } // Mining settlement if (offerPriceData.serviceCharge > 0) { mining(offerPriceData.blockNum, offerPriceData.tokenAddress, offerPriceData.serviceCharge, offerPriceData.owner); offerPriceData.serviceCharge = 0; } } /** * @dev Taker order - pay ETH and buy erc20 * @param ethAmount The amount of ETH of this offer * @param tokenAmount The amount of erc20 of this offer * @param contractAddress The target offer address * @param tranEthAmount The amount of ETH of taker order * @param tranTokenAmount The amount of erc20 of taker order * @param tranTokenAddress The erc20 address of taker order */ function sendEthBuyErc(uint256 ethAmount, uint256 tokenAmount, address contractAddress, uint256 tranEthAmount, uint256 tranTokenAmount, address tranTokenAddress) public payable { require(address(msg.sender) == address(tx.origin), "It can't be a contract"); uint256 serviceCharge = tranEthAmount.mul(_tranEth).div(1000); require(msg.value == ethAmount.add(tranEthAmount).add(serviceCharge), "msg.value needs to be equal to the quotation eth quantity plus transaction eth plus"); require(tranEthAmount % _offerSpan == 0, "Transaction size does not meet asset span"); // Get the offer data structure uint256 index = toIndex(contractAddress); Nest_NToken_OfferPriceData memory offerPriceData = _prices[index]; // Check the price, compare the current offer to the last effective price bool thisDeviate = comparativePrice(ethAmount,tokenAmount,tranTokenAddress); bool isDeviate; if (offerPriceData.deviate == true) { isDeviate = true; } else { isDeviate = thisDeviate; } // Limit the taker order only be twice the amount of the offer to prevent large-amount attacks if (offerPriceData.deviate) { // The taker order deviates x2 require(ethAmount >= tranEthAmount.mul(_tranAddition), "EthAmount needs to be no less than 2 times of transaction scale"); } else { if (isDeviate) { // If the taken offer is normal and the taker order deviates x10 require(ethAmount >= tranEthAmount.mul(_deviationFromScale), "EthAmount needs to be no less than 10 times of transaction scale"); } else { // If the taken offer is normal and the taker order is normal x2 require(ethAmount >= tranEthAmount.mul(_tranAddition), "EthAmount needs to be no less than 2 times of transaction scale"); } } // Check whether the conditions for taker order are satisfied require(checkContractState(offerPriceData.blockNum) == 0, "Offer status error"); require(offerPriceData.dealEthAmount >= tranEthAmount, "Insufficient trading eth"); require(offerPriceData.dealTokenAmount >= tranTokenAmount, "Insufficient trading token"); require(offerPriceData.tokenAddress == tranTokenAddress, "Wrong token address"); require(tranTokenAmount == offerPriceData.dealTokenAmount * tranEthAmount / offerPriceData.dealEthAmount, "Wrong token amount"); // Update the offer information offerPriceData.ethAmount = offerPriceData.ethAmount.add(tranEthAmount); offerPriceData.tokenAmount = offerPriceData.tokenAmount.sub(tranTokenAmount); offerPriceData.dealEthAmount = offerPriceData.dealEthAmount.sub(tranEthAmount); offerPriceData.dealTokenAmount = offerPriceData.dealTokenAmount.sub(tranTokenAmount); _prices[index] = offerPriceData; // Create a new offer createOffer(ethAmount, tokenAmount, tranTokenAddress, isDeviate, 0); // Transfer in erc20 + offer asset to this contract if (tokenAmount > tranTokenAmount) { ERC20(tranTokenAddress).safeTransferFrom(address(msg.sender), address(this), tokenAmount.sub(tranTokenAmount)); } else { ERC20(tranTokenAddress).safeTransfer(address(msg.sender), tranTokenAmount.sub(tokenAmount)); } // Modify price _offerPrice.changePrice(tranEthAmount, tranTokenAmount, tranTokenAddress, offerPriceData.blockNum.add(_blockLimit)); emit OfferTran(address(msg.sender), address(0x0), tranEthAmount, address(tranTokenAddress), tranTokenAmount, contractAddress, offerPriceData.owner); // Transfer fee if (serviceCharge > 0) { address nTokenAddress = _tokenMapping.checkTokenMapping(tranTokenAddress); _abonus.switchToEth.value(serviceCharge)(nTokenAddress); } } /** * @dev Taker order - pay erc20 and buy ETH * @param ethAmount The amount of ETH of this offer * @param tokenAmount The amount of erc20 of this offer * @param contractAddress The target offer address * @param tranEthAmount The amount of ETH of taker order * @param tranTokenAmount The amount of erc20 of taker order * @param tranTokenAddress The erc20 address of taker order */ function sendErcBuyEth(uint256 ethAmount, uint256 tokenAmount, address contractAddress, uint256 tranEthAmount, uint256 tranTokenAmount, address tranTokenAddress) public payable { require(address(msg.sender) == address(tx.origin), "It can't be a contract"); uint256 serviceCharge = tranEthAmount.mul(_tranEth).div(1000); require(msg.value == ethAmount.sub(tranEthAmount).add(serviceCharge), "msg.value needs to be equal to the quoted eth quantity plus transaction handling fee"); require(tranEthAmount % _offerSpan == 0, "Transaction size does not meet asset span"); // Get the offer data structure uint256 index = toIndex(contractAddress); Nest_NToken_OfferPriceData memory offerPriceData = _prices[index]; // Check the price, compare the current offer to the last effective price bool thisDeviate = comparativePrice(ethAmount,tokenAmount,tranTokenAddress); bool isDeviate; if (offerPriceData.deviate == true) { isDeviate = true; } else { isDeviate = thisDeviate; } // Limit the taker order only be twice the amount of the offer to prevent large-amount attacks if (offerPriceData.deviate) { // The taker order deviates x2 require(ethAmount >= tranEthAmount.mul(_tranAddition), "EthAmount needs to be no less than 2 times of transaction scale"); } else { if (isDeviate) { // If the taken offer is normal and the taker order deviates x10 require(ethAmount >= tranEthAmount.mul(_deviationFromScale), "EthAmount needs to be no less than 10 times of transaction scale"); } else { // If the taken offer is normal and the taker order is normal x2 require(ethAmount >= tranEthAmount.mul(_tranAddition), "EthAmount needs to be no less than 2 times of transaction scale"); } } // Check whether the conditions for taker order are satisfied require(checkContractState(offerPriceData.blockNum) == 0, "Offer status error"); require(offerPriceData.dealEthAmount >= tranEthAmount, "Insufficient trading eth"); require(offerPriceData.dealTokenAmount >= tranTokenAmount, "Insufficient trading token"); require(offerPriceData.tokenAddress == tranTokenAddress, "Wrong token address"); require(tranTokenAmount == offerPriceData.dealTokenAmount * tranEthAmount / offerPriceData.dealEthAmount, "Wrong token amount"); // Update the offer information offerPriceData.ethAmount = offerPriceData.ethAmount.sub(tranEthAmount); offerPriceData.tokenAmount = offerPriceData.tokenAmount.add(tranTokenAmount); offerPriceData.dealEthAmount = offerPriceData.dealEthAmount.sub(tranEthAmount); offerPriceData.dealTokenAmount = offerPriceData.dealTokenAmount.sub(tranTokenAmount); _prices[index] = offerPriceData; // Create a new offer createOffer(ethAmount, tokenAmount, tranTokenAddress, isDeviate, 0); // Transfer in erc20 + offer asset to this contract ERC20(tranTokenAddress).safeTransferFrom(address(msg.sender), address(this), tranTokenAmount.add(tokenAmount)); // Modify price _offerPrice.changePrice(tranEthAmount, tranTokenAmount, tranTokenAddress, offerPriceData.blockNum.add(_blockLimit)); emit OfferTran(address(msg.sender), address(tranTokenAddress), tranTokenAmount, address(0x0), tranEthAmount, contractAddress, offerPriceData.owner); // Transfer fee if (serviceCharge > 0) { address nTokenAddress = _tokenMapping.checkTokenMapping(tranTokenAddress); _abonus.switchToEth.value(serviceCharge)(nTokenAddress); } } /** * Offering mining * @param ntoken NToken address **/ function oreDrawing(address ntoken) private returns(uint256) { Nest_NToken miningToken = Nest_NToken(ntoken); (uint256 createBlock, uint256 recentlyUsedBlock) = miningToken.checkBlockInfo(); uint256 attenuationPointNow = block.number.sub(createBlock).div(_blockAttenuation); uint256 miningAmount = 0; uint256 attenuation; if (attenuationPointNow > 9) { attenuation = _afterMiningAmount; } else { attenuation = _attenuationAmount[attenuationPointNow]; } miningAmount = attenuation.mul(block.number.sub(recentlyUsedBlock)); miningToken.increaseTotal(miningAmount); emit OreDrawingLog(block.number, miningAmount, ntoken); return miningAmount; } /** * Retrieve mining * @param token Token address **/ function mining(uint256 blockNum, address token, uint256 serviceCharge, address owner) private returns(uint256) { // Block mining amount*offer fee/block offer fee uint256 miningAmount = _blockMining[blockNum][token].mul(serviceCharge).div(_blockOfferAmount[blockNum][token]); // Transfer NToken Nest_NToken nToken = Nest_NToken(address(_tokenMapping.checkTokenMapping(token))); require(nToken.transfer(address(owner), miningAmount), "Transfer failure"); emit MiningLog(blockNum, token,_blockOfferAmount[blockNum][token]); return miningAmount; } // Compare order prices function comparativePrice(uint256 myEthValue, uint256 myTokenValue, address token) private view returns(bool) { (uint256 frontEthValue, uint256 frontTokenValue) = _offerPrice.updateAndCheckPricePrivate(token); if (frontEthValue == 0 || frontTokenValue == 0) { return false; } uint256 maxTokenAmount = myEthValue.mul(frontTokenValue).mul(uint256(100).add(_deviate)).div(frontEthValue.mul(100)); if (myTokenValue <= maxTokenAmount) { uint256 minTokenAmount = myEthValue.mul(frontTokenValue).mul(uint256(100).sub(_deviate)).div(frontEthValue.mul(100)); if (myTokenValue >= minTokenAmount) { return false; } } return true; } // Check contract status function checkContractState(uint256 createBlock) public view returns (uint256) { if (block.number.sub(createBlock) > _blockLimit) { return 1; } return 0; } // Transfer ETH function repayEth(address accountAddress, uint256 asset) private { address payable addr = accountAddress.make_payable(); addr.transfer(asset); } // View the upper limit of the block interval function checkBlockLimit() public view returns(uint256) { return _blockLimit; } // View taker fee ratio function checkTranEth() public view returns (uint256) { return _tranEth; } // View additional transaction multiple function checkTranAddition() public view returns(uint256) { return _tranAddition; } // View minimum offering ETH function checkleastEth() public view returns(uint256) { return _leastEth; } // View offering ETH span function checkOfferSpan() public view returns(uint256) { return _offerSpan; } // View block offering amount function checkBlockOfferAmount(uint256 blockNum, address token) public view returns (uint256) { return _blockOfferAmount[blockNum][token]; } // View offering block mining amount function checkBlockMining(uint256 blockNum, address token) public view returns (uint256) { return _blockMining[blockNum][token]; } // View offering mining amount function checkOfferMining(uint256 blockNum, address token, uint256 serviceCharge) public view returns (uint256) { if (serviceCharge == 0) { return 0; } else { return _blockMining[blockNum][token].mul(serviceCharge).div(_blockOfferAmount[blockNum][token]); } } // View the owner allocation ratio function checkOwnerMining() public view returns(uint256) { return _ownerMining; } // View the mining decay function checkAttenuationAmount(uint256 num) public view returns(uint256) { return _attenuationAmount[num]; } // Modify taker order fee ratio function changeTranEth(uint256 num) public onlyOwner { _tranEth = num; } // Modify block interval upper limit function changeBlockLimit(uint32 num) public onlyOwner { _blockLimit = num; } // Modify additional transaction multiple function changeTranAddition(uint256 num) public onlyOwner { require(num > 0, "Parameter needs to be greater than 0"); _tranAddition = num; } // Modify minimum offering ETH function changeLeastEth(uint256 num) public onlyOwner { require(num > 0, "Parameter needs to be greater than 0"); _leastEth = num; } // Modify offering ETH span function changeOfferSpan(uint256 num) public onlyOwner { require(num > 0, "Parameter needs to be greater than 0"); _offerSpan = num; } // Modify price deviation function changekDeviate(uint256 num) public onlyOwner { _deviate = num; } // Modify the deviation from scale function changeDeviationFromScale(uint256 num) public onlyOwner { _deviationFromScale = num; } // Modify the owner allocation ratio function changeOwnerMining(uint256 num) public onlyOwner { _ownerMining = num; } // Modify the mining decay function changeAttenuationAmount(uint256 firstAmount, uint256 top, uint256 bottom) public onlyOwner { uint256 blockAmount = firstAmount; for (uint256 i = 0; i < 10; i ++) { _attenuationAmount[i] = blockAmount; blockAmount = blockAmount.mul(top).div(bottom); } } // Vote administrators only modifier onlyOwner(){ require(_voteFactory.checkOwners(msg.sender), "No authority"); _; } /** * Get the number of offers stored in the offer array * @return The number of offers stored in the offer array **/ function getPriceCount() view public returns (uint256) { return _prices.length; } /** * Get offer information according to the index * @param priceIndex Offer index * @return Offer information **/ function getPrice(uint256 priceIndex) view public returns (string memory) { // The buffer array used to generate the result string bytes memory buf = new bytes(500000); uint256 index = 0; index = writeOfferPriceData(priceIndex, _prices[priceIndex], buf, index); // Generate the result string and return bytes memory str = new bytes(index); while(index-- > 0) { str[index] = buf[index]; } return string(str); } /** * Search the contract address list of the target account (reverse order) * @param start Search forward from the index corresponding to the given contract address (not including the record corresponding to start address) * @param count Maximum number of records to return * @param maxFindCount The max index to search * @param owner Target account address * @return Separate the offer records with symbols. use , to divide fields: * uuid,owner,tokenAddress,ethAmount,tokenAmount,dealEthAmount,dealTokenAmount,blockNum,serviceCharge **/ function find(address start, uint256 count, uint256 maxFindCount, address owner) view public returns (string memory) { // Buffer array used to generate result string bytes memory buf = new bytes(500000); uint256 index = 0; // Calculate search interval i and end uint256 i = _prices.length; uint256 end = 0; if (start != address(0)) { i = toIndex(start); } if (i > maxFindCount) { end = i - maxFindCount; } // Loop search, write qualified records into buffer while (count > 0 && i-- > end) { Nest_NToken_OfferPriceData memory price = _prices[i]; if (price.owner == owner) { --count; index = writeOfferPriceData(i, price, buf, index); } } // Generate result string and return bytes memory str = new bytes(index); while(index-- > 0) { str[index] = buf[index]; } return string(str); } /** * Get the list of offers by page * @param offset Skip the first offset records * @param count Maximum number of records to return * @param order Sort rules. 0 means reverse order, non-zero means positive order * @return Separate the offer records with symbols. use , to divide fields: * uuid,owner,tokenAddress,ethAmount,tokenAmount,dealEthAmount,dealTokenAmount,blockNum,serviceCharge **/ function list(uint256 offset, uint256 count, uint256 order) view public returns (string memory) { // Buffer array used to generate result string bytes memory buf = new bytes(500000); uint256 index = 0; // Find search interval i and end uint256 i = 0; uint256 end = 0; if (order == 0) { // Reverse order, in default // Calculate search interval i and end if (offset < _prices.length) { i = _prices.length - offset; } if (count < i) { end = i - count; } // Write records in the target interval into the buffer while (i-- > end) { index = writeOfferPriceData(i, _prices[i], buf, index); } } else { // Ascending order // Calculate the search interval i and end if (offset < _prices.length) { i = offset; } else { i = _prices.length; } end = i + count; if(end > _prices.length) { end = _prices.length; } // Write the records in the target interval into the buffer while (i < end) { index = writeOfferPriceData(i, _prices[i], buf, index); ++i; } } // Generate the result string and return bytes memory str = new bytes(index); while(index-- > 0) { str[index] = buf[index]; } return string(str); } // Write the offer data into the buffer and return the buffer index function writeOfferPriceData(uint256 priceIndex, Nest_NToken_OfferPriceData memory price, bytes memory buf, uint256 index) pure private returns (uint256) { index = writeAddress(toAddress(priceIndex), buf, index); buf[index++] = byte(uint8(44)); index = writeAddress(price.owner, buf, index); buf[index++] = byte(uint8(44)); index = writeAddress(price.tokenAddress, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.ethAmount, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.tokenAmount, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.dealEthAmount, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.dealTokenAmount, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.blockNum, buf, index); buf[index++] = byte(uint8(44)); index = writeUInt(price.serviceCharge, buf, index); buf[index++] = byte(uint8(44)); return index; } // Convert integer to string in decimal form, write the string into the buffer, and return the buffer index function writeUInt(uint256 iv, bytes memory buf, uint256 index) pure public returns (uint256) { uint256 i = index; do { buf[index++] = byte(uint8(iv % 10 +48)); iv /= 10; } while (iv > 0); for (uint256 j = index; j > i; ++i) { byte t = buf[i]; buf[i] = buf[--j]; buf[j] = t; } return index; } // Convert the address to a hexadecimal string and write it into the buffer, and return the buffer index function writeAddress(address addr, bytes memory buf, uint256 index) pure private returns (uint256) { uint256 iv = uint256(addr); uint256 i = index + 40; do { uint256 w = iv % 16; if(w < 10) { buf[index++] = byte(uint8(w +48)); } else { buf[index++] = byte(uint8(w +87)); } iv /= 16; } while (index < i); i -= 40; for (uint256 j = index; j > i; ++i) { byte t = buf[i]; buf[i] = buf[--j]; buf[j] = t; } return index; } } // Price contract interface Nest_3_OfferPrice { // Add price data function addPrice(uint256 ethAmount, uint256 tokenAmount, uint256 endBlock, address tokenAddress, address offerOwner) external; // Modify price function changePrice(uint256 ethAmount, uint256 tokenAmount, address tokenAddress, uint256 endBlock) external; function updateAndCheckPricePrivate(address tokenAddress) external view returns(uint256 ethAmount, uint256 erc20Amount); } // Voting contract interface Nest_3_VoteFactory { // Check address function checkAddress(string calldata name) external view returns (address contractAddress); // Check whether an administrator function checkOwners(address man) external view returns (bool); } // NToken contract interface Nest_NToken { // Additional issuance function increaseTotal(uint256 value) external; // Check mining information function checkBlockInfo() external view returns(uint256 createBlock, uint256 recentlyUsedBlock); // Check creator function checkBidder() external view returns(address); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // NToken mapping contract interface Nest_NToken_TokenMapping { // Check token mapping function checkTokenMapping(address token) external view returns (address); } // Bonus pool contract interface Nest_3_Abonus { function switchToEth(address token) external payable; function switchToEthForNTokenOffer(address token) external payable; } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library address_make_payable { function make_payable(address x) internal pure returns (address payable) { return address(uint160(x)); } } library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(ERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(ERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(ERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function callOptionalReturn(ERC20 token, bytes memory data) private { require(address(token).isContract(), "SafeERC20: call to non-contract"); (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } interface ERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library Address { function isContract(address account) internal view returns (bool) { bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"voteFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockNum","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"offerTimes","type":"uint256"}],"name":"MiningLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"erc20Amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"continued","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mining","type":"uint256"}],"name":"OfferContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"OfferTokenContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tranSender","type":"address"},{"indexed":false,"internalType":"address","name":"tranToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"tranAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"otherToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"otherAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tradedContract","type":"address"},{"indexed":false,"internalType":"address","name":"tradedOwner","type":"address"}],"name":"OfferTran","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"nowBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"OreDrawingLog","type":"event"},{"inputs":[{"internalType":"uint256","name":"firstAmount","type":"uint256"},{"internalType":"uint256","name":"top","type":"uint256"},{"internalType":"uint256","name":"bottom","type":"uint256"}],"name":"changeAttenuationAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"num","type":"uint32"}],"name":"changeBlockLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeDeviationFromScale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeLeastEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voteFactory","type":"address"}],"name":"changeMapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeOfferSpan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeOwnerMining","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeTranAddition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeTranEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changekDeviate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"checkAttenuationAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkBlockLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNum","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"checkBlockMining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNum","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"checkBlockOfferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"createBlock","type":"uint256"}],"name":"checkContractState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNum","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"serviceCharge","type":"uint256"}],"name":"checkOfferMining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkOfferSpan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkOwnerMining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTranAddition","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTranEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkleastEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"start","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"maxFindCount","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"find","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceIndex","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"offset","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"order","type":"uint256"}],"name":"list","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"erc20Amount","type":"uint256"},{"internalType":"address","name":"erc20Address","type":"address"}],"name":"offer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"tranEthAmount","type":"uint256"},{"internalType":"uint256","name":"tranTokenAmount","type":"uint256"},{"internalType":"address","name":"tranTokenAddress","type":"address"}],"name":"sendErcBuyEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"tranEthAmount","type":"uint256"},{"internalType":"uint256","name":"tranTokenAmount","type":"uint256"},{"internalType":"address","name":"tranTokenAddress","type":"address"}],"name":"sendEthBuyErc","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"toAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"toIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"turnOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"iv","type":"uint256"},{"internalType":"bytes","name":"buf","type":"bytes"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"writeUInt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
6080604052600a600681905560016007556002600855678ac7230489e8000060098190558155600b819055600c556005600d5567058d15e176280000600e55600f805463ffffffff1916601917905562249f006010553480156200006257600080fd5b5060405162004a7c38038062004a7c833981810160405260208110156200008857600080fd5b5051600180546001600160a01b0319166001600160a01b038316908117909155604080516347f3bf4360e11b815260206004820181905260126024830152716e6573742e76332e6f66666572507269636560701b60448301529151849392638fe77e869260648082019391829003018186803b1580156200010857600080fd5b505afa1580156200011d573d6000803e3d6000fd5b505050506040513d60208110156200013457600080fd5b5051600280546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048083018290526024830152631b995cdd60e21b6044830152915192841692638fe77e8692606480840193919291829003018186803b158015620001a657600080fd5b505afa158015620001bb573d6000803e3d6000fd5b505050506040513d6020811015620001d257600080fd5b5051600480546001600160a01b0319166001600160a01b03928316178155604080516347f3bf4360e11b81526020928101839052600e60248201526d6e6573742e76332e61626f6e757360901b6044820152905192841692638fe77e8692606480840193919291829003018186803b1580156200024e57600080fd5b505afa15801562000263573d6000803e3d6000fd5b505050506040513d60208110156200027a57600080fd5b5051600580546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048201819052601860248301527f6e6573742e6e546f6b656e2e746f6b656e4d617070696e6700000000000000006044830152915192841692638fe77e8692606480840193919291829003018186803b1580156200030657600080fd5b505afa1580156200031b573d6000803e3d6000fd5b505050506040513d60208110156200033257600080fd5b5051600380546001600160a01b0319166001600160a01b03909216919091179055673782dace9d90000060005b600a811015620003b85781601382600a81106200037857fe5b0155620003ad600a62000399846008620003c2602090811b620032d717901c565b6200042960201b620033301790919060201c565b91506001016200035f565b505050506200051a565b600082620003d35750600062000423565b82820282848281620003e157fe5b0414620004205760405162461bcd60e51b815260040180806020018281038252602181526020018062004a5b6021913960400191505060405180910390fd5b90505b92915050565b60006200042083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200047360201b60201c565b60008183620005035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620004c7578181015183820152602001620004ad565b50505050905090810190601f168015620004f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200051057fe5b0495945050505050565b614531806200052a6000396000f3fe6080604052600436106101e35760003560e01c8063b3e2767c11610102578063e0051aa911610095578063e9ec551d11610064578063e9ec551d146107f1578063f0bbe1ba14610824578063f6a4932f1461084e578063faee702214610880576101e3565b8063e0051aa91461072d578063e18da8bf14610773578063e5d69e3f1461079d578063e7572230146107c7576101e3565b8063cbc7ef09116100d1578063cbc7ef091461066e578063cd6d875614610683578063d900d676146106bc578063dea0799a14610703576101e3565b8063b3e2767c146105bf578063b43ea2d814610605578063b86f25581461062f578063c48c1a7114610659576101e3565b80633d9faf871161017a57806395334db21161014957806395334db2146104645780639abe81c814610497578063a16f460f146104d0578063a781e7f81461058c576101e3565b80633d9faf87146103be57806343c53364146103f45780638d7092e61461040957806391f5f9f31461041e576101e3565b806326a203cb116101b657806326a203cb1461031057806334e66f1e1461033a57806335d63d321461034f5780633aedef141461038e576101e3565b806308920330146101e8578063180d574c14610214578063187f3d981461025057806319aeb49014610265575b600080fd5b3480156101f457600080fd5b506102126004803603602081101561020b57600080fd5b5035610895565b005b34801561022057600080fd5b5061023e6004803603602081101561023757600080fd5b5035610951565b60408051918252519081900360200190f35b34801561025c57600080fd5b5061023e61096a565b34801561027157600080fd5b5061029b6004803603606081101561028857600080fd5b5080359060208101359060400135610970565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d55781810151838201526020016102bd565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031c57600080fd5b506102126004803603602081101561033357600080fd5b5035610b5a565b34801561034657600080fd5b5061023e610c16565b34801561035b57600080fd5b5061023e6004803603606081101561037257600080fd5b508035906001600160a01b036020820135169060400135610c1c565b34801561039a57600080fd5b50610212600480360360208110156103b157600080fd5b503563ffffffff16610c8b565b3480156103ca57600080fd5b50610212600480360360608110156103e157600080fd5b5080359060208101359060400135610d5e565b34801561040057600080fd5b5061023e610e57565b34801561041557600080fd5b5061023e610e5d565b610212600480360360c081101561043457600080fd5b508035906020810135906001600160a01b03604082013581169160608101359160808201359160a0013516610e63565b34801561047057600080fd5b5061023e6004803603602081101561048757600080fd5b50356001600160a01b03166116af565b3480156104a357600080fd5b5061023e600480360360408110156104ba57600080fd5b50803590602001356001600160a01b03166116bb565b3480156104dc57600080fd5b5061023e600480360360608110156104f357600080fd5b8135919081019060408101602082013564010000000081111561051557600080fd5b82018360208201111561052757600080fd5b8035906020019184600183028401116401000000008311171561054957600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506116e5915050565b34801561059857600080fd5b50610212600480360360208110156105af57600080fd5b50356001600160a01b03166117ca565b610212600480360360c08110156105d557600080fd5b508035906020810135906001600160a01b03604082013581169160608101359160808201359160a0013516611b42565b34801561061157600080fd5b506102126004803603602081101561062857600080fd5b503561228d565b34801561063b57600080fd5b506102126004803603602081101561065257600080fd5b5035612349565b34801561066557600080fd5b5061023e612444565b34801561067a57600080fd5b5061023e61244a565b34801561068f57600080fd5b5061023e600480360360408110156106a657600080fd5b50803590602001356001600160a01b0316612456565b3480156106c857600080fd5b5061029b600480360360808110156106df57600080fd5b506001600160a01b038135811691602081013591604082013591606001351661247e565b34801561070f57600080fd5b506102126004803603602081101561072657600080fd5b5035612641565b34801561073957600080fd5b506107576004803603602081101561075057600080fd5b50356126fd565b604080516001600160a01b039092168252519081900360200190f35b34801561077f57600080fd5b5061023e6004803603602081101561079657600080fd5b5035612700565b3480156107a957600080fd5b50610212600480360360208110156107c057600080fd5b5035612733565b3480156107d357600080fd5b5061029b600480360360208110156107ea57600080fd5b503561282e565b3480156107fd57600080fd5b506102126004803603602081101561081457600080fd5b50356001600160a01b0316612985565b34801561083057600080fd5b506102126004803603602081101561084757600080fd5b5035612afb565b6102126004803603606081101561086457600080fd5b50803590602081013590604001356001600160a01b0316612bf6565b34801561088c57600080fd5b5061023e613095565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b1580156108e057600080fd5b505afa1580156108f4573d6000803e3d6000fd5b505050506040513d602081101561090a57600080fd5b505161094c576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600c55565b6000601382600a811061096057fe5b015490505b919050565b60085490565b604080516207a1208082526207a14082019092526060918291906020820181803883390190505090506000808085610a7f576000548810156109b55760005488900391505b818710156109c257508581035b600019820191811015610a7a57610a7382600084815481106109e057fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b038082168552600160a01b90910460ff161515948401949094526001810154909316908201526002820154606082015260038201546080820152600482015460a0820152600582015460c0820152600682015460e0820152600790910154610100820152868661309b565b92506109c2565b610ad1565b600054881015610a9157879150610a97565b60005491505b5060005481870190811115610aab57506000545b80821015610ad157610ac482600084815481106109e057fe5b9250816001019150610aab565b6060836040519080825280601f01601f191660200182016040528015610afe576020820181803883390190505b5090505b60001984019315610b4c57848481518110610b1957fe5b602001015160f81c60f81b818581518110610b3057fe5b60200101906001600160f81b031916908160001a905350610b02565b9450505050505b9392505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610ba557600080fd5b505afa158015610bb9573d6000803e3d6000fd5b505050506040513d6020811015610bcf57600080fd5b5051610c11576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600755565b60075490565b600081610c2b57506000610b53565b60008481526011602090815260408083206001600160a01b0387168085529083528184205488855260128452828520918552925290912054610c849190610c78908563ffffffff6132d716565b9063ffffffff61333016565b9050610b53565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610cd657600080fd5b505afa158015610cea573d6000803e3d6000fd5b505050506040513d6020811015610d0057600080fd5b5051610d42576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600f805463ffffffff191663ffffffff92909216919091179055565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610da957600080fd5b505afa158015610dbd573d6000803e3d6000fd5b505050506040513d6020811015610dd357600080fd5b5051610e15576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b8260005b600a811015610e505781601382600a8110610e3057fe5b0155610e4683610c78848763ffffffff6132d716565b9150600101610e19565b5050505050565b600d5490565b600a5490565b333214610eb0576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6000610ecd6103e8610c78600754876132d790919063ffffffff16565b9050610eef81610ee3898763ffffffff61337216565b9063ffffffff61337216565b3414610f2c5760405162461bcd60e51b81526004018080602001828103825260538152602001806143f06053913960600191505060405180910390fd5b600a548481610f3757fe5b0615610f745760405162461bcd60e51b81526004018080602001828103825260298152602001806142af6029913960400191505060405180910390fd5b6000610f7f866116af565b9050610f89614223565b60008281548110610f9657fe5b60009182526020808320604080516101208101825260089490940290910180546001600160a01b038082168652600160a01b90910460ff161515938501939093526001810154909216908301526002810154606083015260038101546080830152600481015460a0830152600581015460c0830152600681015460e083015260070154610100820152915061102c8a8a876133cc565b90506000826020015115156001151514156110495750600161104c565b50805b8260200151156110ad5760085461106a90899063ffffffff6132d716565b8b10156110a85760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611157565b801561110557600c546110c790899063ffffffff6132d716565b8b10156110a85760405162461bcd60e51b815260040180806020018281038252604081526020018061435c6040913960400191505060405180910390fd5b60085461111990899063ffffffff6132d716565b8b10156111575760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b6111648360e00151612700565b156111ab576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b878360a0015110156111ff576040805162461bcd60e51b8152602060048201526018602482015277092dce6eaccccd2c6d2cadce840e8e4c2c8d2dcce40cae8d60431b604482015290519081900360640190fd5b868360c001511015611258576040805162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742074726164696e6720746f6b656e000000000000604482015290519081900360640190fd5b856001600160a01b031683604001516001600160a01b0316146112b8576040805162461bcd60e51b815260206004820152601360248201527257726f6e6720746f6b656e206164647265737360681b604482015290519081900360640190fd5b8260a00151888460c0015102816112cb57fe5b048714611314576040805162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d1bdad95b88185b5bdd5b9d60721b604482015290519081900360640190fd5b6060830151611329908963ffffffff61337216565b60608401526080830151611343908863ffffffff61352716565b608084015260a083015161135d908963ffffffff61352716565b60a084015260c0830151611377908863ffffffff61352716565b60c0840152600080548491908690811061138d57fe5b6000918252602080832084516008909302018054918501511515600160a01b0260ff60a01b196001600160a01b039485166001600160a01b03199485161716178155604085015160018201805491909416921691909117909155606083015160028201556080830151600382015560a0830151600482015560c0830151600582015560e083015160068201556101009092015160079092019190915561143a908c908c9089908590613569565b868a11156114745761146f33306114578d8b63ffffffff61352716565b6001600160a01b038a1692919063ffffffff61396f16565b61149f565b61149f33611488898d63ffffffff61352716565b6001600160a01b038916919063ffffffff6139cf16565b600254600f5460e08501516001600160a01b0390921691635d4d3bf7918b918b918b916114d59163ffffffff9081169061337216565b6040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050600060405180830381600087803b15801561153257600080fd5b505af1158015611546573d6000803e3d6000fd5b5050845160408051338152600060208201528082018d90526001600160a01b03808c166060830152608082018d9052808f1660a083015290921660c0830152517fb8c434e6eb8ba9594890fe8e179e5519149e23a92e13ae561bf19efd6b953db093509081900360e0019150a184156116a2576003546040805163323442c360e11b81526001600160a01b03898116600483015291516000939290921691636468858691602480820192602092909190829003018186803b15801561160a57600080fd5b505afa15801561161e573d6000803e3d6000fd5b505050506040513d602081101561163457600080fd5b505160055460408051631421854f60e31b81526001600160a01b038085166004830152915193945091169163a10c2a78918991602480830192600092919082900301818588803b15801561168757600080fd5b505af115801561169b573d6000803e3d6000fd5b5050505050505b5050505050505050505050565b6001600160a01b031690565b60008281526011602090815260408083206001600160a01b03851684529091529020545b92915050565b6000815b600a850660300160f81b84848060010195508151811061170557fe5b60200101906001600160f81b031916908160001a905350600a85049450600085116116e957825b818111156117c057600085838151811061174257fe5b602001015160f81c60f81b90508582600190039250828151811061176257fe5b602001015160f81c60f81b86848151811061177957fe5b60200101906001600160f81b031916908160001a9053508086838151811061179d57fe5b60200101906001600160f81b031916908160001a9053505081600101915061172c565b5091949350505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561181557600080fd5b505afa158015611829573d6000803e3d6000fd5b505050506040513d602081101561183f57600080fd5b5051611881576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b038316908117909155604080516347f3bf4360e11b815260206004820181905260126024830152716e6573742e76332e6f66666572507269636560701b60448301529151849392638fe77e869260648082019391829003018186803b1580156118fe57600080fd5b505afa158015611912573d6000803e3d6000fd5b505050506040513d602081101561192857600080fd5b5051600280546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048083018290526024830152631b995cdd60e21b6044830152915192841692638fe77e8692606480840193919291829003018186803b15801561199957600080fd5b505afa1580156119ad573d6000803e3d6000fd5b505050506040513d60208110156119c357600080fd5b5051600480546001600160a01b0319166001600160a01b03928316178155604080516347f3bf4360e11b81526020928101839052600e60248201526d6e6573742e76332e61626f6e757360901b6044820152905192841692638fe77e8692606480840193919291829003018186803b158015611a3e57600080fd5b505afa158015611a52573d6000803e3d6000fd5b505050506040513d6020811015611a6857600080fd5b5051600580546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048201819052601860248301527f6e6573742e6e546f6b656e2e746f6b656e4d617070696e6700000000000000006044830152915192841692638fe77e8692606480840193919291829003018186803b158015611af357600080fd5b505afa158015611b07573d6000803e3d6000fd5b505050506040513d6020811015611b1d57600080fd5b5051600380546001600160a01b0319166001600160a01b039092169190911790555050565b333214611b8f576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6000611bac6103e8610c78600754876132d790919063ffffffff16565b9050611bc281610ee3898763ffffffff61352716565b3414611bff5760405162461bcd60e51b815260040180806020018281038252605481526020018061439c6054913960600191505060405180910390fd5b600a548481611c0a57fe5b0615611c475760405162461bcd60e51b81526004018080602001828103825260298152602001806142af6029913960400191505060405180910390fd5b6000611c52866116af565b9050611c5c614223565b60008281548110611c6957fe5b60009182526020808320604080516101208101825260089490940290910180546001600160a01b038082168652600160a01b90910460ff161515938501939093526001810154909216908301526002810154606083015260038101546080830152600481015460a0830152600581015460c0830152600681015460e0830152600701546101008201529150611cff8a8a876133cc565b9050600082602001511515600115151415611d1c57506001611d1f565b50805b826020015115611d8057600854611d3d90899063ffffffff6132d716565b8b1015611d7b5760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611e2a565b8015611dd857600c54611d9a90899063ffffffff6132d716565b8b1015611d7b5760405162461bcd60e51b815260040180806020018281038252604081526020018061435c6040913960400191505060405180910390fd5b600854611dec90899063ffffffff6132d716565b8b1015611e2a5760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611e378360e00151612700565b15611e7e576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b878360a001511015611ed2576040805162461bcd60e51b8152602060048201526018602482015277092dce6eaccccd2c6d2cadce840e8e4c2c8d2dcce40cae8d60431b604482015290519081900360640190fd5b868360c001511015611f2b576040805162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742074726164696e6720746f6b656e000000000000604482015290519081900360640190fd5b856001600160a01b031683604001516001600160a01b031614611f8b576040805162461bcd60e51b815260206004820152601360248201527257726f6e6720746f6b656e206164647265737360681b604482015290519081900360640190fd5b8260a00151888460c001510281611f9e57fe5b048714611fe7576040805162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d1bdad95b88185b5bdd5b9d60721b604482015290519081900360640190fd5b6060830151611ffc908963ffffffff61352716565b60608401526080830151612016908863ffffffff61337216565b608084015260a0830151612030908963ffffffff61352716565b60a084015260c083015161204a908863ffffffff61352716565b60c0840152600080548491908690811061206057fe5b6000918252602080832084516008909302018054918501511515600160a01b0260ff60a01b196001600160a01b039485166001600160a01b03199485161716178155604085015160018201805491909416921691909117909155606083015160028201556080830151600382015560a0830151600482015560c0830151600582015560e083015160068201556101009092015160079092019190915561210d908c908c9089908590613569565b61212233306114578a8e63ffffffff61337216565b600254600f5460e08501516001600160a01b0390921691635d4d3bf7918b918b918b916121589163ffffffff9081169061337216565b6040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050600060405180830381600087803b1580156121b557600080fd5b505af11580156121c9573d6000803e3d6000fd5b50508451604080513381526001600160a01b03808c1660208301528183018d905260006060830152608082018e9052808f1660a083015290921660c0830152517fb8c434e6eb8ba9594890fe8e179e5519149e23a92e13ae561bf19efd6b953db093509081900360e0019150a184156116a2576003546040805163323442c360e11b81526001600160a01b03898116600483015291516000939290921691636468858691602480820192602092909190829003018186803b15801561160a57600080fd5b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b1580156122d857600080fd5b505afa1580156122ec573d6000803e3d6000fd5b505050506040513d602081101561230257600080fd5b5051612344576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600b55565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561239457600080fd5b505afa1580156123a8573d6000803e3d6000fd5b505050506040513d60208110156123be57600080fd5b5051612400576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b6000811161243f5760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600855565b60005490565b600f5463ffffffff1690565b60009182526012602090815260408084206001600160a01b0393909316845291905290205490565b604080516207a1208082526207a1408201909252606091829190602082018180388339019050506000805491925090816001600160a01b038916156124c9576124c6896116af565b91505b868211156124d657508581035b6000881180156124ea575060001982019181105b156125b9576124f7614223565b6000838154811061250457fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b03808216808652600160a01b90920460ff1615159585019590955260018201548516928401929092526002810154606084015260038101546080840152600481015460a0840152600581015460c0840152600681015460e08401526007015461010083015290925090881614156125b357600019909801976125b08382878761309b565b93505b506124d6565b6060836040519080825280601f01601f1916602001820160405280156125e6576020820181803883390190505b5090505b600019840193156126345784848151811061260157fe5b602001015160f81c60f81b81858151811061261857fe5b60200101906001600160f81b031916908160001a9053506125ea565b9998505050505050505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561268c57600080fd5b505afa1580156126a0573d6000803e3d6000fd5b505050506040513d60208110156126b657600080fd5b50516126f8576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600d55565b90565b600f5460009063ffffffff9081169061271d904390859061352716565b111561272b57506001610965565b506000919050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561277e57600080fd5b505afa158015612792573d6000803e3d6000fd5b505050506040513d60208110156127a857600080fd5b50516127ea576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600081116128295760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600955565b604080516207a1208082526207a14082019092526060918291906020820181803883390190505090506000809050612900846000868154811061286d57fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b038082168552600160a01b90910460ff161515948401949094526001810154909316908201526002820154606082015260038201546080820152600482015460a0820152600582015460c0820152600682015460e0820152600790910154610100820152848461309b565b90506060816040519080825280601f01601f19166020018201604052801561292f576020820181803883390190505b5090505b6000198201911561297d5782828151811061294a57fe5b602001015160f81c60f81b81838151811061296157fe5b60200101906001600160f81b031916908160001a905350612933565b949350505050565b3332146129d2576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b60006129dd826116af565b905060008082815481106129ed57fe5b90600052602060002090600802019050612a0a8160060154612700565b600114612a53576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b600281015415612a7f5760028101805460009091558154612a7d906001600160a01b031682613a21565b505b600381015415612aba57600381018054600090915581546001830154612ab8916001600160a01b0391821691168363ffffffff6139cf16565b505b600781015415612af6576006810154600182015460078301548354612aed93926001600160a01b03908116929116613a6e565b50600060078201555b505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015612b4657600080fd5b505afa158015612b5a573d6000803e3d6000fd5b505050506040513d6020811015612b7057600080fd5b5051612bb2576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b60008111612bf15760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600a55565b333214612c43576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6003546040805163323442c360e11b81526001600160a01b03848116600483015291516000939290921691636468858691602480820192602092909190829003018186803b158015612c9457600080fd5b505afa158015612ca8573d6000803e3d6000fd5b505050506040513d6020811015612cbe57600080fd5b505190506001600160a01b038116612cd557600080fd5b600080612ce38686866133cc565b90508015612d6257600c54600954612d009163ffffffff6132d716565b861015612d3e5760405162461bcd60e51b81526004018080602001828103825260408152602001806144bc6040913960400191505060405180910390fd5b612d5b6103e8610c786006546009546132d790919063ffffffff16565b9150612d80565b612d7d6103e8610c78600654896132d790919063ffffffff16565b91505b612d90868363ffffffff61337216565b341015612dce5760405162461bcd60e51b815260040180806020018281038252604f815260200180614443604f913960600191505060405180910390fd5b6000612df0612de3888563ffffffff61337216565b349063ffffffff61352716565b90508015612e0257612e023382613a21565b612e0f8787878587613569565b612e2a6001600160a01b03861633308963ffffffff61396f16565b6005546040805163324f2f5560e11b81526001600160a01b0387811660048301529151919092169163649e5eaa91869160248082019260009290919082900301818588803b158015612e7b57600080fd5b505af1158015612e8f573d6000803e3d6000fd5b50504360009081526011602090815260408083206001600160a01b038c1684529091529020541515925061302f915050576000612ecb85613c6f565b90506000859050806001600160a01b031663a9059cbb826001600160a01b03166328e6a33f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612f1a57600080fd5b505afa158015612f2e573d6000803e3d6000fd5b505050506040513d6020811015612f4457600080fd5b5051600d54612f6190606490610c7890889063ffffffff6132d716565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612fb057600080fd5b505af1158015612fc4573d6000803e3d6000fd5b505050506040513d6020811015612fda57600080fd5b5050600d5461300890612ffb90606490610c7890869063ffffffff6132d716565b839063ffffffff61352716565b4360009081526012602090815260408083206001600160a01b038c16845290915290205550505b4360009081526011602090815260408083206001600160a01b0389168452909152902054613063908463ffffffff61337216565b4360009081526011602090815260408083206001600160a01b0390991683529790529590952094909455505050505050565b60095490565b60006130b06130a9866126fd565b8484613dff565b8351600182019350600b60fa1b91859181106130c857fe5b60200101906001600160f81b031916908160001a90535083516130ec908484613dff565b8351600182019350600b60fa1b918591811061310457fe5b60200101906001600160f81b031916908160001a90535061312a84604001518484613dff565b8351600182019350600b60fa1b918591811061314257fe5b60200101906001600160f81b031916908160001a905350613168846060015184846116e5565b8351600182019350600b60fa1b918591811061318057fe5b60200101906001600160f81b031916908160001a9053506131a6846080015184846116e5565b8351600182019350600b60fa1b91859181106131be57fe5b60200101906001600160f81b031916908160001a9053506131e48460a0015184846116e5565b8351600182019350600b60fa1b91859181106131fc57fe5b60200101906001600160f81b031916908160001a9053506132228460c0015184846116e5565b8351600182019350600b60fa1b918591811061323a57fe5b60200101906001600160f81b031916908160001a9053506132608460e0015184846116e5565b8351600182019350600b60fa1b918591811061327857fe5b60200101906001600160f81b031916908160001a90535061329f84610100015184846116e5565b8351600182019350600b60fa1b91859181106132b757fe5b60200101906001600160f81b031916908160001a90535090949350505050565b6000826132e6575060006116df565b828202828482816132f357fe5b0414610b535760405162461bcd60e51b815260040180806020018281038252602181526020018061433b6021913960400191505060405180910390fd5b6000610b5383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f36565b600082820183811015610b53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6002546040805163207ab49360e21b81526001600160a01b03848116600483015282516000948594859493909116926381ead24c9260248083019392829003018186803b15801561341c57600080fd5b505afa158015613430573d6000803e3d6000fd5b505050506040513d604081101561344657600080fd5b508051602090910151909250905081158061345f575080155b1561346f57600092505050610b53565b60006134ba61348584606463ffffffff6132d716565b610c7861349e600b54606461337290919063ffffffff16565b6134ae8b8763ffffffff6132d716565b9063ffffffff6132d716565b905080861161351a5760006135026134d985606463ffffffff6132d716565b610c786134f2600b54606461352790919063ffffffff16565b6134ae8c8863ffffffff6132d716565b9050808710613518576000945050505050610b53565b505b5060019695505050505050565b6000610b5383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fd8565b6009548510156135aa5760405162461bcd60e51b815260040180806020018281038252602b815260200180614284602b913960400191505060405180910390fd5b600a5485816135b557fe5b0615613608576040805162461bcd60e51b815260206004820152601860248201527f4e6f6e20636f6d706c69616e74206173736574207370616e0000000000000000604482015290519081900360640190fd5b600a5461361c90869063ffffffff61333016565b848161362457fe5b0615613677576040805162461bcd60e51b815260206004820152601d60248201527f4173736574207175616e74697479206973206e6f742064697669646564000000604482015290519081900360640190fd5b6000841161368457600080fd5b6000547fb3ed50358b669287aff082dbd5407bd75efcac18c9267d946074dc90d8aae898906136b2906126fd565b600f54604080516001600160a01b03938416815292871660208401528281018990526060830188905263ffffffff909116608083015260a08201849052519081900360c00190a16040805161012081018252338152831515602082019081526001600160a01b03868116938301938452606083018981526080840189815260a085018b815260c086018b81524360e0880181815261010089018b81526000805460018101825590805299516008909a027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563810180549a511515600160a01b0260ff60a01b199c8b166001600160a01b03199c8d16179c909c169b909b17909a5599517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5648a018054918916919099161790975593517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56588015591517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566870155517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567860155517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56885015591517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56984015592517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56a90920191909155600254600f549216916317ae7a5891889188916138f09163ffffffff9081169061337216565b604080516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526001600160a01b03871660648301523360848301525160a480830192600092919082900301818387803b15801561395057600080fd5b505af1158015613964573d6000803e3d6000fd5b505050505050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526139c9908590614032565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612af6908490614032565b6000613a35836001600160a01b03166126fd565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f193505050501580156139c9573d6000803e3d6000fd5b60008481526011602090815260408083206001600160a01b038716808552908352818420548885526012845282852091855292528220548291613abb91610c78908763ffffffff6132d716565b6003546040805163323442c360e11b81526001600160a01b038981166004830152915193945060009391909216916364688586916024808301926020929190829003018186803b158015613b0e57600080fd5b505afa158015613b22573d6000803e3d6000fd5b505050506040513d6020811015613b3857600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0387811660048301526024820186905291519293509083169163a9059cbb916044808201926020929091908290030181600087803b158015613b9057600080fd5b505af1158015613ba4573d6000803e3d6000fd5b505050506040513d6020811015613bba57600080fd5b5051613c00576040805162461bcd60e51b815260206004820152601060248201526f5472616e73666572206661696c75726560801b604482015290519081900360640190fd5b60008781526011602090815260408083206001600160a01b038a16808552908352928190205481518b8152928301939093528181019290925290517fd2107cf4448eaa7b67fe8ee34698459074c40ccffc5e060f86f4130f35aaa4ee9181900360600190a15095945050505050565b600080829050600080826001600160a01b03166392c088716040518163ffffffff1660e01b8152600401604080518083038186803b158015613cb057600080fd5b505afa158015613cc4573d6000803e3d6000fd5b505050506040513d6040811015613cda57600080fd5b5080516020909101516010549193509150600090613d0290610c78438663ffffffff61352716565b90506000806009831115613d195750600e54613d2b565b601383600a8110613d2657fe5b015490505b613d4b613d3e438663ffffffff61352716565b829063ffffffff6132d716565b9150856001600160a01b03166381fa5431836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015613d9357600080fd5b505af1158015613da7573d6000803e3d6000fd5b505060408051438152602081018690526001600160a01b038c168183015290517fbf10eb38ae3fef6350212985b724124761ec1a488dc5481048f20c389099e09d9350908190036060019150a1509695505050505050565b60006001600160a01b038416602883015b600f8216600a811015613e52578060300160f81b868680600101975081518110613e3657fe5b60200101906001600160f81b031916908160001a905350613e83565b8060570160f81b868680600101975081518110613e6b57fe5b60200101906001600160f81b031916908160001a9053505b60108304925050808410613e105760271901835b81811115613f2b576000868381518110613ead57fe5b602001015160f81c60f81b905086826001900392508281518110613ecd57fe5b602001015160f81c60f81b878481518110613ee457fe5b60200101906001600160f81b031916908160001a90535080878381518110613f0857fe5b60200101906001600160f81b031916908160001a90535050816001019150613e97565b509295945050505050565b60008183613fc25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f87578181015183820152602001613f6f565b50505050905090810190601f168015613fb45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613fce57fe5b0495945050505050565b6000818484111561402a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f87578181015183820152602001613f6f565b505050900390565b614044826001600160a01b03166141ea565b614095576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106140d35780518252601f1990920191602091820191016140b4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614135576040519150601f19603f3d011682016040523d82523d6000602084013e61413a565b606091505b509150915081614191576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156139c9578080602001905160208110156141ad57600080fd5b50516139c95760405162461bcd60e51b815260040180806020018281038252602a815260200180614492602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061297d575050151592915050565b60405180610120016040528060006001600160a01b0316815260200160001515815260200160006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000815260200160008152509056fe457468207363616c6520697320736d616c6c6572207468616e20746865206d696e696d756d207363616c655472616e73616374696f6e2073697a6520646f6573206e6f74206d656574206173736574207370616e506172616d65746572206e6565647320746f2062652067726561746572207468616e2030457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e20322074696d6573206f66207472616e73616374696f6e207363616c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e2031302074696d6573206f66207472616e73616374696f6e207363616c656d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f74656420657468207175616e7469747920706c7573207472616e73616374696f6e2068616e646c696e67206665656d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f746174696f6e20657468207175616e7469747920706c7573207472616e73616374696f6e2065746820706c75736d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f74656420657468207175616e7469747920706c7573204d696e696e672068616e646c696e67206665655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e2031302074696d6573206f6620746865206d696e696d756d207363616c65a264697066735822122007d401da17286153897a8d8c5595da0d4e394f184db26641b6588dca5b7596c964736f6c63430006000033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000006cd5698e8854fb6879d6b1c694223b389b465dea
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063b3e2767c11610102578063e0051aa911610095578063e9ec551d11610064578063e9ec551d146107f1578063f0bbe1ba14610824578063f6a4932f1461084e578063faee702214610880576101e3565b8063e0051aa91461072d578063e18da8bf14610773578063e5d69e3f1461079d578063e7572230146107c7576101e3565b8063cbc7ef09116100d1578063cbc7ef091461066e578063cd6d875614610683578063d900d676146106bc578063dea0799a14610703576101e3565b8063b3e2767c146105bf578063b43ea2d814610605578063b86f25581461062f578063c48c1a7114610659576101e3565b80633d9faf871161017a57806395334db21161014957806395334db2146104645780639abe81c814610497578063a16f460f146104d0578063a781e7f81461058c576101e3565b80633d9faf87146103be57806343c53364146103f45780638d7092e61461040957806391f5f9f31461041e576101e3565b806326a203cb116101b657806326a203cb1461031057806334e66f1e1461033a57806335d63d321461034f5780633aedef141461038e576101e3565b806308920330146101e8578063180d574c14610214578063187f3d981461025057806319aeb49014610265575b600080fd5b3480156101f457600080fd5b506102126004803603602081101561020b57600080fd5b5035610895565b005b34801561022057600080fd5b5061023e6004803603602081101561023757600080fd5b5035610951565b60408051918252519081900360200190f35b34801561025c57600080fd5b5061023e61096a565b34801561027157600080fd5b5061029b6004803603606081101561028857600080fd5b5080359060208101359060400135610970565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102d55781810151838201526020016102bd565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031c57600080fd5b506102126004803603602081101561033357600080fd5b5035610b5a565b34801561034657600080fd5b5061023e610c16565b34801561035b57600080fd5b5061023e6004803603606081101561037257600080fd5b508035906001600160a01b036020820135169060400135610c1c565b34801561039a57600080fd5b50610212600480360360208110156103b157600080fd5b503563ffffffff16610c8b565b3480156103ca57600080fd5b50610212600480360360608110156103e157600080fd5b5080359060208101359060400135610d5e565b34801561040057600080fd5b5061023e610e57565b34801561041557600080fd5b5061023e610e5d565b610212600480360360c081101561043457600080fd5b508035906020810135906001600160a01b03604082013581169160608101359160808201359160a0013516610e63565b34801561047057600080fd5b5061023e6004803603602081101561048757600080fd5b50356001600160a01b03166116af565b3480156104a357600080fd5b5061023e600480360360408110156104ba57600080fd5b50803590602001356001600160a01b03166116bb565b3480156104dc57600080fd5b5061023e600480360360608110156104f357600080fd5b8135919081019060408101602082013564010000000081111561051557600080fd5b82018360208201111561052757600080fd5b8035906020019184600183028401116401000000008311171561054957600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506116e5915050565b34801561059857600080fd5b50610212600480360360208110156105af57600080fd5b50356001600160a01b03166117ca565b610212600480360360c08110156105d557600080fd5b508035906020810135906001600160a01b03604082013581169160608101359160808201359160a0013516611b42565b34801561061157600080fd5b506102126004803603602081101561062857600080fd5b503561228d565b34801561063b57600080fd5b506102126004803603602081101561065257600080fd5b5035612349565b34801561066557600080fd5b5061023e612444565b34801561067a57600080fd5b5061023e61244a565b34801561068f57600080fd5b5061023e600480360360408110156106a657600080fd5b50803590602001356001600160a01b0316612456565b3480156106c857600080fd5b5061029b600480360360808110156106df57600080fd5b506001600160a01b038135811691602081013591604082013591606001351661247e565b34801561070f57600080fd5b506102126004803603602081101561072657600080fd5b5035612641565b34801561073957600080fd5b506107576004803603602081101561075057600080fd5b50356126fd565b604080516001600160a01b039092168252519081900360200190f35b34801561077f57600080fd5b5061023e6004803603602081101561079657600080fd5b5035612700565b3480156107a957600080fd5b50610212600480360360208110156107c057600080fd5b5035612733565b3480156107d357600080fd5b5061029b600480360360208110156107ea57600080fd5b503561282e565b3480156107fd57600080fd5b506102126004803603602081101561081457600080fd5b50356001600160a01b0316612985565b34801561083057600080fd5b506102126004803603602081101561084757600080fd5b5035612afb565b6102126004803603606081101561086457600080fd5b50803590602081013590604001356001600160a01b0316612bf6565b34801561088c57600080fd5b5061023e613095565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b1580156108e057600080fd5b505afa1580156108f4573d6000803e3d6000fd5b505050506040513d602081101561090a57600080fd5b505161094c576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600c55565b6000601382600a811061096057fe5b015490505b919050565b60085490565b604080516207a1208082526207a14082019092526060918291906020820181803883390190505090506000808085610a7f576000548810156109b55760005488900391505b818710156109c257508581035b600019820191811015610a7a57610a7382600084815481106109e057fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b038082168552600160a01b90910460ff161515948401949094526001810154909316908201526002820154606082015260038201546080820152600482015460a0820152600582015460c0820152600682015460e0820152600790910154610100820152868661309b565b92506109c2565b610ad1565b600054881015610a9157879150610a97565b60005491505b5060005481870190811115610aab57506000545b80821015610ad157610ac482600084815481106109e057fe5b9250816001019150610aab565b6060836040519080825280601f01601f191660200182016040528015610afe576020820181803883390190505b5090505b60001984019315610b4c57848481518110610b1957fe5b602001015160f81c60f81b818581518110610b3057fe5b60200101906001600160f81b031916908160001a905350610b02565b9450505050505b9392505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610ba557600080fd5b505afa158015610bb9573d6000803e3d6000fd5b505050506040513d6020811015610bcf57600080fd5b5051610c11576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600755565b60075490565b600081610c2b57506000610b53565b60008481526011602090815260408083206001600160a01b0387168085529083528184205488855260128452828520918552925290912054610c849190610c78908563ffffffff6132d716565b9063ffffffff61333016565b9050610b53565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610cd657600080fd5b505afa158015610cea573d6000803e3d6000fd5b505050506040513d6020811015610d0057600080fd5b5051610d42576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600f805463ffffffff191663ffffffff92909216919091179055565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015610da957600080fd5b505afa158015610dbd573d6000803e3d6000fd5b505050506040513d6020811015610dd357600080fd5b5051610e15576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b8260005b600a811015610e505781601382600a8110610e3057fe5b0155610e4683610c78848763ffffffff6132d716565b9150600101610e19565b5050505050565b600d5490565b600a5490565b333214610eb0576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6000610ecd6103e8610c78600754876132d790919063ffffffff16565b9050610eef81610ee3898763ffffffff61337216565b9063ffffffff61337216565b3414610f2c5760405162461bcd60e51b81526004018080602001828103825260538152602001806143f06053913960600191505060405180910390fd5b600a548481610f3757fe5b0615610f745760405162461bcd60e51b81526004018080602001828103825260298152602001806142af6029913960400191505060405180910390fd5b6000610f7f866116af565b9050610f89614223565b60008281548110610f9657fe5b60009182526020808320604080516101208101825260089490940290910180546001600160a01b038082168652600160a01b90910460ff161515938501939093526001810154909216908301526002810154606083015260038101546080830152600481015460a0830152600581015460c0830152600681015460e083015260070154610100820152915061102c8a8a876133cc565b90506000826020015115156001151514156110495750600161104c565b50805b8260200151156110ad5760085461106a90899063ffffffff6132d716565b8b10156110a85760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611157565b801561110557600c546110c790899063ffffffff6132d716565b8b10156110a85760405162461bcd60e51b815260040180806020018281038252604081526020018061435c6040913960400191505060405180910390fd5b60085461111990899063ffffffff6132d716565b8b10156111575760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b6111648360e00151612700565b156111ab576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b878360a0015110156111ff576040805162461bcd60e51b8152602060048201526018602482015277092dce6eaccccd2c6d2cadce840e8e4c2c8d2dcce40cae8d60431b604482015290519081900360640190fd5b868360c001511015611258576040805162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742074726164696e6720746f6b656e000000000000604482015290519081900360640190fd5b856001600160a01b031683604001516001600160a01b0316146112b8576040805162461bcd60e51b815260206004820152601360248201527257726f6e6720746f6b656e206164647265737360681b604482015290519081900360640190fd5b8260a00151888460c0015102816112cb57fe5b048714611314576040805162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d1bdad95b88185b5bdd5b9d60721b604482015290519081900360640190fd5b6060830151611329908963ffffffff61337216565b60608401526080830151611343908863ffffffff61352716565b608084015260a083015161135d908963ffffffff61352716565b60a084015260c0830151611377908863ffffffff61352716565b60c0840152600080548491908690811061138d57fe5b6000918252602080832084516008909302018054918501511515600160a01b0260ff60a01b196001600160a01b039485166001600160a01b03199485161716178155604085015160018201805491909416921691909117909155606083015160028201556080830151600382015560a0830151600482015560c0830151600582015560e083015160068201556101009092015160079092019190915561143a908c908c9089908590613569565b868a11156114745761146f33306114578d8b63ffffffff61352716565b6001600160a01b038a1692919063ffffffff61396f16565b61149f565b61149f33611488898d63ffffffff61352716565b6001600160a01b038916919063ffffffff6139cf16565b600254600f5460e08501516001600160a01b0390921691635d4d3bf7918b918b918b916114d59163ffffffff9081169061337216565b6040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050600060405180830381600087803b15801561153257600080fd5b505af1158015611546573d6000803e3d6000fd5b5050845160408051338152600060208201528082018d90526001600160a01b03808c166060830152608082018d9052808f1660a083015290921660c0830152517fb8c434e6eb8ba9594890fe8e179e5519149e23a92e13ae561bf19efd6b953db093509081900360e0019150a184156116a2576003546040805163323442c360e11b81526001600160a01b03898116600483015291516000939290921691636468858691602480820192602092909190829003018186803b15801561160a57600080fd5b505afa15801561161e573d6000803e3d6000fd5b505050506040513d602081101561163457600080fd5b505160055460408051631421854f60e31b81526001600160a01b038085166004830152915193945091169163a10c2a78918991602480830192600092919082900301818588803b15801561168757600080fd5b505af115801561169b573d6000803e3d6000fd5b5050505050505b5050505050505050505050565b6001600160a01b031690565b60008281526011602090815260408083206001600160a01b03851684529091529020545b92915050565b6000815b600a850660300160f81b84848060010195508151811061170557fe5b60200101906001600160f81b031916908160001a905350600a85049450600085116116e957825b818111156117c057600085838151811061174257fe5b602001015160f81c60f81b90508582600190039250828151811061176257fe5b602001015160f81c60f81b86848151811061177957fe5b60200101906001600160f81b031916908160001a9053508086838151811061179d57fe5b60200101906001600160f81b031916908160001a9053505081600101915061172c565b5091949350505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561181557600080fd5b505afa158015611829573d6000803e3d6000fd5b505050506040513d602081101561183f57600080fd5b5051611881576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b038316908117909155604080516347f3bf4360e11b815260206004820181905260126024830152716e6573742e76332e6f66666572507269636560701b60448301529151849392638fe77e869260648082019391829003018186803b1580156118fe57600080fd5b505afa158015611912573d6000803e3d6000fd5b505050506040513d602081101561192857600080fd5b5051600280546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048083018290526024830152631b995cdd60e21b6044830152915192841692638fe77e8692606480840193919291829003018186803b15801561199957600080fd5b505afa1580156119ad573d6000803e3d6000fd5b505050506040513d60208110156119c357600080fd5b5051600480546001600160a01b0319166001600160a01b03928316178155604080516347f3bf4360e11b81526020928101839052600e60248201526d6e6573742e76332e61626f6e757360901b6044820152905192841692638fe77e8692606480840193919291829003018186803b158015611a3e57600080fd5b505afa158015611a52573d6000803e3d6000fd5b505050506040513d6020811015611a6857600080fd5b5051600580546001600160a01b0319166001600160a01b03928316179055604080516347f3bf4360e11b8152602060048201819052601860248301527f6e6573742e6e546f6b656e2e746f6b656e4d617070696e6700000000000000006044830152915192841692638fe77e8692606480840193919291829003018186803b158015611af357600080fd5b505afa158015611b07573d6000803e3d6000fd5b505050506040513d6020811015611b1d57600080fd5b5051600380546001600160a01b0319166001600160a01b039092169190911790555050565b333214611b8f576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6000611bac6103e8610c78600754876132d790919063ffffffff16565b9050611bc281610ee3898763ffffffff61352716565b3414611bff5760405162461bcd60e51b815260040180806020018281038252605481526020018061439c6054913960600191505060405180910390fd5b600a548481611c0a57fe5b0615611c475760405162461bcd60e51b81526004018080602001828103825260298152602001806142af6029913960400191505060405180910390fd5b6000611c52866116af565b9050611c5c614223565b60008281548110611c6957fe5b60009182526020808320604080516101208101825260089490940290910180546001600160a01b038082168652600160a01b90910460ff161515938501939093526001810154909216908301526002810154606083015260038101546080830152600481015460a0830152600581015460c0830152600681015460e0830152600701546101008201529150611cff8a8a876133cc565b9050600082602001511515600115151415611d1c57506001611d1f565b50805b826020015115611d8057600854611d3d90899063ffffffff6132d716565b8b1015611d7b5760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611e2a565b8015611dd857600c54611d9a90899063ffffffff6132d716565b8b1015611d7b5760405162461bcd60e51b815260040180806020018281038252604081526020018061435c6040913960400191505060405180910390fd5b600854611dec90899063ffffffff6132d716565b8b1015611e2a5760405162461bcd60e51b815260040180806020018281038252603f8152602001806142fc603f913960400191505060405180910390fd5b611e378360e00151612700565b15611e7e576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b878360a001511015611ed2576040805162461bcd60e51b8152602060048201526018602482015277092dce6eaccccd2c6d2cadce840e8e4c2c8d2dcce40cae8d60431b604482015290519081900360640190fd5b868360c001511015611f2b576040805162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e742074726164696e6720746f6b656e000000000000604482015290519081900360640190fd5b856001600160a01b031683604001516001600160a01b031614611f8b576040805162461bcd60e51b815260206004820152601360248201527257726f6e6720746f6b656e206164647265737360681b604482015290519081900360640190fd5b8260a00151888460c001510281611f9e57fe5b048714611fe7576040805162461bcd60e51b815260206004820152601260248201527115dc9bdb99c81d1bdad95b88185b5bdd5b9d60721b604482015290519081900360640190fd5b6060830151611ffc908963ffffffff61352716565b60608401526080830151612016908863ffffffff61337216565b608084015260a0830151612030908963ffffffff61352716565b60a084015260c083015161204a908863ffffffff61352716565b60c0840152600080548491908690811061206057fe5b6000918252602080832084516008909302018054918501511515600160a01b0260ff60a01b196001600160a01b039485166001600160a01b03199485161716178155604085015160018201805491909416921691909117909155606083015160028201556080830151600382015560a0830151600482015560c0830151600582015560e083015160068201556101009092015160079092019190915561210d908c908c9089908590613569565b61212233306114578a8e63ffffffff61337216565b600254600f5460e08501516001600160a01b0390921691635d4d3bf7918b918b918b916121589163ffffffff9081169061337216565b6040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050600060405180830381600087803b1580156121b557600080fd5b505af11580156121c9573d6000803e3d6000fd5b50508451604080513381526001600160a01b03808c1660208301528183018d905260006060830152608082018e9052808f1660a083015290921660c0830152517fb8c434e6eb8ba9594890fe8e179e5519149e23a92e13ae561bf19efd6b953db093509081900360e0019150a184156116a2576003546040805163323442c360e11b81526001600160a01b03898116600483015291516000939290921691636468858691602480820192602092909190829003018186803b15801561160a57600080fd5b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b1580156122d857600080fd5b505afa1580156122ec573d6000803e3d6000fd5b505050506040513d602081101561230257600080fd5b5051612344576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600b55565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561239457600080fd5b505afa1580156123a8573d6000803e3d6000fd5b505050506040513d60208110156123be57600080fd5b5051612400576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b6000811161243f5760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600855565b60005490565b600f5463ffffffff1690565b60009182526012602090815260408084206001600160a01b0393909316845291905290205490565b604080516207a1208082526207a1408201909252606091829190602082018180388339019050506000805491925090816001600160a01b038916156124c9576124c6896116af565b91505b868211156124d657508581035b6000881180156124ea575060001982019181105b156125b9576124f7614223565b6000838154811061250457fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b03808216808652600160a01b90920460ff1615159585019590955260018201548516928401929092526002810154606084015260038101546080840152600481015460a0840152600581015460c0840152600681015460e08401526007015461010083015290925090881614156125b357600019909801976125b08382878761309b565b93505b506124d6565b6060836040519080825280601f01601f1916602001820160405280156125e6576020820181803883390190505b5090505b600019840193156126345784848151811061260157fe5b602001015160f81c60f81b81858151811061261857fe5b60200101906001600160f81b031916908160001a9053506125ea565b9998505050505050505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561268c57600080fd5b505afa1580156126a0573d6000803e3d6000fd5b505050506040513d60208110156126b657600080fd5b50516126f8576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600d55565b90565b600f5460009063ffffffff9081169061271d904390859061352716565b111561272b57506001610965565b506000919050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b15801561277e57600080fd5b505afa158015612792573d6000803e3d6000fd5b505050506040513d60208110156127a857600080fd5b50516127ea576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b600081116128295760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600955565b604080516207a1208082526207a14082019092526060918291906020820181803883390190505090506000809050612900846000868154811061286d57fe5b6000918252602091829020604080516101208101825260089390930290910180546001600160a01b038082168552600160a01b90910460ff161515948401949094526001810154909316908201526002820154606082015260038201546080820152600482015460a0820152600582015460c0820152600682015460e0820152600790910154610100820152848461309b565b90506060816040519080825280601f01601f19166020018201604052801561292f576020820181803883390190505b5090505b6000198201911561297d5782828151811061294a57fe5b602001015160f81c60f81b81838151811061296157fe5b60200101906001600160f81b031916908160001a905350612933565b949350505050565b3332146129d2576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b60006129dd826116af565b905060008082815481106129ed57fe5b90600052602060002090600802019050612a0a8160060154612700565b600114612a53576040805162461bcd60e51b815260206004820152601260248201527127b33332b91039ba30ba3ab99032b93937b960711b604482015290519081900360640190fd5b600281015415612a7f5760028101805460009091558154612a7d906001600160a01b031682613a21565b505b600381015415612aba57600381018054600090915581546001830154612ab8916001600160a01b0391821691168363ffffffff6139cf16565b505b600781015415612af6576006810154600182015460078301548354612aed93926001600160a01b03908116929116613a6e565b50600060078201555b505050565b6001546040805163a3bf06f160e01b815233600482015290516001600160a01b039092169163a3bf06f191602480820192602092909190829003018186803b158015612b4657600080fd5b505afa158015612b5a573d6000803e3d6000fd5b505050506040513d6020811015612b7057600080fd5b5051612bb2576040805162461bcd60e51b815260206004820152600c60248201526b4e6f20617574686f7269747960a01b604482015290519081900360640190fd5b60008111612bf15760405162461bcd60e51b81526004018080602001828103825260248152602001806142d86024913960400191505060405180910390fd5b600a55565b333214612c43576040805162461bcd60e51b8152602060048201526016602482015275125d0818d85b89dd08189948184818dbdb9d1c9858dd60521b604482015290519081900360640190fd5b6003546040805163323442c360e11b81526001600160a01b03848116600483015291516000939290921691636468858691602480820192602092909190829003018186803b158015612c9457600080fd5b505afa158015612ca8573d6000803e3d6000fd5b505050506040513d6020811015612cbe57600080fd5b505190506001600160a01b038116612cd557600080fd5b600080612ce38686866133cc565b90508015612d6257600c54600954612d009163ffffffff6132d716565b861015612d3e5760405162461bcd60e51b81526004018080602001828103825260408152602001806144bc6040913960400191505060405180910390fd5b612d5b6103e8610c786006546009546132d790919063ffffffff16565b9150612d80565b612d7d6103e8610c78600654896132d790919063ffffffff16565b91505b612d90868363ffffffff61337216565b341015612dce5760405162461bcd60e51b815260040180806020018281038252604f815260200180614443604f913960600191505060405180910390fd5b6000612df0612de3888563ffffffff61337216565b349063ffffffff61352716565b90508015612e0257612e023382613a21565b612e0f8787878587613569565b612e2a6001600160a01b03861633308963ffffffff61396f16565b6005546040805163324f2f5560e11b81526001600160a01b0387811660048301529151919092169163649e5eaa91869160248082019260009290919082900301818588803b158015612e7b57600080fd5b505af1158015612e8f573d6000803e3d6000fd5b50504360009081526011602090815260408083206001600160a01b038c1684529091529020541515925061302f915050576000612ecb85613c6f565b90506000859050806001600160a01b031663a9059cbb826001600160a01b03166328e6a33f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612f1a57600080fd5b505afa158015612f2e573d6000803e3d6000fd5b505050506040513d6020811015612f4457600080fd5b5051600d54612f6190606490610c7890889063ffffffff6132d716565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612fb057600080fd5b505af1158015612fc4573d6000803e3d6000fd5b505050506040513d6020811015612fda57600080fd5b5050600d5461300890612ffb90606490610c7890869063ffffffff6132d716565b839063ffffffff61352716565b4360009081526012602090815260408083206001600160a01b038c16845290915290205550505b4360009081526011602090815260408083206001600160a01b0389168452909152902054613063908463ffffffff61337216565b4360009081526011602090815260408083206001600160a01b0390991683529790529590952094909455505050505050565b60095490565b60006130b06130a9866126fd565b8484613dff565b8351600182019350600b60fa1b91859181106130c857fe5b60200101906001600160f81b031916908160001a90535083516130ec908484613dff565b8351600182019350600b60fa1b918591811061310457fe5b60200101906001600160f81b031916908160001a90535061312a84604001518484613dff565b8351600182019350600b60fa1b918591811061314257fe5b60200101906001600160f81b031916908160001a905350613168846060015184846116e5565b8351600182019350600b60fa1b918591811061318057fe5b60200101906001600160f81b031916908160001a9053506131a6846080015184846116e5565b8351600182019350600b60fa1b91859181106131be57fe5b60200101906001600160f81b031916908160001a9053506131e48460a0015184846116e5565b8351600182019350600b60fa1b91859181106131fc57fe5b60200101906001600160f81b031916908160001a9053506132228460c0015184846116e5565b8351600182019350600b60fa1b918591811061323a57fe5b60200101906001600160f81b031916908160001a9053506132608460e0015184846116e5565b8351600182019350600b60fa1b918591811061327857fe5b60200101906001600160f81b031916908160001a90535061329f84610100015184846116e5565b8351600182019350600b60fa1b91859181106132b757fe5b60200101906001600160f81b031916908160001a90535090949350505050565b6000826132e6575060006116df565b828202828482816132f357fe5b0414610b535760405162461bcd60e51b815260040180806020018281038252602181526020018061433b6021913960400191505060405180910390fd5b6000610b5383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f36565b600082820183811015610b53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6002546040805163207ab49360e21b81526001600160a01b03848116600483015282516000948594859493909116926381ead24c9260248083019392829003018186803b15801561341c57600080fd5b505afa158015613430573d6000803e3d6000fd5b505050506040513d604081101561344657600080fd5b508051602090910151909250905081158061345f575080155b1561346f57600092505050610b53565b60006134ba61348584606463ffffffff6132d716565b610c7861349e600b54606461337290919063ffffffff16565b6134ae8b8763ffffffff6132d716565b9063ffffffff6132d716565b905080861161351a5760006135026134d985606463ffffffff6132d716565b610c786134f2600b54606461352790919063ffffffff16565b6134ae8c8863ffffffff6132d716565b9050808710613518576000945050505050610b53565b505b5060019695505050505050565b6000610b5383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fd8565b6009548510156135aa5760405162461bcd60e51b815260040180806020018281038252602b815260200180614284602b913960400191505060405180910390fd5b600a5485816135b557fe5b0615613608576040805162461bcd60e51b815260206004820152601860248201527f4e6f6e20636f6d706c69616e74206173736574207370616e0000000000000000604482015290519081900360640190fd5b600a5461361c90869063ffffffff61333016565b848161362457fe5b0615613677576040805162461bcd60e51b815260206004820152601d60248201527f4173736574207175616e74697479206973206e6f742064697669646564000000604482015290519081900360640190fd5b6000841161368457600080fd5b6000547fb3ed50358b669287aff082dbd5407bd75efcac18c9267d946074dc90d8aae898906136b2906126fd565b600f54604080516001600160a01b03938416815292871660208401528281018990526060830188905263ffffffff909116608083015260a08201849052519081900360c00190a16040805161012081018252338152831515602082019081526001600160a01b03868116938301938452606083018981526080840189815260a085018b815260c086018b81524360e0880181815261010089018b81526000805460018101825590805299516008909a027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563810180549a511515600160a01b0260ff60a01b199c8b166001600160a01b03199c8d16179c909c169b909b17909a5599517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5648a018054918916919099161790975593517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56588015591517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e566870155517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e567860155517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56885015591517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56984015592517f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56a90920191909155600254600f549216916317ae7a5891889188916138f09163ffffffff9081169061337216565b604080516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526001600160a01b03871660648301523360848301525160a480830192600092919082900301818387803b15801561395057600080fd5b505af1158015613964573d6000803e3d6000fd5b505050505050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526139c9908590614032565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612af6908490614032565b6000613a35836001600160a01b03166126fd565b6040519091506001600160a01b0382169083156108fc029084906000818181858888f193505050501580156139c9573d6000803e3d6000fd5b60008481526011602090815260408083206001600160a01b038716808552908352818420548885526012845282852091855292528220548291613abb91610c78908763ffffffff6132d716565b6003546040805163323442c360e11b81526001600160a01b038981166004830152915193945060009391909216916364688586916024808301926020929190829003018186803b158015613b0e57600080fd5b505afa158015613b22573d6000803e3d6000fd5b505050506040513d6020811015613b3857600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0387811660048301526024820186905291519293509083169163a9059cbb916044808201926020929091908290030181600087803b158015613b9057600080fd5b505af1158015613ba4573d6000803e3d6000fd5b505050506040513d6020811015613bba57600080fd5b5051613c00576040805162461bcd60e51b815260206004820152601060248201526f5472616e73666572206661696c75726560801b604482015290519081900360640190fd5b60008781526011602090815260408083206001600160a01b038a16808552908352928190205481518b8152928301939093528181019290925290517fd2107cf4448eaa7b67fe8ee34698459074c40ccffc5e060f86f4130f35aaa4ee9181900360600190a15095945050505050565b600080829050600080826001600160a01b03166392c088716040518163ffffffff1660e01b8152600401604080518083038186803b158015613cb057600080fd5b505afa158015613cc4573d6000803e3d6000fd5b505050506040513d6040811015613cda57600080fd5b5080516020909101516010549193509150600090613d0290610c78438663ffffffff61352716565b90506000806009831115613d195750600e54613d2b565b601383600a8110613d2657fe5b015490505b613d4b613d3e438663ffffffff61352716565b829063ffffffff6132d716565b9150856001600160a01b03166381fa5431836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015613d9357600080fd5b505af1158015613da7573d6000803e3d6000fd5b505060408051438152602081018690526001600160a01b038c168183015290517fbf10eb38ae3fef6350212985b724124761ec1a488dc5481048f20c389099e09d9350908190036060019150a1509695505050505050565b60006001600160a01b038416602883015b600f8216600a811015613e52578060300160f81b868680600101975081518110613e3657fe5b60200101906001600160f81b031916908160001a905350613e83565b8060570160f81b868680600101975081518110613e6b57fe5b60200101906001600160f81b031916908160001a9053505b60108304925050808410613e105760271901835b81811115613f2b576000868381518110613ead57fe5b602001015160f81c60f81b905086826001900392508281518110613ecd57fe5b602001015160f81c60f81b878481518110613ee457fe5b60200101906001600160f81b031916908160001a90535080878381518110613f0857fe5b60200101906001600160f81b031916908160001a90535050816001019150613e97565b509295945050505050565b60008183613fc25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f87578181015183820152602001613f6f565b50505050905090810190601f168015613fb45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613fce57fe5b0495945050505050565b6000818484111561402a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613f87578181015183820152602001613f6f565b505050900390565b614044826001600160a01b03166141ea565b614095576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106140d35780518252601f1990920191602091820191016140b4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614135576040519150601f19603f3d011682016040523d82523d6000602084013e61413a565b606091505b509150915081614191576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156139c9578080602001905160208110156141ad57600080fd5b50516139c95760405162461bcd60e51b815260040180806020018281038252602a815260200180614492602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061297d575050151592915050565b60405180610120016040528060006001600160a01b0316815260200160001515815260200160006001600160a01b03168152602001600081526020016000815260200160008152602001600081526020016000815260200160008152509056fe457468207363616c6520697320736d616c6c6572207468616e20746865206d696e696d756d207363616c655472616e73616374696f6e2073697a6520646f6573206e6f74206d656574206173736574207370616e506172616d65746572206e6565647320746f2062652067726561746572207468616e2030457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e20322074696d6573206f66207472616e73616374696f6e207363616c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e2031302074696d6573206f66207472616e73616374696f6e207363616c656d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f74656420657468207175616e7469747920706c7573207472616e73616374696f6e2068616e646c696e67206665656d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f746174696f6e20657468207175616e7469747920706c7573207472616e73616374696f6e2065746820706c75736d73672e76616c7565206e6565647320746f20626520657175616c20746f207468652071756f74656420657468207175616e7469747920706c7573204d696e696e672068616e646c696e67206665655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564457468416d6f756e74206e6565647320746f206265206e6f206c657373207468616e2031302074696d6573206f6620746865206d696e696d756d207363616c65a264697066735822122007d401da17286153897a8d8c5595da0d4e394f184db26641b6588dca5b7596c964736f6c63430006000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006cd5698e8854fb6879d6b1c694223b389b465dea
-----Decoded View---------------
Arg [0] : voteFactory (address): 0x6Cd5698E8854Fb6879d6B1C694223b389B465dea
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006cd5698e8854fb6879d6b1c694223b389b465dea
Deployed Bytecode Sourcemap
177:34105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26131:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26131:108:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26131:108:0;;:::i;:::-;;24918:123;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24918:123:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24918:123:0;;:::i;:::-;;;;;;;;;;;;;;;;23602:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23602:97:0;;;:::i;29939:1700::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29939:1700:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29939:1700:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29939:1700:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25090:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25090:86:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25090:86:0;;:::i;23457:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23457:88:0;;;:::i;24411:317::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24411:317:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24411:317:0;;;-1:-1:-1;;;;;24411:317:0;;;;;;;;;;:::i;25230:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25230:91:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25230:91:0;;;;:::i;26431:319::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26431:319:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26431:319:0;;;;;;;;;;;;:::i;24781:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24781:95:0;;;:::i;23877:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23877:91:0;;;:::i;12087:4063::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;12087:4063:0;;;;;;;;-1:-1:-1;;;;;12087:4063:0;;;;;;;;;;;;;;;;;;;;;;:::i;10079:121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10079:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10079:121:0;-1:-1:-1;;;;;10079:121:0;;:::i;24011:154::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24011:154:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24011:154:0;;;;;;-1:-1:-1;;;;;24011:154:0;;:::i;33049:436::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33049:436:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33049:436:0;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33049:436:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33049:436:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33049:436:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33049:436:0;;-1:-1:-1;;33049:436:0;;;-1:-1:-1;33049:436:0;;-1:-1:-1;;33049:436:0:i;5807:677::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5807:677:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5807:677:0;-1:-1:-1;;;;;5807:677:0;;:::i;16588:3837::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;16588:3837:0;;;;;;;;-1:-1:-1;;;;;16588:3837:0;;;;;;;;;;;;;;;;;;;;;;:::i;25991:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25991:87:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25991:87:0;;:::i;25380:163::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25380:163:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25380:163:0;;:::i;27060:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27060:95:0;;;:::i;23323:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23323:93:0;;;:::i;24219:144::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24219:144:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24219:144:0;;;;;;-1:-1:-1;;;;;24219:144:0;;:::i;28426:1059::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28426:1059:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;28426:1059:0;;;;;;;;;;;;;;;;;;;;:::i;26293:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26293:94:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26293:94:0;;:::i;10269:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10269:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10269:103:0;;:::i;:::-;;;;-1:-1:-1;;;;;10269:103:0;;;;;;;;;;;;;;22860:200;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22860:200:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22860:200:0;;:::i;25591:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25591:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25591:155:0;;:::i;27311:509::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27311:509:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27311:509:0;;:::i;10478:1171::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10478:1171:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10478:1171:0;-1:-1:-1;;;;;10478:1171:0;;:::i;25791:157::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25791:157:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25791:157:0;;:::i;6669:1985::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6669:1985:0;;;;;;;;;;;-1:-1:-1;;;;;6669:1985:0;;:::i;23745:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23745:89:0;;;:::i;26131:108::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;26206:19:::1;:25:::0;26131:108::o;24918:123::-;24983:7;25010:18;25029:3;25010:23;;;;;;;;;25003:30;;24918:123;;;;:::o;23602:97::-;23678:13;;23602:97;:::o;29939:1700::-;30132:17;;;30142:6;30132:17;;;;;;;;;30020:13;;;;30132:17;;;;21:6:-1;;104:10;30132:17:0;87:34:-1;135:17;;-1:-1;;30113:36:0;-1:-1:-1;30160:13:0;;;30305:10;30301:1117;;30440:7;:14;30431:23;;30427:91;;;30479:7;:14;:23;;;;-1:-1:-1;30427:91:0;30545:1;30537:5;:9;30533:65;;;-1:-1:-1;30573:9:0;;;30533:65;-1:-1:-1;;30702:3:0;;;:9;-1:-1:-1;30695:107:0;;;30740:46;30760:1;30763:7;30771:1;30763:10;;;;;;;;;;;;;;;;;30740:46;;;;;;;;30763:10;;;;;;;;30740:46;;-1:-1:-1;;;;;30740:46:0;;;;;-1:-1:-1;;;30740:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30775:3;30780:5;30740:19;:46::i;:::-;30732:54;;30695:107;;;30301:1117;;;30935:7;:14;30926:23;;30922:133;;;30974:6;30970:10;;30922:133;;;31025:7;:14;;-1:-1:-1;30922:133:0;-1:-1:-1;31108:7:0;:14;31075:9;;;;31102:20;;31099:80;;;-1:-1:-1;31149:7:0;:14;31099:80;31291:3;31287:1;:7;31280:127;;;31323:46;31343:1;31346:7;31354:1;31346:10;;;;;;;31323:46;31315:54;;31388:3;;;;;31280:127;;;31488:16;31517:5;31507:16;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;31507:16:0;87:34:-1;135:17;;-1:-1;31507:16:0;;31488:35;;31534:69;-1:-1:-1;;31540:7:0;;;:11;31534:69;;31581:3;31585:5;31581:10;;;;;;;;;;;;;;;;31568:3;31572:5;31568:10;;;;;;;;;;;:23;-1:-1:-1;;;;;31568:23:0;;;;;;;;;31534:69;;;31627:3;-1:-1:-1;;;;;29939:1700:0;;;;;;:::o;25090:86::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;25154:8:::1;:14:::0;25090:86::o;23457:88::-;23529:8;;23457:88;:::o;24411:317::-;24514:7;24538:18;24534:187;;-1:-1:-1;24580:1:0;24573:8;;24534:187;24674:27;;;;:17;:27;;;;;;;;-1:-1:-1;;;;;24674:34:0;;;;;;;;;;;;24621:22;;;:12;:22;;;;;:29;;;;;;;;;:88;;24674:34;24621:48;;24655:13;24621:48;:33;:48;:::i;:::-;:52;:88;:52;:88;:::i;:::-;24614:95;;;;25230:91;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;25296:11:::1;:17:::0;;-1:-1:-1;;25296:17:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;25230:91::o;26431:319::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;26564:11;26542:19:::1;26586:157;26610:2;26606:1;:6;26586:157;;;26659:11;26635:18;26654:1;26635:21;;;;;;;;:35:::0;26699:32:::1;26724:6:::0;26699:20:::1;:11:::0;26715:3;26699:20:::1;:15;:20;:::i;:32::-;26685:46:::0;-1:-1:-1;26614:4:0::1;;26586:157;;;;26898:1;26431:319:::0;;;:::o;24781:95::-;24856:12;;24781:95;:::o;23877:91::-;23950:10;;23877:91;:::o;12087:4063::-;12291:10;12314:9;12283:41;12275:76;;;;;-1:-1:-1;;;12275:76:0;;;;;;;;;;;;-1:-1:-1;;;12275:76:0;;;;;;;;;;;;;;;12362:21;12386:37;12418:4;12386:27;12404:8;;12386:13;:17;;:27;;;;:::i;:37::-;12362:61;-1:-1:-1;12455:47:0;12362:61;12455:28;:9;12469:13;12455:28;:13;:28;:::i;:::-;:32;:47;:32;:47;:::i;:::-;12442:9;:60;12434:156;;;;-1:-1:-1;;;12434:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12625:10;;12609:13;:26;;;;;;:31;12601:85;;;;-1:-1:-1;;;12601:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12749:13;12765:24;12773:15;12765:7;:24::i;:::-;12749:40;;12800:48;;:::i;:::-;12851:7;12859:5;12851:14;;;;;;;;;;;;;;;;12800:65;;;;;;;;12851:14;;;;;;;;12800:65;;-1:-1:-1;;;;;12800:65:0;;;;;-1:-1:-1;;;12800:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12980:56:0;12997:9;13007:11;13019:16;12980;:56::i;:::-;12961:75;;13047:14;13076;:22;;;:30;;13102:4;13076:30;;;13072:135;;;-1:-1:-1;13135:4:0;13072:135;;;-1:-1:-1;13184:11:0;13072:135;13326:14;:22;;;13322:760;;;13450:13;;13432:32;;:13;;:32;:17;:32;:::i;:::-;13419:9;:45;;13411:121;;;;-1:-1:-1;;;13411:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13322:760;;;13569:9;13565:506;;;13721:19;;13703:38;;:13;;:38;:17;:38;:::i;:::-;13690:9;:51;;13682:128;;;;-1:-1:-1;;;13682:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13565:506;13973:13;;13955:32;;:13;;:32;:17;:32;:::i;:::-;13942:9;:45;;13934:121;;;;-1:-1:-1;;;13934:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14181:43;14200:14;:23;;;14181:18;:43::i;:::-;:48;14173:79;;;;;-1:-1:-1;;;14173:79:0;;;;;;;;;;;;-1:-1:-1;;;14173:79:0;;;;;;;;;;;;;;;14303:13;14271:14;:28;;;:45;;14263:82;;;;;-1:-1:-1;;;14263:82:0;;;;;;;;;;;;-1:-1:-1;;;14263:82:0;;;;;;;;;;;;;;;14398:15;14364:14;:30;;;:49;;14356:88;;;;;-1:-1:-1;;;14356:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14494:16;-1:-1:-1;;;;;14463:47:0;:14;:27;;;-1:-1:-1;;;;;14463:47:0;;14455:79;;;;;-1:-1:-1;;;14455:79:0;;;;;;;;;;;;-1:-1:-1;;;14455:79:0;;;;;;;;;;;;;;;14621:14;:28;;;14605:13;14572:14;:30;;;:46;:77;;;;;;14553:15;:96;14545:127;;;;;-1:-1:-1;;;14545:127:0;;;;;;;;;;;;-1:-1:-1;;;14545:127:0;;;;;;;;;;;;;;;14761:24;;;;:43;;14790:13;14761:43;:28;:43;:::i;:::-;14734:24;;;:70;14844:26;;;;:47;;14875:15;14844:47;:30;:47;:::i;:::-;14815:26;;;:76;14933:28;;;;:47;;14966:13;14933:47;:32;:47;:::i;:::-;14902:28;;;:78;15024:30;;;;:51;;15059:15;15024:51;:34;:51;:::i;:::-;14991:30;;;:84;15086:7;:14;;14991;;15086:7;15094:5;;15086:14;;;;;;;;;;;;;;:31;;:14;;;;;:31;;;;;;;;-1:-1:-1;;;15086:31:0;-1:-1:-1;;;;;;;;;15086:31:0;;;-1:-1:-1;;;;;;15086:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15159:67;;15171:9;;15182:11;;15195:16;;15213:9;;15159:11;:67::i;:::-;15316:15;15302:11;:29;15298:296;;;15348:110;15397:10;15418:4;15425:32;:11;15441:15;15425:32;:15;:32;:::i;:::-;-1:-1:-1;;;;;15348:40:0;;;:110;;;:40;:110;:::i;:::-;15298:296;;;15491:91;15536:10;15549:32;:15;15569:11;15549:32;:19;:32;:::i;:::-;-1:-1:-1;;;;;15491:36:0;;;:91;;:36;:91;:::i;:::-;15631:11;;15733;;15705:23;;;;-1:-1:-1;;;;;15631:11:0;;;;:23;;15655:13;;15670:15;;15687:16;;15705:40;;15733:11;;;;;15705:27;:40;:::i;:::-;15631:115;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15631:115:0;-1:-1:-1;;;;;15631:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15631:115:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;15883:20:0;;15762:142;;;15780:10;15762:142;;15801:3;15762:142;;;;;;;;;;-1:-1:-1;;;;;15762:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15762:142:0;;;;;;;-1:-1:-1;15762:142:0;15954:17;;15950:193;;16012:13;;:49;;;-1:-1:-1;;;16012:49:0;;-1:-1:-1;;;;;16012:49:0;;;;;;;;;15988:21;;16012:13;;;;;:31;;:49;;;;;;;;;;;;;;;:13;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;16012:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16012:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16012:49:0;16076:7;;:55;;;-1:-1:-1;;;16076:55:0;;-1:-1:-1;;;;;16076:55:0;;;;;;;;;16012:49;;-1:-1:-1;16076:7:0;;;:19;;16102:13;;16076:55;;;;;:7;;:55;;;;;;;16102:13;16076:7;:55;;;5:2:-1;;;;30:1;27;20:12;5:2;16076:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16076:55:0;;;;;15950:193;;12087:4063;;;;;;;;;;;:::o;10079:121::-;-1:-1:-1;;;;;10168:24:0;;10079:121::o;24011:154::-;24096:7;24123:27;;;:17;:27;;;;;;;;-1:-1:-1;;;;;24123:34:0;;;;;;;;;;24011:154;;;;;:::o;33049:436::-;33134:7;33166:5;33182:108;33231:2;33226;:7;33235:2;33226:11;33215:24;;33200:3;33204:7;;;;;;33200:12;;;;;;;;;;;:39;-1:-1:-1;;;;;33200:39:0;;;;;;;;-1:-1:-1;33260:2:0;33254:8;;;;33287:1;33282:2;:6;33182:108;;33327:5;33310:135;33338:1;33334;:5;33310:135;;;33361:6;33370:3;33374:1;33370:6;;;;;;;;;;;;;;;;33361:15;;33400:3;33404;;;;;;;33400:8;;;;;;;;;;;;;;;;33391:3;33395:1;33391:6;;;;;;;;;;;:17;-1:-1:-1;;;;;33391:17:0;;;;;;;;;33432:1;33423:3;33427:1;33423:6;;;;;;;;;;;:10;-1:-1:-1;;;;;33423:10:0;;;;;;;;;33310:135;33341:3;;;;;33310:135;;;-1:-1:-1;33472:5:0;;33049:436;-1:-1:-1;;;;33049:436:0:o;5807:677::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;5966:12:::1;:29:::0;;-1:-1:-1;;;;;;5966:29:0::1;-1:-1:-1::0;;;;;5966:29:0;::::1;::::0;;::::1;::::0;;;6104:49:::1;::::0;;-1:-1:-1;;;6104:49:0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;;;6104:49:0;;;;;;5966:29;;;6104:27:::1;::::0;:49;;;;;;;;;;;5966:29;6104:49;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;6104:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;6104:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;6104:49:0;6064:11:::1;:91:::0;;-1:-1:-1;;;;;;6064:91:0::1;-1:-1:-1::0;;;;;6064:91:0;;::::1;;::::0;;6191:35:::1;::::0;;-1:-1:-1;;;6191:35:0;;6104:49:::1;6191:35;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;6191:35:0;;;;;;:27;;::::1;::::0;::::1;::::0;:35;;;;;6104:49;;6191:35;;;;;;:27;:35;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;6191:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;6191:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;6191:35:0;6172:10:::1;:55:::0;;-1:-1:-1;;;;;;6172:55:0::1;-1:-1:-1::0;;;;;6172:55:0;;::::1;;::::0;;6313:45:::1;::::0;;-1:-1:-1;;;6313:45:0;;6191:35:::1;6313:45:::0;;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;;;6313:45:0;;;;;;:27;;::::1;::::0;::::1;::::0;:45;;;;;6191:35;;6313:45;;;;;;:27;:45;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;6313:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;6313:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;6313:45:0;6289:7:::1;:70:::0;;-1:-1:-1;;;;;;6289:70:0::1;-1:-1:-1::0;;;;;6289:70:0;;::::1;;::::0;;6419:55:::1;::::0;;-1:-1:-1;;;6419:55:0;;6313:45:::1;6419:55;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;;;;;:27;;::::1;::::0;::::1;::::0;:55;;;;;6313:45;;6419:55;;;;;;:27;:55;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;6419:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;6419:55:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;6419:55:0;6370:13:::1;:106:::0;;-1:-1:-1;;;;;;6370:106:0::1;-1:-1:-1::0;;;;;6370:106:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;5807:677:0:o;16588:3837::-;16792:10;16815:9;16784:41;16776:76;;;;;-1:-1:-1;;;16776:76:0;;;;;;;;;;;;-1:-1:-1;;;16776:76:0;;;;;;;;;;;;;;;16863:21;16887:37;16919:4;16887:27;16905:8;;16887:13;:17;;:27;;;;:::i;:37::-;16863:61;-1:-1:-1;16956:47:0;16863:61;16956:28;:9;16970:13;16956:28;:13;:28;:::i;:47::-;16943:9;:60;16935:157;;;;-1:-1:-1;;;16935:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17127:10;;17111:13;:26;;;;;;:31;17103:85;;;;-1:-1:-1;;;17103:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17241:13;17257:24;17265:15;17257:7;:24::i;:::-;17241:40;;17292:48;;:::i;:::-;17343:7;17351:5;17343:14;;;;;;;;;;;;;;;;17292:65;;;;;;;;17343:14;;;;;;;;17292:65;;-1:-1:-1;;;;;17292:65:0;;;;;-1:-1:-1;;;17292:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17472:56:0;17489:9;17499:11;17511:16;17472;:56::i;:::-;17453:75;;17539:14;17568;:22;;;:30;;17594:4;17568:30;;;17564:135;;;-1:-1:-1;17627:4:0;17564:135;;;-1:-1:-1;17676:11:0;17564:135;17818:14;:22;;;17814:760;;;17942:13;;17924:32;;:13;;:32;:17;:32;:::i;:::-;17911:9;:45;;17903:121;;;;-1:-1:-1;;;17903:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17814:760;;;18061:9;18057:506;;;18213:19;;18195:38;;:13;;:38;:17;:38;:::i;:::-;18182:9;:51;;18174:128;;;;-1:-1:-1;;;18174:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18057:506;18465:13;;18447:32;;:13;;:32;:17;:32;:::i;:::-;18434:9;:45;;18426:121;;;;-1:-1:-1;;;18426:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18663:43;18682:14;:23;;;18663:18;:43::i;:::-;:48;18655:79;;;;;-1:-1:-1;;;18655:79:0;;;;;;;;;;;;-1:-1:-1;;;18655:79:0;;;;;;;;;;;;;;;18785:13;18753:14;:28;;;:45;;18745:82;;;;;-1:-1:-1;;;18745:82:0;;;;;;;;;;;;-1:-1:-1;;;18745:82:0;;;;;;;;;;;;;;;18880:15;18846:14;:30;;;:49;;18838:88;;;;;-1:-1:-1;;;18838:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18976:16;-1:-1:-1;;;;;18945:47:0;:14;:27;;;-1:-1:-1;;;;;18945:47:0;;18937:79;;;;;-1:-1:-1;;;18937:79:0;;;;;;;;;;;;-1:-1:-1;;;18937:79:0;;;;;;;;;;;;;;;19103:14;:28;;;19087:13;19054:14;:30;;;:46;:77;;;;;;19035:15;:96;19027:127;;;;;-1:-1:-1;;;19027:127:0;;;;;;;;;;;;-1:-1:-1;;;19027:127:0;;;;;;;;;;;;;;;19233:24;;;;:43;;19262:13;19233:43;:28;:43;:::i;:::-;19206:24;;;:70;19316:26;;;;:47;;19347:15;19316:47;:30;:47;:::i;:::-;19287:26;;;:76;19405:28;;;;:47;;19438:13;19405:47;:32;:47;:::i;:::-;19374:28;;;:78;19496:30;;;;:51;;19531:15;19496:51;:34;:51;:::i;:::-;19463:30;;;:84;19558:7;:14;;19463;;19558:7;19566:5;;19558:14;;;;;;;;;;;;;;:31;;:14;;;;;:31;;;;;;;;-1:-1:-1;;;19558:31:0;-1:-1:-1;;;;;;;;;19558:31:0;;;-1:-1:-1;;;;;;19558:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19631:67;;19643:9;;19654:11;;19667:16;;19685:9;;19631:11;:67::i;:::-;19770:110;19819:10;19840:4;19847:32;:15;19867:11;19847:32;:19;:32;:::i;19770:110::-;19916:11;;20018;;19990:23;;;;-1:-1:-1;;;;;19916:11:0;;;;:23;;19940:13;;19955:15;;19972:16;;19990:40;;20018:11;;;;;19990:27;:40;:::i;:::-;19916:115;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19916:115:0;-1:-1:-1;;;;;19916:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19916:115:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;20168:20:0;;20047:142;;;20065:10;20047:142;;-1:-1:-1;;;;;20047:142:0;;;;;;;;;;;;;20130:3;20047:142;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20047:142:0;;;;;;;-1:-1:-1;20047:142:0;20229:17;;20225:193;;20287:13;;:49;;;-1:-1:-1;;;20287:49:0;;-1:-1:-1;;;;;20287:49:0;;;;;;;;;20263:21;;20287:13;;;;;:31;;:49;;;;;;;;;;;;;;;:13;:49;;;5:2:-1;;;;30:1;27;20:12;25991:87:0;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;26056:8:::1;:14:::0;25991:87::o;25380:163::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;25463:1:::1;25457:3;:7;25449:56;;;;-1:-1:-1::0;;;25449:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25516:13;:19:::0;25380:163::o;27060:95::-;27106:7;27133:14;27060:95;:::o;23323:93::-;23397:11;;;;23323:93;:::o;24219:144::-;24299:7;24326:22;;;:12;:22;;;;;;;;-1:-1:-1;;;;;24326:29:0;;;;;;;;;;;;;24219:144::o;28426:1059::-;28629:17;;;28639:6;28629:17;;;;;;;;;28528:13;;;;28629:17;;;;21:6:-1;;104:10;28629:17:0;87:34:-1;135:17;;-1:-1;;28657:13:0;28745:14;;28610:36;;-1:-1:-1;28657:13:0;;-1:-1:-1;;;;;28800:19:0;;;28796:70;;28840:14;28848:5;28840:7;:14::i;:::-;28836:18;;28796:70;28884:12;28880:1;:16;28876:71;;;-1:-1:-1;28919:16:0;;;28876:71;29033:1;29025:5;:9;:22;;;;-1:-1:-1;;;29038:3:0;;;:9;-1:-1:-1;29025:22:0;29018:260;;;29064:39;;:::i;:::-;29106:7;29114:1;29106:10;;;;;;;;;;;;;;;;;29064:52;;;;;;;;29106:10;;;;;;;;29064:52;;-1:-1:-1;;;;;29064:52:0;;;;;;-1:-1:-1;;;29064:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29135:20:0;;;;29131:136;;;-1:-1:-1;;29176:7:0;;;;29210:41;29230:1;29233:5;29240:3;29245:5;29210:19;:41::i;:::-;29202:49;;29131:136;29018:260;;;;29334:16;29363:5;29353:16;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;29353:16:0;87:34:-1;135:17;;-1:-1;29353:16:0;;29334:35;;29380:69;-1:-1:-1;;29386:7:0;;;:11;29380:69;;29427:3;29431:5;29427:10;;;;;;;;;;;;;;;;29414:3;29418:5;29414:10;;;;;;;;;;;:23;-1:-1:-1;;;;;29414:23:0;;;;;;;;;29380:69;;;29473:3;28426:1059;-1:-1:-1;;;;;;;;;28426:1059:0:o;26293:94::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;26361:12:::1;:18:::0;26293:94::o;10269:103::-;10358:5;10269:103::o;22860:200::-;22986:11;;22930:7;;22986:11;;;;;22954:29;;:12;;22971:11;;22954:16;:29;:::i;:::-;:43;22950:84;;;-1:-1:-1;23021:1:0;23014:8;;22950:84;-1:-1:-1;23051:1:0;22860:200;;;:::o;25591:155::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;25670:1:::1;25664:3;:7;25656:56;;;;-1:-1:-1::0;;;25656:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25723:9;:15:::0;25591:155::o;27311:509::-;27480:17;;;27490:6;27480:17;;;;;;;;;27370:13;;;;27480:17;;;;21:6:-1;;104:10;27480:17:0;87:34:-1;135:17;;-1:-1;27480:17:0;27461:36;;27508:13;27524:1;27508:17;;27544:64;27564:10;27576:7;27584:10;27576:19;;;;;;;;;;;;;;;;;27544:64;;;;;;;;27576:19;;;;;;;;27544:64;;-1:-1:-1;;;;;27544:64:0;;;;;-1:-1:-1;;;27544:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27597:3;27602:5;27544:19;:64::i;:::-;27536:72;;27669:16;27698:5;27688:16;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;27688:16:0;87:34:-1;135:17;;-1:-1;27688:16:0;;27669:35;;27715:69;-1:-1:-1;;27721:7:0;;;:11;27715:69;;27762:3;27766:5;27762:10;;;;;;;;;;;;;;;;27749:3;27753:5;27749:10;;;;;;;;;;;:23;-1:-1:-1;;;;;27749:23:0;;;;;;;;;27715:69;;;27808:3;27311:509;-1:-1:-1;;;;27311:509:0:o;10478:1171::-;10554:10;10577:9;10546:41;10538:76;;;;;-1:-1:-1;;;10538:76:0;;;;;;;;;;;;-1:-1:-1;;;10538:76:0;;;;;;;;;;;;;;;10625:13;10641:24;10649:15;10641:7;:24::i;:::-;10625:40;;10676:49;10728:7;10736:5;10728:14;;;;;;;;;;;;;;;;;;10676:66;;10761:43;10780:14;:23;;;10761:18;:43::i;:::-;10808:1;10761:48;10753:79;;;;;-1:-1:-1;;;10753:79:0;;;;;;;;;;;;-1:-1:-1;;;10753:79:0;;;;;;;;;;;;;;;10872:24;;;;:28;10868:198;;10934:24;;;;;10917:14;10973:28;;;11025:20;;11016:38;;-1:-1:-1;;;;;11025:20:0;10934:24;11016:8;:38::i;:::-;10868:198;;11107:26;;;;:30;11103:275;;11171:26;;;;;11154:14;11212:30;;;11322:20;;-1:-1:-1;11271:27:0;;;11257:95;;-1:-1:-1;;;;;11271:27:0;;;;11322:20;11171:26;11257:95;:56;:95;:::i;:::-;11103:275;;11422:28;;;;:32;11418:224;;11478:23;;;;11503:27;;;;11532:28;;;;11562:20;;11471:112;;11478:23;-1:-1:-1;;;;;11503:27:0;;;;11532:28;11562:20;11471:6;:112::i;:::-;-1:-1:-1;11629:1:0;11598:28;;;:32;11418:224;10478:1171;;;:::o;25791:157::-;26834:12;;:36;;;-1:-1:-1;;;26834:36:0;;26859:10;26834:36;;;;;;-1:-1:-1;;;;;26834:12:0;;;;:24;;:36;;;;;;;;;;;;;;;:12;:36;;;5:2:-1;;;;30:1;27;20:12;5:2;26834:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26834:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26834:36:0;26826:61;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;-1:-1:-1;;;26826:61:0;;;;;;;;;;;;;;;25871:1:::1;25865:3;:7;25857:56;;;;-1:-1:-1::0;;;25857:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25924:10;:16:::0;25791:157::o;6669:1985::-;6788:10;6811:9;6780:41;6772:76;;;;;-1:-1:-1;;;6772:76:0;;;;;;;;;;;;-1:-1:-1;;;6772:76:0;;;;;;;;;;;;;;;6883:13;;:45;;;-1:-1:-1;;;6883:45:0;;-1:-1:-1;;;;;6883:45:0;;;;;;;;;6859:21;;6883:13;;;;;:31;;:45;;;;;;;;;;;;;;;:13;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;6883:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6883:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6883:45:0;;-1:-1:-1;;;;;;6947:29:0;;6939:38;;;;;;7034:17;7062:14;7079:52;7096:9;7106:11;7118:12;7079:16;:52::i;:::-;7062:69;;7146:9;7142:308;;;7207:19;;7193:9;;:34;;;:13;:34;:::i;:::-;7180:9;:47;;7172:124;;;;-1:-1:-1;;;7172:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7323:35;7353:4;7323:25;7337:10;;7323:9;;:13;;:25;;;;:::i;:35::-;7311:47;;7142:308;;;7403:35;7433:4;7403:25;7417:10;;7403:9;:13;;:25;;;;:::i;:35::-;7391:47;;7142:308;7481:24;:9;7495;7481:24;:13;:24;:::i;:::-;7468:9;:37;;7460:129;;;;-1:-1:-1;;;7460:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7600:16;7619:39;7633:24;:9;7647;7633:24;:13;:24;:::i;:::-;7619:9;;:39;:13;:39;:::i;:::-;7600:58;-1:-1:-1;7673:12:0;;7669:84;;7702:39;7719:10;7732:8;7702;:39::i;:::-;7792:70;7804:9;7815:11;7828:12;7841:9;7852;7792:11;:70::i;:::-;7935:85;-1:-1:-1;;;;;7935:36:0;;7980:10;8001:4;8008:11;7935:85;:36;:85;:::i;:::-;8031:7;;:65;;;-1:-1:-1;;;8031:65:0;;-1:-1:-1;;;;;8031:65:0;;;;;;;;;:7;;;;;:33;;8071:9;;8031:65;;;;;:7;;:65;;;;;;;;8071:9;8031:7;:65;;;5:2:-1;;;;30:1;27;20:12;5:2;8031:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;8149:12:0;8131:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;8131:45:0;;;;;;;;;;:50;8127:401;;-1:-1:-1;8127:401:0;;-1:-1:-1;;8127:401:0;8198:20;8221:25;8232:13;8221:10;:25::i;:::-;8198:48;;8261:18;8294:13;8261:47;;8323:6;-1:-1:-1;;;;;8323:15:0;;8339:6;-1:-1:-1;;;;;8339:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8339:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8339:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8339:20:0;8378:12;;8361:39;;8396:3;;8361:30;;:12;;:30;:16;:30;:::i;:39::-;8323:78;;;;;;;;;;;;;-1:-1:-1;;;;;8323:78:0;-1:-1:-1;;;;;8323:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8323:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8323:78:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;8493:12:0;;8459:57;;8476:39;;8511:3;;8476:30;;:12;;:30;:16;:30;:::i;:39::-;8459:12;;:57;:16;:57;:::i;:::-;8429:12;8416:26;;;;:12;:26;;;;;;;;-1:-1:-1;;;;;8416:40:0;;;;;;;;;:100;-1:-1:-1;;8127:401:0;8604:12;8586:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;8586:45:0;;;;;;;;;;:60;;8636:9;8586:60;:49;:60;:::i;:::-;8556:12;8538:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;8538:45:0;;;;;;;;;;;;:108;;;;-1:-1:-1;;;;;;6669:1985:0:o;23745:89::-;23817:9;;23745:89;:::o;31728:1195::-;31873:7;31911:47;31924:21;31934:10;31924:9;:21::i;:::-;31947:3;31952:5;31911:12;:47::i;:::-;31969:12;;31973:7;;;;-1:-1:-1;;;;31984:15:0;31969:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;31969:30:0;;;;;;;;-1:-1:-1;32041:11:0;;32028:37;;32054:3;32059:5;32028:12;:37::i;:::-;32076:12;;32080:7;;;;-1:-1:-1;;;;32091:15:0;32076:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32076:30:0;;;;;;;;;32135:44;32148:5;:18;;;32168:3;32173:5;32135:12;:44::i;:::-;32190:12;;32194:7;;;;-1:-1:-1;;;;32205:15:0;32190:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32190:30:0;;;;;;;;;32249:38;32259:5;:15;;;32276:3;32281:5;32249:9;:38::i;:::-;32298:12;;32302:7;;;;-1:-1:-1;;;;32313:15:0;32298:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32298:30:0;;;;;;;;;32357:40;32367:5;:17;;;32386:3;32391:5;32357:9;:40::i;:::-;32408:12;;32412:7;;;;-1:-1:-1;;;;32423:15:0;32408:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32408:30:0;;;;;;;;;32466:42;32476:5;:19;;;32497:3;32502:5;32466:9;:42::i;:::-;32519:12;;32523:7;;;;-1:-1:-1;;;;32534:15:0;32519:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32519:30:0;;;;;;;;;32578:44;32588:5;:21;;;32611:3;32616:5;32578:9;:44::i;:::-;32633:12;;32637:7;;;;-1:-1:-1;;;;32648:15:0;32633:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32633:30:0;;;;;;;;;32692:37;32702:5;:14;;;32718:3;32723:5;32692:9;:37::i;:::-;32740:12;;32744:7;;;;-1:-1:-1;;;;32755:15:0;32740:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32740:30:0;;;;;;;;;32799:42;32809:5;:19;;;32830:3;32835:5;32799:9;:42::i;:::-;32852:12;;32856:7;;;;-1:-1:-1;;;;32867:15:0;32852:3;;:12;;;;;;;;;:30;-1:-1:-1;;;;;32852:30:0;;;;;;;;-1:-1:-1;32910:5:0;;31728:1195;-1:-1:-1;;;;31728:1195:0:o;36955:248::-;37013:7;37037:6;37033:47;;-1:-1:-1;37067:1:0;37060:8;;37033:47;37102:5;;;37106:1;37102;:5;:1;37126:5;;;;;:10;37118:56;;;;-1:-1:-1;;;37118:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37209:132;37267:7;37294:39;37298:1;37301;37294:39;;;;;;;;;;;;;;;;;:3;:39::i;36428:181::-;36486:7;36518:5;;;36542:6;;;;36534:46;;;;;-1:-1:-1;;;36534:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22061:757;22233:11;;:45;;;-1:-1:-1;;;22233:45:0;;-1:-1:-1;;;;;22233:45:0;;;;;;;;;22165:4;;;;;;22233:11;;;;;:38;;:45;;;;;;;;;;;:11;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;22233:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22233:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22233:45:0;;;;;;;;;-1:-1:-1;22233:45:0;-1:-1:-1;22293:18:0;;;:42;;-1:-1:-1;22315:20:0;;22293:42;22289:87;;;22359:5;22352:12;;;;;;22289:87;22386:22;22411:91;22479:22;:13;22497:3;22479:22;:17;:22;:::i;:::-;22411:63;22447:26;22464:8;;22455:3;22447:16;;:26;;;;:::i;:::-;22411:31;:10;22426:15;22411:31;:14;:31;:::i;:::-;:35;:63;:35;:63;:::i;:91::-;22386:116;;22533:14;22517:12;:30;22513:276;;22564:22;22589:91;22657:22;:13;22675:3;22657:22;:17;:22;:::i;:::-;22589:63;22625:26;22642:8;;22633:3;22625:16;;:26;;;;:::i;:::-;22589:31;:10;22604:15;22589:31;:14;:31;:::i;:91::-;22564:116;;22715:14;22699:12;:30;22695:83;;22757:5;22750:12;;;;;;;;22695:83;22513:276;;-1:-1:-1;22806:4:0;;22061:757;-1:-1:-1;;;;;;22061:757:0:o;36615:136::-;36673:7;36700:43;36704:1;36707;36700:43;;;;;;;;;;;;;;;;;:3;:43::i;8856:1155::-;9046:9;;9033;:22;;9025:78;;;;-1:-1:-1;;;9025:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:10;;9171:9;:22;;;;;;:27;9163:64;;;;;-1:-1:-1;;;9163:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9275:10;;9261:25;;:9;;:25;:13;:25;:::i;:::-;9246:11;:41;;;;;;:46;9238:88;;;;;-1:-1:-1;;;9238:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9359:1;9345:11;:15;9337:24;;;;;;9445:7;:14;9414:113;;9435:25;;:9;:25::i;:::-;9508:11;;9414:113;;;-1:-1:-1;;;;;9414:113:0;;;;;;;;;;;;;;;;;;;;;;;;9508:11;;;;9414:113;;;;;;;;;;;;;;;;;;;9551:305;;;;;;;;9592:10;9551:305;;;;;;;;;;;-1:-1:-1;;;;;9551:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9812:12;9551:305;;;;;;;;;;;;9538:7;27:10:-1;;39:1;23:18;;45:23;;9538:319:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9538:319:0;-1:-1:-1;;;;9538:319:0;;;-1:-1:-1;;;;;;9538:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9893:11;9955;;9893;;;:20;;9682:9;;9706:11;;9938:29;;9955:11;;;;;9938:16;:29;:::i;:::-;9893:110;;;-1:-1:-1;;;;;;9893:110:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9893:110:0;;;;;;9991:10;9893:110;;;;;;;;;;-1:-1:-1;;9893:110:0;;;;;;;-1:-1:-1;9893:110:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;9893:110:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9893:110:0;;;;8856:1155;;;;;:::o;38283:203::-;38409:68;;;-1:-1:-1;;;;;38409:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;38409:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;38383:95:0;;38402:5;;38383:18;:95::i;:::-;38283:203;;;;:::o;38100:175::-;38208:58;;;-1:-1:-1;;;;;38208:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;38208:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;38182:85:0;;38201:5;;38182:18;:85::i;23093:167::-;23169:20;23192:29;:14;-1:-1:-1;;;;;23192:27:0;;:29::i;:::-;23232:20;;23169:52;;-1:-1:-1;;;;;;23232:13:0;;;:20;;;;;23246:5;;23232:20;;;;23246:5;23232:13;:20;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;21387:633:0;21490:7;21645:27;;;:17;:27;;;;;;;;-1:-1:-1;;;;;21645:34:0;;;;;;;;;;;;21592:22;;;:12;:22;;;;;:29;;;;;;;;21490:7;;21592:88;;:48;;21626:13;21592:48;:33;:48;:::i;:88::-;21770:13;;:38;;;-1:-1:-1;;;21770:38:0;;-1:-1:-1;;;;;21770:38:0;;;;;;;;;21569:111;;-1:-1:-1;21729:18:0;;21770:13;;;;;:31;;:38;;;;;;;;;;;;;;:13;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;21770:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21770:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21770:38:0;21829:45;;;-1:-1:-1;;;21829:45:0;;-1:-1:-1;;;;;21829:45:0;;;;;;;;;;;;;;;21770:38;;-1:-1:-1;21829:15:0;;;;;;:45;;;;;21770:38;;21829:45;;;;;;;;-1:-1:-1;21829:15:0;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;21829:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21829:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21829:45:0;21821:74;;;;;-1:-1:-1;;;21821:74:0;;;;;;;;;;;;-1:-1:-1;;;21821:74:0;;;;;;;;;;;;;;;21947:27;;;;:17;:27;;;;;;;;-1:-1:-1;;;;;21947:34:0;;;;;;;;;;;;;21921:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22000:12:0;21387:633;-1:-1:-1;;;;;21387:633:0:o;20517:780::-;20569:7;20589:23;20627:6;20589:45;;20646:19;20667:25;20696:11;-1:-1:-1;;;;;20696:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20696:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20696:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20696:28:0;;;;;;;20799:17;;20696:28;;-1:-1:-1;20696:28:0;-1:-1:-1;20735:27:0;;20765:52;;:29;:12;20696:28;20765:29;:16;:29;:::i;:52::-;20735:82;-1:-1:-1;20828:20:0;;20919:1;20897:23;;20893:174;;;-1:-1:-1;20951:18:0;;20893:174;;;21016:18;21035:19;21016:39;;;;;;;;;21002:53;;20893:174;21092:52;21108:35;:12;21125:17;21108:35;:16;:35;:::i;:::-;21092:11;;:52;:15;:52;:::i;:::-;21077:67;;21155:11;-1:-1:-1;;;;;21155:25:0;;21181:12;21155:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21155:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;21210:49:0;;;21224:12;21210:49;;;;;;;;-1:-1:-1;;;;;21210:49:0;;;;;;;;;;-1:-1:-1;21210:49:0;;;;;;;-1:-1:-1;21210:49:0;-1:-1:-1;21277:12:0;20517:780;-1:-1:-1;;;;;;20517:780:0:o;33603:676::-;33694:7;-1:-1:-1;;;;;33737:13:0;;33781:2;33773:10;;33794:272;33824:7;;;33853:2;33849:6;;33846:153;;;33902:1;33905:2;33902:5;33891:18;;33876:3;33880:7;;;;;;33876:12;;;;;;;;;;;:33;-1:-1:-1;;;;;33876:33:0;;;;;;;;;33846:153;;;33976:1;33979:2;33976:5;33965:18;;33950:3;33954:7;;;;;;33950:12;;;;;;;;;;;:33;-1:-1:-1;;;;;33950:33:0;;;;;;;;;33846:153;34033:2;34027:8;;;;33794:272;34063:1;34055:5;:9;33794:272;;-1:-1:-1;;34086:7:0;34121:5;34104:135;34132:1;34128;:5;34104:135;;;34155:6;34164:3;34168:1;34164:6;;;;;;;;;;;;;;;;34155:15;;34194:3;34198;;;;;;;34194:8;;;;;;;;;;;;;;;;34185:3;34189:1;34185:6;;;;;;;;;;;:17;-1:-1:-1;;;;;34185:17:0;;;;;;;;;34226:1;34217:3;34221:1;34217:6;;;;;;;;;;;:10;-1:-1:-1;;;;;34217:10:0;;;;;;;;;34104:135;34135:3;;;;;34104:135;;;-1:-1:-1;34266:5:0;;33603:676;-1:-1:-1;;;;;33603:676:0:o;37347:189::-;37433:7;37468:12;37461:5;37453:28;;;;-1:-1:-1;;;37453:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37453:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37492:9;37508:1;37504;:5;;;;;;;37347:189;-1:-1:-1;;;;;37347:189:0:o;36757:192::-;36843:7;36879:12;36871:6;;;;36863:29;;;;-1:-1:-1;;;36863:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;36863:29:0;-1:-1:-1;;;36915:5:0;;;36757:192::o;39475:448::-;39562:27;39570:5;-1:-1:-1;;;;;39562:25:0;;:27::i;:::-;39554:71;;;;;-1:-1:-1;;;39554:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39637:12;39651:23;39686:5;-1:-1:-1;;;;;39678:19:0;39698:4;39678:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;39678:25:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;39636:67:0;;;;39722:7;39714:52;;;;;-1:-1:-1;;;39714:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39781:17;;:21;39777:139;;39838:10;39827:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39827:30:0;39819:85;;;;-1:-1:-1;;;39819:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40629:317;40689:4;40855:20;;40755:66;40895:23;;;;;;:42;;-1:-1:-1;;40922:15:0;;;40887:51;-1:-1:-1;;40629:317:0:o;177:34105::-;;;;;;;;;;-1:-1:-1;;;;;177:34105:0;;;;;;;;;;;;;-1:-1:-1;;;;;177:34105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://07d401da17286153897a8d8c5595da0d4e394f184db26641b6588dca5b7596c9
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.