ETH Price: $2,546.95 (+1.03%)

Token

DopeHeadsNFT (DH4L)
 

Overview

Max Total Supply

1,003 DH4L

Holders

344

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 DH4L
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Dopest NFT In The MetaVerse - This is the official Dopeheads NFT Opensea page. We have a lot of bootleggers so feel free to hit up Towdown @dopeheadsnft on Instagram or Mike Frost @slfemp on instagram with any questions. Official Minting is on Dopeheads.com and Project Inf...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DopeHeadsNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-16
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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/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/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/DopeHeadsNFT.sol



pragma solidity ^0.8.4;






contract RewardDistributor is Ownable {
  address[] public investors;
  uint256[] public investorAmounts;

  receive() payable external {
  }

  function setInvestors(address[] calldata _investors) external onlyOwner {
    delete investors;
    investors = _investors;
  }

  function setInvestorAmounts(uint32[] calldata _amounts) external onlyOwner {
    require(
      _amounts.length == investors.length,
      "The numbers doesn't match with the investors"
    );

    uint256 sum = 0;
    for (uint256 i = 0; i < _amounts.length; i++) {
      sum += _amounts[i];
    }
    require(sum == 10000, "The sum of the numbers must be 10000");

    delete investorAmounts;
    investorAmounts = _amounts;
  }

  function withdraw() public onlyOwner {
    require(investorAmounts.length > 0, "No investors specified");

    uint256 bal = address(this).balance;

    for (uint256 i = 0; i < investors.length; i++) {
      if (investorAmounts[i] > 0) {
        Address.sendValue(payable(investors[i]), bal * investorAmounts[i] / 10000);
      }
    }
  }
}

contract Whitelist is Ownable {
    using ECDSA for bytes32;
    address signer1;
    address signer2;

    function setSigners(address _signer1, address _signer2) external onlyOwner {
        signer1 = _signer1;
        signer2 = _signer2;
    }

    function getRecoverAddress(bytes calldata signature) internal view returns (address) {
        bytes32 hash = keccak256(abi.encodePacked(this, msg.sender));
        hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        return hash.recover(signature);
    }

    modifier onlyWhitelist1(bytes calldata signature) {
        require(signer1 != address (0), "Signer 1 Not Set");
        require(getRecoverAddress(signature) == signer1, "Not Whitelisted 1");
        _;
    }

    modifier onlyWhitelist2(bytes calldata signature) {
        require(signer2 != address (0), "Signer 2 Not Set");
        require(getRecoverAddress(signature) == signer2, "Not Whitelisted 2");
        _;
    }
}

