ETH Price: $2,961.50 (+1.03%)
Gas: 1 Gwei

Token

Quantfury Data Token (QDT)
 

Overview

Max Total Supply

3,333,363.6879331 QDT

Holders

951 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
grego.eth
Balance
51.88890909 QDT

Value
$0.00
0x9c57027B1eca93093a6F446422C59C85A5A3Fa52
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Quantfury makes trading of traditional and cryptocurrency markets free of any fees and always at real prices of global and crypto exchanges.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
QDT

Compiler Version
v0.5.9+commit.e560f70d

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-03
*/

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

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

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

pragma solidity ^0.5.2;

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

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

pragma solidity ^0.5.2;



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

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

pragma solidity ^0.5.2;


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

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

pragma solidity ^0.5.2;

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

// File: contracts/QDT.sol

pragma solidity 0.5.9;





contract QDT is ERC20, ERC20Detailed, Ownable{
    using SafeMath for uint256;

    uint8 constant LIMIT_FOR_PAYOUT = 200;
    uint32 constant PASSWORD_REVEAL_MIN_DELAY = 2592000;

    string private _name = "Quantfury Data Token";
    string private _symbol = "QDT";
    uint8 private _decimals = 8;

    // Trading data of current epoch
    struct Epoch {
        string hash;
        uint256 epochTime;
        string password;
        uint256 weiAmount;
        uint256 tokenAmount;
        uint256 revealTime;
    }

    uint256 private _currentEpoch;

    // List of trading data
    mapping(uint256 => Epoch) private listOfEpoch;

    // Amount of money in payout pool
    uint256 private _ethPayoutPool;

    // How many token units a buyer gets per wei.
    // The rate is the conversion between wei and the smallest and indivisible token unit.
    uint256 private _tokenPrice;

    constructor() ERC20Detailed(_name, _symbol, _decimals) public {
        _currentEpoch = 0;
        _tokenPrice = 0;
    }

    /**
     * @dev Get balance of contract pool
     * @return A uint256 that indicates amount Eth in contract.
     */
    function getBalance()
    external
    view
    returns(uint256)
    {
        return _ethPayoutPool;
    }

    /**
     * @dev Get current price
     * @return A uint256 that indicates amount Eth per one token.
     */
    function getPrice()
    external
    view
    returns (uint256)
    {
        return _tokenPrice;
    }

    /**
     * @dev Show current epoch
     * @return A uint256 that indicates number of epoch.
     */
    function getCurrentEpoch()
    external
    view
    returns (uint256)
    {
        return _currentEpoch;
    }

    /**
    * @dev Show information about ipfs
    * @param epoch index of data in list of epoch
    * @return A bytes32 that indicates hash of ipfs.
    * @return A string that indicates password of ipfs.
    * @return A uint256 that indicates amount of ether in ipfs.
    * @return A uint256 that indicates amount of tokens in ipfs.
    * @return A uint256 that indicates time of password will show.
    */
    function getEpoch(uint256 epoch)
    external
    view
    returns (
        string memory,
        uint256,
        string memory,
        uint256,
        uint256,
        uint256
    ) {
        return (
                listOfEpoch[epoch].hash,
                listOfEpoch[epoch].epochTime,
                listOfEpoch[epoch].password,
                listOfEpoch[epoch].weiAmount,
                listOfEpoch[epoch].tokenAmount,
                listOfEpoch[epoch].revealTime
               );
    }

    /**
     * @dev Deposit into the payout pool
     * @return A boolean that indicates if the operation was successful.
     */

    function deposit()
    external
    onlyOwner
    payable
    returns (bool)
    {
        require(msg.value > 0);
        _ethPayoutPool = _ethPayoutPool.add(msg.value);
        emit Deposit(msg.sender, msg.value);
        return true;
    }

    /**
     * @dev Withdraw wei from payout pool
     * @param receiver Address who receive ether
     * @param weiAmount Amount of wei
     * @return A boolean that indicates if the operation was successful.
     */
    function withdraw(address payable receiver, uint256 weiAmount)
    external
    onlyOwner
    returns (bool)
    {
        require(receiver != address(0x0));
        _ethPayoutPool = _ethPayoutPool.sub(weiAmount);
        address(receiver).transfer(weiAmount);
        emit Withdraw(receiver, weiAmount);
        return true;
    }

    /**
     * @dev Function create IPFS for new epoch
     * @param ipfsHash Hash of the IPFS link
     * @param epochTime time of creation epoch
     * @param weiAmount Amount of wei
     * @param tokenAmount Amount tokens will mint
     */
    function createEpoch(
        string calldata ipfsHash,
        uint256 epochTime,
        uint256 weiAmount,
        uint256 tokenAmount
    )
    external
    onlyOwner
    {
        require(listOfEpoch[_currentEpoch].epochTime < epochTime);
        uint256 _totalSupply = totalSupply();
        uint256 tokenPriceOld = _tokenPrice;
        _currentEpoch++;
        listOfEpoch[_currentEpoch].hash = ipfsHash;
        listOfEpoch[_currentEpoch].epochTime = epochTime;
        listOfEpoch[_currentEpoch].weiAmount = weiAmount;
        listOfEpoch[_currentEpoch].tokenAmount = tokenAmount;
        listOfEpoch[_currentEpoch].revealTime = epochTime.add(PASSWORD_REVEAL_MIN_DELAY);

        //Change price of token
        _tokenPrice = (weiAmount.add(_totalSupply.mul(_tokenPrice))).div(_totalSupply.add(tokenAmount));
        require(_tokenPrice != 0);

        emit CreateEpoch(
            _currentEpoch,
                weiAmount,
                tokenAmount,
                _tokenPrice,
                _totalSupply,
                tokenPriceOld,
                _ethPayoutPool);
    }

    /**
     * @dev Function calls to swap tokens to wei
     * @param tokenAmount Number of tokens for swap
     */
    function sellTokens(
        uint256 tokenAmount
    )
    external
    {
        uint256 weiAmount = _getWeiAmount(tokenAmount);

        _burn(msg.sender, tokenAmount);

        _ethPayoutPool = _ethPayoutPool.sub(weiAmount);

        address(msg.sender).transfer(weiAmount);

        emit Sell(msg.sender, tokenAmount, weiAmount, _tokenPrice, balanceOf(msg.sender));
    }

    /**
     * @dev Function calls to make payout in epoch
     * @param holderAdresses The array of addresses that will receive the minted tokens.
     * @param tokenAmounts The array of amounts of token that will send to address.
     * @param totalTokenAmount The amount of tokens that will send to address.
     */
    function payout(
        address[] calldata holderAdresses,
        uint256[] calldata tokenAmounts,
        uint256 totalTokenAmount
    )
    external
    onlyOwner
    {
        require(balanceOf(msg.sender) >= totalTokenAmount);
        require(holderAdresses.length == tokenAmounts.length);
        require(holderAdresses.length <= LIMIT_FOR_PAYOUT);

        for (uint i = 0; i < holderAdresses.length; i++) {
            _transfer(msg.sender, holderAdresses[i], tokenAmounts[i]);
        }
    }

    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(
        address to,
        uint256 value
    )
    external
    onlyOwner
    returns (bool) {
        _mint(to, value);
        return true;
    }

    /**
     * @dev Function to burn tokens
     * @param value The amount of tokens to burn.
     * @return A boolean that indicates if the operation was successful.
     */
    function burn(
        uint256 value
    )
    external
    onlyOwner
    returns (bool) {
        _burn(msg.sender, value);
        return true;
    }

    /**
     * @dev Function save password of IPFS only after 30 days
     * @param epoch Number of epoch
     * @param password String is password for ipfs
     */
    function commitTradingPassword(
        uint256 epoch,
        string calldata password
    )
    external
    onlyOwner
    {
        require(_currentEpoch >= epoch);
        require(listOfEpoch[epoch].revealTime < now);
        listOfEpoch[epoch].password = password;
        emit OpenPassword(epoch, password);
    }

    /**
     * @dev Override to extend the way in which ether is converted to tokens.
     * @param tokenAmount Value in token to be converted into wei
     * @return Number of wei that can be purchased with the specified _weiAmount
     */
    function _getWeiAmount(uint256 tokenAmount)
    internal
    view
    returns (uint256) {
        return tokenAmount.mul(_tokenPrice);
    }

    event CreateEpoch(
        uint256 epoch,
        uint256 weiAmount,
        uint256 tokenAmount,
        uint256 tokenPrice,
        uint256 totalSupply,
        uint256 tokenPriceOld,
        uint256 ethPayoutPool);
    event OpenPassword(uint256 epoch, string password);
    event Sell(address indexed seller, uint256 tokenAmount, uint256 weiAmount, uint256 tokenPrice, uint256 balances);
    event Withdraw(address indexed receiver, uint256 weiAmount);
    event Deposit(address indexed sender, uint256 weiAmount);
}

