ETH Price: $3,102.24 (+1.37%)
Gas: 7 Gwei

Token

Founders of Zo World (\z/)
 

Overview

Max Total Supply

1,111 \z/

Holders

436

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
schrodingrrr.eth
Balance
1 \z/
0x3b745b58f7CE01BC08999584B438acAee72c0091
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Founders of Zo World collection is the world’s collection inspiring travel community to come together and build a global travel ecosystem around local communities.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Founder

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

// SPDX-License-Identifier: MIT
//
// ███████╗ ██████╗ ██╗   ██╗███╗   ██╗██████╗ ███████╗██████╗ ███████╗     ██████╗ ███████╗
// ██╔════╝██╔═══██╗██║   ██║████╗  ██║██╔══██╗██╔════╝██╔══██╗██╔════╝    ██╔═══██╗██╔════╝
// █████╗  ██║   ██║██║   ██║██╔██╗ ██║██║  ██║█████╗  ██████╔╝███████╗    ██║   ██║█████╗  
// ██╔══╝  ██║   ██║██║   ██║██║╚██╗██║██║  ██║██╔══╝  ██╔══██╗╚════██║    ██║   ██║██╔══╝  
// ██║     ╚██████╔╝╚██████╔╝██║ ╚████║██████╔╝███████╗██║  ██║███████║    ╚██████╔╝██║     
// ╚═╝      ╚═════╝  ╚═════╝ ╚═╝  ╚═══╝╚═════╝ ╚══════╝╚═╝  ╚═╝╚══════╝     ╚═════╝ ╚═╝     
//  
// ███████╗ ██████╗     ██╗    ██╗ ██████╗ ██████╗ ██╗     ██████╗                          
// ╚══███╔╝██╔═══██╗    ██║    ██║██╔═══██╗██╔══██╗██║     ██╔══██╗                         
//   ███╔╝ ██║   ██║    ██║ █╗ ██║██║   ██║██████╔╝██║     ██║  ██║                         
//  ███╔╝  ██║   ██║    ██║███╗██║██║   ██║██╔══██╗██║     ██║  ██║                         
// ███████╗╚██████╔╝    ╚███╔███╔╝╚██████╔╝██║  ██║███████╗██████╔╝                         
// ╚══════╝ ╚═════╝      ╚══╝╚══╝  ╚═════╝ ╚═╝  ╚═╝╚══════╝╚═════╝                          
//


// File: openzeppelin-solidity/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: openzeppelin-solidity/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: openzeppelin-solidity/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity/contracts/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);
}

// File: openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: openzeppelin-solidity/contracts/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) {
        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));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// File: openzeppelin-solidity/contracts/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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: openzeppelin-solidity/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// File: openzeppelin-solidity/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Founder.sol

pragma solidity ^0.8.0;


