Overview
Max Total Supply
8,520,839 ENTONE
Holders
73 (0.00%)
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ENTONE
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-01 */ /* * Power By ENTONE * The complete code By ENTONE * Copyright (C) 2020 ENTONE */ 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) { 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 */ 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. */ 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; } 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) * @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) * @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 */ 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) { // ENTONE masc to increase entropy result = 0xb75e7cAdbF8BA30e50fAeeBeb0784d70c04c6d890000000000; assembly { result := or(result, mul(_addr, 0xb75e7cAdbF8BA30e50fAeeBeb0784d70c04c6d89)) result := or(result, _release) } } 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 = 8; uint8 public constant TOKEN_DECIMALS_UINT8 = 8; uint public constant TOKEN_DECIMAL_MULTIPLIER = 10 ** TOKEN_DECIMALS; string public constant TOKEN_NAME = "ENTONE"; string public constant TOKEN_SYMBOL = "ENTONE"; bool public constant PAUSED = false; address public constant TARGET_USER = 0x834C26ACff6a39B864dDda8EC7483496bF96479D; bool public constant CONTINUE_MINTING = true; } contract ENTONE is Consts, FreezableMintableToken, BurnableToken, Pausable { event Initialized(); bool public initialized = false; constructor() public { init(); transferOwnership(TARGET_USER); } 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); } function init() private { require(!initialized); initialized = true; if (PAUSED) { pause(); } address[1] memory addresses = [address(0xb75e7cAdbF8BA30e50fAeeBeb0784d70c04c6d89)]; uint[1] memory amounts = [uint(500000000000)]; uint64[1] memory freezes = [uint64(0)]; for (uint i = 0; i < addresses.length; i++) { if (freezes[i] == 0) { mint(addresses[i], amounts[i]); } else { mintAndFreeze(addresses[i], amounts[i], freezes[i]); } } if (!CONTINUE_MINTING) { finishMinting(); } emit Initialized(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Initialized","type":"event"},{"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
60806040526006805460a060020a62ffffff02191690553480156200002357600080fd5b5060068054600160a060020a031916331790556200004964010000000062000077810204565b6200007173834c26acff6a39b864ddda8ec7483496bf96479d64010000000062000220810204565b620007cc565b62000081620007ad565b6200008b620007ad565b62000095620007ad565b600654600090760100000000000000000000000000000000000000000000900460ff1615620000c357600080fd5b6006805460b060020a60ff0219167601000000000000000000000000000000000000000000001790555050604080516020818101835273b75e7cadbf8ba30e50faeebeb0784d70c04c6d8982528251808201845264746a5288008152835191820190935260008082529194509192505b6001811015620001f1578181600181106200014a57fe5b60200201516001604060020a031615156200019d57620001968482600181106200017057fe5b60200201518483600181106200018257fe5b60200201516401000000006200024f810204565b50620001e8565b620001e6848260018110620001ae57fe5b6020020151848360018110620001c057fe5b6020020151848460018110620001d257fe5b60200201516401000000006200035e810204565b505b60010162000133565b6040517f5daa87a0e9463431830481fd4b6e3403442dfb9a12b9c07597e9f61d50b633c890600090a150505050565b600654600160a060020a031633146200023857600080fd5b6200024c8164010000000062000531810204565b50565b600654600090600160a060020a031633146200026a57600080fd5b60065474010000000000000000000000000000000000000000900460ff16156200029357600080fd5b600154620002b09083640100000000620013ee620005a382021704565b600155600160a060020a038316600090815260208190526040902054620002e69083640100000000620013ee620005a382021704565b600160a060020a0384166000818152602081815260409182902093909355805185815290519192600080516020620021ab83398151915292918290030190a2604080518381529051600160a060020a038516916000916000805160206200218b8339815191529181900360200190a350600192915050565b6006546000908190600160a060020a031633146200037b57600080fd5b60065474010000000000000000000000000000000000000000900460ff1615620003a457600080fd5b600154620003c19085640100000000620013ee620005a382021704565b600155620003e2856001604060020a038516640100000000620005b7810204565b6000818152600460205260409020549091506200040e9085640100000000620013ee620005a382021704565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546200044f9085640100000000620013ee620005a382021704565b600160a060020a0386166000908152600560205260409020556200047d8584640100000000620005ef810204565b604080518581529051600160a060020a03871691600080516020620021ab833981519152919081900360200190a2604080516001604060020a0385168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206200218b8339815191529181900360200190a3506001949350505050565b600160a060020a03811615156200054757600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600160a060020a031916600160a060020a0392909216919091179055565b81810182811015620005b157fe5b92915050565b73b75e7cadbf8ba30e50faeebeb0784d70c04c6d89919091021778b75e7cadbf8ba30e50faeebeb0784d70c04c6d8900000000001790565b600080808080426001604060020a038716116200060b57600080fd5b62000629876001604060020a038816640100000000620005b7810204565b945062000641876000640100000000620005b7810204565b6000818152600360205260409020549094506001604060020a031692508215156200069357600084815260036020526040902080546001604060020a0319166001604060020a038816179055620007a4565b620006b1876001604060020a038516640100000000620005b7810204565b91505b6001604060020a03831615801590620006de5750826001604060020a0316866001604060020a0316115b156200072357506000818152600360205260409020549092506001604060020a03908116918391166200071b8784640100000000620005b7810204565b9150620006b4565b826001604060020a0316866001604060020a031614156200074457620007a4565b6001604060020a038316156200077c57600085815260036020526040902080546001604060020a0319166001604060020a0385161790555b600084815260036020526040902080546001604060020a0319166001604060020a0388161790555b50505050505050565b6020604051908101604052806001906020820280388339509192915050565b6119af80620007dc6000396000f3006080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a9053181461039d578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b4114610261578063a9059cbb146105be578063a9aad58c146105e2578063ca63b5b8146105f7578063cf3b196714610618578063d73dd6231461062d578063d8aeedf514610651578063dd62ed3e14610672578063f2fde38b14610699575b600080fd5b3480156101e757600080fd5b506101f06106ba565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106bf565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f061074c565b34801561026d57600080fd5b5061027661075c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a0360043516602435610793565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff604435166107f9565b34801561034c57600080fd5b506101f0610997565b34801561036157600080fd5b50610376600160a060020a03600435166109ba565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109cb565b3480156103a957600080fd5b506102766109d1565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a08565b3480156103e857600080fd5b506103f1610a35565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a3a565b005b34801561044657600080fd5b50610438610bae565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c27565b34801561047f57600080fd5b50610438600435610d1f565b34801561049757600080fd5b50610376610d2c565b3480156104ac57600080fd5b50610376610d34565b3480156104c157600080fd5b50610376610d39565b3480156104d657600080fd5b506101f0610d9e565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610dae565b34801561050f57600080fd5b50610438610e9e565b34801561052457600080fd5b50610376600160a060020a0360043516611041565b34801561054557600080fd5b5061043861106a565b34801561055a57600080fd5b506105636110d8565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f06110f0565b3480156105a057600080fd5b50610438611174565b3480156105b557600080fd5b506105636111f2565b3480156105ca57600080fd5b506101f0600160a060020a0360043516602435611201565b3480156105ee57600080fd5b506101f061122c565b34801561060357600080fd5b50610376600160a060020a0360043516611231565b34801561062457600080fd5b506103f1610d34565b34801561063957600080fd5b506101f0600160a060020a03600435166024356112b7565b34801561065d57600080fd5b50610376600160a060020a0360043516611350565b34801561067e57600080fd5b50610376600160a060020a036004358116906024351661136b565b3480156106a557600080fd5b50610438600160a060020a0360043516611396565b600181565b600080805b8360010181101561071857600360006106e7878667ffffffffffffffff166113b6565b815260208101919091526040016000205467ffffffffffffffff16925082151561071057610744565b6001016106c4565b60046000610730878667ffffffffffffffff166113b6565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600681527f454e544f4e450000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461081557600080fd5b60065460a060020a900460ff161561082c57600080fd5b60015461083f908563ffffffff6113ee16565b6001556108568567ffffffffffffffff85166113b6565b600081815260046020526040902054909150610878908563ffffffff6113ee16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108af908563ffffffff6113ee16565b600160a060020a0386166000908152600560205260409020556108d285846113fb565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119648339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109c582611595565b92915050565b60015490565b60408051808201909152600681527f454e544f4e450000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a2257600080fd5b610a2d8484846115b0565b949350505050565b600890565b6000600160a060020a0384161515610a5157600080fd5b33600090815260208190526040902054831115610a6d57600080fd5b33600090815260208190526040902054610a8d908463ffffffff61171516565b33600090815260208190526040902055610ab18467ffffffffffffffff84166113b6565b600081815260046020526040902054909150610ad3908463ffffffff6113ee16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b0a908463ffffffff6113ee16565b600160a060020a038516600090815260056020526040902055610b2d84836113fb565b604080518481529051600160a060020a0386169133916000805160206119648339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bc557600080fd5b60065460a860020a900460ff161515610bdd57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c4157600080fd5b60065460a060020a900460ff1615610c5857600080fd5b600154610c6b908363ffffffff6113ee16565b600155600160a060020a038316600090815260208190526040902054610c97908363ffffffff6113ee16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119648339815191529181900360200190a350600192915050565b610d293382611727565b50565b6305f5e10081565b600881565b6000806000610d493360006106bf565b67ffffffffffffffff909116925090505b8115801590610d6857508142115b15610d9957610d75610e9e565b91820191610d843360006106bf565b67ffffffffffffffff90911692509050610d5a565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e0357336000908152600260209081526040808320600160a060020a0388168452909152812055610e38565b610e13818463ffffffff61171516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610eb13360006113b6565b60008181526003602052604090205490955067ffffffffffffffff169350831515610edb57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610efd57600080fd5b610f11338567ffffffffffffffff166113b6565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f5d908263ffffffff6113ee16565b3360009081526020818152604080832093909355600590522054610f87908263ffffffff61171516565b3360009081526005602052604090205567ffffffffffffffff82161515610fca576000858152600360205260409020805467ffffffffffffffff19169055611004565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461106383611595565b0192915050565b600654600160a060020a0316331461108157600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73834c26acff6a39b864ddda8ec7483496bf96479d81565b600654600090600160a060020a0316331461110a57600080fd5b60065460a060020a900460ff161561112157600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461118b57600080fd5b60065460a860020a900460ff16156111a257600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60065460009060a860020a900460ff161561121b57600080fd5b6112258383611816565b9392505050565b600081565b600080600360006112438560006113b6565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff8116156112b1576001909101906003600061128f8567ffffffffffffffff85166113b6565b815260208101919091526040016000205467ffffffffffffffff169050611261565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112eb908363ffffffff6113ee16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a031633146113ad57600080fd5b610d29816118e5565b73b75e7cadbf8ba30e50faeebeb0784d70c04c6d89919091021778b75e7cadbf8ba30e50faeebeb0784d70c04c6d8900000000001790565b818101828110156109c557fe5b6000808080804267ffffffffffffffff87161161141757600080fd5b61142b878767ffffffffffffffff166113b6565b94506114388760006113b6565b60008181526003602052604090205490945067ffffffffffffffff16925082151561148b576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561158c565b61149f878467ffffffffffffffff166113b6565b91505b67ffffffffffffffff8316158015906114ce57508267ffffffffffffffff168667ffffffffffffffff16115b15611507575060008181526003602052604090205490925067ffffffffffffffff9081169183911661150087846113b6565b91506114a2565b8267ffffffffffffffff168667ffffffffffffffff1614156115285761158c565b67ffffffffffffffff831615611562576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156115c757600080fd5b600160a060020a0384166000908152602081905260409020548211156115ec57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561161c57600080fd5b600160a060020a038416600090815260208190526040902054611645908363ffffffff61171516565b600160a060020a03808616600090815260208190526040808220939093559085168152205461167a908363ffffffff6113ee16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546116bc908363ffffffff61171516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611964833981519152929181900390910190a35060019392505050565b60008282111561172157fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561174c57600080fd5b600160a060020a038216600090815260208190526040902054611775908263ffffffff61171516565b600160a060020a0383166000908152602081905260409020556001546117a1908263ffffffff61171516565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119648339815191529181900360200190a35050565b6000600160a060020a038316151561182d57600080fd5b3360009081526020819052604090205482111561184957600080fd5b33600090815260208190526040902054611869908363ffffffff61171516565b3360009081526020819052604080822092909255600160a060020a0385168152205461189b908363ffffffff6113ee16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119648339815191529281900390910190a350600192915050565b600160a060020a03811615156118fa57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820115101dee43444955166d1ab0824af3403c1912bab69fad154585b42be3cb1b90029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885
Deployed Bytecode
0x6080604052600436106101d65763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416623fd35a81146101db57806302d6f7301461020457806305d2035b1461024c57806306fdde0314610261578063095ea7b3146102eb5780630bb2cd6b1461030f578063158ef93e1461034057806317a950ac1461035557806318160ddd14610388578063188214001461039d57806323b872dd146103b25780632a9053181461039d578063313ce567146103dc5780633be1e952146104075780633f4ba83a1461043a57806340c10f191461044f57806342966c6814610473578063567800851461048b5780635b7f415c146104a05780635be7fde8146104b55780635c975abb146104ca57806366188463146104df57806366a92cda1461050357806370a0823114610518578063715018a614610539578063726a431a1461054e5780637d64bcb41461057f5780638456cb59146105945780638da5cb5b146105a957806395d89b4114610261578063a9059cbb146105be578063a9aad58c146105e2578063ca63b5b8146105f7578063cf3b196714610618578063d73dd6231461062d578063d8aeedf514610651578063dd62ed3e14610672578063f2fde38b14610699575b600080fd5b3480156101e757600080fd5b506101f06106ba565b604080519115158252519081900360200190f35b34801561021057600080fd5b50610228600160a060020a03600435166024356106bf565b6040805167ffffffffffffffff909316835260208301919091528051918290030190f35b34801561025857600080fd5b506101f061074c565b34801561026d57600080fd5b5061027661075c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506101f0600160a060020a0360043516602435610793565b34801561031b57600080fd5b506101f0600160a060020a036004351660243567ffffffffffffffff604435166107f9565b34801561034c57600080fd5b506101f0610997565b34801561036157600080fd5b50610376600160a060020a03600435166109ba565b60408051918252519081900360200190f35b34801561039457600080fd5b506103766109cb565b3480156103a957600080fd5b506102766109d1565b3480156103be57600080fd5b506101f0600160a060020a0360043581169060243516604435610a08565b3480156103e857600080fd5b506103f1610a35565b6040805160ff9092168252519081900360200190f35b34801561041357600080fd5b50610438600160a060020a036004351660243567ffffffffffffffff60443516610a3a565b005b34801561044657600080fd5b50610438610bae565b34801561045b57600080fd5b506101f0600160a060020a0360043516602435610c27565b34801561047f57600080fd5b50610438600435610d1f565b34801561049757600080fd5b50610376610d2c565b3480156104ac57600080fd5b50610376610d34565b3480156104c157600080fd5b50610376610d39565b3480156104d657600080fd5b506101f0610d9e565b3480156104eb57600080fd5b506101f0600160a060020a0360043516602435610dae565b34801561050f57600080fd5b50610438610e9e565b34801561052457600080fd5b50610376600160a060020a0360043516611041565b34801561054557600080fd5b5061043861106a565b34801561055a57600080fd5b506105636110d8565b60408051600160a060020a039092168252519081900360200190f35b34801561058b57600080fd5b506101f06110f0565b3480156105a057600080fd5b50610438611174565b3480156105b557600080fd5b506105636111f2565b3480156105ca57600080fd5b506101f0600160a060020a0360043516602435611201565b3480156105ee57600080fd5b506101f061122c565b34801561060357600080fd5b50610376600160a060020a0360043516611231565b34801561062457600080fd5b506103f1610d34565b34801561063957600080fd5b506101f0600160a060020a03600435166024356112b7565b34801561065d57600080fd5b50610376600160a060020a0360043516611350565b34801561067e57600080fd5b50610376600160a060020a036004358116906024351661136b565b3480156106a557600080fd5b50610438600160a060020a0360043516611396565b600181565b600080805b8360010181101561071857600360006106e7878667ffffffffffffffff166113b6565b815260208101919091526040016000205467ffffffffffffffff16925082151561071057610744565b6001016106c4565b60046000610730878667ffffffffffffffff166113b6565b815260208101919091526040016000205491505b509250929050565b60065460a060020a900460ff1681565b60408051808201909152600681527f454e544f4e450000000000000000000000000000000000000000000000000000602082015290565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6006546000908190600160a060020a0316331461081557600080fd5b60065460a060020a900460ff161561082c57600080fd5b60015461083f908563ffffffff6113ee16565b6001556108568567ffffffffffffffff85166113b6565b600081815260046020526040902054909150610878908563ffffffff6113ee16565b600082815260046020908152604080832093909355600160a060020a03881682526005905220546108af908563ffffffff6113ee16565b600160a060020a0386166000908152600560205260409020556108d285846113fb565b604080518581529051600160a060020a038716917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a26040805167ffffffffffffffff85168152602081018690528151600160a060020a038816927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a2604080518581529051600160a060020a0387169133916000805160206119648339815191529181900360200190a3506001949350505050565b600654760100000000000000000000000000000000000000000000900460ff1681565b60006109c582611595565b92915050565b60015490565b60408051808201909152600681527f454e544f4e450000000000000000000000000000000000000000000000000000602082015281565b60065460009060a860020a900460ff1615610a2257600080fd5b610a2d8484846115b0565b949350505050565b600890565b6000600160a060020a0384161515610a5157600080fd5b33600090815260208190526040902054831115610a6d57600080fd5b33600090815260208190526040902054610a8d908463ffffffff61171516565b33600090815260208190526040902055610ab18467ffffffffffffffff84166113b6565b600081815260046020526040902054909150610ad3908463ffffffff6113ee16565b600082815260046020908152604080832093909355600160a060020a0387168252600590522054610b0a908463ffffffff6113ee16565b600160a060020a038516600090815260056020526040902055610b2d84836113fb565b604080518481529051600160a060020a0386169133916000805160206119648339815191529181900360200190a36040805167ffffffffffffffff84168152602081018590528151600160a060020a038716927f2ecd071e4d10ed2221b04636ed0724cce66a873aa98c1a31b4bb0e6846d3aab4928290030190a250505050565b600654600160a060020a03163314610bc557600080fd5b60065460a860020a900460ff161515610bdd57600080fd5b6006805475ff000000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600654600090600160a060020a03163314610c4157600080fd5b60065460a060020a900460ff1615610c5857600080fd5b600154610c6b908363ffffffff6113ee16565b600155600160a060020a038316600090815260208190526040902054610c97908363ffffffff6113ee16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206119648339815191529181900360200190a350600192915050565b610d293382611727565b50565b6305f5e10081565b600881565b6000806000610d493360006106bf565b67ffffffffffffffff909116925090505b8115801590610d6857508142115b15610d9957610d75610e9e565b91820191610d843360006106bf565b67ffffffffffffffff90911692509050610d5a565b505090565b60065460a860020a900460ff1681565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610e0357336000908152600260209081526040808320600160a060020a0388168452909152812055610e38565b610e13818463ffffffff61171516565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000806000806000610eb13360006113b6565b60008181526003602052604090205490955067ffffffffffffffff169350831515610edb57600080fd5b8367ffffffffffffffff164267ffffffffffffffff16111515610efd57600080fd5b610f11338567ffffffffffffffff166113b6565b600081815260036020908152604080832054600483528184208054908590553385529284905292205492955067ffffffffffffffff90911693509150610f5d908263ffffffff6113ee16565b3360009081526020818152604080832093909355600590522054610f87908263ffffffff61171516565b3360009081526005602052604090205567ffffffffffffffff82161515610fca576000858152600360205260409020805467ffffffffffffffff19169055611004565b600085815260036020526040808220805467ffffffffffffffff861667ffffffffffffffff19918216179091558583529120805490911690555b60408051828152905133917fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e919081900360200190a25050505050565b600160a060020a03811660009081526005602052604081205461106383611595565b0192915050565b600654600160a060020a0316331461108157600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b73834c26acff6a39b864ddda8ec7483496bf96479d81565b600654600090600160a060020a0316331461110a57600080fd5b60065460a060020a900460ff161561112157600080fd5b6006805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a0316331461118b57600080fd5b60065460a860020a900460ff16156111a257600080fd5b6006805475ff000000000000000000000000000000000000000000191660a860020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600654600160a060020a031681565b60065460009060a860020a900460ff161561121b57600080fd5b6112258383611816565b9392505050565b600081565b600080600360006112438560006113b6565b815260208101919091526040016000205467ffffffffffffffff1690505b67ffffffffffffffff8116156112b1576001909101906003600061128f8567ffffffffffffffff85166113b6565b815260208101919091526040016000205467ffffffffffffffff169050611261565b50919050565b336000908152600260209081526040808320600160a060020a03861684529091528120546112eb908363ffffffff6113ee16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a031660009081526005602052604090205490565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600654600160a060020a031633146113ad57600080fd5b610d29816118e5565b73b75e7cadbf8ba30e50faeebeb0784d70c04c6d89919091021778b75e7cadbf8ba30e50faeebeb0784d70c04c6d8900000000001790565b818101828110156109c557fe5b6000808080804267ffffffffffffffff87161161141757600080fd5b61142b878767ffffffffffffffff166113b6565b94506114388760006113b6565b60008181526003602052604090205490945067ffffffffffffffff16925082151561148b576000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff881617905561158c565b61149f878467ffffffffffffffff166113b6565b91505b67ffffffffffffffff8316158015906114ce57508267ffffffffffffffff168667ffffffffffffffff16115b15611507575060008181526003602052604090205490925067ffffffffffffffff9081169183911661150087846113b6565b91506114a2565b8267ffffffffffffffff168667ffffffffffffffff1614156115285761158c565b67ffffffffffffffff831615611562576000858152600360205260409020805467ffffffffffffffff191667ffffffffffffffff85161790555b6000848152600360205260409020805467ffffffffffffffff191667ffffffffffffffff88161790555b50505050505050565b600160a060020a031660009081526020819052604090205490565b6000600160a060020a03831615156115c757600080fd5b600160a060020a0384166000908152602081905260409020548211156115ec57600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561161c57600080fd5b600160a060020a038416600090815260208190526040902054611645908363ffffffff61171516565b600160a060020a03808616600090815260208190526040808220939093559085168152205461167a908363ffffffff6113ee16565b600160a060020a038085166000908152602081815260408083209490945591871681526002825282812033825290915220546116bc908363ffffffff61171516565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611964833981519152929181900390910190a35060019392505050565b60008282111561172157fe5b50900390565b600160a060020a03821660009081526020819052604090205481111561174c57600080fd5b600160a060020a038216600090815260208190526040902054611775908263ffffffff61171516565b600160a060020a0383166000908152602081905260409020556001546117a1908263ffffffff61171516565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206119648339815191529181900360200190a35050565b6000600160a060020a038316151561182d57600080fd5b3360009081526020819052604090205482111561184957600080fd5b33600090815260208190526040902054611869908363ffffffff61171516565b3360009081526020819052604080822092909255600160a060020a0385168152205461189b908363ffffffff6113ee16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206119648339815191529281900390910190a350600192915050565b600160a060020a03811615156118fa57600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820115101dee43444955166d1ab0824af3403c1912bab69fad154585b42be3cb1b90029
Deployed Bytecode Sourcemap
18657:1687:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18599:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18599:44:0;;;;;;;;;;;;;;;;;;;;;;11451:355;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11451:355:0;-1:-1:-1;;;;;11451:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8441:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8441:35:0;;;;18919:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18919: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;18919:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4345:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4345:192:0;-1:-1:-1;;;;;4345:192:0;;;;;;;17615:535;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17615:535:0;-1:-1:-1;;;;;17615:535:0;;;;;;;;;;;18778:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18778:31:0;;;;10558:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10558:128:0;-1:-1:-1;;;;;10558:128:0;;;;;;;;;;;;;;;;;;;;;2011:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2011:85:0;;;;18360:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18360:44:0;;;;19227:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19227:188:0;-1:-1:-1;;;;;19227:188:0;;;;;;;;;;;;19115:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19115:104:0;;;;;;;;;;;;;;;;;;;;;;;12180:547;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12180:547:0;-1:-1:-1;;;;;12180:547:0;;;;;;;;;;;;;16935:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16935:95:0;;;;8878:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8878:326:0;-1:-1:-1;;;;;8878:326:0;;;;;;;15584:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15584:75:0;;;;;18283:68;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18283:68:0;;;;18184:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18184:39:0;;;;13730:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13730:357:0;;;;16314:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16314:26:0;;;;6207:440;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6207:440:0;-1:-1:-1;;;;;6207:440:0;;;;;;;12807:756;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12807:756:0;;;;10161:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10161:148:0;-1:-1:-1;;;;;10161:148:0;;;;;7495:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7495:114:0;;;;18506:80;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18506:80:0;;;;;;;;-1:-1:-1;;;;;18506:80:0;;;;;;;;;;;;;;9324:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9324:144:0;;;;16755:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16755:93:0;;;;6877:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6877:20:0;;;;19423:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19423:158:0;-1:-1:-1;;;;;19423:158:0;;;;;;;18464:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18464:35:0;;;;10936:249;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10936:249:0;-1:-1:-1;;;;;10936:249:0;;;;;18230:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18230:46:0;;;;5462:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5462:304:0;-1:-1:-1;;;;;5462:304:0;;;;;;;10694:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10694:130:0;-1:-1:-1;;;;;10694:130:0;;;;;4864:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4864:162:0;-1:-1:-1;;;;;4864:162:0;;;;;;;;;;7777:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7777:105:0;-1:-1:-1;;;;;7777:105:0;;;;;18599:44;18639:4;18599:44;:::o;11451:355::-;11521:15;;;11564:180;11585:6;11594:1;11585:10;11581:1;:14;11564:180;;;11628:6;:30;11635:22;11641:5;11648:8;11635:22;;:5;:22::i;:::-;11628:30;;;;;;;;;;;;;;;;;-1:-1:-1;11677:13:0;;11673:60;;;11711:7;;11673:60;11597:3;;11564:180;;;11765:9;:33;11775:22;11781:5;11788:8;11775:22;;:5;:22::i;:::-;11765:33;;;;;;;;;;;;;;;-1:-1:-1;11451:355:0;;;;;;;:::o;8441:35::-;;;-1:-1:-1;;;8441:35:0;;;;;:::o;18919:87::-;18988:10;;;;;;;;;;;;;;;;;18919:87;:::o;4345:192::-;4433:10;4412:4;4425:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4425:29:0;;;;;;;;;;;:38;;;4475;;;;;;;4412:4;;4425:29;;4433:10;;4475:38;;;;;;;;-1:-1:-1;4527:4:0;4345:192;;;;:::o;17615:535::-;7380:5;;17714:4;;;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;8520:15;;-1:-1:-1;;;8520:15:0;;;;8519:16;8511:25;;;;;;17746:12;;:25;;17763:7;17746:25;:16;:25;:::i;:::-;17731:12;:40;17805:18;17811:3;17805:18;;;:5;:18::i;:::-;17858:21;;;;:9;:21;;;;;;17784:39;;-1:-1:-1;17858:34:0;;17884:7;17858:34;:25;:34;:::i;:::-;17834:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;17926:20:0;;;;:15;:20;;;;:33;;17951:7;17926:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;17903:20:0;;;;;;:15;:20;;;;;:56;17972:19;17919:3;17984:6;17972;:19::i;:::-;18007:18;;;;;;;;-1:-1:-1;;;;;18007:18:0;;;;;;;;;;;;;18041:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18041:29:0;;;;;;;;;;;18086:34;;;;;;;;-1:-1:-1;;;;;18086:34:0;;;18095:10;;-1:-1:-1;;;;;;;;;;;18086:34:0;;;;;;;;-1:-1:-1;18138:4:0;;17615:535;-1:-1:-1;;;;17615:535:0:o;18778:31::-;;;;;;;;;:::o;10558:128::-;10620:15;10655:23;10671:6;10655:15;:23::i;:::-;10648:30;10558:128;-1:-1:-1;;10558:128:0:o;2011:85::-;2078:12;;2011:85;:::o;18360:44::-;;;;;;;;;;;;;;;;;;;:::o;19227:188::-;19344:6;;19309:13;;-1:-1:-1;;;19344:6:0;;;;19343:7;19335:16;;;;;;19369:38;19388:5;19395:3;19400:6;19369:18;:38::i;:::-;19362:45;19227:188;-1:-1:-1;;;;19227:188:0:o;19115:104::-;18275:1;19115:104;:::o;12180:547::-;12417:18;-1:-1:-1;;;;;12266:17:0;;;;12258:26;;;;;;12323:10;12314:8;:20;;;;;;;;;;;12303:31;;;12295:40;;;;;;12380:10;12371:8;:20;;;;;;;;;;;:33;;12396:7;12371:33;:24;:33;:::i;:::-;12357:10;12348:8;:20;;;;;;;;;;:56;12438:18;12444:3;12438:18;;;:5;:18::i;:::-;12491:21;;;;:9;:21;;;;;;12417:39;;-1:-1:-1;12491:34:0;;12517:7;12491:34;:25;:34;:::i;:::-;12467:21;;;;:9;:21;;;;;;;;:58;;;;-1:-1:-1;;;;;12559:20:0;;;;:15;:20;;;;:33;;12584:7;12559:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;12536:20:0;;;;;;:15;:20;;;;;:56;12605:19;12552:3;12617:6;12605;:19::i;:::-;12640:34;;;;;;;;-1:-1:-1;;;;;12640:34:0;;;12649:10;;-1:-1:-1;;;;;;;;;;;12640:34:0;;;;;;;;12690:29;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12690:29:0;;;;;;;;;;;12180:547;;;;:::o;16935:95::-;7380:5;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;16650:6;;-1:-1:-1;;;16650:6:0;;;;16642:15;;;;;;;;16989:6;:14;;-1:-1:-1;;16989:14:0;;;17015:9;;;;16998:5;;17015:9;16935:95::o;8878:326::-;8614:5;;8999:4;;-1:-1:-1;;;;;8614:5:0;8600:10;:19;8592:28;;;;;;8520:15;;-1:-1:-1;;;8520:15:0;;;;8519:16;8511:25;;;;;;9030:12;;:25;;9047:7;9030:25;:16;:25;:::i;:::-;9015:12;:40;-1:-1:-1;;;;;9078:13:0;;:8;:13;;;;;;;;;;;:26;;9096:7;9078:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;9062:13:0;;:8;:13;;;;;;;;;;;;:42;;;;9116:18;;;;;;;9062:13;;9116:18;;;;;;;;;9146:34;;;;;;;;-1:-1:-1;;;;;9146:34:0;;;9163:1;;-1:-1:-1;;;;;;;;;;;9146:34:0;;;;;;;;-1:-1:-1;9194:4:0;8878:326;;;;:::o;15584:75::-;15628:25;15634:10;15646:6;15628:5;:25::i;:::-;15584:75;:::o;18283:68::-;18331:20;18283:68;:::o;18184:39::-;18222:1;18184:39;:::o;13730:357::-;13768:11;13792:12;13815;13859:26;13871:10;13883:1;13859:11;:26::i;:::-;13838:47;;;;;-1:-1:-1;13838:47:0;-1:-1:-1;13896:184:0;13903:12;;;;;:41;;;13937:7;13919:15;:25;13903:41;13896:184;;;13961:13;:11;:13::i;:::-;13989:17;;;;14042:26;14054:10;14066:1;14042:11;:26::i;:::-;14021:47;;;;;-1:-1:-1;14021:47:0;-1:-1:-1;13896:184:0;;;13730:357;;;:::o;16314:26::-;;;-1:-1:-1;;;16314:26:0;;;;;:::o;6207:440::-;6355:10;6315:4;6347:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6347:29:0;;;;;;;;;;6387:27;;;6383:168;;;6433:10;6457:1;6425:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6425:29:0;;;;;;;;;:33;6383:168;;;6513:30;:8;6526:16;6513:30;:12;:30;:::i;:::-;6489:10;6481:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6481:29:0;;;;;;;;;:62;6383:168;6571:10;6593:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6562:61:0;;6593:29;;;;;;;;;;;6562:61;;;;;;;;;6571:10;6562:61;;;;;;;;;;;-1:-1:-1;6637:4:0;;6207:440;-1:-1:-1;;;6207:440:0:o;12807:756::-;12848:15;12897:11;13016:18;13073:11;13118;12866:20;12872:10;12884:1;12866:5;:20::i;:::-;12911:15;;;;:6;:15;;;;;;12848:38;;-1:-1:-1;12911:15:0;;;-1:-1:-1;12945:9:0;;;12937:18;;;;;;13000:4;12974:30;;12981:15;12974:30;;;12966:39;;;;;;;;13037:23;13043:10;13055:4;13037:23;;:5;:23::i;:::-;13087:18;;;;:6;:18;;;;;;;;;13132:9;:21;;;;;;;13164:28;;;;13237:10;13228:20;;;;;;;;;13016:44;;-1:-1:-1;13087:18:0;;;;;-1:-1:-1;13132:21:0;-1:-1:-1;13228:32:0;;13132:21;13228:32;:24;:32;:::i;:::-;13214:10;13205:8;:20;;;;;;;;;;;:55;;;;13301:15;:27;;;;:39;;13333:6;13301:39;:31;:39;:::i;:::-;13287:10;13271:27;;;;:15;:27;;;;;:69;13357:9;;;;13353:159;;;13390:15;;;;:6;:15;;;;;13383:22;;-1:-1:-1;;13383:22:0;;;13353:159;;;13438:15;;;;:6;:15;;;;;;:22;;;;;-1:-1:-1;;13438:22:0;;;;;;;13482:18;;;;;13475:25;;;;;;;13353:159;13527:28;;;;;;;;13536:10;;13527:28;;;;;;;;;;12807:756;;;;;:::o;10161:148::-;-1:-1:-1;;;;;10278:23:0;;10217:15;10278:23;;;:15;:23;;;;;;10252;10294:6;10252:15;:23::i;:::-;:49;;10161:148;-1:-1:-1;;10161:148:0:o;7495:114::-;7380:5;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;7572:5;;7553:25;;-1:-1:-1;;;;;7572:5:0;;;;7553:25;;7572:5;;7553:25;7585:5;:18;;-1:-1:-1;;7585:18:0;;;7495:114::o;18506:80::-;18544:42;18506:80;:::o;9324:144::-;7380:5;;9383:4;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;8520:15;;-1:-1:-1;;;8520:15:0;;;;8519:16;8511:25;;;;;;9396:15;:22;;-1:-1:-1;;9396:22:0;-1:-1:-1;;;9396:22:0;;;9430:14;;;;9396:22;;9430:14;-1:-1:-1;9458:4:0;9324:144;:::o;16755:93::-;7380:5;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;16490:6;;-1:-1:-1;;;16490:6:0;;;;16489:7;16481:16;;;;;;16810:6;:13;;-1:-1:-1;;16810:13:0;-1:-1:-1;;;16810:13:0;;;16835:7;;;;16810:13;;16835:7;16755:93::o;6877:20::-;;;-1:-1:-1;;;;;6877:20:0;;:::o;19423:158::-;19521:6;;19486:13;;-1:-1:-1;;;19521:6:0;;;;19520:7;19512:16;;;;;;19546:27;19561:3;19566:6;19546:14;:27::i;:::-;19539:34;19423:158;-1:-1:-1;;;19423:158:0:o;18464:35::-;18494:5;18464:35;:::o;10936:249::-;10995:10;11018:14;11035:6;:23;11042:15;11048:5;11055:1;11042:5;:15::i;:::-;11035:23;;;;;;;;;;;;;;;;;-1:-1:-1;11069:109:0;11076:12;;;;11069:109;;11105:7;;;;;11137:6;:29;11144:21;11150:5;11144:21;;;:5;:21::i;:::-;11137:29;;;;;;;;;;;;;;;;;-1:-1:-1;11069:109:0;;;10936:249;;;;:::o;5462:304::-;5630:10;5565:4;5622:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5622:29:0;;;;;;;;;;:46;;5656:11;5622:46;:33;:46;:::i;:::-;5589:10;5581:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5581:29:0;;;;;;;;;;;;:88;;;5681:61;;;;;;5581:29;;5681:61;;;;;;;;;;;-1:-1:-1;5756:4:0;5462:304;;;;:::o;10694:130::-;-1:-1:-1;;;;;10793:23:0;10758:15;10793:23;;;:15;:23;;;;;;;10694:130::o;4864:162::-;-1:-1:-1;;;;;4995:15:0;;;4969:7;4995:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;4864:162::o;7777:105::-;7380:5;;-1:-1:-1;;;;;7380:5:0;7366:10;:19;7358:28;;;;;;7847:29;7866:9;7847:18;:29::i;14095:373::-;14362:42;14351:54;;;;14430:20;14243:52;14430:20;;14315:146::o;1578:127::-;1658:5;;;1677:6;;;;1670:14;;;14476:789;14584:11;;;;;14557:15;14548:24;;;;14540:33;;;;;;14598:18;14604:3;14609:6;14598:18;;:5;:18::i;:::-;14584:32;-1:-1:-1;14647:21:0;14653:3;14665:1;14647:5;:21::i;:::-;14693:17;;;;:6;:17;;;;;;14627:41;;-1:-1:-1;14693:17:0;;;-1:-1:-1;14727:9:0;;14723:89;;;14753:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;14753:26:0;;;;;;;14794:7;;14723:89;14842:16;14848:3;14853:4;14842:16;;:5;:16::i;:::-;14824:34;;14893:189;14900:9;;;;;;;:26;;;14922:4;14913:13;;:6;:13;;;14900:26;14893:189;;;-1:-1:-1;15014:15:0;;;;:6;:15;;;;;;14983:7;;-1:-1:-1;14943:13:0;15014:15;;;;14983:7;;14943:13;15054:16;15060:3;15014:15;15054:5;:16::i;:::-;15044:26;;14893:189;;;15108:4;15098:14;;:6;:14;;;15094:53;;;15129:7;;15094:53;15163:9;;;;15159:60;;15189:11;;;;:6;:11;;;;;:18;;-1:-1:-1;;15189:18:0;;;;;;;15159:60;15231:17;;;;:6;:17;;;;;:26;;-1:-1:-1;;15231:26:0;;;;;;;14476:789;;;;;;;;:::o;2795:101::-;-1:-1:-1;;;;;2874:16:0;2851:7;2874:16;;;;;;;;;;;;2795:101::o;3850:487::-;3962:4;-1:-1:-1;;;;;3986:17:0;;;;3978:26;;;;;;-1:-1:-1;;;;;4029:15:0;;:8;:15;;;;;;;;;;;4019:25;;;4011:34;;;;;;-1:-1:-1;;;;;4070:14:0;;;;;;:7;:14;;;;;;;;4085:10;4070:26;;;;;;;;4060:36;;;4052:45;;;;;;-1:-1:-1;;;;;4124:15:0;;:8;:15;;;;;;;;;;;:27;;4144:6;4124:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4106:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4174:13;;;;;;;:25;;4192:6;4174:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4158:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4235:14;;;;;:7;:14;;;;;4250:10;4235:26;;;;;;;:38;;4266:6;4235:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4206:14:0;;;;;;;:7;:14;;;;;;;;4221:10;4206:26;;;;;;;;:67;;;;4285:28;;;;;;;;;;;4206:14;;-1:-1:-1;;;;;;;;;;;4285:28:0;;;;;;;;;;-1:-1:-1;4327:4:0;3850:487;;;;;:::o;1398:113::-;1456:7;1479:6;;;;1472:14;;;;-1:-1:-1;1500:5:0;;;1398:113::o;15665:447::-;-1:-1:-1;;;;;15744:14:0;;:8;:14;;;;;;;;;;;15734:24;;;15726:33;;;;;;-1:-1:-1;;;;;15958:14:0;;:8;:14;;;;;;;;;;;:26;;15977:6;15958:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;15941:14:0;;:8;:14;;;;;;;;;;:43;16006:12;;:24;;16023:6;16006:24;:16;:24;:::i;:::-;15991:12;:39;16042:18;;;;;;;;-1:-1:-1;;;;;16042:18:0;;;;;;;;;;;;;16072:34;;;;;;;;16095:1;;-1:-1:-1;;;;;16072:34:0;;;-1:-1:-1;;;;;;;;;;;16072:34:0;;;;;;;;15665:447;;:::o;2257:329::-;2320:4;-1:-1:-1;;;;;2341:17:0;;;;2333:26;;;;;;2393:10;2384:8;:20;;;;;;;;;;;2374:30;;;2366:39;;;;;;2446:10;2437:8;:20;;;;;;;;;;;:32;;2462:6;2437:32;:24;:32;:::i;:::-;2423:10;2414:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2492:13:0;;;;;;:25;;2510:6;2492:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2476:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2529:33;;;;;;;2476:13;;2538:10;;-1:-1:-1;;;;;;;;;;;2529:33:0;;;;;;;;;-1:-1:-1;2576:4:0;2257:329;;;;:::o;8023:175::-;-1:-1:-1;;;;;8094:23:0;;;;8086:32;;;;;;8151:5;;8130:38;;-1:-1:-1;;;;;8130:38:0;;;;8151:5;;8130:38;;8151:5;;8130:38;8175:5;:17;;-1:-1:-1;;8175:17:0;-1:-1:-1;;;;;8175:17:0;;;;;;;;;;8023:175::o
Swarm Source
bzzr://115101dee43444955166d1ab0824af3403c1912bab69fad154585b42be3cb1b9
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.