ETH Price: $3,375.10 (-2.10%)
Gas: 7 Gwei

Token

 

Overview

Max Total Supply

1,463

Holders

329

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x2b3002fced03e83843d35f93e538cd3423275ab4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
IamaiArt

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-21
*/

// SPDX-License-Identifier: MIT
// 
// 888      e           e    e           e      888            e      888~-_   ~~~888~~~ 
// 888     d8b         d8b  d8b         d8b     888           d8b     888   \     888    
// 888    /Y88b       d888bdY88b       /Y88b    888          /Y88b    888    |    888    
// 888   /  Y88b     / Y88Y Y888b     /  Y88b   888         /  Y88b   888   /     888    
// 888  /____Y88b   /   YY   Y888b   /____Y88b  888        /____Y88b  888_-~      888    
// 888 /      Y88b /          Y888b /      Y88b 888       /      Y88b 888 ~-_     888    
// 


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

// File: openzeppelin-solidity/contracts/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: openzeppelin-solidity/contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: openzeppelin-solidity/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: openzeppelin-solidity/contracts/utils/cryptography/MerkleProof.sol



pragma solidity ^0.8.0;

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: openzeppelin-solidity/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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



pragma solidity ^0.8.0;

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

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

// File: openzeppelin-solidity/contracts/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/ERC1155AI.sol



pragma solidity ^0.8.0;