Contract Security Audit

Contract ABI

[{"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":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAmount","type":"uint256"}],"name":"sellTokens","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":"holderAdresses","type":"address[]"},{"name":"tokenAmounts","type":"uint256[]"},{"name":"totalTokenAmount","type":"uint256"}],"name":"payout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getPrice","outputs":[{"name":"","type":"uint256"}],"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":"getCurrentEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"epoch","type":"uint256"}],"name":"getEpoch","outputs":[{"name":"","type":"string"},{"name":"","type":"uint256"},{"name":"","type":"string"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"epoch","type":"uint256"},{"name":"password","type":"string"}],"name":"commitTradingPassword","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"ipfsHash","type":"string"},{"name":"epochTime","type":"uint256"},{"name":"weiAmount","type":"uint256"},{"name":"tokenAmount","type":"uint256"}],"name":"createEpoch","outputs":[],"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"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"weiAmount","type":"uint256"}],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"epoch","type":"uint256"},{"indexed":false,"name":"weiAmount","type":"uint256"},{"indexed":false,"name":"tokenAmount","type":"uint256"},{"indexed":false,"name":"tokenPrice","type":"uint256"},{"indexed":false,"name":"totalSupply","type":"uint256"},{"indexed":false,"name":"tokenPriceOld","type":"uint256"},{"indexed":false,"name":"ethPayoutPool","type":"uint256"}],"name":"CreateEpoch","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"epoch","type":"uint256"},{"indexed":false,"name":"password","type":"string"}],"name":"OpenPassword","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"tokenAmount","type":"uint256"},{"indexed":false,"name":"weiAmount","type":"uint256"},{"indexed":false,"name":"tokenPrice","type":"uint256"},{"indexed":false,"name":"balances","type":"uint256"}],"name":"Sell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"receiver","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"weiAmount","type":"uint256"}],"name":"Deposit","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":"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"}]