contract DopeHeadsNFT is ERC721A("DopeHeadsNFT", "DH4L"), Whitelist, RewardDistributor {
  using Strings for uint;

  uint public price = 0.15 ether;
  uint public priceWL1 = 0.1 ether;
  uint public priceWL2 = 0.125 ether;

  uint public limitPerAddress = 5;

  uint private _currentId = 0;

  uint immutable public LOCK_7d = 7 days;
  uint immutable public LOCK_6mo = 183 days;
  uint immutable public LOCK_12mo = 365 days;

  uint public maxSupply = 10000;

  mapping(uint=>uint) private _tokenUnlockTime;
  mapping(address=>uint) public addressMints;

  string public unrevealedURI;
  string public baseURI;
  string public baseExtension;

  bool public saleOpen;
  bool public saleWLOpen;

  struct MintData {
    address to;
    uint amount1;
    uint amount2;
    uint amount3;
  }

  function setPrices(uint _price, uint _priceWL1, uint _priceWL2) external onlyOwner {
    price = _price;
    priceWL1 = _priceWL1;
    priceWL2 = _priceWL2;
  }

  function setUnrevealedURI(string memory _uri) external onlyOwner {
    unrevealedURI = _uri;
  }

  function setBaseURI(string memory _uri) external onlyOwner {
    baseURI = _uri;
  }

  function setBaseExtension(string memory _ext) external onlyOwner {
    baseExtension = _ext;
  }

  function startSale() external onlyOwner {
    saleOpen = true;
  }

  function endSale() external onlyOwner {
    saleOpen = false;
  }

  function startWLSale() external onlyOwner {
    saleWLOpen = true;
  }

  function endWLSale() external onlyOwner {
    saleWLOpen = false;
  }

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

  function tokenUnlockTime(uint tokenId) public view returns (uint) {
    require (_exists(tokenId), "Nonexistent token ID");

    uint id = tokenId;
    while (_tokenUnlockTime[id] == 0 && id < _currentId) {
      id++;
    }

    return _tokenUnlockTime[id];
  }

  function _mint(address to, uint amount1, uint amount2, uint amount3) internal {

    uint totalMint = amount1 + amount2 + amount3;

    require (totalMint >= 1 && totalMint <= 5, "Invalid mint amount");
    require(addressMints[to] + totalMint <= limitPerAddress, "You can't have more than 5");

    require (_currentId + totalMint <= maxSupply, "You cannot mint any more");

    _safeMint(to, totalMint);

    addressMints[to] += totalMint;

    if (amount1 > 0) {
      _currentId += amount1;
      _tokenUnlockTime[_currentId] = block.timestamp + LOCK_7d;
    }

    if (amount2 > 0) {
      _currentId += amount2;
      _tokenUnlockTime[_currentId] = block.timestamp + LOCK_6mo;
    }

    if (amount3 > 0) {
      _currentId += amount3;
      _tokenUnlockTime[_currentId] = block.timestamp + LOCK_12mo;
    }
  }

  function mint(uint amount1, uint amount2, uint amount3) external payable {
    uint totalCost = (amount1 + amount2 + amount3) * price;
    require(msg.value >= totalCost, "Insufficient payment");
    require (saleOpen, "Sale is not open");

    _mint(msg.sender, amount1, amount2, amount3);

    if (msg.value > totalCost) {
      Address.sendValue(payable(msg.sender), msg.value - totalCost);
    }
  }

  function mintWL1(uint amount1, uint amount2, uint amount3, bytes calldata sign) external payable onlyWhitelist1(sign) {
    uint totalCost = (amount1 + amount2 + amount3) * priceWL1;
    require(msg.value >= totalCost, "Insufficient payment");
    require (saleWLOpen, "Whitelist sale is not open");

    _mint(msg.sender, amount1, amount2, amount3);

    if (msg.value > totalCost) {
      Address.sendValue(payable(msg.sender), msg.value - totalCost);
    }
  }

  function mintWL2(uint amount1, uint amount2, uint amount3, bytes calldata sign) external payable onlyWhitelist2(sign) {
    uint totalCost = (amount1 + amount2 + amount3) * priceWL2;
    require(msg.value >= totalCost, "Insufficient payment");
    require (saleWLOpen, "Whitelist sale is not open");

    _mint(msg.sender, amount1, amount2, amount3);

    if (msg.value > totalCost) {
      Address.sendValue(payable(msg.sender), msg.value - totalCost);
    }
  }

  function mintAirdrop(MintData[] memory _data) external onlyOwner {
    uint i = 0;
    for (i = 0; i < _data.length; i+=1) {
      _mint(_data[i].to, _data[i].amount1, _data[i].amount2, _data[i].amount3);
    }
  }

  function tokenURI(uint tokenId) public view override returns (string memory) {
    require (_exists(tokenId), "Nonexistent token ID");

    if (block.timestamp < tokenUnlockTime(tokenId)) {
      return unrevealedURI;
    }

    return string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension));
  }

  function burn(uint tokenId) external {
    require (ownerOf(tokenId) == msg.sender, "You are not the token owner");

    _burn(tokenId);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (
      ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
    ) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"LOCK_12mo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_6mo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_7d","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMints","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"investorAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"investors","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"limitPerAddress","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":"amount1","type":"uint256"},{"internalType":"uint256","name":"amount2","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"uint256","name":"amount2","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"internalType":"struct DopeHeadsNFT.MintData[]","name":"_data","type":"tuple[]"}],"name":"mintAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"uint256","name":"amount2","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"mintWL1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"uint256","name":"amount2","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"mintWL2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWL1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWL2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleWLOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_ext","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"_amounts","type":"uint32[]"}],"name":"setInvestorAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_investors","type":"address[]"}],"name":"setInvestors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_priceWL1","type":"uint256"},{"internalType":"uint256","name":"_priceWL2","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer1","type":"address"},{"internalType":"address","name":"_signer2","type":"address"}],"name":"setSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWLSale","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60e0604052670214e8348c4f0000600d5567016345785d8a0000600e556701bc16d674ec8000600f556005601055600060115562093a8060805262f1428060a0526301e1338060c0526127106012553480156200005b57600080fd5b50604080518082018252600c81526b111bdc19521958591cd3919560a21b60208083019182528351808501909452600484526311120d1360e21b908401528151919291620000ac916002916200012d565b508051620000c29060039060208401906200012d565b5050600160005550620000d533620000db565b62000210565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013b90620001d3565b90600052602060002090601f0160209004810192826200015f5760008555620001aa565b82601f106200017a57805160ff1916838001178555620001aa565b82800160010185558215620001aa579182015b82811115620001aa5782518255916020019190600101906200018d565b50620001b8929150620001bc565b5090565b5b80821115620001b85760008155600101620001bd565b600181811c90821680620001e857607f821691505b602082108114156200020a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516136b162000255600039600081816103e50152611daf0152600081816107b00152611d540152600081816106590152611cf901526136b16000f3fe6080604052600436106103035760003560e01c8063715018a611610190578063b66a0e5d116100dc578063da3ef23f11610095578063f2fde38b1161006f578063f2fde38b146108fa578063fb017fde1461091a578063fdf969fc1461093a578063fe2c7fee1461095a57600080fd5b8063da3ef23f14610871578063e0dc850d14610891578063e985e9c5146108b157600080fd5b8063b66a0e5d146107d2578063b88d4fde146107e7578063c194907214610807578063c668286214610826578063c87b56dd1461083b578063d5abeb011461085b57600080fd5b8063964c33b511610149578063a22cb46511610123578063a22cb4651461074b578063a88c37ef1461076b578063a88fe42d1461077e578063ad8fc4d81461079e57600080fd5b8063964c33b5146106ee57806399288dbb1461071b578063a035b1fe1461073557600080fd5b8063715018a6146106325780637fcb94e4146106475780638a9895631461067b5780638da5cb5b1461069b57806391130aea146106b957806395d89b41146106d957600080fd5b80633336913b1161024f578063438b630011610208578063674bf7c3116101e2578063674bf7c3146105d25780636c0360eb146105e85780637035bf18146105fd57806370a082311461061257600080fd5b8063438b63001461056557806355f804b3146105925780636352211e146105b257600080fd5b80633336913b146104c5578063380d831b146104db5780633ccfd60b146104f05780633feb5f2b1461050557806342842e0e1461052557806342966c681461054557600080fd5b806318160ddd116102bc57806323b872dd1161029657806323b872dd1461045a578063286720c51461047a5780632a484ad41461049a5780632db7b895146104b057600080fd5b806318160ddd146104155780631eb4cce8146104325780632045b1be1461044557600080fd5b806301ffc9a71461030f57806302acc94b1461034457806306fdde0314610359578063081812fc1461037b578063095ea7b3146103b357806309f0a076146103d357600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a366004613188565b61097a565b60405190151581526020015b60405180910390f35b61035761035236600461321d565b6109cc565b005b34801561036557600080fd5b5061036e610ab1565b60405161033b919061346b565b34801561038757600080fd5b5061039b610396366004613205565b610b43565b6040516001600160a01b03909116815260200161033b565b3480156103bf57600080fd5b506103576103ce36600461303c565b610b87565b3480156103df57600080fd5b506104077f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200161033b565b34801561042157600080fd5b506001546000540360001901610407565b610357610440366004613248565b610c15565b34801561045157600080fd5b50610357610db5565b34801561046657600080fd5b50610357610475366004612f4f565b610df0565b34801561048657600080fd5b50610407610495366004613205565b610dfb565b3480156104a657600080fd5b5061040760105481565b3480156104bc57600080fd5b50610357610e1c565b3480156104d157600080fd5b50610407600f5481565b3480156104e757600080fd5b50610357610e53565b3480156104fc57600080fd5b50610357610e89565b34801561051157600080fd5b5061039b610520366004613205565b610fd9565b34801561053157600080fd5b50610357610540366004612f4f565b611003565b34801561055157600080fd5b50610357610560366004613205565b61101e565b34801561057157600080fd5b50610585610580366004612efc565b61108a565b60405161033b9190613427565b34801561059e57600080fd5b506103576105ad3660046131c0565b6111ed565b3480156105be57600080fd5b5061039b6105cd366004613205565b61122a565b3480156105de57600080fd5b50610407600e5481565b3480156105f457600080fd5b5061036e61123c565b34801561060957600080fd5b5061036e6112ca565b34801561061e57600080fd5b5061040761062d366004612efc565b6112d7565b34801561063e57600080fd5b50610357611325565b34801561065357600080fd5b506104077f000000000000000000000000000000000000000000000000000000000000000081565b34801561068757600080fd5b506103576106963660046130a4565b61135b565b3480156106a757600080fd5b506008546001600160a01b031661039b565b3480156106c557600080fd5b506103576106d4366004612f1d565b61145b565b3480156106e557600080fd5b5061036e6114b3565b3480156106fa57600080fd5b50610407610709366004612efc565b60146020526000908152604090205481565b34801561072757600080fd5b5060185461032f9060ff1681565b34801561074157600080fd5b50610407600d5481565b34801561075757600080fd5b50610357610766366004613002565b6114c2565b610357610779366004613248565b611558565b34801561078a57600080fd5b5061035761079936600461321d565b611618565b3480156107aa57600080fd5b506104077f000000000000000000000000000000000000000000000000000000000000000081565b3480156107de57600080fd5b50610357611650565b3480156107f357600080fd5b50610357610802366004612f8a565b611689565b34801561081357600080fd5b5060185461032f90610100900460ff1681565b34801561083257600080fd5b5061036e6116d4565b34801561084757600080fd5b5061036e610856366004613205565b6116e1565b34801561086757600080fd5b5061040760125481565b34801561087d57600080fd5b5061035761088c3660046131c0565b611806565b34801561089d57600080fd5b506103576108ac366004613065565b611843565b3480156108bd57600080fd5b5061032f6108cc366004612f1d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561090657600080fd5b50610357610915366004612efc565b6119ae565b34801561092657600080fd5b50610357610935366004613065565b611a46565b34801561094657600080fd5b50610407610955366004613205565b611a88565b34801561096657600080fd5b506103576109753660046131c0565b611b21565b60006001600160e01b031982166380ac58cd60e01b14806109ab57506001600160e01b03198216635b5e139f60e01b145b806109c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b600d54600090826109dd858761350b565b6109e7919061350b565b6109f19190613537565b905080341015610a3f5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064015b60405180910390fd5b60185460ff16610a845760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b6044820152606401610a36565b610a9033858585611b5e565b80341115610aab57610aab33610aa68334613556565b611dee565b50505050565b606060028054610ac090613599565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90613599565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e82611f07565b610b6b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b928261122a565b9050806001600160a01b0316836001600160a01b03161415610bc75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610be75750610be581336108cc565b155b15610c05576040516367d9dca160e11b815260040160405180910390fd5b610c10838383611f40565b505050565b600954829082906001600160a01b0316610c645760405162461bcd60e51b815260206004820152601060248201526f14da59db995c880c48139bdd0814d95d60821b6044820152606401610a36565b6009546001600160a01b0316610c7a8383611f9c565b6001600160a01b031614610cc45760405162461bcd60e51b81526020600482015260116024820152704e6f742057686974656c6973746564203160781b6044820152606401610a36565b600e5460009086610cd5898b61350b565b610cdf919061350b565b610ce99190613537565b905080341015610d325760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610a36565b601854610100900460ff16610d895760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206f70656e0000000000006044820152606401610a36565b610d9533898989611b5e565b80341115610dab57610dab33610aa68334613556565b5050505050505050565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b8152600401610a369061347e565b6018805461ff001916610100179055565b610c1083838361207a565b600c8181548110610e0b57600080fd5b600091825260209091200154905081565b6008546001600160a01b03163314610e465760405162461bcd60e51b8152600401610a369061347e565b6018805461ff0019169055565b6008546001600160a01b03163314610e7d5760405162461bcd60e51b8152600401610a369061347e565b6018805460ff19169055565b6008546001600160a01b03163314610eb35760405162461bcd60e51b8152600401610a369061347e565b600c54610efb5760405162461bcd60e51b8152602060048201526016602482015275139bc81a5b9d995cdd1bdc9cc81cdc1958da599a595960521b6044820152606401610a36565b4760005b600b54811015610fd5576000600c8281548110610f2c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115610fc357610fc3600b8281548110610f6157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b0316612710600c8481548110610fa357634e487b7160e01b600052603260045260246000fd5b906000526020600020015485610fb99190613537565b610aa69190613523565b80610fcd816135d4565b915050610eff565b5050565b600b8181548110610fe957600080fd5b6000918252602090912001546001600160a01b0316905081565b610c1083838360405180602001604052806000815250611689565b336110288261122a565b6001600160a01b03161461107e5760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f742074686520746f6b656e206f776e657200000000006044820152606401610a36565b61108781612279565b50565b60606000611097836112d7565b90506000816001600160401b038111156110c157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156110ea578160200160208202803683370190505b50905060016000805b848210801561110457506012548311155b156111e257600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091611171575080516001600160a01b031615155b1561117b57805191505b876001600160a01b0316826001600160a01b031614156111cf57838584815181106111b657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152826111cb816135d4565b9350505b836111d9816135d4565b945050506110f3565b509195945050505050565b6008546001600160a01b031633146112175760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906016906020840190612cfa565b6000611235826123e3565b5192915050565b6016805461124990613599565b80601f016020809104026020016040519081016040528092919081815260200182805461127590613599565b80156112c25780601f10611297576101008083540402835291602001916112c2565b820191906000526020600020905b8154815290600101906020018083116112a557829003601f168201915b505050505081565b6015805461124990613599565b60006001600160a01b038216611300576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461134f5760405162461bcd60e51b8152600401610a369061347e565b611359600061250a565b565b6008546001600160a01b031633146113855760405162461bcd60e51b8152600401610a369061347e565b60005b8151811015610fd5576114498282815181106113b457634e487b7160e01b600052603260045260246000fd5b6020026020010151600001518383815181106113e057634e487b7160e01b600052603260045260246000fd5b60200260200101516020015184848151811061140c57634e487b7160e01b600052603260045260246000fd5b60200260200101516040015185858151811061143857634e487b7160e01b600052603260045260246000fd5b602002602001015160600151611b5e565b61145460018261350b565b9050611388565b6008546001600160a01b031633146114855760405162461bcd60e51b8152600401610a369061347e565b600980546001600160a01b039384166001600160a01b031991821617909155600a8054929093169116179055565b606060038054610ac090613599565b6001600160a01b0382163314156114ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54829082906001600160a01b03166115a75760405162461bcd60e51b815260206004820152601060248201526f14da59db995c880c88139bdd0814d95d60821b6044820152606401610a36565b600a546001600160a01b03166115bd8383611f9c565b6001600160a01b0316146116075760405162461bcd60e51b81526020600482015260116024820152702737ba102bb434ba32b634b9ba32b2101960791b6044820152606401610a36565b600f5460009086610cd5898b61350b565b6008546001600160a01b031633146116425760405162461bcd60e51b8152600401610a369061347e565b600d92909255600e55600f55565b6008546001600160a01b0316331461167a5760405162461bcd60e51b8152600401610a369061347e565b6018805460ff19166001179055565b61169484848461207a565b6001600160a01b0383163b151580156116b657506116b48484848461255c565b155b15610aab576040516368d2bf6b60e11b815260040160405180910390fd5b6017805461124990613599565b60606116ec82611f07565b61172f5760405162461bcd60e51b8152602060048201526014602482015273139bdb995e1a5cdd195b9d081d1bdad95b88125160621b6044820152606401610a36565b61173882611a88565b4210156117d1576015805461174c90613599565b80601f016020809104026020016040519081016040528092919081815260200182805461177890613599565b80156117c55780601f1061179a576101008083540402835291602001916117c5565b820191906000526020600020905b8154815290600101906020018083116117a857829003601f168201915b50505050509050919050565b60166117dc83612653565b60176040516020016117f0939291906133b7565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146118305760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906017906020840190612cfa565b6008546001600160a01b0316331461186d5760405162461bcd60e51b8152600401610a369061347e565b600b5481146118d35760405162461bcd60e51b815260206004820152602c60248201527f546865206e756d6265727320646f65736e2774206d617463682077697468207460448201526b686520696e766573746f727360a01b6064820152608401610a36565b6000805b82811015611938578383828181106118ff57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061191491906132cf565b6119249063ffffffff168361350b565b915080611930816135d4565b9150506118d7565b5080612710146119965760405162461bcd60e51b8152602060048201526024808201527f5468652073756d206f6620746865206e756d62657273206d75737420626520316044820152630303030360e41b6064820152608401610a36565b6119a2600c6000612d7e565b610aab600c8484612d9c565b6008546001600160a01b031633146119d85760405162461bcd60e51b8152600401610a369061347e565b6001600160a01b038116611a3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a36565b6110878161250a565b6008546001600160a01b03163314611a705760405162461bcd60e51b8152600401610a369061347e565b611a7c600b6000612d7e565b610c10600b8383612ddf565b6000611a9382611f07565b611ad65760405162461bcd60e51b8152602060048201526014602482015273139bdb995e1a5cdd195b9d081d1bdad95b88125160621b6044820152606401610a36565b815b600081815260136020526040902054158015611af5575060115481105b15611b0c5780611b04816135d4565b915050611ad8565b60009081526013602052604090205492915050565b6008546001600160a01b03163314611b4b5760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906015906020840190612cfa565b600081611b6b848661350b565b611b75919061350b565b905060018110158015611b89575060058111155b611bcb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610a36565b6010546001600160a01b038616600090815260146020526040902054611bf290839061350b565b1115611c405760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e27742068617665206d6f7265207468616e20350000000000006044820152606401610a36565b60125481601154611c51919061350b565b1115611c9f5760405162461bcd60e51b815260206004820152601860248201527f596f752063616e6e6f74206d696e7420616e79206d6f726500000000000000006044820152606401610a36565b611ca9858261276c565b6001600160a01b03851660009081526014602052604081208054839290611cd190849061350b565b90915550508315611d31578360116000828254611cee919061350b565b90915550611d1e90507f00000000000000000000000000000000000000000000000000000000000000004261350b565b6011546000908152601360205260409020555b8215611d8c578260116000828254611d49919061350b565b90915550611d7990507f00000000000000000000000000000000000000000000000000000000000000004261350b565b6011546000908152601360205260409020555b8115611de7578160116000828254611da4919061350b565b90915550611dd490507f00000000000000000000000000000000000000000000000000000000000000004261350b565b6011546000908152601360205260409020555b5050505050565b80471015611e3e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a36565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e8b576040519150601f19603f3d011682016040523d82523d6000602084013e611e90565b606091505b5050905080610c105760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a36565b600081600111158015611f1b575060005482105b80156109c6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040516bffffffffffffffffffffffff1930606090811b8216602084015233901b166034820152600090819060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c82018190529150605c0160405160208183030381529060405280519060200120905061207284848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525085939250506127869050565b949350505050565b6000612085826123e3565b80519091506000906001600160a01b0316336001600160a01b031614806120b3575081516120b390336108cc565b806120ce5750336120c384610b43565b6001600160a01b0316145b9050806120ee57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146121235760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661214a57604051633a954ecd60e21b815260040160405180910390fd5b61215a6000848460000151611f40565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166122445760005481101561224457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061365c83398151915260405160405180910390a4611de7565b6000612284826123e3565b90506122966000838360000151611f40565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b19169390931790559085018083529120549091166123ad576000548110156123ad57815160008281526004602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b039091169060008051602061365c833981519152908390a450506001805481019055565b60408051606081018252600080825260208201819052918101919091528180600111158015612413575060005481105b156124f157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124ef5780516001600160a01b031615612486579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156124ea579392505050565b612486565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125919033908990889088906004016133ea565b602060405180830381600087803b1580156125ab57600080fd5b505af19250505080156125db575060408051601f3d908101601f191682019092526125d8918101906131a4565b60015b612636573d808015612609576040519150601f19603f3d011682016040523d82523d6000602084013e61260e565b606091505b50805161262e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816126775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126a1578061268b816135d4565b915061269a9050600a83613523565b915061267b565b6000816001600160401b038111156126c957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126f3576020820181803683370190505b5090505b841561207257612708600183613556565b9150612715600a866135ef565b61272090603061350b565b60f81b81838151811061274357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612765600a86613523565b94506126f7565b610fd58282604051806020016040528060008152506127aa565b600080600061279585856127b7565b915091506127a281612827565b509392505050565b610c108383836001612a28565b6000808251604114156127ee5760208301516040840151606085015160001a6127e287828585612bd4565b94509450505050612820565b825160401415612818576020830151604084015161280d868383612cc1565b935093505050612820565b506000905060025b9250929050565b600081600481111561284957634e487b7160e01b600052602160045260246000fd5b14156128525750565b600181600481111561287457634e487b7160e01b600052602160045260246000fd5b14156128c25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a36565b60028160048111156128e457634e487b7160e01b600052602160045260246000fd5b14156129325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a36565b600381600481111561295457634e487b7160e01b600052602160045260246000fd5b14156129ad5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a36565b60048160048111156129cf57634e487b7160e01b600052602160045260246000fd5b14156110875760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a36565b6000546001600160a01b038516612a5157604051622e076360e81b815260040160405180910390fd5b83612a6f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b2057506001600160a01b0387163b15155b15612b97575b60405182906001600160a01b0389169060009060008051602061365c833981519152908290a4612b5f600088848060010195508861255c565b612b7c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612b26578260005414612b9257600080fd5b612bcb565b5b6040516001830192906001600160a01b0389169060009060008051602061365c833981519152908290a480821415612b98575b50600055611de7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612c0b5750600090506003612cb8565b8460ff16601b14158015612c2357508460ff16601c14155b15612c345750600090506004612cb8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c88573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612cb157600060019250925050612cb8565b9150600090505b94509492505050565b6000806001600160ff1b03831681612cde60ff86901c601b61350b565b9050612cec87828885612bd4565b935093505050935093915050565b828054612d0690613599565b90600052602060002090601f016020900481019282612d285760008555612d6e565b82601f10612d4157805160ff1916838001178555612d6e565b82800160010185558215612d6e579182015b82811115612d6e578251825591602001919060010190612d53565b50612d7a929150612e32565b5090565b50805460008255906000526020600020908101906110879190612e32565b828054828255906000526020600020908101928215612d6e579160200282015b82811115612d6e5763ffffffff8335168255602090920191600190910190612dbc565b828054828255906000526020600020908101928215612d6e579160200282015b82811115612d6e5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612dff565b5b80821115612d7a5760008155600101612e33565b60006001600160401b03831115612e6057612e6061362f565b612e73601f8401601f19166020016134db565b9050828152838383011115612e8757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612eb557600080fd5b919050565b60008083601f840112612ecb578182fd5b5081356001600160401b03811115612ee1578182fd5b6020830191508360208260051b850101111561282057600080fd5b600060208284031215612f0d578081fd5b612f1682612e9e565b9392505050565b60008060408385031215612f2f578081fd5b612f3883612e9e565b9150612f4660208401612e9e565b90509250929050565b600080600060608486031215612f63578081fd5b612f6c84612e9e565b9250612f7a60208501612e9e565b9150604084013590509250925092565b60008060008060808587031215612f9f578081fd5b612fa885612e9e565b9350612fb660208601612e9e565b92506040850135915060608501356001600160401b03811115612fd7578182fd5b8501601f81018713612fe7578182fd5b612ff687823560208401612e47565b91505092959194509250565b60008060408385031215613014578182fd5b61301d83612e9e565b915060208301358015158114613031578182fd5b809150509250929050565b6000806040838503121561304e578182fd5b61305783612e9e565b946020939093013593505050565b60008060208385031215613077578182fd5b82356001600160401b0381111561308c578283fd5b61309885828601612eba565b90969095509350505050565b600060208083850312156130b6578182fd5b82356001600160401b03808211156130cc578384fd5b818501915085601f8301126130df578384fd5b8135818111156130f1576130f161362f565b6130ff848260051b016134db565b8181528481019250838501600783901b8501860189101561311e578687fd5b8694505b8285101561317c57608080828b03121561313a578788fd5b6131426134b3565b61314b83612e9e565b8152828801358882015260408084013590820152606080840135908201528552600195909501949386019301613122565b50979650505050505050565b600060208284031215613199578081fd5b8135612f1681613645565b6000602082840312156131b5578081fd5b8151612f1681613645565b6000602082840312156131d1578081fd5b81356001600160401b038111156131e6578182fd5b8201601f810184136131f6578182fd5b61207284823560208401612e47565b600060208284031215613216578081fd5b5035919050565b600080600060608486031215613231578081fd5b505081359360208301359350604090920135919050565b60008060008060006080868803121561325f578283fd5b85359450602086013593506040860135925060608601356001600160401b038082111561328a578283fd5b818801915088601f83011261329d578283fd5b8135818111156132ab578384fd5b8960208285010111156132bc578384fd5b9699959850939650602001949392505050565b6000602082840312156132e0578081fd5b813563ffffffff81168114612f16578182fd5b6000815180845261330b81602086016020860161356d565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061333957607f831692505b602080841082141561335957634e487b7160e01b86526022600452602486fd5b81801561336d576001811461337e576133ab565b60ff198616895284890196506133ab565b60008881526020902060005b868110156133a35781548b82015290850190830161338a565b505084890196505b50505050505092915050565b60006133c3828661331f565b84516133d381836020890161356d565b6133df8183018661331f565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061341d908301846132f3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561345f57835183529284019291840191600101613443565b50909695505050505050565b602081526000612f1660208301846132f3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051608081016001600160401b03811182821017156134d5576134d561362f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156135035761350361362f565b604052919050565b6000821982111561351e5761351e613603565b500190565b60008261353257613532613619565b500490565b600081600019048311821515161561355157613551613603565b500290565b60008282101561356857613568613603565b500390565b60005b83811015613588578181015183820152602001613570565b83811115610aab5750506000910152565b600181811c908216806135ad57607f821691505b602082108114156135ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135e8576135e8613603565b5060010190565b6000826135fe576135fe613619565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b9434059c97876fb48549d06260746af1fe11a7d389ab50e219785661467c08764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103035760003560e01c8063715018a611610190578063b66a0e5d116100dc578063da3ef23f11610095578063f2fde38b1161006f578063f2fde38b146108fa578063fb017fde1461091a578063fdf969fc1461093a578063fe2c7fee1461095a57600080fd5b8063da3ef23f14610871578063e0dc850d14610891578063e985e9c5146108b157600080fd5b8063b66a0e5d146107d2578063b88d4fde146107e7578063c194907214610807578063c668286214610826578063c87b56dd1461083b578063d5abeb011461085b57600080fd5b8063964c33b511610149578063a22cb46511610123578063a22cb4651461074b578063a88c37ef1461076b578063a88fe42d1461077e578063ad8fc4d81461079e57600080fd5b8063964c33b5146106ee57806399288dbb1461071b578063a035b1fe1461073557600080fd5b8063715018a6146106325780637fcb94e4146106475780638a9895631461067b5780638da5cb5b1461069b57806391130aea146106b957806395d89b41146106d957600080fd5b80633336913b1161024f578063438b630011610208578063674bf7c3116101e2578063674bf7c3146105d25780636c0360eb146105e85780637035bf18146105fd57806370a082311461061257600080fd5b8063438b63001461056557806355f804b3146105925780636352211e146105b257600080fd5b80633336913b146104c5578063380d831b146104db5780633ccfd60b146104f05780633feb5f2b1461050557806342842e0e1461052557806342966c681461054557600080fd5b806318160ddd116102bc57806323b872dd1161029657806323b872dd1461045a578063286720c51461047a5780632a484ad41461049a5780632db7b895146104b057600080fd5b806318160ddd146104155780631eb4cce8146104325780632045b1be1461044557600080fd5b806301ffc9a71461030f57806302acc94b1461034457806306fdde0314610359578063081812fc1461037b578063095ea7b3146103b357806309f0a076146103d357600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a366004613188565b61097a565b60405190151581526020015b60405180910390f35b61035761035236600461321d565b6109cc565b005b34801561036557600080fd5b5061036e610ab1565b60405161033b919061346b565b34801561038757600080fd5b5061039b610396366004613205565b610b43565b6040516001600160a01b03909116815260200161033b565b3480156103bf57600080fd5b506103576103ce36600461303c565b610b87565b3480156103df57600080fd5b506104077f0000000000000000000000000000000000000000000000000000000001e1338081565b60405190815260200161033b565b34801561042157600080fd5b506001546000540360001901610407565b610357610440366004613248565b610c15565b34801561045157600080fd5b50610357610db5565b34801561046657600080fd5b50610357610475366004612f4f565b610df0565b34801561048657600080fd5b50610407610495366004613205565b610dfb565b3480156104a657600080fd5b5061040760105481565b3480156104bc57600080fd5b50610357610e1c565b3480156104d157600080fd5b50610407600f5481565b3480156104e757600080fd5b50610357610e53565b3480156104fc57600080fd5b50610357610e89565b34801561051157600080fd5b5061039b610520366004613205565b610fd9565b34801561053157600080fd5b50610357610540366004612f4f565b611003565b34801561055157600080fd5b50610357610560366004613205565b61101e565b34801561057157600080fd5b50610585610580366004612efc565b61108a565b60405161033b9190613427565b34801561059e57600080fd5b506103576105ad3660046131c0565b6111ed565b3480156105be57600080fd5b5061039b6105cd366004613205565b61122a565b3480156105de57600080fd5b50610407600e5481565b3480156105f457600080fd5b5061036e61123c565b34801561060957600080fd5b5061036e6112ca565b34801561061e57600080fd5b5061040761062d366004612efc565b6112d7565b34801561063e57600080fd5b50610357611325565b34801561065357600080fd5b506104077f0000000000000000000000000000000000000000000000000000000000093a8081565b34801561068757600080fd5b506103576106963660046130a4565b61135b565b3480156106a757600080fd5b506008546001600160a01b031661039b565b3480156106c557600080fd5b506103576106d4366004612f1d565b61145b565b3480156106e557600080fd5b5061036e6114b3565b3480156106fa57600080fd5b50610407610709366004612efc565b60146020526000908152604090205481565b34801561072757600080fd5b5060185461032f9060ff1681565b34801561074157600080fd5b50610407600d5481565b34801561075757600080fd5b50610357610766366004613002565b6114c2565b610357610779366004613248565b611558565b34801561078a57600080fd5b5061035761079936600461321d565b611618565b3480156107aa57600080fd5b506104077f0000000000000000000000000000000000000000000000000000000000f1428081565b3480156107de57600080fd5b50610357611650565b3480156107f357600080fd5b50610357610802366004612f8a565b611689565b34801561081357600080fd5b5060185461032f90610100900460ff1681565b34801561083257600080fd5b5061036e6116d4565b34801561084757600080fd5b5061036e610856366004613205565b6116e1565b34801561086757600080fd5b5061040760125481565b34801561087d57600080fd5b5061035761088c3660046131c0565b611806565b34801561089d57600080fd5b506103576108ac366004613065565b611843565b3480156108bd57600080fd5b5061032f6108cc366004612f1d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561090657600080fd5b50610357610915366004612efc565b6119ae565b34801561092657600080fd5b50610357610935366004613065565b611a46565b34801561094657600080fd5b50610407610955366004613205565b611a88565b34801561096657600080fd5b506103576109753660046131c0565b611b21565b60006001600160e01b031982166380ac58cd60e01b14806109ab57506001600160e01b03198216635b5e139f60e01b145b806109c657506301ffc9a760e01b6001600160e01b03198316145b92915050565b600d54600090826109dd858761350b565b6109e7919061350b565b6109f19190613537565b905080341015610a3f5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b60448201526064015b60405180910390fd5b60185460ff16610a845760405162461bcd60e51b815260206004820152601060248201526f29b0b6329034b9903737ba1037b832b760811b6044820152606401610a36565b610a9033858585611b5e565b80341115610aab57610aab33610aa68334613556565b611dee565b50505050565b606060028054610ac090613599565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90613599565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e82611f07565b610b6b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b928261122a565b9050806001600160a01b0316836001600160a01b03161415610bc75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610be75750610be581336108cc565b155b15610c05576040516367d9dca160e11b815260040160405180910390fd5b610c10838383611f40565b505050565b600954829082906001600160a01b0316610c645760405162461bcd60e51b815260206004820152601060248201526f14da59db995c880c48139bdd0814d95d60821b6044820152606401610a36565b6009546001600160a01b0316610c7a8383611f9c565b6001600160a01b031614610cc45760405162461bcd60e51b81526020600482015260116024820152704e6f742057686974656c6973746564203160781b6044820152606401610a36565b600e5460009086610cd5898b61350b565b610cdf919061350b565b610ce99190613537565b905080341015610d325760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610a36565b601854610100900460ff16610d895760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206f70656e0000000000006044820152606401610a36565b610d9533898989611b5e565b80341115610dab57610dab33610aa68334613556565b5050505050505050565b6008546001600160a01b03163314610ddf5760405162461bcd60e51b8152600401610a369061347e565b6018805461ff001916610100179055565b610c1083838361207a565b600c8181548110610e0b57600080fd5b600091825260209091200154905081565b6008546001600160a01b03163314610e465760405162461bcd60e51b8152600401610a369061347e565b6018805461ff0019169055565b6008546001600160a01b03163314610e7d5760405162461bcd60e51b8152600401610a369061347e565b6018805460ff19169055565b6008546001600160a01b03163314610eb35760405162461bcd60e51b8152600401610a369061347e565b600c54610efb5760405162461bcd60e51b8152602060048201526016602482015275139bc81a5b9d995cdd1bdc9cc81cdc1958da599a595960521b6044820152606401610a36565b4760005b600b54811015610fd5576000600c8281548110610f2c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001541115610fc357610fc3600b8281548110610f6157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b0316612710600c8481548110610fa357634e487b7160e01b600052603260045260246000fd5b906000526020600020015485610fb99190613537565b610aa69190613523565b80610fcd816135d4565b915050610eff565b5050565b600b8181548110610fe957600080fd5b6000918252602090912001546001600160a01b0316905081565b610c1083838360405180602001604052806000815250611689565b336110288261122a565b6001600160a01b03161461107e5760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f742074686520746f6b656e206f776e657200000000006044820152606401610a36565b61108781612279565b50565b60606000611097836112d7565b90506000816001600160401b038111156110c157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156110ea578160200160208202803683370190505b50905060016000805b848210801561110457506012548311155b156111e257600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091611171575080516001600160a01b031615155b1561117b57805191505b876001600160a01b0316826001600160a01b031614156111cf57838584815181106111b657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152826111cb816135d4565b9350505b836111d9816135d4565b945050506110f3565b509195945050505050565b6008546001600160a01b031633146112175760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906016906020840190612cfa565b6000611235826123e3565b5192915050565b6016805461124990613599565b80601f016020809104026020016040519081016040528092919081815260200182805461127590613599565b80156112c25780601f10611297576101008083540402835291602001916112c2565b820191906000526020600020905b8154815290600101906020018083116112a557829003601f168201915b505050505081565b6015805461124990613599565b60006001600160a01b038216611300576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461134f5760405162461bcd60e51b8152600401610a369061347e565b611359600061250a565b565b6008546001600160a01b031633146113855760405162461bcd60e51b8152600401610a369061347e565b60005b8151811015610fd5576114498282815181106113b457634e487b7160e01b600052603260045260246000fd5b6020026020010151600001518383815181106113e057634e487b7160e01b600052603260045260246000fd5b60200260200101516020015184848151811061140c57634e487b7160e01b600052603260045260246000fd5b60200260200101516040015185858151811061143857634e487b7160e01b600052603260045260246000fd5b602002602001015160600151611b5e565b61145460018261350b565b9050611388565b6008546001600160a01b031633146114855760405162461bcd60e51b8152600401610a369061347e565b600980546001600160a01b039384166001600160a01b031991821617909155600a8054929093169116179055565b606060038054610ac090613599565b6001600160a01b0382163314156114ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54829082906001600160a01b03166115a75760405162461bcd60e51b815260206004820152601060248201526f14da59db995c880c88139bdd0814d95d60821b6044820152606401610a36565b600a546001600160a01b03166115bd8383611f9c565b6001600160a01b0316146116075760405162461bcd60e51b81526020600482015260116024820152702737ba102bb434ba32b634b9ba32b2101960791b6044820152606401610a36565b600f5460009086610cd5898b61350b565b6008546001600160a01b031633146116425760405162461bcd60e51b8152600401610a369061347e565b600d92909255600e55600f55565b6008546001600160a01b0316331461167a5760405162461bcd60e51b8152600401610a369061347e565b6018805460ff19166001179055565b61169484848461207a565b6001600160a01b0383163b151580156116b657506116b48484848461255c565b155b15610aab576040516368d2bf6b60e11b815260040160405180910390fd5b6017805461124990613599565b60606116ec82611f07565b61172f5760405162461bcd60e51b8152602060048201526014602482015273139bdb995e1a5cdd195b9d081d1bdad95b88125160621b6044820152606401610a36565b61173882611a88565b4210156117d1576015805461174c90613599565b80601f016020809104026020016040519081016040528092919081815260200182805461177890613599565b80156117c55780601f1061179a576101008083540402835291602001916117c5565b820191906000526020600020905b8154815290600101906020018083116117a857829003601f168201915b50505050509050919050565b60166117dc83612653565b60176040516020016117f0939291906133b7565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146118305760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906017906020840190612cfa565b6008546001600160a01b0316331461186d5760405162461bcd60e51b8152600401610a369061347e565b600b5481146118d35760405162461bcd60e51b815260206004820152602c60248201527f546865206e756d6265727320646f65736e2774206d617463682077697468207460448201526b686520696e766573746f727360a01b6064820152608401610a36565b6000805b82811015611938578383828181106118ff57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061191491906132cf565b6119249063ffffffff168361350b565b915080611930816135d4565b9150506118d7565b5080612710146119965760405162461bcd60e51b8152602060048201526024808201527f5468652073756d206f6620746865206e756d62657273206d75737420626520316044820152630303030360e41b6064820152608401610a36565b6119a2600c6000612d7e565b610aab600c8484612d9c565b6008546001600160a01b031633146119d85760405162461bcd60e51b8152600401610a369061347e565b6001600160a01b038116611a3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a36565b6110878161250a565b6008546001600160a01b03163314611a705760405162461bcd60e51b8152600401610a369061347e565b611a7c600b6000612d7e565b610c10600b8383612ddf565b6000611a9382611f07565b611ad65760405162461bcd60e51b8152602060048201526014602482015273139bdb995e1a5cdd195b9d081d1bdad95b88125160621b6044820152606401610a36565b815b600081815260136020526040902054158015611af5575060115481105b15611b0c5780611b04816135d4565b915050611ad8565b60009081526013602052604090205492915050565b6008546001600160a01b03163314611b4b5760405162461bcd60e51b8152600401610a369061347e565b8051610fd5906015906020840190612cfa565b600081611b6b848661350b565b611b75919061350b565b905060018110158015611b89575060058111155b611bcb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610a36565b6010546001600160a01b038616600090815260146020526040902054611bf290839061350b565b1115611c405760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e27742068617665206d6f7265207468616e20350000000000006044820152606401610a36565b60125481601154611c51919061350b565b1115611c9f5760405162461bcd60e51b815260206004820152601860248201527f596f752063616e6e6f74206d696e7420616e79206d6f726500000000000000006044820152606401610a36565b611ca9858261276c565b6001600160a01b03851660009081526014602052604081208054839290611cd190849061350b565b90915550508315611d31578360116000828254611cee919061350b565b90915550611d1e90507f0000000000000000000000000000000000000000000000000000000000093a804261350b565b6011546000908152601360205260409020555b8215611d8c578260116000828254611d49919061350b565b90915550611d7990507f0000000000000000000000000000000000000000000000000000000000f142804261350b565b6011546000908152601360205260409020555b8115611de7578160116000828254611da4919061350b565b90915550611dd490507f0000000000000000000000000000000000000000000000000000000001e133804261350b565b6011546000908152601360205260409020555b5050505050565b80471015611e3e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a36565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e8b576040519150601f19603f3d011682016040523d82523d6000602084013e611e90565b606091505b5050905080610c105760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a36565b600081600111158015611f1b575060005482105b80156109c6575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040516bffffffffffffffffffffffff1930606090811b8216602084015233901b166034820152600090819060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c82018190529150605c0160405160208183030381529060405280519060200120905061207284848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525085939250506127869050565b949350505050565b6000612085826123e3565b80519091506000906001600160a01b0316336001600160a01b031614806120b3575081516120b390336108cc565b806120ce5750336120c384610b43565b6001600160a01b0316145b9050806120ee57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146121235760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661214a57604051633a954ecd60e21b815260040160405180910390fd5b61215a6000848460000151611f40565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166122445760005481101561224457825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b031660008051602061365c83398151915260405160405180910390a4611de7565b6000612284826123e3565b90506122966000838360000151611f40565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff1981166001600160401b0391821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b19169390931790559085018083529120549091166123ad576000548110156123ad57815160008281526004602090815260409091208054918501516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b039091169060008051602061365c833981519152908390a450506001805481019055565b60408051606081018252600080825260208201819052918101919091528180600111158015612413575060005481105b156124f157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906124ef5780516001600160a01b031615612486579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156124ea579392505050565b612486565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125919033908990889088906004016133ea565b602060405180830381600087803b1580156125ab57600080fd5b505af19250505080156125db575060408051601f3d908101601f191682019092526125d8918101906131a4565b60015b612636573d808015612609576040519150601f19603f3d011682016040523d82523d6000602084013e61260e565b606091505b50805161262e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816126775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126a1578061268b816135d4565b915061269a9050600a83613523565b915061267b565b6000816001600160401b038111156126c957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156126f3576020820181803683370190505b5090505b841561207257612708600183613556565b9150612715600a866135ef565b61272090603061350b565b60f81b81838151811061274357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612765600a86613523565b94506126f7565b610fd58282604051806020016040528060008152506127aa565b600080600061279585856127b7565b915091506127a281612827565b509392505050565b610c108383836001612a28565b6000808251604114156127ee5760208301516040840151606085015160001a6127e287828585612bd4565b94509450505050612820565b825160401415612818576020830151604084015161280d868383612cc1565b935093505050612820565b506000905060025b9250929050565b600081600481111561284957634e487b7160e01b600052602160045260246000fd5b14156128525750565b600181600481111561287457634e487b7160e01b600052602160045260246000fd5b14156128c25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a36565b60028160048111156128e457634e487b7160e01b600052602160045260246000fd5b14156129325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a36565b600381600481111561295457634e487b7160e01b600052602160045260246000fd5b14156129ad5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a36565b60048160048111156129cf57634e487b7160e01b600052602160045260246000fd5b14156110875760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a36565b6000546001600160a01b038516612a5157604051622e076360e81b815260040160405180910390fd5b83612a6f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b2057506001600160a01b0387163b15155b15612b97575b60405182906001600160a01b0389169060009060008051602061365c833981519152908290a4612b5f600088848060010195508861255c565b612b7c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612b26578260005414612b9257600080fd5b612bcb565b5b6040516001830192906001600160a01b0389169060009060008051602061365c833981519152908290a480821415612b98575b50600055611de7565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612c0b5750600090506003612cb8565b8460ff16601b14158015612c2357508460ff16601c14155b15612c345750600090506004612cb8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612c88573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612cb157600060019250925050612cb8565b9150600090505b94509492505050565b6000806001600160ff1b03831681612cde60ff86901c601b61350b565b9050612cec87828885612bd4565b935093505050935093915050565b828054612d0690613599565b90600052602060002090601f016020900481019282612d285760008555612d6e565b82601f10612d4157805160ff1916838001178555612d6e565b82800160010185558215612d6e579182015b82811115612d6e578251825591602001919060010190612d53565b50612d7a929150612e32565b5090565b50805460008255906000526020600020908101906110879190612e32565b828054828255906000526020600020908101928215612d6e579160200282015b82811115612d6e5763ffffffff8335168255602090920191600190910190612dbc565b828054828255906000526020600020908101928215612d6e579160200282015b82811115612d6e5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612dff565b5b80821115612d7a5760008155600101612e33565b60006001600160401b03831115612e6057612e6061362f565b612e73601f8401601f19166020016134db565b9050828152838383011115612e8757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612eb557600080fd5b919050565b60008083601f840112612ecb578182fd5b5081356001600160401b03811115612ee1578182fd5b6020830191508360208260051b850101111561282057600080fd5b600060208284031215612f0d578081fd5b612f1682612e9e565b9392505050565b60008060408385031215612f2f578081fd5b612f3883612e9e565b9150612f4660208401612e9e565b90509250929050565b600080600060608486031215612f63578081fd5b612f6c84612e9e565b9250612f7a60208501612e9e565b9150604084013590509250925092565b60008060008060808587031215612f9f578081fd5b612fa885612e9e565b9350612fb660208601612e9e565b92506040850135915060608501356001600160401b03811115612fd7578182fd5b8501601f81018713612fe7578182fd5b612ff687823560208401612e47565b91505092959194509250565b60008060408385031215613014578182fd5b61301d83612e9e565b915060208301358015158114613031578182fd5b809150509250929050565b6000806040838503121561304e578182fd5b61305783612e9e565b946020939093013593505050565b60008060208385031215613077578182fd5b82356001600160401b0381111561308c578283fd5b61309885828601612eba565b90969095509350505050565b600060208083850312156130b6578182fd5b82356001600160401b03808211156130cc578384fd5b818501915085601f8301126130df578384fd5b8135818111156130f1576130f161362f565b6130ff848260051b016134db565b8181528481019250838501600783901b8501860189101561311e578687fd5b8694505b8285101561317c57608080828b03121561313a578788fd5b6131426134b3565b61314b83612e9e565b8152828801358882015260408084013590820152606080840135908201528552600195909501949386019301613122565b50979650505050505050565b600060208284031215613199578081fd5b8135612f1681613645565b6000602082840312156131b5578081fd5b8151612f1681613645565b6000602082840312156131d1578081fd5b81356001600160401b038111156131e6578182fd5b8201601f810184136131f6578182fd5b61207284823560208401612e47565b600060208284031215613216578081fd5b5035919050565b600080600060608486031215613231578081fd5b505081359360208301359350604090920135919050565b60008060008060006080868803121561325f578283fd5b85359450602086013593506040860135925060608601356001600160401b038082111561328a578283fd5b818801915088601f83011261329d578283fd5b8135818111156132ab578384fd5b8960208285010111156132bc578384fd5b9699959850939650602001949392505050565b6000602082840312156132e0578081fd5b813563ffffffff81168114612f16578182fd5b6000815180845261330b81602086016020860161356d565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061333957607f831692505b602080841082141561335957634e487b7160e01b86526022600452602486fd5b81801561336d576001811461337e576133ab565b60ff198616895284890196506133ab565b60008881526020902060005b868110156133a35781548b82015290850190830161338a565b505084890196505b50505050505092915050565b60006133c3828661331f565b84516133d381836020890161356d565b6133df8183018661331f565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061341d908301846132f3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561345f57835183529284019291840191600101613443565b50909695505050505050565b602081526000612f1660208301846132f3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051608081016001600160401b03811182821017156134d5576134d561362f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156135035761350361362f565b604052919050565b6000821982111561351e5761351e613603565b500190565b60008261353257613532613619565b500490565b600081600019048311821515161561355157613551613603565b500290565b60008282101561356857613568613603565b500390565b60005b83811015613588578181015183820152602001613570565b83811115610aab5750506000910152565b600181811c908216806135ad57607f821691505b602082108114156135ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135e8576135e8613603565b5060010190565b6000826135fe576135fe613619565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461108757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b9434059c97876fb48549d06260746af1fe11a7d389ab50e219785661467c08764736f6c63430008040033