abstract contract ERC1155AI is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

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

    // Opensea marketplace contract address
    address private _marketplaceContract = 0x1E0049783F008A0085193E00003D00cd54003c71;
    
    // default operator access for marketplace contract
    bool public _marketplaceApproved = true;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155AI.totalSupply(id) > 0;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[_msgSender()][operator] = approved;
        if (operator == _marketplaceContract){
            _marketplaceDisapproval[_msgSender()] = !approved;
        }
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        if(_marketplaceApproved && operator == _marketplaceContract && !_marketplaceDisapproval[account]){
            return true;
        } else {
            return _operatorApprovals[account][operator];
        }
    }

    /**
     * @dev Set weather default marketplace auto approval enabled or not
     */
    function setMarketplaceApproved(bool marketplaceApproved) external virtual {
        _marketplaceApproved = marketplaceApproved;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

// File: openzeppelin-solidity/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/IamaiArt.sol


pragma solidity ^0.8.0;






contract ERC721 {
    function balanceOf(address owner) public view virtual returns (uint256) {}
}

contract IamaiArt is ERC1155AI, Ownable, ReentrancyGuard {
    string private tokenBaseURI;
    string private tokenBaseURIExt;

    uint256 public issuedTokens;
    
    struct AiToken {
      uint256 maxSupply;
      uint256 maxHolderClaim;
      uint256 mintStartAt;
      uint256 mintPublicAt;
      uint256 mintEndAt;
      bytes32 merkleRoot;
      address contractAddress;
      uint256 pricePerClaim;
      uint256 pricePerMint;
    }
    mapping(uint256 => AiToken) public aiTokens;

    mapping(address => mapping(uint256 => bool)) public minted;
    

    function uri(
        uint256 tokenId
    ) public view override returns (
        string memory
    ) {
        require(
            exists(tokenId),
            "Nonexistent token"
        );
        return string(
            abi.encodePacked(
                tokenBaseURI, 
                Strings.toString(tokenId), 
                tokenBaseURIExt
            )
        );
    }
    
    function tokenIssue(
        uint256 _maxSupply,
        uint256 _maxHolderClaim,
        uint256 _mintStartAt,
        uint256 _mintPublicAt,
        uint256 _mintEndAt,
        bytes32 _merkleRoot,
        address _contractAddress,
        uint256 _pricePerClaim,
        uint256 _pricePerMint
    ) external onlyOwner {
        require(
            _maxHolderClaim <= _maxSupply, 
            "_maxSupply less than _maxHolderClaim!"
        );
        aiTokens[issuedTokens] = AiToken(
            _maxSupply,
            _maxHolderClaim,
            _mintStartAt,
            _mintPublicAt,
            _mintEndAt,
            _merkleRoot,
            _contractAddress,
            _pricePerClaim,
            _pricePerMint
        );
        issuedTokens += 1;
    }
    
    function tokenUpdate(
        uint256 _tokenId,
        uint256 _maxSupply,
        uint256 _maxHolderClaim,
        uint256 _mintStartAt,
        uint256 _mintPublicAt,
        uint256 _mintEndAt,
        bytes32 _merkleRoot,
        address _contractAddress,
        uint256 _pricePerClaim,
        uint256 _pricePerMint
    ) external onlyOwner {
        require(
            _tokenId <= issuedTokens, 
            "Token is yet to be issued!"
        );
        require(
            _maxHolderClaim <= _maxSupply, 
            "_maxSupply less than _maxHolderClaim!"
        );
        require(
            totalSupply(_tokenId) <= _maxHolderClaim, 
            "maxSupply less than _maxHolderClaim!"
        );
        require(
            totalSupply(_tokenId) <= _maxSupply, 
            "maxSupply less than totalSupply!"
        );
        aiTokens[_tokenId] = AiToken(
            _maxSupply,
            _maxHolderClaim,
            _mintStartAt,
            _mintPublicAt,
            _mintEndAt,
            _merkleRoot,
            _contractAddress,
            _pricePerClaim,
            _pricePerMint
        );
    }
    
    function claim(
        uint256 tokenId,
        bytes32[] calldata merkleProof
    ) external payable nonReentrant {
        AiToken memory aiToken = aiTokens[tokenId];
        require(
            tokenId <= issuedTokens, 
            "Token is not issued!"
        );
        require(
            totalSupply(tokenId) < aiToken.maxSupply, 
            "Mint limit reached!"
        );
        require(
            totalSupply(tokenId) < aiToken.maxHolderClaim, 
            "Claim limit reached!"
        );
        require(
            tx.origin == _msgSender(), 
            "contracts not allowed"
        );
        if(aiToken.mintStartAt != 0){
            require(
                block.timestamp >= aiToken.mintStartAt, 
                "Claim hasn't started yet!"
            ); 
        }
        if(aiToken.mintPublicAt != 0){
            require(
                block.timestamp < aiToken.mintPublicAt, 
                "Claim has ended!"
            ); 
        }
        if(aiToken.mintEndAt != 0){
            require(
                block.timestamp <= aiToken.mintEndAt, 
                "Mint has ended!"
            ); 
        }
        require(
            !minted[_msgSender()][tokenId], 
            "Wallet limit reached!"
        );
        if(aiToken.merkleRoot != ""){ 
            bytes32 node = keccak256(abi.encodePacked(_msgSender()));
            require(
                MerkleProof.verify(merkleProof, aiToken.merkleRoot, node),
                "Invalid merkle proof"
            );
        }
        if(aiToken.contractAddress != address(0)){ 
            require(
                ERC721(aiToken.contractAddress).balanceOf(_msgSender()) > 0, 
                "You don't hold the required token!"
            );
        }
        require(
            msg.value >= aiToken.pricePerClaim,
            "Not enough ETH sent"
        );
        _mint(_msgSender(), tokenId, 1, "");
        minted[_msgSender()][tokenId] = true;
    }

    function mint(
        uint256 tokenId
    ) external payable nonReentrant {
        AiToken memory aiToken = aiTokens[tokenId];
        require(
            tokenId <= issuedTokens, 
            "Token is not issued!"
        );
        require(
            totalSupply(tokenId) < aiToken.maxSupply, 
            "Mint limit reached!"
        );
        require(
            tx.origin == _msgSender(), 
            "contracts not allowed"
        );
        if(aiToken.mintPublicAt != 0 && totalSupply(tokenId) < aiToken.maxHolderClaim){
            require(
                block.timestamp > aiToken.mintPublicAt, 
                "Mint hasn't started yet!"
            ); 
        }
        if(aiToken.mintEndAt != 0){
            require(
                block.timestamp <= aiToken.mintEndAt, 
                "Mint has ended!"
            ); 
        }
        require(
            !minted[_msgSender()][tokenId], 
            "Wallet limit reached!"
        );
        require(
            msg.value >= aiToken.pricePerMint,
            "Not enough ETH sent"
        );
        _mint(_msgSender(), tokenId, 1, "");
        minted[_msgSender()][tokenId] = true;
    }

    function setURI(
        string calldata _tokenBaseURI,
        string calldata _tokenBaseURIExt
    ) external onlyOwner {
        tokenBaseURI = _tokenBaseURI;
        tokenBaseURIExt = _tokenBaseURIExt;
    }
    
    function withdraw(
    ) external onlyOwner {
        payable(
            _msgSender()
        ).transfer(
            address(this).balance
        );
    }

    function setMarketplaceApproved(
        bool marketplaceApproved
    ) external override onlyOwner {
        _marketplaceApproved = marketplaceApproved;
    }
    
    constructor() ERC1155("") Ownable() {}
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_marketplaceApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"aiTokens","outputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"maxHolderClaim","type":"uint256"},{"internalType":"uint256","name":"mintStartAt","type":"uint256"},{"internalType":"uint256","name":"mintPublicAt","type":"uint256"},{"internalType":"uint256","name":"mintEndAt","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"pricePerClaim","type":"uint256"},{"internalType":"uint256","name":"pricePerMint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"issuedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bool","name":"marketplaceApproved","type":"bool"}],"name":"setMarketplaceApproved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"string","name":"_tokenBaseURIExt","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxHolderClaim","type":"uint256"},{"internalType":"uint256","name":"_mintStartAt","type":"uint256"},{"internalType":"uint256","name":"_mintPublicAt","type":"uint256"},{"internalType":"uint256","name":"_mintEndAt","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_pricePerClaim","type":"uint256"},{"internalType":"uint256","name":"_pricePerMint","type":"uint256"}],"name":"tokenIssue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxHolderClaim","type":"uint256"},{"internalType":"uint256","name":"_mintStartAt","type":"uint256"},{"internalType":"uint256","name":"_mintPublicAt","type":"uint256"},{"internalType":"uint256","name":"_mintEndAt","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_pricePerClaim","type":"uint256"},{"internalType":"uint256","name":"_pricePerMint","type":"uint256"}],"name":"tokenUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a81b03191674011e0049783f008a0085193e00003d00cd54003c711790553480156200003857600080fd5b5060408051602081019091526000815262000053816200006a565b506200005f336200007c565b60016008556200023f565b600262000078828262000173565b5050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000f957607f821691505b6020821081036200011a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200016e57600081815260208120601f850160051c81016020861015620001495750805b601f850160051c820191505b818110156200016a5782815560010162000155565b5050505b505050565b81516001600160401b038111156200018f576200018f620000ce565b620001a781620001a08454620000e4565b8462000120565b602080601f831160018114620001df5760008415620001c65750858301515b600019600386901b1c1916600185901b1785556200016a565b600085815260208120601f198616915b828110156200021057888601518255948401946001909101908401620001ef565b50858210156200022f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612e47806200024f6000396000f3fe60806040526004361061014a5760003560e01c8063a22cb465116100b6578063cb1d72871161006f578063cb1d7287146103d3578063d474459d14610490578063e985e9c5146104b0578063ea101122146104d0578063f242432a146104f1578063f2fde38b1461051157600080fd5b8063a22cb465146102f5578063b534b5b714610315578063b76568081461032b578063bbef5fab14610366578063bd85b03914610386578063bf2db4c8146103b357600080fd5b80633ccfd60b116101085780633ccfd60b146102345780634e1273f4146102495780634f558e7914610276578063715018a6146102a55780638da5cb5b146102ba578063a0712d68146102e257600080fd5b8062fdd58e1461014f57806301ffc9a7146101825780630e89341c146101b25780632d42f785146101df5780632eb2c2d6146102015780632f52ebb714610221575b600080fd5b34801561015b57600080fd5b5061016f61016a36600461216a565b610531565b6040519081526020015b60405180910390f35b34801561018e57600080fd5b506101a261019d3660046121aa565b6105cb565b6040519015158152602001610179565b3480156101be57600080fd5b506101d26101cd3660046121ce565b61061b565b6040516101799190612243565b3480156101eb57600080fd5b506101ff6101fa366004612256565b6106a2565b005b34801561020d57600080fd5b506101ff61021c36600461240f565b6107c4565b6101ff61022f3660046124b8565b61085b565b34801561024057600080fd5b506101ff610e22565b34801561025557600080fd5b50610269610264366004612536565b610e7b565b604051610179919061263b565b34801561028257600080fd5b506101a26102913660046121ce565b600090815260036020526040902054151590565b3480156102b157600080fd5b506101ff610fa4565b3480156102c657600080fd5b506007546040516001600160a01b039091168152602001610179565b6101ff6102f03660046121ce565b610fda565b34801561030157600080fd5b506101ff61031036600461265e565b61135b565b34801561032157600080fd5b5061016f600b5481565b34801561033757600080fd5b506101a261034636600461216a565b600d60209081526000928352604080842090915290825290205460ff1681565b34801561037257600080fd5b506101ff610381366004612691565b611462565b34801561039257600080fd5b5061016f6103a13660046121ce565b60009081526003602052604090205490565b3480156103bf57600080fd5b506101ff6103ce366004612754565b611675565b3480156103df57600080fd5b506104436103ee3660046121ce565b600c602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460078801546008909801549697959694959394929391926001600160a01b03909116919089565b60408051998a5260208a0198909852968801959095526060870193909352608086019190915260a08501526001600160a01b031660c084015260e083015261010082015261012001610179565b34801561049c57600080fd5b506101ff6104ab3660046127bf565b6116ba565b3480156104bc57600080fd5b506101a26104cb3660046127da565b611702565b3480156104dc57600080fd5b506006546101a290600160a01b900460ff1681565b3480156104fd57600080fd5b506101ff61050c366004612804565b61178c565b34801561051d57600080fd5b506101ff61052c366004612868565b611813565b60006001600160a01b0383166105a25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b14806105fc57506001600160e01b031982166303a24d0760e21b145b806105c557506301ffc9a760e01b6001600160e01b03198316146105c5565b60008181526003602052604090205460609061066d5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610599565b6009610678836118ab565b600a60405160200161068c93929190612930565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146106cc5760405162461bcd60e51b815260040161059990612963565b888811156106ec5760405162461bcd60e51b815260040161059990612998565b60408051610120810182528a815260208082018b81528284018b8152606084018b8152608085018b815260a086018b81526001600160a01b038b811660c0890190815260e089018c81526101008a018c8152600b80546000908152600c909b529b8a209a518b5597516001808c0191909155965160028b0155945160038a0155925160048901559051600588015590516006870180546001600160a01b03191691909216179055516007850155905160089093019290925582549192916107b49084906129f3565b9091555050505050505050505050565b6001600160a01b0385163314806107e057506107e08533611702565b6108475760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610599565b61085485858585856119b3565b5050505050565b6002600854036108ad5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610599565b600260088181556000858152600c60209081526040918290208251610120810184528154815260018201549281019290925293840154918101919091526003830154606082015260048301546080820152600583015460a082015260068301546001600160a01b031660c0820152600783015460e0820152910154610100820152600b548411156109775760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74206973737565642160601b6044820152606401610599565b8051600085815260036020526040902054106109cb5760405162461bcd60e51b81526020600482015260136024820152724d696e74206c696d697420726561636865642160681b6044820152606401610599565b80602001516109e68560009081526003602052604090205490565b10610a2a5760405162461bcd60e51b8152602060048201526014602482015273436c61696d206c696d697420726561636865642160601b6044820152606401610599565b323314610a715760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610599565b604081015115610acf578060400151421015610acf5760405162461bcd60e51b815260206004820152601960248201527f436c61696d206861736e277420737461727465642079657421000000000000006044820152606401610599565b606081015115610b1f5780606001514210610b1f5760405162461bcd60e51b815260206004820152601060248201526f436c61696d2068617320656e6465642160801b6044820152606401610599565b608081015115610b6f578060800151421115610b6f5760405162461bcd60e51b815260206004820152600f60248201526e4d696e742068617320656e6465642160881b6044820152606401610599565b336000908152600d6020908152604080832087845290915290205460ff1615610bd25760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d697420726561636865642160581b6044820152606401610599565b60a081015115610c9b576040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c5684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050505060a084015183611b90565b610c995760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610599565b505b60c08101516001600160a01b031615610d8a5760008160c001516001600160a01b03166370a08231610cca3390565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190612a0b565b11610d8a5760405162461bcd60e51b815260206004820152602260248201527f596f7520646f6e277420686f6c642074686520726571756972656420746f6b656044820152616e2160f01b6064820152608401610599565b8060e00151341015610dd45760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610599565b610df03385600160405180602001604052806000815250611c3f565b5050336000908152600d6020908152604080832094835293905291909120805460ff1916600190811790915560085550565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b815260040161059990612963565b60405133904780156108fc02916000818181858888f19350505050158015610e78573d6000803e3d6000fd5b50565b60608151835114610ee05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610599565b600083516001600160401b03811115610efb57610efb6122c6565b604051908082528060200260200182016040528015610f24578160200160208202803683370190505b50905060005b8451811015610f9c57610f6f858281518110610f4857610f48612a24565b6020026020010151858381518110610f6257610f62612a24565b6020026020010151610531565b828281518110610f8157610f81612a24565b6020908102919091010152610f9581612a3a565b9050610f2a565b509392505050565b6007546001600160a01b03163314610fce5760405162461bcd60e51b815260040161059990612963565b610fd86000611c74565b565b60026008540361102c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610599565b600260088181556000838152600c60209081526040918290208251610120810184528154815260018201549281019290925293840154918101919091526003830154606082015260048301546080820152600583015460a082015260068301546001600160a01b031660c0820152600783015460e0820152910154610100820152600b548211156110f65760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74206973737565642160601b6044820152606401610599565b80516000838152600360205260409020541061114a5760405162461bcd60e51b81526020600482015260136024820152724d696e74206c696d697420726561636865642160681b6044820152606401610599565b3233146111915760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610599565b6060810151158015906111bc575080602001516111ba8360009081526003602052604090205490565b105b1561121457806060015142116112145760405162461bcd60e51b815260206004820152601860248201527f4d696e74206861736e27742073746172746564207965742100000000000000006044820152606401610599565b6080810151156112645780608001514211156112645760405162461bcd60e51b815260206004820152600f60248201526e4d696e742068617320656e6465642160881b6044820152606401610599565b336000908152600d6020908152604080832085845290915290205460ff16156112c75760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d697420726561636865642160581b6044820152606401610599565b8061010001513410156113125760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610599565b61132e3383600160405180602001604052806000815250611c3f565b50336000908152600d6020908152604080832093835292905220805460ff19166001908117909155600855565b6001600160a01b03821633036113c55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610599565b3360009081526004602090815260408083206001600160a01b03868116808652919093529220805460ff191684151517905560065416900361141c57336000908152600560205260409020805460ff191682151790555b60405181151581526001600160a01b0383169033907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319060200160405180910390a35050565b6007546001600160a01b0316331461148c5760405162461bcd60e51b815260040161059990612963565b600b548a11156114de5760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e2069732079657420746f20626520697373756564210000000000006044820152606401610599565b888811156114fe5760405162461bcd60e51b815260040161059990612998565b60008a8152600360205260409020548810156115685760405162461bcd60e51b8152602060048201526024808201527f6d6178537570706c79206c657373207468616e205f6d6178486f6c646572436c60448201526361696d2160e01b6064820152608401610599565b60008a8152600360205260409020548910156115c65760405162461bcd60e51b815260206004820181905260248201527f6d6178537570706c79206c657373207468616e20746f74616c537570706c79216044820152606401610599565b6040805161012081018252998a526020808b01998a528a820198895260608b0197885260808b0196875260a08b019586526001600160a01b0394851660c08c0190815260e08c019485526101008c0193845260009c8d52600c9091529a20985189559651600189015594516002880155925160038701559051600486015551600585015593516006840180546001600160a01b0319169190951617909355915160078201559051600890910155565b6007546001600160a01b0316331461169f5760405162461bcd60e51b815260040161059990612963565b60096116ac848683612a9e565b50600a610854828483612a9e565b6007546001600160a01b031633146116e45760405162461bcd60e51b815260040161059990612963565b60068054911515600160a01b0260ff60a01b19909216919091179055565b600654600090600160a01b900460ff16801561172b57506006546001600160a01b038381169116145b801561175057506001600160a01b03831660009081526005602052604090205460ff16155b1561175d575060016105c5565b506001600160a01b0380831660009081526004602090815260408083209385168352929052205460ff166105c5565b6001600160a01b0385163314806117a857506117a88533611702565b6118065760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610599565b6108548585858585611cc6565b6007546001600160a01b0316331461183d5760405162461bcd60e51b815260040161059990612963565b6001600160a01b0381166118a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610599565b610e7881611c74565b6060816000036118d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fc57806118e681612a3a565b91506118f59050600a83612b73565b91506118d6565b6000816001600160401b03811115611916576119166122c6565b6040519080825280601f01601f191660200182016040528015611940576020820181803683370190505b5090505b84156119ab57611955600183612b87565b9150611962600a86612b9e565b61196d9060306129f3565b60f81b81838151811061198257611982612a24565b60200101906001600160f81b031916908160001a9053506119a4600a86612b73565b9450611944565b949350505050565b8151835114611a155760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610599565b6001600160a01b038416611a3b5760405162461bcd60e51b815260040161059990612bb2565b3360005b8451811015611b22576000858281518110611a5c57611a5c612a24565b602002602001015190506000858381518110611a7a57611a7a612a24565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aca5760405162461bcd60e51b815260040161059990612bf7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b079084906129f3565b9250508190555050505080611b1b90612a3a565b9050611a3f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b72929190612c41565b60405180910390a4611b88818787878787611dec565b505050505050565b600081815b8551811015611c34576000868281518110611bb257611bb2612a24565b60200260200101519050808311611bf4576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c21565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c2c81612a3a565b915050611b95565b509092149392505050565b611c4b84848484611f47565b60008381526003602052604081208054849290611c699084906129f3565b909155505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611cec5760405162461bcd60e51b815260040161059990612bb2565b33611d05818787611cfc88612048565b61085488612048565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d465760405162461bcd60e51b815260040161059990612bf7565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d839084906129f3565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611de3828888888888612093565b50505050505050565b6001600160a01b0384163b15611b885760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e309089908990889088908890600401612c6f565b6020604051808303816000875af1925050508015611e6b575060408051601f3d908101601f19168201909252611e6891810190612ccd565b60015b611f1757611e77612cea565b806308c379a003611eb05750611e8b612d06565b80611e965750611eb2565b8060405162461bcd60e51b81526004016105999190612243565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610599565b6001600160e01b0319811663bc197c8160e01b14611de35760405162461bcd60e51b815260040161059990612d8f565b6001600160a01b038416611fa75760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b33611fb881600087611cfc88612048565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611fe89084906129f3565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461085481600087878787612093565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061208257612082612a24565b602090810291909101015292915050565b6001600160a01b0384163b15611b885760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120d79089908990889088908890600401612dd7565b6020604051808303816000875af1925050508015612112575060408051601f3d908101601f1916820190925261210f91810190612ccd565b60015b61211e57611e77612cea565b6001600160e01b0319811663f23a6e6160e01b14611de35760405162461bcd60e51b815260040161059990612d8f565b80356001600160a01b038116811461216557600080fd5b919050565b6000806040838503121561217d57600080fd5b6121868361214e565b946020939093013593505050565b6001600160e01b031981168114610e7857600080fd5b6000602082840312156121bc57600080fd5b81356121c781612194565b9392505050565b6000602082840312156121e057600080fd5b5035919050565b60005b838110156122025781810151838201526020016121ea565b83811115612211576000848401525b50505050565b6000815180845261222f8160208601602086016121e7565b601f01601f19169290920160200192915050565b6020815260006121c76020830184612217565b60008060008060008060008060006101208a8c03121561227557600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a013593506122a860c08b0161214e565b925060e08a013591506101008a013590509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612301576123016122c6565b6040525050565b60006001600160401b03821115612321576123216122c6565b5060051b60200190565b600082601f83011261233c57600080fd5b8135602061234982612308565b60405161235682826122dc565b83815260059390931b850182019282810191508684111561237657600080fd5b8286015b84811015612391578035835291830191830161237a565b509695505050505050565b600082601f8301126123ad57600080fd5b81356001600160401b038111156123c6576123c66122c6565b6040516123dd601f8301601f1916602001826122dc565b8181528460208386010111156123f257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561242757600080fd5b6124308661214e565b945061243e6020870161214e565b935060408601356001600160401b038082111561245a57600080fd5b61246689838a0161232b565b9450606088013591508082111561247c57600080fd5b61248889838a0161232b565b9350608088013591508082111561249e57600080fd5b506124ab8882890161239c565b9150509295509295909350565b6000806000604084860312156124cd57600080fd5b8335925060208401356001600160401b03808211156124eb57600080fd5b818601915086601f8301126124ff57600080fd5b81358181111561250e57600080fd5b8760208260051b850101111561252357600080fd5b6020830194508093505050509250925092565b6000806040838503121561254957600080fd5b82356001600160401b038082111561256057600080fd5b818501915085601f83011261257457600080fd5b8135602061258182612308565b60405161258e82826122dc565b83815260059390931b85018201928281019150898411156125ae57600080fd5b948201945b838610156125d3576125c48661214e565b825294820194908201906125b3565b965050860135925050808211156125e957600080fd5b506125f68582860161232b565b9150509250929050565b600081518084526020808501945080840160005b8381101561263057815187529582019590820190600101612614565b509495945050505050565b6020815260006121c76020830184612600565b8035801515811461216557600080fd5b6000806040838503121561267157600080fd5b61267a8361214e565b91506126886020840161264e565b90509250929050565b6000806000806000806000806000806101408b8d0312156126b157600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b013593506126eb60e08c0161214e565b92506101008b013591506101208b013590509295989b9194979a5092959850565b60008083601f84011261271e57600080fd5b5081356001600160401b0381111561273557600080fd5b60208301915083602082850101111561274d57600080fd5b9250929050565b6000806000806040858703121561276a57600080fd5b84356001600160401b038082111561278157600080fd5b61278d8883890161270c565b909650945060208701359150808211156127a657600080fd5b506127b38782880161270c565b95989497509550505050565b6000602082840312156127d157600080fd5b6121c78261264e565b600080604083850312156127ed57600080fd5b6127f68361214e565b91506126886020840161214e565b600080600080600060a0868803121561281c57600080fd5b6128258661214e565b94506128336020870161214e565b9350604086013592506060860135915060808601356001600160401b0381111561285c57600080fd5b6124ab8882890161239c565b60006020828403121561287a57600080fd5b6121c78261214e565b600181811c9082168061289757607f821691505b6020821081036128b757634e487b7160e01b600052602260045260246000fd5b50919050565b600081546128ca81612883565b600182811680156128e257600181146128f757612926565b60ff1984168752821515830287019450612926565b8560005260208060002060005b8581101561291d5781548a820152908401908201612904565b50505082870194505b5050505092915050565b600061293c82866128bd565b845161294c8183602089016121e7565b612958818301866128bd565b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f5f6d6178537570706c79206c657373207468616e205f6d6178486f6c646572436040820152646c61696d2160d81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a0657612a066129dd565b500190565b600060208284031215612a1d57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201612a4c57612a4c6129dd565b5060010190565b601f821115612a9957600081815260208120601f850160051c81016020861015612a7a5750805b601f850160051c820191505b81811015611b8857828155600101612a86565b505050565b6001600160401b03831115612ab557612ab56122c6565b612ac983612ac38354612883565b83612a53565b6000601f841160018114612afd5760008515612ae55750838201355b600019600387901b1c1916600186901b178355610854565b600083815260209020601f19861690835b82811015612b2e5786850135825560209485019460019092019101612b0e565b5086821015612b4b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b8257612b82612b5d565b500490565b600082821015612b9957612b996129dd565b500390565b600082612bad57612bad612b5d565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612c546040830185612600565b8281036020840152612c668185612600565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612c9b90830186612600565b8281036060840152612cad8186612600565b90508281036080840152612cc18185612217565b98975050505050505050565b600060208284031215612cdf57600080fd5b81516121c781612194565b600060033d1115612d035760046000803e5060005160e01c5b90565b600060443d1015612d145790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612d4357505050505090565b8285019150815181811115612d5b5750505050505090565b843d8701016020828501011115612d755750505050505090565b612d84602082860101876122dc565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129589083018461221756fea26469706673582212209e5a676d3661e1b5d43c6803da6ba5da48c225e6343e2276c96044d2808b9fe964736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061014a5760003560e01c8063a22cb465116100b6578063cb1d72871161006f578063cb1d7287146103d3578063d474459d14610490578063e985e9c5146104b0578063ea101122146104d0578063f242432a146104f1578063f2fde38b1461051157600080fd5b8063a22cb465146102f5578063b534b5b714610315578063b76568081461032b578063bbef5fab14610366578063bd85b03914610386578063bf2db4c8146103b357600080fd5b80633ccfd60b116101085780633ccfd60b146102345780634e1273f4146102495780634f558e7914610276578063715018a6146102a55780638da5cb5b146102ba578063a0712d68146102e257600080fd5b8062fdd58e1461014f57806301ffc9a7146101825780630e89341c146101b25780632d42f785146101df5780632eb2c2d6146102015780632f52ebb714610221575b600080fd5b34801561015b57600080fd5b5061016f61016a36600461216a565b610531565b6040519081526020015b60405180910390f35b34801561018e57600080fd5b506101a261019d3660046121aa565b6105cb565b6040519015158152602001610179565b3480156101be57600080fd5b506101d26101cd3660046121ce565b61061b565b6040516101799190612243565b3480156101eb57600080fd5b506101ff6101fa366004612256565b6106a2565b005b34801561020d57600080fd5b506101ff61021c36600461240f565b6107c4565b6101ff61022f3660046124b8565b61085b565b34801561024057600080fd5b506101ff610e22565b34801561025557600080fd5b50610269610264366004612536565b610e7b565b604051610179919061263b565b34801561028257600080fd5b506101a26102913660046121ce565b600090815260036020526040902054151590565b3480156102b157600080fd5b506101ff610fa4565b3480156102c657600080fd5b506007546040516001600160a01b039091168152602001610179565b6101ff6102f03660046121ce565b610fda565b34801561030157600080fd5b506101ff61031036600461265e565b61135b565b34801561032157600080fd5b5061016f600b5481565b34801561033757600080fd5b506101a261034636600461216a565b600d60209081526000928352604080842090915290825290205460ff1681565b34801561037257600080fd5b506101ff610381366004612691565b611462565b34801561039257600080fd5b5061016f6103a13660046121ce565b60009081526003602052604090205490565b3480156103bf57600080fd5b506101ff6103ce366004612754565b611675565b3480156103df57600080fd5b506104436103ee3660046121ce565b600c602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460078801546008909801549697959694959394929391926001600160a01b03909116919089565b60408051998a5260208a0198909852968801959095526060870193909352608086019190915260a08501526001600160a01b031660c084015260e083015261010082015261012001610179565b34801561049c57600080fd5b506101ff6104ab3660046127bf565b6116ba565b3480156104bc57600080fd5b506101a26104cb3660046127da565b611702565b3480156104dc57600080fd5b506006546101a290600160a01b900460ff1681565b3480156104fd57600080fd5b506101ff61050c366004612804565b61178c565b34801561051d57600080fd5b506101ff61052c366004612868565b611813565b60006001600160a01b0383166105a25760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b14806105fc57506001600160e01b031982166303a24d0760e21b145b806105c557506301ffc9a760e01b6001600160e01b03198316146105c5565b60008181526003602052604090205460609061066d5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610599565b6009610678836118ab565b600a60405160200161068c93929190612930565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146106cc5760405162461bcd60e51b815260040161059990612963565b888811156106ec5760405162461bcd60e51b815260040161059990612998565b60408051610120810182528a815260208082018b81528284018b8152606084018b8152608085018b815260a086018b81526001600160a01b038b811660c0890190815260e089018c81526101008a018c8152600b80546000908152600c909b529b8a209a518b5597516001808c0191909155965160028b0155945160038a0155925160048901559051600588015590516006870180546001600160a01b03191691909216179055516007850155905160089093019290925582549192916107b49084906129f3565b9091555050505050505050505050565b6001600160a01b0385163314806107e057506107e08533611702565b6108475760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610599565b61085485858585856119b3565b5050505050565b6002600854036108ad5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610599565b600260088181556000858152600c60209081526040918290208251610120810184528154815260018201549281019290925293840154918101919091526003830154606082015260048301546080820152600583015460a082015260068301546001600160a01b031660c0820152600783015460e0820152910154610100820152600b548411156109775760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74206973737565642160601b6044820152606401610599565b8051600085815260036020526040902054106109cb5760405162461bcd60e51b81526020600482015260136024820152724d696e74206c696d697420726561636865642160681b6044820152606401610599565b80602001516109e68560009081526003602052604090205490565b10610a2a5760405162461bcd60e51b8152602060048201526014602482015273436c61696d206c696d697420726561636865642160601b6044820152606401610599565b323314610a715760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610599565b604081015115610acf578060400151421015610acf5760405162461bcd60e51b815260206004820152601960248201527f436c61696d206861736e277420737461727465642079657421000000000000006044820152606401610599565b606081015115610b1f5780606001514210610b1f5760405162461bcd60e51b815260206004820152601060248201526f436c61696d2068617320656e6465642160801b6044820152606401610599565b608081015115610b6f578060800151421115610b6f5760405162461bcd60e51b815260206004820152600f60248201526e4d696e742068617320656e6465642160881b6044820152606401610599565b336000908152600d6020908152604080832087845290915290205460ff1615610bd25760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d697420726561636865642160581b6044820152606401610599565b60a081015115610c9b576040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610c5684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050505060a084015183611b90565b610c995760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610599565b505b60c08101516001600160a01b031615610d8a5760008160c001516001600160a01b03166370a08231610cca3390565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d329190612a0b565b11610d8a5760405162461bcd60e51b815260206004820152602260248201527f596f7520646f6e277420686f6c642074686520726571756972656420746f6b656044820152616e2160f01b6064820152608401610599565b8060e00151341015610dd45760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610599565b610df03385600160405180602001604052806000815250611c3f565b5050336000908152600d6020908152604080832094835293905291909120805460ff1916600190811790915560085550565b6007546001600160a01b03163314610e4c5760405162461bcd60e51b815260040161059990612963565b60405133904780156108fc02916000818181858888f19350505050158015610e78573d6000803e3d6000fd5b50565b60608151835114610ee05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610599565b600083516001600160401b03811115610efb57610efb6122c6565b604051908082528060200260200182016040528015610f24578160200160208202803683370190505b50905060005b8451811015610f9c57610f6f858281518110610f4857610f48612a24565b6020026020010151858381518110610f6257610f62612a24565b6020026020010151610531565b828281518110610f8157610f81612a24565b6020908102919091010152610f9581612a3a565b9050610f2a565b509392505050565b6007546001600160a01b03163314610fce5760405162461bcd60e51b815260040161059990612963565b610fd86000611c74565b565b60026008540361102c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610599565b600260088181556000838152600c60209081526040918290208251610120810184528154815260018201549281019290925293840154918101919091526003830154606082015260048301546080820152600583015460a082015260068301546001600160a01b031660c0820152600783015460e0820152910154610100820152600b548211156110f65760405162461bcd60e51b8152602060048201526014602482015273546f6b656e206973206e6f74206973737565642160601b6044820152606401610599565b80516000838152600360205260409020541061114a5760405162461bcd60e51b81526020600482015260136024820152724d696e74206c696d697420726561636865642160681b6044820152606401610599565b3233146111915760405162461bcd60e51b815260206004820152601560248201527418dbdb9d1c9858dd1cc81b9bdd08185b1b1bddd959605a1b6044820152606401610599565b6060810151158015906111bc575080602001516111ba8360009081526003602052604090205490565b105b1561121457806060015142116112145760405162461bcd60e51b815260206004820152601860248201527f4d696e74206861736e27742073746172746564207965742100000000000000006044820152606401610599565b6080810151156112645780608001514211156112645760405162461bcd60e51b815260206004820152600f60248201526e4d696e742068617320656e6465642160881b6044820152606401610599565b336000908152600d6020908152604080832085845290915290205460ff16156112c75760405162461bcd60e51b815260206004820152601560248201527457616c6c6574206c696d697420726561636865642160581b6044820152606401610599565b8061010001513410156113125760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b6044820152606401610599565b61132e3383600160405180602001604052806000815250611c3f565b50336000908152600d6020908152604080832093835292905220805460ff19166001908117909155600855565b6001600160a01b03821633036113c55760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610599565b3360009081526004602090815260408083206001600160a01b03868116808652919093529220805460ff191684151517905560065416900361141c57336000908152600560205260409020805460ff191682151790555b60405181151581526001600160a01b0383169033907f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319060200160405180910390a35050565b6007546001600160a01b0316331461148c5760405162461bcd60e51b815260040161059990612963565b600b548a11156114de5760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e2069732079657420746f20626520697373756564210000000000006044820152606401610599565b888811156114fe5760405162461bcd60e51b815260040161059990612998565b60008a8152600360205260409020548810156115685760405162461bcd60e51b8152602060048201526024808201527f6d6178537570706c79206c657373207468616e205f6d6178486f6c646572436c60448201526361696d2160e01b6064820152608401610599565b60008a8152600360205260409020548910156115c65760405162461bcd60e51b815260206004820181905260248201527f6d6178537570706c79206c657373207468616e20746f74616c537570706c79216044820152606401610599565b6040805161012081018252998a526020808b01998a528a820198895260608b0197885260808b0196875260a08b019586526001600160a01b0394851660c08c0190815260e08c019485526101008c0193845260009c8d52600c9091529a20985189559651600189015594516002880155925160038701559051600486015551600585015593516006840180546001600160a01b0319169190951617909355915160078201559051600890910155565b6007546001600160a01b0316331461169f5760405162461bcd60e51b815260040161059990612963565b60096116ac848683612a9e565b50600a610854828483612a9e565b6007546001600160a01b031633146116e45760405162461bcd60e51b815260040161059990612963565b60068054911515600160a01b0260ff60a01b19909216919091179055565b600654600090600160a01b900460ff16801561172b57506006546001600160a01b038381169116145b801561175057506001600160a01b03831660009081526005602052604090205460ff16155b1561175d575060016105c5565b506001600160a01b0380831660009081526004602090815260408083209385168352929052205460ff166105c5565b6001600160a01b0385163314806117a857506117a88533611702565b6118065760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610599565b6108548585858585611cc6565b6007546001600160a01b0316331461183d5760405162461bcd60e51b815260040161059990612963565b6001600160a01b0381166118a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610599565b610e7881611c74565b6060816000036118d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fc57806118e681612a3a565b91506118f59050600a83612b73565b91506118d6565b6000816001600160401b03811115611916576119166122c6565b6040519080825280601f01601f191660200182016040528015611940576020820181803683370190505b5090505b84156119ab57611955600183612b87565b9150611962600a86612b9e565b61196d9060306129f3565b60f81b81838151811061198257611982612a24565b60200101906001600160f81b031916908160001a9053506119a4600a86612b73565b9450611944565b949350505050565b8151835114611a155760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610599565b6001600160a01b038416611a3b5760405162461bcd60e51b815260040161059990612bb2565b3360005b8451811015611b22576000858281518110611a5c57611a5c612a24565b602002602001015190506000858381518110611a7a57611a7a612a24565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611aca5760405162461bcd60e51b815260040161059990612bf7565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b079084906129f3565b9250508190555050505080611b1b90612a3a565b9050611a3f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b72929190612c41565b60405180910390a4611b88818787878787611dec565b505050505050565b600081815b8551811015611c34576000868281518110611bb257611bb2612a24565b60200260200101519050808311611bf4576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c21565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c2c81612a3a565b915050611b95565b509092149392505050565b611c4b84848484611f47565b60008381526003602052604081208054849290611c699084906129f3565b909155505050505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611cec5760405162461bcd60e51b815260040161059990612bb2565b33611d05818787611cfc88612048565b61085488612048565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611d465760405162461bcd60e51b815260040161059990612bf7565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611d839084906129f3565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611de3828888888888612093565b50505050505050565b6001600160a01b0384163b15611b885760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e309089908990889088908890600401612c6f565b6020604051808303816000875af1925050508015611e6b575060408051601f3d908101601f19168201909252611e6891810190612ccd565b60015b611f1757611e77612cea565b806308c379a003611eb05750611e8b612d06565b80611e965750611eb2565b8060405162461bcd60e51b81526004016105999190612243565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610599565b6001600160e01b0319811663bc197c8160e01b14611de35760405162461bcd60e51b815260040161059990612d8f565b6001600160a01b038416611fa75760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b33611fb881600087611cfc88612048565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611fe89084906129f3565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461085481600087878787612093565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061208257612082612a24565b602090810291909101015292915050565b6001600160a01b0384163b15611b885760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906120d79089908990889088908890600401612dd7565b6020604051808303816000875af1925050508015612112575060408051601f3d908101601f1916820190925261210f91810190612ccd565b60015b61211e57611e77612cea565b6001600160e01b0319811663f23a6e6160e01b14611de35760405162461bcd60e51b815260040161059990612d8f565b80356001600160a01b038116811461216557600080fd5b919050565b6000806040838503121561217d57600080fd5b6121868361214e565b946020939093013593505050565b6001600160e01b031981168114610e7857600080fd5b6000602082840312156121bc57600080fd5b81356121c781612194565b9392505050565b6000602082840312156121e057600080fd5b5035919050565b60005b838110156122025781810151838201526020016121ea565b83811115612211576000848401525b50505050565b6000815180845261222f8160208601602086016121e7565b601f01601f19169290920160200192915050565b6020815260006121c76020830184612217565b60008060008060008060008060006101208a8c03121561227557600080fd5b8935985060208a0135975060408a0135965060608a0135955060808a0135945060a08a013593506122a860c08b0161214e565b925060e08a013591506101008a013590509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612301576123016122c6565b6040525050565b60006001600160401b03821115612321576123216122c6565b5060051b60200190565b600082601f83011261233c57600080fd5b8135602061234982612308565b60405161235682826122dc565b83815260059390931b850182019282810191508684111561237657600080fd5b8286015b84811015612391578035835291830191830161237a565b509695505050505050565b600082601f8301126123ad57600080fd5b81356001600160401b038111156123c6576123c66122c6565b6040516123dd601f8301601f1916602001826122dc565b8181528460208386010111156123f257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561242757600080fd5b6124308661214e565b945061243e6020870161214e565b935060408601356001600160401b038082111561245a57600080fd5b61246689838a0161232b565b9450606088013591508082111561247c57600080fd5b61248889838a0161232b565b9350608088013591508082111561249e57600080fd5b506124ab8882890161239c565b9150509295509295909350565b6000806000604084860312156124cd57600080fd5b8335925060208401356001600160401b03808211156124eb57600080fd5b818601915086601f8301126124ff57600080fd5b81358181111561250e57600080fd5b8760208260051b850101111561252357600080fd5b6020830194508093505050509250925092565b6000806040838503121561254957600080fd5b82356001600160401b038082111561256057600080fd5b818501915085601f83011261257457600080fd5b8135602061258182612308565b60405161258e82826122dc565b83815260059390931b85018201928281019150898411156125ae57600080fd5b948201945b838610156125d3576125c48661214e565b825294820194908201906125b3565b965050860135925050808211156125e957600080fd5b506125f68582860161232b565b9150509250929050565b600081518084526020808501945080840160005b8381101561263057815187529582019590820190600101612614565b509495945050505050565b6020815260006121c76020830184612600565b8035801515811461216557600080fd5b6000806040838503121561267157600080fd5b61267a8361214e565b91506126886020840161264e565b90509250929050565b6000806000806000806000806000806101408b8d0312156126b157600080fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b013593506126eb60e08c0161214e565b92506101008b013591506101208b013590509295989b9194979a5092959850565b60008083601f84011261271e57600080fd5b5081356001600160401b0381111561273557600080fd5b60208301915083602082850101111561274d57600080fd5b9250929050565b6000806000806040858703121561276a57600080fd5b84356001600160401b038082111561278157600080fd5b61278d8883890161270c565b909650945060208701359150808211156127a657600080fd5b506127b38782880161270c565b95989497509550505050565b6000602082840312156127d157600080fd5b6121c78261264e565b600080604083850312156127ed57600080fd5b6127f68361214e565b91506126886020840161214e565b600080600080600060a0868803121561281c57600080fd5b6128258661214e565b94506128336020870161214e565b9350604086013592506060860135915060808601356001600160401b0381111561285c57600080fd5b6124ab8882890161239c565b60006020828403121561287a57600080fd5b6121c78261214e565b600181811c9082168061289757607f821691505b6020821081036128b757634e487b7160e01b600052602260045260246000fd5b50919050565b600081546128ca81612883565b600182811680156128e257600181146128f757612926565b60ff1984168752821515830287019450612926565b8560005260208060002060005b8581101561291d5781548a820152908401908201612904565b50505082870194505b5050505092915050565b600061293c82866128bd565b845161294c8183602089016121e7565b612958818301866128bd565b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f5f6d6178537570706c79206c657373207468616e205f6d6178486f6c646572436040820152646c61696d2160d81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a0657612a066129dd565b500190565b600060208284031215612a1d57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201612a4c57612a4c6129dd565b5060010190565b601f821115612a9957600081815260208120601f850160051c81016020861015612a7a5750805b601f850160051c820191505b81811015611b8857828155600101612a86565b505050565b6001600160401b03831115612ab557612ab56122c6565b612ac983612ac38354612883565b83612a53565b6000601f841160018114612afd5760008515612ae55750838201355b600019600387901b1c1916600186901b178355610854565b600083815260209020601f19861690835b82811015612b2e5786850135825560209485019460019092019101612b0e565b5086821015612b4b5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b8257612b82612b5d565b500490565b600082821015612b9957612b996129dd565b500390565b600082612bad57612bad612b5d565b500690565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000612c546040830185612600565b8281036020840152612c668185612600565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612c9b90830186612600565b8281036060840152612cad8186612600565b90508281036080840152612cc18185612217565b98975050505050505050565b600060208284031215612cdf57600080fd5b81516121c781612194565b600060033d1115612d035760046000803e5060005160e01c5b90565b600060443d1015612d145790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612d4357505050505090565b8285019150815181811115612d5b5750505050505090565b843d8701016020828501011115612d755750505050505090565b612d84602082860101876122dc565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906129589083018461221756fea26469706673582212209e5a676d3661e1b5d43c6803da6ba5da48c225e6343e2276c96044d2808b9fe964736f6c634300080f0033

