ETH Price: $3,465.83 (+0.33%)
Gas: 6 Gwei

Token

The Elites (ELITE)
 

Overview

Max Total Supply

2,000 ELITE

Holders

910

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ELITE
0xed9Acb78AC13d48bCe739bDF582DfA4b1C17f60d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
UnitiveLabs

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

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

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.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 tokenId);

    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.0 (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);
}

// OpenZeppelin Contracts v4.4.0 (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;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.7;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

// OpenZeppelin Contracts v4.4.0 (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);
    }
}

// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}


pragma solidity ^0.8.11;
pragma abicoder v2;

contract UnitiveLabs is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  
  using MerkleProof for bytes32[];
  bytes32 public whitelistMerkleRoot;
  bool public preSaleIsActive = false;
  bool public saleIsActive = false;
  uint256 public tokenPrice = 40000000000000000;
  
  uint public constant MAX_TOKEN_PER_TXN = 3;
  
  uint256 public constant MAX_TOKENS = 2001;
  address public proxyRegistryAddress;
  mapping(address => uint256) private allowance;
  string public baseURI;
    
  constructor() ERC721("The Elites", "ELITE") {
    setBaseURI("ipfs://QmVWLnwGt6b6SENp74JyBbAWDLBfwcfGKnrpr31FGcTgBM/");
    proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
  }

  function updateTokenPrice(uint256 newPrice) public onlyOwner {
    require(!saleIsActive, "Sale must be inactive to change token price");
    tokenPrice = newPrice;
  }

  
  function withdraw() public onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0);

    address owner = payable(_msgSender());
    address payoutAddress1 = payable(0xAc01B61D659bD72b120DB7c5289BBFc020771943);
    uint256 payoutPayment1 = balance.mul(2).div(100);
    address payoutAddress2 = payable(0x8fc1F1F48cBB2e4A0f1dfeB9e6019606b307C3c4);
    uint256 payoutPayment2 = balance.mul(5).div(100);
    
    (bool success1, ) = payoutAddress1.call{value: payoutPayment1}("");
    require(success1, "Failed to send.");
    
    (bool success2, ) = payoutAddress2.call{value: payoutPayment2}("");
    require(success2, "Failed to send.");
    
    (bool ownerSuccess, ) = owner.call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }
  
  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function flipPreSaleState() public onlyOwner {
    preSaleIsActive = !preSaleIsActive;
  }
  
  function whitelistMint(uint256 numberOfTokens, uint256 allowed, bytes32[] memory proof) public payable nonReentrant {
    uint256 supply = totalSupply();
    require(_msgSender() == tx.origin, "No smart contracts allowed.");
    require(preSaleIsActive, "Pre-sale not started or has ended");
    require(
      _verify(_leaf(_msgSender(), allowed), proof),
      "Your address is not whitelisted"
    );
    require(allowance[_msgSender()] + numberOfTokens <= allowed, "Exceeds wallet allowance");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether sent is not correct");
    require(supply < 1251, "Exceeds WL allocation");

    allowance[_msgSender()] += numberOfTokens;
    for (uint i; i < numberOfTokens; i++) {
      _mint(_msgSender(), supply + i);
    }
  }
  
  function mintToken(uint numberOfTokens) public payable nonReentrant {
    uint supply = totalSupply();
    require(_msgSender() == tx.origin, "No smart contracts allowed.");
    require(allowance[_msgSender()] < 4, "You have already reached the max number of mints with this wallet.");
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens < MAX_TOKEN_PER_TXN, "The max mint per transaction is 2");
    require(supply + numberOfTokens < MAX_TOKENS, "Purchase would exceed max supply");
    require(msg.value == tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
    
    allowance[_msgSender()] += numberOfTokens;

    for(uint i; i < numberOfTokens; i++) {
      _mint(_msgSender(), supply + i);
    }
  }
  
  function _leaf(address account, uint256 count) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(account, count));
  }

  function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
    return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
  }

  function setRoot(bytes32 root) external onlyOwner {
    whitelistMerkleRoot = root;
  }
  
  function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
  }

  function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == operator) return true;

    return super.isApprovedForAll(_owner, operator);
  }

  function airdrop(address _to, uint256 _numberOfTokens) external onlyOwner {
    uint256 supply = totalSupply();
    require(supply + _numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply");
    for (uint256 i; i < _numberOfTokens; i++) {
      _safeMint(_to, supply + i);
    }
  }
}

contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","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":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"saleIsActive","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"allowed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805461ffff19169055668e1bc9bf0400006009553480156200002757600080fd5b50604080518082018252600a81526954686520456c6974657360b01b602080830191825283518085019094526005845264454c49544560d81b9084015281519192916200007791600091620001d0565b5080516200008d906001906020840190620001d0565b505050620000aa620000a46200010260201b60201c565b62000106565b6001600681905550620000d660405180606001604052806036815260200162002d2c6036913962000158565b600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055620002b3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001cc90600c906020840190620001d0565b5050565b828054620001de9062000276565b90600052602060002090601f0160209004810192826200020257600085556200024d565b82601f106200021d57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024d57825182559160200191906001019062000230565b506200025b9291506200025f565b5090565b5b808211156200025b576000815560010162000260565b600181811c908216806200028b57607f821691505b60208210811415620002ad57634e487b7160e01b600052602260045260246000fd5b50919050565b612a6980620002c36000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063c634d032116100ab578063e985e9c51161006f578063e985e9c5146105d7578063eb8d2444146105f7578063f032554914610616578063f2fde38b1461062b578063f47c84c51461064b57600080fd5b8063c634d03214610544578063c87b56dd14610557578063cd7c032614610577578063d26ea6c014610597578063dab5f340146105b757600080fd5b806395d89b41116100f257806395d89b41146104c6578063a22cb465146104db578063aa98e0c6146104fb578063b88d4fde14610511578063c4be5b591461053157600080fd5b8063715018a61461045d5780637ff9b596146104725780638ba4cc3c146104885780638da5cb5b146104a857600080fd5b80633ccfd60b116101a6578063634da63a11610175578063634da63a146103d35780636352211e146103e8578063676c0d77146104085780636c0360eb1461042857806370a082311461043d57600080fd5b80633ccfd60b1461035e57806342842e0e146103735780634f6ccce71461039357806355f804b3146103b357600080fd5b806318160ddd116101ed57806318160ddd146102d05780631f0234d8146102ef57806323b872dd146103095780632f745c591461032957806334918dfd1461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046122f9565b610661565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961068c565b60405161024b919061236e565b34801561028257600080fd5b50610296610291366004612381565b61071e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046123af565b6107ab565b005b3480156102dc57600080fd5b506002545b60405190815260200161024b565b3480156102fb57600080fd5b5060085461023f9060ff1681565b34801561031557600080fd5b506102ce6103243660046123db565b6108c1565b34801561033557600080fd5b506102e16103443660046123af565b6108f2565b34801561035557600080fd5b506102ce6109a5565b34801561036a57600080fd5b506102ce6109ec565b34801561037f57600080fd5b506102ce61038e3660046123db565b610c52565b34801561039f57600080fd5b506102e16103ae366004612381565b610c6d565b3480156103bf57600080fd5b506102ce6103ce3660046124bb565b610cda565b3480156103df57600080fd5b506102e1600381565b3480156103f457600080fd5b50610296610403366004612381565b610d1b565b34801561041457600080fd5b506102ce610423366004612381565b610da7565b34801561043457600080fd5b50610269610e42565b34801561044957600080fd5b506102e1610458366004612504565b610ed0565b34801561046957600080fd5b506102ce610f9e565b34801561047e57600080fd5b506102e160095481565b34801561049457600080fd5b506102ce6104a33660046123af565b610fd4565b3480156104b457600080fd5b506005546001600160a01b0316610296565b3480156104d257600080fd5b5061026961109c565b3480156104e757600080fd5b506102ce6104f6366004612521565b6110ab565b34801561050757600080fd5b506102e160075481565b34801561051d57600080fd5b506102ce61052c36600461255f565b611170565b6102ce61053f3660046125df565b6111a2565b6102ce610552366004612381565b6114b8565b34801561056357600080fd5b50610269610572366004612381565b6117b7565b34801561058357600080fd5b50600a54610296906001600160a01b031681565b3480156105a357600080fd5b506102ce6105b2366004612504565b611838565b3480156105c357600080fd5b506102ce6105d2366004612381565b611884565b3480156105e357600080fd5b5061023f6105f236600461269a565b6118b3565b34801561060357600080fd5b5060085461023f90610100900460ff1681565b34801561062257600080fd5b506102ce611974565b34801561063757600080fd5b506102ce610646366004612504565b6119b2565b34801561065757600080fd5b506102e16107d181565b60006001600160e01b0319821663780e9d6360e01b1480610686575061068682611a4d565b92915050565b60606000805461069b906126c8565b80601f01602080910402602001604051908101604052809291908181526020018280546106c7906126c8565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b600061072982611a9d565b61078f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006107b682610d1b565b9050806001600160a01b0316836001600160a01b031614156108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610786565b336001600160a01b0382161480610840575061084081336118b3565b6108b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610786565b6108bc8383611ae7565b505050565b6108cb3382611b55565b6108e75760405162461bcd60e51b815260040161078690612703565b6108bc838383611c17565b60006108fd83610ed0565b821061091b5760405162461bcd60e51b815260040161078690612754565b6000805b60025481101561098c576002818154811061093c5761093c61279f565b6000918252602090912001546001600160a01b038681169116141561097a578382141561096c5791506106869050565b81610976816127cb565b9250505b80610984816127cb565b91505061091f565b5060405162461bcd60e51b815260040161078690612754565b6005546001600160a01b031633146109cf5760405162461bcd60e51b8152600401610786906127e6565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a165760405162461bcd60e51b8152600401610786906127e6565b4780610a2157600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610a4f6064610a49866002611d6d565b90611d80565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610a786064610a49886005611d6d565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610ac7576040519150601f19603f3d011682016040523d82523d6000602084013e610acc565b606091505b5050905080610b0f5760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401610786565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610b5c576040519150601f19603f3d011682016040523d82523d6000602084013e610b61565b606091505b5050905080610ba45760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401610786565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf1576040519150601f19603f3d011682016040523d82523d6000602084013e610bf6565b606091505b5050905080610c475760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610786565b505050505050505050565b6108bc83838360405180602001604052806000815250611170565b6002546000908210610cd65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610786565b5090565b6005546001600160a01b03163314610d045760405162461bcd60e51b8152600401610786906127e6565b8051610d1790600c906020840190612253565b5050565b60008060028381548110610d3157610d3161279f565b6000918252602090912001546001600160a01b03169050806106865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610786565b6005546001600160a01b03163314610dd15760405162461bcd60e51b8152600401610786906127e6565b600854610100900460ff1615610e3d5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b6064820152608401610786565b600955565b600c8054610e4f906126c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b906126c8565b8015610ec85780601f10610e9d57610100808354040283529160200191610ec8565b820191906000526020600020905b815481529060010190602001808311610eab57829003601f168201915b505050505081565b60006001600160a01b038216610f3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610786565b6000805b600254811015610f975760028181548110610f5c57610f5c61279f565b6000918252602090912001546001600160a01b0385811691161415610f8757610f84826127cb565b91505b610f90816127cb565b9050610f3f565b5092915050565b6005546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610786906127e6565b610fd26000611d8c565b565b6005546001600160a01b03163314610ffe5760405162461bcd60e51b8152600401610786906127e6565b600061100960025490565b90506107d1611018838361281b565b11156110665760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610786565b60005b82811015611096576110848461107f838561281b565b611dde565b8061108e816127cb565b915050611069565b50505050565b60606001805461069b906126c8565b6001600160a01b0382163314156111045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610786565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117a3383611b55565b6111965760405162461bcd60e51b815260040161078690612703565b61109684848484611df8565b600260065414156111f55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610786565b6002600655600061120560025490565b90503332146112565760405162461bcd60e51b815260206004820152601b60248201527f4e6f20736d61727420636f6e74726163747320616c6c6f7765642e00000000006044820152606401610786565b60085460ff166112b25760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b6064820152608401610786565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830187905283518084039091018152605490920190925280519101206112fb9083611e2b565b6113475760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c6973746564006044820152606401610786565b336000908152600b6020526040902054839061136490869061281b565b11156113b25760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e636500000000000000006044820152606401610786565b6009546113bf9085611d6d565b341461140d5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610786565b6104e381106114565760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239902ba61030b63637b1b0ba34b7b760591b6044820152606401610786565b336000908152600b60205260408120805486929061147590849061281b565b90915550600090505b848110156114ac5761149a335b611495838561281b565b611e3a565b806114a4816127cb565b91505061147e565b50506001600655505050565b6002600654141561150b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610786565b6002600655600061151b60025490565b905033321461156c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f20736d61727420636f6e74726163747320616c6c6f7765642e00000000006044820152606401610786565b336000908152600b60205260409020546004116115fc5760405162461bcd60e51b815260206004820152604260248201527f596f75206861766520616c7265616479207265616368656420746865206d617860448201527f206e756d626572206f66206d696e7473207769746820746869732077616c6c656064820152613a1760f11b608482015260a401610786565b600854610100900460ff166116535760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610786565b600382106116ad5760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152601960f91b6064820152608401610786565b6107d16116ba838361281b565b106117075760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610786565b6009546117149083611d6d565b34146117625760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610786565b336000908152600b60205260408120805484929061178190849061281b565b90915550600090505b828110156117ad5761179b3361148b565b806117a5816127cb565b91505061178a565b5050600160065550565b60606117c282611a9d565b6118065760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610786565b600c61181183611f62565b60405160200161182292919061284f565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146118625760405162461bcd60e51b8152600401610786906127e6565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610786906127e6565b600755565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611905573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192991906128f6565b6001600160a01b03161415611942576001915050610686565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461199e5760405162461bcd60e51b8152600401610786906127e6565b6008805460ff19811660ff90911615179055565b6005546001600160a01b031633146119dc5760405162461bcd60e51b8152600401610786906127e6565b6001600160a01b038116611a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b611a4a81611d8c565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a7e57506001600160e01b03198216635b5e139f60e01b145b8061068657506301ffc9a760e01b6001600160e01b0319831614610686565b60025460009082108015610686575060006001600160a01b031660028381548110611aca57611aca61279f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1c82610d1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6082611a9d565b611bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b6000611bcc83610d1b565b9050806001600160a01b0316846001600160a01b03161480611c075750836001600160a01b0316611bfc8461071e565b6001600160a01b0316145b8061196c575061196c81856118b3565b826001600160a01b0316611c2a82610d1b565b6001600160a01b031614611c925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610786565b6001600160a01b038216611cf45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610786565b611cff600082611ae7565b8160028281548110611d1357611d1361279f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611d798284612913565b9392505050565b6000611d798284612948565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d17828260405180602001604052806000815250612060565b611e03848484611c17565b611e0f84848484612093565b6110965760405162461bcd60e51b81526004016107869061295c565b6000611d798260075485612191565b6001600160a01b038216611e905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610786565b611e9981611a9d565b15611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610786565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb05780611f9a816127cb565b9150611fa99050600a83612948565b9150611f8a565b60008167ffffffffffffffff811115611fcb57611fcb61241c565b6040519080825280601f01601f191660200182016040528015611ff5576020820181803683370190505b5090505b841561196c5761200a6001836129ae565b9150612017600a866129c5565b61202290603061281b565b60f81b8183815181106120375761203761279f565b60200101906001600160f81b031916908160001a905350612059600a86612948565b9450611ff9565b61206a8383611e3a565b6120776000848484612093565b6108bc5760405162461bcd60e51b81526004016107869061295c565b60006001600160a01b0384163b1561218657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d79033908990889088906004016129d9565b6020604051808303816000875af1925050508015612112575060408051601f3d908101601f1916820190925261210f91810190612a16565b60015b61216c573d808015612140576040519150601f19603f3d011682016040523d82523d6000602084013e612145565b606091505b5080516121645760405162461bcd60e51b81526004016107869061295c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196c565b506001949350505050565b60008261219e85846121a7565b14949350505050565b600081815b845181101561224b5760008582815181106121c9576121c961279f565b6020026020010151905080831161220b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612238565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612243816127cb565b9150506121ac565b509392505050565b82805461225f906126c8565b90600052602060002090601f01602090048101928261228157600085556122c7565b82601f1061229a57805160ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c75782518255916020019190600101906122ac565b50610cd69291505b80821115610cd657600081556001016122cf565b6001600160e01b031981168114611a4a57600080fd5b60006020828403121561230b57600080fd5b8135611d79816122e3565b60005b83811015612331578181015183820152602001612319565b838111156110965750506000910152565b6000815180845261235a816020860160208601612316565b601f01601f19169290920160200192915050565b602081526000611d796020830184612342565b60006020828403121561239357600080fd5b5035919050565b6001600160a01b0381168114611a4a57600080fd5b600080604083850312156123c257600080fd5b82356123cd8161239a565b946020939093013593505050565b6000806000606084860312156123f057600080fd5b83356123fb8161239a565b9250602084013561240b8161239a565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561245b5761245b61241c565b604052919050565b600067ffffffffffffffff83111561247d5761247d61241c565b612490601f8401601f1916602001612432565b90508281528383830111156124a457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124cd57600080fd5b813567ffffffffffffffff8111156124e457600080fd5b8201601f810184136124f557600080fd5b61196c84823560208401612463565b60006020828403121561251657600080fd5b8135611d798161239a565b6000806040838503121561253457600080fd5b823561253f8161239a565b91506020830135801515811461255457600080fd5b809150509250929050565b6000806000806080858703121561257557600080fd5b84356125808161239a565b935060208501356125908161239a565b925060408501359150606085013567ffffffffffffffff8111156125b357600080fd5b8501601f810187136125c457600080fd5b6125d387823560208401612463565b91505092959194509250565b6000806000606084860312156125f457600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561261b57600080fd5b818701915087601f83011261262f57600080fd5b8135818111156126415761264161241c565b8060051b9150612652848301612432565b818152918301840191848101908a84111561266c57600080fd5b938501935b8385101561268a57843582529385019390850190612671565b8096505050505050509250925092565b600080604083850312156126ad57600080fd5b82356126b88161239a565b915060208301356125548161239a565b600181811c908216806126dc57607f821691505b602082108114156126fd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156127df576127df6127b5565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561282e5761282e6127b5565b500190565b60008151612845818560208601612316565b9290920192915050565b600080845481600182811c91508083168061286b57607f831692505b602080841082141561288b57634e487b7160e01b86526022600452602486fd5b81801561289f57600181146128b0576128dd565b60ff198616895284890196506128dd565b60008b81526020902060005b868110156128d55781548b8201529085019083016128bc565b505084890196505b5050505050506128ed8185612833565b95945050505050565b60006020828403121561290857600080fd5b8151611d798161239a565b600081600019048311821515161561292d5761292d6127b5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261295757612957612932565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156129c0576129c06127b5565b500390565b6000826129d4576129d4612932565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a0c90830184612342565b9695505050505050565b600060208284031215612a2857600080fd5b8151611d79816122e356fea2646970667358221220371937b9ec5f0ebc5af19f18c44ce0e1e4f7471c54e2f382fdf062b2e7a6fe8b64736f6c634300080b0033697066733a2f2f516d56574c6e77477436623653454e7037344a7942624157444c4266776366474b6e72707233314647635467424d2f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063c634d032116100ab578063e985e9c51161006f578063e985e9c5146105d7578063eb8d2444146105f7578063f032554914610616578063f2fde38b1461062b578063f47c84c51461064b57600080fd5b8063c634d03214610544578063c87b56dd14610557578063cd7c032614610577578063d26ea6c014610597578063dab5f340146105b757600080fd5b806395d89b41116100f257806395d89b41146104c6578063a22cb465146104db578063aa98e0c6146104fb578063b88d4fde14610511578063c4be5b591461053157600080fd5b8063715018a61461045d5780637ff9b596146104725780638ba4cc3c146104885780638da5cb5b146104a857600080fd5b80633ccfd60b116101a6578063634da63a11610175578063634da63a146103d35780636352211e146103e8578063676c0d77146104085780636c0360eb1461042857806370a082311461043d57600080fd5b80633ccfd60b1461035e57806342842e0e146103735780634f6ccce71461039357806355f804b3146103b357600080fd5b806318160ddd116101ed57806318160ddd146102d05780631f0234d8146102ef57806323b872dd146103095780632f745c591461032957806334918dfd1461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046122f9565b610661565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961068c565b60405161024b919061236e565b34801561028257600080fd5b50610296610291366004612381565b61071e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046123af565b6107ab565b005b3480156102dc57600080fd5b506002545b60405190815260200161024b565b3480156102fb57600080fd5b5060085461023f9060ff1681565b34801561031557600080fd5b506102ce6103243660046123db565b6108c1565b34801561033557600080fd5b506102e16103443660046123af565b6108f2565b34801561035557600080fd5b506102ce6109a5565b34801561036a57600080fd5b506102ce6109ec565b34801561037f57600080fd5b506102ce61038e3660046123db565b610c52565b34801561039f57600080fd5b506102e16103ae366004612381565b610c6d565b3480156103bf57600080fd5b506102ce6103ce3660046124bb565b610cda565b3480156103df57600080fd5b506102e1600381565b3480156103f457600080fd5b50610296610403366004612381565b610d1b565b34801561041457600080fd5b506102ce610423366004612381565b610da7565b34801561043457600080fd5b50610269610e42565b34801561044957600080fd5b506102e1610458366004612504565b610ed0565b34801561046957600080fd5b506102ce610f9e565b34801561047e57600080fd5b506102e160095481565b34801561049457600080fd5b506102ce6104a33660046123af565b610fd4565b3480156104b457600080fd5b506005546001600160a01b0316610296565b3480156104d257600080fd5b5061026961109c565b3480156104e757600080fd5b506102ce6104f6366004612521565b6110ab565b34801561050757600080fd5b506102e160075481565b34801561051d57600080fd5b506102ce61052c36600461255f565b611170565b6102ce61053f3660046125df565b6111a2565b6102ce610552366004612381565b6114b8565b34801561056357600080fd5b50610269610572366004612381565b6117b7565b34801561058357600080fd5b50600a54610296906001600160a01b031681565b3480156105a357600080fd5b506102ce6105b2366004612504565b611838565b3480156105c357600080fd5b506102ce6105d2366004612381565b611884565b3480156105e357600080fd5b5061023f6105f236600461269a565b6118b3565b34801561060357600080fd5b5060085461023f90610100900460ff1681565b34801561062257600080fd5b506102ce611974565b34801561063757600080fd5b506102ce610646366004612504565b6119b2565b34801561065757600080fd5b506102e16107d181565b60006001600160e01b0319821663780e9d6360e01b1480610686575061068682611a4d565b92915050565b60606000805461069b906126c8565b80601f01602080910402602001604051908101604052809291908181526020018280546106c7906126c8565b80156107145780601f106106e957610100808354040283529160200191610714565b820191906000526020600020905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b600061072982611a9d565b61078f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006107b682610d1b565b9050806001600160a01b0316836001600160a01b031614156108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610786565b336001600160a01b0382161480610840575061084081336118b3565b6108b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610786565b6108bc8383611ae7565b505050565b6108cb3382611b55565b6108e75760405162461bcd60e51b815260040161078690612703565b6108bc838383611c17565b60006108fd83610ed0565b821061091b5760405162461bcd60e51b815260040161078690612754565b6000805b60025481101561098c576002818154811061093c5761093c61279f565b6000918252602090912001546001600160a01b038681169116141561097a578382141561096c5791506106869050565b81610976816127cb565b9250505b80610984816127cb565b91505061091f565b5060405162461bcd60e51b815260040161078690612754565b6005546001600160a01b031633146109cf5760405162461bcd60e51b8152600401610786906127e6565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a165760405162461bcd60e51b8152600401610786906127e6565b4780610a2157600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610a4f6064610a49866002611d6d565b90611d80565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610a786064610a49886005611d6d565b90506000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610ac7576040519150601f19603f3d011682016040523d82523d6000602084013e610acc565b606091505b5050905080610b0f5760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401610786565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114610b5c576040519150601f19603f3d011682016040523d82523d6000602084013e610b61565b606091505b5050905080610ba45760405162461bcd60e51b815260206004820152600f60248201526e2330b4b632b2103a379039b2b7321760891b6044820152606401610786565b6000876001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf1576040519150601f19603f3d011682016040523d82523d6000602084013e610bf6565b606091505b5050905080610c475760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610786565b505050505050505050565b6108bc83838360405180602001604052806000815250611170565b6002546000908210610cd65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610786565b5090565b6005546001600160a01b03163314610d045760405162461bcd60e51b8152600401610786906127e6565b8051610d1790600c906020840190612253565b5050565b60008060028381548110610d3157610d3161279f565b6000918252602090912001546001600160a01b03169050806106865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610786565b6005546001600160a01b03163314610dd15760405162461bcd60e51b8152600401610786906127e6565b600854610100900460ff1615610e3d5760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b6064820152608401610786565b600955565b600c8054610e4f906126c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7b906126c8565b8015610ec85780601f10610e9d57610100808354040283529160200191610ec8565b820191906000526020600020905b815481529060010190602001808311610eab57829003601f168201915b505050505081565b60006001600160a01b038216610f3b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610786565b6000805b600254811015610f975760028181548110610f5c57610f5c61279f565b6000918252602090912001546001600160a01b0385811691161415610f8757610f84826127cb565b91505b610f90816127cb565b9050610f3f565b5092915050565b6005546001600160a01b03163314610fc85760405162461bcd60e51b8152600401610786906127e6565b610fd26000611d8c565b565b6005546001600160a01b03163314610ffe5760405162461bcd60e51b8152600401610786906127e6565b600061100960025490565b90506107d1611018838361281b565b11156110665760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610786565b60005b82811015611096576110848461107f838561281b565b611dde565b8061108e816127cb565b915050611069565b50505050565b60606001805461069b906126c8565b6001600160a01b0382163314156111045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610786565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117a3383611b55565b6111965760405162461bcd60e51b815260040161078690612703565b61109684848484611df8565b600260065414156111f55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610786565b6002600655600061120560025490565b90503332146112565760405162461bcd60e51b815260206004820152601b60248201527f4e6f20736d61727420636f6e74726163747320616c6c6f7765642e00000000006044820152606401610786565b60085460ff166112b25760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b6064820152608401610786565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830187905283518084039091018152605490920190925280519101206112fb9083611e2b565b6113475760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c6973746564006044820152606401610786565b336000908152600b6020526040902054839061136490869061281b565b11156113b25760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e636500000000000000006044820152606401610786565b6009546113bf9085611d6d565b341461140d5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f7272656374000000000000006044820152606401610786565b6104e381106114565760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239902ba61030b63637b1b0ba34b7b760591b6044820152606401610786565b336000908152600b60205260408120805486929061147590849061281b565b90915550600090505b848110156114ac5761149a335b611495838561281b565b611e3a565b806114a4816127cb565b91505061147e565b50506001600655505050565b6002600654141561150b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610786565b6002600655600061151b60025490565b905033321461156c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f20736d61727420636f6e74726163747320616c6c6f7765642e00000000006044820152606401610786565b336000908152600b60205260409020546004116115fc5760405162461bcd60e51b815260206004820152604260248201527f596f75206861766520616c7265616479207265616368656420746865206d617860448201527f206e756d626572206f66206d696e7473207769746820746869732077616c6c656064820152613a1760f11b608482015260a401610786565b600854610100900460ff166116535760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610786565b600382106116ad5760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152601960f91b6064820152608401610786565b6107d16116ba838361281b565b106117075760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610786565b6009546117149083611d6d565b34146117625760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610786565b336000908152600b60205260408120805484929061178190849061281b565b90915550600090505b828110156117ad5761179b3361148b565b806117a5816127cb565b91505061178a565b5050600160065550565b60606117c282611a9d565b6118065760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610786565b600c61181183611f62565b60405160200161182292919061284f565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146118625760405162461bcd60e51b8152600401610786906127e6565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610786906127e6565b600755565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611905573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192991906128f6565b6001600160a01b03161415611942576001915050610686565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b0316331461199e5760405162461bcd60e51b8152600401610786906127e6565b6008805460ff19811660ff90911615179055565b6005546001600160a01b031633146119dc5760405162461bcd60e51b8152600401610786906127e6565b6001600160a01b038116611a415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610786565b611a4a81611d8c565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a7e57506001600160e01b03198216635b5e139f60e01b145b8061068657506301ffc9a760e01b6001600160e01b0319831614610686565b60025460009082108015610686575060006001600160a01b031660028381548110611aca57611aca61279f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1c82610d1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b6082611a9d565b611bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610786565b6000611bcc83610d1b565b9050806001600160a01b0316846001600160a01b03161480611c075750836001600160a01b0316611bfc8461071e565b6001600160a01b0316145b8061196c575061196c81856118b3565b826001600160a01b0316611c2a82610d1b565b6001600160a01b031614611c925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610786565b6001600160a01b038216611cf45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610786565b611cff600082611ae7565b8160028281548110611d1357611d1361279f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611d798284612913565b9392505050565b6000611d798284612948565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d17828260405180602001604052806000815250612060565b611e03848484611c17565b611e0f84848484612093565b6110965760405162461bcd60e51b81526004016107869061295c565b6000611d798260075485612191565b6001600160a01b038216611e905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610786565b611e9981611a9d565b15611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610786565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081611f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb05780611f9a816127cb565b9150611fa99050600a83612948565b9150611f8a565b60008167ffffffffffffffff811115611fcb57611fcb61241c565b6040519080825280601f01601f191660200182016040528015611ff5576020820181803683370190505b5090505b841561196c5761200a6001836129ae565b9150612017600a866129c5565b61202290603061281b565b60f81b8183815181106120375761203761279f565b60200101906001600160f81b031916908160001a905350612059600a86612948565b9450611ff9565b61206a8383611e3a565b6120776000848484612093565b6108bc5760405162461bcd60e51b81526004016107869061295c565b60006001600160a01b0384163b1561218657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d79033908990889088906004016129d9565b6020604051808303816000875af1925050508015612112575060408051601f3d908101601f1916820190925261210f91810190612a16565b60015b61216c573d808015612140576040519150601f19603f3d011682016040523d82523d6000602084013e612145565b606091505b5080516121645760405162461bcd60e51b81526004016107869061295c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061196c565b506001949350505050565b60008261219e85846121a7565b14949350505050565b600081815b845181101561224b5760008582815181106121c9576121c961279f565b6020026020010151905080831161220b576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612238565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612243816127cb565b9150506121ac565b509392505050565b82805461225f906126c8565b90600052602060002090601f01602090048101928261228157600085556122c7565b82601f1061229a57805160ff19168380011785556122c7565b828001600101855582156122c7579182015b828111156122c75782518255916020019190600101906122ac565b50610cd69291505b80821115610cd657600081556001016122cf565b6001600160e01b031981168114611a4a57600080fd5b60006020828403121561230b57600080fd5b8135611d79816122e3565b60005b83811015612331578181015183820152602001612319565b838111156110965750506000910152565b6000815180845261235a816020860160208601612316565b601f01601f19169290920160200192915050565b602081526000611d796020830184612342565b60006020828403121561239357600080fd5b5035919050565b6001600160a01b0381168114611a4a57600080fd5b600080604083850312156123c257600080fd5b82356123cd8161239a565b946020939093013593505050565b6000806000606084860312156123f057600080fd5b83356123fb8161239a565b9250602084013561240b8161239a565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561245b5761245b61241c565b604052919050565b600067ffffffffffffffff83111561247d5761247d61241c565b612490601f8401601f1916602001612432565b90508281528383830111156124a457600080fd5b828260208301376000602084830101529392505050565b6000602082840312156124cd57600080fd5b813567ffffffffffffffff8111156124e457600080fd5b8201601f810184136124f557600080fd5b61196c84823560208401612463565b60006020828403121561251657600080fd5b8135611d798161239a565b6000806040838503121561253457600080fd5b823561253f8161239a565b91506020830135801515811461255457600080fd5b809150509250929050565b6000806000806080858703121561257557600080fd5b84356125808161239a565b935060208501356125908161239a565b925060408501359150606085013567ffffffffffffffff8111156125b357600080fd5b8501601f810187136125c457600080fd5b6125d387823560208401612463565b91505092959194509250565b6000806000606084860312156125f457600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561261b57600080fd5b818701915087601f83011261262f57600080fd5b8135818111156126415761264161241c565b8060051b9150612652848301612432565b818152918301840191848101908a84111561266c57600080fd5b938501935b8385101561268a57843582529385019390850190612671565b8096505050505050509250925092565b600080604083850312156126ad57600080fd5b82356126b88161239a565b915060208301356125548161239a565b600181811c908216806126dc57607f821691505b602082108114156126fd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156127df576127df6127b5565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561282e5761282e6127b5565b500190565b60008151612845818560208601612316565b9290920192915050565b600080845481600182811c91508083168061286b57607f831692505b602080841082141561288b57634e487b7160e01b86526022600452602486fd5b81801561289f57600181146128b0576128dd565b60ff198616895284890196506128dd565b60008b81526020902060005b868110156128d55781548b8201529085019083016128bc565b505084890196505b5050505050506128ed8185612833565b95945050505050565b60006020828403121561290857600080fd5b8151611d798161239a565b600081600019048311821515161561292d5761292d6127b5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261295757612957612932565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156129c0576129c06127b5565b500390565b6000826129d4576129d4612932565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a0c90830184612342565b9695505050505050565b600060208284031215612a2857600080fd5b8151611d79816122e356fea2646970667358221220371937b9ec5f0ebc5af19f18c44ce0e1e4f7471c54e2f382fdf062b2e7a6fe8b64736f6c634300080b0033

