ERC-721
Overview
Max Total Supply
260 RDR
Holders
53
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 RDRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DebtEngine
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-09-03 */ // File: contracts/interfaces/IERC20.sol pragma solidity ^0.5.11; interface IERC20 { function transfer(address _to, uint _value) external returns (bool success); function transferFrom(address _from, address _to, uint256 _value) external returns (bool success); function allowance(address _owner, address _spender) external view returns (uint256 remaining); function approve(address _spender, uint256 _value) external returns (bool success); function increaseApproval (address _spender, uint _addedValue) external returns (bool success); function balanceOf(address _owner) external view returns (uint256 balance); } // File: contracts/interfaces/IERC165.sol pragma solidity ^0.5.11; interface IERC165 { /// @notice Query if a contract implements an interface /// @param interfaceID The interface identifier, as specified in ERC-165 /// @dev Interface identification is specified in ERC-165. This function /// uses less than 30,000 gas. /// @return `true` if the contract implements `interfaceID` and /// `interfaceID` is not 0xffffffff, `false` otherwise function supportsInterface(bytes4 interfaceID) external view returns (bool); } // File: contracts/core/diaspore/interfaces/Model.sol pragma solidity ^0.5.11; /** The abstract contract Model defines the whole lifecycle of a debt on the DebtEngine. Models can be used without previous approbation, this is meant to avoid centralization on the development of RCN; this implies that not all models are secure. Models can have back-doors, bugs and they have not guarantee of being autonomous. The DebtEngine is meant to be the User of this model, so all the methods with the ability to perform state changes should only be callable by the DebtEngine. All models should implement the 0xaf498c35 interface. @author Agustin Aguilar */ contract Model is IERC165 { // /// // Events // /// /** @dev This emits when create a new debt. */ event Created(bytes32 indexed _id); /** @dev This emits when the status of debt change. @param _timestamp Timestamp of the registry @param _status New status of the registry */ event ChangedStatus(bytes32 indexed _id, uint256 _timestamp, uint256 _status); /** @dev This emits when the obligation of debt change. @param _timestamp Timestamp of the registry @param _debt New debt of the registry */ event ChangedObligation(bytes32 indexed _id, uint256 _timestamp, uint256 _debt); /** @dev This emits when the frequency of debt change. @param _timestamp Timestamp of the registry @param _frequency New frequency of each installment */ event ChangedFrequency(bytes32 indexed _id, uint256 _timestamp, uint256 _frequency); /** @param _timestamp Timestamp of the registry */ event ChangedDueTime(bytes32 indexed _id, uint256 _timestamp, uint256 _status); /** @param _timestamp Timestamp of the registry @param _dueTime New dueTime of each installment */ event ChangedFinalTime(bytes32 indexed _id, uint256 _timestamp, uint64 _dueTime); /** @dev This emits when the call addDebt function. @param _amount New amount of the debt, old amount plus added */ event AddedDebt(bytes32 indexed _id, uint256 _amount); /** @dev This emits when the call addPaid function. If the registry is fully paid on the call and the amount parameter exceeds the required payment amount, the event emits the real amount paid on the payment. @param _paid Real amount paid */ event AddedPaid(bytes32 indexed _id, uint256 _paid); // Model interface selector bytes4 internal constant MODEL_INTERFACE = 0xaf498c35; uint256 public constant STATUS_ONGOING = 1; uint256 public constant STATUS_PAID = 2; uint256 public constant STATUS_ERROR = 4; // /// // Meta // /// /** @return Identifier of the model */ function modelId() external view returns (bytes32); /** Returns the address of the contract used as Descriptor of the model @dev The descriptor contract should follow the ModelDescriptor.sol scheme @return Address of the descriptor */ function descriptor() external view returns (address); /** If called for any address with the ability to modify the state of the model registries, this method should return True. @dev Some contracts may check if the DebtEngine is an operator to know if the model is operative or not. @param operator Address of the target request operator @return True if operator is able to modify the state of the model */ function isOperator(address operator) external view returns (bool canOperate); /** Validates the data for the creation of a new registry, if returns True the same data should be compatible with the create method. @dev This method can revert the call or return false, and both meant an invalid data. @param data Data to validate @return True if the data can be used to create a new registry */ function validate(bytes calldata data) external view returns (bool isValid); // /// // Getters // /// /** Exposes the current status of the registry. The possible values are: 1: Ongoing - The debt is still ongoing and waiting to be paid 2: Paid - The debt is already paid and 4: Error - There was an Error with the registry @dev This method should always be called by the DebtEngine @param id Id of the registry @return The current status value */ function getStatus(bytes32 id) external view returns (uint256 status); /** Returns the total paid amount on the registry. @dev it should equal to the sum of all real addPaid @param id Id of the registry @return Total paid amount */ function getPaid(bytes32 id) external view returns (uint256 paid); /** If the returned amount does not depend on any interactions and only on the model logic, the defined flag will be True; if the amount is an estimation of the future debt, the flag will be set to False. If timestamp equals the current moment, the defined flag should always be True. @dev This can be a gas-intensive method to call, consider calling the run method before. @param id Id of the registry @param timestamp Timestamp of the obligation query @return amount Amount pending to pay on the given timestamp @return defined True If the amount returned is fixed and can't change */ function getObligation(bytes32 id, uint64 timestamp) external view returns (uint256 amount, bool defined); /** The amount required to fully paid a registry. All registries should be payable in a single time, even when it has multiple installments. If the registry discounts interest for early payment, those discounts should be taken into account in the returned amount. @dev This can be a gas-intensive method to call, consider calling the run method before. @param id Id of the registry @return amount Amount required to fully paid the loan on the current timestamp */ function getClosingObligation(bytes32 id) external view returns (uint256 amount); /** The timestamp of the next required payment. After this moment, if the payment goal is not met the debt will be considered overdue. The getObligation method can be used to know the required payment on the future timestamp. @param id Id of the registry @return timestamp The timestamp of the next due time */ function getDueTime(bytes32 id) external view returns (uint256 timestamp); // /// // Metadata // /// /** If the loan has multiple installments returns the duration of each installment in seconds, if the loan has not installments it should return 1. @param id Id of the registry @return frequency Frequency of each installment */ function getFrequency(bytes32 id) external view returns (uint256 frequency); /** If the loan has multiple installments returns the total of installments, if the loan has not installments it should return 1. @param id Id of the registry @return installments Total of installments */ function getInstallments(bytes32 id) external view returns (uint256 installments); /** The registry could be paid before or after the date, but the debt will always be considered overdue if paid after this timestamp. This is the estimated final payment date of the debt if it's always paid on each exact dueTime. @param id Id of the registry @return timestamp Timestamp of the final due time */ function getFinalTime(bytes32 id) external view returns (uint256 timestamp); /** Similar to getFinalTime returns the expected payment remaining if paid always on the exact dueTime. If the model has no interest discounts for early payments, this method should return the same value as getClosingObligation. @param id Id of the registry @return amount Expected payment amount */ function getEstimateObligation(bytes32 id) external view returns (uint256 amount); // /// // State interface // /// /** Creates a new registry using the provided data and id, it should fail if the id already exists or if calling validate(data) returns false or throws. @dev This method should only be callable by an operator @param id Id of the registry to create @param data Data to construct the new registry @return success True if the registry was created */ function create(bytes32 id, bytes calldata data) external returns (bool success); /** If the registry is fully paid on the call and the amount parameter exceeds the required payment amount, the method returns the real amount used on the payment. The payment taken should always be the same as the requested unless the registry is fully paid on the process. @dev This method should only be callable by an operator @param id If of the registry @param amount Amount to pay @return real Real amount paid */ function addPaid(bytes32 id, uint256 amount) external returns (uint256 real); /** Adds a new amount to be paid on the debt model, each model can handle the addition of more debt freely. @dev This method should only be callable by an operator @param id Id of the registry @param amount Debt amount to add to the registry @return added True if the debt was added */ function addDebt(bytes32 id, uint256 amount) external returns (bool added); // /// // Utils // /// /** Runs the internal clock of a registry, this is used to compute the last changes on the state. It can make transactions cheaper by avoiding multiple calculations when calling views. Not all models have internal clocks, a model without an internal clock should always return false. Calls to this method should be possible from any address, multiple calls to run shouldn't affect the internal calculations of the model. @dev If the call had no effect the method would return False, that is no sign of things going wrong, and the call shouldn't be wrapped on a require @param id If of the registry @return effect True if the run performed a change on the state */ function run(bytes32 id) external returns (bool effect); } // File: contracts/core/diaspore/interfaces/RateOracle.sol pragma solidity ^0.5.11; /** @dev Defines the interface of a standard Diaspore RCN Oracle, The contract should also implement it's ERC165 interface: 0xa265d8e0 @notice Each oracle can only support one currency @author Agustin Aguilar */ contract RateOracle is IERC165 { uint256 public constant VERSION = 5; bytes4 internal constant RATE_ORACLE_INTERFACE = 0xa265d8e0; constructor() internal {} /** 3 or 4 letters symbol of the currency, Ej: ETH */ function symbol() external view returns (string memory); /** Descriptive name of the currency, Ej: Ethereum */ function name() external view returns (string memory); /** The number of decimals of the currency represented by this Oracle, it should be the most common number of decimal places */ function decimals() external view returns (uint256); /** The base token on which the sample is returned should be the RCN Token address. */ function token() external view returns (address); /** The currency symbol encoded on a UTF-8 Hex */ function currency() external view returns (bytes32); /** The name of the Individual or Company in charge of this Oracle */ function maintainer() external view returns (string memory); /** Returns the url where the oracle exposes a valid "oracleData" if needed */ function url() external view returns (string memory); /** Returns a sample on how many token() are equals to how many currency() */ function readSample(bytes calldata _data) external returns (uint256 _tokens, uint256 _equivalent); } // File: contracts/utils/IsContract.sol pragma solidity ^0.5.11; library IsContract { function isContract(address _addr) internal view returns (bool) { uint size; assembly { size := extcodesize(_addr) } return size > 0; } } // File: contracts/utils/SafeMath.sol pragma solidity ^0.5.11; library SafeMath { function add(uint256 x, uint256 y) internal pure returns (uint256) { uint256 z = x + y; require(z >= x, "Add overflow"); return z; } function sub(uint256 x, uint256 y) internal pure returns (uint256) { require(x >= y, "Sub overflow"); return x - y; } function mult(uint256 x, uint256 y) internal pure returns (uint256) { if (x == 0) { return 0; } uint256 z = x * y; require(z/x == y, "Mult overflow"); return z; } } // File: contracts/commons/ERC165.sol pragma solidity ^0.5.11; /** * @title ERC165 * @author Matt Condon (@shrugs) * @dev Implements ERC165 using a lookup table. */ contract ERC165 is IERC165 { bytes4 private constant _InterfaceId_ERC165 = 0x01ffc9a7; /** * 0x01ffc9a7 === * bytes4(keccak256('supportsInterface(bytes4)')) */ /** * @dev a mapping of interface id to whether or not it's supported */ mapping(bytes4 => bool) private _supportedInterfaces; /** * @dev A contract implementing SupportsInterfaceWithLookup * implement ERC165 itself */ constructor() internal { _registerInterface(_InterfaceId_ERC165); } /** * @dev implement supportsInterface(bytes4) using a lookup table */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev internal method for registering an interface */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "Can't register 0xffffffff"); _supportedInterfaces[interfaceId] = true; } } // File: contracts/commons/ERC721Base.sol pragma solidity ^0.5.11; interface URIProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); } contract ERC721Base is ERC165 { using SafeMath for uint256; using IsContract for address; mapping(uint256 => address) private _holderOf; // Owner to array of assetId mapping(address => uint256[]) private _assetsOf; // AssetId to index on array in _assetsOf mapping mapping(uint256 => uint256) private _indexOfAsset; mapping(address => mapping(address => bool)) private _operators; mapping(uint256 => address) private _approval; bytes4 private constant ERC721_RECEIVED = 0x150b7a02; bytes4 private constant ERC721_RECEIVED_LEGACY = 0xf0b9e5ba; event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId); event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId); event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved); bytes4 private constant ERC_721_INTERFACE = 0x80ac58cd; bytes4 private constant ERC_721_METADATA_INTERFACE = 0x5b5e139f; bytes4 private constant ERC_721_ENUMERATION_INTERFACE = 0x780e9d63; constructor( string memory name, string memory symbol ) public { _name = name; _symbol = symbol; _registerInterface(ERC_721_INTERFACE); _registerInterface(ERC_721_METADATA_INTERFACE); _registerInterface(ERC_721_ENUMERATION_INTERFACE); } // /// // ERC721 Metadata // /// /// ERC-721 Non-Fungible Token Standard, optional metadata extension /// See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md /// Note: the ERC-165 identifier for this interface is 0x5b5e139f. event SetURIProvider(address _uriProvider); string private _name; string private _symbol; URIProvider private _uriProvider; // @notice A descriptive name for a collection of NFTs in this contract function name() external view returns (string memory) { return _name; } // @notice An abbreviated name for NFTs in this contract function symbol() external view returns (string memory) { return _symbol; } /** * @notice A distinct Uniform Resource Identifier (URI) for a given asset. * @dev Throws if `_tokenId` is not a valid NFT. URIs are defined in RFC * 3986. The URI may point to a JSON file that conforms to the "ERC721 * Metadata JSON Schema". */ function tokenURI(uint256 _tokenId) external view returns (string memory) { require(_holderOf[_tokenId] != address(0), "Asset does not exist"); URIProvider provider = _uriProvider; return address(provider) == address(0) ? "" : provider.tokenURI(_tokenId); } function _setURIProvider(URIProvider _provider) internal returns (bool) { emit SetURIProvider(address(_provider)); _uriProvider = _provider; return true; } // /// // ERC721 Enumeration // /// /// ERC-721 Non-Fungible Token Standard, optional enumeration extension /// See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md /// Note: the ERC-165 identifier for this interface is 0x780e9d63. uint256[] private _allTokens; /** * @dev Gets the total of assets stored by the contract * Warning: this method can consume all the gas of the transaction, it should not be * called from another contract, it should only be used in external calls * @return an array with total assets */ function allTokens() external view returns (uint256[] memory) { return _allTokens; } /** * @dev Gets the total of assets of the owner * Warning: this method can consume all the gas of the transaction, it should not be * called from another contract, it should only be used in external calls * @param _owner the address of owner * @return an array with total assets of owner */ function assetsOf(address _owner) external view returns (uint256[] memory) { return _assetsOf[_owner]; } /** * @dev Gets the total amount of assets stored by the contract * @return uint256 representing the total amount of assets */ function totalSupply() external view returns (uint256) { return _allTokens.length; } /** * @notice Enumerate valid NFTs * @dev Throws if `_index` >= `totalSupply()`. * @param _index A counter less than `totalSupply()` * @return The token identifier for the `_index` of the NFT, * (sort order not specified) */ function tokenByIndex(uint256 _index) external view returns (uint256) { require(_index < _allTokens.length, "Index out of bounds"); return _allTokens[_index]; } /** * @notice Enumerate NFTs assigned to an owner * @dev Throws if `_index` >= `balanceOf(_owner)` or if * `_owner` is the zero address, representing invalid NFTs. * @param _owner An address where we are interested in NFTs owned by them * @param _index A counter less than `balanceOf(_owner)` * @return The token identifier for the `_index` of the NFT assigned to `_owner`, * (sort order not specified) */ function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256) { require(_owner != address(0), "0x0 Is not a valid owner"); require(_index < _balanceOf(_owner), "Index out of bounds"); return _assetsOf[_owner][_index]; } // // Asset-centric getter functions // /** * @dev Queries what address owns an asset. This method does not throw. * In order to check if the asset exists, use the `exists` function or check if the * return value of this call is `0`. * @return uint256 the assetId */ function ownerOf(uint256 _assetId) external view returns (address) { return _ownerOf(_assetId); } function _ownerOf(uint256 _assetId) internal view returns (address) { return _holderOf[_assetId]; } // // Holder-centric getter functions // /** * @dev Gets the balance of the specified address * @param _owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address _owner) external view returns (uint256) { return _balanceOf(_owner); } function _balanceOf(address _owner) internal view returns (uint256) { return _assetsOf[_owner].length; } // // Authorization getters // /** * @dev Query whether an address has been authorized to move any assets on behalf of someone else * @param _operator the address that might be authorized * @param _assetHolder the address that provided the authorization * @return bool true if the operator has been authorized to move any assets */ function isApprovedForAll( address _operator, address _assetHolder ) external view returns (bool) { return _isApprovedForAll(_operator, _assetHolder); } function _isApprovedForAll( address _operator, address _assetHolder ) internal view returns (bool) { return _operators[_assetHolder][_operator]; } /** * @dev Query what address has been particularly authorized to move an asset * @param _assetId the asset to be queried for * @return bool true if the asset has been approved by the holder */ function getApproved(uint256 _assetId) external view returns (address) { return _getApproved(_assetId); } function _getApproved(uint256 _assetId) internal view returns (address) { return _approval[_assetId]; } /** * @dev Query if an operator can move an asset. * @param _operator the address that might be authorized * @param _assetId the asset that has been `approved` for transfer * @return bool true if the asset has been approved by the holder */ function isAuthorized(address _operator, uint256 _assetId) external view returns (bool) { return _isAuthorized(_operator, _assetId); } function _isAuthorized(address _operator, uint256 _assetId) internal view returns (bool) { require(_operator != address(0), "0x0 is an invalid operator"); address owner = _ownerOf(_assetId); return _operator == owner || _isApprovedForAll(_operator, owner) || _getApproved(_assetId) == _operator; } // // Authorization // /** * @dev Authorize a third party operator to manage (send) msg.sender's asset * @param _operator address to be approved * @param _authorized bool set to true to authorize, false to withdraw authorization */ function setApprovalForAll(address _operator, bool _authorized) external { if (_operators[msg.sender][_operator] != _authorized) { _operators[msg.sender][_operator] = _authorized; emit ApprovalForAll(msg.sender, _operator, _authorized); } } /** * @dev Authorize a third party operator to manage one particular asset * @param _operator address to be approved * @param _assetId asset to approve */ function approve(address _operator, uint256 _assetId) external { address holder = _ownerOf(_assetId); require(msg.sender == holder || _isApprovedForAll(msg.sender, holder), "msg.sender can't approve"); if (_getApproved(_assetId) != _operator) { _approval[_assetId] = _operator; emit Approval(holder, _operator, _assetId); } } // // Internal Operations // function _addAssetTo(address _to, uint256 _assetId) private { // Store asset owner _holderOf[_assetId] = _to; // Store index of the asset uint256 length = _balanceOf(_to); _assetsOf[_to].push(_assetId); _indexOfAsset[_assetId] = length; // Save main enumerable _allTokens.push(_assetId); } function _transferAsset(address _from, address _to, uint256 _assetId) private { uint256 assetIndex = _indexOfAsset[_assetId]; uint256 lastAssetIndex = _balanceOf(_from).sub(1); if (assetIndex != lastAssetIndex) { // Replace current asset with last asset uint256 lastAssetId = _assetsOf[_from][lastAssetIndex]; // Insert the last asset into the position previously occupied by the asset to be removed _assetsOf[_from][assetIndex] = lastAssetId; _indexOfAsset[lastAssetId] = assetIndex; } // Resize the array _assetsOf[_from][lastAssetIndex] = 0; _assetsOf[_from].length--; // Change owner _holderOf[_assetId] = _to; // Update the index of positions of the asset uint256 length = _balanceOf(_to); _assetsOf[_to].push(_assetId); _indexOfAsset[_assetId] = length; } function _clearApproval(address _holder, uint256 _assetId) private { if (_approval[_assetId] != address(0)) { _approval[_assetId] = address(0); emit Approval(_holder, address(0), _assetId); } } // // Supply-altering functions // function _generate(uint256 _assetId, address _beneficiary) internal { require(_holderOf[_assetId] == address(0), "Asset already exists"); _addAssetTo(_beneficiary, _assetId); emit Transfer(address(0), _beneficiary, _assetId); } // // Transaction related operations // modifier onlyAuthorized(uint256 _assetId) { require(_isAuthorized(msg.sender, _assetId), "msg.sender Not authorized"); _; } modifier isCurrentOwner(address _from, uint256 _assetId) { require(_ownerOf(_assetId) == _from, "Not current owner"); _; } modifier addressDefined(address _target) { require(_target != address(0), "Target can't be 0x0"); _; } /** * @dev Alias of `safeTransferFrom(from, to, assetId, '')` * * @param _from address that currently owns an asset * @param _to address to receive the ownership of the asset * @param _assetId uint256 ID of the asset to be transferred */ function safeTransferFrom(address _from, address _to, uint256 _assetId) external { return _doTransferFrom( _from, _to, _assetId, "", true ); } /** * @dev Securely transfers the ownership of a given asset from one address to * another address, calling the method `onNFTReceived` on the target address if * there's code associated with it * * @param _from address that currently owns an asset * @param _to address to receive the ownership of the asset * @param _assetId uint256 ID of the asset to be transferred * @param _userData bytes arbitrary user information to attach to this transfer */ function safeTransferFrom( address _from, address _to, uint256 _assetId, bytes calldata _userData ) external { return _doTransferFrom( _from, _to, _assetId, _userData, true ); } /** * @dev Transfers the ownership of a given asset from one address to another address * Warning! This function does not attempt to verify that the target address can send * tokens. * * @param _from address sending the asset * @param _to address to receive the ownership of the asset * @param _assetId uint256 ID of the asset to be transferred */ function transferFrom(address _from, address _to, uint256 _assetId) external { return _doTransferFrom( _from, _to, _assetId, "", false ); } /** * Internal function that moves an asset from one holder to another */ function _doTransferFrom( address _from, address _to, uint256 _assetId, bytes memory _userData, bool _doCheck ) internal onlyAuthorized(_assetId) addressDefined(_to) isCurrentOwner(_from, _assetId) { address holder = _holderOf[_assetId]; _clearApproval(holder, _assetId); _transferAsset(holder, _to, _assetId); if (_doCheck && _to.isContract()) { // Call dest contract // Perform check with the new safe call // onERC721Received(address,address,uint256,bytes) (bool success, bytes4 result) = _noThrowCall( _to, abi.encodeWithSelector( ERC721_RECEIVED, msg.sender, holder, _assetId, _userData ) ); if (!success || result != ERC721_RECEIVED) { // Try legacy safe call // onERC721Received(address,uint256,bytes) (success, result) = _noThrowCall( _to, abi.encodeWithSelector( ERC721_RECEIVED_LEGACY, holder, _assetId, _userData ) ); require( success && result == ERC721_RECEIVED_LEGACY, "Contract rejected the token" ); } } emit Transfer(holder, _to, _assetId); } // // Utilities // /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), * relaxing the requirement on the return value * @param _contract The contract that receives the ERC721 * @param _data The call data * @return True if the call not reverts and the result of the call */ function _noThrowCall( address _contract, bytes memory _data ) internal returns (bool success, bytes4 result) { bytes memory returnData; (success, returnData) = _contract.call(_data); if (returnData.length > 0) result = abi.decode(returnData, (bytes4)); } } // File: contracts/interfaces/IERC173.sol pragma solidity ^0.5.11; /// @title ERC-173 Contract Ownership Standard /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-173.md /// Note: the ERC-165 identifier for this interface is 0x7f5828d0 contract IERC173 { /// @dev This emits when ownership of a contract changes. event OwnershipTransferred(address indexed _previousOwner, address indexed _newOwner); /// @notice Get the address of the owner /// @return The address of the owner. //// function owner() external view returns (address); /// @notice Set the address of the new owner of the contract /// @param _newOwner The address of the new owner of the contract function transferOwnership(address _newOwner) external; } // File: contracts/commons/Ownable.sol pragma solidity ^0.5.11; contract Ownable is IERC173 { address internal _owner; modifier onlyOwner() { require(msg.sender == _owner, "The owner should be the sender"); _; } constructor() public { _owner = msg.sender; emit OwnershipTransferred(address(0x0), msg.sender); } function owner() external view returns (address) { return _owner; } /** @dev Transfers the ownership of the contract. @param _newOwner Address of the new owner */ function transferOwnership(address _newOwner) external onlyOwner { require(_newOwner != address(0), "0x0 Is not a valid owner"); emit OwnershipTransferred(_owner, _newOwner); _owner = _newOwner; } } // File: contracts/core/diaspore/DebtEngine.sol pragma solidity ^0.5.11; contract DebtEngine is ERC721Base, Ownable { using IsContract for address; event Created( bytes32 indexed _id, uint256 _nonce, bytes _data ); event Created2( bytes32 indexed _id, uint256 _salt, bytes _data ); event Created3( bytes32 indexed _id, uint256 _salt, bytes _data ); event Paid( bytes32 indexed _id, address _sender, address _origin, uint256 _requested, uint256 _requestedTokens, uint256 _paid, uint256 _tokens ); event ReadedOracleBatch( address _oracle, uint256 _count, uint256 _tokens, uint256 _equivalent ); event ReadedOracle( bytes32 indexed _id, uint256 _tokens, uint256 _equivalent ); event PayBatchError( bytes32 indexed _id, address _targetOracle ); event Withdrawn( bytes32 indexed _id, address _sender, address _to, uint256 _amount ); event Error( bytes32 indexed _id, address _sender, uint256 _value, uint256 _gasLeft, uint256 _gasLimit, bytes _callData ); event ErrorRecover( bytes32 indexed _id, address _sender, uint256 _value, uint256 _gasLeft, uint256 _gasLimit, bytes32 _result, bytes _callData ); IERC20 public token; mapping(bytes32 => Debt) public debts; mapping(address => uint256) public nonces; struct Debt { bool error; uint128 balance; Model model; address creator; address oracle; } constructor ( IERC20 _token ) public ERC721Base("RCN Debt Record", "RDR") { token = _token; // Sanity checks require(address(_token).isContract(), "Token should be a contract"); } function setURIProvider(URIProvider _provider) external onlyOwner { _setURIProvider(_provider); } function create( Model _model, address _owner, address _oracle, bytes calldata _data ) external returns (bytes32 id) { uint256 nonce = nonces[msg.sender]++; id = keccak256( abi.encodePacked( uint8(1), address(this), msg.sender, nonce ) ); debts[id] = Debt({ error: false, balance: 0, creator: msg.sender, model: _model, oracle: _oracle }); _generate(uint256(id), _owner); require(_model.create(id, _data), "Error creating debt in model"); emit Created({ _id: id, _nonce: nonce, _data: _data }); } function create2( Model _model, address _owner, address _oracle, uint256 _salt, bytes calldata _data ) external returns (bytes32 id) { id = keccak256( abi.encodePacked( uint8(2), address(this), msg.sender, _model, _oracle, _salt, _data ) ); debts[id] = Debt({ error: false, balance: 0, creator: msg.sender, model: _model, oracle: _oracle }); _generate(uint256(id), _owner); require(_model.create(id, _data), "Error creating debt in model"); emit Created2({ _id: id, _salt: _salt, _data: _data }); } function create3( Model _model, address _owner, address _oracle, uint256 _salt, bytes calldata _data ) external returns (bytes32 id) { id = keccak256( abi.encodePacked( uint8(3), address(this), msg.sender, _salt ) ); debts[id] = Debt({ error: false, balance: 0, creator: msg.sender, model: _model, oracle: _oracle }); _generate(uint256(id), _owner); require(_model.create(id, _data), "Error creating debt in model"); emit Created3({ _id: id, _salt: _salt, _data: _data }); } function buildId( address _creator, uint256 _nonce ) external view returns (bytes32) { return keccak256( abi.encodePacked( uint8(1), address(this), _creator, _nonce ) ); } function buildId2( address _creator, address _model, address _oracle, uint256 _salt, bytes calldata _data ) external view returns (bytes32) { return keccak256( abi.encodePacked( uint8(2), address(this), _creator, _model, _oracle, _salt, _data ) ); } function buildId3( address _creator, uint256 _salt ) external view returns (bytes32) { return keccak256( abi.encodePacked( uint8(3), address(this), _creator, _salt ) ); } function pay( bytes32 _id, uint256 _amount, address _origin, bytes calldata _oracleData ) external returns (uint256 paid, uint256 paidToken) { Debt storage debt = debts[_id]; // Paid only required amount paid = _safePay(_id, debt.model, _amount); require(paid <= _amount, "Paid can't be more than requested"); RateOracle oracle = RateOracle(debt.oracle); if (address(oracle) != address(0)) { // Convert (uint256 tokens, uint256 equivalent) = oracle.readSample(_oracleData); emit ReadedOracle(_id, tokens, equivalent); paidToken = _toToken(paid, tokens, equivalent); } else { paidToken = paid; } // Pull tokens from payer require(token.transferFrom(msg.sender, address(this), paidToken), "Error pulling payment tokens"); // Add balance to the debt uint256 newBalance = paidToken.add(debt.balance); require(newBalance < 340282366920938463463374607431768211456, "uint128 Overflow"); debt.balance = uint128(newBalance); // Emit pay event emit Paid({ _id: _id, _sender: msg.sender, _origin: _origin, _requested: _amount, _requestedTokens: 0, _paid: paid, _tokens: paidToken }); } function payToken( bytes32 id, uint256 amount, address origin, bytes calldata oracleData ) external returns (uint256 paid, uint256 paidToken) { Debt storage debt = debts[id]; // Read storage RateOracle oracle = RateOracle(debt.oracle); uint256 equivalent; uint256 tokens; uint256 available; // Get available <currency> amount if (address(oracle) != address(0)) { (tokens, equivalent) = oracle.readSample(oracleData); emit ReadedOracle(id, tokens, equivalent); available = _fromToken(amount, tokens, equivalent); } else { available = amount; } // Call addPaid on model paid = _safePay(id, debt.model, available); require(paid <= available, "Paid can't exceed available"); // Convert back to required pull amount if (address(oracle) != address(0)) { paidToken = _toToken(paid, tokens, equivalent); require(paidToken <= amount, "Paid can't exceed requested"); } else { paidToken = paid; } // Pull tokens from payer require(token.transferFrom(msg.sender, address(this), paidToken), "Error pulling tokens"); // Add balance to the debt // WARNING: Reusing variable **available** available = paidToken.add(debt.balance); require(available < 340282366920938463463374607431768211456, "uint128 Overflow"); debt.balance = uint128(available); // Emit pay event emit Paid({ _id: id, _sender: msg.sender, _origin: origin, _requested: 0, _requestedTokens: amount, _paid: paid, _tokens: paidToken }); } function payBatch( bytes32[] calldata _ids, uint256[] calldata _amounts, address _origin, address _oracle, bytes calldata _oracleData ) external returns (uint256[] memory paid, uint256[] memory paidTokens) { uint256 count = _ids.length; require(count == _amounts.length, "_ids and _amounts should have the same length"); uint256 tokens; uint256 equivalent; if (_oracle != address(0)) { (tokens, equivalent) = RateOracle(_oracle).readSample(_oracleData); emit ReadedOracleBatch(_oracle, count, tokens, equivalent); } paid = new uint256[](count); paidTokens = new uint256[](count); for (uint256 i = 0; i < count; i++) { uint256 amount = _amounts[i]; (paid[i], paidTokens[i]) = _pay(_ids[i], _oracle, amount, tokens, equivalent); emit Paid({ _id: _ids[i], _sender: msg.sender, _origin: _origin, _requested: amount, _requestedTokens: 0, _paid: paid[i], _tokens: paidTokens[i] }); } } function payTokenBatch( bytes32[] calldata _ids, uint256[] calldata _tokenAmounts, address _origin, address _oracle, bytes calldata _oracleData ) external returns (uint256[] memory paid, uint256[] memory paidTokens) { uint256 count = _ids.length; require(count == _tokenAmounts.length, "_ids and _amounts should have the same length"); uint256 tokens; uint256 equivalent; if (_oracle != address(0)) { (tokens, equivalent) = RateOracle(_oracle).readSample(_oracleData); emit ReadedOracleBatch(_oracle, count, tokens, equivalent); } paid = new uint256[](count); paidTokens = new uint256[](count); for (uint256 i = 0; i < count; i++) { uint256 tokenAmount = _tokenAmounts[i]; (paid[i], paidTokens[i]) = _pay( _ids[i], _oracle, _oracle != address(0) ? _fromToken(tokenAmount, tokens, equivalent) : tokenAmount, tokens, equivalent ); require(paidTokens[i] <= tokenAmount, "Paid can't exceed requested"); emit Paid({ _id: _ids[i], _sender: msg.sender, _origin: _origin, _requested: 0, _requestedTokens: tokenAmount, _paid: paid[i], _tokens: paidTokens[i] }); } } /** Internal method to pay a loan, during a payment batch context @param _id Pay identifier @param _oracle Address of the Oracle contract, if the loan does not use any oracle, this field should be 0x0. @param _amount Amount to pay, in currency @param _tokens How many tokens @param _equivalent How much currency _tokens equivales @return paid and paidTokens, similar to external pay */ function _pay( bytes32 _id, address _oracle, uint256 _amount, uint256 _tokens, uint256 _equivalent ) internal returns (uint256 paid, uint256 paidToken){ Debt storage debt = debts[_id]; if (_oracle != debt.oracle) { emit PayBatchError( _id, _oracle ); return (0,0); } // Paid only required amount paid = _safePay(_id, debt.model, _amount); require(paid <= _amount, "Paid can't be more than requested"); // Get token amount to use as payment paidToken = _oracle != address(0) ? _toToken(paid, _tokens, _equivalent) : paid; // Pull tokens from payer require(token.transferFrom(msg.sender, address(this), paidToken), "Error pulling payment tokens"); // Add balance to debt uint256 newBalance = paidToken.add(debt.balance); require(newBalance < 340282366920938463463374607431768211456, "uint128 Overflow"); debt.balance = uint128(newBalance); } function _safePay( bytes32 _id, Model _model, uint256 _available ) internal returns (uint256) { require(_model != Model(0), "Debt does not exist"); (bool success, bytes32 paid) = _safeGasCall( address(_model), abi.encodeWithSelector( _model.addPaid.selector, _id, _available ) ); if (success) { if (debts[_id].error) { emit ErrorRecover({ _id: _id, _sender: msg.sender, _value: 0, _gasLeft: gasleft(), _gasLimit: block.gaslimit, _result: paid, _callData: msg.data }); delete debts[_id].error; } return uint256(paid); } else { emit Error({ _id: _id, _sender: msg.sender, _value: msg.value, _gasLeft: gasleft(), _gasLimit: block.gaslimit, _callData: msg.data }); debts[_id].error = true; } } /** Converts an amount in the rate currency to an amount in token @param _amount Amount to convert in rate currency @param _tokens How many tokens @param _equivalent How much currency _tokens equivales @return Amount in tokens */ function _toToken( uint256 _amount, uint256 _tokens, uint256 _equivalent ) internal pure returns (uint256 _result) { require(_tokens != 0 && _equivalent != 0, "Oracle provided invalid rate"); uint256 aux = _tokens.mult(_amount); _result = aux / _equivalent; if (aux % _equivalent > 0) { _result = _result.add(1); } } /** Converts an amount in token to the rate currency @param _amount Amount to convert in token @param _tokens How many tokens @param _equivalent How much currency _tokens equivales @return Amount in rate currency */ function _fromToken( uint256 _amount, uint256 _tokens, uint256 _equivalent ) internal pure returns (uint256) { require(_tokens != 0 && _equivalent != 0, "Oracle provided invalid rate"); return _amount.mult(_equivalent) / _tokens; } function run(bytes32 _id) external returns (bool) { Debt storage debt = debts[_id]; require(debt.model != Model(0), "Debt does not exist"); (bool success, bytes32 result) = _safeGasCall( address(debt.model), abi.encodeWithSelector( debt.model.run.selector, _id ) ); if (success) { if (debt.error) { emit ErrorRecover({ _id: _id, _sender: msg.sender, _value: 0, _gasLeft: gasleft(), _gasLimit: block.gaslimit, _result: result, _callData: msg.data }); delete debt.error; } return result == bytes32(uint256(1)); } else { emit Error({ _id: _id, _sender: msg.sender, _value: 0, _gasLeft: gasleft(), _gasLimit: block.gaslimit, _callData: msg.data }); debt.error = true; } } function withdraw(bytes32 _id, address _to) external returns (uint256 amount) { require(_to != address(0x0), "_to should not be 0x0"); require(_isAuthorized(msg.sender, uint256(_id)), "Sender not authorized"); Debt storage debt = debts[_id]; amount = debt.balance; debt.balance = 0; require(token.transfer(_to, amount), "Error sending tokens"); emit Withdrawn({ _id: _id, _sender: msg.sender, _to: _to, _amount: amount }); } function withdrawPartial(bytes32 _id, address _to, uint256 _amount) external returns (bool success) { require(_to != address(0x0), "_to should not be 0x0"); require(_isAuthorized(msg.sender, uint256(_id)), "Sender not authorized"); Debt storage debt = debts[_id]; require(debt.balance >= _amount, "Debt balance is not enought"); debt.balance = uint128(uint256(debt.balance).sub(_amount)); require(token.transfer(_to, _amount), "Error sending tokens"); emit Withdrawn({ _id: _id, _sender: msg.sender, _to: _to, _amount: _amount }); success = true; } function withdrawBatch(bytes32[] calldata _ids, address _to) external returns (uint256 total) { require(_to != address(0x0), "_to should not be 0x0"); bytes32 target; uint256 balance; for (uint256 i = 0; i < _ids.length; i++) { target = _ids[i]; if (_isAuthorized(msg.sender, uint256(target))) { balance = debts[target].balance; debts[target].balance = 0; total += balance; emit Withdrawn({ _id: target, _sender: msg.sender, _to: _to, _amount: balance }); } } require(token.transfer(_to, total), "Error sending tokens"); } function getStatus(bytes32 _id) external view returns (uint256) { Debt storage debt = debts[_id]; if (debt.error) { return 4; } else { (bool success, uint256 result) = _safeGasStaticCall( address(debt.model), abi.encodeWithSelector( debt.model.getStatus.selector, _id ) ); return success ? result : 4; } } function _safeGasStaticCall( address _contract, bytes memory _data ) internal view returns (bool success, uint256 result) { bytes memory returnData; uint256 _gas = (block.gaslimit * 80) / 100; (success, returnData) = _contract.staticcall.gas(gasleft() < _gas ? gasleft() : _gas)(_data); if (returnData.length > 0) result = abi.decode(returnData, (uint256)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), * relaxing the requirement on the return value * @param _contract The contract that receives the call * @param _data The call data * @return True if the call not reverts and the result of the call */ function _safeGasCall( address _contract, bytes memory _data ) internal returns (bool success, bytes32 result) { bytes memory returnData; uint256 _gas = (block.gaslimit * 80) / 100; (success, returnData) = _contract.call.gas(gasleft() < _gas ? gasleft() : _gas)(_data); if (returnData.length > 0) result = abi.decode(returnData, (bytes32)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"_id","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_origin","type":"address"},{"internalType":"bytes","name":"_oracleData","type":"bytes"}],"name":"pay","outputs":[{"internalType":"uint256","name":"paid","type":"uint256"},{"internalType":"uint256","name":"paidToken","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"_id","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"assetsOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract Model","name":"_model","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"uint256","name":"_salt","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create2","outputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"buildId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32[]","name":"_ids","type":"bytes32[]"},{"internalType":"uint256[]","name":"_tokenAmounts","type":"uint256[]"},{"internalType":"address","name":"_origin","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"bytes","name":"_oracleData","type":"bytes"}],"name":"payTokenBatch","outputs":[{"internalType":"uint256[]","name":"paid","type":"uint256[]"},{"internalType":"uint256[]","name":"paidTokens","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"_id","type":"bytes32"}],"name":"getStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_assetId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract Model","name":"_model","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"allTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"origin","type":"address"},{"internalType":"bytes","name":"oracleData","type":"bytes"}],"name":"payToken","outputs":[{"internalType":"uint256","name":"paid","type":"uint256"},{"internalType":"uint256","name":"paidToken","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_authorized","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"debts","outputs":[{"internalType":"bool","name":"error","type":"bool"},{"internalType":"uint128","name":"balance","type":"uint128"},{"internalType":"contract Model","name":"model","type":"address"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"address","name":"oracle","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract Model","name":"_model","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"uint256","name":"_salt","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create3","outputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_assetId","type":"uint256"},{"internalType":"bytes","name":"_userData","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"uint256","name":"_salt","type":"uint256"}],"name":"buildId3","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32[]","name":"_ids","type":"bytes32[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"address","name":"_origin","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"bytes","name":"_oracleData","type":"bytes"}],"name":"payBatch","outputs":[{"internalType":"uint256[]","name":"paid","type":"uint256[]"},{"internalType":"uint256[]","name":"paidTokens","type":"uint256[]"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract URIProvider","name":"_provider","type":"address"}],"name":"setURIProvider","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_assetHolder","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"_id","type":"bytes32"}],"name":"run","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"_id","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawPartial","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32[]","name":"_ids","type":"bytes32[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawBatch","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"address","name":"_model","type":"address"},{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"uint256","name":"_salt","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"buildId2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_data","type":"bytes"}],"name":"Created","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_salt","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_data","type":"bytes"}],"name":"Created2","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_salt","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_data","type":"bytes"}],"name":"Created3","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"address","name":"_origin","type":"address"},{"indexed":false,"internalType":"uint256","name":"_requested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_requestedTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_paid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"Paid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_oracle","type":"address"},{"indexed":false,"internalType":"uint256","name":"_count","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_equivalent","type":"uint256"}],"name":"ReadedOracleBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_equivalent","type":"uint256"}],"name":"ReadedOracle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_targetOracle","type":"address"}],"name":"PayBatchError","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_gasLeft","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_gasLimit","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"_callData","type":"bytes"}],"name":"Error","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"_id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_gasLeft","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_gasLimit","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_result","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"_callData","type":"bytes"}],"name":"ErrorRecover","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_uriProvider","type":"address"}],"name":"SetURIProvider","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004ef938038062004ef9833981810160405260208110156200003757600080fd5b5051604080518082018252600f81527f52434e2044656274205265636f726400000000000000000000000000000000006020828101919091528251808401909352600383527f52445200000000000000000000000000000000000000000000000000000000009083015290620000d67f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200028816565b8151620000eb9060069060208501906200035d565b508051620001019060079060208401906200035d565b50620001367f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200028816565b6200016a7f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200028816565b6200019e7f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b036200028816565b5050600a80546001600160a01b031916339081179091556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600b80546001600160a01b0319166001600160a01b038316908117909155620002159062000357602090811b6200488c17901c565b6200028157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f546f6b656e2073686f756c64206265206120636f6e7472616374000000000000604482015290519081900360640190fd5b5062000402565b7fffffffff0000000000000000000000000000000000000000000000000000000080821614156200031a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f43616e2774207265676973746572203078666666666666666600000000000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003a057805160ff1916838001178555620003d0565b82800160010185558215620003d0579182015b82811115620003d0578251825591602001919060010190620003b3565b50620003de929150620003e2565b5090565b620003ff91905b80821115620003de5760008155600101620003e9565b90565b614ae780620004126000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c806370a082311161013b578063c87b56dd116100b8578063f12e5eaa1161007c578063f12e5eaa14610d76578063f163763014610da8578063f2fde38b14610e1f578063f57ae7b914610e45578063fc0c546a14610edb57610248565b8063c87b56dd14610bc1578063d2d791c014610bde578063db2c551814610d05578063e985e9c514610d2b578063ef6ac0f014610d5957610248565b8063a22cb465116100ff578063a22cb465146109e5578063a9caa41114610a13578063adc51d4214610a71578063b88d4fde14610b07578063bb1dfeca14610b9557610248565b806370a08231146108ff5780637c1716af146109255780637ecebe00146109af5780638da5cb5b146109d557806395d89b41146109dd57610248565b80632ed04265116101c95780634f6ccce71161018d5780634f6ccce7146108115780635de28ae01461082e5780636352211e1461084b578063649b2b95146108685780636ff97f1d146108f757610248565b80632ed042651461052d5780632f745c59146105c357806342842e0e146105ef57806347ff6d7b146106255780634d9c1bf31461065157610248565b806318160ddd1161021057806318160ddd1461040f5780631b258d501461042957806323b872dd146104555780632972b0f01461048b5780632c62fa10146104b757610248565b806301ffc9a71461024d57806306fdde0314610288578063081812fc14610305578063095ea7b31461033e578063114f95111461036c575b600080fd5b6102746004803603602081101561026357600080fd5b50356001600160e01b031916610ee3565b604080519115158252519081900360200190f35b610290610f06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103226004803603602081101561031b57600080fd5b5035610f9d565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603604081101561035457600080fd5b506001600160a01b038135169060200135610fae565b005b6103f66004803603608081101561038257600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156103b857600080fd5b8201836020820111156103ca57600080fd5b803590602001918460018302840111600160201b831117156103eb57600080fd5b5090925090506110a6565b6040805192835260208301919091528051918290030190f35b6104176113e4565b60408051918252519081900360200190f35b6104176004803603604081101561043f57600080fd5b50803590602001356001600160a01b03166113ea565b61036a6004803603606081101561046b57600080fd5b506001600160a01b038135811691602081013590911690604001356115dd565b610274600480360360408110156104a157600080fd5b506001600160a01b0381351690602001356115fa565b6104dd600480360360208110156104cd57600080fd5b50356001600160a01b031661160d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610519578181015183820152602001610501565b505050509050019250505060405180910390f35b610417600480360360a081101561054357600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561058557600080fd5b82018360208201111561059757600080fd5b803590602001918460018302840111600160201b831117156105b857600080fd5b509092509050611679565b610417600480360360408110156105d957600080fd5b506001600160a01b0381351690602001356119b4565b61036a6004803603606081101561060557600080fd5b506001600160a01b03813581169160208101359091169060400135611a95565b6104176004803603604081101561063b57600080fd5b506001600160a01b038135169060200135611ab2565b610778600480360360a081101561066757600080fd5b810190602081018135600160201b81111561068157600080fd5b82018360208201111561069357600080fd5b803590602001918460208302840111600160201b831117156106b457600080fd5b919390929091602081019035600160201b8111156106d157600080fd5b8201836020820111156106e357600080fd5b803590602001918460208302840111600160201b8311171561070457600080fd5b919390926001600160a01b0383358116936020810135909116929190606081019060400135600160201b81111561073a57600080fd5b82018360208201111561074c57600080fd5b803590602001918460018302840111600160201b8311171561076d57600080fd5b509092509050611b02565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156107bc5781810151838201526020016107a4565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156107fb5781810151838201526020016107e3565b5050505090500194505050505060405180910390f35b6104176004803603602081101561082757600080fd5b5035611e73565b6104176004803603602081101561084457600080fd5b5035611ee1565b6103226004803603602081101561086157600080fd5b5035611f74565b6104176004803603608081101561087e57600080fd5b6001600160a01b0382358116926020810135821692604082013590921691810190608081016060820135600160201b8111156108b957600080fd5b8201836020820111156108cb57600080fd5b803590602001918460018302840111600160201b831117156108ec57600080fd5b509092509050611f7f565b6104dd612204565b6104176004803603602081101561091557600080fd5b50356001600160a01b031661225b565b6103f66004803603608081101561093b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b81111561097157600080fd5b82018360208201111561098357600080fd5b803590602001918460018302840111600160201b831117156109a457600080fd5b509092509050612266565b610417600480360360208110156109c557600080fd5b50356001600160a01b0316612627565b610322612639565b610290612648565b61036a600480360360408110156109fb57600080fd5b506001600160a01b03813516906020013515156126a9565b610a3060048036036020811015610a2957600080fd5b5035612749565b6040805195151586526001600160801b0390941660208601526001600160a01b03928316858501529082166060850152166080830152519081900360a00190f35b610417600480360360a0811015610a8757600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b811115610ac957600080fd5b820183602082011115610adb57600080fd5b803590602001918460018302840111600160201b83111715610afc57600080fd5b509092509050612792565b61036a60048036036080811015610b1d57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b5757600080fd5b820183602082011115610b6957600080fd5b803590602001918460018302840111600160201b83111715610b8a57600080fd5b509092509050612a05565b61041760048036036040811015610bab57600080fd5b506001600160a01b038135169060200135612a51565b61029060048036036020811015610bd757600080fd5b5035612aa1565b610778600480360360a0811015610bf457600080fd5b810190602081018135600160201b811115610c0e57600080fd5b820183602082011115610c2057600080fd5b803590602001918460208302840111600160201b83111715610c4157600080fd5b919390929091602081019035600160201b811115610c5e57600080fd5b820183602082011115610c7057600080fd5b803590602001918460208302840111600160201b83111715610c9157600080fd5b919390926001600160a01b0383358116936020810135909116929190606081019060400135600160201b811115610cc757600080fd5b820183602082011115610cd957600080fd5b803590602001918460018302840111600160201b83111715610cfa57600080fd5b509092509050612c61565b61036a60048036036020811015610d1b57600080fd5b50356001600160a01b0316612f2c565b61027460048036036040811015610d4157600080fd5b506001600160a01b0381358116916020013516612f94565b61027460048036036020811015610d6f57600080fd5b5035612fa0565b61027460048036036060811015610d8c57600080fd5b508035906001600160a01b0360208201351690604001356131c7565b61041760048036036040811015610dbe57600080fd5b810190602081018135600160201b811115610dd857600080fd5b820183602082011115610dea57600080fd5b803590602001918460208302840111600160201b83111715610e0b57600080fd5b9193509150356001600160a01b031661343d565b61036a60048036036020811015610e3557600080fd5b50356001600160a01b0316613626565b610417600480360360a0811015610e5b57600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b811115610e9d57600080fd5b820183602082011115610eaf57600080fd5b803590602001918460018302840111600160201b83111715610ed057600080fd5b509092509050613737565b6103226137ce565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505090505b90565b6000610fa8826137dd565b92915050565b6000610fb9826137f8565b9050336001600160a01b0382161480610fd75750610fd73382613813565b611028576040805162461bcd60e51b815260206004820152601860248201527f6d73672e73656e6465722063616e277420617070726f76650000000000000000604482015290519081900360640190fd5b826001600160a01b031661103b836137dd565b6001600160a01b0316146110a15760008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45b505050565b6000858152600c6020526040812060018101548291906110d19089906001600160a01b031689613842565b9250868311156111125760405162461bcd60e51b8152600401808060200182810382526021815260200180614a456021913960400191505060405180910390fd5b60038101546001600160a01b0316801561122357600080826001600160a01b031663b077c09b89896040518363ffffffff1660e01b815260040180806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b15801561119a57600080fd5b505af11580156111ae573d6000803e3d6000fd5b505050506040513d60408110156111c457600080fd5b5080516020918201516040805183815293840182905280519295509093508d927f686ef5859f39efd8bf5a57659ca5b60fe18f984d435a0b7418f18bcbe2d349d6929081900390910190a261121a868383613a78565b94505050611227565b8392505b600b54604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b505050506040513d60208110156112ab57600080fd5b50516112fe576040805162461bcd60e51b815260206004820152601c60248201527f4572726f722070756c6c696e67207061796d656e7420746f6b656e7300000000604482015290519081900360640190fd5b815460009061131c90859061010090046001600160801b0316613b27565b9050600160801b8110611369576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b82546001600160801b03821661010002610100600160881b0319909116178355604080513381526001600160a01b038a1660208201528082018b9052600060608201526080810187905260a0810186905290518b91600080516020614a93833981519152919081900360c00190a25050509550959350505050565b60095490565b60006001600160a01b03821661143f576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b6114493384613b70565b611492576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b506000828152600c602090815260408083208054610100600160881b031981168255600b54835163a9059cbb60e01b81526001600160a01b0388811660048301526101009093046001600160801b031660248201819052945194969395929091169363a9059cbb93604480840194938390030190829087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b505050506040513d602081101561154157600080fd5b505161158b576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b604080513381526001600160a01b0385166020820152808201849052905185917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb919081900360600190a25092915050565b6110a1838383604051806020016040528060008152506000613c2b565b60006116068383613b70565b9392505050565b6001600160a01b03811660009081526002602090815260409182902080548351818402810184019094528084526060939283018282801561166d57602002820191906000526020600020905b815481526020019060010190808311611659575b50505050509050919050565b604051600160f91b6020820190815230606081811b60218501523380821b60358601526001600160601b03198b831b811660498701529189901b909116605d850152607184018790526000936002938b918a918a918a918a9160910183838082843780830192505050985050505050505050506040516020818303038152906040528051906020012090506040518060a0016040528060001515815260200160006001600160801b03168152602001886001600160a01b03168152602001336001600160a01b03168152602001866001600160a01b0316815250600c600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a8154816001600160801b0302191690836001600160801b0316021790555060408201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060808201518160030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505061184a8160001c87614040565b604080516305b37e1560e41b81526004810183815260248201928352604482018590526001600160a01b038a1692635b37e15092859288928892606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b1580156118c457600080fd5b505af11580156118d8573d6000803e3d6000fd5b505050506040513d60208110156118ee57600080fd5b5051611941576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b807f4ee48d90c05f58fc51a05728e403947a51e36cc7a1bf4d82260473b43353840885858560405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a29695505050505050565b60006001600160a01b038316611a0c576040805162461bcd60e51b8152602060048201526018602482015277183c181024b9903737ba1030903b30b634b21037bbb732b960411b604482015290519081900360640190fd5b611a15836140e7565b8210611a5e576040805162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020805483908110611a8257fe5b9060005260206000200154905092915050565b6110a1838383604051806020016040528060008152506001613c2b565b60408051600160f81b60208083019190915230606090811b60218401529490941b6001600160601b0319166035820152604980820193909352815180820390930183526069019052805191012090565b60608088878114611b445760405162461bcd60e51b815260040180806020018281038252602d815260200180614a66602d913960400191505060405180910390fd5b6000806001600160a01b03881615611c505760405163b077c09b60e01b8152602060048201908152602482018890526001600160a01b038a169163b077c09b918a918a91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b158015611bc957600080fd5b505af1158015611bdd573d6000803e3d6000fd5b505050506040513d6040811015611bf357600080fd5b508051602091820151604080516001600160a01b038d168152938401879052838101839052606084018290525191945092507f79601cc1ca8f1ff7c3e7f7b522c2f1377cdb4c318a131afaf426cb2c976ef4be9181900360800190a15b82604051908082528060200260200182016040528015611c7a578160200160208202803883390190505b50945082604051908082528060200260200182016040528015611ca7578160200160208202803883390190505b50935060005b83811015611e625760008c8c83818110611cc357fe5b905060200201359050611d168f8f84818110611cdb57fe5b905060200201358b60006001600160a01b03168d6001600160a01b03161415611d045783611d0f565b611d0f848888614102565b8787614184565b888481518110611d2257fe5b60200260200101888581518110611d3557fe5b602002602001018281525082815250505080868381518110611d5357fe5b60200260200101511115611dae576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e277420657863656564207265717565737465640000000000604482015290519081900360640190fd5b8e8e83818110611dba57fe5b90506020020135600080516020614a93833981519152338d6000858c8881518110611de157fe5b60200260200101518c8981518110611df557fe5b602002602001015160405180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a250600101611cad565b505050509850989650505050505050565b6009546000908210611ec2576040805162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b604482015290519081900360640190fd5b60098281548110611ecf57fe5b90600052602060002001549050919050565b6000818152600c60205260408120805460ff1615611f03576004915050610f01565b60018101546040805160248082018790528251808303909101815260449091019091526020810180516001600160e01b03166302ef145760e51b1790526000918291611f58916001600160a01b0316906143e3565b9150915081611f68576004611f6a565b805b9350505050610f01565b6000610fa8826137f8565b336000818152600d60209081526040808320805460018082019092558251600160f81b8186015230606090811b602183015287901b60358201526049808201839052845180830390910181526069820180865281519187019190912061010983018652878252608983018881526001600160a01b038f811660a9860190815260c986019b8c528e821660e9909601958652838b52600c909952969098209151825498516001600160801b031661010002610100600160881b031991151560ff19909a169990991716979097178155945192850180549385166001600160a01b031994851617905595516002850180549185169184169190911790559451600390930180549390921692169190911790559061209a8287614040565b604080516305b37e1560e41b81526004810184815260248201928352604482018690526001600160a01b038a1692635b37e15092869289928992606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b15801561211457600080fd5b505af1158015612128573d6000803e3d6000fd5b505050506040513d602081101561213e57600080fd5b5051612191576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b817fc9310bea14cefb8c6d9a8fce4ead7f6825a31223af9d0bde2a30b2d0c71ccbf382868660405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25095945050505050565b60606009805480602002602001604051908101604052809291908181526020018280548015610f9257602002820191906000526020600020905b81548152602001906001019080831161223e575050505050905090565b6000610fa8826140e7565b6000858152600c6020526040812060038101548291906001600160a01b031682808083156123865760405163b077c09b60e01b8152602060048201908152602482018a90526001600160a01b0386169163b077c09b918c918c91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b15801561230157600080fd5b505af1158015612315573d6000803e3d6000fd5b505050506040513d604081101561232b57600080fd5b5080516020918201516040805183815293840182905280519196509194508e927f686ef5859f39efd8bf5a57659ca5b60fe18f984d435a0b7418f18bcbe2d349d692908290030190a261237f8b8385614102565b9050612389565b50895b60018501546123a3908d906001600160a01b031683613842565b9650808711156123fa576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e27742065786365656420617661696c61626c650000000000604482015290519081900360640190fd5b6001600160a01b0384161561247057612414878385613a78565b95508a86111561246b576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e277420657863656564207265717565737465640000000000604482015290519081900360640190fd5b612474565b8695505b600b54604080516323b872dd60e01b81523360048201523060248201526044810189905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156124ce57600080fd5b505af11580156124e2573d6000803e3d6000fd5b505050506040513d60208110156124f857600080fd5b5051612542576040805162461bcd60e51b81526020600482015260146024820152734572726f722070756c6c696e6720746f6b656e7360601b604482015290519081900360640190fd5b845461255d90879061010090046001600160801b0316613b27565b9050600160801b81106125aa576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b84546001600160801b03821661010002610100600160881b0319909116178555604080513381526001600160a01b038c166020820152600081830152606081018d90526080810189905260a0810188905290518d91600080516020614a93833981519152919081900360c00190a250505050509550959350505050565b600d6020526000908152604090205481565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f925780601f10610f6757610100808354040283529160200191610f92565b3360009081526004602090815260408083206001600160a01b038616845290915290205460ff16151581151514612745573360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35b5050565b600c60205260009081526040902080546001820154600283015460039093015460ff8316936101009093046001600160801b0316926001600160a01b0392831692908116911685565b60408051600360f81b60208083019190915230606090811b6021840152339081901b603584015260498084018890528451808503909101815260698401808652815191840191909120610109850186526000808352608986018181526001600160a01b038e811660a9890190815260c989019687528d821660e9909901988952848452600c909752979091209251835491516001600160801b031661010002610100600160881b031991151560ff19909316929092171617825592516001820180549187166001600160a01b03199283161790559151600282018054918716918416919091179055925160039390930180549390941692169190911790915561289b8187614040565b604080516305b37e1560e41b81526004810183815260248201928352604482018590526001600160a01b038a1692635b37e15092859288928892606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b15801561291557600080fd5b505af1158015612929573d6000803e3d6000fd5b505050506040513d602081101561293f57600080fd5b5051612992576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b807fc46d3d245e649272659dd5731879c1b019caccb00acb3a94488a28c82ef924a685858560405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a29695505050505050565b612a4a85858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250613c2b915050565b5050505050565b60408051600360f81b60208083019190915230606090811b60218401529490941b6001600160601b0319166035820152604980820193909352815180820390930183526069019052805191012090565b6000818152600160205260409020546060906001600160a01b0316612b04576040805162461bcd60e51b8152602060048201526014602482015273105cdcd95d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b6008546001600160a01b03168015612c4a57806001600160a01b031663c87b56dd846040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b158015612b5a57600080fd5b505afa158015612b6e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612b9757600080fd5b8101908080516040519392919084600160201b821115612bb657600080fd5b908301906020820185811115612bcb57600080fd5b8251600160201b811182820188101715612be457600080fd5b82525081516020918201929091019080838360005b83811015612c11578181015183820152602001612bf9565b50505050905090810190601f168015612c3e5780820380516001836020036101000a031916815260200191505b50604052505050611606565b604051806020016040528060008152509392505050565b60608088878114612ca35760405162461bcd60e51b815260040180806020018281038252602d815260200180614a66602d913960400191505060405180910390fd5b6000806001600160a01b03881615612daf5760405163b077c09b60e01b8152602060048201908152602482018890526001600160a01b038a169163b077c09b918a918a91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b158015612d2857600080fd5b505af1158015612d3c573d6000803e3d6000fd5b505050506040513d6040811015612d5257600080fd5b508051602091820151604080516001600160a01b038d168152938401879052838101839052606084018290525191945092507f79601cc1ca8f1ff7c3e7f7b522c2f1377cdb4c318a131afaf426cb2c976ef4be9181900360800190a15b82604051908082528060200260200182016040528015612dd9578160200160208202803883390190505b50945082604051908082528060200260200182016040528015612e06578160200160208202803883390190505b50935060005b83811015611e625760008c8c83818110612e2257fe5b905060200201359050612e4a8f8f84818110612e3a57fe5b905060200201358b838787614184565b888481518110612e5657fe5b60200260200101888581518110612e6957fe5b6020908102919091010191909152528e8e83818110612e8457fe5b90506020020135600080516020614a93833981519152338d8460008c8881518110612eab57fe5b60200260200101518c8981518110612ebf57fe5b602002602001015160405180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a250600101612e0c565b600a546001600160a01b03163314612f8b576040805162461bcd60e51b815260206004820152601e60248201527f546865206f776e65722073686f756c64206265207468652073656e6465720000604482015290519081900360640190fd5b612745816144ce565b60006116068383613813565b6000818152600c6020526040812060018101546001600160a01b0316613003576040805162461bcd60e51b81526020600482015260136024820152721119589d08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b60018101546040805160248082018790528251808303909101815260449091019091526020810180516001600160e01b0316630ef6ac0f60e41b1790526000918291613058916001600160a01b031690614533565b91509150811561311f57825460ff161561311257847fa43b78c6d135806f3e817a90a7b690c0d2d94b7d2e356049fa5ba357c0fab9c33360005a458660003660405180886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039a509098505050505050505050a2825460ff191683555b6001149250610f01915050565b847fe000ee8a04c9b1ff738cb5c90d6a362bf5be3c83b1eb221377df6324747d4c073360005a4560003660405180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003995090975050505050505050a2825460ff19166001178355505050919050565b60006001600160a01b03831661321c576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b6132263385613b70565b61326f576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b6000848152600c60205260409020805461010090046001600160801b03168311156132e1576040805162461bcd60e51b815260206004820152601b60248201527f446562742062616c616e6365206973206e6f7420656e6f756768740000000000604482015290519081900360640190fd5b80546132fb9061010090046001600160801b0316846145eb565b81546001600160801b039190911661010002610100600160881b0319909116178155600b546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561337357600080fd5b505af1158015613387573d6000803e3d6000fd5b505050506040513d602081101561339d57600080fd5b50516133e7576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b604080513381526001600160a01b0386166020820152808201859052905186917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb919081900360600190a2506001949350505050565b60006001600160a01b038216613492576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b600080805b85811015613552578686828181106134ab57fe5b9050602002013592506134c1338460001c613b70565b1561354a576000838152600c60209081526040918290208054610100600160881b0319811690915582513381526001600160a01b038916928101929092526001600160801b036101009091041681830181905291519582019591935084917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb9181900360600190a25b600101613497565b50600b546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156135a957600080fd5b505af11580156135bd573d6000803e3d6000fd5b505050506040513d60208110156135d357600080fd5b505161361d576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b50509392505050565b600a546001600160a01b03163314613685576040805162461bcd60e51b815260206004820152601e60248201527f546865206f776e65722073686f756c64206265207468652073656e6465720000604482015290519081900360640190fd5b6001600160a01b0381166136db576040805162461bcd60e51b8152602060048201526018602482015277183c181024b9903737ba1030903b30b634b21037bbb732b960411b604482015290519081900360640190fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b604051600160f91b6020820190815230606081811b60218501526001600160601b03198a821b8116603586015289821b811660498601529088901b16605d840152607183018690526000926002928a918a918a918a918a918a919060910183838082843780830192505050985050505050505050506040516020818303038152906040528051906020012090509695505050505050565b600b546001600160a01b031681565b6000908152600560205260409020546001600160a01b031690565b6000908152600160205260409020546001600160a01b031690565b6001600160a01b0380821660009081526004602090815260408083209386168352929052205460ff1692915050565b60006001600160a01b038316613895576040805162461bcd60e51b81526020600482015260136024820152721119589d08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b604080516024810186905260448082018590528251808303909101815260649091019091526020810180516001600160e01b031663247e8b7d60e21b17905260009081906138e4908690614533565b9150915081156139c2576000868152600c602052604090205460ff16156139b957857fa43b78c6d135806f3e817a90a7b690c0d2d94b7d2e356049fa5ba357c0fab9c33360005a458660003660405180886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039a509098505050505050505050a26000868152600c60205260409020805460ff191690555b91506116069050565b857fe000ee8a04c9b1ff738cb5c90d6a362bf5be3c83b1eb221377df6324747d4c0733345a4560003660405180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003995090975050505050505050a26000868152600c60205260409020805460ff1916600117905550509392505050565b60008215801590613a8857508115155b613ad9576040805162461bcd60e51b815260206004820152601c60248201527f4f7261636c652070726f766964656420696e76616c6964207261746500000000604482015290519081900360640190fd5b6000613aeb848663ffffffff61463716565b9050828181613af657fe5b0491506000838281613b0457fe5b061115613b1f57613b1c82600163ffffffff613b2716565b91505b509392505050565b600082820183811015611606576040805162461bcd60e51b815260206004820152600c60248201526b416464206f766572666c6f7760a01b604482015290519081900360640190fd5b60006001600160a01b038316613bcd576040805162461bcd60e51b815260206004820152601a60248201527f30783020697320616e20696e76616c6964206f70657261746f72000000000000604482015290519081900360640190fd5b6000613bd8836137f8565b9050806001600160a01b0316846001600160a01b03161480613bff5750613bff8482613813565b80613c235750836001600160a01b0316613c18846137dd565b6001600160a01b0316145b949350505050565b82613c363382613b70565b613c87576040805162461bcd60e51b815260206004820152601960248201527f6d73672e73656e646572204e6f7420617574686f72697a656400000000000000604482015290519081900360640190fd5b846001600160a01b038116613cd9576040805162461bcd60e51b815260206004820152601360248201527205461726765742063616e27742062652030783606c1b604482015290519081900360640190fd5b8685816001600160a01b0316613cee826137f8565b6001600160a01b031614613d3d576040805162461bcd60e51b81526020600482015260116024820152702737ba1031bab93932b73a1037bbb732b960791b604482015290519081900360640190fd5b6000878152600160205260409020546001600160a01b0316613d5f8189614696565b613d6a818a8a614708565b858015613d845750613d84896001600160a01b031661488c565b15613ff357600080613e7e8b63150b7a0260e01b33868e8e60405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613e12578181015183820152602001613dfa565b50505050905090810190601f168015613e3f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199099169890981790975250614892945050505050565b91509150811580613ea057506001600160e01b03198116630a85bd0160e11b14155b15613ff057613f7d8b63f0b9e5ba60e01b858d8d60405160240180846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613f12578181015183820152602001613efa565b50505050905090810190601f168015613f3f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990981697909717909652506148929350505050565b9092509050818015613f9f57506001600160e01b0319811663785cf2dd60e11b145b613ff0576040805162461bcd60e51b815260206004820152601b60248201527f436f6e74726163742072656a65637465642074686520746f6b656e0000000000604482015290519081900360640190fd5b50505b87896001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050505050565b6000828152600160205260409020546001600160a01b0316156140a1576040805162461bcd60e51b8152602060048201526014602482015273417373657420616c72656164792065786973747360601b604482015290519081900360640190fd5b6140ab8183614967565b60405182906001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b031660009081526002602052604090205490565b6000821580159061411257508115155b614163576040805162461bcd60e51b815260206004820152601c60248201527f4f7261636c652070726f766964656420696e76616c6964207261746500000000604482015290519081900360640190fd5b82614174858463ffffffff61463716565b8161417b57fe5b04949350505050565b6000858152600c6020526040812060038101548291906001600160a01b038881169116146141f857604080516001600160a01b0389168152905189917f8a1ca4383d0682548257effd0249245baaabe2c4672c83c48397a88faa0831f0919081900360200190a250600091508190506143d9565b60018101546142129089906001600160a01b031688613842565b9250858311156142535760405162461bcd60e51b8152600401808060200182810382526021815260200180614a456021913960400191505060405180910390fd5b6001600160a01b0387166142675782614272565b614272838686613a78565b600b54604080516323b872dd60e01b81523360048201523060248201526044810184905290519294506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b1580156142cf57600080fd5b505af11580156142e3573d6000803e3d6000fd5b505050506040513d60208110156142f957600080fd5b505161434c576040805162461bcd60e51b815260206004820152601c60248201527f4572726f722070756c6c696e67207061796d656e7420746f6b656e7300000000604482015290519081900360640190fd5b805460009061436a90849061010090046001600160801b0316613b27565b9050600160801b81106143b7576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b81546001600160801b0390911661010002610100600160881b03199091161790555b9550959350505050565b6000806060606445605002046001600160a01b038616815a106144065781614408565b5a5b866040518082805190602001908083835b602083106144385780518252601f199092019160209182019101614419565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114614499576040519150601f19603f3d011682016040523d82523d6000602084013e61449e565b606091505b5080519195509250156144c5578180602001905160208110156144c057600080fd5b505192505b50509250929050565b604080516001600160a01b038316815290516000917f8830bfff0a198778822a37d97bfba3d9d6e08bcd080eb82f2a76f2060a7494ec919081900360200190a150600880546001600160a01b0383166001600160a01b03199091161790556001919050565b6000806060606445605002046001600160a01b038616815a106145565781614558565b5a5b866040518082805190602001908083835b602083106145885780518252601f199092019160209182019101614569565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038160008787f1925050503d8060008114614499576040519150601f19603f3d011682016040523d82523d6000602084013e61449e565b600081831015614631576040805162461bcd60e51b815260206004820152600c60248201526b537562206f766572666c6f7760a01b604482015290519081900360640190fd5b50900390565b60008261464657506000610fa8565b8282028284828161465357fe5b0414611606576040805162461bcd60e51b815260206004820152600d60248201526c4d756c74206f766572666c6f7760981b604482015290519081900360640190fd5b6000818152600560205260409020546001600160a01b0316156127455760008181526005602052604080822080546001600160a01b0319169055518291906001600160a01b038516907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925908390a45050565b600081815260036020526040812054906147326001614726876140e7565b9063ffffffff6145eb16565b90508082146147bd576001600160a01b038516600090815260026020526040812080548390811061475f57fe5b906000526020600020015490508060026000886001600160a01b03166001600160a01b03168152602001908152602001600020848154811061479d57fe5b600091825260208083209091019290925591825260039052604090208290555b6001600160a01b03851660009081526002602052604081208054839081106147e157fe5b60009182526020808320909101929092556001600160a01b0387168152600290915260409020805490614818906000198301614a07565b50600083815260016020526040812080546001600160a01b0319166001600160a01b038716179055614849856140e7565b6001600160a01b03909516600090815260026020908152604080832080546001810182559084528284200187905595825260039052939093209390935550505050565b3b151590565b6000806060846001600160a01b0316846040518082805190602001908083835b602083106148d15780518252601f1990920191602091820191016148b2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614933576040519150601f19603f3d011682016040523d82523d6000602084013e614938565b606091505b50805191945091501561495f5780806020019051602081101561495a57600080fd5b505191505b509250929050565b600081815260016020526040812080546001600160a01b0319166001600160a01b038516179055614997836140e7565b6001600160a01b0390931660009081526002602090815260408083208054600181810183559185528385200186905585845260039092528220949094556009805494850181559052507f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af90910155565b8154818355818111156110a1576000838152602090206110a1918101908301610f9a91905b80821115614a405760008155600101614a2c565b509056fe506169642063616e2774206265206d6f7265207468616e207265717565737465645f69647320616e64205f616d6f756e74732073686f756c642068617665207468652073616d65206c656e67746825b52320bc27b845f37eae2240cc285c7b6e5643fc2995e6d22afa10e2f657d2a265627a7a72315820685c06f24239743f2b2bb3868f6b7c45d449b1ca3987bdfdcfe959f04a9c192164736f6c634300050b0032000000000000000000000000f970b8e36e23f7fc3fd752eea86f8be8d83375a6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c806370a082311161013b578063c87b56dd116100b8578063f12e5eaa1161007c578063f12e5eaa14610d76578063f163763014610da8578063f2fde38b14610e1f578063f57ae7b914610e45578063fc0c546a14610edb57610248565b8063c87b56dd14610bc1578063d2d791c014610bde578063db2c551814610d05578063e985e9c514610d2b578063ef6ac0f014610d5957610248565b8063a22cb465116100ff578063a22cb465146109e5578063a9caa41114610a13578063adc51d4214610a71578063b88d4fde14610b07578063bb1dfeca14610b9557610248565b806370a08231146108ff5780637c1716af146109255780637ecebe00146109af5780638da5cb5b146109d557806395d89b41146109dd57610248565b80632ed04265116101c95780634f6ccce71161018d5780634f6ccce7146108115780635de28ae01461082e5780636352211e1461084b578063649b2b95146108685780636ff97f1d146108f757610248565b80632ed042651461052d5780632f745c59146105c357806342842e0e146105ef57806347ff6d7b146106255780634d9c1bf31461065157610248565b806318160ddd1161021057806318160ddd1461040f5780631b258d501461042957806323b872dd146104555780632972b0f01461048b5780632c62fa10146104b757610248565b806301ffc9a71461024d57806306fdde0314610288578063081812fc14610305578063095ea7b31461033e578063114f95111461036c575b600080fd5b6102746004803603602081101561026357600080fd5b50356001600160e01b031916610ee3565b604080519115158252519081900360200190f35b610290610f06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ca5781810151838201526020016102b2565b50505050905090810190601f1680156102f75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103226004803603602081101561031b57600080fd5b5035610f9d565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603604081101561035457600080fd5b506001600160a01b038135169060200135610fae565b005b6103f66004803603608081101561038257600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156103b857600080fd5b8201836020820111156103ca57600080fd5b803590602001918460018302840111600160201b831117156103eb57600080fd5b5090925090506110a6565b6040805192835260208301919091528051918290030190f35b6104176113e4565b60408051918252519081900360200190f35b6104176004803603604081101561043f57600080fd5b50803590602001356001600160a01b03166113ea565b61036a6004803603606081101561046b57600080fd5b506001600160a01b038135811691602081013590911690604001356115dd565b610274600480360360408110156104a157600080fd5b506001600160a01b0381351690602001356115fa565b6104dd600480360360208110156104cd57600080fd5b50356001600160a01b031661160d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610519578181015183820152602001610501565b505050509050019250505060405180910390f35b610417600480360360a081101561054357600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561058557600080fd5b82018360208201111561059757600080fd5b803590602001918460018302840111600160201b831117156105b857600080fd5b509092509050611679565b610417600480360360408110156105d957600080fd5b506001600160a01b0381351690602001356119b4565b61036a6004803603606081101561060557600080fd5b506001600160a01b03813581169160208101359091169060400135611a95565b6104176004803603604081101561063b57600080fd5b506001600160a01b038135169060200135611ab2565b610778600480360360a081101561066757600080fd5b810190602081018135600160201b81111561068157600080fd5b82018360208201111561069357600080fd5b803590602001918460208302840111600160201b831117156106b457600080fd5b919390929091602081019035600160201b8111156106d157600080fd5b8201836020820111156106e357600080fd5b803590602001918460208302840111600160201b8311171561070457600080fd5b919390926001600160a01b0383358116936020810135909116929190606081019060400135600160201b81111561073a57600080fd5b82018360208201111561074c57600080fd5b803590602001918460018302840111600160201b8311171561076d57600080fd5b509092509050611b02565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156107bc5781810151838201526020016107a4565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156107fb5781810151838201526020016107e3565b5050505090500194505050505060405180910390f35b6104176004803603602081101561082757600080fd5b5035611e73565b6104176004803603602081101561084457600080fd5b5035611ee1565b6103226004803603602081101561086157600080fd5b5035611f74565b6104176004803603608081101561087e57600080fd5b6001600160a01b0382358116926020810135821692604082013590921691810190608081016060820135600160201b8111156108b957600080fd5b8201836020820111156108cb57600080fd5b803590602001918460018302840111600160201b831117156108ec57600080fd5b509092509050611f7f565b6104dd612204565b6104176004803603602081101561091557600080fd5b50356001600160a01b031661225b565b6103f66004803603608081101561093b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b81111561097157600080fd5b82018360208201111561098357600080fd5b803590602001918460018302840111600160201b831117156109a457600080fd5b509092509050612266565b610417600480360360208110156109c557600080fd5b50356001600160a01b0316612627565b610322612639565b610290612648565b61036a600480360360408110156109fb57600080fd5b506001600160a01b03813516906020013515156126a9565b610a3060048036036020811015610a2957600080fd5b5035612749565b6040805195151586526001600160801b0390941660208601526001600160a01b03928316858501529082166060850152166080830152519081900360a00190f35b610417600480360360a0811015610a8757600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b811115610ac957600080fd5b820183602082011115610adb57600080fd5b803590602001918460018302840111600160201b83111715610afc57600080fd5b509092509050612792565b61036a60048036036080811015610b1d57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b5757600080fd5b820183602082011115610b6957600080fd5b803590602001918460018302840111600160201b83111715610b8a57600080fd5b509092509050612a05565b61041760048036036040811015610bab57600080fd5b506001600160a01b038135169060200135612a51565b61029060048036036020811015610bd757600080fd5b5035612aa1565b610778600480360360a0811015610bf457600080fd5b810190602081018135600160201b811115610c0e57600080fd5b820183602082011115610c2057600080fd5b803590602001918460208302840111600160201b83111715610c4157600080fd5b919390929091602081019035600160201b811115610c5e57600080fd5b820183602082011115610c7057600080fd5b803590602001918460208302840111600160201b83111715610c9157600080fd5b919390926001600160a01b0383358116936020810135909116929190606081019060400135600160201b811115610cc757600080fd5b820183602082011115610cd957600080fd5b803590602001918460018302840111600160201b83111715610cfa57600080fd5b509092509050612c61565b61036a60048036036020811015610d1b57600080fd5b50356001600160a01b0316612f2c565b61027460048036036040811015610d4157600080fd5b506001600160a01b0381358116916020013516612f94565b61027460048036036020811015610d6f57600080fd5b5035612fa0565b61027460048036036060811015610d8c57600080fd5b508035906001600160a01b0360208201351690604001356131c7565b61041760048036036040811015610dbe57600080fd5b810190602081018135600160201b811115610dd857600080fd5b820183602082011115610dea57600080fd5b803590602001918460208302840111600160201b83111715610e0b57600080fd5b9193509150356001600160a01b031661343d565b61036a60048036036020811015610e3557600080fd5b50356001600160a01b0316613626565b610417600480360360a0811015610e5b57600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b811115610e9d57600080fd5b820183602082011115610eaf57600080fd5b803590602001918460018302840111600160201b83111715610ed057600080fd5b509092509050613737565b6103226137ce565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f925780601f10610f6757610100808354040283529160200191610f92565b820191906000526020600020905b815481529060010190602001808311610f7557829003601f168201915b505050505090505b90565b6000610fa8826137dd565b92915050565b6000610fb9826137f8565b9050336001600160a01b0382161480610fd75750610fd73382613813565b611028576040805162461bcd60e51b815260206004820152601860248201527f6d73672e73656e6465722063616e277420617070726f76650000000000000000604482015290519081900360640190fd5b826001600160a01b031661103b836137dd565b6001600160a01b0316146110a15760008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a45b505050565b6000858152600c6020526040812060018101548291906110d19089906001600160a01b031689613842565b9250868311156111125760405162461bcd60e51b8152600401808060200182810382526021815260200180614a456021913960400191505060405180910390fd5b60038101546001600160a01b0316801561122357600080826001600160a01b031663b077c09b89896040518363ffffffff1660e01b815260040180806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b15801561119a57600080fd5b505af11580156111ae573d6000803e3d6000fd5b505050506040513d60408110156111c457600080fd5b5080516020918201516040805183815293840182905280519295509093508d927f686ef5859f39efd8bf5a57659ca5b60fe18f984d435a0b7418f18bcbe2d349d6929081900390910190a261121a868383613a78565b94505050611227565b8392505b600b54604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561128157600080fd5b505af1158015611295573d6000803e3d6000fd5b505050506040513d60208110156112ab57600080fd5b50516112fe576040805162461bcd60e51b815260206004820152601c60248201527f4572726f722070756c6c696e67207061796d656e7420746f6b656e7300000000604482015290519081900360640190fd5b815460009061131c90859061010090046001600160801b0316613b27565b9050600160801b8110611369576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b82546001600160801b03821661010002610100600160881b0319909116178355604080513381526001600160a01b038a1660208201528082018b9052600060608201526080810187905260a0810186905290518b91600080516020614a93833981519152919081900360c00190a25050509550959350505050565b60095490565b60006001600160a01b03821661143f576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b6114493384613b70565b611492576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b506000828152600c602090815260408083208054610100600160881b031981168255600b54835163a9059cbb60e01b81526001600160a01b0388811660048301526101009093046001600160801b031660248201819052945194969395929091169363a9059cbb93604480840194938390030190829087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b505050506040513d602081101561154157600080fd5b505161158b576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b604080513381526001600160a01b0385166020820152808201849052905185917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb919081900360600190a25092915050565b6110a1838383604051806020016040528060008152506000613c2b565b60006116068383613b70565b9392505050565b6001600160a01b03811660009081526002602090815260409182902080548351818402810184019094528084526060939283018282801561166d57602002820191906000526020600020905b815481526020019060010190808311611659575b50505050509050919050565b604051600160f91b6020820190815230606081811b60218501523380821b60358601526001600160601b03198b831b811660498701529189901b909116605d850152607184018790526000936002938b918a918a918a918a9160910183838082843780830192505050985050505050505050506040516020818303038152906040528051906020012090506040518060a0016040528060001515815260200160006001600160801b03168152602001886001600160a01b03168152602001336001600160a01b03168152602001866001600160a01b0316815250600c600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a8154816001600160801b0302191690836001600160801b0316021790555060408201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160020160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060808201518160030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505061184a8160001c87614040565b604080516305b37e1560e41b81526004810183815260248201928352604482018590526001600160a01b038a1692635b37e15092859288928892606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b1580156118c457600080fd5b505af11580156118d8573d6000803e3d6000fd5b505050506040513d60208110156118ee57600080fd5b5051611941576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b807f4ee48d90c05f58fc51a05728e403947a51e36cc7a1bf4d82260473b43353840885858560405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a29695505050505050565b60006001600160a01b038316611a0c576040805162461bcd60e51b8152602060048201526018602482015277183c181024b9903737ba1030903b30b634b21037bbb732b960411b604482015290519081900360640190fd5b611a15836140e7565b8210611a5e576040805162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020805483908110611a8257fe5b9060005260206000200154905092915050565b6110a1838383604051806020016040528060008152506001613c2b565b60408051600160f81b60208083019190915230606090811b60218401529490941b6001600160601b0319166035820152604980820193909352815180820390930183526069019052805191012090565b60608088878114611b445760405162461bcd60e51b815260040180806020018281038252602d815260200180614a66602d913960400191505060405180910390fd5b6000806001600160a01b03881615611c505760405163b077c09b60e01b8152602060048201908152602482018890526001600160a01b038a169163b077c09b918a918a91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b158015611bc957600080fd5b505af1158015611bdd573d6000803e3d6000fd5b505050506040513d6040811015611bf357600080fd5b508051602091820151604080516001600160a01b038d168152938401879052838101839052606084018290525191945092507f79601cc1ca8f1ff7c3e7f7b522c2f1377cdb4c318a131afaf426cb2c976ef4be9181900360800190a15b82604051908082528060200260200182016040528015611c7a578160200160208202803883390190505b50945082604051908082528060200260200182016040528015611ca7578160200160208202803883390190505b50935060005b83811015611e625760008c8c83818110611cc357fe5b905060200201359050611d168f8f84818110611cdb57fe5b905060200201358b60006001600160a01b03168d6001600160a01b03161415611d045783611d0f565b611d0f848888614102565b8787614184565b888481518110611d2257fe5b60200260200101888581518110611d3557fe5b602002602001018281525082815250505080868381518110611d5357fe5b60200260200101511115611dae576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e277420657863656564207265717565737465640000000000604482015290519081900360640190fd5b8e8e83818110611dba57fe5b90506020020135600080516020614a93833981519152338d6000858c8881518110611de157fe5b60200260200101518c8981518110611df557fe5b602002602001015160405180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a250600101611cad565b505050509850989650505050505050565b6009546000908210611ec2576040805162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b604482015290519081900360640190fd5b60098281548110611ecf57fe5b90600052602060002001549050919050565b6000818152600c60205260408120805460ff1615611f03576004915050610f01565b60018101546040805160248082018790528251808303909101815260449091019091526020810180516001600160e01b03166302ef145760e51b1790526000918291611f58916001600160a01b0316906143e3565b9150915081611f68576004611f6a565b805b9350505050610f01565b6000610fa8826137f8565b336000818152600d60209081526040808320805460018082019092558251600160f81b8186015230606090811b602183015287901b60358201526049808201839052845180830390910181526069820180865281519187019190912061010983018652878252608983018881526001600160a01b038f811660a9860190815260c986019b8c528e821660e9909601958652838b52600c909952969098209151825498516001600160801b031661010002610100600160881b031991151560ff19909a169990991716979097178155945192850180549385166001600160a01b031994851617905595516002850180549185169184169190911790559451600390930180549390921692169190911790559061209a8287614040565b604080516305b37e1560e41b81526004810184815260248201928352604482018690526001600160a01b038a1692635b37e15092869289928992606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b15801561211457600080fd5b505af1158015612128573d6000803e3d6000fd5b505050506040513d602081101561213e57600080fd5b5051612191576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b817fc9310bea14cefb8c6d9a8fce4ead7f6825a31223af9d0bde2a30b2d0c71ccbf382868660405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25095945050505050565b60606009805480602002602001604051908101604052809291908181526020018280548015610f9257602002820191906000526020600020905b81548152602001906001019080831161223e575050505050905090565b6000610fa8826140e7565b6000858152600c6020526040812060038101548291906001600160a01b031682808083156123865760405163b077c09b60e01b8152602060048201908152602482018a90526001600160a01b0386169163b077c09b918c918c91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b15801561230157600080fd5b505af1158015612315573d6000803e3d6000fd5b505050506040513d604081101561232b57600080fd5b5080516020918201516040805183815293840182905280519196509194508e927f686ef5859f39efd8bf5a57659ca5b60fe18f984d435a0b7418f18bcbe2d349d692908290030190a261237f8b8385614102565b9050612389565b50895b60018501546123a3908d906001600160a01b031683613842565b9650808711156123fa576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e27742065786365656420617661696c61626c650000000000604482015290519081900360640190fd5b6001600160a01b0384161561247057612414878385613a78565b95508a86111561246b576040805162461bcd60e51b815260206004820152601b60248201527f506169642063616e277420657863656564207265717565737465640000000000604482015290519081900360640190fd5b612474565b8695505b600b54604080516323b872dd60e01b81523360048201523060248201526044810189905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156124ce57600080fd5b505af11580156124e2573d6000803e3d6000fd5b505050506040513d60208110156124f857600080fd5b5051612542576040805162461bcd60e51b81526020600482015260146024820152734572726f722070756c6c696e6720746f6b656e7360601b604482015290519081900360640190fd5b845461255d90879061010090046001600160801b0316613b27565b9050600160801b81106125aa576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b84546001600160801b03821661010002610100600160881b0319909116178555604080513381526001600160a01b038c166020820152600081830152606081018d90526080810189905260a0810188905290518d91600080516020614a93833981519152919081900360c00190a250505050509550959350505050565b600d6020526000908152604090205481565b600a546001600160a01b031690565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f925780601f10610f6757610100808354040283529160200191610f92565b3360009081526004602090815260408083206001600160a01b038616845290915290205460ff16151581151514612745573360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35b5050565b600c60205260009081526040902080546001820154600283015460039093015460ff8316936101009093046001600160801b0316926001600160a01b0392831692908116911685565b60408051600360f81b60208083019190915230606090811b6021840152339081901b603584015260498084018890528451808503909101815260698401808652815191840191909120610109850186526000808352608986018181526001600160a01b038e811660a9890190815260c989019687528d821660e9909901988952848452600c909752979091209251835491516001600160801b031661010002610100600160881b031991151560ff19909316929092171617825592516001820180549187166001600160a01b03199283161790559151600282018054918716918416919091179055925160039390930180549390941692169190911790915561289b8187614040565b604080516305b37e1560e41b81526004810183815260248201928352604482018590526001600160a01b038a1692635b37e15092859288928892606401848480828437600081840152601f19601f820116905080830192505050945050505050602060405180830381600087803b15801561291557600080fd5b505af1158015612929573d6000803e3d6000fd5b505050506040513d602081101561293f57600080fd5b5051612992576040805162461bcd60e51b815260206004820152601c60248201527f4572726f72206372656174696e67206465627420696e206d6f64656c00000000604482015290519081900360640190fd5b807fc46d3d245e649272659dd5731879c1b019caccb00acb3a94488a28c82ef924a685858560405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a29695505050505050565b612a4a85858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250613c2b915050565b5050505050565b60408051600360f81b60208083019190915230606090811b60218401529490941b6001600160601b0319166035820152604980820193909352815180820390930183526069019052805191012090565b6000818152600160205260409020546060906001600160a01b0316612b04576040805162461bcd60e51b8152602060048201526014602482015273105cdcd95d08191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b6008546001600160a01b03168015612c4a57806001600160a01b031663c87b56dd846040518263ffffffff1660e01b81526004018082815260200191505060006040518083038186803b158015612b5a57600080fd5b505afa158015612b6e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612b9757600080fd5b8101908080516040519392919084600160201b821115612bb657600080fd5b908301906020820185811115612bcb57600080fd5b8251600160201b811182820188101715612be457600080fd5b82525081516020918201929091019080838360005b83811015612c11578181015183820152602001612bf9565b50505050905090810190601f168015612c3e5780820380516001836020036101000a031916815260200191505b50604052505050611606565b604051806020016040528060008152509392505050565b60608088878114612ca35760405162461bcd60e51b815260040180806020018281038252602d815260200180614a66602d913960400191505060405180910390fd5b6000806001600160a01b03881615612daf5760405163b077c09b60e01b8152602060048201908152602482018890526001600160a01b038a169163b077c09b918a918a91908190604401848480828437600081840152601f19601f82011690508083019250505093505050506040805180830381600087803b158015612d2857600080fd5b505af1158015612d3c573d6000803e3d6000fd5b505050506040513d6040811015612d5257600080fd5b508051602091820151604080516001600160a01b038d168152938401879052838101839052606084018290525191945092507f79601cc1ca8f1ff7c3e7f7b522c2f1377cdb4c318a131afaf426cb2c976ef4be9181900360800190a15b82604051908082528060200260200182016040528015612dd9578160200160208202803883390190505b50945082604051908082528060200260200182016040528015612e06578160200160208202803883390190505b50935060005b83811015611e625760008c8c83818110612e2257fe5b905060200201359050612e4a8f8f84818110612e3a57fe5b905060200201358b838787614184565b888481518110612e5657fe5b60200260200101888581518110612e6957fe5b6020908102919091010191909152528e8e83818110612e8457fe5b90506020020135600080516020614a93833981519152338d8460008c8881518110612eab57fe5b60200260200101518c8981518110612ebf57fe5b602002602001015160405180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b03168152602001858152602001848152602001838152602001828152602001965050505050505060405180910390a250600101612e0c565b600a546001600160a01b03163314612f8b576040805162461bcd60e51b815260206004820152601e60248201527f546865206f776e65722073686f756c64206265207468652073656e6465720000604482015290519081900360640190fd5b612745816144ce565b60006116068383613813565b6000818152600c6020526040812060018101546001600160a01b0316613003576040805162461bcd60e51b81526020600482015260136024820152721119589d08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b60018101546040805160248082018790528251808303909101815260449091019091526020810180516001600160e01b0316630ef6ac0f60e41b1790526000918291613058916001600160a01b031690614533565b91509150811561311f57825460ff161561311257847fa43b78c6d135806f3e817a90a7b690c0d2d94b7d2e356049fa5ba357c0fab9c33360005a458660003660405180886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039a509098505050505050505050a2825460ff191683555b6001149250610f01915050565b847fe000ee8a04c9b1ff738cb5c90d6a362bf5be3c83b1eb221377df6324747d4c073360005a4560003660405180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003995090975050505050505050a2825460ff19166001178355505050919050565b60006001600160a01b03831661321c576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b6132263385613b70565b61326f576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b6000848152600c60205260409020805461010090046001600160801b03168311156132e1576040805162461bcd60e51b815260206004820152601b60248201527f446562742062616c616e6365206973206e6f7420656e6f756768740000000000604482015290519081900360640190fd5b80546132fb9061010090046001600160801b0316846145eb565b81546001600160801b039190911661010002610100600160881b0319909116178155600b546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561337357600080fd5b505af1158015613387573d6000803e3d6000fd5b505050506040513d602081101561339d57600080fd5b50516133e7576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b604080513381526001600160a01b0386166020820152808201859052905186917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb919081900360600190a2506001949350505050565b60006001600160a01b038216613492576040805162461bcd60e51b815260206004820152601560248201527405f746f2073686f756c64206e6f742062652030783605c1b604482015290519081900360640190fd5b600080805b85811015613552578686828181106134ab57fe5b9050602002013592506134c1338460001c613b70565b1561354a576000838152600c60209081526040918290208054610100600160881b0319811690915582513381526001600160a01b038916928101929092526001600160801b036101009091041681830181905291519582019591935084917fa6786aab7dbbc48b4b0387488b407bd81448030ab207b50bea7dbb5fbc1cd9eb9181900360600190a25b600101613497565b50600b546040805163a9059cbb60e01b81526001600160a01b038781166004830152602482018790529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156135a957600080fd5b505af11580156135bd573d6000803e3d6000fd5b505050506040513d60208110156135d357600080fd5b505161361d576040805162461bcd60e51b81526020600482015260146024820152734572726f722073656e64696e6720746f6b656e7360601b604482015290519081900360640190fd5b50509392505050565b600a546001600160a01b03163314613685576040805162461bcd60e51b815260206004820152601e60248201527f546865206f776e65722073686f756c64206265207468652073656e6465720000604482015290519081900360640190fd5b6001600160a01b0381166136db576040805162461bcd60e51b8152602060048201526018602482015277183c181024b9903737ba1030903b30b634b21037bbb732b960411b604482015290519081900360640190fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b604051600160f91b6020820190815230606081811b60218501526001600160601b03198a821b8116603586015289821b811660498601529088901b16605d840152607183018690526000926002928a918a918a918a918a918a919060910183838082843780830192505050985050505050505050506040516020818303038152906040528051906020012090509695505050505050565b600b546001600160a01b031681565b6000908152600560205260409020546001600160a01b031690565b6000908152600160205260409020546001600160a01b031690565b6001600160a01b0380821660009081526004602090815260408083209386168352929052205460ff1692915050565b60006001600160a01b038316613895576040805162461bcd60e51b81526020600482015260136024820152721119589d08191bd95cc81b9bdd08195e1a5cdd606a1b604482015290519081900360640190fd5b604080516024810186905260448082018590528251808303909101815260649091019091526020810180516001600160e01b031663247e8b7d60e21b17905260009081906138e4908690614533565b9150915081156139c2576000868152600c602052604090205460ff16156139b957857fa43b78c6d135806f3e817a90a7b690c0d2d94b7d2e356049fa5ba357c0fab9c33360005a458660003660405180886001600160a01b03166001600160a01b03168152602001878152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039a509098505050505050505050a26000868152600c60205260409020805460ff191690555b91506116069050565b857fe000ee8a04c9b1ff738cb5c90d6a362bf5be3c83b1eb221377df6324747d4c0733345a4560003660405180876001600160a01b03166001600160a01b03168152602001868152602001858152602001848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003995090975050505050505050a26000868152600c60205260409020805460ff1916600117905550509392505050565b60008215801590613a8857508115155b613ad9576040805162461bcd60e51b815260206004820152601c60248201527f4f7261636c652070726f766964656420696e76616c6964207261746500000000604482015290519081900360640190fd5b6000613aeb848663ffffffff61463716565b9050828181613af657fe5b0491506000838281613b0457fe5b061115613b1f57613b1c82600163ffffffff613b2716565b91505b509392505050565b600082820183811015611606576040805162461bcd60e51b815260206004820152600c60248201526b416464206f766572666c6f7760a01b604482015290519081900360640190fd5b60006001600160a01b038316613bcd576040805162461bcd60e51b815260206004820152601a60248201527f30783020697320616e20696e76616c6964206f70657261746f72000000000000604482015290519081900360640190fd5b6000613bd8836137f8565b9050806001600160a01b0316846001600160a01b03161480613bff5750613bff8482613813565b80613c235750836001600160a01b0316613c18846137dd565b6001600160a01b0316145b949350505050565b82613c363382613b70565b613c87576040805162461bcd60e51b815260206004820152601960248201527f6d73672e73656e646572204e6f7420617574686f72697a656400000000000000604482015290519081900360640190fd5b846001600160a01b038116613cd9576040805162461bcd60e51b815260206004820152601360248201527205461726765742063616e27742062652030783606c1b604482015290519081900360640190fd5b8685816001600160a01b0316613cee826137f8565b6001600160a01b031614613d3d576040805162461bcd60e51b81526020600482015260116024820152702737ba1031bab93932b73a1037bbb732b960791b604482015290519081900360640190fd5b6000878152600160205260409020546001600160a01b0316613d5f8189614696565b613d6a818a8a614708565b858015613d845750613d84896001600160a01b031661488c565b15613ff357600080613e7e8b63150b7a0260e01b33868e8e60405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613e12578181015183820152602001613dfa565b50505050905090810190601f168015613e3f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199099169890981790975250614892945050505050565b91509150811580613ea057506001600160e01b03198116630a85bd0160e11b14155b15613ff057613f7d8b63f0b9e5ba60e01b858d8d60405160240180846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613f12578181015183820152602001613efa565b50505050905090810190601f168015613f3f5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990981697909717909652506148929350505050565b9092509050818015613f9f57506001600160e01b0319811663785cf2dd60e11b145b613ff0576040805162461bcd60e51b815260206004820152601b60248201527f436f6e74726163742072656a65637465642074686520746f6b656e0000000000604482015290519081900360640190fd5b50505b87896001600160a01b0316826001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050505050565b6000828152600160205260409020546001600160a01b0316156140a1576040805162461bcd60e51b8152602060048201526014602482015273417373657420616c72656164792065786973747360601b604482015290519081900360640190fd5b6140ab8183614967565b60405182906001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b031660009081526002602052604090205490565b6000821580159061411257508115155b614163576040805162461bcd60e51b815260206004820152601c60248201527f4f7261636c652070726f766964656420696e76616c6964207261746500000000604482015290519081900360640190fd5b82614174858463ffffffff61463716565b8161417b57fe5b04949350505050565b6000858152600c6020526040812060038101548291906001600160a01b038881169116146141f857604080516001600160a01b0389168152905189917f8a1ca4383d0682548257effd0249245baaabe2c4672c83c48397a88faa0831f0919081900360200190a250600091508190506143d9565b60018101546142129089906001600160a01b031688613842565b9250858311156142535760405162461bcd60e51b8152600401808060200182810382526021815260200180614a456021913960400191505060405180910390fd5b6001600160a01b0387166142675782614272565b614272838686613a78565b600b54604080516323b872dd60e01b81523360048201523060248201526044810184905290519294506001600160a01b03909116916323b872dd916064808201926020929091908290030181600087803b1580156142cf57600080fd5b505af11580156142e3573d6000803e3d6000fd5b505050506040513d60208110156142f957600080fd5b505161434c576040805162461bcd60e51b815260206004820152601c60248201527f4572726f722070756c6c696e67207061796d656e7420746f6b656e7300000000604482015290519081900360640190fd5b805460009061436a90849061010090046001600160801b0316613b27565b9050600160801b81106143b7576040805162461bcd60e51b815260206004820152601060248201526f75696e74313238204f766572666c6f7760801b604482015290519081900360640190fd5b81546001600160801b0390911661010002610100600160881b03199091161790555b9550959350505050565b6000806060606445605002046001600160a01b038616815a106144065781614408565b5a5b866040518082805190602001908083835b602083106144385780518252601f199092019160209182019101614419565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303818686fa925050503d8060008114614499576040519150601f19603f3d011682016040523d82523d6000602084013e61449e565b606091505b5080519195509250156144c5578180602001905160208110156144c057600080fd5b505192505b50509250929050565b604080516001600160a01b038316815290516000917f8830bfff0a198778822a37d97bfba3d9d6e08bcd080eb82f2a76f2060a7494ec919081900360200190a150600880546001600160a01b0383166001600160a01b03199091161790556001919050565b6000806060606445605002046001600160a01b038616815a106145565781614558565b5a5b866040518082805190602001908083835b602083106145885780518252601f199092019160209182019101614569565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038160008787f1925050503d8060008114614499576040519150601f19603f3d011682016040523d82523d6000602084013e61449e565b600081831015614631576040805162461bcd60e51b815260206004820152600c60248201526b537562206f766572666c6f7760a01b604482015290519081900360640190fd5b50900390565b60008261464657506000610fa8565b8282028284828161465357fe5b0414611606576040805162461bcd60e51b815260206004820152600d60248201526c4d756c74206f766572666c6f7760981b604482015290519081900360640190fd5b6000818152600560205260409020546001600160a01b0316156127455760008181526005602052604080822080546001600160a01b0319169055518291906001600160a01b038516907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925908390a45050565b600081815260036020526040812054906147326001614726876140e7565b9063ffffffff6145eb16565b90508082146147bd576001600160a01b038516600090815260026020526040812080548390811061475f57fe5b906000526020600020015490508060026000886001600160a01b03166001600160a01b03168152602001908152602001600020848154811061479d57fe5b600091825260208083209091019290925591825260039052604090208290555b6001600160a01b03851660009081526002602052604081208054839081106147e157fe5b60009182526020808320909101929092556001600160a01b0387168152600290915260409020805490614818906000198301614a07565b50600083815260016020526040812080546001600160a01b0319166001600160a01b038716179055614849856140e7565b6001600160a01b03909516600090815260026020908152604080832080546001810182559084528284200187905595825260039052939093209390935550505050565b3b151590565b6000806060846001600160a01b0316846040518082805190602001908083835b602083106148d15780518252601f1990920191602091820191016148b2565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614933576040519150601f19603f3d011682016040523d82523d6000602084013e614938565b606091505b50805191945091501561495f5780806020019051602081101561495a57600080fd5b505191505b509250929050565b600081815260016020526040812080546001600160a01b0319166001600160a01b038516179055614997836140e7565b6001600160a01b0390931660009081526002602090815260408083208054600181810183559185528385200186905585845260039092528220949094556009805494850181559052507f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af90910155565b8154818355818111156110a1576000838152602090206110a1918101908301610f9a91905b80821115614a405760008155600101614a2c565b509056fe506169642063616e2774206265206d6f7265207468616e207265717565737465645f69647320616e64205f616d6f756e74732073686f756c642068617665207468652073616d65206c656e67746825b52320bc27b845f37eae2240cc285c7b6e5643fc2995e6d22afa10e2f657d2a265627a7a72315820685c06f24239743f2b2bb3868f6b7c45d449b1ca3987bdfdcfe959f04a9c192164736f6c634300050b0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f970b8e36e23f7fc3fd752eea86f8be8d83375a6
-----Decoded View---------------
Arg [0] : _token (address): 0xF970b8E36e23F7fC3FD752EeA86f8Be8D83375A6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f970b8e36e23f7fc3fd752eea86f8be8d83375a6
Deployed Bytecode Sourcemap
35157:20968:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35157:20968:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16015:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16015:167:0;-1:-1:-1;;;;;;16015:167:0;;:::i;:::-;;;;;;;;;;;;;;;;;;18590:85;;;:::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;18590:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24336:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24336:119:0;;:::i;:::-;;;;-1:-1:-1;;;;;24336:119:0;;;;;;;;;;;;;;26118:392;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26118:392:0;;;;;;;;:::i;:::-;;40965:1437;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40965:1437:0;;;;;;;;-1:-1:-1;;;;;40965:1437:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40965:1437:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40965:1437:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;40965:1437:0;;-1:-1:-1;40965:1437:0;-1:-1:-1;40965:1437:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20976:98;;;:::i;:::-;;;;;;;;;;;;;;;;52366:553;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52366:553:0;;;;;;-1:-1:-1;;;;;52366:553:0;;:::i;30716:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30716:227:0;;;;;;;;;;;;;;;;;:::i;24864:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24864:148:0;;;;;;;;:::i;20700:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20700:118:0;-1:-1:-1;;;;;20700:118: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;20700:118:0;;;;;;;;;;;;;;;;;38152:880;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;38152:880:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;38152:880:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38152:880:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;38152:880:0;;-1:-1:-1;38152:880:0;-1:-1:-1;38152:880:0;:::i;21988:282::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21988:282:0;;;;;;;;:::i;29255:230::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29255:230:0;;;;;;;;;;;;;;;;;:::i;39853:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;39853:311:0;;;;;;;;:::i;45524:1515::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;45524:1515:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45524:1515:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45524:1515:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45524:1515:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45524:1515:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45524:1515:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45524:1515:0;;;;-1:-1:-1;;;;;45524:1515:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45524:1515:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45524:1515:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;45524:1515:0;;-1:-1:-1;45524:1515:0;-1:-1:-1;45524:1515:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;45524:1515: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;45524:1515:0;;;;;;;;;;;;;;;;;;;21343:183;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21343:183:0;;:::i;54418:491::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54418:491:0;;:::i;22597:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22597:111:0;;:::i;37317:827::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;37317:827:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;37317:827:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37317:827:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;37317:827:0;;-1:-1:-1;37317:827:0;-1:-1:-1;37317:827:0;:::i;20242:98::-;;;:::i;23096:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23096:111:0;-1:-1:-1;;;;;23096:111:0;;:::i;42410:1871::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;42410:1871:0;;;;;;;;-1:-1:-1;;;;;42410:1871:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;42410:1871:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42410:1871:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;42410:1871:0;;-1:-1:-1;42410:1871:0;-1:-1:-1;42410:1871:0;:::i;36765:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36765:41:0;-1:-1:-1;;;;;36765:41:0;;:::i;34615:81::-;;;:::i;18745:89::-;;;:::i;25637:289::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25637:289:0;;;;;;;;;;:::i;36721:37::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36721:37:0;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;36721:37:0;;;;;;;-1:-1:-1;;;;;36721:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39040:805;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;39040:805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39040:805:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39040:805:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;39040:805:0;;-1:-1:-1;39040:805:0;-1:-1:-1;39040:805:0;:::i;30001:306::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;30001:306:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;30001:306:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30001:306:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;30001:306:0;;-1:-1:-1;30001:306:0;-1:-1:-1;30001:306:0;:::i;40647:310::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40647:310:0;;;;;;;;:::i;19122:289::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19122:289:0;;:::i;44289:1227::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;44289:1227:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44289:1227:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44289:1227:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44289:1227:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44289:1227:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44289:1227:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44289:1227:0;;;;-1:-1:-1;;;;;44289:1227:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;44289:1227:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44289:1227:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;44289:1227:0;;-1:-1:-1;44289:1227:0;-1:-1:-1;44289:1227:0;:::i;37198:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37198:111:0;-1:-1:-1;;;;;37198:111:0;;:::i;23725:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23725:189:0;;;;;;;;;;:::i;51164:1194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51164:1194:0;;:::i;52927:686::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52927:686:0;;;-1:-1:-1;;;;;52927:686:0;;;;;;;;;;:::i;53621:789::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53621:789:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;53621:789:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;53621:789:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;53621:789:0;;-1:-1:-1;53621:789:0;-1:-1:-1;53621:789:0;-1:-1:-1;;;;;53621:789:0;;:::i;34829:228::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34829:228:0;-1:-1:-1;;;;;34829:228:0;;:::i;40172:467::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;40172:467:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40172:467:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40172:467:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;40172:467:0;;-1:-1:-1;40172:467:0;-1:-1:-1;40172:467:0;:::i;36693:19::-;;;:::i;16015:167::-;-1:-1:-1;;;;;;16141:33:0;;16112:4;16141:33;;;;;;;;;;;;;16015:167;;;;:::o;18590:85::-;18662:5;18655:12;;;;;;;;-1:-1:-1;;18655:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18629:13;;18655:12;;18662:5;;18655:12;;18662:5;18655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18590:85;;:::o;24336:119::-;24398:7;24425:22;24438:8;24425:12;:22::i;:::-;24418:29;24336:119;-1:-1:-1;;24336:119:0:o;26118:392::-;26192:14;26209:18;26218:8;26209;:18::i;:::-;26192:35;-1:-1:-1;26246:10:0;-1:-1:-1;;;;;26246:20:0;;;;:61;;;26270:37;26288:10;26300:6;26270:17;:37::i;:::-;26238:98;;;;;-1:-1:-1;;;26238:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26377:9;-1:-1:-1;;;;;26351:35:0;:22;26364:8;26351:12;:22::i;:::-;-1:-1:-1;;;;;26351:35:0;;26347:156;;26403:19;;;;:9;:19;;;;;;:31;;-1:-1:-1;;;;;;26403:31:0;-1:-1:-1;;;;;26403:31:0;;;;;;;;;26454:37;;26403:19;;26454:37;;;;;;;26347:156;26118:392;;;:::o;40965:1437::-;41114:12;41178:10;;;:5;:10;;;;;41258;;;;41114:12;;41178:10;41244:34;;41184:3;;-1:-1:-1;;;;;41258:10:0;41270:7;41244:8;:34::i;:::-;41237:41;;41305:7;41297:4;:15;;41289:61;;;;-1:-1:-1;;;41289:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41394:11;;;;-1:-1:-1;;;;;41394:11:0;41421:29;;41417:322;;41492:14;41508:18;41530:6;-1:-1:-1;;;;;41530:17:0;;41548:11;;41530:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;41530:30:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41530:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41530:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41530:30:0;;;;;;;;41580:37;;;;;;;;;;;;;41530:30;;-1:-1:-1;41530:30:0;;-1:-1:-1;41593:3:0;;41580:37;;;;;;;;;;;41644:34;41653:4;41659:6;41667:10;41644:8;:34::i;:::-;41632:46;;41417:322;;;;;41723:4;41711:16;;41417:322;41794:5;;:56;;;-1:-1:-1;;;41794:56:0;;41813:10;41794:56;;;;41833:4;41794:56;;;;;;;;;;;;-1:-1:-1;;;;;41794:5:0;;;;:18;;:56;;;;;;;;;;;;;;;:5;;:56;;;5:2:-1;;;;30:1;27;20:12;5:2;41794:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41794:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41794:56:0;41786:97;;;;;-1:-1:-1;;;41786:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41967:12;;41932:18;;41953:27;;:9;;41967:12;;;-1:-1:-1;;;;;41967:12:0;41953:13;:27::i;:::-;41932:48;;-1:-1:-1;;;41999:10:0;:52;41991:81;;;;;-1:-1:-1;;;41991:81:0;;;;;;;;;;;;-1:-1:-1;;;41991:81:0;;;;;;;;;;;;;;;42083:34;;-1:-1:-1;;;;;42083:34:0;;;;-1:-1:-1;;;;;;42083:34:0;;;;;;42162:232;;;42214:10;42162:232;;-1:-1:-1;;;;;42162:232:0;;;;;;;;;;;;42083:12;42162:232;;;;;;;;;;;;;;;;;;42187:3;;-1:-1:-1;;;;;;;;;;;42162:232:0;;;;;;;;;40965:1437;;;;;;;;;;;:::o;20976:98::-;21049:10;:17;20976:98;:::o;52366:553::-;52428:14;-1:-1:-1;;;;;52463:19:0;;52455:53;;;;;-1:-1:-1;;;52455:53:0;;;;;;;;;;;;-1:-1:-1;;;52455:53:0;;;;;;;;;;;;;;;52527:39;52541:10;52561:3;52527:13;:39::i;:::-;52519:73;;;;;-1:-1:-1;;;52519:73:0;;;;;;;;;;;;-1:-1:-1;;;52519:73:0;;;;;;;;;;;;;;;-1:-1:-1;52603:17:0;52623:10;;;:5;:10;;;;;;;;52653:12;;-1:-1:-1;;;;;;52676:16:0;;;;52711:5;;:27;;-1:-1:-1;;;52711:27:0;;-1:-1:-1;;;;;52711:27:0;;;;;;;52653:12;;;;-1:-1:-1;;;;;52653:12:0;52711:27;;;;;;;;52653:12;;52623:10;;52711:5;;;;;:14;;:27;;;;;52623:10;52711:27;;;;;;;:5;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;52711:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52711:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52711:27:0;52703:60;;;;;-1:-1:-1;;;52703:60:0;;;;;;;;;;;;-1:-1:-1;;;52703:60:0;;;;;;;;;;;;;;;52779:132;;;52836:10;52779:132;;-1:-1:-1;;;;;52779:132:0;;;;;;;;;;;;;;52809:3;;52779:132;;;;;;;;;;52366:553;;;;;:::o;30716:227::-;30811:124;30841:5;30861:3;30879:8;30811:124;;;;;;;;;;;;30919:5;30811:15;:124::i;24864:148::-;24946:4;24970:34;24984:9;24995:8;24970:13;:34::i;:::-;24963:41;24864:148;-1:-1:-1;;;24864:148:0:o;20700:118::-;-1:-1:-1;;;;;20793:17:0;;;;;;:9;:17;;;;;;;;;20786:24;;;;;;;;;;;;;;;;;20757:16;;20786:24;;;20793:17;20786:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20700:118;;;:::o;38152:880::-;38375:218;;-1:-1:-1;;;38375:218:0;;;;;;38445:4;38375:218;;;;;;;;38469:10;38375:218;;;;;;;-1:-1:-1;;;;;;38375:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;38323:10;;38416:1;;38498:6;;38523:7;;38549:5;;38573;;;;38375:218;;38573:5;;;;38375:218;1:33:-1;57:3;49:6;45:16;35:26;;38375:218:0;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;38375:218:0;;;38351:253;;;;;;38346:258;;38629:161;;;;;;;;38656:5;38629:161;;;;;;38685:1;-1:-1:-1;;;;;38629:161:0;;;;;38742:6;-1:-1:-1;;;;;38629:161:0;;;;;38710:10;-1:-1:-1;;;;;38629:161:0;;;;;38771:7;-1:-1:-1;;;;;38629:161:0;;;;38617:5;:9;38623:2;38617:9;;;;;;;;;;;:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38617:173:0;;;;;-1:-1:-1;;;;;38617:173:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38617:173:0;;;;;-1:-1:-1;;;;;38617:173:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38617:173:0;;;;;-1:-1:-1;;;;;38617:173:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38617:173:0;;;;;-1:-1:-1;;;;;38617:173:0;;;;;;;;;38803:30;38821:2;38813:11;;38826:6;38803:9;:30::i;:::-;38852:24;;;-1:-1:-1;;;38852:24:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38852:13:0;;;;;38866:2;;38870:5;;;;38852:24;;38870:5;;;;38852:24;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;38852:24:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38852:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38852:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38852:24:0;38844:65;;;;;-1:-1:-1;;;38844:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38956:2;38927:97;38980:5;39007;;38927:97;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;38927:97:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;38927:97:0;;;;-1:-1:-1;38927:97:0;;-1:-1:-1;;;;;38927:97:0;38152:880;;;;;;;;:::o;21988:282::-;22072:7;-1:-1:-1;;;;;22100:20:0;;22092:57;;;;;-1:-1:-1;;;22092:57:0;;;;;;;;;;;;-1:-1:-1;;;22092:57:0;;;;;;;;;;;;;;;22177:18;22188:6;22177:10;:18::i;:::-;22168:6;:27;22160:59;;;;;-1:-1:-1;;;22160:59:0;;;;;;;;;;;;-1:-1:-1;;;22160:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22237:17:0;;;;;;:9;:17;;;;;:25;;22255:6;;22237:25;;;;;;;;;;;;;;22230:32;;21988:282;;;;:::o;29255:230::-;29354:123;29384:5;29404:3;29422:8;29354:123;;;;;;;;;;;;29462:4;29354:15;:123::i;39853:311::-;40003:142;;;-1:-1:-1;;;40003:142:0;;;;;;;;40073:4;40003:142;;;;;;;;;;;;-1:-1:-1;;;;;;40003:142:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;40003:142:0;;;;39979:177;;;;;;39853:311::o;45524:1515::-;45738:21;;45817:4;45847:29;;;45839:87;;;;-1:-1:-1;;;45839:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45939:14;;-1:-1:-1;;;;;45997:21:0;;;45993:193;;46058:43;;-1:-1:-1;;;46058:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46058:30:0;;;;;46089:11;;;;46058:43;;;;;46089:11;;;;46058:43;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;46058:43:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46058:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46058:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46058:43:0;;;;;;;;46121:53;;-1:-1:-1;;;;;46121:53:0;;;;;;;;;;;;;;;;;;;;;;;46058:43;;-1:-1:-1;46058:43:0;-1:-1:-1;46121:53:0;;;;;;;;;45993:193;46219:5;46205:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;46205:20:0;;46198:27;;46263:5;46249:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;46249:20:0;-1:-1:-1;46236:33:0;-1:-1:-1;46285:9:0;46280:752;46304:5;46300:1;:9;46280:752;;;46331:19;46353:13;;46367:1;46353:16;;;;;;;;;;;;;46331:38;;46411:225;46434:4;;46439:1;46434:7;;;;;;;;;;;;;46460;46505:1;-1:-1:-1;;;;;46486:21:0;:7;-1:-1:-1;;;;;46486:21:0;;;:81;;46556:11;46486:81;;;46510:43;46521:11;46534:6;46542:10;46510;:43::i;:::-;46586:6;46611:10;46411:4;:225::i;:::-;46385:4;46390:1;46385:7;;;;;;;;;;;;;46394:10;46405:1;46394:13;;;;;;;;;;;;;46384:252;;;;;;;;;;46676:11;46659:10;46670:1;46659:13;;;;;;;;;;;;;;:28;;46651:68;;;;;-1:-1:-1;;;46651:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46770:4;;46775:1;46770:7;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46805:10:0;46843:7;46881:1;46919:11;46956:4;46961:1;46956:7;;;;;;;;;;;;;;46991:10;47002:1;46991:13;;;;;;;;;;;;;;46741:279;;;;-1:-1:-1;;;;;46741:279:0;-1:-1:-1;;;;;46741:279:0;;;;;;-1:-1:-1;;;;;46741:279:0;-1:-1:-1;;;;;46741:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46311:3:0;;46280:752;;;;45524:1515;;;;;;;;;;;;;;:::o;21343:183::-;21441:10;:17;21404:7;;21432:26;;21424:58;;;;;-1:-1:-1;;;21424:58:0;;;;;;;;;;;;-1:-1:-1;;;21424:58:0;;;;;;;;;;;;;;;21500:10;21511:6;21500:18;;;;;;;;;;;;;;;;21493:25;;21343:183;;;:::o;54418:491::-;54473:7;54513:10;;;:5;:10;;;;;54538;;;;54534:368;;;54572:1;54565:8;;;;;54534:368;54684:10;;;;54714:119;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;54714:119:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;54607:12:0;;;;54639:209;;-1:-1:-1;;;;;54684:10:0;;54639:18;:209::i;:::-;54606:242;;;;54870:7;:20;;54889:1;54870:20;;;54880:6;54870:20;54863:27;;;;;;;22597:111;22655:7;22682:18;22691:8;22682;:18::i;37317:827::-;37509:10;37463;37502:18;;;:6;:18;;;;;;;;:20;;;;;;;;;37562:143;;-1:-1:-1;;;37562:143:0;;;;37632:4;37562:143;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;37562:143:0;;;;;;37538:178;;;;;;;;;37741:161;;;;;;;;;;;;;;-1:-1:-1;;;;;37741:161:0;;;;;;;;;;;;;;;;;;;;;;;;;37729:9;;;:5;:9;;;;;;;:173;;;;;;-1:-1:-1;;;;;37729:173:0;;;-1:-1:-1;;;;;;37729:173:0;;;-1:-1:-1;;37729:173:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37729:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37538:178;37915:30;37538:178;37938:6;37915:9;:30::i;:::-;37964:24;;;-1:-1:-1;;;37964:24:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37964:13:0;;;;;37978:2;;37982:5;;;;37964:24;;37982:5;;;;37964:24;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;37964:24:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37964:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37964:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37964:24:0;37956:65;;;;;-1:-1:-1;;;37956:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38067:2;38039:97;38092:5;38119;;38039:97;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;38039:97:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;38039:97:0;;;;-1:-1:-1;38039:97:0;;-1:-1:-1;;;;;38039:97:0;37317:827;;;;;;;;:::o;20242:98::-;20286:16;20322:10;20315:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20242:98;:::o;23096:111::-;23154:7;23181:18;23192:6;23181:10;:18::i;42410:1871::-;42560:12;42624:9;;;:5;:9;;;;;42700:11;;;;42560:12;;42624:9;-1:-1:-1;;;;;42700:11:0;42560:12;;;42857:29;;42853:286;;42926:29;;-1:-1:-1;;;42926:29:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42926:17:0;;;;;42944:10;;;;42926:29;;;;;42944:10;;;;42926:29;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;42926:29:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42926:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42926:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42926:29:0;;;;;;;;42975:36;;;;;;;;;;;;;42926:29;;-1:-1:-1;42926:29:0;;-1:-1:-1;42988:2:0;;42975:36;;;;;;;;;43038:38;43049:6;43057;43065:10;43038;:38::i;:::-;43026:50;;42853:286;;;-1:-1:-1;43121:6:0;42853:286;43205:10;;;;43192:35;;43201:2;;-1:-1:-1;;;;;43205:10:0;43217:9;43192:8;:35::i;:::-;43185:42;;43254:9;43246:4;:17;;43238:57;;;;;-1:-1:-1;;;43238:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43361:29:0;;;43357:231;;43419:34;43428:4;43434:6;43442:10;43419:8;:34::i;:::-;43407:46;;43489:6;43476:9;:19;;43468:59;;;;;-1:-1:-1;;;43468:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43357:231;;;43572:4;43560:16;;43357:231;43643:5;;:56;;;-1:-1:-1;;;43643:56:0;;43662:10;43643:56;;;;43682:4;43643:56;;;;;;;;;;;;-1:-1:-1;;;;;43643:5:0;;;;:18;;:56;;;;;;;;;;;;;;;:5;;:56;;;5:2:-1;;;;30:1;27;20:12;5:2;43643:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43643:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43643:56:0;43635:89;;;;;-1:-1:-1;;;43635:89:0;;;;;;;;;;;;-1:-1:-1;;;43635:89:0;;;;;;;;;;;;;;;43851:12;;43837:27;;:9;;43851:12;;;-1:-1:-1;;;;;43851:12:0;43837:13;:27::i;:::-;43825:39;;-1:-1:-1;;;43883:9:0;:51;43875:80;;;;;-1:-1:-1;;;43875:80:0;;;;;;;;;;;;-1:-1:-1;;;43875:80:0;;;;;;;;;;;;;;;43966:33;;-1:-1:-1;;;;;43966:33:0;;;;-1:-1:-1;;;;;;43966:33:0;;;;;;44044:229;;;44095:10;44044:229;;-1:-1:-1;;;;;44044:229:0;;;;;;43966:12;44044:229;;;;;;;;;;;;;;;;;;;;;;;;44069:2;;-1:-1:-1;;;;;;;;;;;44044:229:0;;;;;;;;;42410:1871;;;;;;;;;;;;;:::o;36765:41::-;;;;;;;;;;;;;:::o;34615:81::-;34682:6;;-1:-1:-1;;;;;34682:6:0;34615:81;:::o;18745:89::-;18819:7;18812:14;;;;;;;;-1:-1:-1;;18812:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18786:13;;18812:14;;18819:7;;18812:14;;18819:7;18812:14;;;;;;;;;;;;;;;;;;;;;;;;25637:289;25736:10;25725:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;25725:33:0;;;;;;;;;;;;:48;;;;;;25721:198;;25801:10;25790:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;25790:33:0;;;;;;;;;;;;:47;;-1:-1:-1;;25790:47:0;;;;;;;;;;25857:50;;;;;;;25790:33;;25801:10;25857:50;;;;;;;;;;;25721:198;25637:289;;:::o;36721:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36721:37:0;;-1:-1:-1;;;;;36721:37:0;;;;;;;;;;:::o;39040:805::-;39263:143;;;-1:-1:-1;;;39263:143:0;;;;;;;;39333:4;39263:143;;;;;;;;39357:10;39263:143;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;39263:143:0;;;;;;39239:178;;;;;;;;;39442:161;;;;;39211:10;39442:161;;;;;;;;;-1:-1:-1;;;;;39442:161:0;;;;;;;;;;;;;;;;;;;;;;;;;39430:9;;;:5;:9;;;;;;;:173;;;;;;-1:-1:-1;;;;;39430:173:0;;;-1:-1:-1;;;;;;39430:173:0;;;-1:-1:-1;;39430:173:0;;;;;;;;;;;;;39263:143;39430:173;;;;;;;-1:-1:-1;;;;;;39430:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;39304:1;39430:173;;;;;;;;;;;;;;;;;;;39616:30;39239:178;39639:6;39616:9;:30::i;:::-;39665:24;;;-1:-1:-1;;;39665:24:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39665:13:0;;;;;39679:2;;39683:5;;;;39665:24;;39683:5;;;;39665:24;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;39665:24:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39665:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39665:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39665:24:0;39657:65;;;;;-1:-1:-1;;;39657:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39769:2;39740:97;39793:5;39820;;39740:97;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;39740:97:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;39740:97:0;;;;-1:-1:-1;39740:97:0;;-1:-1:-1;;;;;39740:97:0;39040:805;;;;;;;;:::o;30001:306::-;30169:130;30199:5;30219:3;30237:8;30260:9;;30169:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;30284:4:0;;-1:-1:-1;30169:15:0;;-1:-1:-1;;30169:130:0:i;:::-;30001:306;;;;;:::o;40647:310::-;40797:141;;;-1:-1:-1;;;40797:141:0;;;;;;;;40867:4;40797:141;;;;;;;;;;;;-1:-1:-1;;;;;;40797:141:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;40797:141:0;;;;40773:176;;;;;;40647:310::o;19122:289::-;19246:1;19215:19;;;:9;:19;;;;;;19181:13;;-1:-1:-1;;;;;19215:19:0;19207:66;;;;;-1:-1:-1;;;19207:66:0;;;;;;;;;;;;-1:-1:-1;;;19207:66:0;;;;;;;;;;;;;;;19307:12;;-1:-1:-1;;;;;19307:12:0;19337:31;;:66;;19376:8;-1:-1:-1;;;;;19376:17:0;;19394:8;19376:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19376:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19376:27:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;19376:27:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;19376:27:0;;;;;;;;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;19376:27:0;;420:4:-1;411:14;;;;19376:27:0;;;;;411:14:-1;19376:27: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;19376:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19337:66;;;;;;;;;;;;;;;19330:73;19122:289;-1:-1:-1;;;19122:289:0:o;44289:1227::-;44493:21;;44572:4;44602:24;;;44594:82;;;;-1:-1:-1;;;44594:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44689:14;;-1:-1:-1;;;;;44747:21:0;;;44743:193;;44808:43;;-1:-1:-1;;;44808:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44808:30:0;;;;;44839:11;;;;44808:43;;;;;44839:11;;;;44808:43;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44808:43:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44808:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44808:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44808:43:0;;;;;;;;44871:53;;-1:-1:-1;;;;;44871:53:0;;;;;;;;;;;;;;;;;;;;;;;44808:43;;-1:-1:-1;44808:43:0;-1:-1:-1;44871:53:0;;;;;;;;;44743:193;44969:5;44955:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;44955:20:0;;44948:27;;45013:5;44999:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;44999:20:0;-1:-1:-1;44986:33:0;-1:-1:-1;45035:9:0;45030:479;45054:5;45050:1;:9;45030:479;;;45081:14;45098:8;;45107:1;45098:11;;;;;;;;;;;;;45081:28;;45151:50;45156:4;;45161:1;45156:7;;;;;;;;;;;;;45165;45174:6;45182;45190:10;45151:4;:50::i;:::-;45125:4;45130:1;45125:7;;;;;;;;;;;;;45134:10;45145:1;45134:13;;;;;;;;;;;;;;;;;45124:77;;;;;45252:4;;45257:1;45252:7;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45287:10:0;45325:7;45363:6;45406:1;45433:4;45438:1;45433:7;;;;;;;;;;;;;;45468:10;45479:1;45468:13;;;;;;;;;;;;;;45223:274;;;;-1:-1:-1;;;;;45223:274:0;-1:-1:-1;;;;;45223:274:0;;;;;;-1:-1:-1;;;;;45223:274:0;-1:-1:-1;;;;;45223:274:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45061:3:0;;45030:479;;37198:111;34417:6;;-1:-1:-1;;;;;34417:6:0;34403:10;:20;34395:63;;;;;-1:-1:-1;;;34395:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37275:26;37291:9;37275:15;:26::i;23725:189::-;23840:4;23864:42;23882:9;23893:12;23864:17;:42::i;51164:1194::-;51208:4;51245:10;;;:5;:10;;;;;51274;;;;-1:-1:-1;;;;;51274:10:0;51266:54;;;;;-1:-1:-1;;;51266:54:0;;;;;;;;;;;;-1:-1:-1;;;51266:54:0;;;;;;;;;;;;;;;51401:10;;;;51427:101;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;51427:101:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;51334:12:0;;;;51366:173;;-1:-1:-1;;;;;51401:10:0;;51366:12;:173::i;:::-;51333:206;;;;51556:7;51552:799;;;51584:10;;;;51580:402;;;51661:3;51620:308;51696:10;51737:1;51771:9;51814:14;51860:6;51900:8;;51620:308;;;;-1:-1:-1;;;;;51620:308:0;-1:-1:-1;;;;;51620:308:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;51620:308:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;51620:308:0;;;;-1:-1:-1;51620:308:0;;-1:-1:-1;;;;;;;;;51620:308:0;51949:17;;-1:-1:-1;;51949:17:0;;;51580:402;52031:1;52005:29;;-1:-1:-1;51998:36:0;;-1:-1:-1;;51998:36:0;51552:799;52102:3;52072:235;52133:10;52170:1;52200:9;52239:14;52283:8;;52072:235;;;;-1:-1:-1;;;;;52072:235:0;-1:-1:-1;;;;;52072:235:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;52072:235:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;52072:235:0;;;;-1:-1:-1;52072:235:0;;-1:-1:-1;;;;;;;;52072:235:0;52322:17;;-1:-1:-1;;52322:17:0;52335:4;52322:17;;;51164:1194;;;;;;:::o;52927:686::-;53013:12;-1:-1:-1;;;;;53046:19:0;;53038:53;;;;;-1:-1:-1;;;53038:53:0;;;;;;;;;;;;-1:-1:-1;;;53038:53:0;;;;;;;;;;;;;;;53110:39;53124:10;53144:3;53110:13;:39::i;:::-;53102:73;;;;;-1:-1:-1;;;53102:73:0;;;;;;;;;;;;-1:-1:-1;;;53102:73:0;;;;;;;;;;;;;;;53186:17;53206:10;;;:5;:10;;;;;53235:12;;;;;-1:-1:-1;;;;;53235:12:0;-1:-1:-1;;53235:23:0;53227:63;;;;;-1:-1:-1;;;53227:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;53332:12;;53324:34;;53332:12;;;-1:-1:-1;;;;;53332:12:0;53350:7;53324:25;:34::i;:::-;53301:58;;-1:-1:-1;;;;;53301:58:0;;;;;;-1:-1:-1;;;;;;53301:58:0;;;;;;53378:5;;:28;;;-1:-1:-1;;;53378:28:0;;-1:-1:-1;;;;;53378:28:0;;;;;;;;;;;;;;;:5;;;;;:14;;:28;;;;;;;;;;;;;;53301:12;53378:5;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;53378:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53378:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53378:28:0;53370:61;;;;;-1:-1:-1;;;53370:61:0;;;;;;;;;;;;-1:-1:-1;;;53370:61:0;;;;;;;;;;;;;;;53447:133;;;53504:10;53447:133;;-1:-1:-1;;;;;53447:133:0;;;;;;;;;;;;;;53477:3;;53447:133;;;;;;;;;;-1:-1:-1;53601:4:0;;52927:686;-1:-1:-1;;;;52927:686:0:o;53621:789::-;53700:13;-1:-1:-1;;;;;53734:19:0;;53726:53;;;;;-1:-1:-1;;;53726:53:0;;;;;;;;;;;;-1:-1:-1;;;53726:53:0;;;;;;;;;;;;;;;53790:14;;;53841:492;53861:15;;;53841:492;;;53907:4;;53912:1;53907:7;;;;;;;;;;;;;53898:16;;53933:42;53947:10;53967:6;53959:15;;53933:13;:42::i;:::-;53929:393;;;54006:13;;;;:5;:13;;;;;;;;;:21;;-1:-1:-1;;;;;;54046:25:0;;;;;54130:176;;54206:10;54130:176;;-1:-1:-1;;;;;54130:176:0;;;;;;;;;-1:-1:-1;;;;;54006:21:0;;;;;54130:176;;;;;;;;54090:16;;;;54006:21;;-1:-1:-1;54012:6:0;;54130:176;;;;;;;;;53929:393;53878:3;;53841:492;;;-1:-1:-1;54351:5:0;;:26;;;-1:-1:-1;;;54351:26:0;;-1:-1:-1;;;;;54351:26:0;;;;;;;;;;;;;;;:5;;;;;:14;;:26;;;;;;;;;;;;;;:5;;:26;;;5:2:-1;;;;30:1;27;20:12;5:2;54351:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54351:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54351:26:0;54343:59;;;;;-1:-1:-1;;;54343:59:0;;;;;;;;;;;;-1:-1:-1;;;54343:59:0;;;;;;;;;;;;;;;53621:789;;;;;;;:::o;34829:228::-;34417:6;;-1:-1:-1;;;;;34417:6:0;34403:10;:20;34395:63;;;;;-1:-1:-1;;;34395:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34913:23:0;;34905:60;;;;;-1:-1:-1;;;34905:60:0;;;;;;;;;;;;-1:-1:-1;;;34905:60:0;;;;;;;;;;;;;;;35002:6;;34981:39;;-1:-1:-1;;;;;34981:39:0;;;;35002:6;;34981:39;;35002:6;;34981:39;35031:6;:18;;-1:-1:-1;;;;;;35031:18:0;-1:-1:-1;;;;;35031:18:0;;;;;;;;;;34829:228::o;40172:467::-;40404:216;;-1:-1:-1;;;40404:216:0;;;;;;40474:4;40404:216;;;;;;;;-1:-1:-1;;;;;;40404:216:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40353:7;;40445:1;;40498:8;;40525:6;;40550:7;;40576:5;;40600;;;;40404:216;;;40600:5;;;;40404:216;1:33:-1;57:3;49:6;45:16;35:26;;40404:216:0;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40404:216:0;;;40380:251;;;;;;40373:258;;40172:467;;;;;;;;:::o;36693:19::-;;;-1:-1:-1;;;;;36693:19:0;;:::o;24463:117::-;24526:7;24553:19;;;:9;:19;;;;;;-1:-1:-1;;;;;24553:19:0;;24463:117::o;22716:113::-;22775:7;22802:19;;;:9;:19;;;;;;-1:-1:-1;;;;;22802:19:0;;22716:113::o;23922:183::-;-1:-1:-1;;;;;24062:24:0;;;24038:4;24062:24;;;:10;:24;;;;;;;;:35;;;;;;;;;;;;23922:183;;;;:::o;48623:1256::-;48740:7;-1:-1:-1;;;;;48768:18:0;;48760:50;;;;;-1:-1:-1;;;48760:50:0;;;;;;;;;;;;-1:-1:-1;;;48760:50:0;;;;;;;;;;;;;;;48911:130;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;48911:130:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;48824:12:0;;;;48854:198;;48889:6;;48854:12;:198::i;:::-;48823:229;;;;49069:7;49065:807;;;49097:10;;;;:5;:10;;;;;:16;;;49093:412;;;49180:3;49139:306;49215:10;49256:1;49290:9;49333:14;49379:4;49417:8;;49139:306;;;;-1:-1:-1;;;;;49139:306:0;-1:-1:-1;;;;;49139:306:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;49139:306:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;49139:306:0;;;;-1:-1:-1;49139:306:0;;-1:-1:-1;;;;;;;;;49139:306:0;49473:10;;;;:5;:10;;;;;49466:23;;-1:-1:-1;;49466:23:0;;;49093:412;49536:4;-1:-1:-1;49521:20:0;;-1:-1:-1;49521:20:0;49065:807;49609:3;49579:243;49640:10;49677:9;49715;49754:14;49798:8;;49579:243;;;;-1:-1:-1;;;;;49579:243:0;-1:-1:-1;;;;;49579:243:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;49579:243:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;49579:243:0;;;;-1:-1:-1;49579:243:0;;-1:-1:-1;;;;;;;;49579:243:0;49837:10;;;;:5;:10;;;;;:23;;-1:-1:-1;;49837:23:0;49856:4;49837:23;;;48623:1256;;;;;;;:::o;50176:411::-;50306:15;50342:12;;;;;:32;;-1:-1:-1;50358:16:0;;;50342:32;50334:73;;;;;-1:-1:-1;;;50334:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50418:11;50432:21;:7;50445;50432:21;:12;:21;:::i;:::-;50418:35;;50480:11;50474:3;:17;;;;;;50464:27;;50526:1;50512:11;50506:3;:17;;;;;;:21;50502:78;;;50554:14;:7;50566:1;50554:14;:11;:14;:::i;:::-;50544:24;;50502:78;50176:411;;;;;;:::o;14633:164::-;14691:7;14723:5;;;14747:6;;;;14739:31;;;;;-1:-1:-1;;;14739:31:0;;;;;;;;;;;;-1:-1:-1;;;14739:31:0;;;;;;;;;;;;;;25020:331;25103:4;-1:-1:-1;;;;;25128:23:0;;25120:62;;;;;-1:-1:-1;;;25120:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25193:13;25209:18;25218:8;25209;:18::i;:::-;25193:34;;25260:5;-1:-1:-1;;;;;25247:18:0;:9;-1:-1:-1;;;;;25247:18:0;;:57;;;;25269:35;25287:9;25298:5;25269:17;:35::i;:::-;25247:96;;;;25334:9;-1:-1:-1;;;;;25308:35:0;:22;25321:8;25308:12;:22::i;:::-;-1:-1:-1;;;;;25308:35:0;;25247:96;25240:103;25020:331;-1:-1:-1;;;;25020:331:0:o;31042:1671::-;31246:8;28597:35;28611:10;28623:8;28597:13;:35::i;:::-;28589:73;;;;;-1:-1:-1;;;28589:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31280:3;-1:-1:-1;;;;;28903:21:0;;28895:53;;;;;-1:-1:-1;;;28895:53:0;;;;;;;;;;;;-1:-1:-1;;;28895:53:0;;;;;;;;;;;;;;;31309:5;31316:8;28788:5;-1:-1:-1;;;;;28766:27:0;:18;28775:8;28766;:18::i;:::-;-1:-1:-1;;;;;28766:27:0;;28758:57;;;;;-1:-1:-1;;;28758:57:0;;;;;;;;;;;;-1:-1:-1;;;28758:57:0;;;;;;;;;;;;;;;31342:14;31359:19;;;:9;:19;;;;;;-1:-1:-1;;;;;31359:19:0;31389:32;31359:19;31369:8;31389:14;:32::i;:::-;31432:37;31447:6;31455:3;31460:8;31432:14;:37::i;:::-;31486:8;:28;;;;;31498:16;:3;-1:-1:-1;;;;;31498:14:0;;:16::i;:::-;31482:1175;;;31684:12;31698:13;31715:272;31746:3;17196:10;31813:15;;31851:10;31884:6;31913:8;31944:9;31768:204;;;;;;-1:-1:-1;;;;;31768:204:0;-1:-1:-1;;;;;31768:204:0;;;;;;-1:-1:-1;;;;;31768:204:0;-1:-1:-1;;;;;31768:204: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;31768:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31768:204:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;31768:204:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;31768:204:0;;;179:29:-1;;;;160:49;;;-1:-1;31715:12:0;;-1:-1:-1;;;;;31715:272:0:i;:::-;31683:304;;;;32009:7;32008:8;:37;;;-1:-1:-1;;;;;;;32020:25:0;;-1:-1:-1;;;32020:25:0;;32008:37;32004:642;;;32187:278;32222:3;17262:10;32297:22;;32346:6;32379:8;32414:9;32248:198;;;;;;-1:-1:-1;;;;;32248:198:0;-1:-1:-1;;;;;32248:198: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;32248:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32248:198:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32248:198:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32248:198:0;;;179:29:-1;;;;160:49;;;-1:-1;32187:12:0;;-1:-1:-1;;;;32187:278:0:i;:::-;32167:298;;-1:-1:-1;32167:298:0;-1:-1:-1;32167:298:0;32516:43;;;;-1:-1:-1;;;;;;;32527:32:0;;-1:-1:-1;;;32527:32:0;32516:43;32486:144;;;;;-1:-1:-1;;;32486:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31482:1175;;;32696:8;32691:3;-1:-1:-1;;;;;32674:31:0;32683:6;-1:-1:-1;;;;;32674:31:0;;;;;;;;;;;28826:1;28959;;28673;31042:1671;;;;;;:::o;28208:263::-;28326:1;28295:19;;;:9;:19;;;;;;-1:-1:-1;;;;;28295:19:0;:33;28287:66;;;;;-1:-1:-1;;;28287:66:0;;;;;;;;;;;;-1:-1:-1;;;28287:66:0;;;;;;;;;;;;;;;28366:35;28378:12;28392:8;28366:11;:35::i;:::-;28419:44;;28454:8;;-1:-1:-1;;;;;28419:44:0;;;28436:1;;28419:44;;28436:1;;28419:44;28208:263;;:::o;23215:118::-;-1:-1:-1;;;;;23301:17:0;23274:7;23301:17;;;:9;:17;;;;;:24;;23215:118::o;50870:286::-;51002:7;51030:12;;;;;:32;;-1:-1:-1;51046:16:0;;;51030:32;51022:73;;;;;-1:-1:-1;;;51022:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51141:7;51113:25;:7;51126:11;51113:25;:12;:25;:::i;:::-;:35;;;;;;;50870:286;-1:-1:-1;;;;50870:286:0:o;47510:1105::-;47679:12;47742:10;;;:5;:10;;;;;47780:11;;;;47679:12;;47742:10;-1:-1:-1;;;;;47769:22:0;;;47780:11;;47769:22;47765:165;;47813:76;;;-1:-1:-1;;;;;47813:76:0;;;;;;47845:3;;47813:76;;;;;;;;;;-1:-1:-1;47914:1:0;;-1:-1:-1;47914:1:0;;-1:-1:-1;47906:12:0;;47765:165;48001:10;;;;47987:34;;47996:3;;-1:-1:-1;;;;;48001:10:0;48013:7;47987:8;:34::i;:::-;47980:41;;48048:7;48040:4;:15;;48032:61;;;;-1:-1:-1;;;48032:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48165:21:0;;:67;;48228:4;48165:67;;;48189:36;48198:4;48204:7;48213:11;48189:8;:36::i;:::-;48288:5;;:56;;;-1:-1:-1;;;48288:56:0;;48307:10;48288:56;;;;48327:4;48288:56;;;;;;;;;;;;48153:79;;-1:-1:-1;;;;;;48288:5:0;;;;:18;;:56;;;;;;;;;;;;;;;:5;;:56;;;5:2:-1;;;;30:1;27;20:12;5:2;48288:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48288:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48288:56:0;48280:97;;;;;-1:-1:-1;;;48280:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48457:12;;48422:18;;48443:27;;:9;;48457:12;;;-1:-1:-1;;;;;48457:12:0;48443:13;:27::i;:::-;48422:48;;-1:-1:-1;;;48489:10:0;:52;48481:81;;;;;-1:-1:-1;;;48481:81:0;;;;;;;;;;;;-1:-1:-1;;;48481:81:0;;;;;;;;;;;;;;;48573:34;;-1:-1:-1;;;;;48573:34:0;;;;;-1:-1:-1;;;;;;48573:34:0;;;;;;47510:1105;;;;;;;;;:::o;54917:440::-;55032:12;;55073:23;55146:3;55123:14;55140:2;55123:19;55122:27;-1:-1:-1;;;;;55186:20:0;;55122:27;55211:9;:16;:35;;55242:4;55211:35;;;55230:9;55211:35;55248:5;55186:68;;;;;;;;;;;;;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;;;55186:68:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;55271:17:0;;55162:92;;-1:-1:-1;55162:92:0;-1:-1:-1;55271:21:0;55267:82;;55327:10;55316:33;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55316:33:0;;-1:-1:-1;55267:82:0;54917:440;;;;;;;:::o;19419:187::-;19507:34;;;-1:-1:-1;;;;;19507:34:0;;;;;;19485:4;;19507:34;;;;;;;;;;-1:-1:-1;19552:12:0;:24;;-1:-1:-1;;;;;19552:24:0;;-1:-1:-1;;;;;;19552:24:0;;;;;;;19419:187;;;:::o;55699:423::-;55803:12;;55844:23;55917:3;55894:14;55911:2;55894:19;55893:27;-1:-1:-1;;;;;55957:14:0;;55893:27;55976:9;:16;:35;;56007:4;55976:35;;;55995:9;55976:35;56013:5;55957:62;;;;;;;;;;;;;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;;;55957:62:0;;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;14805:140:0;14863:7;14896:1;14891;:6;;14883:31;;;;;-1:-1:-1;;;14883:31:0;;;;;;;;;;;;-1:-1:-1;;;14883:31:0;;;;;;;;;;;;;;;-1:-1:-1;14932:5:0;;;14805:140::o;14953:227::-;15012:7;15036:6;15032:47;;-1:-1:-1;15066:1:0;15059:8;;15032:47;15103:5;;;15107:1;15103;:5;:1;15127:3;;;;;:8;15119:34;;;;;-1:-1:-1;;;15119:34:0;;;;;;;;;;;;-1:-1:-1;;;15119:34:0;;;;;;;;;;;;;;27906:242;28019:1;27988:19;;;:9;:19;;;;;;-1:-1:-1;;;;;27988:19:0;:33;27984:157;;28068:1;28038:19;;;:9;:19;;;;;;:32;;-1:-1:-1;;;;;;28038:32:0;;;28090:39;28048:8;;28068:1;-1:-1:-1;;;;;28090:39:0;;;;;28068:1;;28090:39;27906:242;;:::o;26942:956::-;27031:18;27052:23;;;:13;:23;;;;;;;27111:24;27133:1;27111:17;27122:5;27111:10;:17::i;:::-;:21;:24;:21;:24;:::i;:::-;27086:49;;27166:14;27152:10;:28;27148:383;;-1:-1:-1;;;;;27273:16:0;;27251:19;27273:16;;;:9;:16;;;;;:32;;27290:14;;27273:32;;;;;;;;;;;;;;27251:54;;27454:11;27423:9;:16;27433:5;-1:-1:-1;;;;;27423:16:0;-1:-1:-1;;;;;27423:16:0;;;;;;;;;;;;27440:10;27423:28;;;;;;;;;;;;;;;;;;;:42;;;;27480:26;;;:13;:26;;;;;:39;;;27148:383;-1:-1:-1;;;;;27572:16:0;;27607:1;27572:16;;;:9;:16;;;;;:32;;27589:14;;27572:32;;;;;;;;;;;;;;;;;:36;;;;-1:-1:-1;;;;;27619:16:0;;;;:9;:16;;;;;;:25;;;;;-1:-1:-1;;27619:25:0;;;:::i;:::-;-1:-1:-1;27682:19:0;;;;:9;:19;;;;;:25;;-1:-1:-1;;;;;;27682:25:0;-1:-1:-1;;;;;27682:25:0;;;;;27792:15;27682:25;27792:10;:15::i;:::-;-1:-1:-1;;;;;27818:14:0;;;;;;;:9;:14;;;;;;;;27:10:-1;;39:1;23:18;;45:23;;27818:29:0;;;;;;;;;;27858:23;;;:13;:23;;;;;;:32;;;;-1:-1:-1;;;;26942:956:0:o;14364:167::-;14478:18;14515:8;;;14364:167::o;33093:325::-;33197:12;33211:13;33237:23;33295:9;-1:-1:-1;;;;;33295:14:0;33310:5;33295:21;;;;;;;;;;;;;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;;;33295:21:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;33333:17:0;;33271:45;;-1:-1:-1;33271:45:0;-1:-1:-1;33333:21:0;33329:81;;33389:10;33378:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33378:32:0;;-1:-1:-1;33329:81:0;33093:325;;;;;;:::o;26564:370::-;26665:19;;;;:9;:19;;;;;:25;;-1:-1:-1;;;;;;26665:25:0;-1:-1:-1;;;;;26665:25:0;;;;;26757:15;26665:25;26757:10;:15::i;:::-;-1:-1:-1;;;;;26783:14:0;;;;;;;:9;:14;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;26783:29:0;;;;;;;;;;26823:23;;;:13;:23;;;;;:32;;;;26901:10;27::-1;;23:18;;;45:23;;26901:25:0;;-1:-1:-1;26901:25:0;;;;;26564:370::o;35157:20968::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://685c06f24239743f2b2bb3868f6b7c45d449b1ca3987bdfdcfe959f04a9c1921
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.