ETH Price: $1,793.59 (-1.54%)

Contract

0x93a42c57335ac93c4DE944831A9Ff36435B68Da0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer150455872022-06-29 15:10:191009 days ago1656515419IN
0x93a42c57...435B68Da0
0 ETH0.0037436574.47694392
Approve128339552021-07-15 21:24:151358 days ago1626384255IN
0x93a42c57...435B68Da0
0 ETH0.0013461529
Approve128262422021-07-14 16:35:571359 days ago1626280557IN
0x93a42c57...435B68Da0
0 ETH0.0018567640
Mint128252572021-07-14 13:01:241359 days ago1626267684IN
0x93a42c57...435B68Da0
0 ETH0.002789438.5

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x3A179637...D92C27410
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC677BridgeToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-17
*/

/**
 *Submitted for verification at Etherscan.io on 2020-04-06
 */

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

pragma solidity ^0.4.24;

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.4.24;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    /**
     * @dev Multiplies two numbers, throws on overflow.
     */
    function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
        // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (_a == 0) {
            return 0;
        }

        c = _a * _b;
        assert(c / _a == _b);
        return c;
    }

    /**
     * @dev Integer division of two numbers, truncating the quotient.
     */
    function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
        // assert(_b > 0); // Solidity automatically throws when dividing by 0
        // uint256 c = _a / _b;
        // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
        return _a / _b;
    }

    /**
     * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
        assert(_b <= _a);
        return _a - _b;
    }

    /**
     * @dev Adds two numbers, throws on overflow.
     */
    function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
        c = _a + _b;
        assert(c >= _a);
        return c;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

pragma solidity ^0.4.24;

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) internal balances;

    uint256 internal 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(_value <= balances[msg.sender]);
        require(_to != address(0));

        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];
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

pragma solidity ^0.4.24;

/**
 * @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);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.4.24;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address _owner, address _spender)
        public
        view
        returns (uint256);

    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    ) public returns (bool);

    function approve(address _spender, uint256 _value) public returns (bool);

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

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

pragma solidity ^0.4.24;

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {
    mapping(address => mapping(address => uint256)) internal allowed;

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    ) public returns (bool) {
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);
        require(_to != address(0));

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender)
        public
        view
        returns (uint256)
    {
        return allowed[_owner][_spender];
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _addedValue The amount of tokens to increase the allowance by.
     */
    function increaseApproval(address _spender, uint256 _addedValue)
        public
        returns (bool)
    {
        allowed[msg.sender][_spender] = (
            allowed[msg.sender][_spender].add(_addedValue)
        );
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * @param _spender The address which will spend the funds.
     * @param _subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseApproval(address _spender, uint256 _subtractedValue)
        public
        returns (bool)
    {
        uint256 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;
    }
}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.4.24;

/**
 * @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.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    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;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol

pragma solidity ^0.4.24;

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
    event Mint(address indexed to, uint256 amount);
    event MintFinished();

    bool public mintingFinished = false;

    modifier canMint() {
        require(!mintingFinished);
        _;
    }

    modifier hasMintPermission() {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev Function to mint tokens
     * @param _to The address that will receive the minted tokens.
     * @param _amount The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address _to, uint256 _amount)
        public
        hasMintPermission
        canMint
        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() public onlyOwner canMint returns (bool) {
        mintingFinished = true;
        emit MintFinished();
        return true;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

pragma solidity ^0.4.24;

/**
 * @title DetailedERC20 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 DetailedERC20 is ERC20 {
    string public name;
    string public symbol;
    uint8 public decimals;

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

// File: openzeppelin-solidity/contracts/AddressUtils.sol

pragma solidity ^0.4.24;

/**
 * Utility library of inline functions on addresses
 */
library AddressUtils {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param _addr address to check
     * @return whether the target address is a contract
     */
    function isContract(address _addr) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            size := extcodesize(_addr)
        }
        return size > 0;
    }
}

// File: contracts/interfaces/ERC677.sol

pragma solidity 0.4.24;

contract ERC677 is ERC20 {
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 value,
        bytes data
    );

    function transferAndCall(
        address,
        uint256,
        bytes
    ) external returns (bool);

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool);

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool);
}

// File: contracts/interfaces/IBurnableMintableERC677Token.sol

pragma solidity 0.4.24;

