ETH Price: $3,416.51 (-0.65%)
Gas: 2 Gwei

Token

Treeverse (TRV)
 

Overview

Max Total Supply

10,420 TRV

Holders

3,246

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
weston.eth
Balance
1 TRV
0xb39fF833f6B42D474Bc649E3f435856c8F0CB426
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Treeverse is a pixel-themed metaverse that strives to replace social platforms for NFT chatter and start gamifying the experience.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Treeverse

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-31
*/

// Sources flattened with hardhat v2.1.2 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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/contracts/utils/[email protected]


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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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


// File contracts/Treeverse.sol

pragma solidity ^0.8.0;



contract Treeverse is ERC721Enumerable, Ownable {

    using Strings for uint256;

    struct Collection {
        uint128 tokenPriceInWei;
        uint32 tokensMinted;
        uint32 maxTokensAvailable;
        uint32 collectionNumber;
        bool created;
        bool locked; 
        bool active; 
        string name;
        string description;
        string baseURI;
    }

    mapping(uint256 => Collection) public collections;

    uint256 constant ONE_MILLION = 1_000_000;
    uint256 public nextCollectionNumber = 1;
    string public customURI;

    constructor(string memory _customURI) ERC721("Treeverse", "TRV"){
        customURI = _customURI;
    }

    modifier ifCollectionExists(uint256 _collectionNumber) {
        require(collections[_collectionNumber].created, "Collection has not been created yet");
        _;
    }

    modifier ifCollectionActive(uint256 _collectionNumber) {
        require(collections[_collectionNumber].active, "The collection is not active");
        _;
    }
    
    modifier ifCollectionNotLocked(uint256 _collectionNumber){
        require(!collections[_collectionNumber].locked, "The collection is locked");
        _;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function createCollection(
        string memory _name, 
        string memory _description, 
        string memory _collectionBaseURI, 
        uint128 _tokenPriceInWei, 
        uint32 _maxTokensAvailable,
        uint32 _collectionNumber
        ) public onlyOwner
    {   

        require(!collections[_collectionNumber].created, "A collection with this collection number already exists");
        require(_maxTokensAvailable < ONE_MILLION, "The maximum number of tokens available per collection must be less than 1 million");
        require(_collectionNumber == nextCollectionNumber, "You are trying to create a collection that doesn't match the nextCollectionNumber");
        Collection memory newCollection = Collection({
            name: _name,
            description: _description,
            baseURI: _collectionBaseURI,
            tokenPriceInWei: _tokenPriceInWei,
            maxTokensAvailable: _maxTokensAvailable,
            collectionNumber: _collectionNumber,
            created: true, 
            locked: false,
            active: false,
            tokensMinted: 0
        });
        collections[nextCollectionNumber++] = newCollection;
    }

    function changeName(uint256 _collectionNumber, string memory _name) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber)  {
        collections[_collectionNumber].name = _name;
    }

    function changeDescription(uint256 _collectionNumber, string memory _description) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber) {
        collections[_collectionNumber].description = _description;
    }

    function changeBaseURI(uint256 _collectionNumber, string memory _collectionBaseURI) public onlyOwner ifCollectionExists(_collectionNumber)  ifCollectionNotLocked(_collectionNumber){
        collections[_collectionNumber].baseURI = _collectionBaseURI;
    }

    function changeTokenPriceInWei(uint256 _collectionNumber, uint128 _tokenPriceInWei) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber) {
        collections[_collectionNumber].tokenPriceInWei = _tokenPriceInWei;
    }

    function changeMaxTokensAvailable(uint256 _collectionNumber, uint32 _maxTokensAvailable) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber) {
        collections[_collectionNumber].maxTokensAvailable = _maxTokensAvailable;
    }

    function lockCollection(uint256 _collectionNumber) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber) {
        collections[_collectionNumber].locked = true;
    }

    function toggleActive(uint256 _collectionNumber) public onlyOwner ifCollectionExists(_collectionNumber) ifCollectionNotLocked(_collectionNumber) {
        collections[_collectionNumber].active = !collections[_collectionNumber].active;
    }

    function purchaseNft(uint256 _collectionNumber, uint256 _quantity)
        public
        payable
        ifCollectionExists(_collectionNumber)
        ifCollectionActive(_collectionNumber)
        ifCollectionNotLocked(_collectionNumber)
    {
        require(_quantity > 0 ,  "Number of tokens to purchase must be greater than 0");
        Collection storage collection = collections[_collectionNumber];

        require(collection.tokensMinted + _quantity <= collection.maxTokensAvailable, "This transaction would exceed the maximum number of tokens in this collection");
        require(msg.value == _quantity * collection.tokenPriceInWei, "You did not send the correct amount of ether");
        for(uint256 i=0; i< _quantity; i++){
            _mintNft(msg.sender, _collectionNumber);
        }
    }
    
    function devMint(uint256 _collectionNumber, address _to, uint256 _quantity)
        public
        onlyOwner
        ifCollectionExists(_collectionNumber)
        ifCollectionNotLocked(_collectionNumber)
    {  
        require(_quantity > 0 ,  "Number of tokens to mint must be greater than 0");
        Collection storage collection = collections[_collectionNumber];
        require(collection.tokensMinted + _quantity <= collection.maxTokensAvailable, "This transaction would exceed the maximum number of tokens in this collection");
        for(uint256 i=0; i< _quantity; i++){
            _mintNft(_to, _collectionNumber);
        }
    }

    function _mintNft(address _to, uint256 _collectionNumber) internal{
        uint256 tokenIdToMint = (_collectionNumber * ONE_MILLION) + (++collections[_collectionNumber].tokensMinted);
        _safeMint(_to, tokenIdToMint);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = collections[_tokenId/ONE_MILLION].baseURI;
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, _tokenId.toString()))
            : '';
    }

    function changeCustomURI(string memory _newUri) public onlyOwner {
        customURI = _newUri;
    }

    function customTokenURI(uint256 _tokenId) public view returns (string memory){
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(customURI).length > 0
            ? string(abi.encodePacked(customURI, _tokenId.toString()))
            : '';
    }

    function getOwnedTokenIds(address _owner) public view returns(uint256[] memory tokenIds) {
        uint256 balanceOfOwner = balanceOf(_owner);

        tokenIds = new uint256[](balanceOfOwner);
            
        for(uint256 index = 0; index < balanceOfOwner; index++){
            tokenIds[index] = tokenOfOwnerByIndex(_owner, index);
        }
    }

    function getTokenIdsInCollection(uint256 _collectionNumber) public view returns(uint256[] memory tokenIds) {

        Collection storage collection = collections[_collectionNumber];
        require(collection.created, "Collection does not exist");

        uint256 totalMinted = collection.tokensMinted;

        tokenIds = new uint256[](totalMinted);

        for(uint256 index=0; index < totalMinted; index++){
            tokenIds[index] = (_collectionNumber * ONE_MILLION) + index + 1;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_customURI","type":"string"}],"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":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"string","name":"_collectionBaseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"changeCustomURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"changeDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"uint32","name":"_maxTokensAvailable","type":"uint32"}],"name":"changeMaxTokensAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"uint128","name":"_tokenPriceInWei","type":"uint128"}],"name":"changeTokenPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"uint128","name":"tokenPriceInWei","type":"uint128"},{"internalType":"uint32","name":"tokensMinted","type":"uint32"},{"internalType":"uint32","name":"maxTokensAvailable","type":"uint32"},{"internalType":"uint32","name":"collectionNumber","type":"uint32"},{"internalType":"bool","name":"created","type":"bool"},{"internalType":"bool","name":"locked","type":"bool"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_description","type":"string"},{"internalType":"string","name":"_collectionBaseURI","type":"string"},{"internalType":"uint128","name":"_tokenPriceInWei","type":"uint128"},{"internalType":"uint32","name":"_maxTokensAvailable","type":"uint32"},{"internalType":"uint32","name":"_collectionNumber","type":"uint32"}],"name":"createCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"customTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"customURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnedTokenIds","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"}],"name":"getTokenIdsInCollection","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"}],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextCollectionNumber","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":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"purchaseNft","outputs":[],"stateMutability":"payable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionNumber","type":"uint256"}],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526001600c553480156200001657600080fd5b50604051620039d8380380620039d88339810160408190526200003991620001c5565b604080518082018252600981526854726565766572736560b81b6020808301918252835180850190945260038452622a292b60e91b90840152815191929162000085916000916200011f565b5080516200009b9060019060208401906200011f565b5050506000620000b06200011b60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516200011390600d9060208401906200011f565b5050620002f4565b3390565b8280546200012d90620002a1565b90600052602060002090601f0160209004810192826200015157600085556200019c565b82601f106200016c57805160ff19168380011785556200019c565b828001600101855582156200019c579182015b828111156200019c5782518255916020019190600101906200017f565b50620001aa929150620001ae565b5090565b5b80821115620001aa5760008155600101620001af565b60006020808385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b818501915085601f8301126200020657600080fd5b8151818111156200021b576200021b620002de565b604051601f8201601f19908116603f01168101908382118183101715620002465762000246620002de565b8160405282815288868487010111156200025f57600080fd5b600093505b8284101562000283578484018601518185018701529285019262000264565b82841115620002955760008684830101525b98975050505050505050565b600181811c90821680620002b657607f821691505b60208210811415620002d857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6136d480620003046000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d883421f1161006f578063d883421f14610617578063de6a06ed14610637578063e985e9c514610657578063f2fde38b146106a0578063fdbda0ec146106c057600080fd5b8063b88d4fde14610577578063c39cbef114610597578063c87b56dd146105b7578063c92926fc146105d7578063cbd8e12f146105f757600080fd5b80638da5cb5b116100f25780638da5cb5b146104f157806395d89b411461050f578063a22cb46514610524578063a240989514610544578063b1a1e2f81461055757600080fd5b8063715018a6146104865780637b9a93231461049b5780637ec21e3c146104b15780637f4258e7146104d157600080fd5b80633ccfd60b116101a65780634f6ccce7116101755780634f6ccce7146103e65780634fac7e41146104065780635fbcf275146104265780636352211e1461044657806370a082311461046657600080fd5b80633ccfd60b1461036f57806341c4c8031461038457806342842e0e1461039957806349521284146103b957600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102ef57806329abd80d1461030f5780632f745c591461032f5780633a0a60c91461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612e8c565b6106f6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610721565b60405161024b9190613240565b34801561028257600080fd5b50610296610291366004612fb4565b6107b3565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612e62565b61084d565b005b3480156102dc57600080fd5b506008545b60405190815260200161024b565b3480156102fb57600080fd5b506102ce61030a366004612d6e565b610963565b34801561031b57600080fd5b5061026961032a366004612fb4565b610994565b34801561033b57600080fd5b506102e161034a366004612e62565b610a27565b34801561035b57600080fd5b506102ce61036a366004612ec6565b610abd565b34801561037b57600080fd5b506102ce610afe565b34801561039057600080fd5b50610269610b57565b3480156103a557600080fd5b506102ce6103b4366004612d6e565b610be5565b3480156103c557600080fd5b506103d96103d4366004612fb4565b610c00565b60405161024b91906131fc565b3480156103f257600080fd5b506102e1610401366004612fb4565b610d23565b34801561041257600080fd5b506103d9610421366004612d20565b610db6565b34801561043257600080fd5b506102ce610441366004612fcd565b610e55565b34801561045257600080fd5b50610296610461366004612fb4565b610fd6565b34801561047257600080fd5b506102e1610481366004612d20565b61104d565b34801561049257600080fd5b506102ce6110d4565b3480156104a757600080fd5b506102e1600c5481565b3480156104bd57600080fd5b506102ce6104cc366004613039565b611148565b3480156104dd57600080fd5b506102ce6104ec366004612fb4565b61121a565b3480156104fd57600080fd5b50600a546001600160a01b0316610296565b34801561051b57600080fd5b506102696112d6565b34801561053057600080fd5b506102ce61053f366004612e26565b6112e5565b6102ce61055236600461305c565b6113aa565b34801561056357600080fd5b506102ce61057236600461307e565b6115db565b34801561058357600080fd5b506102ce610592366004612daa565b6116a9565b3480156105a357600080fd5b506102ce6105b2366004612ff2565b6116e1565b3480156105c357600080fd5b506102696105d2366004612fb4565b6117a6565b3480156105e357600080fd5b506102ce6105f2366004612ff2565b6118db565b34801561060357600080fd5b506102ce610612366004612fb4565b611999565b34801561062357600080fd5b506102ce610632366004612efb565b611a61565b34801561064357600080fd5b506102ce610652366004612ff2565b611e07565b34801561066357600080fd5b5061023f610672366004612d3b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102ce6106bb366004612d20565b611ec5565b3480156106cc57600080fd5b506106e06106db366004612fb4565b611fb0565b60405161024b9a99989796959493929190613467565b60006001600160e01b0319821663780e9d6360e01b148061071b575061071b826121c1565b92915050565b60606000805461073090613589565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90613589565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085882610fd6565b9050806001600160a01b0316836001600160a01b031614156108c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610828565b336001600160a01b03821614806108e257506108e28133610672565b6109545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610828565b61095e8383612211565b505050565b61096d338261227f565b6109895760405162461bcd60e51b81526004016108289061339c565b61095e838383612376565b6000818152600260205260409020546060906001600160a01b03166109cb5760405162461bcd60e51b81526004016108289061334d565b6000600d80546109da90613589565b9050116109f6576040518060200160405280600081525061071b565b600d610a0183612521565b604051602001610a12929190613118565b60405160208183030381529060405292915050565b6000610a328361104d565b8210610a945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610828565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae75760405162461bcd60e51b815260040161082890613318565b8051610afa90600d906020840190612baa565b5050565b600a546001600160a01b03163314610b285760405162461bcd60e51b815260040161082890613318565b6040514790339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b600d8054610b6490613589565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9090613589565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b505050505081565b61095e838383604051806020016040528060008152506116a9565b6000818152600b60205260409020805460609190600160e01b900460ff16610c6a5760405162461bcd60e51b815260206004820152601960248201527f436f6c6c656374696f6e20646f6573206e6f74206578697374000000000000006044820152606401610828565b8054600160801b900463ffffffff168067ffffffffffffffff811115610c9257610c9261366f565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50925060005b81811015610d1b5780610cd7620f424087613527565b610ce191906134fb565b610cec9060016134fb565b848281518110610cfe57610cfe613659565b602090810291909101015280610d13816135c4565b915050610cc1565b505050919050565b6000610d2e60085490565b8210610d915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610828565b60088281548110610da457610da4613659565b90600052602060002001549050919050565b60606000610dc38361104d565b90508067ffffffffffffffff811115610dde57610dde61366f565b604051908082528060200260200182016040528015610e07578160200160208202803683370190505b50915060005b81811015610e4e57610e1f8482610a27565b838281518110610e3157610e31613659565b602090810291909101015280610e46816135c4565b915050610e0d565b5050919050565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b815260040161082890613318565b6000838152600b60205260409020548390600160e01b900460ff16610eb65760405162461bcd60e51b8152600401610828906133ed565b6000848152600b60205260409020548490600160e81b900460ff1615610eee5760405162461bcd60e51b815260040161082890613430565b60008311610f565760405162461bcd60e51b815260206004820152602f60248201527f4e756d626572206f6620746f6b656e7320746f206d696e74206d75737420626560448201526e02067726561746572207468616e203608c1b6064820152608401610828565b6000858152600b60205260409020805463ffffffff600160a01b8204811691610f88918791600160801b9004166134fb565b1115610fa65760405162461bcd60e51b8152600401610828906132a5565b60005b84811015610fcd57610fbb868861261f565b80610fc5816135c4565b915050610fa9565b50505050505050565b6000818152600260205260408120546001600160a01b03168061071b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610828565b60006001600160a01b0382166110b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610828565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110fe5760405162461bcd60e51b815260040161082890613318565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111725760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff166111a95760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156111e15760405162461bcd60e51b815260040161082890613430565b50506000918252600b602052604090912080546fffffffffffffffffffffffffffffffff19166001600160801b03909216919091179055565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161082890613318565b6000818152600b60205260409020548190600160e01b900460ff1661127b5760405162461bcd60e51b8152600401610828906133ed565b6000828152600b60205260409020548290600160e81b900460ff16156112b35760405162461bcd60e51b815260040161082890613430565b50506000908152600b60205260409020805460ff60e81b1916600160e81b179055565b60606001805461073090613589565b6001600160a01b03821633141561133e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610828565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000828152600b60205260409020548290600160e01b900460ff166113e15760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160f01b900460ff166114485760405162461bcd60e51b815260206004820152601c60248201527f54686520636f6c6c656374696f6e206973206e6f7420616374697665000000006044820152606401610828565b6000848152600b60205260409020548490600160e81b900460ff16156114805760405162461bcd60e51b815260040161082890613430565b600084116114ec5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e7320746f207075726368617365206d75736044820152720742062652067726561746572207468616e203606c1b6064820152608401610828565b6000858152600b60205260409020805463ffffffff600160a01b820481169161151e918891600160801b9004166134fb565b111561153c5760405162461bcd60e51b8152600401610828906132a5565b8054611551906001600160801b031686613527565b34146115b45760405162461bcd60e51b815260206004820152602c60248201527f596f7520646964206e6f742073656e642074686520636f727265637420616d6f60448201526b3ab73a1037b31032ba3432b960a11b6064820152608401610828565b60005b85811015610fcd576115c9338861261f565b806115d3816135c4565b9150506115b7565b600a546001600160a01b031633146116055760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff1661163c5760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156116745760405162461bcd60e51b815260040161082890613430565b50506000918252600b6020526040909120805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b6116b3338361227f565b6116cf5760405162461bcd60e51b81526004016108289061339c565b6116db84848484612687565b50505050565b600a546001600160a01b0316331461170b5760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff166117425760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff161561177a5760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600190920191860190612baa565b5050505050565b6000818152600260205260409020546060906001600160a01b03166117dd5760405162461bcd60e51b81526004016108289061334d565b6000600b816117ef620f424086613513565b8152602001908152602001600020600301805461180b90613589565b80601f016020809104026020016040519081016040528092919081815260200182805461183790613589565b80156118845780601f1061185957610100808354040283529160200191611884565b820191906000526020600020905b81548152906001019060200180831161186757829003601f168201915b5050505050905060008151116118a957604051806020016040528060008152506118d4565b806118b384612521565b6040516020016118c49291906130e9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119055760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff1661193c5760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156119745760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600390920191860190612baa565b600a546001600160a01b031633146119c35760405162461bcd60e51b815260040161082890613318565b6000818152600b60205260409020548190600160e01b900460ff166119fa5760405162461bcd60e51b8152600401610828906133ed565b6000828152600b60205260409020548290600160e81b900460ff1615611a325760405162461bcd60e51b815260040161082890613430565b50506000908152600b60205260409020805460ff60f01b198116600160f01b9182900460ff1615909102179055565b600a546001600160a01b03163314611a8b5760405162461bcd60e51b815260040161082890613318565b63ffffffff81166000908152600b6020526040902054600160e01b900460ff1615611b1e5760405162461bcd60e51b815260206004820152603760248201527f4120636f6c6c656374696f6e2077697468207468697320636f6c6c656374696f60448201527f6e206e756d62657220616c7265616479206578697374730000000000000000006064820152608401610828565b620f42408263ffffffff1610611bb65760405162461bcd60e51b815260206004820152605160248201527f546865206d6178696d756d206e756d626572206f6620746f6b656e732061766160448201527f696c61626c652070657220636f6c6c656374696f6e206d757374206265206c6560648201527039b9903a3430b710189036b4b63634b7b760791b608482015260a401610828565b600c548163ffffffff1614611c4d5760405162461bcd60e51b815260206004820152605160248201527f596f752061726520747279696e6720746f20637265617465206120636f6c6c6560448201527f6374696f6e207468617420646f65736e2774206d6174636820746865206e65786064820152703a21b7b63632b1ba34b7b7273ab6b132b960791b608482015260a401610828565b60408051610140810182526001600160801b038516815260006020820181905263ffffffff8581169383019390935291831660608201526001608082015260a0810182905260c0810182905260e0810188905261010081018790526101208101869052600c805491928392600b9282611cc5836135c4565b90915550815260208082019290925260409081016000208351815485850151938601516060870151608088015160a089015160c08a01511515600160f01b0260ff60f01b19911515600160e81b0260ff60e81b19931515600160e01b029390931661ffff60e01b1963ffffffff958616600160c01b0263ffffffff60c01b19978716600160a01b029790971667ffffffffffffffff60a01b1996909b16600160801b026001600160a01b03199098166001600160801b0390991698909817969096179390931697909717929092179390931691909117179290921691909117815560e083015180519192611dc192600185019290910190612baa565b506101008201518051611dde916002840191602090910190612baa565b506101208201518051611dfb916003840191602090910190612baa565b50505050505050505050565b600a546001600160a01b03163314611e315760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff16611e685760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff1615611ea05760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600290920191860190612baa565b600a546001600160a01b03163314611eef5760405162461bcd60e51b815260040161082890613318565b6001600160a01b038116611f545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600b60205260009081526040902080546001820180546001600160801b0383169363ffffffff600160801b8504811694600160a01b8104821694600160c01b82049092169360ff600160e01b8304811694600160e81b8404821694600160f01b90940490911692909161202290613589565b80601f016020809104026020016040519081016040528092919081815260200182805461204e90613589565b801561209b5780601f106120705761010080835404028352916020019161209b565b820191906000526020600020905b81548152906001019060200180831161207e57829003601f168201915b5050505050908060020180546120b090613589565b80601f01602080910402602001604051908101604052809291908181526020018280546120dc90613589565b80156121295780601f106120fe57610100808354040283529160200191612129565b820191906000526020600020905b81548152906001019060200180831161210c57829003601f168201915b50505050509080600301805461213e90613589565b80601f016020809104026020016040519081016040528092919081815260200182805461216a90613589565b80156121b75780601f1061218c576101008083540402835291602001916121b7565b820191906000526020600020905b81548152906001019060200180831161219a57829003601f168201915b505050505090508a565b60006001600160e01b031982166380ac58cd60e01b14806121f257506001600160e01b03198216635b5e139f60e01b145b8061071b57506301ffc9a760e01b6001600160e01b031983161461071b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061224682610fd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b600061230383610fd6565b9050806001600160a01b0316846001600160a01b0316148061233e5750836001600160a01b0316612333846107b3565b6001600160a01b0316145b8061236e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661238982610fd6565b6001600160a01b0316146123f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610828565b6001600160a01b0382166124535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610828565b61245e8383836126ba565b612469600082612211565b6001600160a01b0383166000908152600360205260408120805460019290612492908490613546565b90915550506001600160a01b03821660009081526003602052604081208054600192906124c09084906134fb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816125455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561256f5780612559816135c4565b91506125689050600a83613513565b9150612549565b60008167ffffffffffffffff81111561258a5761258a61366f565b6040519080825280601f01601f1916602001820160405280156125b4576020820181803683370190505b5090505b841561236e576125c9600183613546565b91506125d6600a86613603565b6125e19060306134fb565b60f81b8183815181106125f6576125f6613659565b60200101906001600160f81b031916908160001a905350612618600a86613513565b94506125b8565b6000818152600b60205260408120805460109061264890600160801b900463ffffffff166135df565b825463ffffffff9182166101009390930a8381029202191617909155612671620f424084613527565b61267b91906134fb565b905061095e8382612772565b612692848484612376565b61269e8484848461278c565b6116db5760405162461bcd60e51b815260040161082890613253565b6001600160a01b0383166127155761271081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612738565b816001600160a01b0316836001600160a01b031614612738576127388382612899565b6001600160a01b03821661274f5761095e81612936565b826001600160a01b0316826001600160a01b03161461095e5761095e82826129e5565b610afa828260405180602001604052806000815250612a29565b60006001600160a01b0384163b1561288e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127d09033908990889088906004016131bf565b602060405180830381600087803b1580156127ea57600080fd5b505af192505050801561281a575060408051601f3d908101601f1916820190925261281791810190612ea9565b60015b612874573d808015612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b50805161286c5760405162461bcd60e51b815260040161082890613253565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061236e565b506001949350505050565b600060016128a68461104d565b6128b09190613546565b600083815260076020526040902054909150808214612903576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061294890600190613546565b6000838152600960205260408120546008805493945090928490811061297057612970613659565b90600052602060002001549050806008838154811061299157612991613659565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129c9576129c9613643565b6001900381819060005260206000200160009055905550505050565b60006129f08361104d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612a338383612a5c565b612a40600084848461278c565b61095e5760405162461bcd60e51b815260040161082890613253565b6001600160a01b038216612ab25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610828565b6000818152600260205260409020546001600160a01b031615612b175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610828565b612b23600083836126ba565b6001600160a01b0382166000908152600360205260408120805460019290612b4c9084906134fb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612bb690613589565b90600052602060002090601f016020900481019282612bd85760008555612c1e565b82601f10612bf157805160ff1916838001178555612c1e565b82800160010185558215612c1e579182015b82811115612c1e578251825591602001919060010190612c03565b50612c2a929150612c2e565b5090565b5b80821115612c2a5760008155600101612c2f565b600067ffffffffffffffff80841115612c5e57612c5e61366f565b604051601f8501601f19908116603f01168101908282118183101715612c8657612c8661366f565b81604052809350858152868686011115612c9f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612cd057600080fd5b919050565b600082601f830112612ce657600080fd5b6118d483833560208501612c43565b80356001600160801b0381168114612cd057600080fd5b803563ffffffff81168114612cd057600080fd5b600060208284031215612d3257600080fd5b6118d482612cb9565b60008060408385031215612d4e57600080fd5b612d5783612cb9565b9150612d6560208401612cb9565b90509250929050565b600080600060608486031215612d8357600080fd5b612d8c84612cb9565b9250612d9a60208501612cb9565b9150604084013590509250925092565b60008060008060808587031215612dc057600080fd5b612dc985612cb9565b9350612dd760208601612cb9565b925060408501359150606085013567ffffffffffffffff811115612dfa57600080fd5b8501601f81018713612e0b57600080fd5b612e1a87823560208401612c43565b91505092959194509250565b60008060408385031215612e3957600080fd5b612e4283612cb9565b915060208301358015158114612e5757600080fd5b809150509250929050565b60008060408385031215612e7557600080fd5b612e7e83612cb9565b946020939093013593505050565b600060208284031215612e9e57600080fd5b81356118d481613685565b600060208284031215612ebb57600080fd5b81516118d481613685565b600060208284031215612ed857600080fd5b813567ffffffffffffffff811115612eef57600080fd5b61236e84828501612cd5565b60008060008060008060c08789031215612f1457600080fd5b863567ffffffffffffffff80821115612f2c57600080fd5b612f388a838b01612cd5565b97506020890135915080821115612f4e57600080fd5b612f5a8a838b01612cd5565b96506040890135915080821115612f7057600080fd5b50612f7d89828a01612cd5565b945050612f8c60608801612cf5565b9250612f9a60808801612d0c565b9150612fa860a08801612d0c565b90509295509295509295565b600060208284031215612fc657600080fd5b5035919050565b600080600060608486031215612fe257600080fd5b83359250612d9a60208501612cb9565b6000806040838503121561300557600080fd5b82359150602083013567ffffffffffffffff81111561302357600080fd5b61302f85828601612cd5565b9150509250929050565b6000806040838503121561304c57600080fd5b82359150612d6560208401612cf5565b6000806040838503121561306f57600080fd5b50508035926020909101359150565b6000806040838503121561309157600080fd5b82359150612d6560208401612d0c565b600081518084526130b981602086016020860161355d565b601f01601f19169290920160200192915050565b600081516130df81856020860161355d565b9290920192915050565b600083516130fb81846020880161355d565b83519083019061310f81836020880161355d565b01949350505050565b600080845481600182811c91508083168061313457607f831692505b602080841082141561315457634e487b7160e01b86526022600452602486fd5b8180156131685760018114613179576131a6565b60ff198616895284890196506131a6565b60008b81526020902060005b8681101561319e5781548b820152908501908301613185565b505084890196505b5050505050506131b681856130cd565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131f2908301846130a1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561323457835183529284019291840191600101613218565b50909695505050505050565b6020815260006118d460208301846130a1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252604d908201527f54686973207472616e73616374696f6e20776f756c642065786365656420746860408201527f65206d6178696d756d206e756d626572206f6620746f6b656e7320696e20746860608201526c34b99031b7b63632b1ba34b7b760991b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f436f6c6c656374696f6e20686173206e6f74206265656e2063726561746564206040820152621e595d60ea1b606082015260800190565b60208082526018908201527f54686520636f6c6c656374696f6e206973206c6f636b65640000000000000000604082015260600190565b60006101406001600160801b038d16835263ffffffff808d166020850152808c166040850152808b16606085015250881515608084015287151560a084015286151560c08401528060e08401526134c0818401876130a1565b90508281036101008401526134d581866130a1565b90508281036101208401526134ea81856130a1565b9d9c50505050505050505050505050565b6000821982111561350e5761350e613617565b500190565b6000826135225761352261362d565b500490565b600081600019048311821515161561354157613541613617565b500290565b60008282101561355857613558613617565b500390565b60005b83811015613578578181015183820152602001613560565b838111156116db5750506000910152565b600181811c9082168061359d57607f821691505b602082108114156135be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135d8576135d8613617565b5060010190565b600063ffffffff808316818114156135f9576135f9613617565b6001019392505050565b6000826136125761361261362d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461369b57600080fd5b5056fea2646970667358221220982b9a960c40588f91d280e92c270f421638675f662fea9058cf33fc994b760264736f6c634300080600330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f7777772e7472656576657273652e6e65742f6170692f746f6b656e69642f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063d883421f1161006f578063d883421f14610617578063de6a06ed14610637578063e985e9c514610657578063f2fde38b146106a0578063fdbda0ec146106c057600080fd5b8063b88d4fde14610577578063c39cbef114610597578063c87b56dd146105b7578063c92926fc146105d7578063cbd8e12f146105f757600080fd5b80638da5cb5b116100f25780638da5cb5b146104f157806395d89b411461050f578063a22cb46514610524578063a240989514610544578063b1a1e2f81461055757600080fd5b8063715018a6146104865780637b9a93231461049b5780637ec21e3c146104b15780637f4258e7146104d157600080fd5b80633ccfd60b116101a65780634f6ccce7116101755780634f6ccce7146103e65780634fac7e41146104065780635fbcf275146104265780636352211e1461044657806370a082311461046657600080fd5b80633ccfd60b1461036f57806341c4c8031461038457806342842e0e1461039957806349521284146103b957600080fd5b806318160ddd116101ed57806318160ddd146102d057806323b872dd146102ef57806329abd80d1461030f5780632f745c591461032f5780633a0a60c91461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612e8c565b6106f6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610721565b60405161024b9190613240565b34801561028257600080fd5b50610296610291366004612fb4565b6107b3565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612e62565b61084d565b005b3480156102dc57600080fd5b506008545b60405190815260200161024b565b3480156102fb57600080fd5b506102ce61030a366004612d6e565b610963565b34801561031b57600080fd5b5061026961032a366004612fb4565b610994565b34801561033b57600080fd5b506102e161034a366004612e62565b610a27565b34801561035b57600080fd5b506102ce61036a366004612ec6565b610abd565b34801561037b57600080fd5b506102ce610afe565b34801561039057600080fd5b50610269610b57565b3480156103a557600080fd5b506102ce6103b4366004612d6e565b610be5565b3480156103c557600080fd5b506103d96103d4366004612fb4565b610c00565b60405161024b91906131fc565b3480156103f257600080fd5b506102e1610401366004612fb4565b610d23565b34801561041257600080fd5b506103d9610421366004612d20565b610db6565b34801561043257600080fd5b506102ce610441366004612fcd565b610e55565b34801561045257600080fd5b50610296610461366004612fb4565b610fd6565b34801561047257600080fd5b506102e1610481366004612d20565b61104d565b34801561049257600080fd5b506102ce6110d4565b3480156104a757600080fd5b506102e1600c5481565b3480156104bd57600080fd5b506102ce6104cc366004613039565b611148565b3480156104dd57600080fd5b506102ce6104ec366004612fb4565b61121a565b3480156104fd57600080fd5b50600a546001600160a01b0316610296565b34801561051b57600080fd5b506102696112d6565b34801561053057600080fd5b506102ce61053f366004612e26565b6112e5565b6102ce61055236600461305c565b6113aa565b34801561056357600080fd5b506102ce61057236600461307e565b6115db565b34801561058357600080fd5b506102ce610592366004612daa565b6116a9565b3480156105a357600080fd5b506102ce6105b2366004612ff2565b6116e1565b3480156105c357600080fd5b506102696105d2366004612fb4565b6117a6565b3480156105e357600080fd5b506102ce6105f2366004612ff2565b6118db565b34801561060357600080fd5b506102ce610612366004612fb4565b611999565b34801561062357600080fd5b506102ce610632366004612efb565b611a61565b34801561064357600080fd5b506102ce610652366004612ff2565b611e07565b34801561066357600080fd5b5061023f610672366004612d3b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102ce6106bb366004612d20565b611ec5565b3480156106cc57600080fd5b506106e06106db366004612fb4565b611fb0565b60405161024b9a99989796959493929190613467565b60006001600160e01b0319821663780e9d6360e01b148061071b575061071b826121c1565b92915050565b60606000805461073090613589565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90613589565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061085882610fd6565b9050806001600160a01b0316836001600160a01b031614156108c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610828565b336001600160a01b03821614806108e257506108e28133610672565b6109545760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610828565b61095e8383612211565b505050565b61096d338261227f565b6109895760405162461bcd60e51b81526004016108289061339c565b61095e838383612376565b6000818152600260205260409020546060906001600160a01b03166109cb5760405162461bcd60e51b81526004016108289061334d565b6000600d80546109da90613589565b9050116109f6576040518060200160405280600081525061071b565b600d610a0183612521565b604051602001610a12929190613118565b60405160208183030381529060405292915050565b6000610a328361104d565b8210610a945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610828565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae75760405162461bcd60e51b815260040161082890613318565b8051610afa90600d906020840190612baa565b5050565b600a546001600160a01b03163314610b285760405162461bcd60e51b815260040161082890613318565b6040514790339082156108fc029083906000818181858888f19350505050158015610afa573d6000803e3d6000fd5b600d8054610b6490613589565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9090613589565b8015610bdd5780601f10610bb257610100808354040283529160200191610bdd565b820191906000526020600020905b815481529060010190602001808311610bc057829003601f168201915b505050505081565b61095e838383604051806020016040528060008152506116a9565b6000818152600b60205260409020805460609190600160e01b900460ff16610c6a5760405162461bcd60e51b815260206004820152601960248201527f436f6c6c656374696f6e20646f6573206e6f74206578697374000000000000006044820152606401610828565b8054600160801b900463ffffffff168067ffffffffffffffff811115610c9257610c9261366f565b604051908082528060200260200182016040528015610cbb578160200160208202803683370190505b50925060005b81811015610d1b5780610cd7620f424087613527565b610ce191906134fb565b610cec9060016134fb565b848281518110610cfe57610cfe613659565b602090810291909101015280610d13816135c4565b915050610cc1565b505050919050565b6000610d2e60085490565b8210610d915760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610828565b60088281548110610da457610da4613659565b90600052602060002001549050919050565b60606000610dc38361104d565b90508067ffffffffffffffff811115610dde57610dde61366f565b604051908082528060200260200182016040528015610e07578160200160208202803683370190505b50915060005b81811015610e4e57610e1f8482610a27565b838281518110610e3157610e31613659565b602090810291909101015280610e46816135c4565b915050610e0d565b5050919050565b600a546001600160a01b03163314610e7f5760405162461bcd60e51b815260040161082890613318565b6000838152600b60205260409020548390600160e01b900460ff16610eb65760405162461bcd60e51b8152600401610828906133ed565b6000848152600b60205260409020548490600160e81b900460ff1615610eee5760405162461bcd60e51b815260040161082890613430565b60008311610f565760405162461bcd60e51b815260206004820152602f60248201527f4e756d626572206f6620746f6b656e7320746f206d696e74206d75737420626560448201526e02067726561746572207468616e203608c1b6064820152608401610828565b6000858152600b60205260409020805463ffffffff600160a01b8204811691610f88918791600160801b9004166134fb565b1115610fa65760405162461bcd60e51b8152600401610828906132a5565b60005b84811015610fcd57610fbb868861261f565b80610fc5816135c4565b915050610fa9565b50505050505050565b6000818152600260205260408120546001600160a01b03168061071b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610828565b60006001600160a01b0382166110b85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610828565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110fe5760405162461bcd60e51b815260040161082890613318565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146111725760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff166111a95760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156111e15760405162461bcd60e51b815260040161082890613430565b50506000918252600b602052604090912080546fffffffffffffffffffffffffffffffff19166001600160801b03909216919091179055565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161082890613318565b6000818152600b60205260409020548190600160e01b900460ff1661127b5760405162461bcd60e51b8152600401610828906133ed565b6000828152600b60205260409020548290600160e81b900460ff16156112b35760405162461bcd60e51b815260040161082890613430565b50506000908152600b60205260409020805460ff60e81b1916600160e81b179055565b60606001805461073090613589565b6001600160a01b03821633141561133e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610828565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000828152600b60205260409020548290600160e01b900460ff166113e15760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160f01b900460ff166114485760405162461bcd60e51b815260206004820152601c60248201527f54686520636f6c6c656374696f6e206973206e6f7420616374697665000000006044820152606401610828565b6000848152600b60205260409020548490600160e81b900460ff16156114805760405162461bcd60e51b815260040161082890613430565b600084116114ec5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e7320746f207075726368617365206d75736044820152720742062652067726561746572207468616e203606c1b6064820152608401610828565b6000858152600b60205260409020805463ffffffff600160a01b820481169161151e918891600160801b9004166134fb565b111561153c5760405162461bcd60e51b8152600401610828906132a5565b8054611551906001600160801b031686613527565b34146115b45760405162461bcd60e51b815260206004820152602c60248201527f596f7520646964206e6f742073656e642074686520636f727265637420616d6f60448201526b3ab73a1037b31032ba3432b960a11b6064820152608401610828565b60005b85811015610fcd576115c9338861261f565b806115d3816135c4565b9150506115b7565b600a546001600160a01b031633146116055760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff1661163c5760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156116745760405162461bcd60e51b815260040161082890613430565b50506000918252600b6020526040909120805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b6116b3338361227f565b6116cf5760405162461bcd60e51b81526004016108289061339c565b6116db84848484612687565b50505050565b600a546001600160a01b0316331461170b5760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff166117425760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff161561177a5760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600190920191860190612baa565b5050505050565b6000818152600260205260409020546060906001600160a01b03166117dd5760405162461bcd60e51b81526004016108289061334d565b6000600b816117ef620f424086613513565b8152602001908152602001600020600301805461180b90613589565b80601f016020809104026020016040519081016040528092919081815260200182805461183790613589565b80156118845780601f1061185957610100808354040283529160200191611884565b820191906000526020600020905b81548152906001019060200180831161186757829003601f168201915b5050505050905060008151116118a957604051806020016040528060008152506118d4565b806118b384612521565b6040516020016118c49291906130e9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146119055760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff1661193c5760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff16156119745760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600390920191860190612baa565b600a546001600160a01b031633146119c35760405162461bcd60e51b815260040161082890613318565b6000818152600b60205260409020548190600160e01b900460ff166119fa5760405162461bcd60e51b8152600401610828906133ed565b6000828152600b60205260409020548290600160e81b900460ff1615611a325760405162461bcd60e51b815260040161082890613430565b50506000908152600b60205260409020805460ff60f01b198116600160f01b9182900460ff1615909102179055565b600a546001600160a01b03163314611a8b5760405162461bcd60e51b815260040161082890613318565b63ffffffff81166000908152600b6020526040902054600160e01b900460ff1615611b1e5760405162461bcd60e51b815260206004820152603760248201527f4120636f6c6c656374696f6e2077697468207468697320636f6c6c656374696f60448201527f6e206e756d62657220616c7265616479206578697374730000000000000000006064820152608401610828565b620f42408263ffffffff1610611bb65760405162461bcd60e51b815260206004820152605160248201527f546865206d6178696d756d206e756d626572206f6620746f6b656e732061766160448201527f696c61626c652070657220636f6c6c656374696f6e206d757374206265206c6560648201527039b9903a3430b710189036b4b63634b7b760791b608482015260a401610828565b600c548163ffffffff1614611c4d5760405162461bcd60e51b815260206004820152605160248201527f596f752061726520747279696e6720746f20637265617465206120636f6c6c6560448201527f6374696f6e207468617420646f65736e2774206d6174636820746865206e65786064820152703a21b7b63632b1ba34b7b7273ab6b132b960791b608482015260a401610828565b60408051610140810182526001600160801b038516815260006020820181905263ffffffff8581169383019390935291831660608201526001608082015260a0810182905260c0810182905260e0810188905261010081018790526101208101869052600c805491928392600b9282611cc5836135c4565b90915550815260208082019290925260409081016000208351815485850151938601516060870151608088015160a089015160c08a01511515600160f01b0260ff60f01b19911515600160e81b0260ff60e81b19931515600160e01b029390931661ffff60e01b1963ffffffff958616600160c01b0263ffffffff60c01b19978716600160a01b029790971667ffffffffffffffff60a01b1996909b16600160801b026001600160a01b03199098166001600160801b0390991698909817969096179390931697909717929092179390931691909117179290921691909117815560e083015180519192611dc192600185019290910190612baa565b506101008201518051611dde916002840191602090910190612baa565b506101208201518051611dfb916003840191602090910190612baa565b50505050505050505050565b600a546001600160a01b03163314611e315760405162461bcd60e51b815260040161082890613318565b6000828152600b60205260409020548290600160e01b900460ff16611e685760405162461bcd60e51b8152600401610828906133ed565b6000838152600b60205260409020548390600160e81b900460ff1615611ea05760405162461bcd60e51b815260040161082890613430565b6000848152600b60209081526040909120845161179f92600290920191860190612baa565b600a546001600160a01b03163314611eef5760405162461bcd60e51b815260040161082890613318565b6001600160a01b038116611f545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600b60205260009081526040902080546001820180546001600160801b0383169363ffffffff600160801b8504811694600160a01b8104821694600160c01b82049092169360ff600160e01b8304811694600160e81b8404821694600160f01b90940490911692909161202290613589565b80601f016020809104026020016040519081016040528092919081815260200182805461204e90613589565b801561209b5780601f106120705761010080835404028352916020019161209b565b820191906000526020600020905b81548152906001019060200180831161207e57829003601f168201915b5050505050908060020180546120b090613589565b80601f01602080910402602001604051908101604052809291908181526020018280546120dc90613589565b80156121295780601f106120fe57610100808354040283529160200191612129565b820191906000526020600020905b81548152906001019060200180831161210c57829003601f168201915b50505050509080600301805461213e90613589565b80601f016020809104026020016040519081016040528092919081815260200182805461216a90613589565b80156121b75780601f1061218c576101008083540402835291602001916121b7565b820191906000526020600020905b81548152906001019060200180831161219a57829003601f168201915b505050505090508a565b60006001600160e01b031982166380ac58cd60e01b14806121f257506001600160e01b03198216635b5e139f60e01b145b8061071b57506301ffc9a760e01b6001600160e01b031983161461071b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061224682610fd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610828565b600061230383610fd6565b9050806001600160a01b0316846001600160a01b0316148061233e5750836001600160a01b0316612333846107b3565b6001600160a01b0316145b8061236e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661238982610fd6565b6001600160a01b0316146123f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610828565b6001600160a01b0382166124535760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610828565b61245e8383836126ba565b612469600082612211565b6001600160a01b0383166000908152600360205260408120805460019290612492908490613546565b90915550506001600160a01b03821660009081526003602052604081208054600192906124c09084906134fb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816125455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561256f5780612559816135c4565b91506125689050600a83613513565b9150612549565b60008167ffffffffffffffff81111561258a5761258a61366f565b6040519080825280601f01601f1916602001820160405280156125b4576020820181803683370190505b5090505b841561236e576125c9600183613546565b91506125d6600a86613603565b6125e19060306134fb565b60f81b8183815181106125f6576125f6613659565b60200101906001600160f81b031916908160001a905350612618600a86613513565b94506125b8565b6000818152600b60205260408120805460109061264890600160801b900463ffffffff166135df565b825463ffffffff9182166101009390930a8381029202191617909155612671620f424084613527565b61267b91906134fb565b905061095e8382612772565b612692848484612376565b61269e8484848461278c565b6116db5760405162461bcd60e51b815260040161082890613253565b6001600160a01b0383166127155761271081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612738565b816001600160a01b0316836001600160a01b031614612738576127388382612899565b6001600160a01b03821661274f5761095e81612936565b826001600160a01b0316826001600160a01b03161461095e5761095e82826129e5565b610afa828260405180602001604052806000815250612a29565b60006001600160a01b0384163b1561288e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127d09033908990889088906004016131bf565b602060405180830381600087803b1580156127ea57600080fd5b505af192505050801561281a575060408051601f3d908101601f1916820190925261281791810190612ea9565b60015b612874573d808015612848576040519150601f19603f3d011682016040523d82523d6000602084013e61284d565b606091505b50805161286c5760405162461bcd60e51b815260040161082890613253565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061236e565b506001949350505050565b600060016128a68461104d565b6128b09190613546565b600083815260076020526040902054909150808214612903576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061294890600190613546565b6000838152600960205260408120546008805493945090928490811061297057612970613659565b90600052602060002001549050806008838154811061299157612991613659565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129c9576129c9613643565b6001900381819060005260206000200160009055905550505050565b60006129f08361104d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612a338383612a5c565b612a40600084848461278c565b61095e5760405162461bcd60e51b815260040161082890613253565b6001600160a01b038216612ab25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610828565b6000818152600260205260409020546001600160a01b031615612b175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610828565b612b23600083836126ba565b6001600160a01b0382166000908152600360205260408120805460019290612b4c9084906134fb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612bb690613589565b90600052602060002090601f016020900481019282612bd85760008555612c1e565b82601f10612bf157805160ff1916838001178555612c1e565b82800160010185558215612c1e579182015b82811115612c1e578251825591602001919060010190612c03565b50612c2a929150612c2e565b5090565b5b80821115612c2a5760008155600101612c2f565b600067ffffffffffffffff80841115612c5e57612c5e61366f565b604051601f8501601f19908116603f01168101908282118183101715612c8657612c8661366f565b81604052809350858152868686011115612c9f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612cd057600080fd5b919050565b600082601f830112612ce657600080fd5b6118d483833560208501612c43565b80356001600160801b0381168114612cd057600080fd5b803563ffffffff81168114612cd057600080fd5b600060208284031215612d3257600080fd5b6118d482612cb9565b60008060408385031215612d4e57600080fd5b612d5783612cb9565b9150612d6560208401612cb9565b90509250929050565b600080600060608486031215612d8357600080fd5b612d8c84612cb9565b9250612d9a60208501612cb9565b9150604084013590509250925092565b60008060008060808587031215612dc057600080fd5b612dc985612cb9565b9350612dd760208601612cb9565b925060408501359150606085013567ffffffffffffffff811115612dfa57600080fd5b8501601f81018713612e0b57600080fd5b612e1a87823560208401612c43565b91505092959194509250565b60008060408385031215612e3957600080fd5b612e4283612cb9565b915060208301358015158114612e5757600080fd5b809150509250929050565b60008060408385031215612e7557600080fd5b612e7e83612cb9565b946020939093013593505050565b600060208284031215612e9e57600080fd5b81356118d481613685565b600060208284031215612ebb57600080fd5b81516118d481613685565b600060208284031215612ed857600080fd5b813567ffffffffffffffff811115612eef57600080fd5b61236e84828501612cd5565b60008060008060008060c08789031215612f1457600080fd5b863567ffffffffffffffff80821115612f2c57600080fd5b612f388a838b01612cd5565b97506020890135915080821115612f4e57600080fd5b612f5a8a838b01612cd5565b96506040890135915080821115612f7057600080fd5b50612f7d89828a01612cd5565b945050612f8c60608801612cf5565b9250612f9a60808801612d0c565b9150612fa860a08801612d0c565b90509295509295509295565b600060208284031215612fc657600080fd5b5035919050565b600080600060608486031215612fe257600080fd5b83359250612d9a60208501612cb9565b6000806040838503121561300557600080fd5b82359150602083013567ffffffffffffffff81111561302357600080fd5b61302f85828601612cd5565b9150509250929050565b6000806040838503121561304c57600080fd5b82359150612d6560208401612cf5565b6000806040838503121561306f57600080fd5b50508035926020909101359150565b6000806040838503121561309157600080fd5b82359150612d6560208401612d0c565b600081518084526130b981602086016020860161355d565b601f01601f19169290920160200192915050565b600081516130df81856020860161355d565b9290920192915050565b600083516130fb81846020880161355d565b83519083019061310f81836020880161355d565b01949350505050565b600080845481600182811c91508083168061313457607f831692505b602080841082141561315457634e487b7160e01b86526022600452602486fd5b8180156131685760018114613179576131a6565b60ff198616895284890196506131a6565b60008b81526020902060005b8681101561319e5781548b820152908501908301613185565b505084890196505b5050505050506131b681856130cd565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131f2908301846130a1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561323457835183529284019291840191600101613218565b50909695505050505050565b6020815260006118d460208301846130a1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252604d908201527f54686973207472616e73616374696f6e20776f756c642065786365656420746860408201527f65206d6178696d756d206e756d626572206f6620746f6b656e7320696e20746860608201526c34b99031b7b63632b1ba34b7b760991b608082015260a00190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526023908201527f436f6c6c656374696f6e20686173206e6f74206265656e2063726561746564206040820152621e595d60ea1b606082015260800190565b60208082526018908201527f54686520636f6c6c656374696f6e206973206c6f636b65640000000000000000604082015260600190565b60006101406001600160801b038d16835263ffffffff808d166020850152808c166040850152808b16606085015250881515608084015287151560a084015286151560c08401528060e08401526134c0818401876130a1565b90508281036101008401526134d581866130a1565b90508281036101208401526134ea81856130a1565b9d9c50505050505050505050505050565b6000821982111561350e5761350e613617565b500190565b6000826135225761352261362d565b500490565b600081600019048311821515161561354157613541613617565b500290565b60008282101561355857613558613617565b500390565b60005b83811015613578578181015183820152602001613560565b838111156116db5750506000910152565b600181811c9082168061359d57607f821691505b602082108114156135be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135d8576135d8613617565b5060010190565b600063ffffffff808316818114156135f9576135f9613617565b6001019392505050565b6000826136125761361261362d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461369b57600080fd5b5056fea2646970667358221220982b9a960c40588f91d280e92c270f421638675f662fea9058cf33fc994b760264736f6c63430008060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f7777772e7472656576657273652e6e65742f6170692f746f6b656e69642f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _customURI (string): https://www.treeverse.net/api/tokenid/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [2] : 68747470733a2f2f7777772e7472656576657273652e6e65742f6170692f746f