Deployed Bytecode Sourcemap

41420:5016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35530:224;;;;;;;;;;-1:-1:-1;35530:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35530:224:0;;;;;;;;24147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24959:308::-;;;;;;;;;;-1:-1:-1;24959:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24959:308:0;1550:203:1;24482:411:0;;;;;;;;;;-1:-1:-1;24482:411:0;;;;;:::i;:::-;;:::i;:::-;;35830:110;;;;;;;;;;-1:-1:-1;35918:7:0;:14;35830:110;;;2360:25:1;;;2348:2;2333:18;35830:110:0;2214:177:1;41602:35:0;;;;;;;;;;-1:-1:-1;41602:35:0;;;;;;;;26018:376;;;;;;;;;;-1:-1:-1;26018:376:0;;;;;:::i;:::-;;:::i;36306:490::-;;;;;;;;;;-1:-1:-1;36306:490:0;;;;;:::i;:::-;;:::i;43270:83::-;;;;;;;;;;;;;:::i;42345:819::-;;;;;;;;;;;;;:::i;26465:185::-;;;;;;;;;;-1:-1:-1;26465:185:0;;;;;:::i;:::-;;:::i;36017:205::-;;;;;;;;;;-1:-1:-1;36017:205:0;;;;;:::i;:::-;;:::i;43172:92::-;;;;;;;;;;-1:-1:-1;43172:92:0;;;;;:::i;:::-;;:::i;41733:42::-;;;;;;;;;;;;41774:1;41733:42;;23754:326;;;;;;;;;;-1:-1:-1;23754:326:0;;;;;:::i;:::-;;:::i;42164:171::-;;;;;;;;;;-1:-1:-1;42164:171:0;;;;;:::i;:::-;;:::i;41920:21::-;;;;;;;;;;;;;:::i;23300:392::-;;;;;;;;;;-1:-1:-1;23300:392:0;;;;;:::i;:::-;;:::i;38457:103::-;;;;;;;;;;;;;:::i;41679:45::-;;;;;;;;;;;;;;;;46135:298;;;;;;;;;;-1:-1:-1;46135:298:0;;;;;:::i;:::-;;:::i;37806:87::-;;;;;;;;;;-1:-1:-1;37879:6:0;;-1:-1:-1;;;;;37879:6:0;37806:87;;24316:104;;;;;;;;;;;;;:::i;25339:327::-;;;;;;;;;;-1:-1:-1;25339:327:0;;;;;:::i;:::-;;:::i;41563:34::-;;;;;;;;;;;;;;;;26721:365;;;;;;;;;;-1:-1:-1;26721:365:0;;;;;:::i;:::-;;:::i;43461:794::-;;;;;;:::i;:::-;;:::i;44263:768::-;;;;;;:::i;:::-;;:::i;45592:213::-;;;;;;;;;;-1:-1:-1;45592:213:0;;;;;:::i;:::-;;:::i;41830:35::-;;;;;;;;;;-1:-1:-1;41830:35:0;;;;-1:-1:-1;;;;;41830:35:0;;;45446:140;;;;;;;;;;-1:-1:-1;45446:140:0;;;;;:::i;:::-;;:::i;45349:89::-;;;;;;;;;;-1:-1:-1;45349:89:0;;;;;:::i;:::-;;:::i;45811:318::-;;;;;;;;;;-1:-1:-1;45811:318:0;;;;;:::i;:::-;;:::i;41642:32::-;;;;;;;;;;-1:-1:-1;41642:32:0;;;;;;;;;;;43361:92;;;;;;;;;;;;;:::i;38715:201::-;;;;;;;;;;-1:-1:-1;38715:201:0;;;;;:::i;:::-;;:::i;41784:41::-;;;;;;;;;;;;41821:4;41784:41;;35530:224;35632:4;-1:-1:-1;;;;;;35656:50:0;;-1:-1:-1;;;35656:50:0;;:90;;;35710:36;35734:11;35710:23;:36::i;:::-;35649:97;35530:224;-1:-1:-1;;35530:224:0:o;24147:100::-;24201:13;24234:5;24227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:100;:::o;24959:308::-;25080:7;25127:16;25135:7;25127;:16::i;:::-;25105:110;;;;-1:-1:-1;;;25105:110:0;;8044:2:1;25105:110:0;;;8026:21:1;8083:2;8063:18;;;8056:30;8122:34;8102:18;;;8095:62;-1:-1:-1;;;8173:18:1;;;8166:42;8225:19;;25105:110:0;;;;;;;;;-1:-1:-1;25235:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25235:24:0;;24959:308::o;24482:411::-;24563:13;24579:23;24594:7;24579:14;:23::i;:::-;24563:39;;24627:5;-1:-1:-1;;;;;24621:11:0;:2;-1:-1:-1;;;;;24621:11:0;;;24613:57;;;;-1:-1:-1;;;24613:57:0;;8457:2:1;24613:57:0;;;8439:21:1;8496:2;8476:18;;;8469:30;8535:34;8515:18;;;8508:62;-1:-1:-1;;;8586:18:1;;;8579:31;8627:19;;24613:57:0;8255:397:1;24613:57:0;738:10;-1:-1:-1;;;;;24705:21:0;;;;:62;;-1:-1:-1;24730:37:0;24747:5;738:10;45811:318;:::i;24730:37::-;24683:168;;;;-1:-1:-1;;;24683:168:0;;8859:2:1;24683:168:0;;;8841:21:1;8898:2;8878:18;;;8871:30;8937:34;8917:18;;;8910:62;9008:26;8988:18;;;8981:54;9052:19;;24683:168:0;8657:420:1;24683:168:0;24864:21;24873:2;24877:7;24864:8;:21::i;:::-;24552:341;24482:411;;:::o;26018:376::-;26227:41;738:10;26260:7;26227:18;:41::i;:::-;26205:140;;;;-1:-1:-1;;;26205:140:0;;;;;;;:::i;:::-;26358:28;26368:4;26374:2;26378:7;26358:9;:28::i;36306:490::-;36403:15;36447:16;36457:5;36447:9;:16::i;:::-;36439:5;:24;36431:80;;;;-1:-1:-1;;;36431:80:0;;;;;;;:::i;:::-;36524:10;36549:6;36545:178;36561:7;:14;36557:18;;36545:178;;;36608:7;36616:1;36608:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36599:19:0;;;36608:10;;36599:19;36596:116;;;36650:5;36641;:14;36638:58;;;36664:1;-1:-1:-1;36657:8:0;;-1:-1:-1;36657:8:0;36638:58;36689:7;;;;:::i;:::-;;;;36638:58;36577:3;;;;:::i;:::-;;;;36545:178;;;;36735:53;;-1:-1:-1;;;36735:53:0;;;;;;;:::i;43270:83::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;43335:12:::1;::::0;;-1:-1:-1;;43319:28:0;::::1;43335:12;::::0;;;::::1;;;43334:13;43319:28:::0;;::::1;;::::0;;43270:83::o;42345:819::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;42407:21:::1;42443:11:::0;42435:20:::1;;;::::0;::::1;;738:10:::0;42541:42:::1;42464:13;42616:23;42635:3;42616:14;:7:::0;42628:1:::1;42616:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;42591:48:::0;-1:-1:-1;42679:42:0::1;42646:22;42754:23;42773:3;42754:14;:7:::0;42766:1:::1;42754:11;:14::i;:23::-;42729:48;;42791:13;42810:14;-1:-1:-1::0;;;;;42810:19:0::1;42837:14;42810:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42790:66;;;42871:8;42863:36;;;::::0;-1:-1:-1;;;42863:36:0;;11089:2:1;42863:36:0::1;::::0;::::1;11071:21:1::0;11128:2;11108:18;;;11101:30;-1:-1:-1;;;11147:18:1;;;11140:45;11202:18;;42863:36:0::1;10887:339:1::0;42863:36:0::1;42913:13;42932:14;-1:-1:-1::0;;;;;42932:19:0::1;42959:14;42932:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42912:66;;;42993:8;42985:36;;;::::0;-1:-1:-1;;;42985:36:0;;11089:2:1;42985:36:0::1;::::0;::::1;11071:21:1::0;11128:2;11108:18;;;11101:30;-1:-1:-1;;;11147:18:1;;;11140:45;11202:18;;42985:36:0::1;10887:339:1::0;42985:36:0::1;43035:17;43058:5;-1:-1:-1::0;;;;;43058:10:0::1;43076:21;43058:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43034:68;;;43117:12;43109:49;;;::::0;-1:-1:-1;;;43109:49:0;;11433:2:1;43109:49:0::1;::::0;::::1;11415:21:1::0;11472:2;11452:18;;;11445:30;11511:26;11491:18;;;11484:54;11555:18;;43109:49:0::1;11231:348:1::0;43109:49:0::1;42382:782;;;;;;;;;42345:819::o:0;26465:185::-;26603:39;26620:4;26626:2;26630:7;26603:39;;;;;;;;;;;;:16;:39::i;36017:205::-;36128:7;:14;36092:7;;36120:22;;36112:79;;;;-1:-1:-1;;;36112:79:0;;11786:2:1;36112:79:0;;;11768:21:1;11825:2;11805:18;;;11798:30;11864:34;11844:18;;;11837:62;-1:-1:-1;;;11915:18:1;;;11908:42;11967:19;;36112:79:0;11584:408:1;36112:79:0;-1:-1:-1;36209:5:0;36017:205::o;43172:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;43240:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43172:92:::0;:::o;23754:326::-;23871:7;23896:13;23912:7;23920;23912:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23912:16:0;;-1:-1:-1;23961:19:0;23939:110;;;;-1:-1:-1;;;23939:110:0;;12199:2:1;23939:110:0;;;12181:21:1;12238:2;12218:18;;;12211:30;12277:34;12257:18;;;12250:62;-1:-1:-1;;;12328:18:1;;;12321:39;12377:19;;23939:110:0;11997:405:1;42164:171:0;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;42241:12:::1;::::0;::::1;::::0;::::1;;;42240:13;42232:69;;;::::0;-1:-1:-1;;;42232:69:0;;12609:2:1;42232:69:0::1;::::0;::::1;12591:21:1::0;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;-1:-1:-1;;;12738:18:1;;;12731:41;12789:19;;42232:69:0::1;12407:407:1::0;42232:69:0::1;42308:10;:21:::0;42164:171::o;41920:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23300:392::-;23422:4;-1:-1:-1;;;;;23453:19:0;;23445:74;;;;-1:-1:-1;;;23445:74:0;;13021:2:1;23445:74:0;;;13003:21:1;13060:2;13040:18;;;13033:30;13099:34;13079:18;;;13072:62;-1:-1:-1;;;13150:18:1;;;13143:40;13200:19;;23445:74:0;12819:406:1;23445:74:0;23532:10;23558:6;23553:109;23570:7;:14;23566:18;;23553:109;;;23617:7;23625:1;23617:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23608:19:0;;;23617:10;;23608:19;23604:46;;;23643:7;;;:::i;:::-;;;23604:46;23586:3;;;:::i;:::-;;;23553:109;;;-1:-1:-1;23679:5:0;23300:392;-1:-1:-1;;23300:392:0:o;38457:103::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;38522:30:::1;38549:1;38522:18;:30::i;:::-;38457:103::o:0;46135:298::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;46216:14:::1;46233:13;35918:7:::0;:14;;35830:110;46233:13:::1;46216:30:::0;-1:-1:-1;41821:4:0::1;46261:24;46270:15:::0;46216:30;46261:24:::1;:::i;:::-;:38;;46253:83;;;::::0;-1:-1:-1;;;46253:83:0;;13565:2:1;46253:83:0::1;::::0;::::1;13547:21:1::0;;;13584:18;;;13577:30;13643:34;13623:18;;;13616:62;13695:18;;46253:83:0::1;13363:356:1::0;46253:83:0::1;46348:9;46343:85;46363:15;46359:1;:19;46343:85;;;46394:26;46404:3:::0;46409:10:::1;46418:1:::0;46409:6;:10:::1;:::i;:::-;46394:9;:26::i;:::-;46380:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46343:85;;;;46209:224;46135:298:::0;;:::o;24316:104::-;24372:13;24405:7;24398:14;;;;;:::i;25339:327::-;-1:-1:-1;;;;;25474:24:0;;738:10;25474:24;;25466:62;;;;-1:-1:-1;;;25466:62:0;;13926:2:1;25466:62:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:27;13984:18;;;13977:55;14049:18;;25466:62:0;13724:349:1;25466:62:0;738:10;25541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25541:53:0;;;;;;;;;;25610:48;;540:41:1;;;25541:42:0;;738:10;25610:48;;513:18:1;25610:48:0;;;;;;;25339:327;;:::o;26721:365::-;26910:41;738:10;26943:7;26910:18;:41::i;:::-;26888:140;;;;-1:-1:-1;;;26888:140:0;;;;;;;:::i;:::-;27039:39;27053:4;27059:2;27063:7;27072:5;27039:13;:39::i;43461:794::-;2617:1;3215:7;;:19;;3207:63;;;;-1:-1:-1;;;3207:63:0;;14280:2:1;3207:63:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:33;14338:18;;;14331:61;14409:18;;3207:63:0;14078:355:1;3207:63:0;2617:1;3348:7;:18;43584:14:::1;43601:13;35918:7:::0;:14;;35830:110;43601:13:::1;43584:30:::0;-1:-1:-1;738:10:0;43645:9:::1;43629:25;43621:65;;;::::0;-1:-1:-1;;;43621:65:0;;14640:2:1;43621:65:0::1;::::0;::::1;14622:21:1::0;14679:2;14659:18;;;14652:30;14718:29;14698:18;;;14691:57;14765:18;;43621:65:0::1;14438:351:1::0;43621:65:0::1;43701:15;::::0;::::1;;43693:61;;;::::0;-1:-1:-1;;;43693:61:0;;14996:2:1;43693:61:0::1;::::0;::::1;14978:21:1::0;15035:2;15015:18;;;15008:30;15074:34;15054:18;;;15047:62;-1:-1:-1;;;15125:18:1;;;15118:31;15166:19;;43693:61:0::1;14794:397:1::0;43693:61:0::1;45142:32:::0;;;738:10;22997:2:1;22993:15;-1:-1:-1;;22989:53:1;45142:32:0;;;;22977:66:1;;;;23059:12;;;;23052:28;;;45142:32:0;;;;;;;;;;23096:12:1;;;;45142:32:0;;;45132:43;;;;;43777:44:::1;::::0;43815:5:::1;43777:7;:44::i;:::-;43761:109;;;::::0;-1:-1:-1;;;43761:109:0;;15398:2:1;43761:109:0::1;::::0;::::1;15380:21:1::0;15437:2;15417:18;;;15410:30;15476:33;15456:18;;;15449:61;15527:18;;43761:109:0::1;15196:355:1::0;43761:109:0::1;738:10:::0;43885:23:::1;::::0;;;:9:::1;:23;::::0;;;;;43929:7;;43885:40:::1;::::0;43911:14;;43885:40:::1;:::i;:::-;:51;;43877:88;;;::::0;-1:-1:-1;;;43877:88:0;;15758:2:1;43877:88:0::1;::::0;::::1;15740:21:1::0;15797:2;15777:18;;;15770:30;15836:26;15816:18;;;15809:54;15880:18;;43877:88:0::1;15556:348:1::0;43877:88:0::1;43993:10;::::0;:30:::1;::::0;44008:14;43993::::1;:30::i;:::-;43980:9;:43;43972:81;;;::::0;-1:-1:-1;;;43972:81:0;;16111:2:1;43972:81:0::1;::::0;::::1;16093:21:1::0;16150:2;16130:18;;;16123:30;16189:27;16169:18;;;16162:55;16234:18;;43972:81:0::1;15909:349:1::0;43972:81:0::1;44077:4;44068:6;:13;44060:47;;;::::0;-1:-1:-1;;;44060:47:0;;16465:2:1;44060:47:0::1;::::0;::::1;16447:21:1::0;16504:2;16484:18;;;16477:30;-1:-1:-1;;;16523:18:1;;;16516:51;16584:18;;44060:47:0::1;16263:345:1::0;44060:47:0::1;738:10:::0;44116:23:::1;::::0;;;:9:::1;:23;::::0;;;;:41;;44143:14;;44116:23;:41:::1;::::0;44143:14;;44116:41:::1;:::i;:::-;::::0;;;-1:-1:-1;44169:6:0::1;::::0;-1:-1:-1;44164:86:0::1;44181:14;44177:1;:18;44164:86;;;44211:31;738:10:::0;44217:12:::1;44231:10;44240:1:::0;44231:6;:10:::1;:::i;:::-;44211:5;:31::i;:::-;44197:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44164:86;;;-1:-1:-1::0;;2573:1:0;3527:7;:22;-1:-1:-1;;;43461:794:0:o;44263:768::-;2617:1;3215:7;;:19;;3207:63;;;;-1:-1:-1;;;3207:63:0;;14280:2:1;3207:63:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:33;14338:18;;;14331:61;14409:18;;3207:63:0;14078:355:1;3207:63:0;2617:1;3348:7;:18;44338:11:::1;44352:13;35918:7:::0;:14;;35830:110;44352:13:::1;44338:27:::0;-1:-1:-1;738:10:0;44396:9:::1;44380:25;44372:65;;;::::0;-1:-1:-1;;;44372:65:0;;14640:2:1;44372:65:0::1;::::0;::::1;14622:21:1::0;14679:2;14659:18;;;14652:30;14718:29;14698:18;;;14691:57;14765:18;;44372:65:0::1;14438:351:1::0;44372:65:0::1;738:10:::0;44452:23:::1;::::0;;;:9:::1;:23;::::0;;;;;44478:1:::1;-1:-1:-1::0;44444:106:0::1;;;::::0;-1:-1:-1;;;44444:106:0;;16815:2:1;44444:106:0::1;::::0;::::1;16797:21:1::0;16854:2;16834:18;;;16827:30;16893:34;16873:18;;;16866:62;16964:34;16944:18;;;16937:62;-1:-1:-1;;;17015:19:1;;;17008:33;17058:19;;44444:106:0::1;16613:470:1::0;44444:106:0::1;44565:12;::::0;::::1;::::0;::::1;;;44557:52;;;::::0;-1:-1:-1;;;44557:52:0;;17290:2:1;44557:52:0::1;::::0;::::1;17272:21:1::0;17329:2;17309:18;;;17302:30;17368:29;17348:18;;;17341:57;17415:18;;44557:52:0::1;17088:351:1::0;44557:52:0::1;41774:1;44624:14;:34;44616:80;;;::::0;-1:-1:-1;;;44616:80:0;;17646:2:1;44616:80:0::1;::::0;::::1;17628:21:1::0;17685:2;17665:18;;;17658:30;17724:34;17704:18;;;17697:62;-1:-1:-1;;;17775:18:1;;;17768:31;17816:19;;44616:80:0::1;17444:397:1::0;44616:80:0::1;41821:4;44711:23;44720:14:::0;44711:6;:23:::1;:::i;:::-;:36;44703:81;;;::::0;-1:-1:-1;;;44703:81:0;;13565:2:1;44703:81:0::1;::::0;::::1;13547:21:1::0;;;13584:18;;;13577:30;13643:34;13623:18;;;13616:62;13695:18;;44703:81:0::1;13363:356:1::0;44703:81:0::1;44812:10;::::0;:30:::1;::::0;44827:14;44812::::1;:30::i;:::-;44799:9;:43;44791:87;;;::::0;-1:-1:-1;;;44791:87:0;;18048:2:1;44791:87:0::1;::::0;::::1;18030:21:1::0;18087:2;18067:18;;;18060:30;18126:33;18106:18;;;18099:61;18177:18;;44791:87:0::1;17846:355:1::0;44791:87:0::1;738:10:::0;44891:23:::1;::::0;;;:9:::1;:23;::::0;;;;:41;;44918:14;;44891:23;:41:::1;::::0;44918:14;;44891:41:::1;:::i;:::-;::::0;;;-1:-1:-1;44945:6:0::1;::::0;-1:-1:-1;44941:85:0::1;44957:14;44953:1;:18;44941:85;;;44987:31;738:10:::0;44993:12:::1;658:98:::0;44987:31:::1;44973:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44941:85;;;-1:-1:-1::0;;2573:1:0;3527:7;:22;-1:-1:-1;44263:768:0:o;45592:213::-;45651:13;45681:17;45689:8;45681:7;:17::i;:::-;45673:51;;;;-1:-1:-1;;;45673:51:0;;18408:2:1;45673:51:0;;;18390:21:1;18447:2;18427:18;;;18420:30;-1:-1:-1;;;18466:18:1;;;18459:51;18527:18;;45673:51:0;18206:345:1;45673:51:0;45762:7;45771:26;45788:8;45771:16;:26::i;:::-;45745:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45731:68;;45592:213;;;:::o;45446:140::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;45536:20:::1;:44:::0;;-1:-1:-1;;;;;;45536:44:0::1;-1:-1:-1::0;;;;;45536:44:0;;;::::1;::::0;;;::::1;::::0;;45446:140::o;45349:89::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;45406:19:::1;:26:::0;45349:89::o;45811:318::-;45972:20;;46012:29;;-1:-1:-1;;;46012:29:0;;-1:-1:-1;;;;;1714:32:1;;;46012:29:0;;;1696:51:1;45901:4:0;;45972:20;;;46004:50;;;;45972:20;;46012:21;;1669:18:1;;46012:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46004:50:0;;46000:67;;;46063:4;46056:11;;;;;46000:67;-1:-1:-1;;;;;25908:25:0;;;25879:4;25908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46083:40;46076:47;45811:318;-1:-1:-1;;;;45811:318:0:o;43361:92::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;43432:15:::1;::::0;;-1:-1:-1;;43413:34:0;::::1;43432:15;::::0;;::::1;43431:16;43413:34;::::0;;43361:92::o;38715:201::-;37879:6;;-1:-1:-1;;;;;37879:6:0;738:10;38026:23;38018:68;;;;-1:-1:-1;;;38018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38804:22:0;::::1;38796:73;;;::::0;-1:-1:-1;;;38796:73:0;;20538:2:1;38796:73:0::1;::::0;::::1;20520:21:1::0;20577:2;20557:18;;;20550:30;20616:34;20596:18;;;20589:62;-1:-1:-1;;;20667:18:1;;;20660:36;20713:19;;38796:73:0::1;20336:402:1::0;38796:73:0::1;38880:28;38899:8;38880:18;:28::i;:::-;38715:201:::0;:::o;22881:355::-;23028:4;-1:-1:-1;;;;;;23070:40:0;;-1:-1:-1;;;23070:40:0;;:105;;-1:-1:-1;;;;;;;23127:48:0;;-1:-1:-1;;;23127:48:0;23070:105;:158;;;-1:-1:-1;;;;;;;;;;12787:40:0;;;23192:36;12678:157;28633:155;28732:7;:14;28698:4;;28722:24;;:58;;;;;28778:1;-1:-1:-1;;;;;28750:30:0;:7;28758;28750:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28750:16:0;:30;;28715:65;28633:155;-1:-1:-1;;28633:155:0:o;32658:174::-;32733:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32733:29:0;-1:-1:-1;;;;;32733:29:0;;;;;;;;:24;;32787:23;32733:24;32787:14;:23::i;:::-;-1:-1:-1;;;;;32778:46:0;;;;;;;;;;;32658:174;;:::o;28955:452::-;29084:4;29128:16;29136:7;29128;:16::i;:::-;29106:110;;;;-1:-1:-1;;;29106:110:0;;20945:2:1;29106:110:0;;;20927:21:1;20984:2;20964:18;;;20957:30;21023:34;21003:18;;;20996:62;-1:-1:-1;;;21074:18:1;;;21067:42;21126:19;;29106:110:0;20743:408:1;29106:110:0;29227:13;29243:23;29258:7;29243:14;:23::i;:::-;29227:39;;29296:5;-1:-1:-1;;;;;29285:16:0;:7;-1:-1:-1;;;;;29285:16:0;;:64;;;;29342:7;-1:-1:-1;;;;;29318:31:0;:20;29330:7;29318:11;:20::i;:::-;-1:-1:-1;;;;;29318:31:0;;29285:64;:113;;;;29366:32;29383:5;29390:7;29366:16;:32::i;31987:553::-;32160:4;-1:-1:-1;;;;;32133:31:0;:23;32148:7;32133:14;:23::i;:::-;-1:-1:-1;;;;;32133:31:0;;32111:122;;;;-1:-1:-1;;;32111:122:0;;21358:2:1;32111:122:0;;;21340:21:1;21397:2;21377:18;;;21370:30;21436:34;21416:18;;;21409:62;-1:-1:-1;;;21487:18:1;;;21480:39;21536:19;;32111:122:0;21156:405:1;32111:122:0;-1:-1:-1;;;;;32252:16:0;;32244:65;;;;-1:-1:-1;;;32244:65:0;;21768:2:1;32244:65:0;;;21750:21:1;21807:2;21787:18;;;21780:30;21846:34;21826:18;;;21819:62;-1:-1:-1;;;21897:18:1;;;21890:34;21941:19;;32244:65:0;21566:400:1;32244:65:0;32426:29;32443:1;32447:7;32426:8;:29::i;:::-;32485:2;32466:7;32474;32466:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32466:21:0;-1:-1:-1;;;;;32466:21:0;;;;;;32505:27;;32524:7;;32505:27;;;;;;;;;;32466:16;32505:27;31987:553;;;:::o;16380:98::-;16438:7;16465:5;16469:1;16465;:5;:::i;:::-;16458:12;16380:98;-1:-1:-1;;;16380:98:0:o;16779:::-;16837:7;16864:5;16868:1;16864;:5;:::i;39076:191::-;39169:6;;;-1:-1:-1;;;;;39186:17:0;;;-1:-1:-1;;;;;;39186:17:0;;;;;;;39219:40;;39169:6;;;39186:17;39169:6;;39219:40;;39150:16;;39219:40;39139:128;39076:191;:::o;29749:110::-;29825:26;29835:2;29839:7;29825:26;;;;;;;;;;;;:9;:26::i;27968:352::-;28125:28;28135:4;28141:2;28145:7;28125:9;:28::i;:::-;28186:48;28209:4;28215:2;28219:7;28228:5;28186:22;:48::i;:::-;28164:148;;;;-1:-1:-1;;;28164:148:0;;;;;;;:::i;45187:156::-;45265:4;45285:52;45304:5;45311:19;;45332:4;45285:18;:52::i;30743:346::-;-1:-1:-1;;;;;30823:16:0;;30815:61;;;;-1:-1:-1;;;30815:61:0;;23321:2:1;30815:61:0;;;23303:21:1;;;23340:18;;;23333:30;23399:34;23379:18;;;23372:62;23451:18;;30815:61:0;23119:356:1;30815:61:0;30896:16;30904:7;30896;:16::i;:::-;30895:17;30887:58;;;;-1:-1:-1;;;30887:58:0;;23682:2:1;30887:58:0;;;23664:21:1;23721:2;23701:18;;;23694:30;23760;23740:18;;;23733:58;23808:18;;30887:58:0;23480:352:1;30887:58:0;31014:7;:16;;;;;;;-1:-1:-1;31014:16:0;;;;;;;-1:-1:-1;;;;;;31014:16:0;-1:-1:-1;;;;;31014:16:0;;;;;;;;31048:33;;31073:7;;-1:-1:-1;31048:33:0;;-1:-1:-1;;31048:33:0;30743:346;;:::o;20366:723::-;20422:13;20643:10;20639:53;;-1:-1:-1;;20670:10:0;;;;;;;;;;;;-1:-1:-1;;;20670:10:0;;;;;20366:723::o;20639:53::-;20717:5;20702:12;20758:78;20765:9;;20758:78;;20791:8;;;;:::i;:::-;;-1:-1:-1;20814:10:0;;-1:-1:-1;20822:2:0;20814:10;;:::i;:::-;;;20758:78;;;20846:19;20878:6;20868:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20868:17:0;;20846:39;;20896:154;20903:10;;20896:154;;20930:11;20940:1;20930:11;;:::i;:::-;;-1:-1:-1;20999:10:0;21007:2;20999:5;:10;:::i;:::-;20986:24;;:2;:24;:::i;:::-;20973:39;;20956:6;20963;20956:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20956:56:0;;;;;;;;-1:-1:-1;21027:11:0;21036:2;21027:11;;:::i;:::-;;;20896:154;;30086:321;30216:18;30222:2;30226:7;30216:5;:18::i;:::-;30267:54;30298:1;30302:2;30306:7;30315:5;30267:22;:54::i;:::-;30245:154;;;;-1:-1:-1;;;30245:154:0;;;;;;;:::i;33397:980::-;33552:4;-1:-1:-1;;;;;33573:13:0;;19986:20;20034:8;33569:801;;33626:175;;-1:-1:-1;;;33626:175:0;;-1:-1:-1;;;;;33626:36:0;;;;;:175;;738:10;;33720:4;;33747:7;;33777:5;;33626:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33626:175:0;;;;;;;;-1:-1:-1;;33626:175:0;;;;;;;;;;;;:::i;:::-;;;33605:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33984:13:0;;33980:320;;34027:108;;-1:-1:-1;;;34027:108:0;;;;;;;:::i;33980:320::-;34250:6;34244:13;34235:6;34231:2;34227:15;34220:38;33605:710;-1:-1:-1;;;;;;33865:51:0;-1:-1:-1;;;33865:51:0;;-1:-1:-1;33858:58:0;;33569:801;-1:-1:-1;34354:4:0;33397:980;;;;;;:::o;40109:190::-;40234:4;40287;40258:25;40271:5;40278:4;40258:12;:25::i;:::-;:33;;40109:190;-1:-1:-1;;;;40109:190:0:o;40661:701::-;40744:7;40787:4;40744:7;40802:523;40826:5;:12;40822:1;:16;40802:523;;;40860:20;40883:5;40889:1;40883:8;;;;;;;;:::i;:::-;;;;;;;40860:31;;40926:12;40910;:28;40906:408;;41063:44;;;;;;25000:19:1;;;25035:12;;;25028:28;;;25072:12;;41063:44:0;;;;;;;;;;;;41053:55;;;;;;41038:70;;40906:408;;;41253:44;;;;;;25000:19:1;;;25035:12;;;25028:28;;;25072:12;;41253:44:0;;;;;;;;;;;;41243:55;;;;;;41228:70;;40906:408;-1:-1:-1;40840:3:0;;;;:::i;:::-;;;;40802:523;;;-1:-1:-1;41342:12:0;40661:701;-1:-1:-1;;;40661:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:275;3060:2;3054:9;3125:2;3106:13;;-1:-1:-1;;3102:27:1;3090:40;;3160:18;3145:34;;3181:22;;;3142:62;3139:88;;;3207:18;;:::i;:::-;3243:2;3236:22;2989:275;;-1:-1:-1;2989:275:1:o;3269:407::-;3334:5;3368:18;3360:6;3357:30;3354:56;;;3390:18;;:::i;:::-;3428:57;3473:2;3452:15;;-1:-1:-1;;3448:29:1;3479:4;3444:40;3428:57;:::i;:::-;3419:66;;3508:6;3501:5;3494:21;3548:3;3539:6;3534:3;3530:16;3527:25;3524:45;;;3565:1;3562;3555:12;3524:45;3614:6;3609:3;3602:4;3595:5;3591:16;3578:43;3668:1;3661:4;3652:6;3645:5;3641:18;3637:29;3630:40;3269:407;;;;;:::o;3681:451::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3859:9;3846:23;3892:18;3884:6;3881:30;3878:50;;;3924:1;3921;3914:12;3878:50;3947:22;;4000:4;3992:13;;3988:27;-1:-1:-1;3978:55:1;;4029:1;4026;4019:12;3978:55;4052:74;4118:7;4113:2;4100:16;4095:2;4091;4087:11;4052:74;:::i;4137:247::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4304:9;4291:23;4323:31;4348:5;4323:31;:::i;4389:416::-;4454:6;4462;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;4570:9;4557:23;4589:31;4614:5;4589:31;:::i;:::-;4639:5;-1:-1:-1;4696:2:1;4681:18;;4668:32;4738:15;;4731:23;4719:36;;4709:64;;4769:1;4766;4759:12;4709:64;4792:7;4782:17;;;4389:416;;;;;:::o;4992:795::-;5087:6;5095;5103;5111;5164:3;5152:9;5143:7;5139:23;5135:33;5132:53;;;5181:1;5178;5171:12;5132:53;5220:9;5207:23;5239:31;5264:5;5239:31;:::i;:::-;5289:5;-1:-1:-1;5346:2:1;5331:18;;5318:32;5359:33;5318:32;5359:33;:::i;:::-;5411:7;-1:-1:-1;5465:2:1;5450:18;;5437:32;;-1:-1:-1;5520:2:1;5505:18;;5492:32;5547:18;5536:30;;5533:50;;;5579:1;5576;5569:12;5533:50;5602:22;;5655:4;5647:13;;5643:27;-1:-1:-1;5633:55:1;;5684:1;5681;5674:12;5633:55;5707:74;5773:7;5768:2;5755:16;5750:2;5746;5742:11;5707:74;:::i;:::-;5697:84;;;4992:795;;;;;;;:::o;5792:1082::-;5894:6;5902;5910;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6015:9;6002:23;5992:33;;6044:2;6093;6082:9;6078:18;6065:32;6055:42;;6148:2;6137:9;6133:18;6120:32;6171:18;6212:2;6204:6;6201:14;6198:34;;;6228:1;6225;6218:12;6198:34;6266:6;6255:9;6251:22;6241:32;;6311:7;6304:4;6300:2;6296:13;6292:27;6282:55;;6333:1;6330;6323:12;6282:55;6369:2;6356:16;6391:2;6387;6384:10;6381:36;;;6397:18;;:::i;:::-;6443:2;6440:1;6436:10;6426:20;;6466:28;6490:2;6486;6482:11;6466:28;:::i;:::-;6528:15;;;6598:11;;;6594:20;;;6559:12;;;;6626:19;;;6623:39;;;6658:1;6655;6648:12;6623:39;6682:11;;;;6702:142;6718:6;6713:3;6710:15;6702:142;;;6784:17;;6772:30;;6735:12;;;;6822;;;;6702:142;;;6863:5;6853:15;;;;;;;;5792:1082;;;;;:::o;7064:388::-;7132:6;7140;7193:2;7181:9;7172:7;7168:23;7164:32;7161:52;;;7209:1;7206;7199:12;7161:52;7248:9;7235:23;7267:31;7292:5;7267:31;:::i;:::-;7317:5;-1:-1:-1;7374:2:1;7359:18;;7346:32;7387:33;7346:32;7387:33;:::i;7457:380::-;7536:1;7532:12;;;;7579;;;7600:61;;7654:4;7646:6;7642:17;7632:27;;7600:61;7707:2;7699:6;7696:14;7676:18;7673:38;7670:161;;;7753:10;7748:3;7744:20;7741:1;7734:31;7788:4;7785:1;7778:15;7816:4;7813:1;7806:15;7670:161;;7457:380;;;:::o;9082:413::-;9284:2;9266:21;;;9323:2;9303:18;;;9296:30;9362:34;9357:2;9342:18;;9335:62;-1:-1:-1;;;9428:2:1;9413:18;;9406:47;9485:3;9470:19;;9082:413::o;9500:407::-;9702:2;9684:21;;;9741:2;9721:18;;;9714:30;9780:34;9775:2;9760:18;;9753:62;-1:-1:-1;;;9846:2:1;9831:18;;9824:41;9897:3;9882:19;;9500:407::o;9912:127::-;9973:10;9968:3;9964:20;9961:1;9954:31;10004:4;10001:1;9994:15;10028:4;10025:1;10018:15;10044:127;10105:10;10100:3;10096:20;10093:1;10086:31;10136:4;10133:1;10126:15;10160:4;10157:1;10150:15;10176:135;10215:3;-1:-1:-1;;10236:17:1;;10233:43;;;10256:18;;:::i;:::-;-1:-1:-1;10303:1:1;10292:13;;10176:135::o;10316:356::-;10518:2;10500:21;;;10537:18;;;10530:30;10596:34;10591:2;10576:18;;10569:62;10663:2;10648:18;;10316:356::o;13230:128::-;13270:3;13301:1;13297:6;13294:1;13291:13;13288:39;;;13307:18;;:::i;:::-;-1:-1:-1;13343:9:1;;13230:128::o;18682:185::-;18724:3;18762:5;18756:12;18777:52;18822:6;18817:3;18810:4;18803:5;18799:16;18777:52;:::i;:::-;18845:16;;;;;18682:185;-1:-1:-1;;18682:185:1:o;18872:1174::-;19048:3;19077:1;19110:6;19104:13;19140:3;19162:1;19190:9;19186:2;19182:18;19172:28;;19250:2;19239:9;19235:18;19272;19262:61;;19316:4;19308:6;19304:17;19294:27;;19262:61;19342:2;19390;19382:6;19379:14;19359:18;19356:38;19353:165;;;-1:-1:-1;;;19417:33:1;;19473:4;19470:1;19463:15;19503:4;19424:3;19491:17;19353:165;19534:18;19561:104;;;;19679:1;19674:320;;;;19527:467;;19561:104;-1:-1:-1;;19594:24:1;;19582:37;;19639:16;;;;-1:-1:-1;19561:104:1;;19674:320;18629:1;18622:14;;;18666:4;18653:18;;19769:1;19783:165;19797:6;19794:1;19791:13;19783:165;;;19875:14;;19862:11;;;19855:35;19918:16;;;;19812:10;;19783:165;;;19787:3;;19977:6;19972:3;19968:16;19961:23;;19527:467;;;;;;;20010:30;20036:3;20028:6;20010:30;:::i;:::-;20003:37;18872:1174;-1:-1:-1;;;;;18872:1174:1:o;20051:280::-;20150:6;20203:2;20191:9;20182:7;20178:23;20174:32;20171:52;;;20219:1;20216;20209:12;20171:52;20251:9;20245:16;20270:31;20295:5;20270:31;:::i;21971:168::-;22011:7;22077:1;22073;22069:6;22065:14;22062:1;22059:21;22054:1;22047:9;22040:17;22036:45;22033:71;;;22084:18;;:::i;:::-;-1:-1:-1;22124:9:1;;21971:168::o;22144:127::-;22205:10;22200:3;22196:20;22193:1;22186:31;22236:4;22233:1;22226:15;22260:4;22257:1;22250:15;22276:120;22316:1;22342;22332:35;;22347:18;;:::i;:::-;-1:-1:-1;22381:9:1;;22276:120::o;22401:414::-;22603:2;22585:21;;;22642:2;22622:18;;;22615:30;22681:34;22676:2;22661:18;;22654:62;-1:-1:-1;;;22747:2:1;22732:18;;22725:48;22805:3;22790:19;;22401:414::o;23837:125::-;23877:4;23905:1;23902;23899:8;23896:34;;;23910:18;;:::i;:::-;-1:-1:-1;23947:9:1;;23837:125::o;23967:112::-;23999:1;24025;24015:35;;24030:18;;:::i;:::-;-1:-1:-1;24064:9:1;;23967:112::o;24084:500::-;-1:-1:-1;;;;;24353:15:1;;;24335:34;;24405:15;;24400:2;24385:18;;24378:43;24452:2;24437:18;;24430:34;;;24500:3;24495:2;24480:18;;24473:31;;;24278:4;;24521:57;;24558:19;;24550:6;24521:57;:::i;:::-;24513:65;24084:500;-1:-1:-1;;;;;;24084:500:1:o;24589:249::-;24658:6;24711:2;24699:9;24690:7;24686:23;24682:32;24679:52;;;24727:1;24724;24717:12;24679:52;24759:9;24753:16;24778:30;24802:5;24778:30;:::i

Swarm Source

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