contract IBurnableMintableERC677Token is ERC677 {
    function mint(address _to, uint256 _amount) public returns (bool);

    function burn(uint256 _value) public;

    function claimTokens(address _token, address _to) public;
}

// File: contracts/upgradeable_contracts/Sacrifice.sol

pragma solidity 0.4.24;

contract Sacrifice {
    constructor(address _recipient) public payable {
        selfdestruct(_recipient);
    }
}

// File: contracts/upgradeable_contracts/Claimable.sol

pragma solidity 0.4.24;

contract Claimable {
    bytes4 internal constant TRANSFER = 0xa9059cbb; // transfer(address,uint256)

    modifier validAddress(address _to) {
        require(_to != address(0));
        /* solcov ignore next */
        _;
    }

    function claimValues(address _token, address _to) internal {
        if (_token == address(0)) {
            claimNativeCoins(_to);
        } else {
            claimErc20Tokens(_token, _to);
        }
    }

    function claimNativeCoins(address _to) internal {
        uint256 value = address(this).balance;
        if (!_to.send(value)) {
            (new Sacrifice).value(value)(_to);
        }
    }

    function claimErc20Tokens(address _token, address _to) internal {
        ERC20Basic token = ERC20Basic(_token);
        uint256 balance = token.balanceOf(this);
        safeTransfer(_token, _to, balance);
    }

    function safeTransfer(
        address _token,
        address _to,
        uint256 _value
    ) internal {
        bytes memory returnData;
        bool returnDataResult;
        bytes memory callData = abi.encodeWithSelector(TRANSFER, _to, _value);
        assembly {
            let result := call(
                gas,
                _token,
                0x0,
                add(callData, 0x20),
                mload(callData),
                0,
                32
            )
            returnData := mload(0)
            returnDataResult := mload(0)

            switch result
                case 0 {
                    revert(0, 0)
                }
        }

        // Return data is optional
        if (returnData.length > 0) {
            require(returnDataResult);
        }
    }
}

// File: contracts/ERC677BridgeToken.sol

pragma solidity 0.4.24;