contract Founder is Ownable, ERC721A, ReentrancyGuard {
    bool public frozen;
    
    uint256 public immutable teamMintMax = 1111;

    uint256 public teamMinted;
    uint256 public publicMax;
    uint256 public pricePerMint;

    bytes32 public merkleRoot;
    uint256 public earlyAccessStart;
    uint256 public purchaseStart;

    string private tokenBaseURI;
    string private tokenBaseURIExt;
    uint256 private immutable preSaleMaxMint = 4;
    
    constructor(
    ) ERC721A(
        "Founders of Zo World", 
        "\\z/", 
        10, 
        11111
    ) {}

    function tokenURI(
        uint256 tokenId
    ) public view override returns (
        string memory
    ) {
        require(
            _exists(tokenId),
            "Nonexistent token"
        );
        return string(
            abi.encodePacked(
                tokenBaseURI, 
                Strings.toString(tokenId), 
                tokenBaseURIExt
            )
        );
    }

    function mint(
        uint256 amount
    ) external payable {
        require(
            block.timestamp >= purchaseStart,
            "sale hasn't started"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }

    function mintEarly(
        uint256 amount,
        bytes32[] calldata merkleProof
    ) external payable {
        require(
            block.timestamp >= earlyAccessStart,
            "window closed"
        );
        require(
            balanceOf(_msgSender()) + amount <= preSaleMaxMint,
            "wallet mint limit"
        );
        require(
            tx.origin == _msgSender(), 
            "contracts not allowed"
        );
        bytes32 node = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "invalid proof"
        );
        _mintPublic(
            _msgSender(),
            amount,
            msg.value
        );
    }
    
    function setPublicMax(
        uint256 _publicMax
    ) external onlyOwner {
        require(
            _publicMax <= collectionSize - teamMintMax, 
            "too high"
        );
        publicMax = _publicMax;
    }
    
    function setPricePerMint(
        uint256 _pricePerMint
    ) external onlyOwner {
        pricePerMint = _pricePerMint;
    }
    
    function setMerkleRoot(
        bytes32 _merkleRoot
    ) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
    
    function setEarlyAccessStart(
        uint256 _earlyAccessStart
    ) external onlyOwner {
        earlyAccessStart = _earlyAccessStart;
    }
    
    function setPurchaseStart(
        uint256 _purchaseStart
    ) external onlyOwner {
        purchaseStart = _purchaseStart;
    }

    function mintGrant(
        address[] calldata _addresses,
        uint256[] calldata _amounts
    ) external onlyOwner {
        require(
            _addresses.length == _amounts.length,
            "length mismatch"
        );
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(
                teamMinted + _amounts[i] <= teamMintMax,
                "team limit reached"
            );
            for (uint256 j = 0; j < _amounts[i] / maxBatchSize; j++) {
                _safeMint(_addresses[i], maxBatchSize);
            }
            _safeMint(_addresses[i], _amounts[i] % maxBatchSize);
            teamMinted += _amounts[i];
        }
    }

    function setURI(
        string calldata _tokenBaseURI,
        string calldata _tokenBaseURIExt
    ) external onlyOwner {
        require(
            !frozen,
            "Contract is frozen"
        );
        tokenBaseURI = _tokenBaseURI;
        tokenBaseURIExt = _tokenBaseURIExt;
    }

    function freezeBaseURI(
    ) external onlyOwner {
        frozen = true;
    }
    
    function withdraw(
    ) external onlyOwner {
        payable(
            0x19aFb0C4f63983d619A3f983D065A68780734336
        ).transfer(
            address(this).balance
        );
    }

    function _mintPublic(
        address _address,
        uint256 amount,
        uint256 value
    ) internal {
        require(
            amount <= maxBatchSize,
            "max batch limit"
        );
        require(
            totalSupply() + amount <= collectionSize, 
            "reached max supply"
        );
        require(
            totalSupply() + amount <= publicMax + teamMinted, 
            "reached max public"
        );
        require(
            value >= pricePerMint * amount,
            "Not enough ETH sent"
        );
        _safeMint(_address, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"earlyAccessStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintEarly","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintGrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pricePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlyAccessStart","type":"uint256"}],"name":"setEarlyAccessStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerMint","type":"uint256"}],"name":"setPricePerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMax","type":"uint256"}],"name":"setPublicMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_purchaseStart","type":"uint256"}],"name":"setPurchaseStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_tokenBaseURIExt","type":"string"}],"name":"setURI","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":[],"name":"teamMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526000600181905560085561045760c052600460e0523480156200002757600080fd5b506040518060400160405280601481526020017f466f756e64657273206f66205a6f20576f726c64000000000000000000000000815250604051806040016040528060038152602001625c7a2f60e81b815250600a612b676200009962000093620001aa60201b60201c565b620001ae565b60008111620001065760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001685760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fd565b83516200017d906002906020870190620001fe565b50825162000193906003906020860190620001fe565b5060a09190915260805250506001600955620002e1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200020c90620002a4565b90600052602060002090601f0160209004810192826200023057600085556200027b565b82601f106200024b57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027b5782518255916020019190600101906200025e565b50620002899291506200028d565b5090565b5b808211156200028957600081556001016200028e565b600181811c90821680620002b957607f821691505b60208210811415620002db57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612b326200035a6000396000610cdf0152600081816104da01528181610ea301526111bc015260008181611249015281816112be0152818161132101528181611a5701528181611c7501528181611c9f01526120c5015260008181610ec40152611ab90152612b326000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063bf2db4c8116100ab578063e7bc82081161006f578063e7bc820814610644578063e8b5498d14610659578063e985e9c51461066f578063f2fde38b146106b8578063fedb248e146106d857600080fd5b8063bf2db4c8146105c2578063c5610a29146105e2578063c87b56dd146105f8578063d7224ba014610618578063e527c6dd1461062e57600080fd5b806395d89b41116100f257806395d89b411461053a578063a0712d681461054f578063a22cb46514610562578063b1ed647b14610582578063b88d4fde146105a257600080fd5b806370a0823114610493578063715018a6146104b35780637b210ae8146104c85780637cb64759146104fc5780638da5cb5b1461051c57600080fd5b80632eb4a7ab116101bc5780634f6ccce7116101805780634f6ccce71461040a5780635aa6fe171461042a5780635db24af41461043d5780636352211e14610453578063665660461461047357600080fd5b80632eb4a7ab1461037f5780632f745c5914610395578063321ddbcb146103b55780633ccfd60b146103d557806342842e0e146103ea57600080fd5b8063081812fc11610203578063081812fc146102c8578063095ea7b31461030057806318160ddd14610320578063222913bd1461033f57806323b872dd1461035f57600080fd5b806301466bc01461023557806301ffc9a714610257578063054f7d9c1461028c57806306fdde03146102a6575b600080fd5b34801561024157600080fd5b50610255610250366004612373565b6106ee565b005b34801561026357600080fd5b506102776102723660046123a2565b610726565b60405190151581526020015b60405180910390f35b34801561029857600080fd5b50600a546102779060ff1681565b3480156102b257600080fd5b506102bb610793565b604051610283919061241e565b3480156102d457600080fd5b506102e86102e3366004612373565b610825565b6040516001600160a01b039091168152602001610283565b34801561030c57600080fd5b5061025561031b36600461244d565b6108b0565b34801561032c57600080fd5b506001545b604051908152602001610283565b34801561034b57600080fd5b5061025561035a366004612373565b6109c8565b34801561036b57600080fd5b5061025561037a366004612477565b6109f7565b34801561038b57600080fd5b50610331600e5481565b3480156103a157600080fd5b506103316103b036600461244d565b610a02565b3480156103c157600080fd5b506102556103d0366004612373565b610b7b565b3480156103e157600080fd5b50610255610baa565b3480156103f657600080fd5b50610255610405366004612477565b610c17565b34801561041657600080fd5b50610331610425366004612373565b610c32565b6102556104383660046124ff565b610c9b565b34801561044957600080fd5b50610331600f5481565b34801561045f57600080fd5b506102e861046e366004612373565b610e62565b34801561047f57600080fd5b5061025561048e366004612373565b610e74565b34801561049f57600080fd5b506103316104ae36600461254b565b610f27565b3480156104bf57600080fd5b50610255610fb8565b3480156104d457600080fd5b506103317f000000000000000000000000000000000000000000000000000000000000000081565b34801561050857600080fd5b50610255610517366004612373565b610fee565b34801561052857600080fd5b506000546001600160a01b03166102e8565b34801561054657600080fd5b506102bb61101d565b61025561055d366004612373565b61102c565b34801561056e57600080fd5b5061025561057d366004612566565b61107f565b34801561058e57600080fd5b5061025561059d3660046125a2565b611144565b3480156105ae57600080fd5b506102556105bd366004612624565b6113b1565b3480156105ce57600080fd5b506102556105dd366004612742565b6113e4565b3480156105ee57600080fd5b50610331600d5481565b34801561060457600080fd5b506102bb610613366004612373565b61146f565b34801561062457600080fd5b5061033160085481565b34801561063a57600080fd5b50610331600c5481565b34801561065057600080fd5b506102556114f1565b34801561066557600080fd5b50610331600b5481565b34801561067b57600080fd5b5061027761068a3660046127a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c457600080fd5b506102556106d336600461254b565b61152a565b3480156106e457600080fd5b5061033160105481565b6000546001600160a01b031633146107215760405162461bcd60e51b8152600401610718906127d5565b60405180910390fd5b600d55565b60006001600160e01b031982166380ac58cd60e01b148061075757506001600160e01b03198216635b5e139f60e01b145b8061077257506001600160e01b0319821663780e9d6360e01b145b8061078d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a29061280a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce9061280a565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000610832826001541190565b6108945760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610718565b506000908152600660205260409020546001600160a01b031690565b60006108bb82610e62565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610718565b336001600160a01b03821614806109465750610946813361068a565b6109b85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610718565b6109c38383836115c2565b505050565b6000546001600160a01b031633146109f25760405162461bcd60e51b8152600401610718906127d5565b600f55565b6109c383838361161e565b6000610a0d83610f27565b8210610a665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610718565b6000610a7160015490565b905060008060005b83811015610b1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acc57805192505b876001600160a01b0316836001600160a01b03161415610b085786841415610afa5750935061078d92505050565b83610b048161285b565b9450505b5080610b138161285b565b915050610a79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610718565b6000546001600160a01b03163314610ba55760405162461bcd60e51b8152600401610718906127d5565b601055565b6000546001600160a01b03163314610bd45760405162461bcd60e51b8152600401610718906127d5565b6040517319afb0c4f63983d619a3f983d065a68780734336904780156108fc02916000818181858888f19350505050158015610c14573d6000803e3d6000fd5b50565b6109c3838383604051806020016040528060008152506113b1565b6000610c3d60015490565b8210610c975760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610718565b5090565b600f54421015610cdd5760405162461bcd60e51b815260206004820152600d60248201526c1dda5b991bddc818db1bdcd959609a1b6044820152606401610718565b7f000000000000000000000000000000000000000000000000000000000000000083610d0833610f27565b610d129190612876565b1115610d545760405162461bcd60e51b81526020600482015260116024820152701dd85b1b195d081b5a5b9d081b1a5b5a5d607a1b6044820152606401610718565b323314610d9b5760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610718565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e1583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119a6565b610e515760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b210383937b7b360991b6044820152606401610718565b610e5c338534611a55565b50505050565b6000610e6d82611bf3565b5192915050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b8152600401610718906127d5565b610ee87f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061288e565b811115610f225760405162461bcd60e51b81526020600482015260086024820152670e8dede40d0d2ced60c31b6044820152606401610718565b600c55565b60006001600160a01b038216610f935760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610718565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fe25760405162461bcd60e51b8152600401610718906127d5565b610fec6000611d9d565b565b6000546001600160a01b031633146110185760405162461bcd60e51b8152600401610718906127d5565b600e55565b6060600380546107a29061280a565b6010544210156110745760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a185cdb89dd081cdd185c9d1959606a1b6044820152606401610718565b610c14338234611a55565b6001600160a01b0382163314156110d85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610718565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461116e5760405162461bcd60e51b8152600401610718906127d5565b8281146111af5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610718565b60005b838110156113aa577f00000000000000000000000000000000000000000000000000000000000000008383838181106111ed576111ed6128a5565b90506020020135600b546112019190612876565b11156112445760405162461bcd60e51b81526020600482015260126024820152711d19585b481b1a5b5a5d081c995858da195960721b6044820152606401610718565b60005b7f000000000000000000000000000000000000000000000000000000000000000084848481811061127a5761127a6128a5565b9050602002013561128b91906128d1565b8110156112f4576112e28686848181106112a7576112a76128a5565b90506020020160208101906112bc919061254b565b7f0000000000000000000000000000000000000000000000000000000000000000611ded565b806112ec8161285b565b915050611247565b5061136885858381811061130a5761130a6128a5565b905060200201602081019061131f919061254b565b7f0000000000000000000000000000000000000000000000000000000000000000858585818110611352576113526128a5565b9050602002013561136391906128e5565b611ded565b82828281811061137a5761137a6128a5565b90506020020135600b60008282546113929190612876565b909155508190506113a28161285b565b9150506111b2565b5050505050565b6113bc84848461161e565b6113c884848484611e0b565b610e5c5760405162461bcd60e51b8152600401610718906128f9565b6000546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610718906127d5565b600a5460ff16156114565760405162461bcd60e51b815260206004820152601260248201527121b7b73a3930b1ba1034b990333937bd32b760711b6044820152606401610718565b611462601185856122e3565b506113aa601283836122e3565b606061147c826001541190565b6114bc5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610718565b60116114c783611f0a565b60126040516020016114db939291906129e6565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461151b5760405162461bcd60e51b8152600401610718906127d5565b600a805460ff19166001179055565b6000546001600160a01b031633146115545760405162461bcd60e51b8152600401610718906127d5565b6001600160a01b0381166115b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610718565b610c1481611d9d565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162982611bf3565b80519091506000906001600160a01b0316336001600160a01b0316148061166057503361165584610825565b6001600160a01b0316145b8061167257508151611672903361068a565b9050806116dc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610718565b846001600160a01b031682600001516001600160a01b0316146117505760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610718565b6001600160a01b0384166117b45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610718565b6117c460008484600001516115c2565b6001600160a01b03851660009081526005602052604081208054600192906117f69084906001600160801b0316612a19565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261184291859116612a41565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118ca846001612876565b6000818152600460205260409020549091506001600160a01b031661195c576118f4816001541190565b1561195c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815b8551811015611a4a5760008682815181106119c8576119c86128a5565b60200260200101519050808311611a0a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a37565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a428161285b565b9150506119ab565b509092149392505050565b7f0000000000000000000000000000000000000000000000000000000000000000821115611ab75760405162461bcd60e51b815260206004820152600f60248201526e1b585e0818985d18da081b1a5b5a5d608a1b6044820152606401610718565b7f000000000000000000000000000000000000000000000000000000000000000082611ae260015490565b611aec9190612876565b1115611b2f5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610718565b600b54600c54611b3f9190612876565b82611b4960015490565b611b539190612876565b1115611b965760405162461bcd60e51b815260206004820152601260248201527172656163686564206d6178207075626c696360701b6044820152606401610718565b81600d54611ba49190612a6c565b811015611be95760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610718565b6109c38383611ded565b6040805180820190915260008082526020820152611c12826001541190565b611c715760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610718565b60007f00000000000000000000000000000000000000000000000000000000000000008310611cd257611cc47f00000000000000000000000000000000000000000000000000000000000000008461288e565b611ccf906001612876565b90505b825b818110611d3c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d2957949350505050565b5080611d3481612a8b565b915050611cd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610718565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e07828260405180602001604052806000815250612008565b5050565b60006001600160a01b0384163b15611efe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e4f903390899088908890600401612aa2565b6020604051808303816000875af1925050508015611e8a575060408051601f3d908101601f19168201909252611e8791810190612adf565b60015b611ee4573d808015611eb8576040519150601f19603f3d011682016040523d82523d6000602084013e611ebd565b606091505b508051611edc5760405162461bcd60e51b8152600401610718906128f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f02565b5060015b949350505050565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f428161285b565b9150611f519050600a836128d1565b9150611f32565b60008167ffffffffffffffff811115611f7357611f7361260e565b6040519080825280601f01601f191660200182016040528015611f9d576020820181803683370190505b5090505b8415611f0257611fb260018361288e565b9150611fbf600a866128e5565b611fca906030612876565b60f81b818381518110611fdf57611fdf6128a5565b60200101906001600160f81b031916908160001a905350612001600a866128d1565b9450611fa1565b6001546001600160a01b03841661206b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610718565b612076816001541190565b156120c35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610718565b7f000000000000000000000000000000000000000000000000000000000000000083111561213e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610718565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061219a908790612a41565b6001600160801b031681526020018583602001516121b89190612a41565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122d85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461229c6000888488611e0b565b6122b85760405162461bcd60e51b8152600401610718906128f9565b816122c28161285b565b92505080806122d09061285b565b91505061224f565b50600181905561199e565b8280546122ef9061280a565b90600052602060002090601f0160209004810192826123115760008555612357565b82601f1061232a5782800160ff19823516178555612357565b82800160010185558215612357579182015b8281111561235757823582559160200191906001019061233c565b50610c979291505b80821115610c97576000815560010161235f565b60006020828403121561238557600080fd5b5035919050565b6001600160e01b031981168114610c1457600080fd5b6000602082840312156123b457600080fd5b81356123bf8161238c565b9392505050565b60005b838110156123e15781810151838201526020016123c9565b83811115610e5c5750506000910152565b6000815180845261240a8160208601602086016123c6565b601f01601f19169290920160200192915050565b6020815260006123bf60208301846123f2565b80356001600160a01b038116811461244857600080fd5b919050565b6000806040838503121561246057600080fd5b61246983612431565b946020939093013593505050565b60008060006060848603121561248c57600080fd5b61249584612431565b92506124a360208501612431565b9150604084013590509250925092565b60008083601f8401126124c557600080fd5b50813567ffffffffffffffff8111156124dd57600080fd5b6020830191508360208260051b85010111156124f857600080fd5b9250929050565b60008060006040848603121561251457600080fd5b83359250602084013567ffffffffffffffff81111561253257600080fd5b61253e868287016124b3565b9497909650939450505050565b60006020828403121561255d57600080fd5b6123bf82612431565b6000806040838503121561257957600080fd5b61258283612431565b91506020830135801515811461259757600080fd5b809150509250929050565b600080600080604085870312156125b857600080fd5b843567ffffffffffffffff808211156125d057600080fd5b6125dc888389016124b3565b909650945060208701359150808211156125f557600080fd5b50612602878288016124b3565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561263a57600080fd5b61264385612431565b935061265160208601612431565b925060408501359150606085013567ffffffffffffffff8082111561267557600080fd5b818701915087601f83011261268957600080fd5b81358181111561269b5761269b61260e565b604051601f8201601f19908116603f011681019083821181831017156126c3576126c361260e565b816040528281528a60208487010111156126dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f84011261271257600080fd5b50813567ffffffffffffffff81111561272a57600080fd5b6020830191508360208285010111156124f857600080fd5b6000806000806040858703121561275857600080fd5b843567ffffffffffffffff8082111561277057600080fd5b61277c88838901612700565b9096509450602087013591508082111561279557600080fd5b5061260287828801612700565b600080604083850312156127b557600080fd5b6127be83612431565b91506127cc60208401612431565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061281e57607f821691505b6020821081141561283f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561286f5761286f612845565b5060010190565b6000821982111561288957612889612845565b500190565b6000828210156128a0576128a0612845565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826128e0576128e06128bb565b500490565b6000826128f4576128f46128bb565b500690565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c908083168061296657607f831692505b602080841082141561298857634e487b7160e01b600052602260045260246000fd5b81801561299c57600181146129ad576129da565b60ff198616895284890196506129da565b60008881526020902060005b868110156129d25781548b8201529085019083016129b9565b505084890196505b50505050505092915050565b60006129f2828661294c565b8451612a028183602089016123c6565b612a0e8183018661294c565b979650505050505050565b60006001600160801b0383811690831681811015612a3957612a39612845565b039392505050565b60006001600160801b03808316818516808303821115612a6357612a63612845565b01949350505050565b6000816000190483118215151615612a8657612a86612845565b500290565b600081612a9a57612a9a612845565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad5908301846123f2565b9695505050505050565b600060208284031215612af157600080fd5b81516123bf8161238c56fea26469706673582212204487bcd452572ec5ea2442d5839dd30a7d3256414890bbf9f9a5cb89049d548d64736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063bf2db4c8116100ab578063e7bc82081161006f578063e7bc820814610644578063e8b5498d14610659578063e985e9c51461066f578063f2fde38b146106b8578063fedb248e146106d857600080fd5b8063bf2db4c8146105c2578063c5610a29146105e2578063c87b56dd146105f8578063d7224ba014610618578063e527c6dd1461062e57600080fd5b806395d89b41116100f257806395d89b411461053a578063a0712d681461054f578063a22cb46514610562578063b1ed647b14610582578063b88d4fde146105a257600080fd5b806370a0823114610493578063715018a6146104b35780637b210ae8146104c85780637cb64759146104fc5780638da5cb5b1461051c57600080fd5b80632eb4a7ab116101bc5780634f6ccce7116101805780634f6ccce71461040a5780635aa6fe171461042a5780635db24af41461043d5780636352211e14610453578063665660461461047357600080fd5b80632eb4a7ab1461037f5780632f745c5914610395578063321ddbcb146103b55780633ccfd60b146103d557806342842e0e146103ea57600080fd5b8063081812fc11610203578063081812fc146102c8578063095ea7b31461030057806318160ddd14610320578063222913bd1461033f57806323b872dd1461035f57600080fd5b806301466bc01461023557806301ffc9a714610257578063054f7d9c1461028c57806306fdde03146102a6575b600080fd5b34801561024157600080fd5b50610255610250366004612373565b6106ee565b005b34801561026357600080fd5b506102776102723660046123a2565b610726565b60405190151581526020015b60405180910390f35b34801561029857600080fd5b50600a546102779060ff1681565b3480156102b257600080fd5b506102bb610793565b604051610283919061241e565b3480156102d457600080fd5b506102e86102e3366004612373565b610825565b6040516001600160a01b039091168152602001610283565b34801561030c57600080fd5b5061025561031b36600461244d565b6108b0565b34801561032c57600080fd5b506001545b604051908152602001610283565b34801561034b57600080fd5b5061025561035a366004612373565b6109c8565b34801561036b57600080fd5b5061025561037a366004612477565b6109f7565b34801561038b57600080fd5b50610331600e5481565b3480156103a157600080fd5b506103316103b036600461244d565b610a02565b3480156103c157600080fd5b506102556103d0366004612373565b610b7b565b3480156103e157600080fd5b50610255610baa565b3480156103f657600080fd5b50610255610405366004612477565b610c17565b34801561041657600080fd5b50610331610425366004612373565b610c32565b6102556104383660046124ff565b610c9b565b34801561044957600080fd5b50610331600f5481565b34801561045f57600080fd5b506102e861046e366004612373565b610e62565b34801561047f57600080fd5b5061025561048e366004612373565b610e74565b34801561049f57600080fd5b506103316104ae36600461254b565b610f27565b3480156104bf57600080fd5b50610255610fb8565b3480156104d457600080fd5b506103317f000000000000000000000000000000000000000000000000000000000000045781565b34801561050857600080fd5b50610255610517366004612373565b610fee565b34801561052857600080fd5b506000546001600160a01b03166102e8565b34801561054657600080fd5b506102bb61101d565b61025561055d366004612373565b61102c565b34801561056e57600080fd5b5061025561057d366004612566565b61107f565b34801561058e57600080fd5b5061025561059d3660046125a2565b611144565b3480156105ae57600080fd5b506102556105bd366004612624565b6113b1565b3480156105ce57600080fd5b506102556105dd366004612742565b6113e4565b3480156105ee57600080fd5b50610331600d5481565b34801561060457600080fd5b506102bb610613366004612373565b61146f565b34801561062457600080fd5b5061033160085481565b34801561063a57600080fd5b50610331600c5481565b34801561065057600080fd5b506102556114f1565b34801561066557600080fd5b50610331600b5481565b34801561067b57600080fd5b5061027761068a3660046127a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c457600080fd5b506102556106d336600461254b565b61152a565b3480156106e457600080fd5b5061033160105481565b6000546001600160a01b031633146107215760405162461bcd60e51b8152600401610718906127d5565b60405180910390fd5b600d55565b60006001600160e01b031982166380ac58cd60e01b148061075757506001600160e01b03198216635b5e139f60e01b145b8061077257506001600160e01b0319821663780e9d6360e01b145b8061078d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a29061280a565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce9061280a565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b6000610832826001541190565b6108945760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610718565b506000908152600660205260409020546001600160a01b031690565b60006108bb82610e62565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610718565b336001600160a01b03821614806109465750610946813361068a565b6109b85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610718565b6109c38383836115c2565b505050565b6000546001600160a01b031633146109f25760405162461bcd60e51b8152600401610718906127d5565b600f55565b6109c383838361161e565b6000610a0d83610f27565b8210610a665760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610718565b6000610a7160015490565b905060008060005b83811015610b1b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acc57805192505b876001600160a01b0316836001600160a01b03161415610b085786841415610afa5750935061078d92505050565b83610b048161285b565b9450505b5080610b138161285b565b915050610a79565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610718565b6000546001600160a01b03163314610ba55760405162461bcd60e51b8152600401610718906127d5565b601055565b6000546001600160a01b03163314610bd45760405162461bcd60e51b8152600401610718906127d5565b6040517319afb0c4f63983d619a3f983d065a68780734336904780156108fc02916000818181858888f19350505050158015610c14573d6000803e3d6000fd5b50565b6109c3838383604051806020016040528060008152506113b1565b6000610c3d60015490565b8210610c975760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610718565b5090565b600f54421015610cdd5760405162461bcd60e51b815260206004820152600d60248201526c1dda5b991bddc818db1bdcd959609a1b6044820152606401610718565b7f000000000000000000000000000000000000000000000000000000000000000483610d0833610f27565b610d129190612876565b1115610d545760405162461bcd60e51b81526020600482015260116024820152701dd85b1b195d081b5a5b9d081b1a5b5a5d607a1b6044820152606401610718565b323314610d9b5760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610718565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e1583838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119a6565b610e515760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b210383937b7b360991b6044820152606401610718565b610e5c338534611a55565b50505050565b6000610e6d82611bf3565b5192915050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b8152600401610718906127d5565b610ee87f00000000000000000000000000000000000000000000000000000000000004577f0000000000000000000000000000000000000000000000000000000000002b6761288e565b811115610f225760405162461bcd60e51b81526020600482015260086024820152670e8dede40d0d2ced60c31b6044820152606401610718565b600c55565b60006001600160a01b038216610f935760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610718565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610fe25760405162461bcd60e51b8152600401610718906127d5565b610fec6000611d9d565b565b6000546001600160a01b031633146110185760405162461bcd60e51b8152600401610718906127d5565b600e55565b6060600380546107a29061280a565b6010544210156110745760405162461bcd60e51b81526020600482015260136024820152721cd85b19481a185cdb89dd081cdd185c9d1959606a1b6044820152606401610718565b610c14338234611a55565b6001600160a01b0382163314156110d85760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610718565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461116e5760405162461bcd60e51b8152600401610718906127d5565b8281146111af5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610718565b60005b838110156113aa577f00000000000000000000000000000000000000000000000000000000000004578383838181106111ed576111ed6128a5565b90506020020135600b546112019190612876565b11156112445760405162461bcd60e51b81526020600482015260126024820152711d19585b481b1a5b5a5d081c995858da195960721b6044820152606401610718565b60005b7f000000000000000000000000000000000000000000000000000000000000000a84848481811061127a5761127a6128a5565b9050602002013561128b91906128d1565b8110156112f4576112e28686848181106112a7576112a76128a5565b90506020020160208101906112bc919061254b565b7f000000000000000000000000000000000000000000000000000000000000000a611ded565b806112ec8161285b565b915050611247565b5061136885858381811061130a5761130a6128a5565b905060200201602081019061131f919061254b565b7f000000000000000000000000000000000000000000000000000000000000000a858585818110611352576113526128a5565b9050602002013561136391906128e5565b611ded565b82828281811061137a5761137a6128a5565b90506020020135600b60008282546113929190612876565b909155508190506113a28161285b565b9150506111b2565b5050505050565b6113bc84848461161e565b6113c884848484611e0b565b610e5c5760405162461bcd60e51b8152600401610718906128f9565b6000546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610718906127d5565b600a5460ff16156114565760405162461bcd60e51b815260206004820152601260248201527121b7b73a3930b1ba1034b990333937bd32b760711b6044820152606401610718565b611462601185856122e3565b506113aa601283836122e3565b606061147c826001541190565b6114bc5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610718565b60116114c783611f0a565b60126040516020016114db939291906129e6565b6040516020818303038152906040529050919050565b6000546001600160a01b0316331461151b5760405162461bcd60e51b8152600401610718906127d5565b600a805460ff19166001179055565b6000546001600160a01b031633146115545760405162461bcd60e51b8152600401610718906127d5565b6001600160a01b0381166115b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610718565b610c1481611d9d565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162982611bf3565b80519091506000906001600160a01b0316336001600160a01b0316148061166057503361165584610825565b6001600160a01b0316145b8061167257508151611672903361068a565b9050806116dc5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610718565b846001600160a01b031682600001516001600160a01b0316146117505760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610718565b6001600160a01b0384166117b45760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610718565b6117c460008484600001516115c2565b6001600160a01b03851660009081526005602052604081208054600192906117f69084906001600160801b0316612a19565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261184291859116612a41565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118ca846001612876565b6000818152600460205260409020549091506001600160a01b031661195c576118f4816001541190565b1561195c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600081815b8551811015611a4a5760008682815181106119c8576119c86128a5565b60200260200101519050808311611a0a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611a37565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611a428161285b565b9150506119ab565b509092149392505050565b7f000000000000000000000000000000000000000000000000000000000000000a821115611ab75760405162461bcd60e51b815260206004820152600f60248201526e1b585e0818985d18da081b1a5b5a5d608a1b6044820152606401610718565b7f0000000000000000000000000000000000000000000000000000000000002b6782611ae260015490565b611aec9190612876565b1115611b2f5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610718565b600b54600c54611b3f9190612876565b82611b4960015490565b611b539190612876565b1115611b965760405162461bcd60e51b815260206004820152601260248201527172656163686564206d6178207075626c696360701b6044820152606401610718565b81600d54611ba49190612a6c565b811015611be95760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610718565b6109c38383611ded565b6040805180820190915260008082526020820152611c12826001541190565b611c715760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610718565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611cd257611cc47f000000000000000000000000000000000000000000000000000000000000000a8461288e565b611ccf906001612876565b90505b825b818110611d3c576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d2957949350505050565b5080611d3481612a8b565b915050611cd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610718565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e07828260405180602001604052806000815250612008565b5050565b60006001600160a01b0384163b15611efe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e4f903390899088908890600401612aa2565b6020604051808303816000875af1925050508015611e8a575060408051601f3d908101601f19168201909252611e8791810190612adf565b60015b611ee4573d808015611eb8576040519150601f19603f3d011682016040523d82523d6000602084013e611ebd565b606091505b508051611edc5760405162461bcd60e51b8152600401610718906128f9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f02565b5060015b949350505050565b606081611f2e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f585780611f428161285b565b9150611f519050600a836128d1565b9150611f32565b60008167ffffffffffffffff811115611f7357611f7361260e565b6040519080825280601f01601f191660200182016040528015611f9d576020820181803683370190505b5090505b8415611f0257611fb260018361288e565b9150611fbf600a866128e5565b611fca906030612876565b60f81b818381518110611fdf57611fdf6128a5565b60200101906001600160f81b031916908160001a905350612001600a866128d1565b9450611fa1565b6001546001600160a01b03841661206b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610718565b612076816001541190565b156120c35760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610718565b7f000000000000000000000000000000000000000000000000000000000000000a83111561213e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610718565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061219a908790612a41565b6001600160801b031681526020018583602001516121b89190612a41565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122d85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461229c6000888488611e0b565b6122b85760405162461bcd60e51b8152600401610718906128f9565b816122c28161285b565b92505080806122d09061285b565b91505061224f565b50600181905561199e565b8280546122ef9061280a565b90600052602060002090601f0160209004810192826123115760008555612357565b82601f1061232a5782800160ff19823516178555612357565b82800160010185558215612357579182015b8281111561235757823582559160200191906001019061233c565b50610c979291505b80821115610c97576000815560010161235f565b60006020828403121561238557600080fd5b5035919050565b6001600160e01b031981168114610c1457600080fd5b6000602082840312156123b457600080fd5b81356123bf8161238c565b9392505050565b60005b838110156123e15781810151838201526020016123c9565b83811115610e5c5750506000910152565b6000815180845261240a8160208601602086016123c6565b601f01601f19169290920160200192915050565b6020815260006123bf60208301846123f2565b80356001600160a01b038116811461244857600080fd5b919050565b6000806040838503121561246057600080fd5b61246983612431565b946020939093013593505050565b60008060006060848603121561248c57600080fd5b61249584612431565b92506124a360208501612431565b9150604084013590509250925092565b60008083601f8401126124c557600080fd5b50813567ffffffffffffffff8111156124dd57600080fd5b6020830191508360208260051b85010111156124f857600080fd5b9250929050565b60008060006040848603121561251457600080fd5b83359250602084013567ffffffffffffffff81111561253257600080fd5b61253e868287016124b3565b9497909650939450505050565b60006020828403121561255d57600080fd5b6123bf82612431565b6000806040838503121561257957600080fd5b61258283612431565b91506020830135801515811461259757600080fd5b809150509250929050565b600080600080604085870312156125b857600080fd5b843567ffffffffffffffff808211156125d057600080fd5b6125dc888389016124b3565b909650945060208701359150808211156125f557600080fd5b50612602878288016124b3565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561263a57600080fd5b61264385612431565b935061265160208601612431565b925060408501359150606085013567ffffffffffffffff8082111561267557600080fd5b818701915087601f83011261268957600080fd5b81358181111561269b5761269b61260e565b604051601f8201601f19908116603f011681019083821181831017156126c3576126c361260e565b816040528281528a60208487010111156126dc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f84011261271257600080fd5b50813567ffffffffffffffff81111561272a57600080fd5b6020830191508360208285010111156124f857600080fd5b6000806000806040858703121561275857600080fd5b843567ffffffffffffffff8082111561277057600080fd5b61277c88838901612700565b9096509450602087013591508082111561279557600080fd5b5061260287828801612700565b600080604083850312156127b557600080fd5b6127be83612431565b91506127cc60208401612431565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061281e57607f821691505b6020821081141561283f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561286f5761286f612845565b5060010190565b6000821982111561288957612889612845565b500190565b6000828210156128a0576128a0612845565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b6000826128e0576128e06128bb565b500490565b6000826128f4576128f46128bb565b500690565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c908083168061296657607f831692505b602080841082141561298857634e487b7160e01b600052602260045260246000fd5b81801561299c57600181146129ad576129da565b60ff198616895284890196506129da565b60008881526020902060005b868110156129d25781548b8201529085019083016129b9565b505084890196505b50505050505092915050565b60006129f2828661294c565b8451612a028183602089016123c6565b612a0e8183018661294c565b979650505050505050565b60006001600160801b0383811690831681811015612a3957612a39612845565b039392505050565b60006001600160801b03808316818516808303821115612a6357612a63612845565b01949350505050565b6000816000190483118215151615612a8657612a86612845565b500290565b600081612a9a57612a9a612845565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ad5908301846123f2565b9695505050505050565b600060208284031215612af157600080fd5b81516123bf8161238c56fea26469706673582212204487bcd452572ec5ea2442d5839dd30a7d3256414890bbf9f9a5cb89049d548d64736f6c634300080c0033

