ETH Price: $3,400.34 (-1.70%)
Gas: 7 Gwei

Token

ClickGem Token (CGMT)
 

Overview

Max Total Supply

55,000,000,000 CGMT

Holders

1,553

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
100,000 CGMT

Value
$0.00
0xf4ebcdea8373428633b2945bc8cd2f5048000fc5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ClickGemToken

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-05-22
*/

pragma solidity ^0.5.2;

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring '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;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}





/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @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 Transfer token to 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) {
        _transfer(msg.sender, 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) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @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) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][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
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }
}


/**
 * @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 private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner());
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _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 ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}






contract ClickGemToken is ERC20, Ownable, ERC20Detailed {
	uint public initialSupply = 55000000000;
	mapping (address => uint256) public freezeList;
	

	mapping (address => LockItem[]) public lockList;
	
    struct LockItem {
		uint256  time;
		uint256  amount;
	}
	
	constructor() public ERC20Detailed("ClickGem Token", "CGMT", 8) 
	{  
		_mint(msg.sender, initialSupply*100000000);
	}

	function freeze(address freezeAddress) public onlyOwner returns (bool done)
	{
		freezeList[freezeAddress]=1;
		return isFreeze(freezeAddress);
    	}

	function unFreeze(address freezeAddress) public onlyOwner returns (bool done)
	{
		delete freezeList[freezeAddress];
		return !isFreeze(freezeAddress); 
	}

	function isFreeze(address freezeAddress) public view returns (bool isFreezed) 
	{
		return freezeList[freezeAddress]==1;
	}



	function isLocked(address lockedAddress) public view returns (bool isLockedAddress)
	{
		if(lockList[lockedAddress].length>0)
		{
		    for(uint i=0; i< lockList[lockedAddress].length; i++)
		    {
		        if(lockList[lockedAddress][i].time - now > 0)
		        return true;
		    }
		}
		return false;
	}

	function transfer(address _receiver, uint256 _amount) public returns (bool success)
	{
		require(!isFreeze(msg.sender));
	    if(!isLocked(_receiver)){
		    uint256 remain = balanceOf(msg.sender).sub(_amount);
		    require(remain>=getLockedAmount(msg.sender));
		}
        return ERC20.transfer(_receiver, _amount);
	}

	function transferAndLock(address _receiver, uint256 _amount, uint256 time) public returns (bool success)
	{
        transfer(_receiver, _amount);
    	LockItem memory item = LockItem({amount:_amount, time:time+now});
		lockList[_receiver].push(item);
        return true;
	}
	
	function getLockedListSize(address lockedAddress) public view returns(uint256 _lenght)
	{
	    return lockList[lockedAddress].length;
	}
	
	function getLockedAmountAt(address lockedAddress, uint8 index) public view returns(uint256 _amount)
	{
	    return lockList[lockedAddress][index].amount;
	}
	
	function getLockedTimeAt(address lockedAddress, uint8 index) public view returns(uint256 _time)
	{
	    return lockList[lockedAddress][index].time.sub(now);
	}
	
	function getLockedAmount(address lockedAddress) public view returns(uint256 _amount)
	{
	    uint256 lockedAmount =0;
	    if(isLocked(lockedAddress))
	    {
	       for(uint8 j=0;j<lockList[lockedAddress].length;j++)
	       {
	        if(getLockedTimeAt(lockedAddress, j) > now )
	        {
	            lockedAmount=lockedAmount.add(getLockedAmountAt(lockedAddress, j));
	        }
	       }
	    }
	    return lockedAmount;
	}


}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"lockedAddress","type":"address"},{"name":"index","type":"uint8"}],"name":"getLockedTimeAt","outputs":[{"name":"_time","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"lockedAddress","type":"address"}],"name":"isLocked","outputs":[{"name":"isLockedAddress","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"lockedAddress","type":"address"}],"name":"getLockedListSize","outputs":[{"name":"_lenght","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"freezeAddress","type":"address"}],"name":"unFreeze","outputs":[{"name":"done","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"},{"name":"time","type":"uint256"}],"name":"transferAndLock","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"freezeAddress","type":"address"}],"name":"freeze","outputs":[{"name":"done","type":"bool"}],"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":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"lockedAddress","type":"address"}],"name":"getLockedAmount","outputs":[{"name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeList","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"lockList","outputs":[{"name":"time","type":"uint256"},{"name":"amount","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":"lockedAddress","type":"address"},{"name":"index","type":"uint8"}],"name":"getLockedAmountAt","outputs":[{"name":"_amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"freezeAddress","type":"address"}],"name":"isFreeze","outputs":[{"name":"isFreezed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","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"}]

6080604052640cce4166006007553480156200001a57600080fd5b506040805190810160405280600e81526020017f436c69636b47656d20546f6b656e0000000000000000000000000000000000008152506040805190810160405280600481526020017f43474d5400000000000000000000000000000000000000000000000000000000815250600833600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a382600490805190602001906200015f92919062000357565b5081600590805190602001906200017892919062000357565b5080600660006101000a81548160ff021916908360ff160217905550505050620001ba336305f5e10060075402620001c0640100000000026401000000009004565b62000406565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515620001fd57600080fd5b62000222816002546200033564010000000002620019b4179091906401000000009004565b60028190555062000289816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033564010000000002620019b4179091906401000000009004565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082840190508381101515156200034d57600080fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200039a57805160ff1916838001178555620003cb565b82800160010185558215620003cb579182015b82811115620003ca578251825591602001919060010190620003ad565b5b509050620003da9190620003de565b5090565b6200040391905b80821115620003ff576000816000905550600101620003e5565b5090565b90565b611b2e80620004166000396000f3fe608060405234801561001057600080fd5b50600436106101c6576000357c01000000000000000000000000000000000000000000000000000000009004806384d5d94411610116578063a9059cbb116100b4578063dd62ed3e1161008e578063dd62ed3e14610977578063ed1de0a8146109ef578063f2fde38b14610a54578063ff192bc814610a98576101c6565b8063a9059cbb14610850578063c657852c146108b6578063c8eb11971461090e576101c6565b80638f32d59b116100f05780638f32d59b146106ed578063929ec5371461070f57806395d89b4114610767578063a457c2d7146107ea576101c6565b806384d5d944146105d75780638d1fdf2f146106475780638da5cb5b146106a3576101c6565b8063378dc3dc1161018357806370a082311161015d57806370a08231146104c1578063715018a614610519578063730bf8e41461052357806383cfab421461057b576101c6565b8063378dc3dc146103e157806339509351146103ff5780634a4fbeec14610465576101c6565b806305350f90146101cb57806306fdde0314610230578063095ea7b3146102b357806318160ddd1461031957806323b872dd14610337578063313ce567146103bd575b600080fd5b61021a600480360360408110156101e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050610af4565b6040518082815260200191505060405180910390f35b610238610b71565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027857808201518184015260208101905061025d565b50505050905090810190601f1680156102a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ff600480360360408110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c13565b604051808215151515815260200191505060405180910390f35b610321610c2a565b6040518082815260200191505060405180910390f35b6103a36004803603606081101561034d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c34565b604051808215151515815260200191505060405180910390f35b6103c5610ce5565b604051808260ff1660ff16815260200191505060405180910390f35b6103e9610cfc565b6040518082815260200191505060405180910390f35b61044b6004803603604081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d02565b604051808215151515815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da7565b604051808215151515815260200191505060405180910390f35b610503600480360360208110156104d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ece565b6040518082815260200191505060405180910390f35b610521610f16565b005b6105656004803603602081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fea565b6040518082815260200191505060405180910390f35b6105bd6004803603602081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611036565b604051808215151515815260200191505060405180910390f35b61062d600480360360608110156105ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061109f565b604051808215151515815260200191505060405180910390f35b6106896004803603602081101561065d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061115b565b604051808215151515815260200191505060405180910390f35b6106ab6111c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f56111ef565b604051808215151515815260200191505060405180910390f35b6107516004803603602081101561072557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611247565b6040518082815260200191505060405180910390f35b61076f6112f7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107af578082015181840152602081019050610794565b50505050905090810190601f1680156107dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108366004803603604081101561080057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611399565b604051808215151515815260200191505060405180910390f35b61089c6004803603604081101561086657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143e565b604051808215151515815260200191505060405180910390f35b6108f8600480360360208110156108cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ae565b6040518082815260200191505060405180910390f35b61095a6004803603604081101561092457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c6565b604051808381526020018281526020019250505060405180910390f35b6109d96004803603604081101561098d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611506565b6040518082815260200191505060405180910390f35b610a3e60048036036040811015610a0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919050505061158d565b6040518082815260200191505060405180910390f35b610a9660048036036020811015610a6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f8565b005b610ada60048036036020811015610aae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611617565b604051808215151515815260200191505060405180910390f35b6000610b6942600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208460ff16815481101515610b4957fe5b90600052602060002090600202016000015461166390919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b5050505050905090565b6000610c20338484611685565b6001905092915050565b6000600254905090565b6000610c418484846117e8565b610cda8433610cd585600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b611685565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60075481565b6000610d9d3384610d9885600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b490919063ffffffff16565b611685565b6001905092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501115610ec45760008090505b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610ec257600042600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515610e9257fe5b906000526020600020906002020160000154031115610eb5576001915050610ec9565b8080600101915050610df9565b505b600090505b919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1e6111ef565b1515610f2957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b60006110406111ef565b151561104b57600080fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905561109782611617565b159050919050565b60006110ab848461143e565b506110b4611ae8565b60408051908101604052804285018152602001858152509050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b60006111656111ef565b151561117057600080fd5b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111be82611617565b9050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000905061125783610da7565b156112ee5760008090505b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508160ff1610156112ec57426112ba8583610af4565b11156112df576112dc6112cd858361158d565b836119b490919063ffffffff16565b91505b8080600101915050611262565b505b80915050919050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138f5780601f106113645761010080835404028352916020019161138f565b820191906000526020600020905b81548152906001019060200180831161137257829003601f168201915b5050505050905090565b6000611434338461142f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b611685565b6001905092915050565b600061144933611617565b15151561145557600080fd5b61145e83610da7565b151561149c5760006114818361147333610ece565b61166390919063ffffffff16565b905061148c33611247565b811015151561149a57600080fd5b505b6114a683836119d5565b905092915050565b60086020528060005260406000206000915090505481565b6009602052816000526040600020818154811015156114e157fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208260ff168154811015156115de57fe5b906000526020600020906002020160010154905092915050565b6116006111ef565b151561160b57600080fd5b611614816119ec565b50565b60006001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600082821115151561167457600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116c157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156116fd57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561182457600080fd5b611875816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611908816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008082840190508381101515156119cb57600080fd5b8091505092915050565b60006119e23384846117e8565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611a2857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60408051908101604052806000815260200160008152509056fea165627a7a72305820b4407a776893282bb9e681d78bc04cc15f2fb280c2120a4651a2303c5216fefc0029

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c6576000357c01000000000000000000000000000000000000000000000000000000009004806384d5d94411610116578063a9059cbb116100b4578063dd62ed3e1161008e578063dd62ed3e14610977578063ed1de0a8146109ef578063f2fde38b14610a54578063ff192bc814610a98576101c6565b8063a9059cbb14610850578063c657852c146108b6578063c8eb11971461090e576101c6565b80638f32d59b116100f05780638f32d59b146106ed578063929ec5371461070f57806395d89b4114610767578063a457c2d7146107ea576101c6565b806384d5d944146105d75780638d1fdf2f146106475780638da5cb5b146106a3576101c6565b8063378dc3dc1161018357806370a082311161015d57806370a08231146104c1578063715018a614610519578063730bf8e41461052357806383cfab421461057b576101c6565b8063378dc3dc146103e157806339509351146103ff5780634a4fbeec14610465576101c6565b806305350f90146101cb57806306fdde0314610230578063095ea7b3146102b357806318160ddd1461031957806323b872dd14610337578063313ce567146103bd575b600080fd5b61021a600480360360408110156101e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050610af4565b6040518082815260200191505060405180910390f35b610238610b71565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027857808201518184015260208101905061025d565b50505050905090810190601f1680156102a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ff600480360360408110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c13565b604051808215151515815260200191505060405180910390f35b610321610c2a565b6040518082815260200191505060405180910390f35b6103a36004803603606081101561034d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c34565b604051808215151515815260200191505060405180910390f35b6103c5610ce5565b604051808260ff1660ff16815260200191505060405180910390f35b6103e9610cfc565b6040518082815260200191505060405180910390f35b61044b6004803603604081101561041557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d02565b604051808215151515815260200191505060405180910390f35b6104a76004803603602081101561047b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da7565b604051808215151515815260200191505060405180910390f35b610503600480360360208110156104d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ece565b6040518082815260200191505060405180910390f35b610521610f16565b005b6105656004803603602081101561053957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fea565b6040518082815260200191505060405180910390f35b6105bd6004803603602081101561059157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611036565b604051808215151515815260200191505060405180910390f35b61062d600480360360608110156105ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061109f565b604051808215151515815260200191505060405180910390f35b6106896004803603602081101561065d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061115b565b604051808215151515815260200191505060405180910390f35b6106ab6111c5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106f56111ef565b604051808215151515815260200191505060405180910390f35b6107516004803603602081101561072557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611247565b6040518082815260200191505060405180910390f35b61076f6112f7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107af578082015181840152602081019050610794565b50505050905090810190601f1680156107dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108366004803603604081101561080057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611399565b604051808215151515815260200191505060405180910390f35b61089c6004803603604081101561086657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143e565b604051808215151515815260200191505060405180910390f35b6108f8600480360360208110156108cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114ae565b6040518082815260200191505060405180910390f35b61095a6004803603604081101561092457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c6565b604051808381526020018281526020019250505060405180910390f35b6109d96004803603604081101561098d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611506565b6040518082815260200191505060405180910390f35b610a3e60048036036040811015610a0557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919050505061158d565b6040518082815260200191505060405180910390f35b610a9660048036036020811015610a6a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f8565b005b610ada60048036036020811015610aae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611617565b604051808215151515815260200191505060405180910390f35b6000610b6942600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208460ff16815481101515610b4957fe5b90600052602060002090600202016000015461166390919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c095780601f10610bde57610100808354040283529160200191610c09565b820191906000526020600020905b815481529060010190602001808311610bec57829003601f168201915b5050505050905090565b6000610c20338484611685565b6001905092915050565b6000600254905090565b6000610c418484846117e8565b610cda8433610cd585600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b611685565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60075481565b6000610d9d3384610d9885600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b490919063ffffffff16565b611685565b6001905092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501115610ec45760008090505b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050811015610ec257600042600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481101515610e9257fe5b906000526020600020906002020160000154031115610eb5576001915050610ec9565b8080600101915050610df9565b505b600090505b919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f1e6111ef565b1515610f2957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b60006110406111ef565b151561104b57600080fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905561109782611617565b159050919050565b60006110ab848461143e565b506110b4611ae8565b60408051908101604052804285018152602001858152509050600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020906002020160009091929091909150600082015181600001556020820151816001015550505060019150509392505050565b60006111656111ef565b151561117057600080fd5b6001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111be82611617565b9050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000806000905061125783610da7565b156112ee5760008090505b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508160ff1610156112ec57426112ba8583610af4565b11156112df576112dc6112cd858361158d565b836119b490919063ffffffff16565b91505b8080600101915050611262565b505b80915050919050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138f5780601f106113645761010080835404028352916020019161138f565b820191906000526020600020905b81548152906001019060200180831161137257829003601f168201915b5050505050905090565b6000611434338461142f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b611685565b6001905092915050565b600061144933611617565b15151561145557600080fd5b61145e83610da7565b151561149c5760006114818361147333610ece565b61166390919063ffffffff16565b905061148c33611247565b811015151561149a57600080fd5b505b6114a683836119d5565b905092915050565b60086020528060005260406000206000915090505481565b6009602052816000526040600020818154811015156114e157fe5b9060005260206000209060020201600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208260ff168154811015156115de57fe5b906000526020600020906002020160010154905092915050565b6116006111ef565b151561160b57600080fd5b611614816119ec565b50565b60006001600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054149050919050565b600082821115151561167457600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156116c157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156116fd57600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561182457600080fd5b611875816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611908816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008082840190508381101515156119cb57600080fd5b8091505092915050565b60006119e23384846117e8565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515611a2857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60408051908101604052806000815260200160008152509056fea165627a7a72305820b4407a776893282bb9e681d78bc04cc15f2fb280c2120a4651a2303c5216fefc0029

Deployed Bytecode Sourcemap

13689:2735:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13689:2735:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15805:162;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15805:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13273:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13273:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5400:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3553:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6021:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6021:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13589:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13749:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6775:203;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6775:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14553:318;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14553:318:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3863:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3863:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11898:140;;;:::i;:::-;;15495:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15495:139:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14254:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14254:159:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15209:280;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15209:280:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14095:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14095:154:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11108:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11443:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15973:444;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15973:444:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13423:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13423:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7509:213;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7509:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14876:328;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14876:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13792:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13792:46:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13847:47;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13847:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4308:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4308:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15640:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15640:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12215:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12215:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14418:126;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14418:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15805:162;15886:13;15918:44;15958:3;15918:8;:23;15927:13;15918:23;;;;;;;;;;;;;;;15942:5;15918:30;;;;;;;;;;;;;;;;;;;;;;:35;;;:39;;:44;;;;:::i;:::-;15911:51;;15805:162;;;;:::o;13273:83::-;13310:13;13343:5;13336:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13273:83;:::o;5400:148::-;5465:4;5482:36;5491:10;5503:7;5512:5;5482:8;:36::i;:::-;5536:4;5529:11;;5400:148;;;;:::o;3553:91::-;3597:7;3624:12;;3617:19;;3553:91;:::o;6021:228::-;6100:4;6117:26;6127:4;6133:2;6137:5;6117:9;:26::i;:::-;6154:65;6163:4;6169:10;6181:37;6212:5;6181:8;:14;6190:4;6181:14;;;;;;;;;;;;;;;:26;6196:10;6181:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6154:8;:65::i;:::-;6237:4;6230:11;;6021:228;;;;;:::o;13589:83::-;13630:5;13655:9;;;;;;;;;;;13648:16;;13589:83;:::o;13749:39::-;;;;:::o;6775:203::-;6855:4;6872:76;6881:10;6893:7;6902:45;6936:10;6902:8;:20;6911:10;6902:20;;;;;;;;;;;;;;;:29;6923:7;6902:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;6872:8;:76::i;:::-;6966:4;6959:11;;6775:203;;;;:::o;14553:318::-;14615:20;14678:1;14647:8;:23;14656:13;14647:23;;;;;;;;;;;;;;;:30;;;;:32;14644:206;;;14697:6;14704:1;14697:8;;14693:152;14710:8;:23;14719:13;14710:23;;;;;;;;;;;;;;;:30;;;;14707:1;:33;14693:152;;;14810:1;14804:3;14770:8;:23;14779:13;14770:23;;;;;;;;;;;;;;;14794:1;14770:26;;;;;;;;;;;;;;;;;;;;:31;;;:37;:41;14767:68;;;14831:4;14824:11;;;;;14767:68;14742:3;;;;;;;14693:152;;;;14644:206;14861:5;14854:12;;14553:318;;;;:::o;3863:106::-;3918:7;3945:9;:16;3955:5;3945:16;;;;;;;;;;;;;;;;3938:23;;3863:106;;;:::o;11898:140::-;11320:9;:7;:9::i;:::-;11312:18;;;;;;;;11997:1;11960:40;;11981:6;;;;;;;;;;;11960:40;;;;;;;;;;;;12028:1;12011:6;;:19;;;;;;;;;;;;;;;;;;11898:140::o;15495:139::-;15565:15;15599:8;:23;15608:13;15599:23;;;;;;;;;;;;;;;:30;;;;15592:37;;15495:139;;;:::o;14254:159::-;14321:9;11320;:7;:9::i;:::-;11312:18;;;;;;;;14346:10;:25;14357:13;14346:25;;;;;;;;;;;;;;;14339:32;;;14384:23;14393:13;14384:8;:23::i;:::-;14383:24;14376:31;;14254:159;;;:::o;15209:280::-;15300:12;15327:28;15336:9;15347:7;15327:8;:28::i;:::-;;15363:20;;:::i;:::-;15386:41;;;;;;;;;15422:3;15417:4;:8;15386:41;;;;15403:7;15386:41;;;15363:64;;15432:8;:19;15441:9;15432:19;;;;;;;;;;;;;;;15457:4;15432:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;15432:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15480:4;15473:11;;;15209:280;;;;;:::o;14095:154::-;14160:9;11320;:7;:9::i;:::-;11312:18;;;;;;;;14204:1;14178:10;:25;14189:13;14178:25;;;;;;;;;;;;;;;:27;;;;14217:23;14226:13;14217:8;:23::i;:::-;14210:30;;14095:154;;;:::o;11108:79::-;11146:7;11173:6;;;;;;;;;;;11166:13;;11108:79;:::o;11443:92::-;11483:4;11521:6;;;;;;;;;;;11507:20;;:10;:20;;;11500:27;;11443:92;:::o;15973:444::-;16041:15;16068:20;16090:1;16068:23;;16102;16111:13;16102:8;:23::i;:::-;16099:287;;;16148:7;16156:1;16148:9;;16144:234;16160:8;:23;16169:13;16160:23;;;;;;;;;;;;;;;:30;;;;16158:1;:32;;;16144:234;;;16256:3;16220:33;16236:13;16251:1;16220:15;:33::i;:::-;:39;16217:150;;;16301:53;16318:35;16336:13;16351:1;16318:17;:35::i;:::-;16301:12;:16;;:53;;;;:::i;:::-;16288:66;;16217:150;16191:3;;;;;;;16144:234;;;;16099:287;16400:12;16393:19;;;15973:444;;;:::o;13423:87::-;13462:13;13495:7;13488:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13423:87;:::o;7509:213::-;7594:4;7611:81;7620:10;7632:7;7641:50;7675:15;7641:8;:20;7650:10;7641:20;;;;;;;;;;;;;;;:29;7662:7;7641:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7611:8;:81::i;:::-;7710:4;7703:11;;7509:213;;;;:::o;14876:328::-;14946:12;14976:20;14985:10;14976:8;:20::i;:::-;14975:21;14967:30;;;;;;;;15009:19;15018:9;15009:8;:19::i;:::-;15008:20;15005:143;;;15038:14;15055:34;15081:7;15055:21;15065:10;15055:9;:21::i;:::-;:25;;:34;;;;:::i;:::-;15038:51;;15114:27;15130:10;15114:15;:27::i;:::-;15106:6;:35;;15098:44;;;;;;;;15005:143;;15165:34;15180:9;15191:7;15165:14;:34::i;:::-;15158:41;;14876:328;;;;:::o;13792:46::-;;;;;;;;;;;;;;;;;:::o;13847:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4308:131::-;4380:7;4407:8;:15;4416:5;4407:15;;;;;;;;;;;;;;;:24;4423:7;4407:24;;;;;;;;;;;;;;;;4400:31;;4308:131;;;;:::o;15640:159::-;15723:15;15757:8;:23;15766:13;15757:23;;;;;;;;;;;;;;;15781:5;15757:30;;;;;;;;;;;;;;;;;;;;;;:37;;;15750:44;;15640:159;;;;:::o;12215:109::-;11320:9;:7;:9::i;:::-;11312:18;;;;;;;;12288:28;12307:8;12288:18;:28::i;:::-;12215:109;:::o;14418:126::-;14480:14;14538:1;14511:10;:25;14522:13;14511:25;;;;;;;;;;;;;;;;:28;14504:35;;14418:126;;;:::o;2008:150::-;2066:7;2099:1;2094;:6;;2086:15;;;;;;;;2112:9;2128:1;2124;:5;2112:17;;2149:1;2142:8;;;2008:150;;;;:::o;9608:254::-;9720:1;9701:21;;:7;:21;;;;9693:30;;;;;;;;9759:1;9742:19;;:5;:19;;;;9734:28;;;;;;;;9802:5;9775:8;:15;9784:5;9775:15;;;;;;;;;;;;;;;:24;9791:7;9775:24;;;;;;;;;;;;;;;:32;;;;9839:7;9823:31;;9832:5;9823:31;;;9848:5;9823:31;;;;;;;;;;;;;;;;;;9608:254;;;:::o;7949:262::-;8051:1;8037:16;;:2;:16;;;;8029:25;;;;;;;;8085:26;8105:5;8085:9;:15;8095:4;8085:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8067:9;:15;8077:4;8067:15;;;;;;;;;;;;;;;:44;;;;8138:24;8156:5;8138:9;:13;8148:2;8138:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8122:9;:13;8132:2;8122:13;;;;;;;;;;;;;;;:40;;;;8193:2;8178:25;;8187:4;8178:25;;;8197:5;8178:25;;;;;;;;;;;;;;;;;;7949:262;;;:::o;2246:150::-;2304:7;2324:9;2340:1;2336;:5;2324:17;;2365:1;2360;:6;;2352:15;;;;;;;;2387:1;2380:8;;;2246:150;;;;:::o;4613:140::-;4674:4;4691:32;4701:10;4713:2;4717:5;4691:9;:32::i;:::-;4741:4;4734:11;;4613:140;;;;:::o;12474:187::-;12568:1;12548:22;;:8;:22;;;;12540:31;;;;;;;;12616:8;12587:38;;12608:6;;;;;;;;;;;12587:38;;;;;;;;;;;;12645:8;12636:6;;:17;;;;;;;;;;;;;;;;;;12474:187;:::o;13689:2735::-;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://b4407a776893282bb9e681d78bc04cc15f2fb280c2120a4651a2303c5216fefc
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.