contract ERC677BridgeToken is
    IBurnableMintableERC677Token,
    DetailedERC20,
    BurnableToken,
    MintableToken,
    Claimable
{
    address public bridgeContract;

    event ContractFallbackCallFailed(address from, address to, uint256 value);

    constructor(
        string _name,
        string _symbol,
        uint8 _decimals
    ) public DetailedERC20(_name, _symbol, _decimals) {
        // solhint-disable-previous-line no-empty-blocks
    }

    function setBridgeContract(address _bridgeContract) external onlyOwner {
        require(AddressUtils.isContract(_bridgeContract));
        bridgeContract = _bridgeContract;
    }

    modifier validRecipient(address _recipient) {
        require(_recipient != address(0) && _recipient != address(this));
        /* solcov ignore next */
        _;
    }

    function transferAndCall(
        address _to,
        uint256 _value,
        bytes _data
    ) external validRecipient(_to) returns (bool) {
        require(superTransfer(_to, _value));
        emit Transfer(msg.sender, _to, _value, _data);

        if (AddressUtils.isContract(_to)) {
            require(contractFallback(msg.sender, _to, _value, _data));
        }
        return true;
    }

    function getTokenInterfacesVersion()
        external
        pure
        returns (
            uint64 major,
            uint64 minor,
            uint64 patch
        )
    {
        return (2, 2, 0);
    }

    function superTransfer(address _to, uint256 _value)
        internal
        returns (bool)
    {
        return super.transfer(_to, _value);
    }

    function transfer(address _to, uint256 _value) public returns (bool) {
        require(superTransfer(_to, _value));
        callAfterTransfer(msg.sender, _to, _value);
        return true;
    }

    function transferFrom(
        address _from,
        address _to,
        uint256 _value
    ) public returns (bool) {
        require(super.transferFrom(_from, _to, _value));
        callAfterTransfer(_from, _to, _value);
        return true;
    }

    function callAfterTransfer(
        address _from,
        address _to,
        uint256 _value
    ) internal {
        if (
            AddressUtils.isContract(_to) &&
            !contractFallback(_from, _to, _value, new bytes(0))
        ) {
            require(_to != bridgeContract);
            emit ContractFallbackCallFailed(_from, _to, _value);
        }
    }

    function contractFallback(
        address _from,
        address _to,
        uint256 _value,
        bytes _data
    ) private returns (bool) {
        return
            _to.call(
                abi.encodeWithSignature(
                    "onTokenTransfer(address,uint256,bytes)",
                    _from,
                    _value,
                    _data
                )
            );
    }

    function finishMinting() public returns (bool) {
        revert();
    }

    function renounceOwnership() public onlyOwner {
        revert();
    }

    function claimTokens(address _token, address _to)
        public
        onlyOwner
        validAddress(_to)
    {
        claimValues(_token, _to);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        returns (bool)
    {
        return super.increaseApproval(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        returns (bool)
    {
        return super.decreaseApproval(spender, subtractedValue);
    }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"_bridgeContract","type":"address"}],"name":"setBridgeContract","outputs":[],"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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"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":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":"_token","type":"address"},{"name":"_to","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTokenInterfacesVersion","outputs":[{"name":"major","type":"uint64"},{"name":"minor","type":"uint64"},{"name":"patch","type":"uint64"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bridgeContract","outputs":[{"name":"","type":"address"}],"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":"_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":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"ContractFallbackCallFailed","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":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"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"},{"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"}]

Deployed Bytecode

0x608060405260043610610149576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806305d2035b1461014e57806306fdde031461017d578063095ea7b31461020d5780630b26cf661461027257806318160ddd146102b557806323b872dd146102e0578063313ce5671461036557806339509351146103965780634000aea0146103fb57806340c10f191461047857806342966c68146104dd578063661884631461050a57806369ffa08a1461056f57806370a08231146105d2578063715018a6146106295780637d64bcb414610640578063859ba28c1461066f5780638da5cb5b146106e457806395d89b411461073b578063a457c2d7146107cb578063a9059cbb14610830578063cd59658314610895578063d73dd623146108ec578063dd62ed3e14610951578063f2fde38b146109c8575b600080fd5b34801561015a57600080fd5b50610163610a0b565b604051808215151515815260200191505060405180910390f35b34801561018957600080fd5b50610192610a1e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101d25780820151818401526020810190506101b7565b50505050905090810190601f1680156101ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021957600080fd5b50610258600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610abc565b604051808215151515815260200191505060405180910390f35b34801561027e57600080fd5b506102b3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bae565b005b3480156102c157600080fd5b506102ca610c62565b6040518082815260200191505060405180910390f35b3480156102ec57600080fd5b5061034b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c6c565b604051808215151515815260200191505060405180910390f35b34801561037157600080fd5b5061037a610c9a565b604051808260ff1660ff16815260200191505060405180910390f35b3480156103a257600080fd5b506103e1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cad565b604051808215151515815260200191505060405180910390f35b34801561040757600080fd5b5061045e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001908201803590602001919091929391929390505050610cc1565b604051808215151515815260200191505060405180910390f35b34801561048457600080fd5b506104c3600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e39565b604051808215151515815260200191505060405180910390f35b3480156104e957600080fd5b5061050860048036038101908080359060200190929190505050611021565b005b34801561051657600080fd5b50610555600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061102e565b604051808215151515815260200191505060405180910390f35b34801561057b57600080fd5b506105d0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112c0565b005b3480156105de57600080fd5b50610613600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611368565b6040518082815260200191505060405180910390f35b34801561063557600080fd5b5061063e6113b1565b005b34801561064c57600080fd5b50610655611412565b604051808215151515815260200191505060405180910390f35b34801561067b57600080fd5b50610684611419565b604051808467ffffffffffffffff1667ffffffffffffffff1681526020018367ffffffffffffffff1667ffffffffffffffff1681526020018267ffffffffffffffff1667ffffffffffffffff168152602001935050505060405180910390f35b3480156106f057600080fd5b506106f9611437565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074757600080fd5b5061075061145d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610790578082015181840152602081019050610775565b50505050905090810190601f1680156107bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107d757600080fd5b50610816600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114fb565b604051808215151515815260200191505060405180910390f35b34801561083c57600080fd5b5061087b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061150f565b604051808215151515815260200191505060405180910390f35b3480156108a157600080fd5b506108aa61153b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108f857600080fd5b50610937600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611561565b604051808215151515815260200191505060405180910390f35b34801561095d57600080fd5b506109b2600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061175d565b6040518082815260200191505060405180910390f35b3480156109d457600080fd5b50610a09600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117e4565b005b600660149054906101000a900460ff1681565b60008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b505050505081565b600081600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610c0a57600080fd5b610c138161184c565b1515610c1e57600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600454905090565b6000610c7984848461185f565b1515610c8457600080fd5b610c8f848484611c1f565b600190509392505050565b600260009054906101000a900460ff1681565b6000610cb98383611561565b905092915050565b600084600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d2d57503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b1515610d3857600080fd5b610d428686611d78565b1515610d4d57600080fd5b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1687878760405180848152602001806020018281038252848482818152602001925080828437820191505094505050505060405180910390a3610ddd8661184c565b15610e2c57610e2033878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437820191505050505050611d8c565b1515610e2b57600080fd5b5b6001915050949350505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610e9757600080fd5b600660149054906101000a900460ff16151515610eb357600080fd5b610ec882600454611f4d90919063ffffffff16565b600481905550610f2082600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4d90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a28273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b61102b3382611f69565b50565b600080600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508083101515611140576000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111d4565b611153838261211f90919063ffffffff16565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561131c57600080fd5b80600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561135957600080fd5b6113638383612138565b505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561140d57600080fd5b600080fd5b6000806000fd5b60008060006002806000829250819150809050925092509250909192565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114f35780601f106114c8576101008083540402835291602001916114f3565b820191906000526020600020905b8154815290600101906020018083116114d657829003601f168201915b505050505081565b6000611507838361102e565b905092915050565b600061151b8383611d78565b151561152657600080fd5b611531338484611c1f565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006115f282600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4d90919063ffffffff16565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561184057600080fd5b6118498161218a565b50565b600080823b905060008111915050919050565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156118af57600080fd5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561193a57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561197657600080fd5b6119c882600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211f90919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a5d82600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4d90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b2f82600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211f90919063ffffffff16565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b611c288261184c565b8015611c715750611c6f83838360006040519080825280601f01601f191660200182016040528015611c695781602001602082028038833980820191505090505b50611d8c565b155b15611d7357600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611cd357600080fd5b7f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b838383604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a15b505050565b6000611d848383612286565b905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff16858484604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611e23578082015181840152602081019050611e08565b50505050905090810190601f168015611e505780820380516001836020036101000a031916815260200191505b509450505050506040516020818303038152906040527fa4c0ed36000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180828051906020019080838360005b83811015611f01578082015181840152602081019050611ee6565b50505050905090810190601f168015611f2e5780820380516001836020036101000a031916815260200191505b509150506000604051808303816000865af19150509050949350505050565b60008183019050828110151515611f6057fe5b80905092915050565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111151515611fb757600080fd5b61200981600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211f90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120618160045461211f90919063ffffffff16565b6004819055508173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600082821115151561212d57fe5b818303905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561217b57612176816124ab565b612186565b6121858282612566565b5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156121c657600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111515156122d657600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415151561231257600080fd5b61236482600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461211f90919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123f982600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4d90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff163190508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050151561256257808261250c612770565b808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506040518091039082f08015801561255d573d6000803e3d6000fd5b509050505b5050565b6000808391508173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561260757600080fd5b505af115801561261b573d6000803e3d6000fd5b505050506040513d602081101561263157600080fd5b8101908080519060200190929190505050905061264f848483612655565b50505050565b60606000606063a9059cbb7c0100000000000000000000000000000000000000000000000000000000028585604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505090506020600082516020840160008a5af160005193506000519250806000811461274a5761274f565b600080fd5b50506000835111156127685781151561276757600080fd5b5b505050505050565b604051603f806127808339019056006080604052604051602080603f833981018060405281019080805190602001909291905050508073ffffffffffffffffffffffffffffffffffffffff16ff00a165627a7a723058202466f29508394f3e482079653cd29a3439f7517e47d0027ad83321f100fb234f0029

Deployed Bytecode Sourcemap

18085:3653:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12109:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12109:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13608:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13608:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;13608:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7223:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7223:206:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18568:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18568:182:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2645:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2645:91:0;;;;;;;;;;;;;;;;;;;;;;;19947:258;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19947:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13660:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13660:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21361:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21361:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18939:407;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18939:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12582:351;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12582:351:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4029:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4029:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;9239:480;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9239:480:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21193:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21193:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3493:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3493:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21112:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21112:73:0;;;;;;21030:74;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21030:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19354:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19354:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10039:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13633;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13633:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;13633:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21547:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21547:188:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19741:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19741:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18233:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18233:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8419:332;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8419:332:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7770:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7770:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11194:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11194:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12109:35;;;;;;;;;;;;;:::o;13608:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7223:206::-;7290:4;7339:6;7307:7;:19;7315:10;7307:19;;;;;;;;;;;;;;;:29;7327:8;7307:29;;;;;;;;;;;;;;;:38;;;;7382:8;7361:38;;7370:10;7361:38;;;7392:6;7361:38;;;;;;;;;;;;;;;;;;7417:4;7410:11;;7223:206;;;;:::o;18568:182::-;10580:5;;;;;;;;;;;10566:19;;:10;:19;;;10558:28;;;;;;;;18658:40;18682:15;18658:23;:40::i;:::-;18650:49;;;;;;;;18727:15;18710:14;;:32;;;;;;;;;;;;;;;;;;18568:182;:::o;2645:91::-;2689:7;2716:12;;2709:19;;2645:91;:::o;19947:258::-;20063:4;20088:38;20107:5;20114:3;20119:6;20088:18;:38::i;:::-;20080:47;;;;;;;;20138:37;20156:5;20163:3;20168:6;20138:17;:37::i;:::-;20193:4;20186:11;;19947:258;;;;;:::o;13660:21::-;;;;;;;;;;;;;:::o;21361:178::-;21459:4;21488:43;21511:7;21520:10;21488:22;:43::i;:::-;21481:50;;21361:178;;;;:::o;18939:407::-;19078:4;19064:3;18843:1;18821:24;;:10;:24;;;;:55;;;;;18871:4;18849:27;;:10;:27;;;;18821:55;18813:64;;;;;;;;19103:26;19117:3;19122:6;19103:13;:26::i;:::-;19095:35;;;;;;;;19167:3;19146:40;;19155:10;19146:40;;;19172:6;19180:5;;19146:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19203:28;19227:3;19203:23;:28::i;:::-;19199:118;;;19256:48;19273:10;19285:3;19290:6;19298:5;;19256:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:48::i;:::-;19248:57;;;;;;;;19199:118;19334:4;19327:11;;18939:407;;;;;;;:::o;12582:351::-;12704:4;12298:5;;;;;;;;;;;12284:19;;:10;:19;;;12276:28;;;;;;;;12192:15;;;;;;;;;;;12191:16;12183:25;;;;;;;;12741;12758:7;12741:12;;:16;;:25;;;;:::i;:::-;12726:12;:40;;;;12793:26;12811:7;12793:8;:13;12802:3;12793:13;;;;;;;;;;;;;;;;:17;;:26;;;;:::i;:::-;12777:8;:13;12786:3;12777:13;;;;;;;;;;;;;;;:42;;;;12840:3;12835:18;;;12845:7;12835:18;;;;;;;;;;;;;;;;;;12890:3;12869:34;;12886:1;12869:34;;;12895:7;12869:34;;;;;;;;;;;;;;;;;;12921:4;12914:11;;12582:351;;;;:::o;4029:81::-;4077:25;4083:10;4095:6;4077:5;:25::i;:::-;4029:81;:::o;9239:480::-;9343:4;9365:16;9384:7;:19;9392:10;9384:19;;;;;;;;;;;;;;;:29;9404:8;9384:29;;;;;;;;;;;;;;;;9365:48;;9448:8;9428:16;:28;;9424:189;;;9505:1;9473:7;:19;9481:10;9473:19;;;;;;;;;;;;;;;:29;9493:8;9473:29;;;;;;;;;;;;;;;:33;;;;9424:189;;;9571:30;9584:16;9571:8;:12;;:30;;;;:::i;:::-;9539:7;:19;9547:10;9539:19;;;;;;;;;;;;;;;:29;9559:8;9539:29;;;;;;;;;;;;;;;:62;;;;9424:189;9649:8;9628:61;;9637:10;9628:61;;;9659:7;:19;9667:10;9659:19;;;;;;;;;;;;;;;:29;9679:8;9659:29;;;;;;;;;;;;;;;;9628:61;;;;;;;;;;;;;;;;;;9707:4;9700:11;;9239:480;;;;;:::o;21193:160::-;10580:5;;;;;;;;;;;10566:19;;:10;:19;;;10558:28;;;;;;;;21300:3;16457:1;16442:17;;:3;:17;;;;16434:26;;;;;;;;21321:24;21333:6;21341:3;21321:11;:24::i;:::-;10597:1;21193:160;;:::o;3493:107::-;3549:7;3576:8;:16;3585:6;3576:16;;;;;;;;;;;;;;;;3569:23;;3493:107;;;:::o;21112:73::-;10580:5;;;;;;;;;;;10566:19;;:10;:19;;;10558:28;;;;;;;;21169:8;;;21030:74;21071:4;21088:8;;;19354:219;19455:12;19482;19509;19557:1;19560;19563;19549:16;;;;;;;;;;;;;;;19354:219;;;:::o;10039:20::-;;;;;;;;;;;;;:::o;13633:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21547:188::-;21650:4;21679:48;21702:7;21711:15;21679:22;:48::i;:::-;21672:55;;21547:188;;;;:::o;19741:198::-;19804:4;19829:26;19843:3;19848:6;19829:13;:26::i;:::-;19821:35;;;;;;;;19867:42;19885:10;19897:3;19902:6;19867:17;:42::i;:::-;19927:4;19920:11;;19741:198;;;;:::o;18233:29::-;;;;;;;;;;;;;:::o;8419:332::-;8518:4;8587:46;8621:11;8587:7;:19;8595:10;8587:19;;;;;;;;;;;;;;;:29;8607:8;8587:29;;;;;;;;;;;;;;;;:33;;:46;;;;:::i;:::-;8540:7;:19;8548:10;8540:19;;;;;;;;;;;;;;;:29;8560:8;8540:29;;;;;;;;;;;;;;;:104;;;;8681:8;8660:61;;8669:10;8660:61;;;8691:7;:19;8699:10;8691:19;;;;;;;;;;;;;;;:29;8711:8;8691:29;;;;;;;;;;;;;;;;8660:61;;;;;;;;;;;;;;;;;;8739:4;8732:11;;8419:332;;;;:::o;7770:166::-;7871:7;7903;:15;7911:6;7903:15;;;;;;;;;;;;;;;:25;7919:8;7903:25;;;;;;;;;;;;;;;;7896:32;;7770:166;;;;:::o;11194:111::-;10580:5;;;;;;;;;;;10566:19;;:10;:19;;;10558:28;;;;;;;;11268:29;11287:9;11268:18;:29::i;:::-;11194:111;:::o;14412:653::-;14470:4;14487:12;15015:5;15003:18;14995:26;;15056:1;15049:4;:8;15042:15;;14412:653;;;;:::o;6052:522::-;6168:4;6203:8;:15;6212:5;6203:15;;;;;;;;;;;;;;;;6193:6;:25;;6185:34;;;;;;;;6248:7;:14;6256:5;6248:14;;;;;;;;;;;;;;;:26;6263:10;6248:26;;;;;;;;;;;;;;;;6238:6;:36;;6230:45;;;;;;;;6309:1;6294:17;;:3;:17;;;;6286:26;;;;;;;;6343:27;6363:6;6343:8;:15;6352:5;6343:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;6325:8;:15;6334:5;6325:15;;;;;;;;;;;;;;;:45;;;;6397:25;6415:6;6397:8;:13;6406:3;6397:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;6381:8;:13;6390:3;6381:13;;;;;;;;;;;;;;;:41;;;;6462:38;6493:6;6462:7;:14;6470:5;6462:14;;;;;;;;;;;;;;;:26;6477:10;6462:26;;;;;;;;;;;;;;;;:30;;:38;;;;:::i;:::-;6433:7;:14;6441:5;6433:14;;;;;;;;;;;;;;;:26;6448:10;6433:26;;;;;;;;;;;;;;;:67;;;;6532:3;6516:28;;6525:5;6516:28;;;6537:6;6516:28;;;;;;;;;;;;;;;;;;6562:4;6555:11;;6052:522;;;;;:::o;20213:381::-;20356:28;20380:3;20356:23;:28::i;:::-;:96;;;;;20402:50;20419:5;20426:3;20431:6;20449:1;20439:12;;;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;20439:12:0;;;;20402:16;:50::i;:::-;20401:51;20356:96;20338:249;;;20494:14;;;;;;;;;;;20487:21;;:3;:21;;;;20479:30;;;;;;;;20529:46;20556:5;20563:3;20568:6;20529:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20338:249;20213:381;;;:::o;19581:152::-;19669:4;19698:27;19713:3;19718:6;19698:14;:27::i;:::-;19691:34;;19581:152;;;;:::o;20602:420::-;20745:4;20782:3;:8;;20918:5;20946:6;20975:5;20809:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;20809:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;20809:190:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;20809:190:0;20782:232;;;;;;;;;;;;;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;20782:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20762:252;;20602:420;;;;;;:::o;2064:146::-;2124:9;2155:2;2150;:7;2146:11;;2180:2;2175:1;:7;;2168:15;;;;;;2201:1;2194:8;;2064:146;;;;:::o;4118:477::-;4201:8;:14;4210:4;4201:14;;;;;;;;;;;;;;;;4191:6;:24;;4183:33;;;;;;;;4427:26;4446:6;4427:8;:14;4436:4;4427:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;4410:8;:14;4419:4;4410:14;;;;;;;;;;;;;;;:43;;;;4479:24;4496:6;4479:12;;:16;;:24;;;;:::i;:::-;4464:12;:39;;;;4524:4;4519:18;;;4530:6;4519:18;;;;;;;;;;;;;;;;;;4576:1;4553:34;;4562:4;4553:34;;;4580:6;4553:34;;;;;;;;;;;;;;;;;;4118:477;;:::o;1858:129::-;1918:7;1951:2;1945;:8;;1938:16;;;;;;1977:2;1972;:7;1965:14;;1858:129;;;;:::o;16522:213::-;16614:1;16596:20;;:6;:20;;;16592:136;;;16633:21;16650:3;16633:16;:21::i;:::-;16592:136;;;16687:29;16704:6;16712:3;16687:16;:29::i;:::-;16592:136;16522:213;;:::o;11456:189::-;11552:1;11531:23;;:9;:23;;;;11523:32;;;;;;;;11599:9;11571:38;;11592:5;;;;;;;;;;;11571:38;;;;;;;;;;;;11628:9;11620:5;;:17;;;;;;;;;;;;;;;;;;11456:189;:::o;2913:355::-;2976:4;3011:8;:20;3020:10;3011:20;;;;;;;;;;;;;;;;3001:6;:30;;2993:39;;;;;;;;3066:1;3051:17;;:3;:17;;;;3043:26;;;;;;;;3105:32;3130:6;3105:8;:20;3114:10;3105:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3082:8;:20;3091:10;3082:20;;;;;;;;;;;;;;;:55;;;;3164:25;3182:6;3164:8;:13;3173:3;3164:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;3148:8;:13;3157:3;3148:13;;;;;;;;;;;;;;;:41;;;;3226:3;3205:33;;3214:10;3205:33;;;3231:6;3205:33;;;;;;;;;;;;;;;;;;3256:4;3249:11;;2913:355;;;;:::o;16743:196::-;16802:13;16826:4;16818:21;;;16802:37;;16855:3;:8;;:15;16864:5;16855:15;;;;;;;;;;;;;;;;;;;;;;;16854:16;16850:82;;;16909:5;16916:3;16887:33;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16887:33:0;;;;16850:82;16743:196;;:::o;16947:215::-;17022:16;17070:15;17052:6;17022:37;;17088:5;:15;;;17104:4;17088:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17088:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17088:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17088:21:0;;;;;;;;;;;;;;;;17070:39;;17120:34;17133:6;17141:3;17146:7;17120:12;:34::i;:::-;16947:215;;;;:::o;17170:837::-;17291:23;17325:21;17357;16340:10;17404:8;;17414:3;17419:6;17381:45;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17381:45:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;17381:45:0;17357:69;;17659:2;17639:1;17611:8;17605:15;17581:4;17571:8;17567:19;17545:3;17520:6;17498:3;17475:201;17710:1;17704:8;17690:22;;17752:1;17746:8;17726:28;;17777:6;17806:1;17801:61;;;;17770:92;;17801:61;17841:1;17838;17831:12;17770:92;;17446:427;17945:1;17925:10;:17;:21;17921:79;;;17971:16;17963:25;;;;;;;;17921:79;17170:837;;;;;;:::o;18085:3653::-;;;;;;;;;;:::o

Swarm Source

bzzr://2466f29508394f3e482079653cd29a3439f7517e47d0027ad83321f100fb234f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.