Arg [3] : 6b656e69642f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44278:7813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36761:237;;;;;;;;;;-1:-1:-1;36761:237:0;;;;;:::i;:::-;;:::i;:::-;;;10571:14:1;;10564:22;10546:41;;10534:2;10519:18;36761:237:0;;;;;;;;24941:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26408:221::-;;;;;;;;;;-1:-1:-1;26408:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9232:32:1;;;9214:51;;9202:2;9187:18;26408:221:0;9169:102:1;25938:404:0;;;;;;;;;;-1:-1:-1;25938:404:0;;;;;:::i;:::-;;:::i;:::-;;37414:113;;;;;;;;;;-1:-1:-1;37502:10:0;:17;37414:113;;;23976:25:1;;;23964:2;23949:18;37414:113:0;23931:76:1;27298:305:0;;;;;;;;;;-1:-1:-1;27298:305:0;;;;;:::i;:::-;;:::i;50886:308::-;;;;;;;;;;-1:-1:-1;50886:308:0;;;;;:::i;:::-;;:::i;37082:256::-;;;;;;;;;;-1:-1:-1;37082:256:0;;;;;:::i;:::-;;:::i;50775:103::-;;;;;;;;;;-1:-1:-1;50775:103:0;;;;;:::i;:::-;;:::i;45505:140::-;;;;;;;;;;;;;:::i;44833:23::-;;;;;;;;;;;;;:::i;27674:151::-;;;;;;;;;;-1:-1:-1;27674:151:0;;;;;:::i;:::-;;:::i;51571:517::-;;;;;;;;;;-1:-1:-1;51571:517:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37604:233::-;;;;;;;;;;-1:-1:-1;37604:233:0;;;;;:::i;:::-;;:::i;51202:361::-;;;;;;;;;;-1:-1:-1;51202:361:0;;;;;:::i;:::-;;:::i;49480:655::-;;;;;;;;;;-1:-1:-1;49480:655:0;;;;;:::i;:::-;;:::i;24635:239::-;;;;;;;;;;-1:-1:-1;24635:239:0;;;;;:::i;:::-;;:::i;24365:208::-;;;;;;;;;;-1:-1:-1;24365:208:0;;;;;:::i;:::-;;:::i;2822:148::-;;;;;;;;;;;;;:::i;44787:39::-;;;;;;;;;;;;;;;;47624:264;;;;;;;;;;-1:-1:-1;47624:264:0;;;;;:::i;:::-;;:::i;48179:210::-;;;;;;;;;;-1:-1:-1;48179:210:0;;;;;:::i;:::-;;:::i;2171:87::-;;;;;;;;;;-1:-1:-1;2244:6:0;;-1:-1:-1;;;;;2244:6:0;2171:87;;25110:104;;;;;;;;;;;;;:::i;26701:295::-;;;;;;;;;;-1:-1:-1;26701:295:0;;;;;:::i;:::-;;:::i;48647:821::-;;;;;;:::i;:::-;;:::i;47896:275::-;;;;;;;;;;-1:-1:-1;47896:275:0;;;;;:::i;:::-;;:::i;27896:285::-;;;;;;;;;;-1:-1:-1;27896:285:0;;;;;:::i;:::-;;:::i;46861:227::-;;;;;;;;;;-1:-1:-1;46861:227:0;;;;;:::i;:::-;;:::i;50383:384::-;;;;;;;;;;-1:-1:-1;50383:384:0;;;;;:::i;:::-;;:::i;47358:258::-;;;;;;;;;;-1:-1:-1;47358:258:0;;;;;:::i;:::-;;:::i;48397:242::-;;;;;;;;;;-1:-1:-1;48397:242:0;;;;;:::i;:::-;;:::i;45653:1200::-;;;;;;;;;;-1:-1:-1;45653:1200:0;;;;;:::i;:::-;;:::i;47096:254::-;;;;;;;;;;-1:-1:-1;47096:254:0;;;;;:::i;:::-;;:::i;27067:164::-;;;;;;;;;;-1:-1:-1;27067:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27188:25:0;;;27164:4;27188:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27067:164;3125:244;;;;;;;;;;-1:-1:-1;3125:244:0;;;;;:::i;:::-;;:::i;44682:49::-;;;;;;;;;;-1:-1:-1;44682:49:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;:::i;36761:237::-;36863:4;-1:-1:-1;;;;;;36887:50:0;;-1:-1:-1;;;36887:50:0;;:103;;;36954:36;36978:11;36954:23;:36::i;:::-;36880:110;36761:237;-1:-1:-1;;36761:237:0:o;24941:100::-;24995:13;25028:5;25021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24941:100;:::o;26408:221::-;26484:7;29737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29737:16:0;26504:73;;;;-1:-1:-1;;;26504:73:0;;18345:2:1;26504:73:0;;;18327:21:1;18384:2;18364:18;;;18357:30;18423:34;18403:18;;;18396:62;-1:-1:-1;;;18474:18:1;;;18467:42;18526:19;;26504:73:0;;;;;;;;;-1:-1:-1;26597:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26597:24:0;;26408:221::o;25938:404::-;26019:13;26035:23;26050:7;26035:14;:23::i;:::-;26019:39;;26083:5;-1:-1:-1;;;;;26077:11:0;:2;-1:-1:-1;;;;;26077:11:0;;;26069:57;;;;-1:-1:-1;;;26069:57:0;;20435:2:1;26069:57:0;;;20417:21:1;20474:2;20454:18;;;20447:30;20513:34;20493:18;;;20486:62;-1:-1:-1;;;20564:18:1;;;20557:31;20605:19;;26069:57:0;20407:223:1;26069:57:0;803:10;-1:-1:-1;;;;;26147:21:0;;;;:69;;-1:-1:-1;26172:44:0;26196:5;803:10;27067:164;:::i;26172:44::-;26139:161;;;;-1:-1:-1;;;26139:161:0;;15836:2:1;26139:161:0;;;15818:21:1;15875:2;15855:18;;;15848:30;15914:34;15894:18;;;15887:62;15985:26;15965:18;;;15958:54;16029:19;;26139:161:0;15808:246:1;26139:161:0;26313:21;26322:2;26326:7;26313:8;:21::i;:::-;26008:334;25938:404;;:::o;27298:305::-;27459:41;803:10;27492:7;27459:18;:41::i;:::-;27451:103;;;;-1:-1:-1;;;27451:103:0;;;;;;;:::i;:::-;27567:28;27577:4;27583:2;27587:7;27567:9;:28::i;50886:308::-;29713:4;29737:16;;;:7;:16;;;;;;50949:13;;-1:-1:-1;;;;;29737:16:0;50974:77;;;;-1:-1:-1;;;50974:77:0;;;;;;;:::i;:::-;51095:1;51075:9;51069:23;;;;;:::i;:::-;;;:27;:117;;;;;;;;;;;;;;;;;51136:9;51147:19;:8;:17;:19::i;:::-;51119:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51062:124;50886:308;-1:-1:-1;;50886:308:0:o;37082:256::-;37179:7;37215:23;37232:5;37215:16;:23::i;:::-;37207:5;:31;37199:87;;;;-1:-1:-1;;;37199:87:0;;11805:2:1;37199:87:0;;;11787:21:1;11844:2;11824:18;;;11817:30;11883:34;11863:18;;;11856:62;-1:-1:-1;;;11934:18:1;;;11927:41;11985:19;;37199:87:0;11777:233:1;37199:87:0;-1:-1:-1;;;;;;37304:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37082:256::o;50775:103::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;50851:19;;::::1;::::0;:9:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50775:103:::0;:::o;45505:140::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45600:37:::1;::::0;45568:21:::1;::::0;45608:10:::1;::::0;45600:37;::::1;;;::::0;45568:21;;45553:12:::1;45600:37:::0;45553:12;45600:37;45568:21;45608:10;45600:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;44833:23:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27674:151::-;27778:39;27795:4;27801:2;27805:7;27778:39;;;;;;;;;;;;:16;:39::i;51571:517::-;51691:29;51723:30;;;:11;:30;;;;;51772:18;;51651:25;;51723:30;-1:-1:-1;;;51772:18:0;;;;51764:56;;;;-1:-1:-1;;;51764:56:0;;13820:2:1;51764:56:0;;;13802:21:1;13859:2;13839:18;;;13832:30;13898:27;13878:18;;;13871:55;13943:18;;51764:56:0;13792:175:1;51764:56:0;51855:23;;-1:-1:-1;;;51855:23:0;;;;;51902:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51902:26:0;;51891:37;;51945:13;51941:140;51970:11;51962:5;:19;51941:140;;;52060:5;52025:31;44771:9;52025:17;:31;:::i;:::-;52024:41;;;;:::i;:::-;:45;;52068:1;52024:45;:::i;:::-;52006:8;52015:5;52006:15;;;;;;;;:::i;:::-;;;;;;;;;;:63;51983:7;;;;:::i;:::-;;;;51941:140;;;;51678:410;;51571:517;;;:::o;37604:233::-;37679:7;37715:30;37502:10;:17;;37414:113;37715:30;37707:5;:38;37699:95;;;;-1:-1:-1;;;37699:95:0;;22072:2:1;37699:95:0;;;22054:21:1;22111:2;22091:18;;;22084:30;22150:34;22130:18;;;22123:62;-1:-1:-1;;;22201:18:1;;;22194:42;22253:19;;37699:95:0;22044:234:1;37699:95:0;37812:10;37823:5;37812:17;;;;;;;;:::i;:::-;;;;;;;;;37805:24;;37604:233;;;:::o;51202:361::-;51264:25;51302:22;51327:17;51337:6;51327:9;:17::i;:::-;51302:42;;51382:14;51368:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51368:29:0;;51357:40;;51426:13;51422:134;51453:14;51445:5;:22;51422:134;;;51510:34;51530:6;51538:5;51510:19;:34::i;:::-;51492:8;51501:5;51492:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;51469:7;;;;:::i;:::-;;;;51422:134;;;;51291:272;51202:361;;;:::o;49480:655::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;49726:1:::3;49714:9;:13;49706:75;;;::::0;-1:-1:-1;;;49706:75:0;;17082:2:1;49706:75:0::3;::::0;::::3;17064:21:1::0;17121:2;17101:18;;;17094:30;17160:34;17140:18;;;17133:62;-1:-1:-1;;;17211:18:1;;;17204:45;17266:19;;49706:75:0::3;17054:237:1::0;49706:75:0::3;49792:29;49824:30:::0;;;:11:::3;:30;::::0;;;;49912:29;;::::3;-1:-1:-1::0;;;49912:29:0;::::3;::::0;::::3;::::0;49873:35:::3;::::0;49899:9;;-1:-1:-1;;;49873:23:0;::::3;;:35;:::i;:::-;:68;;49865:158;;;;-1:-1:-1::0;;;49865:158:0::3;;;;;;;:::i;:::-;50038:9;50034:94;50054:9;50051:1;:12;50034:94;;;50084:32;50093:3;50098:17;50084:8;:32::i;:::-;50065:3:::0;::::3;::::0;::::3;:::i;:::-;;;;50034:94;;;;49693:442;45141:1:::2;2462::::1;49480:655:::0;;;:::o;24635:239::-;24707:7;24743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24743:16:0;24778:19;24770:73;;;;-1:-1:-1;;;24770:73:0;;16672:2:1;24770:73:0;;;16654:21:1;16711:2;16691:18;;;16684:30;16750:34;16730:18;;;16723:62;-1:-1:-1;;;16801:18:1;;;16794:39;16850:19;;24770:73:0;16644:231:1;24365:208:0;24437:7;-1:-1:-1;;;;;24465:19:0;;24457:74;;;;-1:-1:-1;;;24457:74:0;;16261:2:1;24457:74:0;;;16243:21:1;16300:2;16280:18;;;16273:30;16339:34;16319:18;;;16312:62;-1:-1:-1;;;16390:18:1;;;16383:40;16440:19;;24457:74:0;16233:232:1;24457:74:0;-1:-1:-1;;;;;;24549:16:0;;;;;:9;:16;;;;;;;24365:208::o;2822:148::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;2913:6:::1;::::0;2892:40:::1;::::0;2929:1:::1;::::0;-1:-1:-1;;;;;2913:6:0::1;::::0;2892:40:::1;::::0;2929:1;;2892:40:::1;2943:6;:19:::0;;-1:-1:-1;;;;;;2943:19:0::1;::::0;;2822:148::o;47624:264::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;47815:30:0::3;::::0;;;:11:::3;:30;::::0;;;;;:65;;-1:-1:-1;;47815:65:0::3;-1:-1:-1::0;;;;;47815:65:0;;::::3;::::0;;;::::3;::::0;;47624:264::o;48179:210::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;48337:30:0::3;::::0;;;:11:::3;:30;::::0;;;;:44;;-1:-1:-1;;;;48337:44:0::3;-1:-1:-1::0;;;48337:44:0::3;::::0;;48179:210::o;25110:104::-;25166:13;25199:7;25192:14;;;;;:::i;26701:295::-;-1:-1:-1;;;;;26804:24:0;;803:10;26804:24;;26796:62;;;;-1:-1:-1;;;26796:62:0;;14579:2:1;26796:62:0;;;14561:21:1;14618:2;14598:18;;;14591:30;14657:27;14637:18;;;14630:55;14702:18;;26796:62:0;14551:175:1;26796:62:0;803:10;26871:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26871:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26871:53:0;;;;;;;;;;26940:48;;10546:41:1;;;26871:42:0;;803:10;26940:48;;10519:18:1;26940:48:0;;;;;;;26701:295;;:::o;48647:821::-;45052:30;;;;:11;:30;;;;;:38;:30;;-1:-1:-1;;;45052:38:0;;;;45044:86;;;;-1:-1:-1;;;45044:86:0;;;;;;;:::i;:::-;45232:30:::1;::::0;;;:11:::1;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45232:37:0;::::1;;;45224:78;;;::::0;-1:-1:-1;;;45224:78:0;;11448:2:1;45224:78:0::1;::::0;::::1;11430:21:1::0;11487:2;11467:18;;;11460:30;11526;11506:18;;;11499:58;11574:18;;45224:78:0::1;11420:178:1::0;45224:78:0::1;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;48927:1:::3;48915:9;:13;48907:79;;;::::0;-1:-1:-1;;;48907:79:0;;12636:2:1;48907:79:0::3;::::0;::::3;12618:21:1::0;12675:2;12655:18;;;12648:30;12714:34;12694:18;;;12687:62;-1:-1:-1;;;12765:18:1;;;12758:49;12824:19;;48907:79:0::3;12608:241:1::0;48907:79:0::3;48997:29;49029:30:::0;;;:11:::3;:30;::::0;;;;49119:29;;::::3;-1:-1:-1::0;;;49119:29:0;::::3;::::0;::::3;::::0;49080:35:::3;::::0;49106:9;;-1:-1:-1;;;49080:23:0;::::3;;:35;:::i;:::-;:68;;49072:158;;;;-1:-1:-1::0;;;49072:158:0::3;;;;;;;:::i;:::-;49274:26:::0;;49262:38:::3;::::0;-1:-1:-1;;;;;49274:26:0::3;49262:9:::0;:38:::3;:::i;:::-;49249:9;:51;49241:108;;;::::0;-1:-1:-1;;;49241:108:0;;20837:2:1;49241:108:0::3;::::0;::::3;20819:21:1::0;20876:2;20856:18;;;20849:30;20915:34;20895:18;;;20888:62;-1:-1:-1;;;20966:18:1;;;20959:42;21018:19;;49241:108:0::3;20809:234:1::0;49241:108:0::3;49364:9;49360:101;49380:9;49377:1;:12;49360:101;;;49410:39;49419:10;49431:17;49410:8;:39::i;:::-;49391:3:::0;::::3;::::0;::::3;:::i;:::-;;;;49360:101;;47896:275:::0;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;48092:30:0::3;::::0;;;:11:::3;:30;::::0;;;;;:71;;::::3;::::0;;::::3;-1:-1:-1::0;;;48092:71:0::3;-1:-1:-1::0;;;;48092:71:0;;::::3;::::0;;;::::3;::::0;;47896:275::o;27896:285::-;28028:41;803:10;28061:7;28028:18;:41::i;:::-;28020:103;;;;-1:-1:-1;;;28020:103:0;;;;;;;:::i;:::-;28134:39;28148:4;28154:2;28158:7;28167:5;28134:13;:39::i;:::-;27896:285;;;;:::o;46861:227::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;47037:30:::3;::::0;;;:11:::3;:30;::::0;;;;;;;:43;;::::3;::::0;:35:::3;::::0;;::::3;::::0;:43;::::3;::::0;::::3;:::i;:::-;;45141:1:::2;2462::::1;46861:227:::0;;:::o;50383:384::-;29713:4;29737:16;;;:7;:16;;;;;;50449:13;;-1:-1:-1;;;;;29737:16:0;50475:77;;;;-1:-1:-1;;;50475:77:0;;;;;;;:::i;:::-;50563:21;50587:11;50563:21;50599:20;44771:9;50599:8;:20;:::i;:::-;50587:33;;;;;;;;;;;:41;;50563:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50670:1;50652:7;50646:21;:25;:113;;;;;;;;;;;;;;;;;50711:7;50720:19;:8;:17;:19::i;:::-;50694:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50646:113;50639:120;50383:384;-1:-1:-1;;;50383:384:0:o;47358:258::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;47549:30:::3;::::0;;;:11:::3;:30;::::0;;;;;;;:59;;::::3;::::0;:38:::3;::::0;;::::3;::::0;:59;::::3;::::0;::::3;:::i;48397:242::-:0;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;;48594:30:0::3;::::0;;;:11:::3;:30;::::0;;;;:37;;-1:-1:-1;;;;48553:78:0;::::3;-1:-1:-1::0;;;48594:37:0;;;::::3;;;48593:38;48553:78:::0;;::::3;;::::0;;48397:242::o;45653:1200::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45958:30:::1;::::0;::::1;;::::0;;;:11:::1;:30;::::0;;;;:38;-1:-1:-1;;;45958:38:0;::::1;;;45957:39;45949:107;;;::::0;-1:-1:-1;;;45949:107:0;;11024:2:1;45949:107:0::1;::::0;::::1;11006:21:1::0;11063:2;11043:18;;;11036:30;11102:34;11082:18;;;11075:62;11173:25;11153:18;;;11146:53;11216:19;;45949:107:0::1;10996:245:1::0;45949:107:0::1;44771:9;46075:19;:33;;;46067:127;;;::::0;-1:-1:-1;;;46067:127:0;;14933:2:1;46067:127:0::1;::::0;::::1;14915:21:1::0;14972:2;14952:18;;;14945:30;15011:34;14991:18;;;14984:62;15082:34;15062:18;;;15055:62;-1:-1:-1;;;15133:19:1;;;15126:48;15191:19;;46067:127:0::1;14905:311:1::0;46067:127:0::1;46234:20;;46213:17;:41;;;46205:135;;;::::0;-1:-1:-1;;;46205:135:0;;18758:2:1;46205:135:0::1;::::0;::::1;18740:21:1::0;18797:2;18777:18;;;18770:30;18836:34;18816:18;;;18809:62;18907:34;18887:18;;;18880:62;-1:-1:-1;;;18958:19:1;;;18951:48;19016:19;;46205:135:0::1;18730:311:1::0;46205:135:0::1;46385:398;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;46385:398:0;::::1;::::0;;46351:31:::1;46385:398;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;;;46680:4:::1;46385:398:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46806:20:::1;:22:::0;;46385:398;;;;46794:11:::1;::::0;46351:31;46806:22:::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;46794:35:0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;46794:35:0;:51;;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;46794:51:0::1;-1:-1:-1::0;;;;46794:51:0;::::1;;-1:-1:-1::0;;;46794:51:0::1;-1:-1:-1::0;;;;46794:51:0;::::1;;-1:-1:-1::0;;;46794:51:0::1;::::0;;;;-1:-1:-1;;;;46794:51:0::1;::::0;;::::1;-1:-1:-1::0;;;46794:51:0::1;-1:-1:-1::0;;;;46794:51:0;;::::1;-1:-1:-1::0;;;46794:51:0::1;::::0;;;;-1:-1:-1;;;;46794:51:0;;;::::1;-1:-1:-1::0;;;46794:51:0::1;-1:-1:-1::0;;;;;;46794:51:0;;;-1:-1:-1;;;;;46794:51:0;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;:35;;:51:::1;::::0;;;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;46794:51:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;46794:51:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;;;;;;;;;45653:1200:0:o;47096:254::-;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;45052:30:::1;::::0;;;:11:::1;:30;::::0;;;;:38;:30;;-1:-1:-1;;;45052:38:0;::::1;;;45044:86;;;;-1:-1:-1::0;;;45044:86:0::1;;;;;;;:::i;:::-;45411:30:::2;::::0;;;:11:::2;:30;::::0;;;;:37;:30;;-1:-1:-1;;;45411:37:0;::::2;;;45410:38;45402:75;;;;-1:-1:-1::0;;;45402:75:0::2;;;;;;;:::i;:::-;47285:30:::3;::::0;;;:11:::3;:30;::::0;;;;;;;:57;;::::3;::::0;:42:::3;::::0;;::::3;::::0;:57;::::3;::::0;::::3;:::i;3125:244::-:0;2244:6;;-1:-1:-1;;;;;2244:6:0;803:10;2391:23;2383:68;;;;-1:-1:-1;;;2383:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3214:22:0;::::1;3206:73;;;::::0;-1:-1:-1;;;3206:73:0;;13056:2:1;3206:73:0::1;::::0;::::1;13038:21:1::0;13095:2;13075:18;;;13068:30;13134:34;13114:18;;;13107:62;-1:-1:-1;;;13185:18:1;;;13178:36;13231:19;;3206:73:0::1;13028:228:1::0;3206:73:0::1;3316:6;::::0;3295:38:::1;::::0;-1:-1:-1;;;;;3295:38:0;;::::1;::::0;3316:6:::1;::::0;3295:38:::1;::::0;3316:6:::1;::::0;3295:38:::1;3344:6;:17:::0;;-1:-1:-1;;;;;;3344:17:0::1;-1:-1:-1::0;;;;;3344:17:0;;;::::1;::::0;;;::::1;::::0;;3125:244::o;44682:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44682:49:0;;;;-1:-1:-1;;;44682:49:0;;;;;-1:-1:-1;;;44682:49:0;;;;;-1:-1:-1;;;44682:49:0;;;;;;;-1:-1:-1;;;44682:49:0;;;;;-1:-1:-1;;;44682:49:0;;;;;-1:-1:-1;;;44682:49:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24009:292::-;24111:4;-1:-1:-1;;;;;;24135:40:0;;-1:-1:-1;;;24135:40:0;;:105;;-1:-1:-1;;;;;;;24192:48:0;;-1:-1:-1;;;24192:48:0;24135:105;:158;;;-1:-1:-1;;;;;;;;;;22610:40:0;;;24257:36;22501:157;33532:174;33607:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33607:29:0;-1:-1:-1;;;;;33607:29:0;;;;;;;;:24;;33661:23;33607:24;33661:14;:23::i;:::-;-1:-1:-1;;;;;33652:46:0;;;;;;;;;;;33532:174;;:::o;29942:355::-;30035:4;29737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29737:16:0;30052:73;;;;-1:-1:-1;;;30052:73:0;;15423:2:1;30052:73:0;;;15405:21:1;15462:2;15442:18;;;15435:30;15501:34;15481:18;;;15474:62;-1:-1:-1;;;15552:18:1;;;15545:42;15604:19;;30052:73:0;15395:234:1;30052:73:0;30136:13;30152:23;30167:7;30152:14;:23::i;:::-;30136:39;;30205:5;-1:-1:-1;;;;;30194:16:0;:7;-1:-1:-1;;;;;30194:16:0;;:51;;;;30238:7;-1:-1:-1;;;;;30214:31:0;:20;30226:7;30214:11;:20::i;:::-;-1:-1:-1;;;;;30214:31:0;;30194:51;:94;;;-1:-1:-1;;;;;;27188:25:0;;;27164:4;27188:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30249:39;30186:103;29942:355;-1:-1:-1;;;;29942:355:0:o;32870:544::-;32995:4;-1:-1:-1;;;;;32968:31:0;:23;32983:7;32968:14;:23::i;:::-;-1:-1:-1;;;;;32968:31:0;;32960:85;;;;-1:-1:-1;;;32960:85:0;;19609:2:1;32960:85:0;;;19591:21:1;19648:2;19628:18;;;19621:30;19687:34;19667:18;;;19660:62;-1:-1:-1;;;19738:18:1;;;19731:39;19787:19;;32960:85:0;19581:231:1;32960:85:0;-1:-1:-1;;;;;33064:16:0;;33056:65;;;;-1:-1:-1;;;33056:65:0;;14174:2:1;33056:65:0;;;14156:21:1;14213:2;14193:18;;;14186:30;14252:34;14232:18;;;14225:62;-1:-1:-1;;;14303:18:1;;;14296:34;14347:19;;33056:65:0;14146:226:1;33056:65:0;33134:39;33155:4;33161:2;33165:7;33134:20;:39::i;:::-;33238:29;33255:1;33259:7;33238:8;:29::i;:::-;-1:-1:-1;;;;;33280:15:0;;;;;;:9;:15;;;;;:20;;33299:1;;33280:15;:20;;33299:1;;33280:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33311:13:0;;;;;;:9;:13;;;;;:18;;33328:1;;33311:13;:18;;33328:1;;33311:18;:::i;:::-;;;;-1:-1:-1;;33340:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33340:21:0;-1:-1:-1;;;;;33340:21:0;;;;;;;;;33379:27;;33340:16;;33379:27;;;;;;;32870:544;;;:::o;19942:723::-;19998:13;20219:10;20215:53;;-1:-1:-1;;20246:10:0;;;;;;;;;;;;-1:-1:-1;;;20246:10:0;;;;;19942:723::o;20215:53::-;20293:5;20278:12;20334:78;20341:9;;20334:78;;20367:8;;;;:::i;:::-;;-1:-1:-1;20390:10:0;;-1:-1:-1;20398:2:0;20390:10;;:::i;:::-;;;20334:78;;;20422:19;20454:6;20444:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20444:17:0;;20422:39;;20472:154;20479:10;;20472:154;;20506:11;20516:1;20506:11;;:::i;:::-;;-1:-1:-1;20575:10:0;20583:2;20575:5;:10;:::i;:::-;20562:24;;:2;:24;:::i;:::-;20549:39;;20532:6;20539;20532:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20532:56:0;;;;;;;;-1:-1:-1;20603:11:0;20612:2;20603:11;;:::i;:::-;;;20472:154;;50143:232;50220:21;50283:30;;;:11;:30;;;;;50281:45;;50283:43;;50281:45;;-1:-1:-1;;;50281:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50245:31;44771:9;50245:17;:31;:::i;:::-;50244:83;;;;:::i;:::-;50220:107;;50338:29;50348:3;50353:13;50338:9;:29::i;29063:272::-;29177:28;29187:4;29193:2;29197:7;29177:9;:28::i;:::-;29224:48;29247:4;29253:2;29257:7;29266:5;29224:22;:48::i;:::-;29216:111;;;;-1:-1:-1;;;29216:111:0;;;;;;;:::i;38450:555::-;-1:-1:-1;;;;;38622:18:0;;38618:187;;38657:40;38689:7;39832:10;:17;;39805:24;;;;:15;:24;;;;;:44;;;39860:24;;;;;;;;;;;;39728:164;38657:40;38618:187;;;38727:2;-1:-1:-1;;;;;38719:10:0;:4;-1:-1:-1;;;;;38719:10:0;;38715:90;;38746:47;38779:4;38785:7;38746:32;:47::i;:::-;-1:-1:-1;;;;;38819:16:0;;38815:183;;38852:45;38889:7;38852:36;:45::i;38815:183::-;38925:4;-1:-1:-1;;;;;38919:10:0;:2;-1:-1:-1;;;;;38919:10:0;;38915:83;;38946:40;38974:2;38978:7;38946:27;:40::i;30639:110::-;30715:26;30725:2;30729:7;30715:26;;;;;;;;;;;;:9;:26::i;34271:843::-;34392:4;-1:-1:-1;;;;;34418:13:0;;12737:20;12776:8;34414:693;;34454:72;;-1:-1:-1;;;34454:72:0;;-1:-1:-1;;;;;34454:36:0;;;;;:72;;803:10;;34505:4;;34511:7;;34520:5;;34454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34454:72:0;;;;;;;;-1:-1:-1;;34454:72:0;;;;;;;;;;;;:::i;:::-;;;34450:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34700:13:0;;34696:341;;34743:60;;-1:-1:-1;;;34743:60:0;;;;;;;:::i;34696:341::-;34987:6;34981:13;34972:6;34968:2;34964:15;34957:38;34450:602;-1:-1:-1;;;;;;34577:55:0;-1:-1:-1;;;34577:55:0;;-1:-1:-1;34570:62:0;;34414:693;-1:-1:-1;35091:4:0;34271:843;;;;;;:::o;40519:988::-;40785:22;40835:1;40810:22;40827:4;40810:16;:22::i;:::-;:26;;;;:::i;:::-;40847:18;40868:26;;;:17;:26;;;;;;40785:51;;-1:-1:-1;41001:28:0;;;40997:328;;-1:-1:-1;;;;;41068:18:0;;41046:19;41068:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41119:30;;;;;;:44;;;41236:30;;:17;:30;;;;;:43;;;40997:328;-1:-1:-1;41421:26:0;;;;:17;:26;;;;;;;;41414:33;;;-1:-1:-1;;;;;41465:18:0;;;;;:12;:18;;;;;:34;;;;;;;41458:41;40519:988::o;41802:1079::-;42080:10;:17;42055:22;;42080:21;;42100:1;;42080:21;:::i;:::-;42112:18;42133:24;;;:15;:24;;;;;;42506:10;:26;;42055:46;;-1:-1:-1;42133:24:0;;42055:46;;42506:26;;;;;;:::i;:::-;;;;;;;;;42484:48;;42570:11;42545:10;42556;42545:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42650:28;;;:15;:28;;;;;;;:41;;;42822:24;;;;;42815:31;42857:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41873:1008;;;41802:1079;:::o;39306:221::-;39391:14;39408:20;39425:2;39408:16;:20::i;:::-;-1:-1:-1;;;;;39439:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39484:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39306:221:0:o;30976:250::-;31072:18;31078:2;31082:7;31072:5;:18::i;:::-;31109:54;31140:1;31144:2;31148:7;31157:5;31109:22;:54::i;:::-;31101:117;;;;-1:-1:-1;;;31101:117:0;;;;;;;:::i;31562:382::-;-1:-1:-1;;;;;31642:16:0;;31634:61;;;;-1:-1:-1;;;31634:61:0;;17984:2:1;31634:61:0;;;17966:21:1;;;18003:18;;;17996:30;18062:34;18042:18;;;18035:62;18114:18;;31634:61:0;17956:182:1;31634:61:0;29713:4;29737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29737:16:0;:30;31706:58;;;;-1:-1:-1;;;31706:58:0;;13463:2:1;31706:58:0;;;13445:21:1;13502:2;13482:18;;;13475:30;13541;13521:18;;;13514:58;13589:18;;31706:58:0;13435:178:1;31706:58:0;31777:45;31806:1;31810:2;31814:7;31777:20;:45::i;:::-;-1:-1:-1;;;;;31835:13:0;;;;;;:9;:13;;;;;:18;;31852:1;;31835:13;:18;;31852:1;;31835:18;:::i;:::-;;;;-1:-1:-1;;31864:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31864:21:0;-1:-1:-1;;;;;31864:21:0;;;;;;;;31903:33;;31864:16;;;31903:33;;31864:16;;31903:33;31562:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:2;;942:1;939;932:12;891:2;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:188::-;1122:20;;-1:-1:-1;;;;;1171:46:1;;1161:57;;1151:2;;1232:1;1229;1222:12;1247:163;1314:20;;1374:10;1363:22;;1353:33;;1343:2;;1400:1;1397;1390:12;1415:186;1474:6;1527:2;1515:9;1506:7;1502:23;1498:32;1495:2;;;1543:1;1540;1533:12;1495:2;1566:29;1585:9;1566:29;:::i;1606:260::-;1674:6;1682;1735:2;1723:9;1714:7;1710:23;1706:32;1703:2;;;1751:1;1748;1741:12;1703:2;1774:29;1793:9;1774:29;:::i;:::-;1764:39;;1822:38;1856:2;1845:9;1841:18;1822:38;:::i;:::-;1812:48;;1693:173;;;;;:::o;1871:328::-;1948:6;1956;1964;2017:2;2005:9;1996:7;1992:23;1988:32;1985:2;;;2033:1;2030;2023:12;1985:2;2056:29;2075:9;2056:29;:::i;:::-;2046:39;;2104:38;2138:2;2127:9;2123:18;2104:38;:::i;:::-;2094:48;;2189:2;2178:9;2174:18;2161:32;2151:42;;1975:224;;;;;:::o;2204:666::-;2299:6;2307;2315;2323;2376:3;2364:9;2355:7;2351:23;2347:33;2344:2;;;2393:1;2390;2383:12;2344:2;2416:29;2435:9;2416:29;:::i;:::-;2406:39;;2464:38;2498:2;2487:9;2483:18;2464:38;:::i;:::-;2454:48;;2549:2;2538:9;2534:18;2521:32;2511:42;;2604:2;2593:9;2589:18;2576:32;2631:18;2623:6;2620:30;2617:2;;;2663:1;2660;2653:12;2617:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2768:1;2765;2758:12;2717:2;2791:73;2856:7;2851:2;2838:16;2833:2;2829;2825:11;2791:73;:::i;:::-;2781:83;;;2334:536;;;;;;;:::o;2875:347::-;2940:6;2948;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3017:1;3014;3007:12;2969:2;3040:29;3059:9;3040:29;:::i;:::-;3030:39;;3119:2;3108:9;3104:18;3091:32;3166:5;3159:13;3152:21;3145:5;3142:32;3132:2;;3188:1;3185;3178:12;3132:2;3211:5;3201:15;;;2959:263;;;;;:::o;3227:254::-;3295:6;3303;3356:2;3344:9;3335:7;3331:23;3327:32;3324:2;;;3372:1;3369;3362:12;3324:2;3395:29;3414:9;3395:29;:::i;:::-;3385:39;3471:2;3456:18;;;;3443:32;;-1:-1:-1;;;3314:167:1:o;3486:245::-;3544:6;3597:2;3585:9;3576:7;3572:23;3568:32;3565:2;;;3613:1;3610;3603:12;3565:2;3652:9;3639:23;3671:30;3695:5;3671:30;:::i;3736:249::-;3805:6;3858:2;3846:9;3837:7;3833:23;3829:32;3826:2;;;3874:1;3871;3864:12;3826:2;3906:9;3900:16;3925:30;3949:5;3925:30;:::i;3990:322::-;4059:6;4112:2;4100:9;4091:7;4087:23;4083:32;4080:2;;;4128:1;4125;4118:12;4080:2;4168:9;4155:23;4201:18;4193:6;4190:30;4187:2;;;4233:1;4230;4223:12;4187:2;4256:50;4298:7;4289:6;4278:9;4274:22;4256:50;:::i;4317:964::-;4449:6;4457;4465;4473;4481;4489;4542:3;4530:9;4521:7;4517:23;4513:33;4510:2;;;4559:1;4556;4549:12;4510:2;4599:9;4586:23;4628:18;4669:2;4661:6;4658:14;4655:2;;;4685:1;4682;4675:12;4655:2;4708:50;4750:7;4741:6;4730:9;4726:22;4708:50;:::i;:::-;4698:60;;4811:2;4800:9;4796:18;4783:32;4767:48;;4840:2;4830:8;4827:16;4824:2;;;4856:1;4853;4846:12;4824:2;4879:52;4923:7;4912:8;4901:9;4897:24;4879:52;:::i;:::-;4869:62;;4984:2;4973:9;4969:18;4956:32;4940:48;;5013:2;5003:8;5000:16;4997:2;;;5029:1;5026;5019:12;4997:2;;5052:52;5096:7;5085:8;5074:9;5070:24;5052:52;:::i;:::-;5042:62;;;5123:38;5157:2;5146:9;5142:18;5123:38;:::i;:::-;5113:48;;5180:38;5213:3;5202:9;5198:19;5180:38;:::i;:::-;5170:48;;5237:38;5270:3;5259:9;5255:19;5237:38;:::i;:::-;5227:48;;4500:781;;;;;;;;:::o;5286:180::-;5345:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:2;;;5414:1;5411;5404:12;5366:2;-1:-1:-1;5437:23:1;;5356:110;-1:-1:-1;5356:110:1:o;5471:322::-;5548:6;5556;5564;5617:2;5605:9;5596:7;5592:23;5588:32;5585:2;;;5633:1;5630;5623:12;5585:2;5669:9;5656:23;5646:33;;5698:38;5732:2;5721:9;5717:18;5698:38;:::i;5798:390::-;5876:6;5884;5937:2;5925:9;5916:7;5912:23;5908:32;5905:2;;;5953:1;5950;5943:12;5905:2;5989:9;5976:23;5966:33;;6050:2;6039:9;6035:18;6022:32;6077:18;6069:6;6066:30;6063:2;;;6109:1;6106;6099:12;6063:2;6132:50;6174:7;6165:6;6154:9;6150:22;6132:50;:::i;:::-;6122:60;;;5895:293;;;;;:::o;6193:254::-;6261:6;6269;6322:2;6310:9;6301:7;6297:23;6293:32;6290:2;;;6338:1;6335;6328:12;6290:2;6374:9;6361:23;6351:33;;6403:38;6437:2;6426:9;6422:18;6403:38;:::i;6452:248::-;6520:6;6528;6581:2;6569:9;6560:7;6556:23;6552:32;6549:2;;;6597:1;6594;6587:12;6549:2;-1:-1:-1;;6620:23:1;;;6690:2;6675:18;;;6662:32;;-1:-1:-1;6539:161:1:o;6705:252::-;6772:6;6780;6833:2;6821:9;6812:7;6808:23;6804:32;6801:2;;;6849:1;6846;6839:12;6801:2;6885:9;6872:23;6862:33;;6914:37;6947:2;6936:9;6932:18;6914:37;:::i;6962:257::-;7003:3;7041:5;7035:12;7068:6;7063:3;7056:19;7084:63;7140:6;7133:4;7128:3;7124:14;7117:4;7110:5;7106:16;7084:63;:::i;:::-;7201:2;7180:15;-1:-1:-1;;7176:29:1;7167:39;;;;7208:4;7163:50;;7011:208;-1:-1:-1;;7011:208:1:o;7224:185::-;7266:3;7304:5;7298:12;7319:52;7364:6;7359:3;7352:4;7345:5;7341:16;7319:52;:::i;:::-;7387:16;;;;;7274:135;-1:-1:-1;;7274:135:1:o;7414:470::-;7593:3;7631:6;7625:13;7647:53;7693:6;7688:3;7681:4;7673:6;7669:17;7647:53;:::i;:::-;7763:13;;7722:16;;;;7785:57;7763:13;7722:16;7819:4;7807:17;;7785:57;:::i;:::-;7858:20;;7601:283;-1:-1:-1;;;;7601:283:1:o;7889:1174::-;8065:3;8094:1;8127:6;8121:13;8157:3;8179:1;8207:9;8203:2;8199:18;8189:28;;8267:2;8256:9;8252:18;8289;8279:2;;8333:4;8325:6;8321:17;8311:27;;8279:2;8359;8407;8399:6;8396:14;8376:18;8373:38;8370:2;;;-1:-1:-1;;;8434:33:1;;8490:4;8487:1;8480:15;8520:4;8441:3;8508:17;8370:2;8551:18;8578:104;;;;8696:1;8691:320;;;;8544:467;;8578:104;-1:-1:-1;;8611:24:1;;8599:37;;8656:16;;;;-1:-1:-1;8578:104:1;;8691:320;24085:1;24078:14;;;24122:4;24109:18;;8786:1;8800:165;8814:6;8811:1;8808:13;8800:165;;;8892:14;;8879:11;;;8872:35;8935:16;;;;8829:10;;8800:165;;;8804:3;;8994:6;8989:3;8985:16;8978:23;;8544:467;;;;;;;9027:30;9053:3;9045:6;9027:30;:::i;:::-;9020:37;8073:990;-1:-1:-1;;;;;8073:990:1:o;9276:488::-;-1:-1:-1;;;;;9545:15:1;;;9527:34;;9597:15;;9592:2;9577:18;;9570:43;9644:2;9629:18;;9622:34;;;9692:3;9687:2;9672:18;;9665:31;;;9470:4;;9713:45;;9738:19;;9730:6;9713:45;:::i;:::-;9705:53;9479:285;-1:-1:-1;;;;;;9479:285:1:o;9769:632::-;9940:2;9992:21;;;10062:13;;9965:18;;;10084:22;;;9911:4;;9940:2;10163:15;;;;10137:2;10122:18;;;9911:4;10206:169;10220:6;10217:1;10214:13;10206:169;;;10281:13;;10269:26;;10350:15;;;;10315:12;;;;10242:1;10235:9;10206:169;;;-1:-1:-1;10392:3:1;;9920:481;-1:-1:-1;;;;;;9920:481:1:o;10598:219::-;10747:2;10736:9;10729:21;10710:4;10767:44;10807:2;10796:9;10792:18;10784:6;10767:44;:::i;12015:414::-;12217:2;12199:21;;;12256:2;12236:18;;;12229:30;12295:34;12290:2;12275:18;;12268:62;-1:-1:-1;;;12361:2:1;12346:18;;12339:48;12419:3;12404:19;;12189:240::o;17296:481::-;17498:2;17480:21;;;17537:2;17517:18;;;17510:30;17576:34;17571:2;17556:18;;17549:62;17647:34;17642:2;17627:18;;17620:62;-1:-1:-1;;;17713:3:1;17698:19;;17691:44;17767:3;17752:19;;17470:307::o;19046:356::-;19248:2;19230:21;;;19267:18;;;19260:30;19326:34;19321:2;19306:18;;19299:62;19393:2;19378:18;;19220:182::o;19817:411::-;20019:2;20001:21;;;20058:2;20038:18;;;20031:30;20097:34;20092:2;20077:18;;20070:62;-1:-1:-1;;;20163:2:1;20148:18;;20141:45;20218:3;20203:19;;19991:237::o;21048:413::-;21250:2;21232:21;;;21289:2;21269:18;;;21262:30;21328:34;21323:2;21308:18;;21301:62;-1:-1:-1;;;21394:2:1;21379:18;;21372:47;21451:3;21436:19;;21222:239::o;21466:399::-;21668:2;21650:21;;;21707:2;21687:18;;;21680:30;21746:34;21741:2;21726:18;;21719:62;-1:-1:-1;;;21812:2:1;21797:18;;21790:33;21855:3;21840:19;;21640:225::o;22283:348::-;22485:2;22467:21;;;22524:2;22504:18;;;22497:30;22563:26;22558:2;22543:18;;22536:54;22622:2;22607:18;;22457:174::o;22636:1189::-;23016:4;23045:3;-1:-1:-1;;;;;23079:6:1;23075:47;23064:9;23057:66;23142:10;23200:2;23192:6;23188:15;23183:2;23172:9;23168:18;23161:43;23252:2;23244:6;23240:15;23235:2;23224:9;23220:18;23213:43;23304:2;23296:6;23292:15;23287:2;23276:9;23272:18;23265:43;;23359:6;23352:14;23345:22;23339:3;23328:9;23324:19;23317:51;23419:6;23412:14;23405:22;23399:3;23388:9;23384:19;23377:51;23479:6;23472:14;23465:22;23459:3;23448:9;23444:19;23437:51;23525:2;23519:3;23508:9;23504:19;23497:31;23551:44;23591:2;23580:9;23576:18;23568:6;23551:44;:::i;:::-;23537:58;;23644:9;23636:6;23632:22;23626:3;23615:9;23611:19;23604:51;23678:32;23703:6;23695;23678:32;:::i;:::-;23664:46;;23759:9;23751:6;23747:22;23741:3;23730:9;23726:19;23719:51;23787:32;23812:6;23804;23787:32;:::i;:::-;23779:40;23025:800;-1:-1:-1;;;;;;;;;;;;;23025:800:1:o;24138:128::-;24178:3;24209:1;24205:6;24202:1;24199:13;24196:2;;;24215:18;;:::i;:::-;-1:-1:-1;24251:9:1;;24186:80::o;24271:120::-;24311:1;24337;24327:2;;24342:18;;:::i;:::-;-1:-1:-1;24376:9:1;;24317:74::o;24396:168::-;24436:7;24502:1;24498;24494:6;24490:14;24487:1;24484:21;24479:1;24472:9;24465:17;24461:45;24458:2;;;24509:18;;:::i;:::-;-1:-1:-1;24549:9:1;;24448:116::o;24569:125::-;24609:4;24637:1;24634;24631:8;24628:2;;;24642:18;;:::i;:::-;-1:-1:-1;24679:9:1;;24618:76::o;24699:258::-;24771:1;24781:113;24795:6;24792:1;24789:13;24781:113;;;24871:11;;;24865:18;24852:11;;;24845:39;24817:2;24810:10;24781:113;;;24912:6;24909:1;24906:13;24903:2;;;-1:-1:-1;;24947:1:1;24929:16;;24922:27;24752:205::o;24962:380::-;25041:1;25037:12;;;;25084;;;25105:2;;25159:4;25151:6;25147:17;25137:27;;25105:2;25212;25204:6;25201:14;25181:18;25178:38;25175:2;;;25258:10;25253:3;25249:20;25246:1;25239:31;25293:4;25290:1;25283:15;25321:4;25318:1;25311:15;25175:2;;25017:325;;;:::o;25347:135::-;25386:3;-1:-1:-1;;25407:17:1;;25404:2;;;25427:18;;:::i;:::-;-1:-1:-1;25474:1:1;25463:13;;25394:88::o;25487:201::-;25525:3;25553:10;25598:2;25591:5;25587:14;25625:2;25616:7;25613:15;25610:2;;;25631:18;;:::i;:::-;25680:1;25667:15;;25533:155;-1:-1:-1;;;25533:155:1:o;25693:112::-;25725:1;25751;25741:2;;25756:18;;:::i;:::-;-1:-1:-1;25790:9:1;;25731:74::o;25810:127::-;25871:10;25866:3;25862:20;25859:1;25852:31;25902:4;25899:1;25892:15;25926:4;25923:1;25916:15;25942:127;26003:10;25998:3;25994:20;25991:1;25984:31;26034:4;26031:1;26024:15;26058:4;26055:1;26048:15;26074:127;26135:10;26130:3;26126:20;26123:1;26116:31;26166:4;26163:1;26156:15;26190:4;26187:1;26180:15;26206:127;26267:10;26262:3;26258:20;26255:1;26248:31;26298:4;26295:1;26288:15;26322:4;26319:1;26312:15;26338:127;26399:10;26394:3;26390:20;26387:1;26380:31;26430:4;26427:1;26420:15;26454:4;26451:1;26444:15;26470:131;-1:-1:-1;;;;;;26544:32:1;;26534:43;;26524:2;;26591:1;26588;26581:12;26524:2;26514:87;:::o

Swarm Source

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