ETH Price: $2,406.01 (-0.36%)

Token

MadMangaFOMOStone (MMFS)
 

Overview

Max Total Supply

1,500 MMFS

Holders

614

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jjaltoon.eth
Balance
1 MMFS
0xbb642be9d02c11612a43ab120d52d1c8545a1a28
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:
MadMangaFOMOStone

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-29
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: tests/fomo_stone.sol

pragma solidity ^0.8.0;




contract MadMangaFOMOStone is ERC721, ERC721Enumerable, Ownable {
    bool public IsActive = true;
    string private _baseURIextended;
    address payable public immutable contract_owner;
    address private signAddr;

    uint32 public r1_num = 0;
    uint32 public r2_num = 0;

    struct SaleConfig {
        uint8 round;
        uint32 max_num;
        uint32 FOMO_total;
        uint32 round_total;
        uint256 startTime;
        uint256 endTime;
        uint256 _price;
        uint256 og_price;
    }

    SaleConfig public saleConfig;
    mapping (address => uint8) public mint_num;

    constructor(address payable _owner) ERC721("MadMangaFOMOStone", "MMFS") {
        require(_owner != address(0));
        contract_owner = _owner;
        signAddr = msg.sender;

        saleConfig.round = 1;
        saleConfig.max_num = 2;
        saleConfig.FOMO_total = 4200;
        saleConfig.round_total = 1500;
        saleConfig.startTime = 1651377600;
        saleConfig.endTime = 1651384800;
        saleConfig._price = 1*10**17;
        saleConfig.og_price = 8*1*10**16;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }

    function setSaleState(bool newState) public onlyOwner {
        IsActive = newState;
    }

    function setSignAddr(address _addr) external onlyOwner() {
        require(_addr != address(0));
        signAddr = _addr;
    }

    function mintBatch(address account, uint256 num) external onlyOwner() {
        require(IsActive, "Sale must be active to mint Tokens");
        require(account != address(0));
        require(totalSupply() + num <= saleConfig.FOMO_total, "Purchase would exceed max supply of tokens");

        for(uint i = 0; i < num; i++) 
        {
            uint mintIndex = totalSupply();
            if (totalSupply() < saleConfig.FOMO_total) 
            {
                _safeMint(account, mintIndex);
                if(saleConfig.round==1)
                {
                    r1_num = r1_num+1;
                }
                if(saleConfig.round==2)
                {
                    r2_num = r2_num+1;
                }
            }
        }
        
    } 


    function mint(uint num, uint8 _type, bytes memory _sig) public payable {
        require(IsActive, "Sale must be active to mint Tokens");
        require(saleConfig.startTime <= block.timestamp && block.timestamp <= saleConfig.endTime, "Sale has not started yet.");
        require(num <= saleConfig.max_num, "Exceeded max token purchase");
        require(totalSupply() + num <= saleConfig.FOMO_total, "Purchase would exceed max supply of tokens");
        require(mint_num[msg.sender] + num <= saleConfig.max_num, "Exceeded max token purchase..");
        require(saleConfig.round==1 || saleConfig.round==2, "Round Error");

        bool a;
        if(_type==3)
        {
            string memory ver_msg = strConcat(toString(msg.sender),"fomostone");
            a = verify(contract_owner, ver_msg, _sig);
        }
        else
        {
            a = verify(contract_owner, toString(msg.sender), _sig);
        }
        
        require(a, "You are not in the whitelist.");
        
        if(saleConfig.round==1)
        {
            require(r1_num + num <= saleConfig.round_total, "Purchase would exceed max supply of tokens.(R1)");
        }
        if(saleConfig.round==2)
        {
            require(r2_num + num <= saleConfig.round_total, "Purchase would exceed max supply of tokens.(R2)");
        }

        if(_type==3)
        {
            
        }
        else if(_type==2)
        {
            require(saleConfig.og_price * num <= msg.value, "Ether value sent is not correct.(OG)");
        }
        else
        {
            require(saleConfig._price * num <= msg.value, "Ether value sent is not correct.");
        }
        

        for(uint i = 0; i < num; i++) 
        {
            uint mintIndex = totalSupply();
            if (totalSupply() < saleConfig.FOMO_total) 
            {
                _safeMint(msg.sender, mintIndex);
                mint_num[msg.sender] = mint_num[msg.sender]+1;
                if(saleConfig.round==1)
                {
                    r1_num = r1_num+1;
                }
                if(saleConfig.round==2)
                {
                    r2_num = r2_num+1;
                }
            }
        }
    }


    function public_mint(uint num) public payable {
        require(IsActive, "Sale must be active to mint Tokens");
        require(saleConfig.round==3, "Sale has not started yet.(Public Mint)");
        require(saleConfig.startTime <= block.timestamp && block.timestamp <= saleConfig.endTime, "Sale has not started yet.");
        require(num <= saleConfig.max_num, "Exceeded max token purchase");
        require(totalSupply() + num <= saleConfig.FOMO_total, "Purchase would exceed max supply of tokens");
        require(mint_num[msg.sender] + num <= saleConfig.max_num, "Exceeded max token purchase..");
        require(saleConfig._price * num <= msg.value, "Ether value sent is not correct");

        for(uint i = 0; i < num; i++) 
        {
            uint mintIndex = totalSupply();
            if (totalSupply() < saleConfig.FOMO_total) 
            {
                _safeMint(msg.sender, mintIndex);
                mint_num[msg.sender] = mint_num[msg.sender]+1;
            }
        }
    }

    function set_round(uint8 _round, uint32 round_total) public onlyOwner {
        require(_round > 0 && round_total > 0);
        saleConfig.round = _round;
        saleConfig.round_total = round_total;
    }

    function set_time(uint256 _s, uint256 _e) public onlyOwner {
        require(_e > _s);
        saleConfig.startTime = _s;
        saleConfig.endTime = _e;
    }

    function set_price(uint256 _p) public onlyOwner {
        saleConfig._price = _p;
    }

    function set_og_price(uint256 og_p) public onlyOwner {
        saleConfig.og_price = og_p;
    }

    function set_max_num(uint32 _max) public onlyOwner {
        saleConfig.max_num = _max;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(contract_owner, balance);
    }

    function verify(address _signer, string memory _message, bytes memory _sig) internal pure returns (bool) {
        bytes32 messageHash = getMessageHash(_message);
        bytes32 ethSignMessageHash = getEthSignedMessageHash(messageHash);

        return recover(ethSignMessageHash, _sig) == _signer;
    }

    function getMessageHash(string memory _message) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_message));
    }

    function getEthSignedMessageHash(bytes32 _messageHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
    }

    function recover(bytes32 _ethSignedMessageHash, bytes memory _sig) internal pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = _split(_sig);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function _split(bytes memory _sig) internal pure returns (bytes32 r, bytes32 s, uint8 v) {
        require(_sig.length == 65, "invalid signature length");
        assembly {
            r := mload(add(_sig, 32))
            s := mload(add(_sig, 64))
            v := byte(0, mload(add(_sig, 96)))
        }
    }

    function toString(address account) internal pure returns(string memory) {
        return _toString(abi.encodePacked(account));
    }

    function _toString(bytes memory data) internal pure returns(string memory) {
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
            str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory){
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        
        string memory ret = new string(_ba.length + _bb.length);
        
        bytes memory bret = bytes(ret);
        
        uint k = 0;
        
        for (uint i = 0; i < _ba.length; i++)
        {
            bret[k++] = _ba[i];
        }
        
        for (uint j = 0; j < _bb.length; j++) 
        {
            bret[k++] = _bb[j];
        }
                
        return string(ret);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"contract_owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"uint8","name":"_type","type":"uint8"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mint_num","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"num","type":"uint256"}],"name":"public_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"r1_num","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"r2_num","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint32","name":"max_num","type":"uint32"},{"internalType":"uint32","name":"FOMO_total","type":"uint32"},{"internalType":"uint32","name":"round_total","type":"uint32"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"og_price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setSignAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_max","type":"uint32"}],"name":"set_max_num","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"og_p","type":"uint256"}],"name":"set_og_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_p","type":"uint256"}],"name":"set_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_round","type":"uint8"},{"internalType":"uint32","name":"round_total","type":"uint32"}],"name":"set_round","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_s","type":"uint256"},{"internalType":"uint256","name":"_e","type":"uint256"}],"name":"set_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600a805460ff60a01b1916600160a01b179055600c8054600160a01b600160e01b03191690553480156200003757600080fd5b5060405162003864380380620038648339810160408190526200005a9162000261565b60408051808201825260118152704d61644d616e6761464f4d4f53746f6e6560781b6020808301918252835180850190945260048452634d4d465360e01b908401528151919291620000af91600091620001bb565b508051620000c5906001906020840190620001bb565b505050620000e2620000dc6200016560201b60201c565b62000169565b6001600160a01b038116620000f657600080fd5b60601b6001600160601b031916608052600c8054336001600160a01b0319909116179055600d80546001600160681b0319166a05dc00001068000000020117905563626e05c0600e5563626e21e0600f5567016345785d8a000060105567011c37937e080000601155620002d0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c99062000293565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b6000602082840312156200027457600080fd5b81516001600160a01b03811681146200028c57600080fd5b9392505050565b600181811c90821680620002a857607f821691505b60208210811415620002ca57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61356062000304600039600081816103fb01528181610d0d015281816116f6015261172901526135606000f3fe60806040526004361061021a5760003560e01c806355f804b31161012357806390aa0b0f116100ab578063c87b56dd1161006f578063c87b56dd146106ed578063d0c801d51461070d578063df0301eb14610720578063e985e9c514610740578063f2fde38b1461078957600080fd5b806390aa0b0f146105de57806395d89b4114610678578063a22cb4651461068d578063b88d4fde146106ad578063c4e37095146106cd57600080fd5b806370a08231116100f257806370a0823114610547578063715018a614610567578063723c099c1461057c578063888651c6146105a05780638da5cb5b146105c057600080fd5b806355f804b3146104a55780635a22b085146104c55780636352211e1461050757806369772b1d1461052757600080fd5b806328bf794d116101a65780633ccfd60b116101755780633ccfd60b1461041d57806342842e0e146104325780634bbcd31c146104525780634f6ccce714610465578063547e89c71461048557600080fd5b806328bf794d146103885780632f745c59146103a8578063304dd754146103c8578063384f58eb146103e957600080fd5b806318160ddd116101ed57806318160ddd146102d057806322637c47146102ef57806323b872dd14610328578063247b3eac14610348578063248b71fc1461036857600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612fe5565b6107a9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696107ba565b60405161024b91906131f3565b34801561028257600080fd5b50610296610291366004613068565b61084c565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612fa0565b6108e6565b005b3480156102dc57600080fd5b506008545b60405190815260200161024b565b3480156102fb57600080fd5b50600c5461031390600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161024b565b34801561033457600080fd5b506102ce610343366004612ed2565b6109fc565b34801561035457600080fd5b506102ce610363366004612e84565b610a2d565b34801561037457600080fd5b506102ce610383366004612fa0565b610a8c565b34801561039457600080fd5b506102ce6103a3366004613068565b610c18565b3480156103b457600080fd5b506102e16103c3366004612fa0565b610c47565b3480156103d457600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156103f557600080fd5b506102967f000000000000000000000000000000000000000000000000000000000000000081565b34801561042957600080fd5b506102ce610cdd565b34801561043e57600080fd5b506102ce61044d366004612ed2565b610d35565b6102ce610460366004613068565b610d50565b34801561047157600080fd5b506102e1610480366004613068565b611046565b34801561049157600080fd5b506102ce6104a03660046130fa565b6110d9565b3480156104b157600080fd5b506102ce6104c036600461301f565b611125565b3480156104d157600080fd5b506104f56104e0366004612e84565b60126020526000908152604090205460ff1681565b60405160ff909116815260200161024b565b34801561051357600080fd5b50610296610522366004613068565b611162565b34801561053357600080fd5b506102ce610542366004613068565b6111d9565b34801561055357600080fd5b506102e1610562366004612e84565b611208565b34801561057357600080fd5b506102ce61128f565b34801561058857600080fd5b50600c5461031390600160c01b900463ffffffff1681565b3480156105ac57600080fd5b506102ce6105bb366004613115565b6112c5565b3480156105cc57600080fd5b50600a546001600160a01b0316610296565b3480156105ea57600080fd5b50600d54600e54600f5460105460115461062d9460ff81169463ffffffff6101008304811695600160281b8404821695600160481b909404909116939192909188565b6040805160ff909916895263ffffffff97881660208a015295871695880195909552949092166060860152608085015260a084015260c083019190915260e08201526101000161024b565b34801561068457600080fd5b50610269611343565b34801561069957600080fd5b506102ce6106a8366004612f76565b611352565b3480156106b957600080fd5b506102ce6106c8366004612f0e565b61135d565b3480156106d957600080fd5b506102ce6106e8366004612fca565b611395565b3480156106f957600080fd5b50610269610708366004613068565b6113dd565b6102ce61071b3660046130a3565b6114b8565b34801561072c57600080fd5b506102ce61073b366004613081565b611af0565b34801561074c57600080fd5b5061023f61075b366004612e9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b506102ce6107a4366004612e84565b611b31565b60006107b482611bc9565b92915050565b6060600080546107c99061343c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061343c565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f182611162565b9050806001600160a01b0316836001600160a01b0316141561095f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c1565b336001600160a01b038216148061097b575061097b813361075b565b6109ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c1565b6109f78383611bee565b505050565b610a063382611c5c565b610a225760405162461bcd60e51b81526004016108c190613319565b6109f7838383611d53565b600a546001600160a01b03163314610a575760405162461bcd60e51b81526004016108c1906132e4565b6001600160a01b038116610a6a57600080fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ab65760405162461bcd60e51b81526004016108c1906132e4565b600a54600160a01b900460ff16610adf5760405162461bcd60e51b81526004016108c190613258565b6001600160a01b038216610af257600080fd5b600d5463ffffffff600160281b9091041681610b0d60085490565b610b17919061336a565b1115610b355760405162461bcd60e51b81526004016108c19061329a565b60005b818110156109f7576000610b4b60085490565b600d54600854919250600160281b900463ffffffff161115610c0557610b718482611efa565b600d5460ff1660011415610bbb57600c54610b9a90600160a01b900463ffffffff166001613382565b600c60146101000a81548163ffffffff021916908363ffffffff1602179055505b600d5460ff1660021415610c0557600c54610be490600160c01b900463ffffffff166001613382565b600c60186101000a81548163ffffffff021916908363ffffffff1602179055505b5080610c1081613477565b915050610b38565b600a546001600160a01b03163314610c425760405162461bcd60e51b81526004016108c1906132e4565b601055565b6000610c5283611208565b8210610cb45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d075760405162461bcd60e51b81526004016108c1906132e4565b47610d327f000000000000000000000000000000000000000000000000000000000000000082611f14565b50565b6109f78383836040518060200160405280600081525061135d565b600a54600160a01b900460ff16610d795760405162461bcd60e51b81526004016108c190613258565b600d5460ff16600314610ddd5760405162461bcd60e51b815260206004820152602660248201527f53616c6520686173206e6f742073746172746564207965742e285075626c6963604482015265204d696e742960d01b60648201526084016108c1565b600e544210801590610df15750600f544211155b610e395760405162461bcd60e51b815260206004820152601960248201527829b0b632903430b9903737ba1039ba30b93a32b2103cb2ba1760391b60448201526064016108c1565b600d54610100900463ffffffff16811115610e965760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e207075726368617365000000000060448201526064016108c1565b600d5463ffffffff600160281b9091041681610eb160085490565b610ebb919061336a565b1115610ed95760405162461bcd60e51b81526004016108c19061329a565b600d543360009081526012602052604090205461010090910463ffffffff1690610f0790839060ff1661336a565b1115610f555760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e2070757263686173652e2e00000060448201526064016108c1565b6010543490610f659083906133da565b1115610fb35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108c1565b60005b81811015611042576000610fc960085490565b600d54600854919250600160281b900463ffffffff16111561102f57610fef3382611efa565b3360009081526012602052604090205461100d9060ff1660016133a1565b336000908152601260205260409020805460ff191660ff929092169190911790555b508061103a81613477565b915050610fb6565b5050565b600061105160085490565b82106110b45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c1565b600882815481106110c7576110c76134e8565b90600052602060002001549050919050565b600a546001600160a01b031633146111035760405162461bcd60e51b81526004016108c1906132e4565b600d805463ffffffff9092166101000264ffffffff0019909216919091179055565b600a546001600160a01b0316331461114f5760405162461bcd60e51b81526004016108c1906132e4565b805161104290600b906020840190612d04565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c1565b600a546001600160a01b031633146112035760405162461bcd60e51b81526004016108c1906132e4565b601155565b60006001600160a01b0382166112735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b95760405162461bcd60e51b81526004016108c1906132e4565b6112c3600061202d565b565b600a546001600160a01b031633146112ef5760405162461bcd60e51b81526004016108c1906132e4565b60008260ff16118015611308575060008163ffffffff16115b61131157600080fd5b600d805463ffffffff909216600160481b026cffffffff0000000000000000ff1990921660ff90931692909217179055565b6060600180546107c99061343c565b61104233838361207f565b6113673383611c5c565b6113835760405162461bcd60e51b81526004016108c190613319565b61138f8484848461214e565b50505050565b600a546001600160a01b031633146113bf5760405162461bcd60e51b81526004016108c1906132e4565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b031661145c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c1565b6000611466612181565b9050600081511161148657604051806020016040528060008152506114b1565b8061149084612190565b6040516020016114a1929190613187565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff166114e15760405162461bcd60e51b81526004016108c190613258565b600e5442108015906114f55750600f544211155b61153d5760405162461bcd60e51b815260206004820152601960248201527829b0b632903430b9903737ba1039ba30b93a32b2103cb2ba1760391b60448201526064016108c1565b600d54610100900463ffffffff1683111561159a5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e207075726368617365000000000060448201526064016108c1565b600d5463ffffffff600160281b90910416836115b560085490565b6115bf919061336a565b11156115dd5760405162461bcd60e51b81526004016108c19061329a565b600d543360009081526012602052604090205461010090910463ffffffff169061160b90859060ff1661336a565b11156116595760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e2070757263686173652e2e00000060448201526064016108c1565b600d5460ff16600114806116725750600d5460ff166002145b6116ac5760405162461bcd60e51b815260206004820152600b60248201526a2937bab7321022b93937b960a91b60448201526064016108c1565b60008260ff16600314156117245760006116ef6116c83361228e565b60405180604001604052806009815260200168666f6d6f73746f6e6560b81b8152506122c6565b905061171c7f00000000000000000000000000000000000000000000000000000000000000008285612419565b91505061175a565b6117577f00000000000000000000000000000000000000000000000000000000000000006117513361228e565b84612419565b90505b806117a75760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420696e207468652077686974656c6973742e00000060448201526064016108c1565b600d5460ff166001141561184557600d54600c5463ffffffff600160481b9092048216916117df918791600160a01b9091041661336a565b11156118455760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f6620746f6b656e732e2852312960881b60648201526084016108c1565b600d5460ff16600214156118e357600d54600c5463ffffffff600160481b90920482169161187d918791600160c01b9091041661336a565b11156118e35760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f6620746f6b656e732e2852322960881b60648201526084016108c1565b8260ff16600314156118f4576119cd565b8260ff166002141561196f5760115434906119109086906133da565b111561196a5760405162461bcd60e51b8152602060048201526024808201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015263284f472960e01b60648201526084016108c1565b6119cd565b601054349061197f9086906133da565b11156119cd5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60448201526064016108c1565b60005b84811015611ae95760006119e360085490565b600d54600854919250600160281b900463ffffffff161115611ad657611a093382611efa565b33600090815260126020526040902054611a279060ff1660016133a1565b336000908152601260205260409020805460ff191660ff928316179055600d541660011415611a8c57600c54611a6b90600160a01b900463ffffffff166001613382565b600c60146101000a81548163ffffffff021916908363ffffffff1602179055505b600d5460ff1660021415611ad657600c54611ab590600160c01b900463ffffffff166001613382565b600c60186101000a81548163ffffffff021916908363ffffffff1602179055505b5080611ae181613477565b9150506119d0565b5050505050565b600a546001600160a01b03163314611b1a5760405162461bcd60e51b81526004016108c1906132e4565b818111611b2657600080fd5b600e91909155600f55565b600a546001600160a01b03163314611b5b5760405162461bcd60e51b81526004016108c1906132e4565b6001600160a01b038116611bc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c1565b610d328161202d565b60006001600160e01b0319821663780e9d6360e01b14806107b457506107b48261245c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c2382611162565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c1565b6000611ce083611162565b9050806001600160a01b0316846001600160a01b03161480611d1b5750836001600160a01b0316611d108461084c565b6001600160a01b0316145b80611d4b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d6682611162565b6001600160a01b031614611dca5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108c1565b6001600160a01b038216611e2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c1565b611e378383836124ac565b611e42600082611bee565b6001600160a01b0383166000908152600360205260408120805460019290611e6b9084906133f9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9990849061336a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110428282604051806020016040528060008152506124b7565b80471015611f645760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108c1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50509050806109f75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108c1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612159848484611d53565b612165848484846124ea565b61138f5760405162461bcd60e51b81526004016108c190613206565b6060600b80546107c99061343c565b6060816121b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121de57806121c881613477565b91506121d79050600a836133c6565b91506121b8565b60008167ffffffffffffffff8111156121f9576121f96134fe565b6040519080825280601f01601f191660200182016040528015612223576020820181803683370190505b5090505b8415611d4b576122386001836133f9565b9150612245600a86613492565b61225090603061336a565b60f81b818381518110612265576122656134e8565b60200101906001600160f81b031916908160001a905350612287600a866133c6565b9450612227565b604051606082811b6bffffffffffffffffffffffff19166020830152906107b4906034016040516020818303038152906040526125f7565b80518251606091849184916000916122de919061336a565b67ffffffffffffffff8111156122f6576122f66134fe565b6040519080825280601f01601f191660200182016040528015612320576020820181803683370190505b509050806000805b855181101561239857858181518110612343576123436134e8565b01602001516001600160f81b031916838361235d81613477565b94508151811061236f5761236f6134e8565b60200101906001600160f81b031916908160001a9053508061239081613477565b915050612328565b5060005b845181101561240c578481815181106123b7576123b76134e8565b01602001516001600160f81b03191683836123d181613477565b9450815181106123e3576123e36134e8565b60200101906001600160f81b031916908160001a9053508061240481613477565b91505061239c565b5091979650505050505050565b60008061242584612810565b9050600061243282612840565b9050856001600160a01b0316612448828661287b565b6001600160a01b0316149695505050505050565b60006001600160e01b031982166380ac58cd60e01b148061248d57506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316146107b4565b6109f78383836128fa565b6124c183836129b2565b6124ce60008484846124ea565b6109f75760405162461bcd60e51b81526004016108c190613206565b60006001600160a01b0384163b156125ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252e9033908990889088906004016131b6565b602060405180830381600087803b15801561254857600080fd5b505af1925050508015612578575060408051601f3d908101601f1916820190925261257591810190613002565b60015b6125d2573d8080156125a6576040519150601f19603f3d011682016040523d82523d6000602084013e6125ab565b606091505b5080516125ca5760405162461bcd60e51b81526004016108c190613206565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d4b565b506001949350505050565b60408051808201909152601081526f181899199a1a9b1b9c1cb0b131b232b360811b60208201528151606091906000906126329060026133da565b61263d90600261336a565b67ffffffffffffffff811115612655576126556134fe565b6040519080825280601f01601f19166020018201604052801561267f576020820181803683370190505b509050600360fc1b8160008151811061269a5761269a6134e8565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126c9576126c96134e8565b60200101906001600160f81b031916908160001a90535060005b845181101561280857826004868381518110612701576127016134e8565b016020015182516001600160f81b031990911690911c60f81c908110612729576127296134e8565b01602001516001600160f81b031916826127448360026133da565b61274f90600261336a565b8151811061275f5761275f6134e8565b60200101906001600160f81b031916908160001a90535082858281518110612789576127896134e8565b602091010151815160f89190911c600f169081106127a9576127a96134e8565b01602001516001600160f81b031916826127c48360026133da565b6127cf90600361336a565b815181106127df576127df6134e8565b60200101906001600160f81b031916908160001a9053508061280081613477565b9150506126e3565b509392505050565b600081604051602001612823919061316b565b604051602081830303815290604052805190602001209050919050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01612823565b60008060008061288a85612b00565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156128e5573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b0383166129555761295081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612978565b816001600160a01b0316836001600160a01b031614612978576129788382612b74565b6001600160a01b03821661298f576109f781612c11565b826001600160a01b0316826001600160a01b0316146109f7576109f78282612cc0565b6001600160a01b038216612a085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c1565b6000818152600260205260409020546001600160a01b031615612a6d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c1565b612a79600083836124ac565b6001600160a01b0382166000908152600360205260408120805460019290612aa290849061336a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008060008351604114612b565760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016108c1565b50505060208101516040820151606090920151909260009190911a90565b60006001612b8184611208565b612b8b91906133f9565b600083815260076020526040902054909150808214612bde576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612c23906001906133f9565b60008381526009602052604081205460088054939450909284908110612c4b57612c4b6134e8565b906000526020600020015490508060088381548110612c6c57612c6c6134e8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ca457612ca46134d2565b6001900381819060005260206000200160009055905550505050565b6000612ccb83611208565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612d109061343c565b90600052602060002090601f016020900481019282612d325760008555612d78565b82601f10612d4b57805160ff1916838001178555612d78565b82800160010185558215612d78579182015b82811115612d78578251825591602001919060010190612d5d565b50612d84929150612d88565b5090565b5b80821115612d845760008155600101612d89565b600067ffffffffffffffff80841115612db857612db86134fe565b604051601f8501601f19908116603f01168101908282118183101715612de057612de06134fe565b81604052809350858152868686011115612df957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612e2a57600080fd5b919050565b80358015158114612e2a57600080fd5b600082601f830112612e5057600080fd5b6114b183833560208501612d9d565b803563ffffffff81168114612e2a57600080fd5b803560ff81168114612e2a57600080fd5b600060208284031215612e9657600080fd5b6114b182612e13565b60008060408385031215612eb257600080fd5b612ebb83612e13565b9150612ec960208401612e13565b90509250929050565b600080600060608486031215612ee757600080fd5b612ef084612e13565b9250612efe60208501612e13565b9150604084013590509250925092565b60008060008060808587031215612f2457600080fd5b612f2d85612e13565b9350612f3b60208601612e13565b925060408501359150606085013567ffffffffffffffff811115612f5e57600080fd5b612f6a87828801612e3f565b91505092959194509250565b60008060408385031215612f8957600080fd5b612f9283612e13565b9150612ec960208401612e2f565b60008060408385031215612fb357600080fd5b612fbc83612e13565b946020939093013593505050565b600060208284031215612fdc57600080fd5b6114b182612e2f565b600060208284031215612ff757600080fd5b81356114b181613514565b60006020828403121561301457600080fd5b81516114b181613514565b60006020828403121561303157600080fd5b813567ffffffffffffffff81111561304857600080fd5b8201601f8101841361305957600080fd5b611d4b84823560208401612d9d565b60006020828403121561307a57600080fd5b5035919050565b6000806040838503121561309457600080fd5b50508035926020909101359150565b6000806000606084860312156130b857600080fd5b833592506130c860208501612e73565b9150604084013567ffffffffffffffff8111156130e457600080fd5b6130f086828701612e3f565b9150509250925092565b60006020828403121561310c57600080fd5b6114b182612e5f565b6000806040838503121561312857600080fd5b61313183612e73565b9150612ec960208401612e5f565b60008151808452613157816020860160208601613410565b601f01601f19169290920160200192915050565b6000825161317d818460208701613410565b9190910192915050565b60008351613199818460208801613410565b8351908301906131ad818360208801613410565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131e99083018461313f565b9695505050505050565b6020815260006114b1602083018461313f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561337d5761337d6134a6565b500190565b600063ffffffff8083168185168083038211156131ad576131ad6134a6565b600060ff821660ff84168060ff038211156133be576133be6134a6565b019392505050565b6000826133d5576133d56134bc565b500490565b60008160001904831182151516156133f4576133f46134a6565b500290565b60008282101561340b5761340b6134a6565b500390565b60005b8381101561342b578181015183820152602001613413565b8381111561138f5750506000910152565b600181811c9082168061345057607f821691505b6020821081141561347157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348b5761348b6134a6565b5060010190565b6000826134a1576134a16134bc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3257600080fdfea26469706673582212204d8e5b2d150c5b085a04f37a38987dcab1a00515590e19ee3756269531b9839a64736f6c63430008070033000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f5

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806355f804b31161012357806390aa0b0f116100ab578063c87b56dd1161006f578063c87b56dd146106ed578063d0c801d51461070d578063df0301eb14610720578063e985e9c514610740578063f2fde38b1461078957600080fd5b806390aa0b0f146105de57806395d89b4114610678578063a22cb4651461068d578063b88d4fde146106ad578063c4e37095146106cd57600080fd5b806370a08231116100f257806370a0823114610547578063715018a614610567578063723c099c1461057c578063888651c6146105a05780638da5cb5b146105c057600080fd5b806355f804b3146104a55780635a22b085146104c55780636352211e1461050757806369772b1d1461052757600080fd5b806328bf794d116101a65780633ccfd60b116101755780633ccfd60b1461041d57806342842e0e146104325780634bbcd31c146104525780634f6ccce714610465578063547e89c71461048557600080fd5b806328bf794d146103885780632f745c59146103a8578063304dd754146103c8578063384f58eb146103e957600080fd5b806318160ddd116101ed57806318160ddd146102d057806322637c47146102ef57806323b872dd14610328578063247b3eac14610348578063248b71fc1461036857600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612fe5565b6107a9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696107ba565b60405161024b91906131f3565b34801561028257600080fd5b50610296610291366004613068565b61084c565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612fa0565b6108e6565b005b3480156102dc57600080fd5b506008545b60405190815260200161024b565b3480156102fb57600080fd5b50600c5461031390600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161024b565b34801561033457600080fd5b506102ce610343366004612ed2565b6109fc565b34801561035457600080fd5b506102ce610363366004612e84565b610a2d565b34801561037457600080fd5b506102ce610383366004612fa0565b610a8c565b34801561039457600080fd5b506102ce6103a3366004613068565b610c18565b3480156103b457600080fd5b506102e16103c3366004612fa0565b610c47565b3480156103d457600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156103f557600080fd5b506102967f000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f581565b34801561042957600080fd5b506102ce610cdd565b34801561043e57600080fd5b506102ce61044d366004612ed2565b610d35565b6102ce610460366004613068565b610d50565b34801561047157600080fd5b506102e1610480366004613068565b611046565b34801561049157600080fd5b506102ce6104a03660046130fa565b6110d9565b3480156104b157600080fd5b506102ce6104c036600461301f565b611125565b3480156104d157600080fd5b506104f56104e0366004612e84565b60126020526000908152604090205460ff1681565b60405160ff909116815260200161024b565b34801561051357600080fd5b50610296610522366004613068565b611162565b34801561053357600080fd5b506102ce610542366004613068565b6111d9565b34801561055357600080fd5b506102e1610562366004612e84565b611208565b34801561057357600080fd5b506102ce61128f565b34801561058857600080fd5b50600c5461031390600160c01b900463ffffffff1681565b3480156105ac57600080fd5b506102ce6105bb366004613115565b6112c5565b3480156105cc57600080fd5b50600a546001600160a01b0316610296565b3480156105ea57600080fd5b50600d54600e54600f5460105460115461062d9460ff81169463ffffffff6101008304811695600160281b8404821695600160481b909404909116939192909188565b6040805160ff909916895263ffffffff97881660208a015295871695880195909552949092166060860152608085015260a084015260c083019190915260e08201526101000161024b565b34801561068457600080fd5b50610269611343565b34801561069957600080fd5b506102ce6106a8366004612f76565b611352565b3480156106b957600080fd5b506102ce6106c8366004612f0e565b61135d565b3480156106d957600080fd5b506102ce6106e8366004612fca565b611395565b3480156106f957600080fd5b50610269610708366004613068565b6113dd565b6102ce61071b3660046130a3565b6114b8565b34801561072c57600080fd5b506102ce61073b366004613081565b611af0565b34801561074c57600080fd5b5061023f61075b366004612e9f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079557600080fd5b506102ce6107a4366004612e84565b611b31565b60006107b482611bc9565b92915050565b6060600080546107c99061343c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061343c565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f182611162565b9050806001600160a01b0316836001600160a01b0316141561095f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c1565b336001600160a01b038216148061097b575061097b813361075b565b6109ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c1565b6109f78383611bee565b505050565b610a063382611c5c565b610a225760405162461bcd60e51b81526004016108c190613319565b6109f7838383611d53565b600a546001600160a01b03163314610a575760405162461bcd60e51b81526004016108c1906132e4565b6001600160a01b038116610a6a57600080fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ab65760405162461bcd60e51b81526004016108c1906132e4565b600a54600160a01b900460ff16610adf5760405162461bcd60e51b81526004016108c190613258565b6001600160a01b038216610af257600080fd5b600d5463ffffffff600160281b9091041681610b0d60085490565b610b17919061336a565b1115610b355760405162461bcd60e51b81526004016108c19061329a565b60005b818110156109f7576000610b4b60085490565b600d54600854919250600160281b900463ffffffff161115610c0557610b718482611efa565b600d5460ff1660011415610bbb57600c54610b9a90600160a01b900463ffffffff166001613382565b600c60146101000a81548163ffffffff021916908363ffffffff1602179055505b600d5460ff1660021415610c0557600c54610be490600160c01b900463ffffffff166001613382565b600c60186101000a81548163ffffffff021916908363ffffffff1602179055505b5080610c1081613477565b915050610b38565b600a546001600160a01b03163314610c425760405162461bcd60e51b81526004016108c1906132e4565b601055565b6000610c5283611208565b8210610cb45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d075760405162461bcd60e51b81526004016108c1906132e4565b47610d327f000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f582611f14565b50565b6109f78383836040518060200160405280600081525061135d565b600a54600160a01b900460ff16610d795760405162461bcd60e51b81526004016108c190613258565b600d5460ff16600314610ddd5760405162461bcd60e51b815260206004820152602660248201527f53616c6520686173206e6f742073746172746564207965742e285075626c6963604482015265204d696e742960d01b60648201526084016108c1565b600e544210801590610df15750600f544211155b610e395760405162461bcd60e51b815260206004820152601960248201527829b0b632903430b9903737ba1039ba30b93a32b2103cb2ba1760391b60448201526064016108c1565b600d54610100900463ffffffff16811115610e965760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e207075726368617365000000000060448201526064016108c1565b600d5463ffffffff600160281b9091041681610eb160085490565b610ebb919061336a565b1115610ed95760405162461bcd60e51b81526004016108c19061329a565b600d543360009081526012602052604090205461010090910463ffffffff1690610f0790839060ff1661336a565b1115610f555760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e2070757263686173652e2e00000060448201526064016108c1565b6010543490610f659083906133da565b1115610fb35760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108c1565b60005b81811015611042576000610fc960085490565b600d54600854919250600160281b900463ffffffff16111561102f57610fef3382611efa565b3360009081526012602052604090205461100d9060ff1660016133a1565b336000908152601260205260409020805460ff191660ff929092169190911790555b508061103a81613477565b915050610fb6565b5050565b600061105160085490565b82106110b45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c1565b600882815481106110c7576110c76134e8565b90600052602060002001549050919050565b600a546001600160a01b031633146111035760405162461bcd60e51b81526004016108c1906132e4565b600d805463ffffffff9092166101000264ffffffff0019909216919091179055565b600a546001600160a01b0316331461114f5760405162461bcd60e51b81526004016108c1906132e4565b805161104290600b906020840190612d04565b6000818152600260205260408120546001600160a01b0316806107b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c1565b600a546001600160a01b031633146112035760405162461bcd60e51b81526004016108c1906132e4565b601155565b60006001600160a01b0382166112735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112b95760405162461bcd60e51b81526004016108c1906132e4565b6112c3600061202d565b565b600a546001600160a01b031633146112ef5760405162461bcd60e51b81526004016108c1906132e4565b60008260ff16118015611308575060008163ffffffff16115b61131157600080fd5b600d805463ffffffff909216600160481b026cffffffff0000000000000000ff1990921660ff90931692909217179055565b6060600180546107c99061343c565b61104233838361207f565b6113673383611c5c565b6113835760405162461bcd60e51b81526004016108c190613319565b61138f8484848461214e565b50505050565b600a546001600160a01b031633146113bf5760405162461bcd60e51b81526004016108c1906132e4565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b031661145c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c1565b6000611466612181565b9050600081511161148657604051806020016040528060008152506114b1565b8061149084612190565b6040516020016114a1929190613187565b6040516020818303038152906040525b9392505050565b600a54600160a01b900460ff166114e15760405162461bcd60e51b81526004016108c190613258565b600e5442108015906114f55750600f544211155b61153d5760405162461bcd60e51b815260206004820152601960248201527829b0b632903430b9903737ba1039ba30b93a32b2103cb2ba1760391b60448201526064016108c1565b600d54610100900463ffffffff1683111561159a5760405162461bcd60e51b815260206004820152601b60248201527f4578636565646564206d617820746f6b656e207075726368617365000000000060448201526064016108c1565b600d5463ffffffff600160281b90910416836115b560085490565b6115bf919061336a565b11156115dd5760405162461bcd60e51b81526004016108c19061329a565b600d543360009081526012602052604090205461010090910463ffffffff169061160b90859060ff1661336a565b11156116595760405162461bcd60e51b815260206004820152601d60248201527f4578636565646564206d617820746f6b656e2070757263686173652e2e00000060448201526064016108c1565b600d5460ff16600114806116725750600d5460ff166002145b6116ac5760405162461bcd60e51b815260206004820152600b60248201526a2937bab7321022b93937b960a91b60448201526064016108c1565b60008260ff16600314156117245760006116ef6116c83361228e565b60405180604001604052806009815260200168666f6d6f73746f6e6560b81b8152506122c6565b905061171c7f000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f58285612419565b91505061175a565b6117577f000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f56117513361228e565b84612419565b90505b806117a75760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f7420696e207468652077686974656c6973742e00000060448201526064016108c1565b600d5460ff166001141561184557600d54600c5463ffffffff600160481b9092048216916117df918791600160a01b9091041661336a565b11156118455760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f6620746f6b656e732e2852312960881b60648201526084016108c1565b600d5460ff16600214156118e357600d54600c5463ffffffff600160481b90920482169161187d918791600160c01b9091041661336a565b11156118e35760405162461bcd60e51b815260206004820152602f60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526e206f6620746f6b656e732e2852322960881b60648201526084016108c1565b8260ff16600314156118f4576119cd565b8260ff166002141561196f5760115434906119109086906133da565b111561196a5760405162461bcd60e51b8152602060048201526024808201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015263284f472960e01b60648201526084016108c1565b6119cd565b601054349061197f9086906133da565b11156119cd5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60448201526064016108c1565b60005b84811015611ae95760006119e360085490565b600d54600854919250600160281b900463ffffffff161115611ad657611a093382611efa565b33600090815260126020526040902054611a279060ff1660016133a1565b336000908152601260205260409020805460ff191660ff928316179055600d541660011415611a8c57600c54611a6b90600160a01b900463ffffffff166001613382565b600c60146101000a81548163ffffffff021916908363ffffffff1602179055505b600d5460ff1660021415611ad657600c54611ab590600160c01b900463ffffffff166001613382565b600c60186101000a81548163ffffffff021916908363ffffffff1602179055505b5080611ae181613477565b9150506119d0565b5050505050565b600a546001600160a01b03163314611b1a5760405162461bcd60e51b81526004016108c1906132e4565b818111611b2657600080fd5b600e91909155600f55565b600a546001600160a01b03163314611b5b5760405162461bcd60e51b81526004016108c1906132e4565b6001600160a01b038116611bc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c1565b610d328161202d565b60006001600160e01b0319821663780e9d6360e01b14806107b457506107b48261245c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c2382611162565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cd55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c1565b6000611ce083611162565b9050806001600160a01b0316846001600160a01b03161480611d1b5750836001600160a01b0316611d108461084c565b6001600160a01b0316145b80611d4b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d6682611162565b6001600160a01b031614611dca5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108c1565b6001600160a01b038216611e2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c1565b611e378383836124ac565b611e42600082611bee565b6001600160a01b0383166000908152600360205260408120805460019290611e6b9084906133f9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e9990849061336a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110428282604051806020016040528060008152506124b7565b80471015611f645760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108c1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b50509050806109f75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108c1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612159848484611d53565b612165848484846124ea565b61138f5760405162461bcd60e51b81526004016108c190613206565b6060600b80546107c99061343c565b6060816121b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121de57806121c881613477565b91506121d79050600a836133c6565b91506121b8565b60008167ffffffffffffffff8111156121f9576121f96134fe565b6040519080825280601f01601f191660200182016040528015612223576020820181803683370190505b5090505b8415611d4b576122386001836133f9565b9150612245600a86613492565b61225090603061336a565b60f81b818381518110612265576122656134e8565b60200101906001600160f81b031916908160001a905350612287600a866133c6565b9450612227565b604051606082811b6bffffffffffffffffffffffff19166020830152906107b4906034016040516020818303038152906040526125f7565b80518251606091849184916000916122de919061336a565b67ffffffffffffffff8111156122f6576122f66134fe565b6040519080825280601f01601f191660200182016040528015612320576020820181803683370190505b509050806000805b855181101561239857858181518110612343576123436134e8565b01602001516001600160f81b031916838361235d81613477565b94508151811061236f5761236f6134e8565b60200101906001600160f81b031916908160001a9053508061239081613477565b915050612328565b5060005b845181101561240c578481815181106123b7576123b76134e8565b01602001516001600160f81b03191683836123d181613477565b9450815181106123e3576123e36134e8565b60200101906001600160f81b031916908160001a9053508061240481613477565b91505061239c565b5091979650505050505050565b60008061242584612810565b9050600061243282612840565b9050856001600160a01b0316612448828661287b565b6001600160a01b0316149695505050505050565b60006001600160e01b031982166380ac58cd60e01b148061248d57506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316146107b4565b6109f78383836128fa565b6124c183836129b2565b6124ce60008484846124ea565b6109f75760405162461bcd60e51b81526004016108c190613206565b60006001600160a01b0384163b156125ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252e9033908990889088906004016131b6565b602060405180830381600087803b15801561254857600080fd5b505af1925050508015612578575060408051601f3d908101601f1916820190925261257591810190613002565b60015b6125d2573d8080156125a6576040519150601f19603f3d011682016040523d82523d6000602084013e6125ab565b606091505b5080516125ca5760405162461bcd60e51b81526004016108c190613206565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d4b565b506001949350505050565b60408051808201909152601081526f181899199a1a9b1b9c1cb0b131b232b360811b60208201528151606091906000906126329060026133da565b61263d90600261336a565b67ffffffffffffffff811115612655576126556134fe565b6040519080825280601f01601f19166020018201604052801561267f576020820181803683370190505b509050600360fc1b8160008151811061269a5761269a6134e8565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126c9576126c96134e8565b60200101906001600160f81b031916908160001a90535060005b845181101561280857826004868381518110612701576127016134e8565b016020015182516001600160f81b031990911690911c60f81c908110612729576127296134e8565b01602001516001600160f81b031916826127448360026133da565b61274f90600261336a565b8151811061275f5761275f6134e8565b60200101906001600160f81b031916908160001a90535082858281518110612789576127896134e8565b602091010151815160f89190911c600f169081106127a9576127a96134e8565b01602001516001600160f81b031916826127c48360026133da565b6127cf90600361336a565b815181106127df576127df6134e8565b60200101906001600160f81b031916908160001a9053508061280081613477565b9150506126e3565b509392505050565b600081604051602001612823919061316b565b604051602081830303815290604052805190602001209050919050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01612823565b60008060008061288a85612b00565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156128e5573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160a01b0383166129555761295081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612978565b816001600160a01b0316836001600160a01b031614612978576129788382612b74565b6001600160a01b03821661298f576109f781612c11565b826001600160a01b0316826001600160a01b0316146109f7576109f78282612cc0565b6001600160a01b038216612a085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c1565b6000818152600260205260409020546001600160a01b031615612a6d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c1565b612a79600083836124ac565b6001600160a01b0382166000908152600360205260408120805460019290612aa290849061336a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008060008351604114612b565760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e677468000000000000000060448201526064016108c1565b50505060208101516040820151606090920151909260009190911a90565b60006001612b8184611208565b612b8b91906133f9565b600083815260076020526040902054909150808214612bde576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612c23906001906133f9565b60008381526009602052604081205460088054939450909284908110612c4b57612c4b6134e8565b906000526020600020015490508060088381548110612c6c57612c6c6134e8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ca457612ca46134d2565b6001900381819060005260206000200160009055905550505050565b6000612ccb83611208565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612d109061343c565b90600052602060002090601f016020900481019282612d325760008555612d78565b82601f10612d4b57805160ff1916838001178555612d78565b82800160010185558215612d78579182015b82811115612d78578251825591602001919060010190612d5d565b50612d84929150612d88565b5090565b5b80821115612d845760008155600101612d89565b600067ffffffffffffffff80841115612db857612db86134fe565b604051601f8501601f19908116603f01168101908282118183101715612de057612de06134fe565b81604052809350858152868686011115612df957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612e2a57600080fd5b919050565b80358015158114612e2a57600080fd5b600082601f830112612e5057600080fd5b6114b183833560208501612d9d565b803563ffffffff81168114612e2a57600080fd5b803560ff81168114612e2a57600080fd5b600060208284031215612e9657600080fd5b6114b182612e13565b60008060408385031215612eb257600080fd5b612ebb83612e13565b9150612ec960208401612e13565b90509250929050565b600080600060608486031215612ee757600080fd5b612ef084612e13565b9250612efe60208501612e13565b9150604084013590509250925092565b60008060008060808587031215612f2457600080fd5b612f2d85612e13565b9350612f3b60208601612e13565b925060408501359150606085013567ffffffffffffffff811115612f5e57600080fd5b612f6a87828801612e3f565b91505092959194509250565b60008060408385031215612f8957600080fd5b612f9283612e13565b9150612ec960208401612e2f565b60008060408385031215612fb357600080fd5b612fbc83612e13565b946020939093013593505050565b600060208284031215612fdc57600080fd5b6114b182612e2f565b600060208284031215612ff757600080fd5b81356114b181613514565b60006020828403121561301457600080fd5b81516114b181613514565b60006020828403121561303157600080fd5b813567ffffffffffffffff81111561304857600080fd5b8201601f8101841361305957600080fd5b611d4b84823560208401612d9d565b60006020828403121561307a57600080fd5b5035919050565b6000806040838503121561309457600080fd5b50508035926020909101359150565b6000806000606084860312156130b857600080fd5b833592506130c860208501612e73565b9150604084013567ffffffffffffffff8111156130e457600080fd5b6130f086828701612e3f565b9150509250925092565b60006020828403121561310c57600080fd5b6114b182612e5f565b6000806040838503121561312857600080fd5b61313183612e73565b9150612ec960208401612e5f565b60008151808452613157816020860160208601613410565b601f01601f19169290920160200192915050565b6000825161317d818460208701613410565b9190910192915050565b60008351613199818460208801613410565b8351908301906131ad818360208801613410565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131e99083018461313f565b9695505050505050565b6020815260006114b1602083018461313f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561337d5761337d6134a6565b500190565b600063ffffffff8083168185168083038211156131ad576131ad6134a6565b600060ff821660ff84168060ff038211156133be576133be6134a6565b019392505050565b6000826133d5576133d56134bc565b500490565b60008160001904831182151516156133f4576133f46134a6565b500290565b60008282101561340b5761340b6134a6565b500390565b60005b8381101561342b578181015183820152602001613413565b8381111561138f5750506000910152565b600181811c9082168061345057607f821691505b6020821081141561347157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348b5761348b6134a6565b5060010190565b6000826134a1576134a16134bc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3257600080fdfea26469706673582212204d8e5b2d150c5b085a04f37a38987dcab1a00515590e19ee3756269531b9839a64736f6c63430008070033

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

