ETH Price: $2,408.75 (+2.97%)

Token

GainSwap (GAIN)
 

Overview

Max Total Supply

30,000 GAIN

Holders

440

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.007726812350091011 GAIN

Value
$0.00
0xddcdf889311824bb3c81fc25f8e8559074a9359d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Gain

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-07
*/

pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) 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-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract Gain {
    /// @notice EIP-20 token name for this token
    string public constant name = "GainSwap";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "GAIN";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 30_000e18; // 30,000 Gain

    /// @notice Address which may mint new tokens
    address public minter;

    /// @notice The timestamp after which minting may occur
    uint public mintingAllowedAfter;

    /// @notice Minimum time between mints
    uint32 public constant minimumTimeBetweenMints = 1 days * 365;

    /// @notice Cap on the percentage of totalSupply that can be minted at each mint
    uint8 public constant mintCap = 2;

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when the minter address is changed
    event MinterChanged(address minter, address newMinter);

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new Gain token
     * @param account The initial account to grant all the tokens
     * @param minter_ The account with minting ability
     * @param mintingAllowedAfter_ The timestamp after which minting may occur
     */
    constructor(address account, address minter_, uint mintingAllowedAfter_) public {
        require(mintingAllowedAfter_ >= block.timestamp, "Gain::constructor: minting can only begin after deployment");

        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
        minter = minter_;
        emit MinterChanged(address(0), minter);
        mintingAllowedAfter = mintingAllowedAfter_;
    }

    /**
     * @notice Change the minter address
     * @param minter_ The address of the new minter
     */
    function setMinter(address minter_) external {
        require(msg.sender == minter, "Gain::setMinter: only the minter can change the minter address");
        emit MinterChanged(minter, minter_);
        minter = minter_;
    }

    /**
     * @notice Mint new tokens
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to be minted
     */
    function mint(address dst, uint rawAmount) external {
        require(msg.sender == minter, "Gain::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "Gain::mint: minting not allowed yet");
        require(dst != address(0), "Gain::mint: cannot transfer to the zero address");

        // record the mint
        mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);

        // mint the amount
        uint96 amount = safe96(rawAmount, "Gain::mint: amount exceeds 96 bits");
        require(amount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "Gain::mint: exceeded mint cap");
        totalSupply = safe96(SafeMath.add(totalSupply, amount), "Gain::mint: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[dst] = add96(balances[dst], amount, "Gain::mint: transfer amount overflows");
        emit Transfer(address(0), dst, amount);

        // move delegates
        _moveDelegates(address(0), delegates[dst], amount);
    }
    
    /**
     * @notice Burn tokens
     * @param rawAmount The number of tokens to be burned
     */
    function burn(uint rawAmount) public {
        uint96 amount = safe96(rawAmount, "Gain::mint: amount exceeds 96 bits");
        require(balances[msg.sender] >= amount, "Gain::burn: insufficient balance");
        totalSupply = safe96(SafeMath.sub(totalSupply, amount), "Gain::burn: insufficient balance");
        balances[msg.sender] = safe96(SafeMath.sub(balances[msg.sender], amount), "Gain::burn: insufficient balance");
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Gain::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Gain::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Gain::permit: invalid signature");
        require(signatory == owner, "Gain::permit: unauthorized");
        require(now <= deadline, "Gain::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Gain::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Gain::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Gain::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Gain::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Gain::delegateBySig: invalid nonce");
        require(now <= expiry, "Gain::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "Gain::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "Gain::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Gain::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Gain::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Gain::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "Gain::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "Gain::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "Gain::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"minter_","type":"address"},{"internalType":"uint256","name":"mintingAllowedAfter_","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minimumTimeBetweenMints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingAllowedAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405269065a4da25d3016c000006000553480156200001f57600080fd5b5060405162002c7638038062002c7683398101604081905262000042916200016f565b428110156200006e5760405162461bcd60e51b8152600401620000659062000271565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000dc919062000283565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013b926000929116906200024b565b60405180910390a160025550620002ea9050565b80516200015c81620002c5565b92915050565b80516200015c81620002df565b6000806000606084860312156200018557600080fd5b60006200019386866200014f565b9350506020620001a6868287016200014f565b9250506040620001b98682870162000162565b9150509250925092565b620001ce81620002b1565b82525050565b620001ce816200029c565b6000620001ee603a8362000293565b7f4761696e3a3a636f6e7374727563746f723a206d696e74696e672063616e206f81527f6e6c7920626567696e206166746572206465706c6f796d656e74000000000000602082015260400192915050565b620001ce81620002ae565b604081016200025b8285620001c3565b6200026a6020830184620001d4565b9392505050565b602080825281016200015c81620001df565b602081016200015c828462000240565b90815260200190565b60006001600160a01b0382166200015c565b90565b60006200015c8260006200015c826200029c565b620002d0816200029c565b8114620002dc57600080fd5b50565b620002d081620002ae565b61297c80620002fa6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610389578063e7a324dc1461039c578063f1127ed8146103a4578063fca3b5aa146103c5576101c4565b8063b4b5ea5714610350578063c3cda52014610363578063d505accf14610376576101c4565b8063782d6fe1116100d3578063782d6fe1146103025780637ecebe001461032257806395d89b4114610335578063a9059cbb1461033d576101c4565b80636fcfff45146102d457806370a08231146102e757806376c71ca1146102fa576101c4565b806330b36cef1161016657806342966c681161014057806342966c6814610286578063587cde1e146102995780635c11d62f146102ac5780635c19a95c146102c1576101c4565b806330b36cef14610254578063313ce5671461025c57806340c10f1914610271576101c4565b806318160ddd116101a257806318160ddd1461021c57806320606b701461023157806323b872dd1461023957806330adf81f1461024c576101c4565b806306fdde03146101c957806307546172146101e7578063095ea7b3146101fc575b600080fd5b6101d16103d8565b6040516101de91906124eb565b60405180910390f35b6101ef6103fc565b6040516101de91906123be565b61020f61020a366004611bc8565b61040b565b6040516101de91906123e7565b6102246104ca565b6040516101de91906123f5565b6102246104d0565b61020f610247366004611adf565b6104e7565b610224610630565b61022461063c565b610264610642565b6040516101de9190612635565b61028461027f366004611bc8565b610647565b005b610284610294366004611caf565b610862565b6101ef6102a7366004611a7f565b610977565b6102b4610992565b6040516101de919061260c565b6102846102cf366004611a7f565b61099a565b6102b46102e2366004611a7f565b6109a7565b6102246102f5366004611a7f565b6109bf565b6102646109e3565b610315610310366004611bc8565b6109e8565b6040516101de9190612651565b610224610330366004611a7f565b610bf6565b6101d1610c08565b61020f61034b366004611bc8565b610c28565b61031561035e366004611a7f565b610c64565b610284610371366004611bf8565b610cd4565b610284610384366004611b2c565b610ebe565b610224610397366004611aa5565b6111aa565b6102246111de565b6103b76103b2366004611c7f565b6111ea565b6040516101de92919061261a565b6102846103d3366004611a7f565b61121f565b6040518060400160405280600881526020016704761696e537761760c41b81525081565b6001546001600160a01b031681565b6000806000198314156104215750600019610446565b61044383604051806060016040528060258152602001612767602591396112b2565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104b6908590612643565b60405180910390a360019150505b92915050565b60005481565b6040516104dc906123a8565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261053f9288929190612767908301396112b2565b9050866001600160a01b0316836001600160a01b03161415801561056c57506001600160601b0382811614155b1561061657600061059683836040518060600160405280603d81526020016128d8603d91396112e1565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061060c908590612643565b60405180910390a3505b610621878783611320565b600193505050505b9392505050565b6040516104dc9061239d565b60025481565b601281565b6001546001600160a01b0316331461067a5760405162461bcd60e51b81526004016106719061258c565b60405180910390fd5b60025442101561069c5760405162461bcd60e51b8152600401610671906125dc565b6001600160a01b0382166106c25760405162461bcd60e51b81526004016106719061259c565b6106d0426301e133806114c6565b60028190555060006106fa82604051806060016040528060228152602001612835602291396112b2565b905061071661070f600054600260ff166114eb565b6064611525565b816001600160601b0316111561073e5760405162461bcd60e51b8152600401610671906125ec565b610774610756600054836001600160601b03166114c6565b6040518060600160405280602781526020016128b1602791396112b2565b6001600160601b0390811660009081556001600160a01b0385168152600460209081526040918290205482516060810190935260258084526107c6949190911692859290919061291590830139611567565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610830908590612643565b60405180910390a36001600160a01b0380841660009081526005602052604081205461085d9216836115a3565b505050565b600061088682604051806060016040528060228152602001612835602291396112b2565b336000908152600460205260409020549091506001600160601b03808316911610156108c45760405162461bcd60e51b8152600401610671906125ac565b6109176108dc600054836001600160601b0316611735565b6040518060400160405280602081526020017f4761696e3a3a6275726e3a20696e73756666696369656e742062616c616e63658152506112b2565b6001600160601b03908116600090815533815260046020526040902054610946916108dc918116908416611735565b33600090815260046020526040902080546001600160601b0319166001600160601b03929092169190911790555050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b6109a43382611777565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b6000438210610a095760405162461bcd60e51b81526004016106719061253c565b6001600160a01b03831660009081526007602052604090205463ffffffff1680610a375760009150506104c4565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610ab3576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506104c4565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aee5760009150506104c4565b600060001982015b8163ffffffff168163ffffffff161115610bb157600282820363ffffffff16048103610b20611a3c565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610b8c576020015194506104c49350505050565b805163ffffffff16871115610ba357819350610baa565b6001820392505b5050610af6565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600481526020016323a0a4a760e11b81525081565b600080610c4d8360405180606001604052806026815260200161288b602691396112b2565b9050610c5a338583611320565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c8f576000610629565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610ce2906123a8565b60408051918290038220828201909152600882526704761696e537761760c41b6020909201919091527fd6c450a58e296bf48c49f47c8a8dbb057a59c4c5e729cfa76bb1f8d8207d8037610d34611801565b30604051602001610d48949392919061249b565b6040516020818303038152906040528051906020012090506000604051610d6e906123b3565b604051908190038120610d89918a908a908a9060200161245d565b60405160208183030381529060405280519060200120905060008282604051602001610db692919061236c565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610df394939291906124d0565b6020604051602081039080840390855afa158015610e15573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e485760405162461bcd60e51b81526004016106719061254c565b6001600160a01b03811660009081526008602052604090208054600181019091558914610e875760405162461bcd60e51b81526004016106719061252c565b87421115610ea75760405162461bcd60e51b81526004016106719061250c565b610eb1818b611777565b505050505b505050505050565b6000600019861415610ed35750600019610ef8565b610ef586604051806060016040528060248152602001612811602491396112b2565b90505b6000604051610f06906123a8565b60408051918290038220828201909152600882526704761696e537761760c41b6020909201919091527fd6c450a58e296bf48c49f47c8a8dbb057a59c4c5e729cfa76bb1f8d8207d8037610f58611801565b30604051602001610f6c949392919061249b565b6040516020818303038152906040528051906020012090506000604051610f929061239d565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610fd49391928e928e928e9290918e9101612403565b6040516020818303038152906040528051906020012090506000828260405160200161100192919061236c565b60405160208183030381529060405280519060200120905060006001828989896040516000815260200160405260405161103e94939291906124d0565b6020604051602081039080840390855afa158015611060573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110935760405162461bcd60e51b81526004016106719061257c565b8b6001600160a01b0316816001600160a01b0316146110c45760405162461bcd60e51b8152600401610671906125bc565b884211156110e45760405162461bcd60e51b8152600401610671906125cc565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516111949190612643565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104dc906123b3565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146112495760405162461bcd60e51b8152600401610671906125fc565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611288916001600160a01b039091169084906123cc565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106112d95760405162461bcd60e51b815260040161067191906124eb565b509192915050565b6000836001600160601b0316836001600160601b0316111582906113185760405162461bcd60e51b815260040161067191906124eb565b505050900390565b6001600160a01b0383166113465760405162461bcd60e51b8152600401610671906124fc565b6001600160a01b03821661136c5760405162461bcd60e51b81526004016106719061255c565b6001600160a01b0383166000908152600460209081526040918290205482516060810190935260368084526113b7936001600160601b0390921692859291906127db908301396112e1565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603080845261141f949190911692859290919061273790830139611567565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061148c908590612643565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461085d929182169116836115a3565b6000828201838110156106295760405162461bcd60e51b81526004016106719061251c565b6000826114fa575060006104c4565b8282028284828161150757fe5b04146106295760405162461bcd60e51b81526004016106719061256c565b600061062983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611805565b6000838301826001600160601b03808716908316101561159a5760405162461bcd60e51b815260040161067191906124eb565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156115ce57506000816001600160601b0316115b1561085d576001600160a01b03831615611686576001600160a01b03831660009081526007602052604081205463ffffffff16908161160e57600061164d565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611674828560405180606001604052806028815260200161278c602891396112e1565b90506116828684848461183c565b5050505b6001600160a01b0382161561085d576001600160a01b03821660009081526007602052604081205463ffffffff1690816116c1576000611700565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061172782856040518060600160405280602781526020016127b460279139611567565b9050610eb68584848461183c565b600061062983836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f77008152506119f1565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46117fb8284836115a3565b50505050565b4690565b600081836118265760405162461bcd60e51b815260040161067191906124eb565b50600083858161183257fe5b0495945050505050565b60006118604360405180606001604052806034815260200161285760349139611a15565b905060008463ffffffff161180156118a957506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611908576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556119a7565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516119e292919061265f565b60405180910390a25050505050565b600081848411156113185760405162461bcd60e51b815260040161067191906124eb565b600081600160201b84106112d95760405162461bcd60e51b815260040161067191906124eb565b604080518082019091526000808252602082015290565b80356104c481612707565b80356104c48161271b565b80356104c481612724565b80356104c48161272d565b600060208284031215611a9157600080fd5b6000611a9d8484611a53565b949350505050565b60008060408385031215611ab857600080fd5b6000611ac48585611a53565b9250506020611ad585828601611a53565b9150509250929050565b600080600060608486031215611af457600080fd5b6000611b008686611a53565b9350506020611b1186828701611a53565b9250506040611b2286828701611a5e565b9150509250925092565b600080600080600080600060e0888a031215611b4757600080fd5b6000611b538a8a611a53565b9750506020611b648a828b01611a53565b9650506040611b758a828b01611a5e565b9550506060611b868a828b01611a5e565b9450506080611b978a828b01611a74565b93505060a0611ba88a828b01611a5e565b92505060c0611bb98a828b01611a5e565b91505092959891949750929550565b60008060408385031215611bdb57600080fd5b6000611be78585611a53565b9250506020611ad585828601611a5e565b60008060008060008060c08789031215611c1157600080fd5b6000611c1d8989611a53565b9650506020611c2e89828a01611a5e565b9550506040611c3f89828a01611a5e565b9450506060611c5089828a01611a74565b9350506080611c6189828a01611a5e565b92505060a0611c7289828a01611a5e565b9150509295509295509295565b60008060408385031215611c9257600080fd5b6000611c9e8585611a53565b9250506020611ad585828601611a69565b600060208284031215611cc157600080fd5b6000611a9d8484611a5e565b611cd68161268c565b82525050565b611cd681612697565b611cd68161269c565b611cd6611cfa8261269c565b61269c565b6000611d0a8261267a565b611d14818561267e565b9350611d248185602086016126d1565b611d2d816126fd565b9093019392505050565b6000611d44603c8361267e565b7f4761696e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e736665722066726f6d20746865207a65726f206164647265737300000000602082015260400192915050565b6000611da360268361267e565b7f4761696e3a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611deb600283612687565b61190160f01b815260020192915050565b6000611e09601b8361267e565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611e4260228361267e565b7f4761696e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b6000611e8660278361267e565b7f4761696e3a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611ecf605283612687565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611f4960268361267e565b7f4761696e3a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611f91604383612687565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611ffc603a8361267e565b7f4761696e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e7366657220746f20746865207a65726f2061646472657373000000000000602082015260400192915050565b600061205b60218361267e565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b600061209e601f8361267e565b7f4761696e3a3a7065726d69743a20696e76616c6964207369676e617475726500815260200192915050565b60006120d760248361267e565b7f4761696e3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e208152631b5a5b9d60e21b602082015260400192915050565b600061211d602f8361267e565b7f4761696e3a3a6d696e743a2063616e6e6f74207472616e7366657220746f207481526e6865207a65726f206164647265737360881b602082015260400192915050565b600061216e60208361267e565b7f4761696e3a3a6275726e3a20696e73756666696369656e742062616c616e6365815260200192915050565b60006121a7601a8361267e565b7f4761696e3a3a7065726d69743a20756e617574686f72697a6564000000000000815260200192915050565b60006121e0601f8361267e565b7f4761696e3a3a7065726d69743a207369676e6174757265206578706972656400815260200192915050565b600061221960238361267e565b7f4761696e3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564208152621e595d60ea1b602082015260400192915050565b600061225e601d8361267e565b7f4761696e3a3a6d696e743a206578636565646564206d696e7420636170000000815260200192915050565b6000612297603a83612687565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006122f6603e8361267e565b7f4761696e3a3a7365744d696e7465723a206f6e6c7920746865206d696e74657281527f2063616e206368616e676520746865206d696e74657220616464726573730000602082015260400192915050565b611cd6816126ab565b611cd6816126b4565b611cd6816126c6565b611cd6816126ba565b600061237782611dde565b91506123838285611cee565b6020820191506123938284611cee565b5060200192915050565b60006104c482611ec2565b60006104c482611f84565b60006104c48261228a565b602081016104c48284611ccd565b604081016123da8285611ccd565b6106296020830184611ccd565b602081016104c48284611cdc565b602081016104c48284611ce5565b60c081016124118289611ce5565b61241e6020830188611ccd565b61242b6040830187611ccd565b6124386060830186611ce5565b6124456080830185611ce5565b61245260a0830184611ce5565b979650505050505050565b6080810161246b8287611ce5565b6124786020830186611ccd565b6124856040830185611ce5565b6124926060830184611ce5565b95945050505050565b608081016124a98287611ce5565b6124b66020830186611ce5565b6124c36040830185611ce5565b6124926060830184611ccd565b608081016124de8287611ce5565b6124786020830186612351565b602080825281016106298184611cff565b602080825281016104c481611d37565b602080825281016104c481611d96565b602080825281016104c481611dfc565b602080825281016104c481611e35565b602080825281016104c481611e79565b602080825281016104c481611f3c565b602080825281016104c481611fef565b602080825281016104c48161204e565b602080825281016104c481612091565b602080825281016104c4816120ca565b602080825281016104c481612110565b602080825281016104c481612161565b602080825281016104c48161219a565b602080825281016104c4816121d3565b602080825281016104c48161220c565b602080825281016104c481612251565b602080825281016104c4816122e9565b602081016104c48284612348565b604081016126288285612348565b6106296020830184612363565b602081016104c48284612351565b602081016104c4828461235a565b602081016104c48284612363565b6040810161266d828561235a565b610629602083018461235a565b5190565b90815260200190565b919050565b60006104c48261269f565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104c4826126ba565b60005b838110156126ec5781810151838201526020016126d4565b838111156117fb5750506000910152565b601f01601f191690565b6127108161268c565b81146109a457600080fd5b6127108161269c565b612710816126ab565b612710816126b456fe4761696e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734761696e3a3a617070726f76653a20616d6f756e74206578636565647320393620626974734761696e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734761696e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734761696e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654761696e3a3a7065726d69743a20616d6f756e74206578636565647320393620626974734761696e3a3a6d696e743a20616d6f756e74206578636565647320393620626974734761696e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734761696e3a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734761696e3a3a6d696e743a20746f74616c537570706c79206578636565647320393620626974734761696e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654761696e3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773a365627a7a72315820b757eba8ccb397d601574b10534e202e4742d9c0e368ecf1e2c8c9d6ada8081a6c6578706572696d656e74616cf564736f6c634300051100400000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab20000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab2000000000000000000000000000000000000000000000000000000005fe02a59

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610389578063e7a324dc1461039c578063f1127ed8146103a4578063fca3b5aa146103c5576101c4565b8063b4b5ea5714610350578063c3cda52014610363578063d505accf14610376576101c4565b8063782d6fe1116100d3578063782d6fe1146103025780637ecebe001461032257806395d89b4114610335578063a9059cbb1461033d576101c4565b80636fcfff45146102d457806370a08231146102e757806376c71ca1146102fa576101c4565b806330b36cef1161016657806342966c681161014057806342966c6814610286578063587cde1e146102995780635c11d62f146102ac5780635c19a95c146102c1576101c4565b806330b36cef14610254578063313ce5671461025c57806340c10f1914610271576101c4565b806318160ddd116101a257806318160ddd1461021c57806320606b701461023157806323b872dd1461023957806330adf81f1461024c576101c4565b806306fdde03146101c957806307546172146101e7578063095ea7b3146101fc575b600080fd5b6101d16103d8565b6040516101de91906124eb565b60405180910390f35b6101ef6103fc565b6040516101de91906123be565b61020f61020a366004611bc8565b61040b565b6040516101de91906123e7565b6102246104ca565b6040516101de91906123f5565b6102246104d0565b61020f610247366004611adf565b6104e7565b610224610630565b61022461063c565b610264610642565b6040516101de9190612635565b61028461027f366004611bc8565b610647565b005b610284610294366004611caf565b610862565b6101ef6102a7366004611a7f565b610977565b6102b4610992565b6040516101de919061260c565b6102846102cf366004611a7f565b61099a565b6102b46102e2366004611a7f565b6109a7565b6102246102f5366004611a7f565b6109bf565b6102646109e3565b610315610310366004611bc8565b6109e8565b6040516101de9190612651565b610224610330366004611a7f565b610bf6565b6101d1610c08565b61020f61034b366004611bc8565b610c28565b61031561035e366004611a7f565b610c64565b610284610371366004611bf8565b610cd4565b610284610384366004611b2c565b610ebe565b610224610397366004611aa5565b6111aa565b6102246111de565b6103b76103b2366004611c7f565b6111ea565b6040516101de92919061261a565b6102846103d3366004611a7f565b61121f565b6040518060400160405280600881526020016704761696e537761760c41b81525081565b6001546001600160a01b031681565b6000806000198314156104215750600019610446565b61044383604051806060016040528060258152602001612767602591396112b2565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104b6908590612643565b60405180910390a360019150505b92915050565b60005481565b6040516104dc906123a8565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261053f9288929190612767908301396112b2565b9050866001600160a01b0316836001600160a01b03161415801561056c57506001600160601b0382811614155b1561061657600061059683836040518060600160405280603d81526020016128d8603d91396112e1565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061060c908590612643565b60405180910390a3505b610621878783611320565b600193505050505b9392505050565b6040516104dc9061239d565b60025481565b601281565b6001546001600160a01b0316331461067a5760405162461bcd60e51b81526004016106719061258c565b60405180910390fd5b60025442101561069c5760405162461bcd60e51b8152600401610671906125dc565b6001600160a01b0382166106c25760405162461bcd60e51b81526004016106719061259c565b6106d0426301e133806114c6565b60028190555060006106fa82604051806060016040528060228152602001612835602291396112b2565b905061071661070f600054600260ff166114eb565b6064611525565b816001600160601b0316111561073e5760405162461bcd60e51b8152600401610671906125ec565b610774610756600054836001600160601b03166114c6565b6040518060600160405280602781526020016128b1602791396112b2565b6001600160601b0390811660009081556001600160a01b0385168152600460209081526040918290205482516060810190935260258084526107c6949190911692859290919061291590830139611567565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610830908590612643565b60405180910390a36001600160a01b0380841660009081526005602052604081205461085d9216836115a3565b505050565b600061088682604051806060016040528060228152602001612835602291396112b2565b336000908152600460205260409020549091506001600160601b03808316911610156108c45760405162461bcd60e51b8152600401610671906125ac565b6109176108dc600054836001600160601b0316611735565b6040518060400160405280602081526020017f4761696e3a3a6275726e3a20696e73756666696369656e742062616c616e63658152506112b2565b6001600160601b03908116600090815533815260046020526040902054610946916108dc918116908416611735565b33600090815260046020526040902080546001600160601b0319166001600160601b03929092169190911790555050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b6109a43382611777565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b6000438210610a095760405162461bcd60e51b81526004016106719061253c565b6001600160a01b03831660009081526007602052604090205463ffffffff1680610a375760009150506104c4565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610ab3576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506104c4565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aee5760009150506104c4565b600060001982015b8163ffffffff168163ffffffff161115610bb157600282820363ffffffff16048103610b20611a3c565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610b8c576020015194506104c49350505050565b805163ffffffff16871115610ba357819350610baa565b6001820392505b5050610af6565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6040518060400160405280600481526020016323a0a4a760e11b81525081565b600080610c4d8360405180606001604052806026815260200161288b602691396112b2565b9050610c5a338583611320565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c8f576000610629565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610ce2906123a8565b60408051918290038220828201909152600882526704761696e537761760c41b6020909201919091527fd6c450a58e296bf48c49f47c8a8dbb057a59c4c5e729cfa76bb1f8d8207d8037610d34611801565b30604051602001610d48949392919061249b565b6040516020818303038152906040528051906020012090506000604051610d6e906123b3565b604051908190038120610d89918a908a908a9060200161245d565b60405160208183030381529060405280519060200120905060008282604051602001610db692919061236c565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610df394939291906124d0565b6020604051602081039080840390855afa158015610e15573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e485760405162461bcd60e51b81526004016106719061254c565b6001600160a01b03811660009081526008602052604090208054600181019091558914610e875760405162461bcd60e51b81526004016106719061252c565b87421115610ea75760405162461bcd60e51b81526004016106719061250c565b610eb1818b611777565b505050505b505050505050565b6000600019861415610ed35750600019610ef8565b610ef586604051806060016040528060248152602001612811602491396112b2565b90505b6000604051610f06906123a8565b60408051918290038220828201909152600882526704761696e537761760c41b6020909201919091527fd6c450a58e296bf48c49f47c8a8dbb057a59c4c5e729cfa76bb1f8d8207d8037610f58611801565b30604051602001610f6c949392919061249b565b6040516020818303038152906040528051906020012090506000604051610f929061239d565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610fd49391928e928e928e9290918e9101612403565b6040516020818303038152906040528051906020012090506000828260405160200161100192919061236c565b60405160208183030381529060405280519060200120905060006001828989896040516000815260200160405260405161103e94939291906124d0565b6020604051602081039080840390855afa158015611060573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110935760405162461bcd60e51b81526004016106719061257c565b8b6001600160a01b0316816001600160a01b0316146110c45760405162461bcd60e51b8152600401610671906125bc565b884211156110e45760405162461bcd60e51b8152600401610671906125cc565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516111949190612643565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104dc906123b3565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146112495760405162461bcd60e51b8152600401610671906125fc565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f691611288916001600160a01b039091169084906123cc565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106112d95760405162461bcd60e51b815260040161067191906124eb565b509192915050565b6000836001600160601b0316836001600160601b0316111582906113185760405162461bcd60e51b815260040161067191906124eb565b505050900390565b6001600160a01b0383166113465760405162461bcd60e51b8152600401610671906124fc565b6001600160a01b03821661136c5760405162461bcd60e51b81526004016106719061255c565b6001600160a01b0383166000908152600460209081526040918290205482516060810190935260368084526113b7936001600160601b0390921692859291906127db908301396112e1565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603080845261141f949190911692859290919061273790830139611567565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061148c908590612643565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461085d929182169116836115a3565b6000828201838110156106295760405162461bcd60e51b81526004016106719061251c565b6000826114fa575060006104c4565b8282028284828161150757fe5b04146106295760405162461bcd60e51b81526004016106719061256c565b600061062983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611805565b6000838301826001600160601b03808716908316101561159a5760405162461bcd60e51b815260040161067191906124eb565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156115ce57506000816001600160601b0316115b1561085d576001600160a01b03831615611686576001600160a01b03831660009081526007602052604081205463ffffffff16908161160e57600061164d565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611674828560405180606001604052806028815260200161278c602891396112e1565b90506116828684848461183c565b5050505b6001600160a01b0382161561085d576001600160a01b03821660009081526007602052604081205463ffffffff1690816116c1576000611700565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061172782856040518060600160405280602781526020016127b460279139611567565b9050610eb68584848461183c565b600061062983836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f77008152506119f1565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46117fb8284836115a3565b50505050565b4690565b600081836118265760405162461bcd60e51b815260040161067191906124eb565b50600083858161183257fe5b0495945050505050565b60006118604360405180606001604052806034815260200161285760349139611a15565b905060008463ffffffff161180156118a957506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611908576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556119a7565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516119e292919061265f565b60405180910390a25050505050565b600081848411156113185760405162461bcd60e51b815260040161067191906124eb565b600081600160201b84106112d95760405162461bcd60e51b815260040161067191906124eb565b604080518082019091526000808252602082015290565b80356104c481612707565b80356104c48161271b565b80356104c481612724565b80356104c48161272d565b600060208284031215611a9157600080fd5b6000611a9d8484611a53565b949350505050565b60008060408385031215611ab857600080fd5b6000611ac48585611a53565b9250506020611ad585828601611a53565b9150509250929050565b600080600060608486031215611af457600080fd5b6000611b008686611a53565b9350506020611b1186828701611a53565b9250506040611b2286828701611a5e565b9150509250925092565b600080600080600080600060e0888a031215611b4757600080fd5b6000611b538a8a611a53565b9750506020611b648a828b01611a53565b9650506040611b758a828b01611a5e565b9550506060611b868a828b01611a5e565b9450506080611b978a828b01611a74565b93505060a0611ba88a828b01611a5e565b92505060c0611bb98a828b01611a5e565b91505092959891949750929550565b60008060408385031215611bdb57600080fd5b6000611be78585611a53565b9250506020611ad585828601611a5e565b60008060008060008060c08789031215611c1157600080fd5b6000611c1d8989611a53565b9650506020611c2e89828a01611a5e565b9550506040611c3f89828a01611a5e565b9450506060611c5089828a01611a74565b9350506080611c6189828a01611a5e565b92505060a0611c7289828a01611a5e565b9150509295509295509295565b60008060408385031215611c9257600080fd5b6000611c9e8585611a53565b9250506020611ad585828601611a69565b600060208284031215611cc157600080fd5b6000611a9d8484611a5e565b611cd68161268c565b82525050565b611cd681612697565b611cd68161269c565b611cd6611cfa8261269c565b61269c565b6000611d0a8261267a565b611d14818561267e565b9350611d248185602086016126d1565b611d2d816126fd565b9093019392505050565b6000611d44603c8361267e565b7f4761696e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e736665722066726f6d20746865207a65726f206164647265737300000000602082015260400192915050565b6000611da360268361267e565b7f4761696e3a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611deb600283612687565b61190160f01b815260020192915050565b6000611e09601b8361267e565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611e4260228361267e565b7f4761696e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b6000611e8660278361267e565b7f4761696e3a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611ecf605283612687565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611f4960268361267e565b7f4761696e3a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611f91604383612687565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611ffc603a8361267e565b7f4761696e3a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747281527f616e7366657220746f20746865207a65726f2061646472657373000000000000602082015260400192915050565b600061205b60218361267e565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b600061209e601f8361267e565b7f4761696e3a3a7065726d69743a20696e76616c6964207369676e617475726500815260200192915050565b60006120d760248361267e565b7f4761696e3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e208152631b5a5b9d60e21b602082015260400192915050565b600061211d602f8361267e565b7f4761696e3a3a6d696e743a2063616e6e6f74207472616e7366657220746f207481526e6865207a65726f206164647265737360881b602082015260400192915050565b600061216e60208361267e565b7f4761696e3a3a6275726e3a20696e73756666696369656e742062616c616e6365815260200192915050565b60006121a7601a8361267e565b7f4761696e3a3a7065726d69743a20756e617574686f72697a6564000000000000815260200192915050565b60006121e0601f8361267e565b7f4761696e3a3a7065726d69743a207369676e6174757265206578706972656400815260200192915050565b600061221960238361267e565b7f4761696e3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f776564208152621e595d60ea1b602082015260400192915050565b600061225e601d8361267e565b7f4761696e3a3a6d696e743a206578636565646564206d696e7420636170000000815260200192915050565b6000612297603a83612687565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006122f6603e8361267e565b7f4761696e3a3a7365744d696e7465723a206f6e6c7920746865206d696e74657281527f2063616e206368616e676520746865206d696e74657220616464726573730000602082015260400192915050565b611cd6816126ab565b611cd6816126b4565b611cd6816126c6565b611cd6816126ba565b600061237782611dde565b91506123838285611cee565b6020820191506123938284611cee565b5060200192915050565b60006104c482611ec2565b60006104c482611f84565b60006104c48261228a565b602081016104c48284611ccd565b604081016123da8285611ccd565b6106296020830184611ccd565b602081016104c48284611cdc565b602081016104c48284611ce5565b60c081016124118289611ce5565b61241e6020830188611ccd565b61242b6040830187611ccd565b6124386060830186611ce5565b6124456080830185611ce5565b61245260a0830184611ce5565b979650505050505050565b6080810161246b8287611ce5565b6124786020830186611ccd565b6124856040830185611ce5565b6124926060830184611ce5565b95945050505050565b608081016124a98287611ce5565b6124b66020830186611ce5565b6124c36040830185611ce5565b6124926060830184611ccd565b608081016124de8287611ce5565b6124786020830186612351565b602080825281016106298184611cff565b602080825281016104c481611d37565b602080825281016104c481611d96565b602080825281016104c481611dfc565b602080825281016104c481611e35565b602080825281016104c481611e79565b602080825281016104c481611f3c565b602080825281016104c481611fef565b602080825281016104c48161204e565b602080825281016104c481612091565b602080825281016104c4816120ca565b602080825281016104c481612110565b602080825281016104c481612161565b602080825281016104c48161219a565b602080825281016104c4816121d3565b602080825281016104c48161220c565b602080825281016104c481612251565b602080825281016104c4816122e9565b602081016104c48284612348565b604081016126288285612348565b6106296020830184612363565b602081016104c48284612351565b602081016104c4828461235a565b602081016104c48284612363565b6040810161266d828561235a565b610629602083018461235a565b5190565b90815260200190565b919050565b60006104c48261269f565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104c4826126ba565b60005b838110156126ec5781810151838201526020016126d4565b838111156117fb5750506000910152565b601f01601f191690565b6127108161268c565b81146109a457600080fd5b6127108161269c565b612710816126ab565b612710816126b456fe4761696e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734761696e3a3a617070726f76653a20616d6f756e74206578636565647320393620626974734761696e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734761696e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734761696e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654761696e3a3a7065726d69743a20616d6f756e74206578636565647320393620626974734761696e3a3a6d696e743a20616d6f756e74206578636565647320393620626974734761696e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734761696e3a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734761696e3a3a6d696e743a20746f74616c537570706c79206578636565647320393620626974734761696e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654761696e3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773a365627a7a72315820b757eba8ccb397d601574b10534e202e4742d9c0e368ecf1e2c8c9d6ada8081a6c6578706572696d656e74616cf564736f6c63430005110040

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab20000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab2000000000000000000000000000000000000000000000000000000005fe02a59

-----Decoded View---------------
Arg [0] : account (address): 0x3a1D9A4cE080834fCb85243883Df7aedB3a08aB2
Arg [1] : minter_ (address): 0x3a1D9A4cE080834fCb85243883Df7aedB3a08aB2
Arg [2] : mintingAllowedAfter_ (uint256): 1608526425

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab2
Arg [1] : 0000000000000000000000003a1d9a4ce080834fcb85243883df7aedb3a08ab2
Arg [2] : 000000000000000000000000000000000000000000000000000000005fe02a59


Deployed Bytecode Sourcemap

6635:17727:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6635:17727:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6706:40;;;:::i;:::-;;;;;;;;;;;;;;;;7117:21;;;:::i;:::-;;;;;;;;13599:419;;;;;;;;;:::i;:::-;;;;;;;;7007:35;;;:::i;:::-;;;;;;;;8346:122;;;:::i;16685:672::-;;;;;;;;;:::i;8769:137::-;;;:::i;7208:31::-;;;:::i;6908:35::-;;;:::i;:::-;;;;;;;;11064:1065;;;;;;;;;:::i;:::-;;12246:435;;;;;;;;;:::i;7796:45::-;;;;;;;;;:::i;7292:61::-;;;:::i;:::-;;;;;;;;17505:102;;;;;;;;;:::i;8224:49::-;;;;;;;;;:::i;15765:108::-;;;;;;;;;:::i;7448:33::-;;;:::i;19684:1218::-;;;;;;;;;:::i;:::-;;;;;;;;8987:39;;;;;;;;;:::i;6807:38::-;;;:::i;16137:238::-;;;;;;;;;:::i;19031:222::-;;;;;;;;;:::i;18041:789::-;;;;;;;;;:::i;14508:1054::-;;;;;;;;;:::i;12985:136::-;;;;;;;;;:::i;8562:117::-;;;:::i;8085:70::-;;;;;;;;;:::i;:::-;;;;;;;;;10657:232;;;;;;;;;:::i;6706:40::-;;;;;;;;;;;;;;-1:-1:-1;;;6706:40:0;;;;:::o;7117:21::-;;;-1:-1:-1;;;;;7117:21:0;;:::o;13599:419::-;13667:4;13684:13;-1:-1:-1;;13712:9:0;:21;13708:173;;;-1:-1:-1;;;13708:173:0;;;13811:58;13818:9;13811:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;13802:67;;13708:173;13904:10;13893:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13893:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;13893:40:0;-1:-1:-1;;;;;13893:40:0;;;;;13951:37;;13893:31;;13904:10;13951:37;;;;13893:40;;13951:37;;;;;;;;;;14006:4;13999:11;;;13599:419;;;;;:::o;7007:35::-;;;;:::o;8346:122::-;8388:80;;;;;;;;;;;;;;8346:122;:::o;16685:672::-;-1:-1:-1;;;;;16849:15:0;;16767:4;16849:15;;;:10;:15;;;;;;;;16802:10;16849:24;;;;;;;;;;16900:58;;;;;;;;;;;;16802:10;;-1:-1:-1;;;;;16849:24:0;;;;16767:4;;16900:58;;16907:9;;16900:58;;;;;;;:6;:58::i;:::-;16884:74;;16986:3;-1:-1:-1;;;;;16975:14:0;:7;-1:-1:-1;;;;;16975:14:0;;;:48;;;;-1:-1:-1;;;;;;16993:30:0;;;;;16975:48;16971:311;;;17040:19;17062:96;17068:16;17086:6;17062:96;;;;;;;;;;;;;;;;;:5;:96::i;:::-;-1:-1:-1;;;;;17173:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;17173:39:0;-1:-1:-1;;;;;17173:39:0;;;;;17234:36;17173:39;;-1:-1:-1;17173:24:0;;17234:36;;;;17173:39;;17234:36;;;;;;;;;;16971:311;;17294:33;17310:3;17315;17320:6;17294:15;:33::i;:::-;17345:4;17338:11;;;;;16685:672;;;;;;:::o;8769:137::-;8811:95;;;;;;7208:31;;;;:::o;6908:35::-;6941:2;6908:35;:::o;11064:1065::-;11149:6;;-1:-1:-1;;;;;11149:6:0;11135:10;:20;11127:69;;;;-1:-1:-1;;;11127:69:0;;;;;;;;;;;;;;;;;11234:19;;11215:15;:38;;11207:86;;;;-1:-1:-1;;;11207:86:0;;;;;;;;;-1:-1:-1;;;;;11312:17:0;;11304:77;;;;-1:-1:-1;;;11304:77:0;;;;;;;;;11444:54;11457:15;7341:12;11444;:54::i;:::-;11422:19;:76;;;;11539:13;11555:55;11562:9;11555:55;;;;;;;;;;;;;;;;;:6;:55::i;:::-;11539:71;;11639:53;11652:34;11665:11;;7480:1;11652:34;;:12;:34::i;:::-;11688:3;11639:12;:53::i;:::-;11629:6;-1:-1:-1;;;;;11629:63:0;;;11621:105;;;;-1:-1:-1;;;11621:105:0;;;;;;;;;11751:84;11758:33;11771:11;;11784:6;-1:-1:-1;;;;;11758:33:0;:12;:33::i;:::-;11751:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;-1:-1:-1;;;;;11737:98:0;;;:11;:98;;;-1:-1:-1;;;;;11919:13:0;;;;:8;:13;;;;;;;;;;11913:69;;;;;;;;;;;;;;11919:13;;;;;11934:6;;11913:69;;;;;;;;:5;:69::i;:::-;-1:-1:-1;;;;;11897:13:0;;;;;;:8;:13;;;;;;:85;;-1:-1:-1;;;;;;11897:85:0;-1:-1:-1;;;;;11897:85:0;;;;;;;;;;;11998:33;;11897:13;;;11998:33;;;;12024:6;;11998:33;;;;;;;;;;-1:-1:-1;;;;;12098:14:0;;;12094:1;12098:14;;;:9;:14;;;;;;12071:50;;12098:14;12114:6;12071:14;:50::i;:::-;11064:1065;;;:::o;12246:435::-;12294:13;12310:55;12317:9;12310:55;;;;;;;;;;;;;;;;;:6;:55::i;:::-;12393:10;12384:20;;;;:8;:20;;;;;;12294:71;;-1:-1:-1;;;;;;12384:30:0;;;:20;;:30;;12376:75;;;;-1:-1:-1;;;12376:75:0;;;;;;;;;12476:77;12483:33;12496:11;;12509:6;-1:-1:-1;;;;;12483:33:0;:12;:33::i;:::-;12476:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;-1:-1:-1;;;;;12462:91:0;;;:11;:91;;;12616:10;12607:20;;:8;:20;;;;;;12587:86;;12594:42;;12607:20;;;12594:42;;:12;:42::i;12587:86::-;12573:10;12564:20;;;;:8;:20;;;;;:109;;-1:-1:-1;;;;;;12564:109:0;-1:-1:-1;;;;;12564:109:0;;;;;;;;;;-1:-1:-1;;12246:435:0:o;7796:45::-;;;;;;;;;;;;-1:-1:-1;;;;;7796:45:0;;:::o;7292:61::-;7341:12;7292:61;:::o;17505:102::-;17567:32;17577:10;17589:9;17567;:32::i;:::-;17505:102;:::o;8224:49::-;;;;;;;;;;;;;;;:::o;15765:108::-;-1:-1:-1;;;;;15848:17:0;15824:4;15848:17;;;:8;:17;;;;;;-1:-1:-1;;;;;15848:17:0;;15765:108::o;7448:33::-;7480:1;7448:33;:::o;19684:1218::-;19763:6;19804:12;19790:11;:26;19782:78;;;;-1:-1:-1;;;19782:78:0;;;;;;;;;-1:-1:-1;;;;;19895:23:0;;19873:19;19895:23;;;:14;:23;;;;;;;;19933:17;19929:58;;19974:1;19967:8;;;;;19929:58;-1:-1:-1;;;;;20047:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;20068:16:0;;20047:38;;;;;;;;;:48;;:63;-1:-1:-1;20043:147:0;;-1:-1:-1;;;;;20134:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;20155:16:0;;;;20134:38;;;;;;;;:44;-1:-1:-1;;;20134:44:0;;-1:-1:-1;;;;;20134:44:0;;-1:-1:-1;20127:51:0;;20043:147;-1:-1:-1;;;;;20251:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;20247:88:0;;;20322:1;20315:8;;;;;20247:88;20347:12;-1:-1:-1;;20389:16:0;;20416:428;20431:5;20423:13;;:5;:13;;;20416:428;;;20495:1;20478:13;;;20477:19;;;20469:27;;20538:20;;:::i;:::-;-1:-1:-1;;;;;;20561:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;20538:51;;;;;;;;;;;;;;;-1:-1:-1;;;20538:51:0;;;-1:-1:-1;;;;;20538:51:0;;;;;;;;;20608:27;;20604:229;;;20663:8;;;;-1:-1:-1;20656:15:0;;-1:-1:-1;;;;20656:15:0;20604:229;20697:12;;:26;;;-1:-1:-1;20693:140:0;;;20752:6;20744:14;;20693:140;;;20816:1;20807:6;:10;20799:18;;20693:140;20416:428;;;;;-1:-1:-1;;;;;;20861:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;20861:33:0;;;;;-1:-1:-1;;19684:1218:0;;;;:::o;8987:39::-;;;;;;;;;;;;;:::o;6807:38::-;;;;;;;;;;;;;;-1:-1:-1;;;6807:38:0;;;;:::o;16137:238::-;16202:4;16219:13;16235:59;16242:9;16235:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;16219:75;;16305:40;16321:10;16333:3;16338:6;16305:15;:40::i;:::-;-1:-1:-1;16363:4:0;;16137:238;-1:-1:-1;;;16137:238:0:o;19031:222::-;-1:-1:-1;;;;;19137:23:0;;19096:6;19137:23;;;:14;:23;;;;;;;;19178:16;:67;;19244:1;19178:67;;;-1:-1:-1;;;;;19197:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;19218:16:0;;19197:38;;;;;;;;;:44;-1:-1:-1;;;19197:44:0;;-1:-1:-1;;;;;19197:44:0;19171:74;19031:222;-1:-1:-1;;;19031:222:0:o;18041:789::-;18157:23;8388:80;;;;;;;;;;;;;;;;18237:4;;;;;;;;;-1:-1:-1;;;18237:4:0;;;;;;;;18221:22;18245:12;:10;:12::i;:::-;18267:4;18193:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18193:80:0;;;18183:91;;;;;;18157:117;;18285:18;8608:71;;;;;;;;;;;;;;;18316:57;;18348:9;;18359:5;;18366:6;;18316:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18316:57:0;;;18306:68;;;;;;18285:89;;18385:14;18441:15;18458:10;18412:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;18412:57:0;;;18402:68;;;;;;18385:85;;18481:17;18501:26;18511:6;18519:1;18522;18525;18501:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;18501:26:0;;-1:-1:-1;;18501:26:0;;;-1:-1:-1;;;;;;;18546:23:0;;18538:74;;;;-1:-1:-1;;;18538:74:0;;;;;;;;;-1:-1:-1;;;;;18640:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;18631:28;;18623:75;;;;-1:-1:-1;;;18623:75:0;;;;;;;;;18724:6;18717:3;:13;;18709:64;;;;-1:-1:-1;;;18709:64:0;;;;;;;;;18791:31;18801:9;18812;18791;:31::i;:::-;18784:38;;;;18041:789;;;;;;;:::o;14508:1054::-;14638:13;-1:-1:-1;;14666:9:0;:21;14662:172;;;-1:-1:-1;;;14662:172:0;;;14765:57;14772:9;14765:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;14756:66;;14662:172;14846:23;8388:80;;;;;;;;;;;;;;;;14926:4;;;;;;;;;-1:-1:-1;;;14926:4:0;;;;;;;;14910:22;14934:12;:10;:12::i;:::-;14956:4;14882:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14882:80:0;;;14872:91;;;;;;14846:117;;14974:18;8811:95;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15060:13:0;;;;;;:6;:13;;;;;;;:15;;;;;;;;15005:81;;8811:95;;15033:5;;15040:7;;15049:9;;15060:15;;15077:8;;15005:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;15005:81:0;;;14995:92;;;;;;14974:113;;15098:14;15154:15;15171:10;15125:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;15125:57:0;;;15115:68;;;;;;15098:85;;15194:17;15214:26;15224:6;15232:1;15235;15238;15214:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;15214:26:0;;-1:-1:-1;;15214:26:0;;;-1:-1:-1;;;;;;;15259:23:0;;15251:67;;;;-1:-1:-1;;;15251:67:0;;;;;;;;;15350:5;-1:-1:-1;;;;;15337:18:0;:9;-1:-1:-1;;;;;15337:18:0;;15329:57;;;;-1:-1:-1;;;15329:57:0;;;;;;;;;15412:8;15405:3;:15;;15397:59;;;;-1:-1:-1;;;15397:59:0;;;;;;;;;15498:6;15469:10;:17;15480:5;-1:-1:-1;;;;;15469:17:0;-1:-1:-1;;;;;15469:17:0;;;;;;;;;;;;:26;15487:7;-1:-1:-1;;;;;15469:26:0;-1:-1:-1;;;;;15469:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;15469:35:0;;;;;-1:-1:-1;;;;;15469:35:0;;;;;;15538:7;-1:-1:-1;;;;;15522:32:0;15531:5;-1:-1:-1;;;;;15522:32:0;;15547:6;15522:32;;;;;;;;;;;;;;;14508:1054;;;;;;;;;;;;:::o;12985:136::-;-1:-1:-1;;;;;13085:19:0;;;13061:4;13085:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;13085:28:0;;12985:136::o;8562:117::-;8608:71;;;;;;8085:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8085:70:0;;-1:-1:-1;;;;;8085:70:0;;:::o;10657:232::-;10735:6;;-1:-1:-1;;;;;10735:6:0;10721:10;:20;10713:95;;;;-1:-1:-1;;;10713:95:0;;;;;;;;;10838:6;;10824:30;;;;;;-1:-1:-1;;;;;10838:6:0;;;;10846:7;;10824:30;;;;;;;;;;10865:6;:16;;-1:-1:-1;;;;;;10865:16:0;-1:-1:-1;;;;;10865:16:0;;;;;;;;;;10657:232::o;23668:161::-;23743:6;23781:12;-1:-1:-1;;;23770:9:0;;23762:32;;;;-1:-1:-1;;;23762:32:0;;;;;;;;;;-1:-1:-1;23819:1:0;;23668:161;-1:-1:-1;;23668:161:0:o;24033:165::-;24119:6;24151:1;-1:-1:-1;;;;;24146:6:0;:1;-1:-1:-1;;;;;24146:6:0;;;24154:12;24138:29;;;;;-1:-1:-1;;;24138:29:0;;;;;;;;;;-1:-1:-1;;;24185:5:0;;;24033:165::o;21293:614::-;-1:-1:-1;;;;;21387:17:0;;21379:90;;;;-1:-1:-1;;;21379:90:0;;;;;;;;;-1:-1:-1;;;;;21488:17:0;;21480:88;;;;-1:-1:-1;;;21480:88:0;;;;;;;;;-1:-1:-1;;;;;21603:13:0;;;;;;:8;:13;;;;;;;;;;21597:86;;;;;;;;;;;;;;-1:-1:-1;;;;;21603:13:0;;;;21618:6;;21597:86;;;;;;;:5;:86::i;:::-;-1:-1:-1;;;;;21581:13:0;;;;;;;:8;:13;;;;;;;;:102;;-1:-1:-1;;;;;;21581:102:0;-1:-1:-1;;;;;21581:102:0;;;;;;21716:13;;;;;;;;;;21710:80;;;;;;;;;;;;;;21716:13;;;;;21731:6;;21710:80;;;;;;;;:5;:80::i;:::-;-1:-1:-1;;;;;21694:13:0;;;;;;;:8;:13;;;;;;;:96;;-1:-1:-1;;;;;;21694:96:0;-1:-1:-1;;;;;21694:96:0;;;;;;;;;;;21806:26;;;;;;;;;;21825:6;;21806:26;;;;;;;;;;-1:-1:-1;;;;;21860:14:0;;;;;;;:9;:14;;;;;;;21876;;;;;;;;21845:54;;21860:14;;;;21876;21892:6;21845:14;:54::i;1021:181::-;1079:7;1111:5;;;1135:6;;;;1127:46;;;;-1:-1:-1;;;1127:46:0;;;;;;;;2775:471;2833:7;3078:6;3074:47;;-1:-1:-1;3108:1:0;3101:8;;3074:47;3145:5;;;3149:1;3145;:5;:1;3169:5;;;;;:10;3161:56;;;;-1:-1:-1;;;3161:56:0;;;;;;;;4433:132;4491:7;4518:39;4522:1;4525;4518:39;;;;;;;;;;;;;;;;;:3;:39::i;23837:188::-;23923:6;23953:5;;;23985:12;-1:-1:-1;;;;;23977:6:0;;;;;;;;23969:29;;;;-1:-1:-1;;;23969:29:0;;;;;;;;;;-1:-1:-1;24016:1:0;23837:188;-1:-1:-1;;;;23837:188:0:o;21915:939::-;22020:6;-1:-1:-1;;;;;22010:16:0;:6;-1:-1:-1;;;;;22010:16:0;;;:30;;;;;22039:1;22030:6;-1:-1:-1;;;;;22030:10:0;;22010:30;22006:841;;;-1:-1:-1;;;;;22061:20:0;;;22057:382;;-1:-1:-1;;;;;22121:22:0;;22102:16;22121:22;;;:14;:22;;;;;;;;;22181:13;:60;;22240:1;22181:60;;;-1:-1:-1;;;;;22197:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;22217:13:0;;22197:34;;;;;;;;;:40;-1:-1:-1;;;22197:40:0;;-1:-1:-1;;;;;22197:40:0;22181:60;22162:79;;22260:16;22279:68;22285:9;22296:6;22279:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;22260:87;;22366:57;22383:6;22391:9;22402;22413;22366:16;:57::i;:::-;22057:382;;;;-1:-1:-1;;;;;22459:20:0;;;22455:381;;-1:-1:-1;;;;;22519:22:0;;22500:16;22519:22;;;:14;:22;;;;;;;;;22579:13;:60;;22638:1;22579:60;;;-1:-1:-1;;;;;22595:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;22615:13:0;;22595:34;;;;;;;;;:40;-1:-1:-1;;;22595:40:0;;-1:-1:-1;;;;;22595:40:0;22579:60;22560:79;;22658:16;22677:67;22683:9;22694:6;22677:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;22658:86;;22763:57;22780:6;22788:9;22799;22810;22763:16;:57::i;1914:137::-;1972:7;1999:44;2003:1;2006;1999:44;;;;;;;;;;;;;;;;;:3;:44::i;20910:375::-;-1:-1:-1;;;;;21013:20:0;;;20987:23;21013:20;;;:9;:20;;;;;;;;;;21070:8;:19;;;;;;21100:20;;;;:32;;;-1:-1:-1;;;;;;21100:32:0;;;;;;;21150:54;;21013:20;;;;;-1:-1:-1;;;;;21070:19:0;;;;21100:32;;21013:20;;;21150:54;;20987:23;21150:54;21217:60;21232:15;21249:9;21260:16;21217:14;:60::i;:::-;20910:375;;;;:::o;24206:153::-;24316:9;24206:153;:::o;5053:345::-;5139:7;5241:12;5234:5;5226:28;;;;-1:-1:-1;;;5226:28:0;;;;;;;;;;;5265:9;5281:1;5277;:5;;;;;;;5053:345;-1:-1:-1;;;;;5053:345:0:o;22862:629::-;22980:18;23001:76;23008:12;23001:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;22980:97;;23107:1;23092:12;:16;;;:85;;;;-1:-1:-1;;;;;;23112:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;23135:16:0;;23112:40;;;;;;;;;:50;:65;;;:50;;:65;23092:85;23088:329;;;-1:-1:-1;;;;;23192:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;23215:16:0;;23192:40;;;;;;;;;:57;;-1:-1:-1;;23192:57:0;-1:-1:-1;;;;;;;;23192:57:0;;;;;;23088:329;;;23317:33;;;;;;;;;;;;;;-1:-1:-1;;;;;23317:33:0;;;;;;;;;;-1:-1:-1;;;;;23278:22:0;;-1:-1:-1;23278:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;23278:72:0;-1:-1:-1;;23278:72:0;;;-1:-1:-1;;23278:72:0;;;;;;;;;;;;;;;23363:25;;;:14;:25;;;;;;;:44;;23278:72;23391:16;;23363:44;;;;;;;;;;;;;23088:329;23453:9;-1:-1:-1;;;;;23432:51:0;;23464:8;23474;23432:51;;;;;;;;;;;;;;;;22862:629;;;;;:::o;2340:192::-;2426:7;2462:12;2454:6;;;;2446:29;;;;-1:-1:-1;;;2446:29:0;;;;;;;;;23499:161;23574:6;23612:12;-1:-1:-1;;;23601:9:0;;23593:32;;;;-1:-1:-1;;;23593:32:0;;;;;;;;;6635:17727;;;;;;;;;;-1:-1:-1;6635:17727:0;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:130;209:20;;234:33;209:20;234:33;;416:128;482:20;;507:32;482:20;507:32;;551:126;616:20;;641:31;616:20;641:31;;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;804:1;801;794:12;756:2;839:1;856:53;901:7;881:9;856:53;;;846:63;750:175;-1:-1;;;;750:175;932:366;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;1069:1;1066;1059:12;1021:2;1104:1;1121:53;1166:7;1146:9;1121:53;;;1111:63;;1083:97;1211:2;1229:53;1274:7;1265:6;1254:9;1250:22;1229:53;;;1219:63;;1190:98;1015:283;;;;;;1305:491;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1459:1;1456;1449:12;1411:2;1494:1;1511:53;1556:7;1536:9;1511:53;;;1501:63;;1473:97;1601:2;1619:53;1664:7;1655:6;1644:9;1640:22;1619:53;;;1609:63;;1580:98;1709:2;1727:53;1772:7;1763:6;1752:9;1748:22;1727:53;;;1717:63;;1688:98;1405:391;;;;;;1803:991;;;;;;;;2007:3;1995:9;1986:7;1982:23;1978:33;1975:2;;;2024:1;2021;2014:12;1975:2;2059:1;2076:53;2121:7;2101:9;2076:53;;;2066:63;;2038:97;2166:2;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;;;2174:63;;2145:98;2274:2;2292:53;2337:7;2328:6;2317:9;2313:22;2292:53;;;2282:63;;2253:98;2382:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;;;2390:63;;2361:98;2490:3;2509:51;2552:7;2543:6;2532:9;2528:22;2509:51;;;2499:61;;2469:97;2597:3;2616:53;2661:7;2652:6;2641:9;2637:22;2616:53;;;2606:63;;2576:99;2706:3;2725:53;2770:7;2761:6;2750:9;2746:22;2725:53;;;2715:63;;2685:99;1969:825;;;;;;;;;;;2801:366;;;2922:2;2910:9;2901:7;2897:23;2893:32;2890:2;;;2938:1;2935;2928:12;2890:2;2973:1;2990:53;3035:7;3015:9;2990:53;;;2980:63;;2952:97;3080:2;3098:53;3143:7;3134:6;3123:9;3119:22;3098:53;;3174:865;;;;;;;3361:3;3349:9;3340:7;3336:23;3332:33;3329:2;;;3378:1;3375;3368:12;3329:2;3413:1;3430:53;3475:7;3455:9;3430:53;;;3420:63;;3392:97;3520:2;3538:53;3583:7;3574:6;3563:9;3559:22;3538:53;;;3528:63;;3499:98;3628:2;3646:53;3691:7;3682:6;3671:9;3667:22;3646:53;;;3636:63;;3607:98;3736:2;3754:51;3797:7;3788:6;3777:9;3773:22;3754:51;;;3744:61;;3715:96;3842:3;3861:53;3906:7;3897:6;3886:9;3882:22;3861:53;;;3851:63;;3821:99;3951:3;3970:53;4015:7;4006:6;3995:9;3991:22;3970:53;;;3960:63;;3930:99;3323:716;;;;;;;;;4046:364;;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4182:1;4179;4172:12;4134:2;4217:1;4234:53;4279:7;4259:9;4234:53;;;4224:63;;4196:97;4324:2;4342:52;4386:7;4377:6;4366:9;4362:22;4342:52;;4417:241;;4521:2;4509:9;4500:7;4496:23;4492:32;4489:2;;;4537:1;4534;4527:12;4489:2;4572:1;4589:53;4634:7;4614:9;4589:53;;4665:113;4748:24;4766:5;4748:24;;;4743:3;4736:37;4730:48;;;4785:104;4862:21;4877:5;4862:21;;4896:113;4979:24;4997:5;4979:24;;5016:152;5117:45;5137:24;5155:5;5137:24;;;5117:45;;5175:347;;5287:39;5320:5;5287:39;;;5338:71;5402:6;5397:3;5338:71;;;5331:78;;5414:52;5459:6;5454:3;5447:4;5440:5;5436:16;5414:52;;;5487:29;5509:6;5487:29;;;5478:39;;;;5267:255;-1:-1;;;5267:255;5876:397;;6036:67;6100:2;6095:3;6036:67;;;6136:34;6116:55;;6205:30;6200:2;6191:12;;6184:52;6264:2;6255:12;;6022:251;-1:-1;;6022:251;6282:375;;6442:67;6506:2;6501:3;6442:67;;;6542:34;6522:55;;-1:-1;;;6606:2;6597:12;;6590:30;6648:2;6639:12;;6428:229;-1:-1;;6428:229;6666:398;;6844:84;6926:1;6921:3;6844:84;;;-1:-1;;;6941:87;;7056:1;7047:11;;6830:234;-1:-1;;6830:234;7073:327;;7233:67;7297:2;7292:3;7233:67;;;7333:29;7313:50;;7391:2;7382:12;;7219:181;-1:-1;;7219:181;7409:371;;7569:67;7633:2;7628:3;7569:67;;;7669:34;7649:55;;-1:-1;;;7733:2;7724:12;;7717:26;7771:2;7762:12;;7555:225;-1:-1;;7555:225;7789:376;;7949:67;8013:2;8008:3;7949:67;;;8049:34;8029:55;;-1:-1;;;8113:2;8104:12;;8097:31;8156:2;8147:12;;7935:230;-1:-1;;7935:230;8174:492;;8352:85;8434:2;8429:3;8352:85;;;8470:34;8450:55;;8539:34;8534:2;8525:12;;8518:56;-1:-1;;;8603:2;8594:12;;8587:42;8657:2;8648:12;;8338:328;-1:-1;;8338:328;8675:375;;8835:67;8899:2;8894:3;8835:67;;;8935:34;8915:55;;-1:-1;;;8999:2;8990:12;;8983:30;9041:2;9032:12;;8821:229;-1:-1;;8821:229;9059:477;;9237:85;9319:2;9314:3;9237:85;;;9355:34;9335:55;;9424:34;9419:2;9410:12;;9403:56;-1:-1;;;9488:2;9479:12;;9472:27;9527:2;9518:12;;9223:313;-1:-1;;9223:313;9545:395;;9705:67;9769:2;9764:3;9705:67;;;9805:34;9785:55;;9874:28;9869:2;9860:12;;9853:50;9931:2;9922:12;;9691:249;-1:-1;;9691:249;9949:370;;10109:67;10173:2;10168:3;10109:67;;;10209:34;10189:55;;-1:-1;;;10273:2;10264:12;;10257:25;10310:2;10301:12;;10095:224;-1:-1;;10095:224;10328:331;;10488:67;10552:2;10547:3;10488:67;;;10588:33;10568:54;;10650:2;10641:12;;10474:185;-1:-1;;10474:185;10668:373;;10828:67;10892:2;10887:3;10828:67;;;10928:34;10908:55;;-1:-1;;;10992:2;10983:12;;10976:28;11032:2;11023:12;;10814:227;-1:-1;;10814:227;11050:384;;11210:67;11274:2;11269:3;11210:67;;;11310:34;11290:55;;-1:-1;;;11374:2;11365:12;;11358:39;11425:2;11416:12;;11196:238;-1:-1;;11196:238;11443:332;;11603:67;11667:2;11662:3;11603:67;;;11703:34;11683:55;;11766:2;11757:12;;11589:186;-1:-1;;11589:186;11784:326;;11944:67;12008:2;12003:3;11944:67;;;12044:28;12024:49;;12101:2;12092:12;;11930:180;-1:-1;;11930:180;12119:331;;12279:67;12343:2;12338:3;12279:67;;;12379:33;12359:54;;12441:2;12432:12;;12265:185;-1:-1;;12265:185;12459:372;;12619:67;12683:2;12678:3;12619:67;;;12719:34;12699:55;;-1:-1;;;12783:2;12774:12;;12767:27;12822:2;12813:12;;12605:226;-1:-1;;12605:226;12840:329;;13000:67;13064:2;13059:3;13000:67;;;13100:31;13080:52;;13160:2;13151:12;;12986:183;-1:-1;;12986:183;13178:431;;13356:85;13438:2;13433:3;13356:85;;;13474:34;13454:55;;13543:28;13538:2;13529:12;;13522:50;13600:2;13591:12;;13342:267;-1:-1;;13342:267;13618:399;;13778:67;13842:2;13837:3;13778:67;;;13878:34;13858:55;;13947:32;13942:2;13933:12;;13926:54;14008:2;13999:12;;13764:253;-1:-1;;13764:253;14145:110;14226:23;14243:5;14226:23;;14262:107;14341:22;14357:5;14341:22;;14376:124;14458:36;14488:5;14458:36;;14507:110;14588:23;14605:5;14588:23;;14624:650;;14879:148;15023:3;14879:148;;;14872:155;;15038:75;15109:3;15100:6;15038:75;;;15135:2;15130:3;15126:12;15119:19;;15149:75;15220:3;15211:6;15149:75;;;-1:-1;15246:2;15237:12;;14860:414;-1:-1;;14860:414;15281:372;;15480:148;15624:3;15480:148;;15660:372;;15859:148;16003:3;15859:148;;16039:372;;16238:148;16382:3;16238:148;;16418:213;16536:2;16521:18;;16550:71;16525:9;16594:6;16550:71;;16638:324;16784:2;16769:18;;16798:71;16773:9;16842:6;16798:71;;;16880:72;16948:2;16937:9;16933:18;16924:6;16880:72;;16969:201;17081:2;17066:18;;17095:65;17070:9;17133:6;17095:65;;17177:213;17295:2;17280:18;;17309:71;17284:9;17353:6;17309:71;;17397:771;17655:3;17640:19;;17670:71;17644:9;17714:6;17670:71;;;17752:72;17820:2;17809:9;17805:18;17796:6;17752:72;;;17835;17903:2;17892:9;17888:18;17879:6;17835:72;;;17918;17986:2;17975:9;17971:18;17962:6;17918:72;;;18001:73;18069:3;18058:9;18054:19;18045:6;18001:73;;;18085;18153:3;18142:9;18138:19;18129:6;18085:73;;;17626:542;;;;;;;;;;18175:547;18377:3;18362:19;;18392:71;18366:9;18436:6;18392:71;;;18474:72;18542:2;18531:9;18527:18;18518:6;18474:72;;;18557;18625:2;18614:9;18610:18;18601:6;18557:72;;;18640;18708:2;18697:9;18693:18;18684:6;18640:72;;;18348:374;;;;;;;;18729:547;18931:3;18916:19;;18946:71;18920:9;18990:6;18946:71;;;19028:72;19096:2;19085:9;19081:18;19072:6;19028:72;;;19111;19179:2;19168:9;19164:18;19155:6;19111:72;;;19194;19262:2;19251:9;19247:18;19238:6;19194:72;;19283:539;19481:3;19466:19;;19496:71;19470:9;19540:6;19496:71;;;19578:68;19642:2;19631:9;19627:18;19618:6;19578:68;;19829:293;19963:2;19977:47;;;19948:18;;20038:74;19948:18;20098:6;20038:74;;20437:407;20628:2;20642:47;;;20613:18;;20703:131;20613:18;20703:131;;20851:407;21042:2;21056:47;;;21027:18;;21117:131;21027:18;21117:131;;21265:407;21456:2;21470:47;;;21441:18;;21531:131;21441:18;21531:131;;21679:407;21870:2;21884:47;;;21855:18;;21945:131;21855:18;21945:131;;22093:407;22284:2;22298:47;;;22269:18;;22359:131;22269:18;22359:131;;22507:407;22698:2;22712:47;;;22683:18;;22773:131;22683:18;22773:131;;22921:407;23112:2;23126:47;;;23097:18;;23187:131;23097:18;23187:131;;23335:407;23526:2;23540:47;;;23511:18;;23601:131;23511:18;23601:131;;23749:407;23940:2;23954:47;;;23925:18;;24015:131;23925:18;24015:131;;24163:407;24354:2;24368:47;;;24339:18;;24429:131;24339:18;24429:131;;24577:407;24768:2;24782:47;;;24753:18;;24843:131;24753:18;24843:131;;24991:407;25182:2;25196:47;;;25167:18;;25257:131;25167:18;25257:131;;25405:407;25596:2;25610:47;;;25581:18;;25671:131;25581:18;25671:131;;25819:407;26010:2;26024:47;;;25995:18;;26085:131;25995:18;26085:131;;26233:407;26424:2;26438:47;;;26409:18;;26499:131;26409:18;26499:131;;26647:407;26838:2;26852:47;;;26823:18;;26913:131;26823:18;26913:131;;27061:407;27252:2;27266:47;;;27237:18;;27327:131;27237:18;27327:131;;27695:209;27811:2;27796:18;;27825:69;27800:9;27867:6;27825:69;;27911:316;28053:2;28038:18;;28067:69;28042:9;28109:6;28067:69;;;28147:70;28213:2;28202:9;28198:18;28189:6;28147:70;;28234:205;28348:2;28333:18;;28362:67;28337:9;28402:6;28362:67;;28446:211;28563:2;28548:18;;28577:70;28552:9;28620:6;28577:70;;28664:209;28780:2;28765:18;;28794:69;28769:9;28836:6;28794:69;;28880:320;29024:2;29009:18;;29038:70;29013:9;29081:6;29038:70;;;29119:71;29186:2;29175:9;29171:18;29162:6;29119:71;;29207:118;29291:12;;29262:63;29462:163;29565:19;;;29614:4;29605:14;;29558:67;29634:145;29770:3;29748:31;-1:-1;29748:31;29787:91;;29849:24;29867:5;29849:24;;29885:85;29951:13;29944:21;;29927:43;29977:72;30039:5;30022:27;30056:121;-1:-1;;;;;30118:54;;30101:76;30263:88;30335:10;30324:22;;30307:44;30358:81;30429:4;30418:16;;30401:38;30446:104;-1:-1;;;;;30507:38;;30490:60;30557:106;;30635:23;30652:5;30635:23;;30671:268;30736:1;30743:101;30757:6;30754:1;30751:13;30743:101;;;30824:11;;;30818:18;30805:11;;;30798:39;30779:2;30772:10;30743:101;;;30859:6;30856:1;30853:13;30850:2;;;-1:-1;;30924:1;30906:16;;30899:27;30720:219;31028:97;31116:2;31096:14;-1:-1;;31092:28;;31076:49;31133:117;31202:24;31220:5;31202:24;;;31195:5;31192:35;31182:2;;31241:1;31238;31231:12;31257:117;31326:24;31344:5;31326:24;;31505:115;31573:23;31590:5;31573:23;;31627:113;31694:22;31710:5;31694:22;

Swarm Source

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