false
true

Contract Address Details

0xABCCEfB00528C9c792aC7c46997f0f6Ee5DCDDDD

Token
GooDog (GD)
Creator
0x8687d8–47bc82 at 0x0d2a65–1def7b
Balance
0
Tokens
Fetching tokens...
Transactions
2,080 Transactions
Transfers
0 Transfers
Gas Used
103,855,317
Last Balance Update
19846420
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
GD




Optimization enabled
true
Compiler version
v0.5.16+commit.9c3226ce




Optimization runs
1000000
EVM Version
default




Verified at
2025-02-23T14:35:43.949458Z

Constructor Arguments

0x000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce80000000000000000000000000512f8ee3c2b310238151b8caec8fdab26d0441300000000000000000000000000000000000000000000000000000000699c656c

Arg [0] (address) : 0xefd3183eb81f52bbd5c41dfb60c09028bc999ce8
Arg [1] (address) : 0x0512f8ee3c2b310238151b8caec8fdab26d04413
Arg [2] (uint256) : 1771857260

              

contracts/factory/GD.sol

Sol2uml
new
/**
 *Submitted for verification at scan.dbkchain.io on 2025-02-23
*/

pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;

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

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

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 100_000_000_000e18; // 100 billion GD

    /// @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 = 365 days;

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

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

    /// @notice Official record of token balances for each account
    mapping (address => uint256) 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 {
        uint64 fromBlock;
        uint256 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, uint256 previousBalance, uint256 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 GD 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, "GD::constructor: minting can only begin after deployment");

        balances[account] = 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, "GD::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, uint256 rawAmount) external {
        require(msg.sender == minter, "GD::mint: only the minter can mint");
        require(block.timestamp >= mintingAllowedAfter, "GD::mint: minting not allowed yet");
        require(dst != address(0), "GD::mint: cannot transfer to the zero address");

        mintingAllowedAfter = SafeMath.add(block.timestamp, minimumTimeBetweenMints);

        require(rawAmount <= SafeMath.div(SafeMath.mul(totalSupply, mintCap), 100), "GD::mint: exceeded mint cap");
        totalSupply = SafeMath.add(totalSupply, rawAmount);

        balances[dst] = SafeMath.add(balances[dst], rawAmount, "GD::mint: balance overflow");
        emit Transfer(address(0), dst, rawAmount);

        _moveDelegates(address(0), delegates[dst], rawAmount);
    }

    /**
     * @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 (uint256) {
        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, uint256 rawAmount) external returns (bool) {
        allowances[msg.sender][spender] = rawAmount;
        emit Approval(msg.sender, spender, rawAmount);
        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 {
        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), "GD::permit: invalid signature");
        require(signatory == owner, "GD::permit: unauthorized");
        require(now <= deadline, "GD::permit: signature expired");

        allowances[owner][spender] = rawAmount;
        emit Approval(owner, spender, rawAmount);
    }

    /**
     * @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 (uint256) {
        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, uint256 rawAmount) external returns (bool) {
        _transferTokens(msg.sender, dst, rawAmount);
        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, uint256 rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint256 spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint256(-1)) {
            uint256 newAllowance = spenderAllowance - rawAmount;
            require(newAllowance <= spenderAllowance, "GD::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;
            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, rawAmount);
        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), "GD::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "GD::delegateBySig: invalid nonce");
        require(now <= expiry, "GD::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 (uint256) {
        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 (uint256) {
        require(blockNumber < block.number, "GD::getPriorVotes: not yet determined");

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

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

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

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

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

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

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

        balances[src] = SafeMath.sub(balances[src], amount, "GD::_transferTokens: transfer amount exceeds balance");
        balances[dst] = SafeMath.add(balances[dst], amount, "GD::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

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

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

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

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
        uint64 blockNumber = safe64(block.number, "GD::_writeCheckpoint: block number exceeds 64 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 safe64(uint n, string memory errorMessage) internal pure returns (uint64) {
        require(n < 2**64, errorMessage);
        return uint64(n);
    }

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

    function burn(uint256 amount) external {
        require(amount > 0, "GD::burn: amount must be greater than zero");
        require(balances[msg.sender] >= amount, "GD::burn: insufficient balance");

        balances[msg.sender] = SafeMath.sub(balances[msg.sender], amount);
        totalSupply = SafeMath.sub(totalSupply, amount);

        emit Transfer(msg.sender, address(0), amount);

        _moveDelegates(delegates[msg.sender], address(0), amount);
    }

    function burnFrom(address account, uint256 amount) external {
        require(amount > 0, "GD::burnFrom: amount must be greater than zero");
        require(account != address(0), "GD::burnFrom: cannot burn from zero address");
        require(balances[account] >= amount, "GD::burnFrom: insufficient balance");
        require(allowances[account][msg.sender] >= amount, "GD::burnFrom: insufficient allowance");

        balances[account] = SafeMath.sub(balances[account], amount);
        allowances[account][msg.sender] = SafeMath.sub(allowances[account][msg.sender], amount);
        totalSupply = SafeMath.sub(totalSupply, amount);

        emit Transfer(account, address(0), amount);

        _moveDelegates(delegates[account], address(0), amount);
    }
}
        

Compiler Settings

{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}},"optimizer":{"runs":1000000,"enabled":true},"libraries":{}}
              

Contract ABI

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

Contract Creation Code

0x60806040526c01431e0fae6d7217caa00000006000553480156200002257600080fd5b506040516200350338038062003503833981016040819052620000459162000154565b42811015620000715760405162461bcd60e51b8152600401620000689062000256565b60405180910390fd5b600080546001600160a01b03851680835260046020526040808420839055519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000c1919062000268565b60405180910390a3600180546001600160a01b0319166001600160a01b0384811691909117918290556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f692620001209260009291169062000230565b60405180910390a160025550620002cf9050565b80516200014181620002aa565b92915050565b80516200014181620002c4565b6000806000606084860312156200016a57600080fd5b600062000178868662000134565b93505060206200018b8682870162000134565b92505060406200019e8682870162000147565b9150509250925092565b620001b38162000296565b82525050565b620001b38162000281565b6000620001d360388362000278565b7f47443a3a636f6e7374727563746f723a206d696e74696e672063616e206f6e6c81527f7920626567696e206166746572206465706c6f796d656e740000000000000000602082015260400192915050565b620001b38162000293565b60408101620002408285620001a8565b6200024f6020830184620001b9565b9392505050565b602080825281016200014181620001c4565b6020810162000141828462000225565b90815260200190565b60006001600160a01b03821662000141565b90565b600062000141826000620001418262000281565b620002b58162000281565b8114620002c157600080fd5b50565b620002b58162000293565b61322480620002df6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636fcfff4511610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461039a578063e7a324dc146103ad578063f1127ed8146103b5578063fca3b5aa146103d6576101cf565b8063a9059cbb1461034e578063b4b5ea5714610361578063c3cda52014610374578063d505accf14610387576101cf565b8063782d6fe1116100de578063782d6fe11461030d57806379cc6790146103205780637ecebe001461033357806395d89b4114610346576101cf565b80636fcfff45146102df57806370a08231146102f257806376c71ca114610305576101cf565b806330b36cef1161017157806342966c681161014b57806342966c6814610291578063587cde1e146102a45780635c11d62f146102b75780635c19a95c146102cc576101cf565b806330b36cef1461025f578063313ce5671461026757806340c10f191461027c576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461023c57806323b872dd1461024457806330adf81f14610257576101cf565b806306fdde03146101d457806307546172146101f2578063095ea7b314610207575b600080fd5b6101dc6103e9565b6040516101e99190612e5f565b60405180910390f35b6101fa610422565b6040516101e99190612d32565b61021a610215366004612235565b61043e565b6040516101e99190612d5b565b61022f6104b6565b6040516101e99190612d69565b61022f6104bc565b61021a61025236600461214c565b6104d3565b61022f61060e565b61022f61061a565b61026f610620565b6040516101e99190613017565b61028f61028a366004612235565b610625565b005b61028f61029f36600461231c565b61088d565b6101fa6102b23660046120ec565b6109bd565b6102bf6109e5565b6040516101e99190612ffb565b61028f6102da3660046120ec565b6109ed565b6102bf6102ed3660046120ec565b6109f7565b61022f6103003660046120ec565b610a0f565b61026f610a37565b61022f61031b366004612235565b610a3c565b61028f61032e366004612235565b610cfb565b61022f6103413660046120ec565b610f86565b6101dc610f98565b61021a61035c366004612235565b610fd1565b61022f61036f3660046120ec565b610fe7565b61028f610382366004612265565b611082565b61028f610395366004612199565b611307565b61022f6103a8366004612112565b611625565b61022f61165d565b6103c86103c33660046122ec565b611669565b6040516101e9929190613009565b61028f6103e43660046120ec565b61169a565b6040518060400160405280600681526020017f476f6f446f67000000000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104a4908690612d69565b60405180910390a35060015b92915050565b60005481565b6040516104c890612d1c565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660008181526003602090815260408083203380855292528220549192909190821480159061053857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b156105f55783810381811115610583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fb0565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526003602090815260408083209488168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105eb908590612d69565b60405180910390a3505b610600868686611786565b6001925050505b9392505050565b6040516104c890612d11565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff163314610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f80565b6002544210156106b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f00565b73ffffffffffffffffffffffffffffffffffffffff82166106ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ee0565b61070d426301e13380611987565b600255600054610729906107229060016119c6565b6064611a1a565b811115610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f70565b61076e60005482611987565b6000819055506107f3600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060400160405280601a81526020017f47443a3a6d696e743a2062616c616e6365206f766572666c6f77000000000000815250611a5c565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061084f908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808316600090815260056020526040812054610889921683611aa6565b5050565b600081116108c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fa0565b33600090815260046020526040902054811115610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ea0565b3360009081526004602052604090205461092a9082611cb9565b33600090815260046020526040812091909155546109489082611cb9565b600090815560405133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061097f908590612d69565b60405180910390a3336000908152600560205260408120546109ba9173ffffffffffffffffffffffffffffffffffffffff9091169083611aa6565b50565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b6109ba3382611cfb565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b600181565b6000438210610a77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fd0565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610ab25760009150506104b0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860116845290915290205467ffffffffffffffff168310610b7f5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052206001015490506104b0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205467ffffffffffffffff16831015610bcb5760009150506104b0565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610cb757600282820363ffffffff16048103610c1b6120a9565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff851684528252918290208251808401909352805467ffffffffffffffff1680845260019091015491830191909152871415610c8e576020015194506104b09350505050565b805167ffffffffffffffff16871115610ca957819350610cb0565b6001820392505b5050610bf1565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60008111610d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ef0565b73ffffffffffffffffffffffffffffffffffffffff8216610d82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fc0565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054811115610de1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e90565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360209081526040808320338452909152902054811115610e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f60565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054610e7b9082611cb9565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460209081526040808320939093556003815282822033835290522054610ebf9082611cb9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020908152604080832033845290915281209190915554610efe9082611cb9565b600090815560405173ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f4b908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80831660009081526005602052604081205461088992169083611aa6565b60086020526000908152604090205481565b6040518060400160405280600281526020017f474400000000000000000000000000000000000000000000000000000000000081525081565b6000610fde338484611786565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff168061101f576000610607565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101549392505050565b600060405161109090612d1c565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b6110f7611da0565b3060405160200161110b9493929190612e0f565b604051602081830303815290604052805190602001209050600060405161113190612d27565b60405190819003812061114c918a908a908a90602001612dd1565b60405160208183030381529060405280519060200120905060008282604051602001611179929190612ce0565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516111b69493929190612e44565b6020604051602081039080840390855afa1580156111d8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e80565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902080546001810190915589146112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e70565b874211156112f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612eb0565b6112fa818b611cfb565b505050505b505050505050565b600060405161131590612d1c565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b61137c611da0565b306040516020016113909493929190612e0f565b60405160208183030381529060405280519060200120905060006040516113b690612d11565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8c166000908152600860209081529290208054600181019091556114059391928d928d928d9290918d9101612d77565b60405160208183030381529060405280519060200120905060008282604051602001611432929190612ce0565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161146f9493929190612e44565b6020604051602081039080840390855afa158015611491573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ed0565b8a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f50565b874211156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f90565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600360209081526040808320948f1680845294909152908190208c9055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611610908d90612d69565b60405180910390a35050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b6040516104c890612d27565b60066020908152600092835260408084209091529082529020805460019091015467ffffffffffffffff9091169082565b60015473ffffffffffffffffffffffffffffffffffffffff1633146116eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f10565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916117379173ffffffffffffffffffffffffffffffffffffffff909116908490612d40565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166117d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f30565b73ffffffffffffffffffffffffffffffffffffffff8216611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f20565b611882600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060600160405280603481526020016131ae60349139611da4565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260046020908152604080832094909455918516815282902054825160608101909352602e8084526118dc9391928592919061310390830139611a5c565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061193b908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80841660009081526005602052604080822054858416835291205461198292918216911683611aa6565b505050565b600082820183811015610607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ec0565b6000826119d5575060006104b0565b828202828482816119e257fe5b0414610607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f40565b600061060783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dea565b60008383018285821015611a9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ae25750600081115b156119825773ffffffffffffffffffffffffffffffffffffffff831615611bd25773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff169081611b3c576000611b99565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000611bc0828560405180606001604052806026815260200161318860269139611da4565b9050611bce86848484611e3b565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156119825773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff169081611c27576000611c84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000611cab828560405180606001604052806025815260200161316360259139611a5c565b90506112ff85848484611e3b565b600061060783836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f7700815250611da4565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff00000000000000000000000000000000000000008416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611d9a828483611aa6565b50505050565b4690565b60008184841115611de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b505050900390565b60008183611e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b506000838581611e3157fe5b0495945050505050565b6000611e5f436040518060600160405280603281526020016131316032913961205b565b905060008463ffffffff16118015611edb575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff16845290915290205467ffffffffffffffff8281169116145b15611f435773ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055612004565b60408051808201825267ffffffffffffffff8381168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a1660008181526006845286812063ffffffff8c81168352908552878220965187547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001696169590951786559151600195860155815260079091529290922080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000169187019092161790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161204c929190612fe0565b60405180910390a25050505050565b6000816801000000000000000084106120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b509192915050565b604080518082019091526000808252602082015290565b80356104b0816130d3565b80356104b0816130e7565b80356104b0816130f0565b80356104b0816130f9565b6000602082840312156120fe57600080fd5b600061210a84846120c0565b949350505050565b6000806040838503121561212557600080fd5b600061213185856120c0565b9250506020612142858286016120c0565b9150509250929050565b60008060006060848603121561216157600080fd5b600061216d86866120c0565b935050602061217e868287016120c0565b925050604061218f868287016120cb565b9150509250925092565b600080600080600080600060e0888a0312156121b457600080fd5b60006121c08a8a6120c0565b97505060206121d18a828b016120c0565b96505060406121e28a828b016120cb565b95505060606121f38a828b016120cb565b94505060806122048a828b016120e1565b93505060a06122158a828b016120cb565b92505060c06122268a828b016120cb565b91505092959891949750929550565b6000806040838503121561224857600080fd5b600061225485856120c0565b9250506020612142858286016120cb565b60008060008060008060c0878903121561227e57600080fd5b600061228a89896120c0565b965050602061229b89828a016120cb565b95505060406122ac89828a016120cb565b94505060606122bd89828a016120e1565b93505060806122ce89828a016120cb565b92505060a06122df89828a016120cb565b9150509295509295509295565b600080604083850312156122ff57600080fd5b600061230b85856120c0565b9250506020612142858286016120d6565b60006020828403121561232e57600080fd5b600061210a84846120cb565b61234381613037565b82525050565b61234381613042565b61234381613047565b61234361236782613047565b613047565b600061237782613025565b6123818185613029565b935061239181856020860161307f565b61239a816130ab565b9093019392505050565b60006123b1602083613029565b7f47443a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365815260200192915050565b60006123ea602483613029565b7f47443a3a64656c656761746542795369673a20696e76616c6964207369676e6181527f7475726500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612449602283613029565b7f47443a3a6275726e46726f6d3a20696e73756666696369656e742062616c616e81527f6365000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006124a8601e83613029565b7f47443a3a6275726e3a20696e73756666696369656e742062616c616e63650000815260200192915050565b60006124e1602483613029565b7f47443a3a64656c656761746542795369673a207369676e61747572652065787081527f6972656400000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612540600283613032565b7f1901000000000000000000000000000000000000000000000000000000000000815260020192915050565b6000612579601b83613029565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006125b2601d83613029565b7f47443a3a7065726d69743a20696e76616c6964207369676e6174757265000000815260200192915050565b60006125eb602d83613029565b7f47443a3a6d696e743a2063616e6e6f74207472616e7366657220746f2074686581527f207a65726f206164647265737300000000000000000000000000000000000000602082015260400192915050565b600061264a602e83613029565b7f47443a3a6275726e46726f6d3a20616d6f756e74206d7573742062652067726581527f61746572207468616e207a65726f000000000000000000000000000000000000602082015260400192915050565b60006126a9602183613029565b7f47443a3a6d696e743a206d696e74696e67206e6f7420616c6c6f77656420796581527f7400000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612708603c83613029565b7f47443a3a7365744d696e7465723a206f6e6c7920746865206d696e746572206381527f616e206368616e676520746865206d696e746572206164647265737300000000602082015260400192915050565b6000612767605283613032565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520192915050565b60006127ec603883613029565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f7366657220746f20746865207a65726f20616464726573730000000000000000602082015260400192915050565b600061284b603a83613029565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f736665722066726f6d20746865207a65726f2061646472657373000000000000602082015260400192915050565b60006128aa604383613032565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430192915050565b600061292f602183613029565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061298e601883613029565b7f47443a3a7065726d69743a20756e617574686f72697a65640000000000000000815260200192915050565b60006129c7602483613029565b7f47443a3a6275726e46726f6d3a20696e73756666696369656e7420616c6c6f7781527f616e636500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612a26601b83613029565b7f47443a3a6d696e743a206578636565646564206d696e74206361700000000000815260200192915050565b6000612a5f602283613029565b7f47443a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d6981527f6e74000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612abe601d83613029565b7f47443a3a7065726d69743a207369676e61747572652065787069726564000000815260200192915050565b6000612af7602a83613029565b7f47443a3a6275726e3a20616d6f756e74206d757374206265206772656174657281527f207468616e207a65726f00000000000000000000000000000000000000000000602082015260400192915050565b6000612b56603a83613032565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6000612bb5603b83613029565b7f47443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e81527f742065786365656473207370656e64657220616c6c6f77616e63650000000000602082015260400192915050565b6000612c14602b83613029565b7f47443a3a6275726e46726f6d3a2063616e6e6f74206275726e2066726f6d207a81527f65726f2061646472657373000000000000000000000000000000000000000000602082015260400192915050565b6000612c73602583613029565b7f47443a3a6765745072696f72566f7465733a206e6f742079657420646574657281527f6d696e6564000000000000000000000000000000000000000000000000000000602082015260400192915050565b61234381613063565b6123438161306c565b61234381613079565b6000612ceb82612533565b9150612cf7828561235b565b602082019150612d07828461235b565b5060200192915050565b60006104b08261275a565b60006104b08261289d565b60006104b082612b49565b602081016104b0828461233a565b60408101612d4e828561233a565b610607602083018461233a565b602081016104b08284612349565b602081016104b08284612352565b60c08101612d858289612352565b612d92602083018861233a565b612d9f604083018761233a565b612dac6060830186612352565b612db96080830185612352565b612dc660a0830184612352565b979650505050505050565b60808101612ddf8287612352565b612dec602083018661233a565b612df96040830185612352565b612e066060830184612352565b95945050505050565b60808101612e1d8287612352565b612e2a6020830186612352565b612e376040830185612352565b612e06606083018461233a565b60808101612e528287612352565b612dec6020830186612cd7565b60208082528101610607818461236c565b602080825281016104b0816123a4565b602080825281016104b0816123dd565b602080825281016104b08161243c565b602080825281016104b08161249b565b602080825281016104b0816124d4565b602080825281016104b08161256c565b602080825281016104b0816125a5565b602080825281016104b0816125de565b602080825281016104b08161263d565b602080825281016104b08161269c565b602080825281016104b0816126fb565b602080825281016104b0816127df565b602080825281016104b08161283e565b602080825281016104b081612922565b602080825281016104b081612981565b602080825281016104b0816129ba565b602080825281016104b081612a19565b602080825281016104b081612a52565b602080825281016104b081612ab1565b602080825281016104b081612aea565b602080825281016104b081612ba8565b602080825281016104b081612c07565b602080825281016104b081612c66565b60408101612fee8285612352565b6106076020830184612352565b602081016104b08284612cc5565b60408101612fee8285612cce565b602081016104b08284612cd7565b5190565b90815260200190565b919050565b60006104b08261304a565b151590565b90565b73ffffffffffffffffffffffffffffffffffffffff1690565b63ffffffff1690565b67ffffffffffffffff1690565b60ff1690565b60005b8381101561309a578181015183820152602001613082565b83811115611d9a5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b6130dc81613037565b81146109ba57600080fd5b6130dc81613047565b6130dc81613063565b6130dc8161307956fe47443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203634206269747347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a723158202b4ce6dc7b75ee1eaa19a75ee44d279a85a96571a5bb268c9c15909c889ee1676c6578706572696d656e74616cf564736f6c63430005100040000000000000000000000000efd3183eb81f52bbd5c41dfb60c09028bc999ce80000000000000000000000000512f8ee3c2b310238151b8caec8fdab26d0441300000000000000000000000000000000000000000000000000000000699c656c

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636fcfff4511610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e1461039a578063e7a324dc146103ad578063f1127ed8146103b5578063fca3b5aa146103d6576101cf565b8063a9059cbb1461034e578063b4b5ea5714610361578063c3cda52014610374578063d505accf14610387576101cf565b8063782d6fe1116100de578063782d6fe11461030d57806379cc6790146103205780637ecebe001461033357806395d89b4114610346576101cf565b80636fcfff45146102df57806370a08231146102f257806376c71ca114610305576101cf565b806330b36cef1161017157806342966c681161014b57806342966c6814610291578063587cde1e146102a45780635c11d62f146102b75780635c19a95c146102cc576101cf565b806330b36cef1461025f578063313ce5671461026757806340c10f191461027c576101cf565b806318160ddd116101ad57806318160ddd1461022757806320606b701461023c57806323b872dd1461024457806330adf81f14610257576101cf565b806306fdde03146101d457806307546172146101f2578063095ea7b314610207575b600080fd5b6101dc6103e9565b6040516101e99190612e5f565b60405180910390f35b6101fa610422565b6040516101e99190612d32565b61021a610215366004612235565b61043e565b6040516101e99190612d5b565b61022f6104b6565b6040516101e99190612d69565b61022f6104bc565b61021a61025236600461214c565b6104d3565b61022f61060e565b61022f61061a565b61026f610620565b6040516101e99190613017565b61028f61028a366004612235565b610625565b005b61028f61029f36600461231c565b61088d565b6101fa6102b23660046120ec565b6109bd565b6102bf6109e5565b6040516101e99190612ffb565b61028f6102da3660046120ec565b6109ed565b6102bf6102ed3660046120ec565b6109f7565b61022f6103003660046120ec565b610a0f565b61026f610a37565b61022f61031b366004612235565b610a3c565b61028f61032e366004612235565b610cfb565b61022f6103413660046120ec565b610f86565b6101dc610f98565b61021a61035c366004612235565b610fd1565b61022f61036f3660046120ec565b610fe7565b61028f610382366004612265565b611082565b61028f610395366004612199565b611307565b61022f6103a8366004612112565b611625565b61022f61165d565b6103c86103c33660046122ec565b611669565b6040516101e9929190613009565b61028f6103e43660046120ec565b61169a565b6040518060400160405280600681526020017f476f6f446f67000000000000000000000000000000000000000000000000000081525081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104a4908690612d69565b60405180910390a35060015b92915050565b60005481565b6040516104c890612d1c565b604051809103902081565b73ffffffffffffffffffffffffffffffffffffffff831660008181526003602090815260408083203380855292528220549192909190821480159061053857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114155b156105f55783810381811115610583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fb0565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80881660008181526003602090815260408083209488168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105eb908590612d69565b60405180910390a3505b610600868686611786565b6001925050505b9392505050565b6040516104c890612d11565b60025481565b601281565b60015473ffffffffffffffffffffffffffffffffffffffff163314610676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f80565b6002544210156106b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f00565b73ffffffffffffffffffffffffffffffffffffffff82166106ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ee0565b61070d426301e13380611987565b600255600054610729906107229060016119c6565b6064611a1a565b811115610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f70565b61076e60005482611987565b6000819055506107f3600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060400160405280601a81526020017f47443a3a6d696e743a2062616c616e6365206f766572666c6f77000000000000815250611a5c565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061084f908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff808316600090815260056020526040812054610889921683611aa6565b5050565b600081116108c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fa0565b33600090815260046020526040902054811115610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ea0565b3360009081526004602052604090205461092a9082611cb9565b33600090815260046020526040812091909155546109489082611cb9565b600090815560405133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061097f908590612d69565b60405180910390a3336000908152600560205260408120546109ba9173ffffffffffffffffffffffffffffffffffffffff9091169083611aa6565b50565b60056020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6301e1338081565b6109ba3382611cfb565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b600181565b6000438210610a77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fd0565b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610ab25760009150506104b0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860116845290915290205467ffffffffffffffff168310610b7f5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052206001015490506104b0565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205467ffffffffffffffff16831015610bcb5760009150506104b0565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff161115610cb757600282820363ffffffff16048103610c1b6120a9565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff851684528252918290208251808401909352805467ffffffffffffffff1680845260019091015491830191909152871415610c8e576020015194506104b09350505050565b805167ffffffffffffffff16871115610ca957819350610cb0565b6001820392505b5050610bf1565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60008111610d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ef0565b73ffffffffffffffffffffffffffffffffffffffff8216610d82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612fc0565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054811115610de1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e90565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360209081526040808320338452909152902054811115610e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f60565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054610e7b9082611cb9565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460209081526040808320939093556003815282822033835290522054610ebf9082611cb9565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020908152604080832033845290915281209190915554610efe9082611cb9565b600090815560405173ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f4b908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80831660009081526005602052604081205461088992169083611aa6565b60086020526000908152604090205481565b6040518060400160405280600281526020017f474400000000000000000000000000000000000000000000000000000000000081525081565b6000610fde338484611786565b50600192915050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526007602052604081205463ffffffff168061101f576000610607565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101549392505050565b600060405161109090612d1c565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b6110f7611da0565b3060405160200161110b9493929190612e0f565b604051602081830303815290604052805190602001209050600060405161113190612d27565b60405190819003812061114c918a908a908a90602001612dd1565b60405160208183030381529060405280519060200120905060008282604051602001611179929190612ce0565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516111b69493929190612e44565b6020604051602081039080840390855afa1580156111d8573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e80565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260086020526040902080546001810190915589146112b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612e70565b874211156112f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612eb0565b6112fa818b611cfb565b505050505b505050505050565b600060405161131590612d1c565b60408051918290038220828201909152600682527f476f6f446f6700000000000000000000000000000000000000000000000000006020909201919091527fd7fc369d1d773bd1de45db90355a8746be3a9943f281e50f39cd8af1610c359b61137c611da0565b306040516020016113909493929190612e0f565b60405160208183030381529060405280519060200120905060006040516113b690612d11565b6040805191829003822073ffffffffffffffffffffffffffffffffffffffff8c166000908152600860209081529290208054600181019091556114059391928d928d928d9290918d9101612d77565b60405160208183030381529060405280519060200120905060008282604051602001611432929190612ce0565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161146f9493929190612e44565b6020604051602081039080840390855afa158015611491573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ed0565b8a73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f50565b874211156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f90565b73ffffffffffffffffffffffffffffffffffffffff808c166000818152600360209081526040808320948f1680845294909152908190208c9055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611610908d90612d69565b60405180910390a35050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b6040516104c890612d27565b60066020908152600092835260408084209091529082529020805460019091015467ffffffffffffffff9091169082565b60015473ffffffffffffffffffffffffffffffffffffffff1633146116eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f10565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916117379173ffffffffffffffffffffffffffffffffffffffff909116908490612d40565b60405180910390a1600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166117d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f30565b73ffffffffffffffffffffffffffffffffffffffff8216611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f20565b611882600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826040518060600160405280603481526020016131ae60349139611da4565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260046020908152604080832094909455918516815282902054825160608101909352602e8084526118dc9391928592919061310390830139611a5c565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061193b908590612d69565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff80841660009081526005602052604080822054858416835291205461198292918216911683611aa6565b505050565b600082820183811015610607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612ec0565b6000826119d5575060006104b0565b828202828482816119e257fe5b0414610607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a90612f40565b600061060783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611dea565b60008383018285821015611a9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ae25750600081115b156119825773ffffffffffffffffffffffffffffffffffffffff831615611bd25773ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604081205463ffffffff169081611b3c576000611b99565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000611bc0828560405180606001604052806026815260200161318860269139611da4565b9050611bce86848484611e3b565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156119825773ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081205463ffffffff169081611c27576000611c84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000611cab828560405180606001604052806025815260200161316360259139611a5c565b90506112ff85848484611e3b565b600061060783836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f7700815250611da4565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260056020818152604080842080546004845282862054949093528787167fffffffffffffffffffffffff00000000000000000000000000000000000000008416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611d9a828483611aa6565b50505050565b4690565b60008184841115611de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b505050900390565b60008183611e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b506000838581611e3157fe5b0495945050505050565b6000611e5f436040518060600160405280603281526020016131316032913961205b565b905060008463ffffffff16118015611edb575073ffffffffffffffffffffffffffffffffffffffff851660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff16845290915290205467ffffffffffffffff8281169116145b15611f435773ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff89011684529091529020600101829055612004565b60408051808201825267ffffffffffffffff8381168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a1660008181526006845286812063ffffffff8c81168352908552878220965187547fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001696169590951786559151600195860155815260079091529290922080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000169187019092161790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161204c929190612fe0565b60405180910390a25050505050565b6000816801000000000000000084106120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057a9190612e5f565b509192915050565b604080518082019091526000808252602082015290565b80356104b0816130d3565b80356104b0816130e7565b80356104b0816130f0565b80356104b0816130f9565b6000602082840312156120fe57600080fd5b600061210a84846120c0565b949350505050565b6000806040838503121561212557600080fd5b600061213185856120c0565b9250506020612142858286016120c0565b9150509250929050565b60008060006060848603121561216157600080fd5b600061216d86866120c0565b935050602061217e868287016120c0565b925050604061218f868287016120cb565b9150509250925092565b600080600080600080600060e0888a0312156121b457600080fd5b60006121c08a8a6120c0565b97505060206121d18a828b016120c0565b96505060406121e28a828b016120cb565b95505060606121f38a828b016120cb565b94505060806122048a828b016120e1565b93505060a06122158a828b016120cb565b92505060c06122268a828b016120cb565b91505092959891949750929550565b6000806040838503121561224857600080fd5b600061225485856120c0565b9250506020612142858286016120cb565b60008060008060008060c0878903121561227e57600080fd5b600061228a89896120c0565b965050602061229b89828a016120cb565b95505060406122ac89828a016120cb565b94505060606122bd89828a016120e1565b93505060806122ce89828a016120cb565b92505060a06122df89828a016120cb565b9150509295509295509295565b600080604083850312156122ff57600080fd5b600061230b85856120c0565b9250506020612142858286016120d6565b60006020828403121561232e57600080fd5b600061210a84846120cb565b61234381613037565b82525050565b61234381613042565b61234381613047565b61234361236782613047565b613047565b600061237782613025565b6123818185613029565b935061239181856020860161307f565b61239a816130ab565b9093019392505050565b60006123b1602083613029565b7f47443a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365815260200192915050565b60006123ea602483613029565b7f47443a3a64656c656761746542795369673a20696e76616c6964207369676e6181527f7475726500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612449602283613029565b7f47443a3a6275726e46726f6d3a20696e73756666696369656e742062616c616e81527f6365000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006124a8601e83613029565b7f47443a3a6275726e3a20696e73756666696369656e742062616c616e63650000815260200192915050565b60006124e1602483613029565b7f47443a3a64656c656761746542795369673a207369676e61747572652065787081527f6972656400000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612540600283613032565b7f1901000000000000000000000000000000000000000000000000000000000000815260020192915050565b6000612579601b83613029565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006125b2601d83613029565b7f47443a3a7065726d69743a20696e76616c6964207369676e6174757265000000815260200192915050565b60006125eb602d83613029565b7f47443a3a6d696e743a2063616e6e6f74207472616e7366657220746f2074686581527f207a65726f206164647265737300000000000000000000000000000000000000602082015260400192915050565b600061264a602e83613029565b7f47443a3a6275726e46726f6d3a20616d6f756e74206d7573742062652067726581527f61746572207468616e207a65726f000000000000000000000000000000000000602082015260400192915050565b60006126a9602183613029565b7f47443a3a6d696e743a206d696e74696e67206e6f7420616c6c6f77656420796581527f7400000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612708603c83613029565b7f47443a3a7365744d696e7465723a206f6e6c7920746865206d696e746572206381527f616e206368616e676520746865206d696e746572206164647265737300000000602082015260400192915050565b6000612767605283613032565b7f5065726d69742861646472657373206f776e65722c616464726573732073706581527f6e6465722c75696e743235362076616c75652c75696e74323536206e6f6e636560208201527f2c75696e7432353620646561646c696e65290000000000000000000000000000604082015260520192915050565b60006127ec603883613029565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f7366657220746f20746865207a65726f20616464726573730000000000000000602082015260400192915050565b600061284b603a83613029565b7f47443a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e81527f736665722066726f6d20746865207a65726f2061646472657373000000000000602082015260400192915050565b60006128aa604383613032565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f6374290000000000000000000000000000000000000000000000000000000000604082015260430192915050565b600061292f602183613029565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b600061298e601883613029565b7f47443a3a7065726d69743a20756e617574686f72697a65640000000000000000815260200192915050565b60006129c7602483613029565b7f47443a3a6275726e46726f6d3a20696e73756666696369656e7420616c6c6f7781527f616e636500000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612a26601b83613029565b7f47443a3a6d696e743a206578636565646564206d696e74206361700000000000815260200192915050565b6000612a5f602283613029565b7f47443a3a6d696e743a206f6e6c7920746865206d696e7465722063616e206d6981527f6e74000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000612abe601d83613029565b7f47443a3a7065726d69743a207369676e61747572652065787069726564000000815260200192915050565b6000612af7602a83613029565b7f47443a3a6275726e3a20616d6f756e74206d757374206265206772656174657281527f207468616e207a65726f00000000000000000000000000000000000000000000602082015260400192915050565b6000612b56603a83613032565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6000612bb5603b83613029565b7f47443a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e81527f742065786365656473207370656e64657220616c6c6f77616e63650000000000602082015260400192915050565b6000612c14602b83613029565b7f47443a3a6275726e46726f6d3a2063616e6e6f74206275726e2066726f6d207a81527f65726f2061646472657373000000000000000000000000000000000000000000602082015260400192915050565b6000612c73602583613029565b7f47443a3a6765745072696f72566f7465733a206e6f742079657420646574657281527f6d696e6564000000000000000000000000000000000000000000000000000000602082015260400192915050565b61234381613063565b6123438161306c565b61234381613079565b6000612ceb82612533565b9150612cf7828561235b565b602082019150612d07828461235b565b5060200192915050565b60006104b08261275a565b60006104b08261289d565b60006104b082612b49565b602081016104b0828461233a565b60408101612d4e828561233a565b610607602083018461233a565b602081016104b08284612349565b602081016104b08284612352565b60c08101612d858289612352565b612d92602083018861233a565b612d9f604083018761233a565b612dac6060830186612352565b612db96080830185612352565b612dc660a0830184612352565b979650505050505050565b60808101612ddf8287612352565b612dec602083018661233a565b612df96040830185612352565b612e066060830184612352565b95945050505050565b60808101612e1d8287612352565b612e2a6020830186612352565b612e376040830185612352565b612e06606083018461233a565b60808101612e528287612352565b612dec6020830186612cd7565b60208082528101610607818461236c565b602080825281016104b0816123a4565b602080825281016104b0816123dd565b602080825281016104b08161243c565b602080825281016104b08161249b565b602080825281016104b0816124d4565b602080825281016104b08161256c565b602080825281016104b0816125a5565b602080825281016104b0816125de565b602080825281016104b08161263d565b602080825281016104b08161269c565b602080825281016104b0816126fb565b602080825281016104b0816127df565b602080825281016104b08161283e565b602080825281016104b081612922565b602080825281016104b081612981565b602080825281016104b0816129ba565b602080825281016104b081612a19565b602080825281016104b081612a52565b602080825281016104b081612ab1565b602080825281016104b081612aea565b602080825281016104b081612ba8565b602080825281016104b081612c07565b602080825281016104b081612c66565b60408101612fee8285612352565b6106076020830184612352565b602081016104b08284612cc5565b60408101612fee8285612cce565b602081016104b08284612cd7565b5190565b90815260200190565b919050565b60006104b08261304a565b151590565b90565b73ffffffffffffffffffffffffffffffffffffffff1690565b63ffffffff1690565b67ffffffffffffffff1690565b60ff1690565b60005b8381101561309a578181015183820152602001613082565b83811115611d9a5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b6130dc81613037565b81146109ba57600080fd5b6130dc81613047565b6130dc81613063565b6130dc8161307956fe47443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777347443a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203634206269747347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777347443a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777347443a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a723158202b4ce6dc7b75ee1eaa19a75ee44d279a85a96571a5bb268c9c15909c889ee1676c6578706572696d656e74616cf564736f6c63430005100040