ETH Price: $3,833.92 (-0.30%)

Token

AIM (AIM)
 

Overview

Max Total Supply

1,000,000,000 AIM

Holders

110 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,000 AIM

Value
$0.00
0x557d44a5ef6e7ecf681a12a8f73e03cfd961ab1d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AIM is a fully automated intelligent trading pair; a quantitative trading system that uses AI for ETH arbitrage trading.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AIM

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.5.17;
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 AIM {
    /// @notice EIP-20 token name for this token
    string public constant name = "AIM";

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 1_000_000_000e18;

    /// @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 AIM 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, "AIM::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, "AIM::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, "AIM::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "AIM::mint: minting not allowed yet");
        require(dst != address(0), "AIM::mint: cannot transfer to the zero address");

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

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

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

        // move delegates
        _moveDelegates(address(0), delegates[dst], amount);
    }

    /**
     * @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, "AIM::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, "AIM::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), "AIM::permit: invalid signature");
        require(signatory == owner, "AIM::permit: unauthorized");
        require(now <= deadline, "AIM::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, "AIM::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, "AIM::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "AIM::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), "AIM::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "AIM::delegateBySig: invalid nonce");
        require(now <= expiry, "AIM::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, "AIM::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 curreAIMelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, curreAIMelegate, delegatee);

        _moveDelegates(curreAIMelegate, delegatee, delegatorBalance);
    }

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

        balances[src] = sub96(balances[src], amount, "AIM::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "AIM::_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, "AIM::_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, "AIM::_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, "AIM::_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":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"}]

60806040526b033b2e3c9fd0803ce80000006000553480156200002157600080fd5b5060405162002a1e38038062002a1e833981016040819052620000449162000171565b42811015620000705760405162461bcd60e51b8152600401620000679062000273565b60405180910390fd5b600080546001600160a01b0385168083526004602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000de919062000285565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6926200013d926000929116906200024d565b60405180910390a160025550620002ec9050565b80516200015e81620002c7565b92915050565b80516200015e81620002e1565b6000806000606084860312156200018757600080fd5b600062000195868662000151565b9350506020620001a88682870162000151565b9250506040620001bb8682870162000164565b9150509250925092565b620001d081620002b3565b82525050565b620001d0816200029e565b6000620001f060398362000295565b7f41494d3a3a636f6e7374727563746f723a206d696e74696e672063616e206f6e81527f6c7920626567696e206166746572206465706c6f796d656e7400000000000000602082015260400192915050565b620001d081620002b0565b604081016200025d8285620001c5565b6200026c6020830184620001d6565b9392505050565b602080825281016200015e81620001e1565b602081016200015e828462000242565b90815260200190565b60006001600160a01b0382166200015e565b90565b60006200015e8260006200015e826200029e565b620002d2816200029e565b8114620002de57600080fd5b50565b620002d281620002b0565b61272280620002fc6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610353578063e7a324dc14610366578063f1127ed81461036e578063fca3b5aa1461038f576101a9565b8063b4b5ea571461031a578063c3cda5201461032d578063d505accf14610340576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b41146101ae578063a9059cbb14610307576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103a2565b6040516101c391906122ad565b60405180910390f35b6101d46103c1565b6040516101c39190612180565b6101f46101ef3660046119e8565b6103d0565b6040516101c391906121a9565b61020961048f565b6040516101c391906121b7565b610209610495565b6101f461022c3660046118ff565b6104ac565b6102096105f5565b610209610601565b610249610607565b6040516101c391906123e7565b6102696102643660046119e8565b61060c565b005b6101d461027936600461189f565b610827565b610286610842565b6040516101c391906123be565b6102696102a136600461189f565b61084a565b6102866102b436600461189f565b610857565b6102096102c736600461189f565b61086f565b610249610893565b6102e76102e23660046119e8565b610898565b6040516101c39190612403565b61020961030236600461189f565b610aa6565b6101f46103153660046119e8565b610ab8565b6102e761032836600461189f565b610af4565b61026961033b366004611a18565b610b64565b61026961034e36600461194c565b610d49565b6102096103613660046118c5565b611030565b610209611064565b61038161037c366004611a9f565b611070565b6040516101c39291906123cc565b61026961039d36600461189f565b6110a5565b6040518060400160405280600381526020016241494d60e81b81525081565b6001546001600160a01b031681565b6000806000198314156103e6575060001961040b565b610408836040518060600160405280602481526020016124e960249139611138565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047b9085906123f5565b60405180910390a360019150505b92915050565b60005481565b6040516104a19061216a565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602480845291936001600160601b0390911692859261050492889291906124e990830139611138565b9050866001600160a01b0316836001600160a01b03161415801561053157506001600160601b0382811614155b156105db57600061055b83836040518060600160405280603c81526020016126a4603c9139611167565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105d19085906123f5565b60405180910390a3505b6105e68787836111a6565b600193505050505b9392505050565b6040516104a19061215f565b60025481565b601281565b6001546001600160a01b0316331461063f5760405162461bcd60e51b8152600401610636906122ce565b60405180910390fd5b6002544210156106615760405162461bcd60e51b8152600401610636906122ee565b6001600160a01b0382166106875760405162461bcd60e51b8152600401610636906122fe565b610695426301e1338061134c565b60028190555060006106bf8260405180606001604052806021815260200161253c60219139611138565b90506106db6106d4600054600260ff16611371565b60646113ab565b816001600160601b031611156107035760405162461bcd60e51b81526004016106369061235e565b61073961071b600054836001600160601b031661134c565b60405180606001604052806026815260200161267e60269139611138565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602480845261078b9491909116928592909190612602908301396113ed565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107f59085906123f5565b60405180910390a36001600160a01b03808416600090815260056020526040812054610822921683611429565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61085433826115bb565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108b95760405162461bcd60e51b81526004016106369061239e565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108e7576000915050610489565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610963576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610489565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff1683101561099e576000915050610489565b600060001982015b8163ffffffff168163ffffffff161115610a6157600282820363ffffffff160481036109d061185c565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a3c576020015194506104899350505050565b805163ffffffff16871115610a5357819350610a5a565b6001820392505b50506109a6565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b600080610add8360405180606001604052806025815260200161265960259139611138565b9050610aea3385836111a6565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b1f5760006105ee565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610b729061216a565b60408051918290038220828201909152600382526241494d60e81b6020909201919091527fbd94ebbaba873e0aad3dfd12c50d3f5628764fea195d2ce4a2e954973d97e117610bbf611645565b30604051602001610bd3949392919061225d565b6040516020818303038152906040528051906020012090506000604051610bf990612175565b604051908190038120610c14918a908a908a9060200161221f565b60405160208183030381529060405280519060200120905060008282604051602001610c4192919061212e565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c7e9493929190612292565b6020604051602081039080840390855afa158015610ca0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cd35760405162461bcd60e51b81526004016106369061234e565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d125760405162461bcd60e51b81526004016106369061233e565b87421115610d325760405162461bcd60e51b8152600401610636906122be565b610d3c818b6115bb565b505050505b505050505050565b6000600019861415610d5e5750600019610d83565b610d808660405180606001604052806023815260200161259260239139611138565b90505b6000604051610d919061216a565b60408051918290038220828201909152600382526241494d60e81b6020909201919091527fbd94ebbaba873e0aad3dfd12c50d3f5628764fea195d2ce4a2e954973d97e117610dde611645565b30604051602001610df2949392919061225d565b6040516020818303038152906040528051906020012090506000604051610e189061215f565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e5a9391928e928e928e9290918e91016121c5565b60405160208183030381529060405280519060200120905060008282604051602001610e8792919061212e565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610ec49493929190612292565b6020604051602081039080840390855afa158015610ee6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f195760405162461bcd60e51b81526004016106369061238e565b8b6001600160a01b0316816001600160a01b031614610f4a5760405162461bcd60e51b8152600401610636906123ae565b88421115610f6a5760405162461bcd60e51b81526004016106369061236e565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161101a91906123f5565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104a190612175565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110cf5760405162461bcd60e51b81526004016106369061230e565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f69161110e916001600160a01b0390911690849061218e565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b841061115f5760405162461bcd60e51b815260040161063691906122ad565b509192915050565b6000836001600160601b0316836001600160601b03161115829061119e5760405162461bcd60e51b815260040161063691906122ad565b505050900390565b6001600160a01b0383166111cc5760405162461bcd60e51b81526004016106369061237e565b6001600160a01b0382166111f25760405162461bcd60e51b81526004016106369061231e565b6001600160a01b03831660009081526004602090815260409182902054825160608101909352603580845261123d936001600160601b03909216928592919061255d90830139611167565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526112a5949190911692859290919061250d908301396113ed565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113129085906123f5565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082292918216911683611429565b6000828201838110156105ee5760405162461bcd60e51b8152600401610636906122de565b60008261138057506000610489565b8282028284828161138d57fe5b04146105ee5760405162461bcd60e51b81526004016106369061232e565b60006105ee83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611649565b6000838301826001600160601b0380871690831610156114205760405162461bcd60e51b815260040161063691906122ad565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561145457506000816001600160601b0316115b15610822576001600160a01b0383161561150c576001600160a01b03831660009081526007602052604081205463ffffffff1690816114945760006114d3565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006114fa82856040518060600160405280602781526020016125b560279139611167565b905061150886848484611680565b5050505b6001600160a01b03821615610822576001600160a01b03821660009081526007602052604081205463ffffffff169081611547576000611586565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115ad82856040518060600160405280602681526020016125dc602691396113ed565b9050610d4185848484611680565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461163f828483611429565b50505050565b4690565b6000818361166a5760405162461bcd60e51b815260040161063691906122ad565b50600083858161167657fe5b0495945050505050565b60006116a44360405180606001604052806033815260200161262660339139611835565b905060008463ffffffff161180156116ed57506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561174c576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556117eb565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611826929190612411565b60405180910390a25050505050565b600081600160201b841061115f5760405162461bcd60e51b815260040161063691906122ad565b604080518082019091526000808252602082015290565b8035610489816124b9565b8035610489816124cd565b8035610489816124d6565b8035610489816124df565b6000602082840312156118b157600080fd5b60006118bd8484611873565b949350505050565b600080604083850312156118d857600080fd5b60006118e48585611873565b92505060206118f585828601611873565b9150509250929050565b60008060006060848603121561191457600080fd5b60006119208686611873565b935050602061193186828701611873565b92505060406119428682870161187e565b9150509250925092565b600080600080600080600060e0888a03121561196757600080fd5b60006119738a8a611873565b97505060206119848a828b01611873565b96505060406119958a828b0161187e565b95505060606119a68a828b0161187e565b94505060806119b78a828b01611894565b93505060a06119c88a828b0161187e565b92505060c06119d98a828b0161187e565b91505092959891949750929550565b600080604083850312156119fb57600080fd5b6000611a078585611873565b92505060206118f58582860161187e565b60008060008060008060c08789031215611a3157600080fd5b6000611a3d8989611873565b9650506020611a4e89828a0161187e565b9550506040611a5f89828a0161187e565b9450506060611a7089828a01611894565b9350506080611a8189828a0161187e565b92505060a0611a9289828a0161187e565b9150509295509295509295565b60008060408385031215611ab257600080fd5b6000611abe8585611873565b92505060206118f585828601611889565b611ad88161243e565b82525050565b611ad881612449565b611ad88161244e565b611ad8611afc8261244e565b61244e565b6000611b0c8261242c565b611b168185612430565b9350611b26818560208601612483565b611b2f816124af565b9093019392505050565b6000611b46602583612430565b7f41494d3a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b6000611b8d602383612430565b7f41494d3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b6000611bd2600283612439565b61190160f01b815260020192915050565b6000611bf0601b83612430565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611c29602283612430565b7f41494d3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000611c6d602e83612430565b7f41494d3a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611cbd605283612439565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611d37603d83612430565b7f41494d3a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611d96604383612439565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611e01603983612430565b7f41494d3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b6000611e60602183612430565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611ea3602183612430565b7f41494d3a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611ee6602583612430565b7f41494d3a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611f2d601c83612430565b7f41494d3a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b6000611f66601e83612430565b7f41494d3a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b6000611f9f603b83612430565b7f41494d3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611ffe601e83612430565b7f41494d3a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000612037602683612430565b7f41494d3a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b600061207f603a83612439565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006120de601983612430565b7f41494d3a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b611ad88161245d565b611ad881612466565b611ad881612478565b611ad88161246c565b600061213982611bc5565b91506121458285611af0565b6020820191506121558284611af0565b5060200192915050565b600061048982611cb0565b600061048982611d89565b600061048982612072565b602081016104898284611acf565b6040810161219c8285611acf565b6105ee6020830184611acf565b602081016104898284611ade565b602081016104898284611ae7565b60c081016121d38289611ae7565b6121e06020830188611acf565b6121ed6040830187611acf565b6121fa6060830186611ae7565b6122076080830185611ae7565b61221460a0830184611ae7565b979650505050505050565b6080810161222d8287611ae7565b61223a6020830186611acf565b6122476040830185611ae7565b6122546060830184611ae7565b95945050505050565b6080810161226b8287611ae7565b6122786020830186611ae7565b6122856040830185611ae7565b6122546060830184611acf565b608081016122a08287611ae7565b61223a6020830186612113565b602080825281016105ee8184611b01565b6020808252810161048981611b39565b6020808252810161048981611b80565b6020808252810161048981611be3565b6020808252810161048981611c1c565b6020808252810161048981611c60565b6020808252810161048981611d2a565b6020808252810161048981611df4565b6020808252810161048981611e53565b6020808252810161048981611e96565b6020808252810161048981611ed9565b6020808252810161048981611f20565b6020808252810161048981611f59565b6020808252810161048981611f92565b6020808252810161048981611ff1565b602080825281016104898161202a565b60208082528101610489816120d1565b60208101610489828461210a565b604081016123da828561210a565b6105ee6020830184612125565b602081016104898284612113565b60208101610489828461211c565b602081016104898284612125565b6040810161241f828561211c565b6105ee602083018461211c565b5190565b90815260200190565b919050565b600061048982612451565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104898261246c565b60005b8381101561249e578181015183820152602001612486565b8381111561163f5750506000910152565b601f01601f191690565b6124c28161243e565b811461085457600080fd5b6124c28161244e565b6124c28161245d565b6124c28161246656fe41494d3a3a617070726f76653a20616d6f756e742065786365656473203936206269747341494d3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777341494d3a3a6d696e743a20616d6f756e742065786365656473203936206269747341494d3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636541494d3a3a7065726d69743a20616d6f756e742065786365656473203936206269747341494d3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777341494d3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777341494d3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777341494d3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747341494d3a3a7472616e736665723a20616d6f756e742065786365656473203936206269747341494d3a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747341494d3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365a365627a7a723158203ffa6ac9b938443b767f75f1376f524b26e12993feca30387a0c5d070cb8a5b16c6578706572696d656e74616cf564736f6c63430005110040000000000000000000000000c14c69946db1ef4285837b45668484767b5d8844000000000000000000000000498b2d2ab94b53032edb2e50c4732278d646afe2000000000000000000000000000000000000000000000000000000005fd4e958

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636fcfff45116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610353578063e7a324dc14610366578063f1127ed81461036e578063fca3b5aa1461038f576101a9565b8063b4b5ea571461031a578063c3cda5201461032d578063d505accf14610340576101a9565b8063782d6fe1116100d3578063782d6fe1146102d45780637ecebe00146102f457806395d89b41146101ae578063a9059cbb14610307576101a9565b80636fcfff45146102a657806370a08231146102b957806376c71ca1146102cc576101a9565b806330adf81f1161016657806340c10f191161014057806340c10f1914610256578063587cde1e1461026b5780635c11d62f1461027e5780635c19a95c14610293576101a9565b806330adf81f1461023157806330b36cef14610239578063313ce56714610241576101a9565b806306fdde03146101ae57806307546172146101cc578063095ea7b3146101e157806318160ddd1461020157806320606b701461021657806323b872dd1461021e575b600080fd5b6101b66103a2565b6040516101c391906122ad565b60405180910390f35b6101d46103c1565b6040516101c39190612180565b6101f46101ef3660046119e8565b6103d0565b6040516101c391906121a9565b61020961048f565b6040516101c391906121b7565b610209610495565b6101f461022c3660046118ff565b6104ac565b6102096105f5565b610209610601565b610249610607565b6040516101c391906123e7565b6102696102643660046119e8565b61060c565b005b6101d461027936600461189f565b610827565b610286610842565b6040516101c391906123be565b6102696102a136600461189f565b61084a565b6102866102b436600461189f565b610857565b6102096102c736600461189f565b61086f565b610249610893565b6102e76102e23660046119e8565b610898565b6040516101c39190612403565b61020961030236600461189f565b610aa6565b6101f46103153660046119e8565b610ab8565b6102e761032836600461189f565b610af4565b61026961033b366004611a18565b610b64565b61026961034e36600461194c565b610d49565b6102096103613660046118c5565b611030565b610209611064565b61038161037c366004611a9f565b611070565b6040516101c39291906123cc565b61026961039d36600461189f565b6110a5565b6040518060400160405280600381526020016241494d60e81b81525081565b6001546001600160a01b031681565b6000806000198314156103e6575060001961040b565b610408836040518060600160405280602481526020016124e960249139611138565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047b9085906123f5565b60405180910390a360019150505b92915050565b60005481565b6040516104a19061216a565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602480845291936001600160601b0390911692859261050492889291906124e990830139611138565b9050866001600160a01b0316836001600160a01b03161415801561053157506001600160601b0382811614155b156105db57600061055b83836040518060600160405280603c81526020016126a4603c9139611167565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105d19085906123f5565b60405180910390a3505b6105e68787836111a6565b600193505050505b9392505050565b6040516104a19061215f565b60025481565b601281565b6001546001600160a01b0316331461063f5760405162461bcd60e51b8152600401610636906122ce565b60405180910390fd5b6002544210156106615760405162461bcd60e51b8152600401610636906122ee565b6001600160a01b0382166106875760405162461bcd60e51b8152600401610636906122fe565b610695426301e1338061134c565b60028190555060006106bf8260405180606001604052806021815260200161253c60219139611138565b90506106db6106d4600054600260ff16611371565b60646113ab565b816001600160601b031611156107035760405162461bcd60e51b81526004016106369061235e565b61073961071b600054836001600160601b031661134c565b60405180606001604052806026815260200161267e60269139611138565b6001600160601b0390811660009081556001600160a01b03851681526004602090815260409182902054825160608101909352602480845261078b9491909116928592909190612602908301396113ed565b6001600160a01b03841660008181526004602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107f59085906123f5565b60405180910390a36001600160a01b03808416600090815260056020526040812054610822921683611429565b505050565b6005602052600090815260409020546001600160a01b031681565b6301e1338081565b61085433826115bb565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b600281565b60004382106108b95760405162461bcd60e51b81526004016106369061239e565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108e7576000915050610489565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610963576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610489565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff1683101561099e576000915050610489565b600060001982015b8163ffffffff168163ffffffff161115610a6157600282820363ffffffff160481036109d061185c565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a3c576020015194506104899350505050565b805163ffffffff16871115610a5357819350610a5a565b6001820392505b50506109a6565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b600080610add8360405180606001604052806025815260200161265960259139611138565b9050610aea3385836111a6565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b1f5760006105ee565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610b729061216a565b60408051918290038220828201909152600382526241494d60e81b6020909201919091527fbd94ebbaba873e0aad3dfd12c50d3f5628764fea195d2ce4a2e954973d97e117610bbf611645565b30604051602001610bd3949392919061225d565b6040516020818303038152906040528051906020012090506000604051610bf990612175565b604051908190038120610c14918a908a908a9060200161221f565b60405160208183030381529060405280519060200120905060008282604051602001610c4192919061212e565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c7e9493929190612292565b6020604051602081039080840390855afa158015610ca0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cd35760405162461bcd60e51b81526004016106369061234e565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d125760405162461bcd60e51b81526004016106369061233e565b87421115610d325760405162461bcd60e51b8152600401610636906122be565b610d3c818b6115bb565b505050505b505050505050565b6000600019861415610d5e5750600019610d83565b610d808660405180606001604052806023815260200161259260239139611138565b90505b6000604051610d919061216a565b60408051918290038220828201909152600382526241494d60e81b6020909201919091527fbd94ebbaba873e0aad3dfd12c50d3f5628764fea195d2ce4a2e954973d97e117610dde611645565b30604051602001610df2949392919061225d565b6040516020818303038152906040528051906020012090506000604051610e189061215f565b604080519182900382206001600160a01b038d16600090815260086020908152929020805460018101909155610e5a9391928e928e928e9290918e91016121c5565b60405160208183030381529060405280519060200120905060008282604051602001610e8792919061212e565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610ec49493929190612292565b6020604051602081039080840390855afa158015610ee6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f195760405162461bcd60e51b81526004016106369061238e565b8b6001600160a01b0316816001600160a01b031614610f4a5760405162461bcd60e51b8152600401610636906123ae565b88421115610f6a5760405162461bcd60e51b81526004016106369061236e565b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161101a91906123f5565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104a190612175565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110cf5760405162461bcd60e51b81526004016106369061230e565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f69161110e916001600160a01b0390911690849061218e565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b841061115f5760405162461bcd60e51b815260040161063691906122ad565b509192915050565b6000836001600160601b0316836001600160601b03161115829061119e5760405162461bcd60e51b815260040161063691906122ad565b505050900390565b6001600160a01b0383166111cc5760405162461bcd60e51b81526004016106369061237e565b6001600160a01b0382166111f25760405162461bcd60e51b81526004016106369061231e565b6001600160a01b03831660009081526004602090815260409182902054825160608101909352603580845261123d936001600160601b03909216928592919061255d90830139611167565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602f8084526112a5949190911692859290919061250d908301396113ed565b6001600160a01b038381166000818152600460205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906113129085906123f5565b60405180910390a36001600160a01b0380841660009081526005602052604080822054858416835291205461082292918216911683611429565b6000828201838110156105ee5760405162461bcd60e51b8152600401610636906122de565b60008261138057506000610489565b8282028284828161138d57fe5b04146105ee5760405162461bcd60e51b81526004016106369061232e565b60006105ee83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611649565b6000838301826001600160601b0380871690831610156114205760405162461bcd60e51b815260040161063691906122ad565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561145457506000816001600160601b0316115b15610822576001600160a01b0383161561150c576001600160a01b03831660009081526007602052604081205463ffffffff1690816114945760006114d3565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006114fa82856040518060600160405280602781526020016125b560279139611167565b905061150886848484611680565b5050505b6001600160a01b03821615610822576001600160a01b03821660009081526007602052604081205463ffffffff169081611547576000611586565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115ad82856040518060600160405280602681526020016125dc602691396113ed565b9050610d4185848484611680565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461163f828483611429565b50505050565b4690565b6000818361166a5760405162461bcd60e51b815260040161063691906122ad565b50600083858161167657fe5b0495945050505050565b60006116a44360405180606001604052806033815260200161262660339139611835565b905060008463ffffffff161180156116ed57506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561174c576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b038516021790556117eb565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611826929190612411565b60405180910390a25050505050565b600081600160201b841061115f5760405162461bcd60e51b815260040161063691906122ad565b604080518082019091526000808252602082015290565b8035610489816124b9565b8035610489816124cd565b8035610489816124d6565b8035610489816124df565b6000602082840312156118b157600080fd5b60006118bd8484611873565b949350505050565b600080604083850312156118d857600080fd5b60006118e48585611873565b92505060206118f585828601611873565b9150509250929050565b60008060006060848603121561191457600080fd5b60006119208686611873565b935050602061193186828701611873565b92505060406119428682870161187e565b9150509250925092565b600080600080600080600060e0888a03121561196757600080fd5b60006119738a8a611873565b97505060206119848a828b01611873565b96505060406119958a828b0161187e565b95505060606119a68a828b0161187e565b94505060806119b78a828b01611894565b93505060a06119c88a828b0161187e565b92505060c06119d98a828b0161187e565b91505092959891949750929550565b600080604083850312156119fb57600080fd5b6000611a078585611873565b92505060206118f58582860161187e565b60008060008060008060c08789031215611a3157600080fd5b6000611a3d8989611873565b9650506020611a4e89828a0161187e565b9550506040611a5f89828a0161187e565b9450506060611a7089828a01611894565b9350506080611a8189828a0161187e565b92505060a0611a9289828a0161187e565b9150509295509295509295565b60008060408385031215611ab257600080fd5b6000611abe8585611873565b92505060206118f585828601611889565b611ad88161243e565b82525050565b611ad881612449565b611ad88161244e565b611ad8611afc8261244e565b61244e565b6000611b0c8261242c565b611b168185612430565b9350611b26818560208601612483565b611b2f816124af565b9093019392505050565b6000611b46602583612430565b7f41494d3a3a64656c656761746542795369673a207369676e61747572652065788152641c1a5c995960da1b602082015260400192915050565b6000611b8d602383612430565b7f41494d3a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d8152621a5b9d60ea1b602082015260400192915050565b6000611bd2600283612439565b61190160f01b815260020192915050565b6000611bf0601b83612430565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611c29602283612430565b7f41494d3a3a6d696e743a206d696e74696e67206e6f7420616c6c6f7765642079815261195d60f21b602082015260400192915050565b6000611c6d602e83612430565b7f41494d3a3a6d696e743a2063616e6e6f74207472616e7366657220746f20746881526d65207a65726f206164647265737360901b602082015260400192915050565b6000611cbd605283612439565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63656020820152712c75696e7432353620646561646c696e652960701b604082015260520192915050565b6000611d37603d83612430565b7f41494d3a3a7365744d696e7465723a206f6e6c7920746865206d696e7465722081527f63616e206368616e676520746865206d696e7465722061646472657373000000602082015260400192915050565b6000611d96604383612439565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611e01603983612430565b7f41494d3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e7366657220746f20746865207a65726f206164647265737300000000000000602082015260400192915050565b6000611e60602183612430565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611ea3602183612430565b7f41494d3a3a64656c656761746542795369673a20696e76616c6964206e6f6e638152606560f81b602082015260400192915050565b6000611ee6602583612430565b7f41494d3a3a64656c656761746542795369673a20696e76616c6964207369676e815264617475726560d81b602082015260400192915050565b6000611f2d601c83612430565b7f41494d3a3a6d696e743a206578636565646564206d696e742063617000000000815260200192915050565b6000611f66601e83612430565b7f41494d3a3a7065726d69743a207369676e617475726520657870697265640000815260200192915050565b6000611f9f603b83612430565b7f41494d3a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726181527f6e736665722066726f6d20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611ffe601e83612430565b7f41494d3a3a7065726d69743a20696e76616c6964207369676e61747572650000815260200192915050565b6000612037602683612430565b7f41494d3a3a6765745072696f72566f7465733a206e6f742079657420646574658152651c9b5a5b995960d21b602082015260400192915050565b600061207f603a83612439565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b60006120de601983612430565b7f41494d3a3a7065726d69743a20756e617574686f72697a656400000000000000815260200192915050565b611ad88161245d565b611ad881612466565b611ad881612478565b611ad88161246c565b600061213982611bc5565b91506121458285611af0565b6020820191506121558284611af0565b5060200192915050565b600061048982611cb0565b600061048982611d89565b600061048982612072565b602081016104898284611acf565b6040810161219c8285611acf565b6105ee6020830184611acf565b602081016104898284611ade565b602081016104898284611ae7565b60c081016121d38289611ae7565b6121e06020830188611acf565b6121ed6040830187611acf565b6121fa6060830186611ae7565b6122076080830185611ae7565b61221460a0830184611ae7565b979650505050505050565b6080810161222d8287611ae7565b61223a6020830186611acf565b6122476040830185611ae7565b6122546060830184611ae7565b95945050505050565b6080810161226b8287611ae7565b6122786020830186611ae7565b6122856040830185611ae7565b6122546060830184611acf565b608081016122a08287611ae7565b61223a6020830186612113565b602080825281016105ee8184611b01565b6020808252810161048981611b39565b6020808252810161048981611b80565b6020808252810161048981611be3565b6020808252810161048981611c1c565b6020808252810161048981611c60565b6020808252810161048981611d2a565b6020808252810161048981611df4565b6020808252810161048981611e53565b6020808252810161048981611e96565b6020808252810161048981611ed9565b6020808252810161048981611f20565b6020808252810161048981611f59565b6020808252810161048981611f92565b6020808252810161048981611ff1565b602080825281016104898161202a565b60208082528101610489816120d1565b60208101610489828461210a565b604081016123da828561210a565b6105ee6020830184612125565b602081016104898284612113565b60208101610489828461211c565b602081016104898284612125565b6040810161241f828561211c565b6105ee602083018461211c565b5190565b90815260200190565b919050565b600061048982612451565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104898261246c565b60005b8381101561249e578181015183820152602001612486565b8381111561163f5750506000910152565b601f01601f191690565b6124c28161243e565b811461085457600080fd5b6124c28161244e565b6124c28161245d565b6124c28161246656fe41494d3a3a617070726f76653a20616d6f756e742065786365656473203936206269747341494d3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777341494d3a3a6d696e743a20616d6f756e742065786365656473203936206269747341494d3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636541494d3a3a7065726d69743a20616d6f756e742065786365656473203936206269747341494d3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777341494d3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777341494d3a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f777341494d3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747341494d3a3a7472616e736665723a20616d6f756e742065786365656473203936206269747341494d3a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747341494d3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365a365627a7a723158203ffa6ac9b938443b767f75f1376f524b26e12993feca30387a0c5d070cb8a5b16c6578706572696d656e74616cf564736f6c63430005110040

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

000000000000000000000000c14c69946db1ef4285837b45668484767b5d8844000000000000000000000000498b2d2ab94b53032edb2e50c4732278d646afe2000000000000000000000000000000000000000000000000000000005fd4e958

-----Decoded View---------------
Arg [0] : account (address): 0xc14c69946DB1eF4285837B45668484767B5d8844
Arg [1] : minter_ (address): 0x498B2D2AB94b53032EDB2E50c4732278D646aFe2
Arg [2] : mintingAllowedAfter_ (uint256): 1607788888

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c14c69946db1ef4285837b45668484767b5d8844
Arg [1] : 000000000000000000000000498b2d2ab94b53032edb2e50c4732278d646afe2
Arg [2] : 000000000000000000000000000000000000000000000000000000005fd4e958


Deployed Bytecode Sourcemap

6634:17131:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6634:17131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6704:35;;;:::i;:::-;;;;;;;;;;;;;;;;7101:21;;;:::i;:::-;;;;;;;;13021:418;;;;;;;;;:::i;:::-;;;;;;;;6999:42;;;:::i;:::-;;;;;;;;8330:122;;;:::i;16101:670::-;;;;;;;;;:::i;8753:137::-;;;:::i;7192:31::-;;;:::i;6900:35::-;;;:::i;:::-;;;;;;;;11045:1058;;;;;;;;;:::i;:::-;;7780:45;;;;;;;;;:::i;7276:61::-;;;:::i;:::-;;;;;;;;16919:102;;;;;;;;;:::i;8208:49::-;;;;;;;;;:::i;15182:108::-;;;;;;;;;:::i;7432:33::-;;;:::i;19095:1217::-;;;;;;;;;:::i;:::-;;;;;;;;8971:39;;;;;;;;;:::i;15554:237::-;;;;;;;;;:::i;18442:222::-;;;;;;;;;:::i;17455:786::-;;;;;;;;;:::i;13929:1050::-;;;;;;;;;:::i;12407:136::-;;;;;;;;;:::i;8546:117::-;;;:::i;8069:70::-;;;;;;;;;:::i;:::-;;;;;;;;;10639:231;;;;;;;;;:::i;6704:35::-;;;;;;;;;;;;;;-1:-1:-1;;;6704:35:0;;;;:::o;7101:21::-;;;-1:-1:-1;;;;;7101:21:0;;:::o;13021:418::-;13089:4;13106:13;-1:-1:-1;;13134:9:0;:21;13130:172;;;-1:-1:-1;;;13130:172:0;;;13233:57;13240:9;13233:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;13224:66;;13130:172;13325:10;13314:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;13314:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;13314:40:0;-1:-1:-1;;;;;13314:40:0;;;;;13372:37;;13314:31;;13325:10;13372:37;;;;13314:40;;13372:37;;;;;;;;;;13427:4;13420:11;;;13021:418;;;;;:::o;6999:42::-;;;;:::o;8330:122::-;8372:80;;;;;;;;;;;;;;8330:122;:::o;16101:670::-;-1:-1:-1;;;;;16265:15:0;;16183:4;16265:15;;;:10;:15;;;;;;;;16218:10;16265:24;;;;;;;;;;16316:57;;;;;;;;;;;;16218:10;;-1:-1:-1;;;;;16265:24:0;;;;16183:4;;16316:57;;16323:9;;16316:57;;;;;;;:6;:57::i;:::-;16300:73;;16401:3;-1:-1:-1;;;;;16390:14:0;:7;-1:-1:-1;;;;;16390:14:0;;;:48;;;;-1:-1:-1;;;;;;16408:30:0;;;;;16390:48;16386:310;;;16455:19;16477:95;16483:16;16501:6;16477:95;;;;;;;;;;;;;;;;;:5;:95::i;:::-;-1:-1:-1;;;;;16587:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;16587:39:0;-1:-1:-1;;;;;16587:39:0;;;;;16648:36;16587:39;;-1:-1:-1;16587:24:0;;16648:36;;;;16587:39;;16648:36;;;;;;;;;;16386:310;;16708:33;16724:3;16729;16734:6;16708:15;:33::i;:::-;16759:4;16752:11;;;;;16101:670;;;;;;:::o;8753:137::-;8795:95;;;;;;7192:31;;;;:::o;6900:35::-;6933:2;6900:35;:::o;11045:1058::-;11130:6;;-1:-1:-1;;;;;11130:6:0;11116:10;:20;11108:68;;;;-1:-1:-1;;;11108:68:0;;;;;;;;;;;;;;;;;11214:19;;11195:15;:38;;11187:85;;;;-1:-1:-1;;;11187:85:0;;;;;;;;;-1:-1:-1;;;;;11291:17:0;;11283:76;;;;-1:-1:-1;;;11283:76:0;;;;;;;;;11422:54;11435:15;7325:12;11422;:54::i;:::-;11400:19;:76;;;;11517:13;11533:54;11540:9;11533:54;;;;;;;;;;;;;;;;;:6;:54::i;:::-;11517:70;;11616:53;11629:34;11642:11;;7464:1;11629:34;;:12;:34::i;:::-;11665:3;11616:12;:53::i;:::-;11606:6;-1:-1:-1;;;;;11606:63:0;;;11598:104;;;;-1:-1:-1;;;11598:104:0;;;;;;;;;11727:83;11734:33;11747:11;;11760:6;-1:-1:-1;;;;;11734:33:0;:12;:33::i;:::-;11727:83;;;;;;;;;;;;;;;;;:6;:83::i;:::-;-1:-1:-1;;;;;11713:97:0;;;:11;:97;;;-1:-1:-1;;;;;11894:13:0;;;;:8;:13;;;;;;;;;;11888:68;;;;;;;;;;;;;;11894:13;;;;;11909:6;;11888:68;;;;;;;;:5;:68::i;:::-;-1:-1:-1;;;;;11872:13:0;;;;;;:8;:13;;;;;;:84;;-1:-1:-1;;;;;;11872:84:0;-1:-1:-1;;;;;11872:84:0;;;;;;;;;;;11972:33;;11872:13;;;11972:33;;;;11998:6;;11972:33;;;;;;;;;;-1:-1:-1;;;;;12072:14:0;;;12068:1;12072:14;;;:9;:14;;;;;;12045:50;;12072:14;12088:6;12045:14;:50::i;:::-;11045:1058;;;:::o;7780:45::-;;;;;;;;;;;;-1:-1:-1;;;;;7780:45:0;;:::o;7276:61::-;7325:12;7276:61;:::o;16919:102::-;16981:32;16991:10;17003:9;16981;:32::i;:::-;16919:102;:::o;8208:49::-;;;;;;;;;;;;;;;:::o;15182:108::-;-1:-1:-1;;;;;15265:17:0;15241:4;15265:17;;;:8;:17;;;;;;-1:-1:-1;;;;;15265:17:0;;15182:108::o;7432:33::-;7464:1;7432:33;:::o;19095:1217::-;19174:6;19215:12;19201:11;:26;19193:77;;;;-1:-1:-1;;;19193:77:0;;;;;;;;;-1:-1:-1;;;;;19305:23:0;;19283:19;19305:23;;;:14;:23;;;;;;;;19343:17;19339:58;;19384:1;19377:8;;;;;19339:58;-1:-1:-1;;;;;19457:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;19478:16:0;;19457:38;;;;;;;;;:48;;:63;-1:-1:-1;19453:147:0;;-1:-1:-1;;;;;19544:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;19565:16:0;;;;19544:38;;;;;;;;:44;-1:-1:-1;;;19544:44:0;;-1:-1:-1;;;;;19544:44:0;;-1:-1:-1;19537:51:0;;19453:147;-1:-1:-1;;;;;19661:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;19657:88:0;;;19732:1;19725:8;;;;;19657:88;19757:12;-1:-1:-1;;19799:16:0;;19826:428;19841:5;19833:13;;:5;:13;;;19826:428;;;19905:1;19888:13;;;19887:19;;;19879:27;;19948:20;;:::i;:::-;-1:-1:-1;;;;;;19971:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;19948:51;;;;;;;;;;;;;;;-1:-1:-1;;;19948:51:0;;;-1:-1:-1;;;;;19948:51:0;;;;;;;;;20018:27;;20014:229;;;20073:8;;;;-1:-1:-1;20066:15:0;;-1:-1:-1;;;;20066:15:0;20014:229;20107:12;;:26;;;-1:-1:-1;20103:140:0;;;20162:6;20154:14;;20103:140;;;20226:1;20217:6;:10;20209:18;;20103:140;19826:428;;;;;-1:-1:-1;;;;;;20271:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;20271:33:0;;;;;-1:-1:-1;;19095:1217:0;;;;:::o;8971:39::-;;;;;;;;;;;;;:::o;15554:237::-;15619:4;15636:13;15652:58;15659:9;15652:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;15636:74;;15721:40;15737:10;15749:3;15754:6;15721:15;:40::i;:::-;-1:-1:-1;15779:4:0;;15554:237;-1:-1:-1;;;15554:237:0:o;18442:222::-;-1:-1:-1;;;;;18548:23:0;;18507:6;18548:23;;;:14;:23;;;;;;;;18589:16;:67;;18655:1;18589:67;;;-1:-1:-1;;;;;18608:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;18629:16:0;;18608:38;;;;;;;;;:44;-1:-1:-1;;;18608:44:0;;-1:-1:-1;;;;;18608:44:0;18582:74;18442:222;-1:-1:-1;;;18442:222:0:o;17455:786::-;17571:23;8372:80;;;;;;;;;;;;;;;;17651:4;;;;;;;;;-1:-1:-1;;;17651:4:0;;;;;;;;17635:22;17659:12;:10;:12::i;:::-;17681:4;17607:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17607:80:0;;;17597:91;;;;;;17571:117;;17699:18;8592:71;;;;;;;;;;;;;;;17730:57;;17762:9;;17773:5;;17780:6;;17730:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17730:57:0;;;17720:68;;;;;;17699:89;;17799:14;17855:15;17872:10;17826:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17826:57:0;;;17816:68;;;;;;17799:85;;17895:17;17915:26;17925:6;17933:1;17936;17939;17915:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;17915:26:0;;-1:-1:-1;;17915:26:0;;;-1:-1:-1;;;;;;;17960:23:0;;17952:73;;;;-1:-1:-1;;;17952:73:0;;;;;;;;;-1:-1:-1;;;;;18053:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;18044:28;;18036:74;;;;-1:-1:-1;;;18036:74:0;;;;;;;;;18136:6;18129:3;:13;;18121:63;;;;-1:-1:-1;;;18121:63:0;;;;;;;;;18202:31;18212:9;18223;18202;:31::i;:::-;18195:38;;;;17455:786;;;;;;;:::o;13929:1050::-;14059:13;-1:-1:-1;;14087:9:0;:21;14083:171;;;-1:-1:-1;;;14083:171:0;;;14186:56;14193:9;14186:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;14177:65;;14083:171;14266:23;8372:80;;;;;;;;;;;;;;;;14346:4;;;;;;;;;-1:-1:-1;;;14346:4:0;;;;;;;;14330:22;14354:12;:10;:12::i;:::-;14376:4;14302:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14302:80:0;;;14292:91;;;;;;14266:117;;14394:18;8795:95;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14480:13:0;;;;;;:6;:13;;;;;;;:15;;;;;;;;14425:81;;8795:95;;14453:5;;14460:7;;14469:9;;14480:15;;14497:8;;14425:81;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14425:81:0;;;14415:92;;;;;;14394:113;;14518:14;14574:15;14591:10;14545:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14545:57:0;;;14535:68;;;;;;14518:85;;14614:17;14634:26;14644:6;14652:1;14655;14658;14634:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;14634:26:0;;-1:-1:-1;;14634:26:0;;;-1:-1:-1;;;;;;;14679:23:0;;14671:66;;;;-1:-1:-1;;;14671:66:0;;;;;;;;;14769:5;-1:-1:-1;;;;;14756:18:0;:9;-1:-1:-1;;;;;14756:18:0;;14748:56;;;;-1:-1:-1;;;14748:56:0;;;;;;;;;14830:8;14823:3;:15;;14815:58;;;;-1:-1:-1;;;14815:58:0;;;;;;;;;14915:6;14886:10;:17;14897:5;-1:-1:-1;;;;;14886:17:0;-1:-1:-1;;;;;14886:17:0;;;;;;;;;;;;:26;14904:7;-1:-1:-1;;;;;14886:26:0;-1:-1:-1;;;;;14886:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;14886:35:0;;;;;-1:-1:-1;;;;;14886:35:0;;;;;;14955:7;-1:-1:-1;;;;;14939:32:0;14948:5;-1:-1:-1;;;;;14939:32:0;;14964:6;14939:32;;;;;;;;;;;;;;;13929:1050;;;;;;;;;;;;:::o;12407:136::-;-1:-1:-1;;;;;12507:19:0;;;12483:4;12507:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;12507:28:0;;12407:136::o;8546:117::-;8592:71;;;;;;8069:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8069:70:0;;-1:-1:-1;;;;;8069:70:0;;:::o;10639:231::-;10717:6;;-1:-1:-1;;;;;10717:6:0;10703:10;:20;10695:94;;;;-1:-1:-1;;;10695:94:0;;;;;;;;;10819:6;;10805:30;;;;;;-1:-1:-1;;;;;10819:6:0;;;;10827:7;;10805:30;;;;;;;;;;10846:6;:16;;-1:-1:-1;;;;;;10846:16:0;-1:-1:-1;;;;;10846:16:0;;;;;;;;;;10639:231::o;23071:161::-;23146:6;23184:12;-1:-1:-1;;;23173:9:0;;23165:32;;;;-1:-1:-1;;;23165:32:0;;;;;;;;;;-1:-1:-1;23222:1:0;;23071:161;-1:-1:-1;;23071:161:0:o;23436:165::-;23522:6;23554:1;-1:-1:-1;;;;;23549:6:0;:1;-1:-1:-1;;;;;23549:6:0;;;23557:12;23541:29;;;;;-1:-1:-1;;;23541:29:0;;;;;;;;;;-1:-1:-1;;;23588:5:0;;;23436:165::o;20703:610::-;-1:-1:-1;;;;;20797:17:0;;20789:89;;;;-1:-1:-1;;;20789:89:0;;;;;;;;;-1:-1:-1;;;;;20897:17:0;;20889:87;;;;-1:-1:-1;;;20889:87:0;;;;;;;;;-1:-1:-1;;;;;21011:13:0;;;;;;:8;:13;;;;;;;;;;21005:85;;;;;;;;;;;;;;-1:-1:-1;;;;;21011:13:0;;;;21026:6;;21005:85;;;;;;;:5;:85::i;:::-;-1:-1:-1;;;;;20989:13:0;;;;;;;:8;:13;;;;;;;;:101;;-1:-1:-1;;;;;;20989:101:0;-1:-1:-1;;;;;20989:101:0;;;;;;21123:13;;;;;;;;;;21117:79;;;;;;;;;;;;;;21123:13;;;;;21138:6;;21117:79;;;;;;;;:5;:79::i;:::-;-1:-1:-1;;;;;21101:13:0;;;;;;;:8;:13;;;;;;;:95;;-1:-1:-1;;;;;;21101:95:0;-1:-1:-1;;;;;21101:95:0;;;;;;;;;;;21212:26;;;;;;;;;;21231:6;;21212:26;;;;;;;;;;-1:-1:-1;;;;;21266:14:0;;;;;;;:9;:14;;;;;;;21282;;;;;;;;21251:54;;21266:14;;;;21282;21298:6;21251:14;:54::i;1020:181::-;1078:7;1110:5;;;1134:6;;;;1126:46;;;;-1:-1:-1;;;1126:46:0;;;;;;;;2774:471;2832:7;3077:6;3073:47;;-1:-1:-1;3107:1:0;3100:8;;3073:47;3144:5;;;3148:1;3144;:5;:1;3168:5;;;;;:10;3160:56;;;;-1:-1:-1;;;3160:56:0;;;;;;;;4432:132;4490:7;4517:39;4521:1;4524;4517:39;;;;;;;;;;;;;;;;;:3;:39::i;23240:188::-;23326:6;23356:5;;;23388:12;-1:-1:-1;;;;;23380:6:0;;;;;;;;23372:29;;;;-1:-1:-1;;;23372:29:0;;;;;;;;;;-1:-1:-1;23419:1:0;23240:188;-1:-1:-1;;;;23240:188:0:o;21321:937::-;21426:6;-1:-1:-1;;;;;21416:16:0;:6;-1:-1:-1;;;;;21416:16:0;;;:30;;;;;21445:1;21436:6;-1:-1:-1;;;;;21436:10:0;;21416:30;21412:839;;;-1:-1:-1;;;;;21467:20:0;;;21463:381;;-1:-1:-1;;;;;21527:22:0;;21508:16;21527:22;;;:14;:22;;;;;;;;;21587:13;:60;;21646:1;21587:60;;;-1:-1:-1;;;;;21603:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;21623:13:0;;21603:34;;;;;;;;;:40;-1:-1:-1;;;21603:40:0;;-1:-1:-1;;;;;21603:40:0;21587:60;21568:79;;21666:16;21685:67;21691:9;21702:6;21685:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;21666:86;;21771:57;21788:6;21796:9;21807;21818;21771:16;:57::i;:::-;21463:381;;;;-1:-1:-1;;;;;21864:20:0;;;21860:380;;-1:-1:-1;;;;;21924:22:0;;21905:16;21924:22;;;:14;:22;;;;;;;;;21984:13;:60;;22043:1;21984:60;;;-1:-1:-1;;;;;22000:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;22020:13:0;;22000:34;;;;;;;;;:40;-1:-1:-1;;;22000:40:0;;-1:-1:-1;;;;;22000:40:0;21984:60;21965:79;;22063:16;22082:66;22088:9;22099:6;22082:66;;;;;;;;;;;;;;;;;:5;:66::i;:::-;22063:85;;22167:57;22184:6;22192:9;22203;22214;22167:16;:57::i;20320:375::-;-1:-1:-1;;;;;20423:20:0;;;20397:23;20423:20;;;:9;:20;;;;;;;;;;20480:8;:19;;;;;;20510:20;;;;:32;;;-1:-1:-1;;;;;;20510:32:0;;;;;;;20560:54;;20423:20;;;;;-1:-1:-1;;;;;20480:19:0;;;;20510:32;;20423:20;;;20560:54;;20397:23;20560:54;20627:60;20642:15;20659:9;20670:16;20627:14;:60::i;:::-;20320:375;;;;:::o;23609:153::-;23719:9;23609:153;:::o;5052:345::-;5138:7;5240:12;5233:5;5225:28;;;;-1:-1:-1;;;5225:28:0;;;;;;;;;;;5264:9;5280:1;5276;:5;;;;;;;5052:345;-1:-1:-1;;;;;5052:345:0:o;22266:628::-;22384:18;22405:75;22412:12;22405:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;22384:96;;22510:1;22495:12;:16;;;:85;;;;-1:-1:-1;;;;;;22515:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;22538:16:0;;22515:40;;;;;;;;;:50;:65;;;:50;;:65;22495:85;22491:329;;;-1:-1:-1;;;;;22595:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;22618:16:0;;22595:40;;;;;;;;;:57;;-1:-1:-1;;22595:57:0;-1:-1:-1;;;;;;;;22595:57:0;;;;;;22491:329;;;22720:33;;;;;;;;;;;;;;-1:-1:-1;;;;;22720:33:0;;;;;;;;;;-1:-1:-1;;;;;22681:22:0;;-1:-1:-1;22681:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;22681:72:0;-1:-1:-1;;22681:72:0;;;-1:-1:-1;;22681:72:0;;;;;;;;;;;;;;;22766:25;;;:14;:25;;;;;;;:44;;22681:72;22794:16;;22766:44;;;;;;;;;;;;;22491:329;22856:9;-1:-1:-1;;;;;22835:51:0;;22867:8;22877;22835:51;;;;;;;;;;;;;;;;22266:628;;;;;:::o;22902:161::-;22977:6;23015:12;-1:-1:-1;;;23004:9:0;;22996:32;;;;-1:-1:-1;;;22996:32:0;;;;;;;;;6634:17131;;;;;;;;;;-1:-1:-1;6634:17131: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:113;4500:24;4518:5;4500:24;;;4495:3;4488:37;4482:48;;;4537:104;4614:21;4629:5;4614:21;;4648:113;4731:24;4749:5;4731:24;;4768:152;4869:45;4889:24;4907:5;4889:24;;;4869:45;;4927:347;;5039:39;5072:5;5039:39;;;5090:71;5154:6;5149:3;5090:71;;;5083:78;;5166:52;5211:6;5206:3;5199:4;5192:5;5188:16;5166:52;;;5239:29;5261:6;5239:29;;;5230:39;;;;5019:255;-1:-1;;;5019:255;5628:374;;5788:67;5852:2;5847:3;5788:67;;;5888:34;5868:55;;-1:-1;;;5952:2;5943:12;;5936:29;5993:2;5984:12;;5774:228;-1:-1;;5774:228;6011:372;;6171:67;6235:2;6230:3;6171:67;;;6271:34;6251:55;;-1:-1;;;6335:2;6326:12;;6319:27;6374:2;6365:12;;6157:226;-1:-1;;6157:226;6392:398;;6570:84;6652:1;6647:3;6570:84;;;-1:-1;;;6667:87;;6782:1;6773:11;;6556:234;-1:-1;;6556:234;6799:327;;6959:67;7023:2;7018:3;6959:67;;;7059:29;7039:50;;7117:2;7108:12;;6945:181;-1:-1;;6945:181;7135:371;;7295:67;7359:2;7354:3;7295:67;;;7395:34;7375:55;;-1:-1;;;7459:2;7450:12;;7443:26;7497:2;7488:12;;7281:225;-1:-1;;7281:225;7515:383;;7675:67;7739:2;7734:3;7675:67;;;7775:34;7755:55;;-1:-1;;;7839:2;7830:12;;7823:38;7889:2;7880:12;;7661:237;-1:-1;;7661:237;7907:492;;8085:85;8167:2;8162:3;8085:85;;;8203:34;8183:55;;8272:34;8267:2;8258:12;;8251:56;-1:-1;;;8336:2;8327:12;;8320:42;8390:2;8381:12;;8071:328;-1:-1;;8071:328;8408:398;;8568:67;8632:2;8627:3;8568:67;;;8668:34;8648:55;;8737:31;8732:2;8723:12;;8716:53;8797:2;8788:12;;8554:252;-1:-1;;8554:252;8815:477;;8993:85;9075:2;9070:3;8993:85;;;9111:34;9091:55;;9180:34;9175:2;9166:12;;9159:56;-1:-1;;;9244:2;9235:12;;9228:27;9283:2;9274:12;;8979:313;-1:-1;;8979:313;9301:394;;9461:67;9525:2;9520:3;9461:67;;;9561:34;9541:55;;9630:27;9625:2;9616:12;;9609:49;9686:2;9677:12;;9447:248;-1:-1;;9447:248;9704:370;;9864:67;9928:2;9923:3;9864:67;;;9964:34;9944:55;;-1:-1;;;10028:2;10019:12;;10012:25;10065:2;10056:12;;9850:224;-1:-1;;9850:224;10083:370;;10243:67;10307:2;10302:3;10243:67;;;10343:34;10323:55;;-1:-1;;;10407:2;10398:12;;10391:25;10444:2;10435:12;;10229:224;-1:-1;;10229:224;10462:374;;10622:67;10686:2;10681:3;10622:67;;;10722:34;10702:55;;-1:-1;;;10786:2;10777:12;;10770:29;10827:2;10818:12;;10608:228;-1:-1;;10608:228;10845:328;;11005:67;11069:2;11064:3;11005:67;;;11105:30;11085:51;;11164:2;11155:12;;10991:182;-1:-1;;10991:182;11182:330;;11342:67;11406:2;11401:3;11342:67;;;11442:32;11422:53;;11503:2;11494:12;;11328:184;-1:-1;;11328:184;11521:396;;11681:67;11745:2;11740:3;11681:67;;;11781:34;11761:55;;11850:29;11845:2;11836:12;;11829:51;11908:2;11899:12;;11667:250;-1:-1;;11667:250;11926:330;;12086:67;12150:2;12145:3;12086:67;;;12186:32;12166:53;;12247:2;12238:12;;12072:184;-1:-1;;12072:184;12265:375;;12425:67;12489:2;12484:3;12425:67;;;12525:34;12505:55;;-1:-1;;;12589:2;12580:12;;12573:30;12631:2;12622:12;;12411:229;-1:-1;;12411:229;12649:431;;12827:85;12909:2;12904:3;12827:85;;;12945:34;12925:55;;13014:28;13009:2;13000:12;;12993:50;13071:2;13062:12;;12813:267;-1:-1;;12813:267;13089:325;;13249:67;13313:2;13308:3;13249:67;;;13349:27;13329:48;;13405:2;13396:12;;13235:179;-1:-1;;13235:179;13542:110;13623:23;13640:5;13623:23;;13659:107;13738:22;13754:5;13738:22;;13773:124;13855:36;13885:5;13855:36;;13904:110;13985:23;14002:5;13985:23;;14021:650;;14276:148;14420:3;14276:148;;;14269:155;;14435:75;14506:3;14497:6;14435:75;;;14532:2;14527:3;14523:12;14516:19;;14546:75;14617:3;14608:6;14546:75;;;-1:-1;14643:2;14634:12;;14257:414;-1:-1;;14257:414;14678:372;;14877:148;15021:3;14877:148;;15057:372;;15256:148;15400:3;15256:148;;15436:372;;15635:148;15779:3;15635:148;;15815:213;15933:2;15918:18;;15947:71;15922:9;15991:6;15947:71;;16035:324;16181:2;16166:18;;16195:71;16170:9;16239:6;16195:71;;;16277:72;16345:2;16334:9;16330:18;16321:6;16277:72;;16366:201;16478:2;16463:18;;16492:65;16467:9;16530:6;16492:65;;16574:213;16692:2;16677:18;;16706:71;16681:9;16750:6;16706:71;;16794:771;17052:3;17037:19;;17067:71;17041:9;17111:6;17067:71;;;17149:72;17217:2;17206:9;17202:18;17193:6;17149:72;;;17232;17300:2;17289:9;17285:18;17276:6;17232:72;;;17315;17383:2;17372:9;17368:18;17359:6;17315:72;;;17398:73;17466:3;17455:9;17451:19;17442:6;17398:73;;;17482;17550:3;17539:9;17535:19;17526:6;17482:73;;;17023:542;;;;;;;;;;17572:547;17774:3;17759:19;;17789:71;17763:9;17833:6;17789:71;;;17871:72;17939:2;17928:9;17924:18;17915:6;17871:72;;;17954;18022:2;18011:9;18007:18;17998:6;17954:72;;;18037;18105:2;18094:9;18090:18;18081:6;18037:72;;;17745:374;;;;;;;;18126:547;18328:3;18313:19;;18343:71;18317:9;18387:6;18343:71;;;18425:72;18493:2;18482:9;18478:18;18469:6;18425:72;;;18508;18576:2;18565:9;18561:18;18552:6;18508:72;;;18591;18659:2;18648:9;18644:18;18635:6;18591:72;;18680:539;18878:3;18863:19;;18893:71;18867:9;18937:6;18893:71;;;18975:68;19039:2;19028:9;19024:18;19015:6;18975:68;;19226:293;19360:2;19374:47;;;19345:18;;19435:74;19345:18;19495:6;19435:74;;19834:407;20025:2;20039:47;;;20010:18;;20100:131;20010:18;20100:131;;20248:407;20439:2;20453:47;;;20424:18;;20514:131;20424:18;20514:131;;20662:407;20853:2;20867:47;;;20838:18;;20928:131;20838:18;20928:131;;21076:407;21267:2;21281:47;;;21252:18;;21342:131;21252:18;21342:131;;21490:407;21681:2;21695:47;;;21666:18;;21756:131;21666:18;21756:131;;21904:407;22095:2;22109:47;;;22080:18;;22170:131;22080:18;22170:131;;22318:407;22509:2;22523:47;;;22494:18;;22584:131;22494:18;22584:131;;22732:407;22923:2;22937:47;;;22908:18;;22998:131;22908:18;22998:131;;23146:407;23337:2;23351:47;;;23322:18;;23412:131;23322:18;23412:131;;23560:407;23751:2;23765:47;;;23736:18;;23826:131;23736:18;23826:131;;23974:407;24165:2;24179:47;;;24150:18;;24240:131;24150:18;24240:131;;24388:407;24579:2;24593:47;;;24564:18;;24654:131;24564:18;24654:131;;24802:407;24993:2;25007:47;;;24978:18;;25068:131;24978:18;25068:131;;25216:407;25407:2;25421:47;;;25392:18;;25482:131;25392:18;25482:131;;25630:407;25821:2;25835:47;;;25806:18;;25896:131;25806:18;25896:131;;26044:407;26235:2;26249:47;;;26220:18;;26310:131;26220:18;26310:131;;26678:209;26794:2;26779:18;;26808:69;26783:9;26850:6;26808:69;;26894:316;27036:2;27021:18;;27050:69;27025:9;27092:6;27050:69;;;27130:70;27196:2;27185:9;27181:18;27172:6;27130:70;;27217:205;27331:2;27316:18;;27345:67;27320:9;27385:6;27345:67;;27429:211;27546:2;27531:18;;27560:70;27535:9;27603:6;27560:70;;27647:209;27763:2;27748:18;;27777:69;27752:9;27819:6;27777:69;;27863:320;28007:2;27992:18;;28021:70;27996:9;28064:6;28021:70;;;28102:71;28169:2;28158:9;28154:18;28145:6;28102:71;;28190:118;28274:12;;28245:63;28445:163;28548:19;;;28597:4;28588:14;;28541:67;28617:145;28753:3;28731:31;-1:-1;28731:31;28770:91;;28832:24;28850:5;28832:24;;28868:85;28934:13;28927:21;;28910:43;28960:72;29022:5;29005:27;29039:121;-1:-1;;;;;29101:54;;29084:76;29246:88;29318:10;29307:22;;29290:44;29341:81;29412:4;29401:16;;29384:38;29429:104;-1:-1;;;;;29490:38;;29473:60;29540:106;;29618:23;29635:5;29618:23;;29654:268;29719:1;29726:101;29740:6;29737:1;29734:13;29726:101;;;29807:11;;;29801:18;29788:11;;;29781:39;29762:2;29755:10;29726:101;;;29842:6;29839:1;29836:13;29833:2;;;-1:-1;;29907:1;29889:16;;29882:27;29703:219;30011:97;30099:2;30079:14;-1:-1;;30075:28;;30059:49;30116:117;30185:24;30203:5;30185:24;;;30178:5;30175:35;30165:2;;30224:1;30221;30214:12;30240:117;30309:24;30327:5;30309:24;;30488:115;30556:23;30573:5;30556:23;;30610:113;30677:22;30693:5;30677:22;

Swarm Source

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