Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 12868973 | 1292 days ago | IN | 0 ETH | 0.0004297 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MainToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-21 */ /* * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ pragma solidity ^0.4.23; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint _subtractedValue ) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to. */ function _transferOwnership(address _newOwner) internal { require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/openzeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } modifier hasMintPermission() { require(msg.sender == owner); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address _to, uint256 _amount ) hasMintPermission canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } contract FreezableToken is StandardToken { // freezing chains mapping (bytes32 => uint64) internal chains; // freezing amounts for each chain mapping (bytes32 => uint) internal freezings; // total freezing balance per address mapping (address => uint) internal freezingBalance; event Freezed(address indexed to, uint64 release, uint amount); event Released(address indexed owner, uint amount); /** * @dev Gets the balance of the specified address include freezing tokens. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return super.balanceOf(_owner) + freezingBalance[_owner]; } /** * @dev Gets the balance of the specified address without freezing tokens. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function actualBalanceOf(address _owner) public view returns (uint256 balance) { return super.balanceOf(_owner); } function freezingBalanceOf(address _owner) public view returns (uint256 balance) { return freezingBalance[_owner]; } /** * @dev gets freezing count * @param _addr Address of freeze tokens owner. */ function freezingCount(address _addr) public view returns (uint count) { uint64 release = chains[toKey(_addr, 0)]; while (release != 0) { count++; release = chains[toKey(_addr, release)]; } } /** * @dev gets freezing end date and freezing balance for the freezing portion specified by index. * @param _addr Address of freeze tokens owner. * @param _index Freezing portion index. It ordered by release date descending. */ function getFreezing(address _addr, uint _index) public view returns (uint64 _release, uint _balance) { for (uint i = 0; i < _index + 1; i++) { _release = chains[toKey(_addr, _release)]; if (_release == 0) { return; } } _balance = freezings[toKey(_addr, _release)]; } /** * @dev freeze your tokens to the specified address. * Be careful, gas usage is not deterministic, * and depends on how many freezes _to address already has. * @param _to Address to which token will be freeze. * @param _amount Amount of token to freeze. * @param _until Release date, must be in future. */ function freezeTo(address _to, uint _amount, uint64 _until) public { require(_to != address(0)); require(_amount <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_amount); bytes32 currentKey = toKey(_to, _until); freezings[currentKey] = freezings[currentKey].add(_amount); freezingBalance[_to] = freezingBalance[_to].add(_amount); freeze(_to, _until); emit Transfer(msg.sender, _to, _amount); emit Freezed(_to, _until, _amount); } /** * @dev release first available freezing tokens. */ function releaseOnce() public { bytes32 headKey = toKey(msg.sender, 0); uint64 head = chains[headKey]; require(head != 0); require(uint64(block.timestamp) > head); bytes32 currentKey = toKey(msg.sender, head); uint64 next = chains[currentKey]; uint amount = freezings[currentKey]; delete freezings[currentKey]; balances[msg.sender] = balances[msg.sender].add(amount); freezingBalance[msg.sender] = freezingBalance[msg.sender].sub(amount); if (next == 0) { delete chains[headKey]; } else { chains[headKey] = next; delete chains[currentKey]; } emit Released(msg.sender, amount); } /** * @dev release all available for release freezing tokens. Gas usage is not deterministic! * @return how many tokens was released */ function releaseAll() public returns (uint tokens) { uint release; uint balance; (release, balance) = getFreezing(msg.sender, 0); while (release != 0 && block.timestamp > release) { releaseOnce(); tokens += balance; (release, balance) = getFreezing(msg.sender, 0); } } function toKey(address _addr, uint _release) internal pure returns (bytes32 result) { // WISH masc to increase entropy result = 0x5749534800000000000000000000000000000000000000000000000000000000; assembly { result := or(result, mul(_addr, 0x10000000000000000)) result := or(result, and(_release, 0xffffffffffffffff)) } } function freeze(address _to, uint64 _until) internal { require(_until > block.timestamp); bytes32 key = toKey(_to, _until); bytes32 parentKey = toKey(_to, uint64(0)); uint64 next = chains[parentKey]; if (next == 0) { chains[parentKey] = _until; return; } bytes32 nextKey = toKey(_to, next); uint parent; while (next != 0 && _until > next) { parent = next; parentKey = nextKey; next = chains[nextKey]; nextKey = toKey(_to, next); } if (_until == next) { return; } if (next != 0) { chains[key] = next; } chains[parentKey] = _until; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } contract FreezableMintableToken is FreezableToken, MintableToken { /** * @dev Mint the specified amount of token to the specified address and freeze it until the specified date. * Be careful, gas usage is not deterministic, * and depends on how many freezes _to address already has. * @param _to Address to which token will be freeze. * @param _amount Amount of token to mint and freeze. * @param _until Release date, must be in future. * @return A boolean that indicates if the operation was successful. */ function mintAndFreeze(address _to, uint _amount, uint64 _until) public onlyOwner canMint returns (bool) { totalSupply_ = totalSupply_.add(_amount); bytes32 currentKey = toKey(_to, _until); freezings[currentKey] = freezings[currentKey].add(_amount); freezingBalance[_to] = freezingBalance[_to].add(_amount); freeze(_to, _until); emit Mint(_to, _amount); emit Freezed(_to, _until, _amount); emit Transfer(msg.sender, _to, _amount); return true; } } contract Consts { uint public constant TOKEN_DECIMALS = 18; uint8 public constant TOKEN_DECIMALS_UINT8 = 18; uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS; string public constant TOKEN_NAME = "Hsima"; string public constant TOKEN_SYMBOL = "SIMA"; bool public constant PAUSED = true; address public constant TARGET_USER = 0x956912b455240Ac5811f8Eda585a9176999e1F4F; uint public constant START_TIME = 1630453380; bool public constant CONTINUE_MINTING = true; } contract MainToken is Consts, FreezableMintableToken, BurnableToken, Pausable { function name() public pure returns (string _name) { return TOKEN_NAME; } function symbol() public pure returns (string _symbol) { return TOKEN_SYMBOL; } function decimals() public pure returns (uint8 _decimals) { return TOKEN_DECIMALS_UINT8; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool _success) { require(!paused); return super.transferFrom(_from, _to, _value); } function transfer(address _to, uint256 _value) public returns (bool _success) { require(!paused); return super.transfer(_to, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"CONTINUE_MINTING","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"},{"name":"_index","type":"uint256"}],"name":"getFreezing","outputs":[{"name":"_release","type":"uint64"},{"name":"_balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"mintAndFreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_until","type":"uint64"}],"name":"freezeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMAL_MULTIPLIER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseAll","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseOnce","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TARGET_USER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PAUSED","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"freezingCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS_UINT8","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"freezingBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"START_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"release","type":"uint64"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
608060405260068054600160b060020a03191633179055611a1c806100256000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f57806317a950ac1461034057806318160ddd14610373578063188214001461038857806323b872dd1461039d5780632a905318146103c7578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b41146105be578063a9059cbb146105d3578063a9aad58c146101db578063ca63b5b8146105f7578063cf3b196714610618578063d73dd6231461062d578063d8aeedf514610651578063dd62ed3e14610672578063ddaa26ad14610699578063f2fde38b146106ae575b600080fd5b3480156101e757600080fd5b506101f06106cf565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106d4565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610761565b34801561026d57600080fd5b50610276610771565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107a8565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff6044351661080e565b34801561034c57600080fd5b50610361600160a060020a03600435166109ac565b60408051918252519081900360200190f35b34801561037f57600080fd5b506103616109bd565b34801561039457600080fd5b506102766109c3565b3480156103a957600080fd5b506101f0600160a060020a03600435811690602435166044356109fa565b3480156103d357600080fd5b50610276610a27565b3480156103e857600080fd5b506103f1610a5e565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a63565b005b34801561044657600080fd5b50610438610bd7565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c50565b34801561047f57600080fd5b50610438600435610d48565b34801561049757600080fd5b50610361610d55565b3480156104ac57600080fd5b50610361610d61565b3480156104c157600080fd5b50610361610d66565b3480156104d657600080fd5b506101f0610dcb565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610ddb565b34801561050f57600080fd5b50610438610ecb565b34801561052457600080fd5b50610361600160a060020a036004351661106e565b34801561054557600080fd5b50610438611097565b34801561055a57600080fd5b50610563611105565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f061111d565b3480156105a057600080fd5b506104386111a1565b3480156105b557600080fd5b5061056361121f565b3480156105ca57600080fd5b5061027661122e565b3480156105df57600080fd5b506101f0600160a060020a0360043516602435611265565b34801561060357600080fd5b50610361600160a060020a0360043516611290565b34801561062457600080fd5b506103f1610d61565b34801561063957600080fd5b506101f0600160a060020a0360043516602435611316565b34801561065d57600080fd5b50610361600160a060020a03600435166113af565b34801561067e57600080fd5b50610361600160a060020a03600435811690602435166113ca565b3480156106a557600080fd5b506103616113f5565b3480156106ba57600080fd5b50610438600160a060020a03600435166113fd565b600181565b600080805b8360010181101561072d57600360006106fc878667ffffffffffffffff1661141d565b815260208101919091526040016000205467ffffffffffffffff16925082151561072557610759565b6001016106d9565b60046000610745878667ffffffffffffffff1661141d565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600581527f4873696d61000000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461082a57600080fd5b60065460a060020a900460ff161561084157600080fd5b600154610854908563ffffffff61145b16565b60015561086b8567ffffffffffffffff851661141d565b60008181526004602052604090205490915061088d908563ffffffff61145b16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108c4908563ffffffff61145b16565b600160a060020a0386166000908152600560205260409020556108e78584611468565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119d18339815191529181900360200190a3506001949350505050565b60006109b782611602565b92915050565b60015490565b60408051808201909152600581527f4873696d61000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a1457600080fd5b610a1f84848461161d565b949350505050565b60408051808201909152600481527f53494d4100000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610a7a57600080fd5b33600090815260208190526040902054831115610a9657600080fd5b33600090815260208190526040902054610ab6908463ffffffff61178216565b33600090815260208190526040902055610ada8467ffffffffffffffff841661141d565b600081815260046020526040902054909150610afc908463ffffffff61145b16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b33908463ffffffff61145b16565b600160a060020a038516600090815260056020526040902055610b568483611468565b604080518481529051600160a060020a0386169133916000805160206119d18339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bee57600080fd5b60065460a860020a900460ff161515610c0657600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c6a57600080fd5b60065460a060020a900460ff1615610c8157600080fd5b600154610c94908363ffffffff61145b16565b600155600160a060020a038316600090815260208190526040902054610cc0908363ffffffff61145b16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119d18339815191529181900360200190a350600192915050565b610d523382611794565b50565b670de0b6b3a764000081565b601281565b6000806000610d763360006106d4565b67ffffffffffffffff909116925090505b8115801590610d9557508142115b15610dc657610da2610ecb565b91820191610db13360006106d4565b67ffffffffffffffff90911692509050610d87565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e3057336000908152600260209081526040808320600160a060020a0388168452909152812055610e65565b610e40818463ffffffff61178216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610ede33600061141d565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f0857600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f2a57600080fd5b610f3e338567ffffffffffffffff1661141d565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f8a908263ffffffff61145b16565b3360009081526020818152604080832093909355600590522054610fb4908263ffffffff61178216565b3360009081526005602052604090205567ffffffffffffffff82161515610ff7576000858152600360205260409020805467ffffffffffffffff19169055611031565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461109083611602565b0192915050565b600654600160a060020a031633146110ae57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73956912b455240ac5811f8eda585a9176999e1f4f81565b600654600090600160a060020a0316331461113757600080fd5b60065460a060020a900460ff161561114e57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111b857600080fd5b60065460a860020a900460ff16156111cf57600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600481527f53494d4100000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff161561127f57600080fd5b6112898383611883565b9392505050565b600080600360006112a285600061141d565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561131057600190910190600360006112ee8567ffffffffffffffff851661141d565b815260208101919091526040016000205467ffffffffffffffff1690506112c0565b50919050565b336000908152600260209081526040808320600160a060020a038616845290915281205461134a908363ffffffff61145b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b63612ebe8481565b600654600160a060020a0316331461141457600080fd5b610d5281611952565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109b757fe5b6000808080804267ffffffffffffffff87161161148457600080fd5b611498878767ffffffffffffffff1661141d565b94506114a587600061141d565b60008181526003602052604090205490945067ffffffffffffffff1692508215156114f8576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556115f9565b61150c878467ffffffffffffffff1661141d565b91505b67ffffffffffffffff83161580159061153b57508267ffffffffffffffff168667ffffffffffffffff16115b15611574575060008181526003602052604090205490925067ffffffffffffffff9081169183911661156d878461141d565b915061150f565b8267ffffffffffffffff168667ffffffffffffffff161415611595576115f9565b67ffffffffffffffff8316156115cf576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561163457600080fd5b600160a060020a03841660009081526020819052604090205482111561165957600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561168957600080fd5b600160a060020a0384166000908152602081905260409020546116b2908363ffffffff61178216565b600160a060020a0380861660009081526020819052604080822093909355908516815220546116e7908363ffffffff61145b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611729908363ffffffff61178216565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119d1833981519152929181900390910190a35060019392505050565b60008282111561178e57fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117b957600080fd5b600160a060020a0382166000908152602081905260409020546117e2908263ffffffff61178216565b600160a060020a03831660009081526020819052604090205560015461180e908263ffffffff61178216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119d18339815191529181900360200190a35050565b6000600160a060020a038316151561189a57600080fd5b336000908152602081905260409020548211156118b657600080fd5b336000908152602081905260409020546118d6908363ffffffff61178216565b3360009081526020819052604080822092909255600160a060020a03851681522054611908908363ffffffff61145b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119d18339815191529281900390910190a350600192915050565b600160a060020a038116151561196757600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202cc9a6f63c902d915f52b2eb025988984ca53f561b2be4a69c9f48877547f2bf0029
Deployed Bytecode
0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f57806317a950ac1461034057806318160ddd14610373578063188214001461038857806323b872dd1461039d5780632a905318146103c7578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b41146105be578063a9059cbb146105d3578063a9aad58c146101db578063ca63b5b8146105f7578063cf3b196714610618578063d73dd6231461062d578063d8aeedf514610651578063dd62ed3e14610672578063ddaa26ad14610699578063f2fde38b146106ae575b600080fd5b3480156101e757600080fd5b506101f06106cf565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106d4565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f0610761565b34801561026d57600080fd5b50610276610771565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a03600435166024356107a8565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff6044351661080e565b34801561034c57600080fd5b50610361600160a060020a03600435166109ac565b60408051918252519081900360200190f35b34801561037f57600080fd5b506103616109bd565b34801561039457600080fd5b506102766109c3565b3480156103a957600080fd5b506101f0600160a060020a03600435811690602435166044356109fa565b3480156103d357600080fd5b50610276610a27565b3480156103e857600080fd5b506103f1610a5e565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a63565b005b34801561044657600080fd5b50610438610bd7565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c50565b34801561047f57600080fd5b50610438600435610d48565b34801561049757600080fd5b50610361610d55565b3480156104ac57600080fd5b50610361610d61565b3480156104c157600080fd5b50610361610d66565b3480156104d657600080fd5b506101f0610dcb565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610ddb565b34801561050f57600080fd5b50610438610ecb565b34801561052457600080fd5b50610361600160a060020a036004351661106e565b34801561054557600080fd5b50610438611097565b34801561055a57600080fd5b50610563611105565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f061111d565b3480156105a057600080fd5b506104386111a1565b3480156105b557600080fd5b5061056361121f565b3480156105ca57600080fd5b5061027661122e565b3480156105df57600080fd5b506101f0600160a060020a0360043516602435611265565b34801561060357600080fd5b50610361600160a060020a0360043516611290565b34801561062457600080fd5b506103f1610d61565b34801561063957600080fd5b506101f0600160a060020a0360043516602435611316565b34801561065d57600080fd5b50610361600160a060020a03600435166113af565b34801561067e57600080fd5b50610361600160a060020a03600435811690602435166113ca565b3480156106a557600080fd5b506103616113f5565b3480156106ba57600080fd5b50610438600160a060020a03600435166113fd565b600181565b600080805b8360010181101561072d57600360006106fc878667ffffffffffffffff1661141d565b815260208101919091526040016000205467ffffffffffffffff16925082151561072557610759565b6001016106d9565b60046000610745878667ffffffffffffffff1661141d565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600581527f4873696d61000000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461082a57600080fd5b60065460a060020a900460ff161561084157600080fd5b600154610854908563ffffffff61145b16565b60015561086b8567ffffffffffffffff851661141d565b60008181526004602052604090205490915061088d908563ffffffff61145b16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108c4908563ffffffff61145b16565b600160a060020a0386166000908152600560205260409020556108e78584611468565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119d18339815191529181900360200190a3506001949350505050565b60006109b782611602565b92915050565b60015490565b60408051808201909152600581527f4873696d61000000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a1457600080fd5b610a1f84848461161d565b949350505050565b60408051808201909152600481527f53494d4100000000000000000000000000000000000000000000000000000000602082015281565b601290565b6000600160a060020a0384161515610a7a57600080fd5b33600090815260208190526040902054831115610a9657600080fd5b33600090815260208190526040902054610ab6908463ffffffff61178216565b33600090815260208190526040902055610ada8467ffffffffffffffff841661141d565b600081815260046020526040902054909150610afc908463ffffffff61145b16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b33908463ffffffff61145b16565b600160a060020a038516600090815260056020526040902055610b568483611468565b604080518481529051600160a060020a0386169133916000805160206119d18339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bee57600080fd5b60065460a860020a900460ff161515610c0657600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c6a57600080fd5b60065460a060020a900460ff1615610c8157600080fd5b600154610c94908363ffffffff61145b16565b600155600160a060020a038316600090815260208190526040902054610cc0908363ffffffff61145b16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119d18339815191529181900360200190a350600192915050565b610d523382611794565b50565b670de0b6b3a764000081565b601281565b6000806000610d763360006106d4565b67ffffffffffffffff909116925090505b8115801590610d9557508142115b15610dc657610da2610ecb565b91820191610db13360006106d4565b67ffffffffffffffff90911692509050610d87565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e3057336000908152600260209081526040808320600160a060020a0388168452909152812055610e65565b610e40818463ffffffff61178216565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610ede33600061141d565b60008181526003602052604090205490955067ffffffffffffffff169350831515610f0857600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610f2a57600080fd5b610f3e338567ffffffffffffffff1661141d565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f8a908263ffffffff61145b16565b3360009081526020818152604080832093909355600590522054610fb4908263ffffffff61178216565b3360009081526005602052604090205567ffffffffffffffff82161515610ff7576000858152600360205260409020805467ffffffffffffffff19169055611031565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461109083611602565b0192915050565b600654600160a060020a031633146110ae57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73956912b455240ac5811f8eda585a9176999e1f4f81565b600654600090600160a060020a0316331461113757600080fd5b60065460a060020a900460ff161561114e57600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031633146111b857600080fd5b60065460a860020a900460ff16156111cf57600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60408051808201909152600481527f53494d4100000000000000000000000000000000000000000000000000000000602082015290565b60065460009060a860020a900460ff161561127f57600080fd5b6112898383611883565b9392505050565b600080600360006112a285600061141d565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff81161561131057600190910190600360006112ee8567ffffffffffffffff851661141d565b815260208101919091526040016000205467ffffffffffffffff1690506112c0565b50919050565b336000908152600260209081526040808320600160a060020a038616845290915281205461134a908363ffffffff61145b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b63612ebe8481565b600654600160a060020a0316331461141457600080fd5b610d5281611952565b67ffffffffffffffff166801000000000000000091909102177f57495348000000000000000000000000000000000000000000000000000000001790565b818101828110156109b757fe5b6000808080804267ffffffffffffffff87161161148457600080fd5b611498878767ffffffffffffffff1661141d565b94506114a587600061141d565b60008181526003602052604090205490945067ffffffffffffffff1692508215156114f8576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790556115f9565b61150c878467ffffffffffffffff1661141d565b91505b67ffffffffffffffff83161580159061153b57508267ffffffffffffffff168667ffffffffffffffff16115b15611574575060008181526003602052604090205490925067ffffffffffffffff9081169183911661156d878461141d565b915061150f565b8267ffffffffffffffff168667ffffffffffffffff161415611595576115f9565b67ffffffffffffffff8316156115cf576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a038316151561163457600080fd5b600160a060020a03841660009081526020819052604090205482111561165957600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561168957600080fd5b600160a060020a0384166000908152602081905260409020546116b2908363ffffffff61178216565b600160a060020a0380861660009081526020819052604080822093909355908516815220546116e7908363ffffffff61145b16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611729908363ffffffff61178216565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206119d1833981519152929181900390910190a35060019392505050565b60008282111561178e57fe5b50900390565b600160a060020a0382166000908152602081905260409020548111156117b957600080fd5b600160a060020a0382166000908152602081905260409020546117e2908263ffffffff61178216565b600160a060020a03831660009081526020819052604090205560015461180e908263ffffffff61178216565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119d18339815191529181900360200190a35050565b6000600160a060020a038316151561189a57600080fd5b336000908152602081905260409020548211156118b657600080fd5b336000908152602081905260409020546118d6908363ffffffff61178216565b3360009081526020819052604080822092909255600160a060020a03851681522054611908908363ffffffff61145b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119d18339815191529281900390910190a350600192915050565b600160a060020a038116151561196757600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058202cc9a6f63c902d915f52b2eb025988984ca53f561b2be4a69c9f48877547f2bf0029
Deployed Bytecode Sourcemap
20655:773:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20597:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20597:44:0;;;;;;;;;;;;;;;;;;;;;;13380:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13380:355:0;-1:-1:-1;;;;;13380:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10370:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10370:35:0;;;;20755:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20755:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;20755:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6010:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6010:192:0;-1:-1:-1;;;;;6010:192:0;;;;;;;19558:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19558:535:0;-1:-1:-1;;;;;19558:535:0;;;;;;;;;;;12487:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12487:128:0;-1:-1:-1;;;;;12487:128:0;;;;;;;;;;;;;;;;;;;;;2818:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2818:85:0;;;;20305:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20305:43:0;;;;21063:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21063:188:0;-1:-1:-1;;;;;21063:188:0;;;;;;;;;;;;20355:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20355:44:0;;;;20951:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20951:104:0;;;;;;;;;;;;;;;;;;;;;;;14109:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14109:547:0;-1:-1:-1;;;;;14109:547:0;;;;;;;;;;;;;18878:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18878:95:0;;;;10807:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10807:326:0;-1:-1:-1;;;;;10807:326:0;;;;;;;17527:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17527:75:0;;;;;20228:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20228:68:0;;;;20127:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20127:40:0;;;;15659:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15659:357:0;;;;18257:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18257:26:0;;;;7938:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7938:440:0;-1:-1:-1;;;;;7938:440:0;;;;;;;14736:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14736:756:0;;;;12090:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12090:148:0;-1:-1:-1;;;;;12090:148:0;;;;;9226:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9226:114:0;;;;20447:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20447:80:0;;;;;;;;-1:-1:-1;;;;;20447:80:0;;;;;;;;;;;;;;11253:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11253:144:0;;;;18698:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18698:93:0;;;;8608:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8608:20:0;;;;20850:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20850:93:0;;;;21259:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;21259:158:0;-1:-1:-1;;;;;21259:158:0;;;;;;;12865:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12865:249:0;-1:-1:-1;;;;;12865:249:0;;;;;20174:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20174:47:0;;;;7160:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7160:304:0;-1:-1:-1;;;;;7160:304:0;;;;;;;12623:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12623:130:0;-1:-1:-1;;;;;12623:130:0;;;;;6529:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6529:162:0;-1:-1:-1;;;;;6529:162:0;;;;;;;;;;20540:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20540:44:0;;;;9508:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9508:105:0;-1:-1:-1;;;;;9508:105:0;;;;;20597:44;20637:4;20597:44;:::o;13380:355::-;13450:15;;;13493:180;13514:6;13523:1;13514:10;13510:1;:14;13493:180;;;13557:6;:30;13564:22;13570:5;13577:8;13564:22;;:5;:22::i;:::-;13557:30;;;;;;;;;;;;;;;;;-1:-1:-1;13606:13:0;;13602:60;;;13640:7;;13602:60;13526:3;;13493:180;;;13694:9;:33;13704:22;13710:5;13717:8;13704:22;;:5;:22::i;:::-;13694:33;;;;;;;;;;;;;;;-1:-1:-1;13380:355:0;;;;;;;:::o;10370:35::-;;;-1:-1:-1;;;10370:35:0;;;;;:::o;20755:87::-;20824:10;;;;;;;;;;;;;;;;;20755:87;:::o;6010:192::-;6098:10;6077:4;6090:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6090:29:0;;;;;;;;;;;:38;;;6140;;;;;;;6077:4;;6090:29;;6098:10;;6140:38;;;;;;;;-1:-1:-1;6192:4:0;6010:192;;;;:::o;19558:535::-;9111:5;;19657:4;;;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;10449:15;;-1:-1:-1;;;10449:15:0;;;;10448:16;10440:25;;;;;;19689:12;;:25;;19706:7;19689:25;:16;:25;:::i;:::-;19674:12;:40;19748:18;19754:3;19748:18;;;:5;:18::i;:::-;19801:21;;;;:9;:21;;;;;;19727:39;;-1:-1:-1;19801:34:0;;19827:7;19801:34;:25;:34;:::i;:::-;19777:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;19869:20:0;;;;:15;:20;;;;:33;;19894:7;19869:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;19846:20:0;;;;;;:15;:20;;;;;:56;19915:19;19862:3;19927:6;19915;:19::i;:::-;19950:18;;;;;;;;-1:-1:-1;;;;;19950:18:0;;;;;;;;;;;;;19984:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19984:29:0;;;;;;;;;;;20029:34;;;;;;;;-1:-1:-1;;;;;20029:34:0;;;20038:10;;-1:-1:-1;;;;;;;;;;;20029:34:0;;;;;;;;-1:-1:-1;20081:4:0;;19558:535;-1:-1:-1;;;;19558:535:0:o;12487:128::-;12549:15;12584:23;12600:6;12584:15;:23::i;:::-;12577:30;12487:128;-1:-1:-1;;12487:128:0:o;2818:85::-;2885:12;;2818:85;:::o;20305:43::-;;;;;;;;;;;;;;;;;;;:::o;21063:188::-;21180:6;;21145:13;;-1:-1:-1;;;21180:6:0;;;;21179:7;21171:16;;;;;;21205:38;21224:5;21231:3;21236:6;21205:18;:38::i;:::-;21198:45;21063:188;-1:-1:-1;;;;21063:188:0:o;20355:44::-;;;;;;;;;;;;;;;;;;;:::o;20951:104::-;20219:2;20951:104;:::o;14109:547::-;14346:18;-1:-1:-1;;;;;14195:17:0;;;;14187:26;;;;;;14252:10;14243:8;:20;;;;;;;;;;;14232:31;;;14224:40;;;;;;14309:10;14300:8;:20;;;;;;;;;;;:33;;14325:7;14300:33;:24;:33;:::i;:::-;14286:10;14277:8;:20;;;;;;;;;;:56;14367:18;14373:3;14367:18;;;:5;:18::i;:::-;14420:21;;;;:9;:21;;;;;;14346:39;;-1:-1:-1;14420:34:0;;14446:7;14420:34;:25;:34;:::i;:::-;14396:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;14488:20:0;;;;:15;:20;;;;:33;;14513:7;14488:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;14465:20:0;;;;;;:15;:20;;;;;:56;14534:19;14481:3;14546:6;14534;:19::i;:::-;14569:34;;;;;;;;-1:-1:-1;;;;;14569:34:0;;;14578:10;;-1:-1:-1;;;;;;;;;;;14569:34:0;;;;;;;;14619:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14619:29:0;;;;;;;;;;;14109:547;;;;:::o;18878:95::-;9111:5;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;18593:6;;-1:-1:-1;;;18593:6:0;;;;18585:15;;;;;;;;18932:6;:14;;-1:-1:-1;;18932:14:0;;;18958:9;;;;18941:5;;18958:9;18878:95::o;10807:326::-;10543:5;;10928:4;;-1:-1:-1;;;;;10543:5:0;10529:10;:19;10521:28;;;;;;10449:15;;-1:-1:-1;;;10449:15:0;;;;10448:16;10440:25;;;;;;10959:12;;:25;;10976:7;10959:25;:16;:25;:::i;:::-;10944:12;:40;-1:-1:-1;;;;;11007:13:0;;:8;:13;;;;;;;;;;;:26;;11025:7;11007:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;10991:13:0;;:8;:13;;;;;;;;;;;;:42;;;;11045:18;;;;;;;10991:13;;11045:18;;;;;;;;;11075:34;;;;;;;;-1:-1:-1;;;;;11075:34:0;;;11092:1;;-1:-1:-1;;;;;;;;;;;11075:34:0;;;;;;;;-1:-1:-1;11123:4:0;10807:326;;;;:::o;17527:75::-;17571:25;17577:10;17589:6;17571:5;:25::i;:::-;17527:75;:::o;20228:68::-;20276:20;20228:68;:::o;20127:40::-;20165:2;20127:40;:::o;15659:357::-;15697:11;15721:12;15744;15788:26;15800:10;15812:1;15788:11;:26::i;:::-;15767:47;;;;;-1:-1:-1;15767:47:0;-1:-1:-1;15825:184:0;15832:12;;;;;:41;;;15866:7;15848:15;:25;15832:41;15825:184;;;15890:13;:11;:13::i;:::-;15918:17;;;;15971:26;15983:10;15995:1;15971:11;:26::i;:::-;15950:47;;;;;-1:-1:-1;15950:47:0;-1:-1:-1;15825:184:0;;;15659:357;;;:::o;18257:26::-;;;-1:-1:-1;;;18257:26:0;;;;;:::o;7938:440::-;8086:10;8046:4;8078:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8078:29:0;;;;;;;;;;8118:27;;;8114:168;;;8164:10;8188:1;8156:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8156:29:0;;;;;;;;;:33;8114:168;;;8244:30;:8;8257:16;8244:30;:12;:30;:::i;:::-;8220:10;8212:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8212:29:0;;;;;;;;;:62;8114:168;8302:10;8324:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8293:61:0;;8324:29;;;;;;;;;;;8293:61;;;;;;;;;8302:10;8293:61;;;;;;;;;;;-1:-1:-1;8368:4:0;;7938:440;-1:-1:-1;;;7938:440:0:o;14736:756::-;14777:15;14826:11;14945:18;15002:11;15047;14795:20;14801:10;14813:1;14795:5;:20::i;:::-;14840:15;;;;:6;:15;;;;;;14777:38;;-1:-1:-1;14840:15:0;;;-1:-1:-1;14874:9:0;;;14866:18;;;;;;14929:4;14903:30;;14910:15;14903:30;;;14895:39;;;;;;;;14966:23;14972:10;14984:4;14966:23;;:5;:23::i;:::-;15016:18;;;;:6;:18;;;;;;;;;15061:9;:21;;;;;;;15093:28;;;;15166:10;15157:20;;;;;;;;;14945:44;;-1:-1:-1;15016:18:0;;;;;-1:-1:-1;15061:21:0;-1:-1:-1;15157:32:0;;15061:21;15157:32;:24;:32;:::i;:::-;15143:10;15134:8;:20;;;;;;;;;;;:55;;;;15230:15;:27;;;;:39;;15262:6;15230:39;:31;:39;:::i;:::-;15216:10;15200:27;;;;:15;:27;;;;;:69;15286:9;;;;15282:159;;;15319:15;;;;:6;:15;;;;;15312:22;;-1:-1:-1;;15312:22:0;;;15282:159;;;15367:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;15367:22:0;;;;;;;15411:18;;;;;15404:25;;;;;;;15282:159;15456:28;;;;;;;;15465:10;;15456:28;;;;;;;;;;14736:756;;;;;:::o;12090:148::-;-1:-1:-1;;;;;12207:23:0;;12146:15;12207:23;;;:15;:23;;;;;;12181;12223:6;12181:15;:23::i;:::-;:49;;12090:148;-1:-1:-1;;12090:148:0:o;9226:114::-;9111:5;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;9303:5;;9284:25;;-1:-1:-1;;;;;9303:5:0;;;;9284:25;;9303:5;;9284:25;9316:5;:18;;-1:-1:-1;;9316:18:0;;;9226:114::o;20447:80::-;20485:42;20447:80;:::o;11253:144::-;9111:5;;11312:4;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;10449:15;;-1:-1:-1;;;10449:15:0;;;;10448:16;10440:25;;;;;;11325:15;:22;;-1:-1:-1;;11325:22:0;-1:-1:-1;;;11325:22:0;;;11359:14;;;;11325:22;;11359:14;-1:-1:-1;11387:4:0;11253:144;:::o;18698:93::-;9111:5;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;18433:6;;-1:-1:-1;;;18433:6:0;;;;18432:7;18424:16;;;;;;18753:6;:13;;-1:-1:-1;;18753:13:0;-1:-1:-1;;;18753:13:0;;;18778:7;;;;18753:13;;18778:7;18698:93::o;8608:20::-;;;-1:-1:-1;;;;;8608:20:0;;:::o;20850:93::-;20923:12;;;;;;;;;;;;;;;;;20850:93;:::o;21259:158::-;21357:6;;21322:13;;-1:-1:-1;;;21357:6:0;;;;21356:7;21348:16;;;;;;21382:27;21397:3;21402:6;21382:14;:27::i;:::-;21375:34;21259:158;-1:-1:-1;;;21259:158:0:o;12865:249::-;12924:10;12947:14;12964:6;:23;12971:15;12977:5;12984:1;12971:5;:15::i;:::-;12964:23;;;;;;;;;;;;;;;;;-1:-1:-1;12998:109:0;13005:12;;;;12998:109;;13034:7;;;;;13066:6;:29;13073:21;13079:5;13073:21;;;:5;:21::i;:::-;13066:29;;;;;;;;;;;;;;;;;-1:-1:-1;12998:109:0;;;12865:249;;;;:::o;7160:304::-;7328:10;7263:4;7320:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7320:29:0;;;;;;;;;;:46;;7354:11;7320:46;:33;:46;:::i;:::-;7287:10;7279:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7279:29:0;;;;;;;;;;;;:88;;;7379:61;;;;;;7279:29;;7379:61;;;;;;;;;;;-1:-1:-1;7454:4:0;7160:304;;;;:::o;12623:130::-;-1:-1:-1;;;;;12722:23:0;12687:15;12722:23;;;:15;:23;;;;;;;12623:130::o;6529:162::-;-1:-1:-1;;;;;6660:15:0;;;6634:7;6660:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;6529:162::o;20540:44::-;20574:10;20540:44;:::o;9508:105::-;9111:5;;-1:-1:-1;;;;;9111:5:0;9097:10;:19;9089:28;;;;;;9578:29;9597:9;9578:18;:29::i;16024:387::-;16373:18;16359:33;16303:19;16292:31;;;;16348:45;16170:66;16348:45;;16256:148::o;2385:127::-;2465:5;;;2484:6;;;;2477:14;;;16419:789;16527:11;;;;;16500:15;16491:24;;;;16483:33;;;;;;16541:18;16547:3;16552:6;16541:18;;:5;:18::i;:::-;16527:32;-1:-1:-1;16590:21:0;16596:3;16608:1;16590:5;:21::i;:::-;16636:17;;;;:6;:17;;;;;;16570:41;;-1:-1:-1;16636:17:0;;;-1:-1:-1;16670:9:0;;16666:89;;;16696:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;16696:26:0;;;;;;;16737:7;;16666:89;16785:16;16791:3;16796:4;16785:16;;:5;:16::i;:::-;16767:34;;16836:189;16843:9;;;;;;;:26;;;16865:4;16856:13;;:6;:13;;;16843:26;16836:189;;;-1:-1:-1;16957:15:0;;;;:6;:15;;;;;;16926:7;;-1:-1:-1;16886:13:0;16957:15;;;;16926:7;;16886:13;16997:16;17003:3;16957:15;16997:5;:16::i;:::-;16987:26;;16836:189;;;17051:4;17041:14;;:6;:14;;;17037:53;;;17072:7;;17037:53;17106:9;;;;17102:60;;17132:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;17132:18:0;;;;;;;17102:60;17174:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;17174:26:0;;;;;;;16419:789;;;;;;;;:::o;3602:101::-;-1:-1:-1;;;;;3681:16:0;3658:7;3681:16;;;;;;;;;;;;3602:101::o;4888:487::-;5000:4;-1:-1:-1;;;;;5024:17:0;;;;5016:26;;;;;;-1:-1:-1;;;;;5067:15:0;;:8;:15;;;;;;;;;;;5057:25;;;5049:34;;;;;;-1:-1:-1;;;;;5108:14:0;;;;;;:7;:14;;;;;;;;5123:10;5108:26;;;;;;;;5098:36;;;5090:45;;;;;;-1:-1:-1;;;;;5162:15:0;;:8;:15;;;;;;;;;;;:27;;5182:6;5162:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5144:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5212:13;;;;;;;:25;;5230:6;5212:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5196:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5273:14;;;;;:7;:14;;;;;5288:10;5273:26;;;;;;;:38;;5304:6;5273:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5244:14:0;;;;;;;:7;:14;;;;;;;;5259:10;5244:26;;;;;;;;:67;;;;5323:28;;;;;;;;;;;5244:14;;-1:-1:-1;;;;;;;;;;;5323:28:0;;;;;;;;;;-1:-1:-1;5365:4:0;4888:487;;;;;:::o;2205:113::-;2263:7;2286:6;;;;2279:14;;;;-1:-1:-1;2307:5:0;;;2205:113::o;17608:447::-;-1:-1:-1;;;;;17687:14:0;;:8;:14;;;;;;;;;;;17677:24;;;17669:33;;;;;;-1:-1:-1;;;;;17901:14:0;;:8;:14;;;;;;;;;;;:26;;17920:6;17901:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;17884:14:0;;:8;:14;;;;;;;;;;:43;17949:12;;:24;;17966:6;17949:24;:16;:24;:::i;:::-;17934:12;:39;17985:18;;;;;;;;-1:-1:-1;;;;;17985:18:0;;;;;;;;;;;;;18015:34;;;;;;;;18038:1;;-1:-1:-1;;;;;18015:34:0;;;-1:-1:-1;;;;;;;;;;;18015:34:0;;;;;;;;17608:447;;:::o;3064:329::-;3127:4;-1:-1:-1;;;;;3148:17:0;;;;3140:26;;;;;;3200:10;3191:8;:20;;;;;;;;;;;3181:30;;;3173:39;;;;;;3253:10;3244:8;:20;;;;;;;;;;;:32;;3269:6;3244:32;:24;:32;:::i;:::-;3230:10;3221:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;3299:13:0;;;;;;:25;;3317:6;3299:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3283:13:0;;:8;:13;;;;;;;;;;;;:41;;;;3336:33;;;;;;;3283:13;;3345:10;;-1:-1:-1;;;;;;;;;;;3336:33:0;;;;;;;;;-1:-1:-1;3383:4:0;3064:329;;;;:::o;9754:175::-;-1:-1:-1;;;;;9825:23:0;;;;9817:32;;;;;;9882:5;;9861:38;;-1:-1:-1;;;;;9861:38:0;;;;9882:5;;9861:38;;9882:5;;9861:38;9906:5;:17;;-1:-1:-1;;9906:17:0;-1:-1:-1;;;;;9906:17:0;;;;;;;;;;9754:175::o
Swarm Source
bzzr://2cc9a6f63c902d915f52b2eb025988984ca53f561b2be4a69c9f48877547f2bf
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.