ETH Price: $3,506.50 (+2.50%)
Gas: 2 Gwei

Token

Mythicals (MYTH)
 

Overview

Max Total Supply

1,122 MYTH

Holders

540

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MYTH
0x58f4caf29a4bbaa6f53a8b454633b619a780ce5d
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:
Mythical

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.9;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.9;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.9;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.9;

/**
 * @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/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.9;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.9;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.9;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.9;


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

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

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


pragma solidity >=0.8.9;
// to enable certain compiler features



contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {  }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.9;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.9;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// Creator: Chiru Labs

pragma solidity ^0.8.9;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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



contract Mythical is ERC721A, Ownable, ReentrancyGuard{
    
    using Strings for uint256;
    using SafeMath for uint256;
        
    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    // Sale configuration
    uint private mintingCost = 0.3 ether;
    uint public mintedPublicSale = 0;
    uint private maxPublicSale = 600;

    // Reserve
    uint public mintedReserve;
    uint private maxReservedMints = 200;

    // Breeding infor
    uint public bredAmount = 0;
    uint private maxBreeding = 3700;

    //maximum amount of mints allowed per person
    uint256 public maxMintPublicSalePerWallet = 5;

    //Reveal nft or not
    bool public revealed = false;

    //dictates if sale is paused or not
    bool private paused = true;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddressPublicSale;

    //defines the uri for when the NFTs have not been yet revealed
    string public unrevealedURI;

    // Minting fund
    uint256 private ethFund;
    
    //declaring initial values for variables
    constructor() ERC721A('Mythicals', 'MYTH') {}
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function changeUnrevealedURI(string memory unrevealedURI_) public onlyOwner {
        unrevealedURI = unrevealedURI_;
    }

    function startSale(uint256 price) public onlyOwner {
        mintingCost = price;
        paused = false; // Start mint public
    }


    function setMaxMintPublicSalePerWallet(uint maxAmount) public onlyOwner {
        maxMintPublicSalePerWallet = maxAmount;
    }

 

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable nonReentrant{
        require(!paused, "Sale is paused!");
        require(mintedPublicSale + number <= maxPublicSale, "Not enough NFTs for PublicSale left to mint..");
        require(mintsPerAddressPublicSale[msg.sender] + number <= maxMintPublicSalePerWallet, "Maximum Mints per Address exceeded!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs");

        _safeMint(msg.sender, number);
        mintsPerAddressPublicSale[msg.sender] += number;
        mintedPublicSale += number;

        ethFund += msg.value;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed == false) { // Not revealed yet
            return unrevealedURI;
        }
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : "";
        }    
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(mintedReserve + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");
        _safeMint(recipient, number);
        mintedReserve += number; 
        
    }
    
    //burn the tokens that have not been sold yet
    function burnUnsoldTokens() public onlyOwner {
        maxPublicSale = mintedPublicSale;
    }
    
    //retrieve all funds recieved from minting
    function withdrawFund() public onlyOwner {
        require(ethFund > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(0xd7DDfE7233D872d3600549b570b3631604aA5ffF), ethFund); 
        ethFund = 0; // Reset
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - mintedReserve;
    }

    
    //gets the cost of current mint
    function mintCost() public view returns(uint) {
        return mintingCost;
    }


    function reveal() public onlyOwner {
        revealed = true;
    }

    function isSalePaused() public view returns(bool) {
        return paused;
    }

    //turn the pause on and off
    function toggleSalePause() public onlyOwner {
        paused = !paused;
    }

    function calculatePayout() public view returns(uint256) {
        return address(this).balance / totalSupply();
    }

    uint256 public amountOfTokensGotPayout;

    function royaltyPayout(uint number, uint256 payout) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > number * payout, "Insufficient Funds to pay out Royalties!");
        require(amountOfTokensGotPayout + number <= totalSupply());
        for (uint i; i < number; i++) {
            (bool success, ) = payable(ownerOf(amountOfTokensGotPayout + i)).call{value: payout}("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }
        if (totalSupply() == amountOfTokensGotPayout + number) {
            amountOfTokensGotPayout = 0;
        }
        else {
            amountOfTokensGotPayout += number;
        }
        
    }


    /***** BREEDING ****/
    IERC721 godNft = IERC721(0xbe401896658fb7339762E8146Db072bdE126A55f);
    IERC721 goddessNft = IERC721(0x147aA9ADa01B70c4c8C8B89B06aFe767908acEd7);

    uint immutable public SEED_GOD = 2;
    uint immutable public SEED_GODDESS = 1;
    uint256 public BREEDING_TIME = 2592000;
    uint256 public GOD_WAITING_TIME = 1296000;

    struct BreedingInfo {
        uint gId;
        uint gdId;
        uint256 startTime;
        bool finished;
    }
    mapping(address => BreedingInfo[]) public breedingInfo;

    mapping(uint => uint) public godBredCount;
    mapping(uint => uint256) public godLastBreeding;

    mapping(uint => uint) public goddessBredCount;


    function getActiveBreeding(address account) public view returns(uint /*number*/, uint[] memory /*breeding id*/, uint[] memory /*God id*/, uint[] memory /*Goddess id*/, uint256[] memory  /* startTimes*/){
        uint totalBreeding = breedingInfo[account].length;
        
        uint[] memory listActiveBreeding = new uint256[](totalBreeding);
        uint numberActiveBreeding = 0;

        for(uint i; i < breedingInfo[account].length; i ++){
            BreedingInfo memory info = breedingInfo[account][i];
            if(!info.finished && godNft.ownerOf(info.gId) == account && godBredCount[info.gId] < SEED_GOD && 
                goddessNft.ownerOf(info.gdId) == account && goddessBredCount[info.gdId] < SEED_GODDESS
            ){
                listActiveBreeding[numberActiveBreeding] = i;
                numberActiveBreeding += 1;
            }
        }
        
        uint[] memory breedingIds  = new uint256[](numberActiveBreeding) /*Breeding id*/; 
        uint[] memory godIds  = new uint256[](numberActiveBreeding) /*God id*/; 
        uint[] memory goddessIds  = new uint256[](numberActiveBreeding) /*Goddess id*/; 
        uint[] memory startTimes  = new uint256[](numberActiveBreeding) /*Time*/; 

        for(uint i; i < numberActiveBreeding; i++){
            breedingIds[i] = listActiveBreeding[i];
            godIds[i] = breedingInfo[account][breedingIds[i]].gId;
            goddessIds[i] = breedingInfo[account][breedingIds[i]].gdId;
            startTimes[i] = breedingInfo[account][breedingIds[i]].startTime;
        }

        return(numberActiveBreeding, breedingIds, godIds, goddessIds, startTimes);
    } 


    function claim(uint id) public nonReentrant {
        (uint numberActiveBreeding, uint[] memory breedingIds, uint[] memory godIds, uint[] memory goddessIds, uint[] memory startTimes) = getActiveBreeding(msg.sender);
        require(numberActiveBreeding > 0, "You dont have active breeding!");

        bool isCorrectId = false;
        for(uint i; i < numberActiveBreeding; i++){
            if(breedingIds[i] == id) 
                isCorrectId = true;
        }
        require(isCorrectId, "Not correct breeding ID");

        BreedingInfo storage info = breedingInfo[msg.sender][id];
        require(block.timestamp >= info.startTime.add(BREEDING_TIME), "Error-Waiting time is not enough!");

        info.finished = true;
        godLastBreeding[info.gId] = block.timestamp;
        godBredCount[info.gId] += 1;
        goddessBredCount[info.gdId] += 1;

        //Check total
        require(bredAmount < maxBreeding, "Reach limited amount for breeding");
        _safeMint(msg.sender, 1);
        bredAmount += 1;
    }


    function startBreeding(uint godId, uint goddessId) public nonReentrant{
        (uint numberActiveBreeding, uint[] memory breedingIds, uint[] memory godIds, uint[] memory goddessIds, uint[] memory startTimes) = getActiveBreeding(msg.sender);
        for(uint i; i < numberActiveBreeding; i++){
            require(godId != godIds[i], "God Nft is in your active breeding list");
            require(goddessId != goddessIds[i], "Goddess Nft is in your active breeding list");
        }

        require(godNft.ownerOf(godId) == msg.sender, "You are not owner of that God nft");
        require(goddessNft.ownerOf(goddessId) == msg.sender, "You are not owner of that Goddess nft");
        require(godBredCount[godId] < SEED_GOD, "God reach limit of breeding");
        require(godLastBreeding[godId] + GOD_WAITING_TIME <= block.timestamp, "God has to wait more");
        require(goddessBredCount[goddessId] < SEED_GODDESS, "Goddess reach limit of breeding");
        require(bredAmount < maxBreeding, "Reach limited amount for breeding");

        breedingInfo[msg.sender].push(BreedingInfo({
            gId: godId,
            gdId: goddessId,
            startTime: block.timestamp,
            finished: false
        }));
    }

    function changeBreedingTime(uint256 _newTime) public onlyOwner {
        require(_newTime < 60 days, "Check new time");
        BREEDING_TIME = _newTime;
    }

    function changeGodWaitingTime(uint256 _newTime) public onlyOwner {
        require(_newTime < 60 days, "Check new time");
        GOD_WAITING_TIME = _newTime;
    }

    function ownerOfGod(uint _godId) public view returns (address){
        return godNft.ownerOf(_godId);
    }

    function ownerOfGoddess(uint _goddessId) public view returns (address){
        return goddessNft.ownerOf(_goddessId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BREEDING_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOD_WAITING_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_GOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEED_GODDESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountOfTokensGotPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bredAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"breedingInfo","outputs":[{"internalType":"uint256","name":"gId","type":"uint256"},{"internalType":"uint256","name":"gdId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"bool","name":"finished","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnUnsoldTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"calculatePayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"changeBreedingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTime","type":"uint256"}],"name":"changeGodWaitingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"changeUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getActiveBreeding","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"godBredCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"godLastBreeding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"goddessBredCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPublicSalePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddressPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_godId","type":"uint256"}],"name":"ownerOfGod","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_goddessId","type":"uint256"}],"name":"ownerOfGoddess","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"royaltyPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setMaxMintPublicSalePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"godId","type":"uint256"},{"internalType":"uint256","name":"goddessId","type":"uint256"}],"name":"startBreeding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSalePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052670429d069189e0000600a556000600b819055610258600c5560c8600e55600f55610e7460105560056011556012805461ffff1916610100179055601780546001600160a01b031990811673be401896658fb7339762e8146db072bde126a55f179091556018805490911673147aa9ada01b70c4c8c8b89b06afe767908aced71790556002608052600160a05262278d006019556213c680601a55348015620000ac57600080fd5b5060408051808201825260098152684d7974686963616c7360b81b60208083019182528351808501909452600484526309ab2a8960e31b908401528151919291620000fa916001916200018e565b508051620001109060029060208401906200018e565b5050506200012d620001276200013860201b60201c565b6200013c565b600160085562000271565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051613b7b620002b3600039600081816107f60152818161126c0152611b2e015260008181610a9f0152818161118d0152611a6e0152613b7b6000f3fe6080604052600436106103795760003560e01c806370a08231116101d1578063b5bd551811610102578063dc9e206f116100a0578063e985e9c51161006f578063e985e9c514610a0e578063f2fde38b14610a57578063f84ca25f14610a77578063fc29973b14610a8d57600080fd5b8063dc9e206f146109a3578063e07fa3c1146109b9578063e1213ad0146109ce578063e282327e146109ee57600080fd5b8063c4596c9d116100dc578063c4596c9d1461092d578063c4d8b9df1461094d578063c62180b31461096d578063c87b56dd1461098357600080fd5b8063b5bd5518146108e2578063b88d4fde146108f8578063bdb4b8481461091857600080fd5b8063940bb3441161016f578063a22cb46511610149578063a22cb46514610884578063a475b5dd146108a4578063b3ab66b0146108b9578063b3ee44c6146108cc57600080fd5b8063940bb344146108185780639546401c1461082d57806395d89b411461086f57600080fd5b806382cdc73f116101ab57806382cdc73f1461079157806383c64ec4146107b15780638da5cb5b146107c65780638ec0ef9c146107e457600080fd5b806370a0823114610746578063715018a614610766578063768961191461077b57600080fd5b806330eb7470116102ab5780634746c093116102495780635614e6dc116102235780635614e6dc146106c4578063563bcc3b146106f15780636352211e146107115780637035bf181461073157600080fd5b80634746c093146106595780634f6ccce71461068a57806351830227146106aa57600080fd5b806339a0c6f91161028557806339a0c6f9146105d75780633ac3d907146105f757806342842e0e146106245780634520e9161461064457600080fd5b806330eb74701461056a57806333645d891461058a578063379607f5146105b757600080fd5b80630e3ab61d1161031857806323b872dd116102f257806323b872dd146104f5578063245a03111461051557806327e8a11a146105355780632f745c591461054a57600080fd5b80630e3ab61d146104a057806318160ddd146104c057806318df6403146104d557600080fd5b80630677ef81116103545780630677ef811461040e57806306fdde0314610424578063081812fc14610446578063095ea7b31461047e57600080fd5b80628ca8161461038557806301ffc9a7146103b357806303b63187146103d357600080fd5b3661038057005b600080fd5b34801561039157600080fd5b50601254610100900460ff165b60405190151581526020015b60405180910390f35b3480156103bf57600080fd5b5061039e6103ce3660046134a2565b610ac1565b3480156103df57600080fd5b506104006103ee3660046134bf565b601d6020526000908152604090205481565b6040519081526020016103aa565b34801561041a57600080fd5b50610400600d5481565b34801561043057600080fd5b50610439610b2e565b6040516103aa9190613530565b34801561045257600080fd5b506104666104613660046134bf565b610bc0565b6040516001600160a01b0390911681526020016103aa565b34801561048a57600080fd5b5061049e610499366004613558565b610c50565b005b3480156104ac57600080fd5b5061049e6104bb3660046134bf565b610d68565b3480156104cc57600080fd5b50600054610400565b3480156104e157600080fd5b5061049e6104f0366004613584565b610da2565b34801561050157600080fd5b5061049e6105103660046135b4565b610e60565b34801561052157600080fd5b5061049e6105303660046135f5565b610e6b565b34801561054157600080fd5b5061049e611376565b34801561055657600080fd5b50610400610565366004613558565b6113bd565b34801561057657600080fd5b506104666105853660046134bf565b611519565b34801561059657600080fd5b506104006105a53660046134bf565b601e6020526000908152604090205481565b3480156105c357600080fd5b5061049e6105d23660046134bf565b611597565b3480156105e357600080fd5b5061049e6105f23660046136a2565b611823565b34801561060357600080fd5b506104006106123660046134bf565b601c6020526000908152604090205481565b34801561063057600080fd5b5061049e61063f3660046135b4565b611864565b34801561065057600080fd5b5061040061187f565b34801561066557600080fd5b506106796106743660046136ea565b6118c1565b6040516103aa959493929190613742565b34801561069657600080fd5b506104006106a53660046134bf565b611eaa565b3480156106b657600080fd5b5060125461039e9060ff1681565b3480156106d057600080fd5b506104006106df3660046136ea565b60136020526000908152604090205481565b3480156106fd57600080fd5b5061049e61070c3660046134bf565b611f0c565b34801561071d57600080fd5b5061046661072c3660046134bf565b611f7e565b34801561073d57600080fd5b50610439611f90565b34801561075257600080fd5b506104006107613660046136ea565b61201e565b34801561077257600080fd5b5061049e6120af565b34801561078757600080fd5b5061040060195481565b34801561079d57600080fd5b5061049e6107ac3660046135f5565b6120e5565b3480156107bd57600080fd5b506104006122ca565b3480156107d257600080fd5b506007546001600160a01b0316610466565b3480156107f057600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000081565b34801561082457600080fd5b5061049e6122d8565b34801561083957600080fd5b5061084d610848366004613558565b61230a565b60408051948552602085019390935291830152151560608201526080016103aa565b34801561087b57600080fd5b50610439612353565b34801561089057600080fd5b5061049e61089f3660046137a1565b612362565b3480156108b057600080fd5b5061049e612427565b61049e6108c73660046134bf565b612460565b3480156108d857600080fd5b5061040060165481565b3480156108ee57600080fd5b50610400600b5481565b34801561090457600080fd5b5061049e6109133660046137d4565b6126a3565b34801561092457600080fd5b50600a54610400565b34801561093957600080fd5b5061049e6109483660046134bf565b6126dc565b34801561095957600080fd5b5061049e6109683660046136a2565b61274e565b34801561097957600080fd5b50610400601a5481565b34801561098f57600080fd5b5061043961099e3660046134bf565b61278b565b3480156109af57600080fd5b5061040060115481565b3480156109c557600080fd5b5061049e6128f4565b3480156109da57600080fd5b506104666109e93660046134bf565b6129a2565b3480156109fa57600080fd5b5061049e610a093660046134bf565b6129d4565b348015610a1a57600080fd5b5061039e610a29366004613853565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a6357600080fd5b5061049e610a723660046136ea565b612a03565b348015610a8357600080fd5b50610400600f5481565b348015610a9957600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b1480610af257506001600160e01b03198216635b5e139f60e01b145b80610b0d57506001600160e01b0319821663780e9d6360e01b145b80610b2857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b3d90613881565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6990613881565b8015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bcd826000541190565b610c345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c5b82611f7e565b9050806001600160a01b0316836001600160a01b03161415610cca5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c2b565b336001600160a01b0382161480610ce65750610ce68133610a29565b610d585760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c2b565b610d63838383612a9e565b505050565b6007546001600160a01b03163314610d925760405162461bcd60e51b8152600401610c2b906138bc565b600a556012805461ff0019169055565b6007546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610c2b906138bc565b600e5482600d54610ddd9190613907565b1115610e3b5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f6044820152661036b4b73a171760c91b6064820152608401610c2b565b610e458183612afa565b81600d6000828254610e579190613907565b90915550505050565b610d63838383612b14565b60026008541415610e8e5760405162461bcd60e51b8152600401610c2b9061391f565b6002600855600080808080610ea2336118c1565b9450945094509450945060005b85811015610fbf57838181518110610ec957610ec9613956565b6020026020010151881415610f305760405162461bcd60e51b815260206004820152602760248201527f476f64204e667420697320696e20796f757220616374697665206272656564696044820152661b99c81b1a5cdd60ca1b6064820152608401610c2b565b828181518110610f4257610f42613956565b6020026020010151871415610fad5760405162461bcd60e51b815260206004820152602b60248201527f476f6464657373204e667420697320696e20796f75722061637469766520627260448201526a1959591a5b99c81b1a5cdd60aa1b6064820152608401610c2b565b80610fb78161396c565b915050610eaf565b506017546040516331a9108f60e11b81526004810189905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561100457600080fd5b505afa158015611018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103c9190613987565b6001600160a01b03161461109c5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f74206f776e6572206f66207468617420476f64206e666044820152601d60fa1b6064820152608401610c2b565b6018546040516331a9108f60e11b81526004810188905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156110e057600080fd5b505afa1580156110f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111189190613987565b6001600160a01b03161461117c5760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206f776e6572206f66207468617420476f646465736044820152641cc81b999d60da1b6064820152608401610c2b565b6000878152601c60205260409020547f0000000000000000000000000000000000000000000000000000000000000000116111f95760405162461bcd60e51b815260206004820152601b60248201527f476f64207265616368206c696d6974206f66206272656564696e6700000000006044820152606401610c2b565b601a546000888152601d6020526040902054429161121691613907565b111561125b5760405162461bcd60e51b8152602060048201526014602482015273476f642068617320746f2077616974206d6f726560601b6044820152606401610c2b565b6000868152601e60205260409020547f0000000000000000000000000000000000000000000000000000000000000000116112d85760405162461bcd60e51b815260206004820152601f60248201527f476f6464657373207265616368206c696d6974206f66206272656564696e67006044820152606401610c2b565b601054600f54106112fb5760405162461bcd60e51b8152600401610c2b906139a4565b5050336000908152601b6020908152604080832081516080810183529889528883019788524291890191825260608901848152815460018082018455928652939094209851600490930290980191825595518188015594516002860155516003909401805460ff191694151594909417909355505050600855565b6007546001600160a01b031633146113a05760405162461bcd60e51b8152600401610c2b906138bc565b6012805461ff001981166101009182900460ff1615909102179055565b60006113c88361201e565b82106114215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c2b565b600080549080805b838110156114b9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561147b57805192505b876001600160a01b0316836001600160a01b031614156114b057868414156114a957509350610b2892505050565b6001909301925b50600101611429565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c2b565b6017546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e906024015b60206040518083038186803b15801561155f57600080fd5b505afa158015611573573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190613987565b600260085414156115ba5760405162461bcd60e51b8152600401610c2b9061391f565b60026008556000808080806115ce336118c1565b94509450945094509450600085116116285760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e74206861766520616374697665206272656564696e672100006044820152606401610c2b565b6000805b8681101561166c578786828151811061164757611647613956565b6020026020010151141561165a57600191505b806116648161396c565b91505061162c565b50806116ba5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420636f7272656374206272656564696e672049440000000000000000006044820152606401610c2b565b336000908152601b602052604081208054899081106116db576116db613956565b906000526020600020906004020190506117046019548260020154612df790919063ffffffff16565b42101561175d5760405162461bcd60e51b815260206004820152602160248201527f4572726f722d57616974696e672074696d65206973206e6f7420656e6f7567686044820152602160f81b6064820152608401610c2b565b60038101805460ff1916600190811790915581546000908152601d6020908152604080832042905584548352601c909152812080549091906117a0908490613907565b90915550506001818101546000908152601e6020526040812080549091906117c9908490613907565b9091555050601054600f54106117f15760405162461bcd60e51b8152600401610c2b906139a4565b6117fc336001612afa565b6001600f600082825461180f9190613907565b909155505060016008555050505050505050565b6007546001600160a01b0316331461184d5760405162461bcd60e51b8152600401610c2b906138bc565b80516118609060099060208401906133fc565b5050565b610d63838383604051806020016040528060008152506126a3565b6007546000906001600160a01b031633146118ac5760405162461bcd60e51b8152600401610c2b906138bc565b600d54600e546118bc91906139e5565b905090565b6001600160a01b0381166000908152601b602052604081205460609081908190819085816001600160401b038111156118fc576118fc613617565b604051908082528060200260200182016040528015611925578160200160208202803683370190505b5090506000805b6001600160a01b038a166000908152601b6020526040902054811015611bab576001600160a01b038a166000908152601b6020526040812080548390811061197657611976613956565b60009182526020918290206040805160808101825260049093029091018054835260018101549383019390935260028301549082015260039091015460ff161580156060830181905291925090611a54575060175481516040516331a9108f60e11b815260048101919091526001600160a01b038d8116921690636352211e9060240160206040518083038186803b158015611a1157600080fd5b505afa158015611a25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a499190613987565b6001600160a01b0316145b8015611a8f575080516000908152601c60205260409020547f0000000000000000000000000000000000000000000000000000000000000000115b8015611b25575060185460208201516040516331a9108f60e11b815260048101919091526001600160a01b038d8116921690636352211e9060240160206040518083038186803b158015611ae257600080fd5b505afa158015611af6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1a9190613987565b6001600160a01b0316145b8015611b6757507f0000000000000000000000000000000000000000000000000000000000000000601e60008360200151815260200190815260200160002054105b15611b985781848481518110611b7f57611b7f613956565b6020908102919091010152611b95600184613907565b92505b5080611ba38161396c565b91505061192c565b506000816001600160401b03811115611bc657611bc6613617565b604051908082528060200260200182016040528015611bef578160200160208202803683370190505b5090506000826001600160401b03811115611c0c57611c0c613617565b604051908082528060200260200182016040528015611c35578160200160208202803683370190505b5090506000836001600160401b03811115611c5257611c52613617565b604051908082528060200260200182016040528015611c7b578160200160208202803683370190505b5090506000846001600160401b03811115611c9857611c98613617565b604051908082528060200260200182016040528015611cc1578160200160208202803683370190505b50905060005b85811015611e9557868181518110611ce157611ce1613956565b6020026020010151858281518110611cfb57611cfb613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611d3e57611d3e613956565b602002602001015181548110611d5657611d56613956565b906000526020600020906004020160000154848281518110611d7a57611d7a613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611dbd57611dbd613956565b602002602001015181548110611dd557611dd5613956565b906000526020600020906004020160010154838281518110611df957611df9613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611e3c57611e3c613956565b602002602001015181548110611e5457611e54613956565b906000526020600020906004020160020154828281518110611e7857611e78613956565b602090810291909101015280611e8d8161396c565b915050611cc7565b50939c929b5090995097509095509350505050565b600080548210611f085760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c2b565b5090565b6007546001600160a01b03163314611f365760405162461bcd60e51b8152600401610c2b906138bc565b624f1a008110611f795760405162461bcd60e51b815260206004820152600e60248201526d436865636b206e65772074696d6560901b6044820152606401610c2b565b601a55565b6000611f8982612e56565b5192915050565b60148054611f9d90613881565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc990613881565b80156120165780601f10611feb57610100808354040283529160200191612016565b820191906000526020600020905b815481529060010190602001808311611ff957829003601f168201915b505050505081565b60006001600160a01b03821661208a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c2b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146120d95760405162461bcd60e51b8152600401610c2b906138bc565b6120e36000612f2c565b565b6007546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610c2b906138bc565b4761211a82846139fc565b81116121795760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742046756e647320746f20706179206f757420526f60448201526779616c746965732160c01b6064820152608401610c2b565b6000548360165461218a9190613907565b111561219557600080fd5b60005b8381101561228c5760006121b38260165461072c9190613907565b6001600160a01b03168460405160006040518083038185875af1925050503d80600081146121fd576040519150601f19603f3d011682016040523d82523d6000602084013e612202565b606091505b50509050806122795760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c2b565b50806122848161396c565b915050612198565b508260165461229b9190613907565b60005414156122ae576000601655505050565b82601660008282546122c09190613907565b9091555050505050565b600080546118bc9047613a31565b6007546001600160a01b031633146123025760405162461bcd60e51b8152600401610c2b906138bc565b600b54600c55565b601b602052816000526040600020818154811061232657600080fd5b60009182526020909120600490910201805460018201546002830154600390930154919450925060ff1684565b606060028054610b3d90613881565b6001600160a01b0382163314156123bb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c2b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146124515760405162461bcd60e51b8152600401610c2b906138bc565b6012805460ff19166001179055565b600260085414156124835760405162461bcd60e51b8152600401610c2b9061391f565b6002600855601254610100900460ff16156124d25760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610c2b565b600c5481600b546124e39190613907565b11156125475760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46547320666f72205075626c696353616c65206c60448201526c32b33a103a379036b4b73a171760991b6064820152608401610c2b565b60115433600090815260136020526040902054612565908390613907565b11156125bf5760405162461bcd60e51b815260206004820152602360248201527f4d6178696d756d204d696e74732070657220416464726573732065786365656460448201526265642160e81b6064820152608401610c2b565b806125c9600a5490565b6125d391906139fc565b34101561263b5760405162461bcd60e51b815260206004820152603060248201527f4e6f742073756666696369656e7420457468657220746f206d696e742074686960448201526f7320616d6f756e74206f66204e46547360801b6064820152608401610c2b565b6126453382612afa565b3360009081526013602052604081208054839290612664908490613907565b9250508190555080600b600082825461267d9190613907565b9250508190555034601560008282546126969190613907565b9091555050600160085550565b6126ae848484612b14565b6126ba84848484612f7e565b6126d65760405162461bcd60e51b8152600401610c2b90613a45565b50505050565b6007546001600160a01b031633146127065760405162461bcd60e51b8152600401610c2b906138bc565b624f1a0081106127495760405162461bcd60e51b815260206004820152600e60248201526d436865636b206e65772074696d6560901b6044820152606401610c2b565b601955565b6007546001600160a01b031633146127785760405162461bcd60e51b8152600401610c2b906138bc565b80516118609060149060208401906133fc565b6060612798826000541190565b6127fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c2b565b60125460ff16612898576014805461281390613881565b80601f016020809104026020016040519081016040528092919081815260200182805461283f90613881565b801561288c5780601f106128615761010080835404028352916020019161288c565b820191906000526020600020905b81548152906001019060200180831161286f57829003601f168201915b50505050509050919050565b60006128a261308c565b905060008151116128c257604051806020016040528060008152506128ed565b806128cc8461309b565b6040516020016128dd929190613a98565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461291e5760405162461bcd60e51b8152600401610c2b906138bc565b60006015541161297b5760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e6365206973604482015261020360f41b6064820152608401610c2b565b61299b73d7ddfe7233d872d3600549b570b3631604aa5fff601554613198565b6000601555565b6018546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e90602401611547565b6007546001600160a01b031633146129fe5760405162461bcd60e51b8152600401610c2b906138bc565b601155565b6007546001600160a01b03163314612a2d5760405162461bcd60e51b8152600401610c2b906138bc565b6001600160a01b038116612a925760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c2b565b612a9b81612f2c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611860828260405180602001604052806000815250613232565b6000612b1f82612e56565b80519091506000906001600160a01b0316336001600160a01b03161480612b56575033612b4b84610bc0565b6001600160a01b0316145b80612b6857508151612b689033610a29565b905080612bd25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c2b565b846001600160a01b031682600001516001600160a01b031614612c465760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c2b565b6001600160a01b038416612caa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c2b565b612cba6000848460000151612a9e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116612dad57612d61816000541190565b15612dad57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612e048385613907565b9050838110156128ed5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c2b565b6040805180820190915260008082526020820152612e75826000541190565b612ed45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c2b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612f22579392505050565b5060001901612ed6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561308057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fc2903390899088908890600401613ad7565b602060405180830381600087803b158015612fdc57600080fd5b505af192505050801561300c575060408051601f3d908101601f1916820190925261300991810190613b14565b60015b613066573d80801561303a576040519150601f19603f3d011682016040523d82523d6000602084013e61303f565b606091505b50805161305e5760405162461bcd60e51b8152600401610c2b90613a45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613084565b5060015b949350505050565b606060098054610b3d90613881565b6060816130bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130e957806130d38161396c565b91506130e29050600a83613a31565b91506130c3565b6000816001600160401b0381111561310357613103613617565b6040519080825280601f01601f19166020018201604052801561312d576020820181803683370190505b5090505b8415613084576131426001836139e5565b915061314f600a86613b31565b61315a906030613907565b60f81b81838151811061316f5761316f613956565b60200101906001600160f81b031916908160001a905350613191600a86613a31565b9450613131565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146131e5576040519150601f19603f3d011682016040523d82523d6000602084013e6131ea565b606091505b5050905080610d635760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610c2b565b610d6383838360016000546001600160a01b03851661329d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c2b565b836132fb5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610c2b565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156133f35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156133e7576133cb6000888488612f7e565b6133e75760405162461bcd60e51b8152600401610c2b90613a45565b60019182019101613378565b50600055612df0565b82805461340890613881565b90600052602060002090601f01602090048101928261342a5760008555613470565b82601f1061344357805160ff1916838001178555613470565b82800160010185558215613470579182015b82811115613470578251825591602001919060010190613455565b50611f089291505b80821115611f085760008155600101613478565b6001600160e01b031981168114612a9b57600080fd5b6000602082840312156134b457600080fd5b81356128ed8161348c565b6000602082840312156134d157600080fd5b5035919050565b60005b838110156134f35781810151838201526020016134db565b838111156126d65750506000910152565b6000815180845261351c8160208601602086016134d8565b601f01601f19169290920160200192915050565b6020815260006128ed6020830184613504565b6001600160a01b0381168114612a9b57600080fd5b6000806040838503121561356b57600080fd5b823561357681613543565b946020939093013593505050565b6000806040838503121561359757600080fd5b8235915060208301356135a981613543565b809150509250929050565b6000806000606084860312156135c957600080fd5b83356135d481613543565b925060208401356135e481613543565b929592945050506040919091013590565b6000806040838503121561360857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561364757613647613617565b604051601f8501601f19908116603f0116810190828211818310171561366f5761366f613617565b8160405280935085815286868601111561368857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156136b457600080fd5b81356001600160401b038111156136ca57600080fd5b8201601f810184136136db57600080fd5b6130848482356020840161362d565b6000602082840312156136fc57600080fd5b81356128ed81613543565b600081518084526020808501945080840160005b838110156137375781518752958201959082019060010161371b565b509495945050505050565b85815260a06020820152600061375b60a0830187613707565b828103604084015261376d8187613707565b905082810360608401526137818186613707565b905082810360808401526137958185613707565b98975050505050505050565b600080604083850312156137b457600080fd5b82356137bf81613543565b9150602083013580151581146135a957600080fd5b600080600080608085870312156137ea57600080fd5b84356137f581613543565b9350602085013561380581613543565b92506040850135915060608501356001600160401b0381111561382757600080fd5b8501601f8101871361383857600080fd5b6138478782356020840161362d565b91505092959194509250565b6000806040838503121561386657600080fd5b823561387181613543565b915060208301356135a981613543565b600181811c9082168061389557607f821691505b602082108114156138b657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561391a5761391a6138f1565b500190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613980576139806138f1565b5060010190565b60006020828403121561399957600080fd5b81516128ed81613543565b60208082526021908201527f5265616368206c696d6974656420616d6f756e7420666f72206272656564696e6040820152606760f81b606082015260800190565b6000828210156139f7576139f76138f1565b500390565b6000816000190483118215151615613a1657613a166138f1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a4057613a40613a1b565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613aaa8184602088016134d8565b835190830190613abe8183602088016134d8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b0a90830184613504565b9695505050505050565b600060208284031215613b2657600080fd5b81516128ed8161348c565b600082613b4057613b40613a1b565b50069056fea264697066735822122049e53b0518796cb3ab1ffe81912bb75ba8115b30f23776a875b92d4e303be11e64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103795760003560e01c806370a08231116101d1578063b5bd551811610102578063dc9e206f116100a0578063e985e9c51161006f578063e985e9c514610a0e578063f2fde38b14610a57578063f84ca25f14610a77578063fc29973b14610a8d57600080fd5b8063dc9e206f146109a3578063e07fa3c1146109b9578063e1213ad0146109ce578063e282327e146109ee57600080fd5b8063c4596c9d116100dc578063c4596c9d1461092d578063c4d8b9df1461094d578063c62180b31461096d578063c87b56dd1461098357600080fd5b8063b5bd5518146108e2578063b88d4fde146108f8578063bdb4b8481461091857600080fd5b8063940bb3441161016f578063a22cb46511610149578063a22cb46514610884578063a475b5dd146108a4578063b3ab66b0146108b9578063b3ee44c6146108cc57600080fd5b8063940bb344146108185780639546401c1461082d57806395d89b411461086f57600080fd5b806382cdc73f116101ab57806382cdc73f1461079157806383c64ec4146107b15780638da5cb5b146107c65780638ec0ef9c146107e457600080fd5b806370a0823114610746578063715018a614610766578063768961191461077b57600080fd5b806330eb7470116102ab5780634746c093116102495780635614e6dc116102235780635614e6dc146106c4578063563bcc3b146106f15780636352211e146107115780637035bf181461073157600080fd5b80634746c093146106595780634f6ccce71461068a57806351830227146106aa57600080fd5b806339a0c6f91161028557806339a0c6f9146105d75780633ac3d907146105f757806342842e0e146106245780634520e9161461064457600080fd5b806330eb74701461056a57806333645d891461058a578063379607f5146105b757600080fd5b80630e3ab61d1161031857806323b872dd116102f257806323b872dd146104f5578063245a03111461051557806327e8a11a146105355780632f745c591461054a57600080fd5b80630e3ab61d146104a057806318160ddd146104c057806318df6403146104d557600080fd5b80630677ef81116103545780630677ef811461040e57806306fdde0314610424578063081812fc14610446578063095ea7b31461047e57600080fd5b80628ca8161461038557806301ffc9a7146103b357806303b63187146103d357600080fd5b3661038057005b600080fd5b34801561039157600080fd5b50601254610100900460ff165b60405190151581526020015b60405180910390f35b3480156103bf57600080fd5b5061039e6103ce3660046134a2565b610ac1565b3480156103df57600080fd5b506104006103ee3660046134bf565b601d6020526000908152604090205481565b6040519081526020016103aa565b34801561041a57600080fd5b50610400600d5481565b34801561043057600080fd5b50610439610b2e565b6040516103aa9190613530565b34801561045257600080fd5b506104666104613660046134bf565b610bc0565b6040516001600160a01b0390911681526020016103aa565b34801561048a57600080fd5b5061049e610499366004613558565b610c50565b005b3480156104ac57600080fd5b5061049e6104bb3660046134bf565b610d68565b3480156104cc57600080fd5b50600054610400565b3480156104e157600080fd5b5061049e6104f0366004613584565b610da2565b34801561050157600080fd5b5061049e6105103660046135b4565b610e60565b34801561052157600080fd5b5061049e6105303660046135f5565b610e6b565b34801561054157600080fd5b5061049e611376565b34801561055657600080fd5b50610400610565366004613558565b6113bd565b34801561057657600080fd5b506104666105853660046134bf565b611519565b34801561059657600080fd5b506104006105a53660046134bf565b601e6020526000908152604090205481565b3480156105c357600080fd5b5061049e6105d23660046134bf565b611597565b3480156105e357600080fd5b5061049e6105f23660046136a2565b611823565b34801561060357600080fd5b506104006106123660046134bf565b601c6020526000908152604090205481565b34801561063057600080fd5b5061049e61063f3660046135b4565b611864565b34801561065057600080fd5b5061040061187f565b34801561066557600080fd5b506106796106743660046136ea565b6118c1565b6040516103aa959493929190613742565b34801561069657600080fd5b506104006106a53660046134bf565b611eaa565b3480156106b657600080fd5b5060125461039e9060ff1681565b3480156106d057600080fd5b506104006106df3660046136ea565b60136020526000908152604090205481565b3480156106fd57600080fd5b5061049e61070c3660046134bf565b611f0c565b34801561071d57600080fd5b5061046661072c3660046134bf565b611f7e565b34801561073d57600080fd5b50610439611f90565b34801561075257600080fd5b506104006107613660046136ea565b61201e565b34801561077257600080fd5b5061049e6120af565b34801561078757600080fd5b5061040060195481565b34801561079d57600080fd5b5061049e6107ac3660046135f5565b6120e5565b3480156107bd57600080fd5b506104006122ca565b3480156107d257600080fd5b506007546001600160a01b0316610466565b3480156107f057600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000181565b34801561082457600080fd5b5061049e6122d8565b34801561083957600080fd5b5061084d610848366004613558565b61230a565b60408051948552602085019390935291830152151560608201526080016103aa565b34801561087b57600080fd5b50610439612353565b34801561089057600080fd5b5061049e61089f3660046137a1565b612362565b3480156108b057600080fd5b5061049e612427565b61049e6108c73660046134bf565b612460565b3480156108d857600080fd5b5061040060165481565b3480156108ee57600080fd5b50610400600b5481565b34801561090457600080fd5b5061049e6109133660046137d4565b6126a3565b34801561092457600080fd5b50600a54610400565b34801561093957600080fd5b5061049e6109483660046134bf565b6126dc565b34801561095957600080fd5b5061049e6109683660046136a2565b61274e565b34801561097957600080fd5b50610400601a5481565b34801561098f57600080fd5b5061043961099e3660046134bf565b61278b565b3480156109af57600080fd5b5061040060115481565b3480156109c557600080fd5b5061049e6128f4565b3480156109da57600080fd5b506104666109e93660046134bf565b6129a2565b3480156109fa57600080fd5b5061049e610a093660046134bf565b6129d4565b348015610a1a57600080fd5b5061039e610a29366004613853565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a6357600080fd5b5061049e610a723660046136ea565b612a03565b348015610a8357600080fd5b50610400600f5481565b348015610a9957600080fd5b506104007f000000000000000000000000000000000000000000000000000000000000000281565b60006001600160e01b031982166380ac58cd60e01b1480610af257506001600160e01b03198216635b5e139f60e01b145b80610b0d57506001600160e01b0319821663780e9d6360e01b145b80610b2857506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b3d90613881565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6990613881565b8015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bcd826000541190565b610c345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c5b82611f7e565b9050806001600160a01b0316836001600160a01b03161415610cca5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c2b565b336001600160a01b0382161480610ce65750610ce68133610a29565b610d585760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c2b565b610d63838383612a9e565b505050565b6007546001600160a01b03163314610d925760405162461bcd60e51b8152600401610c2b906138bc565b600a556012805461ff0019169055565b6007546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610c2b906138bc565b600e5482600d54610ddd9190613907565b1115610e3b5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f6044820152661036b4b73a171760c91b6064820152608401610c2b565b610e458183612afa565b81600d6000828254610e579190613907565b90915550505050565b610d63838383612b14565b60026008541415610e8e5760405162461bcd60e51b8152600401610c2b9061391f565b6002600855600080808080610ea2336118c1565b9450945094509450945060005b85811015610fbf57838181518110610ec957610ec9613956565b6020026020010151881415610f305760405162461bcd60e51b815260206004820152602760248201527f476f64204e667420697320696e20796f757220616374697665206272656564696044820152661b99c81b1a5cdd60ca1b6064820152608401610c2b565b828181518110610f4257610f42613956565b6020026020010151871415610fad5760405162461bcd60e51b815260206004820152602b60248201527f476f6464657373204e667420697320696e20796f75722061637469766520627260448201526a1959591a5b99c81b1a5cdd60aa1b6064820152608401610c2b565b80610fb78161396c565b915050610eaf565b506017546040516331a9108f60e11b81526004810189905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561100457600080fd5b505afa158015611018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103c9190613987565b6001600160a01b03161461109c5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f74206f776e6572206f66207468617420476f64206e666044820152601d60fa1b6064820152608401610c2b565b6018546040516331a9108f60e11b81526004810188905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156110e057600080fd5b505afa1580156110f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111189190613987565b6001600160a01b03161461117c5760405162461bcd60e51b815260206004820152602560248201527f596f7520617265206e6f74206f776e6572206f66207468617420476f646465736044820152641cc81b999d60da1b6064820152608401610c2b565b6000878152601c60205260409020547f0000000000000000000000000000000000000000000000000000000000000002116111f95760405162461bcd60e51b815260206004820152601b60248201527f476f64207265616368206c696d6974206f66206272656564696e6700000000006044820152606401610c2b565b601a546000888152601d6020526040902054429161121691613907565b111561125b5760405162461bcd60e51b8152602060048201526014602482015273476f642068617320746f2077616974206d6f726560601b6044820152606401610c2b565b6000868152601e60205260409020547f0000000000000000000000000000000000000000000000000000000000000001116112d85760405162461bcd60e51b815260206004820152601f60248201527f476f6464657373207265616368206c696d6974206f66206272656564696e67006044820152606401610c2b565b601054600f54106112fb5760405162461bcd60e51b8152600401610c2b906139a4565b5050336000908152601b6020908152604080832081516080810183529889528883019788524291890191825260608901848152815460018082018455928652939094209851600490930290980191825595518188015594516002860155516003909401805460ff191694151594909417909355505050600855565b6007546001600160a01b031633146113a05760405162461bcd60e51b8152600401610c2b906138bc565b6012805461ff001981166101009182900460ff1615909102179055565b60006113c88361201e565b82106114215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c2b565b600080549080805b838110156114b9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561147b57805192505b876001600160a01b0316836001600160a01b031614156114b057868414156114a957509350610b2892505050565b6001909301925b50600101611429565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c2b565b6017546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e906024015b60206040518083038186803b15801561155f57600080fd5b505afa158015611573573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190613987565b600260085414156115ba5760405162461bcd60e51b8152600401610c2b9061391f565b60026008556000808080806115ce336118c1565b94509450945094509450600085116116285760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f6e74206861766520616374697665206272656564696e672100006044820152606401610c2b565b6000805b8681101561166c578786828151811061164757611647613956565b6020026020010151141561165a57600191505b806116648161396c565b91505061162c565b50806116ba5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420636f7272656374206272656564696e672049440000000000000000006044820152606401610c2b565b336000908152601b602052604081208054899081106116db576116db613956565b906000526020600020906004020190506117046019548260020154612df790919063ffffffff16565b42101561175d5760405162461bcd60e51b815260206004820152602160248201527f4572726f722d57616974696e672074696d65206973206e6f7420656e6f7567686044820152602160f81b6064820152608401610c2b565b60038101805460ff1916600190811790915581546000908152601d6020908152604080832042905584548352601c909152812080549091906117a0908490613907565b90915550506001818101546000908152601e6020526040812080549091906117c9908490613907565b9091555050601054600f54106117f15760405162461bcd60e51b8152600401610c2b906139a4565b6117fc336001612afa565b6001600f600082825461180f9190613907565b909155505060016008555050505050505050565b6007546001600160a01b0316331461184d5760405162461bcd60e51b8152600401610c2b906138bc565b80516118609060099060208401906133fc565b5050565b610d63838383604051806020016040528060008152506126a3565b6007546000906001600160a01b031633146118ac5760405162461bcd60e51b8152600401610c2b906138bc565b600d54600e546118bc91906139e5565b905090565b6001600160a01b0381166000908152601b602052604081205460609081908190819085816001600160401b038111156118fc576118fc613617565b604051908082528060200260200182016040528015611925578160200160208202803683370190505b5090506000805b6001600160a01b038a166000908152601b6020526040902054811015611bab576001600160a01b038a166000908152601b6020526040812080548390811061197657611976613956565b60009182526020918290206040805160808101825260049093029091018054835260018101549383019390935260028301549082015260039091015460ff161580156060830181905291925090611a54575060175481516040516331a9108f60e11b815260048101919091526001600160a01b038d8116921690636352211e9060240160206040518083038186803b158015611a1157600080fd5b505afa158015611a25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a499190613987565b6001600160a01b0316145b8015611a8f575080516000908152601c60205260409020547f0000000000000000000000000000000000000000000000000000000000000002115b8015611b25575060185460208201516040516331a9108f60e11b815260048101919091526001600160a01b038d8116921690636352211e9060240160206040518083038186803b158015611ae257600080fd5b505afa158015611af6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1a9190613987565b6001600160a01b0316145b8015611b6757507f0000000000000000000000000000000000000000000000000000000000000001601e60008360200151815260200190815260200160002054105b15611b985781848481518110611b7f57611b7f613956565b6020908102919091010152611b95600184613907565b92505b5080611ba38161396c565b91505061192c565b506000816001600160401b03811115611bc657611bc6613617565b604051908082528060200260200182016040528015611bef578160200160208202803683370190505b5090506000826001600160401b03811115611c0c57611c0c613617565b604051908082528060200260200182016040528015611c35578160200160208202803683370190505b5090506000836001600160401b03811115611c5257611c52613617565b604051908082528060200260200182016040528015611c7b578160200160208202803683370190505b5090506000846001600160401b03811115611c9857611c98613617565b604051908082528060200260200182016040528015611cc1578160200160208202803683370190505b50905060005b85811015611e9557868181518110611ce157611ce1613956565b6020026020010151858281518110611cfb57611cfb613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611d3e57611d3e613956565b602002602001015181548110611d5657611d56613956565b906000526020600020906004020160000154848281518110611d7a57611d7a613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611dbd57611dbd613956565b602002602001015181548110611dd557611dd5613956565b906000526020600020906004020160010154838281518110611df957611df9613956565b602002602001018181525050601b60008f6001600160a01b03166001600160a01b03168152602001908152602001600020858281518110611e3c57611e3c613956565b602002602001015181548110611e5457611e54613956565b906000526020600020906004020160020154828281518110611e7857611e78613956565b602090810291909101015280611e8d8161396c565b915050611cc7565b50939c929b5090995097509095509350505050565b600080548210611f085760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c2b565b5090565b6007546001600160a01b03163314611f365760405162461bcd60e51b8152600401610c2b906138bc565b624f1a008110611f795760405162461bcd60e51b815260206004820152600e60248201526d436865636b206e65772074696d6560901b6044820152606401610c2b565b601a55565b6000611f8982612e56565b5192915050565b60148054611f9d90613881565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc990613881565b80156120165780601f10611feb57610100808354040283529160200191612016565b820191906000526020600020905b815481529060010190602001808311611ff957829003601f168201915b505050505081565b60006001600160a01b03821661208a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c2b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146120d95760405162461bcd60e51b8152600401610c2b906138bc565b6120e36000612f2c565b565b6007546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610c2b906138bc565b4761211a82846139fc565b81116121795760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742046756e647320746f20706179206f757420526f60448201526779616c746965732160c01b6064820152608401610c2b565b6000548360165461218a9190613907565b111561219557600080fd5b60005b8381101561228c5760006121b38260165461072c9190613907565b6001600160a01b03168460405160006040518083038185875af1925050503d80600081146121fd576040519150601f19603f3d011682016040523d82523d6000602084013e612202565b606091505b50509050806122795760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c2b565b50806122848161396c565b915050612198565b508260165461229b9190613907565b60005414156122ae576000601655505050565b82601660008282546122c09190613907565b9091555050505050565b600080546118bc9047613a31565b6007546001600160a01b031633146123025760405162461bcd60e51b8152600401610c2b906138bc565b600b54600c55565b601b602052816000526040600020818154811061232657600080fd5b60009182526020909120600490910201805460018201546002830154600390930154919450925060ff1684565b606060028054610b3d90613881565b6001600160a01b0382163314156123bb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c2b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146124515760405162461bcd60e51b8152600401610c2b906138bc565b6012805460ff19166001179055565b600260085414156124835760405162461bcd60e51b8152600401610c2b9061391f565b6002600855601254610100900460ff16156124d25760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610c2b565b600c5481600b546124e39190613907565b11156125475760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46547320666f72205075626c696353616c65206c60448201526c32b33a103a379036b4b73a171760991b6064820152608401610c2b565b60115433600090815260136020526040902054612565908390613907565b11156125bf5760405162461bcd60e51b815260206004820152602360248201527f4d6178696d756d204d696e74732070657220416464726573732065786365656460448201526265642160e81b6064820152608401610c2b565b806125c9600a5490565b6125d391906139fc565b34101561263b5760405162461bcd60e51b815260206004820152603060248201527f4e6f742073756666696369656e7420457468657220746f206d696e742074686960448201526f7320616d6f756e74206f66204e46547360801b6064820152608401610c2b565b6126453382612afa565b3360009081526013602052604081208054839290612664908490613907565b9250508190555080600b600082825461267d9190613907565b9250508190555034601560008282546126969190613907565b9091555050600160085550565b6126ae848484612b14565b6126ba84848484612f7e565b6126d65760405162461bcd60e51b8152600401610c2b90613a45565b50505050565b6007546001600160a01b031633146127065760405162461bcd60e51b8152600401610c2b906138bc565b624f1a0081106127495760405162461bcd60e51b815260206004820152600e60248201526d436865636b206e65772074696d6560901b6044820152606401610c2b565b601955565b6007546001600160a01b031633146127785760405162461bcd60e51b8152600401610c2b906138bc565b80516118609060149060208401906133fc565b6060612798826000541190565b6127fc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c2b565b60125460ff16612898576014805461281390613881565b80601f016020809104026020016040519081016040528092919081815260200182805461283f90613881565b801561288c5780601f106128615761010080835404028352916020019161288c565b820191906000526020600020905b81548152906001019060200180831161286f57829003601f168201915b50505050509050919050565b60006128a261308c565b905060008151116128c257604051806020016040528060008152506128ed565b806128cc8461309b565b6040516020016128dd929190613a98565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461291e5760405162461bcd60e51b8152600401610c2b906138bc565b60006015541161297b5760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e6365206973604482015261020360f41b6064820152608401610c2b565b61299b73d7ddfe7233d872d3600549b570b3631604aa5fff601554613198565b6000601555565b6018546040516331a9108f60e11b8152600481018390526000916001600160a01b031690636352211e90602401611547565b6007546001600160a01b031633146129fe5760405162461bcd60e51b8152600401610c2b906138bc565b601155565b6007546001600160a01b03163314612a2d5760405162461bcd60e51b8152600401610c2b906138bc565b6001600160a01b038116612a925760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c2b565b612a9b81612f2c565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611860828260405180602001604052806000815250613232565b6000612b1f82612e56565b80519091506000906001600160a01b0316336001600160a01b03161480612b56575033612b4b84610bc0565b6001600160a01b0316145b80612b6857508151612b689033610a29565b905080612bd25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c2b565b846001600160a01b031682600001516001600160a01b031614612c465760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c2b565b6001600160a01b038416612caa5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c2b565b612cba6000848460000151612a9e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116612dad57612d61816000541190565b15612dad57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600080612e048385613907565b9050838110156128ed5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610c2b565b6040805180820190915260008082526020820152612e75826000541190565b612ed45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c2b565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612f22579392505050565b5060001901612ed6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561308057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612fc2903390899088908890600401613ad7565b602060405180830381600087803b158015612fdc57600080fd5b505af192505050801561300c575060408051601f3d908101601f1916820190925261300991810190613b14565b60015b613066573d80801561303a576040519150601f19603f3d011682016040523d82523d6000602084013e61303f565b606091505b50805161305e5760405162461bcd60e51b8152600401610c2b90613a45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050613084565b5060015b949350505050565b606060098054610b3d90613881565b6060816130bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130e957806130d38161396c565b91506130e29050600a83613a31565b91506130c3565b6000816001600160401b0381111561310357613103613617565b6040519080825280601f01601f19166020018201604052801561312d576020820181803683370190505b5090505b8415613084576131426001836139e5565b915061314f600a86613b31565b61315a906030613907565b60f81b81838151811061316f5761316f613956565b60200101906001600160f81b031916908160001a905350613191600a86613a31565b9450613131565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146131e5576040519150601f19603f3d011682016040523d82523d6000602084013e6131ea565b606091505b5050905080610d635760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610c2b565b610d6383838360016000546001600160a01b03851661329d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c2b565b836132fb5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610c2b565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156133f35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156133e7576133cb6000888488612f7e565b6133e75760405162461bcd60e51b8152600401610c2b90613a45565b60019182019101613378565b50600055612df0565b82805461340890613881565b90600052602060002090601f01602090048101928261342a5760008555613470565b82601f1061344357805160ff1916838001178555613470565b82800160010185558215613470579182015b82811115613470578251825591602001919060010190613455565b50611f089291505b80821115611f085760008155600101613478565b6001600160e01b031981168114612a9b57600080fd5b6000602082840312156134b457600080fd5b81356128ed8161348c565b6000602082840312156134d157600080fd5b5035919050565b60005b838110156134f35781810151838201526020016134db565b838111156126d65750506000910152565b6000815180845261351c8160208601602086016134d8565b601f01601f19169290920160200192915050565b6020815260006128ed6020830184613504565b6001600160a01b0381168114612a9b57600080fd5b6000806040838503121561356b57600080fd5b823561357681613543565b946020939093013593505050565b6000806040838503121561359757600080fd5b8235915060208301356135a981613543565b809150509250929050565b6000806000606084860312156135c957600080fd5b83356135d481613543565b925060208401356135e481613543565b929592945050506040919091013590565b6000806040838503121561360857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561364757613647613617565b604051601f8501601f19908116603f0116810190828211818310171561366f5761366f613617565b8160405280935085815286868601111561368857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156136b457600080fd5b81356001600160401b038111156136ca57600080fd5b8201601f810184136136db57600080fd5b6130848482356020840161362d565b6000602082840312156136fc57600080fd5b81356128ed81613543565b600081518084526020808501945080840160005b838110156137375781518752958201959082019060010161371b565b509495945050505050565b85815260a06020820152600061375b60a0830187613707565b828103604084015261376d8187613707565b905082810360608401526137818186613707565b905082810360808401526137958185613707565b98975050505050505050565b600080604083850312156137b457600080fd5b82356137bf81613543565b9150602083013580151581146135a957600080fd5b600080600080608085870312156137ea57600080fd5b84356137f581613543565b9350602085013561380581613543565b92506040850135915060608501356001600160401b0381111561382757600080fd5b8501601f8101871361383857600080fd5b6138478782356020840161362d565b91505092959194509250565b6000806040838503121561386657600080fd5b823561387181613543565b915060208301356135a981613543565b600181811c9082168061389557607f821691505b602082108114156138b657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561391a5761391a6138f1565b500190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415613980576139806138f1565b5060010190565b60006020828403121561399957600080fd5b81516128ed81613543565b60208082526021908201527f5265616368206c696d6974656420616d6f756e7420666f72206272656564696e6040820152606760f81b606082015260800190565b6000828210156139f7576139f76138f1565b500390565b6000816000190483118215151615613a1657613a166138f1565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613a4057613a40613a1b565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613aaa8184602088016134d8565b835190830190613abe8183602088016134d8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613b0a90830184613504565b9695505050505050565b600060208284031215613b2657600080fd5b81516128ed8161348c565b600082613b4057613b40613a1b565b50069056fea264697066735822122049e53b0518796cb3ab1ffe81912bb75ba8115b30f23776a875b92d4e303be11e64736f6c63430008090033

Deployed Bytecode Sourcemap

61849:11183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;;;;;;;;;;;63202:8;;;61849:11183;;;;;;63202:8;;;66598:82;;;;;;;;;;-1:-1:-1;66666:6:0;;;;;;;66598:82;;;179:14:1;;172:22;154:41;;142:2;127:18;66598:82:0;;;;;;;;41710:372;;;;;;;;;;-1:-1:-1;41710:372:0;;;;;:::i;:::-;;:::i;68329:47::-;;;;;;;;;;-1:-1:-1;68329:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;923:25:1;;;911:2;896:18;68329:47:0;777:177:1;62252:25:0;;;;;;;;;;;;;;;;43596:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45158:214::-;;;;;;;;;;-1:-1:-1;45158:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;45158:214:0;1710:203:1;44679:413:0;;;;;;;;;;-1:-1:-1;44679:413:0;;;;;:::i;:::-;;:::i;:::-;;63679:135;;;;;;;;;;-1:-1:-1;63679:135:0;;;;;:::i;:::-;;:::i;39959:108::-;;;;;;;;;;-1:-1:-1;40020:7:0;40047:12;39959:108;;65208:268;;;;;;;;;;-1:-1:-1;65208:268:0;;;;;:::i;:::-;;:::i;46034:170::-;;;;;;;;;;-1:-1:-1;46034:170:0;;;;;:::i;:::-;;:::i;71181:1251::-;;;;;;;;;;-1:-1:-1;71181:1251:0;;;;;:::i;:::-;;:::i;66721:79::-;;;;;;;;;;;;;:::i;40631:1007::-;;;;;;;;;;-1:-1:-1;40631:1007:0;;;;;:::i;:::-;;:::i;72785:110::-;;;;;;;;;;-1:-1:-1;72785:110:0;;;;;:::i;:::-;;:::i;68385:45::-;;;;;;;;;;-1:-1:-1;68385:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;70122:1049;;;;;;;;;;-1:-1:-1;70122:1049:0;;;;;:::i;:::-;;:::i;63429:109::-;;;;;;;;;;-1:-1:-1;63429:109:0;;;;;:::i;:::-;;:::i;68281:41::-;;;;;;;;;;-1:-1:-1;68281:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;46275:185;;;;;;;;;;-1:-1:-1;46275:185:0;;;;;:::i;:::-;;:::i;66254:123::-;;;;;;;;;;;;;:::i;68441:1670::-;;;;;;;;;;-1:-1:-1;68441:1670:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;40144:187::-;;;;;;;;;;-1:-1:-1;40144:187:0;;;;;:::i;:::-;;:::i;62553:28::-;;;;;;;;;;-1:-1:-1;62553:28:0;;;;;;;;62720:60;;;;;;;;;;-1:-1:-1;62720:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;72610:167;;;;;;;;;;-1:-1:-1;72610:167:0;;;;;:::i;:::-;;:::i;43405:124::-;;;;;;;;;;-1:-1:-1;43405:124:0;;;;;:::i;:::-;;:::i;62857:27::-;;;;;;;;;;;;;:::i;42146:221::-;;;;;;;;;;-1:-1:-1;42146:221:0;;;;;:::i;:::-;;:::i;4591:94::-;;;;;;;;;;;;;:::i;67998:38::-;;;;;;;;;;;;;;;;66982:737;;;;;;;;;;-1:-1:-1;66982:737:0;;;;;:::i;:::-;;:::i;66808:119::-;;;;;;;;;;;;;:::i;3940:87::-;;;;;;;;;;-1:-1:-1;4013:6:0;;-1:-1:-1;;;;;4013:6:0;3940:87;;67953:38;;;;;;;;;;;;;;;65539:96;;;;;;;;;;;;;:::i;68218:54::-;;;;;;;;;;-1:-1:-1;68218:54:0;;;;;:::i;:::-;;:::i;:::-;;;;6502:25:1;;;6558:2;6543:18;;6536:34;;;;6586:18;;;6579:34;6656:14;6649:22;6644:2;6629:18;;6622:50;6489:3;6474:19;68218:54:0;6277:401:1;43765:104:0;;;;;;;;;;;;;:::i;45444:288::-;;;;;;;;;;-1:-1:-1;45444:288:0;;;;;:::i;:::-;;:::i;66521:69::-;;;;;;;;;;;;;:::i;64017:641::-;;;;;;:::i;:::-;;:::i;66935:38::-;;;;;;;;;;;;;;;;62156:32;;;;;;;;;;;;;;;;46531:355;;;;;;;;;;-1:-1:-1;46531:355:0;;;;;:::i;:::-;;:::i;66428:83::-;;;;;;;;;;-1:-1:-1;66492:11:0;;66428:83;;72440:162;;;;;;;;;;-1:-1:-1;72440:162:0;;;;;:::i;:::-;;:::i;63546:125::-;;;;;;;;;;-1:-1:-1;63546:125:0;;;;;:::i;:::-;;:::i;68043:41::-;;;;;;;;;;;;;;;;64670:493;;;;;;;;;;-1:-1:-1;64670:493:0;;;;;:::i;:::-;;:::i;62474:45::-;;;;;;;;;;;;;;;;65695:234;;;;;;;;;;;;;:::i;72903:126::-;;;;;;;;;;-1:-1:-1;72903:126:0;;;;;:::i;:::-;;:::i;63824:129::-;;;;;;;;;;-1:-1:-1;63824:129:0;;;;;:::i;:::-;;:::i;45803:164::-;;;;;;;;;;-1:-1:-1;45803:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45924:25:0;;;45900:4;45924:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45803:164;4840:192;;;;;;;;;;-1:-1:-1;4840:192:0;;;;;:::i;:::-;;:::i;62351:26::-;;;;;;;;;;;;;;;;67912:34;;;;;;;;;;;;;;;41710:372;41812:4;-1:-1:-1;;;;;;41849:40:0;;-1:-1:-1;;;41849:40:0;;:105;;-1:-1:-1;;;;;;;41906:48:0;;-1:-1:-1;;;41906:48:0;41849:105;:172;;;-1:-1:-1;;;;;;;41971:50:0;;-1:-1:-1;;;41971:50:0;41849:172;:225;;;-1:-1:-1;;;;;;;;;;16031:40:0;;;42038:36;41829:245;41710:372;-1:-1:-1;;41710:372:0:o;43596:100::-;43650:13;43683:5;43676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43596:100;:::o;45158:214::-;45226:7;45254:16;45262:7;47198:4;47232:12;-1:-1:-1;47222:22:0;47141:111;45254:16;45246:74;;;;-1:-1:-1;;;45246:74:0;;8884:2:1;45246:74:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962:34;8942:18;;;8935:62;-1:-1:-1;;;9013:18:1;;;9006:43;9066:19;;45246:74:0;;;;;;;;;-1:-1:-1;45340:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45340:24:0;;45158:214::o;44679:413::-;44752:13;44768:24;44784:7;44768:15;:24::i;:::-;44752:40;;44817:5;-1:-1:-1;;;;;44811:11:0;:2;-1:-1:-1;;;;;44811:11:0;;;44803:58;;;;-1:-1:-1;;;44803:58:0;;9298:2:1;44803:58:0;;;9280:21:1;9337:2;9317:18;;;9310:30;9376:34;9356:18;;;9349:62;-1:-1:-1;;;9427:18:1;;;9420:32;9469:19;;44803:58:0;9096:398:1;44803:58:0;2808:10;-1:-1:-1;;;;;44896:21:0;;;;:62;;-1:-1:-1;44921:37:0;44938:5;2808:10;45803:164;:::i;44921:37::-;44874:169;;;;-1:-1:-1;;;44874:169:0;;9701:2:1;44874:169:0;;;9683:21:1;9740:2;9720:18;;;9713:30;9779:34;9759:18;;;9752:62;9850:27;9830:18;;;9823:55;9895:19;;44874:169:0;9499:421:1;44874:169:0;45056:28;45065:2;45069:7;45078:5;45056:8;:28::i;:::-;44741:351;44679:413;;:::o;63679:135::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;63741:11:::1;:19:::0;63771:6:::1;:14:::0;;-1:-1:-1;;63771:14:0::1;::::0;;63679:135::o;65208:268::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;65324:16:::1;;65314:6;65298:13;;:22;;;;:::i;:::-;:42;;65290:94;;;::::0;-1:-1:-1;;;65290:94:0;;10753:2:1;65290:94:0::1;::::0;::::1;10735:21:1::0;10792:2;10772:18;;;10765:30;10831:34;10811:18;;;10804:62;-1:-1:-1;;;10882:18:1;;;10875:37;10929:19;;65290:94:0::1;10551:403:1::0;65290:94:0::1;65395:28;65405:9;65416:6;65395:9;:28::i;:::-;65451:6;65434:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;65208:268:0:o;46034:170::-;46168:28;46178:4;46184:2;46188:7;46168:9;:28::i;71181:1251::-;36352:1;36950:7;;:19;;36942:63;;;;-1:-1:-1;;;36942:63:0;;;;;;;:::i;:::-;36352:1;37083:7;:18;71263:25:::1;::::0;;;;71393:29:::1;71411:10;71393:17;:29::i;:::-;71262:160;;;;;;;;;;71437:6;71433:236;71449:20;71445:1;:24;71433:236;;;71507:6;71514:1;71507:9;;;;;;;;:::i;:::-;;;;;;;71498:5;:18;;71490:70;;;::::0;-1:-1:-1;;;71490:70:0;;11653:2:1;71490:70:0::1;::::0;::::1;11635:21:1::0;11692:2;11672:18;;;11665:30;11731:34;11711:18;;;11704:62;-1:-1:-1;;;11782:18:1;;;11775:37;11829:19;;71490:70:0::1;11451:403:1::0;71490:70:0::1;71596:10;71607:1;71596:13;;;;;;;;:::i;:::-;;;;;;;71583:9;:26;;71575:82;;;::::0;-1:-1:-1;;;71575:82:0;;12061:2:1;71575:82:0::1;::::0;::::1;12043:21:1::0;12100:2;12080:18;;;12073:30;12139:34;12119:18;;;12112:62;-1:-1:-1;;;12190:18:1;;;12183:41;12241:19;;71575:82:0::1;11859:407:1::0;71575:82:0::1;71471:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71433:236;;;-1:-1:-1::0;71689:6:0::1;::::0;:21:::1;::::0;-1:-1:-1;;;71689:21:0;;::::1;::::0;::::1;923:25:1::0;;;71714:10:0::1;::::0;-1:-1:-1;;;;;71689:6:0::1;::::0;:14:::1;::::0;896:18:1;;71689:21:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;71689:35:0::1;;71681:81;;;::::0;-1:-1:-1;;;71681:81:0;;12869:2:1;71681:81:0::1;::::0;::::1;12851:21:1::0;12908:2;12888:18;;;12881:30;12947:34;12927:18;;;12920:62;-1:-1:-1;;;12998:18:1;;;12991:31;13039:19;;71681:81:0::1;12667:397:1::0;71681:81:0::1;71781:10;::::0;:29:::1;::::0;-1:-1:-1;;;71781:29:0;;::::1;::::0;::::1;923:25:1::0;;;71814:10:0::1;::::0;-1:-1:-1;;;;;71781:10:0::1;::::0;:18:::1;::::0;896::1;;71781:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;71781:43:0::1;;71773:93;;;::::0;-1:-1:-1;;;71773:93:0;;13271:2:1;71773:93:0::1;::::0;::::1;13253:21:1::0;13310:2;13290:18;;;13283:30;13349:34;13329:18;;;13322:62;-1:-1:-1;;;13400:18:1;;;13393:35;13445:19;;71773:93:0::1;13069:401:1::0;71773:93:0::1;71885:19;::::0;;;:12:::1;:19;::::0;;;;;71907:8:::1;-1:-1:-1::0;71877:70:0::1;;;::::0;-1:-1:-1;;;71877:70:0;;13677:2:1;71877:70:0::1;::::0;::::1;13659:21:1::0;13716:2;13696:18;;;13689:30;13755:29;13735:18;;;13728:57;13802:18;;71877:70:0::1;13475:351:1::0;71877:70:0::1;71991:16;::::0;71966:22:::1;::::0;;;:15:::1;:22;::::0;;;;;72011:15:::1;::::0;71966:41:::1;::::0;::::1;:::i;:::-;:60;;71958:93;;;::::0;-1:-1:-1;;;71958:93:0;;14033:2:1;71958:93:0::1;::::0;::::1;14015:21:1::0;14072:2;14052:18;;;14045:30;-1:-1:-1;;;14091:18:1;;;14084:50;14151:18;;71958:93:0::1;13831:344:1::0;71958:93:0::1;72070:27;::::0;;;:16:::1;:27;::::0;;;;;72100:12:::1;-1:-1:-1::0;72062:86:0::1;;;::::0;-1:-1:-1;;;72062:86:0;;14382:2:1;72062:86:0::1;::::0;::::1;14364:21:1::0;14421:2;14401:18;;;14394:30;14460:33;14440:18;;;14433:61;14511:18;;72062:86:0::1;14180:355:1::0;72062:86:0::1;72180:11;;72167:10;;:24;72159:70;;;;-1:-1:-1::0;;;72159:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;72255:10:0::1;72242:24;::::0;;;:12:::1;:24;::::0;;;;;;;72272:151;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;72366:15:::1;72272:151:::0;;;;;;;;;;;;72242:182;;72272:151;72242:182;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;72242:182:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;-1:-1:-1;;;37262:7:0;:22;71181:1251::o;66721:79::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;66786:6:::1;::::0;;-1:-1:-1;;66776:16:0;::::1;66786:6;::::0;;;::::1;;;66785:7;66776:16:::0;;::::1;;::::0;;66721:79::o;40631:1007::-;40720:7;40756:16;40766:5;40756:9;:16::i;:::-;40748:5;:24;40740:71;;;;-1:-1:-1;;;40740:71:0;;15144:2:1;40740:71:0;;;15126:21:1;15183:2;15163:18;;;15156:30;15222:34;15202:18;;;15195:62;-1:-1:-1;;;15273:18:1;;;15266:32;15315:19;;40740:71:0;14942:398:1;40740:71:0;40822:22;40047:12;;;40822:22;;41085:466;41105:14;41101:1;:18;41085:466;;;41145:31;41179:14;;;:11;:14;;;;;;;;;41145:48;;;;;;;;;-1:-1:-1;;;;;41145:48:0;;;;;-1:-1:-1;;;41145:48:0;;;-1:-1:-1;;;;;41145:48:0;;;;;;;;41216:28;41212:111;;41289:14;;;-1:-1:-1;41212:111:0;41366:5;-1:-1:-1;;;;;41345:26:0;:17;-1:-1:-1;;;;;41345:26:0;;41341:195;;;41415:5;41400:11;:20;41396:85;;;-1:-1:-1;41456:1:0;-1:-1:-1;41449:8:0;;-1:-1:-1;;;41449:8:0;41396:85;41503:13;;;;;41341:195;-1:-1:-1;41121:3:0;;41085:466;;;-1:-1:-1;41574:56:0;;-1:-1:-1;;;41574:56:0;;15547:2:1;41574:56:0;;;15529:21:1;15586:2;15566:18;;;15559:30;15625:34;15605:18;;;15598:62;-1:-1:-1;;;15676:18:1;;;15669:44;15730:19;;41574:56:0;15345:410:1;72785:110:0;72865:6;;:22;;-1:-1:-1;;;72865:22:0;;;;;923:25:1;;;72839:7:0;;-1:-1:-1;;;;;72865:6:0;;:14;;896:18:1;;72865:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;70122:1049::-;36352:1;36950:7;;:19;;36942:63;;;;-1:-1:-1;;;36942:63:0;;;;;;;:::i;:::-;36352:1;37083:7;:18;70178:25:::1;::::0;;;;70308:29:::1;70326:10;70308:17;:29::i;:::-;70177:160;;;;;;;;;;70379:1;70356:20;:24;70348:67;;;::::0;-1:-1:-1;;;70348:67:0;;15962:2:1;70348:67:0::1;::::0;::::1;15944:21:1::0;16001:2;15981:18;;;15974:30;16040:32;16020:18;;;16013:60;16090:18;;70348:67:0::1;15760:354:1::0;70348:67:0::1;70428:16;70467:6:::0;70463:130:::1;70479:20;70475:1;:24;70463:130;;;70541:2;70523:11;70535:1;70523:14;;;;;;;;:::i;:::-;;;;;;;:20;70520:61;;;70577:4;70563:18;;70520:61;70501:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70463:130;;;;70611:11;70603:47;;;::::0;-1:-1:-1;;;70603:47:0;;16321:2:1;70603:47:0::1;::::0;::::1;16303:21:1::0;16360:2;16340:18;;;16333:30;16399:25;16379:18;;;16372:53;16442:18;;70603:47:0::1;16119:347:1::0;70603:47:0::1;70704:10;70663:25;70691:24:::0;;;:12:::1;:24;::::0;;;;:28;;70716:2;;70691:28;::::1;;;;;:::i;:::-;;;;;;;;;;;70663:56;;70757:33;70776:13;;70757:4;:14;;;:18;;:33;;;;:::i;:::-;70738:15;:52;;70730:98;;;::::0;-1:-1:-1;;;70730:98:0;;16673:2:1;70730:98:0::1;::::0;::::1;16655:21:1::0;16712:2;16692:18;;;16685:30;16751:34;16731:18;;;16724:62;-1:-1:-1;;;16802:18:1;;;16795:31;16843:19;;70730:98:0::1;16471:397:1::0;70730:98:0::1;70841:13;::::0;::::1;:20:::0;;-1:-1:-1;;70841:20:0::1;70857:4;70841:20:::0;;::::1;::::0;;;70888:8;;70841:13:::1;70872:25:::0;;;:15:::1;:25;::::0;;;;;;;70900:15:::1;70872:43:::0;;70939:8;;70926:22;;:12:::1;:22:::0;;;;;:27;;:22;;70841:13;70926:27:::1;::::0;70857:4;;70926:27:::1;:::i;:::-;::::0;;;-1:-1:-1;;70995:1:0::1;70981:9:::0;;::::1;::::0;70964:27:::1;::::0;;;:16:::1;:27;::::0;;;;:32;;:27;;;:32:::1;::::0;70995:1;;70964:32:::1;:::i;:::-;::::0;;;-1:-1:-1;;71053:11:0::1;::::0;71040:10:::1;::::0;:24:::1;71032:70;;;;-1:-1:-1::0;;;71032:70:0::1;;;;;;;:::i;:::-;71113:24;71123:10;71135:1;71113:9;:24::i;:::-;71162:1;71148:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36308:1:0;37262:7;:22;-1:-1:-1;;;;;;;;70122:1049:0:o;63429:109::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;63504:26;;::::1;::::0;:15:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;63429:109:::0;:::o;46275:185::-;46413:39;46430:4;46436:2;46440:7;46413:39;;;;;;;;;;;;:16;:39::i;66254:123::-;4013:6;;66313:4;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;66356:13:::1;;66337:16;;:32;;;;:::i;:::-;66330:39;;66254:123:::0;:::o;68441:1670::-;-1:-1:-1;;;;;68675:21:0;;68505:4;68675:21;;;:12;:21;;;;;:28;68522:13;;;;;;;;68505:4;68675:28;-1:-1:-1;;;;;68759:28:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68759:28:0;;68724:63;;68798:25;68844:6;68840:482;-1:-1:-1;;;;;68856:21:0;;;;;;:12;:21;;;;;:28;68852:32;;68840:482;;;-1:-1:-1;;;;;68933:21:0;;68906:24;68933:21;;;:12;:21;;;;;:24;;68955:1;;68933:24;;;;;;:::i;:::-;;;;;;;;;;68906:51;;;;;;;;68933:24;;;;;;;68906:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68906:51:0;68975:53;;-1:-1:-1;68993:6:0;;69008:8;;68993:24;;-1:-1:-1;;;68993:24:0;;;;;923:25:1;;;;-1:-1:-1;;;;;68993:35:0;;;;:6;;:14;;896:18:1;;68993:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;68993:35:0;;68975:53;:90;;;;-1:-1:-1;69045:8:0;;69032:22;;;;:12;:22;;;;;;69057:8;-1:-1:-1;68975:90:0;:152;;;;-1:-1:-1;69087:10:0;;69106:9;;;;69087:29;;-1:-1:-1;;;69087:29:0;;;;;923:25:1;;;;-1:-1:-1;;;;;69087:40:0;;;;:10;;:18;;896::1;;69087:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;69087:40:0;;68975:152;:198;;;;;69161:12;69131:16;:27;69148:4;:9;;;69131:27;;;;;;;;;;;;:42;68975:198;68972:339;;;69250:1;69207:18;69226:20;69207:40;;;;;;;;:::i;:::-;;;;;;;;;;:44;69270:25;69294:1;69270:25;;:::i;:::-;;;68972:339;-1:-1:-1;68886:4:0;;;;:::i;:::-;;;;68840:482;;;;69342:25;69385:20;-1:-1:-1;;;;;69371:35:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69371:35:0;;69342:64;;69434:20;69472;-1:-1:-1;;;;;69458:35:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69458:35:0;;69434:59;;69516:24;69558:20;-1:-1:-1;;;;;69544:35:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69544:35:0;;69516:63;;69606:24;69648:20;-1:-1:-1;;;;;69634:35:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69634:35:0;;69606:63;;69696:6;69692:326;69708:20;69704:1;:24;69692:326;;;69766:18;69785:1;69766:21;;;;;;;;:::i;:::-;;;;;;;69749:11;69761:1;69749:14;;;;;;;;:::i;:::-;;;;;;:38;;;;;69814:12;:21;69827:7;-1:-1:-1;;;;;69814:21:0;-1:-1:-1;;;;;69814:21:0;;;;;;;;;;;;69836:11;69848:1;69836:14;;;;;;;;:::i;:::-;;;;;;;69814:37;;;;;;;;:::i;:::-;;;;;;;;;;;:41;;;69802:6;69809:1;69802:9;;;;;;;;:::i;:::-;;;;;;:53;;;;;69886:12;:21;69899:7;-1:-1:-1;;;;;69886:21:0;-1:-1:-1;;;;;69886:21:0;;;;;;;;;;;;69908:11;69920:1;69908:14;;;;;;;;:::i;:::-;;;;;;;69886:37;;;;;;;;:::i;:::-;;;;;;;;;;;:42;;;69870:10;69881:1;69870:13;;;;;;;;:::i;:::-;;;;;;:58;;;;;69959:12;:21;69972:7;-1:-1:-1;;;;;69959:21:0;-1:-1:-1;;;;;69959:21:0;;;;;;;;;;;;69981:11;69993:1;69981:14;;;;;;;;:::i;:::-;;;;;;;69959:37;;;;;;;;:::i;:::-;;;;;;;;;;;:47;;;69943:10;69954:1;69943:13;;;;;;;;:::i;:::-;;;;;;;;;;:63;69730:3;;;;:::i;:::-;;;;69692:326;;;-1:-1:-1;70037:20:0;;70059:11;;-1:-1:-1;70072:6:0;;-1:-1:-1;70059:11:0;-1:-1:-1;70037:20:0;;-1:-1:-1;68441:1670:0;-1:-1:-1;;;;68441:1670:0:o;40144:187::-;40211:7;40047:12;;40239:5;:21;40231:69;;;;-1:-1:-1;;;40231:69:0;;17205:2:1;40231:69:0;;;17187:21:1;17244:2;17224:18;;;17217:30;17283:34;17263:18;;;17256:62;-1:-1:-1;;;17334:18:1;;;17327:33;17377:19;;40231:69:0;17003:399:1;40231:69:0;-1:-1:-1;40318:5:0;40144:187::o;72610:167::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;72705:7:::1;72694:8;:18;72686:45;;;::::0;-1:-1:-1;;;72686:45:0;;17609:2:1;72686:45:0::1;::::0;::::1;17591:21:1::0;17648:2;17628:18;;;17621:30;-1:-1:-1;;;17667:18:1;;;17660:44;17721:18;;72686:45:0::1;17407:338:1::0;72686:45:0::1;72742:16;:27:::0;72610:167::o;43405:124::-;43469:7;43496:20;43508:7;43496:11;:20::i;:::-;:25;;43405:124;-1:-1:-1;;43405:124:0:o;62857:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42146:221::-;42210:7;-1:-1:-1;;;;;42238:19:0;;42230:75;;;;-1:-1:-1;;;42230:75:0;;17952:2:1;42230:75:0;;;17934:21:1;17991:2;17971:18;;;17964:30;18030:34;18010:18;;;18003:62;-1:-1:-1;;;18081:18:1;;;18074:41;18132:19;;42230:75:0;17750:407:1;42230:75:0;-1:-1:-1;;;;;;42331:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42331:27:0;;42146:221::o;4591:94::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;66982:737::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;67080:21:::1;67130:15;67139:6:::0;67130;:15:::1;:::i;:::-;67120:7;:25;67112:78;;;::::0;-1:-1:-1;;;67112:78:0;;18537:2:1;67112:78:0::1;::::0;::::1;18519:21:1::0;18576:2;18556:18;;;18549:30;18615:34;18595:18;;;18588:62;-1:-1:-1;;;18666:18:1;;;18659:38;18714:19;;67112:78:0::1;18335:404:1::0;67112:78:0::1;40020:7:::0;40047:12;67235:6:::1;67209:23;;:32;;;;:::i;:::-;:49;;67201:58;;;::::0;::::1;;67275:6;67270:238;67287:6;67283:1;:10;67270:238;;;67316:12;67342:36;67376:1;67350:23;;:27;;;;:::i;67342:36::-;-1:-1:-1::0;;;;;67334:50:0::1;67392:6;67334:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67315:88;;;67426:7;67418:78;;;::::0;-1:-1:-1;;;67418:78:0;;19156:2:1;67418:78:0::1;::::0;::::1;19138:21:1::0;19195:2;19175:18;;;19168:30;19234:34;19214:18;;;19207:62;19305:28;19285:18;;;19278:56;19351:19;;67418:78:0::1;18954:422:1::0;67418:78:0::1;-1:-1:-1::0;67295:3:0;::::1;::::0;::::1;:::i;:::-;;;;67270:238;;;;67565:6;67539:23;;:32;;;;:::i;:::-;40020:7:::0;40047:12;67522:49:::1;67518:184;;;67614:1;67588:23;:27:::0;44741:351;44679:413;;:::o;67518:184::-:1;67684:6;67657:23;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;67051:668:0::1;66982:737:::0;;:::o;66808:119::-;66855:7;40047:12;;66882:37;;:21;:37;:::i;65539:96::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;65611:16:::1;::::0;65595:13:::1;:32:::0;65539:96::o;68218:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68218:54:0;-1:-1:-1;68218:54:0;;;:::o;43765:104::-;43821:13;43854:7;43847:14;;;;;:::i;45444:288::-;-1:-1:-1;;;;;45539:24:0;;2808:10;45539:24;;45531:63;;;;-1:-1:-1;;;45531:63:0;;19840:2:1;45531:63:0;;;19822:21:1;19879:2;19859:18;;;19852:30;19918:28;19898:18;;;19891:56;19964:18;;45531:63:0;19638:350:1;45531:63:0;2808:10;45607:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45607:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45607:53:0;;;;;;;;;;45676:48;;154:41:1;;;45607:42:0;;2808:10;45676:48;;127:18:1;45676:48:0;;;;;;;45444:288;;:::o;66521:69::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;66567:8:::1;:15:::0;;-1:-1:-1;;66567:15:0::1;66578:4;66567:15;::::0;;66521:69::o;64017:641::-;36352:1;36950:7;;:19;;36942:63;;;;-1:-1:-1;;;36942:63:0;;;;;;;:::i;:::-;36352:1;37083:7;:18;64104:6:::1;::::0;::::1;::::0;::::1;;;64103:7;64095:35;;;::::0;-1:-1:-1;;;64095:35:0;;20195:2:1;64095:35:0::1;::::0;::::1;20177:21:1::0;20234:2;20214:18;;;20207:30;-1:-1:-1;;;20253:18:1;;;20246:45;20308:18;;64095:35:0::1;19993:339:1::0;64095:35:0::1;64178:13;;64168:6;64149:16;;:25;;;;:::i;:::-;:42;;64141:100;;;::::0;-1:-1:-1;;;64141:100:0;;20539:2:1;64141:100:0::1;::::0;::::1;20521:21:1::0;20578:2;20558:18;;;20551:30;20617:34;20597:18;;;20590:62;-1:-1:-1;;;20668:18:1;;;20661:43;20721:19;;64141:100:0::1;20337:409:1::0;64141:100:0::1;64310:26;::::0;64286:10:::1;64260:37;::::0;;;:25:::1;:37;::::0;;;;;:46:::1;::::0;64300:6;;64260:46:::1;:::i;:::-;:76;;64252:124;;;::::0;-1:-1:-1;;;64252:124:0;;20953:2:1;64252:124:0::1;::::0;::::1;20935:21:1::0;20992:2;20972:18;;;20965:30;21031:34;21011:18;;;21004:62;-1:-1:-1;;;21082:18:1;;;21075:33;21125:19;;64252:124:0::1;20751:399:1::0;64252:124:0::1;64421:6;64408:10;66492:11:::0;;;66428:83;64408:10:::1;:19;;;;:::i;:::-;64395:9;:32;;64387:93;;;::::0;-1:-1:-1;;;64387:93:0;;21357:2:1;64387:93:0::1;::::0;::::1;21339:21:1::0;21396:2;21376:18;;;21369:30;21435:34;21415:18;;;21408:62;-1:-1:-1;;;21486:18:1;;;21479:46;21542:19;;64387:93:0::1;21155:412:1::0;64387:93:0::1;64493:29;64503:10;64515:6;64493:9;:29::i;:::-;64559:10;64533:37;::::0;;;:25:::1;:37;::::0;;;;:47;;64574:6;;64533:37;:47:::1;::::0;64574:6;;64533:47:::1;:::i;:::-;;;;;;;;64611:6;64591:16;;:26;;;;;;;:::i;:::-;;;;;;;;64641:9;64630:7;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36308:1:0;37262:7;:22;-1:-1:-1;64017:641:0:o;46531:355::-;46690:28;46700:4;46706:2;46710:7;46690:9;:28::i;:::-;46751:48;46774:4;46780:2;46784:7;46793:5;46751:22;:48::i;:::-;46729:149;;;;-1:-1:-1;;;46729:149:0;;;;;;;:::i;:::-;46531:355;;;;:::o;72440:162::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;72533:7:::1;72522:8;:18;72514:45;;;::::0;-1:-1:-1;;;72514:45:0;;17609:2:1;72514:45:0::1;::::0;::::1;17591:21:1::0;17648:2;17628:18;;;17621:30;-1:-1:-1;;;17667:18:1;;;17660:44;17721:18;;72514:45:0::1;17407:338:1::0;72514:45:0::1;72570:13;:24:::0;72440:162::o;63546:125::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;63633:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;64670:493::-:0;64744:13;64778:17;64786:8;47198:4;47232:12;-1:-1:-1;47222:22:0;47141:111;64778:17;64770:77;;;;-1:-1:-1;;;64770:77:0;;22194:2:1;64770:77:0;;;22176:21:1;22233:2;22213:18;;;22206:30;22272:34;22252:18;;;22245:62;-1:-1:-1;;;22323:18:1;;;22316:45;22378:19;;64770:77:0;21992:411:1;64770:77:0;64872:8;;;;64868:284;;64933:13;64926:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64670:493;;;:::o;64868:284::-;64988:21;65012:10;:8;:10::i;:::-;64988:34;;65068:1;65050:7;65044:21;:25;:96;;;;;;;;;;;;;;;;;65096:7;65105:19;:8;:17;:19::i;:::-;65079:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65044:96;65037:103;64670:493;-1:-1:-1;;;64670:493:0:o;65695:234::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;65765:1:::1;65755:7;;:11;65747:58;;;::::0;-1:-1:-1;;;65747:58:0;;23252:2:1;65747:58:0::1;::::0;::::1;23234:21:1::0;23291:2;23271:18;;;23264:30;23330:34;23310:18;;;23303:62;-1:-1:-1;;;23381:18:1;;;23374:32;23423:19;;65747:58:0::1;23050:398:1::0;65747:58:0::1;65818:71;65836:42;65881:7;;65818:9;:71::i;:::-;65911:1;65901:7;:11:::0;65695:234::o;72903:126::-;72991:10;;:30;;-1:-1:-1;;;72991:30:0;;;;;923:25:1;;;72965:7:0;;-1:-1:-1;;;;;72991:10:0;;:18;;896::1;;72991:30:0;777:177:1;63824:129:0;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;63907:26:::1;:38:::0;63824:129::o;4840:192::-;4013:6;;-1:-1:-1;;;;;4013:6:0;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4929:22:0;::::1;4921:73;;;::::0;-1:-1:-1;;;4921:73:0;;23655:2:1;4921:73:0::1;::::0;::::1;23637:21:1::0;23694:2;23674:18;;;23667:30;23733:34;23713:18;;;23706:62;-1:-1:-1;;;23784:18:1;;;23777:36;23830:19;;4921:73:0::1;23453:402:1::0;4921:73:0::1;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;52061:196::-;52176:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52176:29:0;-1:-1:-1;;;;;52176:29:0;;;;;;;;;52221:28;;52176:24;;52221:28;;;;;;;52061:196;;;:::o;47260:104::-;47329:27;47339:2;47343:8;47329:27;;;;;;;;;;;;:9;:27::i;49941:2002::-;50056:35;50094:20;50106:7;50094:11;:20::i;:::-;50169:18;;50056:58;;-1:-1:-1;50127:22:0;;-1:-1:-1;;;;;50153:34:0;2808:10;-1:-1:-1;;;;;50153:34:0;;:87;;;-1:-1:-1;2808:10:0;50204:20;50216:7;50204:11;:20::i;:::-;-1:-1:-1;;;;;50204:36:0;;50153:87;:154;;;-1:-1:-1;50274:18:0;;50257:50;;2808:10;45803:164;:::i;50257:50::-;50127:181;;50329:17;50321:80;;;;-1:-1:-1;;;50321:80:0;;24062:2:1;50321:80:0;;;24044:21:1;24101:2;24081:18;;;24074:30;24140:34;24120:18;;;24113:62;-1:-1:-1;;;24191:18:1;;;24184:48;24249:19;;50321:80:0;23860:414:1;50321:80:0;50444:4;-1:-1:-1;;;;;50422:26:0;:13;:18;;;-1:-1:-1;;;;;50422:26:0;;50414:77;;;;-1:-1:-1;;;50414:77:0;;24481:2:1;50414:77:0;;;24463:21:1;24520:2;24500:18;;;24493:30;24559:34;24539:18;;;24532:62;-1:-1:-1;;;24610:18:1;;;24603:36;24656:19;;50414:77:0;24279:402:1;50414:77:0;-1:-1:-1;;;;;50510:16:0;;50502:66;;;;-1:-1:-1;;;50502:66:0;;24888:2:1;50502:66:0;;;24870:21:1;24927:2;24907:18;;;24900:30;24966:34;24946:18;;;24939:62;-1:-1:-1;;;25017:18:1;;;25010:35;25062:19;;50502:66:0;24686:401:1;50502:66:0;50689:49;50706:1;50710:7;50719:13;:18;;;50689:8;:49::i;:::-;-1:-1:-1;;;;;51034:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51034:31:0;;;-1:-1:-1;;;;;51034:31:0;;;-1:-1:-1;;51034:31:0;;;;;;;51080:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51080:29:0;;;;;;;;;;;;;51126:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;51171:61:0;;;;-1:-1:-1;;;51216:15:0;-1:-1:-1;;;;;51171:61:0;;;;;51506:11;;;51536:24;;;;;:29;51506:11;;51536:29;51532:295;;51604:20;51612:11;47198:4;47232:12;-1:-1:-1;47222:22:0;47141:111;51604:20;51600:212;;;51681:18;;;51649:24;;;:11;:24;;;;;;;;:50;;51764:28;;;;-1:-1:-1;;;;;51722:70:0;-1:-1:-1;;;51722:70:0;-1:-1:-1;;;;;;51722:70:0;;;-1:-1:-1;;;;;51649:50:0;;;51722:70;;;;;;;51600:212;51009:829;51874:7;51870:2;-1:-1:-1;;;;;51855:27:0;51864:4;-1:-1:-1;;;;;51855:27:0;;;;;;;;;;;51893:42;50045:1898;;49941:2002;;;:::o;57076:179::-;57134:7;;57166:5;57170:1;57166;:5;:::i;:::-;57154:17;;57195:1;57190;:6;;57182:46;;;;-1:-1:-1;;;57182:46:0;;25294:2:1;57182:46:0;;;25276:21:1;25333:2;25313:18;;;25306:30;25372:29;25352:18;;;25345:57;25419:18;;57182:46:0;25092:351:1;42806:537:0;-1:-1:-1;;;;;;;;;;;;;;;;;42909:16:0;42917:7;47198:4;47232:12;-1:-1:-1;47222:22:0;47141:111;42909:16;42901:71;;;;-1:-1:-1;;;42901:71:0;;25650:2:1;42901:71:0;;;25632:21:1;25689:2;25669:18;;;25662:30;25728:34;25708:18;;;25701:62;-1:-1:-1;;;25779:18:1;;;25772:40;25829:19;;42901:71:0;25448:406:1;42901:71:0;43030:7;43010:245;43077:31;43111:17;;;:11;:17;;;;;;;;;43077:51;;;;;;;;;-1:-1:-1;;;;;43077:51:0;;;;;-1:-1:-1;;;43077:51:0;;;-1:-1:-1;;;;;43077:51:0;;;;;;;;43151:28;43147:93;;43211:9;42806:537;-1:-1:-1;;;42806:537:0:o;43147:93::-;-1:-1:-1;;;43050:6:0;43010:245;;5040:173;5115:6;;;-1:-1:-1;;;;;5132:17:0;;;-1:-1:-1;;;;;;5132:17:0;;;;;;;5165:40;;5115:6;;;5132:17;5115:6;;5165:40;;5096:16;;5165:40;5085:128;5040:173;:::o;52822:804::-;52977:4;-1:-1:-1;;;;;52998:13:0;;6309:20;6357:8;52994:625;;53034:72;;-1:-1:-1;;;53034:72:0;;-1:-1:-1;;;;;53034:36:0;;;;;:72;;2808:10;;53085:4;;53091:7;;53100:5;;53034:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53034:72:0;;;;;;;;-1:-1:-1;;53034:72:0;;;;;;;;;;;;:::i;:::-;;;53030:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53280:13:0;;53276:273;;53323:61;;-1:-1:-1;;;53323:61:0;;;;;;;:::i;53276:273::-;53499:6;53493:13;53484:6;53480:2;53476:15;53469:38;53030:534;-1:-1:-1;;;;;;53157:55:0;-1:-1:-1;;;53157:55:0;;-1:-1:-1;53150:62:0;;52994:625;-1:-1:-1;53603:4:0;52994:625;52822:804;;;;;;:::o;63255:116::-;63315:13;63348:15;63341:22;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;-1:-1:-1;;;;;846:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;66004:183;66085:9;66100:7;-1:-1:-1;;;;;66100:12:0;66120:6;66100:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66084:47;;;66150:4;66142:37;;;;-1:-1:-1;;;66142:37:0;;27342:2:1;66142:37:0;;;27324:21:1;27381:2;27361:18;;;27354:30;-1:-1:-1;;;27400:18:1;;;27393:50;27460:18;;66142:37:0;27140:344:1;47727:163:0;47850:32;47856:2;47860:8;47870:5;47877:4;48288:20;48311:12;-1:-1:-1;;;;;48342:16:0;;48334:62;;;;-1:-1:-1;;;48334:62:0;;27691:2:1;48334:62:0;;;27673:21:1;27730:2;27710:18;;;27703:30;27769:34;27749:18;;;27742:62;-1:-1:-1;;;27820:18:1;;;27813:31;27861:19;;48334:62:0;27489:397:1;48334:62:0;48415:13;48407:66;;;;-1:-1:-1;;;48407:66:0;;28093:2:1;48407:66:0;;;28075:21:1;28132:2;28112:18;;;28105:30;28171:34;28151:18;;;28144:62;-1:-1:-1;;;28222:18:1;;;28215:38;28270:19;;48407:66:0;27891:404:1;48407:66:0;-1:-1:-1;;;;;48825:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;48825:45:0;;-1:-1:-1;;;;;48825:45:0;;;;;;;;;;48885:50;;;;;;;;;;;;;;48952:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;49002:66:0;;;;-1:-1:-1;;;49052:15:0;-1:-1:-1;;;;;49002:66:0;;;;;;48952:25;;49137:415;49157:8;49153:1;:12;49137:415;;;49196:38;;49221:12;;-1:-1:-1;;;;;49196:38:0;;;49213:1;;49196:38;;49213:1;;49196:38;49257:4;49253:249;;;49320:59;49351:1;49355:2;49359:12;49373:5;49320:22;:59::i;:::-;49286:196;;;;-1:-1:-1;;;49286:196:0;;;;;;;:::i;:::-;49522:14;;;;;49167:3;49137:415;;;-1:-1:-1;49568:12:0;:27;49619:60;46531:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206:131:1;-1:-1:-1;;;;;;280:32:1;;270:43;;260:71;;327:1;324;317:12;342:245;400:6;453:2;441:9;432:7;428:23;424:32;421:52;;;469:1;466;459:12;421:52;508:9;495:23;527:30;551:5;527:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:::-;1264:3;1302:5;1296:12;1329:6;1324:3;1317:19;1345:63;1401:6;1394:4;1389:3;1385:14;1378:4;1371:5;1367:16;1345:63;:::i;:::-;1462:2;1441:15;-1:-1:-1;;1437:29:1;1428:39;;;;1469:4;1424:50;;1222:258;-1:-1:-1;;1222:258:1:o;1485:220::-;1634:2;1623:9;1616:21;1597:4;1654:45;1695:2;1684:9;1680:18;1672:6;1654:45;:::i;1918:131::-;-1:-1:-1;;;;;1993:31:1;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:1:o;2374:::-;2442:6;2450;2503:2;2491:9;2482:7;2478:23;2474:32;2471:52;;;2519:1;2516;2509:12;2471:52;2555:9;2542:23;2532:33;;2615:2;2604:9;2600:18;2587:32;2628:31;2653:5;2628:31;:::i;:::-;2678:5;2668:15;;;2374:315;;;;;:::o;2694:456::-;2771:6;2779;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2895:9;2882:23;2914:31;2939:5;2914:31;:::i;:::-;2964:5;-1:-1:-1;3021:2:1;3006:18;;2993:32;3034:33;2993:32;3034:33;:::i;:::-;2694:456;;3086:7;;-1:-1:-1;;;3140:2:1;3125:18;;;;3112:32;;2694:456::o;3155:248::-;3223:6;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;-1:-1:-1;;3323:23:1;;;3393:2;3378:18;;;3365:32;;-1:-1:-1;3155:248:1:o;3408:127::-;3469:10;3464:3;3460:20;3457:1;3450:31;3500:4;3497:1;3490:15;3524:4;3521:1;3514:15;3540:632;3605:5;-1:-1:-1;;;;;3676:2:1;3668:6;3665:14;3662:40;;;3682:18;;:::i;:::-;3757:2;3751:9;3725:2;3811:15;;-1:-1:-1;;3807:24:1;;;3833:2;3803:33;3799:42;3787:55;;;3857:18;;;3877:22;;;3854:46;3851:72;;;3903:18;;:::i;:::-;3943:10;3939:2;3932:22;3972:6;3963:15;;4002:6;3994;3987:22;4042:3;4033:6;4028:3;4024:16;4021:25;4018:45;;;4059:1;4056;4049:12;4018:45;4109:6;4104:3;4097:4;4089:6;4085:17;4072:44;4164:1;4157:4;4148:6;4140;4136:19;4132:30;4125:41;;;;3540:632;;;;;:::o;4177:451::-;4246:6;4299:2;4287:9;4278:7;4274:23;4270:32;4267:52;;;4315:1;4312;4305:12;4267:52;4355:9;4342:23;-1:-1:-1;;;;;4380:6:1;4377:30;4374:50;;;4420:1;4417;4410:12;4374:50;4443:22;;4496:4;4488:13;;4484:27;-1:-1:-1;4474:55:1;;4525:1;4522;4515:12;4474:55;4548:74;4614:7;4609:2;4596:16;4591:2;4587;4583:11;4548:74;:::i;4633:247::-;4692:6;4745:2;4733:9;4724:7;4720:23;4716:32;4713:52;;;4761:1;4758;4751:12;4713:52;4800:9;4787:23;4819:31;4844:5;4819:31;:::i;4885:435::-;4938:3;4976:5;4970:12;5003:6;4998:3;4991:19;5029:4;5058:2;5053:3;5049:12;5042:19;;5095:2;5088:5;5084:14;5116:1;5126:169;5140:6;5137:1;5134:13;5126:169;;;5201:13;;5189:26;;5235:12;;;;5270:15;;;;5162:1;5155:9;5126:169;;;-1:-1:-1;5311:3:1;;4885:435;-1:-1:-1;;;;;4885:435:1:o;5325:947::-;5766:6;5755:9;5748:25;5809:3;5804:2;5793:9;5789:18;5782:31;5729:4;5836:57;5888:3;5877:9;5873:19;5865:6;5836:57;:::i;:::-;5941:9;5933:6;5929:22;5924:2;5913:9;5909:18;5902:50;5975:44;6012:6;6004;5975:44;:::i;:::-;5961:58;;6067:9;6059:6;6055:22;6050:2;6039:9;6035:18;6028:50;6101:44;6138:6;6130;6101:44;:::i;:::-;6087:58;;6194:9;6186:6;6182:22;6176:3;6165:9;6161:19;6154:51;6222:44;6259:6;6251;6222:44;:::i;:::-;6214:52;5325:947;-1:-1:-1;;;;;;;;5325:947:1:o;6683:416::-;6748:6;6756;6809:2;6797:9;6788:7;6784:23;6780:32;6777:52;;;6825:1;6822;6815:12;6777:52;6864:9;6851:23;6883:31;6908:5;6883:31;:::i;:::-;6933:5;-1:-1:-1;6990:2:1;6975:18;;6962:32;7032:15;;7025:23;7013:36;;7003:64;;7063:1;7060;7053:12;7104:795;7199:6;7207;7215;7223;7276:3;7264:9;7255:7;7251:23;7247:33;7244:53;;;7293:1;7290;7283:12;7244:53;7332:9;7319:23;7351:31;7376:5;7351:31;:::i;:::-;7401:5;-1:-1:-1;7458:2:1;7443:18;;7430:32;7471:33;7430:32;7471:33;:::i;:::-;7523:7;-1:-1:-1;7577:2:1;7562:18;;7549:32;;-1:-1:-1;7632:2:1;7617:18;;7604:32;-1:-1:-1;;;;;7648:30:1;;7645:50;;;7691:1;7688;7681:12;7645:50;7714:22;;7767:4;7759:13;;7755:27;-1:-1:-1;7745:55:1;;7796:1;7793;7786:12;7745:55;7819:74;7885:7;7880:2;7867:16;7862:2;7858;7854:11;7819:74;:::i;:::-;7809:84;;;7104:795;;;;;;;:::o;7904:388::-;7972:6;7980;8033:2;8021:9;8012:7;8008:23;8004:32;8001:52;;;8049:1;8046;8039:12;8001:52;8088:9;8075:23;8107:31;8132:5;8107:31;:::i;:::-;8157:5;-1:-1:-1;8214:2:1;8199:18;;8186:32;8227:33;8186:32;8227:33;:::i;8297:380::-;8376:1;8372:12;;;;8419;;;8440:61;;8494:4;8486:6;8482:17;8472:27;;8440:61;8547:2;8539:6;8536:14;8516:18;8513:38;8510:161;;;8593:10;8588:3;8584:20;8581:1;8574:31;8628:4;8625:1;8618:15;8656:4;8653:1;8646:15;8510:161;;8297:380;;;:::o;9925:356::-;10127:2;10109:21;;;10146:18;;;10139:30;10205:34;10200:2;10185:18;;10178:62;10272:2;10257:18;;9925:356::o;10286:127::-;10347:10;10342:3;10338:20;10335:1;10328:31;10378:4;10375:1;10368:15;10402:4;10399:1;10392:15;10418:128;10458:3;10489:1;10485:6;10482:1;10479:13;10476:39;;;10495:18;;:::i;:::-;-1:-1:-1;10531:9:1;;10418:128::o;10959:355::-;11161:2;11143:21;;;11200:2;11180:18;;;11173:30;11239:33;11234:2;11219:18;;11212:61;11305:2;11290:18;;10959:355::o;11319:127::-;11380:10;11375:3;11371:20;11368:1;11361:31;11411:4;11408:1;11401:15;11435:4;11432:1;11425:15;12271:135;12310:3;-1:-1:-1;;12331:17:1;;12328:43;;;12351:18;;:::i;:::-;-1:-1:-1;12398:1:1;12387:13;;12271:135::o;12411:251::-;12481:6;12534:2;12522:9;12513:7;12509:23;12505:32;12502:52;;;12550:1;12547;12540:12;12502:52;12582:9;12576:16;12601:31;12626:5;12601:31;:::i;14540:397::-;14742:2;14724:21;;;14781:2;14761:18;;;14754:30;14820:34;14815:2;14800:18;;14793:62;-1:-1:-1;;;14886:2:1;14871:18;;14864:31;14927:3;14912:19;;14540:397::o;16873:125::-;16913:4;16941:1;16938;16935:8;16932:34;;;16946:18;;:::i;:::-;-1:-1:-1;16983:9:1;;16873:125::o;18162:168::-;18202:7;18268:1;18264;18260:6;18256:14;18253:1;18250:21;18245:1;18238:9;18231:17;18227:45;18224:71;;;18275:18;;:::i;:::-;-1:-1:-1;18315:9:1;;18162:168::o;19381:127::-;19442:10;19437:3;19433:20;19430:1;19423:31;19473:4;19470:1;19463:15;19497:4;19494:1;19487:15;19513:120;19553:1;19579;19569:35;;19584:18;;:::i;:::-;-1:-1:-1;19618:9:1;;19513:120::o;21572:415::-;21774:2;21756:21;;;21813:2;21793:18;;;21786:30;21852:34;21847:2;21832:18;;21825:62;-1:-1:-1;;;21918:2:1;21903:18;;21896:49;21977:3;21962:19;;21572:415::o;22408:637::-;22688:3;22726:6;22720:13;22742:53;22788:6;22783:3;22776:4;22768:6;22764:17;22742:53;:::i;:::-;22858:13;;22817:16;;;;22880:57;22858:13;22817:16;22914:4;22902:17;;22880:57;:::i;:::-;-1:-1:-1;;;22959:20:1;;22988:22;;;23037:1;23026:13;;22408:637;-1:-1:-1;;;;22408:637:1:o;26275:489::-;-1:-1:-1;;;;;26544:15:1;;;26526:34;;26596:15;;26591:2;26576:18;;26569:43;26643:2;26628:18;;26621:34;;;26691:3;26686:2;26671:18;;26664:31;;;26469:4;;26712:46;;26738:19;;26730:6;26712:46;:::i;:::-;26704:54;26275:489;-1:-1:-1;;;;;;26275:489:1:o;26769:249::-;26838:6;26891:2;26879:9;26870:7;26866:23;26862:32;26859:52;;;26907:1;26904;26897:12;26859:52;26939:9;26933:16;26958:30;26982:5;26958:30;:::i;27023:112::-;27055:1;27081;27071:35;;27086:18;;:::i;:::-;-1:-1:-1;27120:9:1;;27023:112::o

Swarm Source

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