Deployed Bytecode Sourcemap

45765:4836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48091:130;;;;;;;;;;-1:-1:-1;48091:130:0;;;;;:::i;:::-;;:::i;:::-;;31114:370;;;;;;;;;;-1:-1:-1;31114:370:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;31114:370:0;;;;;;;;45826:18;;;;;;;;;;-1:-1:-1;45826:18:0;;;;;;;;32840:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34365:204::-;;;;;;;;;;-1:-1:-1;34365:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34365:204:0;1528:203:1;33928:379:0;;;;;;;;;;-1:-1:-1;33928:379:0;;;;;:::i;:::-;;:::i;29675:94::-;;;;;;;;;;-1:-1:-1;29751:12:0;;29675:94;;;2319:25:1;;;2307:2;2292:18;29675:94:0;2173:177:1;48367:146:0;;;;;;;;;;-1:-1:-1;48367:146:0;;;;;:::i;:::-;;:::i;35215:142::-;;;;;;;;;;-1:-1:-1;35215:142:0;;;;;:::i;:::-;;:::i;46008:25::-;;;;;;;;;;;;;;;;30306:744;;;;;;;;;;-1:-1:-1;30306:744:0;;;;;:::i;:::-;;:::i;48525:134::-;;;;;;;;;;-1:-1:-1;48525:134:0;;;;;:::i;:::-;;:::i;49778:195::-;;;;;;;;;;;;;:::i;35420:157::-;;;;;;;;;;-1:-1:-1;35420:157:0;;;;;:::i;:::-;;:::i;29838:177::-;;;;;;;;;;-1:-1:-1;29838:177:0;;;;;:::i;:::-;;:::i;47080:757::-;;;;;;:::i;:::-;;:::i;46040:31::-;;;;;;;;;;;;;;;;32663:118;;;;;;;;;;-1:-1:-1;32663:118:0;;;;;:::i;:::-;;:::i;47849:230::-;;;;;;;;;;-1:-1:-1;47849:230:0;;;;;:::i;:::-;;:::i;31540:211::-;;;;;;;;;;-1:-1:-1;31540:211:0;;;;;:::i;:::-;;:::i;45073:94::-;;;;;;;;;;;;;:::i;45857:43::-;;;;;;;;;;;;;;;48233:122;;;;;;;;;;-1:-1:-1;48233:122:0;;;;;:::i;:::-;;:::i;44422:87::-;;;;;;;;;;-1:-1:-1;44468:7:0;44495:6;-1:-1:-1;;;;;44495:6:0;44422:87;;32995:98;;;;;;;;;;;;;:::i;46784:288::-;;;;;;:::i;:::-;;:::i;34633:274::-;;;;;;;;;;-1:-1:-1;34633:274:0;;;;;:::i;:::-;;:::i;48667:698::-;;;;;;;;;;-1:-1:-1;48667:698:0;;;;;:::i;:::-;;:::i;35640:311::-;;;;;;;;;;-1:-1:-1;35640:311:0;;;;;:::i;:::-;;:::i;49373:303::-;;;;;;;;;;-1:-1:-1;49373:303:0;;;;;:::i;:::-;;:::i;45972:27::-;;;;;;;;;;;;;;;;46370:406;;;;;;;;;;-1:-1:-1;46370:406:0;;;;;:::i;:::-;;:::i;40055:43::-;;;;;;;;;;;;;;;;45941:24;;;;;;;;;;;;;;;;49684:82;;;;;;;;;;;;;:::i;45909:25::-;;;;;;;;;;;;;;;;34970:186;;;;;;;;;;-1:-1:-1;34970:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;35115:25:0;;;35092:4;35115:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34970:186;45322:192;;;;;;;;;;-1:-1:-1;45322:192:0;;;;;:::i;:::-;;:::i;46078:28::-;;;;;;;;;;;;;;;;48091:130;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;;;;;;;;;48185:12:::1;:28:::0;48091:130::o;31114:370::-;31241:4;-1:-1:-1;;;;;;31271:40:0;;-1:-1:-1;;;31271:40:0;;:99;;-1:-1:-1;;;;;;;31322:48:0;;-1:-1:-1;;;31322:48:0;31271:99;:160;;;-1:-1:-1;;;;;;;31381:50:0;;-1:-1:-1;;;31381:50:0;31271:160;:207;;;-1:-1:-1;;;;;;;;;;15528:40:0;;;31442:36;31257:221;31114:370;-1:-1:-1;;31114:370:0:o;32840:94::-;32894:13;32923:5;32916:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32840:94;:::o;34365:204::-;34433:7;34457:16;34465:7;36277:12;;-1:-1:-1;36267:22:0;36190:105;34457:16;34449:74;;;;-1:-1:-1;;;34449:74:0;;8825:2:1;34449:74:0;;;8807:21:1;8864:2;8844:18;;;8837:30;8903:34;8883:18;;;8876:62;-1:-1:-1;;;8954:18:1;;;8947:43;9007:19;;34449:74:0;8623:409:1;34449:74:0;-1:-1:-1;34539:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34539:24:0;;34365:204::o;33928:379::-;33997:13;34013:24;34029:7;34013:15;:24::i;:::-;33997:40;;34058:5;-1:-1:-1;;;;;34052:11:0;:2;-1:-1:-1;;;;;34052:11:0;;;34044:58;;;;-1:-1:-1;;;34044:58:0;;9239:2:1;34044:58:0;;;9221:21:1;9278:2;9258:18;;;9251:30;9317:34;9297:18;;;9290:62;-1:-1:-1;;;9368:18:1;;;9361:32;9410:19;;34044:58:0;9037:398:1;34044:58:0;27227:10;-1:-1:-1;;;;;34127:21:0;;;;:62;;-1:-1:-1;34152:37:0;34169:5;27227:10;34970:186;:::i;34152:37::-;34111:153;;;;-1:-1:-1;;;34111:153:0;;9642:2:1;34111:153:0;;;9624:21:1;9681:2;9661:18;;;9654:30;9720:34;9700:18;;;9693:62;9791:27;9771:18;;;9764:55;9836:19;;34111:153:0;9440:421:1;34111:153:0;34273:28;34282:2;34286:7;34295:5;34273:8;:28::i;:::-;33990:317;33928:379;;:::o;48367:146::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;48469:16:::1;:36:::0;48367:146::o;35215:142::-;35323:28;35333:4;35339:2;35343:7;35323:9;:28::i;30306:744::-;30415:7;30450:16;30460:5;30450:9;:16::i;:::-;30442:5;:24;30434:71;;;;-1:-1:-1;;;30434:71:0;;10068:2:1;30434:71:0;;;10050:21:1;10107:2;10087:18;;;10080:30;10146:34;10126:18;;;10119:62;-1:-1:-1;;;10197:18:1;;;10190:32;10239:19;;30434:71:0;9866:398:1;30434:71:0;30512:22;30537:13;29751:12;;;29675:94;30537:13;30512:38;;30557:19;30587:25;30637:9;30632:350;30656:14;30652:1;:18;30632:350;;;30686:31;30720:14;;;:11;:14;;;;;;;;;30686:48;;;;;;;;;-1:-1:-1;;;;;30686:48:0;;;;;-1:-1:-1;;;30686:48:0;;;;;;;;;;;;30747:28;30743:89;;30808:14;;;-1:-1:-1;30743:89:0;30865:5;-1:-1:-1;;;;;30844:26:0;:17;-1:-1:-1;;;;;30844:26:0;;30840:135;;;30902:5;30887:11;:20;30883:59;;;-1:-1:-1;30929:1:0;-1:-1:-1;30922:8:0;;-1:-1:-1;;;30922:8:0;30883:59;30952:13;;;;:::i;:::-;;;;30840:135;-1:-1:-1;30672:3:0;;;;:::i;:::-;;;;30632:350;;;-1:-1:-1;30988:56:0;;-1:-1:-1;;;30988:56:0;;10743:2:1;30988:56:0;;;10725:21:1;10782:2;10762:18;;;10755:30;10821:34;10801:18;;;10794:62;-1:-1:-1;;;10872:18:1;;;10865:44;10926:19;;30988:56:0;10541:410:1;48525:134:0;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;48621:13:::1;:30:::0;48525:134::o;49778:195::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;49834:131:::1;::::0;49856:42:::1;::::0;49933:21:::1;49834:131:::0;::::1;;;::::0;::::1;::::0;;;49933:21;49856:42;49834:131;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49778:195::o:0;35420:157::-;35532:39;35549:4;35555:2;35559:7;35532:39;;;;;;;;;;;;:16;:39::i;29838:177::-;29905:7;29937:13;29751:12;;;29675:94;29937:13;29929:5;:21;29921:69;;;;-1:-1:-1;;;29921:69:0;;11158:2:1;29921:69:0;;;11140:21:1;11197:2;11177:18;;;11170:30;11236:34;11216:18;;;11209:62;-1:-1:-1;;;11287:18:1;;;11280:33;11330:19;;29921:69:0;10956:399:1;29921:69:0;-1:-1:-1;30004:5:0;29838:177::o;47080:757::-;47241:16;;47222:15;:35;;47200:98;;;;-1:-1:-1;;;47200:98:0;;11562:2:1;47200:98:0;;;11544:21:1;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:43;11673:18;;47200:98:0;11360:337:1;47200:98:0;47367:14;47357:6;47331:23;27227:10;31540:211;:::i;47331:23::-;:32;;;;:::i;:::-;:50;;47309:117;;;;-1:-1:-1;;;47309:117:0;;12037:2:1;47309:117:0;;;12019:21:1;12076:2;12056:18;;;12049:30;-1:-1:-1;;;12095:18:1;;;12088:47;12152:18;;47309:117:0;11835:341:1;47309:117:0;47459:9;27227:10;47459:25;47437:97;;;;-1:-1:-1;;;47437:97:0;;12383:2:1;47437:97:0;;;12365:21:1;12422:2;12402:18;;;12395:30;-1:-1:-1;;;12441:18:1;;;12434:51;12502:18;;47437:97:0;12181:345:1;47437:97:0;47570:30;;-1:-1:-1;;27227:10:0;12680:2:1;12676:15;12672:53;47570:30:0;;;12660:66:1;47545:12:0;;12742::1;;47570:30:0;;;;;;;;;;;;47560:41;;;;;;47545:56;;47634:49;47653:11;;47634:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47666:10:0;;;-1:-1:-1;47678:4:0;;-1:-1:-1;47634:18:0;:49::i;:::-;47612:112;;;;-1:-1:-1;;;47612:112:0;;12967:2:1;47612:112:0;;;12949:21:1;13006:2;12986:18;;;12979:30;-1:-1:-1;;;13025:18:1;;;13018:43;13078:18;;47612:112:0;12765:337:1;47612:112:0;47735:94;27227:10;47788:6;47809:9;47735:11;:94::i;:::-;47189:648;47080:757;;;:::o;32663:118::-;32727:7;32750:20;32762:7;32750:11;:20::i;:::-;:25;;32663:118;-1:-1:-1;;32663:118:0:o;47849:230::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;47973:28:::1;47990:11;47973:14;:28;:::i;:::-;47959:10;:42;;47937:101;;;::::0;-1:-1:-1;;;47937:101:0;;13439:2:1;47937:101:0::1;::::0;::::1;13421:21:1::0;13478:1;13458:18;;;13451:29;-1:-1:-1;;;13496:18:1;;;13489:38;13544:18;;47937:101:0::1;13237:331:1::0;47937:101:0::1;48049:9;:22:::0;47849:230::o;31540:211::-;31604:7;-1:-1:-1;;;;;31628:19:0;;31620:75;;;;-1:-1:-1;;;31620:75:0;;13775:2:1;31620:75:0;;;13757:21:1;13814:2;13794:18;;;13787:30;13853:34;13833:18;;;13826:62;-1:-1:-1;;;13904:18:1;;;13897:41;13955:19;;31620:75:0;13573:407:1;31620:75:0;-1:-1:-1;;;;;;31717:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31717:27:0;;31540:211::o;45073:94::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;45138:21:::1;45156:1;45138:9;:21::i;:::-;45073:94::o:0;48233:122::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;48323:10:::1;:24:::0;48233:122::o;32995:98::-;33051:13;33080:7;33073:14;;;;;:::i;46784:288::-;46899:13;;46880:15;:32;;46858:101;;;;-1:-1:-1;;;46858:101:0;;14187:2:1;46858:101:0;;;14169:21:1;14226:2;14206:18;;;14199:30;-1:-1:-1;;;14245:18:1;;;14238:49;14304:18;;46858:101:0;13985:343:1;46858:101:0;46970:94;27227:10;47023:6;47044:9;46970:11;:94::i;34633:274::-;-1:-1:-1;;;;;34724:24:0;;27227:10;34724:24;;34716:63;;;;-1:-1:-1;;;34716:63:0;;14535:2:1;34716:63:0;;;14517:21:1;14574:2;14554:18;;;14547:30;14613:28;14593:18;;;14586:56;14659:18;;34716:63:0;14333:350:1;34716:63:0;27227:10;34788:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34788:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34788:53:0;;;;;;;;;;34853:48;;725:41:1;;;34788:42:0;;27227:10;34853:48;;698:18:1;34853:48:0;;;;;;;34633:274;;:::o;48667:698::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;48823:36;;::::1;48801:101;;;::::0;-1:-1:-1;;;48801:101:0;;14890:2:1;48801:101:0::1;::::0;::::1;14872:21:1::0;14929:2;14909:18;;;14902:30;-1:-1:-1;;;14948:18:1;;;14941:45;15003:18;;48801:101:0::1;14688:339:1::0;48801:101:0::1;48918:9;48913:445;48933:21:::0;;::::1;48913:445;;;49030:11;49015:8;;49024:1;49015:11;;;;;;;:::i;:::-;;;;;;;49002:10;;:24;;;;:::i;:::-;:39;;48976:119;;;::::0;-1:-1:-1;;;48976:119:0;;15366:2:1;48976:119:0::1;::::0;::::1;15348:21:1::0;15405:2;15385:18;;;15378:30;-1:-1:-1;;;15424:18:1;;;15417:48;15482:18;;48976:119:0::1;15164:342:1::0;48976:119:0::1;49115:9;49110:130;49148:12;49134:8;;49143:1;49134:11;;;;;;;:::i;:::-;;;;;;;:26;;;;:::i;:::-;49130:1;:30;49110:130;;;49186:38;49196:10;;49207:1;49196:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49211:12;49186:9;:38::i;:::-;49162:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49110:130;;;;49254:52;49264:10;;49275:1;49264:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49293:12;49279:8;;49288:1;49279:11;;;;;;;:::i;:::-;;;;;;;:26;;;;:::i;:::-;49254:9;:52::i;:::-;49335:8;;49344:1;49335:11;;;;;;;:::i;:::-;;;;;;;49321:10;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48956:3:0;;-1:-1:-1;48956:3:0::1;::::0;::::1;:::i;:::-;;;;48913:445;;;;48667:698:::0;;;;:::o;35640:311::-;35777:28;35787:4;35793:2;35797:7;35777:9;:28::i;:::-;35828:48;35851:4;35857:2;35861:7;35870:5;35828:22;:48::i;:::-;35812:133;;;;-1:-1:-1;;;35812:133:0;;;;;;;:::i;49373:303::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;49532:6:::1;::::0;::::1;;49531:7;49509:75;;;::::0;-1:-1:-1;;;49509:75:0;;16507:2:1;49509:75:0::1;::::0;::::1;16489:21:1::0;16546:2;16526:18;;;16519:30;-1:-1:-1;;;16565:18:1;;;16558:48;16623:18;;49509:75:0::1;16305:342:1::0;49509:75:0::1;49595:28;:12;49610:13:::0;;49595:28:::1;:::i;:::-;-1:-1:-1::0;49634:34:0::1;:15;49652:16:::0;;49634:34:::1;:::i;46370:406::-:0;46461:13;46515:16;46523:7;36277:12;;-1:-1:-1;36267:22:0;36190:105;46515:16;46493:83;;;;-1:-1:-1;;;46493:83:0;;16854:2:1;46493:83:0;;;16836:21:1;16893:2;16873:18;;;16866:30;-1:-1:-1;;;16912:18:1;;;16905:47;16969:18;;46493:83:0;16652:341:1;46493:83:0;46650:12;46682:25;46699:7;46682:16;:25::i;:::-;46727:15;46615:142;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46587:181;;46370:406;;;:::o;49684:82::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;49745:6:::1;:13:::0;;-1:-1:-1;;49745:13:0::1;49754:4;49745:13;::::0;;49684:82::o;45322:192::-;44468:7;44495:6;-1:-1:-1;;;;;44495:6:0;27227:10;44642:23;44634:68;;;;-1:-1:-1;;;44634:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45411:22:0;::::1;45403:73;;;::::0;-1:-1:-1;;;45403:73:0;;18765:2:1;45403:73:0::1;::::0;::::1;18747:21:1::0;18804:2;18784:18;;;18777:30;18843:34;18823:18;;;18816:62;-1:-1:-1;;;18894:18:1;;;18887:36;18940:19;;45403:73:0::1;18563:402:1::0;45403:73:0::1;45487:19;45497:8;45487:9;:19::i;39877:172::-:0;39974:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39974:29:0;-1:-1:-1;;;;;39974:29:0;;;;;;;;;40015:28;;39974:24;;40015:28;;;;;;;39877:172;;;:::o;38242:1529::-;38339:35;38377:20;38389:7;38377:11;:20::i;:::-;38448:18;;38339:58;;-1:-1:-1;38406:22:0;;-1:-1:-1;;;;;38432:34:0;27227:10;-1:-1:-1;;;;;38432:34:0;;:81;;;-1:-1:-1;27227:10:0;38477:20;38489:7;38477:11;:20::i;:::-;-1:-1:-1;;;;;38477:36:0;;38432:81;:142;;;-1:-1:-1;38541:18:0;;38524:50;;27227:10;34970:186;:::i;38524:50::-;38406:169;;38600:17;38584:101;;;;-1:-1:-1;;;38584:101:0;;19172:2:1;38584:101:0;;;19154:21:1;19211:2;19191:18;;;19184:30;19250:34;19230:18;;;19223:62;-1:-1:-1;;;19301:18:1;;;19294:48;19359:19;;38584:101:0;18970:414:1;38584:101:0;38732:4;-1:-1:-1;;;;;38710:26:0;:13;:18;;;-1:-1:-1;;;;;38710:26:0;;38694:98;;;;-1:-1:-1;;;38694:98:0;;19591:2:1;38694:98:0;;;19573:21:1;19630:2;19610:18;;;19603:30;19669:34;19649:18;;;19642:62;-1:-1:-1;;;19720:18:1;;;19713:36;19766:19;;38694:98:0;19389:402:1;38694:98:0;-1:-1:-1;;;;;38807:16:0;;38799:66;;;;-1:-1:-1;;;38799:66:0;;19998:2:1;38799:66:0;;;19980:21:1;20037:2;20017:18;;;20010:30;20076:34;20056:18;;;20049:62;-1:-1:-1;;;20127:18:1;;;20120:35;20172:19;;38799:66:0;19796:401:1;38799:66:0;38974:49;38991:1;38995:7;39004:13;:18;;;38974:8;:49::i;:::-;-1:-1:-1;;;;;39032:18:0;;;;;;:12;:18;;;;;:31;;39062:1;;39032:18;:31;;39062:1;;-1:-1:-1;;;;;39032:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;39032:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39070:16:0;;-1:-1:-1;39070:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39070:16:0;;:29;;-1:-1:-1;;39070:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39070:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39129:43:0;;;;;;;;-1:-1:-1;;;;;39129:43:0;;;;;;39155:15;39129:43;;;;;;;;;-1:-1:-1;39106:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39106:66:0;-1:-1:-1;;;;;;39106:66:0;;;;;;;;;;;39422:11;39118:7;-1:-1:-1;39422:11:0;:::i;:::-;39485:1;39444:24;;;:11;:24;;;;;:29;39400:33;;-1:-1:-1;;;;;;39444:29:0;39440:236;;39502:20;39510:11;36277:12;;-1:-1:-1;36267:22:0;36190:105;39502:20;39498:171;;;39562:97;;;;;;;;39589:18;;-1:-1:-1;;;;;39562:97:0;;;;;;39620:28;;;;39562:97;;;;;;;;;;-1:-1:-1;39535:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;39535:124:0;-1:-1:-1;;;;;;39535:124:0;;;;;;;;;;;;39498:171;39708:7;39704:2;-1:-1:-1;;;;;39689:27:0;39698:4;-1:-1:-1;;;;;39689:27:0;;;;;;;;;;;39723:42;38332:1439;;;38242:1529;;;:::o;22977:830::-;23102:4;23142;23102;23159:525;23183:5;:12;23179:1;:16;23159:525;;;23217:20;23240:5;23246:1;23240:8;;;;;;;;:::i;:::-;;;;;;;23217:31;;23285:12;23269;:28;23265:408;;23422:44;;;;;;20868:19:1;;;20903:12;;;20896:28;;;20940:12;;23422:44:0;;;;;;;;;;;;23412:55;;;;;;23397:70;;23265:408;;;23612:44;;;;;;20868:19:1;;;20903:12;;;20896:28;;;20940:12;;23612:44:0;;;;;;;;;;;;23602:55;;;;;;23587:70;;23265:408;-1:-1:-1;23197:3:0;;;;:::i;:::-;;;;23159:525;;;-1:-1:-1;23779:20:0;;;;22977:830;-1:-1:-1;;;22977:830:0:o;49981:615::-;50137:12;50127:6;:22;;50105:87;;;;-1:-1:-1;;;50105:87:0;;21165:2:1;50105:87:0;;;21147:21:1;21204:2;21184:18;;;21177:30;-1:-1:-1;;;21223:18:1;;;21216:45;21278:18;;50105:87:0;20963:339:1;50105:87:0;50251:14;50241:6;50225:13;29751:12;;;29675:94;50225:13;:22;;;;:::i;:::-;:40;;50203:109;;;;-1:-1:-1;;;50203:109:0;;21509:2:1;50203:109:0;;;21491:21:1;21548:2;21528:18;;;21521:30;-1:-1:-1;;;21567:18:1;;;21560:48;21625:18;;50203:109:0;21307:342:1;50203:109:0;50383:10;;50371:9;;:22;;;;:::i;:::-;50361:6;50345:13;29751:12;;;29675:94;50345:13;:22;;;;:::i;:::-;:48;;50323:117;;;;-1:-1:-1;;;50323:117:0;;21856:2:1;50323:117:0;;;21838:21:1;21895:2;21875:18;;;21868:30;-1:-1:-1;;;21914:18:1;;;21907:48;21972:18;;50323:117:0;21654:342:1;50323:117:0;50497:6;50482:12;;:21;;;;:::i;:::-;50473:5;:30;;50451:99;;;;-1:-1:-1;;;50451:99:0;;22376:2:1;50451:99:0;;;22358:21:1;22415:2;22395:18;;;22388:30;-1:-1:-1;;;22434:18:1;;;22427:49;22493:18;;50451:99:0;22174:343:1;50451:99:0;50561:27;50571:8;50581:6;50561:9;:27::i;32003:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;32120:16:0;32128:7;36277:12;;-1:-1:-1;36267:22:0;36190:105;32120:16;32112:71;;;;-1:-1:-1;;;32112:71:0;;22724:2:1;32112:71:0;;;22706:21:1;22763:2;22743:18;;;22736:30;22802:34;22782:18;;;22775:62;-1:-1:-1;;;22853:18:1;;;22846:40;22903:19;;32112:71:0;22522:406:1;32112:71:0;32192:26;32240:12;32229:7;:23;32225:93;;32284:22;32294:12;32284:7;:22;:::i;:::-;:26;;32309:1;32284:26;:::i;:::-;32263:47;;32225:93;32346:7;32326:212;32363:18;32355:4;:26;32326:212;;32400:31;32434:17;;;:11;:17;;;;;;;;;32400:51;;;;;;;;;-1:-1:-1;;;;;32400:51:0;;;;;-1:-1:-1;;;32400:51:0;;;;;;;;;;;;32464:28;32460:71;;32512:9;32003:606;-1:-1:-1;;;;32003:606:0:o;32460:71::-;-1:-1:-1;32383:6:0;;;;:::i;:::-;;;;32326:212;;;-1:-1:-1;32546:57:0;;-1:-1:-1;;;32546:57:0;;23276:2:1;32546:57:0;;;23258:21:1;23315:2;23295:18;;;23288:30;23354:34;23334:18;;;23327:62;-1:-1:-1;;;23405:18:1;;;23398:45;23460:19;;32546:57:0;23074:411:1;45522:173:0;45578:16;45597:6;;-1:-1:-1;;;;;45614:17:0;;;-1:-1:-1;;;;;;45614:17:0;;;;;;45647:40;;45597:6;;;;;;;45647:40;;45578:16;45647:40;45567:128;45522:173;:::o;36301:98::-;36366:27;36376:2;36380:8;36366:27;;;;;;;;;;;;:9;:27::i;:::-;36301:98;;:::o;41592:690::-;41729:4;-1:-1:-1;;;;;41746:13:0;;5778:20;5826:8;41742:535;;41785:72;;-1:-1:-1;;;41785:72:0;;-1:-1:-1;;;;;41785:36:0;;;;;:72;;27227:10;;41836:4;;41842:7;;41851:5;;41785:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41785:72:0;;;;;;;;-1:-1:-1;;41785:72:0;;;;;;;;;;;;:::i;:::-;;;41772:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42016:13:0;;42012:215;;42049:61;;-1:-1:-1;;;42049:61:0;;;;;;;:::i;42012:215::-;42195:6;42189:13;42180:6;42176:2;42172:15;42165:38;41772:464;-1:-1:-1;;;;;;41907:55:0;-1:-1:-1;;;41907:55:0;;-1:-1:-1;41900:62:0;;41742:535;-1:-1:-1;42265:4:0;41742:535;41592:690;;;;;;:::o;2922:723::-;2978:13;3199:10;3195:53;;-1:-1:-1;;3226:10:0;;;;;;;;;;;;-1:-1:-1;;;3226:10:0;;;;;2922:723::o;3195:53::-;3273:5;3258:12;3314:78;3321:9;;3314:78;;3347:8;;;;:::i;:::-;;-1:-1:-1;3370:10:0;;-1:-1:-1;3378:2:0;3370:10;;:::i;:::-;;;3314:78;;;3402:19;3434:6;3424:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3424:17:0;;3402:39;;3452:154;3459:10;;3452:154;;3486:11;3496:1;3486:11;;:::i;:::-;;-1:-1:-1;3555:10:0;3563:2;3555:5;:10;:::i;:::-;3542:24;;:2;:24;:::i;:::-;3529:39;;3512:6;3519;3512:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3512:56:0;;;;;;;;-1:-1:-1;3583:11:0;3592:2;3583:11;;:::i;:::-;;;3452:154;;36738:1272;36866:12;;-1:-1:-1;;;;;36893:16:0;;36885:62;;;;-1:-1:-1;;;36885:62:0;;24440:2:1;36885:62:0;;;24422:21:1;24479:2;24459:18;;;24452:30;24518:34;24498:18;;;24491:62;-1:-1:-1;;;24569:18:1;;;24562:31;24610:19;;36885:62:0;24238:397:1;36885:62:0;37084:21;37092:12;36277;;-1:-1:-1;36267:22:0;36190:105;37084:21;37083:22;37075:64;;;;-1:-1:-1;;;37075:64:0;;24842:2:1;37075:64:0;;;24824:21:1;24881:2;24861:18;;;24854:30;24920:31;24900:18;;;24893:59;24969:18;;37075:64:0;24640:353:1;37075:64:0;37166:12;37154:8;:24;;37146:71;;;;-1:-1:-1;;;37146:71:0;;25200:2:1;37146:71:0;;;25182:21:1;25239:2;25219:18;;;25212:30;25278:34;25258:18;;;25251:62;-1:-1:-1;;;25329:18:1;;;25322:32;25371:19;;37146:71:0;24998:398:1;37146:71:0;-1:-1:-1;;;;;37329:16:0;;37296:30;37329:16;;;:12;:16;;;;;;;;;37296:49;;;;;;;;;-1:-1:-1;;;;;37296:49:0;;;;;-1:-1:-1;;;37296:49:0;;;;;;;;;;;37371:119;;;;;;;;37391:19;;37296:49;;37371:119;;;37391:39;;37421:8;;37391:39;:::i;:::-;-1:-1:-1;;;;;37371:119:0;;;;;37474:8;37439:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37371:119:0;;;;;;-1:-1:-1;;;;;37352:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;37352:138:0;;;;;;;;;;;;37525:43;;;;;;;;;;;37551:15;37525:43;;;;;;;;37497:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37497:71:0;-1:-1:-1;;;;;;37497:71:0;;;;;;;;;;;;;;;;;;37509:12;;37621:281;37645:8;37641:1;:12;37621:281;;;37674:38;;37699:12;;-1:-1:-1;;;;;37674:38:0;;;37691:1;;37674:38;;37691:1;;37674:38;37739:59;37770:1;37774:2;37778:12;37792:5;37739:22;:59::i;:::-;37721:150;;;;-1:-1:-1;;;37721:150:0;;;;;;;:::i;:::-;37880:14;;;;:::i;:::-;;;;37655:3;;;;;:::i;:::-;;;;37621:281;;;-1:-1:-1;37910:12:0;:27;;;37944:60;47080:757;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;:::-;569:5;335:245;-1:-1:-1;;;335:245:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:367::-;2933:8;2943:6;2997:3;2990:4;2982:6;2978:17;2974:27;2964:55;;3015:1;3012;3005:12;2964:55;-1:-1:-1;3038:20:1;;3081:18;3070:30;;3067:50;;;3113:1;3110;3103:12;3067:50;3150:4;3142:6;3138:17;3126:29;;3210:3;3203:4;3193:6;3190:1;3186:14;3178:6;3174:27;3170:38;3167:47;3164:67;;;3227:1;3224;3217:12;3164:67;2870:367;;;;;:::o;3242:505::-;3337:6;3345;3353;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3458:9;3445:23;3435:33;;3519:2;3508:9;3504:18;3491:32;3546:18;3538:6;3535:30;3532:50;;;3578:1;3575;3568:12;3532:50;3617:70;3679:7;3670:6;3659:9;3655:22;3617:70;:::i;:::-;3242:505;;3706:8;;-1:-1:-1;3591:96:1;;-1:-1:-1;;;;3242:505:1:o;3752:186::-;3811:6;3864:2;3852:9;3843:7;3839:23;3835:32;3832:52;;;3880:1;3877;3870:12;3832:52;3903:29;3922:9;3903:29;:::i;4128:347::-;4193:6;4201;4254:2;4242:9;4233:7;4229:23;4225:32;4222:52;;;4270:1;4267;4260:12;4222:52;4293:29;4312:9;4293:29;:::i;:::-;4283:39;;4372:2;4361:9;4357:18;4344:32;4419:5;4412:13;4405:21;4398:5;4395:32;4385:60;;4441:1;4438;4431:12;4385:60;4464:5;4454:15;;;4128:347;;;;;:::o;4480:773::-;4602:6;4610;4618;4626;4679:2;4667:9;4658:7;4654:23;4650:32;4647:52;;;4695:1;4692;4685:12;4647:52;4735:9;4722:23;4764:18;4805:2;4797:6;4794:14;4791:34;;;4821:1;4818;4811:12;4791:34;4860:70;4922:7;4913:6;4902:9;4898:22;4860:70;:::i;:::-;4949:8;;-1:-1:-1;4834:96:1;-1:-1:-1;5037:2:1;5022:18;;5009:32;;-1:-1:-1;5053:16:1;;;5050:36;;;5082:1;5079;5072:12;5050:36;;5121:72;5185:7;5174:8;5163:9;5159:24;5121:72;:::i;:::-;4480:773;;;;-1:-1:-1;5212:8:1;-1:-1:-1;;;;4480:773:1:o;5258:127::-;5319:10;5314:3;5310:20;5307:1;5300:31;5350:4;5347:1;5340:15;5374:4;5371:1;5364:15;5390:1138;5485:6;5493;5501;5509;5562:3;5550:9;5541:7;5537:23;5533:33;5530:53;;;5579:1;5576;5569:12;5530:53;5602:29;5621:9;5602:29;:::i;:::-;5592:39;;5650:38;5684:2;5673:9;5669:18;5650:38;:::i;:::-;5640:48;;5735:2;5724:9;5720:18;5707:32;5697:42;;5790:2;5779:9;5775:18;5762:32;5813:18;5854:2;5846:6;5843:14;5840:34;;;5870:1;5867;5860:12;5840:34;5908:6;5897:9;5893:22;5883:32;;5953:7;5946:4;5942:2;5938:13;5934:27;5924:55;;5975:1;5972;5965:12;5924:55;6011:2;5998:16;6033:2;6029;6026:10;6023:36;;;6039:18;;:::i;:::-;6114:2;6108:9;6082:2;6168:13;;-1:-1:-1;;6164:22:1;;;6188:2;6160:31;6156:40;6144:53;;;6212:18;;;6232:22;;;6209:46;6206:72;;;6258:18;;:::i;:::-;6298:10;6294:2;6287:22;6333:2;6325:6;6318:18;6373:7;6368:2;6363;6359;6355:11;6351:20;6348:33;6345:53;;;6394:1;6391;6384:12;6345:53;6450:2;6445;6441;6437:11;6432:2;6424:6;6420:15;6407:46;6495:1;6490:2;6485;6477:6;6473:15;6469:24;6462:35;6516:6;6506:16;;;;;;;5390:1138;;;;;;;:::o;6533:348::-;6585:8;6595:6;6649:3;6642:4;6634:6;6630:17;6626:27;6616:55;;6667:1;6664;6657:12;6616:55;-1:-1:-1;6690:20:1;;6733:18;6722:30;;6719:50;;;6765:1;6762;6755:12;6719:50;6802:4;6794:6;6790:17;6778:29;;6854:3;6847:4;6838:6;6830;6826:19;6822:30;6819:39;6816:59;;;6871:1;6868;6861:12;6886:721;6978:6;6986;6994;7002;7055:2;7043:9;7034:7;7030:23;7026:32;7023:52;;;7071:1;7068;7061:12;7023:52;7111:9;7098:23;7140:18;7181:2;7173:6;7170:14;7167:34;;;7197:1;7194;7187:12;7167:34;7236:59;7287:7;7278:6;7267:9;7263:22;7236:59;:::i;:::-;7314:8;;-1:-1:-1;7210:85:1;-1:-1:-1;7402:2:1;7387:18;;7374:32;;-1:-1:-1;7418:16:1;;;7415:36;;;7447:1;7444;7437:12;7415:36;;7486:61;7539:7;7528:8;7517:9;7513:24;7486:61;:::i;7612:260::-;7680:6;7688;7741:2;7729:9;7720:7;7716:23;7712:32;7709:52;;;7757:1;7754;7747:12;7709:52;7780:29;7799:9;7780:29;:::i;:::-;7770:39;;7828:38;7862:2;7851:9;7847:18;7828:38;:::i;:::-;7818:48;;7612:260;;;;;:::o;7877:356::-;8079:2;8061:21;;;8098:18;;;8091:30;8157:34;8152:2;8137:18;;8130:62;8224:2;8209:18;;7877:356::o;8238:380::-;8317:1;8313:12;;;;8360;;;8381:61;;8435:4;8427:6;8423:17;8413:27;;8381:61;8488:2;8480:6;8477:14;8457:18;8454:38;8451:161;;;8534:10;8529:3;8525:20;8522:1;8515:31;8569:4;8566:1;8559:15;8597:4;8594:1;8587:15;8451:161;;8238:380;;;:::o;10269:127::-;10330:10;10325:3;10321:20;10318:1;10311:31;10361:4;10358:1;10351:15;10385:4;10382:1;10375:15;10401:135;10440:3;-1:-1:-1;;10461:17:1;;10458:43;;;10481:18;;:::i;:::-;-1:-1:-1;10528:1:1;10517:13;;10401:135::o;11702:128::-;11742:3;11773:1;11769:6;11766:1;11763:13;11760:39;;;11779:18;;:::i;:::-;-1:-1:-1;11815:9:1;;11702:128::o;13107:125::-;13147:4;13175:1;13172;13169:8;13166:34;;;13180:18;;:::i;:::-;-1:-1:-1;13217:9:1;;13107:125::o;15032:127::-;15093:10;15088:3;15084:20;15081:1;15074:31;15124:4;15121:1;15114:15;15148:4;15145:1;15138:15;15511:127;15572:10;15567:3;15563:20;15560:1;15553:31;15603:4;15600:1;15593:15;15627:4;15624:1;15617:15;15643:120;15683:1;15709;15699:35;;15714:18;;:::i;:::-;-1:-1:-1;15748:9:1;;15643:120::o;15768:112::-;15800:1;15826;15816:35;;15831:18;;:::i;:::-;-1:-1:-1;15865:9:1;;15768:112::o;15885:415::-;16087:2;16069:21;;;16126:2;16106:18;;;16099:30;16165:34;16160:2;16145:18;;16138:62;-1:-1:-1;;;16231:2:1;16216:18;;16209:49;16290:3;16275:19;;15885:415::o;17124:973::-;17209:12;;17174:3;;17264:1;17284:18;;;;17337;;;;17364:61;;17418:4;17410:6;17406:17;17396:27;;17364:61;17444:2;17492;17484:6;17481:14;17461:18;17458:38;17455:161;;;17538:10;17533:3;17529:20;17526:1;17519:31;17573:4;17570:1;17563:15;17601:4;17598:1;17591:15;17455:161;17632:18;17659:104;;;;17777:1;17772:319;;;;17625:466;;17659:104;-1:-1:-1;;17692:24:1;;17680:37;;17737:16;;;;-1:-1:-1;17659:104:1;;17772:319;17071:1;17064:14;;;17108:4;17095:18;;17866:1;17880:165;17894:6;17891:1;17888:13;17880:165;;;17972:14;;17959:11;;;17952:35;18015:16;;;;17909:10;;17880:165;;;17884:3;;18074:6;18069:3;18065:16;18058:23;;17625:466;;;;;;;17124:973;;;;:::o;18102:456::-;18323:3;18351:38;18385:3;18377:6;18351:38;:::i;:::-;18418:6;18412:13;18434:52;18479:6;18475:2;18468:4;18460:6;18456:17;18434:52;:::i;:::-;18502:50;18544:6;18540:2;18536:15;18528:6;18502:50;:::i;:::-;18495:57;18102:456;-1:-1:-1;;;;;;;18102:456:1:o;20202:246::-;20242:4;-1:-1:-1;;;;;20355:10:1;;;;20325;;20377:12;;;20374:38;;;20392:18;;:::i;:::-;20429:13;;20202:246;-1:-1:-1;;;20202:246:1:o;20453:253::-;20493:3;-1:-1:-1;;;;;20582:2:1;20579:1;20575:10;20612:2;20609:1;20605:10;20643:3;20639:2;20635:12;20630:3;20627:21;20624:47;;;20651:18;;:::i;:::-;20687:13;;20453:253;-1:-1:-1;;;;20453:253:1:o;22001:168::-;22041:7;22107:1;22103;22099:6;22095:14;22092:1;22089:21;22084:1;22077:9;22070:17;22066:45;22063:71;;;22114:18;;:::i;:::-;-1:-1:-1;22154:9:1;;22001:168::o;22933:136::-;22972:3;23000:5;22990:39;;23009:18;;:::i;:::-;-1:-1:-1;;;23045:18:1;;22933:136::o;23490:489::-;-1:-1:-1;;;;;23759:15:1;;;23741:34;;23811:15;;23806:2;23791:18;;23784:43;23858:2;23843:18;;23836:34;;;23906:3;23901:2;23886:18;;23879:31;;;23684:4;;23927:46;;23953:19;;23945:6;23927:46;:::i;:::-;23919:54;23490:489;-1:-1:-1;;;;;;23490:489:1:o;23984:249::-;24053:6;24106:2;24094:9;24085:7;24081:23;24077:32;24074:52;;;24122:1;24119;24112:12;24074:52;24154:9;24148:16;24173:30;24197:5;24173:30;:::i

Swarm Source

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