000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f5

-----Decoded View---------------
Arg [0] : _owner (address): 0x772f9a921b942A4c4f8AF9d7CC859FFa4Ef8f4F5

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000772f9a921b942a4c4f8af9d7cc859ffa4ef8f4f5


Deployed Bytecode Sourcemap

45528:9383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46848:179;;;;;;;;;;-1:-1:-1;46848:179:0;;;;;:::i;:::-;;:::i;:::-;;;8826:14:1;;8819:22;8801:41;;8789:2;8774:18;46848:179:0;;;;;;;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27693:221::-;;;;;;;;;;-1:-1:-1;27693:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7900:32:1;;;7882:51;;7870:2;7855:18;27693:221:0;7736:203:1;27216:411:0;;;;;;;;;;-1:-1:-1;27216:411:0;;;;;:::i;:::-;;:::i;:::-;;39954:113;;;;;;;;;;-1:-1:-1;40042:10:0;:17;39954:113;;;22912:25:1;;;22900:2;22885:18;39954:113:0;22766:177:1;45758:24:0;;;;;;;;;;-1:-1:-1;45758:24:0;;;;-1:-1:-1;;;45758:24:0;;;;;;;;;23122:10:1;23110:23;;;23092:42;;23080:2;23065:18;45758:24:0;22948:192:1;28443:339:0;;;;;;;;;;-1:-1:-1;28443:339:0;;;;;:::i;:::-;;:::i;47379:131::-;;;;;;;;;;-1:-1:-1;47379:131:0;;;;;:::i;:::-;;:::i;47518:787::-;;;;;;;;;;-1:-1:-1;47518:787:0;;;;;:::i;:::-;;:::i;51999:89::-;;;;;;;;;;-1:-1:-1;51999:89:0;;;;;:::i;:::-;;:::i;39622:256::-;;;;;;;;;;-1:-1:-1;39622:256:0;;;;;:::i;:::-;;:::i;45599:27::-;;;;;;;;;;-1:-1:-1;45599:27:0;;;;-1:-1:-1;;;45599:27:0;;;;;;45671:47;;;;;;;;;;;;;;;52305:148;;;;;;;;;;;;;:::i;28853:185::-;;;;;;;;;;-1:-1:-1;28853:185:0;;;;;:::i;:::-;;:::i;50582:1019::-;;;;;;:::i;:::-;;:::i;40144:233::-;;;;;;;;;;-1:-1:-1;40144:233:0;;;;;:::i;:::-;;:::i;52202:95::-;;;;;;;;;;-1:-1:-1;52202:95:0;;;;;:::i;:::-;;:::i;47035:111::-;;;;;;;;;;-1:-1:-1;47035:111:0;;;;;:::i;:::-;;:::i;46101:42::-;;;;;;;;;;-1:-1:-1;46101:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23317:4:1;23305:17;;;23287:36;;23275:2;23260:18;46101:42:0;23145:184:1;25828:239:0;;;;;;;;;;-1:-1:-1;25828:239:0;;;;;:::i;:::-;;:::i;52096:98::-;;;;;;;;;;-1:-1:-1;52096:98:0;;;;;:::i;:::-;;:::i;25558:208::-;;;;;;;;;;-1:-1:-1;25558:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;45789:24::-;;;;;;;;;;-1:-1:-1;45789:24:0;;;;-1:-1:-1;;;45789:24:0;;;;;;51609:210;;;;;;;;;;-1:-1:-1;51609:210:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;46066:28;;;;;;;;;;-1:-1:-1;46066:28:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46066:28:0;;;;;-1:-1:-1;;;46066:28:0;;;;;;;;;;;;;;;;;23697:4:1;23685:17;;;23667:36;;23722:10;23768:15;;;23763:2;23748:18;;23741:43;23820:15;;;23800:18;;;23793:43;;;;23872:15;;;;23867:2;23852:18;;23845:43;23919:3;23904:19;;23897:35;23963:3;23948:19;;23941:35;24007:3;23992:19;;23985:35;;;;24051:3;24036:19;;24029:35;23654:3;23639:19;46066:28:0;23334:736:1;26303:104:0;;;;;;;;;;;;;:::i;27986:155::-;;;;;;;;;;-1:-1:-1;27986:155:0;;;;;:::i;:::-;;:::i;29109:328::-;;;;;;;;;;-1:-1:-1;29109:328:0;;;;;:::i;:::-;;:::i;47279:92::-;;;;;;;;;;-1:-1:-1;47279:92:0;;;;;:::i;:::-;;:::i;26478:334::-;;;;;;;;;;-1:-1:-1;26478:334:0;;;;;:::i;:::-;;:::i;48316:2256::-;;;;;;:::i;:::-;;:::i;51827:164::-;;;;;;;;;;-1:-1:-1;51827:164:0;;;;;:::i;:::-;;:::i;28212:::-;;;;;;;;;;-1:-1:-1;28212:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28212:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;46848:179::-;46959:4;46983:36;47007:11;46983:23;:36::i;:::-;46976:43;46848:179;-1:-1:-1;;46848:179:0:o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;27789:73;;;;-1:-1:-1;;;27789:73:0;;17961:2:1;27789:73:0;;;17943:21:1;18000:2;17980:18;;;17973:30;18039:34;18019:18;;;18012:62;-1:-1:-1;;;18090:18:1;;;18083:42;18142:19;;27789:73:0;;;;;;;;;-1:-1:-1;27882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27882:24:0;;27693:221::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;-1:-1:-1;;;;;27355:11:0;:2;-1:-1:-1;;;;;27355:11:0;;;27347:57;;;;-1:-1:-1;;;27347:57:0;;19505:2:1;27347:57:0;;;19487:21:1;19544:2;19524:18;;;19517:30;19583:34;19563:18;;;19556:62;-1:-1:-1;;;19634:18:1;;;19627:31;19675:19;;27347:57:0;19303:397:1;27347:57:0;2883:10;-1:-1:-1;;;;;27439:21:0;;;;:62;;-1:-1:-1;27464:37:0;27481:5;2883:10;28212:164;:::i;27464:37::-;27417:168;;;;-1:-1:-1;;;27417:168:0;;15527:2:1;27417:168:0;;;15509:21:1;15566:2;15546:18;;;15539:30;15605:34;15585:18;;;15578:62;15676:26;15656:18;;;15649:54;15720:19;;27417:168:0;15325:420:1;27417:168:0;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;28443:339::-;28638:41;2883:10;28671:7;28638:18;:41::i;:::-;28630:103;;;;-1:-1:-1;;;28630:103:0;;;;;;;:::i;:::-;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;47379:131::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47455:19:0;::::1;47447:28;;;::::0;::::1;;47486:8;:16:::0;;-1:-1:-1;;;;;;47486:16:0::1;-1:-1:-1::0;;;;;47486:16:0;;;::::1;::::0;;;::::1;::::0;;47379:131::o;47518:787::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47607:8:::1;::::0;-1:-1:-1;;;47607:8:0;::::1;;;47599:55;;;;-1:-1:-1::0;;;47599:55:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47673:21:0;::::1;47665:30;;;::::0;::::1;;47737:10;:21:::0;::::1;-1:-1:-1::0;;;47737:21:0;;::::1;;47730:3:::0;47714:13:::1;40042:10:::0;:17;;39954:113;47714:13:::1;:19;;;;:::i;:::-;:44;;47706:99;;;;-1:-1:-1::0;;;47706:99:0::1;;;;;;;:::i;:::-;47822:6;47818:470;47838:3;47834:1;:7;47818:470;;;47873:14;47890:13;40042:10:::0;:17;;39954:113;47890:13:::1;47938:10;:21:::0;40042:10;:17;47873:30;;-1:-1:-1;;;;47938:21:0;::::1;;;-1:-1:-1::0;47918:359:0::1;;;47994:29;48004:7;48013:9;47994;:29::i;:::-;48045:10;:16:::0;::::1;;::::0;:19:::1;48042:101;;;48115:6;::::0;:8:::1;::::0;-1:-1:-1;;;48115:6:0;::::1;;;48122:1;48115:8;:::i;:::-;48106:6;;:17;;;;;;;;;;;;;;;;;;48042:101;48164:10;:16:::0;::::1;;48182:1;48164:19;48161:101;;;48234:6;::::0;:8:::1;::::0;-1:-1:-1;;;48234:6:0;::::1;;;48241:1;48234:8;:::i;:::-;48225:6;;:17;;;;;;;;;;;;;;;;;;48161:101;-1:-1:-1::0;47843:3:0;::::1;::::0;::::1;:::i;:::-;;;;47818:470;;51999:89:::0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52058:17;:22;51999:89::o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;-1:-1:-1;;;39739:87:0;;10043:2:1;39739:87:0;;;10025:21:1;10082:2;10062:18;;;10055:30;10121:34;10101:18;;;10094:62;-1:-1:-1;;;10172:18:1;;;10165:41;10223:19;;39739:87:0;9841:407:1;39739:87:0;-1:-1:-1;;;;;;39844:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39622:256::o;52305:148::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52371:21:::1;52403:42;52421:14;52371:21:::0;52403:17:::1;:42::i;:::-;52342:111;52305:148::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;50582:1019::-;50647:8;;-1:-1:-1;;;50647:8:0;;;;50639:55;;;;-1:-1:-1;;;50639:55:0;;;;;;;:::i;:::-;50713:10;:16;;;50731:1;50713:19;50705:70;;;;-1:-1:-1;;;50705:70:0;;20263:2:1;50705:70:0;;;20245:21:1;20302:2;20282:18;;;20275:30;20341:34;20321:18;;;20314:62;-1:-1:-1;;;20392:18:1;;;20385:36;20438:19;;50705:70:0;20061:402:1;50705:70:0;50794:20;;50818:15;-1:-1:-1;50794:39:0;;;:80;;-1:-1:-1;50856:18:0;;50837:15;:37;;50794:80;50786:118;;;;-1:-1:-1;;;50786:118:0;;19151:2:1;50786:118:0;;;19133:21:1;19190:2;19170:18;;;19163:30;-1:-1:-1;;;19209:18:1;;;19202:55;19274:18;;50786:118:0;18949:349:1;50786:118:0;50930:10;:18;;;;;;50923:25;;;50915:65;;;;-1:-1:-1;;;50915:65:0;;19907:2:1;50915:65:0;;;19889:21:1;19946:2;19926:18;;;19919:30;19985:29;19965:18;;;19958:57;20032:18;;50915:65:0;19705:351:1;50915:65:0;51022:10;:21;;-1:-1:-1;;;51022:21:0;;;;51015:3;50999:13;40042:10;:17;;39954:113;50999:13;:19;;;;:::i;:::-;:44;;50991:99;;;;-1:-1:-1;;;50991:99:0;;;;;;;:::i;:::-;51139:10;:18;51118:10;51139:18;51109:20;;;:8;:20;;;;;;51139:18;;;;;;;51109:26;;51132:3;;51109:20;;:26;:::i;:::-;:48;;51101:90;;;;-1:-1:-1;;;51101:90:0;;15169:2:1;51101:90:0;;;15151:21:1;15208:2;15188:18;;;15181:30;15247:31;15227:18;;;15220:59;15296:18;;51101:90:0;14967:353:1;51101:90:0;51210:17;;51237:9;;51210:23;;51230:3;;51210:23;:::i;:::-;:36;;51202:80;;;;-1:-1:-1;;;51202:80:0;;13208:2:1;51202:80:0;;;13190:21:1;13247:2;13227:18;;;13220:30;13286:33;13266:18;;;13259:61;13337:18;;51202:80:0;13006:355:1;51202:80:0;51299:6;51295:299;51315:3;51311:1;:7;51295:299;;;51350:14;51367:13;40042:10;:17;;39954:113;51367:13;51415:10;:21;40042:10;:17;51350:30;;-1:-1:-1;;;;51415:21:0;;;;-1:-1:-1;51395:188:0;;;51471:32;51481:10;51493:9;51471;:32::i;:::-;51554:10;51545:20;;;;:8;:20;;;;;;:22;;:20;;;:22;:::i;:::-;51531:10;51522:20;;;;:8;:20;;;;;:45;;-1:-1:-1;;51522:45:0;;;;;;;;;;;;51395:188;-1:-1:-1;51320:3:0;;;;:::i;:::-;;;;51295:299;;;;50582:1019;:::o;40144:233::-;40219:7;40255:30;40042:10;:17;;39954:113;40255:30;40247:5;:38;40239:95;;;;-1:-1:-1;;;40239:95:0;;21088:2:1;40239:95:0;;;21070:21:1;21127:2;21107:18;;;21100:30;21166:34;21146:18;;;21139:62;-1:-1:-1;;;21217:18:1;;;21210:42;21269:19;;40239:95:0;20886:408:1;40239:95:0;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;40345:24;;40144:233;;;:::o;52202:95::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52264:10:::1;:25:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;52264:25:0;;::::1;::::0;;;::::1;::::0;;52202:95::o;47035:111::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47111:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;25828:239::-:0;25900:7;25936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25936:16:0;25971:19;25963:73;;;;-1:-1:-1;;;25963:73:0;;16363:2:1;25963:73:0;;;16345:21:1;16402:2;16382:18;;;16375:30;16441:34;16421:18;;;16414:62;-1:-1:-1;;;16492:18:1;;;16485:39;16541:19;;25963:73:0;16161:405:1;52096:98:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52160:19;:26;52096:98::o;25558:208::-;25630:7;-1:-1:-1;;;;;25658:19:0;;25650:74;;;;-1:-1:-1;;;25650:74:0;;15952:2:1;25650:74:0;;;15934:21:1;15991:2;15971:18;;;15964:30;16030:34;16010:18;;;16003:62;-1:-1:-1;;;16081:18:1;;;16074:40;16131:19;;25650:74:0;15750:406:1;25650:74:0;-1:-1:-1;;;;;;25742:16:0;;;;;:9;:16;;;;;;;25558:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;51609:210::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51707:1:::1;51698:6;:10;;;:29;;;;;51726:1;51712:11;:15;;;51698:29;51690:38;;;::::0;::::1;;51739:10;:25:::0;;51775:36:::1;::::0;;::::1;-1:-1:-1::0;;;51775:36:0::1;-1:-1:-1::0;;51775:36:0;;;51739:25:::1;::::0;;::::1;51775:36:::0;;;;::::1;::::0;;51609:210::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;27986:155::-;28081:52;2883:10;28114:8;28124;28081:18;:52::i;29109:328::-;29284:41;2883:10;29317:7;29284:18;:41::i;:::-;29276:103;;;;-1:-1:-1;;;29276:103:0;;;;;;;:::i;:::-;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;:::-;29109:328;;;;:::o;47279:92::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47344:8:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;47344:19:0::1;-1:-1:-1::0;;;;47344:19:0;;::::1;::::0;;;::::1;::::0;;47279:92::o;26478:334::-;31012:4;31036:16;;;:7;:16;;;;;;26551:13;;-1:-1:-1;;;;;31036:16:0;26577:76;;;;-1:-1:-1;;;26577:76:0;;18735:2:1;26577:76:0;;;18717:21:1;18774:2;18754:18;;;18747:30;18813:34;18793:18;;;18786:62;-1:-1:-1;;;18864:18:1;;;18857:45;18919:19;;26577:76:0;18533:411:1;26577:76:0;26666:21;26690:10;:8;:10::i;:::-;26666:34;;26742:1;26724:7;26718:21;:25;:86;;;;;;;;;;;;;;;;;26770:7;26779:18;:7;:16;:18::i;:::-;26753:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26718:86;26711:93;26478:334;-1:-1:-1;;;26478:334:0:o;48316:2256::-;48406:8;;-1:-1:-1;;;48406:8:0;;;;48398:55;;;;-1:-1:-1;;;48398:55:0;;;;;;;:::i;:::-;48472:20;;48496:15;-1:-1:-1;48472:39:0;;;:80;;-1:-1:-1;48534:18:0;;48515:15;:37;;48472:80;48464:118;;;;-1:-1:-1;;;48464:118:0;;19151:2:1;48464:118:0;;;19133:21:1;19190:2;19170:18;;;19163:30;-1:-1:-1;;;19209:18:1;;;19202:55;19274:18;;48464:118:0;18949:349:1;48464:118:0;48608:10;:18;;;;;;48601:25;;;48593:65;;;;-1:-1:-1;;;48593:65:0;;19907:2:1;48593:65:0;;;19889:21:1;19946:2;19926:18;;;19919:30;19985:29;19965:18;;;19958:57;20032:18;;48593:65:0;19705:351:1;48593:65:0;48700:10;:21;;-1:-1:-1;;;48700:21:0;;;;48693:3;48677:13;40042:10;:17;;39954:113;48677:13;:19;;;;:::i;:::-;:44;;48669:99;;;;-1:-1:-1;;;48669:99:0;;;;;;;:::i;:::-;48817:10;:18;48796:10;48817:18;48787:20;;;:8;:20;;;;;;48817:18;;;;;;;48787:26;;48810:3;;48787:20;;:26;:::i;:::-;:48;;48779:90;;;;-1:-1:-1;;;48779:90:0;;15169:2:1;48779:90:0;;;15151:21:1;15208:2;15188:18;;;15181:30;15247:31;15227:18;;;15220:59;15296:18;;48779:90:0;14967:353:1;48779:90:0;48888:10;:16;;;;:19;;:42;;-1:-1:-1;48911:10:0;:16;;;48929:1;48911:19;48888:42;48880:66;;;;-1:-1:-1;;;48880:66:0;;22212:2:1;48880:66:0;;;22194:21:1;22251:2;22231:18;;;22224:30;-1:-1:-1;;;22270:18:1;;;22263:41;22321:18;;48880:66:0;22010:335:1;48880:66:0;48959:6;48979:5;:8;;48986:1;48979:8;48976:277;;;49013:21;49037:43;49047:20;49056:10;49047:8;:20::i;:::-;49037:43;;;;;;;;;;;;;-1:-1:-1;;;49037:43:0;;;:9;:43::i;:::-;49013:67;;49099:37;49106:14;49122:7;49131:4;49099:6;:37::i;:::-;49095:41;;48998:150;48976:277;;;49191:50;49198:14;49214:20;49223:10;49214:8;:20::i;:::-;49236:4;49191:6;:50::i;:::-;49187:54;;48976:277;49281:1;49273:43;;;;-1:-1:-1;;;49273:43:0;;21501:2:1;49273:43:0;;;21483:21:1;21540:2;21520:18;;;21513:30;21579:31;21559:18;;;21552:59;21628:18;;49273:43:0;21299:353:1;49273:43:0;49340:10;:16;;;;:19;49337:158;;;49409:10;:22;49393:6;;49409:22;-1:-1:-1;;;49409:22:0;;;;;;49393:12;;49402:3;;-1:-1:-1;;;49393:6:0;;;;:12;:::i;:::-;:38;;49385:98;;;;-1:-1:-1;;;49385:98:0;;22552:2:1;49385:98:0;;;22534:21:1;22591:2;22571:18;;;22564:30;22630:34;22610:18;;;22603:62;-1:-1:-1;;;22681:18:1;;;22674:45;22736:19;;49385:98:0;22350:411:1;49385:98:0;49508:10;:16;;;49526:1;49508:19;49505:158;;;49577:10;:22;49561:6;;49577:22;-1:-1:-1;;;49577:22:0;;;;;;49561:12;;49570:3;;-1:-1:-1;;;49561:6:0;;;;:12;:::i;:::-;:38;;49553:98;;;;-1:-1:-1;;;49553:98:0;;16773:2:1;49553:98:0;;;16755:21:1;16812:2;16792:18;;;16785:30;16851:34;16831:18;;;16824:62;-1:-1:-1;;;16902:18:1;;;16895:45;16957:19;;49553:98:0;16571:411:1;49553:98:0;49678:5;:8;;49685:1;49678:8;49675:331;;;;;;49741:5;:8;;49748:1;49741:8;49738:268;;;49783:19;;49812:9;;49783:25;;49805:3;;49783:25;:::i;:::-;:38;;49775:87;;;;-1:-1:-1;;;49775:87:0;;12044:2:1;49775:87:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:34;12102:18;;;12095:62;-1:-1:-1;;;12173:18:1;;;12166:34;12217:19;;49775:87:0;11842:400:1;49775:87:0;49738:268;;;49921:17;;49948:9;;49921:23;;49941:3;;49921:23;:::i;:::-;:36;;49913:81;;;;-1:-1:-1;;;49913:81:0;;9682:2:1;49913:81:0;;;9664:21:1;;;9701:18;;;9694:30;9760:34;9740:18;;;9733:62;9812:18;;49913:81:0;9480:356:1;49913:81:0;50032:6;50028:537;50048:3;50044:1;:7;50028:537;;;50083:14;50100:13;40042:10;:17;;39954:113;50100:13;50148:10;:21;40042:10;:17;50083:30;;-1:-1:-1;;;;50148:21:0;;;;-1:-1:-1;50128:426:0;;;50204:32;50214:10;50226:9;50204;:32::i;:::-;50287:10;50278:20;;;;:8;:20;;;;;;:22;;:20;;;:22;:::i;:::-;50264:10;50255:20;;;;:8;:20;;;;;:45;;-1:-1:-1;;50255:45:0;;;;;;;;50322:10;:16;;-1:-1:-1;50322:19:0;50319:101;;;50392:6;;:8;;-1:-1:-1;;;50392:6:0;;;;50399:1;50392:8;:::i;:::-;50383:6;;:17;;;;;;;;;;;;;;;;;;50319:101;50441:10;:16;;;50459:1;50441:19;50438:101;;;50511:6;;:8;;-1:-1:-1;;;50511:6:0;;;;50518:1;50511:8;:::i;:::-;50502:6;;:17;;;;;;;;;;;;;;;;;;50438:101;-1:-1:-1;50053:3:0;;;;:::i;:::-;;;;50028:537;;;;48387:2185;48316:2256;;;:::o;51827:164::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51910:2:::1;51905;:7;51897:16;;;::::0;::::1;;51924:20:::0;:25;;;;51960:18;:23;51827:164::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10874:2:1;5069:73:0::1;::::0;::::1;10856:21:1::0;10913:2;10893:18;;;10886:30;10952:34;10932:18;;;10925:62;-1:-1:-1;;;11003:18:1;;;10996:36;11049:19;;5069:73:0::1;10672:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;39314:224::-:0;39416:4;-1:-1:-1;;;;;;39440:50:0;;-1:-1:-1;;;39440:50:0;;:90;;;39494:36;39518:11;39494:23;:36::i;35093:174::-;35168:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35168:29:0;-1:-1:-1;;;;;35168:29:0;;;;;;;;:24;;35222:23;35168:24;35222:14;:23::i;:::-;-1:-1:-1;;;;;35213:46:0;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;31351:73;;;;-1:-1:-1;;;31351:73:0;;14756:2:1;31351:73:0;;;14738:21:1;14795:2;14775:18;;;14768:30;14834:34;14814:18;;;14807:62;-1:-1:-1;;;14885:18:1;;;14878:42;14937:19;;31351:73:0;14554:408:1;31351:73:0;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;-1:-1:-1;;;;;31493:16:0;:7;-1:-1:-1;;;;;31493:16:0;;:51;;;;31537:7;-1:-1:-1;;;;;31513:31:0;:20;31525:7;31513:11;:20::i;:::-;-1:-1:-1;;;;;31513:31:0;;31493:51;:87;;;-1:-1:-1;;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31548:32;31485:96;31241:348;-1:-1:-1;;;;31241:348:0:o;34350:625::-;34509:4;-1:-1:-1;;;;;34482:31:0;:23;34497:7;34482:14;:23::i;:::-;-1:-1:-1;;;;;34482:31:0;;34474:81;;;;-1:-1:-1;;;34474:81:0;;11281:2:1;34474:81:0;;;11263:21:1;11320:2;11300:18;;;11293:30;11359:34;11339:18;;;11332:62;-1:-1:-1;;;11410:18:1;;;11403:35;11455:19;;34474:81:0;11079:401:1;34474:81:0;-1:-1:-1;;;;;34574:16:0;;34566:65;;;;-1:-1:-1;;;34566:65:0;;12449:2:1;34566:65:0;;;12431:21:1;12488:2;12468:18;;;12461:30;12527:34;12507:18;;;12500:62;-1:-1:-1;;;12578:18:1;;;12571:34;12622:19;;34566:65:0;12247:400:1;34566:65:0;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;-1:-1:-1;;;;;34790:15:0;;;;;;:9;:15;;;;;:20;;34809:1;;34790:15;:20;;34809:1;;34790:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34821:13:0;;;;;;:9;:13;;;;;:18;;34838:1;;34821:13;:18;;34838:1;;34821:18;:::i;:::-;;;;-1:-1:-1;;34850:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34850:21:0;-1:-1:-1;;;;;34850:21:0;;;;;;;;;34889:27;;34850:16;;34889:27;;;;;;;27286:341;27216:411;;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;8041:317::-;8156:6;8131:21;:31;;8123:73;;;;-1:-1:-1;;;8123:73:0;;14398:2:1;8123:73:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:31;14456:18;;;14449:59;14525:18;;8123:73:0;14196:353:1;8123:73:0;8210:12;8228:9;-1:-1:-1;;;;;8228:14:0;8250:6;8228:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8209:52;;;8280:7;8272:78;;;;-1:-1:-1;;;8272:78:0;;13971:2:1;8272:78:0;;;13953:21:1;14010:2;13990:18;;;13983:30;14049:34;14029:18;;;14022:62;14120:28;14100:18;;;14093:56;14166:19;;8272:78:0;13769:422:1;5349:191:0;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;35409:315::-;35564:8;-1:-1:-1;;;;;35555:17:0;:5;-1:-1:-1;;;;;35555:17:0;;;35547:55;;;;-1:-1:-1;;;35547:55:0;;12854:2:1;35547:55:0;;;12836:21:1;12893:2;12873:18;;;12866:30;12932:27;12912:18;;;12905:55;12977:18;;35547:55:0;12652:349:1;35547:55:0;-1:-1:-1;;;;;35613:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35613:46:0;;;;;;;;;;35675:41;;8801::1;;;35675::0;;8774:18:1;35675:41:0;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;-1:-1:-1;;;30515:111:0;;;;;;;:::i;47154:117::-;47214:13;47247:16;47240:23;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;53686:134;53786:25;;53743:13;6296:15:1;;;-1:-1:-1;;6292:53:1;53786:25:0;;;6280:66:1;53743:13:0;53776:36;;6362:12:1;;53786:25:0;;;;;;;;;;;;53776:9;:36::i;54298:608::-;54533:10;;54520;;54376:13;;54426:2;;54465;;54401:16;;54520:23;;54533:10;54520:23;:::i;:::-;54509:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54509:35:0;-1:-1:-1;54489:55:0;-1:-1:-1;54489:55:0;54565:17;;54647:92;54668:3;:10;54664:1;:14;54647:92;;;54721:3;54725:1;54721:6;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54721:6:0;54709:4;54714:3;;;;:::i;:::-;;;54709:9;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;54709:18:0;;;;;;;;-1:-1:-1;54680:3:0;;;;:::i;:::-;;;;54647:92;;;;54764:6;54759:93;54780:3;:10;54776:1;:14;54759:93;;;54834:3;54838:1;54834:6;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54834:6:0;54822:4;54827:3;;;;:::i;:::-;;;54822:9;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;54822:18:0;;;;;;;;-1:-1:-1;54792:3:0;;;;:::i;:::-;;;;54759:93;;;-1:-1:-1;54894:3:0;;54298:608;-1:-1:-1;;;;;;;54298:608:0:o;52461:310::-;52560:4;52577:19;52599:24;52614:8;52599:14;:24::i;:::-;52577:46;;52634:26;52663:36;52687:11;52663:23;:36::i;:::-;52634:65;;52756:7;-1:-1:-1;;;;;52719:44:0;:33;52727:18;52747:4;52719:7;:33::i;:::-;-1:-1:-1;;;;;52719:44:0;;;52461:310;-1:-1:-1;;;;;;52461:310:0:o;25189:305::-;25291:4;-1:-1:-1;;;;;;25328:40:0;;-1:-1:-1;;;25328:40:0;;:105;;-1:-1:-1;;;;;;;25385:48:0;;-1:-1:-1;;;25385:48:0;25328:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;25450:36;16863:157;46659:181;46787:45;46814:4;46820:2;46824:7;46787:26;:45::i;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;-1:-1:-1;;;32427:154:0;;;;;;;:::i;36289:799::-;36444:4;-1:-1:-1;;;;;36465:13:0;;7075:19;:23;36461:620;;36501:72;;-1:-1:-1;;;36501:72:0;;-1:-1:-1;;;;;36501:36:0;;;;;:72;;2883:10;;36552:4;;36558:7;;36567:5;;36501:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36501:72:0;;;;;;;;-1:-1:-1;;36501:72:0;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36743:13:0;;36739:272;;36786:60;;-1:-1:-1;;;36786:60:0;;;;;;;:::i;36739:272::-;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;-1:-1:-1;;;;;;36624:51:0;-1:-1:-1;;;36624:51:0;;-1:-1:-1;36617:58:0;;36461:620;-1:-1:-1;37065:4:0;36289:799;;;;;;:::o;53828:462::-;53914:42;;;;;;;;;;;;-1:-1:-1;;;53914:42:0;;;;54002:11;;53888:13;;53914:42;:21;;54002:15;;54016:1;54002:15;:::i;:::-;53998:19;;:1;:19;:::i;:::-;53988:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53988:30:0;;53969:49;;-1:-1:-1;;;54029:3:0;54033:1;54029:6;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;54029:12:0;;;;;;;;;-1:-1:-1;;;54052:3:0;54056:1;54052:6;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;54052:12:0;;;;;;;;;54080:6;54075:179;54096:4;:11;54092:1;:15;54075:179;;;54142:8;54173:1;54162:4;54167:1;54162:7;;;;;;;;:::i;:::-;;;;;54142:35;;-1:-1:-1;;;;;;54162:7:0;;;:12;;;:7;54156:19;;54142:35;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54142:35:0;54129:3;54135;:1;54137;54135:3;:::i;:::-;54133:5;;:1;:5;:::i;:::-;54129:10;;;;;;;;:::i;:::-;;;;:48;-1:-1:-1;;;;;54129:48:0;;;;;;;;;54205:8;54225:4;54230:1;54225:7;;;;;;;;:::i;:::-;;;;;;54205:37;;54225:7;;;;;54235:4;54219:21;;54205:37;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;54205:37:0;54192:3;54198;:1;54200;54198:3;:::i;:::-;54196:5;;:1;:5;:::i;:::-;54192:10;;;;;;;;:::i;:::-;;;;:50;-1:-1:-1;;;;;54192:50:0;;;;;;;;-1:-1:-1;54109:3:0;;;;:::i;:::-;;;;54075:179;;;-1:-1:-1;54278:3:0;53828:462;-1:-1:-1;;;53828:462:0:o;52779:143::-;52850:7;52904:8;52887:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;52877:37;;;;;;52870:44;;52779:143;;;:::o;52930:190::-;53045:66;;7383::1;53045::0;;;7371:79:1;7466:12;;;7459:28;;;53008:7:0;;7503:12:1;;53045:66:0;7141:380:1;53128:223:0;53218:7;53239:9;53250;53261:7;53272:12;53279:4;53272:6;:12::i;:::-;53302:41;;;;;;;;;;;;9080:25:1;;;9153:4;9141:17;;9121:18;;;9114:45;;;;9175:18;;;9168:34;;;9218:18;;;9211:34;;;53238:46:0;;-1:-1:-1;53238:46:0;;-1:-1:-1;53238:46:0;-1:-1:-1;53302:41:0;;9052:19:1;;53302:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53302:41:0;;-1:-1:-1;;53302:41:0;;;53128:223;-1:-1:-1;;;;;;;53128:223:0:o;40990:589::-;-1:-1:-1;;;;;41196:18:0;;41192:187;;41231:40;41263:7;42406:10;:17;;42379:24;;;;:15;:24;;;;;:44;;;42434:24;;;;;;;;;;;;42302:164;41231:40;41192:187;;;41301:2;-1:-1:-1;;;;;41293:10:0;:4;-1:-1:-1;;;;;41293:10:0;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;-1:-1:-1;;;;;41393:16:0;;41389:183;;41426:45;41463:7;41426:36;:45::i;41389:183::-;41499:4;-1:-1:-1;;;;;41493:10:0;:2;-1:-1:-1;;;;;41493:10:0;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;32925:439::-;-1:-1:-1;;;;;33005:16:0;;32997:61;;;;-1:-1:-1;;;32997:61:0;;17600:2:1;32997:61:0;;;17582:21:1;;;17619:18;;;17612:30;17678:34;17658:18;;;17651:62;17730:18;;32997:61:0;17398:356:1;32997:61:0;31012:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;:30;33069:58;;;;-1:-1:-1;;;33069:58:0;;11687:2:1;33069:58:0;;;11669:21:1;11726:2;11706:18;;;11699:30;11765;11745:18;;;11738:58;11813:18;;33069:58:0;11485:352:1;33069:58:0;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;-1:-1:-1;;;;;33198:13:0;;;;;;:9;:13;;;;;:18;;33215:1;;33198:13;:18;;33215:1;;33198:18;:::i;:::-;;;;-1:-1:-1;;33227:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33227:21:0;-1:-1:-1;;;;;33227:21:0;;;;;;;;33266:33;;33227:16;;;33266:33;;33227:16;;33266:33;51295:299;50582:1019;:::o;53359:319::-;53417:9;53428;53439:7;53467:4;:11;53482:2;53467:17;53459:54;;;;-1:-1:-1;;;53459:54:0;;21859:2:1;53459:54:0;;;21841:21:1;21898:2;21878:18;;;21871:30;21937:26;21917:18;;;21910:54;21981:18;;53459:54:0;21657:348:1;53459:54:0;-1:-1:-1;;;53569:2:0;53559:13;;53553:20;53608:2;53598:13;;53592:20;53655:2;53645:13;;;53639:20;53553;;53636:1;53631:29;;;;;53359:319::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43421:18;43442:26;;;:17;:26;;;;;;43359:51;;-1:-1:-1;43575:28:0;;;43571:328;;-1:-1:-1;;;;;43642:18:0;;43620:19;43642:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43693:30;;;;;;:44;;;43810:30;;:17;:30;;;;;:43;;;43571:328;-1:-1:-1;43995:26:0;;;;:17;:26;;;;;;;;43988:33;;;-1:-1:-1;;;;;44039:18:0;;;;;:12;:18;;;;;:34;;;;;;;44032:41;43093:988::o;44376:1079::-;44654:10;:17;44629:22;;44654:21;;44674:1;;44654:21;:::i;:::-;44686:18;44707:24;;;:15;:24;;;;;;45080:10;:26;;44629:46;;-1:-1:-1;44707:24:0;;44629:46;;45080:26;;;;;;:::i;:::-;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45224:28;;;:15;:28;;;;;;;:41;;;45396:24;;;;;45389:31;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;-1:-1:-1;;;;;42013:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42058:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41880:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:163::-;1285:20;;1345:10;1334:22;;1324:33;;1314:61;;1371:1;1368;1361:12;1386:156;1452:20;;1512:4;1501:16;;1491:27;;1481:55;;1532:1;1529;1522:12;1547:186;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;1698:29;1717:9;1698:29;:::i;1738:260::-;1806:6;1814;1867:2;1855:9;1846:7;1842:23;1838:32;1835:52;;;1883:1;1880;1873:12;1835:52;1906:29;1925:9;1906:29;:::i;:::-;1896:39;;1954:38;1988:2;1977:9;1973:18;1954:38;:::i;:::-;1944:48;;1738:260;;;;;:::o;2003:328::-;2080:6;2088;2096;2149:2;2137:9;2128:7;2124:23;2120:32;2117:52;;;2165:1;2162;2155:12;2117:52;2188:29;2207:9;2188:29;:::i;:::-;2178:39;;2236:38;2270:2;2259:9;2255:18;2236:38;:::i;:::-;2226:48;;2321:2;2310:9;2306:18;2293:32;2283:42;;2003:328;;;;;:::o;2336:537::-;2431:6;2439;2447;2455;2508:3;2496:9;2487:7;2483:23;2479:33;2476:53;;;2525:1;2522;2515:12;2476:53;2548:29;2567:9;2548:29;:::i;:::-;2538:39;;2596:38;2630:2;2619:9;2615:18;2596:38;:::i;:::-;2586:48;;2681:2;2670:9;2666:18;2653:32;2643:42;;2736:2;2725:9;2721:18;2708:32;2763:18;2755:6;2752:30;2749:50;;;2795:1;2792;2785:12;2749:50;2818:49;2859:7;2850:6;2839:9;2835:22;2818:49;:::i;:::-;2808:59;;;2336:537;;;;;;;:::o;2878:254::-;2943:6;2951;3004:2;2992:9;2983:7;2979:23;2975:32;2972:52;;;3020:1;3017;3010:12;2972:52;3043:29;3062:9;3043:29;:::i;:::-;3033:39;;3091:35;3122:2;3111:9;3107:18;3091:35;:::i;3137:254::-;3205:6;3213;3266:2;3254:9;3245:7;3241:23;3237:32;3234:52;;;3282:1;3279;3272:12;3234:52;3305:29;3324:9;3305:29;:::i;:::-;3295:39;3381:2;3366:18;;;;3353:32;;-1:-1:-1;;;3137:254:1:o;3396:180::-;3452:6;3505:2;3493:9;3484:7;3480:23;3476:32;3473:52;;;3521:1;3518;3511:12;3473:52;3544:26;3560:9;3544:26;:::i;3581:245::-;3639:6;3692:2;3680:9;3671:7;3667:23;3663:32;3660:52;;;3708:1;3705;3698:12;3660:52;3747:9;3734:23;3766:30;3790:5;3766:30;:::i;3831:249::-;3900:6;3953:2;3941:9;3932:7;3928:23;3924:32;3921:52;;;3969:1;3966;3959:12;3921:52;4001:9;3995:16;4020:30;4044:5;4020:30;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:180::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;-1:-1:-1;4691:23:1;;4540:180;-1:-1:-1;4540:180:1:o;4725:248::-;4793:6;4801;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;-1:-1:-1;;4893:23:1;;;4963:2;4948:18;;;4935:32;;-1:-1:-1;4725:248:1:o;4978:458::-;5062:6;5070;5078;5131:2;5119:9;5110:7;5106:23;5102:32;5099:52;;;5147:1;5144;5137:12;5099:52;5183:9;5170:23;5160:33;;5212:36;5244:2;5233:9;5229:18;5212:36;:::i;:::-;5202:46;;5299:2;5288:9;5284:18;5271:32;5326:18;5318:6;5315:30;5312:50;;;5358:1;5355;5348:12;5312:50;5381:49;5422:7;5413:6;5402:9;5398:22;5381:49;:::i;:::-;5371:59;;;4978:458;;;;;:::o;5441:184::-;5499:6;5552:2;5540:9;5531:7;5527:23;5523:32;5520:52;;;5568:1;5565;5558:12;5520:52;5591:28;5609:9;5591:28;:::i;5630:254::-;5695:6;5703;5756:2;5744:9;5735:7;5731:23;5727:32;5724:52;;;5772:1;5769;5762:12;5724:52;5795:27;5812:9;5795:27;:::i;:::-;5785:37;;5841;5874:2;5863:9;5859:18;5841:37;:::i;5889:257::-;5930:3;5968:5;5962:12;5995:6;5990:3;5983:19;6011:63;6067:6;6060:4;6055:3;6051:14;6044:4;6037:5;6033:16;6011:63;:::i;:::-;6128:2;6107:15;-1:-1:-1;;6103:29:1;6094:39;;;;6135:4;6090:50;;5889:257;-1:-1:-1;;5889:257:1:o;6385:276::-;6516:3;6554:6;6548:13;6570:53;6616:6;6611:3;6604:4;6596:6;6592:17;6570:53;:::i;:::-;6639:16;;;;;6385:276;-1:-1:-1;;6385:276:1:o;6666:470::-;6845:3;6883:6;6877:13;6899:53;6945:6;6940:3;6933:4;6925:6;6921:17;6899:53;:::i;:::-;7015:13;;6974:16;;;;7037:57;7015:13;6974:16;7071:4;7059:17;;7037:57;:::i;:::-;7110:20;;6666:470;-1:-1:-1;;;;6666:470:1:o;8168:488::-;-1:-1:-1;;;;;8437:15:1;;;8419:34;;8489:15;;8484:2;8469:18;;8462:43;8536:2;8521:18;;8514:34;;;8584:3;8579:2;8564:18;;8557:31;;;8362:4;;8605:45;;8630:19;;8622:6;8605:45;:::i;:::-;8597:53;8168:488;-1:-1:-1;;;;;;8168:488:1:o;9256:219::-;9405:2;9394:9;9387:21;9368:4;9425:44;9465:2;9454:9;9450:18;9442:6;9425:44;:::i;10253:414::-;10455:2;10437:21;;;10494:2;10474:18;;;10467:30;10533:34;10528:2;10513:18;;10506:62;-1:-1:-1;;;10599:2:1;10584:18;;10577:48;10657:3;10642:19;;10253:414::o;13366:398::-;13568:2;13550:21;;;13607:2;13587:18;;;13580:30;13646:34;13641:2;13626:18;;13619:62;-1:-1:-1;;;13712:2:1;13697:18;;13690:32;13754:3;13739:19;;13366:398::o;16987:406::-;17189:2;17171:21;;;17228:2;17208:18;;;17201:30;17267:34;17262:2;17247:18;;17240:62;-1:-1:-1;;;17333:2:1;17318:18;;17311:40;17383:3;17368:19;;16987:406::o;18172:356::-;18374:2;18356:21;;;18393:18;;;18386:30;18452:34;18447:2;18432:18;;18425:62;18519:2;18504:18;;18172:356::o;20468:413::-;20670:2;20652:21;;;20709:2;20689:18;;;20682:30;20748:34;20743:2;20728:18;;20721:62;-1:-1:-1;;;20814:2:1;20799:18;;20792:47;20871:3;20856:19;;20468:413::o;24075:128::-;24115:3;24146:1;24142:6;24139:1;24136:13;24133:39;;;24152:18;;:::i;:::-;-1:-1:-1;24188:9:1;;24075:128::o;24208:228::-;24247:3;24275:10;24312:2;24309:1;24305:10;24342:2;24339:1;24335:10;24373:3;24369:2;24365:12;24360:3;24357:21;24354:47;;;24381:18;;:::i;24441:204::-;24479:3;24515:4;24512:1;24508:12;24547:4;24544:1;24540:12;24582:3;24576:4;24572:14;24567:3;24564:23;24561:49;;;24590:18;;:::i;:::-;24626:13;;24441:204;-1:-1:-1;;;24441:204:1:o;24650:120::-;24690:1;24716;24706:35;;24721:18;;:::i;:::-;-1:-1:-1;24755:9:1;;24650:120::o;24775:168::-;24815:7;24881:1;24877;24873:6;24869:14;24866:1;24863:21;24858:1;24851:9;24844:17;24840:45;24837:71;;;24888:18;;:::i;:::-;-1:-1:-1;24928:9:1;;24775:168::o;24948:125::-;24988:4;25016:1;25013;25010:8;25007:34;;;25021:18;;:::i;:::-;-1:-1:-1;25058:9:1;;24948:125::o;25078:258::-;25150:1;25160:113;25174:6;25171:1;25168:13;25160:113;;;25250:11;;;25244:18;25231:11;;;25224:39;25196:2;25189:10;25160:113;;;25291:6;25288:1;25285:13;25282:48;;;-1:-1:-1;;25326:1:1;25308:16;;25301:27;25078:258::o;25341:380::-;25420:1;25416:12;;;;25463;;;25484:61;;25538:4;25530:6;25526:17;25516:27;;25484:61;25591:2;25583:6;25580:14;25560:18;25557:38;25554:161;;;25637:10;25632:3;25628:20;25625:1;25618:31;25672:4;25669:1;25662:15;25700:4;25697:1;25690:15;25554:161;;25341:380;;;:::o;25726:135::-;25765:3;-1:-1:-1;;25786:17:1;;25783:43;;;25806:18;;:::i;:::-;-1:-1:-1;25853:1:1;25842:13;;25726:135::o;25866:112::-;25898:1;25924;25914:35;;25929:18;;:::i;:::-;-1:-1:-1;25963:9:1;;25866:112::o;25983:127::-;26044:10;26039:3;26035:20;26032:1;26025:31;26075:4;26072:1;26065:15;26099:4;26096:1;26089:15;26115:127;26176:10;26171:3;26167:20;26164:1;26157:31;26207:4;26204:1;26197:15;26231:4;26228:1;26221:15;26247:127;26308:10;26303:3;26299:20;26296:1;26289:31;26339:4;26336:1;26329:15;26363:4;26360:1;26353:15;26379:127;26440:10;26435:3;26431:20;26428:1;26421:31;26471:4;26468:1;26461:15;26495:4;26492:1;26485:15;26511:127;26572:10;26567:3;26563:20;26560:1;26553:31;26603:4;26600:1;26593:15;26627:4;26624:1;26617:15;26643:131;-1:-1:-1;;;;;;26717:32:1;;26707:43;;26697:71;;26764:1;26761;26754:12

Swarm Source

ipfs://4d8e5b2d150c5b085a04f37a38987dcab1a00515590e19ee3756269531b9839a
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.