Deployed Bytecode Sourcemap

60203:5724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40565:305;;;;;;;;;;-1:-1:-1;40565:305:0;;;;;:::i;:::-;;:::i;:::-;;;12380:14:1;;12373:22;12355:41;;12343:2;12328:18;40565:305:0;;;;;;;;63021:413;;;;;;:::i;:::-;;:::i;:::-;;43950:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45453:204::-;;;;;;;;;;-1:-1:-1;45453:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11038:32:1;;;11020:51;;11008:2;10993:18;45453:204:0;10975:102:1;45016:371:0;;;;;;;;;;-1:-1:-1;45016:371:0;;;;;:::i;:::-;;:::i;60598:42::-;;;;;;;;;;;;;;;;;;21613:25:1;;;21601:2;21586:18;60598:42:0;21568:76:1;39814:303:0;;;;;;;;;;-1:-1:-1;61881:1:0;40068:12;39858:7;40052:13;:28;-1:-1:-1;;40052:46:0;39814:303;;63440:473;;;;;;:::i;:::-;;:::i;61646:72::-;;;;;;;;;;;;;:::i;46310:170::-;;;;;;;;;;-1:-1:-1;46310:170:0;;;;;:::i;:::-;;:::i;58182:32::-;;;;;;;;;;-1:-1:-1;58182:32:0;;;;;:::i;:::-;;:::i;60437:31::-;;;;;;;;;;;;;;;;61724:71;;;;;;;;;;;;;:::i;60396:34::-;;;;;;;;;;;;;;;;61573:67;;;;;;;;;;;;;:::i;58846:349::-;;;;;;;;;;;;;:::i;58151:26::-;;;;;;;;;;-1:-1:-1;58151:26:0;;;;;:::i;:::-;;:::i;46551:185::-;;;;;;;;;;-1:-1:-1;46551:185:0;;;;;:::i;:::-;;:::i;64946:144::-;;;;;;;;;;-1:-1:-1;64946:144:0;;;;;:::i;:::-;;:::i;65096:828::-;;;;;;;;;;-1:-1:-1;65096:828:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;61303:86::-;;;;;;;;;;-1:-1:-1;61303:86:0;;;;;:::i;:::-;;:::i;43759:124::-;;;;;;;;;;-1:-1:-1;43759:124:0;;;;;:::i;:::-;;:::i;60359:32::-;;;;;;;;;;;;;;;;60813:21;;;;;;;;;;;;;:::i;60781:27::-;;;;;;;;;;;;;:::i;40934:206::-;;;;;;;;;;-1:-1:-1;40934:206:0;;;;;:::i;:::-;;:::i;17023:103::-;;;;;;;;;;;;;:::i;60509:38::-;;;;;;;;;;;;;;;64398:219;;;;;;;;;;-1:-1:-1;64398:219:0;;;;;:::i;:::-;;:::i;16372:87::-;;;;;;;;;;-1:-1:-1;16445:6:0;;-1:-1:-1;;;;;16445:6:0;16372:87;;59315:141;;;;;;;;;;-1:-1:-1;59315:141:0;;;;;:::i;:::-;;:::i;44119:104::-;;;;;;;;;;;;;:::i;60732:42::-;;;;;;;;;;-1:-1:-1;60732:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;60873:20;;;;;;;;;;-1:-1:-1;60873:20:0;;;;;;;;60324:30;;;;;;;;;;;;;;;;45729:279;;;;;;;;;;-1:-1:-1;45729:279:0;;;;;:::i;:::-;;:::i;63919:473::-;;;;;;:::i;:::-;;:::i;61029:164::-;;;;;;;;;;-1:-1:-1;61029:164:0;;;;;:::i;:::-;;:::i;60552:41::-;;;;;;;;;;;;;;;61499:68;;;;;;;;;;;;;:::i;46807:369::-;;;;;;;;;;-1:-1:-1;46807:369:0;;;;;:::i;:::-;;:::i;60898:22::-;;;;;;;;;;-1:-1:-1;60898:22:0;;;;;;;;;;;60839:27;;;;;;;;;;;;;:::i;64623:317::-;;;;;;;;;;-1:-1:-1;64623:317:0;;;;;:::i;:::-;;:::i;60647:29::-;;;;;;;;;;;;;;;;61395:98;;;;;;;;;;-1:-1:-1;61395:98:0;;;;;:::i;:::-;;:::i;58396:444::-;;;;;;;;;;-1:-1:-1;58396:444:0;;;;;:::i;:::-;;:::i;46079:164::-;;;;;;;;;;-1:-1:-1;46079:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46200:25:0;;;46176:4;46200:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46079:164;17281:201;;;;;;;;;;-1:-1:-1;17281:201:0;;;;;:::i;:::-;;:::i;58260:130::-;;;;;;;;;;-1:-1:-1;58260:130:0;;;;;:::i;:::-;;:::i;61894:271::-;;;;;;;;;;-1:-1:-1;61894:271:0;;;;;:::i;:::-;;:::i;61199:98::-;;;;;;;;;;-1:-1:-1;61199:98:0;;;;;:::i;:::-;;:::i;40565:305::-;40667:4;-1:-1:-1;;;;;;40704:40:0;;-1:-1:-1;;;40704:40:0;;:105;;-1:-1:-1;;;;;;;40761:48:0;;-1:-1:-1;;;40761:48:0;40704:105;:158;;;-1:-1:-1;;;;;;;;;;29265:40:0;;;40826:36;40684:178;40565:305;-1:-1:-1;;40565:305:0:o;63021:413::-;63150:5;;63101:14;;63139:7;63119:17;63129:7;63119;:17;:::i;:::-;:27;;;;:::i;:::-;63118:37;;;;:::i;:::-;63101:54;;63183:9;63170;:22;;63162:55;;;;-1:-1:-1;;;63162:55:0;;18506:2:1;63162:55:0;;;18488:21:1;18545:2;18525:18;;;18518:30;-1:-1:-1;;;18564:18:1;;;18557:50;18624:18;;63162:55:0;;;;;;;;;63233:8;;;;63224:38;;;;-1:-1:-1;;;63224:38:0;;19927:2:1;63224:38:0;;;19909:21:1;19966:2;19946:18;;;19939:30;-1:-1:-1;;;19985:18:1;;;19978:46;20041:18;;63224:38:0;19899:166:1;63224:38:0;63271:44;63277:10;63289:7;63298;63307;63271:5;:44::i;:::-;63340:9;63328;:21;63324:105;;;63360:61;63386:10;63399:21;63411:9;63399;:21;:::i;:::-;63360:17;:61::i;:::-;63021:413;;;;:::o;43950:100::-;44004:13;44037:5;44030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43950:100;:::o;45453:204::-;45521:7;45546:16;45554:7;45546;:16::i;:::-;45541:64;;45571:34;;-1:-1:-1;;;45571:34:0;;;;;;;;;;;45541:64;-1:-1:-1;45625:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45625:24:0;;45453:204::o;45016:371::-;45089:13;45105:24;45121:7;45105:15;:24::i;:::-;45089:40;;45150:5;-1:-1:-1;;;;;45144:11:0;:2;-1:-1:-1;;;;;45144:11:0;;45140:48;;;45164:24;;-1:-1:-1;;;45164:24:0;;;;;;;;;;;45140:48;15176:10;-1:-1:-1;;;;;45205:21:0;;;;;;:63;;-1:-1:-1;45231:37:0;45248:5;15176:10;46079:164;:::i;45231:37::-;45230:38;45205:63;45201:138;;;45292:35;;-1:-1:-1;;;45292:35:0;;;;;;;;;;;45201:138;45351:28;45360:2;45364:7;45373:5;45351:8;:28::i;:::-;45016:371;;;:::o;63440:473::-;59833:7;;63552:4;;;;-1:-1:-1;;;;;59833:7:0;59825:51;;;;-1:-1:-1;;;59825:51:0;;20620:2:1;59825:51:0;;;20602:21:1;20659:2;20639:18;;;20632:30;-1:-1:-1;;;20678:18:1;;;20671:46;20734:18;;59825:51:0;20592:166:1;59825:51:0;59927:7;;-1:-1:-1;;;;;59927:7:0;59895:28;59913:9;;59895:17;:28::i;:::-;-1:-1:-1;;;;;59895:39:0;;59887:69;;;;-1:-1:-1;;;59887:69:0;;13994:2:1;59887:69:0;;;13976:21:1;14033:2;14013:18;;;14006:30;-1:-1:-1;;;14052:18:1;;;14045:47;14109:18;;59887:69:0;13966:167:1;59887:69:0;63614:8:::1;::::0;63565:14:::1;::::0;63603:7;63583:17:::1;63593:7:::0;63583;:17:::1;:::i;:::-;:27;;;;:::i;:::-;63582:40;;;;:::i;:::-;63565:57;;63650:9;63637;:22;;63629:55;;;::::0;-1:-1:-1;;;63629:55:0;;18506:2:1;63629:55:0::1;::::0;::::1;18488:21:1::0;18545:2;18525:18;;;18518:30;-1:-1:-1;;;18564:18:1;;;18557:50;18624:18;;63629:55:0::1;18478:170:1::0;63629:55:0::1;63700:10;::::0;::::1;::::0;::::1;;;63691:50;;;::::0;-1:-1:-1;;;63691:50:0;;18151:2:1;63691:50:0::1;::::0;::::1;18133:21:1::0;18190:2;18170:18;;;18163:30;18229:28;18209:18;;;18202:56;18275:18;;63691:50:0::1;18123:176:1::0;63691:50:0::1;63750:44;63756:10;63768:7;63777;63786;63750:5;:44::i;:::-;63819:9;63807;:21;63803:105;;;63839:61;63865:10;63878:21;63890:9:::0;63878::::1;:21;:::i;63839:61::-;59967:1;63440:473:::0;;;;;;;:::o;61646:72::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61695:10:::1;:17:::0;;-1:-1:-1;;61695:17:0::1;;;::::0;;61646:72::o;46310:170::-;46444:28;46454:4;46460:2;46464:7;46444:9;:28::i;58182:32::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58182:32:0;:::o;61724:71::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61771:10:::1;:18:::0;;-1:-1:-1;;61771:18:0::1;::::0;;61724:71::o;61573:67::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61618:8:::1;:16:::0;;-1:-1:-1;;61618:16:0::1;::::0;;61573:67::o;58846:349::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;58898:15:::1;:22:::0;58890:61:::1;;;::::0;-1:-1:-1;;;58890:61:0;;21318:2:1;58890:61:0::1;::::0;::::1;21300:21:1::0;21357:2;21337:18;;;21330:30;-1:-1:-1;;;21376:18:1;;;21369:52;21438:18;;58890:61:0::1;21290:172:1::0;58890:61:0::1;58974:21;58960:11;59004:186;59028:9;:16:::0;59024:20;::::1;59004:186;;;59085:1;59064:15;59080:1;59064:18;;;;;;-1:-1:-1::0;;;59064:18:0::1;;;;;;;;;;;;;;;;;:22;59060:123;;;59099:74;59125:9;59135:1;59125:12;;;;;;-1:-1:-1::0;;;59125:12:0::1;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;59125:12:0::1;59167:5;59146:15;59162:1;59146:18;;;;;;-1:-1:-1::0;;;59146:18:0::1;;;;;;;;;;;;;;;;;59140:3;:24;;;;:::i;:::-;:32;;;;:::i;59099:74::-;59046:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59004:186;;;;16663:1;58846:349::o:0;58151:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58151:26:0;;-1:-1:-1;58151:26:0;:::o;46551:185::-;46689:39;46706:4;46712:2;46716:7;46689:39;;;;;;;;;;;;:16;:39::i;64946:144::-;65019:10;64999:16;65007:7;64999;:16::i;:::-;-1:-1:-1;;;;;64999:30:0;;64990:71;;;;-1:-1:-1;;;64990:71:0;;18855:2:1;64990:71:0;;;18837:21:1;18894:2;18874:18;;;18867:30;18933:29;18913:18;;;18906:57;18980:18;;64990:71:0;18827:177:1;64990:71:0;65070:14;65076:7;65070:5;:14::i;:::-;64946:144;:::o;65096:828::-;65171:16;65199:23;65225:17;65235:6;65225:9;:17::i;:::-;65199:43;;65249:30;65296:15;-1:-1:-1;;;;;65282:30:0;;;;;-1:-1:-1;;;65282:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65282:30:0;-1:-1:-1;65249:63:0;-1:-1:-1;61881:1:0;65319:22;;65435:455;65468:15;65450;:33;:64;;;;;65505:9;;65487:14;:27;;65450:64;65435:455;;;65531:31;65565:27;;;:11;:27;;;;;;;;;65531:61;;;;;;;;;-1:-1:-1;;;;;65531:61:0;;;;-1:-1:-1;;;65531:61:0;;-1:-1:-1;;;;;65531:61:0;;;;;;;;-1:-1:-1;;;65531:61:0;;;;;;;;;;;;;;;;65607:49;;-1:-1:-1;65628:14:0;;-1:-1:-1;;;;;65628:28:0;;;65607:49;65603:111;;;65690:14;;;-1:-1:-1;65603:111:0;65750:6;-1:-1:-1;;;;;65728:28:0;:18;-1:-1:-1;;;;;65728:28:0;;65724:132;;;65802:14;65769:13;65783:15;65769:30;;;;;;-1:-1:-1;;;65769:30:0;;;;;;;;;;;;;;;;;;:47;65829:17;;;;:::i;:::-;;;;65724:132;65866:16;;;;:::i;:::-;;;;65435:455;;;;-1:-1:-1;65905:13:0;;65096:828;-1:-1:-1;;;;;65096:828:0:o;61303:86::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61369:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;43759:124::-:0;43823:7;43850:20;43862:7;43850:11;:20::i;:::-;:25;;43759:124;-1:-1:-1;;43759:124:0:o;60813:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60781:27::-;;;;;;;:::i;40934:206::-;40998:7;-1:-1:-1;;;;;41022:19:0;;41018:60;;41050:28;;-1:-1:-1;;;41050:28:0;;;;;;;;;;;41018:60;-1:-1:-1;;;;;;41104:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;41104:27:0;;40934:206::o;17023:103::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;17088:30:::1;17115:1;17088:18;:30::i;:::-;17023:103::o:0;64398:219::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;64470:6:::1;64487:125;64503:5;:12;64499:1;:16;64487:125;;;64532:72;64538:5;64544:1;64538:8;;;;;;-1:-1:-1::0;;;64538:8:0::1;;;;;;;;;;;;;;;:11;;;64551:5;64557:1;64551:8;;;;;;-1:-1:-1::0;;;64551:8:0::1;;;;;;;;;;;;;;;:16;;;64569:5;64575:1;64569:8;;;;;;-1:-1:-1::0;;;64569:8:0::1;;;;;;;;;;;;;;;:16;;;64587:5;64593:1;64587:8;;;;;;-1:-1:-1::0;;;64587:8:0::1;;;;;;;;;;;;;;;:16;;;64532:5;:72::i;:::-;64517:4;64520:1;64517:4:::0;::::1;:::i;:::-;;;64487:125;;59315:141:::0;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;59401:7:::1;:18:::0;;-1:-1:-1;;;;;59401:18:0;;::::1;-1:-1:-1::0;;;;;;59401:18:0;;::::1;;::::0;;;59430:7:::1;:18:::0;;;;;::::1;::::0;::::1;;::::0;;59315:141::o;44119:104::-;44175:13;44208:7;44201:14;;;;;:::i;45729:279::-;-1:-1:-1;;;;;45820:24:0;;15176:10;45820:24;45816:54;;;45853:17;;-1:-1:-1;;;45853:17:0;;;;;;;;;;;45816:54;15176:10;45883:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45883:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45883:53:0;;;;;;;;;;45952:48;;12355:41:1;;;45883:42:0;;15176:10;45952:48;;12328:18:1;45952:48:0;;;;;;;45729:279;;:::o;63919:473::-;60053:7;;64031:4;;;;-1:-1:-1;;;;;60053:7:0;60045:51;;;;-1:-1:-1;;;60045:51:0;;15520:2:1;60045:51:0;;;15502:21:1;15559:2;15539:18;;;15532:30;-1:-1:-1;;;15578:18:1;;;15571:46;15634:18;;60045:51:0;15492:166:1;60045:51:0;60147:7;;-1:-1:-1;;;;;60147:7:0;60115:28;60133:9;;60115:17;:28::i;:::-;-1:-1:-1;;;;;60115:39:0;;60107:69;;;;-1:-1:-1;;;60107:69:0;;17402:2:1;60107:69:0;;;17384:21:1;17441:2;17421:18;;;17414:30;-1:-1:-1;;;17460:18:1;;;17453:47;17517:18;;60107:69:0;17374:167:1;60107:69:0;64093:8:::1;::::0;64044:14:::1;::::0;64082:7;64062:17:::1;64072:7:::0;64062;:17:::1;:::i;61029:164::-:0;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61119:5:::1;:14:::0;;;;61140:8:::1;:20:::0;61167:8:::1;:20:::0;61029:164::o;61499:68::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61546:8:::1;:15:::0;;-1:-1:-1;;61546:15:0::1;61557:4;61546:15;::::0;;61499:68::o;46807:369::-;46974:28;46984:4;46990:2;46994:7;46974:9;:28::i;:::-;-1:-1:-1;;;;;47017:13:0;;19368:19;:23;;47017:76;;;;;47037:56;47068:4;47074:2;47078:7;47087:5;47037:30;:56::i;:::-;47036:57;47017:76;47013:156;;;47117:40;;-1:-1:-1;;;47117:40:0;;;;;;;;;;;60839:27;;;;;;;:::i;64623:317::-;64685:13;64716:16;64724:7;64716;:16::i;:::-;64707:50;;;;-1:-1:-1;;;64707:50:0;;15865:2:1;64707:50:0;;;15847:21:1;15904:2;15884:18;;;15877:30;-1:-1:-1;;;15923:18:1;;;15916:50;15983:18;;64707:50:0;15837:170:1;64707:50:0;64788:24;64804:7;64788:15;:24::i;:::-;64770:15;:42;64766:85;;;64830:13;64823:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64623:317;;;:::o;64766:85::-;64890:7;64899:18;:7;:16;:18::i;:::-;64919:13;64873:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64859:75;;64623:317;;;:::o;61395:98::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61467:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;58396:444::-:0;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;58513:9:::1;:16:::0;58494:35;::::1;58478:113;;;::::0;-1:-1:-1;;;58478:113:0;;14700:2:1;58478:113:0::1;::::0;::::1;14682:21:1::0;14739:2;14719:18;;;14712:30;14778:34;14758:18;;;14751:62;-1:-1:-1;;;14829:18:1;;;14822:42;14881:19;;58478:113:0::1;14672:234:1::0;58478:113:0::1;58600:11;58627:9:::0;58622:81:::1;58642:19:::0;;::::1;58622:81;;;58684:8;;58693:1;58684:11;;;;;-1:-1:-1::0;;;58684:11:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58677:18;::::0;::::1;;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;58663:3:0;::::1;::::0;::::1;:::i;:::-;;;;58622:81;;;;58717:3;58724:5;58717:12;58709:61;;;::::0;-1:-1:-1;;;58709:61:0;;13589:2:1;58709:61:0::1;::::0;::::1;13571:21:1::0;13628:2;13608:18;;;13601:30;13667:34;13647:18;;;13640:62;-1:-1:-1;;;13718:18:1;;;13711:34;13762:19;;58709:61:0::1;13561:226:1::0;58709:61:0::1;58779:22;58786:15;;58779:22;:::i;:::-;58808:26;:15;58826:8:::0;;58808:26:::1;:::i;17281:201::-:0;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17370:22:0;::::1;17362:73;;;::::0;-1:-1:-1;;;17362:73:0;;15113:2:1;17362:73:0::1;::::0;::::1;15095:21:1::0;15152:2;15132:18;;;15125:30;15191:34;15171:18;;;15164:62;-1:-1:-1;;;15242:18:1;;;15235:36;15288:19;;17362:73:0::1;15085:228:1::0;17362:73:0::1;17446:28;17465:8;17446:18;:28::i;58260:130::-:0;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;58339:16:::1;58346:9;;58339:16;:::i;:::-;58362:22;:9;58374:10:::0;;58362:22:::1;:::i;61894:271::-:0;61954:4;61976:16;61984:7;61976;:16::i;:::-;61967:50;;;;-1:-1:-1;;;61967:50:0;;15865:2:1;61967:50:0;;;15847:21:1;15904:2;15884:18;;;15877:30;-1:-1:-1;;;15923:18:1;;;15916:50;15983:18;;61967:50:0;15837:170:1;61967:50:0;62036:7;62050:74;62057:20;;;;:16;:20;;;;;;:25;:44;;;;;62091:10;;62086:2;:15;62057:44;62050:74;;;62112:4;;;;:::i;:::-;;;;62050:74;;;62139:20;;;;:16;:20;;;;;;;61894:271;-1:-1:-1;;61894:271:0:o;61199:98::-;16445:6;;-1:-1:-1;;;;;16445:6:0;15176:10;16592:23;16584:68;;;;-1:-1:-1;;;16584:68:0;;;;;;;:::i;:::-;61271:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;62171:844::-:0;62258:14;62295:7;62275:17;62285:7;62275;:17;:::i;:::-;:27;;;;:::i;:::-;62258:44;;62333:1;62320:9;:14;;:32;;;;;62351:1;62338:9;:14;;62320:32;62311:65;;;;-1:-1:-1;;;62311:65:0;;20272:2:1;62311:65:0;;;20254:21:1;20311:2;20291:18;;;20284:30;-1:-1:-1;;;20330:18:1;;;20323:49;20389:18;;62311:65:0;20244:169:1;62311:65:0;62423:15;;-1:-1:-1;;;;;62391:16:0;;;;;;:12;:16;;;;;;:28;;62410:9;;62391:28;:::i;:::-;:47;;62383:86;;;;-1:-1:-1;;;62383:86:0;;19572:2:1;62383:86:0;;;19554:21:1;19611:2;19591:18;;;19584:30;19650:28;19630:18;;;19623:56;19696:18;;62383:86:0;19544:176:1;62383:86:0;62513:9;;62500;62487:10;;:22;;;;:::i;:::-;:35;;62478:73;;;;-1:-1:-1;;;62478:73:0;;20965:2:1;62478:73:0;;;20947:21:1;21004:2;20984:18;;;20977:30;21043:26;21023:18;;;21016:54;21087:18;;62478:73:0;20937:174:1;62478:73:0;62560:24;62570:2;62574:9;62560;:24::i;:::-;-1:-1:-1;;;;;62593:16:0;;;;;;:12;:16;;;;;:29;;62613:9;;62593:16;:29;;62613:9;;62593:29;:::i;:::-;;;;-1:-1:-1;;62635:11:0;;62631:120;;62671:7;62657:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;62718:25:0;;-1:-1:-1;62736:7:0;62718:15;:25;:::i;:::-;62704:10;;62687:28;;;;:16;:28;;;;;:56;62631:120;62763:11;;62759:121;;62799:7;62785:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;62846:26:0;;-1:-1:-1;62864:8:0;62846:15;:26;:::i;:::-;62832:10;;62815:28;;;;:16;:28;;;;;:57;62759:121;62892:11;;62888:122;;62928:7;62914:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;62975:27:0;;-1:-1:-1;62993:9:0;62975:15;:27;:::i;:::-;62961:10;;62944:28;;;;:16;:28;;;;;:58;62888:122;62171:844;;;;;:::o;20334:317::-;20449:6;20424:21;:31;;20416:73;;;;-1:-1:-1;;;20416:73:0;;17044:2:1;20416:73:0;;;17026:21:1;17083:2;17063:18;;;17056:30;17122:31;17102:18;;;17095:59;17171:18;;20416:73:0;17016:179:1;20416:73:0;20503:12;20521:9;-1:-1:-1;;;;;20521:14:0;20543:6;20521:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20502:52;;;20573:7;20565:78;;;;-1:-1:-1;;;20565:78:0;;16214:2:1;20565:78:0;;;16196:21:1;16253:2;16233:18;;;16226:30;16292:34;16272:18;;;16265:62;16363:28;16343:18;;;16336:56;16409:19;;20565:78:0;16186:248:1;47431:187:0;47488:4;47531:7;61881:1;47512:26;;:53;;;;;47552:13;;47542:7;:23;47512:53;:98;;;;-1:-1:-1;;47583:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;47583:27:0;;;;47582:28;;47431:187::o;55042:196::-;55157:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55157:29:0;-1:-1:-1;;;;;55157:29:0;;;;;;;;;55202:28;;55157:24;;55202:28;;;;;;;55042:196;;;:::o;59464:292::-;59585:34;;-1:-1:-1;;59602:4:0;9707:2:1;9703:15;;;9699:24;;59585:34:0;;;9687:37:1;59608:10:0;9758:15:1;;9754:24;9740:12;;;9733:46;59540:7:0;;;;9795:12:1;;59585:34:0;;;-1:-1:-1;;59585:34:0;;;;;;;;;;59575:45;;59585:34;59575:45;;;;10521:66:1;59648:58:0;;;10509:79:1;;;;10604:12;;;10597:28;;;59575:45:0;-1:-1:-1;10641:12:1;;59648:58:0;;;;;;;;;;;;59638:69;;;;;;59631:76;;59725:23;59738:9;;59725:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59725:4:0;;:23;-1:-1:-1;;59725:12:0;:23;-1:-1:-1;59725:23:0:i;:::-;59718:30;59464:292;-1:-1:-1;;;;59464:292:0:o;50544:2112::-;50659:35;50697:20;50709:7;50697:11;:20::i;:::-;50772:18;;50659:58;;-1:-1:-1;50730:22:0;;-1:-1:-1;;;;;50756:34:0;15176:10;-1:-1:-1;;;;;50756:34:0;;:101;;;-1:-1:-1;50824:18:0;;50807:50;;15176:10;46079:164;:::i;50807:50::-;50756:154;;;-1:-1:-1;15176:10:0;50874:20;50886:7;50874:11;:20::i;:::-;-1:-1:-1;;;;;50874:36:0;;50756:154;50730:181;;50929:17;50924:66;;50955:35;;-1:-1:-1;;;50955:35:0;;;;;;;;;;;50924:66;51027:4;-1:-1:-1;;;;;51005:26:0;:13;:18;;;-1:-1:-1;;;;;51005:26:0;;51001:67;;51040:28;;-1:-1:-1;;;51040:28:0;;;;;;;;;;;51001:67;-1:-1:-1;;;;;51083:16:0;;51079:52;;51108:23;;-1:-1:-1;;;51108:23:0;;;;;;;;;;;51079:52;51252:49;51269:1;51273:7;51282:13;:18;;;51252:8;:49::i;:::-;-1:-1:-1;;;;;51597:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;51597:31:0;;;-1:-1:-1;;;;;51597:31:0;;;-1:-1:-1;;51597:31:0;;;;;;;51643:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51643:29:0;;;;;;;;;;;51689:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;51734:61:0;;;;-1:-1:-1;;;51779:15:0;51734:61;;;;;;;;;;;52069:11;;;52099:24;;;;;:29;52069:11;;52099:29;52095:445;;52324:13;;52310:11;:27;52306:219;;;52394:18;;;52362:24;;;:11;:24;;;;;;;;:50;;52477:28;;;;-1:-1:-1;;;;;52435:70:0;-1:-1:-1;;;52435:70:0;-1:-1:-1;;;;;;52435:70:0;;;-1:-1:-1;;;;;52362:50:0;;;52435:70;;;;;;;52306:219;50544:2112;52587:7;52583:2;-1:-1:-1;;;;;52568:27:0;52577:4;-1:-1:-1;;;;;52568:27:0;-1:-1:-1;;;;;;;;;;;52568:27:0;;;;;;;;;52606:42;63021:413;52885:2039;52945:35;52983:20;52995:7;52983:11;:20::i;:::-;52945:58;-1:-1:-1;53146:49:0;53163:1;53167:7;53176:13;:18;;;53146:8;:49::i;:::-;53504:18;;-1:-1:-1;;;;;53491:32:0;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;53491:45:0;;-1:-1:-1;;;;;53491:45:0;;;-1:-1:-1;;53491:45:0;;;;;;;53564:18;;53551:32;;;;;;;:50;;-1:-1:-1;;;;53551:50:0;;-1:-1:-1;;;53551:50:0;;;;;;-1:-1:-1;53551:50:0;;;;;;;;;;;;53728:18;;53700:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;53700:46:0;;;-1:-1:-1;;;;;;53761:61:0;;;;-1:-1:-1;;;53806:15:0;53761:61;;;;;;;;;;;-1:-1:-1;;;;53837:34:0;;;;;;;54141:11;;;54171:24;;;;;:29;54141:11;;54171:29;54167:445;;54396:13;;54382:11;:27;54378:219;;;54466:18;;;54434:24;;;:11;:24;;;;;;;;:50;;54549:28;;;;-1:-1:-1;;;;;54507:70:0;-1:-1:-1;;;54507:70:0;-1:-1:-1;;;;;;54507:70:0;;;-1:-1:-1;;;;;54434:50:0;;;54507:70;;;;;;;54378:219;-1:-1:-1;54649:18:0;;54640:49;;54681:7;;54677:1;;-1:-1:-1;;;;;54640:49:0;;;;-1:-1:-1;;;;;;;;;;;54640:49:0;54677:1;;54640:49;-1:-1:-1;;54891:12:0;:14;;;;;;52885:2039::o;42589:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;42699:7:0;;61881:1;42748:23;;:47;;;;;42782:13;;42775:4;:20;42748:47;42744:886;;;42816:31;42850:17;;;:11;:17;;;;;;;;;42816:51;;;;;;;;;-1:-1:-1;;;;;42816:51:0;;;;-1:-1:-1;;;42816:51:0;;-1:-1:-1;;;;;42816:51:0;;;;;;;;-1:-1:-1;;;42816:51:0;;;;;;;;;;;;;;42886:729;;42936:14;;-1:-1:-1;;;;;42936:28:0;;42932:101;;43000:9;42589:1108;-1:-1:-1;;;42589:1108:0:o;42932:101::-;-1:-1:-1;;;43375:6:0;43420:17;;;;:11;:17;;;;;;;;;43408:29;;;;;;;;;-1:-1:-1;;;;;43408:29:0;;;;;-1:-1:-1;;;43408:29:0;;-1:-1:-1;;;;;43408:29:0;;;;;;;;-1:-1:-1;;;43408:29:0;;;;;;;;;;;;;43468:28;43464:109;;43536:9;42589:1108;-1:-1:-1;;;42589:1108:0:o;43464:109::-;43335:261;;;42744:886;;43658:31;;-1:-1:-1;;;43658:31:0;;;;;;;;;;;17642:191;17735:6;;;-1:-1:-1;;;;;17752:17:0;;;-1:-1:-1;;;;;;17752:17:0;;;;;;;17785:40;;17735:6;;;17752:17;17735:6;;17785:40;;17716:16;;17785:40;17642:191;;:::o;55730:667::-;55914:72;;-1:-1:-1;;;55914:72:0;;55893:4;;-1:-1:-1;;;;;55914:36:0;;;;;:72;;15176:10;;55965:4;;55971:7;;55980:5;;55914:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55914:72:0;;;;;;;;-1:-1:-1;;55914:72:0;;;;;;;;;;;;:::i;:::-;;;55910:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56148:13:0;;56144:235;;56194:40;;-1:-1:-1;;;56194:40:0;;;;;;;;;;;56144:235;56337:6;56331:13;56322:6;56318:2;56314:15;56307:38;55910:480;-1:-1:-1;;;;;;56033:55:0;-1:-1:-1;;;56033:55:0;;-1:-1:-1;55730:667:0;;;;;;:::o;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;-1:-1:-1;;;;;3626:17:0;;;;;-1:-1:-1;;;3626:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;-1:-1:-1;;;3714:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;47626:104;47695:27;47705:2;47709:8;47695:27;;;;;;;;;;;;:9;:27::i;9300:231::-;9378:7;9399:17;9418:18;9440:27;9451:4;9457:9;9440:10;:27::i;:::-;9398:69;;;;9478:18;9490:5;9478:11;:18::i;:::-;-1:-1:-1;9514:9:0;9300:231;-1:-1:-1;;;9300:231:0:o;48093:163::-;48216:32;48222:2;48226:8;48236:5;48243:4;48216:5;:32::i;7190:1308::-;7271:7;7280:12;7505:9;:16;7525:2;7505:22;7501:990;;;7801:4;7786:20;;7780:27;7851:4;7836:20;;7830:27;7909:4;7894:20;;7888:27;7544:9;7880:36;7952:25;7963:4;7880:36;7780:27;7830;7952:10;:25::i;:::-;7945:32;;;;;;;;;7501:990;7999:9;:16;8019:2;7999:22;7995:496;;;8274:4;8259:20;;8253:27;8325:4;8310:20;;8304:27;8367:23;8378:4;8253:27;8304;8367:10;:23::i;:::-;8360:30;;;;;;;;7995:496;-1:-1:-1;8439:1:0;;-1:-1:-1;8443:35:0;7995:496;7190:1308;;;;;:::o;5461:643::-;5539:20;5530:5;:29;;;;;;-1:-1:-1;;;5530:29:0;;;;;;;;;;5526:571;;;5461:643;:::o;5526:571::-;5637:29;5628:5;:38;;;;;;-1:-1:-1;;;5628:38:0;;;;;;;;;;5624:473;;;5683:34;;-1:-1:-1;;;5683:34:0;;13236:2:1;5683:34:0;;;13218:21:1;13275:2;13255:18;;;13248:30;13314:26;13294:18;;;13287:54;13358:18;;5683:34:0;13208:174:1;5624:473:0;5748:35;5739:5;:44;;;;;;-1:-1:-1;;;5739:44:0;;;;;;;;;;5735:362;;;5800:41;;-1:-1:-1;;;5800:41:0;;14340:2:1;5800:41:0;;;14322:21:1;14379:2;14359:18;;;14352:30;14418:33;14398:18;;;14391:61;14469:18;;5800:41:0;14312:181:1;5735:362:0;5872:30;5863:5;:39;;;;;;-1:-1:-1;;;5863:39:0;;;;;;;;;;5859:238;;;5919:44;;-1:-1:-1;;;5919:44:0;;16641:2:1;5919:44:0;;;16623:21:1;16680:2;16660:18;;;16653:30;16719:34;16699:18;;;16692:62;-1:-1:-1;;;16770:18:1;;;16763:32;16812:19;;5919:44:0;16613:224:1;5859:238:0;5994:30;5985:5;:39;;;;;;-1:-1:-1;;;5985:39:0;;;;;;;;;;5981:116;;;6041:44;;-1:-1:-1;;;6041:44:0;;17748:2:1;6041:44:0;;;17730:21:1;17787:2;17767:18;;;17760:30;17826:34;17806:18;;;17799:62;-1:-1:-1;;;17877:18:1;;;17870:32;17919:19;;6041:44:0;17720:224:1;48515:1775:0;48654:20;48677:13;-1:-1:-1;;;;;48705:16:0;;48701:48;;48730:19;;-1:-1:-1;;;48730:19:0;;;;;;;;;;;48701:48;48764:13;48760:44;;48786:18;;-1:-1:-1;;;48786:18:0;;;;;;;;;;;48760:44;-1:-1:-1;;;;;49155:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;49214:49:0;;-1:-1:-1;;;;;49155:44:0;;;;;;;49214:49;;;;-1:-1:-1;;49155:44:0;;;;;;49214:49;;;;;;;;;;;;;;;;49280:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;49330:66:0;;;;-1:-1:-1;;;49380:15:0;49330:66;;;;;;;;;;49280:25;49477:23;;;49521:4;:23;;;;-1:-1:-1;;;;;;49529:13:0;;19368:19;:23;;49529:15;49517:641;;;49565:314;49596:38;;49621:12;;-1:-1:-1;;;;;49596:38:0;;;49613:1;;-1:-1:-1;;;;;;;;;;;49596:38:0;49613:1;;49596:38;49662:69;49701:1;49705:2;49709:14;;;;;;49725:5;49662:30;:69::i;:::-;49657:174;;49767:40;;-1:-1:-1;;;49767:40:0;;;;;;;;;;;49657:174;49874:3;49858:12;:19;;49565:314;;49960:12;49943:13;;:29;49939:43;;49974:8;;;49939:43;49517:641;;;50023:120;50054:40;;50079:14;;;;;-1:-1:-1;;;;;50054:40:0;;;50071:1;;-1:-1:-1;;;;;;;;;;;50054:40:0;50071:1;;50054:40;50138:3;50122:12;:19;;50023:120;;49517:641;-1:-1:-1;50172:13:0;:28;50222:60;63021:413;10752:1632;10883:7;;11817:66;11804:79;;11800:163;;;-1:-1:-1;11916:1:0;;-1:-1:-1;11920:30:0;11900:51;;11800:163;11977:1;:7;;11982:2;11977:7;;:18;;;;;11988:1;:7;;11993:2;11988:7;;11977:18;11973:102;;;-1:-1:-1;12028:1:0;;-1:-1:-1;12032:30:0;12012:51;;11973:102;12189:24;;;12172:14;12189:24;;;;;;;;;12634:25:1;;;12707:4;12695:17;;12675:18;;;12668:45;;;;12729:18;;;12722:34;;;12772:18;;;12765:34;;;12189:24:0;;12606:19:1;;12189:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12189:24:0;;-1:-1:-1;;12189:24:0;;;-1:-1:-1;;;;;;;12228:20:0;;12224:103;;12281:1;12285:29;12265:50;;;;;;;12224:103;12347:6;-1:-1:-1;12355:20:0;;-1:-1:-1;10752:1632:0;;;;;;;;:::o;9794:344::-;9908:7;;-1:-1:-1;;;;;9954:80:0;;9908:7;10061:25;10077:3;10062:18;;;10084:2;10061:25;:::i;:::-;10045:42;;10105:25;10116:4;10122:1;10125;10128;10105:10;:25::i;:::-;10098:32;;;;;;9794:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:395::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:2;;755:8;745;738:26;697:2;-1:-1:-1;785:20:1;;-1:-1:-1;;;;;817:30:1;;814:2;;;867:8;857;850:26;814:2;911:4;903:6;899:17;887:29;;971:3;964:4;954:6;951:1;947:14;939:6;935:27;931:38;928:47;925:2;;;988:1;985;978:12;1003:196;1062:6;1115:2;1103:9;1094:7;1090:23;1086:32;1083:2;;;1136:6;1128;1121:22;1083:2;1164:29;1183:9;1164:29;:::i;:::-;1154:39;1073:126;-1:-1:-1;;;1073:126:1:o;1204:270::-;1272:6;1280;1333:2;1321:9;1312:7;1308:23;1304:32;1301:2;;;1354:6;1346;1339:22;1301:2;1382:29;1401:9;1382:29;:::i;:::-;1372:39;;1430:38;1464:2;1453:9;1449:18;1430:38;:::i;:::-;1420:48;;1291:183;;;;;:::o;1479:338::-;1556:6;1564;1572;1625:2;1613:9;1604:7;1600:23;1596:32;1593:2;;;1646:6;1638;1631:22;1593:2;1674:29;1693:9;1674:29;:::i;:::-;1664:39;;1722:38;1756:2;1745:9;1741:18;1722:38;:::i;:::-;1712:48;;1807:2;1796:9;1792:18;1779:32;1769:42;;1583:234;;;;;:::o;1822:696::-;1917:6;1925;1933;1941;1994:3;1982:9;1973:7;1969:23;1965:33;1962:2;;;2016:6;2008;2001:22;1962:2;2044:29;2063:9;2044:29;:::i;:::-;2034:39;;2092:38;2126:2;2115:9;2111:18;2092:38;:::i;:::-;2082:48;;2177:2;2166:9;2162:18;2149:32;2139:42;;2232:2;2221:9;2217:18;2204:32;-1:-1:-1;;;;;2251:6:1;2248:30;2245:2;;;2296:6;2288;2281:22;2245:2;2324:22;;2377:4;2369:13;;2365:27;-1:-1:-1;2355:2:1;;2411:6;2403;2396:22;2355:2;2439:73;2504:7;2499:2;2486:16;2481:2;2477;2473:11;2439:73;:::i;:::-;2429:83;;;1952:566;;;;;;;:::o;2523:367::-;2588:6;2596;2649:2;2637:9;2628:7;2624:23;2620:32;2617:2;;;2670:6;2662;2655:22;2617:2;2698:29;2717:9;2698:29;:::i;:::-;2688:39;;2777:2;2766:9;2762:18;2749:32;2824:5;2817:13;2810:21;2803:5;2800:32;2790:2;;2851:6;2843;2836:22;2790:2;2879:5;2869:15;;;2607:283;;;;;:::o;2895:264::-;2963:6;2971;3024:2;3012:9;3003:7;2999:23;2995:32;2992:2;;;3045:6;3037;3030:22;2992:2;3073:29;3092:9;3073:29;:::i;:::-;3063:39;3149:2;3134:18;;;;3121:32;;-1:-1:-1;;;2982:177:1:o;3164:457::-;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:2;;;3332:6;3324;3317:22;3279:2;3377:9;3364:23;-1:-1:-1;;;;;3402:6:1;3399:30;3396:2;;;3447:6;3439;3432:22;3396:2;3491:70;3553:7;3544:6;3533:9;3529:22;3491:70;:::i;:::-;3580:8;;3465:96;;-1:-1:-1;3269:352:1;-1:-1:-1;;;;3269:352:1:o;3626:1437::-;3736:6;3767:2;3810;3798:9;3789:7;3785:23;3781:32;3778:2;;;3831:6;3823;3816:22;3778:2;3876:9;3863:23;-1:-1:-1;;;;;3946:2:1;3938:6;3935:14;3932:2;;;3967:6;3959;3952:22;3932:2;4010:6;3999:9;3995:22;3985:32;;4055:7;4048:4;4044:2;4040:13;4036:27;4026:2;;4082:6;4074;4067:22;4026:2;4123;4110:16;4145:2;4141;4138:10;4135:2;;;4151:18;;:::i;:::-;4191:36;4223:2;4218;4215:1;4211:10;4207:19;4191:36;:::i;:::-;4261:15;;;4292:12;;;;-1:-1:-1;4324:11:1;;;4366:1;4362:10;;;4354:19;;4350:28;;4347:41;-1:-1:-1;4344:2:1;;;4406:6;4398;4391:22;4344:2;4433:6;4424:15;;4448:585;4462:2;4459:1;4456:9;4448:585;;;4517:4;4560:2;4554:3;4545:7;4541:17;4537:26;4534:2;;;4581:6;4573;4566:22;4534:2;4616:22;;:::i;:::-;4665:23;4684:3;4665:23;:::i;:::-;4651:38;;4738:12;;;4725:26;4709:14;;;4702:50;4775:2;4826:12;;;4813:26;4797:14;;;4790:50;4863:2;4914:12;;;4901:26;4885:14;;;4878:50;4941:18;;4480:1;4473:9;;;;;4979:12;;;;5011;4448:585;;;-1:-1:-1;5052:5:1;3747:1316;-1:-1:-1;;;;;;;3747:1316:1:o;5529:255::-;5587:6;5640:2;5628:9;5619:7;5615:23;5611:32;5608:2;;;5661:6;5653;5646:22;5608:2;5705:9;5692:23;5724:30;5748:5;5724:30;:::i;5789:259::-;5858:6;5911:2;5899:9;5890:7;5886:23;5882:32;5879:2;;;5932:6;5924;5917:22;5879:2;5969:9;5963:16;5988:30;6012:5;5988:30;:::i;6053:480::-;6122:6;6175:2;6163:9;6154:7;6150:23;6146:32;6143:2;;;6196:6;6188;6181:22;6143:2;6241:9;6228:23;-1:-1:-1;;;;;6266:6:1;6263:30;6260:2;;;6311:6;6303;6296:22;6260:2;6339:22;;6392:4;6384:13;;6380:27;-1:-1:-1;6370:2:1;;6426:6;6418;6411:22;6370:2;6454:73;6519:7;6514:2;6501:16;6496:2;6492;6488:11;6454:73;:::i;6538:190::-;6597:6;6650:2;6638:9;6629:7;6625:23;6621:32;6618:2;;;6671:6;6663;6656:22;6618:2;-1:-1:-1;6699:23:1;;6608:120;-1:-1:-1;6608:120:1:o;6733:326::-;6810:6;6818;6826;6879:2;6867:9;6858:7;6854:23;6850:32;6847:2;;;6900:6;6892;6885:22;6847:2;-1:-1:-1;;6928:23:1;;;6998:2;6983:18;;6970:32;;-1:-1:-1;7049:2:1;7034:18;;;7021:32;;6837:222;-1:-1:-1;6837:222:1:o;7064:846::-;7161:6;7169;7177;7185;7193;7246:3;7234:9;7225:7;7221:23;7217:33;7214:2;;;7268:6;7260;7253:22;7214:2;7309:9;7296:23;7286:33;;7366:2;7355:9;7351:18;7338:32;7328:42;;7417:2;7406:9;7402:18;7389:32;7379:42;;7472:2;7461:9;7457:18;7444:32;-1:-1:-1;;;;;7536:2:1;7528:6;7525:14;7522:2;;;7557:6;7549;7542:22;7522:2;7600:6;7589:9;7585:22;7575:32;;7645:7;7638:4;7634:2;7630:13;7626:27;7616:2;;7672:6;7664;7657:22;7616:2;7717;7704:16;7743:2;7735:6;7732:14;7729:2;;;7764:6;7756;7749:22;7729:2;7814:7;7809:2;7800:6;7796:2;7792:15;7788:24;7785:37;7782:2;;;7840:6;7832;7825:22;7782:2;7204:706;;;;-1:-1:-1;7204:706:1;;-1:-1:-1;7876:2:1;7868:11;;7898:6;7204:706;-1:-1:-1;;;7204:706:1:o;7915:296::-;7973:6;8026:2;8014:9;8005:7;8001:23;7997:32;7994:2;;;8047:6;8039;8032:22;7994:2;8091:9;8078:23;8141:10;8134:5;8130:22;8123:5;8120:33;8110:2;;8172:6;8164;8157:22;8216:257;8257:3;8295:5;8289:12;8322:6;8317:3;8310:19;8338:63;8394:6;8387:4;8382:3;8378:14;8371:4;8364:5;8360:16;8338:63;:::i;:::-;8455:2;8434:15;-1:-1:-1;;8430:29:1;8421:39;;;;8462:4;8417:50;;8265:208;-1:-1:-1;;8265:208:1:o;8478:979::-;8563:12;;8528:3;;8620:1;8640:18;;;;8693;;;;8720:2;;8774:4;8766:6;8762:17;8752:27;;8720:2;8800;8848;8840:6;8837:14;8817:18;8814:38;8811:2;;;-1:-1:-1;;;8875:33:1;;8931:4;8928:1;8921:15;8961:4;8882:3;8949:17;8811:2;8992:18;9019:104;;;;9137:1;9132:319;;;;8985:466;;9019:104;-1:-1:-1;;9052:24:1;;9040:37;;9097:16;;;;-1:-1:-1;9019:104:1;;9132:319;22234:4;22253:17;;;22303:4;22287:21;;9226:1;9240:165;9254:6;9251:1;9248:13;9240:165;;;9332:14;;9319:11;;;9312:35;9375:16;;;;9269:10;;9240:165;;;9244:3;;9434:6;9429:3;9425:16;9418:23;;8985:466;;;;;;;8536:921;;;;:::o;9818:456::-;10039:3;10067:38;10101:3;10093:6;10067:38;:::i;:::-;10134:6;10128:13;10150:52;10195:6;10191:2;10184:4;10176:6;10172:17;10150:52;:::i;:::-;10218:50;10260:6;10256:2;10252:15;10244:6;10218:50;:::i;:::-;10211:57;10047:227;-1:-1:-1;;;;;;;10047:227:1:o;11082:488::-;-1:-1:-1;;;;;11351:15:1;;;11333:34;;11403:15;;11398:2;11383:18;;11376:43;11450:2;11435:18;;11428:34;;;11498:3;11493:2;11478:18;;11471:31;;;11276:4;;11519:45;;11544:19;;11536:6;11519:45;:::i;:::-;11511:53;11285:285;-1:-1:-1;;;;;;11285:285:1:o;11575:635::-;11746:2;11798:21;;;11868:13;;11771:18;;;11890:22;;;11717:4;;11746:2;11969:15;;;;11943:2;11928:18;;;11717:4;12015:169;12029:6;12026:1;12023:13;12015:169;;;12090:13;;12078:26;;12159:15;;;;12124:12;;;;12051:1;12044:9;12015:169;;;-1:-1:-1;12201:3:1;;11726:484;-1:-1:-1;;;;;;11726:484:1:o;12810:219::-;12959:2;12948:9;12941:21;12922:4;12979:44;13019:2;13008:9;13004:18;12996:6;12979:44;:::i;19009:356::-;19211:2;19193:21;;;19230:18;;;19223:30;19289:34;19284:2;19269:18;;19262:62;19356:2;19341:18;;19183:182::o;21649:253::-;21721:2;21715:9;21763:4;21751:17;;-1:-1:-1;;;;;21783:34:1;;21819:22;;;21780:62;21777:2;;;21845:18;;:::i;:::-;21881:2;21874:22;21695:207;:::o;21907:275::-;21978:2;21972:9;22043:2;22024:13;;-1:-1:-1;;22020:27:1;22008:40;;-1:-1:-1;;;;;22063:34:1;;22099:22;;;22060:62;22057:2;;;22125:18;;:::i;:::-;22161:2;22154:22;21952:230;;-1:-1:-1;21952:230:1:o;22319:128::-;22359:3;22390:1;22386:6;22383:1;22380:13;22377:2;;;22396:18;;:::i;:::-;-1:-1:-1;22432:9:1;;22367:80::o;22452:120::-;22492:1;22518;22508:2;;22523:18;;:::i;:::-;-1:-1:-1;22557:9:1;;22498:74::o;22577:168::-;22617:7;22683:1;22679;22675:6;22671:14;22668:1;22665:21;22660:1;22653:9;22646:17;22642:45;22639:2;;;22690:18;;:::i;:::-;-1:-1:-1;22730:9:1;;22629:116::o;22750:125::-;22790:4;22818:1;22815;22812:8;22809:2;;;22823:18;;:::i;:::-;-1:-1:-1;22860:9:1;;22799:76::o;22880:258::-;22952:1;22962:113;22976:6;22973:1;22970:13;22962:113;;;23052:11;;;23046:18;23033:11;;;23026:39;22998:2;22991:10;22962:113;;;23093:6;23090:1;23087:13;23084:2;;;-1:-1:-1;;23128:1:1;23110:16;;23103:27;22933:205::o;23143:380::-;23222:1;23218:12;;;;23265;;;23286:2;;23340:4;23332:6;23328:17;23318:27;;23286:2;23393;23385:6;23382:14;23362:18;23359:38;23356:2;;;23439:10;23434:3;23430:20;23427:1;23420:31;23474:4;23471:1;23464:15;23502:4;23499:1;23492:15;23356:2;;23198:325;;;:::o;23528:135::-;23567:3;-1:-1:-1;;23588:17:1;;23585:2;;;23608:18;;:::i;:::-;-1:-1:-1;23655:1:1;23644:13;;23575:88::o;23668:112::-;23700:1;23726;23716:2;;23731:18;;:::i;:::-;-1:-1:-1;23765:9:1;;23706:74::o;23785:127::-;23846:10;23841:3;23837:20;23834:1;23827:31;23877:4;23874:1;23867:15;23901:4;23898:1;23891:15;23917:127;23978:10;23973:3;23969:20;23966:1;23959:31;24009:4;24006:1;23999:15;24033:4;24030:1;24023:15;24049:127;24110:10;24105:3;24101:20;24098:1;24091:31;24141:4;24138:1;24131:15;24165:4;24162:1;24155:15;24181:131;-1:-1:-1;;;;;;24255:32:1;;24245:43;;24235:2;;24302:1;24299;24292:12

Swarm Source

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