ETH Price: $2,982.11 (+1.73%)
Gas: 2 Gwei

Token

Junity official (JU)
 

Overview

Max Total Supply

1,045 JU

Holders

451

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 JU
0x20df7a726a67507637458cb979b3d49bd3916397
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:
JunityOfficial

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-22
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @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/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) 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.
     * - `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 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
 * information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC721Royalty is ERC2981, ERC721 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/JunityOfficial.sol


pragma solidity >=0.7.0 <0.9.0;






contract JunityOfficial is ERC721Enumerable, Ownable, ERC721Royalty {
    using Strings for uint256;
    using SafeMath for uint256;
    using ECDSA for bytes32;

    string public baseURI;
    string private _baseExtension = ".json";
    string private _notRevealedUri;
    string private _contractURI;
    uint256 public cost = 0.01 ether; //price for 1 nft
    uint256 public maxSupply = 1100; // number of nft in the collection
    uint256 public maxMintAmount = 1;
    uint256 public nftPerAddressLimit = 1;
    bool public paused = false;
    bool public revealed = false;
    bool public onlyWhitelisted = true;
    mapping(address => uint256) public addressMintedBalance;
    uint8 private _og = 2;
    uint8 private _wl = 1;

    constructor() ERC721("Junity official", "JU") {
        setBaseURI("ipfs://QmNPiK9X3kupHbe9RiRfRqCHA6QN5MkDAGGUfUyKaHenet/");
        setNotRevealedURI("ipfs://Qmc5NBfSM63P5LdgPnN5SdE6LUdtWNeVJcYP7v87yiUCTf");
        _setDefaultRoyalty(owner(), 1000);
        setContractURI("ipfs://QmenpZbR26vhcLm9SsWYuMCjAf7NUaUcWYFaWRryNUooVJ");
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function setContractURI(string memory _URI) public onlyOwner {
        _contractURI = _URI;
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Enumerable, ERC721Royalty)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId)
        internal
        virtual
        override(ERC721, ERC721Royalty)
    {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }

    function setMaxSupply(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function mint(uint256 _mintAmount, bytes memory _signature) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        uint256 maxMint = maxMintAmount;
        uint256 nftPerAdress = nftPerAddressLimit;

        if (msg.sender != owner()) {
            if (onlyWhitelisted == true) {
                if (!isOGListed(_signature)) {
                    require(
                        isWhitelisted(_signature),
                        "user is not whitelisted"
                    );
                } else {
                    maxMint = 2;
                    nftPerAdress = 2;
                }

                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    ownerMintedCount + _mintAmount <= nftPerAdress,
                    "max NFT per address exceeded"
                );
            }

            require(
                _mintAmount <= maxMint,
                "max mint amount per session exceeded"
            );
            require(msg.value >= cost * _mintAmount, "insufficient funds!");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }

    function isMessageValid(bytes memory _signature, uint8 _nonce)
        public
        view
        returns (address, bool)
    {
        bytes32 messagehash = keccak256(
            abi.encodePacked(address(this), msg.sender, _nonce)
        );
        address signer = messagehash.toEthSignedMessageHash().recover(
            _signature
        );

        if (msg.sender == signer) {
            return (signer, true);
        } else {
            return (signer, false);
        }
    }

    function replenishBalance() external payable onlyOwner {}

    function interestPayments(uint256 _wei) public onlyOwner {
        for (uint256 i = 1; i < maxSupply; i++) {
            if (_exists(i)) {
                address _adr = ownerOf(i);
                (bool success, ) = payable(_adr).call{value: _wei}("");
                require(success, "insufficient funds!");
            } else break;
        }
    }

    function isWhitelisted(bytes memory _signature) public view returns (bool) {
        (, bool success) = isMessageValid(_signature, _wl);
        return success;
    }

    function isOGListed(bytes memory _signature) private view returns (bool) {
        (, bool success) = isMessageValid(_signature, _og);
        return success;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return _notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        _baseExtension
                    )
                )
                : "";
    }

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        _baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        _notRevealedUri = _notRevealedURI;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
        if (onlyWhitelisted) maxMintAmount = 1;
        else maxMintAmount = 10;
    }

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function getBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wei","type":"uint256"}],"name":"interestPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint8","name":"_nonce","type":"uint8"}],"name":"isMessageValid","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"replenishBalance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e91906200040e565b50662386f26fc1000060115561044c60125560016013819055601455601580546201000062ffffff199091161790556017805461ffff19166101021790553480156200007357600080fd5b506040518060400160405280600f81526020016e129d5b9a5d1e481bd9999a58da585b608a1b815250604051806040016040528060028152602001614a5560f01b8152508160029080519060200190620000cf9291906200040e565b508051620000e59060039060208401906200040e565b50505062000102620000fc6200019460201b60201c565b62000198565b620001266040518060600160405280603681526020016200376160369139620001ea565b6200014a6040518060600160405280603581526020016200372c6035913962000252565b6200016a62000161600c546001600160a01b031690565b6103e8620002b2565b6200018e604051806060016040528060358152602001620036d760359139620003b3565b620004f1565b3390565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c546001600160a01b03163314620002395760405162461bcd60e51b815260206004820181905260248201526000805160206200370c83398151915260448201526064015b60405180910390fd5b80516200024e90600d9060208401906200040e565b5050565b600c546001600160a01b031633146200029d5760405162461bcd60e51b815260206004820181905260248201526000805160206200370c833981519152604482015260640162000230565b80516200024e90600f9060208401906200040e565b6127106001600160601b0382161115620003225760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000230565b6001600160a01b0382166200037a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000230565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600c546001600160a01b03163314620003fe5760405162461bcd60e51b815260206004820181905260248201526000805160206200370c833981519152604482015260640162000230565b80516200024e9060109060208401905b8280546200041c90620004b4565b90600052602060002090601f0160209004810192826200044057600085556200048b565b82601f106200045b57805160ff19168380011785556200048b565b828001600101855582156200048b579182015b828111156200048b5782518255916020019190600101906200046e565b50620004999291506200049d565b5090565b5b808211156200049957600081556001016200049e565b600181811c90821680620004c957607f821691505b60208210811415620004eb57634e487b7160e01b600052602260045260246000fd5b50919050565b6131d680620005016000396000f3fe6080604052600436106102ae5760003560e01c80636c0360eb11610175578063a22cb465116100dc578063d5abeb0111610095578063e8a3d4851161006f578063e8a3d48514610847578063e985e9c51461085c578063f2c4ce1e146108a5578063f2fde38b146108c557600080fd5b8063d5abeb01146107fe578063da3ef23f14610814578063db7fd4081461083457600080fd5b8063a22cb46514610753578063a475b5dd14610773578063b88d4fde14610788578063ba7d2c76146107a8578063c87b56dd146107be578063d0eb26b0146107de57600080fd5b8063898686101161012e57806389868610146106b85780638da5cb5b146106d8578063938e3d7b146106f657806394d036f81461071657806395d89b411461071e5780639c70b5121461073357600080fd5b80636c0360eb1461060e5780636f8b44b01461062357806370a0823114610643578063715018a6146106635780637f00c7a614610678578063890557541461069857600080fd5b80632a55205a1161021957806344a0d68a116101d257806344a0d68a146105555780634f6ccce714610575578063518302271461059557806355f804b3146105b45780635c975abb146105d45780636352211e146105ee57600080fd5b80632a55205a146104745780632f745c59146104b35780633c952764146104d35780633ccfd60b146104f357806342842e0e14610508578063438b63001461052857600080fd5b806313faede61161026b57806313faede6146103a757806318160ddd146103bd57806318cae269146103d25780631c83c632146103ff578063239c70ae1461043e57806323b872dd1461045457600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806312065fe014610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612c20565b6108e5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612c05565b6108f6565b005b34801561031657600080fd5b5061031f61093c565b6040516102df9190612f23565b34801561033857600080fd5b5061034c610347366004612d30565b6109ce565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061030861037f366004612bdb565b610a63565b34801561039057600080fd5b50610399610b79565b6040519081526020016102df565b3480156103b357600080fd5b5061039960115481565b3480156103c957600080fd5b50600a54610399565b3480156103de57600080fd5b506103996103ed366004612abf565b60166020526000908152604090205481565b34801561040b57600080fd5b5061041f61041a366004612c8f565b610bab565b604080516001600160a01b0390931683529015156020830152016102df565b34801561044a57600080fd5b5061039960135481565b34801561046057600080fd5b5061030861046f366004612b0d565b610c8d565b34801561048057600080fd5b5061049461048f366004612d90565b610cbe565b604080516001600160a01b0390931683526020830191909152016102df565b3480156104bf57600080fd5b506103996104ce366004612bdb565b610d6a565b3480156104df57600080fd5b506103086104ee366004612c05565b610e00565b3480156104ff57600080fd5b50610308610e60565b34801561051457600080fd5b50610308610523366004612b0d565b610efb565b34801561053457600080fd5b50610548610543366004612abf565b610f16565b6040516102df9190612edf565b34801561056157600080fd5b50610308610570366004612d30565b610fb8565b34801561058157600080fd5b50610399610590366004612d30565b610fe7565b3480156105a157600080fd5b506015546102d390610100900460ff1681565b3480156105c057600080fd5b506103086105cf366004612ce7565b61107a565b3480156105e057600080fd5b506015546102d39060ff1681565b3480156105fa57600080fd5b5061034c610609366004612d30565b6110bb565b34801561061a57600080fd5b5061031f611132565b34801561062f57600080fd5b5061030861063e366004612d30565b6111c0565b34801561064f57600080fd5b5061039961065e366004612abf565b6111ef565b34801561066f57600080fd5b50610308611276565b34801561068457600080fd5b50610308610693366004612d30565b6112ac565b3480156106a457600080fd5b506102d36106b3366004612c5a565b6112db565b3480156106c457600080fd5b506103086106d3366004612d30565b6112ff565b3480156106e457600080fd5b50600c546001600160a01b031661034c565b34801561070257600080fd5b50610308610711366004612ce7565b61140d565b61030861144a565b34801561072a57600080fd5b5061031f611474565b34801561073f57600080fd5b506015546102d39062010000900460ff1681565b34801561075f57600080fd5b5061030861076e366004612bb1565b611483565b34801561077f57600080fd5b5061030861148e565b34801561079457600080fd5b506103086107a3366004612b49565b6114c9565b3480156107b457600080fd5b5061039960145481565b3480156107ca57600080fd5b5061031f6107d9366004612d30565b611501565b3480156107ea57600080fd5b506103086107f9366004612d30565b611680565b34801561080a57600080fd5b5061039960125481565b34801561082057600080fd5b5061030861082f366004612ce7565b6116af565b610308610842366004612d49565b6116ec565b34801561085357600080fd5b5061031f6119f7565b34801561086857600080fd5b506102d3610877366004612ada565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b157600080fd5b506103086108c0366004612ce7565b611a06565b3480156108d157600080fd5b506103086108e0366004612abf565b611a43565b60006108f082611adb565b92915050565b600c546001600160a01b031633146109295760405162461bcd60e51b815260040161092090612f88565b60405180910390fd5b6015805460ff1916911515919091179055565b60606002805461094b9061309c565b80601f01602080910402602001604051908101604052809291908181526020018280546109779061309c565b80156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610920565b506000908152600660205260409020546001600160a01b031690565b6000610a6e826110bb565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610920565b336001600160a01b0382161480610af85750610af88133610877565b610b6a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610920565b610b748383611ae6565b505050565b600c546000906001600160a01b03163314610ba65760405162461bcd60e51b815260040161092090612f88565b504790565b6040805130606090811b6bffffffffffffffffffffffff199081166020808501919091523390921b16603483015260f884901b6001600160f81b0319166048830152825160298184030181526049830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000606984015260858084018290528451808503909101815260a5909301909352815191012060009182918290610c599087611b54565b9050336001600160a01b0382161415610c7957925060019150610c869050565b925060009150610c869050565b9250929050565b610c973382611b70565b610cb35760405162461bcd60e51b815260040161092090612fbd565b610b74838383611c63565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610d335750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610d52906001600160601b03168761303a565b610d5c9190613026565b915196919550909350505050565b6000610d75836111ef565b8210610dd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610920565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092090612f88565b6015805462ff00001916620100008315158102919091179182905560ff91041615610e5757600160135550565b600a6013555b50565b600c546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161092090612f88565b6000610e9e600c546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ee8576040519150601f19603f3d011682016040523d82523d6000602084013e610eed565b606091505b5050905080610e5d57600080fd5b610b74838383604051806020016040528060008152506114c9565b60606000610f23836111ef565b905060008167ffffffffffffffff811115610f4057610f40613174565b604051908082528060200260200182016040528015610f69578160200160208202803683370190505b50905060005b82811015610fb057610f818582610d6a565b828281518110610f9357610f9361315e565b602090810291909101015280610fa8816130d7565b915050610f6f565b509392505050565b600c546001600160a01b03163314610fe25760405162461bcd60e51b815260040161092090612f88565b601155565b6000610ff2600a5490565b82106110555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610920565b600a82815481106110685761106861315e565b90600052602060002001549050919050565b600c546001600160a01b031633146110a45760405162461bcd60e51b815260040161092090612f88565b80516110b790600d906020840190612964565b5050565b6000818152600460205260408120546001600160a01b0316806108f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610920565b600d805461113f9061309c565b80601f016020809104026020016040519081016040528092919081815260200182805461116b9061309c565b80156111b85780601f1061118d576101008083540402835291602001916111b8565b820191906000526020600020905b81548152906001019060200180831161119b57829003601f168201915b505050505081565b600c546001600160a01b031633146111ea5760405162461bcd60e51b815260040161092090612f88565b601255565b60006001600160a01b03821661125a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610920565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b031633146112a05760405162461bcd60e51b815260040161092090612f88565b6112aa6000611e0a565b565b600c546001600160a01b031633146112d65760405162461bcd60e51b815260040161092090612f88565b601355565b6000806112f783601760019054906101000a900460ff16610bab565b949350505050565b600c546001600160a01b031633146113295760405162461bcd60e51b815260040161092090612f88565b60015b6012548110156110b7576000818152600460205260409020546001600160a01b0316156110b757600061135e826110bb565b90506000816001600160a01b03168460405160006040518083038185875af1925050503d80600081146113ad576040519150601f19603f3d011682016040523d82523d6000602084013e6113b2565b606091505b50509050806113f95760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610920565b505080611405816130d7565b91505061132c565b600c546001600160a01b031633146114375760405162461bcd60e51b815260040161092090612f88565b80516110b7906010906020840190612964565b600c546001600160a01b031633146112aa5760405162461bcd60e51b815260040161092090612f88565b60606003805461094b9061309c565b6110b7338383611e5c565b600c546001600160a01b031633146114b85760405162461bcd60e51b815260040161092090612f88565b6015805461ff001916610100179055565b6114d33383611b70565b6114ef5760405162461bcd60e51b815260040161092090612fbd565b6114fb84848484611f2b565b50505050565b6000818152600460205260409020546060906001600160a01b03166115805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610920565b601554610100900460ff1661162157600f805461159c9061309c565b80601f01602080910402602001604051908101604052809291908181526020018280546115c89061309c565b80156116155780601f106115ea57610100808354040283529160200191611615565b820191906000526020600020905b8154815290600101906020018083116115f857829003601f168201915b50505050509050919050565b600061162b611f5e565b9050600081511161164b5760405180602001604052806000815250611679565b8061165584611f6d565b600e60405160200161166993929190612dde565b6040516020818303038152906040525b9392505050565b600c546001600160a01b031633146116aa5760405162461bcd60e51b815260040161092090612f88565b601455565b600c546001600160a01b031633146116d95760405162461bcd60e51b815260040161092090612f88565b80516110b790600e906020840190612964565b60155460ff16156117385760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610920565b6000611743600a5490565b9050600083116117955760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610920565b6012546117a2848361300e565b11156117e95760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610920565b601354601454600c546001600160a01b0316331461199f5760155462010000900460ff161515600114156118f0576118208461206b565b61187e5761182d846112db565b6118795760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610920565b611885565b5060029050805b33600090815260166020526040902054816118a0878361300e565b11156118ee5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610920565b505b8185111561194c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610920565b8460115461195a919061303a565b34101561199f5760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610920565b60015b8581116119ef573360009081526016602052604081208054916119c4836130d7565b909155506119dd9050336119d8838761300e565b612081565b806119e7816130d7565b9150506119a2565b505050505050565b60606010805461094b9061309c565b600c546001600160a01b03163314611a305760405162461bcd60e51b815260040161092090612f88565b80516110b790600f906020840190612964565b600c546001600160a01b03163314611a6d5760405162461bcd60e51b815260040161092090612f88565b6001600160a01b038116611ad25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610920565b610e5d81611e0a565b60006108f08261209b565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1b826110bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000611b6385856120c0565b91509150610fb08161212d565b6000818152600460205260408120546001600160a01b0316611be95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610920565b6000611bf4836110bb565b9050806001600160a01b0316846001600160a01b03161480611c2f5750836001600160a01b0316611c24846109ce565b6001600160a01b0316145b806112f757506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff166112f7565b826001600160a01b0316611c76826110bb565b6001600160a01b031614611cda5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610920565b6001600160a01b038216611d3c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610920565b611d478383836122e8565b611d52600082611ae6565b6001600160a01b0383166000908152600560205260408120805460019290611d7b908490613059565b90915550506001600160a01b0382166000908152600560205260408120805460019290611da990849061300e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ebe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610920565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f36848484611c63565b611f42848484846122f3565b6114fb5760405162461bcd60e51b815260040161092090612f36565b6060600d805461094b9061309c565b606081611f915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fbb5780611fa5816130d7565b9150611fb49050600a83613026565b9150611f95565b60008167ffffffffffffffff811115611fd657611fd6613174565b6040519080825280601f01601f191660200182016040528015612000576020820181803683370190505b5090505b84156112f757612015600183613059565b9150612022600a866130f2565b61202d90603061300e565b60f81b8183815181106120425761204261315e565b60200101906001600160f81b031916908160001a905350612064600a86613026565b9450612004565b60175460009081906112f790849060ff16610bab565b6110b7828260405180602001604052806000815250612400565b60006001600160e01b0319821663780e9d6360e01b14806108f057506108f082612433565b6000808251604114156120f75760208301516040840151606085015160001a6120eb87828585612473565b94509450505050610c86565b8251604014156121215760208301516040840151612116868383612560565b935093505050610c86565b50600090506002610c86565b600081600481111561214157612141613132565b141561214a5750565b600181600481111561215e5761215e613132565b14156121ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610920565b60028160048111156121c0576121c0613132565b141561220e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610920565b600381600481111561222257612222613132565b141561227b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610920565b600481600481111561228f5761228f613132565b1415610e5d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610920565b610b74838383612599565b60006001600160a01b0384163b156123f557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612337903390899088908890600401612ea2565b602060405180830381600087803b15801561235157600080fd5b505af1925050508015612381575060408051601f3d908101601f1916820190925261237e91810190612c3d565b60015b6123db573d8080156123af576040519150601f19603f3d011682016040523d82523d6000602084013e6123b4565b606091505b5080516123d35760405162461bcd60e51b815260040161092090612f36565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f7565b506001949350505050565b61240a8383612651565b61241760008484846122f3565b610b745760405162461bcd60e51b815260040161092090612f36565b60006001600160e01b031982166380ac58cd60e01b148061246457506001600160e01b03198216635b5e139f60e01b145b806108f057506108f08261279f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124aa5750600090506003612557565b8460ff16601b141580156124c257508460ff16601c14155b156124d35750600090506004612557565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612527573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661255057600060019250925050612557565b9150600090505b94509492505050565b6000806001600160ff1b0383168161257d60ff86901c601b61300e565b905061258b87828885612473565b935093505050935093915050565b6001600160a01b0383166125f4576125ef81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612617565b816001600160a01b0316836001600160a01b0316146126175761261783826127d4565b6001600160a01b03821661262e57610b7481612871565b826001600160a01b0316826001600160a01b031614610b7457610b748282612920565b6001600160a01b0382166126a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610920565b6000818152600460205260409020546001600160a01b03161561270c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610920565b612718600083836122e8565b6001600160a01b038216600090815260056020526040812080546001929061274190849061300e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b0319821663152a902d60e11b14806108f057506301ffc9a760e01b6001600160e01b03198316146108f0565b600060016127e1846111ef565b6127eb9190613059565b60008381526009602052604090205490915080821461283e576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061288390600190613059565b6000838152600b6020526040812054600a80549394509092849081106128ab576128ab61315e565b9060005260206000200154905080600a83815481106128cc576128cc61315e565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061290457612904613148565b6001900381819060005260206000200160009055905550505050565b600061292b836111ef565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546129709061309c565b90600052602060002090601f01602090048101928261299257600085556129d8565b82601f106129ab57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d85782518255916020019190600101906129bd565b506129e49291506129e8565b5090565b5b808211156129e457600081556001016129e9565b600067ffffffffffffffff80841115612a1857612a18613174565b604051601f8501601f19908116603f01168101908282118183101715612a4057612a40613174565b81604052809350858152868686011115612a5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a8a57600080fd5b919050565b80358015158114612a8a57600080fd5b600082601f830112612ab057600080fd5b611679838335602085016129fd565b600060208284031215612ad157600080fd5b61167982612a73565b60008060408385031215612aed57600080fd5b612af683612a73565b9150612b0460208401612a73565b90509250929050565b600080600060608486031215612b2257600080fd5b612b2b84612a73565b9250612b3960208501612a73565b9150604084013590509250925092565b60008060008060808587031215612b5f57600080fd5b612b6885612a73565b9350612b7660208601612a73565b925060408501359150606085013567ffffffffffffffff811115612b9957600080fd5b612ba587828801612a9f565b91505092959194509250565b60008060408385031215612bc457600080fd5b612bcd83612a73565b9150612b0460208401612a8f565b60008060408385031215612bee57600080fd5b612bf783612a73565b946020939093013593505050565b600060208284031215612c1757600080fd5b61167982612a8f565b600060208284031215612c3257600080fd5b81356116798161318a565b600060208284031215612c4f57600080fd5b81516116798161318a565b600060208284031215612c6c57600080fd5b813567ffffffffffffffff811115612c8357600080fd5b6112f784828501612a9f565b60008060408385031215612ca257600080fd5b823567ffffffffffffffff811115612cb957600080fd5b612cc585828601612a9f565b925050602083013560ff81168114612cdc57600080fd5b809150509250929050565b600060208284031215612cf957600080fd5b813567ffffffffffffffff811115612d1057600080fd5b8201601f81018413612d2157600080fd5b6112f7848235602084016129fd565b600060208284031215612d4257600080fd5b5035919050565b60008060408385031215612d5c57600080fd5b82359150602083013567ffffffffffffffff811115612d7a57600080fd5b612d8685828601612a9f565b9150509250929050565b60008060408385031215612da357600080fd5b50508035926020909101359150565b60008151808452612dca816020860160208601613070565b601f01601f19169290920160200192915050565b600084516020612df18285838a01613070565b855191840191612e048184848a01613070565b8554920191600090600181811c9080831680612e2157607f831692505b858310811415612e3f57634e487b7160e01b85526022600452602485fd5b808015612e535760018114612e6457612e91565b60ff19851688528388019550612e91565b60008b81526020902060005b85811015612e895781548a820152908401908801612e70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed590830184612db2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1757835183529284019291840191600101612efb565b50909695505050505050565b6020815260006116796020830184612db2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561302157613021613106565b500190565b6000826130355761303561311c565b500490565b600081600019048311821515161561305457613054613106565b500290565b60008282101561306b5761306b613106565b500390565b60005b8381101561308b578181015183820152602001613073565b838111156114fb5750506000910152565b600181811c908216806130b057607f821691505b602082108114156130d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130eb576130eb613106565b5060010190565b6000826131015761310161311c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e5d57600080fdfea264697066735822122050d56c5d3502280f571b75d9385ccff9059f8cf3c3c28b9903db1331ab0e636364736f6c63430008070033697066733a2f2f516d656e705a625232367668634c6d3953735759754d436a4166374e5561556357594661575272794e556f6f564a4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572697066733a2f2f516d63354e4266534d363350354c6467506e4e35536445364c556474574e65564a63595037763837796955435466697066733a2f2f516d4e50694b3958336b75704862653952695266527143484136514e354d6b44414747556655794b6148656e65742f

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636c0360eb11610175578063a22cb465116100dc578063d5abeb0111610095578063e8a3d4851161006f578063e8a3d48514610847578063e985e9c51461085c578063f2c4ce1e146108a5578063f2fde38b146108c557600080fd5b8063d5abeb01146107fe578063da3ef23f14610814578063db7fd4081461083457600080fd5b8063a22cb46514610753578063a475b5dd14610773578063b88d4fde14610788578063ba7d2c76146107a8578063c87b56dd146107be578063d0eb26b0146107de57600080fd5b8063898686101161012e57806389868610146106b85780638da5cb5b146106d8578063938e3d7b146106f657806394d036f81461071657806395d89b411461071e5780639c70b5121461073357600080fd5b80636c0360eb1461060e5780636f8b44b01461062357806370a0823114610643578063715018a6146106635780637f00c7a614610678578063890557541461069857600080fd5b80632a55205a1161021957806344a0d68a116101d257806344a0d68a146105555780634f6ccce714610575578063518302271461059557806355f804b3146105b45780635c975abb146105d45780636352211e146105ee57600080fd5b80632a55205a146104745780632f745c59146104b35780633c952764146104d35780633ccfd60b146104f357806342842e0e14610508578063438b63001461052857600080fd5b806313faede61161026b57806313faede6146103a757806318160ddd146103bd57806318cae269146103d25780631c83c632146103ff578063239c70ae1461043e57806323b872dd1461045457600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806312065fe014610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612c20565b6108e5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612c05565b6108f6565b005b34801561031657600080fd5b5061031f61093c565b6040516102df9190612f23565b34801561033857600080fd5b5061034c610347366004612d30565b6109ce565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061030861037f366004612bdb565b610a63565b34801561039057600080fd5b50610399610b79565b6040519081526020016102df565b3480156103b357600080fd5b5061039960115481565b3480156103c957600080fd5b50600a54610399565b3480156103de57600080fd5b506103996103ed366004612abf565b60166020526000908152604090205481565b34801561040b57600080fd5b5061041f61041a366004612c8f565b610bab565b604080516001600160a01b0390931683529015156020830152016102df565b34801561044a57600080fd5b5061039960135481565b34801561046057600080fd5b5061030861046f366004612b0d565b610c8d565b34801561048057600080fd5b5061049461048f366004612d90565b610cbe565b604080516001600160a01b0390931683526020830191909152016102df565b3480156104bf57600080fd5b506103996104ce366004612bdb565b610d6a565b3480156104df57600080fd5b506103086104ee366004612c05565b610e00565b3480156104ff57600080fd5b50610308610e60565b34801561051457600080fd5b50610308610523366004612b0d565b610efb565b34801561053457600080fd5b50610548610543366004612abf565b610f16565b6040516102df9190612edf565b34801561056157600080fd5b50610308610570366004612d30565b610fb8565b34801561058157600080fd5b50610399610590366004612d30565b610fe7565b3480156105a157600080fd5b506015546102d390610100900460ff1681565b3480156105c057600080fd5b506103086105cf366004612ce7565b61107a565b3480156105e057600080fd5b506015546102d39060ff1681565b3480156105fa57600080fd5b5061034c610609366004612d30565b6110bb565b34801561061a57600080fd5b5061031f611132565b34801561062f57600080fd5b5061030861063e366004612d30565b6111c0565b34801561064f57600080fd5b5061039961065e366004612abf565b6111ef565b34801561066f57600080fd5b50610308611276565b34801561068457600080fd5b50610308610693366004612d30565b6112ac565b3480156106a457600080fd5b506102d36106b3366004612c5a565b6112db565b3480156106c457600080fd5b506103086106d3366004612d30565b6112ff565b3480156106e457600080fd5b50600c546001600160a01b031661034c565b34801561070257600080fd5b50610308610711366004612ce7565b61140d565b61030861144a565b34801561072a57600080fd5b5061031f611474565b34801561073f57600080fd5b506015546102d39062010000900460ff1681565b34801561075f57600080fd5b5061030861076e366004612bb1565b611483565b34801561077f57600080fd5b5061030861148e565b34801561079457600080fd5b506103086107a3366004612b49565b6114c9565b3480156107b457600080fd5b5061039960145481565b3480156107ca57600080fd5b5061031f6107d9366004612d30565b611501565b3480156107ea57600080fd5b506103086107f9366004612d30565b611680565b34801561080a57600080fd5b5061039960125481565b34801561082057600080fd5b5061030861082f366004612ce7565b6116af565b610308610842366004612d49565b6116ec565b34801561085357600080fd5b5061031f6119f7565b34801561086857600080fd5b506102d3610877366004612ada565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108b157600080fd5b506103086108c0366004612ce7565b611a06565b3480156108d157600080fd5b506103086108e0366004612abf565b611a43565b60006108f082611adb565b92915050565b600c546001600160a01b031633146109295760405162461bcd60e51b815260040161092090612f88565b60405180910390fd5b6015805460ff1916911515919091179055565b60606002805461094b9061309c565b80601f01602080910402602001604051908101604052809291908181526020018280546109779061309c565b80156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a475760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610920565b506000908152600660205260409020546001600160a01b031690565b6000610a6e826110bb565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610920565b336001600160a01b0382161480610af85750610af88133610877565b610b6a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610920565b610b748383611ae6565b505050565b600c546000906001600160a01b03163314610ba65760405162461bcd60e51b815260040161092090612f88565b504790565b6040805130606090811b6bffffffffffffffffffffffff199081166020808501919091523390921b16603483015260f884901b6001600160f81b0319166048830152825160298184030181526049830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a333200000000606984015260858084018290528451808503909101815260a5909301909352815191012060009182918290610c599087611b54565b9050336001600160a01b0382161415610c7957925060019150610c869050565b925060009150610c869050565b9250929050565b610c973382611b70565b610cb35760405162461bcd60e51b815260040161092090612fbd565b610b74838383611c63565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610d335750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610d52906001600160601b03168761303a565b610d5c9190613026565b915196919550909350505050565b6000610d75836111ef565b8210610dd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610920565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092090612f88565b6015805462ff00001916620100008315158102919091179182905560ff91041615610e5757600160135550565b600a6013555b50565b600c546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161092090612f88565b6000610e9e600c546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ee8576040519150601f19603f3d011682016040523d82523d6000602084013e610eed565b606091505b5050905080610e5d57600080fd5b610b74838383604051806020016040528060008152506114c9565b60606000610f23836111ef565b905060008167ffffffffffffffff811115610f4057610f40613174565b604051908082528060200260200182016040528015610f69578160200160208202803683370190505b50905060005b82811015610fb057610f818582610d6a565b828281518110610f9357610f9361315e565b602090810291909101015280610fa8816130d7565b915050610f6f565b509392505050565b600c546001600160a01b03163314610fe25760405162461bcd60e51b815260040161092090612f88565b601155565b6000610ff2600a5490565b82106110555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610920565b600a82815481106110685761106861315e565b90600052602060002001549050919050565b600c546001600160a01b031633146110a45760405162461bcd60e51b815260040161092090612f88565b80516110b790600d906020840190612964565b5050565b6000818152600460205260408120546001600160a01b0316806108f05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610920565b600d805461113f9061309c565b80601f016020809104026020016040519081016040528092919081815260200182805461116b9061309c565b80156111b85780601f1061118d576101008083540402835291602001916111b8565b820191906000526020600020905b81548152906001019060200180831161119b57829003601f168201915b505050505081565b600c546001600160a01b031633146111ea5760405162461bcd60e51b815260040161092090612f88565b601255565b60006001600160a01b03821661125a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610920565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b031633146112a05760405162461bcd60e51b815260040161092090612f88565b6112aa6000611e0a565b565b600c546001600160a01b031633146112d65760405162461bcd60e51b815260040161092090612f88565b601355565b6000806112f783601760019054906101000a900460ff16610bab565b949350505050565b600c546001600160a01b031633146113295760405162461bcd60e51b815260040161092090612f88565b60015b6012548110156110b7576000818152600460205260409020546001600160a01b0316156110b757600061135e826110bb565b90506000816001600160a01b03168460405160006040518083038185875af1925050503d80600081146113ad576040519150601f19603f3d011682016040523d82523d6000602084013e6113b2565b606091505b50509050806113f95760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610920565b505080611405816130d7565b91505061132c565b600c546001600160a01b031633146114375760405162461bcd60e51b815260040161092090612f88565b80516110b7906010906020840190612964565b600c546001600160a01b031633146112aa5760405162461bcd60e51b815260040161092090612f88565b60606003805461094b9061309c565b6110b7338383611e5c565b600c546001600160a01b031633146114b85760405162461bcd60e51b815260040161092090612f88565b6015805461ff001916610100179055565b6114d33383611b70565b6114ef5760405162461bcd60e51b815260040161092090612fbd565b6114fb84848484611f2b565b50505050565b6000818152600460205260409020546060906001600160a01b03166115805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610920565b601554610100900460ff1661162157600f805461159c9061309c565b80601f01602080910402602001604051908101604052809291908181526020018280546115c89061309c565b80156116155780601f106115ea57610100808354040283529160200191611615565b820191906000526020600020905b8154815290600101906020018083116115f857829003601f168201915b50505050509050919050565b600061162b611f5e565b9050600081511161164b5760405180602001604052806000815250611679565b8061165584611f6d565b600e60405160200161166993929190612dde565b6040516020818303038152906040525b9392505050565b600c546001600160a01b031633146116aa5760405162461bcd60e51b815260040161092090612f88565b601455565b600c546001600160a01b031633146116d95760405162461bcd60e51b815260040161092090612f88565b80516110b790600e906020840190612964565b60155460ff16156117385760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610920565b6000611743600a5490565b9050600083116117955760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610920565b6012546117a2848361300e565b11156117e95760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610920565b601354601454600c546001600160a01b0316331461199f5760155462010000900460ff161515600114156118f0576118208461206b565b61187e5761182d846112db565b6118795760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610920565b611885565b5060029050805b33600090815260166020526040902054816118a0878361300e565b11156118ee5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610920565b505b8185111561194c5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610920565b8460115461195a919061303a565b34101561199f5760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610920565b60015b8581116119ef573360009081526016602052604081208054916119c4836130d7565b909155506119dd9050336119d8838761300e565b612081565b806119e7816130d7565b9150506119a2565b505050505050565b60606010805461094b9061309c565b600c546001600160a01b03163314611a305760405162461bcd60e51b815260040161092090612f88565b80516110b790600f906020840190612964565b600c546001600160a01b03163314611a6d5760405162461bcd60e51b815260040161092090612f88565b6001600160a01b038116611ad25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610920565b610e5d81611e0a565b60006108f08261209b565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1b826110bb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000611b6385856120c0565b91509150610fb08161212d565b6000818152600460205260408120546001600160a01b0316611be95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610920565b6000611bf4836110bb565b9050806001600160a01b0316846001600160a01b03161480611c2f5750836001600160a01b0316611c24846109ce565b6001600160a01b0316145b806112f757506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff166112f7565b826001600160a01b0316611c76826110bb565b6001600160a01b031614611cda5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610920565b6001600160a01b038216611d3c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610920565b611d478383836122e8565b611d52600082611ae6565b6001600160a01b0383166000908152600560205260408120805460019290611d7b908490613059565b90915550506001600160a01b0382166000908152600560205260408120805460019290611da990849061300e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ebe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610920565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f36848484611c63565b611f42848484846122f3565b6114fb5760405162461bcd60e51b815260040161092090612f36565b6060600d805461094b9061309c565b606081611f915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fbb5780611fa5816130d7565b9150611fb49050600a83613026565b9150611f95565b60008167ffffffffffffffff811115611fd657611fd6613174565b6040519080825280601f01601f191660200182016040528015612000576020820181803683370190505b5090505b84156112f757612015600183613059565b9150612022600a866130f2565b61202d90603061300e565b60f81b8183815181106120425761204261315e565b60200101906001600160f81b031916908160001a905350612064600a86613026565b9450612004565b60175460009081906112f790849060ff16610bab565b6110b7828260405180602001604052806000815250612400565b60006001600160e01b0319821663780e9d6360e01b14806108f057506108f082612433565b6000808251604114156120f75760208301516040840151606085015160001a6120eb87828585612473565b94509450505050610c86565b8251604014156121215760208301516040840151612116868383612560565b935093505050610c86565b50600090506002610c86565b600081600481111561214157612141613132565b141561214a5750565b600181600481111561215e5761215e613132565b14156121ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610920565b60028160048111156121c0576121c0613132565b141561220e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610920565b600381600481111561222257612222613132565b141561227b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610920565b600481600481111561228f5761228f613132565b1415610e5d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610920565b610b74838383612599565b60006001600160a01b0384163b156123f557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612337903390899088908890600401612ea2565b602060405180830381600087803b15801561235157600080fd5b505af1925050508015612381575060408051601f3d908101601f1916820190925261237e91810190612c3d565b60015b6123db573d8080156123af576040519150601f19603f3d011682016040523d82523d6000602084013e6123b4565b606091505b5080516123d35760405162461bcd60e51b815260040161092090612f36565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f7565b506001949350505050565b61240a8383612651565b61241760008484846122f3565b610b745760405162461bcd60e51b815260040161092090612f36565b60006001600160e01b031982166380ac58cd60e01b148061246457506001600160e01b03198216635b5e139f60e01b145b806108f057506108f08261279f565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124aa5750600090506003612557565b8460ff16601b141580156124c257508460ff16601c14155b156124d35750600090506004612557565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612527573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661255057600060019250925050612557565b9150600090505b94509492505050565b6000806001600160ff1b0383168161257d60ff86901c601b61300e565b905061258b87828885612473565b935093505050935093915050565b6001600160a01b0383166125f4576125ef81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612617565b816001600160a01b0316836001600160a01b0316146126175761261783826127d4565b6001600160a01b03821661262e57610b7481612871565b826001600160a01b0316826001600160a01b031614610b7457610b748282612920565b6001600160a01b0382166126a75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610920565b6000818152600460205260409020546001600160a01b03161561270c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610920565b612718600083836122e8565b6001600160a01b038216600090815260056020526040812080546001929061274190849061300e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b0319821663152a902d60e11b14806108f057506301ffc9a760e01b6001600160e01b03198316146108f0565b600060016127e1846111ef565b6127eb9190613059565b60008381526009602052604090205490915080821461283e576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a5460009061288390600190613059565b6000838152600b6020526040812054600a80549394509092849081106128ab576128ab61315e565b9060005260206000200154905080600a83815481106128cc576128cc61315e565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061290457612904613148565b6001900381819060005260206000200160009055905550505050565b600061292b836111ef565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546129709061309c565b90600052602060002090601f01602090048101928261299257600085556129d8565b82601f106129ab57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d85782518255916020019190600101906129bd565b506129e49291506129e8565b5090565b5b808211156129e457600081556001016129e9565b600067ffffffffffffffff80841115612a1857612a18613174565b604051601f8501601f19908116603f01168101908282118183101715612a4057612a40613174565b81604052809350858152868686011115612a5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a8a57600080fd5b919050565b80358015158114612a8a57600080fd5b600082601f830112612ab057600080fd5b611679838335602085016129fd565b600060208284031215612ad157600080fd5b61167982612a73565b60008060408385031215612aed57600080fd5b612af683612a73565b9150612b0460208401612a73565b90509250929050565b600080600060608486031215612b2257600080fd5b612b2b84612a73565b9250612b3960208501612a73565b9150604084013590509250925092565b60008060008060808587031215612b5f57600080fd5b612b6885612a73565b9350612b7660208601612a73565b925060408501359150606085013567ffffffffffffffff811115612b9957600080fd5b612ba587828801612a9f565b91505092959194509250565b60008060408385031215612bc457600080fd5b612bcd83612a73565b9150612b0460208401612a8f565b60008060408385031215612bee57600080fd5b612bf783612a73565b946020939093013593505050565b600060208284031215612c1757600080fd5b61167982612a8f565b600060208284031215612c3257600080fd5b81356116798161318a565b600060208284031215612c4f57600080fd5b81516116798161318a565b600060208284031215612c6c57600080fd5b813567ffffffffffffffff811115612c8357600080fd5b6112f784828501612a9f565b60008060408385031215612ca257600080fd5b823567ffffffffffffffff811115612cb957600080fd5b612cc585828601612a9f565b925050602083013560ff81168114612cdc57600080fd5b809150509250929050565b600060208284031215612cf957600080fd5b813567ffffffffffffffff811115612d1057600080fd5b8201601f81018413612d2157600080fd5b6112f7848235602084016129fd565b600060208284031215612d4257600080fd5b5035919050565b60008060408385031215612d5c57600080fd5b82359150602083013567ffffffffffffffff811115612d7a57600080fd5b612d8685828601612a9f565b9150509250929050565b60008060408385031215612da357600080fd5b50508035926020909101359150565b60008151808452612dca816020860160208601613070565b601f01601f19169290920160200192915050565b600084516020612df18285838a01613070565b855191840191612e048184848a01613070565b8554920191600090600181811c9080831680612e2157607f831692505b858310811415612e3f57634e487b7160e01b85526022600452602485fd5b808015612e535760018114612e6457612e91565b60ff19851688528388019550612e91565b60008b81526020902060005b85811015612e895781548a820152908401908801612e70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed590830184612db2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1757835183529284019291840191600101612efb565b50909695505050505050565b6020815260006116796020830184612db2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561302157613021613106565b500190565b6000826130355761303561311c565b500490565b600081600019048311821515161561305457613054613106565b500290565b60008282101561306b5761306b613106565b500390565b60005b8381101561308b578181015183820152602001613073565b838111156114fb5750506000910152565b600181811c908216806130b057607f821691505b602082108114156130d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130eb576130eb613106565b5060010190565b6000826131015761310161311c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e5d57600080fdfea264697066735822122050d56c5d3502280f571b75d9385ccff9059f8cf3c3c28b9903db1331ab0e636364736f6c63430008070033

Deployed Bytecode Sourcemap

68949:7531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70405:236;;;;;;;;;;-1:-1:-1;70405:236:0;;;;;:::i;:::-;;:::i;:::-;;;10738:14:1;;10731:22;10713:41;;10701:2;10686:18;70405:236:0;;;;;;;;75932:79;;;;;;;;;;-1:-1:-1;75932:79:0;;;;;:::i;:::-;;:::i;:::-;;48025:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49584:221::-;;;;;;;;;;-1:-1:-1;49584:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8831:32:1;;;8813:51;;8801:2;8786:18;49584:221:0;8667:203:1;49107:411:0;;;;;;;;;;-1:-1:-1;49107:411:0;;;;;:::i;:::-;;:::i;76368:109::-;;;;;;;;;;;;;:::i;:::-;;;22780:25:1;;;22768:2;22753:18;76368:109:0;22634:177:1;69266:32:0;;;;;;;;;;;;;;;;63353:113;;;;;;;;;;-1:-1:-1;63441:10:0;:17;63353:113;;69588:55;;;;;;;;;;-1:-1:-1;69588:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;72655:507;;;;;;;;;;-1:-1:-1;72655:507:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9554:32:1;;;9536:51;;9630:14;;9623:22;9618:2;9603:18;;9596:50;9509:18;72655:507:0;9368:284:1;69396:32:0;;;;;;;;;;;;;;;;50334:339;;;;;;;;;;-1:-1:-1;50334:339:0;;;;;:::i;:::-;;:::i;36325:494::-;;;;;;;;;;-1:-1:-1;36325:494:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;9849:32:1;;;9831:51;;9913:2;9898:18;;9891:34;;;;9804:18;36325:494:0;9657:274:1;63021:256:0;;;;;;;;;;-1:-1:-1;63021:256:0;;;;;:::i;:::-;;:::i;76019:184::-;;;;;;;;;;-1:-1:-1;76019:184:0;;;;;:::i;:::-;;:::i;76211:149::-;;;;;;;;;;;;;:::i;50744:185::-;;;;;;;;;;-1:-1:-1;50744:185:0;;;;;:::i;:::-;;:::i;73955:390::-;;;;;;;;;;-1:-1:-1;73955:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;75301:86::-;;;;;;;;;;-1:-1:-1;75301:86:0;;;;;:::i;:::-;;:::i;63543:233::-;;;;;;;;;;-1:-1:-1;63543:233:0;;;;;:::i;:::-;;:::i;69512:28::-;;;;;;;;;;-1:-1:-1;69512:28:0;;;;;;;;;;;75525:104;;;;;;;;;;-1:-1:-1;75525:104:0;;;;;:::i;:::-;;:::i;69479:26::-;;;;;;;;;;-1:-1:-1;69479:26:0;;;;;;;;47719:239;;;;;;;;;;-1:-1:-1;47719:239:0;;;;;:::i;:::-;;:::i;69121:21::-;;;;;;;;;;;;;:::i;71070:94::-;;;;;;;;;;-1:-1:-1;71070:94:0;;;;;:::i;:::-;;:::i;47449:208::-;;;;;;;;;;-1:-1:-1;47449:208:0;;;;;:::i;:::-;;:::i;21322:103::-;;;;;;;;;;;;;:::i;75395:122::-;;;;;;;;;;-1:-1:-1;75395:122:0;;;;;:::i;:::-;;:::i;73603:169::-;;;;;;;;;;-1:-1:-1;73603:169:0;;;;;:::i;:::-;;:::i;73235:360::-;;;;;;;;;;-1:-1:-1;73235:360:0;;;;;:::i;:::-;;:::i;20671:87::-;;;;;;;;;;-1:-1:-1;20744:6:0;;-1:-1:-1;;;;;20744:6:0;20671:87;;70165:99;;;;;;;;;;-1:-1:-1;70165:99:0;;;;;:::i;:::-;;:::i;73170:57::-;;;:::i;48194:104::-;;;;;;;;;;;;;:::i;69547:34::-;;;;;;;;;;-1:-1:-1;69547:34:0;;;;;;;;;;;49877:155;;;;;;;;;;-1:-1:-1;49877:155:0;;;;;:::i;:::-;;:::i;75106:69::-;;;;;;;;;;;;;:::i;51000:328::-;;;;;;;;;;-1:-1:-1;51000:328:0;;;;;:::i;:::-;;:::i;69435:37::-;;;;;;;;;;;;;;;;74353:727;;;;;;;;;;-1:-1:-1;74353:727:0;;;;;:::i;:::-;;:::i;75183:110::-;;;;;;;;;;-1:-1:-1;75183:110:0;;;;;:::i;:::-;;:::i;69323:31::-;;;;;;;;;;;;;;;;75637:152;;;;;;;;;;-1:-1:-1;75637:152:0;;;;;:::i;:::-;;:::i;71172:1475::-;;;;;;:::i;:::-;;:::i;70060:97::-;;;;;;;;;;;;;:::i;50103:164::-;;;;;;;;;;-1:-1:-1;50103:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;50224:25:0;;;50200:4;50224:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50103:164;75797:127;;;;;;;;;;-1:-1:-1;75797:127:0;;;;;:::i;:::-;;:::i;21580:201::-;;;;;;;;;;-1:-1:-1;21580:201:0;;;;;:::i;:::-;;:::i;70405:236::-;70568:4;70597:36;70621:11;70597:23;:36::i;:::-;70590:43;70405:236;-1:-1:-1;;70405:236:0:o;75932:79::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;;;;;;;;;75988:6:::1;:15:::0;;-1:-1:-1;;75988:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;75932:79::o;48025:100::-;48079:13;48112:5;48105:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48025:100;:::o;49584:221::-;49660:7;52927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52927:16:0;49680:73;;;;-1:-1:-1;;;49680:73:0;;19354:2:1;49680:73:0;;;19336:21:1;19393:2;19373:18;;;19366:30;19432:34;19412:18;;;19405:62;-1:-1:-1;;;19483:18:1;;;19476:42;19535:19;;49680:73:0;19152:408:1;49680:73:0;-1:-1:-1;49773:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49773:24:0;;49584:221::o;49107:411::-;49188:13;49204:23;49219:7;49204:14;:23::i;:::-;49188:39;;49252:5;-1:-1:-1;;;;;49246:11:0;:2;-1:-1:-1;;;;;49246:11:0;;;49238:57;;;;-1:-1:-1;;;49238:57:0;;20895:2:1;49238:57:0;;;20877:21:1;20934:2;20914:18;;;20907:30;20973:34;20953:18;;;20946:62;-1:-1:-1;;;21024:18:1;;;21017:31;21065:19;;49238:57:0;20693:397:1;49238:57:0;19475:10;-1:-1:-1;;;;;49330:21:0;;;;:62;;-1:-1:-1;49355:37:0;49372:5;19475:10;50103:164;:::i;49355:37::-;49308:168;;;;-1:-1:-1;;;49308:168:0;;16588:2:1;49308:168:0;;;16570:21:1;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;16737:26;16717:18;;;16710:54;16781:19;;49308:168:0;16386:420:1;49308:168:0;49489:21;49498:2;49502:7;49489:8;:21::i;:::-;49177:341;49107:411;;:::o;76368:109::-;20744:6;;76421:7;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;-1:-1:-1;76448:21:0::1;76368:109:::0;:::o;72655:507::-;72843:51;;;72868:4;6362:2:1;6358:15;;;-1:-1:-1;;6354:24:1;;;72843:51:0;;;;6342:37:1;;;;72875:10:0;6413:15:1;;;6409:24;6395:12;;;6388:46;6490:3;6468:16;;;-1:-1:-1;;;;;;6464:36:1;6450:12;;;6443:58;72843:51:0;;;;;;;;;6517:12:1;;;72843:51:0;;72819:86;;;;;;8314:66:1;17603:58:0;;;8302:79:1;8397:12;;;;8390:28;;;17603:58:0;;;;;;;;;;8434:12:1;;;;17603:58:0;;;17593:69;;;;;-1:-1:-1;;;;;;72933:80:0;;72992:10;72933:44;:80::i;:::-;72916:97;-1:-1:-1;73030:10:0;-1:-1:-1;;;;;73030:20:0;;;73026:129;;;73075:6;-1:-1:-1;73083:4:0;;-1:-1:-1;73067:21:0;;-1:-1:-1;73067:21:0;73026:129;73129:6;-1:-1:-1;73137:5:0;;-1:-1:-1;73121:22:0;;-1:-1:-1;73121:22:0;72655:507;;;;;;:::o;50334:339::-;50529:41;19475:10;50562:7;50529:18;:41::i;:::-;50521:103;;;;-1:-1:-1;;;50521:103:0;;;;;;;:::i;:::-;50637:28;50647:4;50653:2;50657:7;50637:9;:28::i;36325:494::-;36469:7;36532:27;;;:17;:27;;;;;;;;36503:56;;;;;;;;;-1:-1:-1;;;;;36503:56:0;;;;;-1:-1:-1;;;36503:56:0;;;-1:-1:-1;;;;;36503:56:0;;;;;;;;36469:7;;36572:92;;-1:-1:-1;36623:29:0;;;;;;;;;-1:-1:-1;36623:29:0;-1:-1:-1;;;;;36623:29:0;;;;-1:-1:-1;;;36623:29:0;;-1:-1:-1;;;;;36623:29:0;;;;;36572:92;36714:23;;;;36676:21;;37185:5;;36701:36;;-1:-1:-1;;;;;36701:36:0;:10;:36;:::i;:::-;36700:58;;;;:::i;:::-;36779:16;;;;;-1:-1:-1;36325:494:0;;-1:-1:-1;;;;36325:494:0:o;63021:256::-;63118:7;63154:23;63171:5;63154:16;:23::i;:::-;63146:5;:31;63138:87;;;;-1:-1:-1;;;63138:87:0;;12655:2:1;63138:87:0;;;12637:21:1;12694:2;12674:18;;;12667:30;12733:34;12713:18;;;12706:62;-1:-1:-1;;;12784:18:1;;;12777:41;12835:19;;63138:87:0;12453:407:1;63138:87:0;-1:-1:-1;;;;;;63243:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;63021:256::o;76019:184::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;76088:15:::1;:24:::0;;-1:-1:-1;;76088:24:0::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;76127:15:::0;::::1;;76123:72;;;76160:1;76144:13;:17:::0;76019:184;:::o;76123:72::-:1;76193:2;76177:13;:18:::0;76123:72:::1;76019:184:::0;:::o;76211:149::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;76262:7:::1;76283;20744:6:::0;;-1:-1:-1;;;;;20744:6:0;;20671:87;76283:7:::1;-1:-1:-1::0;;;;;76275:21:0::1;76304;76275:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76261:69;;;76349:2;76341:11;;;::::0;::::1;50744:185:::0;50882:39;50899:4;50905:2;50909:7;50882:39;;;;;;;;;;;;:16;:39::i;73955:390::-;74042:16;74076:23;74102:17;74112:6;74102:9;:17::i;:::-;74076:43;;74130:25;74172:15;74158:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74158:30:0;;74130:58;;74204:9;74199:113;74219:15;74215:1;:19;74199:113;;;74270:30;74290:6;74298:1;74270:19;:30::i;:::-;74256:8;74265:1;74256:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;74236:3;;;;:::i;:::-;;;;74199:113;;;-1:-1:-1;74329:8:0;73955:390;-1:-1:-1;;;73955:390:0:o;75301:86::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75364:4:::1;:15:::0;75301:86::o;63543:233::-;63618:7;63654:30;63441:10;:17;;63353:113;63654:30;63646:5;:38;63638:95;;;;-1:-1:-1;;;63638:95:0;;21715:2:1;63638:95:0;;;21697:21:1;21754:2;21734:18;;;21727:30;21793:34;21773:18;;;21766:62;-1:-1:-1;;;21844:18:1;;;21837:42;21896:19;;63638:95:0;21513:408:1;63638:95:0;63751:10;63762:5;63751:17;;;;;;;;:::i;:::-;;;;;;;;;63744:24;;63543:233;;;:::o;75525:104::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75600:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;75525:104:::0;:::o;47719:239::-;47791:7;47827:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47827:16:0;47862:19;47854:73;;;;-1:-1:-1;;;47854:73:0;;17424:2:1;47854:73:0;;;17406:21:1;17463:2;17443:18;;;17436:30;17502:34;17482:18;;;17475:62;-1:-1:-1;;;17553:18:1;;;17546:39;17602:19;;47854:73:0;17222:405:1;69121:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71070:94::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;71137:9:::1;:19:::0;71070:94::o;47449:208::-;47521:7;-1:-1:-1;;;;;47549:19:0;;47541:74;;;;-1:-1:-1;;;47541:74:0;;17013:2:1;47541:74:0;;;16995:21:1;17052:2;17032:18;;;17025:30;17091:34;17071:18;;;17064:62;-1:-1:-1;;;17142:18:1;;;17135:40;17192:19;;47541:74:0;16811:406:1;47541:74:0;-1:-1:-1;;;;;;47633:16:0;;;;;:9;:16;;;;;;;47449:208::o;21322:103::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;21387:30:::1;21414:1;21387:18;:30::i;:::-;21322:103::o:0;75395:122::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75476:13:::1;:33:::0;75395:122::o;73603:169::-;73672:4;73692:12;73708:31;73723:10;73735:3;;;;;;;;;;;73708:14;:31::i;:::-;73689:50;73603:169;-1:-1:-1;;;;73603:169:0:o;73235:360::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;73320:1:::1;73303:285;73327:9;;73323:1;:13;73303:285;;;52903:4:::0;52927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52927:16:0;:30;73358:218:::1;;73393:12;73408:10;73416:1;73408:7;:10::i;:::-;73393:25;;73438:12;73464:4;-1:-1:-1::0;;;;;73456:18:0::1;73482:4;73456:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73437:54;;;73518:7;73510:39;;;::::0;-1:-1:-1;;;73510:39:0;;11947:2:1;73510:39:0::1;::::0;::::1;11929:21:1::0;11986:2;11966:18;;;11959:30;-1:-1:-1;;;12005:18:1;;;11998:49;12064:18;;73510:39:0::1;11745:343:1::0;73510:39:0::1;73374:191;;73338:3:::0;::::1;::::0;::::1;:::i;:::-;;;;73303:285;;70165:99:::0;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;70237:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;73170:57::-:0;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;48194:104::-;48250:13;48283:7;48276:14;;;;;:::i;49877:155::-;49972:52;19475:10;50005:8;50015;49972:18;:52::i;75106:69::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75152:8:::1;:15:::0;;-1:-1:-1;;75152:15:0::1;;;::::0;;75106:69::o;51000:328::-;51175:41;19475:10;51208:7;51175:18;:41::i;:::-;51167:103;;;;-1:-1:-1;;;51167:103:0;;;;;;;:::i;:::-;51281:39;51295:4;51301:2;51305:7;51314:5;51281:13;:39::i;:::-;51000:328;;;;:::o;74353:727::-;52903:4;52927:16;;;:7;:16;;;;;;74471:13;;-1:-1:-1;;;;;52927:16:0;74502:113;;;;-1:-1:-1;;;74502:113:0;;20479:2:1;74502:113:0;;;20461:21:1;20518:2;20498:18;;;20491:30;20557:34;20537:18;;;20530:62;-1:-1:-1;;;20608:18:1;;;20601:45;20663:19;;74502:113:0;20277:411:1;74502:113:0;74632:8;;;;;;;74628:72;;74673:15;74666:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74353:727;;;:::o;74628:72::-;74712:28;74743:10;:8;:10::i;:::-;74712:41;;74815:1;74790:14;74784:28;:32;:288;;;;;;;;;;;;;;;;;74908:14;74949:18;:7;:16;:18::i;:::-;74994:14;74865:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74784:288;74764:308;74353:727;-1:-1:-1;;;74353:727:0:o;75183:110::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75258:18:::1;:27:::0;75183:110::o;75637:152::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75747:34;;::::1;::::0;:14:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;71172:1475::-:0;71267:6;;;;71266:7;71258:42;;;;-1:-1:-1;;;71258:42:0;;20128:2:1;71258:42:0;;;20110:21:1;20167:2;20147:18;;;20140:30;-1:-1:-1;;;20186:18:1;;;20179:52;20248:18;;71258:42:0;19926:346:1;71258:42:0;71311:14;71328:13;63441:10;:17;;63353:113;71328:13;71311:30;;71374:1;71360:11;:15;71352:55;;;;-1:-1:-1;;;71352:55:0;;22480:2:1;71352:55:0;;;22462:21:1;22519:2;22499:18;;;22492:30;22558:29;22538:18;;;22531:57;22605:18;;71352:55:0;22278:351:1;71352:55:0;71450:9;;71426:20;71435:11;71426:6;:20;:::i;:::-;:33;;71418:68;;;;-1:-1:-1;;;71418:68:0;;17834:2:1;71418:68:0;;;17816:21:1;17873:2;17853:18;;;17846:30;-1:-1:-1;;;17892:18:1;;;17885:52;17954:18;;71418:68:0;17632:346:1;71418:68:0;71515:13;;71562:18;;20744:6;;-1:-1:-1;;;;;20744:6:0;71597:10;:21;71593:883;;71639:15;;;;;;;:23;;71658:4;71639:23;71635:615;;;71688:22;71699:10;71688;:22::i;:::-;71683:305;;71769:25;71783:10;71769:13;:25::i;:::-;71735:134;;;;-1:-1:-1;;;71735:134:0;;22128:2:1;71735:134:0;;;22110:21:1;22167:2;22147:18;;;22140:30;22206:25;22186:18;;;22179:53;22249:18;;71735:134:0;21926:347:1;71735:134:0;71683:305;;;-1:-1:-1;71928:1:0;;-1:-1:-1;71928:1:0;71683:305;72056:10;72008:24;72035:32;;;:20;:32;;;;;;72150:12;72116:30;72135:11;72035:32;72116:30;:::i;:::-;:46;;72086:148;;;;-1:-1:-1;;;72086:148:0;;14656:2:1;72086:148:0;;;14638:21:1;14695:2;14675:18;;;14668:30;14734;14714:18;;;14707:58;14782:18;;72086:148:0;14454:352:1;72086:148:0;71664:586;71635:615;72307:7;72292:11;:22;;72266:120;;;;-1:-1:-1;;;72266:120:0;;18185:2:1;72266:120:0;;;18167:21:1;18224:2;18204:18;;;18197:30;18263:34;18243:18;;;18236:62;-1:-1:-1;;;18314:18:1;;;18307:34;18358:19;;72266:120:0;17983:400:1;72266:120:0;72429:11;72422:4;;:18;;;;:::i;:::-;72409:9;:31;;72401:63;;;;-1:-1:-1;;;72401:63:0;;11947:2:1;72401:63:0;;;11929:21:1;11986:2;11966:18;;;11959:30;-1:-1:-1;;;12005:18:1;;;11998:49;12064:18;;72401:63:0;11745:343:1;72401:63:0;72505:1;72488:152;72513:11;72508:1;:16;72488:152;;72567:10;72546:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;72595:33:0;;-1:-1:-1;72605:10:0;72617;72626:1;72617:6;:10;:::i;:::-;72595:9;:33::i;:::-;72526:3;;;;:::i;:::-;;;;72488:152;;;;71247:1400;;;71172:1475;;:::o;70060:97::-;70104:13;70137:12;70130:19;;;;;:::i;75797:127::-;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;75883:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;21580:201::-:0;20744:6;;-1:-1:-1;;;;;20744:6:0;19475:10;20891:23;20883:68;;;;-1:-1:-1;;;20883:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21669:22:0;::::1;21661:73;;;::::0;-1:-1:-1;;;21661:73:0;;13486:2:1;21661:73:0::1;::::0;::::1;13468:21:1::0;13525:2;13505:18;;;13498:30;13564:34;13544:18;;;13537:62;-1:-1:-1;;;13615:18:1;;;13608:36;13661:19;;21661:73:0::1;13284:402:1::0;21661:73:0::1;21745:28;21764:8;21745:18;:28::i;61258:170::-:0;61360:4;61384:36;61408:11;61384:23;:36::i;56984:174::-;57059:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;57059:29:0;-1:-1:-1;;;;;57059:29:0;;;;;;;;:24;;57113:23;57059:24;57113:14;:23::i;:::-;-1:-1:-1;;;;;57104:46:0;;;;;;;;;;;56984:174;;:::o;13599:231::-;13677:7;13698:17;13717:18;13739:27;13750:4;13756:9;13739:10;:27::i;:::-;13697:69;;;;13777:18;13789:5;13777:11;:18::i;53132:348::-;53225:4;52927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52927:16:0;53242:73;;;;-1:-1:-1;;;53242:73:0;;16175:2:1;53242:73:0;;;16157:21:1;16214:2;16194:18;;;16187:30;16253:34;16233:18;;;16226:62;-1:-1:-1;;;16304:18:1;;;16297:42;16356:19;;53242:73:0;15973:408:1;53242:73:0;53326:13;53342:23;53357:7;53342:14;:23::i;:::-;53326:39;;53395:5;-1:-1:-1;;;;;53384:16:0;:7;-1:-1:-1;;;;;53384:16:0;;:51;;;;53428:7;-1:-1:-1;;;;;53404:31:0;:20;53416:7;53404:11;:20::i;:::-;-1:-1:-1;;;;;53404:31:0;;53384:51;:87;;;-1:-1:-1;;;;;;50224:25:0;;;50200:4;50224:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;53439:32;50103:164;56241:625;56400:4;-1:-1:-1;;;;;56373:31:0;:23;56388:7;56373:14;:23::i;:::-;-1:-1:-1;;;;;56373:31:0;;56365:81;;;;-1:-1:-1;;;56365:81:0;;13893:2:1;56365:81:0;;;13875:21:1;13932:2;13912:18;;;13905:30;13971:34;13951:18;;;13944:62;-1:-1:-1;;;14022:18:1;;;14015:35;14067:19;;56365:81:0;13691:401:1;56365:81:0;-1:-1:-1;;;;;56465:16:0;;56457:65;;;;-1:-1:-1;;;56457:65:0;;15013:2:1;56457:65:0;;;14995:21:1;15052:2;15032:18;;;15025:30;15091:34;15071:18;;;15064:62;-1:-1:-1;;;15142:18:1;;;15135:34;15186:19;;56457:65:0;14811:400:1;56457:65:0;56535:39;56556:4;56562:2;56566:7;56535:20;:39::i;:::-;56639:29;56656:1;56660:7;56639:8;:29::i;:::-;-1:-1:-1;;;;;56681:15:0;;;;;;:9;:15;;;;;:20;;56700:1;;56681:15;:20;;56700:1;;56681:20;:::i;:::-;;;;-1:-1:-1;;;;;;;56712:13:0;;;;;;:9;:13;;;;;:18;;56729:1;;56712:13;:18;;56729:1;;56712:18;:::i;:::-;;;;-1:-1:-1;;56741:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;56741:21:0;-1:-1:-1;;;;;56741:21:0;;;;;;;;;56780:27;;56741:16;;56780:27;;;;;;;49177:341;49107:411;;:::o;21941:191::-;22034:6;;;-1:-1:-1;;;;;22051:17:0;;;-1:-1:-1;;;;;;22051:17:0;;;;;;;22084:40;;22034:6;;;22051:17;22034:6;;22084:40;;22015:16;;22084:40;22004:128;21941:191;:::o;57300:315::-;57455:8;-1:-1:-1;;;;;57446:17:0;:5;-1:-1:-1;;;;;57446:17:0;;;57438:55;;;;-1:-1:-1;;;57438:55:0;;15418:2:1;57438:55:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:27;15476:18;;;15469:55;15541:18;;57438:55:0;15216:349:1;57438:55:0;-1:-1:-1;;;;;57504:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57504:46:0;;;;;;;;;;57566:41;;10713::1;;;57566::0;;10686:18:1;57566:41:0;;;;;;;57300:315;;;:::o;52210:::-;52367:28;52377:4;52383:2;52387:7;52367:9;:28::i;:::-;52414:48;52437:4;52443:2;52447:7;52456:5;52414:22;:48::i;:::-;52406:111;;;;-1:-1:-1;;;52406:111:0;;;;;;;:::i;70289:108::-;70349:13;70382:7;70375:14;;;;;:::i;7423:723::-;7479:13;7700:10;7696:53;;-1:-1:-1;;7727:10:0;;;;;;;;;;;;-1:-1:-1;;;7727:10:0;;;;;7423:723::o;7696:53::-;7774:5;7759:12;7815:78;7822:9;;7815:78;;7848:8;;;;:::i;:::-;;-1:-1:-1;7871:10:0;;-1:-1:-1;7879:2:0;7871:10;;:::i;:::-;;;7815:78;;;7903:19;7935:6;7925:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7925:17:0;;7903:39;;7953:154;7960:10;;7953:154;;7987:11;7997:1;7987:11;;:::i;:::-;;-1:-1:-1;8056:10:0;8064:2;8056:5;:10;:::i;:::-;8043:24;;:2;:24;:::i;:::-;8030:39;;8013:6;8020;8013:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8013:56:0;;;;;;;;-1:-1:-1;8084:11:0;8093:2;8084:11;;:::i;:::-;;;7953:154;;73780:167;73910:3;;73847:4;;;;73883:31;;73898:10;;73910:3;;73883:14;:31::i;53822:110::-;53898:26;53908:2;53912:7;53898:26;;;;;;;;;;;;:9;:26::i;62713:224::-;62815:4;-1:-1:-1;;;;;;62839:50:0;;-1:-1:-1;;;62839:50:0;;:90;;;62893:36;62917:11;62893:23;:36::i;11489:1308::-;11570:7;11579:12;11804:9;:16;11824:2;11804:22;11800:990;;;12100:4;12085:20;;12079:27;12150:4;12135:20;;12129:27;12208:4;12193:20;;12187:27;11843:9;12179:36;12251:25;12262:4;12179:36;12079:27;12129;12251:10;:25::i;:::-;12244:32;;;;;;;;;11800:990;12298:9;:16;12318:2;12298:22;12294:496;;;12573:4;12558:20;;12552:27;12624:4;12609:20;;12603:27;12666:23;12677:4;12552:27;12603;12666:10;:23::i;:::-;12659:30;;;;;;;;12294:496;-1:-1:-1;12738:1:0;;-1:-1:-1;12742:35:0;12722:56;;9760:643;9838:20;9829:5;:29;;;;;;;;:::i;:::-;;9825:571;;;9760:643;:::o;9825:571::-;9936:29;9927:5;:38;;;;;;;;:::i;:::-;;9923:473;;;9982:34;;-1:-1:-1;;;9982:34:0;;11594:2:1;9982:34:0;;;11576:21:1;11633:2;11613:18;;;11606:30;11672:26;11652:18;;;11645:54;11716:18;;9982:34:0;11392:348:1;9923:473:0;10047:35;10038:5;:44;;;;;;;;:::i;:::-;;10034:362;;;10099:41;;-1:-1:-1;;;10099:41:0;;12295:2:1;10099:41:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:33;12353:18;;;12346:61;12424:18;;10099:41:0;12093:355:1;10034:362:0;10171:30;10162:5;:39;;;;;;;;:::i;:::-;;10158:238;;;10218:44;;-1:-1:-1;;;10218:44:0;;15772:2:1;10218:44:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:34;15830:18;;;15823:62;-1:-1:-1;;;15901:18:1;;;15894:32;15943:19;;10218:44:0;15570:398:1;10158:238:0;10293:30;10284:5;:39;;;;;;;;:::i;:::-;;10280:116;;;10340:44;;-1:-1:-1;;;10340:44:0;;18590:2:1;10340:44:0;;;18572:21:1;18629:2;18609:18;;;18602:30;18668:34;18648:18;;;18641:62;-1:-1:-1;;;18719:18:1;;;18712:32;18761:19;;10340:44:0;18388:398:1;70649:215:0;70811:45;70838:4;70844:2;70848:7;70811:26;:45::i;58180:799::-;58335:4;-1:-1:-1;;;;;58356:13:0;;23667:19;:23;58352:620;;58392:72;;-1:-1:-1;;;58392:72:0;;-1:-1:-1;;;;;58392:36:0;;;;;:72;;19475:10;;58443:4;;58449:7;;58458:5;;58392:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58392:72:0;;;;;;;;-1:-1:-1;;58392:72:0;;;;;;;;;;;;:::i;:::-;;;58388:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58634:13:0;;58630:272;;58677:60;;-1:-1:-1;;;58677:60:0;;;;;;;:::i;58630:272::-;58852:6;58846:13;58837:6;58833:2;58829:15;58822:38;58388:529;-1:-1:-1;;;;;;58515:51:0;-1:-1:-1;;;58515:51:0;;-1:-1:-1;58508:58:0;;58352:620;-1:-1:-1;58956:4:0;58180:799;;;;;;:::o;54159:321::-;54289:18;54295:2;54299:7;54289:5;:18::i;:::-;54340:54;54371:1;54375:2;54379:7;54388:5;54340:22;:54::i;:::-;54318:154;;;;-1:-1:-1;;;54318:154:0;;;;;;;:::i;47080:305::-;47182:4;-1:-1:-1;;;;;;47219:40:0;;-1:-1:-1;;;47219:40:0;;:105;;-1:-1:-1;;;;;;;47276:48:0;;-1:-1:-1;;;47276:48:0;47219:105;:158;;;;47341:36;47365:11;47341:23;:36::i;15051:1632::-;15182:7;;16116:66;16103:79;;16099:163;;;-1:-1:-1;16215:1:0;;-1:-1:-1;16219:30:0;16199:51;;16099:163;16276:1;:7;;16281:2;16276:7;;:18;;;;;16287:1;:7;;16292:2;16287:7;;16276:18;16272:102;;;-1:-1:-1;16327:1:0;;-1:-1:-1;16331:30:0;16311:51;;16272:102;16488:24;;;16471:14;16488:24;;;;;;;;;10992:25:1;;;11065:4;11053:17;;11033:18;;;11026:45;;;;11087:18;;;11080:34;;;11130:18;;;11123:34;;;16488:24:0;;10964:19:1;;16488:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16488:24:0;;-1:-1:-1;;16488:24:0;;;-1:-1:-1;;;;;;;16527:20:0;;16523:103;;16580:1;16584:29;16564:50;;;;;;;16523:103;16646:6;-1:-1:-1;16654:20:0;;-1:-1:-1;15051:1632:0;;;;;;;;:::o;14093:344::-;14207:7;;-1:-1:-1;;;;;14253:80:0;;14207:7;14360:25;14376:3;14361:18;;;14383:2;14360:25;:::i;:::-;14344:42;;14404:25;14415:4;14421:1;14424;14427;14404:10;:25::i;:::-;14397:32;;;;;;14093:344;;;;;;:::o;64389:589::-;-1:-1:-1;;;;;64595:18:0;;64591:187;;64630:40;64662:7;65805:10;:17;;65778:24;;;;:15;:24;;;;;:44;;;65833:24;;;;;;;;;;;;65701:164;64630:40;64591:187;;;64700:2;-1:-1:-1;;;;;64692:10:0;:4;-1:-1:-1;;;;;64692:10:0;;64688:90;;64719:47;64752:4;64758:7;64719:32;:47::i;:::-;-1:-1:-1;;;;;64792:16:0;;64788:183;;64825:45;64862:7;64825:36;:45::i;64788:183::-;64898:4;-1:-1:-1;;;;;64892:10:0;:2;-1:-1:-1;;;;;64892:10:0;;64888:83;;64919:40;64947:2;64951:7;64919:27;:40::i;54816:439::-;-1:-1:-1;;;;;54896:16:0;;54888:61;;;;-1:-1:-1;;;54888:61:0;;18993:2:1;54888:61:0;;;18975:21:1;;;19012:18;;;19005:30;19071:34;19051:18;;;19044:62;19123:18;;54888:61:0;18791:356:1;54888:61:0;52903:4;52927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52927:16:0;:30;54960:58;;;;-1:-1:-1;;;54960:58:0;;14299:2:1;54960:58:0;;;14281:21:1;14338:2;14318:18;;;14311:30;14377;14357:18;;;14350:58;14425:18;;54960:58:0;14097:352:1;54960:58:0;55031:45;55060:1;55064:2;55068:7;55031:20;:45::i;:::-;-1:-1:-1;;;;;55089:13:0;;;;;;:9;:13;;;;;:18;;55106:1;;55089:13;:18;;55106:1;;55089:18;:::i;:::-;;;;-1:-1:-1;;55118:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55118:21:0;-1:-1:-1;;;;;55118:21:0;;;;;;;;55157:33;;55118:16;;;55157:33;;55118:16;;55157:33;75600:21:::1;75525:104:::0;:::o;36055:215::-;36157:4;-1:-1:-1;;;;;;36181:41:0;;-1:-1:-1;;;36181:41:0;;:81;;-1:-1:-1;;;;;;;;;;34614:40:0;;;36226:36;34505:157;66492:988;66758:22;66808:1;66783:22;66800:4;66783:16;:22::i;:::-;:26;;;;:::i;:::-;66820:18;66841:26;;;:17;:26;;;;;;66758:51;;-1:-1:-1;66974:28:0;;;66970:328;;-1:-1:-1;;;;;67041:18:0;;67019:19;67041:18;;;:12;:18;;;;;;;;:34;;;;;;;;;67092:30;;;;;;:44;;;67209:30;;:17;:30;;;;;:43;;;66970:328;-1:-1:-1;67394:26:0;;;;:17;:26;;;;;;;;67387:33;;;-1:-1:-1;;;;;67438:18:0;;;;;:12;:18;;;;;:34;;;;;;;67431:41;66492:988::o;67775:1079::-;68053:10;:17;68028:22;;68053:21;;68073:1;;68053:21;:::i;:::-;68085:18;68106:24;;;:15;:24;;;;;;68479:10;:26;;68028:46;;-1:-1:-1;68106:24:0;;68028:46;;68479:26;;;;;;:::i;:::-;;;;;;;;;68457:48;;68543:11;68518:10;68529;68518:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;68623:28;;;:15;:28;;;;;;;:41;;;68795:24;;;;;68788:31;68830:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;67846:1008;;;67775:1079;:::o;65279:221::-;65364:14;65381:20;65398:2;65381:16;:20::i;:::-;-1:-1:-1;;;;;65412:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;65457:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;65279:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:1:o;3067:180::-;3123:6;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3215:26;3231:9;3215:26;:::i;3252:245::-;3310:6;3363:2;3351:9;3342:7;3338:23;3334:32;3331:52;;;3379:1;3376;3369:12;3331:52;3418:9;3405:23;3437:30;3461:5;3437:30;:::i;3502:249::-;3571:6;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3672:9;3666:16;3691:30;3715:5;3691:30;:::i;3756:320::-;3824:6;3877:2;3865:9;3856:7;3852:23;3848:32;3845:52;;;3893:1;3890;3883:12;3845:52;3933:9;3920:23;3966:18;3958:6;3955:30;3952:50;;;3998:1;3995;3988:12;3952:50;4021:49;4062:7;4053:6;4042:9;4038:22;4021:49;:::i;4081:477::-;4156:6;4164;4217:2;4205:9;4196:7;4192:23;4188:32;4185:52;;;4233:1;4230;4223:12;4185:52;4273:9;4260:23;4306:18;4298:6;4295:30;4292:50;;;4338:1;4335;4328:12;4292:50;4361:49;4402:7;4393:6;4382:9;4378:22;4361:49;:::i;:::-;4351:59;;;4460:2;4449:9;4445:18;4432:32;4504:4;4497:5;4493:16;4486:5;4483:27;4473:55;;4524:1;4521;4514:12;4473:55;4547:5;4537:15;;;4081:477;;;;;:::o;4563:450::-;4632:6;4685:2;4673:9;4664:7;4660:23;4656:32;4653:52;;;4701:1;4698;4691:12;4653:52;4741:9;4728:23;4774:18;4766:6;4763:30;4760:50;;;4806:1;4803;4796:12;4760:50;4829:22;;4882:4;4874:13;;4870:27;-1:-1:-1;4860:55:1;;4911:1;4908;4901:12;4860:55;4934:73;4999:7;4994:2;4981:16;4976:2;4972;4968:11;4934:73;:::i;5018:180::-;5077:6;5130:2;5118:9;5109:7;5105:23;5101:32;5098:52;;;5146:1;5143;5136:12;5098:52;-1:-1:-1;5169:23:1;;5018:180;-1:-1:-1;5018:180:1:o;5203:388::-;5280:6;5288;5341:2;5329:9;5320:7;5316:23;5312:32;5309:52;;;5357:1;5354;5347:12;5309:52;5393:9;5380:23;5370:33;;5454:2;5443:9;5439:18;5426:32;5481:18;5473:6;5470:30;5467:50;;;5513:1;5510;5503:12;5467:50;5536:49;5577:7;5568:6;5557:9;5553:22;5536:49;:::i;:::-;5526:59;;;5203:388;;;;;:::o;5596:248::-;5664:6;5672;5725:2;5713:9;5704:7;5700:23;5696:32;5693:52;;;5741:1;5738;5731:12;5693:52;-1:-1:-1;;5764:23:1;;;5834:2;5819:18;;;5806:32;;-1:-1:-1;5596:248:1:o;5849:257::-;5890:3;5928:5;5922:12;5955:6;5950:3;5943:19;5971:63;6027:6;6020:4;6015:3;6011:14;6004:4;5997:5;5993:16;5971:63;:::i;:::-;6088:2;6067:15;-1:-1:-1;;6063:29:1;6054:39;;;;6095:4;6050:50;;5849:257;-1:-1:-1;;5849:257:1:o;6540:1527::-;6764:3;6802:6;6796:13;6828:4;6841:51;6885:6;6880:3;6875:2;6867:6;6863:15;6841:51;:::i;:::-;6955:13;;6914:16;;;;6977:55;6955:13;6914:16;6999:15;;;6977:55;:::i;:::-;7121:13;;7054:20;;;7094:1;;7181;7203:18;;;;7256;;;;7283:93;;7361:4;7351:8;7347:19;7335:31;;7283:93;7424:2;7414:8;7411:16;7391:18;7388:40;7385:167;;;-1:-1:-1;;;7451:33:1;;7507:4;7504:1;7497:15;7537:4;7458:3;7525:17;7385:167;7568:18;7595:110;;;;7719:1;7714:328;;;;7561:481;;7595:110;-1:-1:-1;;7630:24:1;;7616:39;;7675:20;;;;-1:-1:-1;7595:110:1;;7714:328;22889:1;22882:14;;;22926:4;22913:18;;7809:1;7823:169;7837:8;7834:1;7831:15;7823:169;;;7919:14;;7904:13;;;7897:37;7962:16;;;;7854:10;;7823:169;;;7827:3;;8023:8;8016:5;8012:20;8005:27;;7561:481;-1:-1:-1;8058:3:1;;6540:1527;-1:-1:-1;;;;;;;;;;;6540:1527:1:o;8875:488::-;-1:-1:-1;;;;;9144:15:1;;;9126:34;;9196:15;;9191:2;9176:18;;9169:43;9243:2;9228:18;;9221:34;;;9291:3;9286:2;9271:18;;9264:31;;;9069:4;;9312:45;;9337:19;;9329:6;9312:45;:::i;:::-;9304:53;8875:488;-1:-1:-1;;;;;;8875:488:1:o;9936:632::-;10107:2;10159:21;;;10229:13;;10132:18;;;10251:22;;;10078:4;;10107:2;10330:15;;;;10304:2;10289:18;;;10078:4;10373:169;10387:6;10384:1;10381:13;10373:169;;;10448:13;;10436:26;;10517:15;;;;10482:12;;;;10409:1;10402:9;10373:169;;;-1:-1:-1;10559:3:1;;9936:632;-1:-1:-1;;;;;;9936:632:1:o;11168:219::-;11317:2;11306:9;11299:21;11280:4;11337:44;11377:2;11366:9;11362:18;11354:6;11337:44;:::i;12865:414::-;13067:2;13049:21;;;13106:2;13086:18;;;13079:30;13145:34;13140:2;13125:18;;13118:62;-1:-1:-1;;;13211:2:1;13196:18;;13189:48;13269:3;13254:19;;12865:414::o;19565:356::-;19767:2;19749:21;;;19786:18;;;19779:30;19845:34;19840:2;19825:18;;19818:62;19912:2;19897:18;;19565:356::o;21095:413::-;21297:2;21279:21;;;21336:2;21316:18;;;21309:30;21375:34;21370:2;21355:18;;21348:62;-1:-1:-1;;;21441:2:1;21426:18;;21419:47;21498:3;21483:19;;21095:413::o;22942:128::-;22982:3;23013:1;23009:6;23006:1;23003:13;23000:39;;;23019:18;;:::i;:::-;-1:-1:-1;23055:9:1;;22942:128::o;23075:120::-;23115:1;23141;23131:35;;23146:18;;:::i;:::-;-1:-1:-1;23180:9:1;;23075:120::o;23200:168::-;23240:7;23306:1;23302;23298:6;23294:14;23291:1;23288:21;23283:1;23276:9;23269:17;23265:45;23262:71;;;23313:18;;:::i;:::-;-1:-1:-1;23353:9:1;;23200:168::o;23373:125::-;23413:4;23441:1;23438;23435:8;23432:34;;;23446:18;;:::i;:::-;-1:-1:-1;23483:9:1;;23373:125::o;23503:258::-;23575:1;23585:113;23599:6;23596:1;23593:13;23585:113;;;23675:11;;;23669:18;23656:11;;;23649:39;23621:2;23614:10;23585:113;;;23716:6;23713:1;23710:13;23707:48;;;-1:-1:-1;;23751:1:1;23733:16;;23726:27;23503:258::o;23766:380::-;23845:1;23841:12;;;;23888;;;23909:61;;23963:4;23955:6;23951:17;23941:27;;23909:61;24016:2;24008:6;24005:14;23985:18;23982:38;23979:161;;;24062:10;24057:3;24053:20;24050:1;24043:31;24097:4;24094:1;24087:15;24125:4;24122:1;24115:15;23979:161;;23766:380;;;:::o;24151:135::-;24190:3;-1:-1:-1;;24211:17:1;;24208:43;;;24231:18;;:::i;:::-;-1:-1:-1;24278:1:1;24267:13;;24151:135::o;24291:112::-;24323:1;24349;24339:35;;24354:18;;:::i;:::-;-1:-1:-1;24388:9:1;;24291:112::o;24408:127::-;24469:10;24464:3;24460:20;24457:1;24450:31;24500:4;24497:1;24490:15;24524:4;24521:1;24514:15;24540:127;24601:10;24596:3;24592:20;24589:1;24582:31;24632:4;24629:1;24622:15;24656:4;24653:1;24646:15;24672:127;24733:10;24728:3;24724:20;24721:1;24714:31;24764:4;24761:1;24754:15;24788:4;24785:1;24778:15;24804:127;24865:10;24860:3;24856:20;24853:1;24846:31;24896:4;24893:1;24886:15;24920:4;24917:1;24910:15;24936:127;24997:10;24992:3;24988:20;24985:1;24978:31;25028:4;25025:1;25018:15;25052:4;25049:1;25042:15;25068:127;25129:10;25124:3;25120:20;25117:1;25110:31;25160:4;25157:1;25150:15;25184:4;25181:1;25174:15;25200:131;-1:-1:-1;;;;;;25274:32:1;;25264:43;;25254:71;;25321:1;25318;25311:12

Swarm Source

ipfs://50d56c5d3502280f571b75d9385ccff9059f8cf3c3c28b9903db1331ab0e6363
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.