Deployed Bytecode Sourcemap

46374:6872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27037:231;;;;;;;;;;-1:-1:-1;27037:231:0;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;27037:231:0;;;;;;;;26060:310;;;;;;;;;;-1:-1:-1;26060:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;26060:310:0;1019:187:1;46963:400:0;;;;;;;;;;-1:-1:-1;46963:400:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47375:798::-;;;;;;;;;;-1:-1:-1;47375:798:0;;;;;:::i;:::-;;:::i;:::-;;29132:442;;;;;;;;;;-1:-1:-1;29132:442:0;;;;;:::i;:::-;;:::i;49370:2026::-;;;;;;:::i;:::-;;:::i;52851:165::-;;;;;;;;;;;;;:::i;27434:524::-;;;;;;;;;;-1:-1:-1;27434:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41283:118::-;;;;;;;;;;-1:-1:-1;41283:118:0;;;;;:::i;:::-;41340:4;41161:16;;;:12;:16;;;;;;-1:-1:-1;;;41283:118:0;45567:94;;;;;;;;;;;;;:::i;44916:87::-;;;;;;;;;;-1:-1:-1;44989:6:0;;44916:87;;-1:-1:-1;;;;;44989:6:0;;;8452:51:1;;8440:2;8425:18;44916:87:0;8306:203:1;51404:1210:0;;;;;;:::i;:::-;;:::i;41474:432::-;;;;;;;;;;-1:-1:-1;41474:432:0;;;;;:::i;:::-;;:::i;46511:27::-;;;;;;;;;;;;;;;;46890:58;;;;;;;;;;-1:-1:-1;46890:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;48185:1173;;;;;;;;;;-1:-1:-1;48185:1173:0;;;;;:::i;:::-;;:::i;41072:113::-;;;;;;;;;;-1:-1:-1;41072:113:0;;;;;:::i;:::-;41134:7;41161:16;;;:12;:16;;;;;;;41072:113;52622:217;;;;;;;;;;-1:-1:-1;52622:217:0;;;;;:::i;:::-;;:::i;46838:43::-;;;;;;;;;;-1:-1:-1;46838:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46838:43:0;;;;;;;;;;;11198:25:1;;;11254:2;11239:18;;11232:34;;;;11282:18;;;11275:34;;;;11340:2;11325:18;;11318:34;;;;11383:3;11368:19;;11361:35;;;;11427:3;11412:19;;11405:35;-1:-1:-1;;;;;11477:32:1;11471:3;11456:19;;11449:61;11541:3;11526:19;;11519:35;11585:3;11570:19;;11563:35;11185:3;11170:19;46838:43:0;10827:777:1;53024:163:0;;;;;;;;;;-1:-1:-1;53024:163:0;;;;;:::i;:::-;;:::i;41978:335::-;;;;;;;;;;-1:-1:-1;41978:335:0;;;;;:::i;:::-;;:::i;40950:39::-;;;;;;;;;;-1:-1:-1;40950:39:0;;;;-1:-1:-1;;;40950:39:0;;;;;;28654:401;;;;;;;;;;-1:-1:-1;28654:401:0;;;;;:::i;:::-;;:::i;45816:192::-;;;;;;;;;;-1:-1:-1;45816:192:0;;;;;:::i;:::-;;:::i;27037:231::-;27123:7;-1:-1:-1;;;;;27151:21:0;;27143:77;;;;-1:-1:-1;;;27143:77:0;;13063:2:1;27143:77:0;;;13045:21:1;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:1;;;13185:41;13243:19;;27143:77:0;;;;;;;;;-1:-1:-1;27238:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;27238:22:0;;;;;;;;;;27037:231;;;;;:::o;26060:310::-;26162:4;-1:-1:-1;;;;;;26199:41:0;;-1:-1:-1;;;26199:41:0;;:110;;-1:-1:-1;;;;;;;26257:52:0;;-1:-1:-1;;;26257:52:0;26199:110;:163;;;-1:-1:-1;;;;;;;;;;10466:40:0;;;26326:36;10357:157;46963:400;41340:4;41161:16;;;:12;:16;;;;;;47049:13;;47081:82;;;;-1:-1:-1;;;47081:82:0;;13475:2:1;47081:82:0;;;13457:21:1;13514:2;13494:18;;;13487:30;-1:-1:-1;;;13533:18:1;;;13526:47;13590:18;;47081:82:0;13273:341:1;47081:82:0;47237:12;47269:25;47286:7;47269:16;:25::i;:::-;47314:15;47202:142;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47174:181;;46963:400;;;:::o;47375:798::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;47758:10:::1;47739:15;:29;;47717:117;;;;-1:-1:-1::0;;;47717:117:0::1;;;;;;;:::i;:::-;47870:267;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47870:267:0;;::::1;::::0;;;;;;;;;;;;;;;;;;47854:12:::1;::::0;;-1:-1:-1;47845:22:0;;;:8:::1;:22:::0;;;;;;:292;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;47845:292:0::1;::::0;;;::::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;48148:17;;47845:292;;47854:12;48148:17:::1;::::0;47845:292;;48148:17:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;;;47375:798:0:o;29132:442::-;-1:-1:-1;;;;;29365:20:0;;24903:10;29365:20;;:60;;-1:-1:-1;29389:36:0;29406:4;24903:10;41978:335;:::i;29389:36::-;29343:160;;;;-1:-1:-1;;;29343:160:0;;16552:2:1;29343:160:0;;;16534:21:1;16591:2;16571:18;;;16564:30;16630:34;16610:18;;;16603:62;-1:-1:-1;;;16681:18:1;;;16674:48;16739:19;;29343:160:0;16350:414:1;29343:160:0;29514:52;29537:4;29543:2;29547:3;29552:7;29561:4;29514:22;:52::i;:::-;29132:442;;;;;:::o;49370:2026::-;23245:1;23841:7;;:19;23833:63;;;;-1:-1:-1;;;23833:63:0;;16971:2:1;23833:63:0;;;16953:21:1;17010:2;16990:18;;;16983:30;17049:33;17029:18;;;17022:61;17100:18;;23833:63:0;16769:355:1;23833:63:0;23245:1;23974:7;:18;;;49500:22:::1;49525:17:::0;;;:8:::1;:17;::::0;;;;;;;;49500:42;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;49500:42:0::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;49586:12:::1;::::0;49575:23;::::1;;49553:94;;;::::0;-1:-1:-1;;;49553:94:0;;17331:2:1;49553:94:0::1;::::0;::::1;17313:21:1::0;17370:2;17350:18;;;17343:30;-1:-1:-1;;;17389:18:1;;;17382:50;17449:18;;49553:94:0::1;17129:344:1::0;49553:94:0::1;49703:17:::0;;41134:7;41161:16;;;:12;:16;;;;;;49680:40:::1;49658:110;;;::::0;-1:-1:-1;;;49658:110:0;;17680:2:1;49658:110:0::1;::::0;::::1;17662:21:1::0;17719:2;17699:18;;;17692:30;-1:-1:-1;;;17738:18:1;;;17731:49;17797:18;;49658:110:0::1;17478:343:1::0;49658:110:0::1;49824:7;:22;;;49801:20;49813:7;41134::::0;41161:16;;;:12;:16;;;;;;;41072:113;49801:20:::1;:45;49779:116;;;::::0;-1:-1:-1;;;49779:116:0;;18028:2:1;49779:116:0::1;::::0;::::1;18010:21:1::0;18067:2;18047:18;;;18040:30;-1:-1:-1;;;18086:18:1;;;18079:50;18146:18;;49779:116:0::1;17826:344:1::0;49779:116:0::1;49928:9;24903:10:::0;49928:25:::1;49906:97;;;::::0;-1:-1:-1;;;49906:97:0;;18377:2:1;49906:97:0::1;::::0;::::1;18359:21:1::0;18416:2;18396:18;;;18389:30;-1:-1:-1;;;18435:18:1;;;18428:51;18496:18;;49906:97:0::1;18175:345:1::0;49906:97:0::1;50017:19;::::0;::::1;::::0;:24;50014:182:::1;;50102:7;:19;;;50083:15;:38;;50057:126;;;::::0;-1:-1:-1;;;50057:126:0;;18727:2:1;50057:126:0::1;::::0;::::1;18709:21:1::0;18766:2;18746:18;;;18739:30;18805:27;18785:18;;;18778:55;18850:18;;50057:126:0::1;18525:349:1::0;50057:126:0::1;50209:20;::::0;::::1;::::0;:25;50206:174:::1;;50294:7;:20;;;50276:15;:38;50250:117;;;::::0;-1:-1:-1;;;50250:117:0;;19081:2:1;50250:117:0::1;::::0;::::1;19063:21:1::0;19120:2;19100:18;;;19093:30;-1:-1:-1;;;19139:18:1;;;19132:46;19195:18;;50250:117:0::1;18879:340:1::0;50250:117:0::1;50393:17;::::0;::::1;::::0;:22;50390:168:::1;;50476:7;:17;;;50457:15;:36;;50431:114;;;::::0;-1:-1:-1;;;50431:114:0;;19426:2:1;50431:114:0::1;::::0;::::1;19408:21:1::0;19465:2;19445:18;;;19438:30;-1:-1:-1;;;19484:18:1;;;19477:45;19539:18;;50431:114:0::1;19224:339:1::0;50431:114:0::1;24903:10:::0;50591:20:::1;::::0;;;:6:::1;:20;::::0;;;;;;;:29;;;;;;;;;::::1;;50590:30;50568:102;;;::::0;-1:-1:-1;;;50568:102:0;;19770:2:1;50568:102:0::1;::::0;::::1;19752:21:1::0;19809:2;19789:18;;;19782:30;-1:-1:-1;;;19828:18:1;;;19821:51;19889:18;;50568:102:0::1;19568:345:1::0;50568:102:0::1;50684:18;::::0;::::1;::::0;:24;50681:266:::1;;50750:30;::::0;-1:-1:-1;;24903:10:0;20067:2:1;20063:15;20059:53;50750:30:0::1;::::0;::::1;20047:66:1::0;50725:12:0::1;::::0;20129::1;;50750:30:0::1;;;;;;;;;;;;50740:41;;;;;;50725:56;;50822:57;50841:11;;50822:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;50854:18:0::1;::::0;::::1;::::0;50874:4;50822:18:::1;:57::i;:::-;50796:139;;;::::0;-1:-1:-1;;;50796:139:0;;20354:2:1;50796:139:0::1;::::0;::::1;20336:21:1::0;20393:2;20373:18;;;20366:30;-1:-1:-1;;;20412:18:1;;;20405:50;20472:18;;50796:139:0::1;20152:344:1::0;50796:139:0::1;50709:238;50681:266;50960:23;::::0;::::1;::::0;-1:-1:-1;;;;;50960:37:0::1;::::0;50957:225:::1;;51098:1;51047:7;:23;;;-1:-1:-1::0;;;;;51040:41:0::1;;51082:12;24903:10:::0;;24823:98;51082:12:::1;51040:55;::::0;-1:-1:-1;;;;;;51040:55:0::1;::::0;;;;;;-1:-1:-1;;;;;8470:32:1;;;51040:55:0::1;::::0;::::1;8452:51:1::0;8425:18;;51040:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;51014:156;;;::::0;-1:-1:-1;;;51014:156:0;;20892:2:1;51014:156:0::1;::::0;::::1;20874:21:1::0;20931:2;20911:18;;;20904:30;20970:34;20950:18;;;20943:62;-1:-1:-1;;;21021:18:1;;;21014:32;21063:19;;51014:156:0::1;20690:398:1::0;51014:156:0::1;51227:7;:21;;;51214:9;:34;;51192:103;;;::::0;-1:-1:-1;;;51192:103:0;;21295:2:1;51192:103:0::1;::::0;::::1;21277:21:1::0;21334:2;21314:18;;;21307:30;-1:-1:-1;;;21353:18:1;;;21346:49;21412:18;;51192:103:0::1;21093:343:1::0;51192:103:0::1;51306:35;24903:10:::0;51326:7:::1;51335:1;51306:35;;;;;;;;;;;::::0;:5:::1;:35::i;:::-;-1:-1:-1::0;;24903:10:0;51352:20:::1;::::0;;;:6:::1;:20;::::0;;;;;;;:29;;;;;;;;;;:36;;-1:-1:-1;;51352:36:0::1;51384:4;51352:36:::0;;::::1;::::0;;;24153:7;:22;-1:-1:-1;49370:2026:0:o;52851:165::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;52907:101:::1;::::0;24903:10;;52976:21:::1;52907:101:::0;::::1;;;::::0;::::1;::::0;;;52976:21;24903:10;52907:101;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52851:165::o:0;27434:524::-;27590:16;27651:3;:10;27632:8;:15;:29;27624:83;;;;-1:-1:-1;;;27624:83:0;;21643:2:1;27624:83:0;;;21625:21:1;21682:2;21662:18;;;21655:30;21721:34;21701:18;;;21694:62;-1:-1:-1;;;21772:18:1;;;21765:39;21821:19;;27624:83:0;21441:405:1;27624:83:0;27720:30;27767:8;:15;-1:-1:-1;;;;;27753:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27753:30:0;;27720:63;;27801:9;27796:122;27820:8;:15;27816:1;:19;27796:122;;;27876:30;27886:8;27895:1;27886:11;;;;;;;;:::i;:::-;;;;;;;27899:3;27903:1;27899:6;;;;;;;;:::i;:::-;;;;;;;27876:9;:30::i;:::-;27857:13;27871:1;27857:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;27837:3;;;:::i;:::-;;;27796:122;;;-1:-1:-1;27937:13:0;27434:524;-1:-1:-1;;;27434:524:0:o;45567:94::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;45632:21:::1;45650:1;45632:9;:21::i;:::-;45567:94::o:0;51404:1210::-;23245:1;23841:7;;:19;23833:63;;;;-1:-1:-1;;;23833:63:0;;16971:2:1;23833:63:0;;;16953:21:1;17010:2;16990:18;;;16983:30;17049:33;17029:18;;;17022:61;17100:18;;23833:63:0;16769:355:1;23833:63:0;23245:1;23974:7;:18;;;51492:22:::1;51517:17:::0;;;:8:::1;:17;::::0;;;;;;;;51492:42;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;;51492:42:0::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;51578:12:::1;::::0;51567:23;::::1;;51545:94;;;::::0;-1:-1:-1;;;51545:94:0;;17331:2:1;51545:94:0::1;::::0;::::1;17313:21:1::0;17370:2;17350:18;;;17343:30;-1:-1:-1;;;17389:18:1;;;17382:50;17449:18;;51545:94:0::1;17129:344:1::0;51545:94:0::1;51695:17:::0;;41134:7;41161:16;;;:12;:16;;;;;;51672:40:::1;51650:110;;;::::0;-1:-1:-1;;;51650:110:0;;17680:2:1;51650:110:0::1;::::0;::::1;17662:21:1::0;17719:2;17699:18;;;17692:30;-1:-1:-1;;;17738:18:1;;;17731:49;17797:18;;51650:110:0::1;17478:343:1::0;51650:110:0::1;51793:9;24903:10:::0;51793:25:::1;51771:97;;;::::0;-1:-1:-1;;;51771:97:0;;18377:2:1;51771:97:0::1;::::0;::::1;18359:21:1::0;18416:2;18396:18;;;18389:30;-1:-1:-1;;;18435:18:1;;;18428:51;18496:18;;51771:97:0::1;18175:345:1::0;51771:97:0::1;51882:20;::::0;::::1;::::0;:25;;::::1;::::0;:74:::1;;;51934:7;:22;;;51911:20;51923:7;41134::::0;41161:16;;;:12;:16;;;;;;;41072:113;51911:20:::1;:45;51882:74;51879:231;;;52016:7;:20;;;51998:15;:38;51972:125;;;::::0;-1:-1:-1;;;51972:125:0;;22325:2:1;51972:125:0::1;::::0;::::1;22307:21:1::0;22364:2;22344:18;;;22337:30;22403:26;22383:18;;;22376:54;22447:18;;51972:125:0::1;22123:348:1::0;51972:125:0::1;52123:17;::::0;::::1;::::0;:22;52120:168:::1;;52206:7;:17;;;52187:15;:36;;52161:114;;;::::0;-1:-1:-1;;;52161:114:0;;19426:2:1;52161:114:0::1;::::0;::::1;19408:21:1::0;19465:2;19445:18;;;19438:30;-1:-1:-1;;;19484:18:1;;;19477:45;19539:18;;52161:114:0::1;19224:339:1::0;52161:114:0::1;24903:10:::0;52321:20:::1;::::0;;;:6:::1;:20;::::0;;;;;;;:29;;;;;;;;;::::1;;52320:30;52298:102;;;::::0;-1:-1:-1;;;52298:102:0;;19770:2:1;52298:102:0::1;::::0;::::1;19752:21:1::0;19809:2;19789:18;;;19782:30;-1:-1:-1;;;19828:18:1;;;19821:51;19889:18;;52298:102:0::1;19568:345:1::0;52298:102:0::1;52446:7;:20;;;52433:9;:33;;52411:102;;;::::0;-1:-1:-1;;;52411:102:0;;21295:2:1;52411:102:0::1;::::0;::::1;21277:21:1::0;21334:2;21314:18;;;21307:30;-1:-1:-1;;;21353:18:1;;;21346:49;21412:18;;52411:102:0::1;21093:343:1::0;52411:102:0::1;52524:35;24903:10:::0;52544:7:::1;52553:1;52524:35;;;;;;;;;;;::::0;:5:::1;:35::i;:::-;-1:-1:-1::0;24903:10:0;52570:20:::1;::::0;;;:6:::1;:20;::::0;;;;;;;:29;;;;;;;:36;;-1:-1:-1;;52570:36:0::1;52602:4;52570:36:::0;;::::1;::::0;;;24153:7;:22;51404:1210::o;41474:432::-;-1:-1:-1;;;;;41577:24:0;;24903:10;41577:24;41569:78;;;;-1:-1:-1;;;41569:78:0;;22678:2:1;41569:78:0;;;22660:21:1;22717:2;22697:18;;;22690:30;22756:34;22736:18;;;22729:62;-1:-1:-1;;;22807:18:1;;;22800:39;22856:19;;41569:78:0;22476:405:1;41569:78:0;24903:10;41658:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41658:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41658:53:0;;;;;;;41738:20;;;41726:32;;41722:113;;24903:10;41774:37;;;;:23;:37;;;;;:49;;-1:-1:-1;;41774:49:0;41814:9;;41774:49;;;41722:113;41850:48;;1184:14:1;;1177:22;1159:41;;-1:-1:-1;;;;;41850:48:0;;;24903:10;;41850:48;;1147:2:1;1132:18;41850:48:0;;;;;;;41474:432;;:::o;48185:1173::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;48589:12:::1;;48577:8;:24;;48555:101;;;::::0;-1:-1:-1;;;48555:101:0;;23088:2:1;48555:101:0::1;::::0;::::1;23070:21:1::0;23127:2;23107:18;;;23100:30;23166:28;23146:18;;;23139:56;23212:18;;48555:101:0::1;22886:350:1::0;48555:101:0::1;48708:10;48689:15;:29;;48667:117;;;;-1:-1:-1::0;;;48667:117:0::1;;;;;;;:::i;:::-;41134:7:::0;41161:16;;;:12;:16;;;;;;48842:15;-1:-1:-1;48817:40:0::1;48795:127;;;::::0;-1:-1:-1;;;48795:127:0;;23443:2:1;48795:127:0::1;::::0;::::1;23425:21:1::0;23482:2;23462:18;;;23455:30;23521:34;23501:18;;;23494:62;-1:-1:-1;;;23572:18:1;;;23565:34;23616:19;;48795:127:0::1;23241:400:1::0;48795:127:0::1;41134:7:::0;41161:16;;;:12;:16;;;;;;48980:10;-1:-1:-1;48955:35:0::1;48933:118;;;::::0;-1:-1:-1;;;48933:118:0;;23848:2:1;48933:118:0::1;::::0;::::1;23830:21:1::0;;;23867:18;;;23860:30;23926:34;23906:18;;;23899:62;23978:18;;48933:118:0::1;23646:356:1::0;48933:118:0::1;49083:267;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49083:267:0;;::::1;::::0;;;;;;;;;;;;;;;;;;-1:-1:-1;49062:18:0;;;:8:::1;:18:::0;;;;;:288;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;;49062:288:0::1;::::0;;;::::1;;::::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;48185:1173::o;52622:217::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;52758:12:::1;:28;52773:13:::0;;52758:12;:28:::1;:::i;:::-;-1:-1:-1::0;52797:15:0::1;:34;52815:16:::0;;52797:15;:34:::1;:::i;53024:163::-:0;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;53137:20:::1;:42:::0;;;::::1;;-1:-1:-1::0;;;53137:42:0::1;-1:-1:-1::0;;;;53137:42:0;;::::1;::::0;;;::::1;::::0;;53024:163::o;41978:335::-;42097:20;;42077:4;;-1:-1:-1;;;42097:20:0;;;;:56;;;;-1:-1:-1;42133:20:0;;-1:-1:-1;;;;;42121:32:0;;;42133:20;;42121:32;42097:56;:93;;;;-1:-1:-1;;;;;;42158:32:0;;;;;;:23;:32;;;;;;;;42157:33;42097:93;42094:212;;;-1:-1:-1;42213:4:0;42206:11;;42094:212;-1:-1:-1;;;;;;42257:27:0;;;;;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;42250:44;;28654:401;-1:-1:-1;;;;;28862:20:0;;24903:10;28862:20;;:60;;-1:-1:-1;28886:36:0;28903:4;24903:10;41978:335;:::i;28886:36::-;28840:151;;;;-1:-1:-1;;;28840:151:0;;26141:2:1;28840:151:0;;;26123:21:1;26180:2;26160:18;;;26153:30;26219:34;26199:18;;;26192:62;-1:-1:-1;;;26270:18:1;;;26263:39;26319:19;;28840:151:0;25939:405:1;28840:151:0;29002:45;29020:4;29026:2;29030;29034:6;29042:4;29002:17;:45::i;45816:192::-;44989:6;;-1:-1:-1;;;;;44989:6:0;24903:10;45136:23;45128:68;;;;-1:-1:-1;;;45128:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45905:22:0;::::1;45897:73;;;::::0;-1:-1:-1;;;45897:73:0;;26551:2:1;45897:73:0::1;::::0;::::1;26533:21:1::0;26590:2;26570:18;;;26563:30;26629:34;26609:18;;;26602:62;-1:-1:-1;;;26680:18:1;;;26673:36;26726:19;;45897:73:0::1;26349:402:1::0;45897:73:0::1;45981:19;45991:8;45981:9;:19::i;19731:723::-:0;19787:13;20008:5;20017:1;20008:10;20004:53;;-1:-1:-1;;20035:10:0;;;;;;;;;;;;-1:-1:-1;;;20035:10:0;;;;;19731:723::o;20004:53::-;20082:5;20067:12;20123:78;20130:9;;20123:78;;20156:8;;;;:::i;:::-;;-1:-1:-1;20179:10:0;;-1:-1:-1;20187:2:0;20179:10;;:::i;:::-;;;20123:78;;;20211:19;20243:6;-1:-1:-1;;;;;20233:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20233:17:0;;20211:39;;20261:154;20268:10;;20261:154;;20295:11;20305:1;20295:11;;:::i;:::-;;-1:-1:-1;20364:10:0;20372:2;20364:5;:10;:::i;:::-;20351:24;;:2;:24;:::i;:::-;20338:39;;20321:6;20328;20321:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20321:56:0;;;;;;;;-1:-1:-1;20392:11:0;20401:2;20392:11;;:::i;:::-;;;20261:154;;;20439:6;19731:723;-1:-1:-1;;;;19731:723:0:o;31216:1074::-;31443:7;:14;31429:3;:10;:28;31421:81;;;;-1:-1:-1;;;31421:81:0;;27462:2:1;31421:81:0;;;27444:21:1;27501:2;27481:18;;;27474:30;27540:34;27520:18;;;27513:62;-1:-1:-1;;;27591:18:1;;;27584:38;27639:19;;31421:81:0;27260:404:1;31421:81:0;-1:-1:-1;;;;;31521:16:0;;31513:66;;;;-1:-1:-1;;;31513:66:0;;;;;;;:::i;:::-;24903:10;31592:16;31709:421;31733:3;:10;31729:1;:14;31709:421;;;31765:10;31778:3;31782:1;31778:6;;;;;;;;:::i;:::-;;;;;;;31765:19;;31799:14;31816:7;31824:1;31816:10;;;;;;;;:::i;:::-;;;;;;;;;;;;31843:19;31865:13;;;;;;;;;;-1:-1:-1;;;;;31865:19:0;;;;;;;;;;;;31816:10;;-1:-1:-1;31907:21:0;;;;31899:76;;;;-1:-1:-1;;;31899:76:0;;;;;;;:::i;:::-;32019:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32019:19:0;;;;;;;;;;32041:20;;;32019:42;;32091:17;;;;;;;:27;;32041:20;;32019:9;32091:27;;32041:20;;32091:27;:::i;:::-;;;;;;;;31750:380;;;31745:3;;;;:::i;:::-;;;31709:421;;;;32177:2;-1:-1:-1;;;;;32147:47:0;32171:4;-1:-1:-1;;;;;32147:47:0;32161:8;-1:-1:-1;;;;;32147:47:0;;32181:3;32186:7;32147:47;;;;;;;:::i;:::-;;;;;;;;32207:75;32243:8;32253:4;32259:2;32263:3;32268:7;32277:4;32207:35;:75::i;:::-;31410:880;31216:1074;;;;;:::o;18575:830::-;18700:4;18740;18700;18757:525;18781:5;:12;18777:1;:16;18757:525;;;18815:20;18838:5;18844:1;18838:8;;;;;;;;:::i;:::-;;;;;;;18815:31;;18883:12;18867;:28;18863:408;;19020:44;;;;;;29113:19:1;;;29148:12;;;29141:28;;;29185:12;;19020:44:0;;;;;;;;;;;;19010:55;;;;;;18995:70;;18863:408;;;19210:44;;;;;;29113:19:1;;;29148:12;;;29141:28;;;29185:12;;19210:44:0;;;;;;;;;;;;19200:55;;;;;;19185:70;;18863:408;-1:-1:-1;18795:3:0;;;;:::i;:::-;;;;18757:525;;;-1:-1:-1;19377:20:0;;;;18575:830;-1:-1:-1;;;18575:830:0:o;42609:242::-;42768:38;42780:7;42789:2;42793:6;42801:4;42768:11;:38::i;:::-;42817:16;;;;:12;:16;;;;;:26;;42837:6;;42817:16;:26;;42837:6;;42817:26;:::i;:::-;;;;-1:-1:-1;;;;;;42609:242:0:o;46016:173::-;46091:6;;;-1:-1:-1;;;;;46108:17:0;;;-1:-1:-1;;;;;;46108:17:0;;;;;;;46141:40;;46091:6;;;46108:17;46091:6;;46141:40;;46072:16;;46141:40;46061:128;46016:173;:::o;30038:820::-;-1:-1:-1;;;;;30226:16:0;;30218:66;;;;-1:-1:-1;;;30218:66:0;;;;;;;:::i;:::-;24903:10;30341:96;24903:10;30372:4;30378:2;30382:21;30400:2;30382:17;:21::i;:::-;30405:25;30423:6;30405:17;:25::i;30341:96::-;30450:19;30472:13;;;;;;;;;;;-1:-1:-1;;;;;30472:19:0;;;;;;;;;;30510:21;;;;30502:76;;;;-1:-1:-1;;;30502:76:0;;;;;;;:::i;:::-;30614:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30614:19:0;;;;;;;;;;30636:20;;;30614:42;;30678:17;;;;;;;:27;;30636:20;;30614:9;30678:27;;30636:20;;30678:27;:::i;:::-;;;;-1:-1:-1;;30723:46:0;;;29382:25:1;;;29438:2;29423:18;;29416:34;;;-1:-1:-1;;;;;30723:46:0;;;;;;;;;;;;;;29355:18:1;30723:46:0;;;;;;;30782:68;30813:8;30823:4;30829:2;30833;30837:6;30845:4;30782:30;:68::i;:::-;30207:651;;30038:820;;;;;:::o;39305:813::-;-1:-1:-1;;;;;39545:13:0;;1686:20;1734:8;39541:570;;39581:79;;-1:-1:-1;;;39581:79:0;;-1:-1:-1;;;;;39581:43:0;;;;;:79;;39625:8;;39635:4;;39641:3;;39646:7;;39655:4;;39581:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39581:79:0;;;;;;;;-1:-1:-1;;39581:79:0;;;;;;;;;;;;:::i;:::-;;;39577:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;39973:6;39966:14;;-1:-1:-1;;;39966:14:0;;;;;;;;:::i;39577:523::-;;;40022:62;;-1:-1:-1;;;40022:62:0;;31609:2:1;40022:62:0;;;31591:21:1;31648:2;31628:18;;;31621:30;31687:34;31667:18;;;31660:62;-1:-1:-1;;;31738:18:1;;;31731:50;31798:19;;40022:62:0;31407:416:1;39577:523:0;-1:-1:-1;;;;;;39742:60:0;;-1:-1:-1;;;39742:60:0;39738:159;;39827:50;;-1:-1:-1;;;39827:50:0;;;;;;;:::i;33623:599::-;-1:-1:-1;;;;;33781:21:0;;33773:67;;;;-1:-1:-1;;;33773:67:0;;32439:2:1;33773:67:0;;;32421:21:1;32478:2;32458:18;;;32451:30;32517:34;32497:18;;;32490:62;-1:-1:-1;;;32568:18:1;;;32561:31;32609:19;;33773:67:0;32237:397:1;33773:67:0;24903:10;33897:107;24903:10;33853:16;33940:7;33949:21;33967:2;33949:17;:21::i;33897:107::-;34017:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34017:22:0;;;;;;;;;:32;;34043:6;;34017:9;:32;;34043:6;;34017:32;:::i;:::-;;;;-1:-1:-1;;34065:57:0;;;29382:25:1;;;29438:2;29423:18;;29416:34;;;-1:-1:-1;;;;;34065:57:0;;;;34098:1;;34065:57;;;;;;29355:18:1;34065:57:0;;;;;;;34135:79;34166:8;34184:1;34188:7;34197:2;34201:6;34209:4;34135:30;:79::i;40126:198::-;40246:16;;;40260:1;40246:16;;;;;;;;;40192;;40221:22;;40246:16;;;;;;;;;;;;-1:-1:-1;40246:16:0;40221:41;;40284:7;40273:5;40279:1;40273:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;40311:5;40126:198;-1:-1:-1;;40126:198:0:o;38553:744::-;-1:-1:-1;;;;;38768:13:0;;1686:20;1734:8;38764:526;;38804:72;;-1:-1:-1;;;38804:72:0;;-1:-1:-1;;;;;38804:38:0;;;;;:72;;38843:8;;38853:4;;38859:2;;38863:6;;38871:4;;38804:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38804:72:0;;;;;;;;-1:-1:-1;;38804:72:0;;;;;;;;;;;;:::i;:::-;;;38800:479;;;;:::i;:::-;-1:-1:-1;;;;;;38926:55:0;;-1:-1:-1;;;38926:55:0;38922:154;;39006:50;;-1:-1:-1;;;39006:50:0;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:180::-;1270:6;1323:2;1311:9;1302:7;1298:23;1294:32;1291:52;;;1339:1;1336;1329:12;1291:52;-1:-1:-1;1362:23:1;;1211:180;-1:-1:-1;1211:180:1:o;1396:258::-;1468:1;1478:113;1492:6;1489:1;1486:13;1478:113;;;1568:11;;;1562:18;1549:11;;;1542:39;1514:2;1507:10;1478:113;;;1609:6;1606:1;1603:13;1600:48;;;1644:1;1635:6;1630:3;1626:16;1619:27;1600:48;;1396:258;;;:::o;1659:::-;1701:3;1739:5;1733:12;1766:6;1761:3;1754:19;1782:63;1838:6;1831:4;1826:3;1822:14;1815:4;1808:5;1804:16;1782:63;:::i;:::-;1899:2;1878:15;-1:-1:-1;;1874:29:1;1865:39;;;;1906:4;1861:50;;1659:258;-1:-1:-1;;1659:258:1:o;1922:220::-;2071:2;2060:9;2053:21;2034:4;2091:45;2132:2;2121:9;2117:18;2109:6;2091:45;:::i;2147:736::-;2278:6;2286;2294;2302;2310;2318;2326;2334;2342;2395:3;2383:9;2374:7;2370:23;2366:33;2363:53;;;2412:1;2409;2402:12;2363:53;2448:9;2435:23;2425:33;;2505:2;2494:9;2490:18;2477:32;2467:42;;2556:2;2545:9;2541:18;2528:32;2518:42;;2607:2;2596:9;2592:18;2579:32;2569:42;;2658:3;2647:9;2643:19;2630:33;2620:43;;2710:3;2699:9;2695:19;2682:33;2672:43;;2734:39;2768:3;2757:9;2753:19;2734:39;:::i;:::-;2724:49;;2820:3;2809:9;2805:19;2792:33;2782:43;;2872:3;2861:9;2857:19;2844:33;2834:43;;2147:736;;;;;;;;;;;:::o;2888:127::-;2949:10;2944:3;2940:20;2937:1;2930:31;2980:4;2977:1;2970:15;3004:4;3001:1;2994:15;3020:249;3130:2;3111:13;;-1:-1:-1;;3107:27:1;3095:40;;-1:-1:-1;;;;;3150:34:1;;3186:22;;;3147:62;3144:88;;;3212:18;;:::i;:::-;3248:2;3241:22;-1:-1:-1;;3020:249:1:o;3274:183::-;3334:4;-1:-1:-1;;;;;3359:6:1;3356:30;3353:56;;;3389:18;;:::i;:::-;-1:-1:-1;3434:1:1;3430:14;3446:4;3426:25;;3274:183::o;3462:724::-;3516:5;3569:3;3562:4;3554:6;3550:17;3546:27;3536:55;;3587:1;3584;3577:12;3536:55;3623:6;3610:20;3649:4;3672:43;3712:2;3672:43;:::i;:::-;3744:2;3738:9;3756:31;3784:2;3776:6;3756:31;:::i;:::-;3822:18;;;3914:1;3910:10;;;;3898:23;;3894:32;;;3856:15;;;;-1:-1:-1;3938:15:1;;;3935:35;;;3966:1;3963;3956:12;3935:35;4002:2;3994:6;3990:15;4014:142;4030:6;4025:3;4022:15;4014:142;;;4096:17;;4084:30;;4134:12;;;;4047;;4014:142;;;-1:-1:-1;4174:6:1;3462:724;-1:-1:-1;;;;;;3462:724:1:o;4191:555::-;4233:5;4286:3;4279:4;4271:6;4267:17;4263:27;4253:55;;4304:1;4301;4294:12;4253:55;4340:6;4327:20;-1:-1:-1;;;;;4362:2:1;4359:26;4356:52;;;4388:18;;:::i;:::-;4437:2;4431:9;4449:67;4504:2;4485:13;;-1:-1:-1;;4481:27:1;4510:4;4477:38;4431:9;4449:67;:::i;:::-;4540:2;4532:6;4525:18;4586:3;4579:4;4574:2;4566:6;4562:15;4558:26;4555:35;4552:55;;;4603:1;4600;4593:12;4552:55;4667:2;4660:4;4652:6;4648:17;4641:4;4633:6;4629:17;4616:54;4714:1;4690:15;;;4707:4;4686:26;4679:37;;;;4694:6;4191:555;-1:-1:-1;;;4191:555:1:o;4751:943::-;4905:6;4913;4921;4929;4937;4990:3;4978:9;4969:7;4965:23;4961:33;4958:53;;;5007:1;5004;4997:12;4958:53;5030:29;5049:9;5030:29;:::i;:::-;5020:39;;5078:38;5112:2;5101:9;5097:18;5078:38;:::i;:::-;5068:48;;5167:2;5156:9;5152:18;5139:32;-1:-1:-1;;;;;5231:2:1;5223:6;5220:14;5217:34;;;5247:1;5244;5237:12;5217:34;5270:61;5323:7;5314:6;5303:9;5299:22;5270:61;:::i;:::-;5260:71;;5384:2;5373:9;5369:18;5356:32;5340:48;;5413:2;5403:8;5400:16;5397:36;;;5429:1;5426;5419:12;5397:36;5452:63;5507:7;5496:8;5485:9;5481:24;5452:63;:::i;:::-;5442:73;;5568:3;5557:9;5553:19;5540:33;5524:49;;5598:2;5588:8;5585:16;5582:36;;;5614:1;5611;5604:12;5582:36;;5637:51;5680:7;5669:8;5658:9;5654:24;5637:51;:::i;:::-;5627:61;;;4751:943;;;;;;;;:::o;5699:683::-;5794:6;5802;5810;5863:2;5851:9;5842:7;5838:23;5834:32;5831:52;;;5879:1;5876;5869:12;5831:52;5915:9;5902:23;5892:33;;5976:2;5965:9;5961:18;5948:32;-1:-1:-1;;;;;6040:2:1;6032:6;6029:14;6026:34;;;6056:1;6053;6046:12;6026:34;6094:6;6083:9;6079:22;6069:32;;6139:7;6132:4;6128:2;6124:13;6120:27;6110:55;;6161:1;6158;6151:12;6110:55;6201:2;6188:16;6227:2;6219:6;6216:14;6213:34;;;6243:1;6240;6233:12;6213:34;6296:7;6291:2;6281:6;6278:1;6274:14;6270:2;6266:23;6262:32;6259:45;6256:65;;;6317:1;6314;6307:12;6256:65;6348:2;6344;6340:11;6330:21;;6370:6;6360:16;;;;;5699:683;;;;;:::o;6387:1208::-;6505:6;6513;6566:2;6554:9;6545:7;6541:23;6537:32;6534:52;;;6582:1;6579;6572:12;6534:52;6622:9;6609:23;-1:-1:-1;;;;;6692:2:1;6684:6;6681:14;6678:34;;;6708:1;6705;6698:12;6678:34;6746:6;6735:9;6731:22;6721:32;;6791:7;6784:4;6780:2;6776:13;6772:27;6762:55;;6813:1;6810;6803:12;6762:55;6849:2;6836:16;6871:4;6894:43;6934:2;6894:43;:::i;:::-;6966:2;6960:9;6978:31;7006:2;6998:6;6978:31;:::i;:::-;7044:18;;;7132:1;7128:10;;;;7120:19;;7116:28;;;7078:15;;;;-1:-1:-1;7156:19:1;;;7153:39;;;7188:1;7185;7178:12;7153:39;7212:11;;;;7232:148;7248:6;7243:3;7240:15;7232:148;;;7314:23;7333:3;7314:23;:::i;:::-;7302:36;;7265:12;;;;7358;;;;7232:148;;;7399:6;-1:-1:-1;;7443:18:1;;7430:32;;-1:-1:-1;;7474:16:1;;;7471:36;;;7503:1;7500;7493:12;7471:36;;7526:63;7581:7;7570:8;7559:9;7555:24;7526:63;:::i;:::-;7516:73;;;6387:1208;;;;;:::o;7600:435::-;7653:3;7691:5;7685:12;7718:6;7713:3;7706:19;7744:4;7773:2;7768:3;7764:12;7757:19;;7810:2;7803:5;7799:14;7831:1;7841:169;7855:6;7852:1;7849:13;7841:169;;;7916:13;;7904:26;;7950:12;;;;7985:15;;;;7877:1;7870:9;7841:169;;;-1:-1:-1;8026:3:1;;7600:435;-1:-1:-1;;;;;7600:435:1:o;8040:261::-;8219:2;8208:9;8201:21;8182:4;8239:56;8291:2;8280:9;8276:18;8268:6;8239:56;:::i;8514:160::-;8579:20;;8635:13;;8628:21;8618:32;;8608:60;;8664:1;8661;8654:12;8679:254;8744:6;8752;8805:2;8793:9;8784:7;8780:23;8776:32;8773:52;;;8821:1;8818;8811:12;8773:52;8844:29;8863:9;8844:29;:::i;:::-;8834:39;;8892:35;8923:2;8912:9;8908:18;8892:35;:::i;:::-;8882:45;;8679:254;;;;;:::o;8938:805::-;9078:6;9086;9094;9102;9110;9118;9126;9134;9142;9150;9203:3;9191:9;9182:7;9178:23;9174:33;9171:53;;;9220:1;9217;9210:12;9171:53;9256:9;9243:23;9233:33;;9313:2;9302:9;9298:18;9285:32;9275:42;;9364:2;9353:9;9349:18;9336:32;9326:42;;9415:2;9404:9;9400:18;9387:32;9377:42;;9466:3;9455:9;9451:19;9438:33;9428:43;;9518:3;9507:9;9503:19;9490:33;9480:43;;9570:3;9559:9;9555:19;9542:33;9532:43;;9594:39;9628:3;9617:9;9613:19;9594:39;:::i;:::-;9584:49;;9680:3;9669:9;9665:19;9652:33;9642:43;;9732:3;9721:9;9717:19;9704:33;9694:43;;8938:805;;;;;;;;;;;;;:::o;9748:348::-;9800:8;9810:6;9864:3;9857:4;9849:6;9845:17;9841:27;9831:55;;9882:1;9879;9872:12;9831:55;-1:-1:-1;9905:20:1;;-1:-1:-1;;;;;9937:30:1;;9934:50;;;9980:1;9977;9970:12;9934:50;10017:4;10009:6;10005:17;9993:29;;10069:3;10062:4;10053:6;10045;10041:19;10037:30;10034:39;10031:59;;;10086:1;10083;10076:12;10031:59;9748:348;;;;;:::o;10101:721::-;10193:6;10201;10209;10217;10270:2;10258:9;10249:7;10245:23;10241:32;10238:52;;;10286:1;10283;10276:12;10238:52;10326:9;10313:23;-1:-1:-1;;;;;10396:2:1;10388:6;10385:14;10382:34;;;10412:1;10409;10402:12;10382:34;10451:59;10502:7;10493:6;10482:9;10478:22;10451:59;:::i;:::-;10529:8;;-1:-1:-1;10425:85:1;-1:-1:-1;10617:2:1;10602:18;;10589:32;;-1:-1:-1;10633:16:1;;;10630:36;;;10662:1;10659;10652:12;10630:36;;10701:61;10754:7;10743:8;10732:9;10728:24;10701:61;:::i;:::-;10101:721;;;;-1:-1:-1;10781:8:1;-1:-1:-1;;;;10101:721:1:o;11609:180::-;11665:6;11718:2;11706:9;11697:7;11693:23;11689:32;11686:52;;;11734:1;11731;11724:12;11686:52;11757:26;11773:9;11757:26;:::i;11794:260::-;11862:6;11870;11923:2;11911:9;11902:7;11898:23;11894:32;11891:52;;;11939:1;11936;11929:12;11891:52;11962:29;11981:9;11962:29;:::i;:::-;11952:39;;12010:38;12044:2;12033:9;12029:18;12010:38;:::i;12059:606::-;12163:6;12171;12179;12187;12195;12248:3;12236:9;12227:7;12223:23;12219:33;12216:53;;;12265:1;12262;12255:12;12216:53;12288:29;12307:9;12288:29;:::i;:::-;12278:39;;12336:38;12370:2;12359:9;12355:18;12336:38;:::i;:::-;12326:48;;12421:2;12410:9;12406:18;12393:32;12383:42;;12472:2;12461:9;12457:18;12444:32;12434:42;;12527:3;12516:9;12512:19;12499:33;-1:-1:-1;;;;;12547:6:1;12544:30;12541:50;;;12587:1;12584;12577:12;12541:50;12610:49;12651:7;12642:6;12631:9;12627:22;12610:49;:::i;12670:186::-;12729:6;12782:2;12770:9;12761:7;12757:23;12753:32;12750:52;;;12798:1;12795;12788:12;12750:52;12821:29;12840:9;12821:29;:::i;13619:380::-;13698:1;13694:12;;;;13741;;;13762:61;;13816:4;13808:6;13804:17;13794:27;;13762:61;13869:2;13861:6;13858:14;13838:18;13835:38;13832:161;;13915:10;13910:3;13906:20;13903:1;13896:31;13950:4;13947:1;13940:15;13978:4;13975:1;13968:15;13832:161;;13619:380;;;:::o;14130:722::-;14180:3;14221:5;14215:12;14250:36;14276:9;14250:36;:::i;:::-;14305:1;14322:18;;;14349:133;;;;14496:1;14491:355;;;;14315:531;;14349:133;-1:-1:-1;;14382:24:1;;14370:37;;14455:14;;14448:22;14436:35;;14427:45;;;-1:-1:-1;14349:133:1;;14491:355;14522:5;14519:1;14512:16;14551:4;14596:2;14593:1;14583:16;14621:1;14635:165;14649:6;14646:1;14643:13;14635:165;;;14727:14;;14714:11;;;14707:35;14770:16;;;;14664:10;;14635:165;;;14639:3;;;14829:6;14824:3;14820:16;14813:23;;14315:531;;;;;14130:722;;;;:::o;14857:456::-;15078:3;15106:38;15140:3;15132:6;15106:38;:::i;:::-;15173:6;15167:13;15189:52;15234:6;15230:2;15223:4;15215:6;15211:17;15189:52;:::i;:::-;15257:50;15299:6;15295:2;15291:15;15283:6;15257:50;:::i;:::-;15250:57;14857:456;-1:-1:-1;;;;;;;14857:456:1:o;15318:356::-;15520:2;15502:21;;;15539:18;;;15532:30;15598:34;15593:2;15578:18;;15571:62;15665:2;15650:18;;15318:356::o;15679:401::-;15881:2;15863:21;;;15920:2;15900:18;;;15893:30;15959:34;15954:2;15939:18;;15932:62;-1:-1:-1;;;16025:2:1;16010:18;;16003:35;16070:3;16055:19;;15679:401::o;16085:127::-;16146:10;16141:3;16137:20;16134:1;16127:31;16177:4;16174:1;16167:15;16201:4;16198:1;16191:15;16217:128;16257:3;16288:1;16284:6;16281:1;16278:13;16275:39;;;16294:18;;:::i;:::-;-1:-1:-1;16330:9:1;;16217:128::o;20501:184::-;20571:6;20624:2;20612:9;20603:7;20599:23;20595:32;20592:52;;;20640:1;20637;20630:12;20592:52;-1:-1:-1;20663:16:1;;20501:184;-1:-1:-1;20501:184:1:o;21851:127::-;21912:10;21907:3;21903:20;21900:1;21893:31;21943:4;21940:1;21933:15;21967:4;21964:1;21957:15;21983:135;22022:3;22043:17;;;22040:43;;22063:18;;:::i;:::-;-1:-1:-1;22110:1:1;22099:13;;21983:135::o;24007:545::-;24109:2;24104:3;24101:11;24098:448;;;24145:1;24170:5;24166:2;24159:17;24215:4;24211:2;24201:19;24285:2;24273:10;24269:19;24266:1;24262:27;24256:4;24252:38;24321:4;24309:10;24306:20;24303:47;;;-1:-1:-1;24344:4:1;24303:47;24399:2;24394:3;24390:12;24387:1;24383:20;24377:4;24373:31;24363:41;;24454:82;24472:2;24465:5;24462:13;24454:82;;;24517:17;;;24498:1;24487:13;24454:82;;24098:448;24007:545;;;:::o;24728:1206::-;-1:-1:-1;;;;;24847:3:1;24844:27;24841:53;;;24874:18;;:::i;:::-;24903:94;24993:3;24953:38;24985:4;24979:11;24953:38;:::i;:::-;24947:4;24903:94;:::i;:::-;25023:1;25048:2;25043:3;25040:11;25065:1;25060:616;;;;25720:1;25737:3;25734:93;;;-1:-1:-1;25793:19:1;;;25780:33;25734:93;-1:-1:-1;;24685:1:1;24681:11;;;24677:24;24673:29;24663:40;24709:1;24705:11;;;24660:57;25840:78;;25033:895;;25060:616;14077:1;14070:14;;;14114:4;14101:18;;-1:-1:-1;;25096:17:1;;;25197:9;25219:229;25233:7;25230:1;25227:14;25219:229;;;25322:19;;;25309:33;25294:49;;25429:4;25414:20;;;;25382:1;25370:14;;;;25249:12;25219:229;;;25223:3;25476;25467:7;25464:16;25461:159;;;25600:1;25596:6;25590:3;25584;25581:1;25577:11;25573:21;25569:34;25565:39;25552:9;25547:3;25543:19;25530:33;25526:79;25518:6;25511:95;25461:159;;;25663:1;25657:3;25654:1;25650:11;25646:19;25640:4;25633:33;25033:895;;24728:1206;;;:::o;26756:127::-;26817:10;26812:3;26808:20;26805:1;26798:31;26848:4;26845:1;26838:15;26872:4;26869:1;26862:15;26888:120;26928:1;26954;26944:35;;26959:18;;:::i;:::-;-1:-1:-1;26993:9:1;;26888:120::o;27013:125::-;27053:4;27081:1;27078;27075:8;27072:34;;;27086:18;;:::i;:::-;-1:-1:-1;27123:9:1;;27013:125::o;27143:112::-;27175:1;27201;27191:35;;27206:18;;:::i;:::-;-1:-1:-1;27240:9:1;;27143:112::o;27669:401::-;27871:2;27853:21;;;27910:2;27890:18;;;27883:30;27949:34;27944:2;27929:18;;27922:62;-1:-1:-1;;;28015:2:1;28000:18;;27993:35;28060:3;28045:19;;27669:401::o;28075:406::-;28277:2;28259:21;;;28316:2;28296:18;;;28289:30;28355:34;28350:2;28335:18;;28328:62;-1:-1:-1;;;28421:2:1;28406:18;;28399:40;28471:3;28456:19;;28075:406::o;28486:465::-;28743:2;28732:9;28725:21;28706:4;28769:56;28821:2;28810:9;28806:18;28798:6;28769:56;:::i;:::-;28873:9;28865:6;28861:22;28856:2;28845:9;28841:18;28834:50;28901:44;28938:6;28930;28901:44;:::i;:::-;28893:52;28486:465;-1:-1:-1;;;;;28486:465:1:o;29461:827::-;-1:-1:-1;;;;;29858:15:1;;;29840:34;;29910:15;;29905:2;29890:18;;29883:43;29820:3;29957:2;29942:18;;29935:31;;;29783:4;;29989:57;;30026:19;;30018:6;29989:57;:::i;:::-;30094:9;30086:6;30082:22;30077:2;30066:9;30062:18;30055:50;30128:44;30165:6;30157;30128:44;:::i;:::-;30114:58;;30221:9;30213:6;30209:22;30203:3;30192:9;30188:19;30181:51;30249:33;30275:6;30267;30249:33;:::i;:::-;30241:41;29461:827;-1:-1:-1;;;;;;;;29461:827:1:o;30293:249::-;30362:6;30415:2;30403:9;30394:7;30390:23;30386:32;30383:52;;;30431:1;30428;30421:12;30383:52;30463:9;30457:16;30482:30;30506:5;30482:30;:::i;30547:179::-;30582:3;30624:1;30606:16;30603:23;30600:120;;;30670:1;30667;30664;30649:23;-1:-1:-1;30707:1:1;30701:8;30696:3;30692:18;30600:120;30547:179;:::o;30731:671::-;30770:3;30812:4;30794:16;30791:26;30788:39;;;30731:671;:::o;30788:39::-;30854:2;30848:9;-1:-1:-1;;30919:16:1;30915:25;;30912:1;30848:9;30891:50;30970:4;30964:11;30994:16;-1:-1:-1;;;;;31100:2:1;31093:4;31085:6;31081:17;31078:25;31073:2;31065:6;31062:14;31059:45;31056:58;;;31107:5;;;;;30731:671;:::o;31056:58::-;31144:6;31138:4;31134:17;31123:28;;31180:3;31174:10;31207:2;31199:6;31196:14;31193:27;;;31213:5;;;;;;30731:671;:::o;31193:27::-;31297:2;31278:16;31272:4;31268:27;31264:36;31257:4;31248:6;31243:3;31239:16;31235:27;31232:69;31229:82;;;31304:5;;;;;;30731:671;:::o;31229:82::-;31320:57;31371:4;31362:6;31354;31350:19;31346:30;31340:4;31320:57;:::i;:::-;-1:-1:-1;31393:3:1;;30731:671;-1:-1:-1;;;;;30731:671:1:o;31828:404::-;32030:2;32012:21;;;32069:2;32049:18;;;32042:30;32108:34;32103:2;32088:18;;32081:62;-1:-1:-1;;;32174:2:1;32159:18;;32152:38;32222:3;32207:19;;31828:404::o;32639:561::-;-1:-1:-1;;;;;32936:15:1;;;32918:34;;32988:15;;32983:2;32968:18;;32961:43;33035:2;33020:18;;33013:34;;;33078:2;33063:18;;33056:34;;;32898:3;33121;33106:19;;33099:32;;;32861:4;;33148:46;;33174:19;;33166:6;33148:46;:::i

Swarm Source

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