60806040526040518060400160405280601481526020017f5175616e7466757279204461746120546f6b656e00000000000000000000000081525060069080519060200190620000519291906200033b565b506040518060400160405280600381526020017f5144540000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f9291906200033b565b5060088060006101000a81548160ff021916908360ff160217905550348015620000c857600080fd5b5060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015620001635780601f10620001375761010080835404028352916020019162000163565b820191906000526020600020905b8154815290600101906020018083116200014557829003601f168201915b505050505060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015620002025780601f10620001d65761010080835404028352916020019162000202565b820191906000526020600020905b815481529060010190602001808311620001e457829003601f168201915b5050505050600860009054906101000a900460ff1682600390805190602001906200022f9291906200033b565b508160049080519060200190620002489291906200033b565b5080600560006101000a81548160ff021916908360ff16021790555050505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360006009819055506000600c81905550620003ea565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037e57805160ff1916838001178555620003af565b82800160010185558215620003af579182015b82811115620003ae57825182559160200191906001019062000391565b5b509050620003be9190620003c2565b5090565b620003e791905b80821115620003e3576000816000905550600101620003c9565b5090565b90565b61233280620003fa6000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063bc0bc6ba1161008a578063d8aabe7e11610064578063d8aabe7e14610ad3578063dd62ed3e14610b77578063f2fde38b14610bfc578063f3fef3a314610c4d5761019c565b8063bc0bc6ba146108e5578063ce60768814610a21578063d0e30db014610ab15761019c565b806398d5fdca116100c657806398d5fdca146107a9578063a457c2d7146107d4578063a9059cbb14610847578063b97dd9e2146108ba5761019c565b80638da5cb5b146106935780638f32d59b146106ea57806395d89b41146107195761019c565b806339509351116101595780636c11bcd3116101335780636c11bcd3146104f757806370a0823114610532578063715018a6146105975780637383b5ed146105ae5761019c565b806339509351146103be57806340c10f191461043157806342966c68146104a45761019c565b806306fdde03146101a1578063095ea7b31461023157806312065fe0146102a457806318160ddd146102cf57806323b872dd146102fa578063313ce5671461038d575b600080fd5b3480156101ad57600080fd5b506101b6610cc0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023d57600080fd5b5061028a6004803603604081101561025457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d62565b604051808215151515815260200191505060405180910390f35b3480156102b057600080fd5b506102b9610d79565b6040518082815260200191505060405180910390f35b3480156102db57600080fd5b506102e4610d83565b6040518082815260200191505060405180910390f35b34801561030657600080fd5b506103736004803603606081101561031d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d8d565b604051808215151515815260200191505060405180910390f35b34801561039957600080fd5b506103a2610e3e565b604051808260ff1660ff16815260200191505060405180910390f35b3480156103ca57600080fd5b50610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e55565b604051808215151515815260200191505060405180910390f35b34801561043d57600080fd5b5061048a6004803603604081101561045457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610efa565b604051808215151515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b8101908080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b34801561050357600080fd5b506105306004803603602081101561051a57600080fd5b8101908080359060200190929190505050610f47565b005b34801561053e57600080fd5b506105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611034565b6040518082815260200191505060405180910390f35b3480156105a357600080fd5b506105ac61107c565b005b3480156105ba57600080fd5b50610691600480360360608110156105d157600080fd5b81019080803590602001906401000000008111156105ee57600080fd5b82018360208201111561060057600080fd5b8035906020019184602083028401116401000000008311171561062257600080fd5b90919293919293908035906020019064010000000081111561064357600080fd5b82018360208201111561065557600080fd5b8035906020019184602083028401116401000000008311171561067757600080fd5b90919293919293908035906020019092919050505061114e565b005b34801561069f57600080fd5b506106a8611205565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f657600080fd5b506106ff61122f565b604051808215151515815260200191505060405180910390f35b34801561072557600080fd5b5061072e611287565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561076e578082015181840152602081019050610753565b50505050905090810190601f16801561079b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107b557600080fd5b506107be611329565b6040518082815260200191505060405180910390f35b3480156107e057600080fd5b5061082d600480360360408110156107f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611333565b604051808215151515815260200191505060405180910390f35b34801561085357600080fd5b506108a06004803603604081101561086a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113d8565b604051808215151515815260200191505060405180910390f35b3480156108c657600080fd5b506108cf6113ef565b6040518082815260200191505060405180910390f35b3480156108f157600080fd5b5061091e6004803603602081101561090857600080fd5b81019080803590602001909291905050506113f9565b604051808060200187815260200180602001868152602001858152602001848152602001838103835289818151815260200191508051906020019080838360005b8381101561097a57808201518184015260208101905061095f565b50505050905090810190601f1680156109a75780820380516001836020036101000a031916815260200191505b50838103825287818151815260200191508051906020019080838360005b838110156109e05780820151818401526020810190506109c5565b50505050905090810190601f168015610a0d5780820380516001836020036101000a031916815260200191505b509850505050505050505060405180910390f35b348015610a2d57600080fd5b50610aaf60048036036040811015610a4457600080fd5b810190808035906020019092919080359060200190640100000000811115610a6b57600080fd5b820183602082011115610a7d57600080fd5b80359060200191846001830284011164010000000083111715610a9f57600080fd5b90919293919293905050506115d9565b005b610ab96116b1565b604051808215151515815260200191505060405180910390f35b348015610adf57600080fd5b50610b7560048036036080811015610af657600080fd5b8101908080359060200190640100000000811115610b1357600080fd5b820183602082011115610b2557600080fd5b80359060200191846001830284011164010000000083111715610b4757600080fd5b9091929391929390803590602001909291908035906020019092919080359060200190929190505050611741565b005b348015610b8357600080fd5b50610be660048036036040811015610b9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611929565b6040518082815260200191505060405180910390f35b348015610c0857600080fd5b50610c4b60048036036020811015610c1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b0565b005b348015610c5957600080fd5b50610ca660048036036040811015610c7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119cd565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b6000610d6f338484611ad4565b6001905092915050565b6000600b54905090565b6000600254905090565b6000610d9a848484611c33565b610e338433610e2e85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b611ad4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610ef03384610eeb85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b611ad4565b6001905092915050565b6000610f0461122f565b610f0d57600080fd5b610f178383611e3c565b6001905092915050565b6000610f2b61122f565b610f3457600080fd5b610f3e3383611f8e565b60019050919050565b6000610f52826120e0565b9050610f5e3383611f8e565b610f7381600b54611dfd90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fbf573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f483f8aec0fd892ac72ad1ba8d0e9c9e73db59c12d263fd71de480b5b3deeae3c8383600c5461100633611034565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108461122f565b61108d57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61115661122f565b61115f57600080fd5b8061116933611034565b101561117457600080fd5b82829050858590501461118657600080fd5b60c860ff1685859050111561119a57600080fd5b60008090505b858590508110156111fd576111f0338787848181106111bb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168686858181106111e457fe5b90506020020135611c33565b80806001019150506111a0565b505050505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561131f5780601f106112f45761010080835404028352916020019161131f565b820191906000526020600020905b81548152906001019060200180831161130257829003601f168201915b5050505050905090565b6000600c54905090565b60006113ce33846113c985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b611ad4565b6001905092915050565b60006113e5338484611c33565b6001905092915050565b6000600954905090565b6060600060606000806000600a6000888152602001908152602001600020600001600a600089815260200190815260200160002060010154600a60008a8152602001908152602001600020600201600a60008b815260200190815260200160002060030154600a60008c815260200190815260200160002060040154600a60008d815260200190815260200160002060050154858054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b50505050509550838054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115bd5780601f10611592576101008083540402835291602001916115bd565b820191906000526020600020905b8154815290600101906020018083116115a057829003601f168201915b5050505050935095509550955095509550955091939550919395565b6115e161122f565b6115ea57600080fd5b8260095410156115f957600080fd5b42600a6000858152602001908152602001600020600501541061161b57600080fd5b8181600a60008681526020019081526020016000206002019190611640929190612258565b507f2980b8f6b424f577d41ae3c85b31a5b85136504bf2bb7205905d557f5e884ae983838360405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a1505050565b60006116bb61122f565b6116c457600080fd5b600034116116d157600080fd5b6116e634600b54611e1d90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a26001905090565b61174961122f565b61175257600080fd5b82600a60006009548152602001908152602001600020600101541061177657600080fd5b6000611780610d83565b90506000600c5490506009600081548092919060010191905055508686600a6000600954815260200190815260200160002060000191906117c2929190612258565b5084600a600060095481526020019081526020016000206001018190555083600a600060095481526020019081526020016000206003018190555082600a600060095481526020019081526020016000206004018190555061183662278d0063ffffffff1686611e1d90919063ffffffff16565b600a600060095481526020019081526020016000206005018190555061189d6118688484611e1d90919063ffffffff16565b61188f611880600c54866120fe90919063ffffffff16565b87611e1d90919063ffffffff16565b61213890919063ffffffff16565b600c819055506000600c5414156118b357600080fd5b7f451a33bce8b211ee8e3a53c196f1d829645dfbeeabdc58816723431a6411be5c6009548585600c548686600b546040518088815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119b861122f565b6119c157600080fd5b6119ca8161215e565b50565b60006119d761122f565b6119e057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a1a57600080fd5b611a2f82600b54611dfd90919063ffffffff16565b600b819055508273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611a7b573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364836040518082815260200191505060405180910390a26001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b4857600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6d57600080fd5b611cbe816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d51816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611e0c57600080fd5b600082840390508091505092915050565b600080828401905083811015611e3257600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7657600080fd5b611e8b81600254611e1d90919063ffffffff16565b600281905550611ee2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc857600080fd5b611fdd81600254611dfd90919063ffffffff16565b600281905550612034816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60006120f7600c54836120fe90919063ffffffff16565b9050919050565b6000808314156121115760009050612132565b600082840290508284828161212257fe5b041461212d57600080fd5b809150505b92915050565b600080821161214657600080fd5b600082848161215157fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061229957803560ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c65782358255916020019190600101906122ab565b5b5090506122d491906122d8565b5090565b6122fa91905b808211156122f65760008160009055506001016122de565b5090565b9056fea265627a7a7230582096cbe78a83e1a9c6d7512d4134694f473ddcf24de23e87e101862da99a78b2cf64736f6c63430005090032

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063bc0bc6ba1161008a578063d8aabe7e11610064578063d8aabe7e14610ad3578063dd62ed3e14610b77578063f2fde38b14610bfc578063f3fef3a314610c4d5761019c565b8063bc0bc6ba146108e5578063ce60768814610a21578063d0e30db014610ab15761019c565b806398d5fdca116100c657806398d5fdca146107a9578063a457c2d7146107d4578063a9059cbb14610847578063b97dd9e2146108ba5761019c565b80638da5cb5b146106935780638f32d59b146106ea57806395d89b41146107195761019c565b806339509351116101595780636c11bcd3116101335780636c11bcd3146104f757806370a0823114610532578063715018a6146105975780637383b5ed146105ae5761019c565b806339509351146103be57806340c10f191461043157806342966c68146104a45761019c565b806306fdde03146101a1578063095ea7b31461023157806312065fe0146102a457806318160ddd146102cf57806323b872dd146102fa578063313ce5671461038d575b600080fd5b3480156101ad57600080fd5b506101b6610cc0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023d57600080fd5b5061028a6004803603604081101561025457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d62565b604051808215151515815260200191505060405180910390f35b3480156102b057600080fd5b506102b9610d79565b6040518082815260200191505060405180910390f35b3480156102db57600080fd5b506102e4610d83565b6040518082815260200191505060405180910390f35b34801561030657600080fd5b506103736004803603606081101561031d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d8d565b604051808215151515815260200191505060405180910390f35b34801561039957600080fd5b506103a2610e3e565b604051808260ff1660ff16815260200191505060405180910390f35b3480156103ca57600080fd5b50610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e55565b604051808215151515815260200191505060405180910390f35b34801561043d57600080fd5b5061048a6004803603604081101561045457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610efa565b604051808215151515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b8101908080359060200190929190505050610f21565b604051808215151515815260200191505060405180910390f35b34801561050357600080fd5b506105306004803603602081101561051a57600080fd5b8101908080359060200190929190505050610f47565b005b34801561053e57600080fd5b506105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611034565b6040518082815260200191505060405180910390f35b3480156105a357600080fd5b506105ac61107c565b005b3480156105ba57600080fd5b50610691600480360360608110156105d157600080fd5b81019080803590602001906401000000008111156105ee57600080fd5b82018360208201111561060057600080fd5b8035906020019184602083028401116401000000008311171561062257600080fd5b90919293919293908035906020019064010000000081111561064357600080fd5b82018360208201111561065557600080fd5b8035906020019184602083028401116401000000008311171561067757600080fd5b90919293919293908035906020019092919050505061114e565b005b34801561069f57600080fd5b506106a8611205565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f657600080fd5b506106ff61122f565b604051808215151515815260200191505060405180910390f35b34801561072557600080fd5b5061072e611287565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561076e578082015181840152602081019050610753565b50505050905090810190601f16801561079b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107b557600080fd5b506107be611329565b6040518082815260200191505060405180910390f35b3480156107e057600080fd5b5061082d600480360360408110156107f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611333565b604051808215151515815260200191505060405180910390f35b34801561085357600080fd5b506108a06004803603604081101561086a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113d8565b604051808215151515815260200191505060405180910390f35b3480156108c657600080fd5b506108cf6113ef565b6040518082815260200191505060405180910390f35b3480156108f157600080fd5b5061091e6004803603602081101561090857600080fd5b81019080803590602001909291905050506113f9565b604051808060200187815260200180602001868152602001858152602001848152602001838103835289818151815260200191508051906020019080838360005b8381101561097a57808201518184015260208101905061095f565b50505050905090810190601f1680156109a75780820380516001836020036101000a031916815260200191505b50838103825287818151815260200191508051906020019080838360005b838110156109e05780820151818401526020810190506109c5565b50505050905090810190601f168015610a0d5780820380516001836020036101000a031916815260200191505b509850505050505050505060405180910390f35b348015610a2d57600080fd5b50610aaf60048036036040811015610a4457600080fd5b810190808035906020019092919080359060200190640100000000811115610a6b57600080fd5b820183602082011115610a7d57600080fd5b80359060200191846001830284011164010000000083111715610a9f57600080fd5b90919293919293905050506115d9565b005b610ab96116b1565b604051808215151515815260200191505060405180910390f35b348015610adf57600080fd5b50610b7560048036036080811015610af657600080fd5b8101908080359060200190640100000000811115610b1357600080fd5b820183602082011115610b2557600080fd5b80359060200191846001830284011164010000000083111715610b4757600080fd5b9091929391929390803590602001909291908035906020019092919080359060200190929190505050611741565b005b348015610b8357600080fd5b50610be660048036036040811015610b9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611929565b6040518082815260200191505060405180910390f35b348015610c0857600080fd5b50610c4b60048036036020811015610c1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b0565b005b348015610c5957600080fd5b50610ca660048036036040811015610c7057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119cd565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b6000610d6f338484611ad4565b6001905092915050565b6000600b54905090565b6000600254905090565b6000610d9a848484611c33565b610e338433610e2e85600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b611ad4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610ef03384610eeb85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b611ad4565b6001905092915050565b6000610f0461122f565b610f0d57600080fd5b610f178383611e3c565b6001905092915050565b6000610f2b61122f565b610f3457600080fd5b610f3e3383611f8e565b60019050919050565b6000610f52826120e0565b9050610f5e3383611f8e565b610f7381600b54611dfd90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fbf573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff167f483f8aec0fd892ac72ad1ba8d0e9c9e73db59c12d263fd71de480b5b3deeae3c8383600c5461100633611034565b6040518085815260200184815260200183815260200182815260200194505050505060405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61108461122f565b61108d57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61115661122f565b61115f57600080fd5b8061116933611034565b101561117457600080fd5b82829050858590501461118657600080fd5b60c860ff1685859050111561119a57600080fd5b60008090505b858590508110156111fd576111f0338787848181106111bb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168686858181106111e457fe5b90506020020135611c33565b80806001019150506111a0565b505050505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561131f5780601f106112f45761010080835404028352916020019161131f565b820191906000526020600020905b81548152906001019060200180831161130257829003601f168201915b5050505050905090565b6000600c54905090565b60006113ce33846113c985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b611ad4565b6001905092915050565b60006113e5338484611c33565b6001905092915050565b6000600954905090565b6060600060606000806000600a6000888152602001908152602001600020600001600a600089815260200190815260200160002060010154600a60008a8152602001908152602001600020600201600a60008b815260200190815260200160002060030154600a60008c815260200190815260200160002060040154600a60008d815260200190815260200160002060050154858054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115215780601f106114f657610100808354040283529160200191611521565b820191906000526020600020905b81548152906001019060200180831161150457829003601f168201915b50505050509550838054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115bd5780601f10611592576101008083540402835291602001916115bd565b820191906000526020600020905b8154815290600101906020018083116115a057829003601f168201915b5050505050935095509550955095509550955091939550919395565b6115e161122f565b6115ea57600080fd5b8260095410156115f957600080fd5b42600a6000858152602001908152602001600020600501541061161b57600080fd5b8181600a60008681526020019081526020016000206002019190611640929190612258565b507f2980b8f6b424f577d41ae3c85b31a5b85136504bf2bb7205905d557f5e884ae983838360405180848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505094505050505060405180910390a1505050565b60006116bb61122f565b6116c457600080fd5b600034116116d157600080fd5b6116e634600b54611e1d90919063ffffffff16565b600b819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a26001905090565b61174961122f565b61175257600080fd5b82600a60006009548152602001908152602001600020600101541061177657600080fd5b6000611780610d83565b90506000600c5490506009600081548092919060010191905055508686600a6000600954815260200190815260200160002060000191906117c2929190612258565b5084600a600060095481526020019081526020016000206001018190555083600a600060095481526020019081526020016000206003018190555082600a600060095481526020019081526020016000206004018190555061183662278d0063ffffffff1686611e1d90919063ffffffff16565b600a600060095481526020019081526020016000206005018190555061189d6118688484611e1d90919063ffffffff16565b61188f611880600c54866120fe90919063ffffffff16565b87611e1d90919063ffffffff16565b61213890919063ffffffff16565b600c819055506000600c5414156118b357600080fd5b7f451a33bce8b211ee8e3a53c196f1d829645dfbeeabdc58816723431a6411be5c6009548585600c548686600b546040518088815260200187815260200186815260200185815260200184815260200183815260200182815260200197505050505050505060405180910390a150505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119b861122f565b6119c157600080fd5b6119ca8161215e565b50565b60006119d761122f565b6119e057600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a1a57600080fd5b611a2f82600b54611dfd90919063ffffffff16565b600b819055508273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611a7b573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364836040518082815260200191505060405180910390a26001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0e57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b4857600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6d57600080fd5b611cbe816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d51816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600082821115611e0c57600080fd5b600082840390508091505092915050565b600080828401905083811015611e3257600080fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7657600080fd5b611e8b81600254611e1d90919063ffffffff16565b600281905550611ee2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e1d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc857600080fd5b611fdd81600254611dfd90919063ffffffff16565b600281905550612034816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dfd90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60006120f7600c54836120fe90919063ffffffff16565b9050919050565b6000808314156121115760009050612132565b600082840290508284828161212257fe5b041461212d57600080fd5b809150505b92915050565b600080821161214657600080fd5b600082848161215157fe5b0490508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219857600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061229957803560ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c65782358255916020019190600101906122ab565b5b5090506122d491906122d8565b5090565b6122fa91905b808211156122f65760008160009055506001016122de565b5090565b9056fea265627a7a7230582096cbe78a83e1a9c6d7512d4134694f473ddcf24de23e87e101862da99a78b2cf64736f6c63430005090032

