ETH Price: $2,339.06 (-0.45%)
 

Overview

Max Total Supply

1,000,000,000 NTH

Holders

840

Transfers

-
29

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NTH

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

// File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/[email protected]/utils/cryptography/draft-EIP712.sol



pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/[email protected]/utils/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/math/Math.sol



pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

// File: @openzeppelin/[email protected]/utils/Arrays.sol



pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/[email protected]/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol



pragma solidity ^0.8.0;






/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Snapshot.sol



pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol



pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: NTH.sol


pragma solidity ^0.8.0;







contract NTH is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, Pausable, ERC20Permit {
    constructor() ERC20("NTH", "NTH") ERC20Permit("NTH") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }

    function snapshot() public onlyOwner {
        _snapshot();
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600381526020017f4e54480000000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e544800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e5448000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c92919062000868565b5080600490805190602001906200014592919062000868565b505050620001686200015c6200024760201b60201c565b6200024f60201b60201c565b6000600960146101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001eb8184846200031560201b60201c565b608081815250508061010081815250505050505050506200024133620002166200035160201b60201c565b600a62000224919062000b20565b633b9aca0062000235919062000c5d565b6200035a60201b60201c565b62000e41565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600083838346306040516020016200033295949392919062000999565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c49062000a18565b60405180910390fd5b620003e160008383620004d360201b60201c565b8060026000828254620003f5919062000a68565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044c919062000a68565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b3919062000a3a565b60405180910390a3620004cf600083836200054360201b60201c565b5050565b620004e36200054860201b60201c565b1562000526576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051d90620009f6565b60405180910390fd5b6200053e8383836200055f60201b620010791760201c565b505050565b505050565b6000600960149054906101000a900460ff16905090565b620005778383836200065a60201b620011331760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620005d457620005be826200065f60201b60201c565b620005ce620006c260201b60201c565b62000655565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000631576200061b836200065f60201b60201c565b6200062b620006c260201b60201c565b62000654565b62000642836200065f60201b60201c565b62000653826200065f60201b60201c565b5b5b505050565b505050565b620006bf600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620006b383620006e660201b60201c565b6200072e60201b60201c565b50565b620006e46006620006d8620007ba60201b60201c565b6200072e60201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000740620007c460201b60201c565b9050806200075784600001620007e260201b60201c565b1015620007b55782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b6000620007dd60086200085a60201b620011381760201c565b905090565b60008082805490501415620007fb576000905062000855565b81600183805490506200080f919062000cbe565b8154811062000847577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b600081600001549050919050565b828054620008769062000d4e565b90600052602060002090601f0160209004810192826200089a5760008555620008e6565b82601f10620008b557805160ff1916838001178555620008e6565b82800160010185558215620008e6579182015b82811115620008e5578251825591602001919060010190620008c8565b5b509050620008f59190620008f9565b5090565b5b8082111562000914576000816000905550600101620008fa565b5090565b620009238162000cf9565b82525050565b620009348162000d0d565b82525050565b60006200094960108362000a57565b9150620009568262000def565b602082019050919050565b600062000970601f8362000a57565b91506200097d8262000e18565b602082019050919050565b620009938162000d37565b82525050565b600060a082019050620009b0600083018862000929565b620009bf602083018762000929565b620009ce604083018662000929565b620009dd606083018562000988565b620009ec608083018462000918565b9695505050505050565b6000602082019050818103600083015262000a11816200093a565b9050919050565b6000602082019050818103600083015262000a338162000961565b9050919050565b600060208201905062000a51600083018462000988565b92915050565b600082825260208201905092915050565b600062000a758262000d37565b915062000a828362000d37565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000aba5762000ab962000d84565b5b828201905092915050565b6000808291508390505b600185111562000b175780860481111562000aef5762000aee62000d84565b5b600185161562000aff5780820291505b808102905062000b0f8562000de2565b945062000acf565b94509492505050565b600062000b2d8262000d37565b915062000b3a8362000d41565b925062000b697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b71565b905092915050565b60008262000b83576001905062000c56565b8162000b93576000905062000c56565b816001811462000bac576002811462000bb75762000bed565b600191505062000c56565b60ff84111562000bcc5762000bcb62000d84565b5b8360020a91508482111562000be65762000be562000d84565b5b5062000c56565b5060208310610133831016604e8410600b841016171562000c275782820a90508381111562000c215762000c2062000d84565b5b62000c56565b62000c36848484600162000ac5565b9250905081840481111562000c505762000c4f62000d84565b5b81810290505b9392505050565b600062000c6a8262000d37565b915062000c778362000d37565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cb35762000cb262000d84565b5b828202905092915050565b600062000ccb8262000d37565b915062000cd88362000d37565b92508282101562000cee5762000ced62000d84565b5b828203905092915050565b600062000d068262000d17565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000d6757607f821691505b6020821081141562000d7e5762000d7d62000db3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160a05160c05160e05161010051610120516138f162000e916000396000610dff015260006115f101526000611633015260006116120152600061159e015260006115c601526138f16000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb14610461578063d505accf14610491578063dd62ed3e146104ad578063f2fde38b146104dd5761018e565b80639711715a146103f7578063981b24d014610401578063a457c2d7146104315761018e565b8063715018a61461035b57806379cc6790146103655780637ecebe00146103815780638456cb59146103b15780638da5cb5b146103bb57806395d89b41146103d95761018e565b8063395093511161014b57806342966c681161012557806342966c68146102c15780634ee2cd7e146102dd5780635c975abb1461030d57806370a082311461032b5761018e565b8063395093511461026b5780633f4ba83a1461029b57806340c10f19146102a55761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff578063313ce5671461022f5780633644e5151461024d575b600080fd5b61019b6104f9565b6040516101a89190612d13565b60405180910390f35b6101cb60048036038101906101c6919061274a565b61058b565b6040516101d89190612be4565b60405180910390f35b6101e96105a9565b6040516101f69190613015565b60405180910390f35b6102196004803603810190610214919061265d565b6105b3565b6040516102269190612be4565b60405180910390f35b6102376106ab565b6040516102449190613030565b60405180910390f35b6102556106b4565b6040516102629190612bff565b60405180910390f35b6102856004803603810190610280919061274a565b6106c3565b6040516102929190612be4565b60405180910390f35b6102a361076f565b005b6102bf60048036038101906102ba919061274a565b6107f5565b005b6102db60048036038101906102d69190612786565b61087f565b005b6102f760048036038101906102f2919061274a565b610893565b6040516103049190613015565b60405180910390f35b610315610903565b6040516103229190612be4565b60405180910390f35b610345600480360381019061034091906125f8565b61091a565b6040516103529190613015565b60405180910390f35b610363610962565b005b61037f600480360381019061037a919061274a565b6109ea565b005b61039b600480360381019061039691906125f8565b610a65565b6040516103a89190613015565b60405180910390f35b6103b9610ab5565b005b6103c3610b3b565b6040516103d09190612bc9565b60405180910390f35b6103e1610b65565b6040516103ee9190612d13565b60405180910390f35b6103ff610bf7565b005b61041b60048036038101906104169190612786565b610c7e565b6040516104289190613015565b60405180910390f35b61044b6004803603810190610446919061274a565b610caf565b6040516104589190612be4565b60405180910390f35b61047b6004803603810190610476919061274a565b610d9a565b6040516104889190612be4565b60405180910390f35b6104ab60048036038101906104a691906126ac565b610db8565b005b6104c760048036038101906104c29190612621565b610efa565b6040516104d49190613015565b60405180910390f35b6104f760048036038101906104f291906125f8565b610f81565b005b606060038054610508906131bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610534906131bf565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b600061059f610598611146565b848461114e565b6001905092915050565b6000600254905090565b60006105c0848484611319565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061060b611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068290612ef5565b60405180910390fd5b61069f85610697611146565b85840361114e565b60019150509392505050565b60006012905090565b60006106be61159a565b905090565b60006107656106d0611146565b8484600160006106de611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107609190613072565b61114e565b6001905092915050565b610777611146565b73ffffffffffffffffffffffffffffffffffffffff16610795610b3b565b73ffffffffffffffffffffffffffffffffffffffff16146107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290612f15565b60405180910390fd5b6107f361165d565b565b6107fd611146565b73ffffffffffffffffffffffffffffffffffffffff1661081b610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086890612f15565b60405180910390fd5b61087b82826116ff565b5050565b61089061088a611146565b8261185f565b50565b60008060006108e084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a36565b91509150816108f7576108f28561091a565b6108f9565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61096a611146565b73ffffffffffffffffffffffffffffffffffffffff16610988610b3b565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590612f15565b60405180910390fd5b6109e86000611b52565b565b60006109fd836109f8611146565b610efa565b905081811015610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612f35565b60405180910390fd5b610a5683610a4e611146565b84840361114e565b610a60838361185f565b505050565b6000610aae600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611138565b9050919050565b610abd611146565b73ffffffffffffffffffffffffffffffffffffffff16610adb610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890612f15565b60405180910390fd5b610b39611c18565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b74906131bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba0906131bf565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b610bff611146565b73ffffffffffffffffffffffffffffffffffffffff16610c1d610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612f15565b60405180910390fd5b610c7b611cbb565b50565b6000806000610c8e846006611a36565b9150915081610ca457610c9f6105a9565b610ca6565b805b92505050919050565b60008060016000610cbe611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290612fd5565b60405180910390fd5b610d8f610d86611146565b8585840361114e565b600191505092915050565b6000610dae610da7611146565b8484611319565b6001905092915050565b83421115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290612e35565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000888888610e2a8c611d11565b89604051602001610e4096959493929190612c1a565b6040516020818303038152906040528051906020012090506000610e6382611d6f565b90506000610e7382878787611d89565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612ed5565b60405180910390fd5b610eee8a8a8a61114e565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f89611146565b73ffffffffffffffffffffffffffffffffffffffff16610fa7610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490612df5565b60405180910390fd5b61107681611b52565b50565b611084838383611133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110cf576110c282611db4565b6110ca611e07565b61112e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a5761110d83611db4565b611115611e07565b61112d565b61112383611db4565b61112c82611db4565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612f95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590612e15565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161130c9190613015565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090612f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612d75565b60405180910390fd5b611404838383611e1b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612e55565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151d9190613072565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115819190613015565b60405180910390a3611594848484611e73565b50505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614156115ec577f0000000000000000000000000000000000000000000000000000000000000000905061165a565b6116577f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611e78565b90505b90565b611665610903565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90612d95565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116e8611146565b6040516116f59190612bc9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690612ff5565b60405180910390fd5b61177b60008383611e1b565b806002600082825461178d9190613072565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e29190613072565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118479190613015565b60405180910390a361185b60008383611e73565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690612f55565b60405180910390fd5b6118db82600083611e1b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612db5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119b891906130f9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a1d9190613015565b60405180910390a3611a3183600084611e73565b505050565b60008060008411611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390612fb5565b60405180910390fd5b611a84611eb2565b841115611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612d55565b60405180910390fd5b6000611ade8585600001611ec390919063ffffffff16565b90508360000180549050811415611afc576000809250925050611b4b565b6001846001018281548110611b3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c20610903565b15611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790612e95565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ca4611146565b604051611cb19190612bc9565b60405180910390a1565b6000611cc76008611fe9565b6000611cd1611eb2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611d029190613015565b60405180910390a18091505090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611d5e81611138565b9150611d6981611fe9565b50919050565b6000611d82611d7c61159a565b83611fff565b9050919050565b6000806000611d9a87878787612032565b91509150611da78161213f565b8192505050949350505050565b611e04600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dff8361091a565b612490565b50565b611e196006611e146105a9565b612490565b565b611e23610903565b15611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612e95565b60405180910390fd5b611e6e838383611079565b505050565b505050565b60008383834630604051602001611e93959493929190612c7b565b6040516020818303038152906040528051906020012090509392505050565b6000611ebe6008611138565b905090565b60008083805490501415611eda5760009050611fe3565b600080848054905090505b80821015611f64576000611ef9838361250b565b905084868281548110611f35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611f4e57809150611f5e565b600181611f5b9190613072565b92505b50611ee5565b600082118015611fc257508385600184611f7e91906130f9565b81548110611fb5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611fdd57600182611fd491906130f9565b92505050611fe3565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612014929190612b92565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561206d576000600391509150612136565b601b8560ff16141580156120855750601c8560ff1614155b15612097576000600491509150612136565b6000600187878787604051600081526020016040526040516120bc9493929190612cce565b6020604051602081039080840390855afa1580156120de573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561212d57600060019250925050612136565b80600092509250505b94509492505050565b60006004811115612179577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121bd5761248d565b600160048111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890612d35565b60405180910390fd5b600260048111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156122e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90612dd5565b60405180910390fd5b6003600481111561235f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612398577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090612e75565b60405180910390fd5b600480811115612412577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561244b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390612eb5565b60405180910390fd5b5b50565b600061249a611eb2565b9050806124a984600001612531565b10156125065782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600282841861251c91906130c8565b8284166125299190613072565b905092915050565b60008082805490501415612548576000905061259f565b816001838054905061255a91906130f9565b81548110612591577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506125b38161385f565b92915050565b6000813590506125c881613876565b92915050565b6000813590506125dd8161388d565b92915050565b6000813590506125f2816138a4565b92915050565b60006020828403121561260a57600080fd5b6000612618848285016125a4565b91505092915050565b6000806040838503121561263457600080fd5b6000612642858286016125a4565b9250506020612653858286016125a4565b9150509250929050565b60008060006060848603121561267257600080fd5b6000612680868287016125a4565b9350506020612691868287016125a4565b92505060406126a2868287016125ce565b9150509250925092565b600080600080600080600060e0888a0312156126c757600080fd5b60006126d58a828b016125a4565b97505060206126e68a828b016125a4565b96505060406126f78a828b016125ce565b95505060606127088a828b016125ce565b94505060806127198a828b016125e3565b93505060a061272a8a828b016125b9565b92505060c061273b8a828b016125b9565b91505092959891949750929550565b6000806040838503121561275d57600080fd5b600061276b858286016125a4565b925050602061277c858286016125ce565b9150509250929050565b60006020828403121561279857600080fd5b60006127a6848285016125ce565b91505092915050565b6127b88161312d565b82525050565b6127c78161313f565b82525050565b6127d68161314b565b82525050565b6127ed6127e88261314b565b6131f1565b82525050565b60006127fe8261304b565b6128088185613056565b935061281881856020860161318c565b61282181613288565b840191505092915050565b6000612839601883613056565b915061284482613299565b602082019050919050565b600061285c601d83613056565b9150612867826132c2565b602082019050919050565b600061287f602383613056565b915061288a826132eb565b604082019050919050565b60006128a2601483613056565b91506128ad8261333a565b602082019050919050565b60006128c5602283613056565b91506128d082613363565b604082019050919050565b60006128e8601f83613056565b91506128f3826133b2565b602082019050919050565b600061290b602683613056565b9150612916826133db565b604082019050919050565b600061292e602283613056565b91506129398261342a565b604082019050919050565b6000612951600283613067565b915061295c82613479565b600282019050919050565b6000612974601d83613056565b915061297f826134a2565b602082019050919050565b6000612997602683613056565b91506129a2826134cb565b604082019050919050565b60006129ba602283613056565b91506129c58261351a565b604082019050919050565b60006129dd601083613056565b91506129e882613569565b602082019050919050565b6000612a00602283613056565b9150612a0b82613592565b604082019050919050565b6000612a23601e83613056565b9150612a2e826135e1565b602082019050919050565b6000612a46602883613056565b9150612a518261360a565b604082019050919050565b6000612a69602083613056565b9150612a7482613659565b602082019050919050565b6000612a8c602483613056565b9150612a9782613682565b604082019050919050565b6000612aaf602183613056565b9150612aba826136d1565b604082019050919050565b6000612ad2602583613056565b9150612add82613720565b604082019050919050565b6000612af5602483613056565b9150612b008261376f565b604082019050919050565b6000612b18601683613056565b9150612b23826137be565b602082019050919050565b6000612b3b602583613056565b9150612b46826137e7565b604082019050919050565b6000612b5e601f83613056565b9150612b6982613836565b602082019050919050565b612b7d81613175565b82525050565b612b8c8161317f565b82525050565b6000612b9d82612944565b9150612ba982856127dc565b602082019150612bb982846127dc565b6020820191508190509392505050565b6000602082019050612bde60008301846127af565b92915050565b6000602082019050612bf960008301846127be565b92915050565b6000602082019050612c1460008301846127cd565b92915050565b600060c082019050612c2f60008301896127cd565b612c3c60208301886127af565b612c4960408301876127af565b612c566060830186612b74565b612c636080830185612b74565b612c7060a0830184612b74565b979650505050505050565b600060a082019050612c9060008301886127cd565b612c9d60208301876127cd565b612caa60408301866127cd565b612cb76060830185612b74565b612cc460808301846127af565b9695505050505050565b6000608082019050612ce360008301876127cd565b612cf06020830186612b83565b612cfd60408301856127cd565b612d0a60608301846127cd565b95945050505050565b60006020820190508181036000830152612d2d81846127f3565b905092915050565b60006020820190508181036000830152612d4e8161282c565b9050919050565b60006020820190508181036000830152612d6e8161284f565b9050919050565b60006020820190508181036000830152612d8e81612872565b9050919050565b60006020820190508181036000830152612dae81612895565b9050919050565b60006020820190508181036000830152612dce816128b8565b9050919050565b60006020820190508181036000830152612dee816128db565b9050919050565b60006020820190508181036000830152612e0e816128fe565b9050919050565b60006020820190508181036000830152612e2e81612921565b9050919050565b60006020820190508181036000830152612e4e81612967565b9050919050565b60006020820190508181036000830152612e6e8161298a565b9050919050565b60006020820190508181036000830152612e8e816129ad565b9050919050565b60006020820190508181036000830152612eae816129d0565b9050919050565b60006020820190508181036000830152612ece816129f3565b9050919050565b60006020820190508181036000830152612eee81612a16565b9050919050565b60006020820190508181036000830152612f0e81612a39565b9050919050565b60006020820190508181036000830152612f2e81612a5c565b9050919050565b60006020820190508181036000830152612f4e81612a7f565b9050919050565b60006020820190508181036000830152612f6e81612aa2565b9050919050565b60006020820190508181036000830152612f8e81612ac5565b9050919050565b60006020820190508181036000830152612fae81612ae8565b9050919050565b60006020820190508181036000830152612fce81612b0b565b9050919050565b60006020820190508181036000830152612fee81612b2e565b9050919050565b6000602082019050818103600083015261300e81612b51565b9050919050565b600060208201905061302a6000830184612b74565b92915050565b60006020820190506130456000830184612b83565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061307d82613175565b915061308883613175565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130bd576130bc6131fb565b5b828201905092915050565b60006130d382613175565b91506130de83613175565b9250826130ee576130ed61322a565b5b828204905092915050565b600061310482613175565b915061310f83613175565b925082821015613122576131216131fb565b5b828203905092915050565b600061313882613155565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156131aa57808201518184015260208101905061318f565b838111156131b9576000848401525b50505050565b600060028204905060018216806131d757607f821691505b602082108114156131eb576131ea613259565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6138688161312d565b811461387357600080fd5b50565b61387f8161314b565b811461388a57600080fd5b50565b61389681613175565b81146138a157600080fd5b50565b6138ad8161317f565b81146138b857600080fd5b5056fea264697066735822122002411611863d2cfe6e02d7476b47ffd16bd8845cef7f93b48403e1941111328864736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de5780639711715a11610097578063a9059cbb11610071578063a9059cbb14610461578063d505accf14610491578063dd62ed3e146104ad578063f2fde38b146104dd5761018e565b80639711715a146103f7578063981b24d014610401578063a457c2d7146104315761018e565b8063715018a61461035b57806379cc6790146103655780637ecebe00146103815780638456cb59146103b15780638da5cb5b146103bb57806395d89b41146103d95761018e565b8063395093511161014b57806342966c681161012557806342966c68146102c15780634ee2cd7e146102dd5780635c975abb1461030d57806370a082311461032b5761018e565b8063395093511461026b5780633f4ba83a1461029b57806340c10f19146102a55761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806323b872dd146101ff578063313ce5671461022f5780633644e5151461024d575b600080fd5b61019b6104f9565b6040516101a89190612d13565b60405180910390f35b6101cb60048036038101906101c6919061274a565b61058b565b6040516101d89190612be4565b60405180910390f35b6101e96105a9565b6040516101f69190613015565b60405180910390f35b6102196004803603810190610214919061265d565b6105b3565b6040516102269190612be4565b60405180910390f35b6102376106ab565b6040516102449190613030565b60405180910390f35b6102556106b4565b6040516102629190612bff565b60405180910390f35b6102856004803603810190610280919061274a565b6106c3565b6040516102929190612be4565b60405180910390f35b6102a361076f565b005b6102bf60048036038101906102ba919061274a565b6107f5565b005b6102db60048036038101906102d69190612786565b61087f565b005b6102f760048036038101906102f2919061274a565b610893565b6040516103049190613015565b60405180910390f35b610315610903565b6040516103229190612be4565b60405180910390f35b610345600480360381019061034091906125f8565b61091a565b6040516103529190613015565b60405180910390f35b610363610962565b005b61037f600480360381019061037a919061274a565b6109ea565b005b61039b600480360381019061039691906125f8565b610a65565b6040516103a89190613015565b60405180910390f35b6103b9610ab5565b005b6103c3610b3b565b6040516103d09190612bc9565b60405180910390f35b6103e1610b65565b6040516103ee9190612d13565b60405180910390f35b6103ff610bf7565b005b61041b60048036038101906104169190612786565b610c7e565b6040516104289190613015565b60405180910390f35b61044b6004803603810190610446919061274a565b610caf565b6040516104589190612be4565b60405180910390f35b61047b6004803603810190610476919061274a565b610d9a565b6040516104889190612be4565b60405180910390f35b6104ab60048036038101906104a691906126ac565b610db8565b005b6104c760048036038101906104c29190612621565b610efa565b6040516104d49190613015565b60405180910390f35b6104f760048036038101906104f291906125f8565b610f81565b005b606060038054610508906131bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610534906131bf565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b5050505050905090565b600061059f610598611146565b848461114e565b6001905092915050565b6000600254905090565b60006105c0848484611319565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061060b611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068290612ef5565b60405180910390fd5b61069f85610697611146565b85840361114e565b60019150509392505050565b60006012905090565b60006106be61159a565b905090565b60006107656106d0611146565b8484600160006106de611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107609190613072565b61114e565b6001905092915050565b610777611146565b73ffffffffffffffffffffffffffffffffffffffff16610795610b3b565b73ffffffffffffffffffffffffffffffffffffffff16146107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290612f15565b60405180910390fd5b6107f361165d565b565b6107fd611146565b73ffffffffffffffffffffffffffffffffffffffff1661081b610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086890612f15565b60405180910390fd5b61087b82826116ff565b5050565b61089061088a611146565b8261185f565b50565b60008060006108e084600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a36565b91509150816108f7576108f28561091a565b6108f9565b805b9250505092915050565b6000600960149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61096a611146565b73ffffffffffffffffffffffffffffffffffffffff16610988610b3b565b73ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590612f15565b60405180910390fd5b6109e86000611b52565b565b60006109fd836109f8611146565b610efa565b905081811015610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990612f35565b60405180910390fd5b610a5683610a4e611146565b84840361114e565b610a60838361185f565b505050565b6000610aae600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611138565b9050919050565b610abd611146565b73ffffffffffffffffffffffffffffffffffffffff16610adb610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890612f15565b60405180910390fd5b610b39611c18565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b74906131bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba0906131bf565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b610bff611146565b73ffffffffffffffffffffffffffffffffffffffff16610c1d610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90612f15565b60405180910390fd5b610c7b611cbb565b50565b6000806000610c8e846006611a36565b9150915081610ca457610c9f6105a9565b610ca6565b805b92505050919050565b60008060016000610cbe611146565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290612fd5565b60405180910390fd5b610d8f610d86611146565b8585840361114e565b600191505092915050565b6000610dae610da7611146565b8484611319565b6001905092915050565b83421115610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290612e35565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610e2a8c611d11565b89604051602001610e4096959493929190612c1a565b6040516020818303038152906040528051906020012090506000610e6382611d6f565b90506000610e7382878787611d89565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612ed5565b60405180910390fd5b610eee8a8a8a61114e565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f89611146565b73ffffffffffffffffffffffffffffffffffffffff16610fa7610b3b565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff490612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490612df5565b60405180910390fd5b61107681611b52565b50565b611084838383611133565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110cf576110c282611db4565b6110ca611e07565b61112e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111a5761110d83611db4565b611115611e07565b61112d565b61112383611db4565b61112c82611db4565b5b5b505050565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590612f95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590612e15565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161130c9190613015565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090612f75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612d75565b60405180910390fd5b611404838383611e1b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612e55565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461151d9190613072565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115819190613015565b60405180910390a3611594848484611e73565b50505050565b60007f00000000000000000000000000000000000000000000000000000000000000014614156115ec577fdef55e7cc65dd570e9e3447dcb13ca548bcd7e03a9f761575e71daa408014519905061165a565b6116577f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fd9a1baef6df6ab184911a1681f7407b8ea0afaa31272c262395b0d4d6db1cea37fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611e78565b90505b90565b611665610903565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90612d95565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116e8611146565b6040516116f59190612bc9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690612ff5565b60405180910390fd5b61177b60008383611e1b565b806002600082825461178d9190613072565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e29190613072565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118479190613015565b60405180910390a361185b60008383611e73565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690612f55565b60405180910390fd5b6118db82600083611e1b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612db5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546119b891906130f9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a1d9190613015565b60405180910390a3611a3183600084611e73565b505050565b60008060008411611a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7390612fb5565b60405180910390fd5b611a84611eb2565b841115611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612d55565b60405180910390fd5b6000611ade8585600001611ec390919063ffffffff16565b90508360000180549050811415611afc576000809250925050611b4b565b6001846001018281548110611b3a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c20610903565b15611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790612e95565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ca4611146565b604051611cb19190612bc9565b60405180910390a1565b6000611cc76008611fe9565b6000611cd1611eb2565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051611d029190613015565b60405180910390a18091505090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611d5e81611138565b9150611d6981611fe9565b50919050565b6000611d82611d7c61159a565b83611fff565b9050919050565b6000806000611d9a87878787612032565b91509150611da78161213f565b8192505050949350505050565b611e04600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dff8361091a565b612490565b50565b611e196006611e146105a9565b612490565b565b611e23610903565b15611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90612e95565b60405180910390fd5b611e6e838383611079565b505050565b505050565b60008383834630604051602001611e93959493929190612c7b565b6040516020818303038152906040528051906020012090509392505050565b6000611ebe6008611138565b905090565b60008083805490501415611eda5760009050611fe3565b600080848054905090505b80821015611f64576000611ef9838361250b565b905084868281548110611f35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115611f4e57809150611f5e565b600181611f5b9190613072565b92505b50611ee5565b600082118015611fc257508385600184611f7e91906130f9565b81548110611fb5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15611fdd57600182611fd491906130f9565b92505050611fe3565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612014929190612b92565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561206d576000600391509150612136565b601b8560ff16141580156120855750601c8560ff1614155b15612097576000600491509150612136565b6000600187878787604051600081526020016040526040516120bc9493929190612cce565b6020604051602081039080840390855afa1580156120de573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561212d57600060019250925050612136565b80600092509250505b94509492505050565b60006004811115612179577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156121b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121bd5761248d565b600160048111156121f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890612d35565b60405180910390fd5b600260048111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156122e4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90612dd5565b60405180910390fd5b6003600481111561235f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612398577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d090612e75565b60405180910390fd5b600480811115612412577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561244b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561248c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248390612eb5565b60405180910390fd5b5b50565b600061249a611eb2565b9050806124a984600001612531565b10156125065782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600282841861251c91906130c8565b8284166125299190613072565b905092915050565b60008082805490501415612548576000905061259f565b816001838054905061255a91906130f9565b81548110612591577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506125b38161385f565b92915050565b6000813590506125c881613876565b92915050565b6000813590506125dd8161388d565b92915050565b6000813590506125f2816138a4565b92915050565b60006020828403121561260a57600080fd5b6000612618848285016125a4565b91505092915050565b6000806040838503121561263457600080fd5b6000612642858286016125a4565b9250506020612653858286016125a4565b9150509250929050565b60008060006060848603121561267257600080fd5b6000612680868287016125a4565b9350506020612691868287016125a4565b92505060406126a2868287016125ce565b9150509250925092565b600080600080600080600060e0888a0312156126c757600080fd5b60006126d58a828b016125a4565b97505060206126e68a828b016125a4565b96505060406126f78a828b016125ce565b95505060606127088a828b016125ce565b94505060806127198a828b016125e3565b93505060a061272a8a828b016125b9565b92505060c061273b8a828b016125b9565b91505092959891949750929550565b6000806040838503121561275d57600080fd5b600061276b858286016125a4565b925050602061277c858286016125ce565b9150509250929050565b60006020828403121561279857600080fd5b60006127a6848285016125ce565b91505092915050565b6127b88161312d565b82525050565b6127c78161313f565b82525050565b6127d68161314b565b82525050565b6127ed6127e88261314b565b6131f1565b82525050565b60006127fe8261304b565b6128088185613056565b935061281881856020860161318c565b61282181613288565b840191505092915050565b6000612839601883613056565b915061284482613299565b602082019050919050565b600061285c601d83613056565b9150612867826132c2565b602082019050919050565b600061287f602383613056565b915061288a826132eb565b604082019050919050565b60006128a2601483613056565b91506128ad8261333a565b602082019050919050565b60006128c5602283613056565b91506128d082613363565b604082019050919050565b60006128e8601f83613056565b91506128f3826133b2565b602082019050919050565b600061290b602683613056565b9150612916826133db565b604082019050919050565b600061292e602283613056565b91506129398261342a565b604082019050919050565b6000612951600283613067565b915061295c82613479565b600282019050919050565b6000612974601d83613056565b915061297f826134a2565b602082019050919050565b6000612997602683613056565b91506129a2826134cb565b604082019050919050565b60006129ba602283613056565b91506129c58261351a565b604082019050919050565b60006129dd601083613056565b91506129e882613569565b602082019050919050565b6000612a00602283613056565b9150612a0b82613592565b604082019050919050565b6000612a23601e83613056565b9150612a2e826135e1565b602082019050919050565b6000612a46602883613056565b9150612a518261360a565b604082019050919050565b6000612a69602083613056565b9150612a7482613659565b602082019050919050565b6000612a8c602483613056565b9150612a9782613682565b604082019050919050565b6000612aaf602183613056565b9150612aba826136d1565b604082019050919050565b6000612ad2602583613056565b9150612add82613720565b604082019050919050565b6000612af5602483613056565b9150612b008261376f565b604082019050919050565b6000612b18601683613056565b9150612b23826137be565b602082019050919050565b6000612b3b602583613056565b9150612b46826137e7565b604082019050919050565b6000612b5e601f83613056565b9150612b6982613836565b602082019050919050565b612b7d81613175565b82525050565b612b8c8161317f565b82525050565b6000612b9d82612944565b9150612ba982856127dc565b602082019150612bb982846127dc565b6020820191508190509392505050565b6000602082019050612bde60008301846127af565b92915050565b6000602082019050612bf960008301846127be565b92915050565b6000602082019050612c1460008301846127cd565b92915050565b600060c082019050612c2f60008301896127cd565b612c3c60208301886127af565b612c4960408301876127af565b612c566060830186612b74565b612c636080830185612b74565b612c7060a0830184612b74565b979650505050505050565b600060a082019050612c9060008301886127cd565b612c9d60208301876127cd565b612caa60408301866127cd565b612cb76060830185612b74565b612cc460808301846127af565b9695505050505050565b6000608082019050612ce360008301876127cd565b612cf06020830186612b83565b612cfd60408301856127cd565b612d0a60608301846127cd565b95945050505050565b60006020820190508181036000830152612d2d81846127f3565b905092915050565b60006020820190508181036000830152612d4e8161282c565b9050919050565b60006020820190508181036000830152612d6e8161284f565b9050919050565b60006020820190508181036000830152612d8e81612872565b9050919050565b60006020820190508181036000830152612dae81612895565b9050919050565b60006020820190508181036000830152612dce816128b8565b9050919050565b60006020820190508181036000830152612dee816128db565b9050919050565b60006020820190508181036000830152612e0e816128fe565b9050919050565b60006020820190508181036000830152612e2e81612921565b9050919050565b60006020820190508181036000830152612e4e81612967565b9050919050565b60006020820190508181036000830152612e6e8161298a565b9050919050565b60006020820190508181036000830152612e8e816129ad565b9050919050565b60006020820190508181036000830152612eae816129d0565b9050919050565b60006020820190508181036000830152612ece816129f3565b9050919050565b60006020820190508181036000830152612eee81612a16565b9050919050565b60006020820190508181036000830152612f0e81612a39565b9050919050565b60006020820190508181036000830152612f2e81612a5c565b9050919050565b60006020820190508181036000830152612f4e81612a7f565b9050919050565b60006020820190508181036000830152612f6e81612aa2565b9050919050565b60006020820190508181036000830152612f8e81612ac5565b9050919050565b60006020820190508181036000830152612fae81612ae8565b9050919050565b60006020820190508181036000830152612fce81612b0b565b9050919050565b60006020820190508181036000830152612fee81612b2e565b9050919050565b6000602082019050818103600083015261300e81612b51565b9050919050565b600060208201905061302a6000830184612b74565b92915050565b60006020820190506130456000830184612b83565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061307d82613175565b915061308883613175565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130bd576130bc6131fb565b5b828201905092915050565b60006130d382613175565b91506130de83613175565b9250826130ee576130ed61322a565b5b828204905092915050565b600061310482613175565b915061310f83613175565b925082821015613122576131216131fb565b5b828203905092915050565b600061313882613155565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156131aa57808201518184015260208101905061318f565b838111156131b9576000848401525b50505050565b600060028204905060018216806131d757607f821691505b602082108114156131eb576131ea613259565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6138688161312d565b811461387357600080fd5b50565b61387f8161314b565b811461388a57600080fd5b50565b61389681613175565b81146138a157600080fd5b50565b6138ad8161317f565b81146138b857600080fd5b5056fea264697066735822122002411611863d2cfe6e02d7476b47ffd16bd8845cef7f93b48403e1941111328864736f6c63430008040033

Deployed Bytecode Sourcemap

53925:763:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30935:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33102:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32055:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33753:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31897:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43253:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34654:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54288:65;;;:::i;:::-;;54361:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53079:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48687:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21880:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32226:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24721:94;;;:::i;:::-;;53489:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42995:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54219:61;;;:::i;:::-;;24070:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31154:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54144:67;;;:::i;:::-;;49057:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35372:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32566:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42284:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32804:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24970:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30935:100;30989:13;31022:5;31015:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30935:100;:::o;33102:169::-;33185:4;33202:39;33211:12;:10;:12::i;:::-;33225:7;33234:6;33202:8;:39::i;:::-;33259:4;33252:11;;33102:169;;;;:::o;32055:108::-;32116:7;32143:12;;32136:19;;32055:108;:::o;33753:492::-;33893:4;33910:36;33920:6;33928:9;33939:6;33910:9;:36::i;:::-;33959:24;33986:11;:19;33998:6;33986:19;;;;;;;;;;;;;;;:33;34006:12;:10;:12::i;:::-;33986:33;;;;;;;;;;;;;;;;33959:60;;34058:6;34038:16;:26;;34030:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;34145:57;34154:6;34162:12;:10;:12::i;:::-;34195:6;34176:16;:25;34145:8;:57::i;:::-;34233:4;34226:11;;;33753:492;;;;;:::o;31897:93::-;31955:5;31980:2;31973:9;;31897:93;:::o;43253:115::-;43313:7;43340:20;:18;:20::i;:::-;43333:27;;43253:115;:::o;34654:215::-;34742:4;34759:80;34768:12;:10;:12::i;:::-;34782:7;34828:10;34791:11;:25;34803:12;:10;:12::i;:::-;34791:25;;;;;;;;;;;;;;;:34;34817:7;34791:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;34759:8;:80::i;:::-;34857:4;34850:11;;34654:215;;;;:::o;54288:65::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54335:10:::1;:8;:10::i;:::-;54288:65::o:0;54361:95::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54431:17:::1;54437:2;54441:6;54431:5;:17::i;:::-;54361:95:::0;;:::o;53079:91::-;53135:27;53141:12;:10;:12::i;:::-;53155:6;53135:5;:27::i;:::-;53079:91;:::o;48687:266::-;48774:7;48795:16;48813:13;48830:55;48839:10;48851:24;:33;48876:7;48851:33;;;;;;;;;;;;;;;48830:8;:55::i;:::-;48794:91;;;;48905:11;:40;;48927:18;48937:7;48927:9;:18::i;:::-;48905:40;;;48919:5;48905:40;48898:47;;;;48687:266;;;;:::o;21880:86::-;21927:4;21951:7;;;;;;;;;;;21944:14;;21880:86;:::o;32226:127::-;32300:7;32327:9;:18;32337:7;32327:18;;;;;;;;;;;;;;;;32320:25;;32226:127;;;:::o;24721:94::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24786:21:::1;24804:1;24786:9;:21::i;:::-;24721:94::o:0;53489:368::-;53566:24;53593:32;53603:7;53612:12;:10;:12::i;:::-;53593:9;:32::i;:::-;53566:59;;53664:6;53644:16;:26;;53636:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53747:58;53756:7;53765:12;:10;:12::i;:::-;53798:6;53779:16;:25;53747:8;:58::i;:::-;53827:22;53833:7;53842:6;53827:5;:22::i;:::-;53489:368;;;:::o;42995:128::-;43064:7;43091:24;:7;:14;43099:5;43091:14;;;;;;;;;;;;;;;:22;:24::i;:::-;43084:31;;42995:128;;;:::o;54219:61::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54264:8:::1;:6;:8::i;:::-;54219:61::o:0;24070:87::-;24116:7;24143:6;;;;;;;;;;;24136:13;;24070:87;:::o;31154:104::-;31210:13;31243:7;31236:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31154:104;:::o;54144:67::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54192:11:::1;:9;:11::i;:::-;;54144:67::o:0;49057:234::-;49129:7;49150:16;49168:13;49185:43;49194:10;49206:21;49185:8;:43::i;:::-;49149:79;;;;49248:11;:35;;49270:13;:11;:13::i;:::-;49248:35;;;49262:5;49248:35;49241:42;;;;49057:234;;;:::o;35372:413::-;35465:4;35482:24;35509:11;:25;35521:12;:10;:12::i;:::-;35509:25;;;;;;;;;;;;;;;:34;35535:7;35509:34;;;;;;;;;;;;;;;;35482:61;;35582:15;35562:16;:35;;35554:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;35675:67;35684:12;:10;:12::i;:::-;35698:7;35726:15;35707:16;:34;35675:8;:67::i;:::-;35773:4;35766:11;;;35372:413;;;;:::o;32566:175::-;32652:4;32669:42;32679:12;:10;:12::i;:::-;32693:9;32704:6;32669:9;:42::i;:::-;32729:4;32722:11;;32566:175;;;;:::o;42284:645::-;42528:8;42509:15;:27;;42501:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42583:18;42625:16;42643:5;42650:7;42659:5;42666:16;42676:5;42666:9;:16::i;:::-;42684:8;42614:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42604:90;;;;;;42583:111;;42707:12;42722:28;42739:10;42722:16;:28::i;:::-;42707:43;;42763:14;42780:28;42794:4;42800:1;42803;42806;42780:13;:28::i;:::-;42763:45;;42837:5;42827:15;;:6;:15;;;42819:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42890:31;42899:5;42906:7;42915:5;42890:8;:31::i;:::-;42284:645;;;;;;;;;;:::o;32804:151::-;32893:7;32920:11;:18;32932:5;32920:18;;;;;;;;;;;;;;;:27;32939:7;32920:27;;;;;;;;;;;;;;;;32913:34;;32804:151;;;;:::o;24970:192::-;24301:12;:10;:12::i;:::-;24290:23;;:7;:5;:7::i;:::-;:23;;;24282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25079:1:::1;25059:22;;:8;:22;;;;25051:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25135:19;25145:8;25135:9;:19::i;:::-;24970:192:::0;:::o;49508:622::-;49651:44;49678:4;49684:2;49688:6;49651:26;:44::i;:::-;49728:1;49712:18;;:4;:18;;;49708:415;;;49768:26;49791:2;49768:22;:26::i;:::-;49809:28;:26;:28::i;:::-;49708:415;;;49873:1;49859:16;;:2;:16;;;49855:268;;;49913:28;49936:4;49913:22;:28::i;:::-;49956;:26;:28::i;:::-;49855:268;;;50042:28;50065:4;50042:22;:28::i;:::-;50085:26;50108:2;50085:22;:26::i;:::-;49855:268;49708:415;49508:622;;;:::o;40036:125::-;;;;:::o;16603:114::-;16668:7;16695;:14;;;16688:21;;16603:114;;;:::o;20586:98::-;20639:7;20666:10;20659:17;;20586:98;:::o;39056:380::-;39209:1;39192:19;;:5;:19;;;;39184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39290:1;39271:21;;:7;:21;;;;39263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39374:6;39344:11;:18;39356:5;39344:18;;;;;;;;;;;;;;;:27;39363:7;39344:27;;;;;;;;;;;;;;;:36;;;;39412:7;39396:32;;39405:5;39396:32;;;39421:6;39396:32;;;;;;:::i;:::-;;;;;;;;39056:380;;;:::o;36275:733::-;36433:1;36415:20;;:6;:20;;;;36407:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;36517:1;36496:23;;:9;:23;;;;36488:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36572:47;36593:6;36601:9;36612:6;36572:20;:47::i;:::-;36632:21;36656:9;:17;36666:6;36656:17;;;;;;;;;;;;;;;;36632:41;;36709:6;36692:13;:23;;36684:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;36830:6;36814:13;:22;36794:9;:17;36804:6;36794:17;;;;;;;;;;;;;;;:42;;;;36882:6;36858:9;:20;36868:9;36858:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;36923:9;36906:35;;36915:6;36906:35;;;36934:6;36906:35;;;;;;:::i;:::-;;;;;;;;36954:46;36974:6;36982:9;36993:6;36954:19;:46::i;:::-;36275:733;;;;:::o;12123:281::-;12176:7;12217:16;12200:13;:33;12196:201;;;12257:24;12250:31;;;;12196:201;12321:64;12343:10;12355:12;12369:15;12321:21;:64::i;:::-;12314:71;;12123:281;;:::o;22939:120::-;22483:8;:6;:8::i;:::-;22475:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23008:5:::1;22998:7;;:15;;;;;;;;;;;;;;;;;;23029:22;23038:12;:10;:12::i;:::-;23029:22;;;;;;:::i;:::-;;;;;;;;22939:120::o:0;37295:399::-;37398:1;37379:21;;:7;:21;;;;37371:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37449:49;37478:1;37482:7;37491:6;37449:20;:49::i;:::-;37527:6;37511:12;;:22;;;;;;;:::i;:::-;;;;;;;;37566:6;37544:9;:18;37554:7;37544:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;37609:7;37588:37;;37605:1;37588:37;;;37618:6;37588:37;;;;;;:::i;:::-;;;;;;;;37638:48;37666:1;37670:7;37679:6;37638:19;:48::i;:::-;37295:399;;:::o;38027:591::-;38130:1;38111:21;;:7;:21;;;;38103:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38183:49;38204:7;38221:1;38225:6;38183:20;:49::i;:::-;38245:22;38270:9;:18;38280:7;38270:18;;;;;;;;;;;;;;;;38245:43;;38325:6;38307:14;:24;;38299:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38444:6;38427:14;:23;38406:9;:18;38416:7;38406:18;;;;;;;;;;;;;;;:44;;;;38488:6;38472:12;;:22;;;;;;;:::i;:::-;;;;;;;;38538:1;38512:37;;38521:7;38512:37;;;38542:6;38512:37;;;;;;:::i;:::-;;;;;;;;38562:48;38582:7;38599:1;38603:6;38562:19;:48::i;:::-;38027:591;;;:::o;50138:1619::-;50227:4;50233:7;50274:1;50261:10;:14;50253:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50335:23;:21;:23::i;:::-;50321:10;:37;;50313:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;51531:13;51547:40;51576:10;51547:9;:13;;:28;;:40;;;;:::i;:::-;51531:56;;51613:9;:13;;:20;;;;51604:5;:29;51600:150;;;51658:5;51665:1;51650:17;;;;;;;51600:150;51708:4;51714:9;:16;;51731:5;51714:23;;;;;;;;;;;;;;;;;;;;;;;;51700:38;;;;;50138:1619;;;;;;:::o;25170:173::-;25226:16;25245:6;;;;;;;;;;;25226:25;;25271:8;25262:6;;:17;;;;;;;;;;;;;;;;;;25326:8;25295:40;;25316:8;25295:40;;;;;;;;;;;;25170:173;;:::o;22680:118::-;22206:8;:6;:8::i;:::-;22205:9;22197:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;22750:4:::1;22740:7;;:14;;;;;;;;;;;;;;;;;;22770:20;22777:12;:10;:12::i;:::-;22770:20;;;;;;:::i;:::-;;;;;;;;22680:118::o:0;48159:223::-;48206:7;48226:30;:18;:28;:30::i;:::-;48269:17;48289:23;:21;:23::i;:::-;48269:43;;48328:19;48337:9;48328:19;;;;;;:::i;:::-;;;;;;;;48365:9;48358:16;;;48159:223;:::o;43506:207::-;43566:15;43594:30;43627:7;:14;43635:5;43627:14;;;;;;;;;;;;;;;43594:47;;43662:15;:5;:13;:15::i;:::-;43652:25;;43688:17;:5;:15;:17::i;:::-;43506:207;;;;:::o;13317:167::-;13394:7;13421:55;13443:20;:18;:20::i;:::-;13465:10;13421:21;:55::i;:::-;13414:62;;13317:167;;;:::o;7642:279::-;7770:7;7791:17;7810:18;7832:25;7843:4;7849:1;7852;7855;7832:10;:25::i;:::-;7790:67;;;;7868:18;7880:5;7868:11;:18::i;:::-;7904:9;7897:16;;;;7642:279;;;;;;:::o;51765:146::-;51833:70;51849:24;:33;51874:7;51849:33;;;;;;;;;;;;;;;51884:18;51894:7;51884:9;:18::i;:::-;51833:15;:70::i;:::-;51765:146;:::o;51919:118::-;51976:53;51992:21;52015:13;:11;:13::i;:::-;51976:15;:53::i;:::-;51919:118::o;54464:221::-;22206:8;:6;:8::i;:::-;22205:9;22197:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;54633:44:::1;54660:4;54666:2;54670:6;54633:26;:44::i;:::-;54464:221:::0;;;:::o;40765:124::-;;;;:::o;12412:263::-;12556:7;12604:8;12614;12624:11;12637:13;12660:4;12593:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12583:84;;;;;;12576:91;;12412:263;;;;;:::o;48448:127::-;48512:7;48539:28;:18;:26;:28::i;:::-;48532:35;;48448:127;:::o;19030:918::-;19119:7;19159:1;19143:5;:12;;;;:17;19139:58;;;19184:1;19177:8;;;;19139:58;19209:11;19235:12;19250:5;:12;;;;19235:27;;19275:424;19288:4;19282:3;:10;19275:424;;;19309:11;19323:23;19336:3;19341:4;19323:12;:23::i;:::-;19309:37;;19580:7;19567:5;19573:3;19567:10;;;;;;;;;;;;;;;;;;;;;;;;:20;19563:125;;;19615:3;19608:10;;19563:125;;;19671:1;19665:3;:7;;;;:::i;:::-;19659:13;;19563:125;19275:424;;;;19825:1;19819:3;:7;:36;;;;;19848:7;19830:5;19842:1;19836:3;:7;;;;:::i;:::-;19830:14;;;;;;;;;;;;;;;;;;;;;;;;:25;19819:36;19815:126;;;19885:1;19879:3;:7;;;;:::i;:::-;19872:14;;;;;;19815:126;19926:3;19919:10;;;;19030:918;;;;;:::o;16725:127::-;16832:1;16814:7;:14;;;:19;;;;;;;;;;;16725:127;:::o;8840:196::-;8933:7;8999:15;9016:10;8970:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8960:68;;;;;;8953:75;;8840:196;;;;:::o;5871:1632::-;6002:7;6011:12;6936:66;6931:1;6923:10;;:79;6919:163;;;7035:1;7039:30;7019:51;;;;;;6919:163;7101:2;7096:1;:7;;;;:18;;;;;7112:2;7107:1;:7;;;;7096:18;7092:102;;;7147:1;7151:30;7131:51;;;;;;7092:102;7291:14;7308:24;7318:4;7324:1;7327;7330;7308:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7291:41;;7365:1;7347:20;;:6;:20;;;7343:103;;;7400:1;7404:29;7384:50;;;;;;;7343:103;7466:6;7474:20;7458:37;;;;;5871:1632;;;;;;;;:::o;533:643::-;611:20;602:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;598:571;;;648:7;;598:571;709:29;700:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;696:473;;;755:34;;;;;;;;;;:::i;:::-;;;;;;;;696:473;820:35;811:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;807:362;;;872:41;;;;;;;;;;:::i;:::-;;;;;;;;807:362;944:30;935:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;931:238;;;991:44;;;;;;;;;;:::i;:::-;;;;;;;;931:238;1066:30;1057:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;1053:116;;;1113:44;;;;;;;;;;:::i;:::-;;;;;;;;1053:116;533:643;;:::o;52045:310::-;52140:17;52160:23;:21;:23::i;:::-;52140:43;;52231:9;52198:30;52214:9;:13;;52198:15;:30::i;:::-;:42;52194:154;;;52257:9;:13;;52276:9;52257:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52301:9;:16;;52323:12;52301:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52194:154;52045:310;;;:::o;17861:156::-;17923:7;18008:1;18003;17999;:5;17998:11;;;;:::i;:::-;17993:1;17989;:5;17988:21;;;;:::i;:::-;17981:28;;17861:156;;;;:::o;52363:212::-;52433:7;52471:1;52457:3;:10;;;;:15;52453:115;;;52496:1;52489:8;;;;52453:115;52537:3;52554:1;52541:3;:10;;;;:14;;;;:::i;:::-;52537:19;;;;;;;;;;;;;;;;;;;;;;;;52530:26;;52363:212;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:139::-;343:5;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;349:87;;;;:::o;442:135::-;486:5;524:6;511:20;502:29;;540:31;565:5;540:31;:::i;:::-;492:85;;;;:::o;583:262::-;642:6;691:2;679:9;670:7;666:23;662:32;659:2;;;707:1;704;697:12;659:2;750:1;775:53;820:7;811:6;800:9;796:22;775:53;:::i;:::-;765:63;;721:117;649:196;;;;:::o;851:407::-;919:6;927;976:2;964:9;955:7;951:23;947:32;944:2;;;992:1;989;982:12;944:2;1035:1;1060:53;1105:7;1096:6;1085:9;1081:22;1060:53;:::i;:::-;1050:63;;1006:117;1162:2;1188:53;1233:7;1224:6;1213:9;1209:22;1188:53;:::i;:::-;1178:63;;1133:118;934:324;;;;;:::o;1264:552::-;1341:6;1349;1357;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1422:1;1419;1412:12;1374:2;1465:1;1490:53;1535:7;1526:6;1515:9;1511:22;1490:53;:::i;:::-;1480:63;;1436:117;1592:2;1618:53;1663:7;1654:6;1643:9;1639:22;1618:53;:::i;:::-;1608:63;;1563:118;1720:2;1746:53;1791:7;1782:6;1771:9;1767:22;1746:53;:::i;:::-;1736:63;;1691:118;1364:452;;;;;:::o;1822:1132::-;1933:6;1941;1949;1957;1965;1973;1981;2030:3;2018:9;2009:7;2005:23;2001:33;1998:2;;;2047:1;2044;2037:12;1998:2;2090:1;2115:53;2160:7;2151:6;2140:9;2136:22;2115:53;:::i;:::-;2105:63;;2061:117;2217:2;2243:53;2288:7;2279:6;2268:9;2264:22;2243:53;:::i;:::-;2233:63;;2188:118;2345:2;2371:53;2416:7;2407:6;2396:9;2392:22;2371:53;:::i;:::-;2361:63;;2316:118;2473:2;2499:53;2544:7;2535:6;2524:9;2520:22;2499:53;:::i;:::-;2489:63;;2444:118;2601:3;2628:51;2671:7;2662:6;2651:9;2647:22;2628:51;:::i;:::-;2618:61;;2572:117;2728:3;2755:53;2800:7;2791:6;2780:9;2776:22;2755:53;:::i;:::-;2745:63;;2699:119;2857:3;2884:53;2929:7;2920:6;2909:9;2905:22;2884:53;:::i;:::-;2874:63;;2828:119;1988:966;;;;;;;;;;:::o;2960:407::-;3028:6;3036;3085:2;3073:9;3064:7;3060:23;3056:32;3053:2;;;3101:1;3098;3091:12;3053:2;3144:1;3169:53;3214:7;3205:6;3194:9;3190:22;3169:53;:::i;:::-;3159:63;;3115:117;3271:2;3297:53;3342:7;3333:6;3322:9;3318:22;3297:53;:::i;:::-;3287:63;;3242:118;3043:324;;;;;:::o;3373:262::-;3432:6;3481:2;3469:9;3460:7;3456:23;3452:32;3449:2;;;3497:1;3494;3487:12;3449:2;3540:1;3565:53;3610:7;3601:6;3590:9;3586:22;3565:53;:::i;:::-;3555:63;;3511:117;3439:196;;;;:::o;3641:118::-;3728:24;3746:5;3728:24;:::i;:::-;3723:3;3716:37;3706:53;;:::o;3765:109::-;3846:21;3861:5;3846:21;:::i;:::-;3841:3;3834:34;3824:50;;:::o;3880:118::-;3967:24;3985:5;3967:24;:::i;:::-;3962:3;3955:37;3945:53;;:::o;4004:157::-;4109:45;4129:24;4147:5;4129:24;:::i;:::-;4109:45;:::i;:::-;4104:3;4097:58;4087:74;;:::o;4167:364::-;4255:3;4283:39;4316:5;4283:39;:::i;:::-;4338:71;4402:6;4397:3;4338:71;:::i;:::-;4331:78;;4418:52;4463:6;4458:3;4451:4;4444:5;4440:16;4418:52;:::i;:::-;4495:29;4517:6;4495:29;:::i;:::-;4490:3;4486:39;4479:46;;4259:272;;;;;:::o;4537:366::-;4679:3;4700:67;4764:2;4759:3;4700:67;:::i;:::-;4693:74;;4776:93;4865:3;4776:93;:::i;:::-;4894:2;4889:3;4885:12;4878:19;;4683:220;;;:::o;4909:366::-;5051:3;5072:67;5136:2;5131:3;5072:67;:::i;:::-;5065:74;;5148:93;5237:3;5148:93;:::i;:::-;5266:2;5261:3;5257:12;5250:19;;5055:220;;;:::o;5281:366::-;5423:3;5444:67;5508:2;5503:3;5444:67;:::i;:::-;5437:74;;5520:93;5609:3;5520:93;:::i;:::-;5638:2;5633:3;5629:12;5622:19;;5427:220;;;:::o;5653:366::-;5795:3;5816:67;5880:2;5875:3;5816:67;:::i;:::-;5809:74;;5892:93;5981:3;5892:93;:::i;:::-;6010:2;6005:3;6001:12;5994:19;;5799:220;;;:::o;6025:366::-;6167:3;6188:67;6252:2;6247:3;6188:67;:::i;:::-;6181:74;;6264:93;6353:3;6264:93;:::i;:::-;6382:2;6377:3;6373:12;6366:19;;6171:220;;;:::o;6397:366::-;6539:3;6560:67;6624:2;6619:3;6560:67;:::i;:::-;6553:74;;6636:93;6725:3;6636:93;:::i;:::-;6754:2;6749:3;6745:12;6738:19;;6543:220;;;:::o;6769:366::-;6911:3;6932:67;6996:2;6991:3;6932:67;:::i;:::-;6925:74;;7008:93;7097:3;7008:93;:::i;:::-;7126:2;7121:3;7117:12;7110:19;;6915:220;;;:::o;7141:366::-;7283:3;7304:67;7368:2;7363:3;7304:67;:::i;:::-;7297:74;;7380:93;7469:3;7380:93;:::i;:::-;7498:2;7493:3;7489:12;7482:19;;7287:220;;;:::o;7513:400::-;7673:3;7694:84;7776:1;7771:3;7694:84;:::i;:::-;7687:91;;7787:93;7876:3;7787:93;:::i;:::-;7905:1;7900:3;7896:11;7889:18;;7677:236;;;:::o;7919:366::-;8061:3;8082:67;8146:2;8141:3;8082:67;:::i;:::-;8075:74;;8158:93;8247:3;8158:93;:::i;:::-;8276:2;8271:3;8267:12;8260:19;;8065:220;;;:::o;8291:366::-;8433:3;8454:67;8518:2;8513:3;8454:67;:::i;:::-;8447:74;;8530:93;8619:3;8530:93;:::i;:::-;8648:2;8643:3;8639:12;8632:19;;8437:220;;;:::o;8663:366::-;8805:3;8826:67;8890:2;8885:3;8826:67;:::i;:::-;8819:74;;8902:93;8991:3;8902:93;:::i;:::-;9020:2;9015:3;9011:12;9004:19;;8809:220;;;:::o;9035:366::-;9177:3;9198:67;9262:2;9257:3;9198:67;:::i;:::-;9191:74;;9274:93;9363:3;9274:93;:::i;:::-;9392:2;9387:3;9383:12;9376:19;;9181:220;;;:::o;9407:366::-;9549:3;9570:67;9634:2;9629:3;9570:67;:::i;:::-;9563:74;;9646:93;9735:3;9646:93;:::i;:::-;9764:2;9759:3;9755:12;9748:19;;9553:220;;;:::o;9779:366::-;9921:3;9942:67;10006:2;10001:3;9942:67;:::i;:::-;9935:74;;10018:93;10107:3;10018:93;:::i;:::-;10136:2;10131:3;10127:12;10120:19;;9925:220;;;:::o;10151:366::-;10293:3;10314:67;10378:2;10373:3;10314:67;:::i;:::-;10307:74;;10390:93;10479:3;10390:93;:::i;:::-;10508:2;10503:3;10499:12;10492:19;;10297:220;;;:::o;10523:366::-;10665:3;10686:67;10750:2;10745:3;10686:67;:::i;:::-;10679:74;;10762:93;10851:3;10762:93;:::i;:::-;10880:2;10875:3;10871:12;10864:19;;10669:220;;;:::o;10895:366::-;11037:3;11058:67;11122:2;11117:3;11058:67;:::i;:::-;11051:74;;11134:93;11223:3;11134:93;:::i;:::-;11252:2;11247:3;11243:12;11236:19;;11041:220;;;:::o;11267:366::-;11409:3;11430:67;11494:2;11489:3;11430:67;:::i;:::-;11423:74;;11506:93;11595:3;11506:93;:::i;:::-;11624:2;11619:3;11615:12;11608:19;;11413:220;;;:::o;11639:366::-;11781:3;11802:67;11866:2;11861:3;11802:67;:::i;:::-;11795:74;;11878:93;11967:3;11878:93;:::i;:::-;11996:2;11991:3;11987:12;11980:19;;11785:220;;;:::o;12011:366::-;12153:3;12174:67;12238:2;12233:3;12174:67;:::i;:::-;12167:74;;12250:93;12339:3;12250:93;:::i;:::-;12368:2;12363:3;12359:12;12352:19;;12157:220;;;:::o;12383:366::-;12525:3;12546:67;12610:2;12605:3;12546:67;:::i;:::-;12539:74;;12622:93;12711:3;12622:93;:::i;:::-;12740:2;12735:3;12731:12;12724:19;;12529:220;;;:::o;12755:366::-;12897:3;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;12994:93;13083:3;12994:93;:::i;:::-;13112:2;13107:3;13103:12;13096:19;;12901:220;;;:::o;13127:366::-;13269:3;13290:67;13354:2;13349:3;13290:67;:::i;:::-;13283:74;;13366:93;13455:3;13366:93;:::i;:::-;13484:2;13479:3;13475:12;13468:19;;13273:220;;;:::o;13499:118::-;13586:24;13604:5;13586:24;:::i;:::-;13581:3;13574:37;13564:53;;:::o;13623:112::-;13706:22;13722:5;13706:22;:::i;:::-;13701:3;13694:35;13684:51;;:::o;13741:663::-;13982:3;14004:148;14148:3;14004:148;:::i;:::-;13997:155;;14162:75;14233:3;14224:6;14162:75;:::i;:::-;14262:2;14257:3;14253:12;14246:19;;14275:75;14346:3;14337:6;14275:75;:::i;:::-;14375:2;14370:3;14366:12;14359:19;;14395:3;14388:10;;13986:418;;;;;:::o;14410:222::-;14503:4;14541:2;14530:9;14526:18;14518:26;;14554:71;14622:1;14611:9;14607:17;14598:6;14554:71;:::i;:::-;14508:124;;;;:::o;14638:210::-;14725:4;14763:2;14752:9;14748:18;14740:26;;14776:65;14838:1;14827:9;14823:17;14814:6;14776:65;:::i;:::-;14730:118;;;;:::o;14854:222::-;14947:4;14985:2;14974:9;14970:18;14962:26;;14998:71;15066:1;15055:9;15051:17;15042:6;14998:71;:::i;:::-;14952:124;;;;:::o;15082:775::-;15315:4;15353:3;15342:9;15338:19;15330:27;;15367:71;15435:1;15424:9;15420:17;15411:6;15367:71;:::i;:::-;15448:72;15516:2;15505:9;15501:18;15492:6;15448:72;:::i;:::-;15530;15598:2;15587:9;15583:18;15574:6;15530:72;:::i;:::-;15612;15680:2;15669:9;15665:18;15656:6;15612:72;:::i;:::-;15694:73;15762:3;15751:9;15747:19;15738:6;15694:73;:::i;:::-;15777;15845:3;15834:9;15830:19;15821:6;15777:73;:::i;:::-;15320:537;;;;;;;;;:::o;15863:664::-;16068:4;16106:3;16095:9;16091:19;16083:27;;16120:71;16188:1;16177:9;16173:17;16164:6;16120:71;:::i;:::-;16201:72;16269:2;16258:9;16254:18;16245:6;16201:72;:::i;:::-;16283;16351:2;16340:9;16336:18;16327:6;16283:72;:::i;:::-;16365;16433:2;16422:9;16418:18;16409:6;16365:72;:::i;:::-;16447:73;16515:3;16504:9;16500:19;16491:6;16447:73;:::i;:::-;16073:454;;;;;;;;:::o;16533:545::-;16706:4;16744:3;16733:9;16729:19;16721:27;;16758:71;16826:1;16815:9;16811:17;16802:6;16758:71;:::i;:::-;16839:68;16903:2;16892:9;16888:18;16879:6;16839:68;:::i;:::-;16917:72;16985:2;16974:9;16970:18;16961:6;16917:72;:::i;:::-;16999;17067:2;17056:9;17052:18;17043:6;16999:72;:::i;:::-;16711:367;;;;;;;:::o;17084:313::-;17197:4;17235:2;17224:9;17220:18;17212:26;;17284:9;17278:4;17274:20;17270:1;17259:9;17255:17;17248:47;17312:78;17385:4;17376:6;17312:78;:::i;:::-;17304:86;;17202:195;;;;:::o;17403:419::-;17569:4;17607:2;17596:9;17592:18;17584:26;;17656:9;17650:4;17646:20;17642:1;17631:9;17627:17;17620:47;17684:131;17810:4;17684:131;:::i;:::-;17676:139;;17574:248;;;:::o;17828:419::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17999:248;;;:::o;18253:419::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18506:9;18500:4;18496:20;18492:1;18481:9;18477:17;18470:47;18534:131;18660:4;18534:131;:::i;:::-;18526:139;;18424:248;;;:::o;18678:419::-;18844:4;18882:2;18871:9;18867:18;18859:26;;18931:9;18925:4;18921:20;18917:1;18906:9;18902:17;18895:47;18959:131;19085:4;18959:131;:::i;:::-;18951:139;;18849:248;;;:::o;19103:419::-;19269:4;19307:2;19296:9;19292:18;19284:26;;19356:9;19350:4;19346:20;19342:1;19331:9;19327:17;19320:47;19384:131;19510:4;19384:131;:::i;:::-;19376:139;;19274:248;;;:::o;19528:419::-;19694:4;19732:2;19721:9;19717:18;19709:26;;19781:9;19775:4;19771:20;19767:1;19756:9;19752:17;19745:47;19809:131;19935:4;19809:131;:::i;:::-;19801:139;;19699:248;;;:::o;19953:419::-;20119:4;20157:2;20146:9;20142:18;20134:26;;20206:9;20200:4;20196:20;20192:1;20181:9;20177:17;20170:47;20234:131;20360:4;20234:131;:::i;:::-;20226:139;;20124:248;;;:::o;20378:419::-;20544:4;20582:2;20571:9;20567:18;20559:26;;20631:9;20625:4;20621:20;20617:1;20606:9;20602:17;20595:47;20659:131;20785:4;20659:131;:::i;:::-;20651:139;;20549:248;;;:::o;20803:419::-;20969:4;21007:2;20996:9;20992:18;20984:26;;21056:9;21050:4;21046:20;21042:1;21031:9;21027:17;21020:47;21084:131;21210:4;21084:131;:::i;:::-;21076:139;;20974:248;;;:::o;21228:419::-;21394:4;21432:2;21421:9;21417:18;21409:26;;21481:9;21475:4;21471:20;21467:1;21456:9;21452:17;21445:47;21509:131;21635:4;21509:131;:::i;:::-;21501:139;;21399:248;;;:::o;21653:419::-;21819:4;21857:2;21846:9;21842:18;21834:26;;21906:9;21900:4;21896:20;21892:1;21881:9;21877:17;21870:47;21934:131;22060:4;21934:131;:::i;:::-;21926:139;;21824:248;;;:::o;22078:419::-;22244:4;22282:2;22271:9;22267:18;22259:26;;22331:9;22325:4;22321:20;22317:1;22306:9;22302:17;22295:47;22359:131;22485:4;22359:131;:::i;:::-;22351:139;;22249:248;;;:::o;22503:419::-;22669:4;22707:2;22696:9;22692:18;22684:26;;22756:9;22750:4;22746:20;22742:1;22731:9;22727:17;22720:47;22784:131;22910:4;22784:131;:::i;:::-;22776:139;;22674:248;;;:::o;22928:419::-;23094:4;23132:2;23121:9;23117:18;23109:26;;23181:9;23175:4;23171:20;23167:1;23156:9;23152:17;23145:47;23209:131;23335:4;23209:131;:::i;:::-;23201:139;;23099:248;;;:::o;23353:419::-;23519:4;23557:2;23546:9;23542:18;23534:26;;23606:9;23600:4;23596:20;23592:1;23581:9;23577:17;23570:47;23634:131;23760:4;23634:131;:::i;:::-;23626:139;;23524:248;;;:::o;23778:419::-;23944:4;23982:2;23971:9;23967:18;23959:26;;24031:9;24025:4;24021:20;24017:1;24006:9;24002:17;23995:47;24059:131;24185:4;24059:131;:::i;:::-;24051:139;;23949:248;;;:::o;24203:419::-;24369:4;24407:2;24396:9;24392:18;24384:26;;24456:9;24450:4;24446:20;24442:1;24431:9;24427:17;24420:47;24484:131;24610:4;24484:131;:::i;:::-;24476:139;;24374:248;;;:::o;24628:419::-;24794:4;24832:2;24821:9;24817:18;24809:26;;24881:9;24875:4;24871:20;24867:1;24856:9;24852:17;24845:47;24909:131;25035:4;24909:131;:::i;:::-;24901:139;;24799:248;;;:::o;25053:419::-;25219:4;25257:2;25246:9;25242:18;25234:26;;25306:9;25300:4;25296:20;25292:1;25281:9;25277:17;25270:47;25334:131;25460:4;25334:131;:::i;:::-;25326:139;;25224:248;;;:::o;25478:419::-;25644:4;25682:2;25671:9;25667:18;25659:26;;25731:9;25725:4;25721:20;25717:1;25706:9;25702:17;25695:47;25759:131;25885:4;25759:131;:::i;:::-;25751:139;;25649:248;;;:::o;25903:419::-;26069:4;26107:2;26096:9;26092:18;26084:26;;26156:9;26150:4;26146:20;26142:1;26131:9;26127:17;26120:47;26184:131;26310:4;26184:131;:::i;:::-;26176:139;;26074:248;;;:::o;26328:419::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26499:248;;;:::o;26753:419::-;26919:4;26957:2;26946:9;26942:18;26934:26;;27006:9;27000:4;26996:20;26992:1;26981:9;26977:17;26970:47;27034:131;27160:4;27034:131;:::i;:::-;27026:139;;26924:248;;;:::o;27178:222::-;27271:4;27309:2;27298:9;27294:18;27286:26;;27322:71;27390:1;27379:9;27375:17;27366:6;27322:71;:::i;:::-;27276:124;;;;:::o;27406:214::-;27495:4;27533:2;27522:9;27518:18;27510:26;;27546:67;27610:1;27599:9;27595:17;27586:6;27546:67;:::i;:::-;27500:120;;;;:::o;27626:99::-;27678:6;27712:5;27706:12;27696:22;;27685:40;;;:::o;27731:169::-;27815:11;27849:6;27844:3;27837:19;27889:4;27884:3;27880:14;27865:29;;27827:73;;;;:::o;27906:148::-;28008:11;28045:3;28030:18;;28020:34;;;;:::o;28060:305::-;28100:3;28119:20;28137:1;28119:20;:::i;:::-;28114:25;;28153:20;28171:1;28153:20;:::i;:::-;28148:25;;28307:1;28239:66;28235:74;28232:1;28229:81;28226:2;;;28313:18;;:::i;:::-;28226:2;28357:1;28354;28350:9;28343:16;;28104:261;;;;:::o;28371:185::-;28411:1;28428:20;28446:1;28428:20;:::i;:::-;28423:25;;28462:20;28480:1;28462:20;:::i;:::-;28457:25;;28501:1;28491:2;;28506:18;;:::i;:::-;28491:2;28548:1;28545;28541:9;28536:14;;28413:143;;;;:::o;28562:191::-;28602:4;28622:20;28640:1;28622:20;:::i;:::-;28617:25;;28656:20;28674:1;28656:20;:::i;:::-;28651:25;;28695:1;28692;28689:8;28686:2;;;28700:18;;:::i;:::-;28686:2;28745:1;28742;28738:9;28730:17;;28607:146;;;;:::o;28759:96::-;28796:7;28825:24;28843:5;28825:24;:::i;:::-;28814:35;;28804:51;;;:::o;28861:90::-;28895:7;28938:5;28931:13;28924:21;28913:32;;28903:48;;;:::o;28957:77::-;28994:7;29023:5;29012:16;;29002:32;;;:::o;29040:126::-;29077:7;29117:42;29110:5;29106:54;29095:65;;29085:81;;;:::o;29172:77::-;29209:7;29238:5;29227:16;;29217:32;;;:::o;29255:86::-;29290:7;29330:4;29323:5;29319:16;29308:27;;29298:43;;;:::o;29347:307::-;29415:1;29425:113;29439:6;29436:1;29433:13;29425:113;;;29524:1;29519:3;29515:11;29509:18;29505:1;29500:3;29496:11;29489:39;29461:2;29458:1;29454:10;29449:15;;29425:113;;;29556:6;29553:1;29550:13;29547:2;;;29636:1;29627:6;29622:3;29618:16;29611:27;29547:2;29396:258;;;;:::o;29660:320::-;29704:6;29741:1;29735:4;29731:12;29721:22;;29788:1;29782:4;29778:12;29809:18;29799:2;;29865:4;29857:6;29853:17;29843:27;;29799:2;29927;29919:6;29916:14;29896:18;29893:38;29890:2;;;29946:18;;:::i;:::-;29890:2;29711:269;;;;:::o;29986:79::-;30025:7;30054:5;30043:16;;30033:32;;;:::o;30071:180::-;30119:77;30116:1;30109:88;30216:4;30213:1;30206:15;30240:4;30237:1;30230:15;30257:180;30305:77;30302:1;30295:88;30402:4;30399:1;30392:15;30426:4;30423:1;30416:15;30443:180;30491:77;30488:1;30481:88;30588:4;30585:1;30578:15;30612:4;30609:1;30602:15;30629:102;30670:6;30721:2;30717:7;30712:2;30705:5;30701:14;30697:28;30687:38;;30677:54;;;:::o;30737:174::-;30877:26;30873:1;30865:6;30861:14;30854:50;30843:68;:::o;30917:179::-;31057:31;31053:1;31045:6;31041:14;31034:55;31023:73;:::o;31102:222::-;31242:34;31238:1;31230:6;31226:14;31219:58;31311:5;31306:2;31298:6;31294:15;31287:30;31208:116;:::o;31330:170::-;31470:22;31466:1;31458:6;31454:14;31447:46;31436:64;:::o;31506:221::-;31646:34;31642:1;31634:6;31630:14;31623:58;31715:4;31710:2;31702:6;31698:15;31691:29;31612:115;:::o;31733:181::-;31873:33;31869:1;31861:6;31857:14;31850:57;31839:75;:::o;31920:225::-;32060:34;32056:1;32048:6;32044:14;32037:58;32129:8;32124:2;32116:6;32112:15;32105:33;32026:119;:::o;32151:221::-;32291:34;32287:1;32279:6;32275:14;32268:58;32360:4;32355:2;32347:6;32343:15;32336:29;32257:115;:::o;32378:214::-;32518:66;32514:1;32506:6;32502:14;32495:90;32484:108;:::o;32598:179::-;32738:31;32734:1;32726:6;32722:14;32715:55;32704:73;:::o;32783:225::-;32923:34;32919:1;32911:6;32907:14;32900:58;32992:8;32987:2;32979:6;32975:15;32968:33;32889:119;:::o;33014:221::-;33154:34;33150:1;33142:6;33138:14;33131:58;33223:4;33218:2;33210:6;33206:15;33199:29;33120:115;:::o;33241:166::-;33381:18;33377:1;33369:6;33365:14;33358:42;33347:60;:::o;33413:221::-;33553:34;33549:1;33541:6;33537:14;33530:58;33622:4;33617:2;33609:6;33605:15;33598:29;33519:115;:::o;33640:180::-;33780:32;33776:1;33768:6;33764:14;33757:56;33746:74;:::o;33826:227::-;33966:34;33962:1;33954:6;33950:14;33943:58;34035:10;34030:2;34022:6;34018:15;34011:35;33932:121;:::o;34059:182::-;34199:34;34195:1;34187:6;34183:14;34176:58;34165:76;:::o;34247:223::-;34387:34;34383:1;34375:6;34371:14;34364:58;34456:6;34451:2;34443:6;34439:15;34432:31;34353:117;:::o;34476:220::-;34616:34;34612:1;34604:6;34600:14;34593:58;34685:3;34680:2;34672:6;34668:15;34661:28;34582:114;:::o;34702:224::-;34842:34;34838:1;34830:6;34826:14;34819:58;34911:7;34906:2;34898:6;34894:15;34887:32;34808:118;:::o;34932:223::-;35072:34;35068:1;35060:6;35056:14;35049:58;35141:6;35136:2;35128:6;35124:15;35117:31;35038:117;:::o;35161:172::-;35301:24;35297:1;35289:6;35285:14;35278:48;35267:66;:::o;35339:224::-;35479:34;35475:1;35467:6;35463:14;35456:58;35548:7;35543:2;35535:6;35531:15;35524:32;35445:118;:::o;35569:181::-;35709:33;35705:1;35697:6;35693:14;35686:57;35675:75;:::o;35756:122::-;35829:24;35847:5;35829:24;:::i;:::-;35822:5;35819:35;35809:2;;35868:1;35865;35858:12;35809:2;35799:79;:::o;35884:122::-;35957:24;35975:5;35957:24;:::i;:::-;35950:5;35947:35;35937:2;;35996:1;35993;35986:12;35937:2;35927:79;:::o;36012:122::-;36085:24;36103:5;36085:24;:::i;:::-;36078:5;36075:35;36065:2;;36124:1;36121;36114:12;36065:2;36055:79;:::o;36140:118::-;36211:22;36227:5;36211:22;:::i;:::-;36204:5;36201:33;36191:2;;36248:1;36245;36238:12;36191:2;36181:77;:::o

Swarm Source

ipfs://02411611863d2cfe6e02d7476b47ffd16bd8845cef7f93b48403e19411113288
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.