Deployed Bytecode Sourcemap

14174:8646:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11395:83:0;;;:::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;11395:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5643:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5643:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5643:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15355:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15355:113:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3796:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3796:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6264:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6264:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6264:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11711:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11711:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7018:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7018:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7018:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20854:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20854:172:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20854:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21214:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21214:159:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21214:159:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19360:389;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19360:389:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19360:389:0;;;;;;;;;;;;;;;;;:::i;:::-;;4106:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4106:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4106:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13340:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13340:140:0;;;:::i;:::-;;20082:517;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20082:517:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20082:517:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20082:517:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20082:517:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20082:517:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;20082:517:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;20082:517:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;20082:517:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12550:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12550:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12885:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12885:92:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11545:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11545:87:0;;;:::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;11545:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15592:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15592:109:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7752:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7752:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7752:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4856:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4856:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4856:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15817:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15817:118:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16361:521;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16361:521:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16361:521:0;;;;;;;;;;;;;;;;;:::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;16361:521: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;16361:521:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21551:330;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21551:330:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21551:330:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;21551:330:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21551:330:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21551:330:0;;;;;;;;;;;;:::i;:::-;;17026:252;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18109:1122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18109:1122:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;18109:1122:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;18109:1122:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18109:1122:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;18109:1122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4551:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4551:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4551:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13657:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13657:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13657:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17510:341;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17510:341:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17510:341:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11395:83;11432:13;11465:5;11458:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11395:83;:::o;5643:148::-;5708:4;5725:36;5734:10;5746:7;5755:5;5725:8;:36::i;:::-;5779:4;5772:11;;5643:148;;;;:::o;15355:113::-;15414:7;15446:14;;15439:21;;15355:113;:::o;3796:91::-;3840:7;3867:12;;3860:19;;3796:91;:::o;6264:228::-;6343:4;6360:26;6370:4;6376:2;6380:5;6360:9;:26::i;:::-;6397:65;6406:4;6412:10;6424:37;6455:5;6424:8;:14;6433:4;6424:14;;;;;;;;;;;;;;;:26;6439:10;6424:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6397:8;:65::i;:::-;6480:4;6473:11;;6264:228;;;;;:::o;11711:83::-;11752:5;11777:9;;;;;;;;;;;11770:16;;11711:83;:::o;7018:203::-;7098:4;7115:76;7124:10;7136:7;7145:45;7179:10;7145:8;:20;7154:10;7145:20;;;;;;;;;;;;;;;:29;7166:7;7145:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7115:8;:76::i;:::-;7209:4;7202:11;;7018:203;;;;:::o;20854:172::-;20963:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;20980:16;20986:2;20990:5;20980;:16::i;:::-;21014:4;21007:11;;20854:172;;;;:::o;21214:159::-;21302:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;21319:24;21325:10;21337:5;21319;:24::i;:::-;21361:4;21354:11;;21214:159;;;:::o;19360:389::-;19447:17;19467:26;19481:11;19467:13;:26::i;:::-;19447:46;;19506:30;19512:10;19524:11;19506:5;:30::i;:::-;19566:29;19585:9;19566:14;;:18;;:29;;;;:::i;:::-;19549:14;:46;;;;19616:10;19608:28;;:39;19637:9;19608:39;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19608:39:0;19670:10;19665:76;;;19682:11;19695:9;19706:11;;19719:21;19729:10;19719:9;:21::i;:::-;19665:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19360:389;;:::o;4106:106::-;4161:7;4188:9;:16;4198:5;4188:16;;;;;;;;;;;;;;;;4181:23;;4106:106;;;:::o;13340:140::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;13439:1;13402:40;;13423:6;;;;;;;;;;;13402:40;;;;;;;;;;;;13470:1;13453:6;;:19;;;;;;;;;;;;;;;;;;13340:140::o;20082:517::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;20304:16;20279:21;20289:10;20279:9;:21::i;:::-;:41;;20271:50;;;;;;20365:12;;:19;;20340:14;;:21;;:44;20332:53;;;;;;14295:3;20404:41;;:14;;:21;;:41;;20396:50;;;;;;20464:6;20473:1;20464:10;;20459:133;20480:14;;:21;;20476:1;:25;20459:133;;;20523:57;20533:10;20545:14;;20560:1;20545:17;;;;;;;;;;;;;;;20564:12;;20577:1;20564:15;;;;;;;;;;;;;20523:9;:57::i;:::-;20503:3;;;;;;;20459:133;;;;20082:517;;;;;:::o;12550:79::-;12588:7;12615:6;;;;;;;;;;;12608:13;;12550:79;:::o;12885:92::-;12925:4;12963:6;;;;;;;;;;;12949:20;;:10;:20;;;12942:27;;12885:92;:::o;11545:87::-;11584:13;11617:7;11610:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:87;:::o;15592:109::-;15650:7;15682:11;;15675:18;;15592:109;:::o;7752:213::-;7837:4;7854:81;7863:10;7875:7;7884:50;7918:15;7884:8;:20;7893:10;7884:20;;;;;;;;;;;;;;;:29;7905:7;7884:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;7854:8;:81::i;:::-;7953:4;7946:11;;7752:213;;;;:::o;4856:140::-;4917:4;4934:32;4944:10;4956:2;4960:5;4934:9;:32::i;:::-;4984:4;4977:11;;4856:140;;;;:::o;15817:118::-;15882:7;15914:13;;15907:20;;15817:118;:::o;16361:521::-;16442:13;16466:7;16484:13;16508:7;16526;16544;16596:11;:18;16608:5;16596:18;;;;;;;;;;;:23;;16638:11;:18;16650:5;16638:18;;;;;;;;;;;:28;;;16685:11;:18;16697:5;16685:18;;;;;;;;;;;:27;;16731:11;:18;16743:5;16731:18;;;;;;;;;;;:28;;;16778:11;:18;16790:5;16778:18;;;;;;;;;;;:30;;;16827:11;:18;16839:5;16827:18;;;;;;;;;;;:29;;;16570:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16361:521;;;;;;;:::o;21551:330::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;21718:5;21701:13;;:22;;21693:31;;;;;;21775:3;21743:11;:18;21755:5;21743:18;;;;;;;;;;;:29;;;:35;21735:44;;;;;;21820:8;;21790:11;:18;21802:5;21790:18;;;;;;;;;;;:27;;:38;;;;;;;:::i;:::-;;21844:29;21857:5;21864:8;;21844:29;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;21844:29:0;;;;;;;;;;;;;;;21551:330;;;:::o;17026:252::-;17101:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;17143:1;17131:9;:13;17123:22;;;;;;17173:29;17192:9;17173:14;;:18;;:29;;;;:::i;:::-;17156:14;:46;;;;17226:10;17218:30;;;17238:9;17218:30;;;;;;;;;;;;;;;;;;17266:4;17259:11;;17026:252;:::o;18109:1122::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;18350:9;18311:11;:26;18323:13;;18311:26;;;;;;;;;;;:36;;;:48;18303:57;;;;;;18371:20;18394:13;:11;:13::i;:::-;18371:36;;18418:21;18442:11;;18418:35;;18464:13;;:15;;;;;;;;;;;;;18524:8;;18490:11;:26;18502:13;;18490:26;;;;;;;;;;;:31;;:42;;;;;;;:::i;:::-;;18582:9;18543:11;:26;18555:13;;18543:26;;;;;;;;;;;:36;;:48;;;;18641:9;18602:11;:26;18614:13;;18602:26;;;;;;;;;;;:36;;:48;;;;18702:11;18661;:26;18673:13;;18661:26;;;;;;;;;;;:38;;:52;;;;18764:40;14349:7;18764:40;;:9;:13;;:40;;;;:::i;:::-;18724:11;:26;18736:13;;18724:26;;;;;;;;;;;:37;;:80;;;;18864:81;18915:29;18932:11;18915:12;:16;;:29;;;;:::i;:::-;18865:44;18879:29;18896:11;;18879:12;:16;;:29;;;;:::i;:::-;18865:9;:13;;:44;;;;:::i;:::-;18864:50;;:81;;;;:::i;:::-;18850:11;:95;;;;18979:1;18964:11;;:16;;18956:25;;;;;;18999:224;19025:13;;19057:9;19085:11;19115;;19145:12;19176:13;19208:14;;18999:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12783:1;;18109:1122;;;;;:::o;4551:131::-;4623:7;4650:8;:15;4659:5;4650:15;;;;;;;;;;;;;;;:24;4666:7;4650:24;;;;;;;;;;;;;;;;4643:31;;4551:131;;;;:::o;13657:109::-;12762:9;:7;:9::i;:::-;12754:18;;;;;;13730:28;13749:8;13730:18;:28::i;:::-;13657:109;:::o;17510:341::-;17616:4;12762:9;:7;:9::i;:::-;12754:18;;;;;;17666:3;17646:24;;:8;:24;;;;17638:33;;;;;;17699:29;17718:9;17699:14;;:18;;:29;;;;:::i;:::-;17682:14;:46;;;;17747:8;17739:26;;:37;17766:9;17739:37;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17739:37:0;17801:8;17792:29;;;17811:9;17792:29;;;;;;;;;;;;;;;;;;17839:4;17832:11;;17510:341;;;;:::o;9851:254::-;9963:1;9944:21;;:7;:21;;;;9936:30;;;;;;10002:1;9985:19;;:5;:19;;;;9977:28;;;;;;10045:5;10018:8;:15;10027:5;10018:15;;;;;;;;;;;;;;;:24;10034:7;10018:24;;;;;;;;;;;;;;;:32;;;;10082:7;10066:31;;10075:5;10066:31;;;10091:5;10066:31;;;;;;;;;;;;;;;;;;9851:254;;;:::o;8192:262::-;8294:1;8280:16;;:2;:16;;;;8272:25;;;;;;8328:26;8348:5;8328:9;:15;8338:4;8328:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;8310:9;:15;8320:4;8310:15;;;;;;;;;;;;;;;:44;;;;8381:24;8399:5;8381:9;:13;8391:2;8381:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;8365:9;:13;8375:2;8365:13;;;;;;;;;;;;;;;:40;;;;8436:2;8421:25;;8430:4;8421:25;;;8440:5;8421:25;;;;;;;;;;;;;;;;;;8192:262;;;:::o;2162:150::-;2220:7;2253:1;2248;:6;;2240:15;;;;;;2266:9;2282:1;2278;:5;2266:17;;2303:1;2296:8;;;2162:150;;;;:::o;2400:::-;2458:7;2478:9;2494:1;2490;:5;2478:17;;2519:1;2514;:6;;2506:15;;;;;;2541:1;2534:8;;;2400:150;;;;:::o;8806:269::-;8900:1;8881:21;;:7;:21;;;;8873:30;;;;;;8931:23;8948:5;8931:12;;:16;;:23;;;;:::i;:::-;8916:12;:38;;;;8986:29;9009:5;8986:9;:18;8996:7;8986:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;8965:9;:18;8975:7;8965:18;;;;;;;;;;;;;;;:50;;;;9052:7;9031:36;;9048:1;9031:36;;;9061:5;9031:36;;;;;;;;;;;;;;;;;;8806:269;;:::o;9309:::-;9403:1;9384:21;;:7;:21;;;;9376:30;;;;;;9434:23;9451:5;9434:12;;:16;;:23;;;;:::i;:::-;9419:12;:38;;;;9489:29;9512:5;9489:9;:18;9499:7;9489:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;9468:9;:18;9478:7;9468:18;;;;;;;;;;;;;;;:50;;;;9560:1;9534:36;;9543:7;9534:36;;;9564:5;9534:36;;;;;;;;;;;;;;;;;;9309:269;;:::o;22135:145::-;22217:7;22244:28;22260:11;;22244;:15;;:28;;;;:::i;:::-;22237:35;;22135:145;;;:::o;1153:433::-;1211:7;1460:1;1455;:6;1451:47;;;1485:1;1478:8;;;;1451:47;1510:9;1526:1;1522;:5;1510:17;;1555:1;1550;1546;:5;;;;;;:10;1538:19;;;;;;1577:1;1570:8;;;1153:433;;;;;:::o;1721:303::-;1779:7;1878:1;1874;:5;1866:14;;;;;;1891:9;1907:1;1903;:5;;;;;;1891:17;;2015:1;2008:8;;;1721:303;;;;:::o;13916:187::-;14010:1;13990:22;;:8;:22;;;;13982:31;;;;;;14058:8;14029:38;;14050:6;;;;;;;;;;;14029:38;;;;;;;;;;;;14087:8;14078:6;;:17;;;;;;;;;;;;;;;;;;13916:187;:::o;14174:8646::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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